diff --git a/Content.Client/Antag/AntagStatusIconSystem.cs b/Content.Client/Antag/AntagStatusIconSystem.cs new file mode 100644 index 00000000000..3c1c72d03b9 --- /dev/null +++ b/Content.Client/Antag/AntagStatusIconSystem.cs @@ -0,0 +1,32 @@ +using Content.Shared.StatusIcon; +using Content.Shared.StatusIcon.Components; +using Robust.Shared.Prototypes; +using Content.Shared.Ghost; +using Robust.Client.Player; + +namespace Content.Client.Antag; + +/// +/// Used for assigning specified icons for antags. +/// +public abstract class AntagStatusIconSystem : SharedStatusIconSystem + where T : Component +{ + [Dependency] private readonly IPrototypeManager _prototype = default!; + [Dependency] private readonly IPlayerManager _player = default!; + + /// + /// Will check if the local player has the same component as the one who called it and give the status icon. + /// + /// The status icon that your antag uses + /// The GetStatusIcon event. + protected virtual void GetStatusIcon(string antagStatusIcon, ref GetStatusIconsEvent args) + { + var ent = _player.LocalPlayer?.ControlledEntity; + + if (!HasComp(ent) && !HasComp(ent)) + return; + + args.StatusIcons.Add(_prototype.Index(antagStatusIcon)); + } +} diff --git a/Content.Client/Popups/PopupSystem.cs b/Content.Client/Popups/PopupSystem.cs index 63b8d7f6df5..1d4ca19ce26 100644 --- a/Content.Client/Popups/PopupSystem.cs +++ b/Content.Client/Popups/PopupSystem.cs @@ -150,7 +150,7 @@ public override void PopupEntity(string message, EntityUid uid, Filter filter, b public override void PopupClient(string message, EntityUid uid, EntityUid recipient, PopupType type = PopupType.Small) { if (_timing.IsFirstTimePredicted) - PopupEntity(message, uid, recipient); + PopupEntity(message, uid, recipient, type); } public override void PopupEntity(string message, EntityUid uid, PopupType type = PopupType.Small) diff --git a/Content.Client/Revolutionary/RevolutionarySystem.cs b/Content.Client/Revolutionary/RevolutionarySystem.cs new file mode 100644 index 00000000000..0818b14bc04 --- /dev/null +++ b/Content.Client/Revolutionary/RevolutionarySystem.cs @@ -0,0 +1,35 @@ +using Content.Shared.Revolutionary.Components; +using Content.Client.Antag; +using Content.Shared.StatusIcon.Components; + +namespace Content.Client.Revolutionary; + +/// +/// Used for the client to get status icons from other revs. +/// +public sealed class RevolutionarySystem : AntagStatusIconSystem +{ + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(GetRevIcon); + SubscribeLocalEvent(GetHeadRevIcon); + } + + /// + /// Checks if the person who triggers the GetStatusIcon event is also a Rev or a HeadRev. + /// + private void GetRevIcon(EntityUid uid, RevolutionaryComponent comp, ref GetStatusIconsEvent args) + { + if (!HasComp(uid)) + { + GetStatusIcon(comp.RevStatusIcon, ref args); + } + } + + private void GetHeadRevIcon(EntityUid uid, HeadRevolutionaryComponent comp, ref GetStatusIconsEvent args) + { + GetStatusIcon(comp.HeadRevStatusIcon, ref args); + } +} diff --git a/Content.Client/Sericulture/SericultureSystem.cs b/Content.Client/Sericulture/SericultureSystem.cs new file mode 100644 index 00000000000..6b2ad2fd170 --- /dev/null +++ b/Content.Client/Sericulture/SericultureSystem.cs @@ -0,0 +1,8 @@ +using Content.Shared.Sericulture; + +namespace Content.Client.Sericulture; + +/// +/// +/// +public sealed partial class SericultureSystem : SharedSericultureSystem { } diff --git a/Content.Client/UserInterface/Controls/RecordedSplitContainer.cs b/Content.Client/UserInterface/Controls/RecordedSplitContainer.cs index b255ac15a30..fd217bc7e86 100644 --- a/Content.Client/UserInterface/Controls/RecordedSplitContainer.cs +++ b/Content.Client/UserInterface/Controls/RecordedSplitContainer.cs @@ -1,7 +1,5 @@ using System.Numerics; -using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; -using Robust.Shared.Input; namespace Content.Client.UserInterface.Controls; @@ -10,8 +8,6 @@ namespace Content.Client.UserInterface.Controls; /// public sealed class RecordedSplitContainer : SplitContainer { - public Action? OnSplitResizeFinish; - public double? DesiredSplitCenter; protected override Vector2 ArrangeOverride(Vector2 finalSize) @@ -30,24 +26,4 @@ protected override Vector2 ArrangeOverride(Vector2 finalSize) return base.ArrangeOverride(finalSize); } - - protected override void KeyBindUp(GUIBoundKeyEventArgs args) - { - base.KeyBindUp(args); - - if (args.Function != EngineKeyFunctions.UIClick) - { - return; - } - - if (ChildCount != 2) - { - return; - } - - var first = GetChild(0); - var second = GetChild(1); - - OnSplitResizeFinish?.Invoke(first.Size, second.Size); - } } diff --git a/Content.Client/UserInterface/Screens/SeparatedChatGameScreen.xaml.cs b/Content.Client/UserInterface/Screens/SeparatedChatGameScreen.xaml.cs index 9aef78fd856..41c4a85e7ee 100644 --- a/Content.Client/UserInterface/Screens/SeparatedChatGameScreen.xaml.cs +++ b/Content.Client/UserInterface/Screens/SeparatedChatGameScreen.xaml.cs @@ -24,7 +24,7 @@ public SeparatedChatGameScreen() SetAnchorAndMarginPreset(Hotbar, LayoutPreset.BottomWide, margin: 5); SetAnchorAndMarginPreset(Alerts, LayoutPreset.CenterRight, margin: 10); - ScreenContainer.OnSplitResizeFinish += (first, second) => + ScreenContainer.OnSplitResizeFinished += () => OnChatResized?.Invoke(new Vector2(ScreenContainer.SplitFraction, 0)); } diff --git a/Content.Client/Zombies/ZombieSystem.cs b/Content.Client/Zombies/ZombieSystem.cs index 8816735a2ac..6d0355f6f8d 100644 --- a/Content.Client/Zombies/ZombieSystem.cs +++ b/Content.Client/Zombies/ZombieSystem.cs @@ -1,18 +1,14 @@ -using System.Linq; +using System.Linq; +using Content.Client.Antag; using Content.Shared.Humanoid; -using Content.Shared.StatusIcon; using Content.Shared.StatusIcon.Components; using Content.Shared.Zombies; using Robust.Client.GameObjects; -using Robust.Client.Player; -using Robust.Shared.Prototypes; namespace Content.Client.Zombies; -public sealed class ZombieSystem : SharedZombieSystem +public sealed class ZombieSystem : AntagStatusIconSystem { - [Dependency] private readonly IPlayerManager _player = default!; - [Dependency] private readonly IPrototypeManager _prototype = default!; public override void Initialize() { @@ -38,9 +34,6 @@ private void OnStartup(EntityUid uid, ZombieComponent component, ComponentStartu private void OnGetStatusIcon(EntityUid uid, ZombieComponent component, ref GetStatusIconsEvent args) { - if (!HasComp(_player.LocalPlayer?.ControlledEntity)) - return; - - args.StatusIcons.Add(_prototype.Index(component.ZombieStatusIcon)); + GetStatusIcon(component.ZombieStatusIcon, ref args); } } diff --git a/Content.IntegrationTests/Pair/TestPair.cs b/Content.IntegrationTests/Pair/TestPair.cs index bd79c0f86ba..2971573ff28 100644 --- a/Content.IntegrationTests/Pair/TestPair.cs +++ b/Content.IntegrationTests/Pair/TestPair.cs @@ -1,7 +1,12 @@ #nullable enable using System.Collections.Generic; using System.IO; +using System.Linq; using Content.Server.GameTicking; +using Content.Server.Players; +using Content.Shared.Mind; +using Content.Shared.Players; +using Robust.Server.Player; using Robust.Shared.GameObjects; using Robust.Shared.IoC; using Robust.Shared.Network; @@ -25,6 +30,9 @@ public sealed partial class TestPair public RobustIntegrationTest.ServerIntegrationInstance Server { get; private set; } = default!; public RobustIntegrationTest.ClientIntegrationInstance Client { get; private set; } = default!; + public IPlayerSession? Player => (IPlayerSession?) Server.PlayerMan.Sessions.FirstOrDefault(); + public PlayerData? PlayerData => Player?.Data.ContentData(); + public PoolTestLogHandler ServerLogHandler { get; private set; } = default!; public PoolTestLogHandler ClientLogHandler { get; private set; } = default!; diff --git a/Content.IntegrationTests/Tests/ConfigPresetTests.cs b/Content.IntegrationTests/Tests/ConfigPresetTests.cs new file mode 100644 index 00000000000..9defdcee99c --- /dev/null +++ b/Content.IntegrationTests/Tests/ConfigPresetTests.cs @@ -0,0 +1,71 @@ +using System.Collections.Generic; +using System.IO; +using Content.Server.Entry; +using Robust.Shared.Configuration; +using Robust.Shared.ContentPack; + +namespace Content.IntegrationTests.Tests; + +[TestFixture] +public sealed class ConfigPresetTests +{ + [Test] + public async Task TestLoadAll() + { + var pair = await PoolManager.GetServerClient(); + var server = pair.Server; + + var resources = server.ResolveDependency(); + var config = server.ResolveDependency(); + + await server.WaitPost(() => + { + var originalCVars = new List<(string, object)>(); + foreach (var cvar in config.GetRegisteredCVars()) + { + var value = config.GetCVar(cvar); + originalCVars.Add((cvar, value)); + } + + var originalCvarsStream = new MemoryStream(); + config.SaveToTomlStream(originalCvarsStream, config.GetRegisteredCVars()); + originalCvarsStream.Position = 0; + + var presets = resources.ContentFindFiles(EntryPoint.ConfigPresetsDir); + Assert.Multiple(() => + { + foreach (var preset in presets) + { + var stream = resources.ContentFileRead(preset); + Assert.DoesNotThrow(() => config.LoadDefaultsFromTomlStream(stream)); + } + }); + + config.LoadDefaultsFromTomlStream(originalCvarsStream); + + foreach (var originalCVar in originalCVars) + { + var (name, originalValue) = originalCVar; + var newValue = config.GetCVar(name); + var originalValueType = originalValue.GetType(); + var newValueType = newValue.GetType(); + if (originalValueType.IsEnum || newValueType.IsEnum) + { + originalValue = Enum.ToObject(originalValueType, originalValue); + newValue = Enum.ToObject(originalValueType, newValue); + } + + if (originalValueType == typeof(float) || newValueType == typeof(float)) + { + originalValue = Convert.ToSingle(originalValue); + newValue = Convert.ToSingle(newValue); + } + + if (!Equals(newValue, originalValue)) + Assert.Fail($"CVar {name} was not reset to its original value."); + } + }); + + await pair.CleanReturnAsync(); + } +} diff --git a/Content.IntegrationTests/Tests/Minds/MindTest.DeleteAllThenGhost.cs b/Content.IntegrationTests/Tests/Minds/MindTest.DeleteAllThenGhost.cs new file mode 100644 index 00000000000..0c9bfbfc743 --- /dev/null +++ b/Content.IntegrationTests/Tests/Minds/MindTest.DeleteAllThenGhost.cs @@ -0,0 +1,55 @@ +#nullable enable +using Robust.Shared.Console; +using Robust.Shared.Map; + +namespace Content.IntegrationTests.Tests.Minds; + +[TestFixture] +public sealed partial class MindTests +{ + [Test] + public async Task DeleteAllThenGhost() + { + var settings = new PoolSettings + { + Dirty = true, + DummyTicker = false, + Connected = true + }; + await using var pair = await PoolManager.GetServerClient(settings); + + // Client is connected with a valid entity & mind + Assert.That(pair.Client.EntMan.EntityExists(pair.Client.Player?.ControlledEntity)); + Assert.That(pair.Server.EntMan.EntityExists(pair.PlayerData?.Mind)); + + // Delete **everything** + var conHost = pair.Server.ResolveDependency(); + await pair.Server.WaitPost(() => conHost.ExecuteCommand("entities delete")); + await pair.RunTicksSync(5); + + Assert.That(pair.Server.EntMan.EntityCount, Is.EqualTo(0)); + Assert.That(pair.Client.EntMan.EntityCount, Is.EqualTo(0)); + + // Create a new map. + int mapId = 1; + await pair.Server.WaitPost(() => conHost.ExecuteCommand($"addmap {mapId}")); + await pair.RunTicksSync(5); + + // Client is not attached to anything + Assert.Null(pair.Client.Player?.ControlledEntity); + Assert.Null(pair.PlayerData?.Mind); + + // Attempt to ghost + var cConHost = pair.Client.ResolveDependency(); + await pair.Client.WaitPost(() => cConHost.ExecuteCommand("ghost")); + await pair.RunTicksSync(10); + + // Client should be attached to a ghost placed on the new map. + Assert.That(pair.Client.EntMan.EntityExists(pair.Client.Player?.ControlledEntity)); + Assert.That(pair.Server.EntMan.EntityExists(pair.PlayerData?.Mind)); + var xform = pair.Client.Transform(pair.Client.Player!.ControlledEntity!.Value); + Assert.That(xform.MapID, Is.EqualTo(new MapId(mapId))); + + await pair.CleanReturnAsync(); + } +} diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.Antags.cs b/Content.Server/Administration/Systems/AdminVerbSystem.Antags.cs index 3471c8bb786..6fe526af11d 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.Antags.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.Antags.cs @@ -1,3 +1,4 @@ +using Content.Server.GameTicking; using Content.Server.GameTicking.Rules; using Content.Server.Zombies; using Content.Shared.Administration; @@ -8,6 +9,8 @@ using Content.Shared.Verbs; using Robust.Server.GameObjects; using Robust.Shared.Utility; +using Content.Server.GameTicking.Rules.Components; +using System.Linq; namespace Content.Server.Administration.Systems; @@ -17,7 +20,9 @@ public sealed partial class AdminVerbSystem [Dependency] private readonly TraitorRuleSystem _traitorRule = default!; [Dependency] private readonly NukeopsRuleSystem _nukeopsRule = default!; [Dependency] private readonly PiratesRuleSystem _piratesRule = default!; + [Dependency] private readonly RevolutionaryRuleSystem _revolutionaryRule = default!; [Dependency] private readonly SharedMindSystem _minds = default!; + [Dependency] private readonly GameTicker _gameTicker = default!; // All antag verbs have names so invokeverb works. private void AddAntagVerbs(GetVerbsEvent args) @@ -100,5 +105,22 @@ private void AddAntagVerbs(GetVerbsEvent args) Message = Loc.GetString("admin-verb-make-pirate"), }; args.Verbs.Add(pirate); + + //todo come here at some point dear lort. + Verb headRev = new() + { + Text = Loc.GetString("admin-verb-text-make-head-rev"), + Category = VerbCategory.Antag, + Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/Misc/job_icons.rsi/HeadRevolutionary.png")), + Act = () => + { + if (!_minds.TryGetMind(args.Target, out var mindId, out var mind)) + return; + _revolutionaryRule.OnHeadRevAdmin(mindId, mind); + }, + Impact = LogImpact.High, + Message = Loc.GetString("admin-verb-make-head-rev"), + }; + args.Verbs.Add(headRev); } } diff --git a/Content.Server/Anomaly/Components/InjectionAnomalyComponent.cs b/Content.Server/Anomaly/Components/InjectionAnomalyComponent.cs new file mode 100644 index 00000000000..4a9b5b6b55f --- /dev/null +++ b/Content.Server/Anomaly/Components/InjectionAnomalyComponent.cs @@ -0,0 +1,47 @@ +using Content.Server.Anomaly.Effects; +using Robust.Shared.Prototypes; + +namespace Content.Server.Anomaly.Components; + +/// +/// This component allows the anomaly to inject liquid from the SolutionContainer +/// into the surrounding entities with the InjectionSolution component +/// + +[RegisterComponent, Access(typeof(InjectionAnomalySystem))] +public sealed partial class InjectionAnomalyComponent : Component +{ + /// + /// the maximum amount of injection of a substance into an entity per pulsation + /// scales with Severity + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float MaxSolutionInjection = 15; + /// + /// the maximum amount of injection of a substance into an entity in the supercritical phase + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float SuperCriticalSolutionInjection = 50; + + /// + /// The maximum radius in which the anomaly injects reagents into the surrounding containers. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float InjectRadius = 3; + /// + /// The maximum radius in which the anomaly injects reagents into the surrounding containers. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float SuperCriticalInjectRadius = 15; + + /// + /// The name of the prototype of the special effect that appears above the entities into which the injection was carried out + /// + [DataField, ViewVariables(VVAccess.ReadOnly)] + public EntProtoId VisualEffectPrototype = "PuddleSparkle"; + /// + /// Solution name that can be drained. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public string Solution { get; set; } = "default"; +} diff --git a/Content.Server/Anomaly/Components/PuddleCreateAnomalyComponent.cs b/Content.Server/Anomaly/Components/PuddleCreateAnomalyComponent.cs new file mode 100644 index 00000000000..78c50b3d7e9 --- /dev/null +++ b/Content.Server/Anomaly/Components/PuddleCreateAnomalyComponent.cs @@ -0,0 +1,29 @@ +using Content.Server.Anomaly.Effects; + +namespace Content.Server.Anomaly.Components; + +/// +/// This component allows the anomaly to create puddles from the solutionContainer +/// +[RegisterComponent, Access(typeof(PuddleCreateAnomalySystem))] +public sealed partial class PuddleCreateAnomalyComponent : Component +{ + /// + /// The maximum amount of solution that an anomaly can splash out of the storage on the floor during pulsation. + /// Scales with Severity. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float MaxPuddleSize = 100; + + /// + /// The maximum amount of solution that an anomaly can splash out of the storage on the floor during supercritical event + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float SuperCriticalPuddleSize = 1000; + + /// + /// Solution name that can be drained. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public string Solution { get; set; } = "default"; +} diff --git a/Content.Server/Anomaly/Components/ReagentProducerAnomalyComponent.cs b/Content.Server/Anomaly/Components/ReagentProducerAnomalyComponent.cs new file mode 100644 index 00000000000..aa860c17135 --- /dev/null +++ b/Content.Server/Anomaly/Components/ReagentProducerAnomalyComponent.cs @@ -0,0 +1,94 @@ +using Content.Server.Anomaly.Effects; +using Content.Shared.Chemistry.Reagent; +using Robust.Shared.Audio; +using Robust.Shared.Prototypes; +using System.Numerics; + +namespace Content.Server.Anomaly.Components; +/// +/// This component allows the anomaly to generate a random type of reagent in the specified SolutionContainer. +/// With the increasing severity of the anomaly, the type of reagent produced may change. +/// The higher the severity of the anomaly, the higher the chance of dangerous or useful reagents. +/// +[RegisterComponent, Access(typeof(ReagentProducerAnomalySystem))] +public sealed partial class ReagentProducerAnomalyComponent : Component +{ + //the addition of the reagent will occur instantly when an anomaly appears, + //and there will not be the first three seconds of a white empty anomaly. + public float AccumulatedFrametime = 3.0f; + /// + /// How frequently should this reagent generation update, in seconds? + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float UpdateInterval = 3.0f; + + /// + /// The spread of the random weight of the choice of this category, depending on the severity. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public Vector2 WeightSpreadDangerous = new(5.0f, 9.0f); + /// + /// The spread of the random weight of the choice of this category, depending on the severity. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public Vector2 WeightSpreadFun = new(3.0f, 0.0f); + /// + /// The spread of the random weight of the choice of this category, depending on the severity. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public Vector2 WeightSpreadUseful = new(1.0f, 1.0f); + + /// + /// Category of dangerous reagents for injection. Various toxins and poisons + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public List> DangerousChemicals = new(); + /// + /// Category of useful reagents for injection. Medicine and other things that players WANT to get + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public List> UsefulChemicals = new(); + /// + /// Category of fun reagents for injection. Glue, drugs, beer. Something that will bring fun. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public List> FunChemicals = new(); + + /// + /// Noise made when anomaly pulse. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public SoundSpecifier ChangeSound = new SoundPathSpecifier("/Audio/Effects/waterswirl.ogg"); + /// + /// The component will repaint the sprites of the object to match the current color of the solution, + /// if the RandomSprite component is hung correctly. + /// Ideally, this should be put into a separate component, but I suffered for 4 hours, + /// and nothing worked out for me. So for now it will be like this. + /// + [DataField, ViewVariables(VVAccess.ReadOnly)] + public bool NeedRecolor = false; + + /// + /// the maximum amount of reagent produced per second + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float MaxReagentProducing = 1.5f; + + /// + /// how much does the reagent production increase before entering the supercritical state + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float SupercriticalReagentProducingModifier = 100f; + + /// + /// The name of the reagent that the anomaly produces. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public ProtoId ProducingReagent = "Water"; + /// + /// Solution name where the substance is generated + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("solution")] + public string Solution = "default"; +} diff --git a/Content.Server/Anomaly/Effects/EntityAnomalySystem.cs b/Content.Server/Anomaly/Effects/EntityAnomalySystem.cs index 5c8e92044ce..5f201833145 100644 --- a/Content.Server/Anomaly/Effects/EntityAnomalySystem.cs +++ b/Content.Server/Anomaly/Effects/EntityAnomalySystem.cs @@ -1,13 +1,12 @@ -using System.Linq; +using System.Linq; using System.Numerics; -using Content.Server.Maps; using Content.Shared.Anomaly.Components; using Content.Shared.Anomaly.Effects.Components; -using Content.Shared.Maps; using Content.Shared.Physics; using Robust.Shared.Map; using Robust.Shared.Physics; using Robust.Shared.Physics.Components; +using Robust.Shared.Prototypes; using Robust.Shared.Random; namespace Content.Server.Anomaly.Effects; @@ -39,11 +38,10 @@ private void OnSupercritical(EntityUid uid, EntitySpawnAnomalyComponent componen // A cluster of monsters SpawnMonstersOnOpenTiles(component, xform, component.MaxSpawnAmount, component.SpawnRange, component.Spawns); // And so much meat (for the meat anomaly at least) - Spawn(component.SupercriticalSpawn, xform.Coordinates); - SpawnMonstersOnOpenTiles(component, xform, component.MaxSpawnAmount, component.SpawnRange, new List(){component.SupercriticalSpawn}); + SpawnMonstersOnOpenTiles(component, xform, component.MaxSpawnAmount, component.SpawnRange, component.SuperCriticalSpawns); } - private void SpawnMonstersOnOpenTiles(EntitySpawnAnomalyComponent component, TransformComponent xform, int amount, float radius, List spawns) + private void SpawnMonstersOnOpenTiles(EntitySpawnAnomalyComponent component, TransformComponent xform, int amount, float radius, List spawns) { if (!component.Spawns.Any()) return; @@ -68,10 +66,12 @@ private void SpawnMonstersOnOpenTiles(EntitySpawnAnomalyComponent component, Tra { if (!physQuery.TryGetComponent(ent, out var body)) continue; + if (body.BodyType != BodyType.Static || !body.Hard || (body.CollisionLayer & (int) CollisionGroup.Impassable) == 0) continue; + valid = false; break; } diff --git a/Content.Server/Anomaly/Effects/InjectionAnomalySystem.cs b/Content.Server/Anomaly/Effects/InjectionAnomalySystem.cs new file mode 100644 index 00000000000..acc0e2f0c38 --- /dev/null +++ b/Content.Server/Anomaly/Effects/InjectionAnomalySystem.cs @@ -0,0 +1,67 @@ +using System.Linq; +using Content.Server.Anomaly.Components; +using Content.Server.Chemistry.Components.SolutionManager; +using Content.Server.Chemistry.EntitySystems; +using Content.Shared.Anomaly.Components; + +namespace Content.Server.Anomaly.Effects; +/// +/// This component allows the anomaly to inject liquid from the SolutionContainer +/// into the surrounding entities with the InjectionSolution component +/// +/// + +/// +public sealed class InjectionAnomalySystem : EntitySystem +{ + [Dependency] private readonly EntityLookupSystem _lookup = default!; + [Dependency] private readonly SolutionContainerSystem _solutionContainer = default!; + + private EntityQuery _injectableQuery; + + public override void Initialize() + { + SubscribeLocalEvent(OnPulse); + SubscribeLocalEvent(OnSupercritical, before: new[] { typeof(SolutionContainerSystem) }); + + _injectableQuery = GetEntityQuery(); + } + + private void OnPulse(EntityUid uid, InjectionAnomalyComponent component, ref AnomalyPulseEvent args) + { + PulseScalableEffect(uid, component, component.InjectRadius, component.MaxSolutionInjection * args.Severity); + } + + private void OnSupercritical(EntityUid uid, InjectionAnomalyComponent component, ref AnomalySupercriticalEvent args) + { + PulseScalableEffect(uid, component, component.SuperCriticalInjectRadius, component.SuperCriticalSolutionInjection); + } + + private void PulseScalableEffect(EntityUid uid, InjectionAnomalyComponent component, float injectRadius, float maxInject) + { + if (!_solutionContainer.TryGetSolution(uid, component.Solution, out var sol)) + return; + //We get all the entity in the radius into which the reagent will be injected. + var xformQuery = GetEntityQuery(); + var xform = xformQuery.GetComponent(uid); + var allEnts = _lookup.GetComponentsInRange(xform.MapPosition, injectRadius) + .Select(x => x.Owner).ToList(); + + //for each matching entity found + foreach (var ent in allEnts) + { + if (!_solutionContainer.TryGetInjectableSolution(ent, out var injectable)) + continue; + + if (_injectableQuery.TryGetComponent(ent, out var injEnt)) + { + var buffer = sol; + _solutionContainer.TryTransferSolution(ent, injectable, buffer, maxInject); + //Spawn Effect + var uidXform = Transform(ent); + Spawn(component.VisualEffectPrototype, uidXform.Coordinates); + } + } + } + +} diff --git a/Content.Server/Anomaly/Effects/PuddleCreateAnomalySystem.cs b/Content.Server/Anomaly/Effects/PuddleCreateAnomalySystem.cs new file mode 100644 index 00000000000..deae38e5c8c --- /dev/null +++ b/Content.Server/Anomaly/Effects/PuddleCreateAnomalySystem.cs @@ -0,0 +1,39 @@ +using Content.Server.Anomaly.Components; +using Content.Server.Chemistry.EntitySystems; +using Content.Shared.Anomaly.Components; +using Content.Server.Fluids.EntitySystems; + +namespace Content.Server.Anomaly.Effects; + +/// +/// This component allows the anomaly to create puddles from SolutionContainer. +/// +public sealed class PuddleCreateAnomalySystem : EntitySystem +{ + [Dependency] private readonly PuddleSystem _puddle = default!; + [Dependency] private readonly SolutionContainerSystem _solutionContainer = default!; + + public override void Initialize() + { + SubscribeLocalEvent(OnPulse); + SubscribeLocalEvent(OnSupercritical, before: new[] { typeof(InjectionAnomalySystem) }); + } + + private void OnPulse(EntityUid uid, PuddleCreateAnomalyComponent component, ref AnomalyPulseEvent args) + { + if (!_solutionContainer.TryGetSolution(uid, component.Solution, out var sol)) + return; + + var xform = Transform(uid); + var puddleSol = _solutionContainer.SplitSolution(uid, sol, component.MaxPuddleSize * args.Severity); + _puddle.TrySplashSpillAt(uid, xform.Coordinates, puddleSol, out _); + } + private void OnSupercritical(EntityUid uid, PuddleCreateAnomalyComponent component, ref AnomalySupercriticalEvent args) + { + if (!_solutionContainer.TryGetSolution(uid, component.Solution, out var sol)) + return; + var buffer = sol; + var xform = Transform(uid); + _puddle.TrySpillAt(xform.Coordinates, buffer, out _); + } +} diff --git a/Content.Server/Anomaly/Effects/ReagentProducerAnomalySystem.cs b/Content.Server/Anomaly/Effects/ReagentProducerAnomalySystem.cs new file mode 100644 index 00000000000..fdfff42d7ca --- /dev/null +++ b/Content.Server/Anomaly/Effects/ReagentProducerAnomalySystem.cs @@ -0,0 +1,152 @@ +using Content.Server.Anomaly.Components; +using Content.Server.Chemistry.EntitySystems; +using Content.Shared.Anomaly.Components; +using Robust.Shared.Random; +using Content.Shared.Chemistry.Components; +using Robust.Shared.Prototypes; +using Content.Shared.Sprite; +using Robust.Server.GameObjects; + +namespace Content.Server.Anomaly.Effects; + +/// + +public sealed class ReagentProducerAnomalySystem : EntitySystem +{ + //The idea is to divide substances into several categories. + //The anomaly will choose one of the categories with a given chance based on severity. + //Then a random substance will be selected from the selected category. + //There are the following categories: + + //Dangerous: + //selected most often. A list of substances that are extremely unpleasant for injection. + + //Fun: + //Funny things have an increased chance of appearing in an anomaly. + + //Useful: + //Those reagents that the players are hunting for. Very low percentage of loss. + + [Dependency] private readonly SolutionContainerSystem _solutionContainer = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly PointLightSystem _light = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + + public const string FallbackReagent = "Water"; + + public override void Initialize() + { + SubscribeLocalEvent(OnPulse); + SubscribeLocalEvent(OnMapInit); + } + + private void OnPulse(EntityUid uid, ReagentProducerAnomalyComponent component, ref AnomalyPulseEvent args) + { + if (_random.NextFloat(0.0f, 1.0f) > args.Stability) + ChangeReagent(uid, component, args.Severity); + } + + private void ChangeReagent(EntityUid uid, ReagentProducerAnomalyComponent component, float severity) + { + var reagent = GetRandomReagentType(uid, component, severity); + component.ProducingReagent = reagent; + _audio.PlayPvs(component.ChangeSound, uid); + } + + //reagent realtime generation + public override void Update(float frameTime) + { + base.Update(frameTime); + + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var component, out var anomaly)) + { + component.AccumulatedFrametime += frameTime; + + if (component.AccumulatedFrametime < component.UpdateInterval) + continue; + + if (!_solutionContainer.TryGetSolution(uid, component.Solution, out var producerSol)) + continue; + + Solution newSol = new(); + var reagentProducingAmount = anomaly.Stability * component.MaxReagentProducing * component.AccumulatedFrametime; + if (anomaly.Severity >= 0.97) reagentProducingAmount *= component.SupercriticalReagentProducingModifier; + + newSol.AddReagent(component.ProducingReagent, reagentProducingAmount); + _solutionContainer.TryAddSolution(uid, producerSol, newSol); //TO DO - the container is not fully filled. + + component.AccumulatedFrametime = 0; + + // The component will repaint the sprites of the object to match the current color of the solution, + // if the RandomSprite component is hung correctly. + + // Ideally, this should be put into a separate component, but I suffered for 4 hours, + // and nothing worked out for me. So for now it will be like this. + if (component.NeedRecolor) + { + var color = producerSol.GetColor(_prototypeManager); + _light.SetColor(uid, color); + if (TryComp(uid, out var randomSprite)) + { + foreach (var ent in randomSprite.Selected) + { + var state = randomSprite.Selected[ent.Key]; + state.Color = color; + randomSprite.Selected[ent.Key] = state; + } + Dirty(uid, randomSprite); + } + } + } + } + + private void OnMapInit(EntityUid uid, ReagentProducerAnomalyComponent component, MapInitEvent args) + { + ChangeReagent(uid, component, 0.1f); //MapInit Reagent 100% change + } + + // returns a random reagent based on a system of random weights. + // First, the category is selected: The category has a minimum and maximum weight, + // the current value depends on severity. + // Accordingly, with the strengthening of the anomaly, + // the chances of falling out of some categories grow, and some fall. + // + // After that, a random reagent in the selected category is selected. + // + // Such a system is made to control the danger and interest of the anomaly more. + private string GetRandomReagentType(EntityUid uid, ReagentProducerAnomalyComponent component, float severity) + { + //Category Weight Randomization + var currentWeightDangerous = MathHelper.Lerp(component.WeightSpreadDangerous.X, component.WeightSpreadDangerous.Y, severity); + var currentWeightFun = MathHelper.Lerp(component.WeightSpreadFun.X, component.WeightSpreadFun.Y, severity); + var currentWeightUseful = MathHelper.Lerp(component.WeightSpreadUseful.X, component.WeightSpreadUseful.Y, severity); + + var sumWeight = currentWeightDangerous + currentWeightFun + currentWeightUseful; + var rnd = _random.NextFloat(0f, sumWeight); + //Dangerous + if (rnd <= currentWeightDangerous && component.DangerousChemicals.Count > 0) + { + var reagent = _random.Pick(component.DangerousChemicals); + return reagent; + } + else rnd -= currentWeightDangerous; + //Fun + if (rnd <= currentWeightFun && component.FunChemicals.Count > 0) + { + var reagent = _random.Pick(component.FunChemicals); + return reagent; + } + else rnd -= currentWeightFun; + //Useful + if (rnd <= currentWeightUseful && component.UsefulChemicals.Count > 0) + { + var reagent = _random.Pick(component.UsefulChemicals); + return reagent; + } + //We should never end up here. + //Maybe Log Error? + return FallbackReagent; + } +} diff --git a/Content.Server/Anomaly/Effects/TileAnomalySystem.cs b/Content.Server/Anomaly/Effects/TileAnomalySystem.cs index 69644045d2e..16f32f6f4b1 100644 --- a/Content.Server/Anomaly/Effects/TileAnomalySystem.cs +++ b/Content.Server/Anomaly/Effects/TileAnomalySystem.cs @@ -1,4 +1,4 @@ -using System.Linq; +using System.Linq; using System.Numerics; using Content.Server.Maps; using Content.Shared.Anomaly.Components; @@ -38,7 +38,7 @@ private void OnSeverityChanged(EntityUid uid, TileSpawnAnomalyComponent componen new Box2(localpos + new Vector2(-radius, -radius), localpos + new Vector2(radius, radius))); foreach (var tileref in tilerefs) { - if (!_random.Prob(0.33f)) + if (!_random.Prob(component.SpawnChance)) continue; _tile.ReplaceTile(tileref, fleshTile); } diff --git a/Content.Server/Antag/AntagSelectionSystem.cs b/Content.Server/Antag/AntagSelectionSystem.cs new file mode 100644 index 00000000000..f1ca1817569 --- /dev/null +++ b/Content.Server/Antag/AntagSelectionSystem.cs @@ -0,0 +1,237 @@ +using Content.Server.GameTicking.Rules; +using Content.Server.GameTicking.Rules.Components; +using Content.Server.Roles.Jobs; +using Content.Server.Preferences.Managers; +using Content.Shared.Humanoid; +using Content.Shared.Preferences; +using Robust.Server.Player; +using System.Linq; +using Content.Server.Mind; +using Robust.Shared.Random; +using Robust.Shared.Map; +using System.Numerics; +using Content.Shared.Inventory; +using Content.Server.Storage.EntitySystems; +using Robust.Shared.Audio; +using Robust.Server.GameObjects; +using Content.Server.Chat.Managers; +using Content.Server.GameTicking; +using Robust.Shared.Containers; +using Content.Shared.Mobs.Components; +using Content.Server.Station.Systems; +using Content.Server.Shuttles.Systems; +using Content.Shared.Mobs; +using Robust.Server.Containers; +using Robust.Shared.Prototypes; + +namespace Content.Server.Antag; + +public sealed class AntagSelectionSystem : GameRuleSystem +{ + [Dependency] private readonly IChatManager _chatManager = default!; + [Dependency] private readonly IServerPreferencesManager _prefs = default!; + [Dependency] private readonly IPlayerManager _playerSystem = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly AudioSystem _audioSystem = default!; + [Dependency] private readonly ContainerSystem _containerSystem = default!; + [Dependency] private readonly JobSystem _jobs = default!; + [Dependency] private readonly MindSystem _mindSystem = default!; + [Dependency] private readonly InventorySystem _inventory = default!; + [Dependency] private readonly StorageSystem _storageSystem = default!; + [Dependency] private readonly StationSystem _stationSystem = default!; + [Dependency] private readonly EmergencyShuttleSystem _emergencyShuttle = default!; + + /// + /// Attempts to start the game rule by checking if there are enough players in lobby and readied. + /// + /// The roundstart attempt event + /// The entity the gamerule you are using is on + /// The minimum amount of players needed for you gamerule to start. + /// The gamerule component. + + public void AttemptStartGameRule(RoundStartAttemptEvent ev, EntityUid uid, int minPlayers, GameRuleComponent gameRule) + { + if (GameTicker.IsGameRuleAdded(uid, gameRule)) + { + if (!ev.Forced && ev.Players.Length < minPlayers) + { + _chatManager.SendAdminAnnouncement(Loc.GetString("rev-not-enough-ready-players", + ("readyPlayersCount", ev.Players.Length), + ("minimumPlayers", minPlayers))); + ev.Cancel(); + } + else if (ev.Players.Length == 0) + { + _chatManager.DispatchServerAnnouncement(Loc.GetString("rev-no-one-ready")); + ev.Cancel(); + } + } + } + + /// + /// Will check which players are eligible to be chosen for antagonist and give them the given antag. + /// + /// The antag prototype from your rule component. + /// How many antags can be present in any given round. + /// How many players you need to spawn an additional antag. + /// The intro sound that plays when the antag is chosen. + /// The antag message you want shown when the antag is chosen. + /// The color of the message for the antag greeting in hex. + /// A list of all the antags chosen in case you need to add stuff after. + /// Whether or not heads can be chosen as antags for this gamemode. + public void EligiblePlayers(string antagPrototype, + int maxAntags, + int antagsPerPlayer, + SoundSpecifier? antagSound, + string antagGreeting, + string greetingColor, + out List chosen, + bool includeHeads = false) + { + var allPlayers = _playerSystem.ServerSessions.ToList(); + var playerList = new List(); + var prefList = new List(); + chosen = new List(); + foreach (var player in allPlayers) + { + if (includeHeads == false) + { + if (!_jobs.CanBeAntag(player)) + continue; + } + + if (player.AttachedEntity == null || HasComp(player.AttachedEntity)) + playerList.Add(player); + else + continue; + + var pref = (HumanoidCharacterProfile) _prefs.GetPreferences(player.UserId).SelectedCharacter; + if (pref.AntagPreferences.Contains(antagPrototype)) + prefList.Add(player); + } + + if (playerList.Count == 0) + return; + + var antags = Math.Clamp(allPlayers.Count / antagsPerPlayer, 1, maxAntags); + for (var antag = 0; antag < antags; antag++) + { + IPlayerSession chosenPlayer; + if (prefList.Count == 0) + { + if (playerList.Count == 0) + { + break; + } + chosenPlayer = _random.PickAndTake(playerList); + } + else + { + chosenPlayer = _random.PickAndTake(prefList); + playerList.Remove(chosenPlayer); + } + + if (!_mindSystem.TryGetMind(chosenPlayer, out _, out var mind) || + mind.OwnedEntity is not { } ownedEntity) + { + continue; + } + + chosen.Add(ownedEntity); + _audioSystem.PlayGlobal(antagSound, ownedEntity); + if (mind.Session != null) + { + var message = Loc.GetString(antagGreeting); + var wrappedMessage = Loc.GetString("chat-manager-server-wrap-message", ("message", message)); + _chatManager.ChatMessageToOne(Shared.Chat.ChatChannel.Server, message, wrappedMessage, default, false, mind.Session.ConnectedClient, Color.FromHex(greetingColor)); + } + } + } + + /// + /// Will take a group of entities and check if they are all alive or dead + /// + /// The list of the entities + /// Bool for if you want to check if someone is in space and consider them dead. (Won't check when emergency shuttle arrives just in case) + /// + public bool IsGroupDead(List list, bool checkOffStation) + { + var dead = 0; + foreach (var entity in list) + { + if (TryComp(entity, out var state)) + { + if (state.CurrentState == MobState.Dead || state.CurrentState == MobState.Invalid) + { + dead++; + } + else if (checkOffStation && _stationSystem.GetOwningStation(entity) == null && !_emergencyShuttle.EmergencyShuttleArrived) + { + dead++; + } + } + //If they don't have the MobStateComponent they might as well be dead. + else + { + dead++; + } + } + + return dead == list.Count || list.Count == 0; + } + + /// + /// Will attempt to spawn an item inside of a persons bag and then pockets. + /// + /// The entity that you want to spawn an item on + /// A list of prototype IDs that you want to spawn in the bag. + public void GiveAntagBagGear(EntityUid antag, List items) + { + foreach (var item in items) + { + GiveAntagBagGear(antag, item); + } + } + + /// + /// Will attempt to spawn an item inside of a persons bag and then pockets. + /// + /// The entity that you want to spawn an item on + /// The prototype ID that you want to spawn in the bag. + public void GiveAntagBagGear(EntityUid antag, string item) + { + var itemToSpawn = Spawn(item, new EntityCoordinates(antag, Vector2.Zero)); + if (!_inventory.TryGetSlotContainer(antag, "back", out var backSlot, out _)) + return; + + var bag = backSlot.ContainedEntity; + if (bag != null && HasComp(bag) && _storageSystem.CanInsert(bag.Value, itemToSpawn, out _)) + { + _storageSystem.Insert(bag.Value, itemToSpawn, out _); + } + else if (_inventory.TryGetSlotContainer(antag, "jumpsuit", out var jumpsuit, out _) && jumpsuit.ContainedEntity != null) + { + if (_inventory.TryGetSlotContainer(antag, "pocket1", out var pocket1Slot, out _)) + { + if (pocket1Slot.ContainedEntity == null) + { + if (_containerSystem.CanInsert(itemToSpawn, pocket1Slot)) + { + pocket1Slot.Insert(itemToSpawn); + } + } + else if (_inventory.TryGetSlotContainer(antag, "pocket2", out var pocket2Slot, out _)) + { + if (pocket2Slot.ContainedEntity == null) + { + if (_containerSystem.CanInsert(itemToSpawn, pocket2Slot)) + { + pocket2Slot.Insert(itemToSpawn); + } + } + } + } + } + } +} + diff --git a/Content.Server/AssemblyInfo.cs b/Content.Server/AssemblyInfo.cs index 54b2cd50ace..513ab37ab23 100644 --- a/Content.Server/AssemblyInfo.cs +++ b/Content.Server/AssemblyInfo.cs @@ -1,3 +1,4 @@ using System.Runtime.CompilerServices; [assembly: InternalsVisibleTo("Content.Tests")] +[assembly: InternalsVisibleTo("Content.IntegrationTests")] diff --git a/Content.Server/Atmos/EntitySystems/AirtightSystem.cs b/Content.Server/Atmos/EntitySystems/AirtightSystem.cs index 9a97c880355..f899ffb2e82 100644 --- a/Content.Server/Atmos/EntitySystems/AirtightSystem.cs +++ b/Content.Server/Atmos/EntitySystems/AirtightSystem.cs @@ -21,7 +21,7 @@ public override void Initialize() SubscribeLocalEvent(OnAirtightShutdown); SubscribeLocalEvent(OnAirtightPositionChanged); SubscribeLocalEvent(OnAirtightReAnchor); - SubscribeLocalEvent(OnAirtightRotated); + SubscribeLocalEvent(OnAirtightMoved); } private void OnAirtightInit(EntityUid uid, AirtightComponent airtight, ComponentInit args) @@ -31,7 +31,7 @@ private void OnAirtightInit(EntityUid uid, AirtightComponent airtight, Component if (airtight.FixAirBlockedDirectionInitialize) { var moveEvent = new MoveEvent(uid, default, default, Angle.Zero, xform.LocalRotation, xform, false); - if (AirtightRotate(uid, airtight, ref moveEvent)) + if (AirtightMove(uid, airtight, ref moveEvent)) return; } @@ -78,19 +78,20 @@ private void OnAirtightReAnchor(EntityUid uid, AirtightComponent airtight, ref R } } - private void OnAirtightRotated(EntityUid uid, AirtightComponent airtight, ref MoveEvent ev) + private void OnAirtightMoved(EntityUid uid, AirtightComponent airtight, ref MoveEvent ev) { - AirtightRotate(uid, airtight, ref ev); + AirtightMove(uid, airtight, ref ev); } - private bool AirtightRotate(EntityUid uid, AirtightComponent airtight, ref MoveEvent ev) + private bool AirtightMove(EntityUid uid, AirtightComponent airtight, ref MoveEvent ev) { if (!airtight.RotateAirBlocked || airtight.InitialAirBlockedDirection == (int)AtmosDirection.Invalid) return false; airtight.CurrentAirBlockedDirection = (int) Rotate((AtmosDirection)airtight.InitialAirBlockedDirection, ev.NewRotation); + var pos = airtight.LastPosition; UpdatePosition(airtight, ev.Component); - var airtightEv = new AirtightChanged(uid, airtight); + var airtightEv = new AirtightChanged(uid, airtight, pos); RaiseLocalEvent(uid, ref airtightEv, true); return true; } @@ -100,11 +101,13 @@ public void SetAirblocked(EntityUid uid, AirtightComponent airtight, bool airblo if (airtight.AirBlocked == airblocked) return; - if (!Resolve(airtight.Owner, ref xform)) return; + if (!Resolve(uid, ref xform)) + return; + var pos = airtight.LastPosition; airtight.AirBlocked = airblocked; UpdatePosition(airtight, xform); - var airtightEv = new AirtightChanged(uid, airtight); + var airtightEv = new AirtightChanged(uid, airtight, pos); RaiseLocalEvent(uid, ref airtightEv, true); } @@ -154,5 +157,6 @@ private AtmosDirection Rotate(AtmosDirection myDirection, Angle myAngle) } [ByRefEvent] - public readonly record struct AirtightChanged(EntityUid Entity, AirtightComponent Airtight); + public readonly record struct AirtightChanged(EntityUid Entity, AirtightComponent Airtight, + (EntityUid Grid, Vector2i Tile) Position); } diff --git a/Content.Server/Bed/BedSystem.cs b/Content.Server/Bed/BedSystem.cs index 915bf7de29e..12eda65f84e 100644 --- a/Content.Server/Bed/BedSystem.cs +++ b/Content.Server/Bed/BedSystem.cs @@ -44,6 +44,7 @@ private void ManageUpdateList(EntityUid uid, HealOnBuckleComponent component, re AddComp(uid); component.NextHealTime = _timing.CurTime + TimeSpan.FromSeconds(component.HealTime); _actionsSystem.AddAction(args.BuckledEntity, ref component.SleepAction, SleepingSystem.SleepActionId, uid); + Dirty(uid, component); return; } diff --git a/Content.Server/Bed/Sleep/SleepingSystem.cs b/Content.Server/Bed/Sleep/SleepingSystem.cs index 30e3a99eeab..17fe4d5effb 100644 --- a/Content.Server/Bed/Sleep/SleepingSystem.cs +++ b/Content.Server/Bed/Sleep/SleepingSystem.cs @@ -1,6 +1,6 @@ -using Content.Server.Actions; using Content.Server.Popups; using Content.Server.Sound.Components; +using Content.Shared.Actions; using Content.Shared.Audio; using Content.Shared.Bed.Sleep; using Content.Shared.Damage; @@ -36,6 +36,7 @@ public override void Initialize() SubscribeLocalEvent(OnSleepStateChanged); SubscribeLocalEvent(OnDamageChanged); SubscribeLocalEvent(OnSleepAction); + SubscribeLocalEvent(OnBedSleepAction); SubscribeLocalEvent(OnWakeAction); SubscribeLocalEvent(OnMobStateChanged); SubscribeLocalEvent>(AddWakeVerb); @@ -93,6 +94,11 @@ private void OnSleepAction(EntityUid uid, MobStateComponent component, SleepActi TrySleeping(uid); } + private void OnBedSleepAction(EntityUid uid, ActionsContainerComponent component, SleepActionEvent args) + { + TrySleeping(args.Performer); + } + private void OnWakeAction(EntityUid uid, MobStateComponent component, WakeActionEvent args) { if (!TryWakeCooldown(uid)) diff --git a/Content.Server/Bible/BibleSystem.cs b/Content.Server/Bible/BibleSystem.cs index 18f34ba1cc1..e2cdc8c7440 100644 --- a/Content.Server/Bible/BibleSystem.cs +++ b/Content.Server/Bible/BibleSystem.cs @@ -133,7 +133,7 @@ private void OnAfterInteract(EntityUid uid, BibleComponent component, AfterInter var damage = _damageableSystem.TryChangeDamage(args.Target.Value, component.Damage, true, origin: uid); - if (damage == null || damage.Total == 0) + if (damage == null || damage.Empty) { var othersMessage = Loc.GetString(component.LocPrefix + "-heal-success-none-others", ("user", Identity.Entity(args.User, EntityManager)),("target", Identity.Entity(args.Target.Value, EntityManager)),("bible", uid)); _popupSystem.PopupEntity(othersMessage, args.User, Filter.PvsExcept(args.User), true, PopupType.Medium); diff --git a/Content.Server/Botany/SeedPrototype.cs b/Content.Server/Botany/SeedPrototype.cs index 82d5b8de10b..1a3c0473a48 100644 --- a/Content.Server/Botany/SeedPrototype.cs +++ b/Content.Server/Botany/SeedPrototype.cs @@ -374,15 +374,15 @@ public SeedData SpeciesChange(SeedData other) // Adding the new chemicals from the new species. foreach (var otherChem in other.Chemicals) { - Chemicals.TryAdd(otherChem.Key, otherChem.Value); + newSeed.Chemicals.TryAdd(otherChem.Key, otherChem.Value); } // Removing the inherent chemicals from the old species. Leaving mutated/crossbread ones intact. - foreach (var originalChem in Chemicals) + foreach (var originalChem in newSeed.Chemicals) { if (!other.Chemicals.ContainsKey(originalChem.Key) && originalChem.Value.Inherent) { - Chemicals.Remove(originalChem.Key); + newSeed.Chemicals.Remove(originalChem.Key); } } diff --git a/Content.Server/Botany/Systems/MutationSystem.cs b/Content.Server/Botany/Systems/MutationSystem.cs index 94a450ebeff..672139fbca2 100644 --- a/Content.Server/Botany/Systems/MutationSystem.cs +++ b/Content.Server/Botany/Systems/MutationSystem.cs @@ -37,7 +37,7 @@ public void MutateSeed(ref SeedData seed, float severity) } // Add up everything in the bits column and put the number here. - const int totalbits = 265; + const int totalbits = 270; // Tolerances (55) MutateFloat(ref seed.NutrientConsumption , 0.05f, 1.2f, 5, totalbits, severity); @@ -69,8 +69,7 @@ public void MutateSeed(ref SeedData seed, float severity) MutateBool(ref seed.Sentient , true , 10, totalbits, severity); MutateBool(ref seed.Ligneous , true , 10, totalbits, severity); MutateBool(ref seed.Bioluminescent, true , 10, totalbits, severity); - // Kudzu disabled until superkudzu bug is fixed - // MutateBool(ref seed.TurnIntoKudzu , true , 10, totalbits, severity); + MutateBool(ref seed.TurnIntoKudzu , true , 10, totalbits, severity); MutateBool(ref seed.CanScream , true , 10, totalbits, severity); seed.BioluminescentColor = RandomColor(seed.BioluminescentColor, 10, totalbits, severity); @@ -119,7 +118,7 @@ public SeedData Cross(SeedData a, SeedData b) CrossBool(ref result.Sentient, a.Sentient); CrossBool(ref result.Ligneous, a.Ligneous); CrossBool(ref result.Bioluminescent, a.Bioluminescent); - // CrossBool(ref result.TurnIntoKudzu, a.TurnIntoKudzu); + CrossBool(ref result.TurnIntoKudzu, a.TurnIntoKudzu); CrossBool(ref result.CanScream, a.CanScream); CrossGasses(ref result.ExudeGasses, a.ExudeGasses); diff --git a/Content.Server/Construction/Completions/ChangeWiresPanelSecurityLevel.cs b/Content.Server/Construction/Completions/ChangeWiresPanelSecurityLevel.cs deleted file mode 100644 index e4848492aef..00000000000 --- a/Content.Server/Construction/Completions/ChangeWiresPanelSecurityLevel.cs +++ /dev/null @@ -1,27 +0,0 @@ -using Content.Server.Wires; -using Content.Shared.Construction; -using Content.Shared.Wires; -using JetBrains.Annotations; - -namespace Content.Server.Construction.Completions; - -[UsedImplicitly] -[DataDefinition] -public sealed partial class ChangeWiresPanelSecurityLevel : IGraphAction -{ - [DataField("level")] - [ValidatePrototypeId] - public string WiresPanelSecurityLevelID = "Level0"; - - public void PerformAction(EntityUid uid, EntityUid? userUid, IEntityManager entityManager) - { - if (WiresPanelSecurityLevelID == null) - return; - - if (entityManager.TryGetComponent(uid, out WiresPanelComponent? wiresPanel) - && entityManager.TrySystem(out WiresSystem? wiresSystem)) - { - wiresSystem.SetWiresPanelSecurityData(uid, wiresPanel, WiresPanelSecurityLevelID); - } - } -} diff --git a/Content.Server/Construction/Completions/SetWiresPanelSecurity.cs b/Content.Server/Construction/Completions/SetWiresPanelSecurity.cs new file mode 100644 index 00000000000..fc718249c26 --- /dev/null +++ b/Content.Server/Construction/Completions/SetWiresPanelSecurity.cs @@ -0,0 +1,35 @@ +using Content.Shared.Construction; +using Content.Shared.Wires; +using JetBrains.Annotations; + +namespace Content.Server.Construction.Completions; + +/// +/// This graph action is used to set values on entities with the +/// + +[UsedImplicitly] +[DataDefinition] +public sealed partial class SetWiresPanelSecurity : IGraphAction +{ + /// + /// Sets the Examine field on the entity's + /// + [DataField("examine")] + public string Examine = string.Empty; + + /// + /// Sets the WiresAccessible field on the entity's + /// + [DataField("wiresAccessible")] + public bool WiresAccessible = true; + + public void PerformAction(EntityUid uid, EntityUid? userUid, IEntityManager entityManager) + { + if (entityManager.TryGetComponent(uid, out WiresPanelSecurityComponent? _)) + { + var ev = new WiresPanelSecurityEvent(Examine, WiresAccessible); + entityManager.EventBus.RaiseLocalEvent(uid, ev); + } + } +} diff --git a/Content.Server/Construction/Conditions/HasTag.cs b/Content.Server/Construction/Conditions/HasTag.cs new file mode 100644 index 00000000000..b89dbbfd490 --- /dev/null +++ b/Content.Server/Construction/Conditions/HasTag.cs @@ -0,0 +1,43 @@ +using Content.Shared.Construction; +using JetBrains.Annotations; +using Content.Shared.Doors.Components; +using Content.Shared.Examine; +using YamlDotNet.Core.Tokens; +using Content.Shared.Tag; + +namespace Content.Server.Construction.Conditions +{ + /// + /// This condition checks whether if an entity with the possesses a specific tag + /// + [UsedImplicitly] + [DataDefinition] + public sealed partial class HasTag : IGraphCondition + { + /// + /// The tag the entity is being checked for + /// + [DataField("tag")] + public string Tag { get; private set; } + + public bool Condition(EntityUid uid, IEntityManager entityManager) + { + if (!entityManager.TrySystem(out var tagSystem)) + return false; + + return tagSystem.HasTag(uid, Tag); + } + + public bool DoExamine(ExaminedEvent args) + { + return false; + } + + public IEnumerable GenerateGuideEntry() + { + yield return new ConstructionGuideEntry() + { + }; + } + } +} diff --git a/Content.Server/Construction/ConstructionSystem.Graph.cs b/Content.Server/Construction/ConstructionSystem.Graph.cs index 5d4bcde4cec..be8b0e688dd 100644 --- a/Content.Server/Construction/ConstructionSystem.Graph.cs +++ b/Content.Server/Construction/ConstructionSystem.Graph.cs @@ -8,6 +8,7 @@ using Robust.Server.Containers; using Robust.Shared.Containers; using Robust.Shared.Prototypes; +using System.Linq; namespace Content.Server.Construction { @@ -298,9 +299,23 @@ public bool ChangeNode(EntityUid uid, EntityUid? userUid, string id, bool perfor throw new Exception("Missing construction components"); } + // Exit if the new entity's prototype is the same as the original, or the prototype is invalid if (newEntity == metaData.EntityPrototype?.ID || !_prototypeManager.HasIndex(newEntity)) return null; + // [Optional] Exit if the new entity's prototype is a parent of the original + // E.g., if an entity with the 'AirlockCommand' prototype was to be replaced with a new entity that + // had the 'Airlock' prototype, and DoNotReplaceInheritingEntities was true, the code block would + // exit here because 'AirlockCommand' is derived from 'Airlock' + if (GetCurrentNode(uid, construction)?.DoNotReplaceInheritingEntities == true && + metaData.EntityPrototype?.ID != null) + { + var parents = _prototypeManager.EnumerateParents(metaData.EntityPrototype.ID)?.ToList(); + + if (parents != null && parents.Any(x => x.ID == newEntity)) + return null; + } + // Optional resolves. Resolve(uid, ref containerManager, false); diff --git a/Content.Server/Construction/ConstructionSystem.Interactions.cs b/Content.Server/Construction/ConstructionSystem.Interactions.cs index e6c0f039b02..21daabdb5da 100644 --- a/Content.Server/Construction/ConstructionSystem.Interactions.cs +++ b/Content.Server/Construction/ConstructionSystem.Interactions.cs @@ -9,8 +9,10 @@ using Content.Shared.Construction.Steps; using Content.Shared.DoAfter; using Content.Shared.Interaction; +using Content.Shared.Prying.Systems; using Content.Shared.Radio.EntitySystems; using Content.Shared.Tools.Components; +using Content.Shared.Tools.Systems; using Robust.Shared.Containers; using Robust.Shared.Map; using Robust.Shared.Utility; @@ -37,7 +39,7 @@ private void InitializeInteractions() // Event handling. Add your subscriptions here! Just make sure they're all handled by EnqueueEvent. SubscribeLocalEvent(EnqueueEvent, - new []{typeof(AnchorableSystem)}, + new []{typeof(AnchorableSystem), typeof(PryingSystem), typeof(WeldableSystem)}, new []{typeof(EncryptionKeySystem)}); SubscribeLocalEvent(EnqueueEvent); SubscribeLocalEvent(EnqueueEvent); diff --git a/Content.Server/Destructible/Thresholds/Behaviors/OpenBehavior.cs b/Content.Server/Destructible/Thresholds/Behaviors/OpenBehavior.cs new file mode 100644 index 00000000000..f01e4f7048e --- /dev/null +++ b/Content.Server/Destructible/Thresholds/Behaviors/OpenBehavior.cs @@ -0,0 +1,17 @@ +using Content.Server.Nutrition.EntitySystems; + +namespace Content.Server.Destructible.Thresholds.Behaviors; + +/// +/// Causes the drink/food to open when the destruction threshold is reached. +/// If it is already open nothing happens. +/// +[DataDefinition] +public sealed partial class OpenBehavior : IThresholdBehavior +{ + public void Execute(EntityUid uid, DestructibleSystem system, EntityUid? cause = null) + { + var openable = EntitySystem.Get(); + openable.TryOpen(uid); + } +} diff --git a/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs b/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs index 41db7b1dd89..baec99b6a57 100644 --- a/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs +++ b/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs @@ -19,6 +19,7 @@ using Content.Shared.Emag.Systems; using Content.Shared.Hands.Components; using Content.Shared.Hands.EntitySystems; +using Content.Shared.IdentityManagement; using Content.Shared.Interaction; using Content.Shared.Item; using Content.Shared.Movement.Events; @@ -489,7 +490,12 @@ public bool TryInsert(EntityUid unitId, EntityUid toInsertId, EntityUid? userId, if (!CanInsert(unitId, unit, toInsertId)) return false; - var delay = userId == toInsertId ? unit.EntryDelay : unit.DraggedEntryDelay; + bool insertingSelf = userId == toInsertId; + + var delay = insertingSelf ? unit.EntryDelay : unit.DraggedEntryDelay; + + if (userId != null && !insertingSelf) + _popupSystem.PopupEntity(Loc.GetString("disposal-unit-being-inserted", ("user", Identity.Entity((EntityUid) userId, EntityManager))), toInsertId, toInsertId, PopupType.Large); if (delay <= 0 || userId == null) { diff --git a/Content.Server/Doors/Systems/AirlockSystem.cs b/Content.Server/Doors/Systems/AirlockSystem.cs index 0ea2755ab66..ce517febf6d 100644 --- a/Content.Server/Doors/Systems/AirlockSystem.cs +++ b/Content.Server/Doors/Systems/AirlockSystem.cs @@ -18,7 +18,6 @@ public sealed class AirlockSystem : SharedAirlockSystem [Dependency] private readonly WiresSystem _wiresSystem = default!; [Dependency] private readonly PowerReceiverSystem _power = default!; [Dependency] private readonly DoorBoltSystem _bolts = default!; - [Dependency] private readonly IPrototypeManager _prototypeManager = default!; public override void Initialize() { @@ -153,10 +152,12 @@ private void OnActivate(EntityUid uid, AirlockComponent component, ActivateInWor { if (TryComp(uid, out var panel) && panel.Open && - _prototypeManager.TryIndex(panel.CurrentSecurityLevelID, out var securityLevelPrototype) && - securityLevelPrototype.WiresAccessible && TryComp(args.User, out var actor)) { + if (TryComp(uid, out var wiresPanelSecurity) && + !wiresPanelSecurity.WiresAccessible) + return; + _wiresSystem.OpenUserInterface(uid, actor.PlayerSession); args.Handled = true; return; @@ -179,7 +180,7 @@ private void OnBeforePry(EntityUid uid, AirlockComponent component, ref BeforePr { if (this.IsPowered(uid, EntityManager) && !args.PryPowered) { - Popup.PopupClient(Loc.GetString("airlock-component-cannot-pry-is-powered-message"), uid, args.User); + Popup.PopupEntity(Loc.GetString("airlock-component-cannot-pry-is-powered-message"), uid, args.User); args.Cancelled = true; } } diff --git a/Content.Server/Electrocution/ElectrocutionSystem.cs b/Content.Server/Electrocution/ElectrocutionSystem.cs index 844d526c58e..48415c39533 100644 --- a/Content.Server/Electrocution/ElectrocutionSystem.cs +++ b/Content.Server/Electrocution/ElectrocutionSystem.cs @@ -177,7 +177,7 @@ private void OnElectrifiedAttacked(EntityUid uid, ElectrifiedComponent electrifi if (!electrified.OnAttacked) return; - if (_meleeWeapon.GetDamage(args.Used, args.User).Total == 0) + if (!_meleeWeapon.GetDamage(args.Used, args.User).Any()) return; TryDoElectrifiedAct(uid, args.User, 1, electrified); @@ -192,7 +192,7 @@ private void OnElectrifiedHandInteract(EntityUid uid, ElectrifiedComponent elect private void OnLightAttacked(EntityUid uid, PoweredLightComponent component, AttackedEvent args) { - if (_meleeWeapon.GetDamage(args.Used, args.User).Total == 0) + if (!_meleeWeapon.GetDamage(args.Used, args.User).Any()) return; if (args.Used != args.User) diff --git a/Content.Server/Entry/EntryPoint.cs b/Content.Server/Entry/EntryPoint.cs index 41b6963332f..d71225116ca 100644 --- a/Content.Server/Entry/EntryPoint.cs +++ b/Content.Server/Entry/EntryPoint.cs @@ -21,20 +21,20 @@ using Content.Server.Voting.Managers; using Content.Shared.CCVar; using Content.Shared.Kitchen; +using Content.Shared.Localizations; using Robust.Server; -using Robust.Shared.Configuration; using Robust.Server.ServerStatus; +using Robust.Shared.Configuration; using Robust.Shared.ContentPack; using Robust.Shared.Prototypes; using Robust.Shared.Timing; using Robust.Shared.Utility; -using Content.Shared.Localizations; namespace Content.Server.Entry { public sealed class EntryPoint : GameServer { - private const string ConfigPresetsDir = "/ConfigPresets/"; + internal const string ConfigPresetsDir = "/ConfigPresets/"; private const string ConfigPresetsDirBuild = $"{ConfigPresetsDir}Build/"; private EuiManager _euiManager = default!; diff --git a/Content.Server/Flash/FlashSystem.cs b/Content.Server/Flash/FlashSystem.cs index 04b3f0cd246..bc2c4ddabaf 100644 --- a/Content.Server/Flash/FlashSystem.cs +++ b/Content.Server/Flash/FlashSystem.cs @@ -5,7 +5,6 @@ using Content.Server.Stunnable; using Content.Shared.Charges.Components; using Content.Shared.Charges.Systems; -using Content.Shared.Damage; using Content.Shared.Eye.Blinding.Components; using Content.Shared.Flash; using Content.Shared.IdentityManagement; @@ -13,7 +12,6 @@ using Content.Shared.Interaction.Events; using Content.Shared.Inventory; using Content.Shared.Physics; -using Content.Shared.Popups; using Content.Shared.Tag; using Content.Shared.Traits.Assorted; using Content.Shared.Weapons.Melee.Events; @@ -41,11 +39,11 @@ internal sealed class FlashSystem : SharedFlashSystem public override void Initialize() { base.Initialize(); + SubscribeLocalEvent(OnFlashMeleeHit); // ran before toggling light for extra-bright lantern SubscribeLocalEvent(OnFlashUseInHand, before: new []{ typeof(HandheldLightSystem) }); SubscribeLocalEvent(OnInventoryFlashAttempt); - SubscribeLocalEvent(OnFlashImmunityFlashAttempt); SubscribeLocalEvent(OnPermanentBlindnessFlashAttempt); SubscribeLocalEvent(OnTemporaryBlindnessFlashAttempt); @@ -63,7 +61,7 @@ private void OnFlashMeleeHit(EntityUid uid, FlashComponent comp, MeleeHitEvent a args.Handled = true; foreach (var e in args.HitEntities) { - Flash(e, args.User, uid, comp.FlashDuration, comp.SlowTo); + Flash(e, args.User, uid, comp.FlashDuration, comp.SlowTo, melee: true); } } @@ -106,9 +104,17 @@ private bool UseFlash(EntityUid uid, FlashComponent comp, EntityUid user) return true; } - public void Flash(EntityUid target, EntityUid? user, EntityUid? used, float flashDuration, float slowTo, bool displayPopup = true, FlashableComponent? flashable = null) + public void Flash(EntityUid target, + EntityUid? user, + EntityUid? used, + float flashDuration, + float slowTo, + bool displayPopup = true, + FlashableComponent? flashable = null, + bool melee = false) { - if (!Resolve(target, ref flashable, false)) return; + if (!Resolve(target, ref flashable, false)) + return; var attempt = new FlashAttemptEvent(target, user, used); RaiseLocalEvent(target, attempt, true); @@ -116,18 +122,28 @@ public void Flash(EntityUid target, EntityUid? user, EntityUid? used, float flas if (attempt.Cancelled) return; + if (melee) + { + var ev = new AfterFlashedEvent(target, user, used); + if (user != null) + RaiseLocalEvent(user.Value, ref ev); + if (used != null) + RaiseLocalEvent(used.Value, ref ev); + } + flashable.LastFlash = _timing.CurTime; flashable.Duration = flashDuration / 1000f; // TODO: Make this sane... - Dirty(flashable); + Dirty(target, flashable); _stun.TrySlowdown(target, TimeSpan.FromSeconds(flashDuration/1000f), true, slowTo, slowTo); - if (displayPopup && user != null && target != user && EntityManager.EntityExists(user.Value)) + if (displayPopup && user != null && target != user && Exists(user.Value)) { - user.Value.PopupMessage(target, Loc.GetString("flash-component-user-blinds-you", - ("user", Identity.Entity(user.Value, EntityManager)))); + _popup.PopupEntity(Loc.GetString("flash-component-user-blinds-you", + ("user", Identity.Entity(user.Value, EntityManager))), target, target); } + } public void FlashArea(EntityUid source, EntityUid? user, float range, float duration, float slowTo = 0.8f, bool displayPopup = false, SoundSpecifier? sound = null) @@ -201,4 +217,24 @@ public FlashAttemptEvent(EntityUid target, EntityUid? user, EntityUid? used) Used = used; } } + /// + /// Called after a flash is used via melee on another person to check for rev conversion. + /// Raised on the user of the flash, the target hit by the flash, and the flash used. + /// + [ByRefEvent] + public readonly struct AfterFlashedEvent + { + public readonly EntityUid Target; + public readonly EntityUid? User; + public readonly EntityUid? Used; + + public AfterFlashedEvent(EntityUid target, EntityUid? user, EntityUid? used) + { + Target = target; + User = user; + Used = used; + } + } + + } diff --git a/Content.Server/Fluids/EntitySystems/PuddleSystem.cs b/Content.Server/Fluids/EntitySystems/PuddleSystem.cs index 614e6854563..1fb56a7aa1f 100644 --- a/Content.Server/Fluids/EntitySystems/PuddleSystem.cs +++ b/Content.Server/Fluids/EntitySystems/PuddleSystem.cs @@ -103,7 +103,7 @@ private void OnPuddleSpread(EntityUid uid, PuddleComponent component, ref Spread if (overflow.Volume == FixedPoint2.Zero) { - RemCompDeferred(uid); + RemCompDeferred(uid); return; } @@ -137,7 +137,7 @@ private void OnPuddleSpread(EntityUid uid, PuddleComponent component, ref Spread continue; args.Updates--; - EnsureComp(neighbor); + EnsureComp(neighbor); if (args.Updates <= 0) break; @@ -145,7 +145,7 @@ private void OnPuddleSpread(EntityUid uid, PuddleComponent component, ref Spread if (overflow.Volume == FixedPoint2.Zero) { - RemCompDeferred(uid); + RemCompDeferred(uid); return; } } @@ -168,7 +168,7 @@ private void OnPuddleSpread(EntityUid uid, PuddleComponent component, ref Spread break; } - RemCompDeferred(uid); + RemCompDeferred(uid); return; } @@ -192,7 +192,7 @@ private void OnPuddleSpread(EntityUid uid, PuddleComponent component, ref Spread if (!_solutionContainerSystem.TryAddSolution(neighbor, neighborSolution, split)) continue; - EnsureComp(neighbor); + EnsureComp(neighbor); args.Updates--; if (args.Updates <= 0) @@ -438,7 +438,7 @@ public bool TryAddSolution(EntityUid puddleUid, if (checkForOverflow && IsOverflowing(puddleUid, puddleComponent)) { - EnsureComp(puddleUid); + EnsureComp(puddleUid); } if (!sound) @@ -638,7 +638,7 @@ public bool TrySpillAt(TileRef tileRef, Solution solution, out EntityUid puddleU if (TryAddSolution(ent.Value, solution, sound, puddleComponent: puddle)) { - EnsureComp(ent.Value); + EnsureComp(ent.Value); } puddleUid = ent.Value; @@ -650,7 +650,7 @@ public bool TrySpillAt(TileRef tileRef, Solution solution, out EntityUid puddleU EnsureComp(puddleUid); if (TryAddSolution(puddleUid, solution, sound)) { - EnsureComp(puddleUid); + EnsureComp(puddleUid); } return true; } diff --git a/Content.Server/Fluids/EntitySystems/SmokeSystem.cs b/Content.Server/Fluids/EntitySystems/SmokeSystem.cs index a192b39e560..b3590fec402 100644 --- a/Content.Server/Fluids/EntitySystems/SmokeSystem.cs +++ b/Content.Server/Fluids/EntitySystems/SmokeSystem.cs @@ -1,23 +1,16 @@ using System.Linq; -using Content.Server.Administration.Logs; -using Content.Server.Body.Components; -using Content.Server.Body.Systems; using Content.Server.Chemistry.Components; using Content.Server.Chemistry.EntitySystems; using Content.Server.Chemistry.ReactionEffects; using Content.Server.Spreader; -using Content.Shared.Chemistry; using Content.Shared.Chemistry.Components; using Content.Shared.Chemistry.Reaction; -using Content.Shared.Chemistry.Reagent; -using Content.Shared.Coordinates.Helpers; -using Content.Shared.Database; using Content.Shared.FixedPoint; using Content.Shared.Smoking; -using Robust.Shared.Spawners; using Robust.Server.GameObjects; using Robust.Shared.Map; using Robust.Shared.Prototypes; +using Robust.Shared.Random; using Robust.Shared.Spawners; using Robust.Shared.Timing; using TimedDespawnComponent = Robust.Shared.Spawners.TimedDespawnComponent; @@ -36,6 +29,7 @@ public sealed class SmokeSystem : EntitySystem [Dependency] private readonly AppearanceSystem _appearance = default!; [Dependency] private readonly EntityLookupSystem _lookup = default!; [Dependency] private readonly SolutionContainerSystem _solutionSystem = default!; + [Dependency] private readonly IRobustRandom _random = default!; /// public override void Initialize() @@ -45,15 +39,6 @@ public override void Initialize() SubscribeLocalEvent(OnReactionAttempt); SubscribeLocalEvent(OnSmokeSpread); SubscribeLocalEvent(OnSmokeDissipate); - SubscribeLocalEvent(OnSpreadUpdateRate); - } - - private void OnSpreadUpdateRate(ref SpreadGroupUpdateRate ev) - { - if (ev.Name != "smoke") - return; - - ev.UpdatesPerSecond = 8; } private void OnSmokeDissipate(EntityUid uid, SmokeDissipateSpawnComponent component, ref TimedDespawnEvent args) @@ -68,11 +53,10 @@ private void OnSmokeDissipate(EntityUid uid, SmokeDissipateSpawnComponent compon private void OnSmokeSpread(EntityUid uid, SmokeComponent component, ref SpreadNeighborsEvent args) { - if (component.SpreadAmount == 0 || - !_solutionSystem.TryGetSolution(uid, SmokeComponent.SolutionName, out var solution) || - args.NeighborFreeTiles.Count == 0) + if (component.SpreadAmount == 0 + || !_solutionSystem.TryGetSolution(uid, SmokeComponent.SolutionName, out var solution)) { - RemCompDeferred(uid); + RemCompDeferred(uid); return; } @@ -80,68 +64,62 @@ private void OnSmokeSpread(EntityUid uid, SmokeComponent component, ref SpreadNe if (prototype == null) { - RemCompDeferred(uid); + RemCompDeferred(uid); return; } TryComp(uid, out var timer); + _appearance.TryGetData(uid, SmokeVisuals.Color, out var color); - var smokePerSpread = component.SpreadAmount / args.NeighborFreeTiles.Count; - component.SpreadAmount -= smokePerSpread; - + // wtf is the logic behind any of this. + var smokePerSpread = 1 + component.SpreadAmount / Math.Max(1, args.NeighborFreeTiles.Count); foreach (var neighbor in args.NeighborFreeTiles) { var coords = neighbor.Grid.GridTileToLocal(neighbor.Tile); - var ent = Spawn(prototype.ID, coords.SnapToGrid()); + var ent = Spawn(prototype.ID, coords); var neighborSmoke = EnsureComp(ent); - neighborSmoke.SpreadAmount = Math.Max(0, smokePerSpread - 1); + neighborSmoke.SpreadAmount = Math.Max(0, smokePerSpread - 2); // why - 2? who the fuck knows. + component.SpreadAmount--; args.Updates--; // Listen this is the old behaviour iunno Start(ent, neighborSmoke, solution.Clone(), timer?.Lifetime ?? 10f); - if (_appearance.TryGetData(uid, SmokeVisuals.Color, out var color)) - { + if (color != null) _appearance.SetData(ent, SmokeVisuals.Color, color); - } - // Only 1 spread then ig? - if (smokePerSpread == 0) + if (component.SpreadAmount == 0) { - component.SpreadAmount--; - - if (component.SpreadAmount == 0) - { - RemCompDeferred(uid); - break; - } + RemCompDeferred(uid); + break; } if (args.Updates <= 0) break; } - // Give our spread to neighbor tiles. - if (args.NeighborFreeTiles.Count == 0 && args.Neighbors.Count > 0 && component.SpreadAmount > 0) - { - var smokeQuery = GetEntityQuery(); + if (args.NeighborFreeTiles.Count > 0 || args.Neighbors.Count == 0 || component.SpreadAmount < 1) + return; - foreach (var neighbor in args.Neighbors) - { - if (!smokeQuery.TryGetComponent(neighbor, out var smoke)) - continue; + // We have no more neighbours to spread to. So instead we will randomly distribute our volume to neighbouring smoke tiles. + + var smokeQuery = GetEntityQuery(); - smoke.SpreadAmount++; - args.Updates--; + _random.Shuffle(args.Neighbors); + foreach (var neighbor in args.Neighbors) + { + if (!smokeQuery.TryGetComponent(neighbor, out var smoke)) + continue; - if (component.SpreadAmount == 0) - { - RemCompDeferred(uid); - break; - } + smoke.SpreadAmount++; + args.Updates--; + component.SpreadAmount--; + EnsureComp(neighbor); - if (args.Updates <= 0) - break; + if (component.SpreadAmount == 0) + { + RemCompDeferred(uid); + break; } } } @@ -248,7 +226,7 @@ private void ReactWithEntity(EntityUid entity, Solution solution, double solutio public void Start(EntityUid uid, SmokeComponent component, Solution solution, float duration) { TryAddSolution(uid, component, solution); - EnsureComp(uid); + EnsureComp(uid); var timer = EnsureComp(uid); timer.Lifetime = duration; } diff --git a/Content.Server/Friends/Systems/PettableFriendSystem.cs b/Content.Server/Friends/Systems/PettableFriendSystem.cs index 6ef9724877a..c4f65863416 100644 --- a/Content.Server/Friends/Systems/PettableFriendSystem.cs +++ b/Content.Server/Friends/Systems/PettableFriendSystem.cs @@ -9,7 +9,7 @@ namespace Content.Server.Friends.Systems; public sealed class PettableFriendSystem : EntitySystem { - [Dependency] private readonly FactionExceptionSystem _factionException = default!; + [Dependency] private readonly NpcFactionSystem _factionException = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; public override void Initialize() @@ -26,7 +26,7 @@ private void OnUseInHand(EntityUid uid, PettableFriendComponent comp, UseInHandE if (args.Handled || !TryComp(uid, out var factionException)) return; - if (_factionException.IsIgnored(factionException, user)) + if (_factionException.IsIgnored(uid, user, factionException)) { _popup.PopupEntity(Loc.GetString(comp.FailureString, ("target", uid)), user, user); return; @@ -34,7 +34,7 @@ private void OnUseInHand(EntityUid uid, PettableFriendComponent comp, UseInHandE // you have made a new friend :) _popup.PopupEntity(Loc.GetString(comp.SuccessString, ("target", uid)), user, user); - _factionException.IgnoreEntity(factionException, user); + _factionException.IgnoreEntity(uid, user, factionException); args.Handled = true; } @@ -45,6 +45,6 @@ private void OnRehydrated(EntityUid uid, PettableFriendComponent _, ref GotRehyd return; var targetComp = AddComp(args.Target); - _factionException.IgnoreEntities(targetComp, comp.Ignored); + _factionException.IgnoreEntities(args.Target, comp.Ignored, targetComp); } } diff --git a/Content.Server/GameTicking/Rules/Components/RevolutionaryRuleComponent.cs b/Content.Server/GameTicking/Rules/Components/RevolutionaryRuleComponent.cs new file mode 100644 index 00000000000..f015f8bd573 --- /dev/null +++ b/Content.Server/GameTicking/Rules/Components/RevolutionaryRuleComponent.cs @@ -0,0 +1,74 @@ +using Content.Shared.Roles; +using Robust.Shared.Audio; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; + +namespace Content.Server.GameTicking.Rules.Components; + +/// +/// Component for the RevolutionaryRuleSystem that stores info about winning/losing, player counts required for starting, as well as prototypes for Revolutionaries and their gear. +/// +[RegisterComponent, Access(typeof(RevolutionaryRuleSystem))] +public sealed partial class RevolutionaryRuleComponent : Component +{ + /// + /// When the round will if all the command are dead (Incase they are in space) + /// + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] + public TimeSpan CommandCheck; + + /// + /// The amount of time between each check for command check. + /// + [DataField] + public TimeSpan TimerWait = TimeSpan.FromSeconds(20); + + /// + /// Stores players minds + /// + [DataField] + public Dictionary HeadRevs = new(); + + [DataField] + public ProtoId RevPrototypeId = "Rev"; + + /// + /// Sound that plays when you are chosen as Rev. (Placeholder until I find something cool I guess) + /// + [DataField] + public SoundSpecifier HeadRevStartSound = new SoundPathSpecifier("/Audio/Ambience/Antag/traitor_start.ogg"); + + /// + /// Min players needed for Revolutionary gamemode to start. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public int MinPlayers = 15; + + /// + /// Max Head Revs allowed during selection. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public int MaxHeadRevs = 3; + + /// + /// The amount of Head Revs that will spawn per this amount of players. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public int PlayersPerHeadRev = 15; + + /// + /// The gear head revolutionaries are given on spawn. + /// + [DataField] + public List StartingGear = new() + { + "Flash", + "ClothingEyesGlassesSunglasses" + }; + + /// + /// The time it takes after the last head is killed for the shuttle to arrive. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public TimeSpan ShuttleCallTime = TimeSpan.FromMinutes(5); +} diff --git a/Content.Server/GameTicking/Rules/RevolutionaryRuleSystem.cs b/Content.Server/GameTicking/Rules/RevolutionaryRuleSystem.cs new file mode 100644 index 00000000000..d6195aaa540 --- /dev/null +++ b/Content.Server/GameTicking/Rules/RevolutionaryRuleSystem.cs @@ -0,0 +1,321 @@ +using System.Linq; +using Content.Server.Administration.Logs; +using Content.Server.Antag; +using Content.Server.Chat.Managers; +using Content.Server.Flash; +using Content.Server.GameTicking.Rules.Components; +using Content.Server.Mind; +using Content.Server.NPC.Components; +using Content.Server.NPC.Systems; +using Content.Server.Popups; +using Content.Server.Revolutionary.Components; +using Content.Server.Roles; +using Content.Server.RoundEnd; +using Content.Shared.Chat; +using Content.Shared.Database; +using Content.Shared.Humanoid; +using Content.Shared.IdentityManagement; +using Content.Shared.Mind; +using Content.Shared.Mindshield.Components; +using Content.Shared.Mobs; +using Content.Shared.Mobs.Components; +using Content.Shared.Mobs.Systems; +using Content.Shared.Revolutionary.Components; +using Content.Shared.Roles; +using Content.Shared.Stunnable; +using Content.Shared.Zombies; +using Robust.Shared.Timing; + +namespace Content.Server.GameTicking.Rules; + +/// +/// Where all the main stuff for Revolutionaries happens (Assigning Head Revs, Command on station, and checking for the game to end.) +/// +public sealed class RevolutionaryRuleSystem : GameRuleSystem +{ + [Dependency] private readonly IAdminLogManager _adminLogManager = default!; + [Dependency] private readonly IChatManager _chatManager = default!; + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly AntagSelectionSystem _antagSelection = default!; + [Dependency] private readonly MindSystem _mind = default!; + [Dependency] private readonly MobStateSystem _mobState = default!; + [Dependency] private readonly NpcFactionSystem _npcFaction = default!; + [Dependency] private readonly PopupSystem _popup = default!; + [Dependency] private readonly RoleSystem _role = default!; + [Dependency] private readonly SharedStunSystem _stun = default!; + [Dependency] private readonly RoundEndSystem _roundEnd = default!; + + [ValidatePrototypeId] + public const string RevolutionaryNpcFaction = "Revolutionary"; + [ValidatePrototypeId] + public const string RevolutionaryAntagRole = "Rev"; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnStartAttempt); + SubscribeLocalEvent(OnPlayerJobAssigned); + SubscribeLocalEvent(OnCommandMobStateChanged); + SubscribeLocalEvent(OnHeadRevMobStateChanged); + SubscribeLocalEvent(OnRoundEndText); + SubscribeLocalEvent(OnGetBriefing); + SubscribeLocalEvent(OnPostFlash); + } + + protected override void Started(EntityUid uid, RevolutionaryRuleComponent component, GameRuleComponent gameRule, GameRuleStartedEvent args) + { + base.Started(uid, component, gameRule, args); + component.CommandCheck = _timing.CurTime + component.TimerWait; + } + + /// + /// Checks if the round should end and also checks who has a mindshield. + /// + protected override void ActiveTick(EntityUid uid, RevolutionaryRuleComponent component, GameRuleComponent gameRule, float frameTime) + { + base.ActiveTick(uid, component, gameRule, frameTime); + if (component.CommandCheck <= _timing.CurTime) + { + component.CommandCheck = _timing.CurTime + component.TimerWait; + + if (CheckCommandLose()) + { + _roundEnd.DoRoundEndBehavior(RoundEndBehavior.ShuttleCall, component.ShuttleCallTime); + GameTicker.EndGameRule(uid, gameRule); + } + } + } + + private void OnRoundEndText(RoundEndTextAppendEvent ev) + { + var revsLost = CheckRevsLose(); + var commandLost = CheckCommandLose(); + var query = AllEntityQuery(); + while (query.MoveNext(out var headrev)) + { + // This is (revsLost, commandsLost) concatted together + // (moony wrote this comment idk what it means) + var index = (commandLost ? 1 : 0) | (revsLost ? 2 : 0); + ev.AddLine(Loc.GetString(Outcomes[index])); + + ev.AddLine(Loc.GetString("head-rev-initial-count", ("initialCount", headrev.HeadRevs.Count))); + foreach (var player in headrev.HeadRevs) + { + _mind.TryGetSession(player.Value, out var session); + var username = session?.Name; + if (username != null) + { + ev.AddLine(Loc.GetString("head-rev-initial-name-user", + ("name", player.Key), + ("username", username))); + } + else + { + ev.AddLine(Loc.GetString("head-rev-initial-name", + ("name", player.Key))); + } + } + break; + } + } + + private void OnGetBriefing(EntityUid uid, RevolutionaryRoleComponent comp, ref GetBriefingEvent args) + { + if (!TryComp(uid, out var mind) || mind.OwnedEntity == null) + return; + + var head = HasComp(mind.OwnedEntity); + args.Append(Loc.GetString(head ? "head-rev-briefing" : "rev-briefing")); + } + + private void OnStartAttempt(RoundStartAttemptEvent ev) + { + var query = AllEntityQuery(); + while (query.MoveNext(out var uid, out var comp, out var gameRule)) + { + _antagSelection.AttemptStartGameRule(ev, uid, comp.MinPlayers, gameRule); + } + } + + private void OnPlayerJobAssigned(RulePlayerJobsAssignedEvent ev) + { + var query = QueryActiveRules(); + while (query.MoveNext(out _, out var comp, out _)) + { + _antagSelection.EligiblePlayers(comp.RevPrototypeId, comp.MaxHeadRevs, comp.PlayersPerHeadRev, comp.HeadRevStartSound, + "head-rev-role-greeting", "#5e9cff", out var chosen); + GiveHeadRev(chosen, comp.RevPrototypeId, comp); + } + } + + private void GiveHeadRev(List chosen, string antagProto, RevolutionaryRuleComponent comp) + { + foreach (var headRev in chosen) + { + RemComp(headRev); + + var inCharacterName = MetaData(headRev).EntityName; + if (_mind.TryGetMind(headRev, out var mindId, out var mind)) + { + if (!_role.MindHasRole(mindId)) + { + _role.MindAddRole(mindId, new RevolutionaryRoleComponent { PrototypeId = antagProto }); + } + if (mind.Session != null) + { + comp.HeadRevs.Add(inCharacterName, mindId); + } + } + + _antagSelection.GiveAntagBagGear(headRev, comp.StartingGear); + EnsureComp(headRev); + EnsureComp(headRev); + } + } + + /// + /// Called when a Head Rev uses a flash in melee to convert somebody else. + /// + public void OnPostFlash(EntityUid uid, HeadRevolutionaryComponent comp, ref AfterFlashedEvent ev) + { + TryComp(ev.Target, out var alwaysConvertibleComp); + var alwaysConvertible = alwaysConvertibleComp != null; + + if (!_mind.TryGetMind(ev.Target, out var mindId, out var mind) && !alwaysConvertible) + return; + + if (HasComp(ev.Target) || + HasComp(ev.Target) || + !HasComp(ev.Target) && + !alwaysConvertible || + !_mobState.IsAlive(ev.Target) || + HasComp(ev.Target)) + { + return; + } + + _npcFaction.AddFaction(ev.Target, RevolutionaryNpcFaction); + EnsureComp(ev.Target); + _stun.TryParalyze(ev.Target, comp.StunTime, true); + if (ev.User != null) + { + _adminLogManager.Add(LogType.Mind, LogImpact.Medium, $"{ToPrettyString(ev.User.Value)} converted {ToPrettyString(ev.Target)} into a Revolutionary"); + } + + if (mindId == default || !_role.MindHasRole(mindId)) + { + _role.MindAddRole(mindId, new RevolutionaryRoleComponent { PrototypeId = RevolutionaryAntagRole }); + } + if (mind?.Session != null) + { + var message = Loc.GetString("rev-role-greeting"); + var wrappedMessage = Loc.GetString("chat-manager-server-wrap-message", ("message", message)); + _chatManager.ChatMessageToOne(ChatChannel.Server, message, wrappedMessage, default, false, mind.Session.ConnectedClient, Color.Red); + } + } + + public void OnHeadRevAdmin(EntityUid mindId, MindComponent? mind = null) + { + if (!Resolve(mindId, ref mind)) + return; + + var revRule = EntityQuery().FirstOrDefault(); + if (revRule == null) + { + GameTicker.StartGameRule("Revolutionary", out var ruleEnt); + revRule = Comp(ruleEnt); + } + + if (!HasComp(mind.OwnedEntity)) + { + if (mind.OwnedEntity != null) + { + var player = new List + { + mind.OwnedEntity.Value + }; + GiveHeadRev(player, RevolutionaryAntagRole, revRule); + } + if (mind.Session != null) + { + var message = Loc.GetString("head-rev-role-greeting"); + var wrappedMessage = Loc.GetString("chat-manager-server-wrap-message", ("message", message)); + _chatManager.ChatMessageToOne(ChatChannel.Server, message, wrappedMessage, default, false, mind.Session.ConnectedClient, Color.FromHex("#5e9cff")); + } + } + } + private void OnCommandMobStateChanged(EntityUid uid, CommandStaffComponent comp, MobStateChangedEvent ev) + { + if (ev.NewMobState == MobState.Dead || ev.NewMobState == MobState.Invalid) + CheckCommandLose(); + } + + /// + /// Checks if all of command is dead and if so will remove all sec and command jobs if there were any left. + /// + private bool CheckCommandLose() + { + var commandList = new List(); + + var heads = AllEntityQuery(); + while (heads.MoveNext(out var id, out _)) + { + commandList.Add(id); + } + + return _antagSelection.IsGroupDead(commandList, true); + } + + private void OnHeadRevMobStateChanged(EntityUid uid, HeadRevolutionaryComponent comp, MobStateChangedEvent ev) + { + if (ev.NewMobState == MobState.Dead || ev.NewMobState == MobState.Invalid) + CheckRevsLose(); + } + + /// + /// Checks if all the Head Revs are dead and if so will deconvert all regular revs. + /// + private bool CheckRevsLose() + { + var stunTime = TimeSpan.FromSeconds(4); + var headRevList = new List(); + + var headRevs = AllEntityQuery(); + while (headRevs.MoveNext(out var uid, out _, out _)) + { + headRevList.Add(uid); + } + + // If no Head Revs are alive all normal Revs will lose their Rev status and rejoin Nanotrasen + if (_antagSelection.IsGroupDead(headRevList, false)) + { + var rev = AllEntityQuery(); + while (rev.MoveNext(out var uid, out _)) + { + if (!HasComp(uid)) + { + _npcFaction.RemoveFaction(uid, RevolutionaryNpcFaction); + _stun.TryParalyze(uid, stunTime, true); + RemCompDeferred(uid); + _popup.PopupEntity(Loc.GetString("rev-break-control", ("name", Identity.Entity(uid, EntityManager))), uid); + _adminLogManager.Add(LogType.Mind, LogImpact.Medium, $"{ToPrettyString(uid)} was deconverted due to all Head Revolutionaries dying."); + } + } + return true; + } + + return false; + } + + private static readonly string[] Outcomes = + { + // revs survived and heads survived... how + "rev-reverse-stalemate", + // revs won and heads died + "rev-won", + // revs lost and heads survived + "rev-lost", + // revs lost and heads died + "rev-stalemate" + }; +} diff --git a/Content.Server/Ghost/Ghost.cs b/Content.Server/Ghost/Ghost.cs index 0462d1bc943..d04b1197afa 100644 --- a/Content.Server/Ghost/Ghost.cs +++ b/Content.Server/Ghost/Ghost.cs @@ -27,8 +27,8 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) var minds = _entities.System(); if (!minds.TryGetMind(player, out var mindId, out var mind)) { - shell.WriteLine("You have no Mind, you can't ghost."); - return; + mindId = minds.CreateMind(player.UserId); + mind = _entities.GetComponent(mindId); } if (!EntitySystem.Get().OnGhostAttempt(mindId, true, true, mind)) diff --git a/Content.Server/ImmovableRod/ImmovableRodSystem.cs b/Content.Server/ImmovableRod/ImmovableRodSystem.cs index 99c949ebceb..d688941abff 100644 --- a/Content.Server/ImmovableRod/ImmovableRodSystem.cs +++ b/Content.Server/ImmovableRod/ImmovableRodSystem.cs @@ -99,6 +99,7 @@ private void OnCollide(EntityUid uid, ImmovableRodComponent component, ref Start _popup.PopupEntity(Loc.GetString("immovable-rod-penetrated-mob", ("rod", uid), ("mob", ent)), uid, PopupType.LargeCaution); _bodySystem.GibBody(ent, body: body); + return; } QueueDel(ent); diff --git a/Content.Server/Light/EntitySystems/HandheldLightSystem.cs b/Content.Server/Light/EntitySystems/HandheldLightSystem.cs index ab3a64a5f07..ff3c61bc611 100644 --- a/Content.Server/Light/EntitySystems/HandheldLightSystem.cs +++ b/Content.Server/Light/EntitySystems/HandheldLightSystem.cs @@ -99,11 +99,13 @@ private void OnGetState(EntityUid uid, HandheldLightComponent component, ref Com private void OnMapInit(EntityUid uid, HandheldLightComponent component, MapInitEvent args) { _actionContainer.EnsureAction(uid, ref component.ToggleActionEntity, component.ToggleAction); + _actions.AddAction(uid, ref component.SelfToggleActionEntity, component.ToggleAction); } private void OnShutdown(EntityUid uid, HandheldLightComponent component, ComponentShutdown args) { _actions.RemoveAction(uid, component.ToggleActionEntity); + _actions.RemoveAction(uid, component.SelfToggleActionEntity); } private byte? GetLevel(EntityUid uid, HandheldLightComponent component) diff --git a/Content.Server/Light/EntitySystems/UnpoweredFlashlightSystem.cs b/Content.Server/Light/EntitySystems/UnpoweredFlashlightSystem.cs index 2be870ff0da..c24966aba82 100644 --- a/Content.Server/Light/EntitySystems/UnpoweredFlashlightSystem.cs +++ b/Content.Server/Light/EntitySystems/UnpoweredFlashlightSystem.cs @@ -18,6 +18,7 @@ public sealed class UnpoweredFlashlightSystem : EntitySystem [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly SharedActionsSystem _actionsSystem = default!; + [Dependency] private readonly ActionContainerSystem _actionContainer = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly SharedAudioSystem _audioSystem = default!; [Dependency] private readonly SharedPointLightSystem _light = default!; @@ -31,6 +32,13 @@ public override void Initialize() SubscribeLocalEvent(OnToggleAction); SubscribeLocalEvent(OnMindAdded); SubscribeLocalEvent(OnGotEmagged); + SubscribeLocalEvent(OnMapInit); + } + + private void OnMapInit(EntityUid uid, UnpoweredFlashlightComponent component, MapInitEvent args) + { + _actionContainer.EnsureAction(uid, ref component.ToggleActionEntity, component.ToggleAction); + Dirty(uid, component); } private void OnToggleAction(EntityUid uid, UnpoweredFlashlightComponent component, ToggleActionEvent args) diff --git a/Content.Server/Medical/DefibrillatorSystem.cs b/Content.Server/Medical/DefibrillatorSystem.cs index d80d8bdb650..4ffa9f558da 100644 --- a/Content.Server/Medical/DefibrillatorSystem.cs +++ b/Content.Server/Medical/DefibrillatorSystem.cs @@ -230,8 +230,6 @@ public void Zap(EntityUid uid, EntityUid target, EntityUid user, DefibrillatorCo // notify them they're being revived. if (mind.CurrentEntity != target) { - _chatManager.TrySendInGameICMessage(uid, Loc.GetString("defibrillator-ghosted"), - InGameICChatType.Speak, true); _euiManager.OpenEui(new ReturnToBodyEui(mind, _mind), session); } } diff --git a/Content.Server/Mind/MindSystem.cs b/Content.Server/Mind/MindSystem.cs index aca5a9d485d..06f97bd3b9f 100644 --- a/Content.Server/Mind/MindSystem.cs +++ b/Content.Server/Mind/MindSystem.cs @@ -31,6 +31,25 @@ public override void Initialize() base.Initialize(); SubscribeLocalEvent(OnMindContainerTerminating); + SubscribeLocalEvent(OnMindShutdown); + } + + private void OnMindShutdown(EntityUid uid, MindComponent mind, ComponentShutdown args) + { + if (mind.UserId is {} user) + { + UserMinds.Remove(user); + if (_players.GetPlayerData(user).ContentData() is { } oldData) + oldData.Mind = null; + mind.UserId = null; + } + + if (!TryComp(mind.OwnedEntity, out MetaDataComponent? meta) || meta.EntityLifeStage >= EntityLifeStage.Terminating) + return; + + RaiseLocalEvent(mind.OwnedEntity.Value, new MindRemovedMessage(uid, mind), true); + mind.OwnedEntity = null; + mind.OwnedComponent = null; } private void OnMindContainerTerminating(EntityUid uid, MindContainerComponent component, ref EntityTerminatingEvent args) @@ -195,11 +214,11 @@ public override void UnVisit(EntityUid mindId, MindComponent? mind = null) public override void TransferTo(EntityUid mindId, EntityUid? entity, bool ghostCheckOverride = false, bool createGhost = true, MindComponent? mind = null) { - base.TransferTo(mindId, entity, ghostCheckOverride, createGhost, mind); - - if (!Resolve(mindId, ref mind)) + if (mind == null && !Resolve(mindId, ref mind)) return; + base.TransferTo(mindId, entity, ghostCheckOverride, createGhost, mind); + if (entity == mind.OwnedEntity) return; diff --git a/Content.Server/Mindshield/MindShieldSystem.cs b/Content.Server/Mindshield/MindShieldSystem.cs new file mode 100644 index 00000000000..714055bd942 --- /dev/null +++ b/Content.Server/Mindshield/MindShieldSystem.cs @@ -0,0 +1,63 @@ +using Content.Shared.Mindshield.Components; +using Content.Shared.Revolutionary.Components; +using Content.Server.Popups; +using Content.Shared.Database; +using Content.Server.Administration.Logs; +using Content.Server.Mind; +using Content.Shared.Implants; +using Content.Shared.Tag; +using Content.Server.Roles; +using Content.Shared.Implants.Components; + +namespace Content.Server.Mindshield; + +/// +/// System used for checking if the implanted is a Rev or Head Rev. +/// +public sealed class MindShieldSystem : EntitySystem +{ + [Dependency] private readonly IAdminLogManager _adminLogManager = default!; + [Dependency] private readonly RoleSystem _roleSystem = default!; + [Dependency] private readonly MindSystem _mindSystem = default!; + [Dependency] private readonly TagSystem _tag = default!; + [Dependency] private readonly PopupSystem _popupSystem = default!; + + [ValidatePrototypeId] + public const string MindShieldTag = "MindShield"; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(ImplantCheck); + } + + /// + /// Checks if the implant was a mindshield or not + /// + public void ImplantCheck(EntityUid uid, SubdermalImplantComponent comp, ref ImplantImplantedEvent ev) + { + if (_tag.HasTag(ev.Implant, MindShieldTag) && ev.Implanted != null) + { + EnsureComp(ev.Implanted.Value); + MindShieldRemovalCheck(ev.Implanted, ev.Implant); + } + } + + /// + /// Checks if the implanted person was a Rev or Head Rev and remove role or destroy mindshield respectively. + /// + public void MindShieldRemovalCheck(EntityUid? implanted, EntityUid implant) + { + if (HasComp(implanted) && !HasComp(implanted)) + { + _mindSystem.TryGetMind(implanted.Value, out var mindId, out _); + _adminLogManager.Add(LogType.Mind, LogImpact.Medium, $"{ToPrettyString(implanted.Value)} was deconverted due to being implanted with a Mindshield."); + _roleSystem.MindTryRemoveRole(mindId); + } + else if (HasComp(implanted)) + { + _popupSystem.PopupEntity(Loc.GetString("head-rev-break-mindshield"), implanted.Value); + QueueDel(implant); + } + } +} diff --git a/Content.Server/NPC/Components/FactionExceptionComponent.cs b/Content.Server/NPC/Components/FactionExceptionComponent.cs index e73b34905e1..6abd503537c 100644 --- a/Content.Server/NPC/Components/FactionExceptionComponent.cs +++ b/Content.Server/NPC/Components/FactionExceptionComponent.cs @@ -6,12 +6,18 @@ namespace Content.Server.NPC.Components; /// Prevents an NPC from attacking ignored entities from enemy factions. /// Can be added to if pettable, see PettableFriendComponent. /// -[RegisterComponent, Access(typeof(FactionExceptionSystem))] +[RegisterComponent, Access(typeof(NpcFactionSystem))] public sealed partial class FactionExceptionComponent : Component { /// - /// List of entities that this NPC will refuse to attack + /// Collection of entities that this NPC will refuse to attack /// [DataField("ignored")] public HashSet Ignored = new(); + + /// + /// Collection of entities that this NPC will attack, regardless of faction. + /// + [DataField("hostiles")] + public HashSet Hostiles = new(); } diff --git a/Content.Server/NPC/Components/FactionExceptionTrackerComponent.cs b/Content.Server/NPC/Components/FactionExceptionTrackerComponent.cs new file mode 100644 index 00000000000..804a61b456d --- /dev/null +++ b/Content.Server/NPC/Components/FactionExceptionTrackerComponent.cs @@ -0,0 +1,16 @@ +using Content.Server.NPC.Systems; + +namespace Content.Server.NPC.Components; + +/// +/// This is used for tracking entities stored in +/// +[RegisterComponent, Access(typeof(NpcFactionSystem))] +public sealed partial class FactionExceptionTrackerComponent : Component +{ + /// + /// entities with that are tracking this entity. + /// + [DataField("entities")] + public HashSet Entities = new(); +} diff --git a/Content.Server/NPC/Components/NPCRetaliationComponent.cs b/Content.Server/NPC/Components/NPCRetaliationComponent.cs new file mode 100644 index 00000000000..c0bf54d76e7 --- /dev/null +++ b/Content.Server/NPC/Components/NPCRetaliationComponent.cs @@ -0,0 +1,24 @@ +using Content.Server.NPC.Systems; + +namespace Content.Server.NPC.Components; + +/// +/// Entities with this component will retaliate against those who physically attack them. +/// It has an optional "memory" specification wherein it will only attack those entities for a specified length of time. +/// +[RegisterComponent, Access(typeof(NPCRetaliationSystem))] +public sealed partial class NPCRetaliationComponent : Component +{ + /// + /// How long after being attacked will an NPC continue to be aggressive to the attacker for. + /// + [DataField("attackMemoryLength"), ViewVariables(VVAccess.ReadWrite)] + public TimeSpan? AttackMemoryLength; + + /// + /// A dictionary that stores an entity and the time at which they will no longer be considered hostile. + /// + /// todo: this needs to support timeoffsetserializer at some point + [DataField("attackMemories")] + public Dictionary AttackMemories = new(); +} diff --git a/Content.Server/NPC/Systems/FactionExceptionSystem.cs b/Content.Server/NPC/Systems/FactionExceptionSystem.cs deleted file mode 100644 index 909fe3904d1..00000000000 --- a/Content.Server/NPC/Systems/FactionExceptionSystem.cs +++ /dev/null @@ -1,33 +0,0 @@ -using Content.Server.NPC.Components; - -namespace Content.Server.NPC.Systems; - -/// -/// Prevents an NPC from attacking some entities from an enemy faction. -/// -public sealed class FactionExceptionSystem : EntitySystem -{ - /// - /// Returns whether the entity from an enemy faction won't be attacked - /// - public bool IsIgnored(FactionExceptionComponent comp, EntityUid target) - { - return comp.Ignored.Contains(target); - } - - /// - /// Prevents an entity from an enemy faction from being attacked - /// - public void IgnoreEntity(FactionExceptionComponent comp, EntityUid target) - { - comp.Ignored.Add(target); - } - - /// - /// Prevents a list of entities from an enemy faction from being attacked - /// - public void IgnoreEntities(FactionExceptionComponent comp, IEnumerable ignored) - { - comp.Ignored.UnionWith(ignored); - } -} diff --git a/Content.Server/NPC/Systems/NPCRetaliationSystem.cs b/Content.Server/NPC/Systems/NPCRetaliationSystem.cs new file mode 100644 index 00000000000..a8bf1766f05 --- /dev/null +++ b/Content.Server/NPC/Systems/NPCRetaliationSystem.cs @@ -0,0 +1,90 @@ +using Content.Server.NPC.Components; +using Content.Shared.CombatMode; +using Content.Shared.Damage; +using Content.Shared.Mobs.Components; +using Robust.Shared.Collections; +using Robust.Shared.Timing; + +namespace Content.Server.NPC.Systems; + +/// +/// Handles NPC which become aggressive after being attacked. +/// +public sealed class NPCRetaliationSystem : EntitySystem +{ + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly NpcFactionSystem _npcFaction = default!; + + private readonly HashSet _deAggroQueue = new(); + + /// + public override void Initialize() + { + SubscribeLocalEvent(OnDamageChanged); + SubscribeLocalEvent(OnDisarmed); + } + + private void OnDamageChanged(EntityUid uid, NPCRetaliationComponent component, DamageChangedEvent args) + { + if (!args.DamageIncreased) + return; + + if (args.Origin is not { } origin) + return; + + TryRetaliate(uid, origin, component); + } + + private void OnDisarmed(EntityUid uid, NPCRetaliationComponent component, DisarmedEvent args) + { + TryRetaliate(uid, args.Source, component); + } + + public bool TryRetaliate(EntityUid uid, EntityUid target, NPCRetaliationComponent? component = null) + { + if (!Resolve(uid, ref component)) + return false; + + // don't retaliate against inanimate objects. + if (!HasComp(target)) + return false; + + if (_npcFaction.IsEntityFriendly(uid, target)) + return false; + + _npcFaction.AggroEntity(uid, target); + if (component.AttackMemoryLength is { } memoryLength) + { + component.AttackMemories[target] = _timing.CurTime + memoryLength; + } + + return true; + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var comp, out var factionException, out var metaData)) + { + _deAggroQueue.Clear(); + + foreach (var ent in new ValueList(comp.AttackMemories.Keys)) + { + if (_timing.CurTime < comp.AttackMemories[ent]) + continue; + + if (TerminatingOrDeleted(ent, metaData)) + _deAggroQueue.Add(ent); + + _deAggroQueue.Add(ent); + } + + foreach (var ent in _deAggroQueue) + { + _npcFaction.DeAggroEntity(uid, ent, factionException); + } + } + } +} diff --git a/Content.Server/NPC/Systems/NpcFactionSystem.Exception.cs b/Content.Server/NPC/Systems/NpcFactionSystem.Exception.cs new file mode 100644 index 00000000000..acef9005ead --- /dev/null +++ b/Content.Server/NPC/Systems/NpcFactionSystem.Exception.cs @@ -0,0 +1,130 @@ +using System.Linq; +using Content.Server.NPC.Components; + +namespace Content.Server.NPC.Systems; + +/// +/// Prevents an NPC from attacking some entities from an enemy faction. +/// +public sealed partial class NpcFactionSystem +{ + private EntityQuery _exceptionQuery; + private EntityQuery _trackerQuery; + + public void InitializeException() + { + _exceptionQuery = GetEntityQuery(); + _trackerQuery = GetEntityQuery(); + + SubscribeLocalEvent(OnShutdown); + SubscribeLocalEvent(OnTrackerShutdown); + } + + private void OnShutdown(EntityUid uid, FactionExceptionComponent component, ComponentShutdown args) + { + foreach (var ent in component.Hostiles) + { + if (!_trackerQuery.TryGetComponent(ent, out var trackerComponent)) + continue; + trackerComponent.Entities.Remove(uid); + } + + foreach (var ent in component.Ignored) + { + if (!_trackerQuery.TryGetComponent(ent, out var trackerComponent)) + continue; + trackerComponent.Entities.Remove(uid); + } + } + + private void OnTrackerShutdown(EntityUid uid, FactionExceptionTrackerComponent component, ComponentShutdown args) + { + foreach (var ent in component.Entities) + { + if (!_exceptionQuery.TryGetComponent(ent, out var exceptionComponent)) + continue; + exceptionComponent.Ignored.Remove(uid); + exceptionComponent.Hostiles.Remove(uid); + } + } + + /// + /// Returns whether the entity from an enemy faction won't be attacked + /// + public bool IsIgnored(EntityUid uid, EntityUid target, FactionExceptionComponent? comp = null) + { + if (!Resolve(uid, ref comp, false)) + return false; + + return comp.Ignored.Contains(target); + } + + /// + /// Returns the specific hostile entities for a given entity. + /// + public IEnumerable GetHostiles(EntityUid uid, FactionExceptionComponent? comp = null) + { + if (!Resolve(uid, ref comp, false)) + return Array.Empty(); + + return comp.Hostiles; + } + + /// + /// Prevents an entity from an enemy faction from being attacked + /// + public void IgnoreEntity(EntityUid uid, EntityUid target, FactionExceptionComponent? comp = null) + { + comp ??= EnsureComp(uid); + comp.Ignored.Add(target); + EnsureComp(target).Entities.Add(uid); + } + + /// + /// Prevents a list of entities from an enemy faction from being attacked + /// + public void IgnoreEntities(EntityUid uid, IEnumerable ignored, FactionExceptionComponent? comp = null) + { + comp ??= EnsureComp(uid); + foreach (var ignore in ignored) + { + IgnoreEntity(uid, ignore, comp); + } + } + + /// + /// Makes an entity always be considered hostile. + /// + public void AggroEntity(EntityUid uid, EntityUid target, FactionExceptionComponent? comp = null) + { + comp ??= EnsureComp(uid); + comp.Hostiles.Add(target); + EnsureComp(target).Entities.Add(uid); + } + + /// + /// Makes an entity no longer be considered hostile, if it was. + /// Doesn't apply to regular faction hostilities. + /// + public void DeAggroEntity(EntityUid uid, EntityUid target, FactionExceptionComponent? comp = null) + { + if (!Resolve(uid, ref comp, false)) + return; + if (!comp.Hostiles.Remove(target) || !_trackerQuery.TryGetComponent(target, out var tracker)) + return; + tracker.Entities.Remove(uid); + } + + /// + /// Makes a list of entities no longer be considered hostile, if it was. + /// Doesn't apply to regular faction hostilities. + /// + public void AggroEntities(EntityUid uid, IEnumerable entities, FactionExceptionComponent? comp = null) + { + comp ??= EnsureComp(uid); + foreach (var ent in entities) + { + AggroEntity(uid, ent, comp); + } + } +} diff --git a/Content.Server/NPC/Systems/NpcFactionSystem.cs b/Content.Server/NPC/Systems/NpcFactionSystem.cs index 68ec49870de..d8e22c36a9d 100644 --- a/Content.Server/NPC/Systems/NpcFactionSystem.cs +++ b/Content.Server/NPC/Systems/NpcFactionSystem.cs @@ -1,6 +1,7 @@ using Content.Server.NPC.Components; using Robust.Shared.Prototypes; using System.Linq; +using JetBrains.Annotations; namespace Content.Server.NPC.Systems; @@ -10,7 +11,6 @@ namespace Content.Server.NPC.Systems; /// public sealed partial class NpcFactionSystem : EntitySystem { - [Dependency] private readonly FactionExceptionSystem _factionException = default!; [Dependency] private readonly EntityLookupSystem _lookup = default!; [Dependency] private readonly IPrototypeManager _protoManager = default!; @@ -27,6 +27,8 @@ public override void Initialize() _sawmill = Logger.GetSawmill("faction"); SubscribeLocalEvent(OnFactionStartup); _protoManager.PrototypesReloaded += OnProtoReload; + + InitializeException(); RefreshFactions(); } @@ -135,12 +137,15 @@ public IEnumerable GetNearbyHostiles(EntityUid entity, float range, N if (TryComp(entity, out var factionException)) { // ignore anything from enemy faction that we are explicitly friendly towards - return hostiles.Where(target => !_factionException.IsIgnored(factionException, target)); + return hostiles + .Union(GetHostiles(entity, factionException)) + .Where(target => !IsIgnored(entity, target, factionException)); } return hostiles; } + [PublicAPI] public IEnumerable GetNearbyFriendlies(EntityUid entity, float range, NpcFactionMemberComponent? component = null) { if (!Resolve(entity, ref component, false)) diff --git a/Content.Server/NodeContainer/NodeGroups/NodeGroupFactory.cs b/Content.Server/NodeContainer/NodeGroups/NodeGroupFactory.cs index 1af938da836..abebfd1a90f 100644 --- a/Content.Server/NodeContainer/NodeGroups/NodeGroupFactory.cs +++ b/Content.Server/NodeContainer/NodeGroups/NodeGroupFactory.cs @@ -61,7 +61,6 @@ public enum NodeGroupID : byte AMEngine, Pipe, WireNet, - Spreader, /// /// Group used by the TEG. diff --git a/Content.Server/Projectiles/ProjectileSystem.cs b/Content.Server/Projectiles/ProjectileSystem.cs index 60fc0c3b5cd..c52e712e741 100644 --- a/Content.Server/Projectiles/ProjectileSystem.cs +++ b/Content.Server/Projectiles/ProjectileSystem.cs @@ -53,7 +53,7 @@ private void OnStartCollide(EntityUid uid, ProjectileComponent component, ref St if (modifiedDamage is not null && EntityManager.EntityExists(component.Shooter)) { - if (modifiedDamage.Total > FixedPoint2.Zero && !deleted) + if (modifiedDamage.Any() && !deleted) { _color.RaiseEffect(Color.Red, new List { target }, Filter.Pvs(target, entityManager: EntityManager)); } diff --git a/Content.Server/Revolutionary/Components/CommandStaffComponent.cs b/Content.Server/Revolutionary/Components/CommandStaffComponent.cs new file mode 100644 index 00000000000..8e42f41cb3d --- /dev/null +++ b/Content.Server/Revolutionary/Components/CommandStaffComponent.cs @@ -0,0 +1,12 @@ +using Content.Server.GameTicking.Rules; + +namespace Content.Server.Revolutionary.Components; + +/// +/// Given to heads at round start for Revs. Used for tracking if heads died or not. +/// +[RegisterComponent, Access(typeof(RevolutionaryRuleSystem))] +public sealed partial class CommandStaffComponent : Component +{ + +} diff --git a/Content.Server/Roles/RevolutionaryRoleComponent.cs b/Content.Server/Roles/RevolutionaryRoleComponent.cs new file mode 100644 index 00000000000..fa06cc31918 --- /dev/null +++ b/Content.Server/Roles/RevolutionaryRoleComponent.cs @@ -0,0 +1,12 @@ +using Content.Shared.Roles; + +namespace Content.Server.Roles; + +/// +/// Added to mind entities to tag that they are a Revolutionary. +/// +[RegisterComponent] +public sealed partial class RevolutionaryRoleComponent : AntagonistRoleComponent +{ + +} diff --git a/Content.Server/Roles/RoleBriefingSystem.cs b/Content.Server/Roles/RoleBriefingSystem.cs index 27cfdc1cad1..c05366e150e 100644 --- a/Content.Server/Roles/RoleBriefingSystem.cs +++ b/Content.Server/Roles/RoleBriefingSystem.cs @@ -11,15 +11,6 @@ public override void Initialize() private void OnGetBriefing(EntityUid uid, RoleBriefingComponent comp, ref GetBriefingEvent args) { - if (args.Briefing == null) - { - // no previous briefing so just set it - args.Briefing = comp.Briefing; - } - else - { - // there is a previous briefing so append to it - args.Briefing += "\n" + comp.Briefing; - } + args.Append(comp.Briefing); } } diff --git a/Content.Server/Roles/RoleSystem.cs b/Content.Server/Roles/RoleSystem.cs index b04f051c6e8..6ac0e24540e 100644 --- a/Content.Server/Roles/RoleSystem.cs +++ b/Content.Server/Roles/RoleSystem.cs @@ -13,6 +13,7 @@ public override void Initialize() SubscribeAntagEvents(); SubscribeAntagEvents(); SubscribeAntagEvents(); + SubscribeAntagEvents(); SubscribeAntagEvents(); SubscribeAntagEvents(); SubscribeAntagEvents(); @@ -34,4 +35,28 @@ public override void Initialize() /// Handlers can either replace or append to the briefing, whichever is more appropriate. /// [ByRefEvent] -public record struct GetBriefingEvent(string? Briefing = null); +public sealed class GetBriefingEvent +{ + public string? Briefing; + + public GetBriefingEvent(string? briefing = null) + { + Briefing = briefing; + } + + /// + /// If there is no briefing, sets it to the string. + /// If there is a briefing, adds a new line to separate it from the appended string. + /// + public void Append(string text) + { + if (Briefing == null) + { + Briefing = text; + } + else + { + Briefing += "\n" + text; + } + } +} diff --git a/Content.Server/RoundEnd/RoundEndSystem.cs b/Content.Server/RoundEnd/RoundEndSystem.cs index 12cfb0e6667..6043f3fbf92 100644 --- a/Content.Server/RoundEnd/RoundEndSystem.cs +++ b/Content.Server/RoundEnd/RoundEndSystem.cs @@ -224,7 +224,19 @@ public void EndRound(TimeSpan? countdownTime = null) Timer.Spawn(countdownTime.Value, AfterEndRoundRestart, _countdownTokenSource.Token); } - public void DoRoundEndBehavior(RoundEndBehavior behavior, TimeSpan time, string sender, string textCall, string textAnnounce) + /// + /// Starts a behavior to end the round + /// + /// The way in which the round will end + /// + /// + /// + /// + public void DoRoundEndBehavior(RoundEndBehavior behavior, + TimeSpan time, + string sender = "comms-console-announcement-title-centcom", + string textCall = "round-end-system-shuttle-called-announcement", + string textAnnounce = "round-end-system-shuttle-already-called-announcement") { switch (behavior) { diff --git a/Content.Server/Sericulture/SericultureComponent.cs b/Content.Server/Sericulture/SericultureComponent.cs deleted file mode 100644 index 2d258accc89..00000000000 --- a/Content.Server/Sericulture/SericultureComponent.cs +++ /dev/null @@ -1,31 +0,0 @@ -using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; - -namespace Content.Server.Sericulture; - -[RegisterComponent] -public sealed partial class SericultureComponent : Component -{ - [DataField("popupText")] - public string PopupText = "sericulture-failure-hunger"; - - /// - /// What will be produced at the end of the action. - /// - [DataField("entityProduced", required: true)] - public string EntityProduced = ""; - - [DataField("action", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string Action = "ActionSericulture"; - - [DataField("actionEntity")] public EntityUid? ActionEntity; - - /// - /// How long will it take to make. - /// - [DataField("productionLength", required: true), ViewVariables(VVAccess.ReadWrite)] - public float ProductionLength = 0; - - [DataField("hungerCost"), ViewVariables(VVAccess.ReadWrite)] - public float HungerCost = 0f; -} diff --git a/Content.Server/Sericulture/SericultureSystem.cs b/Content.Server/Sericulture/SericultureSystem.cs index c100d3d4a5f..672c0b914bb 100644 --- a/Content.Server/Sericulture/SericultureSystem.cs +++ b/Content.Server/Sericulture/SericultureSystem.cs @@ -1,89 +1,7 @@ -using Content.Server.Actions; -using Content.Server.DoAfter; -using Content.Server.Popups; -using Content.Server.Stack; -using Content.Shared.DoAfter; -using Content.Shared.Nutrition.Components; -using Content.Shared.Nutrition.EntitySystems; using Content.Shared.Sericulture; namespace Content.Server.Sericulture; -public sealed partial class SericultureSystem : EntitySystem +public sealed partial class SericultureSystem : SharedSericultureSystem { - [Dependency] private readonly ActionsSystem _actionsSystem = default!; - [Dependency] private readonly DoAfterSystem _doAfterSystem = default!; - [Dependency] private readonly HungerSystem _hungerSystem = default!; - [Dependency] private readonly PopupSystem _popupSystem = default!; - [Dependency] private readonly StackSystem _stackSystem = default!; - - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnCompMapInit); - SubscribeLocalEvent(OnCompRemove); - SubscribeLocalEvent(OnSericultureStart); - SubscribeLocalEvent(OnSericultureDoAfter); - } - - private void OnCompMapInit(EntityUid uid, SericultureComponent comp, MapInitEvent args) - { - _actionsSystem.AddAction(uid, ref comp.ActionEntity, comp.Action, uid); - } - - private void OnCompRemove(EntityUid uid, SericultureComponent comp, ComponentShutdown args) - { - _actionsSystem.RemoveAction(uid, comp.ActionEntity); - } - - private void OnSericultureStart(EntityUid uid, SericultureComponent comp, SericultureActionEvent args) - { - if (IsHungry(uid)) - { - _popupSystem.PopupEntity(Loc.GetString(comp.PopupText), uid, uid); - return; - } - - var doAfter = new DoAfterArgs(EntityManager, uid, comp.ProductionLength, new SericultureDoAfterEvent(), uid) - { - BreakOnUserMove = true, - BlockDuplicate = true, - BreakOnDamage = true, - CancelDuplicate = true, - }; - - _doAfterSystem.TryStartDoAfter(doAfter); - } - - private void OnSericultureDoAfter(EntityUid uid, SericultureComponent comp, SericultureDoAfterEvent args) - { - if (args.Cancelled || args.Handled || comp.Deleted) - return; - - if (IsHungry(uid)) - { - _popupSystem.PopupEntity(Loc.GetString(comp.PopupText), uid, uid); - return; - } - - _hungerSystem.ModifyHunger(uid, -comp.HungerCost); - - var newEntity = Spawn(comp.EntityProduced, Transform(uid).Coordinates); - - _stackSystem.TryMergeToHands(newEntity, uid); - - args.Repeat = true; - } - - private bool IsHungry(EntityUid uid, HungerComponent? comp = null) - { - if (!Resolve(uid, ref comp)) - return false; - - if (_hungerSystem.GetHungerThreshold(comp) <= HungerThreshold.Peckish) - return true; - - return false; - } } diff --git a/Content.Server/Spreader/ActiveEdgeSpreaderComponent.cs b/Content.Server/Spreader/ActiveEdgeSpreaderComponent.cs new file mode 100644 index 00000000000..86d59e737b3 --- /dev/null +++ b/Content.Server/Spreader/ActiveEdgeSpreaderComponent.cs @@ -0,0 +1,10 @@ +namespace Content.Server.Spreader; + +/// +/// Added to entities being considered for spreading via . +/// This needs to be manually added and removed. +/// +[RegisterComponent] +public sealed partial class ActiveEdgeSpreaderComponent : Component +{ +} diff --git a/Content.Server/Spreader/EdgeSpreaderComponent.cs b/Content.Server/Spreader/EdgeSpreaderComponent.cs index d0e18fccc29..aa1bf47f7a6 100644 --- a/Content.Server/Spreader/EdgeSpreaderComponent.cs +++ b/Content.Server/Spreader/EdgeSpreaderComponent.cs @@ -1,10 +1,14 @@ +using Content.Shared.Spreader; +using Robust.Shared.Prototypes; + namespace Content.Server.Spreader; /// -/// Added to entities being considered for spreading via . -/// This needs to be manually added and removed. +/// Entity capable of becoming cloning and replicating itself to adjacent edges. See /// [RegisterComponent, Access(typeof(SpreaderSystem))] public sealed partial class EdgeSpreaderComponent : Component { + [DataField(required:true)] + public ProtoId Id; } diff --git a/Content.Server/Spreader/GrowingKudzuComponent.cs b/Content.Server/Spreader/GrowingKudzuComponent.cs index 98d34593d63..d2cd6d64049 100644 --- a/Content.Server/Spreader/GrowingKudzuComponent.cs +++ b/Content.Server/Spreader/GrowingKudzuComponent.cs @@ -5,12 +5,6 @@ namespace Content.Server.Spreader; [RegisterComponent, Access(typeof(KudzuSystem))] public sealed partial class GrowingKudzuComponent : Component { - /// - /// At level 3 spreading can occur; prior to that we have a chance of increasing our growth level and changing our sprite. - /// - [DataField("growthLevel")] - public int GrowthLevel = 1; - /// /// The next time kudzu will try to tick its growth level. /// diff --git a/Content.Server/Spreader/KudzuComponent.cs b/Content.Server/Spreader/KudzuComponent.cs index afdf510f05c..36b1796b833 100644 --- a/Content.Server/Spreader/KudzuComponent.cs +++ b/Content.Server/Spreader/KudzuComponent.cs @@ -8,6 +8,12 @@ namespace Content.Server.Spreader; [RegisterComponent] public sealed partial class KudzuComponent : Component { + /// + /// At level 3 spreading can occur; prior to that we have a chance of increasing our growth level and changing our sprite. + /// + [DataField] + public int GrowthLevel = 1; + /// /// Chance to spread whenever an edge spread is possible. /// diff --git a/Content.Server/Spreader/KudzuSystem.cs b/Content.Server/Spreader/KudzuSystem.cs index db88226d799..b59569b4e15 100644 --- a/Content.Server/Spreader/KudzuSystem.cs +++ b/Content.Server/Spreader/KudzuSystem.cs @@ -2,6 +2,7 @@ using Content.Shared.Spreader; using Robust.Shared.Random; using Robust.Shared.Timing; +using Robust.Shared.Utility; namespace Content.Server.Spreader; @@ -13,7 +14,7 @@ public sealed class KudzuSystem : EntitySystem [Dependency] private readonly DamageableSystem _damageable = default!; [ValidatePrototypeId] - private const string KudzuGroup = "kudzu"; + private const string KudzuGroup = "Kudzu"; /// public override void Initialize() @@ -21,7 +22,6 @@ public override void Initialize() SubscribeLocalEvent(SetupKudzu); SubscribeLocalEvent(OnKudzuSpread); SubscribeLocalEvent(OnKudzuUnpaused); - SubscribeLocalEvent(OnKudzuUpdateRate); SubscribeLocalEvent(OnDamageChanged); } @@ -36,59 +36,50 @@ private void OnDamageChanged(EntityUid uid, KudzuComponent component, DamageChan if (!TryComp(uid, out growing)) { growing = AddComp(uid); - growing.GrowthLevel = 3; + component.GrowthLevel = 3; } - growing.GrowthLevel = Math.Max(1, growing.GrowthLevel - growthDamage); + component.GrowthLevel = Math.Max(1, component.GrowthLevel - growthDamage); if (EntityManager.TryGetComponent(uid, out var appearance)) { - _appearance.SetData(uid, KudzuVisuals.GrowthLevel, growing.GrowthLevel, appearance); + _appearance.SetData(uid, KudzuVisuals.GrowthLevel, component.GrowthLevel, appearance); } } } private void OnKudzuSpread(EntityUid uid, KudzuComponent component, ref SpreadNeighborsEvent args) { - if (TryComp(uid, out var growing) && growing.GrowthLevel < 3) - { + if (component.GrowthLevel < 3) return; - } if (args.NeighborFreeTiles.Count == 0) { - RemCompDeferred(uid); + RemCompDeferred(uid); return; } + if (!_robustRandom.Prob(component.SpreadChance)) + return; + var prototype = MetaData(uid).EntityPrototype?.ID; if (prototype == null) { - RemCompDeferred(uid); + RemCompDeferred(uid); return; } - if (!_robustRandom.Prob(component.SpreadChance)) - return; - foreach (var neighbor in args.NeighborFreeTiles) { var neighborUid = Spawn(prototype, neighbor.Grid.GridTileToLocal(neighbor.Tile)); - EnsureComp(neighborUid); + DebugTools.Assert(HasComp(neighborUid)); + DebugTools.Assert(HasComp(neighborUid)); + DebugTools.Assert(Comp(neighborUid).Id == KudzuGroup); args.Updates--; - if (args.Updates <= 0) return; } } - private void OnKudzuUpdateRate(ref SpreadGroupUpdateRate args) - { - if (args.Name != KudzuGroup) - return; - - args.UpdatesPerSecond = 1; - } - private void OnKudzuUnpaused(EntityUid uid, GrowingKudzuComponent component, ref EntityUnpausedEvent args) { component.NextTick += args.PausedTime; @@ -109,24 +100,30 @@ private void SetupKudzu(EntityUid uid, KudzuComponent component, ComponentStartu public override void Update(float frameTime) { var appearanceQuery = GetEntityQuery(); - var query = EntityQueryEnumerator(); + var query = EntityQueryEnumerator(); + var kudzuQuery = GetEntityQuery(); + var damageableQuery = GetEntityQuery(); var curTime = _timing.CurTime; - while (query.MoveNext(out var uid, out var grow, out var kudzu)) + while (query.MoveNext(out var uid, out var grow)) { if (grow.NextTick > curTime) - { continue; - } grow.NextTick = curTime + TimeSpan.FromSeconds(0.5); + if (!kudzuQuery.TryGetComponent(uid, out var kudzu)) + { + RemCompDeferred(uid, grow); + continue; + } + if (!_robustRandom.Prob(kudzu.GrowthTickChance)) { continue; } - if (TryComp(uid, out var damage)) + if (damageableQuery.TryGetComponent(uid, out var damage)) { if (damage.TotalDamage > 1.0) { @@ -146,17 +143,17 @@ public override void Update(float frameTime) } } - grow.GrowthLevel += 1; + kudzu.GrowthLevel += 1; - if (grow.GrowthLevel >= 3) + if (kudzu.GrowthLevel >= 3) { // why cache when you can simply cease to be? Also saves a bit of memory/time. - RemCompDeferred(uid); + RemCompDeferred(uid, grow); } if (appearanceQuery.TryGetComponent(uid, out var appearance)) { - _appearance.SetData(uid, KudzuVisuals.GrowthLevel, grow.GrowthLevel, appearance); + _appearance.SetData(uid, KudzuVisuals.GrowthLevel, kudzu.GrowthLevel, appearance); } } } diff --git a/Content.Server/Spreader/SpreadGroupUpdateRate.cs b/Content.Server/Spreader/SpreadGroupUpdateRate.cs deleted file mode 100644 index 091c6e5ad5e..00000000000 --- a/Content.Server/Spreader/SpreadGroupUpdateRate.cs +++ /dev/null @@ -1,7 +0,0 @@ -namespace Content.Server.Spreader; - -/// -/// Raised every tick to determine how many updates a particular spreading node group is allowed. -/// -[ByRefEvent] -public record struct SpreadGroupUpdateRate(string Name, int UpdatesPerSecond = 16); diff --git a/Content.Server/Spreader/SpreaderNode.cs b/Content.Server/Spreader/SpreaderNode.cs deleted file mode 100644 index 0c8a5c8ee8d..00000000000 --- a/Content.Server/Spreader/SpreaderNode.cs +++ /dev/null @@ -1,38 +0,0 @@ -using Content.Server.NodeContainer; -using Content.Server.NodeContainer.EntitySystems; -using Content.Server.NodeContainer.Nodes; -using Robust.Shared.Map.Components; - -namespace Content.Server.Spreader; - -/// -/// Handles the node for . -/// Functions as a generic tile-based entity spreader for systems such as puddles or smoke. -/// -public sealed partial class SpreaderNode : Node -{ - // [Dependency] private readonly NodeContainerSystem _nodeContainer = default!; - - /// - public override IEnumerable GetReachableNodes(TransformComponent xform, EntityQuery nodeQuery, EntityQuery xformQuery, - MapGridComponent? grid, IEntityManager entMan) - { - if (grid == null) - yield break; - - entMan.System().GetNeighbors(xform.Owner, Name, out _, out _, out var neighbors); - - var _nodeContainer = entMan.System(); - - foreach (var neighbor in neighbors) - { - if (!nodeQuery.TryGetComponent(neighbor, out var nodeContainer) || - !_nodeContainer.TryGetNode(nodeContainer, Name, out var neighborNode)) - { - continue; - } - - yield return neighborNode; - } - } -} diff --git a/Content.Server/Spreader/SpreaderNodeGroup.cs b/Content.Server/Spreader/SpreaderNodeGroup.cs deleted file mode 100644 index a94ad83b0ac..00000000000 --- a/Content.Server/Spreader/SpreaderNodeGroup.cs +++ /dev/null @@ -1,31 +0,0 @@ -using Content.Server.NodeContainer.NodeGroups; -using Content.Server.NodeContainer.Nodes; - -namespace Content.Server.Spreader; - -[NodeGroup(NodeGroupID.Spreader)] -public sealed class SpreaderNodeGroup : BaseNodeGroup -{ - private IEntityManager _entManager = default!; - - /// - public override void Initialize(Node sourceNode, IEntityManager entMan) - { - base.Initialize(sourceNode, entMan); - _entManager = entMan; - } - - /// - public override void RemoveNode(Node node) - { - base.RemoveNode(node); - - foreach (var neighborNode in node.ReachableNodes) - { - if (_entManager.Deleted(neighborNode.Owner)) - continue; - - _entManager.EnsureComponent(neighborNode.Owner); - } - } -} diff --git a/Content.Server/Spreader/SpreaderSystem.cs b/Content.Server/Spreader/SpreaderSystem.cs index e73fb115074..b6ebaf739be 100644 --- a/Content.Server/Spreader/SpreaderSystem.cs +++ b/Content.Server/Spreader/SpreaderSystem.cs @@ -1,8 +1,5 @@ using Content.Server.Atmos.Components; using Content.Server.Atmos.EntitySystems; -using Content.Server.NodeContainer; -using Content.Server.NodeContainer.EntitySystems; -using Content.Server.NodeContainer.NodeGroups; using Content.Server.Shuttles.Components; using Content.Shared.Atmos; using Content.Shared.Spreader; @@ -13,6 +10,7 @@ using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Timing; +using Robust.Shared.Utility; namespace Content.Server.Spreader; @@ -25,11 +23,20 @@ public sealed class SpreaderSystem : EntitySystem [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly IPrototypeManager _prototype = default!; [Dependency] private readonly IRobustRandom _robustRandom = default!; - [Dependency] private readonly NodeContainerSystem _nodeContainer = default!; - private static readonly TimeSpan SpreadCooldown = TimeSpan.FromSeconds(1); + private static readonly TimeSpan SpreadCooldown = TimeSpan.FromSeconds(SpreadCooldownSeconds); - private readonly List _spreaderGroups = new(); + /// + /// Cached maximum number of updates per spreader prototype. This is applied per-grid. + /// + private Dictionary _prototypeUpdates = default!; + + /// + /// Remaining number of updates per grid & prototype. + /// + private Dictionary> _gridUpdates = new(); + + private const float SpreadCooldownSeconds = 1; [ValidatePrototypeId] private const string IgnoredTag = "SpreaderIgnore"; @@ -42,6 +49,7 @@ public override void Initialize() SubscribeLocalEvent(OnGridUnpaused); + SubscribeLocalEvent(OnTerminating); SetupPrototypes(); _prototype.PrototypesReloaded += OnPrototypeReload; } @@ -62,21 +70,20 @@ private void OnPrototypeReload(PrototypesReloadedEventArgs obj) private void SetupPrototypes() { - _spreaderGroups.Clear(); - - foreach (var id in _prototype.EnumeratePrototypes()) + _prototypeUpdates = new Dictionary(); + foreach (var proto in _prototype.EnumeratePrototypes()) { - _spreaderGroups.Add(id.ID); + _prototypeUpdates.Add(proto.ID, proto.UpdatesPerSecond); } } private void OnAirtightChanged(ref AirtightChanged ev) { - var neighbors = GetNeighbors(ev.Entity, ev.Airtight); + var neighbors = GetSpreadableNeighbors(ev.Entity, ev.Airtight, ev.Position); foreach (var neighbor in neighbors) { - EnsureComp(neighbor); + EnsureComp(neighbor); } } @@ -87,7 +94,17 @@ private void OnGridUnpaused(EntityUid uid, SpreaderGridComponent component, ref private void OnGridInit(GridInitializeEvent ev) { - var comp = EnsureComp(ev.EntityUid); + EnsureComp(ev.EntityUid); + } + + private void OnTerminating(EntityUid uid, EdgeSpreaderComponent component, ref EntityTerminatingEvent args) + { + var neighbors = GetSpreadableNeighbors(uid); + + foreach (var neighbor in neighbors) + { + EnsureComp(neighbor); + } } /// @@ -96,31 +113,26 @@ public override void Update(float frameTime) var curTime = _timing.CurTime; // Check which grids are valid for spreading - var spreadable = new ValueList(); var spreadGrids = EntityQueryEnumerator(); + _gridUpdates.Clear(); while (spreadGrids.MoveNext(out var uid, out var grid)) { if (grid.NextUpdate > curTime) continue; - spreadable.Add(uid); + _gridUpdates[uid] = _prototypeUpdates.ShallowClone(); grid.NextUpdate += SpreadCooldown; } - if (spreadable.Count == 0) + if (_gridUpdates.Count == 0) return; - var query = EntityQueryEnumerator(); - var nodeQuery = GetEntityQuery(); - var xformQuery = GetEntityQuery(); - var gridQuery = GetEntityQuery(); - - // Each INode group has a certain number of updates - // allowed per SpreadCooldown - var groupUpdates = new Dictionary(); + var query = EntityQueryEnumerator(); + var xforms = GetEntityQuery(); + var spreaderQuery = GetEntityQuery(); - var spreaders = new List<(EntityUid Uid, EdgeSpreaderComponent Comp)>(Count()); + var spreaders = new List<(EntityUid Uid, ActiveEdgeSpreaderComponent Comp)>(Count()); // Build a list of all existing Edgespreaders, shuffle them while (query.MoveNext(out var uid, out var comp)) @@ -134,64 +146,43 @@ public override void Update(float frameTime) // that doesn't meet a few trivial prerequisites foreach (var (uid, comp) in spreaders) { - if (!xformQuery.TryGetComponent(uid, out var xform) || - xform.GridUid == null || - !gridQuery.HasComponent(xform.GridUid.Value)) - { - RemCompDeferred(uid); + // Get xform first, as entity may have been deleted due to interactions triggered by other spreaders. + if (!xforms.TryGetComponent(uid, out var xform)) continue; - } - foreach (var sGroup in _spreaderGroups) + if (xform.GridUid == null) { - // Get the NodeContainer and Node from every EdgeSpreader entity found - if (!nodeQuery.TryGetComponent(uid, out var nodeContainer)) - { - RemCompDeferred(uid); - continue; - } - - if (!_nodeContainer.TryGetNode(nodeContainer, sGroup, out var node)) - { - continue; - } + RemComp(uid, comp); + continue; + } - // Not allowed this tick? - if (node.NodeGroup == null || - !spreadable.Contains(xform.GridUid.Value)) - { - continue; - } + if (!_gridUpdates.TryGetValue(xform.GridUid.Value, out var groupUpdates)) + continue; - // Try get an integer update rate associated with a node group, - // getting it instead from the spreader itself on failure - if (!groupUpdates.TryGetValue(node.NodeGroup, out var updates)) - { - var spreadEv = new SpreadGroupUpdateRate(node.Name); - RaiseLocalEvent(ref spreadEv); - updates = (int) (spreadEv.UpdatesPerSecond * SpreadCooldown / TimeSpan.FromSeconds(1)); - } + if (!spreaderQuery.TryGetComponent(uid, out var spreader)) + { + RemComp(uid, comp); + continue; + } - // "updates" integer dictates the amount of nodes that - // are to be spawned around a NodeGroup - if (updates <= 0) - { - continue; - } + if (!groupUpdates.TryGetValue(spreader.Id, out var updates) || updates < 1) + continue; - // Edge detection logic is to be handled - // by the subscribing system, see KudzuSystem - // for a simple example + // Edge detection logic is to be handled + // by the subscribing system, see KudzuSystem + // for a simple example + Spread(uid, xform, spreader.Id, ref updates); - Spread(uid, node, node.NodeGroup, ref updates); - groupUpdates[node.NodeGroup] = updates; - } + if (updates < 1) + groupUpdates.Remove(spreader.Id); + else + groupUpdates[spreader.Id] = updates; } } - private void Spread(EntityUid uid, SpreaderNode node, INodeGroup group, ref int updates) + private void Spread(EntityUid uid, TransformComponent xform, string prototype, ref int updates) { - GetNeighbors(uid, node.Name, out var freeTiles, out _, out var neighbors); + GetNeighbors(uid, xform, prototype, out var freeTiles, out _, out var neighbors); var ev = new SpreadNeighborsEvent() { @@ -207,20 +198,19 @@ private void Spread(EntityUid uid, SpreaderNode node, INodeGroup group, ref int /// /// Gets the neighboring node data for the specified entity and the specified node group. /// - public void GetNeighbors(EntityUid uid, string groupName, out ValueList<(MapGridComponent Grid, Vector2i Tile)> freeTiles, out ValueList occupiedTiles, out ValueList neighbors) + public void GetNeighbors(EntityUid uid, TransformComponent transform, string prototype, out ValueList<(MapGridComponent Grid, Vector2i Tile)> freeTiles, out ValueList occupiedTiles, out ValueList neighbors) { + // TODO remove occupiedTiles -- its currently unused and just slows this method down. + DebugTools.Assert(_prototype.HasIndex(prototype)); freeTiles = new ValueList<(MapGridComponent Grid, Vector2i Tile)>(); occupiedTiles = new ValueList(); neighbors = new ValueList(); - if (!EntityManager.TryGetComponent(uid, out var transform)) - return; - if (!_mapManager.TryGetGrid(transform.GridUid, out var grid)) return; var tile = grid.TileIndicesFor(transform.Coordinates); - var nodeQuery = GetEntityQuery(); + var spreaderQuery = GetEntityQuery(); var airtightQuery = GetEntityQuery(); var dockQuery = GetEntityQuery(); var xformQuery = GetEntityQuery(); @@ -309,10 +299,10 @@ public void GetNeighbors(EntityUid uid, string groupName, out ValueList<(MapGrid while (directionEnumerator.MoveNext(out var ent)) { - if (!nodeQuery.TryGetComponent(ent, out var nodeContainer)) + if (!spreaderQuery.TryGetComponent(ent, out var spreader)) continue; - if (!nodeContainer.Nodes.ContainsKey(groupName)) + if (spreader.Id != prototype) continue; neighbors.Add(ent.Value); @@ -325,23 +315,38 @@ public void GetNeighbors(EntityUid uid, string groupName, out ValueList<(MapGrid } } - public List GetNeighbors(EntityUid uid, AirtightComponent comp) + /// + /// Given an entity, this returns a list of all adjacent entities with a . + /// + public List GetSpreadableNeighbors(EntityUid uid, AirtightComponent? comp = null, + (EntityUid Grid, Vector2i Tile)? position = null) { + Resolve(uid, ref comp, false); var neighbors = new List(); - if (!EntityManager.TryGetComponent(uid, out var transform)) - return neighbors; // how did we get here? + Vector2i tile; + MapGridComponent? grid; - if (!_mapManager.TryGetGrid(transform.GridUid, out var grid)) - return neighbors; + if (position == null) + { + var transform = Transform(uid); + if (!_mapManager.TryGetGrid(transform.GridUid, out grid)) + return neighbors; + tile = grid.TileIndicesFor(transform.Coordinates); + } + else + { + if (!_mapManager.TryGetGrid(position.Value.Grid, out grid)) + return neighbors; + tile = position.Value.Tile; + } - var tile = grid.TileIndicesFor(transform.Coordinates); - var nodeQuery = GetEntityQuery(); + var spreaderQuery = GetEntityQuery(); for (var i = 0; i < Atmospherics.Directions; i++) { var direction = (AtmosDirection) (1 << i); - if (!comp.AirBlockedDirection.IsFlagSet(direction)) + if (comp != null && !comp.AirBlockedDirection.IsFlagSet(direction)) continue; var directionEnumerator = @@ -349,17 +354,9 @@ public List GetNeighbors(EntityUid uid, AirtightComponent comp) while (directionEnumerator.MoveNext(out var ent)) { - if (!nodeQuery.TryGetComponent(ent, out var nodeContainer)) - continue; - - foreach (var name in _spreaderGroups) - { - if (!nodeContainer.Nodes.ContainsKey(name)) - continue; - + DebugTools.Assert(Transform(ent.Value).Anchored); + if (spreaderQuery.HasComponent(ent)) neighbors.Add(ent.Value); - break; - } } } diff --git a/Content.Server/Temperature/Components/ContainerTemperatureDamageThresholdsComponent.cs b/Content.Server/Temperature/Components/ContainerTemperatureDamageThresholdsComponent.cs index ae8acc49ef6..024b8a013b3 100644 --- a/Content.Server/Temperature/Components/ContainerTemperatureDamageThresholdsComponent.cs +++ b/Content.Server/Temperature/Components/ContainerTemperatureDamageThresholdsComponent.cs @@ -3,11 +3,9 @@ [RegisterComponent] public sealed partial class ContainerTemperatureDamageThresholdsComponent: Component { - [DataField("heatDamageThreshold")] - [ViewVariables(VVAccess.ReadWrite)] + [DataField, ViewVariables(VVAccess.ReadWrite)] public float? HeatDamageThreshold; - [DataField("coldDamageThreshold")] - [ViewVariables(VVAccess.ReadWrite)] + [DataField, ViewVariables(VVAccess.ReadWrite)] public float? ColdDamageThreshold; } diff --git a/Content.Server/Temperature/Components/EntityHeaterComponent.cs b/Content.Server/Temperature/Components/EntityHeaterComponent.cs new file mode 100644 index 00000000000..3a162c20e32 --- /dev/null +++ b/Content.Server/Temperature/Components/EntityHeaterComponent.cs @@ -0,0 +1,24 @@ +using Content.Server.Temperature.Systems; +using Content.Shared.Temperature; + +namespace Content.Server.Temperature.Components; + +/// +/// Adds thermal energy to entities with placed on it. +/// +[RegisterComponent, Access(typeof(EntityHeaterSystem))] +public sealed partial class EntityHeaterComponent : Component +{ + /// + /// Power used when heating at the high setting. + /// Low and medium are 33% and 66% respectively. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float Power = 2400f; + + /// + /// Current setting of the heater. If it is off or unpowered it won't heat anything. + /// + [DataField] + public EntityHeaterSetting Setting = EntityHeaterSetting.Off; +} diff --git a/Content.Server/Temperature/Components/TemperatureComponent.cs b/Content.Server/Temperature/Components/TemperatureComponent.cs index 6ace329426f..7330ebf9ba5 100644 --- a/Content.Server/Temperature/Components/TemperatureComponent.cs +++ b/Content.Server/Temperature/Components/TemperatureComponent.cs @@ -4,84 +4,80 @@ using Robust.Shared.Physics; using Robust.Shared.Physics.Components; -namespace Content.Server.Temperature.Components +namespace Content.Server.Temperature.Components; + +/// +/// Handles changing temperature, +/// informing others of the current temperature, +/// and taking fire damage from high temperature. +/// +[RegisterComponent] +public sealed partial class TemperatureComponent : Component { - /// - /// Handles changing temperature, - /// informing others of the current temperature, - /// and taking fire damage from high temperature. - /// - [RegisterComponent] - public sealed partial class TemperatureComponent : Component - { - [ViewVariables(VVAccess.ReadWrite)] - [DataField("currentTemperature")] - public float CurrentTemperature { get; set; } = Atmospherics.T20C; + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float CurrentTemperature = Atmospherics.T20C; - [DataField("heatDamageThreshold")] - [ViewVariables(VVAccess.ReadWrite)] - public float HeatDamageThreshold = 360f; + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float HeatDamageThreshold = 360f; - [DataField("coldDamageThreshold")] - [ViewVariables(VVAccess.ReadWrite)] - public float ColdDamageThreshold = 260f; + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float ColdDamageThreshold = 260f; - /// - /// Overrides HeatDamageThreshold if the entity's within a parent with the TemperatureDamageThresholdsComponent component. - /// - [ViewVariables(VVAccess.ReadWrite)] - public float? ParentHeatDamageThreshold; + /// + /// Overrides HeatDamageThreshold if the entity's within a parent with the TemperatureDamageThresholdsComponent component. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float? ParentHeatDamageThreshold; - /// - /// Overrides ColdDamageThreshold if the entity's within a parent with the TemperatureDamageThresholdsComponent component. - /// - [ViewVariables(VVAccess.ReadWrite)] - public float? ParentColdDamageThreshold; + /// + /// Overrides ColdDamageThreshold if the entity's within a parent with the TemperatureDamageThresholdsComponent component. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float? ParentColdDamageThreshold; - [DataField("specificHeat")] - [ViewVariables(VVAccess.ReadWrite)] - public float SpecificHeat = 50f; + /// + /// Heat capacity per kg of mass. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float SpecificHeat = 50f; - /// - /// How well does the air surrounding you merge into your body temperature? - /// - [DataField("atmosTemperatureTransferEfficiency")] - [ViewVariables(VVAccess.ReadWrite)] - public float AtmosTemperatureTransferEfficiency = 0.1f; + /// + /// How well does the air surrounding you merge into your body temperature? + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float AtmosTemperatureTransferEfficiency = 0.1f; - [ViewVariables] public float HeatCapacity + [ViewVariables] public float HeatCapacity + { + get { - get + if (IoCManager.Resolve().TryGetComponent(Owner, out var physics) && physics.FixturesMass != 0) { - if (IoCManager.Resolve().TryGetComponent(Owner, out var physics) && physics.FixturesMass != 0) - { - return SpecificHeat * physics.FixturesMass; - } - - return Atmospherics.MinimumHeatCapacity; + return SpecificHeat * physics.FixturesMass; } + + return Atmospherics.MinimumHeatCapacity; } + } - [DataField("coldDamage")] - [ViewVariables(VVAccess.ReadWrite)] - public DamageSpecifier ColdDamage = new(); + [DataField, ViewVariables(VVAccess.ReadWrite)] + public DamageSpecifier ColdDamage = new(); - [DataField("heatDamage")] - [ViewVariables(VVAccess.ReadWrite)] - public DamageSpecifier HeatDamage = new(); + [DataField, ViewVariables(VVAccess.ReadWrite)] + public DamageSpecifier HeatDamage = new(); - /// - /// Temperature won't do more than this amount of damage per second. - /// - /// Okay it genuinely reaches this basically immediately for a plasma fire. - /// - [DataField("damageCap")] - [ViewVariables(VVAccess.ReadWrite)] - public FixedPoint2 DamageCap = FixedPoint2.New(8); + /// + /// Temperature won't do more than this amount of damage per second. + /// + /// + /// Okay it genuinely reaches this basically immediately for a plasma fire. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public FixedPoint2 DamageCap = FixedPoint2.New(8); - /// - /// Used to keep track of when damage starts/stops. Useful for logs. - /// - public bool TakingDamage = false; - } + /// + /// Used to keep track of when damage starts/stops. Useful for logs. + /// + [DataField] + public bool TakingDamage = false; } diff --git a/Content.Server/Temperature/Systems/EntityHeaterSystem.cs b/Content.Server/Temperature/Systems/EntityHeaterSystem.cs new file mode 100644 index 00000000000..6da774ba076 --- /dev/null +++ b/Content.Server/Temperature/Systems/EntityHeaterSystem.cs @@ -0,0 +1,111 @@ +using Content.Server.Power.Components; +using Content.Server.Temperature.Components; +using Content.Shared.Examine; +using Content.Shared.Placeable; +using Content.Shared.Popups; +using Content.Shared.Temperature; +using Content.Shared.Verbs; + +namespace Content.Server.Temperature.Systems; + +/// +/// Handles updating and events. +/// +public sealed class EntityHeaterSystem : EntitySystem +{ + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly TemperatureSystem _temperature = default!; + + private readonly int SettingCount = Enum.GetValues(typeof(EntityHeaterSetting)).Length; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnExamined); + SubscribeLocalEvent>(OnGetVerbs); + SubscribeLocalEvent(OnPowerChanged); + } + + public override void Update(float deltaTime) + { + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var comp, out var placer, out var power)) + { + if (!power.Powered) + continue; + + // don't divide by total entities since its a big grill + // excess would just be wasted in the air but that's not worth simulating + // if you want a heater thermomachine just use that... + var energy = power.PowerReceived * deltaTime; + foreach (var ent in placer.PlacedEntities) + { + _temperature.ChangeHeat(ent, energy); + } + } + } + + private void OnExamined(EntityUid uid, EntityHeaterComponent comp, ExaminedEvent args) + { + if (!args.IsInDetailsRange) + return; + + args.PushMarkup(Loc.GetString("entity-heater-examined", ("setting", comp.Setting))); + } + + private void OnGetVerbs(EntityUid uid, EntityHeaterComponent comp, GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract) + return; + + var setting = (int) comp.Setting; + setting++; + setting %= SettingCount; + var nextSetting = (EntityHeaterSetting) setting; + + args.Verbs.Add(new AlternativeVerb() + { + Text = Loc.GetString("entity-heater-switch-setting", ("setting", nextSetting)), + Act = () => + { + ChangeSetting(uid, nextSetting, comp); + _popup.PopupEntity(Loc.GetString("entity-heater-switched-setting", ("setting", nextSetting)), uid, args.User); + } + }); + } + + private void OnPowerChanged(EntityUid uid, EntityHeaterComponent comp, ref PowerChangedEvent args) + { + // disable heating element glowing layer if theres no power + // doesn't actually turn it off since that would be annoying + var setting = args.Powered ? comp.Setting : EntityHeaterSetting.Off; + _appearance.SetData(uid, EntityHeaterVisuals.Setting, setting); + } + + private void ChangeSetting(EntityUid uid, EntityHeaterSetting setting, EntityHeaterComponent? comp = null, ApcPowerReceiverComponent? power = null) + { + if (!Resolve(uid, ref comp, ref power)) + return; + + comp.Setting = setting; + power.Load = SettingPower(setting, comp.Power); + _appearance.SetData(uid, EntityHeaterVisuals.Setting, setting); + } + + private float SettingPower(EntityHeaterSetting setting, float max) + { + switch (setting) + { + case EntityHeaterSetting.Low: + return max / 3f; + case EntityHeaterSetting.Medium: + return max * 2f / 3f; + case EntityHeaterSetting.High: + return max; + default: + return 0f; + } + } +} diff --git a/Content.Server/Temperature/Systems/TemperatureSystem.cs b/Content.Server/Temperature/Systems/TemperatureSystem.cs index 9c567548616..4796704d27b 100644 --- a/Content.Server/Temperature/Systems/TemperatureSystem.cs +++ b/Content.Server/Temperature/Systems/TemperatureSystem.cs @@ -1,6 +1,3 @@ -using System; -using System.Collections.Generic; -using System.Linq; using Content.Server.Administration.Logs; using Content.Server.Atmos.Components; using Content.Server.Atmos.EntitySystems; @@ -13,351 +10,349 @@ using Content.Shared.Rejuvenate; using Content.Shared.Temperature; using Robust.Server.GameObjects; +using System.Linq; -namespace Content.Server.Temperature.Systems -{ - public sealed class TemperatureSystem : EntitySystem - { - [Dependency] private readonly TransformSystem _transformSystem = default!; - [Dependency] private readonly DamageableSystem _damageableSystem = default!; - [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; - [Dependency] private readonly AlertsSystem _alertsSystem = default!; - [Dependency] private readonly IAdminLogManager _adminLogger = default!; - - /// - /// All the components that will have their damage updated at the end of the tick. - /// This is done because both AtmosExposed and Flammable call ChangeHeat in the same tick, meaning - /// that we need some mechanism to ensure it doesn't double dip on damage for both calls. - /// - public HashSet ShouldUpdateDamage = new(); +namespace Content.Server.Temperature.Systems; - public float UpdateInterval = 1.0f; +public sealed class TemperatureSystem : EntitySystem +{ + [Dependency] private readonly AlertsSystem _alerts = default!; + [Dependency] private readonly AtmosphereSystem _atmosphere = default!; + [Dependency] private readonly IAdminLogManager _adminLogger = default!; + [Dependency] private readonly DamageableSystem _damageable = default!; + [Dependency] private readonly TransformSystem _transform = default!; - private float _accumulatedFrametime; + /// + /// All the components that will have their damage updated at the end of the tick. + /// This is done because both AtmosExposed and Flammable call ChangeHeat in the same tick, meaning + /// that we need some mechanism to ensure it doesn't double dip on damage for both calls. + /// + public HashSet ShouldUpdateDamage = new(); - public override void Initialize() - { - SubscribeLocalEvent(EnqueueDamage); - SubscribeLocalEvent(OnAtmosExposedUpdate); - SubscribeLocalEvent(OnRejuvenate); - SubscribeLocalEvent(ServerAlert); - SubscribeLocalEvent>( - OnTemperatureChangeAttempt); - - // Allows overriding thresholds based on the parent's thresholds. - SubscribeLocalEvent(OnParentChange); - SubscribeLocalEvent( - OnParentThresholdStartup); - SubscribeLocalEvent( - OnParentThresholdShutdown); - } + public float UpdateInterval = 1.0f; - public override void Update(float frameTime) - { - base.Update(frameTime); + private float _accumulatedFrametime; - _accumulatedFrametime += frameTime; + public override void Initialize() + { + SubscribeLocalEvent(EnqueueDamage); + SubscribeLocalEvent(OnAtmosExposedUpdate); + SubscribeLocalEvent(OnRejuvenate); + SubscribeLocalEvent(ServerAlert); + SubscribeLocalEvent>( + OnTemperatureChangeAttempt); + + // Allows overriding thresholds based on the parent's thresholds. + SubscribeLocalEvent(OnParentChange); + SubscribeLocalEvent( + OnParentThresholdStartup); + SubscribeLocalEvent( + OnParentThresholdShutdown); + } - if (_accumulatedFrametime < UpdateInterval) - return; - _accumulatedFrametime -= UpdateInterval; + public override void Update(float frameTime) + { + base.Update(frameTime); - if (!ShouldUpdateDamage.Any()) - return; + _accumulatedFrametime += frameTime; - foreach (var comp in ShouldUpdateDamage) - { - MetaDataComponent? metaData = null; + if (_accumulatedFrametime < UpdateInterval) + return; + _accumulatedFrametime -= UpdateInterval; - var uid = comp.Owner; - if (Deleted(uid, metaData) || Paused(uid, metaData)) - continue; + if (!ShouldUpdateDamage.Any()) + return; - ChangeDamage(uid, comp); - } + foreach (var comp in ShouldUpdateDamage) + { + MetaDataComponent? metaData = null; - ShouldUpdateDamage.Clear(); - } + var uid = comp.Owner; + if (Deleted(uid, metaData) || Paused(uid, metaData)) + continue; - public void ForceChangeTemperature(EntityUid uid, float temp, TemperatureComponent? temperature = null) - { - if (!Resolve(uid, ref temperature)) - return; - - float lastTemp = temperature.CurrentTemperature; - float delta = temperature.CurrentTemperature - temp; - temperature.CurrentTemperature = temp; - RaiseLocalEvent(uid, new OnTemperatureChangeEvent(temperature.CurrentTemperature, lastTemp, delta), - true); + ChangeDamage(uid, comp); } - public void ChangeHeat(EntityUid uid, float heatAmount, bool ignoreHeatResistance = false, - TemperatureComponent? temperature = null) - { - if (Resolve(uid, ref temperature)) - { - if (!ignoreHeatResistance) - { - var ev = new ModifyChangedTemperatureEvent(heatAmount); - RaiseLocalEvent(uid, ev, false); - heatAmount = ev.TemperatureDelta; - } + ShouldUpdateDamage.Clear(); + } - float lastTemp = temperature.CurrentTemperature; - temperature.CurrentTemperature += heatAmount / temperature.HeatCapacity; - float delta = temperature.CurrentTemperature - lastTemp; + public void ForceChangeTemperature(EntityUid uid, float temp, TemperatureComponent? temperature = null) + { + if (!Resolve(uid, ref temperature)) + return; + + float lastTemp = temperature.CurrentTemperature; + float delta = temperature.CurrentTemperature - temp; + temperature.CurrentTemperature = temp; + RaiseLocalEvent(uid, new OnTemperatureChangeEvent(temperature.CurrentTemperature, lastTemp, delta), + true); + } - RaiseLocalEvent(uid, new OnTemperatureChangeEvent(temperature.CurrentTemperature, lastTemp, delta), - true); - } - } + public void ChangeHeat(EntityUid uid, float heatAmount, bool ignoreHeatResistance = false, + TemperatureComponent? temperature = null) + { + if (!Resolve(uid, ref temperature)) + return; - private void OnAtmosExposedUpdate(EntityUid uid, TemperatureComponent temperature, - ref AtmosExposedUpdateEvent args) + if (!ignoreHeatResistance) { - var transform = args.Transform; - - if (transform.MapUid == null) - return; + var ev = new ModifyChangedTemperatureEvent(heatAmount); + RaiseLocalEvent(uid, ev, false); + heatAmount = ev.TemperatureDelta; + } - var position = _transformSystem.GetGridOrMapTilePosition(uid, transform); + float lastTemp = temperature.CurrentTemperature; + temperature.CurrentTemperature += heatAmount / temperature.HeatCapacity; + float delta = temperature.CurrentTemperature - lastTemp; - var temperatureDelta = args.GasMixture.Temperature - temperature.CurrentTemperature; - var tileHeatCapacity = - _atmosphereSystem.GetTileHeatCapacity(transform.GridUid, transform.MapUid.Value, position); - var heat = temperatureDelta * (tileHeatCapacity * temperature.HeatCapacity / - (tileHeatCapacity + temperature.HeatCapacity)); - ChangeHeat(uid, heat * temperature.AtmosTemperatureTransferEfficiency, temperature: temperature); - } + RaiseLocalEvent(uid, new OnTemperatureChangeEvent(temperature.CurrentTemperature, lastTemp, delta), true); + } - private void OnRejuvenate(EntityUid uid, TemperatureComponent comp, RejuvenateEvent args) - { - ForceChangeTemperature(uid, Atmospherics.T20C, comp); - } + private void OnAtmosExposedUpdate(EntityUid uid, TemperatureComponent temperature, + ref AtmosExposedUpdateEvent args) + { + var transform = args.Transform; + if (transform.MapUid == null) + return; + + var position = _transform.GetGridOrMapTilePosition(uid, transform); + + var temperatureDelta = args.GasMixture.Temperature - temperature.CurrentTemperature; + var tileHeatCapacity = + _atmosphere.GetTileHeatCapacity(transform.GridUid, transform.MapUid.Value, position); + var heat = temperatureDelta * (tileHeatCapacity * temperature.HeatCapacity / + (tileHeatCapacity + temperature.HeatCapacity)); + ChangeHeat(uid, heat * temperature.AtmosTemperatureTransferEfficiency, temperature: temperature); + } - private void ServerAlert(EntityUid uid, AlertsComponent status, OnTemperatureChangeEvent args) - { - switch (args.CurrentTemperature) - { - // Cold strong. - case <= 260: - _alertsSystem.ShowAlert(uid, AlertType.Cold, 3); - break; - - // Cold mild. - case <= 280 and > 260: - _alertsSystem.ShowAlert(uid, AlertType.Cold, 2); - break; - - // Cold weak. - case <= 292 and > 280: - _alertsSystem.ShowAlert(uid, AlertType.Cold, 1); - break; - - // Safe. - case <= 327 and > 292: - _alertsSystem.ClearAlertCategory(uid, AlertCategory.Temperature); - break; - - // Heat weak. - case <= 335 and > 327: - _alertsSystem.ShowAlert(uid, AlertType.Hot, 1); - break; - - // Heat mild. - case <= 360 and > 335: - _alertsSystem.ShowAlert(uid, AlertType.Hot, 2); - break; - - // Heat strong. - case > 360: - _alertsSystem.ShowAlert(uid, AlertType.Hot, 3); - break; - } - } + private void OnRejuvenate(EntityUid uid, TemperatureComponent comp, RejuvenateEvent args) + { + ForceChangeTemperature(uid, Atmospherics.T20C, comp); + } - private void EnqueueDamage(EntityUid uid, TemperatureComponent component, OnTemperatureChangeEvent args) + private void ServerAlert(EntityUid uid, AlertsComponent status, OnTemperatureChangeEvent args) + { + switch (args.CurrentTemperature) { - ShouldUpdateDamage.Add(component); + // Cold strong. + case <= 260: + _alerts.ShowAlert(uid, AlertType.Cold, 3); + break; + + // Cold mild. + case <= 280 and > 260: + _alerts.ShowAlert(uid, AlertType.Cold, 2); + break; + + // Cold weak. + case <= 292 and > 280: + _alerts.ShowAlert(uid, AlertType.Cold, 1); + break; + + // Safe. + case <= 327 and > 292: + _alerts.ClearAlertCategory(uid, AlertCategory.Temperature); + break; + + // Heat weak. + case <= 335 and > 327: + _alerts.ShowAlert(uid, AlertType.Hot, 1); + break; + + // Heat mild. + case <= 360 and > 335: + _alerts.ShowAlert(uid, AlertType.Hot, 2); + break; + + // Heat strong. + case > 360: + _alerts.ShowAlert(uid, AlertType.Hot, 3); + break; } + } - private void ChangeDamage(EntityUid uid, TemperatureComponent temperature) - { - if (!HasComp(uid)) - return; - - // See this link for where the scaling func comes from: - // https://www.desmos.com/calculator/0vknqtdvq9 - // Based on a logistic curve, which caps out at MaxDamage - var heatK = 0.005; - var a = 1; - var y = temperature.DamageCap; - var c = y * 2; + private void EnqueueDamage(EntityUid uid, TemperatureComponent component, OnTemperatureChangeEvent args) + { + ShouldUpdateDamage.Add(component); + } - var heatDamageThreshold = temperature.ParentHeatDamageThreshold ?? temperature.HeatDamageThreshold; - var coldDamageThreshold = temperature.ParentColdDamageThreshold ?? temperature.ColdDamageThreshold; + private void ChangeDamage(EntityUid uid, TemperatureComponent temperature) + { + if (!HasComp(uid)) + return; - if (temperature.CurrentTemperature >= heatDamageThreshold) - { - if (!temperature.TakingDamage) - { - _adminLogger.Add(LogType.Temperature, $"{ToPrettyString(uid):entity} started taking high temperature damage"); - temperature.TakingDamage = true; - } + // See this link for where the scaling func comes from: + // https://www.desmos.com/calculator/0vknqtdvq9 + // Based on a logistic curve, which caps out at MaxDamage + var heatK = 0.005; + var a = 1; + var y = temperature.DamageCap; + var c = y * 2; - var diff = Math.Abs(temperature.CurrentTemperature - heatDamageThreshold); - var tempDamage = c / (1 + a * Math.Pow(Math.E, -heatK * diff)) - y; - _damageableSystem.TryChangeDamage(uid, temperature.HeatDamage * tempDamage, ignoreResistances: true, interruptsDoAfters: false); - } - else if (temperature.CurrentTemperature <= coldDamageThreshold) - { - if (!temperature.TakingDamage) - { - _adminLogger.Add(LogType.Temperature, $"{ToPrettyString(uid):entity} started taking low temperature damage"); - temperature.TakingDamage = true; - } + var heatDamageThreshold = temperature.ParentHeatDamageThreshold ?? temperature.HeatDamageThreshold; + var coldDamageThreshold = temperature.ParentColdDamageThreshold ?? temperature.ColdDamageThreshold; - var diff = Math.Abs(temperature.CurrentTemperature - coldDamageThreshold); - var tempDamage = - Math.Sqrt(diff * (Math.Pow(temperature.DamageCap.Double(), 2) / coldDamageThreshold)); - _damageableSystem.TryChangeDamage(uid, temperature.ColdDamage * tempDamage, ignoreResistances: true, interruptsDoAfters: false); - } - else if (temperature.TakingDamage) + if (temperature.CurrentTemperature >= heatDamageThreshold) + { + if (!temperature.TakingDamage) { - _adminLogger.Add(LogType.Temperature, $"{ToPrettyString(uid):entity} stopped taking temperature damage"); - temperature.TakingDamage = false; + _adminLogger.Add(LogType.Temperature, $"{ToPrettyString(uid):entity} started taking high temperature damage"); + temperature.TakingDamage = true; } - } - private void OnTemperatureChangeAttempt(EntityUid uid, TemperatureProtectionComponent component, - InventoryRelayedEvent args) - { - args.Args.TemperatureDelta *= component.Coefficient; + var diff = Math.Abs(temperature.CurrentTemperature - heatDamageThreshold); + var tempDamage = c / (1 + a * Math.Pow(Math.E, -heatK * diff)) - y; + _damageable.TryChangeDamage(uid, temperature.HeatDamage * tempDamage, ignoreResistances: true, interruptsDoAfters: false); } - - private void OnParentChange(EntityUid uid, TemperatureComponent component, - ref EntParentChangedMessage args) + else if (temperature.CurrentTemperature <= coldDamageThreshold) { - var temperatureQuery = GetEntityQuery(); - var transformQuery = GetEntityQuery(); - var thresholdsQuery = GetEntityQuery(); - // We only need to update thresholds if the thresholds changed for the entity's ancestors. - var oldThresholds = args.OldParent != null - ? RecalculateParentThresholds(args.OldParent.Value, transformQuery, thresholdsQuery) - : (null, null); - var newThresholds = RecalculateParentThresholds(transformQuery.GetComponent(uid).ParentUid, transformQuery, thresholdsQuery); - - if (oldThresholds != newThresholds) + if (!temperature.TakingDamage) { - RecursiveThresholdUpdate(uid, temperatureQuery, transformQuery, thresholdsQuery); + _adminLogger.Add(LogType.Temperature, $"{ToPrettyString(uid):entity} started taking low temperature damage"); + temperature.TakingDamage = true; } - } - private void OnParentThresholdStartup(EntityUid uid, ContainerTemperatureDamageThresholdsComponent component, - ComponentStartup args) + var diff = Math.Abs(temperature.CurrentTemperature - coldDamageThreshold); + var tempDamage = + Math.Sqrt(diff * (Math.Pow(temperature.DamageCap.Double(), 2) / coldDamageThreshold)); + _damageable.TryChangeDamage(uid, temperature.ColdDamage * tempDamage, ignoreResistances: true, interruptsDoAfters: false); + } + else if (temperature.TakingDamage) { - RecursiveThresholdUpdate(uid, GetEntityQuery(), GetEntityQuery(), - GetEntityQuery()); + _adminLogger.Add(LogType.Temperature, $"{ToPrettyString(uid):entity} stopped taking temperature damage"); + temperature.TakingDamage = false; } + } + + private void OnTemperatureChangeAttempt(EntityUid uid, TemperatureProtectionComponent component, + InventoryRelayedEvent args) + { + args.Args.TemperatureDelta *= component.Coefficient; + } - private void OnParentThresholdShutdown(EntityUid uid, ContainerTemperatureDamageThresholdsComponent component, - ComponentShutdown args) + private void OnParentChange(EntityUid uid, TemperatureComponent component, + ref EntParentChangedMessage args) + { + var temperatureQuery = GetEntityQuery(); + var transformQuery = GetEntityQuery(); + var thresholdsQuery = GetEntityQuery(); + // We only need to update thresholds if the thresholds changed for the entity's ancestors. + var oldThresholds = args.OldParent != null + ? RecalculateParentThresholds(args.OldParent.Value, transformQuery, thresholdsQuery) + : (null, null); + var newThresholds = RecalculateParentThresholds(transformQuery.GetComponent(uid).ParentUid, transformQuery, thresholdsQuery); + + if (oldThresholds != newThresholds) { - RecursiveThresholdUpdate(uid, GetEntityQuery(), GetEntityQuery(), - GetEntityQuery()); + RecursiveThresholdUpdate(uid, temperatureQuery, transformQuery, thresholdsQuery); } + } - /// - /// Recalculate and apply parent thresholds for the root entity and all its descendant. - /// - /// - /// - /// - /// - private void RecursiveThresholdUpdate(EntityUid root, EntityQuery temperatureQuery, - EntityQuery transformQuery, - EntityQuery tempThresholdsQuery) - { - RecalculateAndApplyParentThresholds(root, temperatureQuery, transformQuery, tempThresholdsQuery); + private void OnParentThresholdStartup(EntityUid uid, ContainerTemperatureDamageThresholdsComponent component, + ComponentStartup args) + { + RecursiveThresholdUpdate(uid, GetEntityQuery(), GetEntityQuery(), + GetEntityQuery()); + } - foreach (var child in Transform(root).ChildEntities) - { - RecursiveThresholdUpdate(child, temperatureQuery, transformQuery, tempThresholdsQuery); - } - } + private void OnParentThresholdShutdown(EntityUid uid, ContainerTemperatureDamageThresholdsComponent component, + ComponentShutdown args) + { + RecursiveThresholdUpdate(uid, GetEntityQuery(), GetEntityQuery(), + GetEntityQuery()); + } + + /// + /// Recalculate and apply parent thresholds for the root entity and all its descendant. + /// + /// + /// + /// + /// + private void RecursiveThresholdUpdate(EntityUid root, EntityQuery temperatureQuery, + EntityQuery transformQuery, + EntityQuery tempThresholdsQuery) + { + RecalculateAndApplyParentThresholds(root, temperatureQuery, transformQuery, tempThresholdsQuery); - /// - /// Recalculate parent thresholds and apply them on the uid temperature component. - /// - /// - /// - /// - /// - private void RecalculateAndApplyParentThresholds(EntityUid uid, - EntityQuery temperatureQuery, EntityQuery transformQuery, - EntityQuery tempThresholdsQuery) + foreach (var child in Transform(root).ChildEntities) { - if (!temperatureQuery.TryGetComponent(uid, out var temperature)) - { - return; - } + RecursiveThresholdUpdate(child, temperatureQuery, transformQuery, tempThresholdsQuery); + } + } - var newThresholds = RecalculateParentThresholds(transformQuery.GetComponent(uid).ParentUid, transformQuery, tempThresholdsQuery); - temperature.ParentHeatDamageThreshold = newThresholds.Item1; - temperature.ParentColdDamageThreshold = newThresholds.Item2; + /// + /// Recalculate parent thresholds and apply them on the uid temperature component. + /// + /// + /// + /// + /// + private void RecalculateAndApplyParentThresholds(EntityUid uid, + EntityQuery temperatureQuery, EntityQuery transformQuery, + EntityQuery tempThresholdsQuery) + { + if (!temperatureQuery.TryGetComponent(uid, out var temperature)) + { + return; } - /// - /// Recalculate Parent Heat/Cold DamageThreshold by recursively checking each ancestor and fetching the - /// maximum HeatDamageThreshold and the minimum ColdDamageThreshold if any exists (aka the best value for each). - /// - /// - /// - /// - private (float?, float?) RecalculateParentThresholds( - EntityUid initialParentUid, - EntityQuery transformQuery, - EntityQuery tempThresholdsQuery) + var newThresholds = RecalculateParentThresholds(transformQuery.GetComponent(uid).ParentUid, transformQuery, tempThresholdsQuery); + temperature.ParentHeatDamageThreshold = newThresholds.Item1; + temperature.ParentColdDamageThreshold = newThresholds.Item2; + } + + /// + /// Recalculate Parent Heat/Cold DamageThreshold by recursively checking each ancestor and fetching the + /// maximum HeatDamageThreshold and the minimum ColdDamageThreshold if any exists (aka the best value for each). + /// + /// + /// + /// + private (float?, float?) RecalculateParentThresholds( + EntityUid initialParentUid, + EntityQuery transformQuery, + EntityQuery tempThresholdsQuery) + { + // Recursively check parents for the best threshold available + var parentUid = initialParentUid; + float? newHeatThreshold = null; + float? newColdThreshold = null; + while (parentUid.IsValid()) { - // Recursively check parents for the best threshold available - var parentUid = initialParentUid; - float? newHeatThreshold = null; - float? newColdThreshold = null; - while (parentUid.IsValid()) + if (tempThresholdsQuery.TryGetComponent(parentUid, out var newThresholds)) { - if (tempThresholdsQuery.TryGetComponent(parentUid, out var newThresholds)) + if (newThresholds.HeatDamageThreshold != null) { - if (newThresholds.HeatDamageThreshold != null) - { - newHeatThreshold = Math.Max(newThresholds.HeatDamageThreshold.Value, - newHeatThreshold ?? 0); - } - - if (newThresholds.ColdDamageThreshold != null) - { - newColdThreshold = Math.Min(newThresholds.ColdDamageThreshold.Value, - newColdThreshold ?? float.MaxValue); - } + newHeatThreshold = Math.Max(newThresholds.HeatDamageThreshold.Value, + newHeatThreshold ?? 0); } - parentUid = transformQuery.GetComponent(parentUid).ParentUid; + if (newThresholds.ColdDamageThreshold != null) + { + newColdThreshold = Math.Min(newThresholds.ColdDamageThreshold.Value, + newColdThreshold ?? float.MaxValue); + } } - return (newHeatThreshold, newColdThreshold); + parentUid = transformQuery.GetComponent(parentUid).ParentUid; } + + return (newHeatThreshold, newColdThreshold); } +} - public sealed class OnTemperatureChangeEvent : EntityEventArgs - { - public float CurrentTemperature { get; } - public float LastTemperature { get; } - public float TemperatureDelta { get; } +public sealed class OnTemperatureChangeEvent : EntityEventArgs +{ + public float CurrentTemperature { get; } + public float LastTemperature { get; } + public float TemperatureDelta { get; } - public OnTemperatureChangeEvent(float current, float last, float delta) - { - CurrentTemperature = current; - LastTemperature = last; - TemperatureDelta = delta; - } + public OnTemperatureChangeEvent(float current, float last, float delta) + { + CurrentTemperature = current; + LastTemperature = last; + TemperatureDelta = delta; } } diff --git a/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs b/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs index a0a3f6d5d7b..94ddc09e732 100644 --- a/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs +++ b/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs @@ -62,7 +62,7 @@ private void OnMeleeExamineDamage(EntityUid uid, MeleeWeaponComponent component, var damageSpec = GetDamage(uid, args.User, component); - if (damageSpec.Total == FixedPoint2.Zero) + if (damageSpec.Empty) return; _damageExamine.AddDamageExamine(args.Message, damageSpec, Loc.GetString("damage-melee")); diff --git a/Content.Server/Weapons/Ranged/Systems/GunSystem.Battery.cs b/Content.Server/Weapons/Ranged/Systems/GunSystem.Battery.cs index ab2553e31bf..f4deffd1133 100644 --- a/Content.Server/Weapons/Ranged/Systems/GunSystem.Battery.cs +++ b/Content.Server/Weapons/Ranged/Systems/GunSystem.Battery.cs @@ -85,7 +85,7 @@ private void OnBatteryDamageExamine(EntityUid uid, BatteryAmmoProviderComponent { var p = (ProjectileComponent) projectile.Component; - if (p.Damage.Total > FixedPoint2.Zero) + if (!p.Damage.Empty) { return p.Damage; } diff --git a/Content.Server/Weapons/Ranged/Systems/GunSystem.Cartridges.cs b/Content.Server/Weapons/Ranged/Systems/GunSystem.Cartridges.cs index 6a5dd2d02d8..e7bd3683d38 100644 --- a/Content.Server/Weapons/Ranged/Systems/GunSystem.Cartridges.cs +++ b/Content.Server/Weapons/Ranged/Systems/GunSystem.Cartridges.cs @@ -37,7 +37,7 @@ private void OnCartridgeDamageExamine(EntityUid uid, CartridgeAmmoComponent comp { var p = (ProjectileComponent) projectile.Component; - if (p.Damage.Total > FixedPoint2.Zero) + if (!p.Damage.Empty) { return p.Damage; } diff --git a/Content.Server/Weapons/Ranged/Systems/GunSystem.cs b/Content.Server/Weapons/Ranged/Systems/GunSystem.cs index 0859cb94427..adda6a94e3c 100644 --- a/Content.Server/Weapons/Ranged/Systems/GunSystem.cs +++ b/Content.Server/Weapons/Ranged/Systems/GunSystem.cs @@ -239,7 +239,7 @@ public override void Shoot(EntityUid gunUid, GunComponent gun, List<(EntityUid? { if (!Deleted(hitEntity)) { - if (dmg.Total > FixedPoint2.Zero) + if (dmg.Any()) { _color.RaiseEffect(Color.Red, new List() { hitEntity }, Filter.Pvs(hitEntity, entityManager: EntityManager)); } diff --git a/Content.Server/Wires/WiresSystem.cs b/Content.Server/Wires/WiresSystem.cs index e9522485ca1..df61e89d4dd 100644 --- a/Content.Server/Wires/WiresSystem.cs +++ b/Content.Server/Wires/WiresSystem.cs @@ -2,6 +2,8 @@ using System.Linq; using System.Threading; using Content.Server.Administration.Logs; +using Content.Server.Construction; +using Content.Server.Construction.Components; using Content.Server.Power.Components; using Content.Server.UserInterface; using Content.Shared.Database; @@ -33,6 +35,7 @@ public sealed class WiresSystem : SharedWiresSystem [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly ConstructionSystem _construction = default!; // This is where all the wire layouts are stored. [ViewVariables] private readonly Dictionary _layouts = new(); @@ -58,6 +61,7 @@ public override void Initialize() SubscribeLocalEvent(OnDoAfter); SubscribeLocalEvent(OnAttemptOpenActivatableUI); SubscribeLocalEvent(OnActivatableUIPanelChanged); + SubscribeLocalEvent(SetWiresPanelSecurity); } private void SetOrCreateWireLayout(EntityUid uid, WiresComponent? wires = null) { @@ -459,11 +463,13 @@ private void OnInteractUsing(EntityUid uid, WiresComponent component, InteractUs return; if (panel.Open && - _protoMan.TryIndex(panel.CurrentSecurityLevelID, out var securityLevelPrototype) && - securityLevelPrototype.WiresAccessible && (_toolSystem.HasQuality(args.Used, "Cutting", tool) || _toolSystem.HasQuality(args.Used, "Pulsing", tool))) { + if (TryComp(uid, out var wiresPanelSecurity) && + !wiresPanelSecurity.WiresAccessible) + return; + if (TryComp(args.User, out ActorComponent? actor)) { _uiSystem.TryOpen(uid, WiresUiKey.Key, actor.PlayerSession); @@ -526,6 +532,14 @@ private void OnMapInit(EntityUid uid, WiresComponent component, MapInitEvent arg if (component.WireSeed == 0) component.WireSeed = _random.Next(1, int.MaxValue); + // Update the construction graph to make sure that it starts on the node specified by WiresPanelSecurityComponent + if (TryComp(uid, out var wiresPanelSecurity) && + !string.IsNullOrEmpty(wiresPanelSecurity.SecurityLevel) && + TryComp(uid, out var construction)) + { + _construction.ChangeNode(uid, null, wiresPanelSecurity.SecurityLevel, true, construction); + } + UpdateUserInterface(uid); } #endregion @@ -656,13 +670,14 @@ public void TogglePanel(EntityUid uid, WiresPanelComponent component, bool open) RaiseLocalEvent(uid, ref ev); } - public void SetWiresPanelSecurityData(EntityUid uid, WiresPanelComponent component, string wiresPanelSecurityLevelID) + public void SetWiresPanelSecurity(EntityUid uid, WiresPanelSecurityComponent component, WiresPanelSecurityEvent args) { - component.CurrentSecurityLevelID = wiresPanelSecurityLevelID; + component.Examine = args.Examine; + component.WiresAccessible = args.WiresAccessible; + Dirty(uid, component); - if (_protoMan.TryIndex(component.CurrentSecurityLevelID, out var securityLevelPrototype) && - securityLevelPrototype.WiresAccessible) + if (!args.WiresAccessible) { _uiSystem.TryCloseAll(uid, WiresUiKey.Key); } diff --git a/Content.Shared/Access/Systems/AccessReaderSystem.cs b/Content.Shared/Access/Systems/AccessReaderSystem.cs index 8794500b900..3c8e61d2275 100644 --- a/Content.Shared/Access/Systems/AccessReaderSystem.cs +++ b/Content.Shared/Access/Systems/AccessReaderSystem.cs @@ -71,7 +71,7 @@ private void OnEmagged(EntityUid uid, AccessReaderComponent reader, ref GotEmagg { args.Handled = true; reader.Enabled = false; - Dirty(reader); + Dirty(uid, reader); } /// @@ -183,16 +183,16 @@ public HashSet FindPotentialAccessItems(EntityUid uid) { FindAccessItemsInventory(uid, out var items); - foreach (var item in new ValueList(items)) - { - items.UnionWith(FindPotentialAccessItems(item)); - } - var ev = new GetAdditionalAccessEvent { Entities = items }; RaiseLocalEvent(uid, ref ev); + + foreach (var item in new ValueList(items)) + { + items.UnionWith(FindPotentialAccessItems(item)); + } items.Add(uid); return items; } diff --git a/Content.Shared/Anomaly/Effects/Components/EntitySpawnAnomalyComponent.cs b/Content.Shared/Anomaly/Effects/Components/EntitySpawnAnomalyComponent.cs index 1dbe59a09b7..7083c91040e 100644 --- a/Content.Shared/Anomaly/Effects/Components/EntitySpawnAnomalyComponent.cs +++ b/Content.Shared/Anomaly/Effects/Components/EntitySpawnAnomalyComponent.cs @@ -1,4 +1,4 @@ -using Content.Shared.Maps; +using Content.Shared.Maps; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; @@ -11,8 +11,14 @@ public sealed partial class EntitySpawnAnomalyComponent : Component /// /// A list of entities that are random picked to be spawned on each pulse /// - [DataField("spawns", required: true, customTypeSerializer: typeof(PrototypeIdListSerializer)), ViewVariables(VVAccess.ReadWrite)] - public List Spawns = new(); + [DataField] + public List Spawns = new(); + + /// + /// A list of entities that are random picked to be spawned when supercritical; + /// + [DataField] + public List SuperCriticalSpawns = new(); /// /// The maximum number of entities that spawn per pulse @@ -34,10 +40,4 @@ public sealed partial class EntitySpawnAnomalyComponent : Component /// [DataField("floorTileId", customTypeSerializer: typeof(PrototypeIdSerializer)), ViewVariables(VVAccess.ReadWrite)] public string FloorTileId = "FloorFlesh"; - - /// - /// The entity spawned when the anomaly goes supercritical - /// - [DataField("superCriticalSpawn", customTypeSerializer: typeof(PrototypeIdSerializer)), ViewVariables(VVAccess.ReadWrite)] - public string SupercriticalSpawn = "FleshKudzu"; } diff --git a/Content.Shared/Anomaly/Effects/Components/TileSpawnAnomaly.cs b/Content.Shared/Anomaly/Effects/Components/TileSpawnAnomaly.cs index 3ea1475c756..69209680bb2 100644 --- a/Content.Shared/Anomaly/Effects/Components/TileSpawnAnomaly.cs +++ b/Content.Shared/Anomaly/Effects/Components/TileSpawnAnomaly.cs @@ -1,4 +1,4 @@ -using Content.Shared.Maps; +using Content.Shared.Maps; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; @@ -14,6 +14,12 @@ public sealed partial class TileSpawnAnomalyComponent : Component [DataField("spawnRange"), ViewVariables(VVAccess.ReadWrite)] public float SpawnRange = 5f; + /// + /// The probability a tile will spawn. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float SpawnChance = 0.33f; + /// /// The tile that is spawned by the anomaly's effect /// diff --git a/Content.Shared/Blocking/BlockingSystem.cs b/Content.Shared/Blocking/BlockingSystem.cs index 37350581540..f46b202aaae 100644 --- a/Content.Shared/Blocking/BlockingSystem.cs +++ b/Content.Shared/Blocking/BlockingSystem.cs @@ -27,6 +27,7 @@ public sealed partial class BlockingSystem : EntitySystem { [Dependency] private readonly IPrototypeManager _proto = default!; [Dependency] private readonly SharedActionsSystem _actionsSystem = default!; + [Dependency] private readonly ActionContainerSystem _actionContainer = default!; [Dependency] private readonly SharedTransformSystem _transformSystem = default!; [Dependency] private readonly FixtureSystem _fixtureSystem = default!; [Dependency] private readonly SharedHandsSystem _handsSystem = default!; @@ -51,11 +52,19 @@ public override void Initialize() SubscribeLocalEvent(OnShutdown); SubscribeLocalEvent>(OnVerbExamine); + SubscribeLocalEvent(OnMapInit); + } + + private void OnMapInit(EntityUid uid, BlockingComponent component, MapInitEvent args) + { + _actionContainer.EnsureAction(uid, ref component.BlockingToggleActionEntity, component.BlockingToggleAction); + Dirty(uid, component); } private void OnEquip(EntityUid uid, BlockingComponent component, GotEquippedHandEvent args) { component.User = args.User; + Dirty(uid, component); //To make sure that this bodytype doesn't get set as anything but the original if (TryComp(args.User, out var physicsComponent) && physicsComponent.BodyType != BodyType.Static && !HasComp(args.User)) @@ -201,6 +210,7 @@ public bool StartBlocking(EntityUid item, BlockingComponent component, EntityUid } component.IsBlocking = true; + Dirty(item, component); return true; } @@ -254,6 +264,7 @@ public bool StopBlocking(EntityUid item, BlockingComponent component, EntityUid } component.IsBlocking = false; + Dirty(item, component); return true; } diff --git a/Content.Shared/Blocking/Components/BlockingComponent.cs b/Content.Shared/Blocking/Components/BlockingComponent.cs index b33a7d7a734..9a379a29e97 100644 --- a/Content.Shared/Blocking/Components/BlockingComponent.cs +++ b/Content.Shared/Blocking/Components/BlockingComponent.cs @@ -1,5 +1,6 @@ using Content.Shared.Damage; using Robust.Shared.Audio; +using Robust.Shared.GameStates; using Robust.Shared.Physics.Collision.Shapes; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; @@ -9,19 +10,19 @@ namespace Content.Shared.Blocking; /// /// This component goes on an item that you want to use to block /// -[RegisterComponent] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class BlockingComponent : Component { /// /// The entity that's blocking /// - [ViewVariables] + [ViewVariables, AutoNetworkedField] public EntityUid? User; /// /// Is it currently blocking? /// - [ViewVariables] + [ViewVariables, AutoNetworkedField] public bool IsBlocking; /// @@ -50,7 +51,7 @@ public sealed partial class BlockingComponent : Component [DataField("blockingToggleAction", customTypeSerializer: typeof(PrototypeIdSerializer))] public string BlockingToggleAction = "ActionToggleBlock"; - [DataField("blockingToggleActionEntity")] + [DataField, AutoNetworkedField] public EntityUid? BlockingToggleActionEntity; /// diff --git a/Content.Shared/Body/Part/BodyPartComponent.cs b/Content.Shared/Body/Part/BodyPartComponent.cs index 4f838d98983..c4e65c06a3f 100644 --- a/Content.Shared/Body/Part/BodyPartComponent.cs +++ b/Content.Shared/Body/Part/BodyPartComponent.cs @@ -56,7 +56,7 @@ private List BodyPartSlotsVV foreach (var slotId in Children.Keys) { - temp.Add((ContainerSlot) containerSystem.GetContainer(Owner, slotId)); + temp.Add((ContainerSlot) containerSystem.GetContainer(Owner, SharedBodySystem.PartSlotContainerIdPrefix+slotId)); } return temp; @@ -73,7 +73,7 @@ private List OrganSlotsVV foreach (var slotId in Organs.Keys) { - temp.Add((ContainerSlot) containerSystem.GetContainer(Owner, slotId)); + temp.Add((ContainerSlot) containerSystem.GetContainer(Owner, SharedBodySystem.OrganSlotContainerIdPrefix+slotId)); } return temp; diff --git a/Content.Shared/Body/Systems/SharedBodySystem.cs b/Content.Shared/Body/Systems/SharedBodySystem.cs index 602c8f015b6..431503c96e2 100644 --- a/Content.Shared/Body/Systems/SharedBodySystem.cs +++ b/Content.Shared/Body/Systems/SharedBodySystem.cs @@ -15,17 +15,17 @@ public abstract partial class SharedBodySystem : EntitySystem /// /// Container ID prefix for any body parts. /// - protected const string PartSlotContainerIdPrefix = "body_part_slot_"; + public const string PartSlotContainerIdPrefix = "body_part_slot_"; /// /// Container ID for the ContainerSlot on the body entity itself. /// - protected const string BodyRootContainerId = "body_root_part"; + public const string BodyRootContainerId = "body_root_part"; /// /// Container ID prefix for any body organs. /// - protected const string OrganSlotContainerIdPrefix = "body_organ_slot_"; + public const string OrganSlotContainerIdPrefix = "body_organ_slot_"; [Dependency] protected readonly IPrototypeManager Prototypes = default!; [Dependency] protected readonly DamageableSystem Damageable = default!; diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index e1a3988082d..1b4d7579c37 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -309,7 +309,7 @@ public static readonly CVarDef /// How many times per second artifacts when the round is over. /// If set to 0, they won't activate (on a timer) when the round ends. /// - public static readonly CVarDef ArtifactRoundEndTimer = CVarDef.Create("game.artifact_round_end_timer", 0.5f, CVar.NOTIFY | CVar.REPLICATED); + public static readonly CVarDef ArtifactRoundEndTimer = CVarDef.Create("game.artifact_round_end_timer", 0f, CVar.NOTIFY | CVar.REPLICATED); /// /// The time in seconds that the server should wait before restarting the round. @@ -1143,7 +1143,7 @@ public static readonly CVarDef /// See vote.enabled, but specific to preset votes /// public static readonly CVarDef VotePresetEnabled = - CVarDef.Create("vote.preset_enabled", true, CVar.SERVERONLY); + CVarDef.Create("vote.preset_enabled", false, CVar.SERVERONLY); /// /// See vote.enabled, but specific to map votes @@ -1230,7 +1230,7 @@ public static readonly CVarDef /// Whether the arrivals shuttle is enabled. /// public static readonly CVarDef ArrivalsShuttles = - CVarDef.Create("shuttle.arrivals", true, CVar.SERVERONLY); + CVarDef.Create("shuttle.arrivals", false, CVar.SERVERONLY); /// /// The map to use for the arrivals station. @@ -1270,7 +1270,7 @@ public static readonly CVarDef /// How long the emergency shuttle remains docked with the station, in seconds. /// public static readonly CVarDef EmergencyShuttleDockTime = - CVarDef.Create("shuttle.emergency_dock_time", 180f, CVar.SERVERONLY); + CVarDef.Create("shuttle.emergency_dock_time", 240f, CVar.SERVERONLY); /// /// How long after the console is authorized for the shuttle to early launch. @@ -1282,7 +1282,7 @@ public static readonly CVarDef /// The minimum time for the emergency shuttle to arrive at centcomm. /// public static readonly CVarDef EmergencyShuttleMinTransitTime = - CVarDef.Create("shuttle.emergency_transit_time_min", 60f, CVar.SERVERONLY); + CVarDef.Create("shuttle.emergency_transit_time_min", 90f, CVar.SERVERONLY); /// /// The maximum time for the emergency shuttle to arrive at centcomm. @@ -1307,14 +1307,14 @@ public static readonly CVarDef /// Time in minutes after round start to auto-call the shuttle. Set to zero to disable. /// public static readonly CVarDef EmergencyShuttleAutoCallTime = - CVarDef.Create("shuttle.auto_call_time", 90, CVar.SERVERONLY); + CVarDef.Create("shuttle.auto_call_time", 120, CVar.SERVERONLY); /// /// Time in minutes after the round was extended (by recalling the shuttle) to call /// the shuttle again. /// public static readonly CVarDef EmergencyShuttleAutoCallExtensionTime = - CVarDef.Create("shuttle.auto_call_extension_time", 45, CVar.SERVERONLY); + CVarDef.Create("shuttle.auto_call_extension_time", 30, CVar.SERVERONLY); /* * Crew Manifests @@ -1356,7 +1356,7 @@ public static readonly CVarDef /// Disabled: Cloning has full biomass cost and reclaimer can reclaim corpses with souls. (Playtested and balanced for MRP+). /// public static readonly CVarDef BiomassEasyMode = - CVarDef.Create("biomass.easy_mode", true, CVar.SERVERONLY); + CVarDef.Create("biomass.easy_mode", false, CVar.SERVERONLY); /* * Anomaly @@ -1457,13 +1457,13 @@ public static readonly CVarDef /// Allows flavor text (character descriptions) /// public static readonly CVarDef FlavorText = - CVarDef.Create("ic.flavor_text", false, CVar.SERVER | CVar.REPLICATED); + CVarDef.Create("ic.flavor_text", true, CVar.SERVER | CVar.REPLICATED); /// /// Adds a period at the end of a sentence if the sentence ends in a letter. /// public static readonly CVarDef ChatPunctuation = - CVarDef.Create("ic.punctuation", false, CVar.SERVER); + CVarDef.Create("ic.punctuation", true, CVar.SERVER); /// /// Enables automatically forcing IC name rules. Uppercases the first letter of the first and last words of the name @@ -1553,7 +1553,7 @@ public static readonly CVarDef /// Time that players have to wait before rules can be accepted. /// public static readonly CVarDef RulesWaitTime = - CVarDef.Create("rules.time", 45f, CVar.SERVER | CVar.REPLICATED); + CVarDef.Create("rules.time", 60f, CVar.SERVER | CVar.REPLICATED); /// /// Don't show rules to localhost/loopback interface. @@ -1615,7 +1615,7 @@ public static readonly CVarDef /// The time you must spend reading the rules, before the "Request" button is enabled /// public static readonly CVarDef GhostRoleTime = - CVarDef.Create("ghost.role_time", 3f, CVar.REPLICATED); + CVarDef.Create("ghost.role_time", 8f, CVar.REPLICATED); /* * Fire alarm diff --git a/Content.Shared/Clothing/Components/StealthClothingComponent.cs b/Content.Shared/Clothing/Components/StealthClothingComponent.cs index fe84fbe76c7..fedf48b36ed 100644 --- a/Content.Shared/Clothing/Components/StealthClothingComponent.cs +++ b/Content.Shared/Clothing/Components/StealthClothingComponent.cs @@ -30,7 +30,7 @@ public sealed partial class StealthClothingComponent : Component /// /// The action for enabling and disabling stealth. /// - [DataField("toggleActionEntity")] public EntityUid? ToggleActionEntity; + [DataField, AutoNetworkedField] public EntityUid? ToggleActionEntity; } /// diff --git a/Content.Shared/Clothing/EntitySystems/StealthClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/StealthClothingSystem.cs index 2fbaa6ea20b..4bf2f76ca34 100644 --- a/Content.Shared/Clothing/EntitySystems/StealthClothingSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/StealthClothingSystem.cs @@ -12,6 +12,7 @@ namespace Content.Shared.Clothing.EntitySystems; public sealed class StealthClothingSystem : EntitySystem { [Dependency] private readonly SharedStealthSystem _stealth = default!; + [Dependency] private readonly ActionContainerSystem _actionContainer = default!; public override void Initialize() { @@ -21,6 +22,13 @@ public override void Initialize() SubscribeLocalEvent(OnToggleStealth); SubscribeLocalEvent(OnHandleState); SubscribeLocalEvent(OnUnequipped); + SubscribeLocalEvent(OnMapInit); + } + + private void OnMapInit(EntityUid uid, StealthClothingComponent component, MapInitEvent args) + { + _actionContainer.EnsureAction(uid, ref component.ToggleActionEntity, component.ToggleAction); + Dirty(uid, component); } /// diff --git a/Content.Shared/Clothing/SharedMagbootsSystem.cs b/Content.Shared/Clothing/SharedMagbootsSystem.cs index 69b78499928..7a6da7c9928 100644 --- a/Content.Shared/Clothing/SharedMagbootsSystem.cs +++ b/Content.Shared/Clothing/SharedMagbootsSystem.cs @@ -15,6 +15,7 @@ public abstract class SharedMagbootsSystem : EntitySystem [Dependency] private readonly ClothingSystem _clothing = default!; [Dependency] private readonly InventorySystem _inventory = default!; [Dependency] private readonly SharedActionsSystem _sharedActions = default!; + [Dependency] private readonly SharedActionsSystem _actionContainer = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly SharedContainerSystem _sharedContainer = default!; [Dependency] private readonly SharedItemSystem _item = default!; @@ -27,6 +28,13 @@ public override void Initialize() SubscribeLocalEvent>(OnSlipAttempt); SubscribeLocalEvent(OnGetActions); SubscribeLocalEvent(OnToggleMagboots); + SubscribeLocalEvent(OnMapInit); + } + + private void OnMapInit(EntityUid uid, MagbootsComponent component, MapInitEvent args) + { + _actionContainer.AddAction(uid, ref component.ToggleActionEntity, component.ToggleAction); + Dirty(uid, component); } private void OnToggleMagboots(EntityUid uid, MagbootsComponent component, ToggleMagbootsEvent args) @@ -55,7 +63,7 @@ private void ToggleMagboots(EntityUid uid, MagbootsComponent magboots) _appearance.SetData(uid, ToggleVisuals.Toggled, magboots.On); OnChanged(uid, magboots); - Dirty(magboots); + Dirty(uid, magboots); } protected virtual void UpdateMagbootEffects(EntityUid parent, EntityUid uid, bool state, MagbootsComponent? component) { } diff --git a/Content.Shared/CombatMode/SharedCombatModeSystem.cs b/Content.Shared/CombatMode/SharedCombatModeSystem.cs index 66b31d01ffb..0b57840addd 100644 --- a/Content.Shared/CombatMode/SharedCombatModeSystem.cs +++ b/Content.Shared/CombatMode/SharedCombatModeSystem.cs @@ -27,6 +27,7 @@ public override void Initialize() private void OnMapInit(EntityUid uid, CombatModeComponent component, MapInitEvent args) { _actionsSystem.AddAction(uid, ref component.CombatToggleActionEntity, component.CombatToggleAction); + Dirty(uid, component); } private void OnShutdown(EntityUid uid, CombatModeComponent component, ComponentShutdown args) diff --git a/Content.Shared/Construction/ConstructionGraphEdge.cs b/Content.Shared/Construction/ConstructionGraphEdge.cs index 6ac75717430..5166da94207 100644 --- a/Content.Shared/Construction/ConstructionGraphEdge.cs +++ b/Content.Shared/Construction/ConstructionGraphEdge.cs @@ -1,4 +1,4 @@ -using Content.Shared.Construction.Steps; +using Content.Shared.Construction.Steps; namespace Content.Shared.Construction { diff --git a/Content.Shared/Construction/ConstructionGraphNode.cs b/Content.Shared/Construction/ConstructionGraphNode.cs index 265463c2431..fd70569e9da 100644 --- a/Content.Shared/Construction/ConstructionGraphNode.cs +++ b/Content.Shared/Construction/ConstructionGraphNode.cs @@ -1,4 +1,4 @@ -using System.Diagnostics.CodeAnalysis; +using System.Diagnostics.CodeAnalysis; using Content.Shared.Construction.NodeEntities; using Content.Shared.Construction.Serialization; using Robust.Shared.Prototypes; @@ -31,6 +31,20 @@ public sealed partial class ConstructionGraphNode [DataField("entity", customTypeSerializer: typeof(GraphNodeEntitySerializer), serverOnly:true)] public IGraphNodeEntity Entity { get; private set; } = new NullNodeEntity(); + /// + /// Ignore requests to change the entity if the entity's current prototype inherits from specified replacement + /// + /// + /// When this bool is true and a construction node specifies that the current entity should be replaced with a new entity, if the + /// current entity has an entity prototype which inherits from the replacement entity prototype, entity replacement will not occur. + /// E.g., if an entity with the 'AirlockCommand' prototype was to be replaced with a new entity that had the 'Airlock' prototype, + /// and 'DoNotReplaceInheritingEntities' was true, the entity would not be replaced because 'AirlockCommand' is derived from 'Airlock' + /// This will largely be used for construction graphs which have removeable upgrades, such as hacking protections for airlocks, + /// so that the upgrades can be removed and you can return to the last primary construction step without replacing the entity + /// + [DataField("doNotReplaceInheritingEntities")] + public bool DoNotReplaceInheritingEntities = false; + public ConstructionGraphEdge? GetEdge(string target) { foreach (var edge in _edges) diff --git a/Content.Shared/Damage/Components/PassiveDamageComponent.cs b/Content.Shared/Damage/Components/PassiveDamageComponent.cs new file mode 100644 index 00000000000..269960adac4 --- /dev/null +++ b/Content.Shared/Damage/Components/PassiveDamageComponent.cs @@ -0,0 +1,40 @@ +using Content.Shared.Mobs; +using Content.Shared.FixedPoint; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; +using Robust.Shared.GameStates; + +namespace Content.Shared.Damage.Components; + +/// +/// Passively damages the entity on a specified interval. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class PassiveDamageComponent : Component +{ + /// + /// The entitys' states that passive damage will apply in + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public List AllowedStates = new(); + + /// + /// Damage / Healing per interval dealt to the entity every interval + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public DamageSpecifier Damage = new(); + + /// + /// Delay between damage events in seconds + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float Interval = 1f; + + /// + /// The maximum HP the damage will be given to. If 0, disabled. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public FixedPoint2 DamageCap = 0; + + [DataField("nextDamage", customTypeSerializer: typeof(TimeOffsetSerializer)), ViewVariables(VVAccess.ReadWrite)] + public TimeSpan NextDamage = TimeSpan.Zero; +} diff --git a/Content.Shared/Damage/DamageModifierSet.cs b/Content.Shared/Damage/DamageModifierSet.cs index 2dfc38715e4..bd074ec30f8 100644 --- a/Content.Shared/Damage/DamageModifierSet.cs +++ b/Content.Shared/Damage/DamageModifierSet.cs @@ -5,11 +5,15 @@ namespace Content.Shared.Damage { /// - /// A set of coefficients or flat modifiers to damage types.. Can be applied to using using . This can be done several times as the /// is passed to it's final target. By default the receiving , will /// also apply it's own . /// + /// + /// The modifier will only ever be applied to damage that is being dealt. Healing is unmodified. + /// The modifier can also never convert damage into healing. + /// [DataDefinition] [Serializable, NetSerializable] [Virtual] diff --git a/Content.Shared/Damage/DamageSpecifier.cs b/Content.Shared/Damage/DamageSpecifier.cs index 903ee605f1a..b7181e297f6 100644 --- a/Content.Shared/Damage/DamageSpecifier.cs +++ b/Content.Shared/Damage/DamageSpecifier.cs @@ -37,16 +37,42 @@ public sealed partial class DamageSpecifier : IEquatable [IncludeDataField(customTypeSerializer: typeof(DamageSpecifierDictionarySerializer), readOnly: true)] public Dictionary DamageDict { get; set; } = new(); + [JsonIgnore] + [Obsolete("Use GetTotal()")] + public FixedPoint2 Total => GetTotal(); + /// - /// Sum of the damage values. + /// Returns a sum of the damage values. /// /// /// Note that this being zero does not mean this damage has no effect. Healing in one type may cancel damage - /// in another. For this purpose, you should instead use and then check the property. + /// in another. Consider using or instead. /// - [JsonIgnore] - public FixedPoint2 Total => DamageDict.Values.Sum(); + public FixedPoint2 GetTotal() + { + var total = FixedPoint2.Zero; + foreach (var value in DamageDict.Values) + { + total += value; + } + return total; + } + + /// + /// Returns true if the specifier contains any positive damage values. + /// Differs from as a damage specifier might contain entries with zeroes. + /// This also returns false if the specifier only contains negative values. + /// + public bool Any() + { + foreach (var value in DamageDict.Values) + { + if (value > FixedPoint2.Zero) + return true; + } + + return false; + } /// /// Whether this damage specifier has any entries. @@ -100,41 +126,39 @@ public DamageSpecifier(DamageGroupPrototype group, FixedPoint2 value) /// /// /// Only applies resistance to a damage type if it is dealing damage, not healing. + /// This will never convert damage into healing. /// public static DamageSpecifier ApplyModifierSet(DamageSpecifier damageSpec, DamageModifierSet modifierSet) { // Make a copy of the given data. Don't modify the one passed to this function. I did this before, and weapons became // duller as you hit walls. Neat, but not FixedPoint2ended. And confusing, when you realize your fists don't work no // more cause they're just bloody stumps. - DamageSpecifier newDamage = new(damageSpec); + DamageSpecifier newDamage = new(); + newDamage.DamageDict.EnsureCapacity(damageSpec.DamageDict.Count); - foreach (var entry in newDamage.DamageDict) + foreach (var (key, value) in damageSpec.DamageDict) { - if (entry.Value <= 0) continue; - - float newValue = entry.Value.Float(); + if (value == 0) + continue; - if (modifierSet.FlatReduction.TryGetValue(entry.Key, out var reduction)) + if (value < 0) { - newValue -= reduction; - if (newValue <= 0) - { - // flat reductions cannot heal you - newDamage.DamageDict[entry.Key] = FixedPoint2.Zero; - continue; - } + newDamage.DamageDict[key] = value; + continue; } - if (modifierSet.Coefficients.TryGetValue(entry.Key, out var coefficient)) - { - // negative coefficients **can** heal you. - newValue = newValue * coefficient; - } + float newValue = value.Float(); + + if (modifierSet.FlatReduction.TryGetValue(key, out var reduction)) + newValue -= reduction; + + if (modifierSet.Coefficients.TryGetValue(key, out var coefficient)) + newValue *= coefficient; - newDamage.DamageDict[entry.Key] = FixedPoint2.New(newValue); + if (newValue > 0) + newDamage.DamageDict[key] = FixedPoint2.New(newValue); } - newDamage.TrimZeros(); return newDamage; } @@ -146,13 +170,19 @@ public static DamageSpecifier ApplyModifierSet(DamageSpecifier damageSpec, Damag /// public static DamageSpecifier ApplyModifierSets(DamageSpecifier damageSpec, IEnumerable modifierSets) { - DamageSpecifier newDamage = new(damageSpec); + bool any = false; + DamageSpecifier newDamage = damageSpec; foreach (var set in modifierSets) { - // this is probably really inefficient. just don't call this in a hot path I guess. + // This creates a new damageSpec for each modifier when we really onlt need to create one. + // This is quite inefficient, but hopefully this shouldn't ever be called frequently. newDamage = ApplyModifierSet(newDamage, set); + any = true; } + if (!any) + newDamage = new DamageSpecifier(damageSpec); + return newDamage; } @@ -224,9 +254,10 @@ public void ExclusiveAdd(DamageSpecifier other) { foreach (var (type, value) in other.DamageDict) { - if (DamageDict.ContainsKey(type)) + // CollectionsMarshal my beloved. + if (DamageDict.TryGetValue(type, out var existing)) { - DamageDict[type] += value; + DamageDict[type] = existing + value; } } } @@ -262,18 +293,22 @@ public bool TryGetDamageInGroup(DamageGroupPrototype group, out FixedPoint2 tota /// total of each group. If no members of a group are present in this , the /// group is not included in the resulting dictionary. /// - public Dictionary GetDamagePerGroup(IPrototypeManager? protoManager = null) + public Dictionary GetDamagePerGroup(IPrototypeManager protoManager) + { + var dict = new Dictionary(); + GetDamagePerGroup(protoManager, dict); + return dict; + } + + /// + public void GetDamagePerGroup(IPrototypeManager protoManager, Dictionary dict) { - IoCManager.Resolve(ref protoManager); - var damageGroupDict = new Dictionary(); + dict.Clear(); foreach (var group in protoManager.EnumeratePrototypes()) { if (TryGetDamageInGroup(group, out var value)) - { - damageGroupDict.Add(group.ID, value); - } + dict.Add(group.ID, value); } - return damageGroupDict; } #region Operators @@ -372,6 +407,8 @@ public bool Equals(DamageSpecifier? other) return true; } + + public FixedPoint2 this[string key] => DamageDict[key]; } #endregion } diff --git a/Content.Shared/Damage/Systems/DamageableSystem.cs b/Content.Shared/Damage/Systems/DamageableSystem.cs index a3cdd14ef7b..8f6ccc20e62 100644 --- a/Content.Shared/Damage/Systems/DamageableSystem.cs +++ b/Content.Shared/Damage/Systems/DamageableSystem.cs @@ -20,6 +20,9 @@ public sealed class DamageableSystem : EntitySystem [Dependency] private readonly INetManager _netMan = default!; [Dependency] private readonly MobThresholdSystem _mobThreshold = default!; + private EntityQuery _appearanceQuery; + private EntityQuery _damageableQuery; + public override void Initialize() { SubscribeLocalEvent(DamageableInit); @@ -27,6 +30,9 @@ public override void Initialize() SubscribeLocalEvent(DamageableGetState); SubscribeLocalEvent(OnIrradiated); SubscribeLocalEvent(OnRejuvenate); + + _appearanceQuery = GetEntityQuery(); + _damageableQuery = GetEntityQuery(); } /// @@ -45,9 +51,9 @@ private void DamageableInit(EntityUid uid, DamageableComponent component, Compon component.Damage.DamageDict.TryAdd(type, FixedPoint2.Zero); } - foreach (var groupID in damageContainerPrototype.SupportedGroups) + foreach (var groupId in damageContainerPrototype.SupportedGroups) { - var group = _prototypeManager.Index(groupID); + var group = _prototypeManager.Index(groupId); foreach (var type in group.DamageTypes) { component.Damage.DamageDict.TryAdd(type, FixedPoint2.Zero); @@ -63,8 +69,8 @@ private void DamageableInit(EntityUid uid, DamageableComponent component, Compon } } - component.DamagePerGroup = component.Damage.GetDamagePerGroup(_prototypeManager); - component.TotalDamage = component.Damage.Total; + component.Damage.GetDamagePerGroup(_prototypeManager, component.DamagePerGroup); + component.TotalDamage = component.Damage.GetTotal(); } /// @@ -90,11 +96,11 @@ public void SetDamage(EntityUid uid, DamageableComponent damageable, DamageSpeci public void DamageChanged(EntityUid uid, DamageableComponent component, DamageSpecifier? damageDelta = null, bool interruptsDoAfters = true, EntityUid? origin = null) { - component.DamagePerGroup = component.Damage.GetDamagePerGroup(_prototypeManager); - component.TotalDamage = component.Damage.Total; - Dirty(component); + component.Damage.GetDamagePerGroup(_prototypeManager, component.DamagePerGroup); + component.TotalDamage = component.Damage.GetTotal(); + Dirty(uid, component); - if (EntityManager.TryGetComponent(uid, out var appearance) && damageDelta != null) + if (_appearanceQuery.TryGetComponent(uid, out var appearance) && damageDelta != null) { var data = new DamageVisualizerGroupData(component.DamagePerGroup.Keys.ToList()); _appearance.SetData(uid, DamageVisualizerKeys.DamageUpdateGroups, data, appearance); @@ -117,7 +123,7 @@ public void DamageChanged(EntityUid uid, DamageableComponent component, DamageSp public DamageSpecifier? TryChangeDamage(EntityUid? uid, DamageSpecifier damage, bool ignoreResistances = false, bool interruptsDoAfters = true, DamageableComponent? damageable = null, EntityUid? origin = null) { - if (!uid.HasValue || !Resolve(uid.Value, ref damageable, false)) + if (!uid.HasValue || !_damageableQuery.Resolve(uid.Value, ref damageable, false)) { // TODO BODY SYSTEM pass damage onto body system return null; @@ -140,6 +146,8 @@ public void DamageChanged(EntityUid uid, DamageableComponent component, DamageSp if (damageable.DamageModifierSetId != null && _prototypeManager.TryIndex(damageable.DamageModifierSetId, out var modifierSet)) { + // TODO DAMAGE PERFORMANCE + // use a local private field instead of creating a new dictionary here.. damage = DamageSpecifier.ApplyModifierSet(damage, modifierSet); } @@ -153,20 +161,30 @@ public void DamageChanged(EntityUid uid, DamageableComponent component, DamageSp } } - // Copy the current damage, for calculating the difference - DamageSpecifier oldDamage = new(damageable.Damage); + // TODO DAMAGE PERFORMANCE + // Consider using a local private field instead of creating a new dictionary here. + // Would need to check that nothing ever tries to cache the delta. + var delta = new DamageSpecifier(); + delta.DamageDict.EnsureCapacity(damage.DamageDict.Count); - damageable.Damage.ExclusiveAdd(damage); - damageable.Damage.ClampMin(FixedPoint2.Zero); + var dict = damageable.Damage.DamageDict; + foreach (var (type, value) in damage.DamageDict) + { + // CollectionsMarshal my beloved. + if (!dict.TryGetValue(type, out var oldValue)) + continue; - var delta = damageable.Damage - oldDamage; - delta.TrimZeros(); + var newValue = FixedPoint2.Max(FixedPoint2.Zero, oldValue + value); + if (newValue == oldValue) + continue; - if (!delta.Empty) - { - DamageChanged(uid.Value, damageable, delta, interruptsDoAfters, origin); + dict[type] = newValue; + delta.DamageDict[type] = newValue - oldValue; } + if (delta.DamageDict.Count > 0) + DamageChanged(uid.Value, damageable, delta, interruptsDoAfters, origin); + return delta; } @@ -196,12 +214,11 @@ public void SetAllDamage(EntityUid uid, DamageableComponent component, FixedPoin public void SetDamageModifierSetId(EntityUid uid, string damageModifierSetId, DamageableComponent? comp = null) { - if (!Resolve(uid, ref comp)) + if (!_damageableQuery.Resolve(uid, ref comp)) return; comp.DamageModifierSetId = damageModifierSetId; - - Dirty(comp); + Dirty(uid, comp); } private void DamageableGetState(EntityUid uid, DamageableComponent component, ref ComponentGetState args) @@ -265,7 +282,7 @@ private void DamageableHandleState(EntityUid uid, DamageableComponent component, /// Raised before damage is done, so stuff can cancel it if necessary. /// [ByRefEvent] - public record struct BeforeDamageChangedEvent(DamageSpecifier Delta, EntityUid? Origin = null, bool Cancelled = false); + public record struct BeforeDamageChangedEvent(DamageSpecifier Damage, EntityUid? Origin = null, bool Cancelled = false); /// /// Raised on an entity when damage is about to be dealt, @@ -312,14 +329,14 @@ public sealed class DamageChangedEvent : EntityEventArgs /// /// Was any of the damage change dealing damage, or was it all healing? /// - public readonly bool DamageIncreased = false; + public readonly bool DamageIncreased; /// /// Does this event interrupt DoAfters? /// Note: As provided in the constructor, this *does not* account for DamageIncreased. /// As written into the event, this *does* account for DamageIncreased. /// - public readonly bool InterruptsDoAfters = false; + public readonly bool InterruptsDoAfters; /// /// Contains the entity which caused the change in damage, if any was responsible. diff --git a/Content.Shared/Damage/Systems/PassiveDamageSystem.cs b/Content.Shared/Damage/Systems/PassiveDamageSystem.cs new file mode 100644 index 00000000000..5a37d6a6e6c --- /dev/null +++ b/Content.Shared/Damage/Systems/PassiveDamageSystem.cs @@ -0,0 +1,55 @@ +using Content.Shared.Damage.Components; +using Content.Shared.Mobs.Systems; +using Content.Shared.Mobs.Components; +using Content.Shared.FixedPoint; +using Robust.Shared.Timing; + +namespace Content.Shared.Damage; + +public sealed class PassiveDamageSystem : EntitySystem +{ + [Dependency] private readonly DamageableSystem _damageable = default!; + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly MobStateSystem _mobState = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnPendingMapInit); + } + + private void OnPendingMapInit(EntityUid uid, PassiveDamageComponent component, MapInitEvent args) + { + component.NextDamage = _timing.CurTime + TimeSpan.FromSeconds(1f); + } + + // Every tick, attempt to damage entities + public override void Update(float frameTime) + { + base.Update(frameTime); + var curTime = _timing.CurTime; + + // Go through every entity with the component + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var comp, out var damage, out var mobState)) + { + // Make sure they're up for a damage tick + if (comp.NextDamage > curTime) + continue; + + if (comp.DamageCap != 0 && damage.TotalDamage >= comp.DamageCap) + continue; + + // Set the next time they can take damage + comp.NextDamage = curTime + TimeSpan.FromSeconds(1f); + + // Damage them + foreach (var allowedState in comp.AllowedStates) + { + if(allowedState == mobState.CurrentState) + _damageable.TryChangeDamage(uid, comp.Damage, true, false, damage); + } + } + } +} diff --git a/Content.Shared/Disposal/Components/SharedDisposalUnitComponent.cs b/Content.Shared/Disposal/Components/SharedDisposalUnitComponent.cs index 4b867c639f1..e1b78de5cd3 100644 --- a/Content.Shared/Disposal/Components/SharedDisposalUnitComponent.cs +++ b/Content.Shared/Disposal/Components/SharedDisposalUnitComponent.cs @@ -81,7 +81,7 @@ public abstract partial class SharedDisposalUnitComponent : Component /// Delay from trying to shove someone else into disposals. /// [ViewVariables(VVAccess.ReadWrite)] - public float DraggedEntryDelay = 0.5f; + public float DraggedEntryDelay = 2.0f; /// /// Container of entities inside this disposal unit. diff --git a/Content.Shared/Doors/Systems/SharedDoorBoltSystem.cs b/Content.Shared/Doors/Systems/SharedDoorBoltSystem.cs index 1deb6e3f7c0..a950fe6930a 100644 --- a/Content.Shared/Doors/Systems/SharedDoorBoltSystem.cs +++ b/Content.Shared/Doors/Systems/SharedDoorBoltSystem.cs @@ -25,7 +25,7 @@ private void OnDoorPry(EntityUid uid, DoorBoltComponent component, ref BeforePry { if (component.BoltsDown && !args.Force) { - Popup.PopupClient(Loc.GetString("airlock-component-cannot-pry-is-bolted-message"), uid, args.User); + Popup.PopupEntity(Loc.GetString("airlock-component-cannot-pry-is-bolted-message"), uid, args.User); args.Cancelled = true; } } diff --git a/Content.Shared/Implants/SharedSubdermalImplantSystem.cs b/Content.Shared/Implants/SharedSubdermalImplantSystem.cs index 55db0272256..2d68f1cdaaa 100644 --- a/Content.Shared/Implants/SharedSubdermalImplantSystem.cs +++ b/Content.Shared/Implants/SharedSubdermalImplantSystem.cs @@ -1,10 +1,11 @@ -using System.Linq; +using System.Linq; using Content.Shared.Actions; using Content.Shared.Implants.Components; using Content.Shared.Interaction; using Content.Shared.Interaction.Events; using Content.Shared.Mobs; using Content.Shared.Tag; +using JetBrains.Annotations; using Robust.Shared.Containers; using Robust.Shared.Network; @@ -52,6 +53,9 @@ private void OnInsert(EntityUid uid, SubdermalImplantComponent component, EntGot } } } + + var ev = new ImplantImplantedEvent(uid, component.ImplantedEntity.Value); + RaiseLocalEvent(uid, ref ev); } private void OnRemoveAttempt(EntityUid uid, SubdermalImplantComponent component, ContainerGettingRemovedAttemptEvent args) @@ -128,7 +132,7 @@ public void ForceImplant(EntityUid target, EntityUid implant, SubdermalImplantCo /// /// the implanted entity /// the implant - /// the implant component + [PublicAPI] public void ForceRemove(EntityUid target, EntityUid implant) { if (!TryComp(target, out var implanted)) @@ -144,6 +148,7 @@ public void ForceRemove(EntityUid target, EntityUid implant) /// Removes and deletes implants by force /// /// The entity to have implants removed + [PublicAPI] public void WipeImplants(EntityUid target) { if (!TryComp(target, out var implanted)) @@ -180,3 +185,23 @@ public ImplantRelayEvent(T ev) Event = ev; } } + +/// +/// Event that is raised whenever someone is implanted with any given implant. +/// Raised on the the implant entity. +/// +/// +/// implant implant implant implant +/// +[ByRefEvent] +public readonly struct ImplantImplantedEvent +{ + public readonly EntityUid Implant; + public readonly EntityUid? Implanted; + + public ImplantImplantedEvent(EntityUid implant, EntityUid? implanted) + { + Implant = implant; + Implanted = implanted; + } +} diff --git a/Content.Shared/Light/Components/HandheldLightComponent.cs b/Content.Shared/Light/Components/HandheldLightComponent.cs index 9e3cad7552c..6c70a82f93a 100644 --- a/Content.Shared/Light/Components/HandheldLightComponent.cs +++ b/Content.Shared/Light/Components/HandheldLightComponent.cs @@ -48,6 +48,9 @@ public sealed partial class HandheldLightComponent : Component [DataField("toggleActionEntity")] public EntityUid? ToggleActionEntity; + [DataField] + public EntityUid? SelfToggleActionEntity; + public const int StatusLevels = 6; /// diff --git a/Content.Shared/Mech/EntitySystems/SharedMechSystem.cs b/Content.Shared/Mech/EntitySystems/SharedMechSystem.cs index 1cb08e1a253..2af5ac6e0c3 100644 --- a/Content.Shared/Mech/EntitySystems/SharedMechSystem.cs +++ b/Content.Shared/Mech/EntitySystems/SharedMechSystem.cs @@ -1,6 +1,5 @@ using System.Linq; using Content.Shared.Access.Components; -using Content.Shared.Access.Systems; using Content.Shared.ActionBlocker; using Content.Shared.Actions; using Content.Shared.Destructible; @@ -30,7 +29,6 @@ public abstract class SharedMechSystem : EntitySystem [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly INetManager _net = default!; [Dependency] private readonly ActionBlockerSystem _actionBlocker = default!; - [Dependency] private readonly AccessReaderSystem _access = default!; [Dependency] private readonly SharedActionsSystem _actions = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly SharedContainerSystem _container = default!; @@ -105,8 +103,6 @@ private void OnGetAdditionalAccess(EntityUid uid, MechComponent component, ref G return; args.Entities.Add(pilot.Value); - _access.FindAccessItemsInventory(pilot.Value, out var items); - args.Entities.UnionWith(items); } private void SetupUser(EntityUid mech, EntityUid pilot, MechComponent? component = null) diff --git a/Content.Shared/Mind/MindComponent.cs b/Content.Shared/Mind/MindComponent.cs index d6e30130e7d..3ea92c3ce72 100644 --- a/Content.Shared/Mind/MindComponent.cs +++ b/Content.Shared/Mind/MindComponent.cs @@ -65,8 +65,7 @@ public sealed partial class MindComponent : Component /// The component currently owned by this mind. /// Can be null. /// - [ViewVariables] - public MindContainerComponent? OwnedComponent { get; internal set; } + [ViewVariables] public MindContainerComponent? OwnedComponent; /// /// The entity currently owned by this mind. diff --git a/Content.Shared/Mind/SharedMindSystem.cs b/Content.Shared/Mind/SharedMindSystem.cs index 91f68b02454..b7cd30e9621 100644 --- a/Content.Shared/Mind/SharedMindSystem.cs +++ b/Content.Shared/Mind/SharedMindSystem.cs @@ -8,13 +8,11 @@ using Content.Shared.Mind.Components; using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; -using Content.Shared.Objectives; using Content.Shared.Objectives.Systems; using Content.Shared.Players; using Robust.Shared.Map; using Robust.Shared.Network; using Robust.Shared.Players; -using Robust.Shared.Prototypes; using Robust.Shared.Utility; namespace Content.Shared.Mind; @@ -25,6 +23,7 @@ public abstract class SharedMindSystem : EntitySystem [Dependency] private readonly MobStateSystem _mobState = default!; [Dependency] private readonly SharedObjectivesSystem _objectives = default!; [Dependency] private readonly SharedPlayerSystem _player = default!; + [Dependency] private readonly MetaDataSystem _metadata = default!; // This is dictionary is required to track the minds of disconnected players that may have had their entity deleted. protected readonly Dictionary UserMinds = new(); @@ -132,12 +131,11 @@ private void OnSuicide(EntityUid uid, MindContainerComponent component, SuicideE public EntityUid CreateMind(NetUserId? userId, string? name = null) { var mindId = Spawn(null, MapCoordinates.Nullspace); + _metadata.SetEntityName(mindId, name == null ? "mind" : $"mind ({name})"); var mind = EnsureComp(mindId); mind.CharacterName = name; SetUserId(mindId, userId, mind); - Dirty(mindId, MetaData(mindId)); - return mindId; } @@ -343,7 +341,14 @@ public bool TryGetMind( { mindId = default; mind = null; - return _player.ContentData(player) is { } data && TryGetMind(data, out mindId, out mind); + if (_player.ContentData(player) is not { } data) + return false; + + if (TryGetMind(data, out mindId, out mind)) + return true; + + DebugTools.AssertNull(data.Mind); + return false; } /// diff --git a/Content.Shared/Mindshield/Components/MindShieldComponent.cs b/Content.Shared/Mindshield/Components/MindShieldComponent.cs new file mode 100644 index 00000000000..1cc21d14bd6 --- /dev/null +++ b/Content.Shared/Mindshield/Components/MindShieldComponent.cs @@ -0,0 +1,12 @@ +using Content.Shared.Revolutionary; +using Robust.Shared.GameStates; + +namespace Content.Shared.Mindshield.Components; + +/// +/// If a player has a Mindshield they will get this component to prevent conversion. +/// +[RegisterComponent, NetworkedComponent, Access(typeof(SharedRevolutionarySystem))] +public sealed partial class MindShieldComponent : Component +{ +} diff --git a/Content.Server/Morgue/Components/EntityStorageLayingDownOverrideComponent.cs b/Content.Shared/Morgue/Components/EntityStorageLayingDownOverrideComponent.cs similarity index 70% rename from Content.Server/Morgue/Components/EntityStorageLayingDownOverrideComponent.cs rename to Content.Shared/Morgue/Components/EntityStorageLayingDownOverrideComponent.cs index 9726094497e..6b15a0cdb69 100644 --- a/Content.Server/Morgue/Components/EntityStorageLayingDownOverrideComponent.cs +++ b/Content.Shared/Morgue/Components/EntityStorageLayingDownOverrideComponent.cs @@ -1,7 +1,6 @@ -namespace Content.Server.Morgue.Components; +namespace Content.Shared.Morgue.Components; [RegisterComponent] public sealed partial class EntityStorageLayingDownOverrideComponent : Component { - } diff --git a/Content.Server/Morgue/EntityStorageLayingDownOverrideSystem.cs b/Content.Shared/Morgue/EntityStorageLayingDownOverrideSystem.cs similarity index 91% rename from Content.Server/Morgue/EntityStorageLayingDownOverrideSystem.cs rename to Content.Shared/Morgue/EntityStorageLayingDownOverrideSystem.cs index 3bafc0ea8cc..9341168ba3e 100644 --- a/Content.Server/Morgue/EntityStorageLayingDownOverrideSystem.cs +++ b/Content.Shared/Morgue/EntityStorageLayingDownOverrideSystem.cs @@ -1,9 +1,9 @@ -using Content.Server.Morgue.Components; using Content.Shared.Body.Components; +using Content.Shared.Morgue.Components; using Content.Shared.Standing; using Content.Shared.Storage.Components; -namespace Content.Server.Morgue; +namespace Content.Shared.Morgue; public sealed class EntityStorageLayingDownOverrideSystem : EntitySystem { diff --git a/Content.Shared/Movement/Components/JetpackComponent.cs b/Content.Shared/Movement/Components/JetpackComponent.cs index 0215e5a861f..336f4a353c2 100644 --- a/Content.Shared/Movement/Components/JetpackComponent.cs +++ b/Content.Shared/Movement/Components/JetpackComponent.cs @@ -4,7 +4,7 @@ namespace Content.Shared.Movement.Components; -[RegisterComponent, NetworkedComponent] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class JetpackComponent : Component { [ViewVariables(VVAccess.ReadWrite), DataField("moleUsage")] @@ -12,7 +12,7 @@ public sealed partial class JetpackComponent : Component [DataField] public EntProtoId ToggleAction = "ActionToggleJetpack"; - [DataField("toggleActionEntity")] public EntityUid? ToggleActionEntity; + [DataField, AutoNetworkedField] public EntityUid? ToggleActionEntity; [ViewVariables(VVAccess.ReadWrite), DataField("acceleration")] public float Acceleration = 1f; diff --git a/Content.Shared/Movement/Systems/SharedJetpackSystem.cs b/Content.Shared/Movement/Systems/SharedJetpackSystem.cs index f624f6c4ce4..abe12b79d1a 100644 --- a/Content.Shared/Movement/Systems/SharedJetpackSystem.cs +++ b/Content.Shared/Movement/Systems/SharedJetpackSystem.cs @@ -19,6 +19,7 @@ public abstract class SharedJetpackSystem : EntitySystem [Dependency] private readonly SharedMoverController _mover = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly SharedPhysicsSystem _physics = default!; + [Dependency] private readonly ActionContainerSystem _actionContainer = default!; public override void Initialize() { @@ -32,6 +33,13 @@ public override void Initialize() SubscribeLocalEvent(OnJetpackUserEntParentChanged); SubscribeLocalEvent(OnJetpackUserGravityChanged); + SubscribeLocalEvent(OnMapInit); + } + + private void OnMapInit(EntityUid uid, JetpackComponent component, MapInitEvent args) + { + _actionContainer.EnsureAction(uid, ref component.ToggleActionEntity, component.ToggleAction); + Dirty(uid, component); } private void OnJetpackCanWeightlessMove(EntityUid uid, JetpackComponent component, ref CanWeightlessMoveEvent args) diff --git a/Content.Shared/Ninja/Components/DashAbilityComponent.cs b/Content.Shared/Ninja/Components/DashAbilityComponent.cs index 85e0963af1e..ba4060c7035 100644 --- a/Content.Shared/Ninja/Components/DashAbilityComponent.cs +++ b/Content.Shared/Ninja/Components/DashAbilityComponent.cs @@ -3,21 +3,22 @@ using Robust.Shared.Audio; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Shared.Ninja.Components; /// /// Adds an action to dash, teleport to clicked position, when this item is held. /// -[RegisterComponent, NetworkedComponent, Access(typeof(DashAbilitySystem))] +[RegisterComponent, NetworkedComponent, Access(typeof(DashAbilitySystem)), AutoGenerateComponentState] public sealed partial class DashAbilityComponent : Component { /// /// The action id for dashing. /// - [DataField("dashAction", required: true, customTypeSerializer: typeof(PrototypeIdSerializer)), ViewVariables(VVAccess.ReadWrite)] - public string DashAction = string.Empty; + [DataField] + public EntProtoId DashAction = "ActionEnergyKatanaDash"; - [DataField("dashActionEntity")] + [DataField, AutoNetworkedField] public EntityUid? DashActionEntity; /// diff --git a/Content.Shared/Ninja/Components/NinjaGlovesComponent.cs b/Content.Shared/Ninja/Components/NinjaGlovesComponent.cs index b104312b204..7b57926330b 100644 --- a/Content.Shared/Ninja/Components/NinjaGlovesComponent.cs +++ b/Content.Shared/Ninja/Components/NinjaGlovesComponent.cs @@ -31,7 +31,7 @@ public sealed partial class NinjaGlovesComponent : Component [DataField("toggleAction", customTypeSerializer: typeof(PrototypeIdSerializer))] public string ToggleAction = "ActionToggleNinjaGloves"; - [DataField("toggleActionEntity")] + [DataField, AutoNetworkedField] public EntityUid? ToggleActionEntity; /// diff --git a/Content.Shared/Ninja/Components/NinjaSuitComponent.cs b/Content.Shared/Ninja/Components/NinjaSuitComponent.cs index 816cc9d731b..73de2526907 100644 --- a/Content.Shared/Ninja/Components/NinjaSuitComponent.cs +++ b/Content.Shared/Ninja/Components/NinjaSuitComponent.cs @@ -47,7 +47,7 @@ public sealed partial class NinjaSuitComponent : Component [DataField("createThrowingStarAction", customTypeSerializer: typeof(PrototypeIdSerializer))] public string CreateThrowingStarAction = "ActionCreateThrowingStar"; - [DataField("createThrowingStarActionEntity")] + [DataField, AutoNetworkedField] public EntityUid? CreateThrowingStarActionEntity; /// @@ -68,7 +68,7 @@ public sealed partial class NinjaSuitComponent : Component [DataField("recallKatanaAction", customTypeSerializer: typeof(PrototypeIdSerializer))] public string RecallKatanaAction = "ActionRecallKatana"; - [DataField("recallKatanaActionEntity")] + [DataField, AutoNetworkedField] public EntityUid? RecallKatanaActionEntity; /// @@ -84,7 +84,7 @@ public sealed partial class NinjaSuitComponent : Component [DataField("empAction", customTypeSerializer: typeof(PrototypeIdSerializer))] public string EmpAction = "ActionNinjaEmp"; - [DataField("empActionEntity")] + [DataField, AutoNetworkedField] public EntityUid? EmpActionEntity; /// diff --git a/Content.Shared/Ninja/Systems/DashAbilitySystem.cs b/Content.Shared/Ninja/Systems/DashAbilitySystem.cs index bd6320de68a..d376d05724b 100644 --- a/Content.Shared/Ninja/Systems/DashAbilitySystem.cs +++ b/Content.Shared/Ninja/Systems/DashAbilitySystem.cs @@ -6,8 +6,6 @@ using Content.Shared.Ninja.Components; using Content.Shared.Physics; using Content.Shared.Popups; -using Robust.Shared.Audio; -using Robust.Shared.GameObjects; using Robust.Shared.Timing; namespace Content.Shared.Ninja.Systems; @@ -24,6 +22,7 @@ public sealed class DashAbilitySystem : EntitySystem [Dependency] private readonly SharedInteractionSystem _interaction = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; + [Dependency] private readonly ActionContainerSystem _actionContainer = default!; public override void Initialize() { @@ -31,6 +30,13 @@ public override void Initialize() SubscribeLocalEvent(OnGetItemActions); SubscribeLocalEvent(OnDash); + SubscribeLocalEvent(OnMapInit); + } + + private void OnMapInit(EntityUid uid, DashAbilityComponent component, MapInitEvent args) + { + _actionContainer.EnsureAction(uid, ref component.DashActionEntity, component.DashAction); + Dirty(uid, component); } private void OnGetItemActions(EntityUid uid, DashAbilityComponent comp, GetItemActionsEvent args) diff --git a/Content.Shared/Ninja/Systems/SharedNinjaGlovesSystem.cs b/Content.Shared/Ninja/Systems/SharedNinjaGlovesSystem.cs index 45c97fd1aa7..639d3f13467 100644 --- a/Content.Shared/Ninja/Systems/SharedNinjaGlovesSystem.cs +++ b/Content.Shared/Ninja/Systems/SharedNinjaGlovesSystem.cs @@ -1,11 +1,8 @@ using Content.Shared.Actions; using Content.Shared.CombatMode; using Content.Shared.Communications; -using Content.Shared.Doors.Components; -using Content.Shared.DoAfter; using Content.Shared.Examine; using Content.Shared.Hands.Components; -using Content.Shared.IdentityManagement; using Content.Shared.Interaction; using Content.Shared.Inventory.Events; using Content.Shared.Ninja.Components; @@ -14,7 +11,6 @@ using Content.Shared.Timing; using Content.Shared.Toggleable; using Robust.Shared.Timing; -using System.Diagnostics.CodeAnalysis; namespace Content.Shared.Ninja.Systems; @@ -26,11 +22,10 @@ public abstract class SharedNinjaGlovesSystem : EntitySystem [Dependency] private readonly IGameTiming _timing = default!; [Dependency] protected readonly SharedAppearanceSystem Appearance = default!; [Dependency] private readonly SharedCombatModeSystem _combatMode = default!; - [Dependency] protected readonly SharedDoAfterSystem _doAfter = default!; [Dependency] protected readonly SharedInteractionSystem Interaction = default!; - [Dependency] private readonly SharedSpaceNinjaSystem _ninja = default!; [Dependency] protected readonly SharedPopupSystem Popup = default!; [Dependency] private readonly UseDelaySystem _useDelay = default!; + [Dependency] private readonly ActionContainerSystem _actionContainer = default!; public override void Initialize() { @@ -39,6 +34,13 @@ public override void Initialize() SubscribeLocalEvent(OnGetItemActions); SubscribeLocalEvent(OnExamined); SubscribeLocalEvent(OnUnequipped); + SubscribeLocalEvent(OnMapInit); + } + + private void OnMapInit(EntityUid uid, NinjaGlovesComponent component, MapInitEvent args) + { + _actionContainer.EnsureAction(uid, ref component.ToggleActionEntity, component.ToggleAction); + Dirty(uid, component); } /// diff --git a/Content.Shared/Ninja/Systems/SharedNinjaSuitSystem.cs b/Content.Shared/Ninja/Systems/SharedNinjaSuitSystem.cs index 83fcba4ac60..6bcd3432a91 100644 --- a/Content.Shared/Ninja/Systems/SharedNinjaSuitSystem.cs +++ b/Content.Shared/Ninja/Systems/SharedNinjaSuitSystem.cs @@ -4,10 +4,6 @@ using Content.Shared.Inventory.Events; using Content.Shared.Ninja.Components; using Content.Shared.Timing; -using Robust.Shared.Audio; -using Robust.Shared.Network; -using Robust.Shared.Prototypes; -using Robust.Shared.Serialization; namespace Content.Shared.Ninja.Systems; @@ -21,6 +17,7 @@ public abstract class SharedNinjaSuitSystem : EntitySystem [Dependency] protected readonly SharedSpaceNinjaSystem _ninja = default!; [Dependency] protected readonly StealthClothingSystem StealthClothing = default!; [Dependency] protected readonly UseDelaySystem UseDelay = default!; + [Dependency] private readonly ActionContainerSystem _actionContainer = default!; public override void Initialize() { @@ -30,6 +27,15 @@ public override void Initialize() SubscribeLocalEvent(OnGetItemActions); SubscribeLocalEvent(OnAddStealthAction); SubscribeLocalEvent(OnUnequipped); + SubscribeLocalEvent(OnMapInit); + } + + private void OnMapInit(EntityUid uid, NinjaSuitComponent component, MapInitEvent args) + { + _actionContainer.EnsureAction(uid, ref component.RecallKatanaActionEntity, component.RecallKatanaAction); + _actionContainer.EnsureAction(uid, ref component.CreateThrowingStarActionEntity, component.CreateThrowingStarAction); + _actionContainer.EnsureAction(uid, ref component.EmpActionEntity, component.EmpAction); + Dirty(uid, component); } /// diff --git a/Content.Shared/Nutrition/EntitySystems/HungerSystem.cs b/Content.Shared/Nutrition/EntitySystems/HungerSystem.cs index 8baee3e3799..9c096035104 100644 --- a/Content.Shared/Nutrition/EntitySystems/HungerSystem.cs +++ b/Content.Shared/Nutrition/EntitySystems/HungerSystem.cs @@ -173,6 +173,17 @@ public HungerThreshold GetHungerThreshold(HungerComponent component, float? food return result; } + /// + /// A check that returns if the entity is below a hunger threshold. + /// + public bool IsHungerBelowState(EntityUid uid, HungerThreshold threshold, float? food = null, HungerComponent? comp = null) + { + if (!Resolve(uid, ref comp)) + return false; // It's never going to go hungry, so it's probably fine to assume that it's not... you know, hungry. + + return GetHungerThreshold(comp, food) < threshold; + } + private bool GetMovementThreshold(HungerThreshold threshold) { switch (threshold) diff --git a/Content.Shared/Revolutionary/Components/AlwaysRevolutionaryConvertibleComponent.cs b/Content.Shared/Revolutionary/Components/AlwaysRevolutionaryConvertibleComponent.cs new file mode 100644 index 00000000000..694c6d2f064 --- /dev/null +++ b/Content.Shared/Revolutionary/Components/AlwaysRevolutionaryConvertibleComponent.cs @@ -0,0 +1,12 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Revolutionary.Components; + +/// +/// Component used for allowing non-humans to be converted. (Mainly monkeys) +/// +[RegisterComponent, NetworkedComponent, Access(typeof(SharedRevolutionarySystem))] +public sealed partial class AlwaysRevolutionaryConvertibleComponent : Component +{ + +} diff --git a/Content.Shared/Revolutionary/Components/HeadRevolutionaryComponent.cs b/Content.Shared/Revolutionary/Components/HeadRevolutionaryComponent.cs new file mode 100644 index 00000000000..48d7c230975 --- /dev/null +++ b/Content.Shared/Revolutionary/Components/HeadRevolutionaryComponent.cs @@ -0,0 +1,24 @@ +using Robust.Shared.GameStates; +using Content.Shared.StatusIcon; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Revolutionary.Components; + +/// +/// Component used for marking a Head Rev for conversion and winning/losing. +/// +[RegisterComponent, NetworkedComponent, Access(typeof(SharedRevolutionarySystem))] +public sealed partial class HeadRevolutionaryComponent : Component +{ + /// + /// The status icon corresponding to the head revolutionary. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public ProtoId HeadRevStatusIcon = "HeadRevolutionaryFaction"; + + /// + /// How long the stun will last after the user is converted. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public TimeSpan StunTime = TimeSpan.FromSeconds(3); +} diff --git a/Content.Shared/Revolutionary/Components/RevolutionaryComponent.cs b/Content.Shared/Revolutionary/Components/RevolutionaryComponent.cs new file mode 100644 index 00000000000..e55c87786b2 --- /dev/null +++ b/Content.Shared/Revolutionary/Components/RevolutionaryComponent.cs @@ -0,0 +1,18 @@ +using Robust.Shared.GameStates; +using Content.Shared.StatusIcon; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Revolutionary.Components; + +/// +/// Used for marking regular revs as well as storing icon prototypes so you can see fellow revs. +/// +[RegisterComponent, NetworkedComponent, Access(typeof(SharedRevolutionarySystem))] +public sealed partial class RevolutionaryComponent : Component +{ + /// + /// The status icon prototype displayed for revolutionaries + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public ProtoId RevStatusIcon = "RevolutionaryFaction"; +} diff --git a/Content.Shared/Revolutionary/SharedRevolutionarySystem.cs b/Content.Shared/Revolutionary/SharedRevolutionarySystem.cs new file mode 100644 index 00000000000..e2a8192716c --- /dev/null +++ b/Content.Shared/Revolutionary/SharedRevolutionarySystem.cs @@ -0,0 +1,38 @@ +using Content.Shared.Revolutionary.Components; +using Content.Shared.IdentityManagement; +using Content.Shared.Mindshield.Components; +using Content.Shared.Popups; +using Content.Shared.Stunnable; + +namespace Content.Shared.Revolutionary; + +public sealed class SharedRevolutionarySystem : EntitySystem +{ + [Dependency] private readonly SharedPopupSystem _popupSystem = default!; + [Dependency] private readonly SharedStunSystem _sharedStun = default!; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(MindShieldImplanted); + } + + /// + /// When the mindshield is implanted in the rev it will popup saying they were deconverted. In Head Revs it will remove the mindshield component. + /// + private void MindShieldImplanted(EntityUid uid, MindShieldComponent comp, MapInitEvent init) + { + if (HasComp(uid) && !HasComp(uid)) + { + var stunTime = TimeSpan.FromSeconds(4); + var name = Identity.Entity(uid, EntityManager); + RemComp(uid); + _sharedStun.TryParalyze(uid, stunTime, true); + _popupSystem.PopupEntity(Loc.GetString("rev-break-control", ("name", name)), uid); + } + else if (HasComp(uid)) + { + RemCompDeferred(uid); + } + } +} diff --git a/Content.Shared/Sericulture/SericultureComponent.cs b/Content.Shared/Sericulture/SericultureComponent.cs new file mode 100644 index 00000000000..c98a2171b0d --- /dev/null +++ b/Content.Shared/Sericulture/SericultureComponent.cs @@ -0,0 +1,66 @@ +using Content.Shared.Nutrition.Components; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Shared.Sericulture; + +/// +/// Should be applied to any mob that you want to be able to produce any material with an action and the cost of hunger. +/// TODO: Probably adjust this to utilize organs? +/// +[RegisterComponent, NetworkedComponent, Access(typeof(SharedSericultureSystem))] +public sealed partial class SericultureComponent : Component +{ + /// + /// The text that pops up whenever sericulture fails for not having enough hunger. + /// + [DataField("popupText")] + [ViewVariables(VVAccess.ReadWrite)] + [AutoNetworkedField] + public string PopupText = "sericulture-failure-hunger"; + + /// + /// What will be produced at the end of the action. + /// + [DataField(required: true)] + [ViewVariables(VVAccess.ReadWrite)] + [AutoNetworkedField] + public EntProtoId EntityProduced; + + /// + /// The entity needed to actually preform sericulture. This will be granted (and removed) upon the entity's creation. + /// + [DataField(required: true)] + [ViewVariables(VVAccess.ReadWrite)] + [AutoNetworkedField] + public EntProtoId Action; + + [AutoNetworkedField] + [DataField("actionEntity")] + public EntityUid? ActionEntity; + + /// + /// How long will it take to make. + /// + [DataField("productionLength")] + [ViewVariables(VVAccess.ReadWrite)] + [AutoNetworkedField] + public float ProductionLength = 3f; + + /// + /// This will subtract (not add, don't get this mixed up) from the current hunger of the mob doing sericulture. + /// + [DataField("hungerCost")] + [ViewVariables(VVAccess.ReadWrite)] + [AutoNetworkedField] + public float HungerCost = 5f; + + /// + /// The lowest hunger threshold that this mob can be in before it's allowed to spin silk. + /// + [DataField("minHungerThreshold")] + [ViewVariables(VVAccess.ReadWrite)] + [AutoNetworkedField] + public HungerThreshold MinHungerThreshold = HungerThreshold.Okay; +} diff --git a/Content.Shared/Sericulture/SericultureEvents.cs b/Content.Shared/Sericulture/SericultureEvents.cs deleted file mode 100644 index 9a497d16f4d..00000000000 --- a/Content.Shared/Sericulture/SericultureEvents.cs +++ /dev/null @@ -1,10 +0,0 @@ -using Content.Shared.Actions; -using Content.Shared.DoAfter; -using Robust.Shared.Serialization; - -namespace Content.Shared.Sericulture; - -[Serializable, NetSerializable] -public sealed partial class SericultureDoAfterEvent : SimpleDoAfterEvent { } - -public sealed partial class SericultureActionEvent : InstantActionEvent { } diff --git a/Content.Shared/Sericulture/SericultureSystem.cs b/Content.Shared/Sericulture/SericultureSystem.cs new file mode 100644 index 00000000000..514ec79f68e --- /dev/null +++ b/Content.Shared/Sericulture/SericultureSystem.cs @@ -0,0 +1,109 @@ +using Content.Shared.Actions; +using Content.Shared.DoAfter; +using Content.Shared.Nutrition.EntitySystems; +using Robust.Shared.Serialization; +using Content.Shared.Popups; +using Robust.Shared.Network; +using Content.Shared.Nutrition.Components; +using Content.Shared.Stacks; + +namespace Content.Shared.Sericulture; + +/// +/// Allows mobs to produce materials with . +/// +public abstract partial class SharedSericultureSystem : EntitySystem +{ + // Managers + [Dependency] private readonly INetManager _netManager = default!; + + // Systems + [Dependency] private readonly SharedActionsSystem _actionsSystem = default!; + [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; + [Dependency] private readonly HungerSystem _hungerSystem = default!; + [Dependency] private readonly SharedPopupSystem _popupSystem = default!; + [Dependency] private readonly SharedStackSystem _stackSystem = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(OnCompRemove); + SubscribeLocalEvent(OnSericultureStart); + SubscribeLocalEvent(OnSericultureDoAfter); + } + + /// + /// Giveths the action to preform sericulture on the entity + /// + private void OnMapInit(EntityUid uid, SericultureComponent comp, MapInitEvent args) + { + _actionsSystem.AddAction(uid, ref comp.ActionEntity, comp.Action); + } + + /// + /// Takeths away the action to preform sericulture from the entity. + /// + private void OnCompRemove(EntityUid uid, SericultureComponent comp, ComponentShutdown args) + { + _actionsSystem.RemoveAction(uid, comp.ActionEntity); + } + + private void OnSericultureStart(EntityUid uid, SericultureComponent comp, SericultureActionEvent args) + { + if (TryComp(uid, out var hungerComp) + && _hungerSystem.IsHungerBelowState(uid, comp.MinHungerThreshold, hungerComp.CurrentHunger - comp.HungerCost, hungerComp)) + { + _popupSystem.PopupClient(Loc.GetString(comp.PopupText), uid, uid); + return; + } + + var doAfter = new DoAfterArgs(EntityManager, uid, comp.ProductionLength, new SericultureDoAfterEvent(), uid) + { // I'm not sure if more things should be put here, but imo ideally it should probably be set in the component/YAML. Not sure if this is currently possible. + BreakOnUserMove = true, + BlockDuplicate = true, + BreakOnDamage = true, + CancelDuplicate = true, + }; + + _doAfterSystem.TryStartDoAfter(doAfter); + } + + + private void OnSericultureDoAfter(EntityUid uid, SericultureComponent comp, SericultureDoAfterEvent args) + { + if (args.Cancelled || args.Handled || comp.Deleted) + return; + + if (TryComp(uid, out var hungerComp) // A check, just incase the doafter is somehow performed when the entity is not in the right hunger state. + && _hungerSystem.IsHungerBelowState(uid, comp.MinHungerThreshold, hungerComp.CurrentHunger - comp.HungerCost, hungerComp)) + { + _popupSystem.PopupClient(Loc.GetString(comp.PopupText), uid, uid); + return; + } + + _hungerSystem.ModifyHunger(uid, -comp.HungerCost); + + if (!_netManager.IsClient) // Have to do this because spawning stuff in shared is CBT. + { + var newEntity = Spawn(comp.EntityProduced, Transform(uid).Coordinates); + + _stackSystem.TryMergeToHands(newEntity, uid); + } + + args.Repeat = true; + } +} + +/// +/// Should be relayed upon using the action. +/// +public sealed partial class SericultureActionEvent : InstantActionEvent { } + +/// +/// Is relayed at the end of the sericulturing doafter. +/// +[Serializable, NetSerializable] +public sealed partial class SericultureDoAfterEvent : SimpleDoAfterEvent { } + diff --git a/Content.Shared/Spreader/EdgeSpreaderPrototype.cs b/Content.Shared/Spreader/EdgeSpreaderPrototype.cs index 2fab110fdbd..a1e31da3caa 100644 --- a/Content.Shared/Spreader/EdgeSpreaderPrototype.cs +++ b/Content.Shared/Spreader/EdgeSpreaderPrototype.cs @@ -9,4 +9,5 @@ namespace Content.Shared.Spreader; public sealed class EdgeSpreaderPrototype : IPrototype { [IdDataField] public string ID { get; } = string.Empty; + [DataField(required:true)] public int UpdatesPerSecond; } diff --git a/Content.Shared/Temperature/SharedEntityHeater.cs b/Content.Shared/Temperature/SharedEntityHeater.cs new file mode 100644 index 00000000000..597104e1ba1 --- /dev/null +++ b/Content.Shared/Temperature/SharedEntityHeater.cs @@ -0,0 +1,21 @@ +using Robust.Shared.Serialization; + +namespace Content.Shared.Temperature; + +[Serializable, NetSerializable] +public enum EntityHeaterVisuals +{ + Setting +} + +/// +/// What heat the heater is set to, if on at all. +/// +[Serializable, NetSerializable] +public enum EntityHeaterSetting +{ + Off, + Low, + Medium, + High +} diff --git a/Content.Shared/Throwing/ThrowingSystem.cs b/Content.Shared/Throwing/ThrowingSystem.cs index 35bfc069eb0..e47cdd5acc2 100644 --- a/Content.Shared/Throwing/ThrowingSystem.cs +++ b/Content.Shared/Throwing/ThrowingSystem.cs @@ -1,7 +1,6 @@ using System.Numerics; using Content.Shared.Gravity; using Content.Shared.Interaction; -using Content.Shared.Movement.Components; using Content.Shared.Projectiles; using Content.Shared.Tag; using Robust.Shared.Map; @@ -24,6 +23,7 @@ public sealed class ThrowingSystem : EntitySystem /// public const float FlyTime = 0.15f; + [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly SharedGravitySystem _gravity = default!; [Dependency] private readonly SharedInteractionSystem _interactionSystem = default!; [Dependency] private readonly SharedPhysicsSystem _physics = default!; @@ -112,6 +112,13 @@ public void TryThrow(EntityUid uid, var comp = EnsureComp(uid); comp.Thrower = user; + + // Estimate time to arrival so we can apply OnGround status and slow it much faster. + var time = direction.Length() / strength; + comp.ThrownTime = _gameTiming.CurTime; + comp.LandTime = time < FlyTime ? default : comp.ThrownTime + TimeSpan.FromSeconds(time - FlyTime); + comp.PlayLandSound = playSound; + ThrowingAngleComponent? throwingAngle = null; // Give it a l'il spin. @@ -134,24 +141,13 @@ public void TryThrow(EntityUid uid, var impulseVector = direction.Normalized() * strength * physics.Mass; _physics.ApplyLinearImpulse(uid, impulseVector, body: physics); - // Estimate time to arrival so we can apply OnGround status and slow it much faster. - var time = direction.Length() / strength; - - if (time < FlyTime) + if (comp.LandTime <= TimeSpan.Zero) { _thrownSystem.LandComponent(uid, comp, physics, playSound); } else { _physics.SetBodyStatus(physics, BodyStatus.InAir); - - Timer.Spawn(TimeSpan.FromSeconds(time - FlyTime), () => - { - if (physics.Deleted) - return; - - _thrownSystem.LandComponent(uid, comp, physics, playSound); - }); } // Give thrower an impulse in the other direction diff --git a/Content.Shared/Throwing/ThrownItemComponent.cs b/Content.Shared/Throwing/ThrownItemComponent.cs index eb09127dea8..eb23ba0994d 100644 --- a/Content.Shared/Throwing/ThrownItemComponent.cs +++ b/Content.Shared/Throwing/ThrownItemComponent.cs @@ -1,13 +1,41 @@ using Robust.Shared.GameStates; using Robust.Shared.Serialization; +using Robust.Shared.Timing; namespace Content.Shared.Throwing { - [RegisterComponent, NetworkedComponent] + [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class ThrownItemComponent : Component { - [ViewVariables(VVAccess.ReadWrite), DataField("thrower")] + /// + /// The entity that threw this entity. + /// + [DataField, ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] public EntityUid? Thrower { get; set; } + + /// + /// The timestamp at which this entity was thrown. + /// + [DataField, ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] + public TimeSpan? ThrownTime { get; set; } + + /// + /// Compared to to land this entity, if any. + /// + [DataField, ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] + public TimeSpan? LandTime { get; set; } + + /// + /// Whether or not this entity was already landed. + /// + [DataField, ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] + public bool Landed { get; set; } + + /// + /// Whether or not to play a sound when the entity lands. + /// + [DataField, ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] + public bool PlayLandSound { get; set; } } [Serializable, NetSerializable] diff --git a/Content.Shared/Throwing/ThrownItemSystem.cs b/Content.Shared/Throwing/ThrownItemSystem.cs index 7fb1cc6b8a5..d7856543e4a 100644 --- a/Content.Shared/Throwing/ThrownItemSystem.cs +++ b/Content.Shared/Throwing/ThrownItemSystem.cs @@ -3,12 +3,11 @@ using Content.Shared.Database; using Content.Shared.Physics; using Content.Shared.Physics.Pull; -using Robust.Shared.Containers; -using Robust.Shared.GameStates; using Robust.Shared.Physics; using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Events; using Robust.Shared.Physics.Systems; +using Robust.Shared.Timing; namespace Content.Shared.Throwing { @@ -18,6 +17,7 @@ namespace Content.Shared.Throwing public sealed class ThrownItemSystem : EntitySystem { [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; + [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly SharedBroadphaseSystem _broadphase = default!; [Dependency] private readonly FixtureSystem _fixtures = default!; [Dependency] private readonly SharedPhysicsSystem _physics = default!; @@ -27,29 +27,18 @@ public sealed class ThrownItemSystem : EntitySystem public override void Initialize() { base.Initialize(); + SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnSleep); SubscribeLocalEvent(HandleCollision); SubscribeLocalEvent(PreventCollision); SubscribeLocalEvent(ThrowItem); - SubscribeLocalEvent(OnGetState); - SubscribeLocalEvent(OnHandleState); + SubscribeLocalEvent(OnThrownUnpaused); SubscribeLocalEvent(HandlePullStarted); } - private void OnGetState(EntityUid uid, ThrownItemComponent component, ref ComponentGetState args) + private void OnMapInit(EntityUid uid, ThrownItemComponent component, MapInitEvent args) { - args.State = new ThrownItemComponentState(GetNetEntity(component.Thrower)); - } - - private void OnHandleState(EntityUid uid, ThrownItemComponent component, ref ComponentHandleState args) - { - if (args.Current is not ThrownItemComponentState { Thrower: not null } state || - !state.Thrower.Value.IsValid()) - { - return; - } - - component.Thrower = EnsureEntity(state.Thrower.Value, uid); + component.ThrownTime ??= _gameTiming.CurTime; } private void ThrowItem(EntityUid uid, ThrownItemComponent component, ThrownEvent args) @@ -66,6 +55,14 @@ private void ThrowItem(EntityUid uid, ThrownItemComponent component, ThrownEvent _fixtures.TryCreateFixture(uid, shape, ThrowingFixture, hard: false, collisionMask: (int) CollisionGroup.ThrownItem, manager: fixturesComponent, body: body); } + private void OnThrownUnpaused(EntityUid uid, ThrownItemComponent component, ref EntityUnpausedEvent args) + { + if (component.LandTime != null) + { + component.LandTime = component.LandTime.Value + args.PausedTime; + } + } + private void HandleCollision(EntityUid uid, ThrownItemComponent component, ref StartCollideEvent args) { if (!args.OtherFixture.Hard) @@ -120,9 +117,11 @@ public void StopThrow(EntityUid uid, ThrownItemComponent thrownItemComponent) public void LandComponent(EntityUid uid, ThrownItemComponent thrownItem, PhysicsComponent physics, bool playSound) { - if (thrownItem.Deleted || Deleted(uid)) + if (thrownItem.Landed || thrownItem.Deleted || Deleted(uid)) return; + thrownItem.Landed = true; + // Assume it's uninteresting if it has no thrower. For now anyway. if (thrownItem.Thrower is not null) _adminLogger.Add(LogType.Landed, LogImpact.Low, $"{ToPrettyString(uid):entity} thrown by {ToPrettyString(thrownItem.Thrower.Value):thrower} landed."); @@ -130,8 +129,6 @@ public void LandComponent(EntityUid uid, ThrownItemComponent thrownItem, Physics _broadphase.RegenerateContacts(uid, physics); var landEvent = new LandEvent(thrownItem.Thrower, playSound); RaiseLocalEvent(uid, ref landEvent); - - StopThrow(uid, thrownItem); } /// @@ -146,5 +143,25 @@ public void ThrowCollideInteraction(ThrownItemComponent component, EntityUid thr RaiseLocalEvent(target, new ThrowHitByEvent(thrown, target, component), true); RaiseLocalEvent(thrown, new ThrowDoHitEvent(thrown, target, component), true); } + + public override void Update(float frameTime) + { + base.Update(frameTime); + + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var thrown, out var physics)) + { + if (thrown.LandTime <= _gameTiming.CurTime) + { + LandComponent(uid, thrown, physics, thrown.PlayLandSound); + } + + var stopThrowTime = (thrown.LandTime ?? thrown.ThrownTime) + TimeSpan.FromSeconds(ThrowingSystem.FlyTime); + if (stopThrowTime <= _gameTiming.CurTime) + { + StopThrow(uid, thrown); + } + } + } } } diff --git a/Content.Shared/Vehicle/SharedVehicleSystem.cs b/Content.Shared/Vehicle/SharedVehicleSystem.cs index 334c115ba8d..c211ec57f02 100644 --- a/Content.Shared/Vehicle/SharedVehicleSystem.cs +++ b/Content.Shared/Vehicle/SharedVehicleSystem.cs @@ -1,6 +1,5 @@ using System.Numerics; using Content.Shared.Access.Components; -using Content.Shared.Access.Systems; using Content.Shared.Actions; using Content.Shared.Audio; using Content.Shared.Buckle; @@ -35,7 +34,6 @@ public abstract partial class SharedVehicleSystem : EntitySystem [Dependency] private readonly SharedAmbientSoundSystem _ambientSound = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly TagSystem _tagSystem = default!; - [Dependency] private readonly AccessReaderSystem _access = default!; [Dependency] private readonly SharedPopupSystem _popupSystem = default!; [Dependency] private readonly SharedHandVirtualItemSystem _virtualItemSystem = default!; [Dependency] private readonly SharedActionsSystem _actionsSystem = default!; @@ -326,11 +324,7 @@ private void OnGetAdditionalAccess(EntityUid uid, VehicleComponent component, re { if (component.Rider == null) return; - var rider = component.Rider.Value; - - args.Entities.Add(rider); - _access.FindAccessItemsInventory(rider, out var items); - args.Entities.UnionWith(items); + args.Entities.Add(component.Rider.Value); } /// diff --git a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs index 9b61fd03b7d..ebe1a21e679 100644 --- a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs +++ b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs @@ -495,7 +495,7 @@ protected virtual void DoLightAttack(EntityUid user, LightAttackEvent ev, Entity var modifiedDamage = DamageSpecifier.ApplyModifierSets(damage + hitEvent.BonusDamage + attackedEvent.BonusDamage, hitEvent.ModifiersList); var damageResult = Damageable.TryChangeDamage(target, modifiedDamage, origin:user); - if (damageResult != null && damageResult.Total > FixedPoint2.Zero) + if (damageResult != null && damageResult.Any()) { // If the target has stamina and is taking blunt damage, they should also take stamina damage based on their blunt to stamina factor if (damageResult.DamageDict.TryGetValue("Blunt", out var bluntDamage)) @@ -522,7 +522,7 @@ protected virtual void DoLightAttack(EntityUid user, LightAttackEvent ev, Entity { Audio.PlayPredicted(hitEvent.HitSoundOverride, meleeUid, user); } - else if (GetDamage(meleeUid, user, component).Total.Equals(FixedPoint2.Zero) && component.HitSound != null) + else if (!GetDamage(meleeUid, user, component).Any() && component.HitSound != null) { Audio.PlayPredicted(component.HitSound, meleeUid, user); } diff --git a/Content.Shared/Weapons/Misc/SharedTetherGunSystem.cs b/Content.Shared/Weapons/Misc/SharedTetherGunSystem.cs index 807395c4655..984ae832fb8 100644 --- a/Content.Shared/Weapons/Misc/SharedTetherGunSystem.cs +++ b/Content.Shared/Weapons/Misc/SharedTetherGunSystem.cs @@ -259,6 +259,7 @@ protected virtual void StopTether(EntityUid gunUid, BaseForceGunComponent compon { var thrown = EnsureComp(component.Tethered.Value); _thrown.LandComponent(component.Tethered.Value, thrown, targetPhysics, true); + _thrown.StopThrow(component.Tethered.Value, thrown); } _physics.SetBodyStatus(targetPhysics, BodyStatus.OnGround); diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Ballistic.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Ballistic.cs index 8ad96fda531..de664ee5375 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Ballistic.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Ballistic.cs @@ -132,11 +132,12 @@ void SimulateInsertAmmo(EntityUid ammo, EntityUid ammoProvider, EntityCoordinate uid, args.User); - // play sound to be cool SimulateInsertAmmo(ent.Value, uid, Transform(uid).Coordinates); } else { + // play sound to be cool + Audio.PlayPredicted(component.SoundInsert, uid, args.User); SimulateInsertAmmo(ent.Value, args.Target.Value, Transform(args.Target.Value).Coordinates); } diff --git a/Content.Shared/Wires/SharedWiresSystem.cs b/Content.Shared/Wires/SharedWiresSystem.cs index 055827e8b1d..50465537e8c 100644 --- a/Content.Shared/Wires/SharedWiresSystem.cs +++ b/Content.Shared/Wires/SharedWiresSystem.cs @@ -6,14 +6,11 @@ namespace Content.Shared.Wires; public abstract class SharedWiresSystem : EntitySystem { - [Dependency] private readonly IPrototypeManager _prototypeManager = default!; - public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnExamine); - SubscribeLocalEvent(OnWeldableAttempt); } private void OnExamine(EntityUid uid, WiresPanelComponent component, ExaminedEvent args) @@ -26,21 +23,11 @@ private void OnExamine(EntityUid uid, WiresPanelComponent component, ExaminedEve { args.PushMarkup(Loc.GetString("wires-panel-component-on-examine-open")); - if (_prototypeManager.TryIndex(component.CurrentSecurityLevelID, out var securityLevelPrototype) && - securityLevelPrototype.Examine != null) + if (TryComp(uid, out var wiresPanelSecurity) && + wiresPanelSecurity.Examine != null) { - args.PushMarkup(Loc.GetString(securityLevelPrototype.Examine)); + args.PushMarkup(Loc.GetString(wiresPanelSecurity.Examine)); } } } - - private void OnWeldableAttempt(EntityUid uid, WiresPanelComponent component, WeldableAttemptEvent args) - { - if (component.Open && - _prototypeManager.TryIndex(component.CurrentSecurityLevelID, out var securityLevelPrototype) && - !securityLevelPrototype.WeldingAllowed) - { - args.Cancel(); - } - } } diff --git a/Content.Shared/Wires/WiresPanelComponent.cs b/Content.Shared/Wires/WiresPanelComponent.cs index adc9d9a5f09..1162d050338 100644 --- a/Content.Shared/Wires/WiresPanelComponent.cs +++ b/Content.Shared/Wires/WiresPanelComponent.cs @@ -27,14 +27,6 @@ public sealed partial class WiresPanelComponent : Component [DataField("screwdriverCloseSound")] public SoundSpecifier ScrewdriverCloseSound = new SoundPathSpecifier("/Audio/Machines/screwdriverclose.ogg"); - - /// - /// This prototype describes the current security features of the wire panel - /// - [DataField("securityLevel")] - [ValidatePrototypeId] - [AutoNetworkedField] - public string CurrentSecurityLevelID = "Level0"; } /// diff --git a/Content.Shared/Wires/WiresPanelSecurityComponent.cs b/Content.Shared/Wires/WiresPanelSecurityComponent.cs new file mode 100644 index 00000000000..e894f1f0c9e --- /dev/null +++ b/Content.Shared/Wires/WiresPanelSecurityComponent.cs @@ -0,0 +1,50 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Wires; + +/// +/// Allows hacking protections to a be added to an entity. +/// These safeguards are determined via a construction graph, +/// so the entity requires for this to function +/// +[NetworkedComponent, RegisterComponent] +[Access(typeof(SharedWiresSystem))] +[AutoGenerateComponentState] +public sealed partial class WiresPanelSecurityComponent : Component +{ + /// + /// A verbal description of the wire panel's current security level + /// + [DataField("examine")] + [AutoNetworkedField] + public string? Examine = default!; + + /// + /// Determines whether the wiring is accessible to hackers or not + /// + [DataField("wiresAccessible")] + [AutoNetworkedField] + public bool WiresAccessible = true; + + /// + /// Name of the construction graph node that the entity will start on + /// + [DataField("securityLevel")] + [AutoNetworkedField] + public string SecurityLevel = string.Empty; +} + +/// +/// This event gets raised when security settings on a wires panel change +/// +public sealed class WiresPanelSecurityEvent : EntityEventArgs +{ + public readonly string? Examine; + public readonly bool WiresAccessible; + + public WiresPanelSecurityEvent(string? examine, bool wiresAccessible) + { + Examine = examine; + WiresAccessible = wiresAccessible; + } +} diff --git a/Content.Shared/Wires/WiresPanelSecurityLevelPrototype.cs b/Content.Shared/Wires/WiresPanelSecurityLevelPrototype.cs deleted file mode 100644 index 8ddc8eeab81..00000000000 --- a/Content.Shared/Wires/WiresPanelSecurityLevelPrototype.cs +++ /dev/null @@ -1,31 +0,0 @@ -using Robust.Shared.Prototypes; - -namespace Content.Shared.Wires; - -[Prototype("WiresPanelSecurityLevel")] -public sealed class WiresPanelSecurityLevelPrototype : IPrototype -{ - [IdDataField] - public string ID { get; private set; } = default!; - - /// - /// A verbal description of the wire panel's current security level - /// - [DataField("examine")] - public string? Examine = default!; - - /// - /// Determines whether the wiring is accessible to hackers or not - /// - [DataField("wiresAccessible")] - public bool WiresAccessible = true; - - /// - /// Determines whether the device can be welded shut or not - /// - /// - /// Should be set false when you need to weld/unweld something to/from the wire panel - /// - [DataField("weldingAllowed")] - public bool WeldingAllowed = true; -} diff --git a/Content.Tests/Shared/DamageTest.cs b/Content.Tests/Shared/DamageTest.cs index 4f8647b3e40..4221ff25a25 100644 --- a/Content.Tests/Shared/DamageTest.cs +++ b/Content.Tests/Shared/DamageTest.cs @@ -17,15 +17,15 @@ namespace Content.Tests.Shared public sealed class DamageTest : ContentUnitTest { - static private Dictionary _resistanceCoefficientDict = new() + private static Dictionary _resistanceCoefficientDict = new() { // "missing" blunt entry - { "Piercing", -2 },// Turn Piercing into Healing + { "Piercing", -2 }, // negative multipliers just cause the damage to be ignored. { "Slash", 3 }, { "Radiation", 1.5f }, }; - static private Dictionary _resistanceReductionDict = new() + private static Dictionary _resistanceReductionDict = new() { { "Blunt", - 5 }, // "missing" piercing entry @@ -152,14 +152,14 @@ public void ModifierSetTest() // Apply once damageSpec = DamageSpecifier.ApplyModifierSet(damageSpec, modifierSet); Assert.That(damageSpec.DamageDict["Blunt"], Is.EqualTo(FixedPoint2.New(25))); - Assert.That(damageSpec.DamageDict["Piercing"], Is.EqualTo(FixedPoint2.New(-40))); // became healing + Assert.That(!damageSpec.DamageDict.ContainsKey("Piercing")); // Cannot convert damage into healing. Assert.That(damageSpec.DamageDict["Slash"], Is.EqualTo(FixedPoint2.New(6))); Assert.That(damageSpec.DamageDict["Radiation"], Is.EqualTo(FixedPoint2.New(44.25))); // And again, checking for some other behavior damageSpec = DamageSpecifier.ApplyModifierSet(damageSpec, modifierSet); Assert.That(damageSpec.DamageDict["Blunt"], Is.EqualTo(FixedPoint2.New(30))); - Assert.That(damageSpec.DamageDict["Piercing"], Is.EqualTo(FixedPoint2.New(-40))); // resistances don't apply to healing + Assert.That(!damageSpec.DamageDict.ContainsKey("Piercing")); Assert.That(!damageSpec.DamageDict.ContainsKey("Slash")); // Reduction reduced to 0, and removed from specifier Assert.That(damageSpec.DamageDict["Radiation"], Is.EqualTo(FixedPoint2.New(65.63))); } diff --git a/README.md b/README.md index 43c56006dc7..e3e781ab0dd 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,8 @@ Delta-V is a fork of [Space Station 14](https://github.com/space-wizards/space-s Space Station 14 is a remake of SS13 that runs on [Robust Toolbox](https://github.com/space-wizards/RobustToolbox), a homegrown engine written in C#. +### Delta-V is a continuation of the [Nyanotrasen](https://www.nyanotrasen.moe/) fork. Any work done in a non-base namespace may contain incorrect attributes due to rewrites and recommitting. + ## Links #### DeltaV diff --git a/Resources/Audio/Effects/attributions.yml b/Resources/Audio/Effects/attributions.yml index f9239f4dab9..71a2ae2b53c 100644 --- a/Resources/Audio/Effects/attributions.yml +++ b/Resources/Audio/Effects/attributions.yml @@ -56,4 +56,9 @@ - files: ["break_stone.ogg"] license: "CC-BY-SA-3.0" copyright: "Taken from tgstation" - source: "https://github.com/tgstation/tgstation/blob/e3a835b96043fad1269ee7b0c3a6cb340a466f3a/sound/effects/break_stone.ogg" \ No newline at end of file + source: "https://github.com/tgstation/tgstation/blob/e3a835b96043fad1269ee7b0c3a6cb340a466f3a/sound/effects/break_stone.ogg" + +- files: ["waterswirl.ogg"] + license: "CC0-1.0" + copyright: "Taken from InspectorJ via freesound.org and mixed from stereo to mono." + source: "https://freesound.org/people/InspectorJ/sounds/398703/" diff --git a/Resources/Audio/Effects/waterswirl.ogg b/Resources/Audio/Effects/waterswirl.ogg new file mode 100644 index 00000000000..d8c9755a69c Binary files /dev/null and b/Resources/Audio/Effects/waterswirl.ogg differ diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 4f4d33685ed..09e8bf1bf5b 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,208 +1,4 @@ Entries: -- author: crazybrain - changes: - - {message: Uplinks can now purchase a Syndicate pAI., type: Add} - id: 4439 - time: '2023-08-05T04:26:26.0000000+00:00' -- author: mhamster - changes: - - {message: 'Added new chemical reaction between iron, aluminium and uranium that - will cause electromagnetic pulse.', type: Add} - id: 4440 - time: '2023-08-05T04:31:14.0000000+00:00' -- author: Interrobang01 - changes: - - {message: 'The Syndicate Disposable Turret is now approved for use by all syndicate - agents (with the exception of nuclear operatives), instead of those from a select - few jobs.', type: Tweak} - id: 4441 - time: '2023-08-05T04:32:25.0000000+00:00' -- author: Jesse - changes: - - {message: New chainsaw sprites, type: Add} - - {message: New chainsaw sounds. It goes vroom., type: Add} - id: 4442 - time: '2023-08-05T04:49:56.0000000+00:00' -- author: deltanedas - changes: - - {message: Dragons on expeditions do less damage now., type: Tweak} - id: 4443 - time: '2023-08-05T07:02:07.0000000+00:00' -- author: Phill101 - changes: - - {message: The crew manifest is now a PDA cartridge program., type: Tweak} - id: 4444 - time: '2023-08-05T08:37:08.0000000+00:00' -- author: Slava0135 - changes: - - {message: Splash spill now has a visual effect., type: Add} - id: 4445 - time: '2023-08-05T11:44:19.0000000+00:00' -- author: FillerVK - changes: - - {message: 'Added craftable TaxiBot. Robotics can now construct autonomous, ghost-powered - taxis to drive people around the station at high speed.', type: Add} - id: 4446 - time: '2023-08-05T18:36:32.0000000+00:00' -- author: lapatison - changes: - - {message: 'Syndicate lobbying bundle: briefcase containing 5,000 spacebucks has - been added to the uplink!', type: Add} - id: 4447 - time: '2023-08-05T21:10:21.0000000+00:00' -- author: Vordenburg - changes: - - {message: Nuclear fission devices need enough floor around them to anchor now., - type: Tweak} - id: 4448 - time: '2023-08-05T21:28:07.0000000+00:00' -- author: Flareguy - changes: - - {message: Changed the plating sprite to be a little less blue., type: Tweak} - id: 4449 - time: '2023-08-06T00:04:12.0000000+00:00' -- author: metalgearsloth - changes: - - {message: 'Tweak PKA, crusher, pickaxe, and drill. Overall adjusted the mining - speed from lowest to fastest in that order. Additionally buffed crusher attackrate - and pickaxe structural damage.', type: Tweak} - id: 4450 - time: '2023-08-06T01:23:38.0000000+00:00' -- author: Derby - changes: - - {message: The guidebook now comes with more antagonists info., type: Add} - id: 4451 - time: '2023-08-06T02:35:08.0000000+00:00' -- author: JoeHammad - changes: - - {message: 'NT RND has cooked up brute and burn auto-injectors, which are now available - in combat medkits.', type: Add} - id: 4452 - time: '2023-08-06T02:38:25.0000000+00:00' -- author: metalgearsloth - changes: - - {message: 'Re-balanced melee combat. Windup is removed, heavy attacks cost 15 - stamina, stamina damage cooldown reduced from 5s to 3/s, wide attacks provide - a 25% damage bonus, and wielding no longer grants immunity to disarms.', type: Tweak} - - {message: Reduce desword values to standard fast weapons (left wide-attack angle - at 100 degrees instead of the standard 60)., type: Tweak} - id: 4453 - time: '2023-08-06T02:55:38.0000000+00:00' -- author: deltanedas - changes: - - {message: Most raw meat will now rot outside of a freezer. Please don't eat rotten - meat., type: Tweak} - id: 4454 - time: '2023-08-06T03:05:44.0000000+00:00' -- author: Bixkitts - changes: - - {message: Add candy bowls for waiting lines., type: Add} - id: 4455 - time: '2023-08-06T03:10:47.0000000+00:00' -- author: Bixkitts - changes: - - {message: Kudzu spread falling asleep when blocked by walls, type: Fix} - id: 4456 - time: '2023-08-06T06:08:07.0000000+00:00' -- author: metalgearsloth - changes: - - {message: Fix taxibots incorrectly pushing entities., type: Fix} - - {message: Taxibots were equipped with noslip tires., type: Tweak} - - {message: Nerf taxibot speed from 10 to 6 and reduce their volume significantly., - type: Tweak} - id: 4457 - time: '2023-08-06T06:37:42.0000000+00:00' -- author: EmoGarbage404 - changes: - - {message: Adjusted pickaxe inhand sprites and added sprites for wielded pickaxes., - type: Tweak} - id: 4458 - time: '2023-08-06T06:50:00.0000000+00:00' -- author: Errant - changes: - - {message: Active energy swords no longer heal small amounts of blunt damage on - every hit. Cybersun CEO reportedly thrown out an airlock over "Bluntgate" scandal., - type: Fix} - id: 4459 - time: '2023-08-06T08:19:32.0000000+00:00' -- author: notafet - changes: - - {message: 'Add radiators, which transfer heat from a pipe to its surroundings.', - type: Add} - id: 4460 - time: '2023-08-06T08:21:05.0000000+00:00' -- author: Flareguy - changes: - - {message: Added external hull plating tiles & hardened reinforced tiles. They - can only be normally destroyed using bombs., type: Add} - id: 4461 - time: '2023-08-06T08:27:48.0000000+00:00' -- author: deltanedas - changes: - - {message: 'Stimulants now double your stamina, making you harder to stun and letting - you use more heavy attacks.', type: Tweak} - id: 4462 - time: '2023-08-06T11:06:23.0000000+00:00' -- author: JoeHammad - changes: - - {message: 'Centcom has increased the spring strength on the brute and burn auto - injectors, they should now inject the full 20 units', type: Add} - id: 4463 - time: '2023-08-06T11:38:07.0000000+00:00' -- author: Slava0135 - changes: - - {message: fixed reflected projectiles dealing stamina damage, type: Fix} - id: 4464 - time: '2023-08-06T13:44:42.0000000+00:00' -- author: Errant - changes: - - {message: 'Wide attacks no longer cost stamina, deal weapon damage.', type: Tweak} - - {message: Primary/Single-target melee attacks deal +25% damage., type: Tweak} - id: 4465 - time: '2023-08-06T16:01:44.0000000+00:00' -- author: Ilya246 - changes: - - {message: Increase radiator heat transfer rate., type: Tweak} - id: 4466 - time: '2023-08-06T17:23:43.0000000+00:00' -- author: forthbridge - changes: - - {message: Spaceshrooms now spawn as a structure instead of an item, type: Fix} - id: 4467 - time: '2023-08-06T17:40:43.0000000+00:00' -- author: moony - changes: - - {message: You can turn APCs on during power grid checks again., type: Tweak} - id: 4468 - time: '2023-08-06T18:39:49.0000000+00:00' -- author: Flareguy - changes: - - {message: 'The bleeding alert sprite is now drawn at double the resolution, as - to fit in with everything else in the game.', type: Tweak} - id: 4469 - time: '2023-08-06T23:49:28.0000000+00:00' -- author: EmoGarbage404 - changes: - - {message: Chemical analysis goggles no longer require silver to create., type: Tweak} - id: 4470 - time: '2023-08-07T03:44:25.0000000+00:00' -- author: mirrorcult - changes: - - {message: Renamed spacebucks to spesos, type: Tweak} - id: 4471 - time: '2023-08-07T05:43:35.0000000+00:00' -- author: Slava0135 - changes: - - {message: You can now examine throw damage on items., type: Add} - - {message: Fixed examine damage verbs of different types conflicting with each - other., type: Fix} - id: 4472 - time: '2023-08-07T09:09:35.0000000+00:00' -- author: metalgearsloth - changes: - - {message: Reproducible entities now have a capacity in confined areas., type: Fix} - id: 4473 - time: '2023-08-07T09:48:47.0000000+00:00' - author: ubis1 changes: - {message: some lathes can be emagged now; emaggable recipes list has been added @@ -2960,3 +2756,198 @@ Entries: - {message: Plant species mutation no longer resets other mutations., type: Fix} id: 4938 time: '2023-10-01T17:52:45.0000000+00:00' +- author: Nairodian + changes: + - {message: Science can now research practice ammunition for security., type: Add} + id: 4939 + time: '2023-10-01T20:18:05.0000000+00:00' +- author: Nimfar11 + changes: + - {message: Adds Advanced treatment cyborg module to the medical borg., type: Add} + - {message: Adds two new medical tools for the borg. Borghypo and Borgdropper., + type: Add} + id: 4940 + time: '2023-10-01T20:45:17.0000000+00:00' +- author: Velcroboy + changes: + - {message: Nanotrasen suppliers now carry restocks for ChefVends and popular condiments. + Get them at your nearest cargo depot., type: Add} + id: 4941 + time: '2023-10-01T20:49:10.0000000+00:00' +- author: chromiumboy + changes: + - {message: Fix praying door hacking protections., type: Fix} + id: 4942 + time: '2023-10-01T21:08:03.0000000+00:00' +- author: Nairodian + changes: + - {message: Small firearms now fit in boots., type: Tweak} + id: 4943 + time: '2023-10-01T21:23:41.0000000+00:00' +- author: deltanedas + changes: + - {message: 'Added the Electric Grill for cooking steaks quickly, research food + service to make it.', type: Add} + id: 4944 + time: '2023-10-02T00:17:50.0000000+00:00' +- author: Pigeonpeas + changes: + - {message: 'Added a new lizard horn marking for the head, kobold ears!', type: Add} + id: 4945 + time: '2023-10-02T07:08:20.0000000+00:00' +- author: JoeHammad + changes: + - {message: 'the north star gloves have had their damage changed back to 8, as was + originally intended', type: Tweak} + id: 4946 + time: '2023-10-02T15:34:22.0000000+00:00' +- author: Vasilis + changes: + - {message: The immovable rod gibs you instead of deleting your character again., + type: Fix} + id: 4947 + time: '2023-10-02T18:30:51.0000000+00:00' +- author: deltanedas + changes: + - {message: Pizza recipes now require flat dough. Get a rolling pin from the dinnerware + vendor., type: Add} + id: 4948 + time: '2023-10-02T19:21:15.0000000+00:00' +- author: VigersRay + changes: + - {message: The syndicate has begun to recruit more experienced people into the + ranks of nuclear operatives., type: Tweak} + id: 4949 + time: '2023-10-02T21:20:09.0000000+00:00' +- author: Doru991 + changes: + - {message: Plant species mutations correctly mutate reagents., type: Fix} + id: 4950 + time: '2023-10-03T23:07:29.0000000+00:00' +- author: crazybrain + changes: + - {message: The omnitool (advanced tool cyborg module) can pry airlocks and firelocks + again., type: Fix} + id: 4951 + time: '2023-10-04T05:22:48.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: Cyborgs can toggle their flashlights again., type: Fix} + id: 4952 + time: '2023-10-04T14:30:11.0000000+00:00' +- author: nmajask + changes: + - {message: Clipboards are now available to the Head of Personnel and Quartermaster., + type: Add} + id: 4953 + time: '2023-10-04T22:28:29.0000000+00:00' +- author: coolmankid12345 + changes: + - {message: Added the Revolutionaries gamemode., type: Add} + - {message: Added Head Revolutionaries and conversion for the flash, type: Add} + - {message: Added Rev status icons., type: Add} + - {message: Added Mindshields, type: Add} + id: 4954 + time: '2023-10-05T01:47:33.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: Fixed access while riding vehicles and mechs., type: Fix} + id: 4955 + time: '2023-10-05T09:12:41.0000000+00:00' +- author: brainfood1183 + changes: + - {message: Rock anomalies have been detected by nanotrasen scientists., type: Add} + id: 4956 + time: '2023-10-05T19:53:54.0000000+00:00' +- author: notquitehadouken + changes: + - {message: Slimes no longer rot again, type: Fix} + id: 4957 + time: '2023-10-05T19:56:40.0000000+00:00' +- author: dahnte + changes: + - {message: Onion rings!, type: Add} + id: 4958 + time: '2023-10-05T21:31:40.0000000+00:00' +- author: gusxyz + changes: + - {message: Monkey's now are able to equip gas masks., type: Add} + id: 4959 + time: '2023-10-05T21:34:37.0000000+00:00' +- author: TheShuEd + changes: + - {message: The trees and rocks are now rotating to follow the camera., type: Tweak} + id: 4960 + time: '2023-10-06T01:50:25.0000000+00:00' +- author: gusxyz + changes: + - {message: Syndicate bombs collide again., type: Tweak} + id: 4961 + time: '2023-10-06T06:29:58.0000000+00:00' +- author: Ubaser + changes: + - {message: The Clothesmate now dispenses berets., type: Tweak} + id: 4962 + time: '2023-10-06T18:49:08.0000000+00:00' +- author: Lank + changes: + - {message: 'Reptilians have received a minor rework. Notable features include a + diet restriction to only meat, fruit and pills, and the ability to pull objects + using their tail.', type: Tweak} + id: 4963 + time: '2023-10-06T21:19:01.0000000+00:00' +- author: chromiumboy + changes: + - {message: Fixed wire panels on bombs and vending machines not opening correctly., + type: Fix} + id: 4964 + time: '2023-10-06T21:26:02.0000000+00:00' +- author: TheShuEd + changes: + - {message: 'Beer anomaly added! And no, it''s an anomaly of ominisine. Hmm. No. + It seems to be capable of producing ANY substance.', type: Add} + id: 4965 + time: '2023-10-07T00:26:35.0000000+00:00' +- author: DrSmugleaf + changes: + - {message: Fixed not being able to throw items into disposals from close up., type: Fix} + id: 4966 + time: '2023-10-07T00:43:54.0000000+00:00' +- author: Nimfar11 + changes: + - {message: Now the Secret Doors can be welded shut., type: Add} + id: 4967 + time: '2023-10-07T00:45:12.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: Certain mobs will now fight back when provoked. Try not to get robusted., + type: Add} + id: 4968 + time: '2023-10-07T00:56:18.0000000+00:00' +- author: HerCoyote23 + changes: + - {message: Tarantulas now inject real toxins into victims and they can pass through + armour., type: Tweak} + id: 4969 + time: '2023-10-07T13:05:40.0000000+00:00' +- author: DrSmugleaf + changes: + - {message: Fixed not being able to sleep on a bed., type: Fix} + id: 4970 + time: '2023-10-07T19:11:03.0000000+00:00' +- author: JoeHammad + changes: + - {message: 'traitor gamemode is rarer, nukies and revs are more common', type: Tweak} + id: 4971 + time: '2023-10-07T19:15:57.0000000+00:00' +- author: Lank + changes: + - {message: Humanoid species now passively regenerate small bruises and burns., + type: Tweak} + id: 4972 + time: '2023-10-07T19:34:32.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: Kudzu has been reenabled., type: Add} + id: 4973 + time: '2023-10-07T19:59:39.0000000+00:00' diff --git a/Resources/Changelog/DeltaVChangelog.yml b/Resources/Changelog/DeltaVChangelog.yml index 1529bd4ce7e..84979792fe2 100644 --- a/Resources/Changelog/DeltaVChangelog.yml +++ b/Resources/Changelog/DeltaVChangelog.yml @@ -344,3 +344,39 @@ Entries: message: Added six new lobby art. id: 53 time: '2023-10-09T17:35:35.0000000+00:00' +- author: ps3moira + changes: + - type: Add + message: Added two new paintings. + id: 54 + time: '2023-10-10T03:42:19.0000000+00:00' +- author: leonardo_dabepis + changes: + - type: Tweak + message: Changed how the revenant looks. + id: 55 + time: '2023-10-10T03:48:16.0000000+00:00' +- author: FluffiestFloof + changes: + - type: Add + message: Holy water and bibles now deal Holy damage to unholy creatures. + id: 56 + time: '2023-10-10T03:55:34.0000000+00:00' +- author: ps3moira + changes: + - type: Tweak + message: Skull Size + id: 57 + time: '2023-10-10T04:12:19.0000000+00:00' +- author: TJohnson + changes: + - type: Add + message: >- + Added new vests to play to replace most of the Type I vests in organic + play. + - type: Remove + message: >- + Removed most of the Type I vests in organic play. Some might still crop + up, but don't count on it! + id: 58 + time: '2023-10-10T04:43:44.0000000+00:00' diff --git a/Resources/ConfigPresets/DeltaV/apoapsis.toml b/Resources/ConfigPresets/DeltaV/apoapsis.toml new file mode 100644 index 00000000000..f878512f748 --- /dev/null +++ b/Resources/ConfigPresets/DeltaV/apoapsis.toml @@ -0,0 +1,2 @@ +[game] +hostname = "[EN][MRP] Delta-v (Ψ) | Apoapsis" diff --git a/Resources/ConfigPresets/DeltaV/deltav.toml b/Resources/ConfigPresets/DeltaV/deltav.toml new file mode 100644 index 00000000000..5f1275bb818 --- /dev/null +++ b/Resources/ConfigPresets/DeltaV/deltav.toml @@ -0,0 +1,36 @@ +[game] +desc = "Featuring loads of unique content and psionics." +lobbyenabled = true + +[infolinks] +discord = "https://discord.gg/deltav" +github = "https://github.com/DeltaV-Station/Delta-v" +website = "https://www.delta-v.org/" +wiki = "https://wiki.delta-v.org/view/Main_Page" +patreon = "https://www.patreon.com/Delta_v" +bug_report = "https://github.com/DeltaV-Station/Delta-v/issues/new/choose" +forum = "https://forum.delta-v.org/" + +[net] +max_connections = 1024 +tickrate = 30 + +[vote] +restart_required_ratio = 0.7 + +[netres] +limit = 10.0 + +[admin] +see_own_notes = true +deadmin_on_join = true + +[events] +ramping_average_end_time = 180.0 +ramping_average_chaos = 4.5 + +[atmos] +monstermos_rip_tiles = false + +[server] +id = "deltav" \ No newline at end of file diff --git a/Resources/ConfigPresets/DeltaV/periapsis.toml b/Resources/ConfigPresets/DeltaV/periapsis.toml new file mode 100644 index 00000000000..505298d82d7 --- /dev/null +++ b/Resources/ConfigPresets/DeltaV/periapsis.toml @@ -0,0 +1,18 @@ +[game] +hostname = "[EN][MRP] Delta-v (Ψ) | Periapsis" +soft_max_players = 100 + +[server] +rules_file = "Rules.txt" +rules_header = "ui-rules-header" + +[whitelist] +enabled = true +reason = "whitelist-not-whitelisted" +min_players = 30 + +[ooc] +enable_during_round = true + +[hub] +tags = "lang:en-US,region:am_n_e,rp:med" diff --git a/Resources/ConfigPresets/WizardsDen/leviathan.toml b/Resources/ConfigPresets/WizardsDen/leviathan.toml index 6e9856949b7..df1c842ac13 100644 --- a/Resources/ConfigPresets/WizardsDen/leviathan.toml +++ b/Resources/ConfigPresets/WizardsDen/leviathan.toml @@ -3,8 +3,8 @@ # Nothing specific yet [game] -hostname = "[EN] Wizard's Den Leviathan [US East]" -soft_max_players = 80 +hostname = "[EN] Wizard's Den Leviathan [US East 1]" +soft_max_players = 60 [hub] tags = "lang:en,region:am_n_e,rp:low" diff --git a/Resources/ConfigPresets/WizardsDen/vulture.toml b/Resources/ConfigPresets/WizardsDen/vulture.toml new file mode 100644 index 00000000000..7f2e9790bd1 --- /dev/null +++ b/Resources/ConfigPresets/WizardsDen/vulture.toml @@ -0,0 +1,11 @@ +# Configuration preset used on Wizard's Den Leviathan + +[game] +hostname = "[EN] Wizard's Den Vulture [US East 2]" +soft_max_players = 80 + +[hub] +tags = "lang:en,region:am_n_e,rp:low" + +[worldgen] +enabled = true diff --git a/Resources/Locale/en-US/accessories/human-hair.ftl b/Resources/Locale/en-US/accessories/human-hair.ftl index a6313200b27..2c1268f821c 100644 --- a/Resources/Locale/en-US/accessories/human-hair.ftl +++ b/Resources/Locale/en-US/accessories/human-hair.ftl @@ -151,6 +151,7 @@ marking-HumanHairShorthairg = Short Hair 7 marking-HumanHair80s = Short Hair 80s marking-HumanHairRosa = Short Hair Rosa marking-HumanHairB = Shoulder-length Hair +marking-HumanHairShoulderLengthOverEye = Shoulder-length Over Eye marking-HumanHairSidecut = Sidecut marking-HumanHairSkinhead = Skinhead marking-HumanHairProtagonist = Slightly Long Hair @@ -167,6 +168,7 @@ marking-HumanHairTressshoulder = Tress Shoulder marking-HumanHairTrimmed = Trimmed marking-HumanHairTrimflat = Trim Flat marking-HumanHairTwintail = Twintails +marking-HumanHairTwoStrands = Two Strands marking-HumanHairUndercut = Undercut marking-HumanHairUndercutleft = Undercut Left marking-HumanHairUndercutright = Undercut Right diff --git a/Resources/Locale/en-US/administration/antag.ftl b/Resources/Locale/en-US/administration/antag.ftl index ec428b05800..3d098c1c549 100644 --- a/Resources/Locale/en-US/administration/antag.ftl +++ b/Resources/Locale/en-US/administration/antag.ftl @@ -2,9 +2,11 @@ verb-categories-antag = Antag ctrl admin-verb-make-traitor = Make the target into a traitor. admin-verb-make-zombie = Zombifies the target immediately. admin-verb-make-nuclear-operative = Make target a into lone Nuclear Operative. -admin-verb-make-pirate = Make the target into a pirate. Note that this doesn't configure the game rule. +admin-verb-make-pirate = Make the target into a pirate. Note this doesn't configure the game rule. +admin-verb-make-head-rev = Make the target into a Head Revolutionary. admin-verb-text-make-traitor = Make Traitor admin-verb-text-make-zombie = Make Zombie admin-verb-text-make-nuclear-operative = Make Nuclear Operative admin-verb-text-make-pirate = Make Pirate +admin-verb-text-make-head-rev = Make Head Rev diff --git a/Resources/Locale/en-US/disposal/unit/components/disposal-unit-component.ftl b/Resources/Locale/en-US/disposal/unit/components/disposal-unit-component.ftl index 60854b8254d..288db53668f 100644 --- a/Resources/Locale/en-US/disposal/unit/components/disposal-unit-component.ftl +++ b/Resources/Locale/en-US/disposal/unit/components/disposal-unit-component.ftl @@ -26,3 +26,6 @@ disposal-unit-state-Ready = Ready # Yes I want it to always say Pressurizing disposal-unit-state-Flushed = Pressurizing disposal-unit-state-Pressurizing = Pressurizing + +# putting people in +disposal-unit-being-inserted = {CAPITALIZE($user)} is trying to force you into a disposal chute! diff --git a/Resources/Locale/en-US/game-ticking/game-presets/preset-revolutionary.ftl b/Resources/Locale/en-US/game-ticking/game-presets/preset-revolutionary.ftl new file mode 100644 index 00000000000..8bcdc249775 --- /dev/null +++ b/Resources/Locale/en-US/game-ticking/game-presets/preset-revolutionary.ftl @@ -0,0 +1,60 @@ +## Rev Head + +roles-antag-rev-head-name = Head Revolutionary +roles-antag-rev-head-objective = Your objective is to take over the station by converting people to your cause and killing all Command staff on station. + +head-rev-role-greeting = + You are a Head Revolutionary. + You are tasked with removing all of Command from station via death or exilement. + The Syndicate has sponsored you with a flash that converts the crew to your side. + Beware, this won't work on Security, Command, or those wearing sunglasses. + Viva la revolución! + +head-rev-briefing = + Use flashes to convert people to your cause. + Kill all heads to take over the station. + +head-rev-initial-name = [color=#5e9cff]{$name}[/color] was one of the Head Revolutionaries. +head-rev-initial-name-user = [color=#5e9cff]{$name}[/color] ([color=gray]{$username}[/color]) was one of the Head Revolutionaries. + +head-rev-initial-count = {$initialCount -> + [one] There was one Head Revolutionary: + *[other] There were {$initialCount} Head Revolutionaries: +} + +head-rev-break-mindshield = The Mindshield was destroyed! + +## Rev + +roles-antag-rev-name = Revolutionary +roles-antag-rev-objective = Your objective is to ensure the safety and follow the orders of the Head Revolutionaries as well as killing all Command staff on station. + +rev-break-control = {$name} has remembered their true allegiance! + +rev-role-greeting = + You are a Revolutionary. + You are tasked with taking over the station and protecting the Head Revolutionaries. + Eliminate all of the Command staff. + Viva la revolución! + +rev-briefing = Help your head revolutionaries kill every head to take over the station. + +## General + +rev-title = Revolutionaries +rev-description = Revolutionaries are among us. + +rev-not-enough-ready-players = Not enough players readied up for the game. There were {$readyPlayersCount} players readied up out of {$minimumPlayers} needed. Can't start a Revolution. +rev-no-one-ready = No players readied up! Can't start a Revolution. + +rev-all-heads-dead = All the heads are dead, now finish up the rest of the crew! + +rev-won = The Head Revs survived and killed all of Command. + +rev-lost = Command survived and killed all of the Head Revs. + +rev-stalemate = All of the Head Revs died and so did all of Command. We'll call it a draw. + +rev-reverse-stalemate = I think the Head Revs and Command forgot to fight because they are both still alive. + + diff --git a/Resources/Locale/en-US/markings/reptilian.ftl b/Resources/Locale/en-US/markings/reptilian.ftl index bd2725c3507..462d4140c2d 100644 --- a/Resources/Locale/en-US/markings/reptilian.ftl +++ b/Resources/Locale/en-US/markings/reptilian.ftl @@ -84,3 +84,6 @@ marking-LizardHornsMyrsore = Lizard Horns (Myrsore) marking-LizardHornsBighorn-horns_bighorn = Lizard Horns (Bighorn) marking-LizardHornsBighorn = Lizard Horns (Bighorn) + +marking-LizardHornsKoboldEars-horns_kobold_ears = Lizard Ears (Kobold) +marking-LizardHornsKoboldEars = Lizard Ears (Kobold) diff --git a/Resources/Locale/en-US/medical/components/defibrillator.ftl b/Resources/Locale/en-US/medical/components/defibrillator.ftl index 9304a07a451..1c32dd801d9 100644 --- a/Resources/Locale/en-US/medical/components/defibrillator.ftl +++ b/Resources/Locale/en-US/medical/components/defibrillator.ftl @@ -1,4 +1,3 @@ defibrillator-not-on = The defibrillator isn't turned on. defibrillator-no-mind = No intelligence pattern can be detected in patient's brain. Further attempts futile. -defibrillator-ghosted = Resuscitation failed - Mental interface error. Further attempts may be successful. defibrillator-rotten = Body decomposition detected: resuscitation failed. diff --git a/Resources/Locale/en-US/nyanotrasen/medical/components/health-analyzer-component.ftl b/Resources/Locale/en-US/nyanotrasen/medical/components/health-analyzer-component.ftl new file mode 100644 index 00000000000..22f2442355a --- /dev/null +++ b/Resources/Locale/en-US/nyanotrasen/medical/components/health-analyzer-component.ftl @@ -0,0 +1,2 @@ +health-analyzer-window-damage-group-Immaterial = Immaterial +health-analyzer-window-damage-type-Holy = Holy diff --git a/Resources/Locale/en-US/prototypes/catalog/cargo/cargo-medical.ftl b/Resources/Locale/en-US/prototypes/catalog/cargo/cargo-medical.ftl index c03883a73e2..42c5880ec0d 100644 --- a/Resources/Locale/en-US/prototypes/catalog/cargo/cargo-medical.ftl +++ b/Resources/Locale/en-US/prototypes/catalog/cargo/cargo-medical.ftl @@ -4,6 +4,9 @@ ent-MedicalSupplies = { ent-CrateMedicalSupplies } ent-MedicalChemistrySupplies = { ent-CrateChemistrySupplies } .desc = { ent-CrateChemistrySupplies.desc } +ent-MedicalMindShieldImplants = { ent-MedicalMindShieldImplants } + .desc = { ent-MedicalMindShieldImplants.desc } + ent-EmergencyBurnKit = { ent-CrateEmergencyBurnKit } .desc = { ent-CrateEmergencyBurnKit.desc } @@ -29,4 +32,4 @@ ent-ChemistryS = { ent-CrateChemistryS } .desc = { ent-CrateChemistryS.desc } ent-ChemistryD = { ent-CrateChemistryD } - .desc = { ent-CrateChemistryD.desc } \ No newline at end of file + .desc = { ent-CrateChemistryD.desc } diff --git a/Resources/Locale/en-US/prototypes/catalog/fills/crates/medical-crates.ftl b/Resources/Locale/en-US/prototypes/catalog/fills/crates/medical-crates.ftl index 19fad66b196..6036bf557c0 100644 --- a/Resources/Locale/en-US/prototypes/catalog/fills/crates/medical-crates.ftl +++ b/Resources/Locale/en-US/prototypes/catalog/fills/crates/medical-crates.ftl @@ -4,6 +4,9 @@ ent-CrateMedicalSupplies = Medical supplies crate ent-CrateChemistrySupplies = Chemistry supplies crate .desc = Basic chemistry supplies. +ent-CrateMindShieldImplants = MindShield implant crate + .desc = Crate filled with 3 MindShield implants. + ent-CrateMedicalSurgery = Surgical supplies crate .desc = Surgical instruments. diff --git a/Resources/Locale/en-US/research/technologies.ftl b/Resources/Locale/en-US/research/technologies.ftl index cc2939a4678..cb4f30de6af 100644 --- a/Resources/Locale/en-US/research/technologies.ftl +++ b/Resources/Locale/en-US/research/technologies.ftl @@ -36,6 +36,7 @@ research-technology-draconic-munitions = Draconic Munitions research-technology-explosive-technology = Explosive Technology research-technology-weaponized-laser-manipulation = Weaponized Laser Manipulation research-technology-nonlethal-ammunition = Nonlethal Ammunition +research-technology-practice-ammunition = Practice Ammunition research-technology-concentrated-laser-weaponry = Concentrated Laser Weaponry research-technology-wave-particle-harnessing = Wave Particle Harnessing research-technology-advanced-riot-control = Advanced Riot Control diff --git a/Resources/Locale/en-US/round-end/round-end-system.ftl b/Resources/Locale/en-US/round-end/round-end-system.ftl index f85bee0323a..f86851506bc 100644 --- a/Resources/Locale/en-US/round-end/round-end-system.ftl +++ b/Resources/Locale/en-US/round-end/round-end-system.ftl @@ -1,6 +1,7 @@ ## RoundEndSystem round-end-system-shuttle-called-announcement = An emergency shuttle has been sent. ETA: {$time} {$units}. +round-end-system-shuttle-already-called-announcement = An emergency shuttle has already been sent. round-end-system-shuttle-auto-called-announcement = An automatic crew shift change shuttle has been sent. ETA: {$time} {$units}. Recall the shuttle to extend the shift. round-end-system-shuttle-recalled-announcement = The emergency shuttle has been recalled. round-end-system-round-restart-eta-announcement = Restarting the round in {$time} {$units}... diff --git a/Resources/Locale/en-US/temperature/entity-heater.ftl b/Resources/Locale/en-US/temperature/entity-heater.ftl new file mode 100644 index 00000000000..a809d508e7c --- /dev/null +++ b/Resources/Locale/en-US/temperature/entity-heater.ftl @@ -0,0 +1,3 @@ +entity-heater-examined = It is set to [color=gray]{$setting}[/color] +entity-heater-switch-setting = Switch to {$setting} +entity-heater-switched-setting = Switched to {$setting} diff --git a/Resources/Locale/en-US/tools/tool-qualities.ftl b/Resources/Locale/en-US/tools/tool-qualities.ftl index d12eb1104eb..331925b4b98 100644 --- a/Resources/Locale/en-US/tools/tool-qualities.ftl +++ b/Resources/Locale/en-US/tools/tool-qualities.ftl @@ -26,4 +26,7 @@ tool-quality-honking-name = Honking tool-quality-honking-tool-name = Bike Horn tool-quality-woodcutting-name = Woodcutting -tool-quality-woodcutting-tool-name = Hatchet \ No newline at end of file +tool-quality-woodcutting-tool-name = Hatchet + +tool-quality-rolling-name = Rolling +tool-quality-rolling-tool-name = Rolling Pin diff --git a/Resources/Maps/Shuttles/trading_outpost.yml b/Resources/Maps/Shuttles/trading_outpost.yml new file mode 100644 index 00000000000..56d16dc90d7 --- /dev/null +++ b/Resources/Maps/Shuttles/trading_outpost.yml @@ -0,0 +1,4750 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 26: FloorDark + 30: FloorDarkMini + 31: FloorDarkMono + 34: FloorDarkPavementVertical + 46: FloorGrassJungle + 91: FloorSteelMono + 92: FloorSteelOffset + 96: FloorTechMaint2 + 97: FloorTechMaint3 + 109: FloorWood + 110: FloorWoodTile + 111: Lattice + 112: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - name: map 20 + type: MetaData + - type: Transform + - type: Map + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree + - type: LoadedMap + - uid: 2 + components: + - name: grid + type: MetaData + - pos: -2.9375,-1.625 + parent: 1 + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: XAAAAAAAHwAAAAAAHwAAAAAAHwAAAAABXAAAAAAAcAAAAAAAXAAAAAAAHwAAAAADHwAAAAADHwAAAAADXAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAHwAAAAADIgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAHwAAAAADcAAAAAAAHwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAbgAAAAACbgAAAAADbgAAAAADLgAAAAAALgAAAAAALgAAAAAAbgAAAAAAbgAAAAABbgAAAAADbQAAAAADcAAAAAAAHwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAbgAAAAADbgAAAAAAbgAAAAADbQAAAAADbQAAAAABbQAAAAADbgAAAAABbgAAAAABbgAAAAACbQAAAAAAHwAAAAAAIgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAbQAAAAACbQAAAAABbQAAAAABbQAAAAABbQAAAAABbQAAAAAAbQAAAAADbQAAAAADbQAAAAAAbQAAAAACbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: HgAAAAAAHgAAAAAAHgAAAAADHgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAABHwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAHwAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAHwAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXAAAAAAAcAAAAAAAXAAAAAAAHwAAAAABHwAAAAADHwAAAAABXAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAHwAAAAACHwAAAAADHwAAAAABYAAAAAAAcAAAAAAAYAAAAAAAHwAAAAAAHwAAAAACHwAAAAADXAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAHwAAAAAAHwAAAAACHwAAAAABYAAAAAAAcAAAAAAAYAAAAAAAHwAAAAAAHwAAAAABHwAAAAABXAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAWwAAAAABWwAAAAADYQAAAAADYQAAAAADYAAAAAAAcAAAAAAAYAAAAAAAYQAAAAACYQAAAAADWwAAAAACWwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAHwAAAAADHwAAAAACHwAAAAABYAAAAAAAcAAAAAAAYAAAAAAAHwAAAAAAHwAAAAACHwAAAAACXAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAHwAAAAABHwAAAAAAHwAAAAABYAAAAAAAcAAAAAAAYAAAAAAAHwAAAAADHwAAAAAAHwAAAAACXAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAHwAAAAABHwAAAAAAHwAAAAADYAAAAAAAcAAAAAAAYAAAAAAAHwAAAAAAHwAAAAABHwAAAAAAXAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAACYQAAAAACYQAAAAABYAAAAAAAcAAAAAAAYAAAAAAAYQAAAAABYQAAAAADWwAAAAABWwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAHwAAAAAAHwAAAAACHwAAAAADYAAAAAAAcAAAAAAAYAAAAAAAHwAAAAAAHwAAAAABHwAAAAAAXAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAHwAAAAADHwAAAAADHwAAAAAAYAAAAAAAcAAAAAAAYAAAAAAAHwAAAAABHwAAAAADHwAAAAAAXAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAIgAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAHwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAHwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAHwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAIgAAAAACHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAHgAAAAABHgAAAAABHgAAAAAAGgAAAAABGgAAAAADGgAAAAACGgAAAAABGgAAAAACGgAAAAACcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAABGgAAAAABGgAAAAAAGgAAAAADGgAAAAACGgAAAAABGgAAAAABHwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 29: 0,2 + 30: 10,2 + 31: 1,-12 + 32: 9,-12 + 33: 10,-16 + 34: 10,-17 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 10: 3,-18 + 11: 3,-17 + 12: 3,-16 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 86: 2,-12 + 87: 3,-12 + 88: 4,-12 + 89: 5,-12 + 90: 6,-12 + 91: 7,-12 + 92: 8,-12 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 93: 1,2 + 94: 2,2 + 95: 3,2 + 96: 4,2 + 97: 5,2 + 98: 6,2 + 99: 7,2 + 100: 8,2 + 101: 9,2 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNe + decals: + 52: 4,-1 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNw + decals: + 51: 6,-1 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSe + decals: + 69: 4,-9 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSw + decals: + 50: 6,-9 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + decals: + 4: 1,-3 + 5: 1,-7 + 53: 4,-8 + 54: 4,-7 + 55: 4,-6 + 56: 4,-5 + 57: 4,-4 + 58: 4,-2 + 59: 4,-3 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 0: 4,-10 + 1: 6,-10 + 6: 3,-12 + 7: 2,-12 + 8: 7,-12 + 9: 8,-12 + 46: 0,-8 + 47: 0,-4 + 48: 10,-4 + 49: 10,-8 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 42: 0,-6 + 43: 0,-2 + 44: 10,-2 + 45: 10,-6 + 70: 4,0 + 79: 2,2 + 80: 3,2 + 81: 4,2 + 82: 5,2 + 83: 6,2 + 84: 8,2 + 85: 7,2 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + decals: + 2: 9,-7 + 3: 9,-3 + 60: 6,-2 + 61: 6,-3 + 62: 6,-4 + 63: 6,-5 + 64: 6,-5 + 65: 6,-6 + 66: 6,-7 + 67: 6,-8 + 68: 6,-8 + - node: + color: '#FFFFFFFF' + id: BushCOne + decals: + 36: 6,4 + - node: + color: '#FFFFFFFF' + id: BushCTwo + decals: + 35: 4,4 + - node: + color: '#FFFFFFFF' + id: Bushi2 + decals: + 37: 5,4 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 38: 9,-7 + 39: 9,-3 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 40: 1,-7 + 41: 1,-3 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 73: 3,-7 + 74: 3,-3 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 75: 4,0 + 76: 6,0 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 71: 7,-7 + 72: 7,-3 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 77: 4,-10 + 78: 6,-10 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSe + decals: + 27: 0,6 + 28: 6,6 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSw + decals: + 25: 4,6 + 26: 10,6 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 19: 0,4 + 20: 0,5 + 21: 6,5 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 13: 1,6 + 14: 2,6 + 15: 3,6 + 16: 7,6 + 17: 9,6 + 18: 8,6 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 22: 4,5 + 23: 10,4 + 24: 10,5 + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 65535 + 0,3: + 0: 14 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 1,2: + 0: 65535 + 1,3: + 0: 15 + 2,0: + 0: 65535 + 2,1: + 0: 65535 + 2,2: + 0: 30583 + 2,3: + 0: 3 + 3,0: + 0: 13107 + 3,1: + 0: 4915 + 0,-4: + 0: 65535 + 0,-3: + 0: 65535 + 0,-2: + 0: 65535 + 0,-1: + 0: 65535 + 1,-4: + 0: 65535 + 1,-3: + 0: 65535 + 1,-2: + 0: 65535 + 1,-1: + 0: 65535 + 2,-4: + 0: 65535 + 2,-3: + 0: 65535 + 2,-2: + 0: 65535 + 2,-1: + 0: 65535 + 3,-2: + 0: 13105 + 1: 2 + 3,-1: + 0: 4403 + 1: 8704 + -1,0: + 0: 61166 + -1,1: + 0: 52974 + -1,-2: + 0: 61164 + 1: 2 + -1,-1: + 0: 52462 + 1: 8704 + -1,-4: + 0: 34952 + -1,-3: + 0: 51336 + 1: 8192 + 0,-5: + 0: 65520 + 1,-5: + 0: 65520 + 2,-5: + 0: 65392 + -1,-5: + 0: 34816 + 3,-3: + 0: 4096 + 1: 8192 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirAlarm + entities: + - uid: 802 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 793 + - 411 + - 400 + - 410 + - 402 + - 790 + - 789 + type: DeviceNetwork + - devices: + - 793 + - 411 + - 400 + - 410 + - 402 + - 790 + - 789 + type: DeviceList + - uid: 803 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 794 + - 402 + - 410 + - 400 + - 411 + - 789 + - 790 + type: DeviceNetwork + - devices: + - 794 + - 402 + - 410 + - 400 + - 411 + - 789 + - 790 + type: DeviceList + - uid: 805 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 796 + - 409 + - 403 + - 401 + - 408 + - 783 + - 782 + type: DeviceNetwork + - devices: + - 796 + - 409 + - 403 + - 401 + - 408 + - 783 + - 782 + type: DeviceList + - uid: 806 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 795 + - 408 + - 401 + - 403 + - 409 + - 783 + - 782 + type: DeviceNetwork + - devices: + - 795 + - 408 + - 401 + - 403 + - 409 + - 783 + - 782 + type: DeviceList +- proto: AirCanister + entities: + - uid: 387 + components: + - pos: 4.5,-15.5 + parent: 2 + type: Transform +- proto: AirlockCargoGlassLocked + entities: + - uid: 248 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,5.5 + parent: 2 + type: Transform + - uid: 249 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,5.5 + parent: 2 + type: Transform +- proto: AirlockCargoLocked + entities: + - uid: 246 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 2 + type: Transform + - uid: 247 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,1.5 + parent: 2 + type: Transform +- proto: AirlockExternalGlass + entities: + - uid: 582 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-5.5 + parent: 2 + type: Transform + - uid: 583 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 2 + type: Transform + - uid: 584 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-5.5 + parent: 2 + type: Transform + - uid: 585 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-3.5 + parent: 2 + type: Transform +- proto: AirlockGlassShuttle + entities: + - uid: 586 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 2 + type: Transform + - uid: 587 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 2 + type: Transform + - uid: 588 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-5.5 + parent: 2 + type: Transform + - uid: 589 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-3.5 + parent: 2 + type: Transform +- proto: AirSensor + entities: + - uid: 793 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 802 + type: DeviceNetwork + - uid: 794 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 803 + type: DeviceNetwork + - uid: 795 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 806 + type: DeviceNetwork + - uid: 796 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 805 + type: DeviceNetwork +- proto: APCBasic + entities: + - uid: 596 + components: + - pos: 1.5,-14.5 + parent: 2 + type: Transform + - uid: 597 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 2 + type: Transform +- proto: CableApcExtension + entities: + - uid: 222 + components: + - pos: 11.5,1.5 + parent: 2 + type: Transform + - uid: 260 + components: + - pos: 12.5,1.5 + parent: 2 + type: Transform + - uid: 283 + components: + - pos: 6.5,5.5 + parent: 2 + type: Transform + - uid: 305 + components: + - pos: 12.5,5.5 + parent: 2 + type: Transform + - uid: 308 + components: + - pos: -0.5,1.5 + parent: 2 + type: Transform + - uid: 309 + components: + - pos: -1.5,1.5 + parent: 2 + type: Transform + - uid: 310 + components: + - pos: 8.5,5.5 + parent: 2 + type: Transform + - uid: 319 + components: + - pos: -1.5,5.5 + parent: 2 + type: Transform + - uid: 320 + components: + - pos: 2.5,5.5 + parent: 2 + type: Transform + - uid: 324 + components: + - pos: -1.5,2.5 + parent: 2 + type: Transform + - uid: 638 + components: + - pos: 1.5,-14.5 + parent: 2 + type: Transform + - uid: 639 + components: + - pos: 1.5,-15.5 + parent: 2 + type: Transform + - uid: 640 + components: + - pos: 2.5,-17.5 + parent: 2 + type: Transform + - uid: 641 + components: + - pos: 2.5,-16.5 + parent: 2 + type: Transform + - uid: 642 + components: + - pos: 3.5,-16.5 + parent: 2 + type: Transform + - uid: 643 + components: + - pos: 4.5,-16.5 + parent: 2 + type: Transform + - uid: 644 + components: + - pos: 5.5,-16.5 + parent: 2 + type: Transform + - uid: 645 + components: + - pos: 6.5,-16.5 + parent: 2 + type: Transform + - uid: 646 + components: + - pos: 7.5,-16.5 + parent: 2 + type: Transform + - uid: 647 + components: + - pos: 8.5,-16.5 + parent: 2 + type: Transform + - uid: 648 + components: + - pos: 9.5,-16.5 + parent: 2 + type: Transform + - uid: 649 + components: + - pos: 10.5,-16.5 + parent: 2 + type: Transform + - uid: 650 + components: + - pos: 10.5,-15.5 + parent: 2 + type: Transform + - uid: 651 + components: + - pos: 8.5,-15.5 + parent: 2 + type: Transform + - uid: 652 + components: + - pos: 8.5,-14.5 + parent: 2 + type: Transform + - uid: 653 + components: + - pos: 8.5,-13.5 + parent: 2 + type: Transform + - uid: 654 + components: + - pos: 2.5,-13.5 + parent: 2 + type: Transform + - uid: 655 + components: + - pos: 2.5,-14.5 + parent: 2 + type: Transform + - uid: 656 + components: + - pos: 2.5,-15.5 + parent: 2 + type: Transform + - uid: 657 + components: + - pos: 2.5,-12.5 + parent: 2 + type: Transform + - uid: 658 + components: + - pos: 8.5,-12.5 + parent: 2 + type: Transform + - uid: 659 + components: + - pos: 1.5,-17.5 + parent: 2 + type: Transform + - uid: 660 + components: + - pos: -0.5,0.5 + parent: 2 + type: Transform + - uid: 661 + components: + - pos: 0.5,0.5 + parent: 2 + type: Transform + - uid: 662 + components: + - pos: 0.5,-0.5 + parent: 2 + type: Transform + - uid: 663 + components: + - pos: 0.5,2.5 + parent: 2 + type: Transform + - uid: 664 + components: + - pos: 1.5,2.5 + parent: 2 + type: Transform + - uid: 665 + components: + - pos: 2.5,2.5 + parent: 2 + type: Transform + - uid: 666 + components: + - pos: 3.5,2.5 + parent: 2 + type: Transform + - uid: 667 + components: + - pos: 5.5,2.5 + parent: 2 + type: Transform + - uid: 668 + components: + - pos: 4.5,2.5 + parent: 2 + type: Transform + - uid: 669 + components: + - pos: 6.5,2.5 + parent: 2 + type: Transform + - uid: 670 + components: + - pos: 7.5,2.5 + parent: 2 + type: Transform + - uid: 671 + components: + - pos: 8.5,2.5 + parent: 2 + type: Transform + - uid: 672 + components: + - pos: 9.5,2.5 + parent: 2 + type: Transform + - uid: 673 + components: + - pos: 0.5,-1.5 + parent: 2 + type: Transform + - uid: 674 + components: + - pos: 0.5,1.5 + parent: 2 + type: Transform + - uid: 675 + components: + - pos: 10.5,2.5 + parent: 2 + type: Transform + - uid: 676 + components: + - pos: 10.5,1.5 + parent: 2 + type: Transform + - uid: 677 + components: + - pos: 10.5,0.5 + parent: 2 + type: Transform + - uid: 678 + components: + - pos: 10.5,-0.5 + parent: 2 + type: Transform + - uid: 679 + components: + - pos: 10.5,-1.5 + parent: 2 + type: Transform + - uid: 680 + components: + - pos: 10.5,-2.5 + parent: 2 + type: Transform + - uid: 681 + components: + - pos: 10.5,-3.5 + parent: 2 + type: Transform + - uid: 682 + components: + - pos: 10.5,-4.5 + parent: 2 + type: Transform + - uid: 683 + components: + - pos: 10.5,-5.5 + parent: 2 + type: Transform + - uid: 684 + components: + - pos: 10.5,-6.5 + parent: 2 + type: Transform + - uid: 685 + components: + - pos: 10.5,-7.5 + parent: 2 + type: Transform + - uid: 686 + components: + - pos: 10.5,-8.5 + parent: 2 + type: Transform + - uid: 687 + components: + - pos: 10.5,-9.5 + parent: 2 + type: Transform + - uid: 688 + components: + - pos: 10.5,-10.5 + parent: 2 + type: Transform + - uid: 689 + components: + - pos: 9.5,-10.5 + parent: 2 + type: Transform + - uid: 690 + components: + - pos: 8.5,-10.5 + parent: 2 + type: Transform + - uid: 691 + components: + - pos: 7.5,-10.5 + parent: 2 + type: Transform + - uid: 692 + components: + - pos: 6.5,-10.5 + parent: 2 + type: Transform + - uid: 693 + components: + - pos: 5.5,-10.5 + parent: 2 + type: Transform + - uid: 694 + components: + - pos: 4.5,-10.5 + parent: 2 + type: Transform + - uid: 695 + components: + - pos: 3.5,-10.5 + parent: 2 + type: Transform + - uid: 696 + components: + - pos: 2.5,-10.5 + parent: 2 + type: Transform + - uid: 697 + components: + - pos: 1.5,-10.5 + parent: 2 + type: Transform + - uid: 698 + components: + - pos: 0.5,-10.5 + parent: 2 + type: Transform + - uid: 699 + components: + - pos: 0.5,-9.5 + parent: 2 + type: Transform + - uid: 700 + components: + - pos: 0.5,-8.5 + parent: 2 + type: Transform + - uid: 701 + components: + - pos: 0.5,-7.5 + parent: 2 + type: Transform + - uid: 702 + components: + - pos: 0.5,-6.5 + parent: 2 + type: Transform + - uid: 703 + components: + - pos: 0.5,-5.5 + parent: 2 + type: Transform + - uid: 704 + components: + - pos: 0.5,-4.5 + parent: 2 + type: Transform + - uid: 705 + components: + - pos: 0.5,-3.5 + parent: 2 + type: Transform + - uid: 706 + components: + - pos: 0.5,-2.5 + parent: 2 + type: Transform + - uid: 707 + components: + - pos: 1.5,-0.5 + parent: 2 + type: Transform + - uid: 708 + components: + - pos: 2.5,-0.5 + parent: 2 + type: Transform + - uid: 709 + components: + - pos: 3.5,-0.5 + parent: 2 + type: Transform + - uid: 710 + components: + - pos: 4.5,-0.5 + parent: 2 + type: Transform + - uid: 711 + components: + - pos: 4.5,-8.5 + parent: 2 + type: Transform + - uid: 712 + components: + - pos: 3.5,-8.5 + parent: 2 + type: Transform + - uid: 713 + components: + - pos: 2.5,-8.5 + parent: 2 + type: Transform + - uid: 714 + components: + - pos: 1.5,-8.5 + parent: 2 + type: Transform + - uid: 715 + components: + - pos: 6.5,-8.5 + parent: 2 + type: Transform + - uid: 716 + components: + - pos: 7.5,-8.5 + parent: 2 + type: Transform + - uid: 717 + components: + - pos: 8.5,-8.5 + parent: 2 + type: Transform + - uid: 718 + components: + - pos: 9.5,-8.5 + parent: 2 + type: Transform + - uid: 719 + components: + - pos: 9.5,-0.5 + parent: 2 + type: Transform + - uid: 720 + components: + - pos: 8.5,-0.5 + parent: 2 + type: Transform + - uid: 721 + components: + - pos: 7.5,-0.5 + parent: 2 + type: Transform + - uid: 722 + components: + - pos: 6.5,-0.5 + parent: 2 + type: Transform + - uid: 723 + components: + - pos: 11.5,-3.5 + parent: 2 + type: Transform + - uid: 724 + components: + - pos: 12.5,-3.5 + parent: 2 + type: Transform + - uid: 725 + components: + - pos: 13.5,-3.5 + parent: 2 + type: Transform + - uid: 726 + components: + - pos: 13.5,-5.5 + parent: 2 + type: Transform + - uid: 727 + components: + - pos: 12.5,-5.5 + parent: 2 + type: Transform + - uid: 728 + components: + - pos: 11.5,-5.5 + parent: 2 + type: Transform + - uid: 729 + components: + - pos: -0.5,-5.5 + parent: 2 + type: Transform + - uid: 730 + components: + - pos: -1.5,-5.5 + parent: 2 + type: Transform + - uid: 731 + components: + - pos: -2.5,-5.5 + parent: 2 + type: Transform + - uid: 732 + components: + - pos: -0.5,-3.5 + parent: 2 + type: Transform + - uid: 733 + components: + - pos: -1.5,-3.5 + parent: 2 + type: Transform + - uid: 734 + components: + - pos: -2.5,-3.5 + parent: 2 + type: Transform + - uid: 739 + components: + - pos: 7.5,5.5 + parent: 2 + type: Transform + - uid: 740 + components: + - pos: 5.5,5.5 + parent: 2 + type: Transform + - uid: 741 + components: + - pos: 4.5,5.5 + parent: 2 + type: Transform + - uid: 742 + components: + - pos: 3.5,5.5 + parent: 2 + type: Transform + - uid: 744 + components: + - pos: 1.5,5.5 + parent: 2 + type: Transform + - uid: 745 + components: + - pos: 0.5,5.5 + parent: 2 + type: Transform + - uid: 747 + components: + - pos: 9.5,5.5 + parent: 2 + type: Transform + - uid: 748 + components: + - pos: 10.5,5.5 + parent: 2 + type: Transform + - uid: 749 + components: + - pos: 11.5,5.5 + parent: 2 + type: Transform + - uid: 751 + components: + - pos: 12.5,4.5 + parent: 2 + type: Transform + - uid: 752 + components: + - pos: 12.5,3.5 + parent: 2 + type: Transform + - uid: 753 + components: + - pos: 12.5,2.5 + parent: 2 + type: Transform + - uid: 757 + components: + - pos: -1.5,3.5 + parent: 2 + type: Transform + - uid: 758 + components: + - pos: -1.5,4.5 + parent: 2 + type: Transform + - uid: 760 + components: + - pos: -0.5,5.5 + parent: 2 + type: Transform +- proto: CableHV + entities: + - uid: 591 + components: + - pos: 2.5,-17.5 + parent: 2 + type: Transform + - uid: 592 + components: + - pos: 1.5,-17.5 + parent: 2 + type: Transform + - uid: 593 + components: + - pos: 3.5,-17.5 + parent: 2 + type: Transform + - uid: 594 + components: + - pos: 3.5,-16.5 + parent: 2 + type: Transform + - uid: 595 + components: + - pos: 3.5,-15.5 + parent: 2 + type: Transform +- proto: CableMV + entities: + - uid: 599 + components: + - pos: 3.5,-15.5 + parent: 2 + type: Transform + - uid: 600 + components: + - pos: 2.5,-15.5 + parent: 2 + type: Transform + - uid: 601 + components: + - pos: -0.5,0.5 + parent: 2 + type: Transform + - uid: 602 + components: + - pos: 1.5,-14.5 + parent: 2 + type: Transform + - uid: 603 + components: + - pos: 2.5,-14.5 + parent: 2 + type: Transform + - uid: 604 + components: + - pos: 2.5,-13.5 + parent: 2 + type: Transform + - uid: 605 + components: + - pos: 2.5,-12.5 + parent: 2 + type: Transform + - uid: 606 + components: + - pos: 2.5,-11.5 + parent: 2 + type: Transform + - uid: 607 + components: + - pos: 1.5,1.5 + parent: 2 + type: Transform + - uid: 608 + components: + - pos: 2.5,1.5 + parent: 2 + type: Transform + - uid: 609 + components: + - pos: 2.5,0.5 + parent: 2 + type: Transform + - uid: 610 + components: + - pos: 2.5,-0.5 + parent: 2 + type: Transform + - uid: 611 + components: + - pos: 2.5,-1.5 + parent: 2 + type: Transform + - uid: 612 + components: + - pos: 2.5,-2.5 + parent: 2 + type: Transform + - uid: 613 + components: + - pos: 2.5,-3.5 + parent: 2 + type: Transform + - uid: 614 + components: + - pos: 2.5,-4.5 + parent: 2 + type: Transform + - uid: 615 + components: + - pos: 2.5,-5.5 + parent: 2 + type: Transform + - uid: 616 + components: + - pos: 2.5,-6.5 + parent: 2 + type: Transform + - uid: 617 + components: + - pos: 2.5,-7.5 + parent: 2 + type: Transform + - uid: 618 + components: + - pos: 2.5,-8.5 + parent: 2 + type: Transform + - uid: 619 + components: + - pos: 2.5,-9.5 + parent: 2 + type: Transform + - uid: 620 + components: + - pos: 2.5,-10.5 + parent: 2 + type: Transform + - uid: 621 + components: + - pos: 0.5,1.5 + parent: 2 + type: Transform + - uid: 622 + components: + - pos: -0.5,1.5 + parent: 2 + type: Transform + - uid: 628 + components: + - pos: -0.5,5.5 + parent: 2 + type: Transform + - uid: 629 + components: + - pos: 0.5,5.5 + parent: 2 + type: Transform + - uid: 630 + components: + - pos: 1.5,5.5 + parent: 2 + type: Transform + - uid: 633 + components: + - pos: 6.5,6.5 + parent: 2 + type: Transform + - uid: 634 + components: + - pos: 6.5,5.5 + parent: 2 + type: Transform + - uid: 635 + components: + - pos: 5.5,5.5 + parent: 2 + type: Transform + - uid: 636 + components: + - pos: 4.5,5.5 + parent: 2 + type: Transform + - uid: 637 + components: + - pos: 3.5,5.5 + parent: 2 + type: Transform +- proto: CableTerminal + entities: + - uid: 590 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-17.5 + parent: 2 + type: Transform +- proto: CargoPallet + entities: + - uid: 20 + components: + - pos: 7.5,0.5 + parent: 2 + type: Transform + - uid: 21 + components: + - pos: 8.5,0.5 + parent: 2 + type: Transform + - uid: 22 + components: + - pos: 9.5,0.5 + parent: 2 + type: Transform + - uid: 23 + components: + - pos: 9.5,-0.5 + parent: 2 + type: Transform + - uid: 24 + components: + - pos: 8.5,-0.5 + parent: 2 + type: Transform + - uid: 25 + components: + - pos: 7.5,-0.5 + parent: 2 + type: Transform + - uid: 26 + components: + - pos: 7.5,-1.5 + parent: 2 + type: Transform + - uid: 27 + components: + - pos: 8.5,-1.5 + parent: 2 + type: Transform + - uid: 28 + components: + - pos: 9.5,-1.5 + parent: 2 + type: Transform + - uid: 29 + components: + - pos: 9.5,-8.5 + parent: 2 + type: Transform + - uid: 30 + components: + - pos: 8.5,-8.5 + parent: 2 + type: Transform + - uid: 31 + components: + - pos: 7.5,-8.5 + parent: 2 + type: Transform + - uid: 32 + components: + - pos: 2.5,-7.5 + parent: 2 + type: Transform + - uid: 33 + components: + - pos: 7.5,-7.5 + parent: 2 + type: Transform + - uid: 34 + components: + - pos: 1.5,-8.5 + parent: 2 + type: Transform + - uid: 35 + components: + - pos: 8.5,-7.5 + parent: 2 + type: Transform + - uid: 36 + components: + - pos: 1.5,-7.5 + parent: 2 + type: Transform + - uid: 37 + components: + - pos: 9.5,-7.5 + parent: 2 + type: Transform + - uid: 38 + components: + - pos: 7.5,-3.5 + parent: 2 + type: Transform + - uid: 39 + components: + - pos: 7.5,-4.5 + parent: 2 + type: Transform + - uid: 40 + components: + - pos: 7.5,-5.5 + parent: 2 + type: Transform + - uid: 41 + components: + - pos: 8.5,-5.5 + parent: 2 + type: Transform + - uid: 42 + components: + - pos: 8.5,-3.5 + parent: 2 + type: Transform + - uid: 43 + components: + - pos: 8.5,-4.5 + parent: 2 + type: Transform + - uid: 44 + components: + - pos: 9.5,-3.5 + parent: 2 + type: Transform + - uid: 45 + components: + - pos: 9.5,-4.5 + parent: 2 + type: Transform + - uid: 46 + components: + - pos: 9.5,-5.5 + parent: 2 + type: Transform + - uid: 47 + components: + - pos: 9.5,-9.5 + parent: 2 + type: Transform + - uid: 48 + components: + - pos: 8.5,-9.5 + parent: 2 + type: Transform + - uid: 49 + components: + - pos: 7.5,-9.5 + parent: 2 + type: Transform + - uid: 50 + components: + - pos: 3.5,-7.5 + parent: 2 + type: Transform + - uid: 51 + components: + - pos: 3.5,-9.5 + parent: 2 + type: Transform + - uid: 52 + components: + - pos: 3.5,-8.5 + parent: 2 + type: Transform + - uid: 53 + components: + - pos: 3.5,-3.5 + parent: 2 + type: Transform + - uid: 54 + components: + - pos: 3.5,-5.5 + parent: 2 + type: Transform + - uid: 55 + components: + - pos: 3.5,-4.5 + parent: 2 + type: Transform + - uid: 56 + components: + - pos: 3.5,-1.5 + parent: 2 + type: Transform + - uid: 57 + components: + - pos: 2.5,-8.5 + parent: 2 + type: Transform + - uid: 58 + components: + - pos: 3.5,-0.5 + parent: 2 + type: Transform + - uid: 59 + components: + - pos: 3.5,0.5 + parent: 2 + type: Transform + - uid: 60 + components: + - pos: 1.5,-9.5 + parent: 2 + type: Transform + - uid: 61 + components: + - pos: 2.5,-9.5 + parent: 2 + type: Transform + - uid: 62 + components: + - pos: 2.5,-5.5 + parent: 2 + type: Transform + - uid: 63 + components: + - pos: 1.5,-5.5 + parent: 2 + type: Transform + - uid: 64 + components: + - pos: 1.5,-4.5 + parent: 2 + type: Transform + - uid: 65 + components: + - pos: 2.5,-4.5 + parent: 2 + type: Transform + - uid: 66 + components: + - pos: 2.5,-3.5 + parent: 2 + type: Transform + - uid: 67 + components: + - pos: 1.5,-3.5 + parent: 2 + type: Transform + - uid: 68 + components: + - pos: 2.5,-1.5 + parent: 2 + type: Transform + - uid: 69 + components: + - pos: 1.5,-1.5 + parent: 2 + type: Transform + - uid: 70 + components: + - pos: 1.5,-0.5 + parent: 2 + type: Transform + - uid: 71 + components: + - pos: 2.5,-0.5 + parent: 2 + type: Transform + - uid: 72 + components: + - pos: 2.5,0.5 + parent: 2 + type: Transform + - uid: 73 + components: + - pos: 1.5,0.5 + parent: 2 + type: Transform +- proto: CarpetBlack + entities: + - uid: 265 + components: + - pos: 3.5,5.5 + parent: 2 + type: Transform + - uid: 266 + components: + - pos: 3.5,6.5 + parent: 2 + type: Transform + - uid: 267 + components: + - pos: 4.5,6.5 + parent: 2 + type: Transform + - uid: 268 + components: + - pos: 5.5,6.5 + parent: 2 + type: Transform + - uid: 269 + components: + - pos: 6.5,6.5 + parent: 2 + type: Transform + - uid: 270 + components: + - pos: 7.5,6.5 + parent: 2 + type: Transform + - uid: 271 + components: + - pos: 7.5,5.5 + parent: 2 + type: Transform + - uid: 272 + components: + - pos: 6.5,5.5 + parent: 2 + type: Transform + - uid: 273 + components: + - pos: 5.5,5.5 + parent: 2 + type: Transform + - uid: 274 + components: + - pos: 4.5,5.5 + parent: 2 + type: Transform + - uid: 275 + components: + - pos: 1.5,5.5 + parent: 2 + type: Transform + - uid: 276 + components: + - pos: 1.5,6.5 + parent: 2 + type: Transform + - uid: 277 + components: + - pos: 0.5,6.5 + parent: 2 + type: Transform + - uid: 278 + components: + - pos: 0.5,5.5 + parent: 2 + type: Transform + - uid: 279 + components: + - pos: 9.5,6.5 + parent: 2 + type: Transform + - uid: 280 + components: + - pos: 9.5,5.5 + parent: 2 + type: Transform + - uid: 281 + components: + - pos: 10.5,5.5 + parent: 2 + type: Transform + - uid: 282 + components: + - pos: 10.5,6.5 + parent: 2 + type: Transform +- proto: CarpetOrange + entities: + - uid: 374 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-15.5 + parent: 2 + type: Transform + - uid: 375 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-15.5 + parent: 2 + type: Transform + - uid: 376 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-15.5 + parent: 2 + type: Transform + - uid: 377 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-16.5 + parent: 2 + type: Transform + - uid: 378 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-16.5 + parent: 2 + type: Transform + - uid: 379 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-16.5 + parent: 2 + type: Transform +- proto: Catwalk + entities: + - uid: 294 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,4.5 + parent: 2 + type: Transform + - uid: 295 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,3.5 + parent: 2 + type: Transform + - uid: 296 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,2.5 + parent: 2 + type: Transform + - uid: 297 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 2 + type: Transform + - uid: 298 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,3.5 + parent: 2 + type: Transform + - uid: 299 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 2 + type: Transform + - uid: 313 + components: + - pos: -1.5,-3.5 + parent: 2 + type: Transform + - uid: 560 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 2 + type: Transform + - uid: 562 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-3.5 + parent: 2 + type: Transform + - uid: 563 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-5.5 + parent: 2 + type: Transform +- proto: Chair + entities: + - uid: 94 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-11.5 + parent: 2 + type: Transform + - uid: 99 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-11.5 + parent: 2 + type: Transform + - uid: 138 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-11.5 + parent: 2 + type: Transform + - uid: 143 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-11.5 + parent: 2 + type: Transform + - uid: 226 + components: + - pos: 8.5,2.5 + parent: 2 + type: Transform + - uid: 227 + components: + - pos: 7.5,2.5 + parent: 2 + type: Transform + - uid: 394 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-11.5 + parent: 2 + type: Transform + - uid: 395 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-11.5 + parent: 2 + type: Transform + - uid: 396 + components: + - pos: 2.5,2.5 + parent: 2 + type: Transform + - uid: 405 + components: + - pos: 3.5,2.5 + parent: 2 + type: Transform + - uid: 406 + components: + - pos: 4.5,2.5 + parent: 2 + type: Transform + - uid: 407 + components: + - pos: 6.5,2.5 + parent: 2 + type: Transform +- proto: ChairPilotSeat + entities: + - uid: 372 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-16.5 + parent: 2 + type: Transform + - uid: 373 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-15.5 + parent: 2 + type: Transform +- proto: ChairWood + entities: + - uid: 253 + components: + - pos: 2.5,5.5 + parent: 2 + type: Transform + - uid: 254 + components: + - pos: 7.5,5.5 + parent: 2 + type: Transform + - uid: 255 + components: + - pos: 3.5,5.5 + parent: 2 + type: Transform + - uid: 258 + components: + - pos: 1.5,5.5 + parent: 2 + type: Transform + - uid: 263 + components: + - pos: 8.5,5.5 + parent: 2 + type: Transform + - uid: 264 + components: + - pos: 9.5,5.5 + parent: 2 + type: Transform +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 354 + components: + - pos: 0.5,2.5 + parent: 2 + type: Transform +- proto: ClosetFireFilled + entities: + - uid: 355 + components: + - pos: 10.5,2.5 + parent: 2 + type: Transform +- proto: ConveyorBelt + entities: + - uid: 81 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 2 + type: Transform + - links: + - 365 + type: DeviceLinkSink + - uid: 82 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 2 + type: Transform + - links: + - 366 + type: DeviceLinkSink + - uid: 108 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-2.5 + parent: 2 + type: Transform + - links: + - 393 + type: DeviceLinkSink + - uid: 110 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 2 + type: Transform + - links: + - 365 + type: DeviceLinkSink + - uid: 329 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 2 + type: Transform + - links: + - 366 + type: DeviceLinkSink + - uid: 330 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-6.5 + parent: 2 + type: Transform + - links: + - 404 + type: DeviceLinkSink + - uid: 331 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-6.5 + parent: 2 + type: Transform + - links: + - 404 + type: DeviceLinkSink + - uid: 335 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-6.5 + parent: 2 + type: Transform + - links: + - 404 + type: DeviceLinkSink + - uid: 337 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-2.5 + parent: 2 + type: Transform + - links: + - 393 + type: DeviceLinkSink + - uid: 338 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 2 + type: Transform + - links: + - 366 + type: DeviceLinkSink + - uid: 339 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 2 + type: Transform + - links: + - 365 + type: DeviceLinkSink + - uid: 340 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 2 + type: Transform + - links: + - 393 + type: DeviceLinkSink + - uid: 359 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 2 + type: Transform + - links: + - 393 + type: DeviceLinkSink + - uid: 362 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-6.5 + parent: 2 + type: Transform + - links: + - 404 + type: DeviceLinkSink + - uid: 363 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 2 + type: Transform + - links: + - 365 + type: DeviceLinkSink + - uid: 364 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 2 + type: Transform + - links: + - 366 + type: DeviceLinkSink +- proto: ExtinguisherCabinetFilled + entities: + - uid: 360 + components: + - rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 2 + type: Transform + - uid: 361 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-9.5 + parent: 2 + type: Transform +- proto: Firelock + entities: + - uid: 789 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 803 + - 802 + type: DeviceNetwork + - uid: 790 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,1.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 803 + - 802 + type: DeviceNetwork +- proto: FirelockEdge + entities: + - uid: 786 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-16.5 + parent: 2 + type: Transform +- proto: FirelockGlass + entities: + - uid: 782 + components: + - rot: 3.141592653589793 rad + pos: 11.5,5.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 806 + - 805 + type: DeviceNetwork + - uid: 783 + components: + - rot: 3.141592653589793 rad + pos: -0.5,5.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 806 + - 805 + type: DeviceNetwork +- proto: GasOutletInjector + entities: + - uid: 386 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-15.5 + parent: 2 + type: Transform +- proto: GasPassiveVent + entities: + - uid: 397 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-15.5 + parent: 2 + type: Transform + - uid: 414 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-13.5 + parent: 2 + type: Transform +- proto: GasPipeBend + entities: + - uid: 316 + components: + - pos: 7.5,6.5 + parent: 2 + type: Transform + - uid: 317 + components: + - rot: 3.141592653589793 rad + pos: 7.5,4.5 + parent: 2 + type: Transform + - uid: 318 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 2 + type: Transform + - uid: 322 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,6.5 + parent: 2 + type: Transform + - uid: 434 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-17.5 + parent: 2 + type: Transform + - uid: 457 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-11.5 + parent: 2 + type: Transform + - uid: 458 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-8.5 + parent: 2 + type: Transform + - uid: 475 + components: + - pos: 3.5,-8.5 + parent: 2 + type: Transform + - uid: 476 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-10.5 + parent: 2 + type: Transform + - uid: 486 + components: + - pos: 2.5,1.5 + parent: 2 + type: Transform + - uid: 487 + components: + - rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 2 + type: Transform + - uid: 488 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,5.5 + parent: 2 + type: Transform + - uid: 489 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,1.5 + parent: 2 + type: Transform + - uid: 490 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,1.5 + parent: 2 + type: Transform + - uid: 491 + components: + - pos: 12.5,5.5 + parent: 2 + type: Transform + - uid: 512 + components: + - rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 2 + type: Transform + - uid: 520 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,4.5 + parent: 2 + type: Transform + - uid: 522 + components: + - rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 2 + type: Transform +- proto: GasPipeStraight + entities: + - uid: 223 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,6.5 + parent: 2 + type: Transform + - uid: 241 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,6.5 + parent: 2 + type: Transform + - uid: 250 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,6.5 + parent: 2 + type: Transform + - uid: 284 + components: + - pos: 7.5,5.5 + parent: 2 + type: Transform + - uid: 321 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,5.5 + parent: 2 + type: Transform + - uid: 323 + components: + - pos: 3.5,5.5 + parent: 2 + type: Transform + - uid: 417 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-14.5 + parent: 2 + type: Transform + - uid: 418 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-13.5 + parent: 2 + type: Transform + - uid: 419 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-12.5 + parent: 2 + type: Transform + - uid: 420 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-11.5 + parent: 2 + type: Transform + - uid: 421 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-16.5 + parent: 2 + type: Transform + - uid: 422 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-16.5 + parent: 2 + type: Transform + - uid: 423 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-16.5 + parent: 2 + type: Transform + - uid: 424 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-16.5 + parent: 2 + type: Transform + - uid: 425 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-16.5 + parent: 2 + type: Transform + - uid: 426 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-16.5 + parent: 2 + type: Transform + - uid: 428 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-15.5 + parent: 2 + type: Transform + - uid: 430 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-14.5 + parent: 2 + type: Transform + - uid: 431 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-13.5 + parent: 2 + type: Transform + - uid: 432 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-12.5 + parent: 2 + type: Transform + - uid: 435 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-16.5 + parent: 2 + type: Transform + - uid: 436 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-17.5 + parent: 2 + type: Transform + - uid: 437 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-17.5 + parent: 2 + type: Transform + - uid: 438 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-17.5 + parent: 2 + type: Transform + - uid: 439 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-17.5 + parent: 2 + type: Transform + - uid: 442 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 2 + type: Transform + - uid: 443 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 2 + type: Transform + - uid: 444 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 2 + type: Transform + - uid: 445 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 2 + type: Transform + - uid: 446 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-4.5 + parent: 2 + type: Transform + - uid: 447 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 2 + type: Transform + - uid: 448 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-6.5 + parent: 2 + type: Transform + - uid: 449 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 2 + type: Transform + - uid: 450 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-8.5 + parent: 2 + type: Transform + - uid: 451 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-9.5 + parent: 2 + type: Transform + - uid: 452 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-10.5 + parent: 2 + type: Transform + - uid: 453 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 2 + type: Transform + - uid: 454 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 2 + type: Transform + - uid: 455 + components: + - pos: 5.5,-12.5 + parent: 2 + type: Transform + - uid: 456 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-11.5 + parent: 2 + type: Transform + - uid: 459 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 2 + type: Transform + - uid: 460 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-8.5 + parent: 2 + type: Transform + - uid: 461 + components: + - pos: 7.5,-10.5 + parent: 2 + type: Transform + - uid: 462 + components: + - pos: 7.5,-9.5 + parent: 2 + type: Transform + - uid: 464 + components: + - pos: 8.5,-9.5 + parent: 2 + type: Transform + - uid: 465 + components: + - pos: 8.5,-8.5 + parent: 2 + type: Transform + - uid: 466 + components: + - pos: 8.5,-7.5 + parent: 2 + type: Transform + - uid: 467 + components: + - pos: 8.5,-6.5 + parent: 2 + type: Transform + - uid: 468 + components: + - pos: 8.5,-5.5 + parent: 2 + type: Transform + - uid: 469 + components: + - pos: 8.5,-4.5 + parent: 2 + type: Transform + - uid: 470 + components: + - pos: 8.5,-3.5 + parent: 2 + type: Transform + - uid: 471 + components: + - pos: 8.5,-2.5 + parent: 2 + type: Transform + - uid: 472 + components: + - pos: 8.5,-1.5 + parent: 2 + type: Transform + - uid: 473 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 2 + type: Transform + - uid: 477 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 2 + type: Transform + - uid: 478 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 2 + type: Transform + - uid: 479 + components: + - pos: 3.5,-9.5 + parent: 2 + type: Transform + - uid: 480 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-10.5 + parent: 2 + type: Transform + - uid: 481 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-10.5 + parent: 2 + type: Transform + - uid: 482 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 2 + type: Transform + - uid: 483 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-10.5 + parent: 2 + type: Transform + - uid: 484 + components: + - rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 2 + type: Transform + - uid: 485 + components: + - rot: 3.141592653589793 rad + pos: 8.5,0.5 + parent: 2 + type: Transform + - uid: 492 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,1.5 + parent: 2 + type: Transform + - uid: 493 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,1.5 + parent: 2 + type: Transform + - uid: 494 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,1.5 + parent: 2 + type: Transform + - uid: 495 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 2 + type: Transform + - uid: 496 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 2 + type: Transform + - uid: 497 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 2 + type: Transform + - uid: 498 + components: + - rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 2 + type: Transform + - uid: 499 + components: + - rot: 3.141592653589793 rad + pos: -1.5,3.5 + parent: 2 + type: Transform + - uid: 500 + components: + - rot: 3.141592653589793 rad + pos: -1.5,4.5 + parent: 2 + type: Transform + - uid: 501 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,5.5 + parent: 2 + type: Transform + - uid: 502 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,5.5 + parent: 2 + type: Transform + - uid: 503 + components: + - pos: 12.5,4.5 + parent: 2 + type: Transform + - uid: 504 + components: + - pos: 12.5,3.5 + parent: 2 + type: Transform + - uid: 505 + components: + - pos: 12.5,2.5 + parent: 2 + type: Transform + - uid: 506 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,5.5 + parent: 2 + type: Transform + - uid: 507 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,5.5 + parent: 2 + type: Transform + - uid: 508 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,5.5 + parent: 2 + type: Transform + - uid: 511 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 2 + type: Transform + - uid: 513 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,4.5 + parent: 2 + type: Transform + - uid: 519 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,4.5 + parent: 2 + type: Transform + - uid: 521 + components: + - rot: 3.141592653589793 rad + pos: 9.5,5.5 + parent: 2 + type: Transform + - uid: 523 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,5.5 + parent: 2 + type: Transform + - uid: 524 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,5.5 + parent: 2 + type: Transform + - uid: 525 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,5.5 + parent: 2 + type: Transform + - uid: 526 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,5.5 + parent: 2 + type: Transform +- proto: GasPipeTJunction + entities: + - uid: 415 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-16.5 + parent: 2 + type: Transform + - uid: 416 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-15.5 + parent: 2 + type: Transform + - uid: 429 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-15.5 + parent: 2 + type: Transform + - uid: 433 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 2 + type: Transform + - uid: 440 + components: + - pos: 5.5,-11.5 + parent: 2 + type: Transform + - uid: 441 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 2 + type: Transform + - uid: 463 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 2 + type: Transform + - uid: 474 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 2 + type: Transform + - uid: 509 + components: + - rot: 3.141592653589793 rad + pos: 8.5,5.5 + parent: 2 + type: Transform + - uid: 510 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,5.5 + parent: 2 + type: Transform +- proto: GasPort + entities: + - uid: 427 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-15.5 + parent: 2 + type: Transform +- proto: GasVentPump + entities: + - uid: 398 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-17.5 + parent: 2 + type: Transform + - uid: 400 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 803 + - 802 + type: DeviceNetwork + - uid: 401 + components: + - pos: 2.5,6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 806 + - 805 + type: DeviceNetwork + - uid: 402 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 803 + - 802 + type: DeviceNetwork + - uid: 403 + components: + - pos: 8.5,6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 806 + - 805 + type: DeviceNetwork + - uid: 412 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-16.5 + parent: 2 + type: Transform +- proto: GasVentScrubber + entities: + - uid: 399 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-15.5 + parent: 2 + type: Transform + - uid: 408 + components: + - pos: 1.5,6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 806 + - 805 + type: DeviceNetwork + - uid: 409 + components: + - pos: 9.5,6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 806 + - 805 + type: DeviceNetwork + - uid: 410 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 803 + - 802 + type: DeviceNetwork + - uid: 411 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 803 + - 802 + type: DeviceNetwork + - uid: 413 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-17.5 + parent: 2 + type: Transform +- proto: GeneratorRTG + entities: + - uid: 367 + components: + - pos: 1.5,-17.5 + parent: 2 + type: Transform + - uid: 368 + components: + - pos: 2.5,-17.5 + parent: 2 + type: Transform +- proto: GravityGeneratorMini + entities: + - uid: 382 + components: + - pos: 0.5,-16.5 + parent: 2 + type: Transform +- proto: Grille + entities: + - uid: 14 + components: + - pos: 5.5,-1.5 + parent: 2 + type: Transform + - uid: 15 + components: + - pos: 5.5,-2.5 + parent: 2 + type: Transform + - uid: 16 + components: + - pos: 5.5,-3.5 + parent: 2 + type: Transform + - uid: 17 + components: + - pos: 5.5,-4.5 + parent: 2 + type: Transform + - uid: 18 + components: + - pos: 5.5,-5.5 + parent: 2 + type: Transform + - uid: 19 + components: + - pos: 5.5,-6.5 + parent: 2 + type: Transform + - uid: 75 + components: + - pos: 5.5,-7.5 + parent: 2 + type: Transform + - uid: 146 + components: + - rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 2 + type: Transform + - uid: 147 + components: + - rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 2 + type: Transform + - uid: 148 + components: + - rot: 3.141592653589793 rad + pos: 3.5,3.5 + parent: 2 + type: Transform + - uid: 149 + components: + - rot: 3.141592653589793 rad + pos: 7.5,3.5 + parent: 2 + type: Transform + - uid: 150 + components: + - rot: 3.141592653589793 rad + pos: 8.5,3.5 + parent: 2 + type: Transform + - uid: 151 + components: + - rot: 3.141592653589793 rad + pos: 9.5,3.5 + parent: 2 + type: Transform + - uid: 153 + components: + - rot: 3.141592653589793 rad + pos: -2.5,5.5 + parent: 2 + type: Transform + - uid: 162 + components: + - rot: 3.141592653589793 rad + pos: 13.5,3.5 + parent: 2 + type: Transform + - uid: 163 + components: + - rot: 3.141592653589793 rad + pos: 13.5,2.5 + parent: 2 + type: Transform + - uid: 164 + components: + - rot: 3.141592653589793 rad + pos: 13.5,1.5 + parent: 2 + type: Transform + - uid: 166 + components: + - rot: 3.141592653589793 rad + pos: 12.5,0.5 + parent: 2 + type: Transform + - uid: 167 + components: + - rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 2 + type: Transform + - uid: 168 + components: + - rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 2 + type: Transform + - uid: 169 + components: + - rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 2 + type: Transform + - uid: 170 + components: + - rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 2 + type: Transform + - uid: 171 + components: + - rot: 3.141592653589793 rad + pos: -2.5,3.5 + parent: 2 + type: Transform + - uid: 194 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-13.5 + parent: 2 + type: Transform + - uid: 195 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-13.5 + parent: 2 + type: Transform + - uid: 196 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-13.5 + parent: 2 + type: Transform + - uid: 197 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-13.5 + parent: 2 + type: Transform + - uid: 224 + components: + - pos: 8.5,-13.5 + parent: 2 + type: Transform + - uid: 225 + components: + - pos: 2.5,-13.5 + parent: 2 + type: Transform + - uid: 228 + components: + - rot: 3.141592653589793 rad + pos: 13.5,4.5 + parent: 2 + type: Transform + - uid: 229 + components: + - rot: 3.141592653589793 rad + pos: 13.5,5.5 + parent: 2 + type: Transform + - uid: 303 + components: + - pos: 4.5,7.5 + parent: 2 + type: Transform + - uid: 304 + components: + - pos: 3.5,7.5 + parent: 2 + type: Transform + - uid: 306 + components: + - pos: 6.5,7.5 + parent: 2 + type: Transform + - uid: 307 + components: + - pos: 5.5,7.5 + parent: 2 + type: Transform + - uid: 312 + components: + - pos: 7.5,7.5 + parent: 2 + type: Transform + - uid: 349 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 2 + type: Transform + - uid: 350 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 2 + type: Transform + - uid: 351 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-7.5 + parent: 2 + type: Transform + - uid: 352 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-1.5 + parent: 2 + type: Transform + - uid: 569 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 2 + type: Transform + - uid: 572 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-4.5 + parent: 2 + type: Transform +- proto: Gyroscope + entities: + - uid: 383 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-15.5 + parent: 2 + type: Transform +- proto: LiquidNitrogenCanister + entities: + - uid: 385 + components: + - pos: 5.5,-17.5 + parent: 2 + type: Transform +- proto: LiquidOxygenCanister + entities: + - uid: 384 + components: + - pos: 4.5,-17.5 + parent: 2 + type: Transform +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 388 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-15.5 + parent: 2 + type: Transform + - uid: 389 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-15.5 + parent: 2 + type: Transform + - uid: 390 + components: + - pos: 6.5,-15.5 + parent: 2 + type: Transform + - uid: 391 + components: + - pos: 5.5,-15.5 + parent: 2 + type: Transform +- proto: PlasticFlapsAirtightClear + entities: + - uid: 84 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-6.5 + parent: 2 + type: Transform + - uid: 86 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 2 + type: Transform + - uid: 112 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-6.5 + parent: 2 + type: Transform + - uid: 328 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 2 + type: Transform + - uid: 332 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 2 + type: Transform + - uid: 333 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 2 + type: Transform + - uid: 334 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 2 + type: Transform + - uid: 336 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-2.5 + parent: 2 + type: Transform +- proto: PottedPlantRandom + entities: + - uid: 139 + components: + - pos: 1.5,-11.5 + parent: 2 + type: Transform + - uid: 140 + components: + - pos: 9.5,-11.5 + parent: 2 + type: Transform + - uid: 218 + components: + - pos: 1.5,2.5 + parent: 2 + type: Transform + - uid: 238 + components: + - pos: 9.5,2.5 + parent: 2 + type: Transform + - uid: 314 + components: + - pos: 0.5,4.5 + parent: 2 + type: Transform + - uid: 315 + components: + - pos: 10.5,4.5 + parent: 2 + type: Transform + - uid: 392 + components: + - pos: 9.5,-17.5 + parent: 2 + type: Transform +- proto: Poweredlight + entities: + - uid: 119 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 2 + type: Transform + - uid: 120 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 2 + type: Transform + - uid: 121 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 2 + type: Transform + - uid: 122 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 2 + type: Transform + - uid: 123 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-11.5 + parent: 2 + type: Transform + - uid: 124 + components: + - pos: 5.5,2.5 + parent: 2 + type: Transform + - uid: 216 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-17.5 + parent: 2 + type: Transform + - uid: 219 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-17.5 + parent: 2 + type: Transform + - uid: 231 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,6.5 + parent: 2 + type: Transform + - uid: 232 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,6.5 + parent: 2 + type: Transform + - uid: 233 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 2 + type: Transform + - uid: 234 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,3.5 + parent: 2 + type: Transform +- proto: PoweredSmallLight + entities: + - uid: 259 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 2 + type: Transform + - uid: 574 + components: + - pos: -1.5,-5.5 + parent: 2 + type: Transform + - uid: 580 + components: + - pos: 12.5,-5.5 + parent: 2 + type: Transform + - uid: 581 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-3.5 + parent: 2 + type: Transform +- proto: Railing + entities: + - uid: 286 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 2 + type: Transform + - uid: 287 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,4.5 + parent: 2 + type: Transform + - uid: 288 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,4.5 + parent: 2 + type: Transform + - uid: 289 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,4.5 + parent: 2 + type: Transform + - uid: 325 + components: + - pos: 6.5,5.5 + parent: 2 + type: Transform + - uid: 326 + components: + - pos: 4.5,5.5 + parent: 2 + type: Transform + - uid: 327 + components: + - pos: 5.5,5.5 + parent: 2 + type: Transform +- proto: RailingCornerSmall + entities: + - uid: 290 + components: + - rot: 3.141592653589793 rad + pos: 3.5,5.5 + parent: 2 + type: Transform + - uid: 291 + components: + - rot: 3.141592653589793 rad + pos: 9.5,5.5 + parent: 2 + type: Transform + - uid: 292 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,5.5 + parent: 2 + type: Transform + - uid: 293 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,5.5 + parent: 2 + type: Transform +- proto: RandomPosterLegit + entities: + - uid: 518 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-14.5 + parent: 2 + type: Transform + - uid: 545 + components: + - rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 2 + type: Transform + - uid: 546 + components: + - rot: 3.141592653589793 rad + pos: 10.5,3.5 + parent: 2 + type: Transform + - uid: 547 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-11.5 + parent: 2 + type: Transform + - uid: 548 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-11.5 + parent: 2 + type: Transform + - uid: 549 + components: + - rot: 3.141592653589793 rad + pos: 9.5,7.5 + parent: 2 + type: Transform + - uid: 550 + components: + - rot: 3.141592653589793 rad + pos: 1.5,7.5 + parent: 2 + type: Transform + - uid: 551 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-14.5 + parent: 2 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 3 + components: + - rot: 3.141592653589793 rad + pos: 13.5,4.5 + parent: 2 + type: Transform + - uid: 7 + components: + - pos: 5.5,-7.5 + parent: 2 + type: Transform + - uid: 8 + components: + - pos: 5.5,-1.5 + parent: 2 + type: Transform + - uid: 9 + components: + - pos: 5.5,-2.5 + parent: 2 + type: Transform + - uid: 10 + components: + - pos: 5.5,-3.5 + parent: 2 + type: Transform + - uid: 11 + components: + - pos: 5.5,-4.5 + parent: 2 + type: Transform + - uid: 12 + components: + - pos: 5.5,-5.5 + parent: 2 + type: Transform + - uid: 13 + components: + - pos: 5.5,-6.5 + parent: 2 + type: Transform + - uid: 77 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-13.5 + parent: 2 + type: Transform + - uid: 100 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-13.5 + parent: 2 + type: Transform + - uid: 127 + components: + - rot: 3.141592653589793 rad + pos: 9.5,3.5 + parent: 2 + type: Transform + - uid: 128 + components: + - rot: 3.141592653589793 rad + pos: 8.5,3.5 + parent: 2 + type: Transform + - uid: 129 + components: + - rot: 3.141592653589793 rad + pos: 7.5,3.5 + parent: 2 + type: Transform + - uid: 133 + components: + - rot: 3.141592653589793 rad + pos: 3.5,3.5 + parent: 2 + type: Transform + - uid: 134 + components: + - rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 2 + type: Transform + - uid: 135 + components: + - rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 2 + type: Transform + - uid: 142 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-13.5 + parent: 2 + type: Transform + - uid: 152 + components: + - rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 2 + type: Transform + - uid: 154 + components: + - rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 2 + type: Transform + - uid: 155 + components: + - rot: 3.141592653589793 rad + pos: -2.5,3.5 + parent: 2 + type: Transform + - uid: 156 + components: + - rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 2 + type: Transform + - uid: 157 + components: + - rot: 3.141592653589793 rad + pos: 12.5,0.5 + parent: 2 + type: Transform + - uid: 158 + components: + - rot: 3.141592653589793 rad + pos: 13.5,5.5 + parent: 2 + type: Transform + - uid: 159 + components: + - rot: 3.141592653589793 rad + pos: 13.5,1.5 + parent: 2 + type: Transform + - uid: 160 + components: + - rot: 3.141592653589793 rad + pos: 13.5,2.5 + parent: 2 + type: Transform + - uid: 161 + components: + - rot: 3.141592653589793 rad + pos: 13.5,3.5 + parent: 2 + type: Transform + - uid: 165 + components: + - rot: 3.141592653589793 rad + pos: -2.5,5.5 + parent: 2 + type: Transform + - uid: 182 + components: + - rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 2 + type: Transform + - uid: 185 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-13.5 + parent: 2 + type: Transform + - uid: 285 + components: + - pos: 3.5,7.5 + parent: 2 + type: Transform + - uid: 300 + components: + - pos: 5.5,7.5 + parent: 2 + type: Transform + - uid: 301 + components: + - pos: 6.5,7.5 + parent: 2 + type: Transform + - uid: 302 + components: + - pos: 7.5,7.5 + parent: 2 + type: Transform + - uid: 311 + components: + - pos: 4.5,7.5 + parent: 2 + type: Transform + - uid: 353 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 2 + type: Transform + - uid: 356 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 2 + type: Transform + - uid: 357 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-7.5 + parent: 2 + type: Transform + - uid: 358 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-1.5 + parent: 2 + type: Transform + - uid: 555 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 2 + type: Transform + - uid: 558 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-4.5 + parent: 2 + type: Transform +- proto: ShuttersNormalOpen + entities: + - uid: 808 + components: + - pos: 1.5,3.5 + parent: 2 + type: Transform + - links: + - 807 + type: DeviceLinkSink + - uid: 809 + components: + - pos: 2.5,3.5 + parent: 2 + type: Transform + - links: + - 807 + type: DeviceLinkSink + - uid: 810 + components: + - pos: 3.5,3.5 + parent: 2 + type: Transform + - links: + - 807 + type: DeviceLinkSink + - uid: 811 + components: + - pos: 7.5,3.5 + parent: 2 + type: Transform + - links: + - 807 + type: DeviceLinkSink + - uid: 812 + components: + - pos: 8.5,3.5 + parent: 2 + type: Transform + - links: + - 807 + type: DeviceLinkSink + - uid: 813 + components: + - pos: 9.5,3.5 + parent: 2 + type: Transform + - links: + - 807 + type: DeviceLinkSink +- proto: SignalButton + entities: + - uid: 807 + components: + - pos: 0.5,7.5 + parent: 2 + type: Transform + - linkedPorts: + 808: + - Pressed: Toggle + 809: + - Pressed: Toggle + 810: + - Pressed: Toggle + 811: + - Pressed: Toggle + 812: + - Pressed: Toggle + 813: + - Pressed: Toggle + type: DeviceLinkSource +- proto: SignSecureMed + entities: + - uid: 144 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-8.5 + parent: 2 + type: Transform + - uid: 145 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 2 + type: Transform +- proto: SignSpace + entities: + - uid: 341 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 2 + type: Transform + - uid: 342 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 2 + type: Transform + - uid: 343 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-7.5 + parent: 2 + type: Transform + - uid: 344 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 2 + type: Transform +- proto: SMESBasic + entities: + - uid: 380 + components: + - pos: 3.5,-17.5 + parent: 2 + type: Transform +- proto: SubstationBasic + entities: + - uid: 381 + components: + - pos: 3.5,-15.5 + parent: 2 + type: Transform +- proto: TableCounterWood + entities: + - uid: 251 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,4.5 + parent: 2 + type: Transform + - uid: 252 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,4.5 + parent: 2 + type: Transform + - uid: 256 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,4.5 + parent: 2 + type: Transform + - uid: 257 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,4.5 + parent: 2 + type: Transform + - uid: 261 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,4.5 + parent: 2 + type: Transform + - uid: 262 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,4.5 + parent: 2 + type: Transform +- proto: TwoWayLever + entities: + - uid: 365 + components: + - pos: 0.5,-3.5 + parent: 2 + type: Transform + - linkedPorts: + 363: + - Left: Forward + - Right: Reverse + - Middle: Off + 81: + - Left: Forward + - Right: Reverse + - Middle: Off + 339: + - Left: Forward + - Right: Reverse + - Middle: Off + 110: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource + - uid: 366 + components: + - pos: 0.5,-5.5 + parent: 2 + type: Transform + - linkedPorts: + 364: + - Left: Forward + - Right: Reverse + - Middle: Off + 82: + - Left: Forward + - Right: Reverse + - Middle: Off + 329: + - Left: Forward + - Right: Reverse + - Middle: Off + 338: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource + - uid: 393 + components: + - pos: 10.5,-3.5 + parent: 2 + type: Transform + - linkedPorts: + 359: + - Left: Forward + - Right: Reverse + - Middle: Off + 337: + - Left: Forward + - Right: Reverse + - Middle: Off + 108: + - Left: Forward + - Right: Reverse + - Middle: Off + 340: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource + - uid: 404 + components: + - pos: 10.5,-5.5 + parent: 2 + type: Transform + - linkedPorts: + 362: + - Left: Forward + - Right: Reverse + - Middle: Off + 331: + - Left: Forward + - Right: Reverse + - Middle: Off + 335: + - Left: Forward + - Right: Reverse + - Middle: Off + 330: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource +- proto: WallReinforced + entities: + - uid: 4 + components: + - pos: 5.5,0.5 + parent: 2 + type: Transform + - uid: 5 + components: + - pos: 5.5,-0.5 + parent: 2 + type: Transform + - uid: 6 + components: + - pos: 5.5,-8.5 + parent: 2 + type: Transform + - uid: 74 + components: + - pos: 5.5,-9.5 + parent: 2 + type: Transform + - uid: 76 + components: + - pos: 11.5,2.5 + parent: 2 + type: Transform + - uid: 78 + components: + - pos: 11.5,0.5 + parent: 2 + type: Transform + - uid: 79 + components: + - pos: 11.5,-0.5 + parent: 2 + type: Transform + - uid: 80 + components: + - pos: 11.5,-1.5 + parent: 2 + type: Transform + - uid: 83 + components: + - pos: 11.5,-4.5 + parent: 2 + type: Transform + - uid: 85 + components: + - pos: 11.5,-7.5 + parent: 2 + type: Transform + - uid: 87 + components: + - pos: 11.5,-8.5 + parent: 2 + type: Transform + - uid: 88 + components: + - pos: 11.5,-9.5 + parent: 2 + type: Transform + - uid: 89 + components: + - pos: 11.5,-10.5 + parent: 2 + type: Transform + - uid: 90 + components: + - pos: 11.5,-11.5 + parent: 2 + type: Transform + - uid: 91 + components: + - pos: 10.5,-11.5 + parent: 2 + type: Transform + - uid: 92 + components: + - pos: 10.5,-12.5 + parent: 2 + type: Transform + - uid: 93 + components: + - pos: 9.5,-12.5 + parent: 2 + type: Transform + - uid: 95 + components: + - pos: 7.5,-12.5 + parent: 2 + type: Transform + - uid: 96 + components: + - pos: 6.5,-12.5 + parent: 2 + type: Transform + - uid: 97 + components: + - pos: 5.5,-12.5 + parent: 2 + type: Transform + - uid: 98 + components: + - pos: 4.5,-12.5 + parent: 2 + type: Transform + - uid: 101 + components: + - pos: 1.5,-12.5 + parent: 2 + type: Transform + - uid: 102 + components: + - pos: 0.5,-12.5 + parent: 2 + type: Transform + - uid: 103 + components: + - pos: 0.5,-11.5 + parent: 2 + type: Transform + - uid: 104 + components: + - pos: -0.5,-11.5 + parent: 2 + type: Transform + - uid: 105 + components: + - pos: -0.5,-10.5 + parent: 2 + type: Transform + - uid: 106 + components: + - pos: -0.5,-8.5 + parent: 2 + type: Transform + - uid: 107 + components: + - pos: -0.5,-7.5 + parent: 2 + type: Transform + - uid: 109 + components: + - pos: -0.5,-9.5 + parent: 2 + type: Transform + - uid: 111 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-4.5 + parent: 2 + type: Transform + - uid: 113 + components: + - pos: -0.5,-4.5 + parent: 2 + type: Transform + - uid: 114 + components: + - pos: -0.5,-1.5 + parent: 2 + type: Transform + - uid: 115 + components: + - pos: -0.5,-0.5 + parent: 2 + type: Transform + - uid: 116 + components: + - pos: -0.5,0.5 + parent: 2 + type: Transform + - uid: 117 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-12.5 + parent: 2 + type: Transform + - uid: 118 + components: + - pos: -0.5,2.5 + parent: 2 + type: Transform + - uid: 125 + components: + - pos: 11.5,3.5 + parent: 2 + type: Transform + - uid: 126 + components: + - pos: 10.5,3.5 + parent: 2 + type: Transform + - uid: 130 + components: + - pos: 6.5,3.5 + parent: 2 + type: Transform + - uid: 131 + components: + - pos: 5.5,3.5 + parent: 2 + type: Transform + - uid: 132 + components: + - pos: 4.5,3.5 + parent: 2 + type: Transform + - uid: 136 + components: + - pos: 0.5,3.5 + parent: 2 + type: Transform + - uid: 137 + components: + - pos: -0.5,3.5 + parent: 2 + type: Transform + - uid: 141 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-14.5 + parent: 2 + type: Transform + - uid: 172 + components: + - rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 2 + type: Transform + - uid: 173 + components: + - rot: 3.141592653589793 rad + pos: 13.5,0.5 + parent: 2 + type: Transform + - uid: 174 + components: + - rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 2 + type: Transform + - uid: 175 + components: + - rot: 3.141592653589793 rad + pos: 13.5,6.5 + parent: 2 + type: Transform + - uid: 176 + components: + - rot: 3.141592653589793 rad + pos: 12.5,6.5 + parent: 2 + type: Transform + - uid: 177 + components: + - rot: 3.141592653589793 rad + pos: 11.5,6.5 + parent: 2 + type: Transform + - uid: 178 + components: + - rot: 3.141592653589793 rad + pos: 11.5,4.5 + parent: 2 + type: Transform + - uid: 179 + components: + - rot: 3.141592653589793 rad + pos: -0.5,6.5 + parent: 2 + type: Transform + - uid: 180 + components: + - rot: 3.141592653589793 rad + pos: -1.5,6.5 + parent: 2 + type: Transform + - uid: 181 + components: + - rot: 3.141592653589793 rad + pos: -2.5,6.5 + parent: 2 + type: Transform + - uid: 183 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-14.5 + parent: 2 + type: Transform + - uid: 184 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-14.5 + parent: 2 + type: Transform + - uid: 186 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-14.5 + parent: 2 + type: Transform + - uid: 187 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-14.5 + parent: 2 + type: Transform + - uid: 188 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-14.5 + parent: 2 + type: Transform + - uid: 189 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-14.5 + parent: 2 + type: Transform + - uid: 190 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-14.5 + parent: 2 + type: Transform + - uid: 191 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-14.5 + parent: 2 + type: Transform + - uid: 192 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-14.5 + parent: 2 + type: Transform + - uid: 193 + components: + - pos: 2.5,-12.5 + parent: 2 + type: Transform + - uid: 198 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-14.5 + parent: 2 + type: Transform + - uid: 199 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-15.5 + parent: 2 + type: Transform + - uid: 200 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-16.5 + parent: 2 + type: Transform + - uid: 201 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-17.5 + parent: 2 + type: Transform + - uid: 202 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-18.5 + parent: 2 + type: Transform + - uid: 203 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-18.5 + parent: 2 + type: Transform + - uid: 204 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-18.5 + parent: 2 + type: Transform + - uid: 205 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-18.5 + parent: 2 + type: Transform + - uid: 206 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-18.5 + parent: 2 + type: Transform + - uid: 207 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-18.5 + parent: 2 + type: Transform + - uid: 208 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-18.5 + parent: 2 + type: Transform + - uid: 209 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-18.5 + parent: 2 + type: Transform + - uid: 210 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-18.5 + parent: 2 + type: Transform + - uid: 211 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-18.5 + parent: 2 + type: Transform + - uid: 212 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-17.5 + parent: 2 + type: Transform + - uid: 213 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-17.5 + parent: 2 + type: Transform + - uid: 214 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-16.5 + parent: 2 + type: Transform + - uid: 215 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-15.5 + parent: 2 + type: Transform + - uid: 217 + components: + - pos: 8.5,-12.5 + parent: 2 + type: Transform + - uid: 220 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-18.5 + parent: 2 + type: Transform + - uid: 221 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-17.5 + parent: 2 + type: Transform + - uid: 230 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,7.5 + parent: 2 + type: Transform + - uid: 235 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,7.5 + parent: 2 + type: Transform + - uid: 236 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,7.5 + parent: 2 + type: Transform + - uid: 237 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,7.5 + parent: 2 + type: Transform + - uid: 239 + components: + - pos: 8.5,-14.5 + parent: 2 + type: Transform + - uid: 240 + components: + - pos: 2.5,-14.5 + parent: 2 + type: Transform + - uid: 242 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,7.5 + parent: 2 + type: Transform + - uid: 243 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,7.5 + parent: 2 + type: Transform + - uid: 244 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,7.5 + parent: 2 + type: Transform + - uid: 245 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,7.5 + parent: 2 + type: Transform + - uid: 345 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-7.5 + parent: 2 + type: Transform + - uid: 346 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 2 + type: Transform + - uid: 347 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 2 + type: Transform + - uid: 348 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 2 + type: Transform + - uid: 553 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 2 + type: Transform +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 371 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-16.5 + parent: 2 + type: Transform +- proto: WindowReinforcedDirectional + entities: + - uid: 369 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-15.5 + parent: 2 + type: Transform + - uid: 370 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-17.5 + parent: 2 + type: Transform +... diff --git a/Resources/Maps/bagel.yml b/Resources/Maps/bagel.yml index ed0ee999981..f9f593407d4 100644 --- a/Resources/Maps/bagel.yml +++ b/Resources/Maps/bagel.yml @@ -7534,8 +7534,10 @@ entities: 0: 34944 -7,-13: 0: 2184 + 2: 9984 -6,-13: 0: 36232 + 2: 512 -5,-13: 0: 36744 -2,-20: @@ -8183,6 +8185,7 @@ entities: 0: 65535 -7,-12: 0: 44544 + 2: 34 -6,-10: 0: 39144 13,-14: @@ -9073,6 +9076,10 @@ entities: 0: 32768 -3,-20: 0: 28672 + -8,-13: + 2: 3840 + -9,-13: + 2: 3584 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -9439,7 +9446,7 @@ entities: entities: - uid: 2133 components: - - pos: -25.315247,-10.432565 + - pos: -27.45107,-11.577459 parent: 60 type: Transform - uid: 6610 @@ -16275,7 +16282,7 @@ entities: entities: - uid: 7793 components: - - pos: -25.315247,-11.16694 + - pos: -25.31633,-11.483709 parent: 60 type: Transform - proto: BoxFolderBlack @@ -16553,7 +16560,7 @@ entities: entities: - uid: 19869 components: - - pos: -25.596497,-10.963815 + - pos: -25.488205,-11.296209 parent: 60 type: Transform - proto: BrbSign @@ -61138,6 +61145,13 @@ entities: - EntityStorageComponent - entity_storage type: Construction +- proto: CrateMindShieldImplants + entities: + - uid: 11097 + components: + - pos: -25.5,-10.5 + parent: 60 + type: Transform - proto: CrateNPCChicken entities: - uid: 5597 @@ -121618,7 +121632,6 @@ entities: type: Transform - links: - 11098 - - 9091 type: DeviceLinkSink - uid: 6522 components: @@ -121726,7 +121739,6 @@ entities: type: Transform - links: - 11098 - - 9091 type: DeviceLinkSink - uid: 7045 components: @@ -122412,19 +122424,6 @@ entities: 7728: - Pressed: Toggle type: DeviceLinkSource - - uid: 9091 - components: - - name: Cell 1 Shutters - type: MetaData - - pos: -25.5,-10.5 - parent: 60 - type: Transform - - linkedPorts: - 6467: - - Pressed: Toggle - 7032: - - Pressed: Toggle - type: DeviceLinkSource - uid: 11511 components: - pos: -52.5,28.5 @@ -123047,6 +123046,13 @@ entities: - pos: 46.5,-19.5 parent: 60 type: Transform +- proto: SignCourt + entities: + - uid: 24097 + components: + - pos: -39.5,-18.5 + parent: 60 + type: Transform - proto: SignCryogenicsMed entities: - uid: 3188 @@ -123907,6 +123913,13 @@ entities: - pos: -31.5,-5.5 parent: 60 type: Transform +- proto: SignJanitor + entities: + - uid: 9091 + components: + - pos: -8.5,-25.5 + parent: 60 + type: Transform - proto: SignKiddiePlaque entities: - uid: 23096 @@ -123921,6 +123934,13 @@ entities: - pos: -29.5,2.5 parent: 60 type: Transform +- proto: SignLawyer + entities: + - uid: 18024 + components: + - pos: -47.5,-19.5 + parent: 60 + type: Transform - proto: SignLibrary entities: - uid: 14057 @@ -131693,11 +131713,6 @@ entities: - pos: -40.5,5.5 parent: 60 type: Transform - - uid: 11097 - components: - - pos: -25.5,-10.5 - parent: 60 - type: Transform - uid: 11127 components: - pos: -27.5,-7.5 diff --git a/Resources/Maps/barratry.yml b/Resources/Maps/barratry.yml index 6033eaad78a..54996685b84 100644 --- a/Resources/Maps/barratry.yml +++ b/Resources/Maps/barratry.yml @@ -1,47 +1,47 @@ meta: - format: 5 + format: 6 postmapinit: false tilemap: 0: Space 2: FloorArcadeBlue2 - 6: FloorAsteroidSand - 10: FloorAsteroidTile - 14: FloorBlueCircuit - 17: FloorCarpetClown - 22: FloorDark - 23: FloorDarkDiagonal - 25: FloorDarkHerringbone - 27: FloorDarkMono - 29: FloorDarkPavement - 31: FloorDarkPlastic - 33: FloorDirt - 34: FloorEighties - 37: FloorFreezer - 38: FloorGlass - 40: FloorGrass - 44: FloorGreenCircuit - 48: FloorHydro - 51: FloorLino - 53: FloorMetalDiamond - 54: FloorMime - 56: FloorPlanetDirt - 59: FloorRGlass - 60: FloorReinforced - 62: FloorRockVault - 63: FloorShowroom - 71: FloorSteel - 73: FloorSteelCheckerLight - 76: FloorSteelDirty - 77: FloorSteelHerringbone - 81: FloorSteelPavement - 83: FloorTechMaint - 87: FloorWhite - 90: FloorWhiteHerringbone - 91: FloorWhiteMini - 97: FloorWood - 99: Lattice - 100: Plating - 101: PlatingAsteroid + 7: FloorAsteroidSand + 11: FloorAsteroidTile + 15: FloorBlueCircuit + 18: FloorCarpetClown + 26: FloorDark + 27: FloorDarkDiagonal + 29: FloorDarkHerringbone + 31: FloorDarkMono + 33: FloorDarkPavement + 35: FloorDarkPlastic + 37: FloorDirt + 38: FloorEighties + 41: FloorFreezer + 42: FloorGlass + 44: FloorGrass + 51: FloorGreenCircuit + 55: FloorHydro + 59: FloorLino + 61: FloorMetalDiamond + 62: FloorMime + 67: FloorPlanetDirt + 70: FloorRGlass + 71: FloorReinforced + 73: FloorRockVault + 74: FloorShowroom + 83: FloorSteel + 85: FloorSteelCheckerLight + 88: FloorSteelDirty + 89: FloorSteelHerringbone + 93: FloorSteelPavement + 95: FloorTechMaint + 99: FloorWhite + 102: FloorWhiteHerringbone + 103: FloorWhiteMini + 109: FloorWood + 111: Lattice + 112: Plating + 113: PlatingAsteroid entities: - proto: "" entities: @@ -54,184 +54,244 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAABgAAAAYAAAAGAAAKBgAAAGQAAAAGAAAABgAAAAYAAAAGAAAAZAAAAAoAAABlAAAACgAAAGUAAAAKAAAAZAAAAAYAAAAGAAAABgAAAGQAAAAKAAAABgAAAAYAAAAGAAAABgAAAGQAAAAKAAAACgAAAGUAAAAKAAAACgAAAGUAAAAGAAAABgAAAAYAAAAKAAAAZQAAAAYAAAAGAAAABgAAAAYAAAAGAAAAZQAAAAoAAAAKAAAAZQAAAAoAAABkAAAACgAAAGUAAABlAAAACgAAAGUAAABlAAAABgAAAQYAAAAGAAABZAAAAAoAAABlAAAACgAAAGUAAAAKAAAAZAAAAAoAAAAKAAAAZQAAAAYAAAAGAAAACgAAAAoAAAAKAAAACgAAAGQAAABlAAAACgAAAAoAAAAKAAAAZQAAAGQAAAAGAAAABgAAAAYAAAAGAAAABgAABAYAAAIKAAAAZQAAAAoAAAAKAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAABgAADAYAAAAGAAAABgAAAAYAAAAGAAAGBgAAAGUAAABlAAAAZAAAAFMAAABkAAAAGQAAAhkAAAAZAAACZAAAAAYAAAgGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAZQAAAAYAAABTAAAAZAAAABkAAAEZAAADGQAAAWQAAAAGAAAABgAAAAYAAAAGAAAJBgAAAAYAAAAGAAAABgAAAAoAAAAGAAAAZAAAAGQAAABkAAAAGQAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAGAAAAZAAAAAYAAAAKAAAABgAABWEAAANkAAAAVwAAAVcAAAFXAAABVwAAAFcAAAJXAAABZAAAAEcAAABHAAABRwAAAEcAAABlAAAAZQAAAGUAAABhAAABZAAAAFcAAANXAAAAVwAAAVcAAABXAAAAVwAAAGQAAABHAAABZAAAAGQAAABHAAABRwAAAGUAAABHAAACYQAAA2QAAABXAAADVwAAA1cAAAJXAAABVwAAAFcAAABkAAAARwAAAWQAAAAOAAAADgAAAA4AAABHAAACRwAAAGEAAABhAAADRwAAA0cAAANHAAADRwAAAUcAAAJHAAACRwAAAkcAAANHAAAADgAAAA4AAAAOAAAARwAAAUcAAAJhAAACZAAAAEcAAANHAAAARwAAAUcAAAFHAAADRwAAA2QAAABHAAAARwAAAEcAAANHAAADRwAAAEcAAANHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAWQAAABkAAAARwAAAQ4AAABkAAAAZAAAAGEAAAJkAAAAZAAAAA== + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAACwAAAAAAcQAAAAAACwAAAAAAcQAAAAAACwAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAACwAAAAAACwAAAAAAcQAAAAAACwAAAAAACwAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAACwAAAAAACwAAAAAAcQAAAAAACwAAAAAAcAAAAAAACwAAAAAAcQAAAAAAcQAAAAAACwAAAAAAcQAAAAAAcQAAAAAABwAAAAABBwAAAAAABwAAAAABcAAAAAAACwAAAAAAcQAAAAAACwAAAAAAcQAAAAAACwAAAAAAcAAAAAAACwAAAAAACwAAAAAAcQAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAcAAAAAAAcQAAAAAACwAAAAAACwAAAAAACwAAAAAAcQAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAACCwAAAAAAcQAAAAAACwAAAAAACwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAHQAAAAACHQAAAAAAHQAAAAACcAAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAABwAAAAAAXwAAAAAAcAAAAAAAHQAAAAABHQAAAAADHQAAAAABcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAAcAAAAAAABwAAAAAACwAAAAAABwAAAAAFbQAAAAADcAAAAAAAYwAAAAABYwAAAAABYwAAAAABYwAAAAAAYwAAAAACYwAAAAABcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbQAAAAABcAAAAAAAYwAAAAADYwAAAAAAYwAAAAABYwAAAAAAYwAAAAAAYwAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAcQAAAAAAUwAAAAACbQAAAAADcAAAAAAAYwAAAAADYwAAAAADYwAAAAACYwAAAAABYwAAAAAAYwAAAAAAcAAAAAAAUwAAAAABcAAAAAAADwAAAAAADwAAAAAADwAAAAAAUwAAAAACUwAAAAAAbQAAAAAAbQAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAAADwAAAAAADwAAAAAADwAAAAAAUwAAAAABUwAAAAACbQAAAAACcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAADcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAUwAAAAABDwAAAAAAcAAAAAAAcAAAAAAAbQAAAAACcAAAAAAAcAAAAAAA + version: 6 -1,0: ind: -1,0 - tiles: ZAAAAGQAAAAdAAADFgAAARYAAABkAAAARwAAAGQAAABkAAAARwAAAw4AAABkAAAAYQAAA2EAAANhAAABZAAAAGQAAABkAAAAHQAAAiYAAAAWAAAAFgAAAEcAAAFHAAABRwAAAEcAAAEOAAAAZAAAAGEAAAJhAAACYQAAAGQAAABkAAAAZAAAAB0AAAMWAAABFgAAAmQAAABHAAABRwAAA0cAAANHAAADRwAAA2QAAABhAAAAYQAAAGEAAANkAAAARwAAA2QAAABkAAAAFgAAA2QAAABkAAAAZAAAAGQAAABHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAACRwAAAkcAAABHAAAARwAAAEcAAANHAAAAZAAAAGQAAABkAAAARwAAAUcAAAJHAAAARwAAAEcAAANHAAABRwAAA2QAAABkAAAARwAAA0cAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAABHAAABRwAAAGQAAABHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAABZAAAAGQAAABHAAABZAAAAEcAAAFkAAAARwAAA2QAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAAFHAAACZAAAAEcAAANHAAADZAAAAEcAAAFkAAAARwAAAkcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAACRwAAAWQAAABHAAACZAAAAGQAAABHAAABZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABHAAADRwAAAkcAAANkAAAAZAAAAEcAAABHAAACZAAAAEcAAAFHAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFkAAAARwAAAUcAAANkAAAAZAAAAEcAAANHAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAEcAAANkAAAAZAAAAEcAAAJHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAkcAAAJHAAADZAAAAGQAAABHAAABZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAABYAAAIWAAAAZAAAAFMAAABHAAAARwAAAkcAAAJkAAAAZAAAAGQAAABHAAACZAAAAGQAAABTAAAAZAAAAGQAAAAWAAABFgAAAw== + tiles: cAAAAAAAcAAAAAAAIQAAAAADGgAAAAABGgAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADDwAAAAAAcAAAAAAAbQAAAAADbQAAAAADbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAIQAAAAACKgAAAAAAGgAAAAAAGgAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAABDwAAAAAAcAAAAAAAbQAAAAACbQAAAAACbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIQAAAAADGgAAAAABGgAAAAACcAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAADcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAADcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAUwAAAAABcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAUwAAAAABcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAcAAAAAAAXwAAAAAAUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAAD + version: 6 0,-1: ind: 0,-1 - tiles: PAAAAGQAAABkAAAABgAAAAYAAAAGAAAABgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAABjAAAAYwAAADwAAAA8AAAAPAAAAGQAAAAGAAAABgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAYwAAAAAAAABkAAAAPAAAADwAAABkAAAABgAAAAYAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAABgAAAGMAAAAAAAAAZAAAADwAAABkAAAAZAAAAGQAAABkAAAAZAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAABgAAAGQAAABkAAAAZAAAAAoAAABlAAAACgAAAGUAAAAKAAAACgAAAGQAAAAGAAAAPgAAAD4AAAA+AAAAPgAAAGQAAABkAAAARwAAAmQAAAAKAAAACgAAAGUAAABlAAAACgAAAAoAAABkAAAABgAACAYAAAAGAAAABgAABQYAAABkAAAARwAAAWQAAABHAAADCgAAAGUAAAAKAAAACgAAAAoAAABlAAAAZAAAAAYAAAAGAAAABgAAAAYAAAAGAAADZAAAAGQAAABHAAABRwAAAwoAAAAKAAAACgAAAGUAAABlAAAAZQAAAGQAAAAGAAAABgAAAQYAAABkAAAAZAAAAGQAAABHAAACRwAAAGQAAABkAAAAZQAAAGQAAABkAAAABgAAAGQAAABkAAAABgAAAAYAAAEGAAAJZAAAAGQAAABkAAAARwAAAmQAAABHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAGAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANkAAAAUwAAAGQAAABkAAAAZAAAAAYAAAAGAAAABgAAAwYAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAAYAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAADZAAAAGQAAABkAAAAZAAAAGQAAAAWAAADFgAAA2QAAABkAAAAZAAAAGEAAAFhAAADYQAAAGEAAAFHAAADRwAAAUcAAAIzAAAAMwAAADMAAAAWAAADFgAAAxYAAABkAAAAZAAAAGQAAABhAAADYQAAA2EAAAFkAAAARwAAAUcAAABHAAAAMwAAADMAAAAzAAAAZAAAABYAAAMWAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAABRwAAAzMAAAAzAAAAMwAAAA== + tiles: RwAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAABwAAAAAABwAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAABwAAAAAABwAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAABwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAACwAAAAAAcQAAAAAACwAAAAAAcQAAAAAACwAAAAAACwAAAAAAcAAAAAAABwAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAACwAAAAAACwAAAAAAcQAAAAAAcQAAAAAACwAAAAAACwAAAAAAcAAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAFBwAAAAAAcAAAAAAAUwAAAAABcAAAAAAAUwAAAAADCwAAAAAAcQAAAAAACwAAAAAACwAAAAAACwAAAAAAcQAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADCwAAAAAACwAAAAAACwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAABwAAAAAABwAAAAABBwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAABwAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAABBwAAAAAJcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAADbQAAAAAAbQAAAAABUwAAAAADUwAAAAABUwAAAAACOwAAAAAAOwAAAAAAOwAAAAAAGgAAAAADGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAADbQAAAAABcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAADOwAAAAAAOwAAAAAAOwAAAAAA + version: 6 0,0: ind: 0,0 - tiles: DgAAAEcAAAAsAAAAZAAAAGQAAABkAAAAZAAAAGEAAAFhAAAAYQAAAUcAAAJHAAAAZAAAADMAAAAzAAAAMwAAAA4AAABHAAABLAAAAGQAAABkAAAAZAAAAGQAAABhAAADYQAAA2QAAABHAAAARwAAAWQAAAAzAAAAMwAAADMAAAAOAAAARwAAAywAAABkAAAAZAAAAGQAAABkAAAAYQAAAGEAAAJkAAAARwAAAEcAAABkAAAAMwAAADMAAAAzAAAARwAAAUcAAAFHAAACZAAAAEcAAABHAAADZAAAAGQAAABkAAAAZAAAAEcAAABHAAAAZAAAADMAAAAzAAAAMwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAAFHAAABRwAAAmQAAABkAAAARwAAA0cAAAJHAAAARwAAA0cAAABHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAAUcAAANkAAAAZAAAAEcAAAFHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAUwAAAFMAAABkAAAARwAAAkcAAANkAAAAZAAAAFMAAABTAAAAUwAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAEcAAAJHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAAAWAAABFgAAABYAAAIWAAABFgAAAxYAAANkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAUwAAAFMAAABkAAAAFgAAAxYAAAIWAAADFgAAAxYAAAEWAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAIWAAAAFgAAABYAAAEWAAAAFgAAAWQAAABkAAAAUwAAAGQAAAAWAAABFgAAABYAAAMWAAABFgAAA2QAAABXAAACVwAAA1cAAAFXAAACVwAAAVcAAAJkAAAAZAAAAGQAAABkAAAAFgAAABYAAAAWAAADFgAAARYAAABkAAAAVwAAAVcAAANXAAACVwAAAVcAAABXAAAAZAAAAGQAAABTAAAAZAAAAA== + tiles: DwAAAAAAUwAAAAAAMwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAAAbQAAAAABUwAAAAACUwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAADwAAAAAAUwAAAAABMwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAADcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAADwAAAAAAUwAAAAADMwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAACcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAUwAAAAABUwAAAAABUwAAAAACcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAACGgAAAAABGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAADGgAAAAADGgAAAAABGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAAAGgAAAAABGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAADGgAAAAABGgAAAAADcAAAAAAAYwAAAAACYwAAAAADYwAAAAABYwAAAAACYwAAAAABYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAADGgAAAAABGgAAAAAAcAAAAAAAYwAAAAABYwAAAAADYwAAAAACYwAAAAABYwAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAA + version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAAEBgAAAwAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAABgAABgYAAAAGAAAKZAAAAAYAAAgGAAAAAAAAAAYAAAAGAAAAYwAAAGMAAABjAAAAYwAAAAYAAAAGAAAJBgAAAAYAAAAGAAAAZAAAAGQAAAAGAAAIBgAAAAYAAAAGAAAABgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAADAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAAABwAAAAAKcAAAAAAABwAAAAAIBwAAAAAAAAAAAAAABwAAAAAABwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAAAAAAAYAAAsGAAAABgAAAAYAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAGAAAABgAAAAYAAAAGAAADBgAAAAYAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAABgAAAGQAAABkAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAA + version: 6 -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAIgAAACIAAABkAAAAZQAAAAoAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAIgAAAGQAAAAiAAAAZAAAAAoAAABlAAAAZAAAAGQAAAAfAAAAHwAAAR8AAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAiAAAAZAAAAGQAAAAKAAAACgAAAGQAAABkAAAAHwAAAh8AAAAfAAABZAAAAGQAAABkAAAAZAAAAGQAAAACAAAAZAAAAAIAAABkAAAACgAAAGUAAABHAAADZAAAAB8AAAAfAAADHwAAA2QAAABkAAAAZAAAAGQAAABkAAAAAgAAAAIAAABkAAAAZAAAAGUAAAAKAAAARwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANkAAAAZAAAAGQAAAACAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFkAAAAZAAAAFMAAABTAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABHAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAZAAAAGQAAABTAAAARwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJkAAAAUwAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABhAAAAYQAAAGEAAANkAAAAZAAAAFMAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAA2EAAABhAAADRwAAA2QAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGEAAANhAAACYQAAAEcAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABhAAACYQAAAGEAAAFHAAACZAAAAGQAAABkAAAAZAAAAD8AAAA/AAAAPwAAAD8AAABkAAAAUwAAAGQAAABkAAAAYQAAAWEAAAFhAAACZAAAAGQAAABkAAAAZAAAAGQAAAA/AAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJgAAAAAAJgAAAAAAcAAAAAAAcQAAAAAACwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJgAAAAAAcAAAAAAAJgAAAAAAcAAAAAAACwAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAIwAAAAAAIwAAAAABIwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJgAAAAAAcAAAAAAAcAAAAAAACwAAAAAACwAAAAAAcAAAAAAAcAAAAAAAIwAAAAACIwAAAAAAIwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAgAAAAAAcAAAAAAAAgAAAAAAcAAAAAAACwAAAAAAcQAAAAAAUwAAAAADcAAAAAAAIwAAAAAAIwAAAAADIwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAgAAAAAAAgAAAAAAcAAAAAAAcAAAAAAAcQAAAAAACwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAADcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAAAbQAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAADbQAAAAACbQAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAAAbQAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAABbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 -2,0: ind: -2,0 - tiles: RwAAA2QAAABkAAAAZAAAAGQAAABkAAAAPwAAAD8AAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAZAAAAEcAAAJkAAAAUwAAAGQAAABkAAAAPwAAAD8AAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABHAAACZAAAAGQAAABkAAAAZAAAAD8AAABkAAAAPwAAAD8AAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA2QAAABkAAAAZAAAAGQAAAA/AAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAAARwAAAkcAAAJHAAADZAAAAEcAAANHAAABRwAAAkcAAAFkAAAAZAAAAEcAAANkAAAAZAAAAEcAAABHAAACRwAAAkcAAAJHAAADRwAAAUcAAAFkAAAAZAAAAGQAAABHAAAARwAAA2QAAABkAAAARwAAA2QAAABkAAAARwAAA0cAAAJHAAADRwAAAUcAAANHAAAARwAAAUcAAAFHAAACRwAAAUcAAANkAAAARwAAAEcAAANHAAAARwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAAmQAAABkAAAARwAAAWQAAABkAAAAZAAAAGQAAAAzAAAAMwAAADMAAABhAAAAYQAAAmEAAABhAAADYQAAAmEAAANhAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACMwAAADMAAABkAAAAYQAAA2EAAANhAAADYQAAAWEAAAJhAAABYQAAA2QAAABkAAAAZAAAAGQAAABHAAACZAAAADMAAAAzAAAAZAAAAGEAAAJhAAADYQAAA2EAAAJhAAABYQAAAWEAAAJkAAAAZAAAAGQAAABkAAAARwAAA0cAAANkAAAAZAAAAGQAAABhAAACYQAAAmEAAAFhAAAAYQAAA2EAAANhAAACZAAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAAGEAAAJhAAADYQAAA2EAAAJhAAADYQAAA2QAAABkAAAAUwAAAGQAAABHAAAAZAAAAFMAAABTAAAAZAAAAGEAAAFhAAACYQAAA2EAAABhAAABYQAAA2EAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGEAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAAGEAAAFhAAACYQAAA2EAAABhAAAAYQAAAWQAAABkAAAAUwAAAGQAAABkAAAAZAAAAA== + tiles: UwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAASgAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAAcAAAAAAASgAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAADcAAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAADcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAbQAAAAAAbQAAAAACbQAAAAAAbQAAAAADbQAAAAACbQAAAAADbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACOwAAAAAAOwAAAAAAcAAAAAAAbQAAAAADbQAAAAADbQAAAAADbQAAAAABbQAAAAACbQAAAAABbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAbQAAAAACbQAAAAADbQAAAAADbQAAAAACbQAAAAABbQAAAAABbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAACbQAAAAABbQAAAAAAbQAAAAADbQAAAAADbQAAAAACcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbQAAAAADbQAAAAADbQAAAAACbQAAAAADbQAAAAADcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAbQAAAAABbQAAAAACbQAAAAADbQAAAAAAbQAAAAABbQAAAAADbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAABbQAAAAACbQAAAAADbQAAAAAAbQAAAAAAbQAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 1,-1: ind: 1,-1 - tiles: YwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAARwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGQAAABkAAAAPAAAADwAAAA8AAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAADwAAAA8AAAAPAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAZAAAAGQAAABkAAAAPAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAAAAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAADMAAAAzAAAAZAAAAFEAAANRAAACUQAAAmQAAABkAAAAZAAAAGQAAABhAAADYQAAA2QAAABkAAAAZAAAAAAAAAAzAAAAMwAAAFEAAAJRAAACUQAAAFEAAAJkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABhAAABZAAAAGQAAAAAAAAAMwAAADMAAABkAAAAUQAAA1EAAABRAAACZAAAAGQAAABkAAAAZAAAAGEAAAJhAAABYQAAAmQAAABkAAAAYwAAAA== + tiles: bwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAXQAAAAADXQAAAAACXQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAOwAAAAAAOwAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABcAAAAAAAcAAAAAAAAAAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAXQAAAAADXQAAAAAAXQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAABbQAAAAACcAAAAAAAcAAAAAAAbwAAAAAA + version: 6 1,0: ind: 1,0 - tiles: MwAAADMAAABkAAAAFwAAARcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAADMAAAAzAAAAZAAAABcAAAIXAAADZAAAAGQAAABTAAAAZAAAAGQAAAAWAAACUwAAAFMAAABkAAAAZAAAAGMAAAAzAAAAMwAAAGQAAAAXAAAAFwAAA2QAAABkAAAAZAAAAGQAAAAWAAACFgAAAWQAAABTAAAAZAAAAGQAAABjAAAAMwAAADMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAFMAAABkAAAAYwAAAGQAAABkAAAAZAAAAEcAAAJHAAABRwAAAEcAAABHAAAAZAAAAGQAAAAWAAACZAAAAGQAAABkAAAAZAAAAGMAAABHAAACRwAAAkcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAAEcAAAFHAAADZAAAAGMAAABjAAAAZAAAAGQAAABHAAABZAAAAEcAAAJHAAAARwAAA0cAAANHAAADRwAAA2QAAABHAAADRwAAAWQAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAEcAAAFkAAAAZAAAAEcAAANkAAAAZAAAAGQAAAACAAAAAgAAAGQAAAACAAAAZAAAAGQAAABTAAAAUwAAAGQAAABHAAABRwAAAWQAAABHAAACZAAAAGQAAABkAAAAZAAAAGQAAAACAAAAAgAAAGQAAABTAAAAZAAAAGQAAABkAAAARwAAAWQAAABkAAAARwAAA2QAAABkAAAAZAAAAAIAAAACAAAAZAAAAAIAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAABRwAAAUcAAANkAAAAZAAAAGQAAABkAAAAAgAAAAIAAAACAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAA0cAAANHAAABZAAAAGQAAABkAAAAAgAAAGQAAAACAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAANHAAABRwAAAmQAAABjAAAAYwAAAAIAAABkAAAAAgAAAAIAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAUcAAABkAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAABZAAAAGMAAABjAAAAEQAAABEAAABkAAAAEQAAABEAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAACRwAAAWQAAABkAAAAZAAAAA== + tiles: OwAAAAAAOwAAAAAAcAAAAAAAGwAAAAABGwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAGwAAAAACGwAAAAADcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAGwAAAAAAGwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAUwAAAAACUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAADcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAgAAAAAAAgAAAAAAcAAAAAAAAgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAgAAAAAAAgAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAgAAAAAAAgAAAAAAcAAAAAAAAgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAgAAAAAAcAAAAAAAAgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAACcAAAAAAAbwAAAAAAbwAAAAAAAgAAAAAAcAAAAAAAAgAAAAAAAgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAbwAAAAAAbwAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 1,-2: ind: 1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAA + version: 6 1,1: ind: 1,1 - tiles: EQAAAGQAAAARAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAABHAAAARwAAAmQAAABkAAAAZAAAAGQAAAARAAAAZAAAABEAAAARAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAAARwAAAkcAAAJkAAAAZAAAAGQAAABkAAAAEQAAAGQAAABkAAAAEQAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAA0cAAAJHAAADZAAAAGQAAABkAAAAEQAAAGQAAAARAAAAEQAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAABHAAABRwAAAGQAAABkAAAAZAAAAGQAAAARAAAAZAAAABEAAAARAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAACRwAAA0cAAAFkAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAEQAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAAkcAAAJHAAABZAAAAGMAAAAAAAAAZAAAABEAAABkAAAAZAAAABEAAABkAAAAZAAAAFMAAABkAAAAZAAAABYAAANkAAAAZAAAAGQAAABjAAAAAAAAAGQAAAARAAAAZAAAABEAAABkAAAAZAAAAFMAAABkAAAAZAAAABYAAAMWAAADFgAAAhYAAABkAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAAAWAAABFgAAAhYAAAEWAAAAZAAAAGMAAAAAAAAAZAAAAFMAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAABYAAAAWAAABFgAAAWQAAABjAAAAAAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAAWAAABFgAAAhYAAAFkAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAAAWAAADFgAAARYAAAIWAAABZAAAAGMAAAAAAAAARwAAAWQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAFgAAARYAAAIWAAAAFgAAAmQAAABjAAAAAAAAAEcAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAABHAAAAZAAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAARwAAAWQAAABkAAAAUwAAAGQAAABkAAAAUwAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAA== + tiles: EgAAAAAAcAAAAAAAEgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAEgAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAEgAAAAAAcAAAAAAAcAAAAAAAEgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAEgAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAEgAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAEgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAEgAAAAAAcAAAAAAAcAAAAAAAEgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAEgAAAAAAcAAAAAAAEgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAACGgAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAABGgAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAABGgAAAAABcAAAAAAAbwAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAACGgAAAAABcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAACGgAAAAABcAAAAAAAbwAAAAAAAAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAAAGgAAAAACcAAAAAAAbwAAAAAAAAAAAAAAUwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAA + version: 6 2,0: ind: 2,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 2,1: ind: 2,1 - tiles: ZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,1: ind: 0,1 - tiles: FgAAAxYAAAEWAAAAFgAAAxYAAAFkAAAAVwAAAFcAAABXAAABVwAAAlcAAANXAAACZAAAAGQAAABTAAAAZAAAABYAAAMWAAACFgAAABYAAAAWAAACZAAAAFcAAANXAAACVwAAAFcAAANXAAAAVwAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAACZAAAAGQAAABkAAAAZAAAAGQAAABXAAAAVwAAAFcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAFcAAANXAAADVwAAAFcAAAJXAAAAVwAAA1cAAAFXAAACVwAAAlcAAAFXAAACZAAAAFMAAABkAAAAZAAAAGQAAABXAAAAVwAAAVcAAAJXAAAAZAAAAFcAAAJXAAADZAAAAFcAAABXAAAAVwAAAmQAAABTAAAAZAAAAGQAAABkAAAAZAAAAFcAAANXAAADVwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAVwAAA2QAAABXAAABVwAAAVcAAABkAAAAVwAAAVcAAABXAAADVwAAAVcAAAJkAAAAZAAAAGQAAABTAAAAZAAAAFcAAAFXAAADVwAAAlcAAABXAAAAZAAAAFcAAAJXAAACVwAAAlcAAAFXAAAAZAAAAGQAAABkAAAAUwAAAGQAAABXAAADZAAAAFcAAAFXAAADVwAAA1cAAANXAAADVwAAA1cAAANXAAADVwAAAWQAAABkAAAAZAAAAGQAAABkAAAAVwAAAlcAAANXAAAAVwAAAVcAAANXAAADVwAAAlcAAAFXAAACVwAAAFcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAFcAAABXAAAAVwAAAFcAAAJXAAABZAAAAFcAAAFXAAAAVwAAAlcAAAJXAAADZAAAAGQAAABkAAAAZAAAAGQAAABXAAAAZAAAAFcAAANXAAAAVwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAABVwAAAFcAAANXAAACVwAAAlcAAAFXAAADVwAAA1cAAANXAAACVwAAAUcAAAJHAAAARwAAAlcAAABXAAACVwAAAVcAAAJXAAACVwAAAVcAAAFXAAABVwAAAVcAAAFXAAAAVwAAAFcAAANkAAAARwAAAEcAAANXAAADVwAAAVcAAAFXAAADVwAAAFcAAANkAAAAVwAAAlcAAAFXAAACVwAAAVcAAANXAAABZAAAAEcAAANHAAAAVwAAA2QAAABXAAAAVwAAAVcAAABXAAACZAAAAFcAAANXAAACVwAAAVcAAANXAAAAVwAAA2QAAABHAAAARwAAAw== + tiles: GgAAAAADGgAAAAABGgAAAAAAGgAAAAADGgAAAAABcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAABYwAAAAACYwAAAAADYwAAAAACcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAAAGgAAAAAAGgAAAAACcAAAAAAAYwAAAAADYwAAAAACYwAAAAAAYwAAAAADYwAAAAAAYwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAADYwAAAAAAYwAAAAACYwAAAAAAYwAAAAADYwAAAAABYwAAAAACYwAAAAACYwAAAAABYwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAABYwAAAAACYwAAAAAAcAAAAAAAYwAAAAACYwAAAAADcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAADYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAYwAAAAADcAAAAAAAYwAAAAABYwAAAAABYwAAAAAAcAAAAAAAYwAAAAABYwAAAAAAYwAAAAADYwAAAAABYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYwAAAAABYwAAAAADYwAAAAACYwAAAAAAYwAAAAAAcAAAAAAAYwAAAAACYwAAAAACYwAAAAACYwAAAAABYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYwAAAAADcAAAAAAAYwAAAAABYwAAAAADYwAAAAADYwAAAAADYwAAAAADYwAAAAADYwAAAAADYwAAAAADYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAADYwAAAAAAYwAAAAABYwAAAAADYwAAAAADYwAAAAACYwAAAAABYwAAAAACYwAAAAAAYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAACYwAAAAABcAAAAAAAYwAAAAABYwAAAAAAYwAAAAACYwAAAAACYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAcAAAAAAAYwAAAAADYwAAAAAAYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAAAYwAAAAADYwAAAAACYwAAAAACYwAAAAABYwAAAAADYwAAAAADYwAAAAADYwAAAAACYwAAAAABUwAAAAACUwAAAAAAUwAAAAACYwAAAAAAYwAAAAACYwAAAAABYwAAAAACYwAAAAACYwAAAAABYwAAAAABYwAAAAABYwAAAAABYwAAAAABYwAAAAAAYwAAAAAAYwAAAAADcAAAAAAAUwAAAAAAUwAAAAADYwAAAAADYwAAAAABYwAAAAABYwAAAAADYwAAAAAAYwAAAAADcAAAAAAAYwAAAAACYwAAAAABYwAAAAACYwAAAAABYwAAAAADYwAAAAABcAAAAAAAUwAAAAADUwAAAAAAYwAAAAADcAAAAAAAYwAAAAAAYwAAAAABYwAAAAAAYwAAAAACcAAAAAAAYwAAAAADYwAAAAACYwAAAAABYwAAAAADYwAAAAAAYwAAAAADcAAAAAAAUwAAAAAAUwAAAAAD + version: 6 -1,1: ind: -1,1 - tiles: ZAAAAGQAAABHAAABRwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAAAWAAADFgAAAGQAAABkAAAARwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAFMAAABkAAAAFgAAABYAAAJkAAAAZAAAAGQAAABkAAAARwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABZAAAAEcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAABVwAAAVcAAAFXAAACVwAAAmQAAABkAAAARwAAAWQAAABHAAABZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAVwAAAGQAAABbAAACWwAAAVcAAAJkAAAAZAAAAEcAAABkAAAARwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABbAAADWwAAAlsAAANXAAADFgAAAGQAAABHAAAARwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFsAAAJbAAAAVwAAAhYAAAJkAAAARwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABbAAABWwAAAlsAAAFHAAAAZAAAAEcAAAFkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABbAAABZAAAAFsAAAJbAAABRwAAA2QAAABHAAAAZAAAAEcAAABkAAAAZAAAAFMAAABTAAAAZAAAAGQAAABXAAADWwAAA1sAAABbAAADWwAAAUcAAAJkAAAAZAAAAGQAAABHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAlsAAAFbAAAAWwAAAlsAAAJHAAACRwAAA2QAAABHAAABRwAAAU0AAABNAAABTQAAAU0AAANNAAACZAAAAFcAAABXAAAAVwAAAlcAAAFXAAABRwAAA2QAAABHAAACRwAAA0cAAAJNAAACTQAAAU0AAABNAAABTQAAA2QAAABkAAAAZAAAAGQAAABkAAAAVwAAAUcAAAJkAAAARwAAAEcAAABHAAADTQAAAE0AAANNAAADTQAAAE0AAANkAAAAVwAAA1cAAANXAAABVwAAA1cAAAFkAAAAZAAAAEcAAAJHAAABRwAAAE0AAABNAAABTQAAA00AAAJNAAAAZAAAAFcAAAJXAAACVwAAAlcAAAJXAAACRwAAAmQAAABkAAAARwAAAEcAAAJHAAABRwAAA0cAAABHAAAARwAAAFcAAANXAAABVwAAAVcAAAJXAAAAVwAAAA== + tiles: cAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAABYwAAAAABYwAAAAACYwAAAAACcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAYwAAAAAAcAAAAAAAZwAAAAACZwAAAAABYwAAAAACcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAZwAAAAADZwAAAAACZwAAAAADYwAAAAADGgAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAZwAAAAACZwAAAAAAYwAAAAACGgAAAAACcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAZwAAAAABZwAAAAACZwAAAAABUwAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAZwAAAAABcAAAAAAAZwAAAAACZwAAAAABUwAAAAADcAAAAAAAUwAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAYwAAAAADZwAAAAADZwAAAAAAZwAAAAADZwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACZwAAAAABZwAAAAAAZwAAAAACZwAAAAACUwAAAAACUwAAAAADcAAAAAAAUwAAAAABUwAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAACYwAAAAABYwAAAAABUwAAAAADcAAAAAAAUwAAAAACUwAAAAADUwAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABUwAAAAACcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADcAAAAAAAYwAAAAADYwAAAAADYwAAAAABYwAAAAADYwAAAAABcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAcAAAAAAAYwAAAAACYwAAAAACYwAAAAACYwAAAAACYwAAAAACUwAAAAACcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAYwAAAAADYwAAAAABYwAAAAABYwAAAAACYwAAAAAAYwAAAAAA + version: 6 0,2: ind: 0,2 - tiles: VwAAAWQAAABXAAADVwAAAVcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAVcAAABXAAAAVwAAAlcAAANXAAABVwAAAlcAAAImAAABJgAAACYAAAImAAADJgAAAFcAAANkAAAAZAAAAGQAAABXAAACZAAAAFcAAAFXAAACVwAAA2QAAABXAAAAVwAAAVcAAANXAAADVwAAA1cAAAFXAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAGQAAABkAAAAVwAAAFoAAANaAAAAWgAAAloAAABaAAADVwAAAGQAAABkAAAAZAAAAB0AAAFkAAAAZAAAAFcAAAFkAAAAZAAAAFcAAAJaAAABWgAAA1oAAAJaAAADWgAAAFcAAANkAAAAZAAAAGQAAABkAAAAHQAAAFcAAAMmAAADVwAAAmQAAABXAAAAWgAAAVoAAAJaAAACWgAAAloAAAFXAAACZAAAAFMAAABkAAAAZAAAAGQAAABXAAAAZAAAAFcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAJkAAAAZAAAACYAAABXAAACZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAAAdAAACHQAAAlcAAABXAAACZAAAAGQAAABkAAAAUwAAAFMAAABHAAABRwAAAEcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAADUAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAADUAAAA1AAAANQAAADUAAABkAAAAUwAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAAA1AAAANQAAADUAAAA1AAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGEAAABhAAABYQAAAmEAAAFkAAAAUwAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABhAAACYQAAA2EAAANhAAADZAAAAGQAAABTAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: YwAAAAABcAAAAAAAYwAAAAADYwAAAAABYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABYwAAAAAAYwAAAAAAYwAAAAACYwAAAAADYwAAAAABYwAAAAACYwAAAAACKgAAAAABKgAAAAAAKgAAAAACKgAAAAADKgAAAAAAYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACcAAAAAAAYwAAAAABYwAAAAACYwAAAAADcAAAAAAAYwAAAAAAYwAAAAABYwAAAAADYwAAAAADYwAAAAADYwAAAAABYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAZgAAAAADZgAAAAAAZgAAAAACZgAAAAAAZgAAAAADYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIQAAAAABcAAAAAAAcAAAAAAAYwAAAAABcAAAAAAAcAAAAAAAYwAAAAACZgAAAAABZgAAAAADZgAAAAACZgAAAAADZgAAAAAAYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIQAAAAAAYwAAAAADKgAAAAADYwAAAAACcAAAAAAAYwAAAAAAZgAAAAABZgAAAAACZgAAAAACZgAAAAACZgAAAAABYwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAcAAAAAAAYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAKgAAAAAAYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAIQAAAAACIQAAAAACYwAAAAAAYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAABbQAAAAACbQAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAADbQAAAAADbQAAAAADcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 -1,2: ind: -1,2 - tiles: RwAAAUcAAAFkAAAARwAAAGQAAABHAAADRwAAAkcAAABHAAACRwAAA2QAAABXAAABVwAAAVcAAABXAAAAVwAAAEcAAANHAAAARwAAAmQAAABkAAAARwAAAkcAAANHAAACRwAAA0cAAANXAAACVwAAAlcAAANXAAADVwAAAVcAAAJHAAABZAAAAGQAAABkAAAAZAAAAEcAAABHAAACRwAAA0cAAABHAAAAZAAAAFcAAAJXAAADVwAAA1cAAABXAAAARwAAAGQAAAAoAAAAKAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJkAAAAKAAAACgAAAAoAAAAZAAAAFMAAABkAAAAUwAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAAB0AAAJHAAAAZAAAACgAAAAoAAAAKAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAAAdAAACRwAAAGQAAAAoAAAAKAAAACgAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFkAAAAKAAAACgAAAAoAAAAZAAAABYAAAMWAAAAFgAAABYAAAIWAAADZAAAAGQAAABkAAAAZAAAAB0AAAFHAAACZAAAACgAAAAoAAAAKAAAAGQAAAAWAAACFgAAABYAAAIWAAADFgAAAWQAAABTAAAAZAAAAGQAAABkAAAARwAAA2QAAAAoAAAAKAAAACgAAABkAAAAFgAAARYAAAAWAAADFgAAARYAAAFkAAAAZAAAAFMAAABkAAAAZAAAAEcAAANkAAAAKAAAACgAAAAoAAAAZAAAABYAAAMWAAABFgAAAxYAAAAWAAACZAAAAGQAAABkAAAAZAAAAFMAAABHAAAAZAAAACgAAAAoAAAAKAAAAGQAAAAWAAADFgAAARYAAAMWAAADFgAAAWQAAABkAAAAZAAAAGQAAABkAAAARwAAAGQAAAAoAAAAKAAAACgAAABkAAAAFgAAARYAAAAWAAACFgAAAxYAAANkAAAAUwAAAGQAAABkAAAAZAAAAEcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABZAAAAFMAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAFMAAABTAAAARwAAA0cAAAFHAAACRwAAAUcAAAJHAAACZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: UwAAAAABUwAAAAABcAAAAAAAUwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAADcAAAAAAAYwAAAAABYwAAAAABYwAAAAAAYwAAAAAAYwAAAAAAUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAADUwAAAAADYwAAAAACYwAAAAACYwAAAAADYwAAAAADYwAAAAABYwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAYwAAAAACYwAAAAADYwAAAAADYwAAAAAAYwAAAAAAUwAAAAAAcAAAAAAALAAAAAAALAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIQAAAAACUwAAAAAAcAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAIQAAAAACUwAAAAAAcAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAAAGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIQAAAAABUwAAAAACcAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAACGgAAAAADGgAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAADGgAAAAABGgAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAADGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAUwAAAAAAcAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAADGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAACGgAAAAADGgAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 1,2: ind: 1,2 - tiles: RwAAAkcAAAJTAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAUwAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAUwAAAGQAAABTAAAAZAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYQAAA2QAAABhAAACZAAAAGEAAANhAAACYQAAA2QAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGEAAAFhAAAAYQAAAWEAAAFkAAAAYQAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAYQAAASEAAAI4AAAAYQAAAmEAAAJkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYQAAAGEAAAEhAAACIQAAAmQAAABhAAAAYQAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAYQAAAjgAAABkAAAAYQAAAmEAAAJkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABhAAABYQAAA2QAAABhAAABYQAAAWQAAABhAAABZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYQAAAWQAAABhAAACZAAAAGQAAABhAAADYQAAAWQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAUwAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAUwAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: UwAAAAACUwAAAAACXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAADcAAAAAAAbQAAAAACcAAAAAAAbQAAAAADbQAAAAACbQAAAAADcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAABbQAAAAAAbQAAAAABbQAAAAABcAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABJQAAAAACQwAAAAAAbQAAAAACbQAAAAACcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAAAbQAAAAABJQAAAAACJQAAAAACcAAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACQwAAAAAAcAAAAAAAbQAAAAACbQAAAAACcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAABbQAAAAADcAAAAAAAbQAAAAABbQAAAAABcAAAAAAAbQAAAAABcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAABcAAAAAAAbQAAAAACcAAAAAAAcAAAAAAAbQAAAAADbQAAAAABcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -2,2: ind: -2,2 - tiles: ZAAAAGQAAABHAAABZAAAAEcAAABHAAACRwAAAVMAAABHAAABRwAAAUcAAABkAAAAZAAAAEcAAAJkAAAAZAAAAGQAAABkAAAARwAAAEcAAANHAAAAZAAAAGQAAABHAAAAZAAAAGQAAABHAAADRwAAA0cAAAFHAAACRwAAAUcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAAWQAAABHAAACKAAAACgAAAAoAAAAZAAAAEcAAAJHAAAAFgAAAhYAAANkAAAAFgAAAxYAAANkAAAAZAAAAGQAAABkAAAARwAAAkcAAAJHAAAARwAAAUcAAAJHAAABZAAAABYAAAMWAAAAZAAAABYAAAIWAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAJkAAAARwAAAGQAAAAWAAAAFgAAARYAAAMWAAAAFgAAAmQAAABkAAAAZAAAAGQAAAAWAAABFgAAAxYAAAAWAAACZAAAAGQAAABHAAABFgAAAhYAAABkAAAAFgAAAxYAAANkAAAAZAAAAGQAAABkAAAAFgAAARYAAAMWAAABFgAAAmQAAABkAAAARwAAAhYAAAEWAAABZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAABYAAAIWAAAAFgAAARYAAABkAAAARwAAAWQAAAAWAAAAFgAAA2QAAABkAAAAYQAAAmQAAABTAAAAZAAAAGQAAAAWAAAAFgAAARYAAAMWAAAAZAAAAEcAAABkAAAAZAAAAGQAAABkAAAAYQAAAmQAAABkAAAAZAAAAGQAAABkAAAAFgAAAxYAAAEWAAAAFgAAAGQAAABHAAACRwAAAkkAAABkAAAAZAAAAGEAAAJhAAADZAAAAGQAAABkAAAAZAAAABYAAAAWAAAAFgAAARYAAABkAAAAZAAAAEcAAAJJAAACZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAABYAAANkAAAAZAAAAEcAAANHAAAASQAAAWQAAAAlAAAAJQAAACUAAABkAAAAZAAAAGQAAABkAAAAYQAAA2EAAABhAAAAYQAAA2QAAABHAAAARwAAAUkAAABkAAAAJQAAACUAAAAlAAAAZAAAAGQAAABkAAAAZAAAAGEAAABhAAACYQAAAGEAAABHAAABRwAAA0cAAABJAAADRwAAAiUAAAAlAAAAJQAAAGQAAABkAAAAZAAAAGQAAABhAAACYQAAA2EAAAJhAAACZAAAAGQAAABkAAAASQAAA2QAAAAlAAAAJQAAACUAAABkAAAAUwAAAGQAAABkAAAAYQAAAWEAAAJhAAAAYQAAAmQAAABHAAAAZAAAAA== + tiles: cAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABXwAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAUwAAAAACLAAAAAAALAAAAAAALAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAGgAAAAACGgAAAAADcAAAAAAAGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAABcAAAAAAAGgAAAAADGgAAAAAAcAAAAAAAGgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAUwAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAADGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAUwAAAAABGgAAAAACGgAAAAAAcAAAAAAAGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAABGgAAAAACcAAAAAAAcAAAAAAAUwAAAAACGgAAAAABGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAABGgAAAAAAcAAAAAAAUwAAAAABcAAAAAAAGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAbQAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAADGgAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAAAGgAAAAAAcAAAAAAAUwAAAAACUwAAAAACVQAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAUwAAAAACVQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAVQAAAAABcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAAAbQAAAAAAbQAAAAADcAAAAAAAUwAAAAAAUwAAAAABVQAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbQAAAAAAbQAAAAAAUwAAAAABUwAAAAADUwAAAAAAVQAAAAADUwAAAAACKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAADbQAAAAACbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAVQAAAAADcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAACbQAAAAAAbQAAAAACcAAAAAAAUwAAAAAAcAAAAAAA + version: 6 -2,1: ind: -2,1 - tiles: ZAAAAFMAAABkAAAAYQAAAGEAAAJhAAAAYQAAAGEAAABhAAADYQAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGEAAAJhAAABYQAAA2EAAANhAAADYQAAAWEAAAFkAAAAUwAAAGQAAABkAAAAZAAAAGQAAAAoAAAAKAAAAGQAAABhAAADYQAAAmEAAAJhAAABYQAAA2EAAABhAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAKAAAACgAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAACgAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAUwAAAFMAAABkAAAAUwAAAGQAAABTAAAAUwAAAGQAAABTAAAAUwAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAAAFgAAABYAAANhAAAAYQAAAWQAAAAiAAAAIgAAACIAAAAiAAAAIgAAACIAAABkAAAAZAAAAFMAAABkAAAAFgAAABYAAAMWAAADYQAAA2EAAANhAAADZAAAACIAAAAiAAAAIgAAACIAAAAiAAAAZAAAAFMAAABkAAAAZAAAAEcAAAFHAAABFgAAAmEAAAJhAAABYQAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABHAAABRwAAAxYAAAFhAAABYQAAAGEAAAJkAAAAZAAAAEcAAAFHAAADZAAAAEcAAANkAAAAUwAAAFMAAABkAAAARwAAAEcAAAIWAAAAYQAAAWEAAANhAAABZAAAAGQAAABHAAADZAAAAEcAAANHAAAAZAAAAGQAAABTAAAAZAAAAEcAAAJHAAACFgAAAGEAAAJhAAABZAAAAGQAAABHAAADRwAAAmQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABHAAABRwAAABYAAABhAAACYQAAAmQAAABkAAAAZAAAAEcAAABHAAAARwAAAWQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAEcAAABHAAABRwAAAkcAAANTAAAAUwAAAFMAAABTAAAARwAAAUcAAANTAAAAUwAAAEcAAAJHAAABRwAAAQ== + tiles: cAAAAAAAXwAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAADbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAACbQAAAAABbQAAAAADbQAAAAADbQAAAAADbQAAAAABbQAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALAAAAAAALAAAAAAAcAAAAAAAbQAAAAADbQAAAAACbQAAAAACbQAAAAABbQAAAAADbQAAAAAAbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALAAAAAAALAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAADbQAAAAAAbQAAAAABcAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAADbQAAAAADbQAAAAADbQAAAAADcAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABGgAAAAACbQAAAAACbQAAAAABbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAADGgAAAAABbQAAAAABbQAAAAAAbQAAAAACcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAUwAAAAADcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAACGgAAAAAAbQAAAAABbQAAAAADbQAAAAABcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAACUwAAAAACGgAAAAAAbQAAAAACbQAAAAABcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAAAGgAAAAAAbQAAAAACbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAADXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAUwAAAAABUwAAAAADXwAAAAAAXwAAAAAAUwAAAAACUwAAAAABUwAAAAAB + version: 6 -2,-2: ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAA + version: 6 -3,0: ind: -3,0 - tiles: ZAAAAEcAAAFHAAADRwAAAEcAAAJkAAAARwAAAkcAAAFHAAACRwAAA0cAAABHAAABRwAAAkcAAAFHAAABRwAAAGQAAABHAAADRwAAA0cAAAJHAAACRwAAAUcAAAJHAAABRwAAAUcAAAFHAAAARwAAAUcAAAJHAAADRwAAAEcAAAFkAAAARwAAA0cAAABHAAAARwAAAGQAAABHAAACRwAAAGQAAABHAAACRwAAA0cAAAFkAAAARwAAAkcAAAJHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAABHAAACRwAAA0cAAAFHAAACRwAAAEcAAAFHAAACRwAAAWQAAABkAAAARwAAA0cAAAFHAAADRwAAAUcAAANHAAABRwAAA0cAAANkAAAARwAAA0cAAAFkAAAARwAAAkcAAANHAAAARwAAAWQAAABkAAAARwAAAkcAAAJHAAADRwAAA0cAAAFHAAAARwAAA0cAAABHAAACZAAAAEcAAABHAAAARwAAA0cAAANHAAADZAAAAEcAAANkAAAARwAAAGQAAABkAAAARwAAAUcAAAFHAAABZAAAAGQAAABkAAAAZAAAAEwAAABMAAAAZAAAAGQAAABkAAAAZAAAAEcAAABkAAAAZAAAAEcAAAFHAAABRwAAAkcAAABHAAABRwAAA2QAAABhAAABYQAAAWQAAABkAAAAZAAAAEcAAANkAAAARwAAA2QAAABHAAABRwAAAEcAAABkAAAAZAAAAGQAAABkAAAAYQAAAmEAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAAJkAAAAZAAAAEcAAAJHAAABZAAAAGQAAABkAAAAZAAAAGEAAABhAAADZAAAAGQAAABkAAAARwAAAUcAAANkAAAAZAAAAGQAAABHAAACZAAAAGQAAABkAAAAUwAAAGQAAABhAAACYQAAAmQAAABTAAAAZAAAAEcAAAFkAAAARwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAYQAAAGEAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAANkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAZAAAAEcAAANHAAADZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAEcAAABHAAADZAAAACgAAAAoAAAAKAAAAA== + tiles: cAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAABcAAAAAAAUwAAAAACUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAABUwAAAAADUwAAAAABUwAAAAADUwAAAAADcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAADcAAAAAAAUwAAAAADcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAbQAAAAABbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAUwAAAAADcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAACbQAAAAACcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAABcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAALAAAAAAALAAAAAAALAAAAAAA + version: 6 -3,1: ind: -3,1 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAADZAAAACgAAAAoAAAAKAAAAFMAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAARwAAAGQAAAAoAAAAKAAAACgAAABTAAAAZAAAAGQAAABTAAAAZAAAAGQAAABTAAAAZAAAAGQAAABHAAADZAAAAEcAAABkAAAAKAAAACgAAAAoAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAGQAAABHAAADZAAAACgAAAAoAAAAKAAAAFMAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAATAAAAEwAAABkAAAARwAAAGQAAAAoAAAAKAAAACgAAABkAAAAUwAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAEcAAABkAAAARwAAAEcAAABkAAAAKAAAACgAAAAoAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAABZAAAAGQAAAAoAAAAZAAAAGMAAABkAAAAZAAAAFMAAABkAAAANgAAADYAAAA2AAAAZAAAAEcAAAJHAAADRwAAAxYAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAADYAAAA2AAAANgAAAGQAAABHAAAARwAAAEcAAAAWAAACZAAAABYAAAFkAAAAYwAAAGQAAABkAAAAZAAAAGQAAAA2AAAANgAAADYAAABkAAAAZAAAAEcAAAJHAAAAZAAAAGQAAAAWAAADFgAAAWQAAABkAAAAUwAAAGQAAABkAAAAEQAAABEAAAARAAAAZAAAAGQAAABHAAABRwAAAxYAAAMWAAAAFgAAAhYAAANHAAADZAAAAFMAAABkAAAAZAAAABEAAAARAAAAEQAAAGQAAABHAAACRwAAAWQAAAAWAAABFgAAABYAAAAWAAACRwAAA2QAAABkAAAAZAAAAGQAAAARAAAAEQAAABEAAABkAAAARwAAAWQAAABkAAAAFgAAARYAAAAWAAADFgAAAEcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAAhYAAAIWAAADZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAUcAAAJHAAAARwAAAWQAAABkAAAARwAAAkcAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAAFHAAACRwAAAUcAAAJHAAACZAAAAGQAAABkAAAAZAAAAEcAAABHAAACZAAAAGQAAABTAAAAUwAAAA== + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAALAAAAAAALAAAAAAALAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAALAAAAAAALAAAAAAALAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAUwAAAAAAcAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAUwAAAAADcAAAAAAALAAAAAAALAAAAAAALAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAALAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAGgAAAAACcAAAAAAAGgAAAAABcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADGgAAAAADGgAAAAAAGgAAAAACGgAAAAADUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAGgAAAAABGgAAAAAAGgAAAAAAGgAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAADGgAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAA + version: 6 -3,2: ind: -3,2 - tiles: ZAAAAGQAAABHAAABRwAAAUcAAANHAAACRwAAAEcAAAFHAAABRwAAAUcAAAJHAAABRwAAA0cAAAJTAAAARwAAAEcAAAJkAAAARwAAAEcAAABHAAABRwAAA0cAAAJHAAACRwAAA0cAAAFHAAABRwAAA0cAAAFkAAAAZAAAAEcAAANHAAABRwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABhAAACZAAAAGEAAAJkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABkAAAAYQAAA2EAAANhAAACYQAAA2EAAABhAAADYQAAAmEAAABhAAACYQAAAxYAAAIWAAACFgAAA2QAAABHAAADZAAAAGEAAAJhAAABYQAAAmQAAABhAAAAYQAAA2EAAAFhAAADYQAAAmEAAAEWAAACFgAAABYAAANHAAACRwAAAWQAAABhAAADZAAAAGQAAABhAAAAZAAAAGEAAANhAAADYQAAAmEAAAFhAAADFgAAAxYAAAIWAAADZAAAAEcAAANkAAAAYQAAAmQAAABkAAAAZAAAAGEAAANhAAAAYQAAA2EAAABhAAAAYQAAARYAAAEWAAADFgAAA2QAAABHAAAAZAAAAGEAAANkAAAAZAAAAGQAAABkAAAAYQAAA2EAAABhAAAAYQAAAmEAAAFhAAADZAAAABYAAAJHAAADRwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABhAAABYQAAA2EAAAFhAAADYQAAAhYAAAIWAAABRwAAA0cAAAFkAAAAMAAAADAAAAAwAAAAMAAAAGQAAABkAAAAZAAAAEcAAABHAAADRwAAA2QAAABkAAAAZAAAAEcAAAFkAAAAFgAAAxYAAAIWAAACFgAAAhYAAANkAAAAZAAAAEkAAANJAAAASQAAAkkAAANJAAADSQAAAkkAAAFHAAABRwAAAxYAAAMWAAAAMAAAADAAAAAwAAAAFgAAAxYAAANJAAABSQAAAkkAAAFJAAADSQAAAkkAAANJAAAARwAAA0cAAAEWAAACFgAAAzAAAAAwAAAAMAAAABYAAAAWAAACSQAAAUkAAAJJAAABSQAAA0kAAANJAAABSQAAAkcAAAJkAAAAZAAAABYAAAAwAAAAMAAAADAAAAAWAAABFgAAAkkAAANJAAABSQAAA0kAAAFJAAACSQAAAEkAAANHAAACRwAAAhYAAAIWAAABFgAAAhYAAAAWAAAAFgAAARYAAABJAAADSQAAA0kAAAFJAAACSQAAA0kAAABJAAADRwAAAkcAAAFkAAAAFgAAAhYAAAEWAAADFgAAAxYAAAFkAAAASQAAAEkAAABJAAACSQAAAUkAAAFJAAAASQAAAQ== + tiles: cAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAACXwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACcAAAAAAAbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAbQAAAAADbQAAAAADbQAAAAACbQAAAAADbQAAAAAAbQAAAAADbQAAAAACbQAAAAAAbQAAAAACbQAAAAADGgAAAAACGgAAAAACGgAAAAADcAAAAAAAUwAAAAADcAAAAAAAbQAAAAACbQAAAAABbQAAAAACcAAAAAAAbQAAAAAAbQAAAAADbQAAAAABbQAAAAADbQAAAAACbQAAAAABGgAAAAACGgAAAAAAGgAAAAADUwAAAAACUwAAAAABcAAAAAAAbQAAAAADcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAbQAAAAADbQAAAAADbQAAAAACbQAAAAABbQAAAAADGgAAAAADGgAAAAACGgAAAAADcAAAAAAAUwAAAAADcAAAAAAAbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAAAbQAAAAADbQAAAAAAbQAAAAAAbQAAAAABGgAAAAABGgAAAAADGgAAAAADcAAAAAAAUwAAAAAAcAAAAAAAbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAAAbQAAAAAAbQAAAAACbQAAAAABbQAAAAADcAAAAAAAGgAAAAACUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAADbQAAAAABbQAAAAADbQAAAAACGgAAAAACGgAAAAABUwAAAAADUwAAAAABcAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAGgAAAAADGgAAAAACGgAAAAACGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAVQAAAAADVQAAAAAAVQAAAAACVQAAAAADVQAAAAADVQAAAAACVQAAAAABUwAAAAABUwAAAAADGgAAAAADGgAAAAAANwAAAAAANwAAAAAANwAAAAAAGgAAAAADGgAAAAADVQAAAAABVQAAAAACVQAAAAABVQAAAAADVQAAAAACVQAAAAADVQAAAAAAUwAAAAADUwAAAAABGgAAAAACGgAAAAADNwAAAAAANwAAAAAANwAAAAAAGgAAAAAAGgAAAAACVQAAAAABVQAAAAACVQAAAAABVQAAAAADVQAAAAADVQAAAAABVQAAAAACUwAAAAACcAAAAAAAcAAAAAAAGgAAAAAANwAAAAAANwAAAAAANwAAAAAAGgAAAAABGgAAAAACVQAAAAADVQAAAAABVQAAAAADVQAAAAABVQAAAAACVQAAAAAAVQAAAAADUwAAAAACUwAAAAACGgAAAAACGgAAAAABGgAAAAACGgAAAAAAGgAAAAAAGgAAAAABGgAAAAAAVQAAAAADVQAAAAADVQAAAAABVQAAAAACVQAAAAADVQAAAAAAVQAAAAADUwAAAAACUwAAAAABcAAAAAAAGgAAAAACGgAAAAABGgAAAAADGgAAAAADGgAAAAABcAAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAABVQAAAAABVQAAAAAAVQAAAAAB + version: 6 -3,-1: ind: -3,-1 - tiles: YwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFkAAAAZAAAAEcAAABHAAABRwAAAWQAAABHAAAARwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACZAAAAEcAAAFkAAAAZAAAAEcAAAJHAAACRwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAANHAAABRwAAAEcAAAFHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAABHAAACRwAAAGQAAABkAAAARwAAA2QAAABHAAACRwAAAUcAAANHAAAAUwAAAGQAAABHAAABZAAAAEcAAAJHAAADRwAAAEcAAANHAAAAZAAAAEcAAANkAAAARwAAA0cAAAFHAAAARwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAAmQAAABkAAAAZAAAAEcAAAJHAAADRwAAAkcAAANkAAAAZAAAAEcAAAFHAAADRwAAA2QAAABHAAAARwAAA0cAAAFHAAABRwAAAEcAAAJHAAABRwAAA2QAAABkAAAAZAAAAGQAAABHAAADRwAAAUcAAAJkAAAARwAAA0cAAABHAAABRwAAAUcAAANHAAAAZAAAAGQAAABHAAAARwAAA2QAAABkAAAAZAAAAEcAAABkAAAAZAAAAEcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAAFkAAAAYQAAA2EAAAJhAAAAYQAAA2QAAABkAAAARwAAA0cAAANHAAAARwAAA0cAAANkAAAAZAAAAGQAAABkAAAAZAAAAGEAAANhAAADYQAAAGEAAANkAAAARwAAA0cAAANHAAAARwAAAmQAAABHAAABZAAAAEcAAABHAAAARwAAAmQAAABhAAAAYQAAAGEAAAFkAAAAYQAAAEcAAAFHAAABRwAAAGQAAABkAAAARwAAA0cAAAJHAAABRwAAAUcAAANkAAAAYQAAAGEAAAFhAAADYQAAAmQAAABHAAADRwAAAEcAAABkAAAARwAAAkcAAABkAAAARwAAAEcAAAJHAAADZAAAAGQAAABkAAAARwAAA2QAAABkAAAARwAAAUcAAAJkAAAAZAAAAEcAAANkAAAAZAAAAGQAAABkAAAARwAAAg== + tiles: bwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAAAXwAAAAAAcAAAAAAAUwAAAAABcAAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAUwAAAAADcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAACcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAbQAAAAADbQAAAAACbQAAAAAAbQAAAAADcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAADbQAAAAAAbQAAAAADcAAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAUwAAAAABcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAABcAAAAAAAbQAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAADcAAAAAAAbQAAAAAAbQAAAAABbQAAAAADbQAAAAACcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAC + version: 6 -4,-1: ind: -4,-1 - tiles: ZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGQAAABkAAAAZAAAAEcAAANHAAAARwAAAUcAAAJHAAACRwAAAkcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAABRwAAAmQAAABHAAADRwAAAGQAAABTAAAAZAAAAFMAAABkAAAAZAAAAFMAAABkAAAARwAAAkcAAAFHAAABRwAAA0cAAAJkAAAARwAAAEcAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEcAAANHAAAAZAAAAGQAAABhAAAAZAAAAGEAAANkAAAAYQAAAWQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAACRwAAAGQAAABhAAABZAAAAGQAAABhAAADYQAAAmQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABkAAAARwAAAUcAAABkAAAAZAAAAGEAAAFkAAAAZAAAAGEAAABkAAAAZAAAAFMAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEcAAANkAAAAZAAAAGQAAABkAAAAYQAAAmEAAANkAAAAYQAAA2QAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAACZAAAAEcAAAFkAAAAZAAAAGQAAABkAAAAYQAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABkAAAARwAAAmQAAABHAAADZAAAAGEAAAFkAAAAZAAAAGEAAANkAAAAZAAAAFMAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEcAAAFkAAAARwAAAGQAAABkAAAAYQAAAGQAAABhAAABYQAAA2QAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAACRwAAAEcAAAJkAAAAYQAAAmQAAABhAAACYQAAA2QAAABkAAAAZAAAAA== + tiles: cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAACcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAADUwAAAAACcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAbQAAAAADcAAAAAAAbQAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAbQAAAAABcAAAAAAAcAAAAAAAbQAAAAADbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAbQAAAAABcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAADcAAAAAAAbQAAAAADcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAUwAAAAADcAAAAAAAbQAAAAABcAAAAAAAcAAAAAAAbQAAAAADcAAAAAAAcAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAbQAAAAABbQAAAAADcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAbQAAAAACcAAAAAAAbQAAAAACbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 -4,0: ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAGQAAABHAAACRwAAAEcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABkAAAARwAAAUcAAANHAAADZAAAAGQAAABTAAAAZAAAAGQAAABTAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEcAAABHAAADZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAAUcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAA0cAAABHAAABRwAAAEcAAANHAAACRwAAAUcAAAFHAAABRwAAAmQAAABkAAAAZAAAAGQAAABHAAABRwAAA0cAAAFkAAAAZAAAAGQAAABHAAADRwAAAEcAAABHAAADRwAAA0cAAAJHAAADZAAAAGQAAABHAAAARwAAAEcAAAFHAAACZAAAAGQAAABHAAADRwAAAUcAAAJkAAAAZAAAAEcAAAFHAAADRwAAAEcAAABHAAADRwAAAEcAAABkAAAARwAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAABHAAAAZAAAAEwAAABMAAAATAAAAEcAAABHAAACTAAAAEwAAABkAAAAUwAAAFMAAABkAAAAZAAAAEcAAAJHAAADRwAAA2QAAABhAAAAYQAAAGEAAABhAAACYQAAAGEAAAFhAAACZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAUcAAANkAAAAYQAAAWEAAABhAAAAYQAAAGEAAAFhAAAAYQAAA0cAAANkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAADZAAAAGEAAABhAAADYQAAAmEAAANhAAAAYQAAA2EAAANHAAACZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAA2QAAABkAAAAZAAAAGQAAABkAAAAYQAAAmEAAANhAAACRwAAA2QAAABkAAAAZAAAAGQAAABHAAAARwAAAEcAAANhAAABYQAAAWEAAABhAAACZAAAAGEAAAJhAAABYQAAAUcAAABkAAAAZAAAAGQAAABkAAAARwAAAmQAAABHAAACYQAAAGEAAAFhAAACYQAAA2QAAABkAAAAZAAAAGQAAABHAAABZAAAAGQAAABkAAAAZAAAAEcAAABkAAAARwAAA2EAAABhAAABYQAAAWEAAAJkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAAkcAAAFhAAACYQAAA2EAAANhAAADZAAAAGQAAABkAAAAZAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAAAUwAAAAACWAAAAAAAWAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAADcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAACbQAAAAAAbQAAAAABbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAbQAAAAABbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAABbQAAAAAAbQAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAbQAAAAAAbQAAAAADbQAAAAACbQAAAAADbQAAAAAAbQAAAAADbQAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAADbQAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADbQAAAAABbQAAAAABbQAAAAAAbQAAAAACcAAAAAAAbQAAAAACbQAAAAABbQAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAUwAAAAACbQAAAAAAbQAAAAABbQAAAAACbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAUwAAAAADbQAAAAAAbQAAAAABbQAAAAABbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABbQAAAAACbQAAAAADbQAAAAADbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 -4,1: ind: -4,1 - tiles: UwAAAGQAAABTAAAAUwAAAGQAAABkAAAARwAAA0cAAANhAAACYQAAA2EAAAJhAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAEcAAAJHAAABZAAAABYAAAAWAAADFgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAABZAAAAGQAAAAWAAAAFgAAAhYAAAFkAAAAUwAAAGQAAABTAAAAZAAAAGQAAABTAAAAZAAAAGQAAABHAAACRwAAA2QAAABkAAAAFgAAARYAAAEWAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAARwAAAUcAAAFHAAADFgAAAxYAAAIWAAACFgAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAABYAAAIWAAAAFgAAABYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABHAAADZAAAAEcAAAFkAAAAHQAAAx0AAAAdAAABHQAAAmQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAADZAAAAB0AAAEdAAAAHQAAAx0AAANkAAAARwAAAWQAAABkAAAAZAAAAGQAAABkAAAARwAAAGQAAABkAAAARwAAAWQAAAAdAAADHQAAAR0AAAAdAAAAZAAAAEcAAABkAAAAUwAAAGQAAABkAAAARwAAA0cAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAdAAACZAAAAGQAAABHAAAAZAAAAFMAAABkAAAAZAAAAEcAAABHAAAARwAAA2QAAABHAAADRwAAAkcAAABHAAAATAAAAEcAAAJHAAADRwAAAmQAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAAJkAAAARwAAAEcAAANHAAABRwAAAEcAAABMAAAARwAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAEcAAABHAAAAZAAAAEcAAAFHAAAARwAAA0cAAANHAAABRwAAA0cAAAJHAAACZAAAAGQAAABkAAAAZAAAAEcAAAJkAAAARwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAGQAAABHAAADRwAAA0cAAABHAAAARwAAAWQAAABHAAABRwAAAUcAAAFHAAACRwAAAkwAAABkAAAAZAAAAA== + tiles: XwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADbQAAAAACbQAAAAADbQAAAAACbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAGgAAAAAAGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAABcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAADGgAAAAADGgAAAAACGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAUwAAAAABcAAAAAAAIQAAAAADIQAAAAAAIQAAAAABIQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAIQAAAAABIQAAAAAAIQAAAAADIQAAAAADcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAIQAAAAADIQAAAAABIQAAAAAAIQAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIQAAAAACcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAWAAAAAAAUwAAAAACUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAWAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAACWAAAAAAAcAAAAAAAcAAAAAAA + version: 6 -4,2: ind: -4,2 - tiles: RwAAAkcAAANHAAABRwAAAUcAAANkAAAAZAAAAEcAAANHAAADRwAAA2QAAABkAAAAZAAAAGQAAABHAAABRwAAA0cAAAFkAAAARwAAAkcAAAJHAAAAZAAAAGQAAABHAAAARwAAAUcAAAJHAAADZAAAAEcAAAFHAAACRwAAA0cAAAFHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAwAAAAMAAAAGQAAABHAAACZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAIWAAACMAAAADAAAABkAAAARwAAAmQAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAABFgAAAjAAAAAwAAAARwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAhYAAAEwAAAAMAAAAGQAAABHAAADZAAAAD8AAABHAAAAPwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAABFgAAAxYAAAJkAAAARwAAAj8AAABkAAAAPwAAAD8AAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAPwAAAGQAAABkAAAAZAAAAEcAAAJHAAACPwAAAD8AAABHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAD8AAAA/AAAAPwAAAGQAAABHAAAAPwAAAEcAAAI/AAAAPwAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAAA/AAAAPwAAAD8AAABkAAAARwAAAj8AAABHAAADRwAAAD8AAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFkAAAAPwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAZAAAAEcAAAFHAAACRwAAAj8AAABHAAAAZAAAAEcAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABHAAABRwAAAz8AAABHAAAAPwAAAD8AAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAAFHAAACZAAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAWQAAABHAAABRwAAAkcAAAJHAAADTAAAAA== + tiles: UwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAABcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAADcAAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAANwAAAAAANwAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACNwAAAAAANwAAAAAAcAAAAAAAUwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAACNwAAAAAANwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABNwAAAAAANwAAAAAAcAAAAAAAUwAAAAADcAAAAAAASgAAAAAAUwAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAACcAAAAAAAUwAAAAACSgAAAAAAcAAAAAAASgAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACSgAAAAAASgAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAUwAAAAAASgAAAAAAUwAAAAACSgAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAUwAAAAACSgAAAAAAUwAAAAADUwAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAACSgAAAAAAUwAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADSgAAAAAAUwAAAAAASgAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAADWAAAAAAA + version: 6 -5,-1: ind: -5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABHAAACRwAAAEcAAANHAAADZAAAAEcAAANHAAABRwAAAEcAAAJkAAAAZAAAAEcAAAJjAAAAZAAAAGQAAABkAAAARwAAAUcAAAJHAAABRwAAA2QAAABkAAAAZAAAAGQAAABHAAADRwAAAkcAAANHAAAAYwAAAGQAAABkAAAAZAAAAEcAAAJHAAABRwAAAUcAAAFHAAACRwAAAEcAAABHAAAARwAAAUcAAANHAAADRwAAAmMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAADcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAUwAAAAACbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAACbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -5,0: ind: -5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAABjAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGMAAABjAAAAYwAAAGQAAABHAAABRwAAAUcAAAFkAAAAZAAAAEcAAAJHAAAARwAAAUcAAAJHAAADRwAAAUcAAAJjAAAAAAAAAGMAAABkAAAAZAAAAGQAAABHAAAARwAAAEcAAAJHAAABZAAAAGQAAABHAAABRwAAAUcAAAFHAAACYwAAAAAAAABjAAAAZAAAAEcAAANHAAAARwAAAUcAAAJHAAADRwAAAEcAAANHAAADRwAAAkcAAANkAAAAZAAAAGMAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAFgAAABYAAAAWAAAAFgAAAWQAAABkAAAAUwAAAGQAAABTAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAZAAAABYAAAIWAAAAFgAAAxYAAAJkAAAAZAAAAFMAAABkAAAAZAAAAAAAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGQAAAAWAAABFgAAABYAAAMWAAACZAAAAGQAAABkAAAAZAAAAEcAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABkAAAAFgAAAxYAAAIWAAAAFgAAAmQAAABTAAAAZAAAAGQAAABHAAABAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAZAAAABYAAAAWAAADFgAAAhYAAAAWAAADZAAAAGQAAABkAAAARwAAAQAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGQAAAAWAAABFgAAAxYAAAAWAAACZAAAAGQAAABTAAAAZAAAAEcAAAEAAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABHAAADAAAAAAAAAAAAAAAAYwAAAGQAAABHAAACRwAAA0cAAAFHAAAARwAAAkcAAABHAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAACbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAACbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAADGgAAAAACcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAADGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAAAGgAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAACGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAABAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 -2,3: ind: -2,3 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAYQAAAmEAAANhAAAAYQAAA2QAAABHAAACZAAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA2QAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAA2QAAABkAAAAZAAAAGQAAABHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAABkAAAAZAAAAEcAAAJkAAAAZAAAAEcAAAFkAAAAZAAAADwAAAA8AAAAPAAAADwAAABkAAAAFgAAABYAAAMWAAAAUwAAAGQAAABkAAAARwAAAGQAAABkAAAAZAAAAGQAAAA8AAAAFgAAARYAAAEWAAADPAAAABYAAAMWAAABFgAAAGQAAABkAAAARwAAAGQAAABkAAAARwAAAGQAAABkAAAAPAAAABYAAAI7AAAAFgAAAmQAAAAWAAACFgAAAhYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA4AAAAWAAACOwAAAxYAAAJkAAAAFgAAABYAAAEWAAADZAAAAGQAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAAA8AAAAFgAAABYAAAAWAAACZAAAABYAAAEWAAACFgAAAWQAAABkAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAGQAAABjAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAARwAAA0cAAABHAAABFgAAABYAAAMWAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAEcAAABHAAABRwAAAxYAAAMWAAADFgAAAmMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABHAAADRwAAAUcAAABkAAAAFgAAABYAAAJjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAAAAAAGMAAABkAAAARwAAAkcAAAJHAAADRwAAAUcAAAFHAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAZAAAAGQAAABHAAAARwAAAEcAAABHAAACRwAAAQ== + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAACbQAAAAADbQAAAAAAbQAAAAADcAAAAAAAUwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAGgAAAAABGgAAAAABGgAAAAADRwAAAAAAGgAAAAADGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAARwAAAAAAGgAAAAACRgAAAAAAGgAAAAACcAAAAAAAGgAAAAACGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADwAAAAAAGgAAAAACRgAAAAADGgAAAAACcAAAAAAAGgAAAAAAGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAGgAAAAAAGgAAAAAAGgAAAAACcAAAAAAAGgAAAAABGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABGgAAAAAAGgAAAAADGgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADGgAAAAADGgAAAAADGgAAAAACbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAGgAAAAAAGgAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAB + version: 6 -1,3: ind: -1,3 - tiles: ZAAAAEcAAABHAAABRwAAAEcAAAJHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABkAAAAUwAAAFMAAABTAAAAUwAAAGQAAABkAAAAUwAAAGQAAABjAAAAYwAAAGMAAABkAAAAEQAAABEAAABHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAABjAAAAZAAAABEAAAARAAAARwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGMAAABjAAAAYwAAAGQAAAARAAAAEQAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAGMAAABkAAAAEQAAABEAAAAWAAADFgAAA2QAAABHAAADRwAAAUcAAAFHAAABRwAAA0cAAAJkAAAAZAAAAGMAAABjAAAAZAAAABEAAAARAAAAFgAAARYAAAFkAAAARwAAAEcAAABHAAACRwAAA0cAAABHAAABRwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAAWAAACRwAAAUcAAAJHAAAARwAAAkcAAAJHAAAARwAAAUcAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAWAAACFgAAAWQAAABHAAAARwAAA0cAAABHAAADRwAAA0cAAABHAAADZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAFgAAAxYAAAFkAAAARwAAAkcAAABHAAABRwAAAUcAAANHAAABZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAABYAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAA2QAAABhAAACZAAAAGMAAAAAAAAAAAAAAAAAAAAWAAADFgAAA0cAAANHAAAARwAAAGQAAAAWAAADFgAAAxYAAAJhAAAAYQAAAGQAAABjAAAAAAAAAGMAAAAAAAAAFgAAABYAAABHAAABRwAAAUcAAANkAAAAFgAAARYAAAAWAAAAYQAAAWEAAAJkAAAAYwAAAGMAAABjAAAAAAAAABYAAAJkAAAARwAAA0cAAANHAAACZAAAABYAAAEWAAAAFgAAAWEAAANhAAAAZAAAAGMAAAAAAAAAYwAAAAAAAABHAAACRwAAAkcAAAJHAAACRwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAAAAAAAARwAAAkcAAAJHAAAARwAAA2QAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAAAAAAA== + tiles: cAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAGgAAAAADGgAAAAADcAAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAGgAAAAABGgAAAAABcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAABcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAGgAAAAADGgAAAAABcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAbQAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADGgAAAAADUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAACbQAAAAAAbQAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAUwAAAAABUwAAAAABUwAAAAADcAAAAAAAGgAAAAABGgAAAAAAGgAAAAAAbQAAAAABbQAAAAACcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAGgAAAAACcAAAAAAAUwAAAAADUwAAAAADUwAAAAACcAAAAAAAGgAAAAABGgAAAAAAGgAAAAABbQAAAAADbQAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAA + version: 6 0,3: ind: 0,3 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAABEAAABkAAAAZAAAAGEAAAFhAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAARAAAAZAAAAGEAAAFhAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAANkAAAAYQAAAWEAAAJhAAABEQAAAGQAAABhAAADZAAAAGEAAANkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAABZAAAAGEAAABhAAADYQAAAhEAAABkAAAAYQAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAWQAAABhAAACYQAAAmEAAAIRAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAEgAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAEgAAAAAAcAAAAAAAbQAAAAABbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAbQAAAAABbQAAAAACbQAAAAABEgAAAAAAcAAAAAAAbQAAAAADcAAAAAAAbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAbQAAAAAAbQAAAAADbQAAAAACEgAAAAAAcAAAAAAAbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAbQAAAAACbQAAAAACbQAAAAACEgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 1,3: ind: 1,3 - tiles: ZAAAAGEAAABhAAABZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABhAAABYQAAA2QAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABhAAAAYQAAAmEAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAGEAAAFhAAACZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGEAAABhAAADYQAAA2QAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: cAAAAAAAbQAAAAAAbQAAAAABcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAABbQAAAAADcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAbQAAAAACbQAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAbQAAAAABbQAAAAACcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAbQAAAAADbQAAAAADcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -1,4: ind: -1,4 - tiles: RwAAAUcAAAFHAAADRwAAAmQAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAEcAAAFHAAADRwAAAWQAAABkAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABHAAADRwAAAmQAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: UwAAAAABUwAAAAABUwAAAAADUwAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAUwAAAAABUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -2,4: ind: -2,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGQAAABHAAACRwAAAEcAAAFHAAABRwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABkAAAAZAAAAEcAAAFHAAABRwAAAUcAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAABkAAAARwAAAkcAAAJHAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -3,3: ind: -3,3 - tiles: RwAAAkcAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAABZAAAAFMAAABkAAAARwAAA0cAAABHAAABRwAAAWQAAABHAAACZAAAAEcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAADRwAAA0cAAABkAAAAZAAAAEcAAABHAAACZAAAAGQAAABkAAAAZAAAAEcAAABkAAAAUwAAAGQAAABHAAAARwAAA0cAAAFHAAADZAAAAGQAAABkAAAARwAAAkcAAABkAAAAZAAAAGQAAABHAAADZAAAAFMAAABkAAAARwAAAUcAAANHAAADRwAAA2QAAABHAAABRwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABHAAAAZAAAAFMAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAAAWAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAhYAAANkAAAAYwAAAGMAAABkAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAIWAAABZAAAAGQAAABjAAAAYwAAAGMAAABkAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAADFgAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAAAAAAAAAAAAAGMAAABjAAAAFgAAARYAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABkAAAAYwAAAGMAAABjAAAAYwAAABYAAAEWAAADFgAAAkcAAAJHAAAARwAAAEcAAABkAAAAZAAAAGMAAABjAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAWAAABFgAAARYAAAEWAAADRwAAA0cAAAFHAAADZAAAAGQAAABjAAAAYwAAAGQAAABjAAAAYwAAAAAAAABjAAAAFgAAAmQAAABkAAAARwAAAEcAAABHAAADRwAAA2QAAABkAAAAYwAAAGMAAABkAAAAAAAAAGMAAAAAAAAAAAAAAA== + tiles: UwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAUwAAAAACcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAADcAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAABGgAAAAADGgAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGgAAAAABGgAAAAABGgAAAAADUwAAAAADUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAGgAAAAACcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAA + version: 6 -4,3: ind: -4,3 - tiles: UwAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABTAAAAZAAAAGQAAABHAAADRwAAAkcAAAJHAAADRwAAAWQAAABkAAAAUwAAAGQAAABTAAAAZAAAAGQAAABTAAAAZAAAAGQAAABHAAAARwAAAEcAAAFHAAABRwAAAUcAAAJkAAAAUwAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAADRwAAAkcAAAFHAAAAZAAAAFMAAABkAAAAZAAAAFMAAABkAAAAZAAAAFMAAABkAAAAZAAAAEcAAANHAAADRwAAA0cAAAJHAAAARwAAAkcAAAFHAAAARwAAAUcAAAFHAAADRwAAA0cAAAJHAAACRwAAA0cAAABkAAAARwAAA0cAAAFHAAAARwAAAUcAAAJkAAAARwAAAEcAAAFHAAAARwAAA0cAAANHAAACRwAAAEcAAAFkAAAAZAAAAEcAAAFHAAACRwAAAUcAAABHAAABRwAAAkcAAABHAAACRwAAA0cAAAJHAAACRwAAA0cAAAFHAAAARwAAA0cAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAA0cAAAFHAAACRwAAAEcAAABHAAACRwAAA2QAAABkAAAAFgAAA2QAAAAWAAAAFgAAABYAAAAWAAACRwAAAUcAAANHAAADRwAAAUcAAAJHAAADRwAAAkcAAANkAAAAFgAAABYAAAFkAAAAFgAAAhYAAAIWAAABZAAAAEcAAABHAAACRwAAAkcAAANHAAAARwAAAEcAAABHAAACZAAAABYAAAMWAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJkAAAARwAAA2QAAAAWAAAAFgAAAhsAAANHAAADRwAAAEcAAAJHAAAARwAAAUcAAAJHAAACRwAAA0cAAABHAAADRwAAAUcAAABkAAAAFgAAAGQAAABkAAAARwAAAUcAAAFHAAACRwAAAUcAAANHAAABRwAAAUcAAAFHAAACRwAAAEcAAAFHAAADFgAAAxYAAAMAAAAAZAAAAGQAAABkAAAAYQAAAGQAAABkAAAAZAAAAGEAAAFkAAAAZAAAAEcAAABHAAACRwAAAWQAAAAWAAACAAAAAGQAAABhAAACYQAAAmEAAABhAAAAZAAAAGEAAAJhAAABYQAAAWQAAABHAAADRwAAAUcAAAJkAAAAZAAAAA== + tiles: XwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAADUwAAAAACUwAAAAADcAAAAAAAGgAAAAAAGgAAAAABcAAAAAAAGgAAAAACGgAAAAACGgAAAAABcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAUwAAAAADcAAAAAAAGgAAAAAAGgAAAAACHwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAADGgAAAAADGgAAAAADAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAGgAAAAACAAAAAAAAcAAAAAAAbQAAAAACbQAAAAACbQAAAAAAbQAAAAAAcAAAAAAAbQAAAAACbQAAAAABbQAAAAABcAAAAAAAUwAAAAADUwAAAAABUwAAAAACcAAAAAAAcAAAAAAA + version: 6 -4,-2: ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA + version: 6 -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -5,2: ind: -5,2 - tiles: RwAAAUcAAANHAAADRwAAAGQAAABHAAACZAAAAGQAAABkAAAARwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAACRwAAAkcAAANkAAAARwAAAmQAAABHAAACRwAAAEcAAABHAAACRwAAA0cAAAJHAAACRwAAAEcAAANkAAAAZAAAAGQAAABkAAAAUwAAAEcAAANHAAAARwAAAkcAAAFHAAACRwAAAUcAAAJHAAABRwAAAkcAAANHAAAAZAAAAGQAAABkAAAAZAAAAFMAAABHAAAARwAAAkcAAAJHAAAARwAAAUcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAPwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAAWQAAABkAAAAZAAAAFMAAABkAAAAZAAAAD8AAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAAGEAAAFhAAACYQAAAGQAAABTAAAAZAAAAGQAAAA/AAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGEAAANhAAACYQAAAWEAAABkAAAAZAAAAGQAAABkAAAARwAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAYQAAAWEAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGEAAANhAAABYQAAAWQAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGEAAANhAAABYQAAAWEAAAFkAAAAZAAAAFMAAABkAAAAPwAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABhAAACYQAAAWEAAANkAAAAZAAAAGQAAABTAAAAZAAAAEcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAADMAAABkAAAAMwAAAGQAAAAzAAAAZAAAAEcAAANkAAAARwAAAg== + tiles: UwAAAAABUwAAAAADUwAAAAADUwAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAADcAAAAAAAUwAAAAACcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAABbQAAAAACbQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAACbQAAAAABbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAABbQAAAAABcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAABbQAAAAABbQAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAABbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAUwAAAAADcAAAAAAAUwAAAAAC + version: 6 -5,3: ind: -5,3 - tiles: YwAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAAAzAAAAMwAAAGQAAABkAAAAZAAAAGQAAABHAAABZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAAAzAAAAZAAAAGQAAAAzAAAAZAAAAEcAAANHAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAmQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAAAZAAAAEcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABTAAAAZAAAAEcAAAFkAAAARwAAA0cAAANkAAAAZAAAAFMAAABkAAAARwAAA0cAAAFjAAAAZAAAABYAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAABYwAAAGQAAAAWAAACFgAAAxYAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAAFkAAAAZAAAAGQAAABHAAAARwAAAmMAAABkAAAAFgAAARYAAAAWAAADZAAAAGQAAABkAAAARwAAAEcAAABkAAAAZAAAAFMAAABkAAAARwAAAUcAAAFjAAAAZAAAABYAAAAWAAABFgAAAGQAAABkAAAAZAAAAGQAAABHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAA== + tiles: bwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAABcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAABbwAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABbwAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACbwAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAABbwAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAA + version: 6 -3,4: ind: -3,4 - tiles: RwAAA0cAAANHAAABRwAAA0cAAAFHAAABRwAAA2QAAABkAAAAYwAAAGMAAABkAAAAAAAAAGMAAAAAAAAAAAAAAEcAAANHAAAARwAAAGQAAABHAAACRwAAAEcAAAFkAAAAZAAAAGMAAABjAAAAZAAAAAAAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJkAAAAZAAAAGQAAABjAAAAYwAAAGQAAABjAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABkAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGMAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: UwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -4,4: ind: -4,4 - tiles: AAAAAGQAAABhAAABYQAAA2EAAAFhAAAAZAAAAGEAAAFhAAADYQAAAWQAAABHAAADRwAAAEcAAAJHAAABRwAAAmMAAABkAAAAYQAAA2EAAAFhAAABYQAAAGQAAABhAAADYQAAAmEAAAJkAAAARwAAAkcAAAJHAAAARwAAAEcAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAA== + tiles: AAAAAAAAcAAAAAAAbQAAAAABbQAAAAADbQAAAAABbQAAAAAAcAAAAAAAbQAAAAABbQAAAAADbQAAAAABcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAACbwAAAAAAcAAAAAAAbQAAAAADbQAAAAABbQAAAAABbQAAAAAAcAAAAAAAbQAAAAADbQAAAAACbQAAAAACcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAA + version: 6 -4,5: ind: -4,5 - tiles: AAAAAAYAAAAGAAAABgAAAgYAAAAGAAAABgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAACBgAAAAYAAANkAAAAZAAAAGQAAABkAAAARwAAAmQAAABHAAACZAAAAAYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAAZAAAAEcAAANkAAAAZAAAAGQAAAAGAAAGZAAAACgAAABHAAADZAAAAEcAAANHAAAARwAAAEcAAAFkAAAARwAAA0cAAANHAAABZAAAAEcAAAFkAAAABgAAAGQAAAAoAAAARwAAAGQAAABHAAADRwAAA2QAAABkAAAARwAAAGQAAABkAAAAZAAAAEcAAABkAAAAZAAAAAYAAABkAAAAKAAAAGQAAABHAAAAZAAAAGQAAABHAAABZAAAAGQAAABkAAAAZAAAAEcAAABkAAAARwAAA2QAAAAGAAABZAAAAGQAAABHAAAARwAAAkcAAAJkAAAARwAAAz8AAABkAAAAPwAAAGQAAABkAAAAZAAAAEcAAAFkAAAABgAAAAAAAABkAAAARwAAAGQAAABHAAABZAAAAEcAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAAJHAAABZAAAAAYAAABjAAAAZAAAAEcAAAFHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADZAAAAGQAAABkAAAARwAAA2QAAAAGAAAAAAAAAGQAAABHAAACZAAAAEcAAAJHAAADRwAAAUcAAAFHAAAAZAAAAEcAAAFHAAADRwAAAWQAAABkAAAABgAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABkAAAARwAAAGQAAABHAAABZAAAAAYAAAAAAAAABgAAAAYAAAAGAAAABgAAAAYAAAEGAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAGAAAABgAAAwYAAAwGAAAABgAABwYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAHAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAACAYAAAkGAAAABgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAUwAAAAACcAAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAGcAAAAAAALAAAAAAAUwAAAAADcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAUwAAAAADUwAAAAADUwAAAAABcAAAAAAAUwAAAAABcAAAAAAABwAAAAAAcAAAAAAALAAAAAAAUwAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAABwAAAAAAcAAAAAAALAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAUwAAAAADcAAAAAAABwAAAAABcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAUwAAAAADSgAAAAAAcAAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAABwAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAUwAAAAABcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABcAAAAAAABwAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAABwAAAAAAAAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAABcAAAAAAAcAAAAAAABwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAUwAAAAABcAAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAMBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -3,5: ind: -3,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -5,5: ind: -5,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -5,1: ind: -5,1 - tiles: YwAAAGMAAABjAAAAYwAAAGQAAABHAAAARwAAAEcAAABHAAAARwAAA0cAAANHAAADZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAANHAAABRwAAA2QAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABTAAAAUwAAAGQAAABTAAAAZAAAAEcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABHAAACRwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAFMAAABkAAAARwAAAEcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAEcAAANHAAACRwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAWQAAABTAAAAUwAAAGQAAABHAAACRwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFkAAAAZAAAAGQAAABkAAAARwAAA0cAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAmQAAABHAAACRwAAAEcAAANHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAAFHAAABRwAAA0cAAAFHAAACRwAAA2QAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAAJHAAACRwAAAUcAAABHAAACZAAAAEcAAAFHAAADRwAAA0cAAANkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAACRwAAA0cAAABHAAABZAAAAGQAAABkAAAAZAAAAEcAAANHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAAZAAAAGQAAABHAAACZAAAAGQAAABTAAAAUwAAAGQAAABkAAAARwAAAWQAAABkAAAAZAAAAFMAAABkAAAARwAAA0cAAABkAAAAZAAAAEcAAABTAAAAUwAAAFMAAABkAAAAZAAAAEcAAAFkAAAAZAAAAGQAAABTAAAAZAAAAEcAAAJHAAABZAAAAGQAAABHAAAAUwAAAFMAAABTAAAAZAAAAEcAAAJHAAACZAAAAGQAAABkAAAAUwAAAGQAAABHAAABRwAAAWQAAABkAAAARwAAAlMAAABTAAAAUwAAAGQAAABHAAADZAAAAGQAAABkAAAAZAAAAFMAAABkAAAARwAAA0cAAAJkAAAAZAAAAA== + tiles: bwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAUwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAUwAAAAACXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAA + version: 6 -6,1: ind: -6,1 - tiles: AAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAUwAAAFMAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAFMAAABTAAAAUwAAAGQAAABTAAAAZAAAAGQAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGQAAABjAAAAYwAAAGMAAABkAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABTAAAAZAAAAEcAAAFHAAACRwAAA2MAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGQAAABHAAADRwAAAEcAAABHAAABRwAAAUcAAAEAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABkAAAARwAAAmQAAABkAAAAZAAAAGQAAABHAAADAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAEcAAANkAAAAZAAAAGQAAABkAAAARwAAAwAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGQAAABHAAAAZAAAAGQAAABkAAAAZAAAAEcAAANjAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABkAAAARwAAAUcAAABHAAACRwAAA0cAAANHAAABYwAAAGMAAABjAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAZAAAAGMAAABjAAAAYwAAAGQAAABTAAAAUwAAAGQAAABHAAACRwAAAUcAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABTAAAAUwAAAFMAAABkAAAARwAAA0cAAAJHAAACYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAABRwAAAg== + tiles: AAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAADbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAABAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAABbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAC + version: 6 -6,2: ind: -6,2 - tiles: YwAAAGMAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAADRwAAA2MAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGMAAABkAAAAZAAAAGQAAABHAAABRwAAAUcAAAMAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: bwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAADbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 -7,1: ind: -7,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABkAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA + version: 6 -7,2: ind: -7,2 - tiles: YwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: bwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -6,3: ind: -6,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -5,4: ind: -5,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -7,0: ind: -7,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -6,0: ind: -6,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAA + version: 6 2,-1: ind: 2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 2,2: ind: 2,2 - tiles: YwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: bwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 type: MapGrid - type: Broadphase - bodyStatus: InAir @@ -10923,6 +10983,16 @@ entities: - pos: 28.538687,-28.497456 parent: 1 type: Transform +- proto: ActionToggleLight + entities: + - uid: 7458 + components: + - flags: InContainer + type: MetaData + - parent: 7940 + type: Transform + - container: 7940 + type: InstantAction - proto: AirAlarm entities: - uid: 316 @@ -15307,6 +15377,8 @@ entities: - pos: 27.49369,23.624804 parent: 1 type: Transform + - storageUsed: 30 + type: Storage - containers: storagebase: !type:Container showEnts: False @@ -15601,8 +15673,6 @@ entities: - pos: -4.5,-0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 389 components: - pos: -5.5,-0.5 @@ -15618,15 +15688,11 @@ entities: - pos: -7.5,-0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 392 components: - pos: -7.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 393 components: - pos: -7.5,1.5 @@ -15662,8 +15728,6 @@ entities: - pos: -7.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 400 components: - pos: -7.5,-2.5 @@ -15759,8 +15823,6 @@ entities: - pos: -4.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 422 components: - pos: -3.5,-1.5 @@ -15836,8 +15898,6 @@ entities: - pos: -1.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 437 components: - pos: 2.5,-8.5 @@ -15863,8 +15923,6 @@ entities: - pos: 1.5,-9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 442 components: - pos: 1.5,-10.5 @@ -15875,8 +15933,6 @@ entities: - pos: 1.5,-11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 444 components: - pos: 1.5,-12.5 @@ -15912,8 +15968,6 @@ entities: - pos: -2.5,-10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 451 components: - pos: -2.5,-11.5 @@ -15934,15 +15988,11 @@ entities: - pos: -4.5,-12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 455 components: - pos: -5.5,-12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 456 components: - pos: -6.5,-12.5 @@ -15953,22 +16003,16 @@ entities: - pos: -7.5,-12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 458 components: - pos: -8.5,-12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 459 components: - pos: -5.5,-13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 460 components: - pos: -5.5,-14.5 @@ -15979,29 +16023,21 @@ entities: - pos: -5.5,-15.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 464 components: - pos: 16.5,-10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 588 components: - pos: 18.5,-10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 932 components: - pos: 26.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 933 components: - pos: 26.5,1.5 @@ -16017,8 +16053,6 @@ entities: - pos: 27.5,2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 936 components: - pos: 28.5,2.5 @@ -16029,29 +16063,21 @@ entities: - pos: 29.5,2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 941 components: - pos: 30.5,3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 942 components: - pos: 30.5,2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 943 components: - pos: 30.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 984 components: - pos: 26.5,27.5 @@ -16087,8 +16113,6 @@ entities: - pos: 29.5,24.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1032 components: - pos: 28.5,24.5 @@ -16099,43 +16123,31 @@ entities: - pos: -24.5,-12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1422 components: - pos: 24.5,37.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1423 components: - pos: 21.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1425 components: - pos: 24.5,38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1439 components: - pos: 20.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1440 components: - pos: 24.5,39.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1516 components: - pos: -13.5,-2.5 @@ -16176,8 +16188,6 @@ entities: - pos: -16.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1655 components: - pos: 16.5,-5.5 @@ -16188,8 +16198,6 @@ entities: - pos: 15.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1659 components: - pos: 15.5,-7.5 @@ -16210,15 +16218,11 @@ entities: - pos: 17.5,-10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1683 components: - pos: 12.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1684 components: - pos: 11.5,0.5 @@ -16394,15 +16398,11 @@ entities: - pos: 10.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1719 components: - pos: 10.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1720 components: - pos: 11.5,-5.5 @@ -16413,78 +16413,56 @@ entities: - pos: 12.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1722 components: - pos: 13.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1723 components: - pos: 14.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1724 components: - pos: 15.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1725 components: - pos: 15.5,-8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1726 components: - pos: 17.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1727 components: - pos: 18.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1728 components: - pos: 19.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1729 components: - pos: 20.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1730 components: - pos: 21.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1731 components: - pos: 22.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1732 components: - pos: 23.5,-5.5 @@ -16495,57 +16473,41 @@ entities: - pos: 24.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1734 components: - pos: 25.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1735 components: - pos: 26.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1736 components: - pos: 27.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1737 components: - pos: 28.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1738 components: - pos: 28.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1739 components: - pos: 28.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1740 components: - pos: 28.5,-8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1769 components: - pos: -61.5,-10.5 @@ -16571,22 +16533,16 @@ entities: - pos: 10.5,4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1851 components: - pos: 9.5,4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1852 components: - pos: 8.5,4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1853 components: - pos: 7.5,4.5 @@ -16602,8 +16558,6 @@ entities: - pos: 5.5,4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1860 components: - pos: -9.5,-12.5 @@ -16614,8 +16568,6 @@ entities: - pos: -10.5,-12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1862 components: - pos: -11.5,-12.5 @@ -16626,8 +16578,6 @@ entities: - pos: -12.5,-12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1864 components: - pos: -13.5,-12.5 @@ -16643,8 +16593,6 @@ entities: - pos: -15.5,-12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1867 components: - pos: -16.5,-12.5 @@ -16750,8 +16698,6 @@ entities: - pos: 4.5,35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2100 components: - pos: 5.5,33.5 @@ -16827,8 +16773,6 @@ entities: - pos: 4.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2119 components: - pos: 4.5,37.5 @@ -16844,8 +16788,6 @@ entities: - pos: 3.5,38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2122 components: - pos: 2.5,38.5 @@ -16856,22 +16798,16 @@ entities: - pos: 1.5,38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2124 components: - pos: 0.5,38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2125 components: - pos: 1.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2126 components: - pos: 2.5,21.5 @@ -17187,8 +17123,6 @@ entities: - pos: 19.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2232 components: - pos: 19.5,31.5 @@ -17204,8 +17138,6 @@ entities: - pos: 19.5,29.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2241 components: - pos: 11.5,15.5 @@ -17216,22 +17148,16 @@ entities: - pos: 12.5,15.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2243 components: - pos: 13.5,15.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2244 components: - pos: 13.5,16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2245 components: - pos: 13.5,17.5 @@ -17242,8 +17168,6 @@ entities: - pos: 13.5,18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2247 components: - pos: 6.5,12.5 @@ -17304,8 +17228,6 @@ entities: - pos: -2.5,24.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2279 components: - pos: -2.5,25.5 @@ -17406,22 +17328,16 @@ entities: - pos: 16.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2519 components: - pos: 22.5,10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2520 components: - pos: 22.5,9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2521 components: - pos: 22.5,8.5 @@ -17452,8 +17368,6 @@ entities: - pos: 19.5,6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2527 components: - pos: 18.5,6.5 @@ -17464,29 +17378,21 @@ entities: - pos: 17.5,6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2529 components: - pos: 16.5,6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2530 components: - pos: 15.5,6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2531 components: - pos: 14.5,6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2532 components: - pos: 13.5,6.5 @@ -17497,8 +17403,6 @@ entities: - pos: 22.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2534 components: - pos: 22.5,4.5 @@ -17509,15 +17413,11 @@ entities: - pos: 22.5,3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2536 components: - pos: 17.5,7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2537 components: - pos: 17.5,8.5 @@ -17528,8 +17428,6 @@ entities: - pos: 17.5,9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2539 components: - pos: 17.5,10.5 @@ -17545,92 +17443,66 @@ entities: - pos: 17.5,12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2542 components: - pos: 22.5,11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2543 components: - pos: 22.5,12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2544 components: - pos: 22.5,13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2545 components: - pos: 22.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2546 components: - pos: 22.5,15.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2547 components: - pos: 22.5,16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2548 components: - pos: 22.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2549 components: - pos: 22.5,18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2550 components: - pos: 22.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2551 components: - pos: 22.5,20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2552 components: - pos: 22.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2553 components: - pos: 22.5,22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2554 components: - pos: 22.5,23.5 @@ -17646,8 +17518,6 @@ entities: - pos: 22.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2557 components: - pos: 23.5,6.5 @@ -17668,8 +17538,6 @@ entities: - pos: 26.5,6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2561 components: - pos: 27.5,6.5 @@ -17680,22 +17548,16 @@ entities: - pos: 27.5,7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2563 components: - pos: 27.5,8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2564 components: - pos: 27.5,9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2565 components: - pos: 27.5,10.5 @@ -17711,15 +17573,11 @@ entities: - pos: 29.5,8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2568 components: - pos: 30.5,8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2569 components: - pos: 27.5,11.5 @@ -17740,29 +17598,21 @@ entities: - pos: 23.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2573 components: - pos: 24.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2574 components: - pos: 25.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2575 components: - pos: 26.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2576 components: - pos: 27.5,14.5 @@ -17773,8 +17623,6 @@ entities: - pos: 25.5,13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2578 components: - pos: 25.5,12.5 @@ -17790,15 +17638,11 @@ entities: - pos: 23.5,18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2581 components: - pos: 24.5,18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2582 components: - pos: 25.5,18.5 @@ -17824,15 +17668,11 @@ entities: - pos: 29.5,18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2587 components: - pos: 30.5,18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2588 components: - pos: 26.5,19.5 @@ -17843,113 +17683,81 @@ entities: - pos: 31.5,18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2595 components: - pos: 31.5,8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2596 components: - pos: -7.5,4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2597 components: - pos: -7.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2598 components: - pos: -6.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2599 components: - pos: -5.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2600 components: - pos: -4.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2601 components: - pos: -3.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2602 components: - pos: -2.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2603 components: - pos: -1.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2604 components: - pos: -0.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2605 components: - pos: 0.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2606 components: - pos: 1.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2607 components: - pos: -5.5,6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2608 components: - pos: -8.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2609 components: - pos: -9.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2610 components: - pos: -10.5,5.5 @@ -17965,15 +17773,11 @@ entities: - pos: -12.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2613 components: - pos: -13.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2614 components: - pos: -14.5,5.5 @@ -18059,8 +17863,6 @@ entities: - pos: -11.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2631 components: - pos: -12.5,32.5 @@ -18071,22 +17873,16 @@ entities: - pos: -10.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2700 components: - pos: -11.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2701 components: - pos: -12.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2702 components: - pos: -12.5,16.5 @@ -18122,15 +17918,11 @@ entities: - pos: -12.5,10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2709 components: - pos: -12.5,9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2710 components: - pos: -11.5,9.5 @@ -18141,8 +17933,6 @@ entities: - pos: -10.5,9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2712 components: - pos: -9.5,9.5 @@ -18168,29 +17958,21 @@ entities: - pos: -15.5,9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2717 components: - pos: -16.5,9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2718 components: - pos: -13.5,13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2719 components: - pos: -14.5,13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2720 components: - pos: -15.5,13.5 @@ -18201,8 +17983,6 @@ entities: - pos: -16.5,13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2722 components: - pos: -11.5,12.5 @@ -18213,15 +17993,11 @@ entities: - pos: -10.5,12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2724 components: - pos: -9.5,12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2725 components: - pos: -8.5,12.5 @@ -18237,50 +18013,36 @@ entities: - pos: -10.5,15.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2728 components: - pos: -9.5,15.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2729 components: - pos: -8.5,15.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2734 components: - pos: -12.5,18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2735 components: - pos: -12.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2736 components: - pos: -12.5,20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2737 components: - pos: -12.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2738 components: - pos: -12.5,22.5 @@ -18291,29 +18053,21 @@ entities: - pos: -12.5,23.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2740 components: - pos: -12.5,24.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2741 components: - pos: -12.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2742 components: - pos: -12.5,26.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2743 components: - pos: -12.5,27.5 @@ -18334,22 +18088,16 @@ entities: - pos: -9.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2747 components: - pos: -8.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2748 components: - pos: -7.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2778 components: - pos: -20.5,17.5 @@ -18360,22 +18108,16 @@ entities: - pos: -20.5,16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2783 components: - pos: -21.5,16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2785 components: - pos: -19.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2793 components: - pos: -15.5,8.5 @@ -18391,8 +18133,6 @@ entities: - pos: -14.5,28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2855 components: - pos: -15.5,28.5 @@ -18408,8 +18148,6 @@ entities: - pos: -14.5,29.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2858 components: - pos: -16.5,29.5 @@ -18420,29 +18158,21 @@ entities: - pos: -16.5,30.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2860 components: - pos: -17.5,30.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2861 components: - pos: -15.5,30.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2862 components: - pos: 2.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3041 components: - pos: -16.5,27.5 @@ -18458,8 +18188,6 @@ entities: - pos: -29.5,30.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3174 components: - pos: -16.5,25.5 @@ -18475,15 +18203,11 @@ entities: - pos: -24.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3224 components: - pos: -19.5,24.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3225 components: - pos: -20.5,24.5 @@ -18494,8 +18218,6 @@ entities: - pos: -20.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3227 components: - pos: -20.5,26.5 @@ -18506,8 +18228,6 @@ entities: - pos: -21.5,26.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3229 components: - pos: -22.5,26.5 @@ -18518,8 +18238,6 @@ entities: - pos: -23.5,26.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3231 components: - pos: -24.5,26.5 @@ -18530,15 +18248,11 @@ entities: - pos: -24.5,27.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3233 components: - pos: -24.5,28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3234 components: - pos: -24.5,29.5 @@ -18554,15 +18268,11 @@ entities: - pos: -20.5,23.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3237 components: - pos: -21.5,23.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3238 components: - pos: -22.5,23.5 @@ -18598,8 +18308,6 @@ entities: - pos: -28.5,23.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3245 components: - pos: -29.5,23.5 @@ -18675,8 +18383,6 @@ entities: - pos: -34.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3260 components: - pos: -34.5,28.5 @@ -18852,8 +18558,6 @@ entities: - pos: -32.5,10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3295 components: - pos: -33.5,10.5 @@ -18864,8 +18568,6 @@ entities: - pos: -33.5,9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3297 components: - pos: -23.5,7.5 @@ -18876,15 +18578,11 @@ entities: - pos: -23.5,6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3299 components: - pos: -23.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3300 components: - pos: -24.5,5.5 @@ -18900,22 +18598,16 @@ entities: - pos: -26.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3303 components: - pos: -27.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3304 components: - pos: -28.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3305 components: - pos: -29.5,5.5 @@ -18946,8 +18638,6 @@ entities: - pos: -22.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3311 components: - pos: -21.5,5.5 @@ -18958,15 +18648,11 @@ entities: - pos: -20.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3313 components: - pos: -19.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3314 components: - pos: -19.5,6.5 @@ -18987,22 +18673,16 @@ entities: - pos: -43.5,-13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3354 components: - pos: -47.5,-13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3355 components: - pos: -42.5,-12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3359 components: - pos: -39.5,-12.5 @@ -19013,15 +18693,11 @@ entities: - pos: 17.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3485 components: - pos: 21.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3531 components: - pos: -29.5,29.5 @@ -19037,36 +18713,26 @@ entities: - pos: -39.5,-13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3681 components: - pos: -39.5,-10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3702 components: - pos: -34.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3703 components: - pos: -48.5,-13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3707 components: - pos: -42.5,-8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3709 components: - pos: -34.5,-10.5 @@ -19077,8 +18743,6 @@ entities: - pos: -44.5,-13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3712 components: - pos: -45.5,-13.5 @@ -19089,15 +18753,11 @@ entities: - pos: -46.5,-13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3777 components: - pos: -42.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3778 components: - pos: -41.5,-5.5 @@ -19108,29 +18768,21 @@ entities: - pos: -40.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3780 components: - pos: -39.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3781 components: - pos: -38.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3782 components: - pos: -37.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3783 components: - pos: -40.5,-4.5 @@ -19181,15 +18833,11 @@ entities: - pos: -37.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3793 components: - pos: -37.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3794 components: - pos: -37.5,-1.5 @@ -19275,8 +18923,6 @@ entities: - pos: -37.5,4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3811 components: - pos: -37.5,5.5 @@ -19322,8 +18968,6 @@ entities: - pos: -43.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3820 components: - pos: -44.5,-2.5 @@ -19394,8 +19038,6 @@ entities: - pos: -39.5,-11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3838 components: - pos: -37.5,-6.5 @@ -19416,15 +19058,11 @@ entities: - pos: -32.5,-12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3848 components: - pos: -32.5,-11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3849 components: - pos: -32.5,-10.5 @@ -19435,8 +19073,6 @@ entities: - pos: -34.5,-12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3852 components: - pos: -33.5,-9.5 @@ -19472,8 +19108,6 @@ entities: - pos: -44.5,-9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3860 components: - pos: -45.5,-9.5 @@ -19484,8 +19118,6 @@ entities: - pos: -46.5,-9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3862 components: - pos: -47.5,-9.5 @@ -19496,8 +19128,6 @@ entities: - pos: -47.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3864 components: - pos: -48.5,-2.5 @@ -19508,29 +19138,21 @@ entities: - pos: -48.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3867 components: - pos: -48.5,-0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3868 components: - pos: -48.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3869 components: - pos: -48.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3870 components: - pos: -44.5,2.5 @@ -19541,15 +19163,11 @@ entities: - pos: -27.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3874 components: - pos: -26.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3875 components: - pos: -26.5,-1.5 @@ -19565,8 +19183,6 @@ entities: - pos: -26.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3878 components: - pos: -26.5,1.5 @@ -19582,8 +19198,6 @@ entities: - pos: -25.5,2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3881 components: - pos: -25.5,0.5 @@ -19609,8 +19223,6 @@ entities: - pos: -26.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3886 components: - pos: -26.5,-5.5 @@ -19621,43 +19233,31 @@ entities: - pos: -26.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3888 components: - pos: -26.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3890 components: - pos: -25.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3891 components: - pos: -24.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3892 components: - pos: -23.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3893 components: - pos: -22.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3894 components: - pos: -21.5,-7.5 @@ -19673,8 +19273,6 @@ entities: - pos: -20.5,-8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3897 components: - pos: -20.5,-9.5 @@ -19690,8 +19288,6 @@ entities: - pos: -20.5,-11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3900 components: - pos: -20.5,-12.5 @@ -19702,8 +19298,6 @@ entities: - pos: -24.5,-8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3902 components: - pos: -24.5,-9.5 @@ -19714,36 +19308,26 @@ entities: - pos: -21.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4254 components: - pos: -22.5,29.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4255 components: - pos: -21.5,29.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4256 components: - pos: -20.5,29.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4342 components: - pos: -41.5,12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4343 components: - pos: -41.5,13.5 @@ -19754,15 +19338,11 @@ entities: - pos: -41.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4345 components: - pos: -41.5,11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4346 components: - pos: -41.5,10.5 @@ -19778,8 +19358,6 @@ entities: - pos: -41.5,8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4424 components: - pos: -41.5,7.5 @@ -19810,8 +19388,6 @@ entities: - pos: -44.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4434 components: - pos: -50.5,7.5 @@ -19822,43 +19398,31 @@ entities: - pos: -42.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4436 components: - pos: -43.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4437 components: - pos: -44.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4438 components: - pos: -45.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4439 components: - pos: -46.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4440 components: - pos: -47.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4441 components: - pos: -48.5,14.5 @@ -19869,29 +19433,21 @@ entities: - pos: -49.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4443 components: - pos: -40.5,20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4444 components: - pos: -40.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4445 components: - pos: -41.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4446 components: - pos: -42.5,21.5 @@ -19902,22 +19458,16 @@ entities: - pos: -43.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4448 components: - pos: -44.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4449 components: - pos: -45.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4450 components: - pos: -46.5,21.5 @@ -19928,29 +19478,21 @@ entities: - pos: -47.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4452 components: - pos: -48.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4453 components: - pos: -49.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4454 components: - pos: -44.5,22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4455 components: - pos: -44.5,23.5 @@ -19961,29 +19503,21 @@ entities: - pos: -44.5,24.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4457 components: - pos: -44.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4458 components: - pos: -44.5,26.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4459 components: - pos: -44.5,27.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4460 components: - pos: -39.5,21.5 @@ -19994,8 +19528,6 @@ entities: - pos: -38.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4462 components: - pos: -37.5,21.5 @@ -20006,29 +19538,21 @@ entities: - pos: -37.5,20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4464 components: - pos: -37.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4465 components: - pos: -37.5,18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4466 components: - pos: -37.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4467 components: - pos: -37.5,16.5 @@ -20059,8 +19583,6 @@ entities: - pos: -37.5,11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4473 components: - pos: -37.5,10.5 @@ -20111,8 +19633,6 @@ entities: - pos: -37.5,28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4483 components: - pos: -37.5,29.5 @@ -20128,57 +19648,41 @@ entities: - pos: -42.5,20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4486 components: - pos: -42.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4487 components: - pos: -42.5,18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4488 components: - pos: -45.5,20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4489 components: - pos: -45.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4490 components: - pos: -45.5,18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4491 components: - pos: -48.5,20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4492 components: - pos: -48.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4493 components: - pos: -48.5,18.5 @@ -20189,8 +19693,6 @@ entities: - pos: -56.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4543 components: - pos: -50.5,8.5 @@ -20226,15 +19728,11 @@ entities: - pos: -57.5,-8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4612 components: - pos: -46.5,27.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4613 components: - pos: -47.5,27.5 @@ -20290,8 +19788,6 @@ entities: - pos: -48.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4624 components: - pos: -48.5,32.5 @@ -20302,15 +19798,11 @@ entities: - pos: -44.5,28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4626 components: - pos: -44.5,29.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4627 components: - pos: -44.5,30.5 @@ -20376,22 +19868,16 @@ entities: - pos: -47.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4640 components: - pos: -30.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4641 components: - pos: -31.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4642 components: - pos: -32.5,32.5 @@ -20417,8 +19903,6 @@ entities: - pos: -28.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4647 components: - pos: -27.5,32.5 @@ -20439,8 +19923,6 @@ entities: - pos: -46.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4651 components: - pos: -49.5,32.5 @@ -20451,29 +19933,21 @@ entities: - pos: -50.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4653 components: - pos: -51.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4654 components: - pos: -52.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4655 components: - pos: -53.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4656 components: - pos: -54.5,32.5 @@ -20514,8 +19988,6 @@ entities: - pos: -57.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4664 components: - pos: -57.5,15.5 @@ -20556,29 +20028,21 @@ entities: - pos: -57.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4672 components: - pos: -57.5,22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4673 components: - pos: -57.5,23.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4674 components: - pos: -57.5,24.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4675 components: - pos: -57.5,25.5 @@ -20594,8 +20058,6 @@ entities: - pos: -57.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4678 components: - pos: -57.5,31.5 @@ -20606,8 +20068,6 @@ entities: - pos: -57.5,30.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4680 components: - pos: -57.5,29.5 @@ -20618,8 +20078,6 @@ entities: - pos: -51.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4682 components: - pos: -53.5,15.5 @@ -20655,8 +20113,6 @@ entities: - pos: -57.5,13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4689 components: - pos: -57.5,12.5 @@ -20687,8 +20143,6 @@ entities: - pos: -45.5,9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4701 components: - pos: -46.5,9.5 @@ -20709,15 +20163,11 @@ entities: - pos: 20.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4714 components: - pos: 20.5,43.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4715 components: - pos: 20.5,42.5 @@ -20758,15 +20208,11 @@ entities: - pos: -52.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4723 components: - pos: -53.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4724 components: - pos: -54.5,5.5 @@ -20792,22 +20238,16 @@ entities: - pos: 20.5,41.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4731 components: - pos: 21.5,38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4742 components: - pos: -73.5,-14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4759 components: - pos: -66.5,-9.5 @@ -20818,8 +20258,6 @@ entities: - pos: -65.5,-13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4785 components: - pos: -73.5,-11.5 @@ -20830,15 +20268,11 @@ entities: - pos: -62.5,-10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4787 components: - pos: -63.5,-10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4788 components: - pos: -73.5,4.5 @@ -20849,8 +20283,6 @@ entities: - pos: -73.5,-12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4790 components: - pos: -66.5,4.5 @@ -20866,15 +20298,11 @@ entities: - pos: -65.5,-11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4795 components: - pos: -65.5,-12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4796 components: - pos: -73.5,-9.5 @@ -20890,15 +20318,11 @@ entities: - pos: -68.5,-10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4806 components: - pos: -73.5,-13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4811 components: - pos: -75.5,-10.5 @@ -20909,8 +20333,6 @@ entities: - pos: -76.5,-10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4813 components: - pos: -73.5,-10.5 @@ -20926,22 +20348,16 @@ entities: - pos: -77.5,-10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4842 components: - pos: -69.5,-10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4869 components: - pos: -71.5,-10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4870 components: - pos: -64.5,-10.5 @@ -20952,8 +20368,6 @@ entities: - pos: -70.5,-10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4874 components: - pos: -65.5,-10.5 @@ -20974,8 +20388,6 @@ entities: - pos: -58.5,-10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4881 components: - pos: -59.5,-10.5 @@ -20986,8 +20398,6 @@ entities: - pos: -65.5,-14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4958 components: - pos: -60.5,-10.5 @@ -20998,8 +20408,6 @@ entities: - pos: -55.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5106 components: - pos: -57.5,-9.5 @@ -21025,29 +20433,21 @@ entities: - pos: -57.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5131 components: - pos: -57.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5132 components: - pos: -57.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5133 components: - pos: -57.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5134 components: - pos: -57.5,-0.5 @@ -21088,22 +20488,16 @@ entities: - pos: -61.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5142 components: - pos: -62.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5143 components: - pos: -63.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5144 components: - pos: -64.5,5.5 @@ -21129,15 +20523,11 @@ entities: - pos: -68.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5149 components: - pos: -69.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5150 components: - pos: -70.5,5.5 @@ -21163,8 +20553,6 @@ entities: - pos: -74.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5155 components: - pos: -54.5,-7.5 @@ -21175,8 +20563,6 @@ entities: - pos: -53.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5157 components: - pos: -52.5,-7.5 @@ -21192,8 +20578,6 @@ entities: - pos: -52.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5160 components: - pos: -52.5,-4.5 @@ -21204,29 +20588,21 @@ entities: - pos: -52.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5162 components: - pos: -52.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5163 components: - pos: -52.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5195 components: - pos: 16.5,38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5205 components: - pos: -50.5,26.5 @@ -21247,71 +20623,51 @@ entities: - pos: 16.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5312 components: - pos: 19.5,39.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5313 components: - pos: 16.5,39.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5314 components: - pos: 16.5,41.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5322 components: - pos: 24.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5378 components: - pos: -35.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5432 components: - pos: -21.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5448 components: - pos: -21.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5449 components: - pos: -21.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5450 components: - pos: -21.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5634 components: - pos: -54.5,9.5 @@ -21337,57 +20693,41 @@ entities: - pos: -33.5,12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5703 components: - pos: -33.5,13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5704 components: - pos: -29.5,15.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5705 components: - pos: -30.5,15.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5773 components: - pos: -53.5,48.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5805 components: - pos: 15.5,42.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5806 components: - pos: 15.5,41.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6199 components: - pos: 16.5,44.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6203 components: - pos: 13.5,51.5 @@ -21398,22 +20738,16 @@ entities: - pos: 15.5,45.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6206 components: - pos: 15.5,44.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6207 components: - pos: 13.5,45.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6208 components: - pos: 12.5,45.5 @@ -21434,99 +20768,71 @@ entities: - pos: 15.5,43.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6212 components: - pos: 8.5,48.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6214 components: - pos: 7.5,48.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6219 components: - pos: 9.5,48.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6220 components: - pos: 7.5,49.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6221 components: - pos: 7.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6222 components: - pos: 6.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6223 components: - pos: 7.5,49.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6224 components: - pos: 7.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6225 components: - pos: 7.5,51.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6227 components: - pos: 5.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6228 components: - pos: 4.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6229 components: - pos: 3.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6230 components: - pos: 3.5,48.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6231 components: - pos: 3.5,49.5 @@ -21542,15 +20848,11 @@ entities: - pos: 3.5,51.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6234 components: - pos: 2.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6235 components: - pos: 1.5,47.5 @@ -21561,22 +20863,16 @@ entities: - pos: 0.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6237 components: - pos: -0.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6238 components: - pos: -0.5,48.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6239 components: - pos: -0.5,49.5 @@ -21597,29 +20893,21 @@ entities: - pos: 16.5,49.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6246 components: - pos: 14.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6247 components: - pos: 13.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6248 components: - pos: 12.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6249 components: - pos: 11.5,40.5 @@ -21635,15 +20923,11 @@ entities: - pos: 15.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6252 components: - pos: 15.5,39.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6258 components: - pos: -52.5,9.5 @@ -21674,43 +20958,31 @@ entities: - pos: 15.5,35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6273 components: - pos: 17.5,35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6274 components: - pos: 18.5,35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6276 components: - pos: 20.5,35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6278 components: - pos: 23.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6279 components: - pos: 23.5,35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6280 components: - pos: 9.5,40.5 @@ -21726,64 +20998,46 @@ entities: - pos: -1.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6283 components: - pos: -2.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6284 components: - pos: -2.5,46.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6285 components: - pos: -2.5,45.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6286 components: - pos: -2.5,44.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6287 components: - pos: -2.5,43.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6288 components: - pos: -2.5,42.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6289 components: - pos: -3.5,38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6290 components: - pos: -3.5,39.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6291 components: - pos: -3.5,40.5 @@ -21794,8 +21048,6 @@ entities: - pos: -3.5,42.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6294 components: - pos: -3.5,37.5 @@ -21806,29 +21058,21 @@ entities: - pos: -4.5,37.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6296 components: - pos: -5.5,37.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6297 components: - pos: -6.5,37.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6298 components: - pos: -7.5,37.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6299 components: - pos: -8.5,37.5 @@ -21839,57 +21083,41 @@ entities: - pos: -9.5,37.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6301 components: - pos: -3.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6302 components: - pos: -4.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6315 components: - pos: 20.5,44.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6562 components: - pos: -4.5,57.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6563 components: - pos: -4.5,56.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6564 components: - pos: -4.5,55.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6565 components: - pos: -5.5,55.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6566 components: - pos: -6.5,55.5 @@ -22145,8 +21373,6 @@ entities: - pos: -43.5,55.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7401 components: - pos: 14.5,45.5 @@ -22157,15 +21383,11 @@ entities: - pos: -3.5,41.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7744 components: - pos: -53.5,85.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7745 components: - pos: -52.5,85.5 @@ -22176,15 +21398,11 @@ entities: - pos: -51.5,85.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7747 components: - pos: -51.5,86.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7748 components: - pos: -51.5,87.5 @@ -22195,8 +21413,6 @@ entities: - pos: -51.5,88.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7750 components: - pos: -51.5,89.5 @@ -22212,15 +21428,11 @@ entities: - pos: -51.5,83.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7753 components: - pos: -51.5,82.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7754 components: - pos: -52.5,82.5 @@ -22236,29 +21448,21 @@ entities: - pos: -50.5,82.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7757 components: - pos: -52.5,79.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7758 components: - pos: -52.5,78.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7759 components: - pos: -52.5,80.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7760 components: - pos: -52.5,81.5 @@ -22269,29 +21473,21 @@ entities: - pos: -50.5,80.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7762 components: - pos: -50.5,79.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7763 components: - pos: -50.5,78.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7764 components: - pos: -53.5,79.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7765 components: - pos: -52.5,89.5 @@ -22307,8 +21503,6 @@ entities: - pos: -54.5,89.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7768 components: - pos: -55.5,89.5 @@ -22364,15 +21558,11 @@ entities: - pos: -59.5,85.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7779 components: - pos: -55.5,83.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7780 components: - pos: -59.5,86.5 @@ -22388,8 +21578,6 @@ entities: - pos: -59.5,88.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7783 components: - pos: -57.5,83.5 @@ -22400,8 +21588,6 @@ entities: - pos: -62.5,84.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7785 components: - pos: -58.5,83.5 @@ -22412,8 +21598,6 @@ entities: - pos: -63.5,84.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7787 components: - pos: -59.5,83.5 @@ -22424,8 +21608,6 @@ entities: - pos: -60.5,84.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7789 components: - pos: -61.5,84.5 @@ -22436,78 +21618,56 @@ entities: - pos: -63.5,83.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7791 components: - pos: -63.5,85.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7792 components: - pos: -59.5,82.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7793 components: - pos: -60.5,82.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7794 components: - pos: -61.5,82.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7795 components: - pos: -58.5,82.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7796 components: - pos: -60.5,90.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7797 components: - pos: -59.5,90.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7798 components: - pos: -58.5,90.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7799 components: - pos: -51.5,90.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7800 components: - pos: -51.5,91.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7801 components: - pos: -50.5,88.5 @@ -22518,64 +21678,46 @@ entities: - pos: -49.5,88.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7803 components: - pos: -49.5,87.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7804 components: - pos: -49.5,86.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7805 components: - pos: -49.5,85.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7806 components: - pos: -49.5,84.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7807 components: - pos: -49.5,83.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7920 components: - pos: -42.5,55.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8347 components: - pos: -56.5,52.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8348 components: - pos: -56.5,51.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8349 components: - pos: -56.5,53.5 @@ -22586,8 +21728,6 @@ entities: - pos: -58.5,56.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8379 components: - pos: -57.5,56.5 @@ -22628,22 +21768,16 @@ entities: - pos: -50.5,48.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8387 components: - pos: -51.5,48.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8388 components: - pos: -53.5,52.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8389 components: - pos: -53.5,53.5 @@ -22669,8 +21803,6 @@ entities: - pos: -58.5,54.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8394 components: - pos: -59.5,54.5 @@ -22746,71 +21878,51 @@ entities: - pos: -49.5,54.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8409 components: - pos: -48.5,54.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8410 components: - pos: -47.5,54.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8411 components: - pos: -47.5,53.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8412 components: - pos: -47.5,52.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8413 components: - pos: -47.5,51.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8414 components: - pos: -47.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8415 components: - pos: -50.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8416 components: - pos: -50.5,51.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8417 components: - pos: -50.5,52.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8418 components: - pos: -50.5,53.5 @@ -22821,15 +21933,11 @@ entities: - pos: -53.5,51.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8420 components: - pos: -53.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8421 components: - pos: -53.5,49.5 @@ -22840,22 +21948,16 @@ entities: - pos: -54.5,48.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8424 components: - pos: -57.5,48.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8425 components: - pos: -56.5,48.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8426 components: - pos: -48.5,43.5 @@ -22886,8 +21988,6 @@ entities: - pos: -56.5,49.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8432 components: - pos: -53.5,56.5 @@ -22933,8 +22033,6 @@ entities: - pos: -49.5,63.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8441 components: - pos: -50.5,63.5 @@ -23115,8 +22213,6 @@ entities: - pos: -44.5,65.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8478 components: - pos: -43.5,65.5 @@ -23152,78 +22248,56 @@ entities: - pos: -52.5,66.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8485 components: - pos: -52.5,67.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8486 components: - pos: -52.5,68.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8487 components: - pos: -52.5,69.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8488 components: - pos: -50.5,66.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8489 components: - pos: -50.5,67.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8490 components: - pos: -50.5,68.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8491 components: - pos: -50.5,69.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8492 components: - pos: -49.5,68.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8493 components: - pos: -48.5,68.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8494 components: - pos: -47.5,68.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8495 components: - pos: -55.5,62.5 @@ -23264,57 +22338,41 @@ entities: - pos: -58.5,66.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8503 components: - pos: -59.5,66.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8519 components: - pos: -60.5,66.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8520 components: - pos: -61.5,66.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8521 components: - pos: -58.5,62.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8522 components: - pos: -56.5,62.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8523 components: - pos: -54.5,62.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8524 components: - pos: -53.5,63.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8525 components: - pos: -55.5,65.5 @@ -23325,43 +22383,31 @@ entities: - pos: -53.5,64.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8527 components: - pos: -53.5,65.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8528 components: - pos: -56.5,66.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8529 components: - pos: -55.5,66.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8530 components: - pos: -54.5,66.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8531 components: - pos: -48.5,63.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8532 components: - pos: -47.5,63.5 @@ -23372,8 +22418,6 @@ entities: - pos: -46.5,63.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8534 components: - pos: -55.5,57.5 @@ -23389,22 +22433,16 @@ entities: - pos: -55.5,59.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8537 components: - pos: -56.5,59.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8538 components: - pos: -54.5,59.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8539 components: - pos: -47.5,56.5 @@ -23415,113 +22453,81 @@ entities: - pos: -48.5,56.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8541 components: - pos: -46.5,56.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9020 components: - pos: 19.5,39.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9346 components: - pos: -57.5,45.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9347 components: - pos: -57.5,44.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9348 components: - pos: -57.5,43.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9349 components: - pos: -57.5,42.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9350 components: - pos: -57.5,41.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9351 components: - pos: -57.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9352 components: - pos: -57.5,39.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9353 components: - pos: -57.5,38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9354 components: - pos: -57.5,37.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9355 components: - pos: -57.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9356 components: - pos: -57.5,35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9357 components: - pos: -56.5,39.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9358 components: - pos: -55.5,39.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9359 components: - pos: -54.5,39.5 @@ -23532,8 +22538,6 @@ entities: - pos: -54.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9361 components: - pos: -54.5,41.5 @@ -23549,8 +22553,6 @@ entities: - pos: -54.5,43.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9364 components: - pos: -53.5,43.5 @@ -23571,8 +22573,6 @@ entities: - pos: -50.5,43.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9368 components: - pos: -49.5,43.5 @@ -23583,8 +22583,6 @@ entities: - pos: -53.5,41.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9370 components: - pos: -52.5,41.5 @@ -23625,8 +22623,6 @@ entities: - pos: -31.5,48.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9419 components: - pos: -31.5,47.5 @@ -23742,15 +22738,11 @@ entities: - pos: -40.5,42.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9442 components: - pos: -40.5,41.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9443 components: - pos: -36.5,42.5 @@ -23851,8 +22843,6 @@ entities: - pos: -41.5,55.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9472 components: - pos: -40.5,55.5 @@ -23863,22 +22853,16 @@ entities: - pos: -39.5,55.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9474 components: - pos: -38.5,55.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9475 components: - pos: -37.5,55.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9476 components: - pos: -31.5,49.5 @@ -23889,8 +22873,6 @@ entities: - pos: -31.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9478 components: - pos: -31.5,51.5 @@ -23901,15 +22883,11 @@ entities: - pos: -31.5,52.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9480 components: - pos: -31.5,53.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9481 components: - pos: -31.5,54.5 @@ -23920,15 +22898,11 @@ entities: - pos: -30.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9483 components: - pos: -29.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9484 components: - pos: -28.5,50.5 @@ -23939,29 +22913,21 @@ entities: - pos: -27.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9486 components: - pos: -26.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9487 components: - pos: -25.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9488 components: - pos: -24.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9490 components: - pos: -18.5,53.5 @@ -23987,8 +22953,6 @@ entities: - pos: -23.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9497 components: - pos: -22.5,40.5 @@ -24084,15 +23048,11 @@ entities: - pos: -16.5,46.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9516 components: - pos: -16.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9517 components: - pos: -15.5,47.5 @@ -24148,15 +23108,11 @@ entities: - pos: -16.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9528 components: - pos: -16.5,39.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9529 components: - pos: -16.5,38.5 @@ -24172,15 +23128,11 @@ entities: - pos: -16.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9532 components: - pos: -24.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9533 components: - pos: -24.5,39.5 @@ -24191,29 +23143,21 @@ entities: - pos: -24.5,38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9535 components: - pos: -24.5,37.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9536 components: - pos: -24.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9537 components: - pos: -24.5,35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9538 components: - pos: -24.5,34.5 @@ -24224,8 +23168,6 @@ entities: - pos: -16.5,35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9540 components: - pos: -16.5,34.5 @@ -24241,15 +23183,11 @@ entities: - pos: -16.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9558 components: - pos: -26.5,38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9559 components: - pos: -27.5,38.5 @@ -24330,15 +23268,11 @@ entities: - pos: -42.5,37.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9576 components: - pos: -43.5,37.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9577 components: - pos: -44.5,37.5 @@ -24404,15 +23338,11 @@ entities: - pos: 21.5,44.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10155 components: - pos: -51.5,44.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10264 components: - pos: -33.5,-8.5 @@ -24423,8 +23353,6 @@ entities: - pos: -33.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10280 components: - pos: -33.5,-6.5 @@ -24435,8 +23363,6 @@ entities: - pos: -34.5,-11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10397 components: - pos: -36.5,-6.5 @@ -24457,92 +23383,66 @@ entities: - pos: 23.5,44.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10413 components: - pos: 24.5,41.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10414 components: - pos: 24.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10415 components: - pos: 17.5,44.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10424 components: - pos: 18.5,44.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10425 components: - pos: 19.5,44.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10429 components: - pos: 22.5,44.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10431 components: - pos: 16.5,37.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10432 components: - pos: 19.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10433 components: - pos: 24.5,43.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10434 components: - pos: 24.5,44.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10435 components: - pos: 24.5,42.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10999 components: - pos: -65.5,44.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11000 components: - pos: -64.5,44.5 @@ -24568,8 +23468,6 @@ entities: - pos: -60.5,44.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11005 components: - pos: -59.5,44.5 @@ -24580,15 +23478,11 @@ entities: - pos: -58.5,44.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11007 components: - pos: -57.5,46.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11008 components: - pos: -62.5,43.5 @@ -24614,8 +23508,6 @@ entities: - pos: -62.5,39.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11015 components: - pos: -66.5,44.5 @@ -24641,8 +23533,6 @@ entities: - pos: -67.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11020 components: - pos: -68.5,47.5 @@ -24653,8 +23543,6 @@ entities: - pos: -69.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11022 components: - pos: -70.5,47.5 @@ -24670,22 +23558,16 @@ entities: - pos: -66.5,42.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11025 components: - pos: -66.5,41.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11026 components: - pos: -66.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11027 components: - pos: -67.5,40.5 @@ -24696,8 +23578,6 @@ entities: - pos: -68.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11029 components: - pos: -69.5,40.5 @@ -24738,8 +23618,6 @@ entities: - pos: -66.5,48.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11037 components: - pos: -66.5,49.5 @@ -24755,15 +23633,11 @@ entities: - pos: -67.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11040 components: - pos: -67.5,51.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11041 components: - pos: -67.5,52.5 @@ -24774,15 +23648,11 @@ entities: - pos: -68.5,52.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11043 components: - pos: -69.5,52.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11044 components: - pos: -70.5,52.5 @@ -24803,8 +23673,6 @@ entities: - pos: -71.5,54.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11048 components: - pos: -71.5,55.5 @@ -24815,8 +23683,6 @@ entities: - pos: -75.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11161 components: - pos: -74.5,21.5 @@ -24837,57 +23703,41 @@ entities: - pos: -71.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11165 components: - pos: -70.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11166 components: - pos: -69.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11173 components: - pos: -68.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11174 components: - pos: -67.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11322 components: - pos: -66.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11323 components: - pos: -65.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11324 components: - pos: -64.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11325 components: - pos: -74.5,22.5 @@ -24953,8 +23803,6 @@ entities: - pos: -79.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11338 components: - pos: -79.5,20.5 @@ -24965,8 +23813,6 @@ entities: - pos: -79.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11340 components: - pos: -80.5,19.5 @@ -24982,8 +23828,6 @@ entities: - pos: -78.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11343 components: - pos: -77.5,19.5 @@ -25094,15 +23938,11 @@ entities: - pos: -74.5,28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11365 components: - pos: -74.5,29.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11366 components: - pos: -74.5,20.5 @@ -25163,15 +24003,11 @@ entities: - pos: -60.5,7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11378 components: - pos: -60.5,8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11379 components: - pos: -61.5,8.5 @@ -25187,8 +24023,6 @@ entities: - pos: -63.5,8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11382 components: - pos: -64.5,8.5 @@ -25199,8 +24033,6 @@ entities: - pos: -65.5,8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11384 components: - pos: -66.5,8.5 @@ -25216,22 +24048,16 @@ entities: - pos: -66.5,10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11387 components: - pos: -66.5,11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11388 components: - pos: -66.5,12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11389 components: - pos: -66.5,13.5 @@ -25247,8 +24073,6 @@ entities: - pos: -66.5,15.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11392 components: - pos: -66.5,16.5 @@ -25259,15 +24083,11 @@ entities: - pos: -65.5,16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11394 components: - pos: -64.5,16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11395 components: - pos: -63.5,16.5 @@ -25278,8 +24098,6 @@ entities: - pos: -68.5,35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11397 components: - pos: -68.5,34.5 @@ -25315,8 +24133,6 @@ entities: - pos: -64.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11404 components: - pos: -63.5,32.5 @@ -25342,29 +24158,21 @@ entities: - pos: -64.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11409 components: - pos: -64.5,30.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11410 components: - pos: -64.5,29.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11411 components: - pos: -64.5,28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11412 components: - pos: -64.5,27.5 @@ -25375,15 +24183,11 @@ entities: - pos: -65.5,27.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11414 components: - pos: -66.5,27.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11415 components: - pos: -69.5,34.5 @@ -25434,547 +24238,391 @@ entities: - pos: -76.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11425 components: - pos: -77.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11426 components: - pos: -78.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11432 components: - pos: -78.5,37.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11433 components: - pos: -78.5,38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11434 components: - pos: -78.5,39.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11435 components: - pos: -78.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11436 components: - pos: -78.5,41.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11437 components: - pos: -78.5,42.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11438 components: - pos: -78.5,43.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11439 components: - pos: -78.5,44.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11440 components: - pos: -78.5,45.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11441 components: - pos: -78.5,46.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11442 components: - pos: -77.5,46.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11443 components: - pos: -77.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11445 components: - pos: -79.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11446 components: - pos: -80.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11447 components: - pos: -81.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11448 components: - pos: -82.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11449 components: - pos: -83.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11450 components: - pos: -84.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11451 components: - pos: -85.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11452 components: - pos: -85.5,46.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11453 components: - pos: -85.5,45.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11454 components: - pos: -85.5,44.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11455 components: - pos: -85.5,43.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11456 components: - pos: -85.5,42.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11457 components: - pos: -85.5,41.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11458 components: - pos: -85.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11459 components: - pos: -85.5,39.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11460 components: - pos: -85.5,38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11461 components: - pos: -85.5,37.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11462 components: - pos: -85.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11463 components: - pos: -85.5,35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11464 components: - pos: -85.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11465 components: - pos: -86.5,46.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11466 components: - pos: -87.5,46.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11467 components: - pos: -87.5,45.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11471 components: - pos: -87.5,44.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11472 components: - pos: -87.5,43.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11473 components: - pos: -87.5,42.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11474 components: - pos: -87.5,41.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11476 components: - pos: -87.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11477 components: - pos: -87.5,39.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11478 components: - pos: -87.5,38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11479 components: - pos: -87.5,37.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11480 components: - pos: -87.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11481 components: - pos: -87.5,35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11482 components: - pos: -87.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11483 components: - pos: -88.5,46.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11484 components: - pos: -89.5,46.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11485 components: - pos: -90.5,46.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11486 components: - pos: -91.5,46.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11487 components: - pos: -91.5,45.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11488 components: - pos: -91.5,44.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11490 components: - pos: -91.5,43.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11491 components: - pos: -91.5,42.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11492 components: - pos: -91.5,41.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11493 components: - pos: -91.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11494 components: - pos: -91.5,39.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11495 components: - pos: -91.5,38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11496 components: - pos: -91.5,37.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11497 components: - pos: -91.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11498 components: - pos: -91.5,35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11499 components: - pos: -91.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11500 components: - pos: -84.5,48.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11501 components: - pos: -84.5,49.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11502 components: - pos: -83.5,49.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11504 components: - pos: -82.5,49.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11505 components: - pos: -81.5,49.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11506 components: - pos: -80.5,49.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11507 components: - pos: -80.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11510 components: - pos: -84.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11512 components: - pos: -78.5,35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11514 components: - pos: -78.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11575 components: - pos: -40.5,37.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11903 components: - pos: 22.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11917 components: - pos: 18.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 12039 components: - pos: -78.5,33.5 @@ -26030,8 +24678,6 @@ entities: - pos: -0.5,6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13332 components: - pos: -0.5,7.5 @@ -26067,15 +24713,11 @@ entities: - pos: -72.5,54.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 14006 components: - pos: -73.5,54.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 14039 components: - pos: -70.5,32.5 @@ -26086,50 +24728,36 @@ entities: - pos: -70.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 14042 components: - pos: -70.5,30.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 14043 components: - pos: -70.5,29.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 14044 components: - pos: -70.5,28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 14231 components: - pos: -73.5,55.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 14232 components: - pos: -73.5,56.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15005 components: - pos: -74.5,54.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15006 components: - pos: -75.5,54.5 @@ -26150,43 +24778,31 @@ entities: - pos: -35.5,55.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15052 components: - pos: -34.5,55.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15053 components: - pos: -33.5,55.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15054 components: - pos: -32.5,55.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15055 components: - pos: -31.5,55.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15056 components: - pos: -58.5,86.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15062 components: - pos: -46.5,-2.5 @@ -26197,15 +24813,11 @@ entities: - pos: -31.5,56.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15237 components: - pos: 17.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15238 components: - pos: 17.5,48.5 @@ -26251,50 +24863,36 @@ entities: - pos: 13.5,53.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15247 components: - pos: 14.5,53.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15248 components: - pos: 15.5,53.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15249 components: - pos: 16.5,53.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15250 components: - pos: 17.5,53.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15251 components: - pos: 18.5,53.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15252 components: - pos: 19.5,53.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15253 components: - pos: 18.5,50.5 @@ -26305,36 +24903,26 @@ entities: - pos: 19.5,52.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15255 components: - pos: 19.5,51.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15256 components: - pos: 19.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15257 components: - pos: 19.5,49.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15258 components: - pos: 19.5,48.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15282 components: - pos: 7.5,40.5 @@ -26345,15 +24933,11 @@ entities: - pos: 7.5,41.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15284 components: - pos: 7.5,42.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15285 components: - pos: 7.5,43.5 @@ -26364,22 +24948,16 @@ entities: - pos: 7.5,44.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15287 components: - pos: 7.5,45.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15288 components: - pos: 7.5,46.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15291 components: - pos: 10.5,33.5 @@ -26400,8 +24978,6 @@ entities: - pos: -40.5,63.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15432 components: - pos: -42.5,61.5 @@ -26412,8 +24988,6 @@ entities: - pos: -42.5,60.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15434 components: - pos: -42.5,66.5 @@ -26424,36 +24998,26 @@ entities: - pos: -5.5,-16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15518 components: - pos: -5.5,-17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15519 components: - pos: -5.5,-18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15845 components: - pos: 19.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15870 components: - pos: 12.5,51.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15871 components: - pos: 11.5,51.5 @@ -26464,15 +25028,11 @@ entities: - pos: -24.5,-10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15891 components: - pos: -24.5,-11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15951 components: - pos: -51.5,31.5 @@ -26483,22 +25043,16 @@ entities: - pos: -51.5,30.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15953 components: - pos: -52.5,30.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15954 components: - pos: -53.5,30.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15955 components: - pos: -50.5,28.5 @@ -26514,8 +25068,6 @@ entities: - pos: -50.5,30.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15987 components: - pos: -8.5,8.5 @@ -26586,8 +25138,6 @@ entities: - pos: 4.5,4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 562 components: - pos: 4.5,3.5 @@ -26598,106 +25148,76 @@ entities: - pos: 4.5,2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 564 components: - pos: 4.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 565 components: - pos: 4.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 566 components: - pos: 4.5,-0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 567 components: - pos: 4.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 568 components: - pos: 4.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 569 components: - pos: 4.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 570 components: - pos: 4.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 571 components: - pos: 4.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 572 components: - pos: 5.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 573 components: - pos: 6.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 574 components: - pos: 7.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 594 components: - pos: 8.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 595 components: - pos: 9.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 596 components: - pos: 10.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 597 components: - pos: 11.5,-5.5 @@ -26708,43 +25228,31 @@ entities: - pos: 11.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 599 components: - pos: 11.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 728 components: - pos: 12.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 729 components: - pos: 13.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 730 components: - pos: 14.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 731 components: - pos: 15.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 732 components: - pos: 16.5,-5.5 @@ -26755,43 +25263,31 @@ entities: - pos: 17.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 734 components: - pos: 18.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 735 components: - pos: 19.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 736 components: - pos: 20.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 737 components: - pos: 21.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 738 components: - pos: 22.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 739 components: - pos: 23.5,-5.5 @@ -26802,477 +25298,341 @@ entities: - pos: 24.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 741 components: - pos: 25.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 742 components: - pos: 26.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 743 components: - pos: 27.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 744 components: - pos: 28.5,-10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 745 components: - pos: 28.5,-9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 746 components: - pos: 18.5,-14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 747 components: - pos: 28.5,-8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 750 components: - pos: 19.5,-14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 751 components: - pos: 20.5,-14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 752 components: - pos: 21.5,-14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 753 components: - pos: 22.5,-14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 754 components: - pos: 23.5,-14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 755 components: - pos: 24.5,-14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 756 components: - pos: 25.5,-14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 757 components: - pos: 26.5,-14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 758 components: - pos: 27.5,-14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 759 components: - pos: 18.5,-16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 760 components: - pos: 19.5,-16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 761 components: - pos: 20.5,-16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 762 components: - pos: 21.5,-16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 763 components: - pos: 22.5,-16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 764 components: - pos: 23.5,-16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 765 components: - pos: 24.5,-16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 766 components: - pos: 25.5,-16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 767 components: - pos: 26.5,-16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 768 components: - pos: 27.5,-16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 769 components: - pos: 19.5,-18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 770 components: - pos: 20.5,-18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 771 components: - pos: 21.5,-18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 772 components: - pos: 22.5,-18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 773 components: - pos: 23.5,-18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 774 components: - pos: 24.5,-18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 775 components: - pos: 25.5,-18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 776 components: - pos: 26.5,-18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 777 components: - pos: 27.5,-18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 778 components: - pos: 19.5,-20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 779 components: - pos: 20.5,-20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 780 components: - pos: 21.5,-20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 781 components: - pos: 22.5,-20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 782 components: - pos: 23.5,-20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 783 components: - pos: 24.5,-20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 784 components: - pos: 25.5,-20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 785 components: - pos: 26.5,-20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 786 components: - pos: 27.5,-20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 787 components: - pos: 20.5,-22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 788 components: - pos: 21.5,-22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 789 components: - pos: 22.5,-22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 790 components: - pos: 23.5,-22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 791 components: - pos: 24.5,-22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 792 components: - pos: 25.5,-22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 793 components: - pos: 26.5,-22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 794 components: - pos: 27.5,-22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 795 components: - pos: 20.5,-24.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 796 components: - pos: 21.5,-24.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 797 components: - pos: 22.5,-24.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 798 components: - pos: 23.5,-24.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 799 components: - pos: 24.5,-24.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 800 components: - pos: 25.5,-24.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 801 components: - pos: 26.5,-24.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 802 components: - pos: 27.5,-24.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 857 components: - pos: 28.5,-27.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 858 components: - pos: 28.5,-26.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 859 components: - pos: 28.5,-25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 903 components: - pos: 27.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 904 components: - pos: 27.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 905 components: - pos: 27.5,-8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 924 components: - pos: 25.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 925 components: - pos: 25.5,2.5 @@ -27283,15 +25643,11 @@ entities: - pos: 25.5,3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 927 components: - pos: 26.5,3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 928 components: - pos: 26.5,4.5 @@ -27342,8 +25698,6 @@ entities: - pos: -18.5,20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1534 components: - pos: 25.5,5.5 @@ -27354,43 +25708,31 @@ entities: - pos: 24.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1536 components: - pos: 23.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1537 components: - pos: 22.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1538 components: - pos: 21.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1539 components: - pos: 20.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1540 components: - pos: 19.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1541 components: - pos: 18.5,5.5 @@ -27441,15 +25783,11 @@ entities: - pos: 9.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1551 components: - pos: 8.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1552 components: - pos: 7.5,5.5 @@ -27485,113 +25823,81 @@ entities: - pos: 22.5,9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1559 components: - pos: 23.5,9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1561 components: - pos: 3.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1562 components: - pos: 2.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1563 components: - pos: 1.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1564 components: - pos: 0.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1565 components: - pos: -0.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1566 components: - pos: -1.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1567 components: - pos: -2.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1568 components: - pos: -3.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1569 components: - pos: -4.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1570 components: - pos: -5.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1571 components: - pos: -5.5,6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1572 components: - pos: -5.5,7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1573 components: - pos: -5.5,8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1574 components: - pos: -5.5,9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1575 components: - pos: -5.5,10.5 @@ -27607,15 +25913,11 @@ entities: - pos: -5.5,12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1578 components: - pos: -5.5,13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1579 components: - pos: -5.5,14.5 @@ -27626,22 +25928,16 @@ entities: - pos: -5.5,15.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1581 components: - pos: -5.5,16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1582 components: - pos: -5.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1583 components: - pos: -6.5,17.5 @@ -27652,36 +25948,26 @@ entities: - pos: -7.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1585 components: - pos: -8.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1586 components: - pos: -9.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1587 components: - pos: -9.5,18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2401 components: - pos: -22.5,61.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2589 components: - pos: 28.5,23.5 @@ -27702,8 +25988,6 @@ entities: - pos: -18.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2910 components: - pos: -13.5,20.5 @@ -27719,22 +26003,16 @@ entities: - pos: 22.5,3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2923 components: - pos: 22.5,2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2924 components: - pos: 22.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2925 components: - pos: 23.5,1.5 @@ -27745,43 +26023,31 @@ entities: - pos: 23.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2927 components: - pos: 23.5,-0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2928 components: - pos: 23.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2929 components: - pos: 23.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2930 components: - pos: 23.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2931 components: - pos: 23.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2972 components: - pos: 25.5,24.5 @@ -27807,22 +26073,16 @@ entities: - pos: -20.5,18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3331 components: - pos: -6.5,18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3332 components: - pos: -6.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3333 components: - pos: -6.5,20.5 @@ -27833,15 +26093,11 @@ entities: - pos: -6.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3335 components: - pos: -6.5,22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3336 components: - pos: -6.5,23.5 @@ -27852,15 +26108,11 @@ entities: - pos: -6.5,24.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3338 components: - pos: -6.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3339 components: - pos: -7.5,25.5 @@ -27876,15 +26128,11 @@ entities: - pos: -9.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3342 components: - pos: -10.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3343 components: - pos: -11.5,25.5 @@ -27895,22 +26143,16 @@ entities: - pos: -12.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3345 components: - pos: -12.5,24.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3346 components: - pos: -12.5,23.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3347 components: - pos: -12.5,22.5 @@ -27921,36 +26163,26 @@ entities: - pos: -12.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3362 components: - pos: -12.5,20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3363 components: - pos: -12.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3364 components: - pos: -12.5,18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3365 components: - pos: -12.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3366 components: - pos: -12.5,16.5 @@ -27986,15 +26218,11 @@ entities: - pos: -12.5,10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3373 components: - pos: -12.5,9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3374 components: - pos: -12.5,8.5 @@ -28015,8 +26243,6 @@ entities: - pos: -12.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3378 components: - pos: -11.5,5.5 @@ -28032,36 +26258,26 @@ entities: - pos: -9.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3381 components: - pos: -8.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3382 components: - pos: -7.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3383 components: - pos: -6.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3384 components: - pos: -12.5,26.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3385 components: - pos: -12.5,27.5 @@ -28097,22 +26313,16 @@ entities: - pos: -22.5,62.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3478 components: - pos: -22.5,60.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3907 components: - pos: -13.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3908 components: - pos: -14.5,5.5 @@ -28143,15 +26353,11 @@ entities: - pos: -19.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3914 components: - pos: -20.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3915 components: - pos: -21.5,5.5 @@ -28162,15 +26368,11 @@ entities: - pos: -22.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3917 components: - pos: -23.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3918 components: - pos: -24.5,5.5 @@ -28186,22 +26388,16 @@ entities: - pos: -26.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3921 components: - pos: -27.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3922 components: - pos: -28.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3923 components: - pos: -29.5,5.5 @@ -28232,8 +26428,6 @@ entities: - pos: -34.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3929 components: - pos: -35.5,5.5 @@ -28264,15 +26458,11 @@ entities: - pos: -15.5,2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3979 components: - pos: -15.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3980 components: - pos: -16.5,1.5 @@ -28283,50 +26473,36 @@ entities: - pos: -17.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3982 components: - pos: -18.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3983 components: - pos: -19.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3984 components: - pos: -20.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3985 components: - pos: -21.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3986 components: - pos: -21.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3987 components: - pos: -21.5,-0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3988 components: - pos: -21.5,-1.5 @@ -28337,64 +26513,46 @@ entities: - pos: -21.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3990 components: - pos: -21.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3991 components: - pos: -21.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3992 components: - pos: -22.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3993 components: - pos: -23.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3994 components: - pos: -24.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3995 components: - pos: -24.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3996 components: - pos: -21.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3997 components: - pos: -21.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3998 components: - pos: -21.5,-7.5 @@ -28405,78 +26563,56 @@ entities: - pos: -22.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4000 components: - pos: -23.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4001 components: - pos: -24.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4002 components: - pos: -25.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4003 components: - pos: -26.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4004 components: - pos: -26.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4005 components: - pos: -27.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4006 components: - pos: -28.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4007 components: - pos: -28.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4008 components: - pos: -28.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4009 components: - pos: -28.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4010 components: - pos: -28.5,-2.5 @@ -28487,43 +26623,31 @@ entities: - pos: -28.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4012 components: - pos: -28.5,-0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4013 components: - pos: -28.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4014 components: - pos: -28.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4015 components: - pos: -28.5,2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4016 components: - pos: -28.5,3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4017 components: - pos: -28.5,4.5 @@ -28559,8 +26683,6 @@ entities: - pos: -37.5,11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4024 components: - pos: -37.5,12.5 @@ -28591,29 +26713,21 @@ entities: - pos: -37.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4030 components: - pos: -37.5,18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4031 components: - pos: -37.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4032 components: - pos: -37.5,20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4033 components: - pos: -37.5,21.5 @@ -28654,8 +26768,6 @@ entities: - pos: -37.5,28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4041 components: - pos: -37.5,29.5 @@ -28706,15 +26818,11 @@ entities: - pos: -31.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4051 components: - pos: -30.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4052 components: - pos: -29.5,32.5 @@ -28725,8 +26833,6 @@ entities: - pos: -28.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4054 components: - pos: -27.5,32.5 @@ -28767,15 +26873,11 @@ entities: - pos: -20.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4062 components: - pos: -19.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4063 components: - pos: -18.5,32.5 @@ -28786,15 +26888,11 @@ entities: - pos: -17.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4065 components: - pos: -16.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4066 components: - pos: -15.5,32.5 @@ -28810,15 +26908,11 @@ entities: - pos: -13.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4378 components: - pos: -38.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4379 components: - pos: -39.5,21.5 @@ -28829,15 +26923,11 @@ entities: - pos: -40.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4381 components: - pos: -41.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4382 components: - pos: -42.5,21.5 @@ -28848,22 +26938,16 @@ entities: - pos: -43.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4384 components: - pos: -44.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4385 components: - pos: -45.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4386 components: - pos: -46.5,21.5 @@ -28874,43 +26958,31 @@ entities: - pos: -47.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4388 components: - pos: -48.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4389 components: - pos: -49.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4390 components: - pos: -50.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4391 components: - pos: -50.5,20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4392 components: - pos: -50.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4393 components: - pos: -50.5,18.5 @@ -28921,36 +26993,26 @@ entities: - pos: -50.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4395 components: - pos: -50.5,16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4396 components: - pos: -50.5,15.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4397 components: - pos: -50.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4398 components: - pos: -49.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4399 components: - pos: -48.5,14.5 @@ -28961,57 +27023,41 @@ entities: - pos: -47.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4401 components: - pos: -46.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4402 components: - pos: -45.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4403 components: - pos: -44.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4404 components: - pos: -43.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4405 components: - pos: -42.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4406 components: - pos: -41.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4407 components: - pos: -41.5,15.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4408 components: - pos: -40.5,15.5 @@ -29022,15 +27068,11 @@ entities: - pos: -44.5,13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4410 components: - pos: -44.5,12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4411 components: - pos: -44.5,11.5 @@ -29041,43 +27083,31 @@ entities: - pos: -44.5,10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4413 components: - pos: -44.5,9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4414 components: - pos: -44.5,8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4415 components: - pos: -44.5,7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4416 components: - pos: -44.5,6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4417 components: - pos: -44.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4418 components: - pos: -43.5,5.5 @@ -29113,43 +27143,31 @@ entities: - pos: 15.5,37.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5181 components: - pos: -60.5,7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5186 components: - pos: -89.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5502 components: - pos: -16.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5504 components: - pos: -15.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5572 components: - pos: -20.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5575 components: - pos: -17.5,20.5 @@ -29160,15 +27178,11 @@ entities: - pos: -15.5,20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5664 components: - pos: -14.5,20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5667 components: - pos: -16.5,20.5 @@ -29179,8 +27193,6 @@ entities: - pos: -19.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5682 components: - pos: -20.5,17.5 @@ -29191,8 +27203,6 @@ entities: - pos: -17.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6083 components: - pos: -16.5,33.5 @@ -29208,15 +27218,11 @@ entities: - pos: -16.5,35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6086 components: - pos: -16.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6087 components: - pos: -16.5,37.5 @@ -29232,15 +27238,11 @@ entities: - pos: -16.5,39.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6090 components: - pos: -16.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6091 components: - pos: -16.5,41.5 @@ -29271,29 +27273,21 @@ entities: - pos: -16.5,46.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6097 components: - pos: -16.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6098 components: - pos: -16.5,48.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6099 components: - pos: -16.5,49.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6100 components: - pos: -16.5,50.5 @@ -29314,43 +27308,31 @@ entities: - pos: -14.5,51.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6104 components: - pos: -13.5,51.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6105 components: - pos: -12.5,51.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6106 components: - pos: -11.5,51.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6107 components: - pos: -10.5,51.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6108 components: - pos: -9.5,51.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6109 components: - pos: -8.5,51.5 @@ -29361,15 +27343,11 @@ entities: - pos: -7.5,51.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6111 components: - pos: -7.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6112 components: - pos: -7.5,49.5 @@ -29380,71 +27358,51 @@ entities: - pos: -7.5,48.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6114 components: - pos: -7.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6115 components: - pos: -6.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6116 components: - pos: -5.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6117 components: - pos: -4.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6118 components: - pos: -3.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6119 components: - pos: -2.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6120 components: - pos: -1.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6121 components: - pos: -0.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6122 components: - pos: 0.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6123 components: - pos: 1.5,47.5 @@ -29455,64 +27413,46 @@ entities: - pos: 2.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6125 components: - pos: 3.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6126 components: - pos: 4.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6127 components: - pos: 5.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6128 components: - pos: 6.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6129 components: - pos: 7.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6130 components: - pos: 7.5,48.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6131 components: - pos: 8.5,48.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6132 components: - pos: 9.5,48.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6133 components: - pos: 10.5,48.5 @@ -29523,43 +27463,31 @@ entities: - pos: 11.5,48.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6135 components: - pos: 12.5,48.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6136 components: - pos: 13.5,48.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6137 components: - pos: 14.5,48.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6138 components: - pos: 15.5,48.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6139 components: - pos: 15.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6140 components: - pos: 15.5,46.5 @@ -29570,106 +27498,76 @@ entities: - pos: 15.5,45.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6142 components: - pos: 16.5,45.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6143 components: - pos: 17.5,45.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6145 components: - pos: 18.5,46.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6146 components: - pos: 15.5,44.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6147 components: - pos: 15.5,43.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6148 components: - pos: 15.5,42.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6149 components: - pos: 15.5,41.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6150 components: - pos: 15.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6151 components: - pos: 15.5,39.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6152 components: - pos: 15.5,38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6155 components: - pos: 15.5,35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6156 components: - pos: 16.5,35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6157 components: - pos: 17.5,35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6158 components: - pos: 18.5,35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6159 components: - pos: 19.5,35.5 @@ -29680,8 +27578,6 @@ entities: - pos: 20.5,35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6161 components: - pos: 21.5,35.5 @@ -29692,22 +27588,16 @@ entities: - pos: 22.5,35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6163 components: - pos: 23.5,35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6164 components: - pos: 23.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6165 components: - pos: 23.5,33.5 @@ -29718,36 +27608,26 @@ entities: - pos: 23.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6167 components: - pos: 23.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6168 components: - pos: 23.5,30.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6169 components: - pos: 23.5,29.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6170 components: - pos: 23.5,28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6171 components: - pos: 23.5,27.5 @@ -29758,29 +27638,21 @@ entities: - pos: 23.5,26.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6173 components: - pos: 23.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6174 components: - pos: 23.5,24.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6175 components: - pos: 23.5,23.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6176 components: - pos: 23.5,22.5 @@ -29791,29 +27663,21 @@ entities: - pos: 23.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6178 components: - pos: 23.5,20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6179 components: - pos: 23.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6180 components: - pos: 24.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6181 components: - pos: 25.5,19.5 @@ -29849,8 +27713,6 @@ entities: - pos: 26.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6188 components: - pos: 26.5,13.5 @@ -29876,8 +27738,6 @@ entities: - pos: 26.5,9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6193 components: - pos: 26.5,8.5 @@ -29888,22 +27748,16 @@ entities: - pos: 26.5,7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6195 components: - pos: 26.5,6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6265 components: - pos: 15.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6320 components: - pos: -20.5,64.5 @@ -29989,106 +27843,76 @@ entities: - pos: -5.5,55.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6544 components: - pos: -4.5,55.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6545 components: - pos: -3.5,55.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6546 components: - pos: -3.5,56.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6550 components: - pos: -3.5,57.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6551 components: - pos: -4.5,57.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6552 components: - pos: -4.5,58.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6553 components: - pos: -4.5,59.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6554 components: - pos: -4.5,60.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6555 components: - pos: -4.5,61.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6557 components: - pos: -5.5,62.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6558 components: - pos: -6.5,62.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6559 components: - pos: -7.5,62.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6560 components: - pos: -8.5,62.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6561 components: - pos: -9.5,62.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6616 components: - pos: -15.5,56.5 @@ -30154,176 +27978,126 @@ entities: - pos: -11.5,64.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6629 components: - pos: -12.5,65.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6630 components: - pos: -11.5,65.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6631 components: - pos: -12.5,66.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6632 components: - pos: -13.5,66.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6633 components: - pos: -13.5,67.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6634 components: - pos: -14.5,67.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6635 components: - pos: -15.5,67.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6636 components: - pos: -16.5,67.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6637 components: - pos: -17.5,67.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6638 components: - pos: -18.5,67.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6639 components: - pos: -19.5,67.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6640 components: - pos: -19.5,66.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6641 components: - pos: -20.5,66.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6642 components: - pos: -20.5,65.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6643 components: - pos: -21.5,65.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6644 components: - pos: -21.5,64.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7285 components: - pos: -43.5,55.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7587 components: - pos: -19.5,51.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7588 components: - pos: -20.5,51.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7589 components: - pos: -21.5,51.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7590 components: - pos: -22.5,51.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7591 components: - pos: -23.5,51.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7592 components: - pos: -24.5,51.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7593 components: - pos: -25.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7594 components: - pos: -17.5,51.5 @@ -30334,15 +28108,11 @@ entities: - pos: -24.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7596 components: - pos: -24.5,49.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7597 components: - pos: -24.5,48.5 @@ -30353,29 +28123,21 @@ entities: - pos: -24.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7599 components: - pos: -24.5,46.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7600 components: - pos: -24.5,45.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7601 components: - pos: -24.5,44.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7602 components: - pos: -24.5,43.5 @@ -30386,22 +28148,16 @@ entities: - pos: -24.5,42.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7604 components: - pos: -24.5,41.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7605 components: - pos: -24.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7606 components: - pos: -24.5,39.5 @@ -30412,29 +28168,21 @@ entities: - pos: -24.5,38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7608 components: - pos: -24.5,37.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7609 components: - pos: -24.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7610 components: - pos: -24.5,35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7611 components: - pos: -24.5,34.5 @@ -30450,15 +28198,11 @@ entities: - pos: -26.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7614 components: - pos: -27.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7615 components: - pos: -28.5,50.5 @@ -30469,106 +28213,76 @@ entities: - pos: -29.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7617 components: - pos: -30.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7618 components: - pos: -31.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7619 components: - pos: -32.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7620 components: - pos: -32.5,51.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7621 components: - pos: -32.5,52.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7622 components: - pos: -32.5,53.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7623 components: - pos: -32.5,54.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7624 components: - pos: -32.5,55.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7625 components: - pos: -33.5,55.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7626 components: - pos: -34.5,55.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7627 components: - pos: -34.5,56.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7628 components: - pos: -34.5,57.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7629 components: - pos: -35.5,57.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7630 components: - pos: -35.5,55.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7631 components: - pos: -36.5,55.5 @@ -30579,22 +28293,16 @@ entities: - pos: -37.5,55.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7633 components: - pos: -38.5,55.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7634 components: - pos: -39.5,55.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7635 components: - pos: -40.5,55.5 @@ -30605,8 +28313,6 @@ entities: - pos: -41.5,55.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7650 components: - pos: -47.5,47.5 @@ -30652,15 +28358,11 @@ entities: - pos: -47.5,39.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7659 components: - pos: -47.5,38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7660 components: - pos: -47.5,37.5 @@ -30671,15 +28373,11 @@ entities: - pos: -47.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7662 components: - pos: -47.5,35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7663 components: - pos: -47.5,34.5 @@ -30695,15 +28393,11 @@ entities: - pos: -47.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7666 components: - pos: -46.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7667 components: - pos: -45.5,32.5 @@ -30759,29 +28453,21 @@ entities: - pos: -50.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7678 components: - pos: -51.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7679 components: - pos: -52.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7680 components: - pos: -53.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7681 components: - pos: -54.5,32.5 @@ -30802,127 +28488,91 @@ entities: - pos: -57.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7685 components: - pos: -57.5,33.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7686 components: - pos: -57.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7687 components: - pos: -57.5,35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7688 components: - pos: -57.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7689 components: - pos: -57.5,37.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7690 components: - pos: -57.5,38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7691 components: - pos: -57.5,39.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7692 components: - pos: -57.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7693 components: - pos: -57.5,41.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7694 components: - pos: -57.5,42.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7695 components: - pos: -57.5,43.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7696 components: - pos: -57.5,44.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7697 components: - pos: -57.5,45.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7698 components: - pos: -57.5,46.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7699 components: - pos: -57.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7700 components: - pos: -56.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7701 components: - pos: -55.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7702 components: - pos: -54.5,47.5 @@ -30933,8 +28583,6 @@ entities: - pos: -53.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7704 components: - pos: -52.5,47.5 @@ -30965,8 +28613,6 @@ entities: - pos: -58.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7884 components: - pos: -44.5,55.5 @@ -30977,15 +28623,11 @@ entities: - pos: -44.5,54.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7886 components: - pos: -44.5,53.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7887 components: - pos: -44.5,52.5 @@ -31001,8 +28643,6 @@ entities: - pos: -44.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7890 components: - pos: -44.5,49.5 @@ -31013,8 +28653,6 @@ entities: - pos: -45.5,49.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7892 components: - pos: -46.5,49.5 @@ -31035,8 +28673,6 @@ entities: - pos: -58.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8504 components: - pos: -58.5,18.5 @@ -31062,29 +28698,21 @@ entities: - pos: -57.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8509 components: - pos: -57.5,22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8510 components: - pos: -57.5,23.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8511 components: - pos: -57.5,24.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8512 components: - pos: -57.5,25.5 @@ -31115,8 +28743,6 @@ entities: - pos: -57.5,30.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8518 components: - pos: -57.5,31.5 @@ -31142,15 +28768,11 @@ entities: - pos: -57.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8552 components: - pos: -57.5,13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8553 components: - pos: -57.5,12.5 @@ -31186,8 +28808,6 @@ entities: - pos: -57.5,6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8560 components: - pos: -57.5,5.5 @@ -31213,15 +28833,11 @@ entities: - pos: -53.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8565 components: - pos: -52.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8566 components: - pos: -51.5,5.5 @@ -31257,15 +28873,11 @@ entities: - pos: -45.5,5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8929 components: - pos: -42.5,55.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9061 components: - pos: -17.5,64.5 @@ -31281,8 +28893,6 @@ entities: - pos: -69.5,26.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9309 components: - pos: -69.5,28.5 @@ -31293,8 +28903,6 @@ entities: - pos: -18.5,51.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9606 components: - pos: -80.5,27.5 @@ -31310,15 +28918,11 @@ entities: - pos: -69.5,23.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9859 components: - pos: -69.5,27.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9860 components: - pos: -79.5,26.5 @@ -31329,15 +28933,11 @@ entities: - pos: -21.5,63.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9977 components: - pos: -22.5,63.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9978 components: - pos: -19.5,64.5 @@ -31348,15 +28948,11 @@ entities: - pos: -59.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9999 components: - pos: -60.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10000 components: - pos: -61.5,47.5 @@ -31372,8 +28968,6 @@ entities: - pos: -63.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10003 components: - pos: -64.5,47.5 @@ -31384,15 +28978,11 @@ entities: - pos: -65.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10005 components: - pos: -66.5,48.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10006 components: - pos: -66.5,49.5 @@ -31408,15 +28998,11 @@ entities: - pos: -67.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10010 components: - pos: -67.5,51.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10011 components: - pos: -67.5,52.5 @@ -31427,15 +29013,11 @@ entities: - pos: -67.5,53.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10013 components: - pos: -67.5,54.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10014 components: - pos: -67.5,55.5 @@ -31446,8 +29028,6 @@ entities: - pos: -67.5,56.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10016 components: - pos: -67.5,57.5 @@ -31463,57 +29043,41 @@ entities: - pos: -65.5,57.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10019 components: - pos: -65.5,58.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10020 components: - pos: -65.5,59.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10023 components: - pos: -60.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10024 components: - pos: -60.5,18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10025 components: - pos: -60.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10026 components: - pos: -65.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10027 components: - pos: -66.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10028 components: - pos: -66.5,37.5 @@ -31524,36 +29088,26 @@ entities: - pos: -66.5,38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10030 components: - pos: -66.5,39.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10031 components: - pos: -66.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10032 components: - pos: -66.5,41.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10033 components: - pos: -66.5,42.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10034 components: - pos: -66.5,43.5 @@ -31569,8 +29123,6 @@ entities: - pos: -60.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10037 components: - pos: -60.5,35.5 @@ -31581,8 +29133,6 @@ entities: - pos: -60.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10039 components: - pos: -60.5,33.5 @@ -31603,43 +29153,31 @@ entities: - pos: -60.5,30.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10045 components: - pos: -60.5,29.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10047 components: - pos: -60.5,28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10077 components: - pos: -60.5,27.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10078 components: - pos: -60.5,26.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10079 components: - pos: -60.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10090 components: - pos: -60.5,24.5 @@ -31655,8 +29193,6 @@ entities: - pos: -60.5,22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10097 components: - pos: -60.5,21.5 @@ -31667,8 +29203,6 @@ entities: - pos: -60.5,20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10104 components: - pos: -61.5,17.5 @@ -31679,22 +29213,16 @@ entities: - pos: -62.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10106 components: - pos: -63.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10107 components: - pos: -64.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10108 components: - pos: -65.5,17.5 @@ -31705,8 +29233,6 @@ entities: - pos: -66.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10110 components: - pos: -66.5,16.5 @@ -31717,8 +29243,6 @@ entities: - pos: -66.5,15.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10112 components: - pos: -66.5,14.5 @@ -31734,22 +29258,16 @@ entities: - pos: -66.5,12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10115 components: - pos: -66.5,11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10116 components: - pos: -66.5,10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10117 components: - pos: -66.5,9.5 @@ -31765,8 +29283,6 @@ entities: - pos: -65.5,8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10120 components: - pos: -64.5,8.5 @@ -31777,8 +29293,6 @@ entities: - pos: -63.5,8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10122 components: - pos: -62.5,8.5 @@ -31794,8 +29308,6 @@ entities: - pos: -60.5,8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10125 components: - pos: -59.5,32.5 @@ -31831,15 +29343,11 @@ entities: - pos: -63.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10135 components: - pos: -63.5,35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10136 components: - pos: -63.5,34.5 @@ -31870,134 +29378,96 @@ entities: - pos: -65.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10151 components: - pos: -66.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10152 components: - pos: -67.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10153 components: - pos: -68.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10154 components: - pos: -69.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10156 components: - pos: -70.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10157 components: - pos: -64.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10161 components: - pos: -70.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10162 components: - pos: -71.5,29.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10163 components: - pos: -70.5,30.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10168 components: - pos: -70.5,28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10169 components: - pos: -71.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10170 components: - pos: -71.5,28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10174 components: - pos: -69.5,22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10177 components: - pos: -71.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10178 components: - pos: -71.5,30.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10179 components: - pos: -70.5,29.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10180 components: - pos: -69.5,24.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10181 components: - pos: -71.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10182 components: - pos: -72.5,21.5 @@ -32043,8 +29513,6 @@ entities: - pos: -77.5,24.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10191 components: - pos: -78.5,24.5 @@ -32060,8 +29528,6 @@ entities: - pos: -77.5,26.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10194 components: - pos: -76.5,26.5 @@ -32122,15 +29588,11 @@ entities: - pos: -81.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10206 components: - pos: -82.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10208 components: - pos: -84.5,28.5 @@ -32161,8 +29623,6 @@ entities: - pos: -71.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10227 components: - pos: -71.5,33.5 @@ -32213,15 +29673,11 @@ entities: - pos: -69.5,26.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10252 components: - pos: -69.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10262 components: - pos: -60.5,6.5 @@ -32267,8 +29723,6 @@ entities: - pos: -87.5,20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10553 components: - pos: -85.5,23.5 @@ -32299,274 +29753,196 @@ entities: - pos: -86.5,23.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10559 components: - pos: -86.5,24.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10560 components: - pos: -86.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10561 components: - pos: -86.5,26.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10562 components: - pos: -86.5,27.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10563 components: - pos: -88.5,20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10564 components: - pos: -88.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10565 components: - pos: -90.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10566 components: - pos: -91.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10567 components: - pos: -92.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10568 components: - pos: -93.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10569 components: - pos: -94.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10570 components: - pos: -94.5,18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10571 components: - pos: -95.5,18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10572 components: - pos: -96.5,18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10573 components: - pos: -96.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10574 components: - pos: -97.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10576 components: - pos: -98.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10577 components: - pos: -98.5,18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10578 components: - pos: -99.5,18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10579 components: - pos: -100.5,18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10581 components: - pos: -87.5,30.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10582 components: - pos: -88.5,30.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10583 components: - pos: -88.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10584 components: - pos: -89.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10585 components: - pos: -90.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10586 components: - pos: -91.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10587 components: - pos: -92.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10588 components: - pos: -93.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10589 components: - pos: -94.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10590 components: - pos: -94.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10591 components: - pos: -95.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10592 components: - pos: -96.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10593 components: - pos: -96.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10594 components: - pos: -97.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10595 components: - pos: -98.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10596 components: - pos: -98.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10597 components: - pos: -99.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10598 components: - pos: -100.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10706 components: - pos: -74.5,20.5 @@ -32612,8 +29988,6 @@ entities: - pos: -63.5,29.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10717 components: - pos: -63.5,28.5 @@ -32649,43 +30023,31 @@ entities: - pos: 21.5,26.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 12835 components: - pos: 22.5,26.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 12836 components: - pos: 20.5,26.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 12837 components: - pos: 19.5,26.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 12838 components: - pos: 18.5,26.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 12839 components: - pos: 17.5,26.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 12840 components: - pos: 16.5,26.5 @@ -32696,29 +30058,21 @@ entities: - pos: 15.5,26.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 12842 components: - pos: 14.5,26.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 12843 components: - pos: 14.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 12844 components: - pos: 14.5,24.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 12845 components: - pos: 14.5,23.5 @@ -32734,36 +30088,26 @@ entities: - pos: 14.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 12848 components: - pos: 14.5,20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 12849 components: - pos: 14.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 12850 components: - pos: 14.5,18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 12851 components: - pos: 14.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 12860 components: - pos: 14.5,16.5 @@ -32779,8 +30123,6 @@ entities: - pos: 14.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 12863 components: - pos: 14.5,13.5 @@ -32791,15 +30133,11 @@ entities: - pos: 14.5,12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 12865 components: - pos: 14.5,11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 12866 components: - pos: 14.5,10.5 @@ -32815,29 +30153,21 @@ entities: - pos: 13.5,9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 12869 components: - pos: 12.5,9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 12870 components: - pos: 11.5,9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 12871 components: - pos: 10.5,9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 12872 components: - pos: 9.5,9.5 @@ -32848,15 +30178,11 @@ entities: - pos: 8.5,9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 12874 components: - pos: 7.5,9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 12875 components: - pos: 6.5,9.5 @@ -32877,15 +30203,11 @@ entities: - pos: 3.5,9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 12879 components: - pos: 3.5,10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 12880 components: - pos: 3.5,11.5 @@ -32901,8 +30223,6 @@ entities: - pos: 2.5,12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 12883 components: - pos: 1.5,12.5 @@ -32918,22 +30238,16 @@ entities: - pos: -0.5,12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 12886 components: - pos: -1.5,12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 12887 components: - pos: -2.5,12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 12888 components: - pos: -3.5,12.5 @@ -32944,29 +30258,21 @@ entities: - pos: -4.5,12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15013 components: - pos: -71.5,27.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15014 components: - pos: -71.5,26.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15015 components: - pos: -71.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15233 components: - pos: 17.5,46.5 @@ -32977,302 +30283,216 @@ entities: - pos: -69.5,20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15328 components: - pos: -69.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15329 components: - pos: -69.5,18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15330 components: - pos: -70.5,18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15331 components: - pos: -68.5,18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15332 components: - pos: -73.5,18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15405 components: - pos: -36.5,56.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15406 components: - pos: -36.5,57.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15407 components: - pos: -36.5,58.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15408 components: - pos: -36.5,59.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15409 components: - pos: -36.5,60.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15410 components: - pos: -36.5,61.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15411 components: - pos: -36.5,62.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15412 components: - pos: -36.5,63.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15413 components: - pos: -36.5,64.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15414 components: - pos: -36.5,65.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15415 components: - pos: -36.5,66.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15416 components: - pos: -36.5,67.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15417 components: - pos: -36.5,68.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15418 components: - pos: -36.5,69.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15419 components: - pos: -37.5,69.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15420 components: - pos: -38.5,69.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15421 components: - pos: -39.5,69.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15422 components: - pos: -40.5,69.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15423 components: - pos: -41.5,69.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15424 components: - pos: -42.5,69.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15425 components: - pos: -43.5,69.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15426 components: - pos: -44.5,69.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15462 components: - pos: -44.5,58.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15463 components: - pos: -41.5,57.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15466 components: - pos: -37.5,57.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15468 components: - pos: -38.5,57.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15469 components: - pos: -40.5,58.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15470 components: - pos: -38.5,59.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15471 components: - pos: -39.5,58.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15476 components: - pos: -43.5,58.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15477 components: - pos: -41.5,58.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15479 components: - pos: -38.5,58.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15485 components: - pos: -43.5,57.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15486 components: - pos: -42.5,57.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15811 components: - pos: -11.5,63.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15812 components: - pos: -10.5,62.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15813 components: - pos: -10.5,63.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - proto: CableHVStack entities: - uid: 2889 @@ -33297,36 +30517,26 @@ entities: - pos: 7.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 498 components: - pos: 6.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 503 components: - pos: 5.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 504 components: - pos: 4.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 533 components: - pos: 3.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 534 components: - pos: 2.5,-5.5 @@ -33337,8 +30547,6 @@ entities: - pos: 1.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 537 components: - pos: 0.5,-5.5 @@ -33349,22 +30557,16 @@ entities: - pos: -0.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 539 components: - pos: -1.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 540 components: - pos: -2.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 541 components: - pos: -3.5,-5.5 @@ -33380,8 +30582,6 @@ entities: - pos: -4.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 544 components: - pos: -4.5,-3.5 @@ -33402,8 +30602,6 @@ entities: - pos: -4.5,-0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 548 components: - pos: -1.5,-6.5 @@ -33419,15 +30617,11 @@ entities: - pos: -1.5,-8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 551 components: - pos: -1.5,-9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 552 components: - pos: -1.5,-10.5 @@ -33453,8 +30647,6 @@ entities: - pos: 2.5,-10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 557 components: - pos: 2.5,-9.5 @@ -33470,29 +30662,21 @@ entities: - pos: 2.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 600 components: - pos: 8.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 601 components: - pos: 9.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 602 components: - pos: 10.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 603 components: - pos: 11.5,-5.5 @@ -33503,22 +30687,16 @@ entities: - pos: 11.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 605 components: - pos: 11.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 931 components: - pos: 25.5,1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 938 components: - pos: 26.5,1.5 @@ -33529,8 +30707,6 @@ entities: - pos: 26.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1014 components: - pos: 28.5,23.5 @@ -33546,36 +30722,26 @@ entities: - pos: -15.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1509 components: - pos: -16.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1510 components: - pos: -17.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1643 components: - pos: 29.5,24.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1675 components: - pos: 10.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1676 components: - pos: 10.5,-3.5 @@ -33611,15 +30777,11 @@ entities: - pos: 12.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2188 components: - pos: -4.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2189 components: - pos: -3.5,17.5 @@ -33630,8 +30792,6 @@ entities: - pos: -3.5,18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2191 components: - pos: -3.5,19.5 @@ -33642,8 +30802,6 @@ entities: - pos: -3.5,20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2193 components: - pos: -3.5,21.5 @@ -33654,15 +30812,11 @@ entities: - pos: -3.5,22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2195 components: - pos: -3.5,23.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2196 components: - pos: -2.5,23.5 @@ -33718,8 +30872,6 @@ entities: - pos: 1.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2207 components: - pos: 4.5,23.5 @@ -33785,36 +30937,26 @@ entities: - pos: 4.5,35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2516 components: - pos: 23.5,9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2517 components: - pos: 22.5,9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2518 components: - pos: 22.5,10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2687 components: - pos: -5.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2688 components: - pos: -6.5,17.5 @@ -33825,57 +30967,41 @@ entities: - pos: -7.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2690 components: - pos: -8.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2691 components: - pos: -9.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2692 components: - pos: -9.5,18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2698 components: - pos: -10.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2802 components: - pos: -18.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2808 components: - pos: -19.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2938 components: - pos: -20.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3223 components: - pos: -20.5,20.5 @@ -33886,15 +31012,11 @@ entities: - pos: -20.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3325 components: - pos: -21.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3326 components: - pos: -22.5,21.5 @@ -33915,15 +31037,11 @@ entities: - pos: -24.5,20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3330 components: - pos: -24.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3682 components: - pos: -31.5,-6.5 @@ -33939,50 +31057,36 @@ entities: - pos: -24.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3935 components: - pos: -24.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3936 components: - pos: -23.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3937 components: - pos: -22.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3938 components: - pos: -21.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3939 components: - pos: -21.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3940 components: - pos: -21.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3941 components: - pos: -21.5,-7.5 @@ -33993,43 +31097,31 @@ entities: - pos: -22.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3943 components: - pos: -23.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3944 components: - pos: -24.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3945 components: - pos: -25.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3946 components: - pos: -26.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3947 components: - pos: -26.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3948 components: - pos: -26.5,-5.5 @@ -34040,8 +31132,6 @@ entities: - pos: -26.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3950 components: - pos: -26.5,-3.5 @@ -34052,43 +31142,31 @@ entities: - pos: -26.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3952 components: - pos: -27.5,-2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3953 components: - pos: -27.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3954 components: - pos: -28.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3955 components: - pos: -29.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3956 components: - pos: -30.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3957 components: - pos: -37.5,-6.5 @@ -34099,8 +31177,6 @@ entities: - pos: -40.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 3974 components: - pos: -41.5,-5.5 @@ -34111,15 +31187,11 @@ entities: - pos: -42.5,-5.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4284 components: - pos: -41.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4328 components: - pos: -40.5,15.5 @@ -34130,8 +31202,6 @@ entities: - pos: -41.5,15.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4349 components: - pos: -41.5,13.5 @@ -34142,50 +31212,36 @@ entities: - pos: -41.5,12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4351 components: - pos: -42.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4352 components: - pos: -43.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4353 components: - pos: -44.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4354 components: - pos: -45.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4355 components: - pos: -46.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4356 components: - pos: -47.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4357 components: - pos: -48.5,14.5 @@ -34196,36 +31252,26 @@ entities: - pos: -49.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4359 components: - pos: -50.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4360 components: - pos: -50.5,15.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4361 components: - pos: -50.5,16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4362 components: - pos: -50.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4363 components: - pos: -50.5,18.5 @@ -34236,43 +31282,31 @@ entities: - pos: -50.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4365 components: - pos: -50.5,20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4366 components: - pos: -50.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4367 components: - pos: -49.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4368 components: - pos: -48.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4369 components: - pos: -47.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4370 components: - pos: -46.5,21.5 @@ -34283,22 +31317,16 @@ entities: - pos: -45.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4372 components: - pos: -44.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4373 components: - pos: -43.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4374 components: - pos: -42.5,21.5 @@ -34309,57 +31337,41 @@ entities: - pos: -41.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4376 components: - pos: -40.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4377 components: - pos: -40.5,20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4432 components: - pos: -46.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4570 components: - pos: -44.5,27.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4602 components: - pos: -44.5,26.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4603 components: - pos: -44.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4604 components: - pos: -44.5,24.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4605 components: - pos: -44.5,23.5 @@ -34375,36 +31387,26 @@ entities: - pos: -46.5,27.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4609 components: - pos: -51.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4694 components: - pos: -45.5,9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4695 components: - pos: -44.5,13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4696 components: - pos: -44.5,12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4697 components: - pos: -44.5,11.5 @@ -34415,36 +31417,26 @@ entities: - pos: -44.5,10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4699 components: - pos: -44.5,9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4739 components: - pos: -46.5,24.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 4740 components: - pos: -46.5,23.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5047 components: - pos: -88.5,20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5079 components: - pos: -40.5,-6.5 @@ -34485,8 +31477,6 @@ entities: - pos: -44.5,-9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5087 components: - pos: -45.5,-9.5 @@ -34497,8 +31487,6 @@ entities: - pos: -46.5,-9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5089 components: - pos: -47.5,-9.5 @@ -34509,36 +31497,26 @@ entities: - pos: -48.5,-9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5091 components: - pos: -49.5,-9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5092 components: - pos: -50.5,-9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5093 components: - pos: -51.5,-9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5094 components: - pos: -52.5,-9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5095 components: - pos: -53.5,-9.5 @@ -34549,15 +31527,11 @@ entities: - pos: -54.5,-9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5097 components: - pos: -55.5,-9.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5098 components: - pos: -56.5,-9.5 @@ -34568,50 +31542,36 @@ entities: - pos: -56.5,-8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5100 components: - pos: -56.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5101 components: - pos: -55.5,-7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5588 components: - pos: -44.5,22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5589 components: - pos: -46.5,22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 5807 components: - pos: 17.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6200 components: - pos: 18.5,46.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6201 components: - pos: 17.5,46.5 @@ -34622,8 +31582,6 @@ entities: - pos: 16.5,45.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6213 components: - pos: 17.5,48.5 @@ -34634,8 +31592,6 @@ entities: - pos: 16.5,49.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6216 components: - pos: 17.5,49.5 @@ -34646,43 +31602,31 @@ entities: - pos: 16.5,49.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6547 components: - pos: -3.5,56.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6548 components: - pos: -4.5,56.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 6549 components: - pos: -4.5,57.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7096 components: - pos: -20.5,22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7808 components: - pos: -53.5,85.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7809 components: - pos: -52.5,85.5 @@ -34693,8 +31637,6 @@ entities: - pos: -51.5,85.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7811 components: - pos: -50.5,85.5 @@ -34705,8 +31647,6 @@ entities: - pos: -50.5,84.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7813 components: - pos: -50.5,83.5 @@ -34717,8 +31657,6 @@ entities: - pos: -50.5,82.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7815 components: - pos: -50.5,81.5 @@ -34729,106 +31667,76 @@ entities: - pos: -50.5,80.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7817 components: - pos: -50.5,79.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7818 components: - pos: -50.5,78.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7819 components: - pos: -50.5,77.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7820 components: - pos: -50.5,76.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7821 components: - pos: -50.5,75.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7822 components: - pos: -50.5,74.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7823 components: - pos: -50.5,73.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7824 components: - pos: -50.5,72.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7825 components: - pos: -50.5,71.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7826 components: - pos: -50.5,70.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7827 components: - pos: -50.5,69.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7828 components: - pos: -50.5,68.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7829 components: - pos: -50.5,67.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7830 components: - pos: -50.5,66.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7831 components: - pos: -50.5,65.5 @@ -34854,8 +31762,6 @@ entities: - pos: -49.5,63.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 7845 components: - pos: -50.5,61.5 @@ -34921,8 +31827,6 @@ entities: - pos: -58.5,56.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8780 components: - pos: -50.5,60.5 @@ -35013,99 +31917,71 @@ entities: - pos: -64.5,57.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 8959 components: - pos: -65.5,57.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9381 components: - pos: -35.5,57.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9382 components: - pos: -34.5,57.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9383 components: - pos: -34.5,56.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9384 components: - pos: -34.5,55.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9385 components: - pos: -33.5,55.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9386 components: - pos: -32.5,55.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9387 components: - pos: -32.5,54.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9388 components: - pos: -32.5,53.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9389 components: - pos: -32.5,52.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9390 components: - pos: -32.5,51.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9391 components: - pos: -32.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9392 components: - pos: -31.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9393 components: - pos: -31.5,49.5 @@ -35116,22 +31992,16 @@ entities: - pos: -31.5,48.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9396 components: - pos: -30.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9397 components: - pos: -29.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9398 components: - pos: -28.5,50.5 @@ -35142,36 +32012,26 @@ entities: - pos: -27.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9400 components: - pos: -26.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9401 components: - pos: -25.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9402 components: - pos: -24.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9403 components: - pos: -24.5,49.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9404 components: - pos: -24.5,48.5 @@ -35182,29 +32042,21 @@ entities: - pos: -24.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9406 components: - pos: -24.5,46.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9407 components: - pos: -24.5,45.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9408 components: - pos: -24.5,44.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9409 components: - pos: -24.5,43.5 @@ -35215,22 +32067,16 @@ entities: - pos: -24.5,42.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9411 components: - pos: -24.5,41.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9412 components: - pos: -24.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9413 components: - pos: -24.5,39.5 @@ -35241,50 +32087,36 @@ entities: - pos: -24.5,38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9415 components: - pos: -25.5,38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9416 components: - pos: -26.5,38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9495 components: - pos: -23.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9642 components: - pos: -20.5,23.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9643 components: - pos: -21.5,23.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9644 components: - pos: -21.5,23.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9645 components: - pos: -22.5,23.5 @@ -35320,8 +32152,6 @@ entities: - pos: -28.5,23.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 9652 components: - pos: -29.5,23.5 @@ -35362,22 +32192,16 @@ entities: - pos: -29.5,30.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10021 components: - pos: -65.5,58.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10022 components: - pos: -65.5,59.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10213 components: - pos: -79.5,27.5 @@ -35443,15 +32267,11 @@ entities: - pos: -35.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10277 components: - pos: -34.5,-6.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10285 components: - pos: -33.5,-6.5 @@ -35472,8 +32292,6 @@ entities: - pos: -20.5,18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10320 components: - pos: -20.5,17.5 @@ -35484,22 +32302,16 @@ entities: - pos: -42.5,-8.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10522 components: - pos: -87.5,30.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10523 components: - pos: -88.5,30.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10524 components: - pos: -79.5,26.5 @@ -35575,197 +32387,141 @@ entities: - pos: -87.5,20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10617 components: - pos: -101.5,18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10618 components: - pos: -93.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10619 components: - pos: -93.5,33.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10620 components: - pos: -101.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10621 components: - pos: -101.5,33.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10622 components: - pos: -104.5,29.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10623 components: - pos: -105.5,29.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10624 components: - pos: -105.5,30.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10625 components: - pos: -105.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10626 components: - pos: -105.5,28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10627 components: - pos: -105.5,27.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10628 components: - pos: -105.5,26.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10629 components: - pos: -105.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10630 components: - pos: -105.5,24.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10631 components: - pos: -105.5,23.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10632 components: - pos: -105.5,22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10633 components: - pos: -105.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10634 components: - pos: -105.5,20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10635 components: - pos: -105.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10636 components: - pos: -104.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10637 components: - pos: -101.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10638 components: - pos: -93.5,18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10639 components: - pos: -93.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10640 components: - pos: -90.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10641 components: - pos: -90.5,29.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10642 components: - pos: -89.5,29.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10643 components: - pos: -89.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10981 components: - pos: -66.5,57.5 @@ -35781,8 +32537,6 @@ entities: - pos: -67.5,56.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10984 components: - pos: -67.5,55.5 @@ -35793,15 +32547,11 @@ entities: - pos: -67.5,54.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10986 components: - pos: -67.5,53.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10987 components: - pos: -67.5,52.5 @@ -35812,15 +32562,11 @@ entities: - pos: -67.5,51.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10989 components: - pos: -67.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10990 components: - pos: -66.5,50.5 @@ -35836,8 +32582,6 @@ entities: - pos: -66.5,48.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 10993 components: - pos: -66.5,47.5 @@ -35863,8 +32607,6 @@ entities: - pos: -65.5,44.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11064 components: - pos: -71.5,34.5 @@ -35890,8 +32632,6 @@ entities: - pos: -68.5,35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11069 components: - pos: -72.5,34.5 @@ -35917,50 +32657,36 @@ entities: - pos: -76.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11074 components: - pos: -76.5,35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11075 components: - pos: -76.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11076 components: - pos: -73.5,33.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11077 components: - pos: -73.5,33.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11078 components: - pos: -73.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11079 components: - pos: -73.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 11080 components: - pos: -73.5,30.5 @@ -36021,43 +32747,31 @@ entities: - pos: -75.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 14947 components: - pos: -72.5,26.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 14948 components: - pos: -71.5,26.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 14949 components: - pos: -71.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15235 components: - pos: 17.5,45.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 15236 components: - pos: 16.5,44.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - proto: CableMVStack entities: - uid: 2888 @@ -45404,26 +42118,22 @@ entities: entities: - uid: 7962 components: - - anchored: False - pos: -65.5,52.5 + - pos: -65.5,52.5 parent: 1 type: Transform - uid: 7972 components: - - anchored: False - pos: -65.5,53.5 + - pos: -65.5,53.5 parent: 1 type: Transform - uid: 8019 components: - - anchored: False - pos: -64.5,53.5 + - pos: -64.5,53.5 parent: 1 type: Transform - uid: 8020 components: - - anchored: False - pos: -64.5,52.5 + - pos: -64.5,52.5 parent: 1 type: Transform - proto: DeskBell @@ -48916,8 +45626,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 3665 components: @@ -48932,8 +45640,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 4890 components: @@ -48943,8 +45649,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 11062 components: @@ -48954,8 +45658,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14864 components: @@ -48965,8 +45667,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14865 components: @@ -48976,8 +45676,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14866 components: @@ -48987,8 +45685,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14867 components: @@ -48998,8 +45694,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14868 components: @@ -49009,8 +45703,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14869 components: @@ -49020,8 +45712,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14870 components: @@ -49030,8 +45720,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14871 components: @@ -49041,8 +45729,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14872 components: @@ -49052,8 +45738,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14873 components: @@ -49063,8 +45747,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14874 components: @@ -49074,8 +45756,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14875 components: @@ -49085,8 +45765,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14876 components: @@ -49095,8 +45773,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14879 components: @@ -49106,8 +45782,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14880 components: @@ -49116,8 +45790,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14882 components: @@ -49127,8 +45799,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14883 components: @@ -49138,8 +45808,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14884 components: @@ -49148,8 +45816,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14885 components: @@ -49159,8 +45825,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14886 components: @@ -49169,8 +45833,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14887 components: @@ -49180,8 +45842,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14888 components: @@ -49191,8 +45851,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14889 components: @@ -49202,8 +45860,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14890 components: @@ -49212,8 +45868,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14891 components: @@ -49223,8 +45877,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14892 components: @@ -49234,8 +45886,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14893 components: @@ -49245,8 +45895,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14894 components: @@ -49255,8 +45903,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14895 components: @@ -49266,8 +45912,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14896 components: @@ -49277,8 +45921,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14897 components: @@ -49288,8 +45930,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14898 components: @@ -49298,8 +45938,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14899 components: @@ -49309,8 +45947,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14900 components: @@ -49320,8 +45956,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14901 components: @@ -49331,8 +45965,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14902 components: @@ -49342,8 +45974,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14903 components: @@ -49352,8 +45982,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14904 components: @@ -49363,8 +45991,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14905 components: @@ -49374,8 +46000,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14906 components: @@ -49384,8 +46008,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14907 components: @@ -49395,8 +46017,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14908 components: @@ -49406,8 +46026,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14909 components: @@ -49417,8 +46035,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14910 components: @@ -49428,8 +46044,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14911 components: @@ -49439,8 +46053,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14912 components: @@ -49449,8 +46061,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14913 components: @@ -49460,8 +46070,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14914 components: @@ -49470,8 +46078,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14915 components: @@ -49480,8 +46086,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14916 components: @@ -49490,8 +46094,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14917 components: @@ -49501,8 +46103,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14954 components: @@ -49512,8 +46112,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14955 components: @@ -49522,8 +46120,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14956 components: @@ -49533,8 +46129,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14957 components: @@ -49544,8 +46138,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14958 components: @@ -49555,8 +46147,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14959 components: @@ -49566,8 +46156,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14960 components: @@ -49577,8 +46165,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14961 components: @@ -49587,8 +46173,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14962 components: @@ -49598,8 +46182,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 15309 components: @@ -49609,8 +46191,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 15310 components: @@ -49619,8 +46199,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 15311 components: @@ -49630,8 +46208,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 15312 components: @@ -49640,8 +46216,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 15313 components: @@ -49651,8 +46225,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 15314 components: @@ -49662,8 +46234,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 15315 components: @@ -49672,8 +46242,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 15316 components: @@ -49683,8 +46251,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - proto: Emitter entities: @@ -52840,8 +49406,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5387 components: - rot: 1.5707963267948966 rad @@ -52894,8 +49458,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8927 components: - pos: -50.5,89.5 @@ -52903,8 +49465,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8931 components: - rot: 1.5707963267948966 rad @@ -52913,8 +49473,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8932 components: - rot: 1.5707963267948966 rad @@ -52945,8 +49503,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11221 components: - rot: -1.5707963267948966 rad @@ -53035,8 +49591,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11680 components: - rot: 1.5707963267948966 rad @@ -53083,8 +49637,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12319 components: - rot: 3.141592653589793 rad @@ -53117,8 +49669,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12373 components: - rot: 1.5707963267948966 rad @@ -53159,8 +49709,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12554 components: - rot: 1.5707963267948966 rad @@ -53244,63 +49792,47 @@ entities: pos: -90.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13720 components: - rot: 3.141592653589793 rad pos: -90.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13721 components: - rot: 3.141592653589793 rad pos: -90.5,38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13722 components: - rot: 3.141592653589793 rad pos: -90.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13725 components: - rot: 3.141592653589793 rad pos: -90.5,42.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13730 components: - rot: 3.141592653589793 rad pos: -90.5,44.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13862 components: - pos: -82.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13863 components: - rot: 3.141592653589793 rad pos: -83.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13983 components: - pos: -66.5,50.5 @@ -53323,8 +49855,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13997 components: - pos: -61.5,48.5 @@ -53386,8 +49916,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14107 components: - rot: 3.141592653589793 rad @@ -53396,8 +49924,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14108 components: - rot: 1.5707963267948966 rad @@ -53406,8 +49932,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14133 components: - pos: -64.5,33.5 @@ -53438,8 +49962,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - proto: GasPipeFourway entities: - uid: 2386 @@ -53461,8 +49983,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8781 components: - pos: -52.5,61.5 @@ -53484,8 +50004,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11084 components: - pos: -57.5,32.5 @@ -53493,8 +50011,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11189 components: - pos: -41.5,44.5 @@ -53509,8 +50025,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11532 components: - pos: -38.5,31.5 @@ -53518,8 +50032,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11533 components: - pos: -36.5,33.5 @@ -53548,8 +50060,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11761 components: - pos: -56.5,4.5 @@ -53606,8 +50116,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12191 components: - pos: -17.5,33.5 @@ -53636,8 +50144,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12349 components: - pos: -9.5,-2.5 @@ -53666,8 +50172,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12970 components: - pos: -17.5,54.5 @@ -53702,16 +50206,12 @@ entities: pos: 0.5,-12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 357 components: - rot: 3.141592653589793 rad pos: 0.5,-13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 358 components: - rot: 3.141592653589793 rad @@ -53724,8 +50224,6 @@ entities: pos: 2.5,-12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 360 components: - rot: 3.141592653589793 rad @@ -53738,8 +50236,6 @@ entities: pos: 2.5,-10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1213 components: - rot: 3.141592653589793 rad @@ -53748,8 +50244,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1228 components: - rot: 3.141592653589793 rad @@ -53790,8 +50284,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1513 components: - rot: 3.141592653589793 rad @@ -53816,8 +50308,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1773 components: - rot: 3.141592653589793 rad @@ -53932,8 +50422,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2414 components: - rot: 3.141592653589793 rad @@ -53942,8 +50430,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2415 components: - rot: 3.141592653589793 rad @@ -54000,8 +50486,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2431 components: - rot: 1.5707963267948966 rad @@ -54152,8 +50636,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2452 components: - rot: 1.5707963267948966 rad @@ -54249,8 +50731,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2470 components: - rot: -1.5707963267948966 rad @@ -54267,8 +50747,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2675 components: - pos: 2.5,27.5 @@ -54453,8 +50931,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3007 components: - pos: 3.5,17.5 @@ -54533,8 +51009,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3179 components: - pos: -17.5,28.5 @@ -54619,8 +51093,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3563 components: - rot: 3.141592653589793 rad @@ -54653,8 +51125,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3631 components: - rot: 1.5707963267948966 rad @@ -54703,8 +51173,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3844 components: - rot: 1.5707963267948966 rad @@ -54888,8 +51356,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4915 components: - rot: 1.5707963267948966 rad @@ -54898,8 +51364,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4916 components: - rot: 1.5707963267948966 rad @@ -54916,8 +51380,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4918 components: - rot: 1.5707963267948966 rad @@ -54926,8 +51388,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4919 components: - rot: 1.5707963267948966 rad @@ -54976,8 +51436,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4975 components: - rot: 1.5707963267948966 rad @@ -55068,8 +51526,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6253 components: - rot: 1.5707963267948966 rad @@ -55113,8 +51569,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8677 components: - pos: -46.5,51.5 @@ -55136,8 +51590,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8680 components: - pos: -46.5,54.5 @@ -55159,8 +51611,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8683 components: - pos: -48.5,50.5 @@ -55175,8 +51625,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8685 components: - pos: -48.5,52.5 @@ -55293,8 +51741,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8711 components: - rot: 3.141592653589793 rad @@ -55303,8 +51749,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8712 components: - rot: 3.141592653589793 rad @@ -55313,8 +51757,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8713 components: - rot: 3.141592653589793 rad @@ -55323,8 +51765,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8714 components: - rot: 3.141592653589793 rad @@ -55333,8 +51773,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8715 components: - rot: 3.141592653589793 rad @@ -55359,8 +51797,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8718 components: - rot: 3.141592653589793 rad @@ -55369,8 +51805,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8719 components: - rot: 3.141592653589793 rad @@ -55448,8 +51882,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8732 components: - rot: -1.5707963267948966 rad @@ -55768,8 +52200,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8804 components: - rot: 1.5707963267948966 rad @@ -55848,8 +52278,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8815 components: - pos: -52.5,66.5 @@ -55857,8 +52285,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8816 components: - pos: -52.5,67.5 @@ -55866,8 +52292,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8818 components: - pos: -50.5,61.5 @@ -55930,8 +52354,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8826 components: - rot: 3.141592653589793 rad @@ -56019,8 +52441,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8837 components: - pos: -58.5,63.5 @@ -56065,8 +52485,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8852 components: - rot: 3.141592653589793 rad @@ -56075,8 +52493,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8853 components: - rot: 3.141592653589793 rad @@ -56085,8 +52501,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8854 components: - rot: 3.141592653589793 rad @@ -56095,8 +52509,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8855 components: - rot: 3.141592653589793 rad @@ -56105,8 +52517,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8856 components: - rot: 3.141592653589793 rad @@ -56115,8 +52525,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8857 components: - rot: 3.141592653589793 rad @@ -56125,8 +52533,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8858 components: - rot: 3.141592653589793 rad @@ -56135,8 +52541,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8859 components: - rot: 3.141592653589793 rad @@ -56145,8 +52549,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8860 components: - rot: 3.141592653589793 rad @@ -56155,8 +52557,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8861 components: - rot: 3.141592653589793 rad @@ -56165,8 +52565,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8862 components: - rot: 3.141592653589793 rad @@ -56175,8 +52573,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8863 components: - rot: 3.141592653589793 rad @@ -56185,8 +52581,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8864 components: - rot: 3.141592653589793 rad @@ -56195,8 +52589,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8865 components: - rot: 3.141592653589793 rad @@ -56205,8 +52597,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8866 components: - rot: 3.141592653589793 rad @@ -56215,8 +52605,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8867 components: - rot: 3.141592653589793 rad @@ -56225,8 +52613,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8868 components: - rot: 3.141592653589793 rad @@ -56235,8 +52621,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8869 components: - rot: 3.141592653589793 rad @@ -56245,8 +52629,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8870 components: - rot: 3.141592653589793 rad @@ -56255,8 +52637,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8871 components: - rot: 3.141592653589793 rad @@ -56265,8 +52645,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8872 components: - rot: 3.141592653589793 rad @@ -56275,8 +52653,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8873 components: - rot: 3.141592653589793 rad @@ -56285,8 +52661,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8874 components: - rot: 3.141592653589793 rad @@ -56295,8 +52669,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8875 components: - rot: 3.141592653589793 rad @@ -56305,8 +52677,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8876 components: - rot: 3.141592653589793 rad @@ -56315,8 +52685,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8877 components: - rot: 3.141592653589793 rad @@ -56349,8 +52717,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8889 components: - rot: -1.5707963267948966 rad @@ -56359,8 +52725,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8890 components: - rot: -1.5707963267948966 rad @@ -56369,8 +52733,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8891 components: - pos: -52.5,83.5 @@ -56386,8 +52748,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8893 components: - rot: -1.5707963267948966 rad @@ -56396,8 +52756,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8894 components: - rot: -1.5707963267948966 rad @@ -56406,8 +52764,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8895 components: - rot: -1.5707963267948966 rad @@ -56432,8 +52788,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8898 components: - rot: -1.5707963267948966 rad @@ -56514,8 +52868,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8908 components: - rot: 1.5707963267948966 rad @@ -56539,8 +52891,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8919 components: - rot: 3.141592653589793 rad @@ -56549,8 +52899,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8920 components: - rot: 3.141592653589793 rad @@ -56567,8 +52915,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8922 components: - rot: 1.5707963267948966 rad @@ -56577,8 +52923,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8923 components: - rot: 1.5707963267948966 rad @@ -56587,8 +52931,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9573 components: - rot: 1.5707963267948966 rad @@ -56628,8 +52970,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10241 components: - rot: 3.141592653589793 rad @@ -56645,8 +52985,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10347 components: - rot: -1.5707963267948966 rad @@ -56655,8 +52993,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10704 components: - rot: 1.5707963267948966 rad @@ -56665,8 +53001,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11087 components: - rot: 1.5707963267948966 rad @@ -56706,8 +53040,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11097 components: - rot: -1.5707963267948966 rad @@ -56716,8 +53048,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11098 components: - rot: -1.5707963267948966 rad @@ -56726,8 +53056,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11099 components: - rot: 3.141592653589793 rad @@ -56736,8 +53064,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11100 components: - rot: 3.141592653589793 rad @@ -56746,8 +53072,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11101 components: - rot: 3.141592653589793 rad @@ -56756,8 +53080,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11102 components: - rot: 3.141592653589793 rad @@ -56766,8 +53088,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11104 components: - rot: 3.141592653589793 rad @@ -56776,8 +53096,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11105 components: - rot: 3.141592653589793 rad @@ -56786,8 +53104,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11106 components: - rot: 3.141592653589793 rad @@ -56796,8 +53112,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11107 components: - rot: 3.141592653589793 rad @@ -56814,8 +53128,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11109 components: - rot: 3.141592653589793 rad @@ -56824,8 +53136,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11110 components: - rot: 3.141592653589793 rad @@ -56834,8 +53144,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11111 components: - rot: 3.141592653589793 rad @@ -56844,8 +53152,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11112 components: - rot: 3.141592653589793 rad @@ -56854,8 +53160,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11113 components: - rot: 3.141592653589793 rad @@ -56864,8 +53168,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11115 components: - rot: 3.141592653589793 rad @@ -56874,8 +53176,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11117 components: - rot: 3.141592653589793 rad @@ -56884,8 +53184,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11118 components: - rot: 3.141592653589793 rad @@ -56894,8 +53192,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11127 components: - pos: -56.5,45.5 @@ -56903,8 +53199,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11128 components: - pos: -57.5,45.5 @@ -56912,8 +53206,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11129 components: - pos: -57.5,46.5 @@ -56921,8 +53213,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11130 components: - rot: -1.5707963267948966 rad @@ -56931,8 +53221,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11131 components: - rot: -1.5707963267948966 rad @@ -56941,8 +53229,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11132 components: - rot: -1.5707963267948966 rad @@ -56959,8 +53245,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11135 components: - rot: -1.5707963267948966 rad @@ -56969,8 +53253,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11136 components: - rot: -1.5707963267948966 rad @@ -56979,8 +53261,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11138 components: - rot: -1.5707963267948966 rad @@ -56989,8 +53269,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11139 components: - rot: -1.5707963267948966 rad @@ -56999,8 +53277,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11140 components: - rot: -1.5707963267948966 rad @@ -57080,8 +53356,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11154 components: - rot: 3.141592653589793 rad @@ -57312,8 +53586,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11206 components: - rot: 3.141592653589793 rad @@ -57447,8 +53719,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11233 components: - rot: -1.5707963267948966 rad @@ -57537,8 +53807,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11250 components: - rot: 3.141592653589793 rad @@ -57595,8 +53863,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11257 components: - rot: 1.5707963267948966 rad @@ -57636,8 +53902,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11263 components: - rot: -1.5707963267948966 rad @@ -57646,8 +53910,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11264 components: - rot: -1.5707963267948966 rad @@ -57656,8 +53918,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11265 components: - rot: -1.5707963267948966 rad @@ -57728,8 +53988,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11285 components: - rot: 3.141592653589793 rad @@ -57818,8 +54076,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11300 components: - rot: 3.141592653589793 rad @@ -57916,8 +54172,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11520 components: - rot: -1.5707963267948966 rad @@ -57974,8 +54228,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11527 components: - rot: -1.5707963267948966 rad @@ -57992,8 +54244,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11529 components: - rot: -1.5707963267948966 rad @@ -58010,8 +54260,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11531 components: - rot: -1.5707963267948966 rad @@ -58090,8 +54338,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11546 components: - rot: -1.5707963267948966 rad @@ -58116,8 +54362,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11549 components: - rot: -1.5707963267948966 rad @@ -58126,8 +54370,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11550 components: - rot: 3.141592653589793 rad @@ -58160,8 +54402,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11554 components: - rot: 3.141592653589793 rad @@ -58170,8 +54410,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11561 components: - rot: 3.141592653589793 rad @@ -58358,8 +54596,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11588 components: - rot: -1.5707963267948966 rad @@ -58408,8 +54644,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11611 components: - rot: 3.141592653589793 rad @@ -58434,8 +54668,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11615 components: - rot: 3.141592653589793 rad @@ -58468,8 +54700,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11620 components: - rot: 3.141592653589793 rad @@ -58502,8 +54732,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11624 components: - rot: 3.141592653589793 rad @@ -58512,8 +54740,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11625 components: - rot: 3.141592653589793 rad @@ -58522,8 +54748,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11626 components: - rot: 3.141592653589793 rad @@ -58532,8 +54756,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11627 components: - rot: 3.141592653589793 rad @@ -58542,8 +54764,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11628 components: - rot: 3.141592653589793 rad @@ -58600,8 +54820,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11635 components: - rot: 1.5707963267948966 rad @@ -58634,8 +54852,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11639 components: - rot: 1.5707963267948966 rad @@ -58660,8 +54876,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11651 components: - rot: 1.5707963267948966 rad @@ -58670,8 +54884,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11652 components: - rot: 1.5707963267948966 rad @@ -58704,8 +54916,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11656 components: - rot: 1.5707963267948966 rad @@ -58746,8 +54956,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11661 components: - rot: 1.5707963267948966 rad @@ -58756,8 +54964,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11663 components: - rot: 1.5707963267948966 rad @@ -58766,8 +54972,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11664 components: - rot: 1.5707963267948966 rad @@ -58808,8 +55012,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11669 components: - rot: 1.5707963267948966 rad @@ -58825,8 +55027,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11672 components: - pos: -34.5,25.5 @@ -58834,8 +55034,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11673 components: - pos: -34.5,26.5 @@ -58858,8 +55056,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11684 components: - rot: -1.5707963267948966 rad @@ -58876,8 +55072,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11686 components: - rot: -1.5707963267948966 rad @@ -58886,8 +55080,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11687 components: - rot: 3.141592653589793 rad @@ -58896,8 +55088,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11688 components: - rot: 3.141592653589793 rad @@ -58914,8 +55104,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11691 components: - rot: 3.141592653589793 rad @@ -58924,8 +55112,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11693 components: - rot: 3.141592653589793 rad @@ -58966,8 +55152,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11708 components: - rot: 3.141592653589793 rad @@ -59005,8 +55189,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11713 components: - pos: -56.5,20.5 @@ -59021,8 +55203,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11715 components: - pos: -58.5,18.5 @@ -59051,8 +55231,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11719 components: - pos: -58.5,22.5 @@ -59060,8 +55238,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11720 components: - pos: -58.5,23.5 @@ -59069,8 +55245,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11721 components: - pos: -56.5,17.5 @@ -59099,8 +55273,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11725 components: - rot: -1.5707963267948966 rad @@ -59117,8 +55289,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11727 components: - rot: -1.5707963267948966 rad @@ -59199,8 +55369,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11737 components: - rot: 3.141592653589793 rad @@ -59313,8 +55481,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11767 components: - rot: 1.5707963267948966 rad @@ -59355,8 +55521,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11772 components: - rot: 1.5707963267948966 rad @@ -59365,8 +55529,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11773 components: - pos: -56.5,3.5 @@ -59381,8 +55543,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11775 components: - pos: -56.5,1.5 @@ -59530,8 +55690,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11797 components: - rot: 1.5707963267948966 rad @@ -59540,8 +55698,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11798 components: - rot: 1.5707963267948966 rad @@ -59550,8 +55706,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11799 components: - rot: 1.5707963267948966 rad @@ -59560,8 +55714,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11800 components: - rot: 1.5707963267948966 rad @@ -59634,8 +55786,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11809 components: - rot: 1.5707963267948966 rad @@ -59644,8 +55794,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11810 components: - rot: 1.5707963267948966 rad @@ -59731,8 +55879,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11833 components: - rot: -1.5707963267948966 rad @@ -59749,8 +55895,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11835 components: - rot: -1.5707963267948966 rad @@ -59767,8 +55911,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11837 components: - rot: -1.5707963267948966 rad @@ -59777,8 +55919,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11838 components: - rot: -1.5707963267948966 rad @@ -59795,8 +55935,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11844 components: - rot: -1.5707963267948966 rad @@ -59805,8 +55943,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11845 components: - rot: 3.141592653589793 rad @@ -59815,8 +55951,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11846 components: - rot: 3.141592653589793 rad @@ -59825,8 +55959,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11847 components: - rot: 3.141592653589793 rad @@ -59835,8 +55967,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11848 components: - rot: 3.141592653589793 rad @@ -59853,8 +55983,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11891 components: - rot: -1.5707963267948966 rad @@ -59863,8 +55991,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11892 components: - rot: -1.5707963267948966 rad @@ -59897,8 +56023,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11924 components: - rot: 1.5707963267948966 rad @@ -59915,8 +56039,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11928 components: - rot: 1.5707963267948966 rad @@ -59925,8 +56047,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11929 components: - rot: 1.5707963267948966 rad @@ -59991,8 +56111,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11938 components: - rot: 1.5707963267948966 rad @@ -60009,8 +56127,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11942 components: - rot: 3.141592653589793 rad @@ -60027,8 +56143,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11944 components: - rot: 3.141592653589793 rad @@ -60037,8 +56151,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11945 components: - rot: 3.141592653589793 rad @@ -60063,8 +56175,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11950 components: - pos: -41.5,5.5 @@ -60160,8 +56270,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11967 components: - rot: 1.5707963267948966 rad @@ -60210,8 +56318,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11981 components: - rot: 1.5707963267948966 rad @@ -60227,8 +56333,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11983 components: - pos: -43.5,-1.5 @@ -60243,8 +56347,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11985 components: - pos: -44.5,-1.5 @@ -60281,8 +56383,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11990 components: - rot: -1.5707963267948966 rad @@ -60299,8 +56399,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11992 components: - rot: -1.5707963267948966 rad @@ -60324,8 +56422,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12005 components: - rot: -1.5707963267948966 rad @@ -60342,8 +56438,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12007 components: - rot: -1.5707963267948966 rad @@ -60368,8 +56462,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12011 components: - rot: -1.5707963267948966 rad @@ -60386,8 +56478,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12013 components: - rot: -1.5707963267948966 rad @@ -60428,8 +56518,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12041 components: - rot: 1.5707963267948966 rad @@ -60460,8 +56548,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12045 components: - pos: -38.5,10.5 @@ -60469,8 +56555,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12046 components: - pos: -38.5,9.5 @@ -60478,8 +56562,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12047 components: - pos: -38.5,8.5 @@ -60525,8 +56607,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12055 components: - rot: 3.141592653589793 rad @@ -60535,8 +56615,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12056 components: - rot: 3.141592653589793 rad @@ -60585,8 +56663,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12062 components: - rot: 1.5707963267948966 rad @@ -60611,8 +56687,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12067 components: - rot: 1.5707963267948966 rad @@ -60621,8 +56695,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12068 components: - rot: 1.5707963267948966 rad @@ -60631,8 +56703,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12069 components: - rot: 1.5707963267948966 rad @@ -60641,8 +56711,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12070 components: - pos: -32.5,5.5 @@ -60768,8 +56836,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12090 components: - rot: 1.5707963267948966 rad @@ -60818,8 +56884,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12098 components: - rot: 3.141592653589793 rad @@ -60906,8 +56970,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12113 components: - pos: -25.5,15.5 @@ -61016,8 +57078,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12134 components: - rot: -1.5707963267948966 rad @@ -61026,8 +57086,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12135 components: - rot: -1.5707963267948966 rad @@ -61044,8 +57102,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12137 components: - rot: -1.5707963267948966 rad @@ -61070,8 +57126,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12142 components: - rot: -1.5707963267948966 rad @@ -61088,8 +57142,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12144 components: - rot: -1.5707963267948966 rad @@ -61154,8 +57206,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12152 components: - rot: -1.5707963267948966 rad @@ -61164,8 +57214,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12153 components: - rot: -1.5707963267948966 rad @@ -61182,8 +57230,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12155 components: - rot: -1.5707963267948966 rad @@ -61272,8 +57318,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12166 components: - rot: 3.141592653589793 rad @@ -61282,8 +57326,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12167 components: - rot: 3.141592653589793 rad @@ -61356,8 +57398,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12184 components: - rot: 1.5707963267948966 rad @@ -61413,8 +57453,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12196 components: - pos: -17.5,31.5 @@ -61429,8 +57467,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12198 components: - pos: -17.5,29.5 @@ -61445,8 +57481,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12200 components: - pos: -15.5,29.5 @@ -61462,8 +57496,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12204 components: - rot: -1.5707963267948966 rad @@ -61472,8 +57504,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12205 components: - rot: -1.5707963267948966 rad @@ -61554,8 +57584,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12227 components: - rot: 3.141592653589793 rad @@ -61588,8 +57616,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12231 components: - rot: 3.141592653589793 rad @@ -61670,8 +57696,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12243 components: - rot: -1.5707963267948966 rad @@ -61680,8 +57704,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12244 components: - rot: -1.5707963267948966 rad @@ -61690,8 +57712,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12245 components: - rot: -1.5707963267948966 rad @@ -61764,8 +57784,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12264 components: - pos: -15.5,47.5 @@ -61788,8 +57806,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12267 components: - rot: -1.5707963267948966 rad @@ -61838,8 +57854,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12275 components: - rot: -1.5707963267948966 rad @@ -61888,8 +57902,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12281 components: - rot: -1.5707963267948966 rad @@ -61898,8 +57910,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12282 components: - rot: -1.5707963267948966 rad @@ -61956,8 +57966,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12289 components: - rot: 3.141592653589793 rad @@ -62028,8 +58036,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12304 components: - rot: 3.141592653589793 rad @@ -62038,8 +58044,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12305 components: - rot: 3.141592653589793 rad @@ -62048,8 +58052,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12306 components: - rot: 3.141592653589793 rad @@ -62066,8 +58068,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12308 components: - rot: 3.141592653589793 rad @@ -62076,8 +58076,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12309 components: - rot: 3.141592653589793 rad @@ -62086,8 +58084,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12312 components: - pos: -11.5,3.5 @@ -62095,8 +58091,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12313 components: - pos: -11.5,2.5 @@ -62128,8 +58122,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12317 components: - rot: -1.5707963267948966 rad @@ -62194,8 +58186,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12330 components: - rot: 3.141592653589793 rad @@ -62204,8 +58194,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12335 components: - rot: -1.5707963267948966 rad @@ -62254,8 +58242,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12342 components: - rot: -1.5707963267948966 rad @@ -62336,8 +58322,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12357 components: - rot: 1.5707963267948966 rad @@ -62424,8 +58408,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12375 components: - pos: -16.5,-7.5 @@ -62440,8 +58422,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12377 components: - pos: -17.5,-10.5 @@ -62449,8 +58429,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12378 components: - pos: -2.5,-1.5 @@ -62466,8 +58444,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12382 components: - rot: 3.141592653589793 rad @@ -62524,8 +58500,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12391 components: - pos: -1.5,-3.5 @@ -62540,8 +58514,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12393 components: - pos: -1.5,-5.5 @@ -62549,8 +58521,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12394 components: - pos: -1.5,-6.5 @@ -62572,8 +58542,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12397 components: - pos: -1.5,-9.5 @@ -62581,8 +58549,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12403 components: - rot: -1.5707963267948966 rad @@ -62591,8 +58557,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12404 components: - rot: -1.5707963267948966 rad @@ -62609,8 +58573,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12406 components: - rot: -1.5707963267948966 rad @@ -62619,8 +58581,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12407 components: - rot: -1.5707963267948966 rad @@ -62637,8 +58597,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12409 components: - rot: -1.5707963267948966 rad @@ -62655,8 +58613,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12411 components: - rot: -1.5707963267948966 rad @@ -62687,8 +58643,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12426 components: - pos: -11.5,11.5 @@ -62696,8 +58650,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12428 components: - pos: -11.5,13.5 @@ -62719,8 +58671,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12433 components: - pos: -13.5,12.5 @@ -62728,8 +58678,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12434 components: - pos: -13.5,13.5 @@ -62737,8 +58685,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12435 components: - pos: -13.5,14.5 @@ -62774,8 +58720,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12440 components: - pos: -11.5,19.5 @@ -62804,8 +58748,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12444 components: - pos: -11.5,23.5 @@ -62813,8 +58755,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12445 components: - pos: -11.5,24.5 @@ -62822,8 +58762,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12446 components: - pos: -11.5,25.5 @@ -62887,8 +58825,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12455 components: - pos: -13.5,27.5 @@ -62896,8 +58832,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12456 components: - pos: -11.5,28.5 @@ -62933,8 +58867,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12461 components: - pos: -13.5,29.5 @@ -63085,8 +59017,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12490 components: - rot: -1.5707963267948966 rad @@ -63103,8 +59033,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12492 components: - rot: -1.5707963267948966 rad @@ -63129,8 +59057,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12495 components: - rot: -1.5707963267948966 rad @@ -63139,8 +59065,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12496 components: - rot: -1.5707963267948966 rad @@ -63149,8 +59073,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12497 components: - rot: -1.5707963267948966 rad @@ -63167,8 +59089,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12499 components: - rot: -1.5707963267948966 rad @@ -63185,8 +59105,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12511 components: - rot: 1.5707963267948966 rad @@ -63195,8 +59113,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12519 components: - rot: -1.5707963267948966 rad @@ -63213,8 +59129,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12521 components: - rot: -1.5707963267948966 rad @@ -63223,8 +59137,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12522 components: - rot: -1.5707963267948966 rad @@ -63233,8 +59145,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12523 components: - rot: -1.5707963267948966 rad @@ -63243,8 +59153,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12524 components: - rot: -1.5707963267948966 rad @@ -63253,8 +59161,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12525 components: - rot: -1.5707963267948966 rad @@ -63263,8 +59169,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12526 components: - rot: -1.5707963267948966 rad @@ -63273,8 +59177,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12527 components: - rot: -1.5707963267948966 rad @@ -63283,8 +59185,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12528 components: - rot: -1.5707963267948966 rad @@ -63293,8 +59193,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12529 components: - rot: -1.5707963267948966 rad @@ -63303,8 +59201,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12531 components: - rot: -1.5707963267948966 rad @@ -63313,8 +59209,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12532 components: - rot: -1.5707963267948966 rad @@ -63323,8 +59217,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12533 components: - rot: -1.5707963267948966 rad @@ -63333,8 +59225,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12534 components: - rot: -1.5707963267948966 rad @@ -63375,8 +59265,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12540 components: - rot: -1.5707963267948966 rad @@ -63385,8 +59273,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12541 components: - rot: -1.5707963267948966 rad @@ -63395,8 +59281,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12542 components: - rot: -1.5707963267948966 rad @@ -63405,8 +59289,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12543 components: - rot: -1.5707963267948966 rad @@ -63415,8 +59297,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12544 components: - rot: -1.5707963267948966 rad @@ -63425,8 +59305,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12545 components: - rot: -1.5707963267948966 rad @@ -63435,8 +59313,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12546 components: - rot: -1.5707963267948966 rad @@ -63445,8 +59321,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12547 components: - rot: -1.5707963267948966 rad @@ -63455,8 +59329,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12548 components: - rot: -1.5707963267948966 rad @@ -63465,8 +59337,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12549 components: - rot: -1.5707963267948966 rad @@ -63491,8 +59361,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12552 components: - rot: -1.5707963267948966 rad @@ -63501,8 +59369,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12553 components: - rot: -1.5707963267948966 rad @@ -63511,8 +59377,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12555 components: - rot: 1.5707963267948966 rad @@ -63567,8 +59431,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12562 components: - pos: 10.5,3.5 @@ -63676,8 +59538,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12580 components: - rot: 1.5707963267948966 rad @@ -63686,8 +59546,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12581 components: - rot: 1.5707963267948966 rad @@ -63792,8 +59650,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12613 components: - rot: -1.5707963267948966 rad @@ -63818,8 +59674,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12618 components: - rot: 1.5707963267948966 rad @@ -63828,8 +59682,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12619 components: - rot: 1.5707963267948966 rad @@ -63838,8 +59690,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12620 components: - rot: 1.5707963267948966 rad @@ -63848,8 +59698,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12621 components: - rot: 1.5707963267948966 rad @@ -63889,8 +59737,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12626 components: - pos: 17.5,7.5 @@ -63898,8 +59744,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12627 components: - pos: 17.5,8.5 @@ -63914,8 +59758,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12629 components: - pos: 19.5,7.5 @@ -63923,8 +59765,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12630 components: - pos: 19.5,8.5 @@ -63955,8 +59795,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12634 components: - rot: -1.5707963267948966 rad @@ -63965,8 +59803,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12637 components: - rot: 1.5707963267948966 rad @@ -64015,8 +59851,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12643 components: - rot: 1.5707963267948966 rad @@ -64025,8 +59859,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12644 components: - rot: 1.5707963267948966 rad @@ -64035,8 +59867,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12646 components: - rot: 1.5707963267948966 rad @@ -64066,8 +59896,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12660 components: - rot: 3.141592653589793 rad @@ -64091,8 +59919,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12671 components: - pos: 26.5,9.5 @@ -64100,8 +59926,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12672 components: - pos: 26.5,11.5 @@ -64123,8 +59947,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12675 components: - pos: 26.5,15.5 @@ -64188,8 +60010,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12684 components: - pos: 27.5,23.5 @@ -64260,8 +60080,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12694 components: - pos: 27.5,8.5 @@ -64269,8 +60087,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12695 components: - pos: 27.5,7.5 @@ -64278,8 +60094,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12696 components: - rot: -1.5707963267948966 rad @@ -64288,8 +60102,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12697 components: - rot: -1.5707963267948966 rad @@ -64306,8 +60118,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12699 components: - rot: -1.5707963267948966 rad @@ -64332,8 +60142,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12702 components: - rot: -1.5707963267948966 rad @@ -64358,8 +60166,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12705 components: - rot: -1.5707963267948966 rad @@ -64384,8 +60190,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12718 components: - rot: -1.5707963267948966 rad @@ -64672,8 +60476,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12964 components: - pos: -17.5,53.5 @@ -64709,8 +60511,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12969 components: - pos: -15.5,53.5 @@ -64843,8 +60643,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12992 components: - rot: -1.5707963267948966 rad @@ -64909,8 +60707,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13000 components: - rot: 1.5707963267948966 rad @@ -65054,8 +60850,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13030 components: - rot: 3.141592653589793 rad @@ -65070,447 +60864,335 @@ entities: pos: -89.5,44.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13640 components: - rot: 1.5707963267948966 rad pos: -88.5,44.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13641 components: - rot: 1.5707963267948966 rad pos: -87.5,44.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13642 components: - rot: 1.5707963267948966 rad pos: -86.5,44.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13643 components: - rot: 1.5707963267948966 rad pos: -85.5,44.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13644 components: - rot: 1.5707963267948966 rad pos: -87.5,45.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13645 components: - rot: 1.5707963267948966 rad pos: -86.5,45.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13646 components: - rot: 1.5707963267948966 rad pos: -85.5,45.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13647 components: - rot: 1.5707963267948966 rad pos: -87.5,43.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13648 components: - rot: 1.5707963267948966 rad pos: -86.5,43.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13649 components: - rot: 1.5707963267948966 rad pos: -85.5,43.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13650 components: - rot: 1.5707963267948966 rad pos: -89.5,42.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13651 components: - rot: 1.5707963267948966 rad pos: -88.5,42.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13652 components: - rot: 1.5707963267948966 rad pos: -87.5,42.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13653 components: - rot: 1.5707963267948966 rad pos: -86.5,42.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13654 components: - rot: 1.5707963267948966 rad pos: -85.5,42.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13656 components: - rot: 1.5707963267948966 rad pos: -87.5,41.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13668 components: - rot: 1.5707963267948966 rad pos: -86.5,41.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13670 components: - rot: 1.5707963267948966 rad pos: -85.5,41.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13677 components: - rot: 1.5707963267948966 rad pos: -89.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13678 components: - rot: 1.5707963267948966 rad pos: -88.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13679 components: - rot: 1.5707963267948966 rad pos: -87.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13680 components: - rot: 1.5707963267948966 rad pos: -86.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13681 components: - rot: 1.5707963267948966 rad pos: -85.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13685 components: - rot: 1.5707963267948966 rad pos: -87.5,39.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13686 components: - rot: 1.5707963267948966 rad pos: -86.5,39.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13687 components: - rot: 1.5707963267948966 rad pos: -85.5,39.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13688 components: - rot: 1.5707963267948966 rad pos: -89.5,38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13689 components: - rot: 1.5707963267948966 rad pos: -88.5,38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13690 components: - rot: 1.5707963267948966 rad pos: -87.5,38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13691 components: - rot: 1.5707963267948966 rad pos: -86.5,38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13692 components: - rot: 1.5707963267948966 rad pos: -85.5,38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13693 components: - rot: 1.5707963267948966 rad pos: -87.5,37.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13694 components: - rot: 1.5707963267948966 rad pos: -86.5,37.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13695 components: - rot: 1.5707963267948966 rad pos: -85.5,37.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13696 components: - rot: 1.5707963267948966 rad pos: -89.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13697 components: - rot: 1.5707963267948966 rad pos: -88.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13698 components: - rot: 1.5707963267948966 rad pos: -87.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13702 components: - rot: 1.5707963267948966 rad pos: -86.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13703 components: - rot: 1.5707963267948966 rad pos: -85.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13711 components: - rot: 1.5707963267948966 rad pos: -87.5,35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13712 components: - rot: 1.5707963267948966 rad pos: -86.5,35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13713 components: - rot: 1.5707963267948966 rad pos: -85.5,35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13714 components: - rot: 1.5707963267948966 rad pos: -89.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13715 components: - rot: 1.5707963267948966 rad pos: -88.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13716 components: - rot: 1.5707963267948966 rad pos: -87.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13717 components: - rot: 1.5707963267948966 rad pos: -86.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13718 components: - rot: 1.5707963267948966 rad pos: -85.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13779 components: - pos: -84.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13857 components: - rot: 3.141592653589793 rad pos: -84.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13864 components: - rot: 3.141592653589793 rad pos: -83.5,48.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13865 components: - rot: 3.141592653589793 rad pos: -83.5,49.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13866 components: - rot: 3.141592653589793 rad pos: -81.5,49.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13867 components: - rot: 3.141592653589793 rad pos: -81.5,48.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13868 components: - rot: 3.141592653589793 rad pos: -81.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13915 components: - rot: -1.5707963267948966 rad pos: -85.5,33.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 13936 components: - rot: -1.5707963267948966 rad @@ -65519,8 +61201,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13937 components: - rot: -1.5707963267948966 rad @@ -65529,8 +61209,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13938 components: - rot: -1.5707963267948966 rad @@ -65563,8 +61241,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13943 components: - rot: 3.141592653589793 rad @@ -65589,8 +61265,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13946 components: - rot: 1.5707963267948966 rad @@ -65599,8 +61273,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13947 components: - rot: 1.5707963267948966 rad @@ -65609,8 +61281,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13948 components: - rot: 1.5707963267948966 rad @@ -65619,8 +61289,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13949 components: - rot: 1.5707963267948966 rad @@ -65637,8 +61305,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13953 components: - pos: -61.5,44.5 @@ -65662,8 +61328,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13956 components: - rot: 3.141592653589793 rad @@ -65712,8 +61376,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13966 components: - rot: 1.5707963267948966 rad @@ -65722,8 +61384,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13967 components: - rot: 1.5707963267948966 rad @@ -65748,8 +61408,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13970 components: - rot: 1.5707963267948966 rad @@ -65765,8 +61423,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13973 components: - rot: 1.5707963267948966 rad @@ -65775,8 +61431,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13974 components: - rot: 1.5707963267948966 rad @@ -65793,8 +61447,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13976 components: - pos: -66.5,49.5 @@ -65810,8 +61462,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13978 components: - pos: -67.5,51.5 @@ -65819,8 +61469,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13979 components: - rot: -1.5707963267948966 rad @@ -65829,8 +61477,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13980 components: - rot: -1.5707963267948966 rad @@ -65839,8 +61485,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13986 components: - pos: -61.5,46.5 @@ -65848,8 +61492,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13987 components: - pos: -61.5,47.5 @@ -65865,8 +61507,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13989 components: - rot: -1.5707963267948966 rad @@ -65883,8 +61523,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13991 components: - rot: -1.5707963267948966 rad @@ -65901,8 +61539,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13993 components: - rot: -1.5707963267948966 rad @@ -65911,8 +61547,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13994 components: - rot: -1.5707963267948966 rad @@ -65921,8 +61555,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13995 components: - rot: -1.5707963267948966 rad @@ -65931,8 +61563,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14013 components: - pos: -73.5,34.5 @@ -65947,8 +61577,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14015 components: - pos: -73.5,32.5 @@ -65956,8 +61584,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14016 components: - pos: -73.5,31.5 @@ -65965,8 +61591,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14017 components: - pos: -74.5,33.5 @@ -66043,8 +61667,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14034 components: - rot: 3.141592653589793 rad @@ -66053,8 +61675,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14035 components: - rot: 1.5707963267948966 rad @@ -66078,8 +61698,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14057 components: - pos: -74.5,28.5 @@ -66087,8 +61705,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14058 components: - pos: -74.5,27.5 @@ -66202,8 +61818,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14074 components: - rot: -1.5707963267948966 rad @@ -66212,8 +61826,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14075 components: - rot: -1.5707963267948966 rad @@ -66310,8 +61922,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14089 components: - rot: -1.5707963267948966 rad @@ -66320,8 +61930,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14090 components: - rot: -1.5707963267948966 rad @@ -66330,8 +61938,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14091 components: - rot: -1.5707963267948966 rad @@ -66340,8 +61946,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14092 components: - rot: -1.5707963267948966 rad @@ -66350,8 +61954,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14093 components: - rot: -1.5707963267948966 rad @@ -66360,8 +61962,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14094 components: - rot: -1.5707963267948966 rad @@ -66370,8 +61970,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14095 components: - rot: -1.5707963267948966 rad @@ -66380,8 +61978,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14096 components: - rot: -1.5707963267948966 rad @@ -66390,8 +61986,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14097 components: - rot: 3.141592653589793 rad @@ -66400,8 +61994,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14098 components: - rot: -1.5707963267948966 rad @@ -66410,8 +62002,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14099 components: - rot: -1.5707963267948966 rad @@ -66420,8 +62010,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14100 components: - rot: -1.5707963267948966 rad @@ -66430,8 +62018,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14101 components: - rot: -1.5707963267948966 rad @@ -66440,8 +62026,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14102 components: - rot: -1.5707963267948966 rad @@ -66450,8 +62034,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14103 components: - rot: -1.5707963267948966 rad @@ -66460,8 +62042,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14104 components: - rot: -1.5707963267948966 rad @@ -66470,8 +62050,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14105 components: - rot: 3.141592653589793 rad @@ -66480,8 +62058,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14117 components: - rot: -1.5707963267948966 rad @@ -66554,8 +62130,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14126 components: - rot: 3.141592653589793 rad @@ -66564,8 +62138,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14127 components: - rot: 3.141592653589793 rad @@ -66590,8 +62162,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14130 components: - rot: 3.141592653589793 rad @@ -66600,8 +62170,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14131 components: - rot: 3.141592653589793 rad @@ -66634,8 +62202,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14142 components: - rot: 1.5707963267948966 rad @@ -66692,8 +62258,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14152 components: - rot: 1.5707963267948966 rad @@ -66758,15 +62322,11 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15864 components: - pos: 7.5,49.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - proto: GasPipeTJunction entities: - uid: 1778 @@ -66793,8 +62353,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2394 components: - rot: 3.141592653589793 rad @@ -66968,8 +62526,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4782 components: - pos: -64.5,-9.5 @@ -66985,8 +62541,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4805 components: - pos: -65.5,-10.5 @@ -67009,8 +62563,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8698 components: - pos: -50.5,53.5 @@ -67165,8 +62717,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8817 components: - rot: 1.5707963267948966 rad @@ -67183,8 +62733,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8911 components: - rot: 3.141592653589793 rad @@ -67231,8 +62779,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8917 components: - rot: 1.5707963267948966 rad @@ -67249,8 +62795,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10050 components: - rot: 1.5707963267948966 rad @@ -67313,8 +62857,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10954 components: - rot: -1.5707963267948966 rad @@ -67323,8 +62865,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11086 components: - rot: -1.5707963267948966 rad @@ -67333,8 +62873,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11093 components: - rot: -1.5707963267948966 rad @@ -67343,8 +62881,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11094 components: - rot: -1.5707963267948966 rad @@ -67353,8 +62889,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11095 components: - rot: -1.5707963267948966 rad @@ -67363,8 +62897,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11096 components: - rot: -1.5707963267948966 rad @@ -67373,8 +62905,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11103 components: - rot: 3.141592653589793 rad @@ -67390,8 +62920,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11134 components: - pos: -52.5,47.5 @@ -67407,8 +62935,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11147 components: - rot: -1.5707963267948966 rad @@ -67441,8 +62967,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11169 components: - rot: 1.5707963267948966 rad @@ -67512,8 +63036,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11267 components: - rot: 3.141592653589793 rad @@ -67546,8 +63068,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11274 components: - rot: -1.5707963267948966 rad @@ -67556,8 +63076,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11280 components: - rot: 3.141592653589793 rad @@ -67566,8 +63084,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11293 components: - pos: -50.5,28.5 @@ -67645,8 +63161,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11602 components: - rot: 1.5707963267948966 rad @@ -67663,8 +63177,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11604 components: - rot: -1.5707963267948966 rad @@ -67705,8 +63217,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11614 components: - rot: 1.5707963267948966 rad @@ -67723,8 +63233,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11662 components: - rot: -1.5707963267948966 rad @@ -67741,8 +63249,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11681 components: - rot: 1.5707963267948966 rad @@ -67751,8 +63257,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11682 components: - rot: 1.5707963267948966 rad @@ -67761,8 +63265,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11689 components: - rot: 1.5707963267948966 rad @@ -67779,8 +63281,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11700 components: - rot: 1.5707963267948966 rad @@ -67789,8 +63289,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11701 components: - rot: -1.5707963267948966 rad @@ -67799,8 +63297,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11702 components: - rot: 1.5707963267948966 rad @@ -67809,8 +63305,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11703 components: - rot: -1.5707963267948966 rad @@ -67906,8 +63400,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11818 components: - pos: -57.5,-9.5 @@ -67977,8 +63469,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12003 components: - pos: -36.5,-3.5 @@ -68000,8 +63490,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12093 components: - rot: 3.141592653589793 rad @@ -68050,8 +63538,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12168 components: - pos: -24.5,31.5 @@ -68066,8 +63552,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12170 components: - rot: 3.141592653589793 rad @@ -68083,8 +63567,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12201 components: - pos: -13.5,31.5 @@ -68092,8 +63574,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12202 components: - pos: -11.5,33.5 @@ -68101,8 +63581,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12208 components: - pos: -16.5,33.5 @@ -68134,8 +63612,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12223 components: - rot: -1.5707963267948966 rad @@ -68199,8 +63675,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12294 components: - rot: 3.141592653589793 rad @@ -68216,8 +63690,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12310 components: - rot: 1.5707963267948966 rad @@ -68358,8 +63830,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12475 components: - pos: -8.5,31.5 @@ -68381,8 +63851,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12514 components: - rot: 3.141592653589793 rad @@ -68391,8 +63859,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12515 components: - pos: 4.5,6.5 @@ -68400,8 +63866,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12516 components: - rot: 3.141592653589793 rad @@ -68410,8 +63874,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12517 components: - rot: -1.5707963267948966 rad @@ -68420,8 +63882,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12518 components: - pos: 10.5,6.5 @@ -68429,8 +63889,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12530 components: - rot: -1.5707963267948966 rad @@ -68495,8 +63953,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12616 components: - rot: 3.141592653589793 rad @@ -68520,8 +63976,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12645 components: - pos: 25.5,5.5 @@ -68700,8 +64154,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13909 components: - pos: -76.5,34.5 @@ -68709,8 +64161,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13941 components: - pos: -74.5,34.5 @@ -68734,8 +64184,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13963 components: - rot: 1.5707963267948966 rad @@ -68837,8 +64285,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14087 components: - pos: -70.5,22.5 @@ -68846,8 +64292,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14137 components: - rot: 1.5707963267948966 rad @@ -68856,8 +64300,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14138 components: - rot: 1.5707963267948966 rad @@ -69016,8 +64458,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - proto: GasVentPump entities: - uid: 1331 @@ -69025,8 +64465,6 @@ entities: - pos: 0.5,9.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 2102 @@ -69034,8 +64472,6 @@ entities: - pos: -4.5,34.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 2666 @@ -69044,8 +64480,6 @@ entities: pos: 3.5,31.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 2670 @@ -69053,8 +64487,6 @@ entities: - pos: 3.5,37.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 2671 @@ -69063,8 +64495,6 @@ entities: pos: 7.5,33.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 2672 @@ -69073,8 +64503,6 @@ entities: pos: 16.5,29.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 2673 @@ -69083,8 +64511,6 @@ entities: pos: 19.5,32.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 2674 @@ -69092,8 +64518,6 @@ entities: - pos: 8.5,30.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 3019 @@ -69102,8 +64526,6 @@ entities: pos: 7.5,25.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 3020 @@ -69112,8 +64534,6 @@ entities: pos: 1.5,16.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 3021 @@ -69122,8 +64542,6 @@ entities: pos: 3.5,22.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 3573 @@ -69132,8 +64550,6 @@ entities: pos: -39.5,-11.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 4749 @@ -69142,8 +64558,6 @@ entities: pos: -58.5,-11.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 4800 @@ -69152,8 +64566,6 @@ entities: pos: -65.5,-11.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 4802 @@ -69162,8 +64574,6 @@ entities: pos: -74.5,-10.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 5688 @@ -69172,8 +64582,6 @@ entities: pos: -17.5,23.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 5692 @@ -69182,8 +64590,6 @@ entities: pos: -16.5,27.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 8686 @@ -69192,8 +64598,6 @@ entities: pos: -47.5,54.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 8697 @@ -69201,8 +64605,6 @@ entities: - pos: -47.5,59.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 8761 @@ -69211,8 +64613,6 @@ entities: pos: -51.5,50.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 8762 @@ -69221,8 +64621,6 @@ entities: pos: -54.5,50.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 8763 @@ -69231,8 +64629,6 @@ entities: pos: -57.5,50.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 8764 @@ -69241,8 +64637,6 @@ entities: pos: -61.5,52.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 8765 @@ -69251,8 +64645,6 @@ entities: pos: -60.5,57.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 8779 @@ -69260,8 +64652,6 @@ entities: - pos: -53.5,56.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 8845 @@ -69270,8 +64660,6 @@ entities: pos: -60.5,60.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 8846 @@ -69279,8 +64667,6 @@ entities: - pos: -59.5,64.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 8847 @@ -69288,8 +64674,6 @@ entities: - pos: -55.5,64.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 8848 @@ -69298,8 +64682,6 @@ entities: pos: -51.5,63.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 8849 @@ -69308,8 +64690,6 @@ entities: pos: -42.5,64.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 8881 @@ -69318,8 +64698,6 @@ entities: pos: -51.5,67.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 8882 @@ -69328,8 +64706,6 @@ entities: pos: -51.5,80.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 8883 @@ -69338,8 +64714,6 @@ entities: pos: -51.5,84.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 8885 @@ -69347,8 +64721,6 @@ entities: - pos: -54.5,84.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 8887 @@ -69357,8 +64729,6 @@ entities: pos: -55.5,88.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 8928 @@ -69367,8 +64737,6 @@ entities: pos: -58.5,87.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 8967 @@ -69377,8 +64745,6 @@ entities: pos: -58.5,83.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 10258 @@ -69387,8 +64753,6 @@ entities: pos: -33.5,-6.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 10337 @@ -69397,8 +64761,6 @@ entities: pos: -32.5,-2.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 10703 @@ -69407,8 +64769,6 @@ entities: pos: -48.5,-12.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 10805 @@ -69416,8 +64776,6 @@ entities: - pos: 6.5,20.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 10955 @@ -69426,8 +64784,6 @@ entities: pos: -58.5,42.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11119 @@ -69436,8 +64792,6 @@ entities: pos: -58.5,38.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11124 @@ -69446,8 +64800,6 @@ entities: pos: -58.5,33.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11145 @@ -69456,8 +64808,6 @@ entities: pos: -52.5,46.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11172 @@ -69466,8 +64816,6 @@ entities: pos: -47.5,42.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11192 @@ -69476,8 +64824,6 @@ entities: pos: -42.5,42.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11208 @@ -69485,8 +64831,6 @@ entities: - pos: -40.5,50.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11238 @@ -69495,8 +64839,6 @@ entities: pos: -29.5,46.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11239 @@ -69505,8 +64847,6 @@ entities: pos: -31.5,44.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11240 @@ -69515,8 +64855,6 @@ entities: pos: -35.5,42.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11272 @@ -69525,8 +64863,6 @@ entities: pos: -47.5,36.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11304 @@ -69535,8 +64871,6 @@ entities: pos: -50.5,24.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11306 @@ -69545,8 +64879,6 @@ entities: pos: -52.5,28.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11317 @@ -69554,8 +64886,6 @@ entities: - pos: -52.5,40.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11318 @@ -69563,8 +64893,6 @@ entities: - pos: -51.5,36.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11321 @@ -69572,8 +64900,6 @@ entities: - pos: -53.5,33.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11557 @@ -69582,8 +64908,6 @@ entities: pos: -42.5,32.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11558 @@ -69592,8 +64916,6 @@ entities: pos: -37.5,32.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11592 @@ -69602,8 +64924,6 @@ entities: pos: -40.5,37.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11593 @@ -69611,8 +64931,6 @@ entities: - pos: -36.5,40.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11594 @@ -69620,8 +64938,6 @@ entities: - pos: -32.5,39.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11595 @@ -69630,8 +64946,6 @@ entities: pos: -27.5,37.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11640 @@ -69640,8 +64954,6 @@ entities: pos: -37.5,28.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11641 @@ -69650,8 +64962,6 @@ entities: pos: -37.5,20.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11642 @@ -69660,8 +64970,6 @@ entities: pos: -37.5,12.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11647 @@ -69670,8 +64978,6 @@ entities: pos: -41.5,24.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11676 @@ -69679,8 +64985,6 @@ entities: - pos: -34.5,27.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11677 @@ -69689,8 +64993,6 @@ entities: pos: -25.5,23.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11698 @@ -69699,8 +65001,6 @@ entities: pos: -54.5,24.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11752 @@ -69709,8 +65009,6 @@ entities: pos: -57.5,27.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11753 @@ -69719,8 +65017,6 @@ entities: pos: -57.5,17.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11754 @@ -69729,8 +65025,6 @@ entities: pos: -57.5,11.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11755 @@ -69739,8 +65033,6 @@ entities: pos: -52.5,14.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11756 @@ -69748,8 +65040,6 @@ entities: - pos: -53.5,19.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11790 @@ -69758,8 +65048,6 @@ entities: pos: -57.5,4.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11813 @@ -69768,8 +65056,6 @@ entities: pos: -73.5,6.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11814 @@ -69778,8 +65064,6 @@ entities: pos: -66.5,5.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11840 @@ -69788,8 +65072,6 @@ entities: pos: -53.5,-6.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11841 @@ -69798,8 +65080,6 @@ entities: pos: -57.5,-1.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11926 @@ -69808,8 +65088,6 @@ entities: pos: -48.5,5.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11948 @@ -69817,8 +65095,6 @@ entities: - pos: -41.5,9.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11968 @@ -69827,8 +65103,6 @@ entities: pos: -40.5,3.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11969 @@ -69837,8 +65111,6 @@ entities: pos: -38.5,1.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11996 @@ -69846,8 +65118,6 @@ entities: - pos: -44.5,1.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11997 @@ -69856,8 +65126,6 @@ entities: pos: -45.5,-2.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 11998 @@ -69866,8 +65134,6 @@ entities: pos: -44.5,-6.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12016 @@ -69876,8 +65142,6 @@ entities: pos: -37.5,-4.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12063 @@ -69886,8 +65150,6 @@ entities: pos: -36.5,3.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12079 @@ -69896,8 +65158,6 @@ entities: pos: -32.5,2.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12130 @@ -69906,8 +65166,6 @@ entities: pos: -26.5,12.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12131 @@ -69916,8 +65174,6 @@ entities: pos: -30.5,8.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12132 @@ -69925,8 +65181,6 @@ entities: - pos: -23.5,16.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12139 @@ -69935,8 +65189,6 @@ entities: pos: -23.5,5.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12172 @@ -69945,8 +65197,6 @@ entities: pos: -30.5,32.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12174 @@ -69955,8 +65205,6 @@ entities: pos: -22.5,28.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12218 @@ -69965,8 +65213,6 @@ entities: pos: -16.5,32.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12255 @@ -69975,8 +65221,6 @@ entities: pos: -16.5,37.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12256 @@ -69985,8 +65229,6 @@ entities: pos: -16.5,44.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12257 @@ -69995,8 +65237,6 @@ entities: pos: -21.5,45.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12258 @@ -70005,8 +65245,6 @@ entities: pos: -20.5,39.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12273 @@ -70015,8 +65253,6 @@ entities: pos: -12.5,47.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12296 @@ -70025,8 +65261,6 @@ entities: pos: -16.5,5.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12321 @@ -70035,8 +65269,6 @@ entities: pos: -11.5,0.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12332 @@ -70045,8 +65277,6 @@ entities: pos: -7.5,1.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12353 @@ -70055,8 +65285,6 @@ entities: pos: -16.5,-2.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12354 @@ -70065,8 +65293,6 @@ entities: pos: -9.5,-4.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12383 @@ -70074,8 +65300,6 @@ entities: - pos: -2.5,0.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12413 @@ -70084,8 +65308,6 @@ entities: pos: 1.5,-2.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12414 @@ -70094,8 +65316,6 @@ entities: pos: 1.5,-10.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12415 @@ -70104,8 +65324,6 @@ entities: pos: -12.5,-12.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12485 @@ -70114,8 +65332,6 @@ entities: pos: -7.5,28.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12486 @@ -70124,8 +65340,6 @@ entities: pos: -12.5,27.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12487 @@ -70134,8 +65348,6 @@ entities: pos: -12.5,18.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12488 @@ -70144,8 +65356,6 @@ entities: pos: -12.5,10.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12506 @@ -70154,8 +65364,6 @@ entities: pos: -16.5,12.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12507 @@ -70164,8 +65372,6 @@ entities: pos: -16.5,9.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12508 @@ -70174,8 +65380,6 @@ entities: pos: -8.5,9.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12509 @@ -70184,8 +65388,6 @@ entities: pos: -8.5,12.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12510 @@ -70194,8 +65396,6 @@ entities: pos: -8.5,14.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12582 @@ -70204,8 +65404,6 @@ entities: pos: -6.5,5.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12583 @@ -70214,8 +65412,6 @@ entities: pos: 4.5,5.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12584 @@ -70224,8 +65420,6 @@ entities: pos: 8.5,1.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12585 @@ -70234,8 +65428,6 @@ entities: pos: 8.5,-2.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12596 @@ -70243,8 +65435,6 @@ entities: - pos: 15.5,2.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12605 @@ -70253,8 +65443,6 @@ entities: pos: 19.5,-2.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12655 @@ -70262,8 +65450,6 @@ entities: - pos: 19.5,10.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12656 @@ -70272,8 +65458,6 @@ entities: pos: 20.5,5.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12657 @@ -70282,8 +65466,6 @@ entities: pos: 26.5,3.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12658 @@ -70292,8 +65474,6 @@ entities: pos: 28.5,6.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12708 @@ -70302,8 +65482,6 @@ entities: pos: 30.5,8.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12709 @@ -70312,8 +65490,6 @@ entities: pos: 30.5,10.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12710 @@ -70322,8 +65498,6 @@ entities: pos: 27.5,12.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12711 @@ -70332,8 +65506,6 @@ entities: pos: 30.5,16.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12712 @@ -70342,8 +65514,6 @@ entities: pos: 30.5,18.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12713 @@ -70352,8 +65522,6 @@ entities: pos: 27.5,20.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12714 @@ -70361,8 +65529,6 @@ entities: - pos: 26.5,24.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12762 @@ -70371,8 +65537,6 @@ entities: pos: 6.5,13.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12763 @@ -70381,8 +65545,6 @@ entities: pos: 8.5,13.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12764 @@ -70391,8 +65553,6 @@ entities: pos: 11.5,13.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12765 @@ -70401,8 +65561,6 @@ entities: pos: 10.5,18.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12859 @@ -70411,8 +65569,6 @@ entities: pos: -1.5,25.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13010 @@ -70421,8 +65577,6 @@ entities: pos: -21.5,54.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13011 @@ -70431,8 +65585,6 @@ entities: pos: -16.5,56.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13012 @@ -70441,8 +65593,6 @@ entities: pos: -16.5,59.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13013 @@ -70450,8 +65600,6 @@ entities: - pos: -17.5,63.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13031 @@ -70460,8 +65608,6 @@ entities: pos: -11.5,53.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13032 @@ -70469,8 +65615,6 @@ entities: - pos: -7.5,60.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13961 @@ -70479,8 +65623,6 @@ entities: pos: -62.5,40.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13962 @@ -70488,8 +65630,6 @@ entities: - pos: -62.5,45.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13981 @@ -70498,8 +65638,6 @@ entities: pos: -70.5,47.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13982 @@ -70508,8 +65646,6 @@ entities: pos: -70.5,52.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14038 @@ -70518,8 +65654,6 @@ entities: pos: -69.5,33.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14040 @@ -70528,8 +65662,6 @@ entities: pos: -70.5,29.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14046 @@ -70538,8 +65670,6 @@ entities: pos: -77.5,32.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14109 @@ -70548,8 +65678,6 @@ entities: pos: -66.5,20.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14111 @@ -70558,8 +65686,6 @@ entities: pos: -66.5,22.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14112 @@ -70568,8 +65694,6 @@ entities: pos: -71.5,17.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14116 @@ -70578,8 +65702,6 @@ entities: pos: -74.5,29.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14149 @@ -70588,8 +65710,6 @@ entities: pos: -65.5,27.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14158 @@ -70598,8 +65718,6 @@ entities: pos: -80.5,24.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14161 @@ -70607,8 +65725,6 @@ entities: - pos: -60.5,33.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - proto: GasVentScrubber @@ -70618,8 +65734,6 @@ entities: - pos: -0.5,9.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 2487 @@ -70628,8 +65742,6 @@ entities: pos: 3.5,32.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 2488 @@ -70638,8 +65750,6 @@ entities: pos: 7.5,34.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 2489 @@ -70647,8 +65757,6 @@ entities: - pos: 4.5,37.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 2490 @@ -70656,8 +65764,6 @@ entities: - pos: 9.5,30.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 2491 @@ -70666,8 +65772,6 @@ entities: pos: 16.5,30.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 2492 @@ -70676,8 +65780,6 @@ entities: pos: 19.5,31.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 2900 @@ -70686,8 +65788,6 @@ entities: pos: -16.5,28.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 2912 @@ -70696,8 +65796,6 @@ entities: pos: -15.5,23.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 3022 @@ -70706,8 +65804,6 @@ entities: pos: 3.5,23.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 3023 @@ -70716,8 +65812,6 @@ entities: pos: 7.5,24.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 3024 @@ -70726,8 +65820,6 @@ entities: pos: 1.5,15.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 3739 @@ -70736,8 +65828,6 @@ entities: pos: -32.5,-3.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 3837 @@ -70746,8 +65836,6 @@ entities: pos: -33.5,-7.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 3959 @@ -70756,8 +65844,6 @@ entities: pos: -40.5,-11.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 3967 @@ -70766,8 +65852,6 @@ entities: pos: -64.5,-11.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 4750 @@ -70776,8 +65860,6 @@ entities: pos: -74.5,-9.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 4807 @@ -70786,8 +65868,6 @@ entities: pos: -57.5,-11.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 8690 @@ -70796,8 +65876,6 @@ entities: pos: -47.5,53.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 8754 @@ -70806,8 +65884,6 @@ entities: pos: -50.5,50.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 8755 @@ -70816,8 +65892,6 @@ entities: pos: -53.5,50.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 8756 @@ -70826,8 +65900,6 @@ entities: pos: -56.5,50.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 8757 @@ -70836,8 +65908,6 @@ entities: pos: -60.5,52.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 8758 @@ -70846,8 +65916,6 @@ entities: pos: -47.5,61.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 8759 @@ -70855,8 +65923,6 @@ entities: - pos: -54.5,64.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 8760 @@ -70864,8 +65930,6 @@ entities: - pos: -58.5,64.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 8766 @@ -70874,8 +65938,6 @@ entities: pos: -60.5,58.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 8778 @@ -70884,8 +65946,6 @@ entities: pos: -54.5,56.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 8842 @@ -70894,8 +65954,6 @@ entities: pos: -60.5,61.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 8843 @@ -70904,8 +65962,6 @@ entities: pos: -51.5,62.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 8844 @@ -70914,8 +65970,6 @@ entities: pos: -42.5,65.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 8884 @@ -70924,8 +65978,6 @@ entities: pos: -51.5,85.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 8886 @@ -70934,8 +65986,6 @@ entities: pos: -55.5,83.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 8888 @@ -70943,8 +65993,6 @@ entities: - pos: -54.5,89.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 8924 @@ -70953,8 +66001,6 @@ entities: pos: -57.5,87.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 8925 @@ -70963,8 +66009,6 @@ entities: pos: -58.5,84.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 10798 @@ -70973,8 +66017,6 @@ entities: pos: 7.5,19.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 10956 @@ -70983,8 +66025,6 @@ entities: pos: -58.5,41.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 11122 @@ -70993,8 +66033,6 @@ entities: pos: -58.5,37.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 11123 @@ -71002,8 +66040,6 @@ entities: - pos: -58.5,32.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 11146 @@ -71011,8 +66047,6 @@ entities: - pos: -53.5,47.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 11175 @@ -71021,8 +66055,6 @@ entities: pos: -47.5,41.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 11196 @@ -71031,8 +66063,6 @@ entities: pos: -41.5,42.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 11209 @@ -71040,8 +66070,6 @@ entities: - pos: -41.5,50.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 11235 @@ -71050,8 +66078,6 @@ entities: pos: -36.5,42.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 11236 @@ -71060,8 +66086,6 @@ entities: pos: -31.5,45.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 11237 @@ -71070,8 +66094,6 @@ entities: pos: -29.5,47.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 11270 @@ -71080,8 +66102,6 @@ entities: pos: -47.5,35.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 11303 @@ -71090,8 +66110,6 @@ entities: pos: -52.5,29.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 11305 @@ -71100,8 +66118,6 @@ entities: pos: -51.5,24.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 11319 @@ -71109,8 +66125,6 @@ entities: - pos: -50.5,36.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 11320 @@ -71118,8 +66132,6 @@ entities: - pos: -54.5,33.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 11555 @@ -71127,8 +66139,6 @@ entities: - pos: -43.5,32.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 11556 @@ -71136,8 +66146,6 @@ entities: - pos: -37.5,33.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 11596 @@ -71146,8 +66154,6 @@ entities: pos: -40.5,36.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 11597 @@ -71155,8 +66161,6 @@ entities: - pos: -38.5,40.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 11598 @@ -71165,8 +66169,6 @@ entities: pos: -27.5,36.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 11599 @@ -71174,8 +66176,6 @@ entities: - pos: -31.5,39.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 11643 @@ -71184,8 +66184,6 @@ entities: pos: -37.5,27.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 11644 @@ -71194,8 +66192,6 @@ entities: pos: -37.5,21.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 11645 @@ -71204,8 +66200,6 @@ entities: pos: -37.5,13.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 11646 @@ -71214,8 +66208,6 @@ entities: pos: -41.5,23.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 11675 @@ -71223,8 +66215,6 @@ entities: - pos: -33.5,27.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 11678 @@ -71233,8 +66223,6 @@ entities: pos: -25.5,24.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 11697 @@ -71243,8 +66231,6 @@ entities: pos: -54.5,25.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 11747 @@ -71253,8 +66239,6 @@ entities: pos: -57.5,26.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 11748 @@ -71263,8 +66247,6 @@ entities: pos: -57.5,18.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 11749 @@ -71273,8 +66255,6 @@ entities: pos: -57.5,10.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 11750 @@ -71283,8 +66263,6 @@ entities: pos: -52.5,15.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 11751 @@ -71292,8 +66270,6 @@ entities: - pos: -54.5,19.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 11789 @@ -71302,8 +66278,6 @@ entities: pos: -57.5,5.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 11811 @@ -71311,8 +66285,6 @@ entities: - pos: -67.5,5.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 11812 @@ -71321,8 +66293,6 @@ entities: pos: -73.5,4.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 11842 @@ -71331,8 +66301,6 @@ entities: pos: -57.5,-2.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 11843 @@ -71341,8 +66309,6 @@ entities: pos: -53.5,-5.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 11925 @@ -71350,8 +66316,6 @@ entities: - pos: -49.5,5.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 11949 @@ -71359,8 +66323,6 @@ entities: - pos: -40.5,9.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 11970 @@ -71369,8 +66331,6 @@ entities: pos: -41.5,2.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 11971 @@ -71379,8 +66339,6 @@ entities: pos: -38.5,0.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 11999 @@ -71388,8 +66346,6 @@ entities: - pos: -43.5,1.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12000 @@ -71398,8 +66354,6 @@ entities: pos: -43.5,-6.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12001 @@ -71408,8 +66362,6 @@ entities: pos: -45.5,-3.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12018 @@ -71418,8 +66370,6 @@ entities: pos: -36.5,-4.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12064 @@ -71428,8 +66378,6 @@ entities: pos: -38.5,3.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12080 @@ -71438,8 +66386,6 @@ entities: pos: -33.5,2.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12127 @@ -71448,8 +66394,6 @@ entities: pos: -30.5,9.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12128 @@ -71458,8 +66402,6 @@ entities: pos: -26.5,11.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12129 @@ -71467,8 +66409,6 @@ entities: - pos: -25.5,16.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12140 @@ -71476,8 +66416,6 @@ entities: - pos: -24.5,5.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12173 @@ -71485,8 +66423,6 @@ entities: - pos: -31.5,32.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12175 @@ -71495,8 +66431,6 @@ entities: pos: -24.5,28.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12190 @@ -71505,8 +66439,6 @@ entities: pos: -20.5,38.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12219 @@ -71515,8 +66447,6 @@ entities: pos: -16.5,31.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12259 @@ -71525,8 +66455,6 @@ entities: pos: -16.5,38.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12260 @@ -71535,8 +66463,6 @@ entities: pos: -16.5,45.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12261 @@ -71545,8 +66471,6 @@ entities: pos: -21.5,46.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12272 @@ -71555,8 +66479,6 @@ entities: pos: -12.5,48.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12297 @@ -71564,8 +66486,6 @@ entities: - pos: -17.5,5.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12320 @@ -71574,8 +66494,6 @@ entities: pos: -12.5,0.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12331 @@ -71584,8 +66502,6 @@ entities: pos: -7.5,2.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12352 @@ -71594,8 +66510,6 @@ entities: pos: -16.5,-3.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12355 @@ -71604,8 +66518,6 @@ entities: pos: -8.5,-4.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12381 @@ -71613,8 +66525,6 @@ entities: - pos: -3.5,0.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12384 @@ -71623,8 +66533,6 @@ entities: pos: -17.5,-11.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12416 @@ -71633,8 +66541,6 @@ entities: pos: 1.5,-1.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12481 @@ -71643,8 +66549,6 @@ entities: pos: -12.5,28.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12482 @@ -71653,8 +66557,6 @@ entities: pos: -8.5,28.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12483 @@ -71663,8 +66565,6 @@ entities: pos: -12.5,19.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12484 @@ -71673,8 +66573,6 @@ entities: pos: -12.5,11.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12586 @@ -71682,8 +66580,6 @@ entities: - pos: -5.5,5.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12587 @@ -71691,8 +66587,6 @@ entities: - pos: 5.5,5.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12588 @@ -71701,8 +66595,6 @@ entities: pos: 8.5,-1.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12589 @@ -71711,8 +66603,6 @@ entities: pos: 8.5,0.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12595 @@ -71720,8 +66610,6 @@ entities: - pos: 14.5,2.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12606 @@ -71730,8 +66618,6 @@ entities: pos: 19.5,-1.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12651 @@ -71739,8 +66625,6 @@ entities: - pos: 17.5,10.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12652 @@ -71748,8 +66632,6 @@ entities: - pos: 21.5,6.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12653 @@ -71758,8 +66640,6 @@ entities: pos: 25.5,3.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12654 @@ -71768,8 +66648,6 @@ entities: pos: 28.5,5.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12715 @@ -71778,8 +66656,6 @@ entities: pos: 26.5,11.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12716 @@ -71788,8 +66664,6 @@ entities: pos: 26.5,19.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12717 @@ -71797,8 +66671,6 @@ entities: - pos: 27.5,24.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12736 @@ -71806,8 +66678,6 @@ entities: - pos: -3.5,34.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12759 @@ -71816,8 +66686,6 @@ entities: pos: 7.5,13.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12760 @@ -71826,8 +66694,6 @@ entities: pos: 9.5,13.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12761 @@ -71836,8 +66702,6 @@ entities: pos: 10.5,13.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12766 @@ -71846,8 +66710,6 @@ entities: pos: 9.5,17.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12858 @@ -71856,8 +66718,6 @@ entities: pos: -1.5,26.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13004 @@ -71866,8 +66726,6 @@ entities: pos: -21.5,55.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13005 @@ -71876,8 +66734,6 @@ entities: pos: -16.5,57.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13006 @@ -71886,8 +66742,6 @@ entities: pos: -16.5,60.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13007 @@ -71895,8 +66749,6 @@ entities: - pos: -15.5,63.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13033 @@ -71904,8 +66756,6 @@ entities: - pos: -8.5,60.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13034 @@ -71914,8 +66764,6 @@ entities: pos: -12.5,53.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13964 @@ -71924,8 +66772,6 @@ entities: pos: -61.5,40.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13996 @@ -71934,8 +66780,6 @@ entities: pos: -60.5,45.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13998 @@ -71944,8 +66788,6 @@ entities: pos: -70.5,48.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14045 @@ -71953,8 +66795,6 @@ entities: - pos: -68.5,34.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14047 @@ -71963,8 +66803,6 @@ entities: pos: -76.5,32.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14110 @@ -71973,8 +66811,6 @@ entities: pos: -66.5,23.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14113 @@ -71983,8 +66819,6 @@ entities: pos: -71.5,16.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14114 @@ -71993,8 +66827,6 @@ entities: pos: -66.5,19.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14115 @@ -72003,8 +66835,6 @@ entities: pos: -73.5,30.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14148 @@ -72013,8 +66843,6 @@ entities: pos: -65.5,28.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14159 @@ -72023,8 +66851,6 @@ entities: pos: -80.5,25.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14160 @@ -72032,8 +66858,6 @@ entities: - pos: -61.5,33.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - proto: GeneratorBasic @@ -77411,9 +72235,25 @@ entities: type: Transform - uid: 7940 components: - - pos: -60.466248,63.997437 + - pos: -58.53795,64.84835 parent: 1 type: Transform + - toggleActionEntity: 7458 + type: HandheldLight + - containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 7458 + type: ContainerContainer + - canCollide: True + type: Physics + - type: ActionsContainer - uid: 10944 components: - pos: -60.49684,41.882523 @@ -78360,8 +73200,6 @@ entities: - pos: -14.5,-11.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - proto: MachineAnomalyVessel entities: - uid: 587 @@ -81755,8 +76593,6 @@ entities: pos: -24.5,-13.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 3696 components: - rot: 3.141592653589793 rad @@ -82438,8 +77274,6 @@ entities: pos: -45.5,-11.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 14466 components: - rot: 3.141592653589793 rad @@ -82729,15 +77563,11 @@ entities: - pos: -50.5,-15.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 4596 components: - pos: 20.5,43.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 15427 components: - pos: -41.5,58.5 @@ -88067,7 +82897,7 @@ entities: entities: - uid: 4218 components: - - pos: -42.570244,23.611063 + - pos: -41.209343,23.558546 parent: 1 type: Transform - proto: SalvageMagnet @@ -89230,36 +84060,50 @@ entities: entities: - uid: 749 components: + - name: Southeast Solars SMES + type: MetaData - pos: 27.5,-7.5 parent: 1 type: Transform - uid: 921 components: + - name: Grav SMES + type: MetaData - pos: 25.5,3.5 parent: 1 type: Transform - uid: 2761 components: + - name: Telecomms SMES + type: MetaData - pos: 25.5,23.5 parent: 1 type: Transform - uid: 10147 components: + - name: SMES Bank 4 + type: MetaData - pos: -71.5,28.5 parent: 1 type: Transform - uid: 10148 components: + - name: SMES Bank 3 + type: MetaData - pos: -71.5,29.5 parent: 1 type: Transform - uid: 10149 components: + - name: SMES Bank 2 + type: MetaData - pos: -71.5,30.5 parent: 1 type: Transform - uid: 10165 components: + - name: SMES Bank 1 + type: MetaData - pos: -71.5,31.5 parent: 1 type: Transform @@ -90124,6 +84968,34 @@ entities: - pos: -60.5,54.5 parent: 1 type: Transform +- proto: SpawnPointSeniorEngineer + entities: + - uid: 7444 + components: + - pos: -66.5,31.5 + parent: 1 + type: Transform +- proto: SpawnPointSeniorOfficer + entities: + - uid: 7447 + components: + - pos: -52.5,57.5 + parent: 1 + type: Transform +- proto: SpawnPointSeniorPhysician + entities: + - uid: 7448 + components: + - pos: 4.5,23.5 + parent: 1 + type: Transform +- proto: SpawnPointSeniorResearcher + entities: + - uid: 7451 + components: + - pos: -8.5,-2.5 + parent: 1 + type: Transform - proto: SpawnPointServiceWorker entities: - uid: 6036 @@ -90435,71 +85307,99 @@ entities: entities: - uid: 606 components: + - name: Science Substation + type: MetaData - pos: 11.5,-7.5 parent: 1 type: Transform - uid: 608 components: + - name: Library Substation + type: MetaData - pos: -15.5,17.5 parent: 1 type: Transform - uid: 922 components: + - name: Grav Substation + type: MetaData - pos: 25.5,1.5 parent: 1 type: Transform - uid: 2515 components: + - name: Evac Substation + type: MetaData - pos: 23.5,9.5 parent: 1 type: Transform - uid: 2593 components: + - name: Telecomms Substation + type: MetaData - pos: 28.5,23.5 parent: 1 type: Transform - uid: 2693 components: + - name: Medical Substation + type: MetaData - pos: -9.5,18.5 parent: 1 type: Transform - uid: 3932 components: + - name: Supply Substation + type: MetaData - pos: -24.5,-3.5 parent: 1 type: Transform - uid: 4339 components: + - name: Tech Storage Substation + type: MetaData - pos: -40.5,15.5 parent: 1 type: Transform - uid: 6198 components: + - name: Northeast Maints Substation + type: MetaData - pos: 18.5,46.5 parent: 1 type: Transform - uid: 6527 components: + - name: Bridge Substation + type: MetaData - pos: -3.5,56.5 parent: 1 type: Transform - uid: 6812 components: + - name: Service Substation + type: MetaData - pos: -35.5,57.5 parent: 1 type: Transform - uid: 9336 components: + - name: Engineering Substation + type: MetaData - pos: -71.5,25.5 parent: 1 type: Transform - uid: 10141 components: + - name: Security Substation + type: MetaData - pos: -65.5,59.5 parent: 1 type: Transform - uid: 10207 components: + - name: PA Substation + type: MetaData - pos: -79.5,27.5 parent: 1 type: Transform @@ -91231,8 +86131,9 @@ entities: canReact: True maxVol: 15 reagents: - - Quantity: 15 + - data: null ReagentId: Hyronalin + Quantity: 15 type: SolutionContainerManager - proto: Table entities: diff --git a/Resources/Maps/box.yml b/Resources/Maps/box.yml index 162a06d0b02..ecf1095cba4 100644 --- a/Resources/Maps/box.yml +++ b/Resources/Maps/box.yml @@ -512,10 +512,10 @@ entities: 2722: 2,-60 3245: 2,-67 3246: 2,-66 - 3323: 66,-52 - 3324: 66,-51 - 3555: -23,-25 - 3556: -25,-25 + 3322: 66,-52 + 3323: 66,-51 + 3554: -23,-25 + 3555: -25,-25 - node: color: '#FFFFFFFF' id: Arrows @@ -527,18 +527,18 @@ entities: 2871: 3,-45 2912: -6,-76 2977: 4,-76 - 3319: 80,-54 - 3320: 79,-54 - 3321: 74,-54 - 3322: 72,-54 + 3318: 80,-54 + 3319: 79,-54 + 3320: 74,-54 + 3321: 72,-54 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: 2901: 9,-75 - 3557: -25,-27 - 3558: -23,-27 + 3556: -25,-27 + 3557: -23,-27 - node: color: '#FFFFFFFF' id: ArrowsGreyscale @@ -657,48 +657,48 @@ entities: 3146: -1,-64 3243: 1,-67 3244: 1,-66 - 3313: 65,-52 - 3314: 65,-51 - 3315: 72,-55 - 3316: 74,-55 - 3317: 79,-55 - 3318: 80,-55 - 3326: 74,-44 - 3327: 73,-44 - 3381: 34,-47 - 3382: 34,-46 - 3383: 34,-50 - 3384: 34,-49 - 3385: 37,-50 - 3386: 37,-49 - 3387: 18,-84 - 3388: 14,-85 - 3389: 14,-86 - 3390: 14,-87 - 3438: 34,-44 - 3439: 35,-44 - 3440: 34,-39 - 3522: -35,-19 - 3523: -36,-19 - 3524: -37,-19 - 3525: -38,-19 - 3526: -37,-27 - 3527: -38,-27 - 3528: -39,-27 - 3529: -37,-25 - 3530: -38,-25 - 3531: -39,-25 - 3532: -37,-23 - 3533: -38,-23 - 3534: -39,-23 - 3544: -26,-32 - 3545: -27,-32 - 3546: -27,-34 - 3547: -27,-33 - 3548: -26,-33 - 3549: -26,-34 - 3550: -26,-35 - 3551: -27,-35 + 3312: 65,-52 + 3313: 65,-51 + 3314: 72,-55 + 3315: 74,-55 + 3316: 79,-55 + 3317: 80,-55 + 3325: 74,-44 + 3326: 73,-44 + 3380: 34,-47 + 3381: 34,-46 + 3382: 34,-50 + 3383: 34,-49 + 3384: 37,-50 + 3385: 37,-49 + 3386: 18,-84 + 3387: 14,-85 + 3388: 14,-86 + 3389: 14,-87 + 3437: 34,-44 + 3438: 35,-44 + 3439: 34,-39 + 3521: -35,-19 + 3522: -36,-19 + 3523: -37,-19 + 3524: -38,-19 + 3525: -37,-27 + 3526: -38,-27 + 3527: -39,-27 + 3528: -37,-25 + 3529: -38,-25 + 3530: -39,-25 + 3531: -37,-23 + 3532: -38,-23 + 3533: -39,-23 + 3543: -26,-32 + 3544: -27,-32 + 3545: -27,-34 + 3546: -27,-33 + 3547: -26,-33 + 3548: -26,-34 + 3549: -26,-35 + 3550: -27,-35 - node: color: '#529CFF93' id: BotGreyscale @@ -723,13 +723,13 @@ entities: id: BotLeft decals: 1758: 55,-32 - 3403: 18,-71 - 3404: 17,-71 - 3405: 16,-71 - 3406: 15,-71 - 3541: -40,-28 - 3542: -39,-28 - 3543: -38,-28 + 3402: 18,-71 + 3403: 17,-71 + 3404: 16,-71 + 3405: 15,-71 + 3540: -40,-28 + 3541: -39,-28 + 3542: -38,-28 - node: color: '#FFFFFFFF' id: BotLeftGreyscale @@ -763,7 +763,7 @@ entities: decals: 2540: 14,-42 2541: 14,-41 - 3407: 15,-81 + 3406: 15,-81 - node: color: '#FFFFFFFF' id: BrickTileDarkBox @@ -810,7 +810,7 @@ entities: color: '#9FED584D' id: BrickTileSteelCornerNe decals: - 3355: 35,-46 + 3354: 35,-46 - node: color: '#D381C996' id: BrickTileSteelCornerNe @@ -820,12 +820,12 @@ entities: color: '#EFB34196' id: BrickTileSteelCornerNe decals: - 3361: 35,-49 + 3360: 35,-49 - node: color: '#9FED584D' id: BrickTileSteelCornerNw decals: - 3356: 34,-46 + 3355: 34,-46 - node: color: '#D381C996' id: BrickTileSteelCornerNw @@ -836,7 +836,7 @@ entities: color: '#EFB34196' id: BrickTileSteelCornerNw decals: - 3362: 34,-49 + 3361: 34,-49 - node: color: '#52B4E996' id: BrickTileSteelCornerSe @@ -846,12 +846,12 @@ entities: color: '#9FED584D' id: BrickTileSteelCornerSe decals: - 3357: 35,-47 + 3356: 35,-47 - node: color: '#EFB34196' id: BrickTileSteelCornerSe decals: - 3360: 35,-50 + 3359: 35,-50 - node: color: '#52B4E996' id: BrickTileSteelCornerSw @@ -861,12 +861,12 @@ entities: color: '#9FED584D' id: BrickTileSteelCornerSw decals: - 3358: 34,-47 + 3357: 34,-47 - node: color: '#EFB34196' id: BrickTileSteelCornerSw decals: - 3359: 34,-50 + 3358: 34,-50 - node: color: '#D381C996' id: BrickTileSteelInnerNe @@ -897,10 +897,10 @@ entities: id: BrickTileSteelLineE decals: 3274: 19,-33 - 3363: 37,-50 - 3364: 37,-49 - 3365: 37,-47 - 3366: 37,-46 + 3362: 37,-50 + 3363: 37,-49 + 3364: 37,-47 + 3365: 37,-46 - node: color: '#D381C996' id: BrickTileSteelLineE @@ -1016,8 +1016,8 @@ entities: decals: 2510: 34,-35 2518: 46,-54 - 3685: 45,-1 - 3686: 45,0 + 3684: 45,-1 + 3685: 45,0 - node: color: '#D4D4D428' id: BrickTileWhiteBox @@ -1035,7 +1035,7 @@ entities: color: '#5299B43A' id: BrickTileWhiteCornerNe decals: - 3345: 37,-40 + 3344: 37,-40 - node: color: '#52B4E996' id: BrickTileWhiteCornerNe @@ -1087,7 +1087,7 @@ entities: color: '#5299B43A' id: BrickTileWhiteCornerNw decals: - 3346: 34,-40 + 3345: 34,-40 - node: color: '#52B4E996' id: BrickTileWhiteCornerNw @@ -1131,7 +1131,7 @@ entities: color: '#5299B43A' id: BrickTileWhiteCornerSe decals: - 3348: 37,-43 + 3347: 37,-43 - node: color: '#9FED5896' id: BrickTileWhiteCornerSe @@ -1166,7 +1166,7 @@ entities: color: '#5299B43A' id: BrickTileWhiteCornerSw decals: - 3347: 34,-43 + 3346: 34,-43 - node: color: '#9FED5896' id: BrickTileWhiteCornerSw @@ -1237,8 +1237,8 @@ entities: color: '#5299B43A' id: BrickTileWhiteLineE decals: - 3351: 37,-42 - 3352: 37,-41 + 3350: 37,-42 + 3351: 37,-41 - node: color: '#52B4E996' id: BrickTileWhiteLineE @@ -1314,8 +1314,8 @@ entities: color: '#5299B43A' id: BrickTileWhiteLineN decals: - 3343: 36,-40 - 3344: 35,-40 + 3342: 36,-40 + 3343: 35,-40 - node: color: '#52B4E996' id: BrickTileWhiteLineN @@ -1428,8 +1428,8 @@ entities: color: '#5299B43A' id: BrickTileWhiteLineS decals: - 3349: 36,-43 - 3350: 35,-43 + 3348: 36,-43 + 3349: 35,-43 - node: color: '#52B4E996' id: BrickTileWhiteLineS @@ -1548,8 +1548,8 @@ entities: color: '#5299B43A' id: BrickTileWhiteLineW decals: - 3353: 34,-42 - 3354: 34,-41 + 3352: 34,-42 + 3353: 34,-41 - node: color: '#52B4E996' id: BrickTileWhiteLineW @@ -1694,14 +1694,14 @@ entities: 1654: 44,-45 1655: 43,-45 1656: 42,-46 - 3430: 34,-44 - 3431: 35,-44 - 3432: 36,-44 - 3433: 37,-44 - 3434: 37,-39 - 3435: 36,-39 - 3436: 35,-39 - 3437: 34,-39 + 3429: 34,-44 + 3430: 35,-44 + 3431: 36,-44 + 3432: 37,-44 + 3433: 37,-39 + 3434: 36,-39 + 3435: 35,-39 + 3436: 34,-39 - node: color: '#92929B96' id: CheckerNESW @@ -1736,18 +1736,18 @@ entities: color: '#9FED5896' id: CheckerNESW decals: - 3673: 45,-1 - 3674: 45,0 - 3675: 46,-1 - 3676: 46,0 - 3677: 47,-1 - 3678: 47,0 - 3679: 48,-1 - 3680: 48,0 - 3681: 48,1 - 3682: 49,1 - 3683: 49,0 - 3684: 49,-1 + 3672: 45,-1 + 3673: 45,0 + 3674: 46,-1 + 3675: 46,0 + 3676: 47,-1 + 3677: 47,0 + 3678: 48,-1 + 3679: 48,0 + 3680: 48,1 + 3681: 49,1 + 3682: 49,0 + 3683: 49,-1 - node: color: '#D381C996' id: CheckerNESW @@ -1835,18 +1835,18 @@ entities: color: '#FFFFFFFF' id: CheckerNESW decals: - 3661: 45,-1 - 3662: 45,0 - 3663: 46,0 - 3664: 46,-1 - 3665: 47,-1 - 3666: 47,0 - 3667: 48,-1 - 3668: 48,0 - 3669: 49,-1 - 3670: 49,0 - 3671: 49,1 - 3672: 48,1 + 3660: 45,-1 + 3661: 45,0 + 3662: 46,0 + 3663: 46,-1 + 3664: 47,-1 + 3665: 47,0 + 3666: 48,-1 + 3667: 48,0 + 3668: 49,-1 + 3669: 49,0 + 3670: 49,1 + 3671: 48,1 - node: color: '#334E6DC8' id: CheckerNWSE @@ -1925,16 +1925,16 @@ entities: 3292: 40,-29 3293: 41,-29 3294: 41,-30 - 3371: 40,-49 - 3372: 40,-48 - 3373: 40,-47 - 3374: 40,-46 - 3375: 40,-45 - 3376: 40,-44 - 3377: 40,-43 - 3378: 40,-42 - 3379: 40,-41 - 3380: 40,-40 + 3370: 40,-49 + 3371: 40,-48 + 3372: 40,-47 + 3373: 40,-46 + 3374: 40,-45 + 3375: 40,-44 + 3376: 40,-43 + 3377: 40,-42 + 3378: 40,-41 + 3379: 40,-40 - node: color: '#9FED5896' id: CheckerNWSE @@ -1951,22 +1951,22 @@ entities: 769: 47,-59 770: 47,-60 771: 47,-61 - 3464: 3,-36 - 3465: 3,-35 - 3466: 4,-35 - 3467: 4,-36 - 3468: 5,-36 - 3469: 5,-35 - 3470: 6,-35 - 3471: 6,-36 + 3463: 3,-36 + 3464: 3,-35 + 3465: 4,-35 + 3466: 4,-36 + 3467: 5,-36 + 3468: 5,-35 + 3469: 6,-35 + 3470: 6,-36 - node: color: '#A4610696' id: CheckerNWSE decals: - 3482: -33,-31 - 3483: -33,-30 - 3484: -32,-30 - 3485: -32,-31 + 3481: -33,-31 + 3482: -33,-30 + 3483: -32,-30 + 3484: -32,-31 - node: color: '#D381C996' id: CheckerNWSE @@ -2106,34 +2106,34 @@ entities: 2967: 4,-72 2968: 3,-72 3242: -1,-62 - 3325: 67,-54 - 3328: 70,-44 - 3329: 78,-42 - 3330: 78,-40 - 3518: -38,-20 - 3519: -37,-20 - 3520: -36,-20 - 3521: -35,-20 - 3535: -40,-27 - 3536: -40,-25 - 3537: -40,-23 - 3538: -38,-31 - 3539: -39,-31 - 3540: -40,-31 - 3552: -26,-39 - 3553: -27,-39 - 3554: -28,-39 - 3687: 87,-6 - 3688: 87,-4 - 3689: 87,-12 - 3690: 87,-14 - 3691: 83,-14 - 3692: 83,-12 - 3693: 83,-6 - 3694: 83,-4 - 3698: 9,-32 - 3699: 9,-31 - 3700: 9,-30 + 3324: 67,-54 + 3327: 70,-44 + 3328: 78,-42 + 3329: 78,-40 + 3517: -38,-20 + 3518: -37,-20 + 3519: -36,-20 + 3520: -35,-20 + 3534: -40,-27 + 3535: -40,-25 + 3536: -40,-23 + 3537: -38,-31 + 3538: -39,-31 + 3539: -40,-31 + 3551: -26,-39 + 3552: -27,-39 + 3553: -28,-39 + 3686: 87,-6 + 3687: 87,-4 + 3688: 87,-12 + 3689: 87,-14 + 3690: 83,-14 + 3691: 83,-12 + 3692: 83,-6 + 3693: 83,-4 + 3697: 9,-32 + 3698: 9,-31 + 3699: 9,-30 - node: cleanable: True color: '#474F52FF' @@ -2243,16 +2243,16 @@ entities: 3199: -6,-73 3200: -1,-72 3201: 0,-72 - 3575: -32,-22 - 3576: -36,-22 - 3577: -38,-24 - 3578: -36,-26 - 3579: -36,-29 - 3610: -27,-38 - 3611: -28,-36 - 3612: -28,-35 - 3613: -28,-34 - 3614: -25,-33 + 3574: -32,-22 + 3575: -36,-22 + 3576: -38,-24 + 3577: -36,-26 + 3578: -36,-29 + 3609: -27,-38 + 3610: -28,-36 + 3611: -28,-35 + 3612: -28,-34 + 3613: -25,-33 - node: cleanable: True color: '#FFFFFFFF' @@ -2482,48 +2482,48 @@ entities: 3219: -7,-70 3220: -10,-71 3221: -12,-71 - 3559: -40,-30 - 3560: -41,-31 - 3561: -38,-30 - 3562: -38,-31 - 3563: -36,-31 - 3564: -38,-28 - 3565: -41,-27 - 3566: -38,-25 - 3567: -36,-26 - 3568: -39,-24 - 3569: -37,-22 - 3570: -35,-21 + 3558: -40,-30 + 3559: -41,-31 + 3560: -38,-30 + 3561: -38,-31 + 3562: -36,-31 + 3563: -38,-28 + 3564: -41,-27 + 3565: -38,-25 + 3566: -36,-26 + 3567: -39,-24 + 3568: -37,-22 + 3569: -35,-21 + 3570: -33,-21 3571: -33,-21 - 3572: -33,-21 - 3573: -31,-22 - 3574: -29,-23 + 3572: -31,-22 + 3573: -29,-23 + 3619: -26,-35 3620: -26,-35 - 3621: -26,-35 - 3622: -25,-35 - 3623: -27,-35 - 3624: -26,-33 - 3625: -27,-33 - 3626: -27,-31 - 3627: -28,-31 - 3628: -28,-32 - 3629: -29,-32 - 3630: -31,-31 - 3631: -30,-31 - 3632: -35,-31 - 3633: -26,-29 - 3634: -25,-30 - 3635: -25,-28 - 3636: -26,-28 - 3637: -28,-28 - 3638: -28,-27 - 3639: -28,-26 - 3640: -26,-25 + 3621: -25,-35 + 3622: -27,-35 + 3623: -26,-33 + 3624: -27,-33 + 3625: -27,-31 + 3626: -28,-31 + 3627: -28,-32 + 3628: -29,-32 + 3629: -31,-31 + 3630: -30,-31 + 3631: -35,-31 + 3632: -26,-29 + 3633: -25,-30 + 3634: -25,-28 + 3635: -26,-28 + 3636: -28,-28 + 3637: -28,-27 + 3638: -28,-26 + 3639: -26,-25 + 3640: -25,-27 3641: -25,-27 - 3642: -25,-27 - 3643: -23,-27 - 3644: -22,-27 - 3645: -21,-25 + 3642: -23,-27 + 3643: -22,-27 + 3644: -21,-25 - node: cleanable: True zIndex: 1 @@ -2567,41 +2567,41 @@ entities: 3043: 6,-70 3044: 6,-68 3045: 7,-69 - 3580: -37,-29 - 3581: -36,-28 - 3582: -36,-30 - 3583: -36,-27 - 3584: -37,-26 - 3585: -36,-25 - 3586: -36,-24 - 3587: -37,-24 - 3588: -36,-23 - 3589: -39,-22 - 3590: -41,-24 - 3591: -40,-24 - 3592: -41,-25 - 3593: -41,-26 - 3594: -32,-20 - 3595: -32,-19 - 3596: -34,-20 - 3597: -33,-20 - 3598: -28,-21 - 3599: -27,-23 - 3600: -26,-24 - 3601: -26,-26 - 3602: -27,-26 - 3603: -27,-27 - 3604: -27,-28 - 3605: -29,-37 - 3606: -29,-38 - 3607: -28,-38 - 3608: -26,-38 - 3609: -25,-36 - 3615: -28,-33 - 3616: -26,-36 - 3617: -27,-36 - 3618: -27,-33 - 3619: -28,-32 + 3579: -37,-29 + 3580: -36,-28 + 3581: -36,-30 + 3582: -36,-27 + 3583: -37,-26 + 3584: -36,-25 + 3585: -36,-24 + 3586: -37,-24 + 3587: -36,-23 + 3588: -39,-22 + 3589: -41,-24 + 3590: -40,-24 + 3591: -41,-25 + 3592: -41,-26 + 3593: -32,-20 + 3594: -32,-19 + 3595: -34,-20 + 3596: -33,-20 + 3597: -28,-21 + 3598: -27,-23 + 3599: -26,-24 + 3600: -26,-26 + 3601: -27,-26 + 3602: -27,-27 + 3603: -27,-28 + 3604: -29,-37 + 3605: -29,-38 + 3606: -28,-38 + 3607: -26,-38 + 3608: -25,-36 + 3614: -28,-33 + 3615: -26,-36 + 3616: -27,-36 + 3617: -27,-33 + 3618: -28,-32 - node: color: '#FFFFFFFF' id: Flowersbr2 @@ -2714,7 +2714,7 @@ entities: 1799: 57,-41 1800: 55,-41 1801: 53,-41 - 3463: 5,-33 + 3462: 5,-33 - node: color: '#DE3A3A2B' id: FullTileOverlayGreyscale @@ -2896,20 +2896,20 @@ entities: id: Grassd1 decals: 1186: 46.57632,-52.483627 - 3653: 42,0 + 3652: 42,0 - node: color: '#FFFFFFFF' id: Grassd2 decals: 1185: 44.04507,-52.733627 - 3652: 44,0 + 3651: 44,0 - node: color: '#FFFFFFFF' id: Grassd3 decals: 516: -14.979541,-25.083757 1508: 2,48 - 3654: 43,0 + 3653: 43,0 - node: color: '#FFFFFFFF' id: Grasse1 @@ -2920,7 +2920,7 @@ entities: 1507: 2,47 1509: -3,48 2139: 23.90632,-6.523569 - 3650: 43,-1 + 3649: 43,-1 - node: color: '#FFFFFFFF' id: Grasse2 @@ -2933,7 +2933,7 @@ entities: 1505: -1,48 1521: -1,47 2138: 23.171946,-6.117319 - 3651: 42,-1 + 3650: 42,-1 - node: color: '#FFFFFFFF' id: Grasse3 @@ -2944,7 +2944,7 @@ entities: 1503: 4,48 1506: -3,47 2137: 23.12507,-6.836069 - 3649: 44,-1 + 3648: 44,-1 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale @@ -3007,8 +3007,8 @@ entities: 2398: 5,28 2399: 28,-24 2400: 69,-18 - 3478: -32,-29 - 3479: -33,-29 + 3477: -32,-29 + 3478: -33,-29 - node: color: '#D381C996' id: HalfTileOverlayGreyscale @@ -3027,10 +3027,10 @@ entities: 1780: 53,-40 1781: 52,-40 1782: 51,-40 - 3449: 6,-34 - 3450: 5,-34 - 3451: 4,-34 - 3452: 3,-34 + 3448: 6,-34 + 3449: 5,-34 + 3450: 4,-34 + 3451: 3,-34 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale @@ -3155,8 +3155,8 @@ entities: color: '#A4610696' id: HalfTileOverlayGreyscale180 decals: - 3480: -33,-32 - 3481: -32,-32 + 3479: -33,-32 + 3480: -32,-32 - node: color: '#D381C996' id: HalfTileOverlayGreyscale180 @@ -3182,11 +3182,11 @@ entities: 1791: 62,-42 1792: 63,-42 1793: 61,-42 - 3441: 5,-32 - 3455: 3,-37 - 3456: 4,-37 - 3457: 6,-37 - 3458: 5,-37 + 3440: 5,-32 + 3454: 3,-37 + 3455: 4,-37 + 3456: 6,-37 + 3457: 5,-37 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 @@ -3269,9 +3269,9 @@ entities: 2505: 35,-32 2506: 35,-33 2507: 35,-34 - 3368: 39,-49 - 3369: 39,-47 - 3370: 39,-46 + 3367: 39,-49 + 3368: 39,-47 + 3369: 39,-46 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale270 @@ -3301,7 +3301,7 @@ entities: 468: -42,-25 469: -42,-26 470: -42,-27 - 3472: -34,-30 + 3471: -34,-30 - node: color: '#D381C996' id: HalfTileOverlayGreyscale270 @@ -3310,8 +3310,8 @@ entities: 283: 65,-19 284: 65,-20 1803: 63,-41 - 3453: 2,-35 - 3454: 2,-36 + 3452: 2,-35 + 3453: 2,-36 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 @@ -3411,15 +3411,15 @@ entities: 1160: -20,-18 1161: -20,-19 1162: -20,-20 - 3473: -31,-30 - 3500: -36,-32 - 3501: -36,-30 - 3502: -36,-29 - 3503: -36,-28 - 3504: -36,-27 - 3505: -36,-26 - 3506: -36,-25 - 3507: -36,-24 + 3472: -31,-30 + 3499: -36,-32 + 3500: -36,-30 + 3501: -36,-29 + 3502: -36,-28 + 3503: -36,-27 + 3504: -36,-26 + 3505: -36,-25 + 3506: -36,-24 - node: color: '#D381C996' id: HalfTileOverlayGreyscale90 @@ -3431,8 +3431,8 @@ entities: 287: 63,-21 288: 63,-22 1802: 51,-41 - 3447: 7,-36 - 3448: 7,-35 + 3446: 7,-36 + 3447: 7,-35 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 @@ -3520,8 +3520,8 @@ entities: color: '#5299B43A' id: QuarterTileOverlayGreyscale decals: - 3335: 36,-43 - 3336: 37,-42 + 3334: 36,-43 + 3335: 37,-42 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale @@ -3713,14 +3713,14 @@ entities: 3101: 8,5 3102: 8,4 3103: 8,3 - 3408: -47,-9 - 3409: -47,-8 - 3410: -47,-7 - 3411: -47,-6 - 3412: -46,-6 - 3413: -45,-6 - 3414: -44,-6 - 3415: -43,-6 + 3407: -47,-9 + 3408: -47,-8 + 3409: -47,-7 + 3410: -47,-6 + 3411: -46,-6 + 3412: -45,-6 + 3413: -44,-6 + 3414: -43,-6 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale @@ -3882,8 +3882,8 @@ entities: color: '#5299B43A' id: QuarterTileOverlayGreyscale180 decals: - 3337: 34,-41 - 3338: 35,-40 + 3336: 34,-41 + 3337: 35,-40 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 @@ -3947,20 +3947,20 @@ entities: color: '#9FED5896' id: QuarterTileOverlayGreyscale180 decals: - 3445: 3,-32 - 3446: 2,-32 + 3444: 3,-32 + 3445: 2,-32 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale180 decals: 207: -31,-17 453: -27,-28 - 3508: -36,-23 - 3509: -35,-23 - 3510: -34,-23 - 3511: -32,-23 - 3512: -31,-23 - 3513: -33,-23 + 3507: -36,-23 + 3508: -35,-23 + 3509: -34,-23 + 3510: -32,-23 + 3511: -31,-23 + 3512: -33,-23 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale180 @@ -3978,7 +3978,7 @@ entities: 2461: -27,-39 2462: -28,-39 2463: -29,-39 - 3442: 4,-32 + 3441: 4,-32 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale180 @@ -4133,8 +4133,8 @@ entities: color: '#5299B43A' id: QuarterTileOverlayGreyscale270 decals: - 3339: 36,-40 - 3340: 37,-41 + 3338: 36,-40 + 3339: 37,-41 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 @@ -4179,9 +4179,9 @@ entities: 1925: -66,-6 2358: -78,-6 2359: -79,-6 - 3646: 12,-32 - 3647: 11,-32 - 3648: 10,-32 + 3645: 12,-32 + 3646: 11,-32 + 3647: 10,-32 - node: color: '#79150096' id: QuarterTileOverlayGreyscale270 @@ -4230,8 +4230,8 @@ entities: 757: 38,-59 758: 38,-58 759: 38,-57 - 3444: 7,-32 - 3702: 8,-32 + 3443: 7,-32 + 3701: 8,-32 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale270 @@ -4273,7 +4273,7 @@ entities: 1620: 50,-27 1741: 56,-15 1744: 59,-15 - 3443: 6,-32 + 3442: 6,-32 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale270 @@ -4337,9 +4337,9 @@ entities: 3072: 20,8 3073: 20,9 3074: 19,9 - 3695: 14,-27 - 3696: 14,-26 - 3697: 14,-25 + 3694: 14,-27 + 3695: 14,-26 + 3696: 14,-25 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale270 @@ -4454,8 +4454,8 @@ entities: color: '#5299B43A' id: QuarterTileOverlayGreyscale90 decals: - 3341: 35,-43 - 3342: 34,-42 + 3340: 35,-43 + 3341: 34,-42 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 @@ -4492,10 +4492,10 @@ entities: 2449: -24,-37 2450: -24,-38 2451: -24,-39 - 3514: -31,-19 - 3515: -32,-19 - 3516: -33,-19 - 3517: -34,-19 + 3513: -31,-19 + 3514: -32,-19 + 3515: -33,-19 + 3516: -34,-19 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale90 @@ -4624,21 +4624,21 @@ entities: 3086: 9,15 3087: 9,16 3088: 9,17 - 3416: -42,-6 - 3417: -41,-6 + 3415: -42,-6 + 3416: -41,-6 + 3417: -40,-6 3418: -40,-6 - 3419: -40,-6 - 3420: -39,-6 - 3421: -38,-6 - 3422: -38,-7 - 3423: -38,-8 - 3424: -38,-9 - 3425: -38,-10 - 3426: -38,-11 - 3427: -38,-12 - 3428: -38,-13 - 3429: -38,-14 - 3701: 8,-30 + 3419: -39,-6 + 3420: -38,-6 + 3421: -38,-7 + 3422: -38,-8 + 3423: -38,-9 + 3424: -38,-10 + 3425: -38,-11 + 3426: -38,-12 + 3427: -38,-13 + 3428: -38,-14 + 3700: 8,-30 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale90 @@ -4804,7 +4804,7 @@ entities: color: '#5299B43A' id: ThreeQuarterTileOverlayGreyscale decals: - 3334: 36,-42 + 3333: 36,-42 - node: color: '#52B4E931' id: ThreeQuarterTileOverlayGreyscale @@ -4830,7 +4830,7 @@ entities: id: ThreeQuarterTileOverlayGreyscale decals: 455: -30,-36 - 3475: -34,-29 + 3474: -34,-29 - node: color: '#D381C934' id: ThreeQuarterTileOverlayGreyscale @@ -4840,7 +4840,7 @@ entities: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale decals: - 3462: 2,-34 + 3461: 2,-34 - node: color: '#DE3A3A2B' id: ThreeQuarterTileOverlayGreyscale @@ -4868,7 +4868,7 @@ entities: color: '#5299B43A' id: ThreeQuarterTileOverlayGreyscale180 decals: - 3333: 35,-41 + 3332: 35,-41 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 @@ -4891,7 +4891,7 @@ entities: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale180 decals: - 3477: -31,-32 + 3476: -31,-32 - node: color: '#D381C934' id: ThreeQuarterTileOverlayGreyscale180 @@ -4902,7 +4902,7 @@ entities: id: ThreeQuarterTileOverlayGreyscale180 decals: 908: 71,-16 - 3461: 7,-37 + 3460: 7,-37 - node: color: '#DE3A3A2B' id: ThreeQuarterTileOverlayGreyscale180 @@ -4920,12 +4920,12 @@ entities: decals: 368: -1,23 1091: 0,-28 - 3721: 1,-26 + 3720: 1,-26 - node: color: '#5299B43A' id: ThreeQuarterTileOverlayGreyscale270 decals: - 3331: 36,-41 + 3330: 36,-41 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 @@ -4933,7 +4933,7 @@ entities: 360: -11,23 1613: 48,-29 2491: 28,-37 - 3367: 39,-50 + 3366: 39,-50 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale270 @@ -4945,7 +4945,7 @@ entities: id: ThreeQuarterTileOverlayGreyscale270 decals: 454: -30,-39 - 3476: -34,-32 + 3475: -34,-32 - node: color: '#D381C934' id: ThreeQuarterTileOverlayGreyscale270 @@ -4956,7 +4956,7 @@ entities: id: ThreeQuarterTileOverlayGreyscale270 decals: 907: 61,-16 - 3460: 2,-37 + 3459: 2,-37 - node: color: '#DE3A3A2B' id: ThreeQuarterTileOverlayGreyscale270 @@ -4974,7 +4974,7 @@ entities: decals: 369: -3,23 1092: -2,-28 - 3722: -3,-26 + 3721: -3,-26 - node: color: '#334E6D5A' id: ThreeQuarterTileOverlayGreyscale90 @@ -4985,7 +4985,7 @@ entities: color: '#5299B43A' id: ThreeQuarterTileOverlayGreyscale90 decals: - 3332: 35,-42 + 3331: 35,-42 - node: color: '#52B4E931' id: ThreeQuarterTileOverlayGreyscale90 @@ -5013,7 +5013,7 @@ entities: id: ThreeQuarterTileOverlayGreyscale90 decals: 1158: -20,-16 - 3474: -31,-29 + 3473: -31,-29 - node: color: '#D381C934' id: ThreeQuarterTileOverlayGreyscale90 @@ -5023,7 +5023,7 @@ entities: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 3459: 7,-34 + 3458: 7,-34 - node: color: '#DE3A3A2B' id: ThreeQuarterTileOverlayGreyscale90 @@ -5131,7 +5131,7 @@ entities: 1099: -3,-30 1735: 51,-21 2394: -73,-4 - 3401: 13,-77 + 3400: 13,-77 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW @@ -5144,7 +5144,7 @@ entities: 2371: -79,-6 2392: -69,-4 2393: -76,-4 - 3400: 17,-77 + 3399: 17,-77 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE @@ -5155,7 +5155,7 @@ entities: 2113: 22,-90 2397: -73,8 3225: -11,-65 - 3399: 13,-75 + 3398: 13,-75 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW @@ -5172,12 +5172,12 @@ entities: 2395: -69,8 2396: -76,8 3231: -13,-63 - 3402: 17,-75 + 3401: 17,-75 - node: color: '#FFFFFFFF' id: WarnEndGreyscaleN decals: - 3655: 46,-17 + 3654: 46,-17 - node: color: '#DE3A3A96' id: WarnFullGreyscale @@ -5224,7 +5224,7 @@ entities: 2557: 8,-48 3222: -11,-67 3223: -11,-66 - 3397: 13,-76 + 3396: 13,-76 - node: color: '#334E6DC8' id: WarnLineGreyscaleE @@ -5235,7 +5235,7 @@ entities: color: '#52B4E996' id: WarnLineGreyscaleE decals: - 3312: 42,-24 + 3311: 42,-24 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleE @@ -5385,11 +5385,11 @@ entities: 3192: -7,-71 3193: -6,-71 3194: -5,-71 - 3656: 46,-21 - 3657: 45,-21 - 3658: 44,-21 - 3659: 43,-21 - 3660: 42,-21 + 3655: 46,-21 + 3656: 45,-21 + 3657: 44,-21 + 3658: 43,-21 + 3659: 42,-21 - node: color: '#EFB34196' id: WarnLineGreyscaleW @@ -5493,9 +5493,9 @@ entities: 3112: 12,-87 3224: -10,-65 3230: -14,-63 - 3394: 14,-75 - 3395: 15,-75 - 3396: 16,-75 + 3393: 14,-75 + 3394: 15,-75 + 3395: 16,-75 - node: color: '#FFFFFFFF' id: WarnLineS @@ -5560,7 +5560,7 @@ entities: 3227: -13,-66 3228: -13,-65 3229: -13,-64 - 3398: 17,-76 + 3397: 17,-76 - node: color: '#FFFFFFFF' id: WarnLineW @@ -5647,63 +5647,63 @@ entities: 3116: 16,-84 3117: 17,-84 3118: 18,-84 - 3391: 14,-77 - 3392: 15,-77 - 3393: 16,-77 + 3390: 14,-77 + 3391: 15,-77 + 3392: 16,-77 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 3493: -31,-25 - 3707: 12,-26 + 3492: -31,-25 + 3706: 12,-26 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 3496: -34,-25 - 3714: 6,-26 + 3495: -34,-25 + 3713: 6,-26 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: 2523: 12,-37 - 3708: 12,-27 + 3707: 12,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: 2524: 10,-37 - 3713: 6,-27 + 3712: 6,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinEndN decals: - 3704: 9,-25 + 3703: 9,-25 - node: color: '#FFFFFFFF' id: WoodTrimThinEndS decals: - 3703: 9,-28 + 3702: 9,-28 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNe decals: - 3720: 9,-26 + 3719: 9,-26 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw decals: - 3719: 9,-26 + 3718: 9,-26 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSe decals: - 3718: 9,-27 + 3717: 9,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: - 3717: 9,-27 + 3716: 9,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE @@ -5717,9 +5717,9 @@ entities: 1282: 11,-14 1283: 11,-13 3262: 12,-36 - 3490: -31,-28 - 3491: -31,-27 - 3492: -31,-26 + 3489: -31,-28 + 3490: -31,-27 + 3491: -31,-26 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN @@ -5743,16 +5743,16 @@ entities: 1712: 55,-38 1713: 56,-38 1714: 57,-38 - 3486: -34,-29 - 3487: -33,-29 - 3488: -32,-29 - 3489: -31,-29 - 3494: -32,-25 - 3495: -33,-25 - 3705: 10,-26 - 3706: 11,-26 - 3715: 7,-26 - 3716: 8,-26 + 3485: -34,-29 + 3486: -33,-29 + 3487: -32,-29 + 3488: -31,-29 + 3493: -32,-25 + 3494: -33,-25 + 3704: 10,-26 + 3705: 11,-26 + 3714: 7,-26 + 3715: 8,-26 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS @@ -5767,10 +5767,10 @@ entities: 1399: -15,53 1400: -16,53 2525: 11,-37 - 3709: 11,-27 - 3710: 10,-27 - 3711: 8,-27 - 3712: 7,-27 + 3708: 11,-27 + 3709: 10,-27 + 3710: 8,-27 + 3711: 7,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW @@ -5778,9 +5778,9 @@ entities: 3119: 32,-1 3120: 32,0 3263: 10,-36 - 3497: -34,-28 - 3498: -34,-27 - 3499: -34,-26 + 3496: -34,-28 + 3497: -34,-27 + 3498: -34,-26 - node: color: '#FFFFFFFF' id: bushsnowa2 @@ -12010,10 +12010,11 @@ entities: - dockJointId: docking46345 dockedWith: 21828 type: Docking - - SecondsUntilStateChange: -68620.445 - changeAirtight: False - state: Opening + - changeAirtight: False + state: Open type: Door + - canCollide: False + type: Physics - links: - 1495 type: DeviceLinkSink @@ -12041,10 +12042,11 @@ entities: - dockJointId: docking46345 dockedWith: 562 type: Docking - - SecondsUntilStateChange: -68620.445 - changeAirtight: False - state: Opening + - changeAirtight: False + state: Open type: Door + - canCollide: False + type: Physics - proto: AirlockHeadOfPersonnelGlassLocked entities: - uid: 12024 @@ -13978,8 +13980,6 @@ entities: - pos: -38.5,-19.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - loadingNetworkDemand: 85 supplyRampPosition: 53.91901 type: PowerNetworkBattery @@ -14054,8 +14054,6 @@ entities: - pos: 39.5,14.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - loadingNetworkDemand: 10 supplyRampPosition: 1.347667 type: PowerNetworkBattery @@ -14084,8 +14082,6 @@ entities: - pos: -29.5,-63.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - loadingNetworkDemand: 55 supplyRampPosition: 2.6408517 type: PowerNetworkBattery @@ -14103,8 +14099,6 @@ entities: - pos: 31.5,2.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - loadingNetworkDemand: 20 supplyRampPosition: 0.010999783 type: PowerNetworkBattery @@ -14115,8 +14109,6 @@ entities: - pos: 28.5,-3.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - loadingNetworkDemand: 10 supplyRampPosition: 2.735612 type: PowerNetworkBattery @@ -14256,8 +14248,6 @@ entities: - pos: 43.5,-1.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - loadingNetworkDemand: 65 supplyRampPosition: 17.574497 type: PowerNetworkBattery @@ -14268,8 +14258,6 @@ entities: - pos: 73.5,-4.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - loadingNetworkDemand: 45 supplyRampPosition: 2.4463015 type: PowerNetworkBattery @@ -14286,8 +14274,6 @@ entities: - pos: 66.5,20.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - loadingNetworkDemand: 5 supplyRampPosition: 2.4463015 type: PowerNetworkBattery @@ -14320,8 +14306,6 @@ entities: - pos: -31.5,7.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - loadingNetworkDemand: 15 supplyRampPosition: 1.142588 type: PowerNetworkBattery @@ -14332,8 +14316,6 @@ entities: - pos: -43.5,6.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - loadingNetworkDemand: 30 supplyRampPosition: 18.132214 type: PowerNetworkBattery @@ -14344,8 +14326,6 @@ entities: - pos: -57.5,6.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - loadingNetworkDemand: 25 supplyRampPosition: 9.296312 type: PowerNetworkBattery @@ -14356,8 +14336,6 @@ entities: - pos: -65.5,-2.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - loadingNetworkDemand: 145 supplyRampPosition: 32.478764 type: PowerNetworkBattery @@ -14374,8 +14352,6 @@ entities: - pos: -21.5,3.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - loadingNetworkDemand: 10 supplyRampPosition: 6.0937796 type: PowerNetworkBattery @@ -14417,8 +14393,6 @@ entities: - pos: -52.5,-6.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - loadingNetworkDemand: 5 supplyRampPosition: 2.4463015 type: PowerNetworkBattery @@ -14429,8 +14403,6 @@ entities: - pos: -25.5,-20.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - loadingNetworkDemand: 65 supplyRampPosition: 2.4463015 type: PowerNetworkBattery @@ -14441,8 +14413,6 @@ entities: - pos: -29.5,-34.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - loadingNetworkDemand: 25 supplyRampPosition: 9.488577 type: PowerNetworkBattery @@ -14471,8 +14441,6 @@ entities: - pos: -8.5,-54.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - loadingNetworkDemand: 10 supplyRampPosition: 1.347667 type: PowerNetworkBattery @@ -14493,8 +14461,6 @@ entities: - pos: -24.5,-63.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - loadingNetworkDemand: 5 supplyRampPosition: 2.4463015 type: PowerNetworkBattery @@ -17342,148 +17308,106 @@ entities: - pos: -19.5,44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 69 components: - pos: -1.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 73 components: - pos: -61.5,15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 74 components: - pos: -61.5,16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 105 components: - pos: 9.5,-77.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 346 components: - pos: -23.5,48.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 426 components: - pos: -29.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 427 components: - pos: -28.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 428 components: - pos: -27.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 447 components: - pos: -55.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 448 components: - pos: -55.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 454 components: - pos: -53.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 457 components: - pos: -54.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 458 components: - pos: -47.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 483 components: - pos: -51.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 491 components: - pos: -52.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 511 components: - pos: -58.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 520 components: - pos: -18.5,50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 521 components: - pos: -23.5,46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 538 components: - pos: -11.5,-71.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 549 components: - pos: -68.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 551 components: - pos: -53.5,-1.5 @@ -17519,78 +17443,56 @@ entities: - pos: -80.5,-4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 604 components: - pos: -74.5,-2.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 605 components: - pos: -75.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 611 components: - pos: -74.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 612 components: - pos: -73.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 613 components: - pos: -79.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 615 components: - pos: -75.5,-2.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 617 components: - pos: -73.5,-2.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 621 components: - pos: -72.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 622 components: - pos: -72.5,-2.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 623 components: - pos: -80.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 624 components: - pos: -78.5,9.5 @@ -17616,8 +17518,6 @@ entities: - pos: -75.5,-17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 1156 components: - pos: 4.5,-34.5 @@ -17628,8 +17528,6 @@ entities: - pos: -75.5,-15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 1191 components: - pos: -50.5,-6.5 @@ -17640,8 +17538,6 @@ entities: - pos: -52.5,-6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 1468 components: - pos: -38.5,-22.5 @@ -17667,8 +17563,6 @@ entities: - pos: -18.5,-35.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 1545 components: - pos: -31.5,-27.5 @@ -17684,15 +17578,11 @@ entities: - pos: -38.5,-19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 1564 components: - pos: -19.5,-35.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 1577 components: - pos: -31.5,-28.5 @@ -17703,8 +17593,6 @@ entities: - pos: -20.5,-35.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 1681 components: - pos: 9.5,-35.5 @@ -17715,8 +17603,6 @@ entities: - pos: 16.5,-34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 1700 components: - pos: 12.5,-35.5 @@ -17737,8 +17623,6 @@ entities: - pos: 15.5,-35.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 1712 components: - pos: 10.5,-35.5 @@ -17754,8 +17638,6 @@ entities: - pos: 16.5,-35.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 1759 components: - pos: 45.5,-25.5 @@ -17766,15 +17648,11 @@ entities: - pos: 53.5,-53.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 2266 components: - pos: 59.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 2267 components: - pos: 56.5,-44.5 @@ -17810,8 +17688,6 @@ entities: - pos: 54.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 2289 components: - pos: 58.5,-44.5 @@ -17822,8 +17698,6 @@ entities: - pos: 58.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 2516 components: - pos: 39.5,-48.5 @@ -17839,8 +17713,6 @@ entities: - pos: 52.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 2613 components: - pos: 55.5,-56.5 @@ -17851,36 +17723,26 @@ entities: - pos: 53.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 2934 components: - pos: 21.5,-15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 2935 components: - pos: -35.5,-37.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3004 components: - pos: 43.5,-67.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3005 components: - pos: 43.5,-68.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3006 components: - pos: 43.5,-71.5 @@ -17901,22 +17763,16 @@ entities: - pos: 44.5,-74.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3010 components: - pos: 48.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3011 components: - pos: 43.5,-69.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3012 components: - pos: 43.5,-70.5 @@ -17927,43 +17783,31 @@ entities: - pos: 43.5,-66.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3014 components: - pos: 33.5,-66.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3015 components: - pos: 37.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3016 components: - pos: 37.5,-66.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3017 components: - pos: 37.5,-67.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3019 components: - pos: 33.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3020 components: - pos: 21.5,-16.5 @@ -17974,36 +17818,26 @@ entities: - pos: -36.5,-37.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3022 components: - pos: -34.5,-37.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3023 components: - pos: -34.5,-25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3024 components: - pos: 37.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3025 components: - pos: 35.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3063 components: - pos: -41.5,-30.5 @@ -18014,22 +17848,16 @@ entities: - pos: -43.5,-30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3065 components: - pos: -42.5,-30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3066 components: - pos: -43.5,-28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3069 components: - pos: -41.5,-28.5 @@ -18050,71 +17878,51 @@ entities: - pos: 43.5,-74.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3133 components: - pos: 42.5,-74.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3228 components: - pos: 23.5,-22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3239 components: - pos: 34.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3240 components: - pos: 36.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3264 components: - pos: 33.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3273 components: - pos: 39.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3274 components: - pos: 35.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3275 components: - pos: 38.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3276 components: - pos: 34.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3699 components: - pos: 4.5,-71.5 @@ -18125,15 +17933,11 @@ entities: - pos: 25.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3705 components: - pos: 26.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3709 components: - pos: -2.5,-47.5 @@ -18144,36 +17948,26 @@ entities: - pos: 26.5,-67.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3713 components: - pos: 26.5,-66.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3717 components: - pos: -5.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3718 components: - pos: -6.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3725 components: - pos: 26.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3727 components: - pos: -1.5,-47.5 @@ -18184,8 +17978,6 @@ entities: - pos: 26.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3735 components: - pos: 18.5,-84.5 @@ -18201,29 +17993,21 @@ entities: - pos: 19.5,-41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3746 components: - pos: 18.5,-41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3747 components: - pos: 17.5,-41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3748 components: - pos: 17.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3792 components: - pos: 4.5,-70.5 @@ -18264,8 +18048,6 @@ entities: - pos: -10.5,46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3886 components: - pos: 1.5,-63.5 @@ -18276,15 +18058,11 @@ entities: - pos: 0.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3889 components: - pos: 0.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3891 components: - pos: -10.5,-63.5 @@ -18300,8 +18078,6 @@ entities: - pos: 0.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3903 components: - pos: 3.5,-63.5 @@ -18322,50 +18098,36 @@ entities: - pos: -19.5,-72.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 4040 components: - pos: 26.5,-71.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 4048 components: - pos: 12.5,-81.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 4058 components: - pos: -7.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 4144 components: - pos: 25.5,-43.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 4148 components: - pos: 25.5,-51.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 4163 components: - pos: 22.5,-67.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 4520 components: - pos: -18.5,42.5 @@ -18381,8 +18143,6 @@ entities: - pos: 0.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 4696 components: - pos: 13.5,-83.5 @@ -18393,8 +18153,6 @@ entities: - pos: 12.5,-79.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 4710 components: - pos: -11.5,36.5 @@ -18410,8 +18168,6 @@ entities: - pos: -8.5,44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5073 components: - pos: -5.5,36.5 @@ -18427,8 +18183,6 @@ entities: - pos: -7.5,53.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5082 components: - pos: -7.5,48.5 @@ -18454,8 +18208,6 @@ entities: - pos: -6.5,34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5087 components: - pos: -9.5,36.5 @@ -18561,22 +18313,16 @@ entities: - pos: -7.5,44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5112 components: - pos: -6.5,44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5113 components: - pos: -5.5,44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5215 components: - pos: 36.5,-34.5 @@ -18592,29 +18338,21 @@ entities: - pos: -1.5,-3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5573 components: - pos: 0.5,-3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5574 components: - pos: 1.5,-3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5695 components: - pos: -2.5,-3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5697 components: - pos: -0.5,-4.5 @@ -18630,8 +18368,6 @@ entities: - pos: 4.5,-14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5739 components: - pos: -2.5,-16.5 @@ -18642,8 +18378,6 @@ entities: - pos: -0.5,-3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5751 components: - pos: -3.5,-16.5 @@ -18679,8 +18413,6 @@ entities: - pos: -6.5,-22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5905 components: - pos: -7.5,-22.5 @@ -18701,8 +18433,6 @@ entities: - pos: -5.5,-15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5963 components: - pos: -6.5,-15.5 @@ -18773,8 +18503,6 @@ entities: - pos: 9.5,-21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6025 components: - pos: 8.5,-21.5 @@ -18860,8 +18588,6 @@ entities: - pos: 5.5,-25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6062 components: - pos: 6.5,-25.5 @@ -18897,8 +18623,6 @@ entities: - pos: 3.5,-9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6069 components: - pos: 3.5,-8.5 @@ -19179,8 +18903,6 @@ entities: - pos: 13.5,4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6372 components: - pos: 12.5,4.5 @@ -19256,8 +18978,6 @@ entities: - pos: 25.5,20.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6397 components: - pos: 25.5,19.5 @@ -19278,8 +18998,6 @@ entities: - pos: 39.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6432 components: - pos: 39.5,13.5 @@ -19315,8 +19033,6 @@ entities: - pos: 15.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6538 components: - pos: 19.5,13.5 @@ -19537,8 +19253,6 @@ entities: - pos: 19.5,4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6899 components: - pos: 21.5,4.5 @@ -19599,15 +19313,11 @@ entities: - pos: 27.5,23.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7009 components: - pos: -33.5,-36.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7015 components: - pos: 22.5,-4.5 @@ -19648,8 +19358,6 @@ entities: - pos: -33.5,-37.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7033 components: - pos: 32.5,-0.5 @@ -19670,8 +19378,6 @@ entities: - pos: 31.5,2.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7054 components: - pos: 30.5,-7.5 @@ -19682,8 +19388,6 @@ entities: - pos: 28.5,-3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7065 components: - pos: 20.5,-9.5 @@ -19764,8 +19468,6 @@ entities: - pos: 28.5,-4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7142 components: - pos: 27.5,-5.5 @@ -19781,15 +19483,11 @@ entities: - pos: -29.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7160 components: - pos: 23.5,23.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7163 components: - pos: 30.5,-9.5 @@ -19815,8 +19513,6 @@ entities: - pos: 24.5,25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7183 components: - pos: 26.5,-4.5 @@ -19827,22 +19523,16 @@ entities: - pos: 23.5,24.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7187 components: - pos: 23.5,25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7189 components: - pos: 24.5,23.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7190 components: - pos: 30.5,-6.5 @@ -19853,29 +19543,21 @@ entities: - pos: 28.5,-5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7195 components: - pos: 25.5,23.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7202 components: - pos: 22.5,25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7204 components: - pos: 27.5,24.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7205 components: - pos: 21.5,-5.5 @@ -19901,8 +19583,6 @@ entities: - pos: 18.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7743 components: - pos: -1.5,23.5 @@ -19928,8 +19608,6 @@ entities: - pos: -46.5,21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8117 components: - pos: -3.5,-12.5 @@ -19950,8 +19628,6 @@ entities: - pos: -0.5,-15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8154 components: - pos: 2.5,-13.5 @@ -19992,8 +19668,6 @@ entities: - pos: 15.5,29.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8558 components: - pos: 15.5,23.5 @@ -20009,15 +19683,11 @@ entities: - pos: 13.5,23.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8561 components: - pos: 17.5,23.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8562 components: - pos: 15.5,25.5 @@ -20073,8 +19743,6 @@ entities: - pos: -19.5,46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8673 components: - pos: -5.5,27.5 @@ -20105,8 +19773,6 @@ entities: - pos: -3.5,29.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8681 components: - pos: -4.5,29.5 @@ -20147,15 +19813,11 @@ entities: - pos: -4.5,25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8689 components: - pos: -2.5,25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8690 components: - pos: -1.5,25.5 @@ -20246,8 +19908,6 @@ entities: - pos: 5.5,25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8708 components: - pos: 5.5,24.5 @@ -20263,8 +19923,6 @@ entities: - pos: 5.5,22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8711 components: - pos: 4.5,22.5 @@ -20275,8 +19933,6 @@ entities: - pos: 3.5,22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8713 components: - pos: 2.5,26.5 @@ -20287,8 +19943,6 @@ entities: - pos: 2.5,25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8715 components: - pos: -9.5,26.5 @@ -20299,8 +19953,6 @@ entities: - pos: -0.5,25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8718 components: - pos: 1.5,27.5 @@ -20316,8 +19968,6 @@ entities: - pos: -10.5,25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8721 components: - pos: -5.5,26.5 @@ -20348,15 +19998,11 @@ entities: - pos: -6.5,25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8727 components: - pos: -8.5,25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8728 components: - pos: -1.5,26.5 @@ -20367,22 +20013,16 @@ entities: - pos: -1.5,22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8730 components: - pos: -2.5,22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8731 components: - pos: -0.5,22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8732 components: - pos: -5.5,24.5 @@ -20398,22 +20038,16 @@ entities: - pos: -5.5,22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8735 components: - pos: -6.5,22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8736 components: - pos: -4.5,22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8737 components: - pos: -9.5,24.5 @@ -20429,22 +20063,16 @@ entities: - pos: -9.5,22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8740 components: - pos: -10.5,22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8741 components: - pos: -8.5,22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8762 components: - pos: -10.5,27.5 @@ -20495,8 +20123,6 @@ entities: - pos: -16.5,30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8896 components: - pos: -15.5,30.5 @@ -20532,8 +20158,6 @@ entities: - pos: -20.5,22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8937 components: - pos: -20.5,46.5 @@ -20579,36 +20203,26 @@ entities: - pos: -23.5,49.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8959 components: - pos: -21.5,50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8960 components: - pos: -23.5,50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8962 components: - pos: -20.5,50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8963 components: - pos: -22.5,50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8980 components: - pos: -10.5,40.5 @@ -20634,8 +20248,6 @@ entities: - pos: -10.5,44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8994 components: - pos: -10.5,45.5 @@ -20651,15 +20263,11 @@ entities: - pos: -13.5,44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9008 components: - pos: -14.5,44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9009 components: - pos: -14.5,42.5 @@ -20685,8 +20293,6 @@ entities: - pos: -6.5,34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9063 components: - pos: -10.5,38.5 @@ -20697,8 +20303,6 @@ entities: - pos: -23.5,47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9088 components: - pos: -21.5,43.5 @@ -20749,15 +20353,11 @@ entities: - pos: -22.5,25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9154 components: - pos: -22.5,23.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9156 components: - pos: -18.5,22.5 @@ -20778,36 +20378,26 @@ entities: - pos: -22.5,24.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9160 components: - pos: -20.5,20.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9161 components: - pos: -20.5,24.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9162 components: - pos: -21.5,23.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9163 components: - pos: -20.5,23.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9283 components: - pos: 4.5,38.5 @@ -20818,8 +20408,6 @@ entities: - pos: 5.5,38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9285 components: - pos: 6.5,38.5 @@ -20900,8 +20488,6 @@ entities: - pos: 11.5,39.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9301 components: - pos: 12.5,39.5 @@ -21037,8 +20623,6 @@ entities: - pos: -1.5,34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9335 components: - pos: -1.5,33.5 @@ -21084,8 +20668,6 @@ entities: - pos: -19.5,50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9599 components: - pos: 20.5,33.5 @@ -21156,15 +20738,11 @@ entities: - pos: 20.5,35.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9688 components: - pos: -13.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9689 components: - pos: -13.5,15.5 @@ -21200,8 +20778,6 @@ entities: - pos: -8.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9696 components: - pos: -8.5,15.5 @@ -21257,15 +20833,11 @@ entities: - pos: 47.5,-22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9819 components: - pos: 27.5,29.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9822 components: - pos: -13.5,-24.5 @@ -21276,260 +20848,186 @@ entities: - pos: -57.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9831 components: - pos: -47.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9860 components: - pos: 26.5,25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9861 components: - pos: 25.5,25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9862 components: - pos: 27.5,25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9863 components: - pos: 27.5,26.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9864 components: - pos: 28.5,26.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9866 components: - pos: 29.5,26.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9869 components: - pos: 23.5,30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9870 components: - pos: 24.5,30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9871 components: - pos: 25.5,30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9872 components: - pos: 27.5,28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9873 components: - pos: 21.5,29.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9874 components: - pos: 21.5,28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9875 components: - pos: 21.5,27.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9876 components: - pos: 21.5,26.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9877 components: - pos: 21.5,25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9878 components: - pos: 21.5,24.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9879 components: - pos: 21.5,23.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9880 components: - pos: 21.5,22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9881 components: - pos: 21.5,21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9882 components: - pos: 21.5,20.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9883 components: - pos: 21.5,19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9884 components: - pos: 21.5,18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9885 components: - pos: 21.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9886 components: - pos: 21.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9887 components: - pos: 20.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9888 components: - pos: 19.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9889 components: - pos: 18.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9890 components: - pos: 17.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9891 components: - pos: 16.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9892 components: - pos: 15.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9893 components: - pos: 14.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9894 components: - pos: 13.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9895 components: - pos: 12.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9896 components: - pos: 11.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9897 components: - pos: 10.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9898 components: - pos: 9.5,17.5 @@ -21545,267 +21043,191 @@ entities: - pos: 7.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9901 components: - pos: 6.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9902 components: - pos: 5.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9903 components: - pos: 4.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9904 components: - pos: 3.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9905 components: - pos: 2.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9906 components: - pos: 2.5,16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9907 components: - pos: 2.5,15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9908 components: - pos: 2.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9909 components: - pos: 2.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9910 components: - pos: 2.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9911 components: - pos: 2.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9912 components: - pos: 2.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9913 components: - pos: 2.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9914 components: - pos: 2.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9915 components: - pos: 2.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9916 components: - pos: 2.5,6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9917 components: - pos: 2.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9918 components: - pos: 2.5,4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9919 components: - pos: 2.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9920 components: - pos: 3.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9921 components: - pos: 4.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9922 components: - pos: 5.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9951 components: - pos: 27.5,27.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9952 components: - pos: 26.5,30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9953 components: - pos: 27.5,30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9954 components: - pos: 22.5,30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9955 components: - pos: 21.5,30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9964 components: - pos: -46.5,19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9965 components: - pos: -47.5,19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9966 components: - pos: -49.5,18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9967 components: - pos: -48.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9968 components: - pos: -48.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9970 components: - pos: -45.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9971 components: - pos: -40.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9972 components: - pos: -40.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9973 components: - pos: -42.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9975 components: - pos: -43.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9998 components: - pos: 15.5,41.5 @@ -21816,8 +21238,6 @@ entities: - pos: -20.5,25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10004 components: - pos: -18.5,23.5 @@ -21828,22 +21248,16 @@ entities: - pos: 15.5,42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10021 components: - pos: 14.5,42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10022 components: - pos: 13.5,42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10023 components: - pos: 15.5,37.5 @@ -21859,8 +21273,6 @@ entities: - pos: 16.5,36.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10026 components: - pos: 14.5,37.5 @@ -21881,29 +21293,21 @@ entities: - pos: 12.5,36.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10030 components: - pos: 11.5,37.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10031 components: - pos: 11.5,38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10032 components: - pos: 11.5,40.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10033 components: - pos: 19.5,36.5 @@ -21914,22 +21318,16 @@ entities: - pos: 19.5,37.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10035 components: - pos: 18.5,37.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10036 components: - pos: 20.5,34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10038 components: - pos: 22.5,41.5 @@ -21940,22 +21338,16 @@ entities: - pos: 21.5,41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10040 components: - pos: 21.5,42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10041 components: - pos: 21.5,40.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10042 components: - pos: 24.5,41.5 @@ -21966,22 +21358,16 @@ entities: - pos: 25.5,41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10044 components: - pos: 25.5,42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10045 components: - pos: 25.5,40.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10046 components: - pos: 9.5,36.5 @@ -21997,8 +21383,6 @@ entities: - pos: 9.5,34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10049 components: - pos: 7.5,36.5 @@ -22019,15 +21403,11 @@ entities: - pos: 6.5,34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10053 components: - pos: 7.5,34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10054 components: - pos: 8.5,40.5 @@ -22048,8 +21428,6 @@ entities: - pos: 7.5,42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10058 components: - pos: 9.5,41.5 @@ -22060,8 +21438,6 @@ entities: - pos: 9.5,42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10060 components: - pos: 3.5,36.5 @@ -22077,8 +21453,6 @@ entities: - pos: 3.5,34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10063 components: - pos: 0.5,36.5 @@ -22094,15 +21468,11 @@ entities: - pos: 0.5,34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10066 components: - pos: -0.5,34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10067 components: - pos: 4.5,31.5 @@ -22118,15 +21488,11 @@ entities: - pos: 5.5,32.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10070 components: - pos: 5.5,30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10071 components: - pos: 3.5,30.5 @@ -22137,8 +21503,6 @@ entities: - pos: 3.5,29.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10073 components: - pos: 1.5,30.5 @@ -22149,15 +21513,11 @@ entities: - pos: 1.5,29.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10075 components: - pos: 0.5,29.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10076 components: - pos: -1.5,30.5 @@ -22168,22 +21528,16 @@ entities: - pos: -1.5,29.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10078 components: - pos: -2.5,29.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10079 components: - pos: -3.5,30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10080 components: - pos: -2.5,32.5 @@ -22194,8 +21548,6 @@ entities: - pos: -3.5,32.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10083 components: - pos: 2.5,23.5 @@ -22206,29 +21558,21 @@ entities: - pos: 2.5,22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10085 components: - pos: 3.5,22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10086 components: - pos: 8.5,25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10087 components: - pos: 10.5,25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10088 components: - pos: -3.5,15.5 @@ -22239,22 +21583,16 @@ entities: - pos: -2.5,15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10090 components: - pos: -2.5,16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10091 components: - pos: -2.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10092 components: - pos: -5.5,17.5 @@ -22265,8 +21603,6 @@ entities: - pos: -5.5,18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10094 components: - pos: -11.5,17.5 @@ -22277,50 +21613,36 @@ entities: - pos: -11.5,18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10096 components: - pos: -10.5,18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10097 components: - pos: -21.5,21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10099 components: - pos: -22.5,21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10100 components: - pos: -22.5,19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10102 components: - pos: -20.5,21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10103 components: - pos: -18.5,21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10104 components: - pos: -17.5,21.5 @@ -22331,8 +21653,6 @@ entities: - pos: -16.5,21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10106 components: - pos: -17.5,23.5 @@ -22353,134 +21673,96 @@ entities: - pos: 11.5,21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10126 components: - pos: 11.5,19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10309 components: - pos: 38.5,15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10310 components: - pos: 38.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10311 components: - pos: 38.5,16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10312 components: - pos: 38.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10313 components: - pos: 37.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10314 components: - pos: 36.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10315 components: - pos: 35.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10316 components: - pos: 34.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10317 components: - pos: 33.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10318 components: - pos: 32.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10319 components: - pos: 31.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10320 components: - pos: 30.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10321 components: - pos: 29.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10322 components: - pos: 28.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10323 components: - pos: 28.5,16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10324 components: - pos: 28.5,15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10325 components: - pos: 28.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10326 components: - pos: 28.5,13.5 @@ -22491,15 +21773,11 @@ entities: - pos: 28.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10328 components: - pos: 28.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10329 components: - pos: 28.5,10.5 @@ -22510,113 +21788,81 @@ entities: - pos: 28.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10331 components: - pos: 28.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10332 components: - pos: 28.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10333 components: - pos: 28.5,6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10334 components: - pos: 29.5,6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10335 components: - pos: 30.5,6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10336 components: - pos: 31.5,6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10337 components: - pos: 32.5,6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10338 components: - pos: 33.5,6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10339 components: - pos: 34.5,6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10340 components: - pos: 35.5,6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10341 components: - pos: 36.5,6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10342 components: - pos: 37.5,6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10343 components: - pos: 38.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10344 components: - pos: 38.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10345 components: - pos: 18.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10346 components: - pos: 18.5,11.5 @@ -22627,8 +21873,6 @@ entities: - pos: 18.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10348 components: - pos: 18.5,10.5 @@ -22649,8 +21893,6 @@ entities: - pos: 17.5,-9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10353 components: - pos: 23.5,-10.5 @@ -22661,15 +21903,11 @@ entities: - pos: 23.5,-11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10355 components: - pos: 27.5,-3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10356 components: - pos: -4.5,-4.5 @@ -22680,99 +21918,71 @@ entities: - pos: -4.5,-3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10358 components: - pos: -5.5,-3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10359 components: - pos: -6.5,-3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10360 components: - pos: -7.5,-3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10361 components: - pos: -9.5,-3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10362 components: - pos: -10.5,-3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10363 components: - pos: -11.5,-3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10364 components: - pos: -12.5,-3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10365 components: - pos: -13.5,-3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10366 components: - pos: -14.5,-3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10367 components: - pos: -14.5,-4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10368 components: - pos: -14.5,-5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10369 components: - pos: -14.5,-6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10370 components: - pos: -13.5,-6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10371 components: - pos: 3.5,-4.5 @@ -22783,106 +21993,76 @@ entities: - pos: 3.5,-3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10373 components: - pos: 4.5,-3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10374 components: - pos: 5.5,-3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10375 components: - pos: 6.5,-3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10376 components: - pos: 7.5,-3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10377 components: - pos: 8.5,-3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10378 components: - pos: 9.5,-3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10379 components: - pos: 10.5,-3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10380 components: - pos: 11.5,-3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10381 components: - pos: 12.5,-3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10382 components: - pos: 13.5,-3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10383 components: - pos: 13.5,-4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10384 components: - pos: 13.5,-5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10385 components: - pos: 13.5,-6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10386 components: - pos: 12.5,-6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10387 components: - pos: 10.5,-8.5 @@ -22893,15 +22073,11 @@ entities: - pos: 10.5,-7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10389 components: - pos: 10.5,-9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10390 components: - pos: -11.5,-8.5 @@ -22912,15 +22088,11 @@ entities: - pos: -11.5,-7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10392 components: - pos: -11.5,-9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10393 components: - pos: -13.5,-12.5 @@ -22931,22 +22103,16 @@ entities: - pos: -14.5,-12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10395 components: - pos: -14.5,-13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10396 components: - pos: -14.5,-14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10397 components: - pos: -11.5,-23.5 @@ -22957,8 +22123,6 @@ entities: - pos: -12.5,-23.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10399 components: - pos: -13.5,-23.5 @@ -22969,8 +22133,6 @@ entities: - pos: -12.5,-24.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10405 components: - pos: -0.5,-27.5 @@ -22986,78 +22148,56 @@ entities: - pos: -1.5,-28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10408 components: - pos: -2.5,-28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10409 components: - pos: -3.5,-28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10410 components: - pos: -4.5,-28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10411 components: - pos: -5.5,-28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10412 components: - pos: 0.5,-28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10413 components: - pos: 1.5,-28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10414 components: - pos: 2.5,-28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10415 components: - pos: 3.5,-28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10416 components: - pos: 4.5,-28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10500 components: - pos: 37.5,-3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10501 components: - pos: 37.5,-2.5 @@ -23168,8 +22308,6 @@ entities: - pos: 43.5,-1.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10662 components: - pos: 45.5,-0.5 @@ -23200,15 +22338,11 @@ entities: - pos: 49.5,-1.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10668 components: - pos: 47.5,-1.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10669 components: - pos: 43.5,-2.5 @@ -23334,8 +22468,6 @@ entities: - pos: 42.5,-11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10694 components: - pos: 44.5,-11.5 @@ -23346,22 +22478,16 @@ entities: - pos: 45.5,-11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10696 components: - pos: 45.5,-10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10697 components: - pos: 46.5,-10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10698 components: - pos: 47.5,-10.5 @@ -23387,15 +22513,11 @@ entities: - pos: -12.5,44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10725 components: - pos: -11.5,44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10914 components: - pos: 48.5,-1.5 @@ -23406,8 +22528,6 @@ entities: - pos: 60.5,-3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11050 components: - pos: 59.5,-3.5 @@ -23538,8 +22658,6 @@ entities: - pos: 61.5,-11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11076 components: - pos: 59.5,-10.5 @@ -23550,8 +22668,6 @@ entities: - pos: 59.5,-11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11078 components: - pos: 57.5,-10.5 @@ -23562,8 +22678,6 @@ entities: - pos: 57.5,-11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11080 components: - pos: 62.5,-8.5 @@ -23594,8 +22708,6 @@ entities: - pos: 73.5,-4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11086 components: - pos: 72.5,-4.5 @@ -23721,8 +22833,6 @@ entities: - pos: 70.5,-0.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11111 components: - pos: 70.5,0.5 @@ -23783,50 +22893,36 @@ entities: - pos: 73.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11123 components: - pos: 74.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11124 components: - pos: 75.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11125 components: - pos: 75.5,2.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11126 components: - pos: 75.5,1.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11127 components: - pos: 75.5,0.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11128 components: - pos: 62.5,1.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11129 components: - pos: 61.5,1.5 @@ -23872,15 +22968,11 @@ entities: - pos: 73.5,-2.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11138 components: - pos: 74.5,-2.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11139 components: - pos: 73.5,-7.5 @@ -23891,29 +22983,21 @@ entities: - pos: 74.5,-7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11265 components: - pos: 45.5,19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11275 components: - pos: 46.5,19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11337 components: - pos: 66.5,20.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11385 components: - pos: 66.5,19.5 @@ -23929,134 +23013,96 @@ entities: - pos: 65.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11391 components: - pos: 42.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11392 components: - pos: 41.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11394 components: - pos: 42.5,4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11395 components: - pos: 42.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11397 components: - pos: 41.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11398 components: - pos: 40.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11399 components: - pos: 39.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11400 components: - pos: 38.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11401 components: - pos: 37.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11402 components: - pos: 36.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11403 components: - pos: 35.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11404 components: - pos: 34.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11405 components: - pos: 33.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11406 components: - pos: 32.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11407 components: - pos: 31.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11408 components: - pos: 30.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11409 components: - pos: 29.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11410 components: - pos: 28.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11411 components: - pos: 27.5,3.5 @@ -24077,519 +23123,371 @@ entities: - pos: 43.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11415 components: - pos: 44.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11416 components: - pos: 45.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11417 components: - pos: 45.5,4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11418 components: - pos: 45.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11419 components: - pos: 45.5,6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11420 components: - pos: 45.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11421 components: - pos: 45.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11422 components: - pos: 45.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11423 components: - pos: 45.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11424 components: - pos: 46.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11425 components: - pos: 47.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11426 components: - pos: 48.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11427 components: - pos: 49.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11428 components: - pos: 50.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11429 components: - pos: 51.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11430 components: - pos: 52.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11431 components: - pos: 53.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11432 components: - pos: 54.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11433 components: - pos: 55.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11434 components: - pos: 56.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11435 components: - pos: 57.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11436 components: - pos: 58.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11437 components: - pos: 59.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11438 components: - pos: 59.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11439 components: - pos: 59.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11440 components: - pos: 59.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11441 components: - pos: 58.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11442 components: - pos: 57.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11443 components: - pos: 56.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11444 components: - pos: 55.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11445 components: - pos: 54.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11446 components: - pos: 53.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11447 components: - pos: 52.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11448 components: - pos: 51.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11449 components: - pos: 50.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11450 components: - pos: 49.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11451 components: - pos: 48.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11452 components: - pos: 52.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11453 components: - pos: 52.5,15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11454 components: - pos: 52.5,16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11455 components: - pos: 60.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11456 components: - pos: 60.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11457 components: - pos: 61.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11458 components: - pos: 62.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11459 components: - pos: 63.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11460 components: - pos: 64.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11461 components: - pos: 65.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11462 components: - pos: 68.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11463 components: - pos: 68.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11464 components: - pos: 69.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11465 components: - pos: 63.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11466 components: - pos: 65.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11467 components: - pos: 65.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11468 components: - pos: 65.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11469 components: - pos: 65.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11470 components: - pos: 65.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11471 components: - pos: 66.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11472 components: - pos: 66.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11473 components: - pos: 67.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11474 components: - pos: 70.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11475 components: - pos: 70.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11476 components: - pos: 69.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11477 components: - pos: 68.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11478 components: - pos: 68.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11479 components: - pos: 73.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11480 components: - pos: 74.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11481 components: - pos: 64.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11482 components: - pos: 63.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11483 components: - pos: 61.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11484 components: - pos: 62.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11485 components: - pos: 70.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11486 components: - pos: 71.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11487 components: - pos: 72.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11488 components: - pos: 73.5,11.5 @@ -24605,57 +23503,41 @@ entities: - pos: 73.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11491 components: - pos: 74.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11492 components: - pos: 69.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11493 components: - pos: 68.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11494 components: - pos: 68.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11495 components: - pos: 64.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11496 components: - pos: 61.5,15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11497 components: - pos: 61.5,16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11498 components: - pos: 61.5,17.5 @@ -24681,428 +23563,306 @@ entities: - pos: 56.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11503 components: - pos: 60.5,20.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11504 components: - pos: 62.5,18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11505 components: - pos: 62.5,19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11506 components: - pos: 62.5,20.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11507 components: - pos: 56.5,15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11508 components: - pos: 56.5,16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11509 components: - pos: 56.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11510 components: - pos: 56.5,18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11511 components: - pos: 56.5,19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11512 components: - pos: 56.5,20.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11513 components: - pos: 56.5,21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11514 components: - pos: 55.5,21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11515 components: - pos: 57.5,21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11516 components: - pos: 46.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11517 components: - pos: 47.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11518 components: - pos: 47.5,4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11519 components: - pos: 54.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11520 components: - pos: 54.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11521 components: - pos: 54.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11522 components: - pos: 54.5,6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11523 components: - pos: 54.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11524 components: - pos: 54.5,4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11525 components: - pos: 53.5,4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11526 components: - pos: 52.5,4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11527 components: - pos: 51.5,4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11528 components: - pos: 50.5,4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11529 components: - pos: 49.5,4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11530 components: - pos: 51.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11531 components: - pos: 51.5,2.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11532 components: - pos: 51.5,1.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11533 components: - pos: 51.5,0.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11534 components: - pos: 51.5,-0.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11535 components: - pos: 51.5,-1.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11536 components: - pos: 51.5,-2.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11537 components: - pos: 51.5,-3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11538 components: - pos: 51.5,-4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11539 components: - pos: 51.5,-6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11541 components: - pos: 55.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11542 components: - pos: 56.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11543 components: - pos: 57.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11544 components: - pos: 58.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11545 components: - pos: 59.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11546 components: - pos: 60.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11547 components: - pos: 61.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11548 components: - pos: 62.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11549 components: - pos: 63.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11550 components: - pos: 64.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11551 components: - pos: 65.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11552 components: - pos: 66.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11561 components: - pos: 49.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11562 components: - pos: 49.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11563 components: - pos: 52.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11564 components: - pos: 52.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11566 components: - pos: 57.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11567 components: - pos: 57.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11636 components: - pos: 47.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11637 components: - pos: 62.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11738 components: - pos: 47.5,19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11767 components: - pos: 47.5,20.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11768 components: - pos: 47.5,21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11770 components: - pos: 47.5,23.5 @@ -25113,36 +23873,26 @@ entities: - pos: 48.5,23.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11772 components: - pos: 46.5,23.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11773 components: - pos: 46.5,22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11774 components: - pos: 46.5,21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11775 components: - pos: 45.5,21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11815 components: - pos: -66.5,16.5 @@ -25153,8 +23903,6 @@ entities: - pos: 74.5,-10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11819 components: - pos: 75.5,-10.5 @@ -25200,85 +23948,61 @@ entities: - pos: 83.5,-10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11828 components: - pos: 84.5,-10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11829 components: - pos: 85.5,-10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11830 components: - pos: 83.5,-9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11831 components: - pos: 83.5,-8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11832 components: - pos: 83.5,-7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11833 components: - pos: 83.5,-6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11834 components: - pos: 85.5,-6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11835 components: - pos: 84.5,-6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11836 components: - pos: 79.5,-9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11837 components: - pos: 79.5,-8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11838 components: - pos: 79.5,-7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11839 components: - pos: 79.5,-6.5 @@ -25294,15 +24018,11 @@ entities: - pos: 79.5,-4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11842 components: - pos: 78.5,-4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11843 components: - pos: 77.5,-4.5 @@ -25313,29 +24033,21 @@ entities: - pos: 76.5,-4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11845 components: - pos: 80.5,-4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11846 components: - pos: 81.5,-4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11847 components: - pos: 82.5,-4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11848 components: - pos: 79.5,-3.5 @@ -25356,71 +24068,51 @@ entities: - pos: 79.5,-0.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11852 components: - pos: 78.5,-0.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11853 components: - pos: 80.5,-0.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11854 components: - pos: 81.5,-0.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11855 components: - pos: 82.5,-0.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11856 components: - pos: 83.5,-0.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11857 components: - pos: 83.5,-1.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11858 components: - pos: 83.5,-2.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11859 components: - pos: 84.5,-2.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11860 components: - pos: 85.5,-2.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11861 components: - pos: 80.5,-12.5 @@ -25441,78 +24133,56 @@ entities: - pos: 80.5,-14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11865 components: - pos: 80.5,-15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11866 components: - pos: 80.5,-16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11867 components: - pos: 79.5,-16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11868 components: - pos: 78.5,-16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11869 components: - pos: 81.5,-14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11870 components: - pos: 82.5,-14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11871 components: - pos: 83.5,-14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11872 components: - pos: 84.5,-14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11873 components: - pos: 85.5,-14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11919 components: - pos: -6.5,2.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11920 components: - pos: -6.5,3.5 @@ -25523,29 +24193,21 @@ entities: - pos: -6.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11926 components: - pos: -5.5,2.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11927 components: - pos: -7.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11928 components: - pos: -7.5,6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11929 components: - pos: -6.5,6.5 @@ -25566,8 +24228,6 @@ entities: - pos: -7.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11933 components: - pos: -5.5,6.5 @@ -25588,15 +24248,11 @@ entities: - pos: -2.5,6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11937 components: - pos: -2.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11938 components: - pos: -3.5,4.5 @@ -25677,15 +24333,11 @@ entities: - pos: -12.5,0.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11954 components: - pos: -10.5,0.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11955 components: - pos: -10.5,4.5 @@ -25721,85 +24373,61 @@ entities: - pos: -31.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12098 components: - pos: -30.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12099 components: - pos: -33.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12100 components: - pos: -30.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12101 components: - pos: -29.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12102 components: - pos: -28.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12103 components: - pos: -27.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12104 components: - pos: -35.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12105 components: - pos: -35.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12106 components: - pos: -34.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12107 components: - pos: -34.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12108 components: - pos: -33.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12109 components: - pos: -31.5,6.5 @@ -25835,225 +24463,161 @@ entities: - pos: -32.5,1.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12116 components: - pos: -30.5,1.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12117 components: - pos: -30.5,0.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12118 components: - pos: -29.5,0.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12119 components: - pos: -28.5,0.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12120 components: - pos: -27.5,0.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12121 components: - pos: -32.5,0.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12122 components: - pos: -33.5,0.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12123 components: - pos: -34.5,0.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12124 components: - pos: -35.5,0.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12190 components: - pos: -62.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12192 components: - pos: -60.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12193 components: - pos: -61.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12194 components: - pos: -58.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12195 components: - pos: -60.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12196 components: - pos: -61.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12197 components: - pos: -61.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12198 components: - pos: -61.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12199 components: - pos: -61.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12200 components: - pos: -61.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12201 components: - pos: -61.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12202 components: - pos: -46.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12204 components: - pos: -44.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12205 components: - pos: -40.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12206 components: - pos: -41.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12207 components: - pos: -43.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12208 components: - pos: -43.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12209 components: - pos: -42.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12214 components: - pos: -56.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12215 components: - pos: -59.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12216 components: - pos: -57.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12217 components: - pos: -57.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12219 components: - pos: -51.5,14.5 @@ -26064,36 +24628,26 @@ entities: - pos: -46.5,20.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12221 components: - pos: -48.5,19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12222 components: - pos: -49.5,19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12226 components: - pos: -50.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12276 components: - pos: -43.5,6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12277 components: - pos: -43.5,5.5 @@ -26129,8 +24683,6 @@ entities: - pos: -44.5,0.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12284 components: - pos: -45.5,0.5 @@ -26141,8 +24693,6 @@ entities: - pos: -46.5,0.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12286 components: - pos: -45.5,3.5 @@ -26198,15 +24748,11 @@ entities: - pos: -39.5,0.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12297 components: - pos: -37.5,0.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12326 components: - pos: -41.5,3.5 @@ -26222,8 +24768,6 @@ entities: - pos: -57.5,6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12335 components: - pos: -57.5,5.5 @@ -26244,8 +24788,6 @@ entities: - pos: -57.5,2.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12339 components: - pos: -58.5,2.5 @@ -26256,8 +24798,6 @@ entities: - pos: -59.5,2.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12341 components: - pos: -58.5,4.5 @@ -26278,15 +24818,11 @@ entities: - pos: -52.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12381 components: - pos: -58.5,16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12409 components: - pos: -66.5,17.5 @@ -26312,8 +24848,6 @@ entities: - pos: -68.5,18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12415 components: - pos: -66.5,14.5 @@ -26339,8 +24873,6 @@ entities: - pos: -67.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12420 components: - pos: -67.5,13.5 @@ -26351,22 +24883,16 @@ entities: - pos: -68.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12422 components: - pos: -68.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12424 components: - pos: -64.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12425 components: - pos: -65.5,14.5 @@ -26447,8 +24973,6 @@ entities: - pos: -79.5,-4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12513 components: - pos: -75.5,8.5 @@ -26629,15 +25153,11 @@ entities: - pos: -75.5,-16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12565 components: - pos: -76.5,-17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12566 components: - pos: -72.5,-15.5 @@ -26653,57 +25173,41 @@ entities: - pos: -72.5,-17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12569 components: - pos: -73.5,-17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12570 components: - pos: -71.5,-17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12571 components: - pos: -70.5,-17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12572 components: - pos: -67.5,-15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12573 components: - pos: -67.5,-16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12574 components: - pos: -67.5,-17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12575 components: - pos: -66.5,-16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12576 components: - pos: -64.5,-10.5 @@ -26714,57 +25218,41 @@ entities: - pos: -65.5,-10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12578 components: - pos: -66.5,-10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12579 components: - pos: -67.5,-10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12580 components: - pos: -66.5,-11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12581 components: - pos: -62.5,-0.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12582 components: - pos: -62.5,-1.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12583 components: - pos: -62.5,-2.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12584 components: - pos: -62.5,-3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12585 components: - pos: -63.5,-3.5 @@ -26775,36 +25263,26 @@ entities: - pos: -65.5,2.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12587 components: - pos: -65.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12588 components: - pos: -65.5,4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12589 components: - pos: -65.5,1.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12590 components: - pos: -65.5,0.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12591 components: - pos: -73.5,-14.5 @@ -26815,57 +25293,41 @@ entities: - pos: -72.5,-12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12593 components: - pos: -74.5,-12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12594 components: - pos: -75.5,-12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12595 components: - pos: -71.5,-12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12596 components: - pos: -70.5,-12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12597 components: - pos: -69.5,-12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12598 components: - pos: -68.5,-12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12599 components: - pos: -73.5,-12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12600 components: - pos: -62.5,-4.5 @@ -27061,57 +25523,41 @@ entities: - pos: -74.5,-6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12649 components: - pos: -75.5,-6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12650 components: - pos: -73.5,-6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12651 components: - pos: -72.5,-6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12652 components: - pos: -71.5,-6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12653 components: - pos: -70.5,-6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12654 components: - pos: -69.5,-6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12655 components: - pos: -68.5,-6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12656 components: - pos: -69.5,-5.5 @@ -27132,36 +25578,26 @@ entities: - pos: -25.5,0.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12668 components: - pos: -30.5,-3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12669 components: - pos: -30.5,-4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12670 components: - pos: -30.5,-5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12671 components: - pos: -30.5,-6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12672 components: - pos: -63.5,9.5 @@ -27562,8 +25998,6 @@ entities: - pos: 51.5,-5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12796 components: - pos: 72.5,-13.5 @@ -27849,92 +26283,66 @@ entities: - pos: -66.5,19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12885 components: - pos: -67.5,19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12886 components: - pos: -67.5,20.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12887 components: - pos: -67.5,21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12888 components: - pos: -65.5,19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12889 components: - pos: -65.5,20.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12890 components: - pos: -65.5,21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12891 components: - pos: -68.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12892 components: - pos: -68.5,18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12893 components: - pos: -68.5,16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12894 components: - pos: -68.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12895 components: - pos: -68.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12909 components: - pos: -14.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12910 components: - pos: -15.5,-18.5 @@ -28570,29 +26978,21 @@ entities: - pos: -4.5,0.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13047 components: - pos: -4.5,1.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13048 components: - pos: -5.5,0.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13049 components: - pos: -6.5,0.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13050 components: - pos: 3.5,-0.5 @@ -28603,29 +27003,21 @@ entities: - pos: 3.5,0.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13052 components: - pos: 3.5,1.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13053 components: - pos: 4.5,0.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13054 components: - pos: 5.5,0.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13055 components: - pos: -15.5,-8.5 @@ -28651,120 +27043,86 @@ entities: - pos: -49.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13121 components: - pos: -48.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13127 components: - pos: -51.5,22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13128 components: - pos: -50.5,22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13129 components: - pos: -49.5,22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13130 components: - pos: -49.5,23.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13131 components: - pos: -49.5,24.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13132 components: - pos: -50.5,24.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13133 components: - pos: -51.5,24.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13134 components: - pos: -50.5,25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13135 components: - pos: -50.5,26.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13136 components: - pos: -49.5,26.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13137 components: - pos: -48.5,26.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13144 components: - pos: -48.5,16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13145 components: - pos: -49.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13146 components: - pos: -52.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13269 components: - pos: -39.5,20.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13270 components: - pos: -40.5,20.5 @@ -28795,43 +27153,31 @@ entities: - pos: -37.5,20.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13278 components: - pos: -35.5,20.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13279 components: - pos: -36.5,20.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13280 components: - pos: -34.5,20.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13281 components: - pos: -33.5,20.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13282 components: - pos: -33.5,21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13283 components: - pos: -32.5,21.5 @@ -28847,29 +27193,21 @@ entities: - pos: -33.5,25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13288 components: - pos: -34.5,25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13289 components: - pos: -35.5,25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13290 components: - pos: -32.5,25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13292 components: - pos: -31.5,22.5 @@ -28880,29 +27218,21 @@ entities: - pos: -30.5,23.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13295 components: - pos: -29.5,23.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13296 components: - pos: -29.5,24.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13297 components: - pos: -29.5,22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13298 components: - pos: -31.5,20.5 @@ -28918,22 +27248,16 @@ entities: - pos: -29.5,19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13302 components: - pos: -29.5,20.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13303 components: - pos: -29.5,18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13304 components: - pos: -32.5,19.5 @@ -28944,71 +27268,51 @@ entities: - pos: 57.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13387 components: - pos: -31.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13392 components: - pos: -31.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13436 components: - pos: -51.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13437 components: - pos: -48.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13438 components: - pos: -48.5,15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13456 components: - pos: -51.5,15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13458 components: - pos: -58.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13459 components: - pos: -56.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13465 components: - pos: -25.5,1.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13466 components: - pos: -30.5,-2.5 @@ -29019,29 +27323,21 @@ entities: - pos: -20.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13515 components: - pos: -21.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13516 components: - pos: -21.5,4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13517 components: - pos: -21.5,2.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13518 components: - pos: -20.5,2.5 @@ -29052,8 +27348,6 @@ entities: - pos: -22.5,2.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13520 components: - pos: -19.5,2.5 @@ -29064,8 +27358,6 @@ entities: - pos: -21.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13522 components: - pos: -21.5,6.5 @@ -29076,722 +27368,516 @@ entities: - pos: -20.5,6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13548 components: - pos: -55.5,16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13549 components: - pos: -55.5,15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13550 components: - pos: -58.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13551 components: - pos: -58.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13552 components: - pos: -58.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13553 components: - pos: -47.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13554 components: - pos: -47.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13555 components: - pos: -47.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13556 components: - pos: -48.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13557 components: - pos: -49.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13558 components: - pos: -49.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13559 components: - pos: -49.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13560 components: - pos: -49.5,6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13561 components: - pos: -49.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13562 components: - pos: -49.5,4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13563 components: - pos: -49.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13564 components: - pos: -49.5,2.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13565 components: - pos: -46.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13566 components: - pos: -46.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13567 components: - pos: -46.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13568 components: - pos: -31.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13569 components: - pos: -31.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13570 components: - pos: -28.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13571 components: - pos: -27.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13572 components: - pos: -36.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13573 components: - pos: -37.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13574 components: - pos: -39.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13575 components: - pos: -38.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13576 components: - pos: -38.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13577 components: - pos: -38.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13578 components: - pos: -38.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13579 components: - pos: -29.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13580 components: - pos: -30.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13581 components: - pos: -32.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13582 components: - pos: -31.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13583 components: - pos: -32.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13584 components: - pos: -26.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13585 components: - pos: -25.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13586 components: - pos: -39.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13587 components: - pos: -38.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13591 components: - pos: -52.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13593 components: - pos: -55.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13595 components: - pos: -38.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13596 components: - pos: -37.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13597 components: - pos: -35.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13598 components: - pos: -36.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13599 components: - pos: -32.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13600 components: - pos: -32.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13601 components: - pos: -32.5,15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13602 components: - pos: -32.5,16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13603 components: - pos: -30.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13604 components: - pos: -30.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13605 components: - pos: -30.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13606 components: - pos: -30.5,15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13607 components: - pos: -30.5,16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13608 components: - pos: -25.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13609 components: - pos: -25.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13610 components: - pos: -25.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13611 components: - pos: -25.5,6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13612 components: - pos: -25.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13613 components: - pos: -25.5,4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13614 components: - pos: -25.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13615 components: - pos: -25.5,2.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13616 components: - pos: -24.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13617 components: - pos: -23.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13621 components: - pos: -22.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13622 components: - pos: -21.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13623 components: - pos: -20.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13624 components: - pos: -19.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13625 components: - pos: -18.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13626 components: - pos: -17.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13627 components: - pos: -16.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13628 components: - pos: -16.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13629 components: - pos: -16.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13630 components: - pos: -16.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13631 components: - pos: -16.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13632 components: - pos: -16.5,15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13633 components: - pos: -16.5,16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13634 components: - pos: -15.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13635 components: - pos: -14.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13636 components: - pos: -13.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13637 components: - pos: -12.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13638 components: - pos: -11.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13639 components: - pos: -10.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13640 components: - pos: -9.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13641 components: - pos: -8.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13642 components: - pos: -7.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13643 components: - pos: -6.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13644 components: - pos: -5.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13645 components: - pos: -16.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13646 components: - pos: -4.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13647 components: - pos: -16.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13648 components: - pos: -16.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13649 components: - pos: -16.5,6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13650 components: - pos: -16.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13651 components: - pos: -16.5,4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13652 components: - pos: -16.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13653 components: - pos: -16.5,2.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13654 components: - pos: -20.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13655 components: - pos: -20.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13656 components: - pos: -20.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13657 components: - pos: -3.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13658 components: - pos: -1.5,11.5 @@ -29802,57 +27888,41 @@ entities: - pos: -2.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13665 components: - pos: 12.5,-80.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13693 components: - pos: -55.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13694 components: - pos: -58.5,15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13743 components: - pos: -20.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13744 components: - pos: -21.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13757 components: - pos: -50.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13758 components: - pos: -51.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13759 components: - pos: -52.5,3.5 @@ -29863,8 +27933,6 @@ entities: - pos: -53.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13761 components: - pos: -53.5,4.5 @@ -29880,50 +27948,36 @@ entities: - pos: -59.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13920 components: - pos: -60.5,-17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13921 components: - pos: -59.5,-17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13922 components: - pos: -58.5,-17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13923 components: - pos: -58.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13924 components: - pos: -58.5,-19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13925 components: - pos: -57.5,-19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13926 components: - pos: -61.5,-17.5 @@ -29949,8 +28003,6 @@ entities: - pos: -65.5,-2.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13931 components: - pos: -64.5,-2.5 @@ -29961,442 +28013,316 @@ entities: - pos: -30.5,-7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14011 components: - pos: -30.5,-8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14012 components: - pos: -29.5,-8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14013 components: - pos: -28.5,-8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14014 components: - pos: -27.5,-8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14015 components: - pos: -26.5,-8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14016 components: - pos: -26.5,-9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14017 components: - pos: -26.5,-10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14018 components: - pos: -26.5,-11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14019 components: - pos: -26.5,-12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14020 components: - pos: -31.5,-8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14021 components: - pos: -32.5,-8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14022 components: - pos: -33.5,-8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14023 components: - pos: -34.5,-8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14024 components: - pos: -34.5,-9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14025 components: - pos: -34.5,-10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14026 components: - pos: -34.5,-11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14027 components: - pos: -34.5,-12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14028 components: - pos: -34.5,-13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14029 components: - pos: -34.5,-14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14030 components: - pos: -34.5,-15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14031 components: - pos: -34.5,-16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14032 components: - pos: -35.5,-16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14033 components: - pos: -36.5,-16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14034 components: - pos: -37.5,-16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14035 components: - pos: -38.5,-16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14036 components: - pos: -39.5,-16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14037 components: - pos: -39.5,-17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14038 components: - pos: -39.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14039 components: - pos: -39.5,-15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14040 components: - pos: -40.5,-15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14041 components: - pos: -41.5,-15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14042 components: - pos: -40.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14043 components: - pos: -41.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14044 components: - pos: -42.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14045 components: - pos: -43.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14046 components: - pos: -44.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14047 components: - pos: -45.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14048 components: - pos: -46.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14049 components: - pos: -47.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14050 components: - pos: -48.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14051 components: - pos: -49.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14052 components: - pos: -50.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14053 components: - pos: -50.5,-17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14054 components: - pos: -50.5,-16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14055 components: - pos: -50.5,-15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14056 components: - pos: -51.5,-15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14057 components: - pos: -52.5,-15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14058 components: - pos: -53.5,-15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14059 components: - pos: -54.5,-15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14060 components: - pos: -55.5,-15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14061 components: - pos: -55.5,-14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14062 components: - pos: -55.5,-13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14063 components: - pos: -56.5,-13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14064 components: - pos: -57.5,-13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14065 components: - pos: -58.5,-13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14066 components: - pos: -59.5,-13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14067 components: - pos: -60.5,-13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14068 components: - pos: -50.5,-14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14069 components: - pos: -50.5,-13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14070 components: - pos: -50.5,-12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14071 components: - pos: -50.5,-11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14072 components: - pos: -52.5,-16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14103 components: - pos: 6.5,-34.5 @@ -30417,43 +28343,31 @@ entities: - pos: 19.5,-15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14159 components: - pos: -39.5,-37.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14160 components: - pos: -38.5,-37.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14163 components: - pos: -40.5,-37.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14164 components: - pos: -41.5,-37.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14166 components: - pos: -37.5,-37.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14175 components: - pos: -50.5,-5.5 @@ -30464,8 +28378,6 @@ entities: - pos: -44.5,-9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14272 components: - pos: -43.5,-9.5 @@ -30606,8 +28518,6 @@ entities: - pos: -27.5,-4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14322 components: - pos: -27.5,-3.5 @@ -30618,8 +28528,6 @@ entities: - pos: -27.5,-5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14324 components: - pos: -21.5,-2.5 @@ -30655,8 +28563,6 @@ entities: - pos: -53.5,-9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14408 components: - pos: -54.5,-9.5 @@ -30717,8 +28623,6 @@ entities: - pos: -19.5,-10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14478 components: - pos: -20.5,-10.5 @@ -30819,8 +28723,6 @@ entities: - pos: -34.5,-29.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14654 components: - pos: -31.5,-21.5 @@ -30881,15 +28783,11 @@ entities: - pos: -34.5,-27.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14666 components: - pos: -34.5,-26.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14667 components: - pos: -38.5,-26.5 @@ -30925,85 +28823,61 @@ entities: - pos: -60.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14676 components: - pos: -58.5,-20.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14677 components: - pos: -58.5,-21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14678 components: - pos: -59.5,-21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14679 components: - pos: -60.5,-21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14680 components: - pos: -60.5,-20.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14681 components: - pos: -54.5,-19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14682 components: - pos: -53.5,-19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14683 components: - pos: -54.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14684 components: - pos: -54.5,-17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14685 components: - pos: -53.5,-17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14686 components: - pos: -52.5,-17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14704 components: - pos: -38.5,-27.5 @@ -31069,8 +28943,6 @@ entities: - pos: -29.5,-34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14717 components: - pos: -29.5,-35.5 @@ -31091,57 +28963,41 @@ entities: - pos: -30.5,-37.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14721 components: - pos: -31.5,-37.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14722 components: - pos: -32.5,-37.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14725 components: - pos: -33.5,-35.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14726 components: - pos: -32.5,-35.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14728 components: - pos: -33.5,-39.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14729 components: - pos: -32.5,-39.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14730 components: - pos: -31.5,-39.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14731 components: - pos: -28.5,-37.5 @@ -31222,29 +29078,21 @@ entities: - pos: -27.5,-39.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14747 components: - pos: -28.5,-39.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14748 components: - pos: -26.5,-39.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14749 components: - pos: -18.5,-30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14750 components: - pos: -19.5,-30.5 @@ -31275,15 +29123,11 @@ entities: - pos: -23.5,-29.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14756 components: - pos: -23.5,-31.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14762 components: - pos: -33.5,-30.5 @@ -31314,8 +29158,6 @@ entities: - pos: -29.5,-29.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14769 components: - pos: -31.5,-29.5 @@ -31331,29 +29173,21 @@ entities: - pos: -31.5,-32.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14774 components: - pos: -32.5,-32.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14775 components: - pos: -33.5,-32.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14777 components: - pos: -25.5,-20.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14778 components: - pos: -26.5,-19.5 @@ -31384,8 +29218,6 @@ entities: - pos: -18.5,-19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14784 components: - pos: -18.5,-18.5 @@ -31406,15 +29238,11 @@ entities: - pos: -18.5,-17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14788 components: - pos: -18.5,-17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14789 components: - pos: -19.5,-18.5 @@ -31510,15 +29338,11 @@ entities: - pos: -18.5,-22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14808 components: - pos: -18.5,-21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14809 components: - pos: -19.5,-21.5 @@ -31544,15 +29368,11 @@ entities: - pos: -18.5,-26.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14814 components: - pos: -18.5,-25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14815 components: - pos: -20.5,-24.5 @@ -31593,29 +29413,21 @@ entities: - pos: -23.5,-23.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14823 components: - pos: -23.5,-25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14824 components: - pos: -23.5,-21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14826 components: - pos: -24.5,-20.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14828 components: - pos: -27.5,-24.5 @@ -31656,15 +29468,11 @@ entities: - pos: -29.5,-19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14836 components: - pos: -29.5,-22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14837 components: - pos: -26.5,-22.5 @@ -31680,8 +29488,6 @@ entities: - pos: -23.5,-23.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14840 components: - pos: -25.5,-22.5 @@ -31707,29 +29513,21 @@ entities: - pos: -20.5,-28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14845 components: - pos: -19.5,-28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14846 components: - pos: -21.5,-28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14847 components: - pos: -22.5,-28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14916 components: - pos: -3.5,-13.5 @@ -31760,1555 +29558,1111 @@ entities: - pos: -17.5,-35.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15071 components: - pos: -17.5,-34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15072 components: - pos: -17.5,-33.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15073 components: - pos: -18.5,-33.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15074 components: - pos: -19.5,-33.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15075 components: - pos: -20.5,-33.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15076 components: - pos: -17.5,-36.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15077 components: - pos: -17.5,-37.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15078 components: - pos: -17.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15079 components: - pos: -17.5,-39.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15080 components: - pos: -17.5,-40.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15081 components: - pos: -17.5,-41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15082 components: - pos: -17.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15083 components: - pos: -17.5,-43.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15084 components: - pos: -17.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15085 components: - pos: -17.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15086 components: - pos: -17.5,-46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15087 components: - pos: -17.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15088 components: - pos: -16.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15089 components: - pos: -15.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15090 components: - pos: -14.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15091 components: - pos: -13.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15092 components: - pos: -12.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15093 components: - pos: -11.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15094 components: - pos: -10.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15095 components: - pos: -9.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15096 components: - pos: -8.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15097 components: - pos: -7.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15098 components: - pos: -6.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15099 components: - pos: -5.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15100 components: - pos: -4.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15101 components: - pos: -3.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15107 components: - pos: -12.5,-46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15108 components: - pos: -12.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15109 components: - pos: -18.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15110 components: - pos: -18.5,-48.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15111 components: - pos: -18.5,-49.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15112 components: - pos: -18.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15113 components: - pos: -18.5,-51.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15114 components: - pos: -18.5,-52.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15115 components: - pos: -18.5,-53.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15116 components: - pos: -18.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15117 components: - pos: -18.5,-55.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15118 components: - pos: -18.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15119 components: - pos: -18.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15120 components: - pos: -18.5,-58.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15121 components: - pos: -18.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15122 components: - pos: -18.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15123 components: - pos: -17.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15124 components: - pos: -16.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15125 components: - pos: -15.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15130 components: - pos: 13.5,-55.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15131 components: - pos: -10.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15132 components: - pos: -9.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15133 components: - pos: -8.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15134 components: - pos: -7.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15135 components: - pos: 14.5,-55.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15140 components: - pos: 15.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15141 components: - pos: -15.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15142 components: - pos: -15.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15143 components: - pos: -15.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15144 components: - pos: -15.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15145 components: - pos: -15.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15146 components: - pos: -16.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15147 components: - pos: -17.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15148 components: - pos: -17.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15149 components: - pos: -19.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15150 components: - pos: -20.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15151 components: - pos: -21.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15152 components: - pos: -22.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15153 components: - pos: -23.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15154 components: - pos: -24.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15155 components: - pos: -25.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15156 components: - pos: -26.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15157 components: - pos: -27.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15158 components: - pos: -28.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15159 components: - pos: -29.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15160 components: - pos: -30.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15161 components: - pos: -31.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15162 components: - pos: -31.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15163 components: - pos: -31.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15164 components: - pos: -31.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15165 components: - pos: -31.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15166 components: - pos: -31.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15167 components: - pos: -31.5,-66.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15168 components: - pos: -31.5,-67.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15169 components: - pos: -31.5,-68.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15170 components: - pos: -31.5,-69.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15171 components: - pos: -31.5,-70.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15172 components: - pos: -31.5,-71.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15173 components: - pos: -31.5,-72.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15174 components: - pos: -31.5,-73.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15175 components: - pos: -30.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15176 components: - pos: -29.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15177 components: - pos: -19.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15178 components: - pos: -20.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15179 components: - pos: -21.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15180 components: - pos: -22.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15181 components: - pos: -23.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15182 components: - pos: -24.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15183 components: - pos: -25.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15184 components: - pos: -26.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15185 components: - pos: -27.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15186 components: - pos: -28.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15187 components: - pos: -29.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15188 components: - pos: -30.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15189 components: - pos: -31.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15190 components: - pos: -18.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15191 components: - pos: -19.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15192 components: - pos: -20.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15193 components: - pos: -21.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15194 components: - pos: -21.5,-43.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15195 components: - pos: -22.5,-43.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15196 components: - pos: -23.5,-43.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15197 components: - pos: -23.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15198 components: - pos: -24.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15199 components: - pos: -25.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15200 components: - pos: -26.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15201 components: - pos: -27.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15202 components: - pos: -28.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15203 components: - pos: -29.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15204 components: - pos: -30.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15205 components: - pos: -31.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15206 components: - pos: -32.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15207 components: - pos: -33.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15209 components: - pos: -35.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15210 components: - pos: -36.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15211 components: - pos: -37.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15212 components: - pos: -16.5,-35.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15213 components: - pos: -16.5,-36.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15214 components: - pos: -16.5,-37.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15215 components: - pos: -16.5,-39.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15216 components: - pos: -16.5,-40.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15217 components: - pos: -16.5,-41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15218 components: - pos: -16.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15219 components: - pos: -16.5,-43.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15220 components: - pos: -16.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15221 components: - pos: -18.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15222 components: - pos: -18.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15223 components: - pos: -20.5,-46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15224 components: - pos: -21.5,-46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15225 components: - pos: -22.5,-46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15226 components: - pos: -22.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15227 components: - pos: -21.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15228 components: - pos: -23.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15229 components: - pos: -21.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15230 components: - pos: -22.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15231 components: - pos: -23.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15232 components: - pos: -24.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15233 components: - pos: -25.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15234 components: - pos: -26.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15235 components: - pos: -27.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15236 components: - pos: -28.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15237 components: - pos: -29.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15238 components: - pos: -29.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15239 components: - pos: -28.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15240 components: - pos: -28.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15241 components: - pos: -32.5,-67.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15242 components: - pos: -32.5,-68.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15243 components: - pos: -32.5,-69.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15244 components: - pos: -32.5,-70.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15245 components: - pos: -30.5,-67.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15246 components: - pos: -30.5,-68.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15247 components: - pos: -30.5,-69.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15248 components: - pos: -30.5,-70.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15249 components: - pos: -32.5,-73.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15250 components: - pos: -33.5,-73.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15251 components: - pos: -33.5,-74.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15252 components: - pos: -33.5,-75.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15253 components: - pos: -32.5,-75.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15254 components: - pos: -31.5,-75.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15255 components: - pos: -30.5,-75.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15256 components: - pos: -27.5,-43.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15257 components: - pos: -28.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15258 components: - pos: -27.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15259 components: - pos: -26.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15260 components: - pos: -25.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15261 components: - pos: -35.5,-43.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15262 components: - pos: -35.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15263 components: - pos: -37.5,-43.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15264 components: - pos: -37.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15265 components: - pos: -37.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15266 components: - pos: -38.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15267 components: - pos: -39.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15268 components: - pos: -18.5,-39.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15269 components: - pos: -19.5,-39.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15270 components: - pos: -20.5,-39.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15271 components: - pos: -21.5,-39.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15272 components: - pos: -21.5,-40.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15273 components: - pos: -22.5,-40.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15274 components: - pos: -12.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15275 components: - pos: -12.5,-43.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15276 components: - pos: -13.5,-43.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15277 components: - pos: -13.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15279 components: - pos: -37.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15280 components: - pos: -37.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15283 components: - pos: -37.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15284 components: - pos: -38.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15285 components: - pos: -39.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15286 components: - pos: -32.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15287 components: - pos: -32.5,-48.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15288 components: - pos: -41.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15289 components: - pos: -40.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15290 components: - pos: -39.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15291 components: - pos: -39.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15292 components: - pos: -32.5,-49.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15293 components: - pos: -32.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15294 components: - pos: -33.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15295 components: - pos: -34.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15296 components: - pos: -35.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15297 components: - pos: -36.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15301 components: - pos: -37.5,-51.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15302 components: - pos: -36.5,-51.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15305 components: - pos: 21.5,-46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15306 components: - pos: 19.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15308 components: - pos: 16.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15313 components: - pos: -29.5,-26.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15369 components: - pos: -3.5,-24.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15434 components: - pos: -34.5,-28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15458 components: - pos: 17.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15465 components: - pos: 14.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15466 components: - pos: 20.5,-55.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15481 components: - pos: -0.5,-22.5 @@ -33324,372 +30678,266 @@ entities: - pos: 15.5,-55.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15499 components: - pos: 17.5,-55.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15500 components: - pos: 18.5,-55.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15503 components: - pos: -33.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15504 components: - pos: 16.5,-55.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15518 components: - pos: 20.5,-41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15520 components: - pos: 20.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15528 components: - pos: 18.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15575 components: - pos: -36.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15601 components: - pos: -33.5,-51.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15646 components: - pos: -19.5,-53.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15647 components: - pos: -20.5,-53.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15648 components: - pos: -21.5,-53.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15649 components: - pos: -21.5,-52.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15650 components: - pos: -21.5,-51.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15651 components: - pos: -21.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15652 components: - pos: -28.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15653 components: - pos: -27.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15654 components: - pos: -26.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15655 components: - pos: -25.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15656 components: - pos: -24.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15657 components: - pos: -23.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15658 components: - pos: -22.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15659 components: - pos: -31.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15660 components: - pos: -31.5,-58.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15661 components: - pos: -31.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15662 components: - pos: -31.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15663 components: - pos: -32.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15664 components: - pos: -33.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15665 components: - pos: -28.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15666 components: - pos: -21.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15669 components: - pos: -21.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15670 components: - pos: -22.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15671 components: - pos: -23.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15672 components: - pos: -24.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15673 components: - pos: -25.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15674 components: - pos: -26.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15675 components: - pos: -27.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15676 components: - pos: -34.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15677 components: - pos: -35.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15678 components: - pos: -36.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15679 components: - pos: -37.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15680 components: - pos: -33.5,-55.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15681 components: - pos: -33.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15702 components: - pos: -38.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15703 components: - pos: -36.5,-55.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15704 components: - pos: -36.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15705 components: - pos: -37.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15706 components: - pos: -38.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15707 components: - pos: -36.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15708 components: - pos: -36.5,-58.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15709 components: - pos: -37.5,-58.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15710 components: - pos: -38.5,-58.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15721 components: - pos: -0.5,-20.5 @@ -33705,50 +30953,36 @@ entities: - pos: -34.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15800 components: - pos: -33.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15870 components: - pos: -21.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15927 components: - pos: -21.5,-55.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16153 components: - pos: -19.5,-73.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16212 components: - pos: 12.5,-69.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16250 components: - pos: -11.5,-35.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16251 components: - pos: -10.5,-35.5 @@ -33864,106 +31098,76 @@ entities: - pos: -14.5,-36.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16275 components: - pos: -14.5,-35.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16276 components: - pos: -14.5,-34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16277 components: - pos: -14.5,-37.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16278 components: - pos: -14.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16279 components: - pos: -13.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16280 components: - pos: -12.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16281 components: - pos: -11.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16282 components: - pos: -11.5,-34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16283 components: - pos: -12.5,-34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16284 components: - pos: -13.5,-34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16332 components: - pos: -8.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16333 components: - pos: -9.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16334 components: - pos: -11.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16335 components: - pos: -10.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16346 components: - pos: -0.5,-51.5 @@ -33994,8 +31198,6 @@ entities: - pos: -7.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16359 components: - pos: -0.5,-56.5 @@ -34011,15 +31213,11 @@ entities: - pos: -4.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16362 components: - pos: -6.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16369 components: - pos: -0.5,-55.5 @@ -34035,8 +31233,6 @@ entities: - pos: -5.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16374 components: - pos: -0.5,-50.5 @@ -34127,15 +31323,11 @@ entities: - pos: -7.5,-43.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16393 components: - pos: -7.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16462 components: - pos: -7.5,-54.5 @@ -34146,8 +31338,6 @@ entities: - pos: -8.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16464 components: - pos: -6.5,-54.5 @@ -34268,92 +31458,66 @@ entities: - pos: -9.5,-52.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16488 components: - pos: -9.5,-51.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16489 components: - pos: -9.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16490 components: - pos: -9.5,-49.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16491 components: - pos: -9.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16492 components: - pos: -9.5,-55.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16493 components: - pos: -9.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16494 components: - pos: -9.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16495 components: - pos: -10.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16496 components: - pos: -10.5,-52.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16497 components: - pos: -7.5,-52.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16498 components: - pos: -5.5,-52.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16503 components: - pos: 26.5,-70.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16506 components: - pos: 12.5,-83.5 @@ -34364,8 +31528,6 @@ entities: - pos: 26.5,-69.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16514 components: - pos: 7.5,-41.5 @@ -34386,8 +31548,6 @@ entities: - pos: 2.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16518 components: - pos: 4.5,-41.5 @@ -34428,15 +31588,11 @@ entities: - pos: 8.5,-43.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16528 components: - pos: 8.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16529 components: - pos: 6.5,-44.5 @@ -34447,8 +31603,6 @@ entities: - pos: -0.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16546 components: - pos: 14.5,-83.5 @@ -34459,22 +31613,16 @@ entities: - pos: -2.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16556 components: - pos: 8.5,-41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16559 components: - pos: 11.5,-41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16560 components: - pos: 12.5,-41.5 @@ -34510,36 +31658,26 @@ entities: - pos: 13.5,-46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16567 components: - pos: 13.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16568 components: - pos: 12.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16569 components: - pos: 11.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16570 components: - pos: 10.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16571 components: - pos: 14.5,-41.5 @@ -34550,29 +31688,21 @@ entities: - pos: 15.5,-41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16573 components: - pos: 15.5,-40.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16574 components: - pos: 15.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16575 components: - pos: 15.5,-43.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16576 components: - pos: 14.5,-44.5 @@ -34583,848 +31713,606 @@ entities: - pos: 15.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16578 components: - pos: 16.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16579 components: - pos: 17.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16580 components: - pos: 18.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16581 components: - pos: 19.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16582 components: - pos: 20.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16583 components: - pos: 21.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16584 components: - pos: 22.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16585 components: - pos: 23.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16586 components: - pos: 24.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16587 components: - pos: 25.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16588 components: - pos: 26.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16589 components: - pos: 27.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16590 components: - pos: 28.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16591 components: - pos: 29.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16592 components: - pos: 29.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16593 components: - pos: 29.5,-43.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16594 components: - pos: 29.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16595 components: - pos: 29.5,-41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16596 components: - pos: 28.5,-41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16597 components: - pos: 27.5,-41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16598 components: - pos: 26.5,-41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16599 components: - pos: 25.5,-41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16600 components: - pos: 25.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16602 components: - pos: 25.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16603 components: - pos: 25.5,-46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16605 components: - pos: 25.5,-48.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16606 components: - pos: 25.5,-49.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16607 components: - pos: 25.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16608 components: - pos: 25.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16609 components: - pos: 25.5,-52.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16610 components: - pos: 25.5,-53.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16611 components: - pos: 25.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16612 components: - pos: 25.5,-55.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16613 components: - pos: 25.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16614 components: - pos: 25.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16615 components: - pos: 26.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16616 components: - pos: 27.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16617 components: - pos: 28.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16618 components: - pos: 29.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16619 components: - pos: 29.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16620 components: - pos: 29.5,-55.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16621 components: - pos: 29.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16622 components: - pos: 29.5,-53.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16623 components: - pos: 29.5,-52.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16624 components: - pos: 29.5,-51.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16625 components: - pos: 29.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16626 components: - pos: 29.5,-49.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16627 components: - pos: 29.5,-48.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16628 components: - pos: 29.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16629 components: - pos: 29.5,-46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16630 components: - pos: 28.5,-49.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16631 components: - pos: 27.5,-49.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16632 components: - pos: 26.5,-49.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16633 components: - pos: 28.5,-53.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16634 components: - pos: 27.5,-53.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16635 components: - pos: 26.5,-53.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16636 components: - pos: 23.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16637 components: - pos: 23.5,-43.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16638 components: - pos: 23.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16639 components: - pos: 23.5,-41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16640 components: - pos: 23.5,-40.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16641 components: - pos: 23.5,-46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16642 components: - pos: 23.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16643 components: - pos: 23.5,-48.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16644 components: - pos: 23.5,-49.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16645 components: - pos: 23.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16646 components: - pos: 23.5,-51.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16647 components: - pos: 23.5,-52.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16648 components: - pos: 23.5,-53.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16649 components: - pos: 23.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16650 components: - pos: 23.5,-55.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16651 components: - pos: 23.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16652 components: - pos: 23.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16653 components: - pos: 15.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16655 components: - pos: 17.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16656 components: - pos: 17.5,-43.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16661 components: - pos: 12.5,-48.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16662 components: - pos: 12.5,-49.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16663 components: - pos: 12.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16664 components: - pos: 12.5,-51.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16665 components: - pos: 12.5,-52.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16666 components: - pos: 12.5,-53.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16667 components: - pos: 12.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16668 components: - pos: 12.5,-55.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16669 components: - pos: 12.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16670 components: - pos: 12.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16671 components: - pos: 12.5,-58.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16672 components: - pos: 12.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16673 components: - pos: 13.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16674 components: - pos: 14.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16675 components: - pos: 15.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16676 components: - pos: 16.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16677 components: - pos: 17.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16678 components: - pos: 18.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16679 components: - pos: 19.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16680 components: - pos: 20.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16681 components: - pos: 21.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16682 components: - pos: 21.5,-58.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16683 components: - pos: 21.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16684 components: - pos: 21.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16685 components: - pos: 21.5,-55.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16686 components: - pos: 21.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16687 components: - pos: 21.5,-53.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16688 components: - pos: 21.5,-52.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16689 components: - pos: 21.5,-51.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16690 components: - pos: 21.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16691 components: - pos: 21.5,-49.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16692 components: - pos: 21.5,-48.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16693 components: - pos: 21.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16699 components: - pos: 13.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16700 components: - pos: 13.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16701 components: - pos: 14.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16702 components: - pos: 15.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16703 components: - pos: 16.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16704 components: - pos: 17.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16705 components: - pos: 18.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16706 components: - pos: 19.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16707 components: - pos: 20.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16708 components: - pos: 21.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16717 components: - pos: 16.5,-71.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16723 components: - pos: 17.5,-83.5 @@ -35435,15 +32323,11 @@ entities: - pos: -16.5,-74.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16728 components: - pos: 14.5,-71.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16731 components: - pos: 16.5,-83.5 @@ -35459,8 +32343,6 @@ entities: - pos: 15.5,-71.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16738 components: - pos: -30.5,-26.5 @@ -35471,281 +32353,201 @@ entities: - pos: -29.5,-25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16766 components: - pos: 13.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16767 components: - pos: 13.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16768 components: - pos: 14.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16769 components: - pos: 15.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16770 components: - pos: 16.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16771 components: - pos: 17.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16772 components: - pos: 18.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16773 components: - pos: 19.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16774 components: - pos: 20.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16775 components: - pos: 21.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16776 components: - pos: 22.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16777 components: - pos: 23.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16778 components: - pos: 23.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16779 components: - pos: 23.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16780 components: - pos: 23.5,-66.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16781 components: - pos: 23.5,-67.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16783 components: - pos: 21.5,-67.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16784 components: - pos: 20.5,-67.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16785 components: - pos: 19.5,-67.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16786 components: - pos: 18.5,-67.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16787 components: - pos: 17.5,-67.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16788 components: - pos: 16.5,-67.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16789 components: - pos: 15.5,-67.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16790 components: - pos: 14.5,-67.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16791 components: - pos: 13.5,-67.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16792 components: - pos: 12.5,-67.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16793 components: - pos: 11.5,-67.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16794 components: - pos: 11.5,-66.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16795 components: - pos: 11.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16796 components: - pos: 11.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16797 components: - pos: 11.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16798 components: - pos: 12.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16799 components: - pos: 15.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16800 components: - pos: 15.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16801 components: - pos: 15.5,-66.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16802 components: - pos: 19.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16803 components: - pos: 19.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16804 components: - pos: 19.5,-66.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16805 components: - pos: 13.5,-71.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16825 components: - pos: 18.5,-86.5 @@ -35766,8 +32568,6 @@ entities: - pos: 17.5,-71.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16839 components: - pos: -16.5,-76.5 @@ -35783,8 +32583,6 @@ entities: - pos: 8.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16904 components: - pos: 8.5,-51.5 @@ -35830,22 +32628,16 @@ entities: - pos: 19.5,-78.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16915 components: - pos: 19.5,-75.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16917 components: - pos: 9.5,-76.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16918 components: - pos: -0.5,-19.5 @@ -35881,64 +32673,46 @@ entities: - pos: -14.5,-77.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16949 components: - pos: -13.5,-77.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16952 components: - pos: -15.5,-77.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16953 components: - pos: 25.5,-73.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16954 components: - pos: 25.5,-72.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16964 components: - pos: 25.5,-74.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16987 components: - pos: 4.5,-49.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16993 components: - pos: 10.5,-46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17002 components: - pos: 19.5,-79.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17016 components: - pos: -7.5,-68.5 @@ -35964,43 +32738,31 @@ entities: - pos: 4.5,-46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17065 components: - pos: 5.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17066 components: - pos: 8.5,-46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17067 components: - pos: 9.5,-46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17068 components: - pos: 7.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17088 components: - pos: 18.5,-81.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17096 components: - pos: 7.5,-70.5 @@ -36026,43 +32788,31 @@ entities: - pos: -3.5,-78.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17109 components: - pos: -4.5,-78.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17110 components: - pos: -5.5,-78.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17116 components: - pos: 2.5,-78.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17117 components: - pos: 3.5,-78.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17118 components: - pos: 4.5,-78.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17124 components: - pos: 7.5,-60.5 @@ -36263,22 +33013,16 @@ entities: - pos: 7.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17383 components: - pos: 12.5,-74.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17391 components: - pos: 2.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17392 components: - pos: 3.5,-54.5 @@ -36329,8 +33073,6 @@ entities: - pos: -24.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17411 components: - pos: -24.5,-64.5 @@ -36476,8 +33218,6 @@ entities: - pos: -8.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17447 components: - pos: -9.5,-62.5 @@ -36583,22 +33323,16 @@ entities: - pos: 19.5,-81.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17571 components: - pos: 19.5,-80.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17596 components: - pos: 5.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17609 components: - pos: -33.5,-28.5 @@ -36609,8 +33343,6 @@ entities: - pos: 19.5,-71.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17711 components: - pos: -16.5,-72.5 @@ -36621,29 +33353,21 @@ entities: - pos: -16.5,-71.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17781 components: - pos: 19.5,-74.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17782 components: - pos: 15.5,-77.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17783 components: - pos: 16.5,-77.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17811 components: - pos: 8.5,-66.5 @@ -36654,8 +33378,6 @@ entities: - pos: 30.5,-26.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17908 components: - pos: 30.5,-25.5 @@ -36666,8 +33388,6 @@ entities: - pos: 23.5,-21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17911 components: - pos: 21.5,-21.5 @@ -36728,8 +33448,6 @@ entities: - pos: 23.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17923 components: - pos: 20.5,-22.5 @@ -36740,8 +33458,6 @@ entities: - pos: 20.5,-23.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17925 components: - pos: 30.5,-24.5 @@ -36882,8 +33598,6 @@ entities: - pos: 43.5,-22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17955 components: - pos: 44.5,-22.5 @@ -36904,8 +33618,6 @@ entities: - pos: 40.5,-17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17959 components: - pos: 39.5,-17.5 @@ -36936,15 +33648,11 @@ entities: - pos: 37.5,-20.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17965 components: - pos: 39.5,-20.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17966 components: - pos: 36.5,-24.5 @@ -37060,8 +33768,6 @@ entities: - pos: 37.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17989 components: - pos: 37.5,-53.5 @@ -37112,22 +33818,16 @@ entities: - pos: 38.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17999 components: - pos: 38.5,-40.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18000 components: - pos: 43.5,-36.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18001 components: - pos: 43.5,-35.5 @@ -37178,8 +33878,6 @@ entities: - pos: 42.5,-29.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18012 components: - pos: 42.5,-28.5 @@ -37195,8 +33893,6 @@ entities: - pos: 42.5,-26.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18015 components: - pos: 43.5,-26.5 @@ -37212,8 +33908,6 @@ entities: - pos: 41.5,-25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18018 components: - pos: 40.5,-25.5 @@ -37224,8 +33918,6 @@ entities: - pos: 43.5,-24.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18020 components: - pos: 44.5,-24.5 @@ -37306,15 +33998,11 @@ entities: - pos: 42.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18042 components: - pos: 42.5,-46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18043 components: - pos: 42.5,-45.5 @@ -37325,15 +34013,11 @@ entities: - pos: 42.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18045 components: - pos: 42.5,-43.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18046 components: - pos: 43.5,-45.5 @@ -37374,8 +34058,6 @@ entities: - pos: 38.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18054 components: - pos: 37.5,-45.5 @@ -37416,8 +34098,6 @@ entities: - pos: 38.5,-48.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18064 components: - pos: 37.5,-48.5 @@ -37538,71 +34218,51 @@ entities: - pos: 42.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18088 components: - pos: 42.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18089 components: - pos: 42.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18090 components: - pos: 45.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18091 components: - pos: 42.5,-58.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18092 components: - pos: 45.5,-58.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18093 components: - pos: 45.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18094 components: - pos: 44.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18095 components: - pos: 46.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18096 components: - pos: 45.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18097 components: - pos: 44.5,-59.5 @@ -37633,29 +34293,21 @@ entities: - pos: 44.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18103 components: - pos: 43.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18104 components: - pos: 46.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18105 components: - pos: 47.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18107 components: - pos: 45.5,-53.5 @@ -37671,8 +34323,6 @@ entities: - pos: 23.5,-33.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18246 components: - pos: 22.5,-33.5 @@ -37698,8 +34348,6 @@ entities: - pos: 20.5,-31.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18251 components: - pos: 20.5,-30.5 @@ -37715,29 +34363,21 @@ entities: - pos: 21.5,-31.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18254 components: - pos: 22.5,-31.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18255 components: - pos: 19.5,-31.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18256 components: - pos: 18.5,-31.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18257 components: - pos: 20.5,-34.5 @@ -37773,15 +34413,11 @@ entities: - pos: 24.5,-31.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18264 components: - pos: 26.5,-31.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18265 components: - pos: 26.5,-33.5 @@ -37797,8 +34433,6 @@ entities: - pos: 27.5,-32.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18268 components: - pos: 35.5,-29.5 @@ -37849,8 +34483,6 @@ entities: - pos: 29.5,-26.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18278 components: - pos: 31.5,-28.5 @@ -37866,8 +34498,6 @@ entities: - pos: 31.5,-26.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18281 components: - pos: 33.5,-28.5 @@ -37883,8 +34513,6 @@ entities: - pos: 33.5,-26.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18284 components: - pos: 35.5,-32.5 @@ -37945,8 +34573,6 @@ entities: - pos: 47.5,-19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18334 components: - pos: 46.5,-19.5 @@ -38037,22 +34663,16 @@ entities: - pos: 30.5,-15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18353 components: - pos: 29.5,-15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18354 components: - pos: 31.5,-15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18355 components: - pos: 31.5,-18.5 @@ -38138,120 +34758,86 @@ entities: - pos: 46.5,-40.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18416 components: - pos: 46.5,-41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18417 components: - pos: 46.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18418 components: - pos: 45.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18419 components: - pos: 44.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18420 components: - pos: 43.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18421 components: - pos: 43.5,-41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18422 components: - pos: 43.5,-40.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18423 components: - pos: 43.5,-39.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18424 components: - pos: 47.5,-39.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18425 components: - pos: 47.5,-40.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18426 components: - pos: 47.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18427 components: - pos: 48.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18428 components: - pos: 49.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18429 components: - pos: 49.5,-41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18430 components: - pos: 49.5,-40.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18431 components: - pos: 49.5,-39.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18432 components: - pos: 49.5,-38.5 @@ -38292,22 +34878,16 @@ entities: - pos: 49.5,-31.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18440 components: - pos: 49.5,-30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18441 components: - pos: 49.5,-29.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18442 components: - pos: 49.5,-28.5 @@ -38333,841 +34913,601 @@ entities: - pos: 49.5,-24.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18447 components: - pos: 49.5,-23.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18448 components: - pos: 49.5,-22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18449 components: - pos: 49.5,-21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18450 components: - pos: 49.5,-20.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18451 components: - pos: 49.5,-19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18452 components: - pos: 49.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18453 components: - pos: 49.5,-17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18454 components: - pos: 49.5,-43.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18455 components: - pos: 49.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18456 components: - pos: 49.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18457 components: - pos: 49.5,-46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18458 components: - pos: 49.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18459 components: - pos: 49.5,-48.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18460 components: - pos: 49.5,-49.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18461 components: - pos: 49.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18462 components: - pos: 49.5,-51.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18463 components: - pos: 49.5,-52.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18464 components: - pos: 49.5,-53.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18465 components: - pos: 49.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18466 components: - pos: 49.5,-55.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18467 components: - pos: 49.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18468 components: - pos: 49.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18469 components: - pos: 49.5,-58.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18470 components: - pos: 49.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18471 components: - pos: 49.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18472 components: - pos: 49.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18473 components: - pos: 49.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18474 components: - pos: 48.5,-49.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18475 components: - pos: 47.5,-49.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18476 components: - pos: 46.5,-49.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18477 components: - pos: 45.5,-49.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18478 components: - pos: 44.5,-49.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18479 components: - pos: 48.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18480 components: - pos: 47.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18481 components: - pos: 47.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18482 components: - pos: 47.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18483 components: - pos: 47.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18484 components: - pos: 46.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18485 components: - pos: 45.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18486 components: - pos: 44.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18487 components: - pos: 43.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18488 components: - pos: 42.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18489 components: - pos: 41.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18490 components: - pos: 40.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18491 components: - pos: 40.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18492 components: - pos: 40.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18493 components: - pos: 40.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18494 components: - pos: 39.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18495 components: - pos: 38.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18496 components: - pos: 37.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18497 components: - pos: 36.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18498 components: - pos: 36.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18499 components: - pos: 36.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18500 components: - pos: 36.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18501 components: - pos: 36.5,-58.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18502 components: - pos: 36.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18503 components: - pos: 35.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18504 components: - pos: 34.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18505 components: - pos: 33.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18506 components: - pos: 32.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18507 components: - pos: 32.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18508 components: - pos: 32.5,-55.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18509 components: - pos: 32.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18510 components: - pos: 32.5,-53.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18511 components: - pos: 32.5,-52.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18512 components: - pos: 32.5,-51.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18513 components: - pos: 32.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18514 components: - pos: 32.5,-49.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18515 components: - pos: 32.5,-48.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18516 components: - pos: 32.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18517 components: - pos: 32.5,-46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18518 components: - pos: 32.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18519 components: - pos: 32.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18520 components: - pos: 32.5,-43.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18521 components: - pos: 32.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18522 components: - pos: 32.5,-41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18523 components: - pos: 32.5,-40.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18524 components: - pos: 32.5,-39.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18525 components: - pos: 32.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18526 components: - pos: 31.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18527 components: - pos: 30.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18528 components: - pos: 29.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18529 components: - pos: 28.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18530 components: - pos: 27.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18531 components: - pos: 26.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18532 components: - pos: 25.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18533 components: - pos: 24.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18534 components: - pos: 23.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18535 components: - pos: 22.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18536 components: - pos: 21.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18537 components: - pos: 20.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18538 components: - pos: 19.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18539 components: - pos: 18.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18540 components: - pos: 17.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18541 components: - pos: 16.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18542 components: - pos: 15.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18543 components: - pos: 14.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18544 components: - pos: 13.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18545 components: - pos: 12.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18546 components: - pos: 11.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18547 components: - pos: 10.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18548 components: - pos: 9.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18549 components: - pos: 8.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18550 components: - pos: 7.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18551 components: - pos: 6.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18552 components: - pos: 5.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18553 components: - pos: 4.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18554 components: - pos: 3.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18555 components: - pos: 2.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18556 components: - pos: 49.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18557 components: - pos: 50.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18558 components: - pos: 50.5,-66.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18559 components: - pos: 50.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18560 components: - pos: 50.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18561 components: - pos: 51.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18562 components: - pos: 52.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18563 components: - pos: 53.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18568 components: - pos: -9.5,44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18572 components: - pos: 57.5,-53.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18679 components: - pos: 41.5,-24.5 @@ -39178,15 +35518,11 @@ entities: - pos: 12.5,-72.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18760 components: - pos: -15.5,-74.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18762 components: - pos: 2.5,-42.5 @@ -39197,15 +35533,11 @@ entities: - pos: -10.5,-74.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19043 components: - pos: 21.5,-71.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19046 components: - pos: -2.5,-52.5 @@ -39216,15 +35548,11 @@ entities: - pos: 24.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19100 components: - pos: 34.5,-32.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19102 components: - pos: 33.5,-35.5 @@ -39255,8 +35583,6 @@ entities: - pos: 38.5,-35.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19108 components: - pos: 36.5,-33.5 @@ -39272,43 +35598,31 @@ entities: - pos: 37.5,-33.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19111 components: - pos: 38.5,-34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19112 components: - pos: 38.5,-36.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19116 components: - pos: 23.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19124 components: - pos: 22.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19125 components: - pos: 21.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19310 components: - pos: 45.5,-19.5 @@ -39319,225 +35633,161 @@ entities: - pos: 50.5,-67.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19372 components: - pos: 50.5,-68.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19391 components: - pos: 84.5,-46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19392 components: - pos: 84.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19393 components: - pos: 83.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19394 components: - pos: 82.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19395 components: - pos: 82.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19396 components: - pos: 82.5,-43.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19397 components: - pos: 82.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19398 components: - pos: 82.5,-41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19399 components: - pos: 82.5,-40.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19400 components: - pos: 81.5,-33.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19401 components: - pos: 81.5,-34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19402 components: - pos: 81.5,-35.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19403 components: - pos: 81.5,-36.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19404 components: - pos: 81.5,-37.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19405 components: - pos: 81.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19406 components: - pos: 81.5,-39.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19407 components: - pos: 81.5,-40.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19408 components: - pos: 84.5,-32.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19409 components: - pos: 84.5,-33.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19410 components: - pos: 83.5,-33.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19411 components: - pos: 82.5,-33.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19412 components: - pos: 85.5,-32.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19413 components: - pos: 83.5,-41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19414 components: - pos: 84.5,-41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19415 components: - pos: 85.5,-41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19416 components: - pos: 86.5,-41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19417 components: - pos: 87.5,-41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19418 components: - pos: 87.5,-40.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19419 components: - pos: 87.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19420 components: - pos: 82.5,-36.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19421 components: - pos: 83.5,-36.5 @@ -39558,15 +35808,11 @@ entities: - pos: 85.5,-37.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19425 components: - pos: 86.5,-37.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19426 components: - pos: 86.5,-36.5 @@ -39577,1268 +35823,906 @@ entities: - pos: 87.5,-36.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19428 components: - pos: 87.5,-35.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19429 components: - pos: 87.5,-34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19430 components: - pos: 85.5,-31.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19431 components: - pos: 85.5,-30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19432 components: - pos: 85.5,-29.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19433 components: - pos: 85.5,-28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19434 components: - pos: 85.5,-27.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19435 components: - pos: 85.5,-26.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19436 components: - pos: 85.5,-25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19437 components: - pos: 85.5,-24.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19438 components: - pos: 85.5,-23.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19439 components: - pos: 85.5,-22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19440 components: - pos: 85.5,-21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19441 components: - pos: 84.5,-21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19442 components: - pos: 83.5,-21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19443 components: - pos: 82.5,-21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19444 components: - pos: 81.5,-21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19445 components: - pos: 80.5,-21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19446 components: - pos: 79.5,-21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19447 components: - pos: 79.5,-20.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19448 components: - pos: 79.5,-19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19449 components: - pos: 80.5,-19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19451 components: - pos: 78.5,-19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19452 components: - pos: 77.5,-19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19453 components: - pos: 76.5,-19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19454 components: - pos: 76.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19455 components: - pos: 76.5,-17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19456 components: - pos: 82.5,-46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19457 components: - pos: 82.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19458 components: - pos: 82.5,-48.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19459 components: - pos: 82.5,-49.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19460 components: - pos: 82.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19461 components: - pos: 82.5,-51.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19462 components: - pos: 82.5,-52.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19463 components: - pos: 83.5,-52.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19464 components: - pos: 84.5,-52.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19465 components: - pos: 85.5,-52.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19466 components: - pos: 86.5,-52.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19467 components: - pos: 87.5,-52.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19468 components: - pos: 87.5,-51.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19469 components: - pos: 87.5,-53.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19470 components: - pos: 82.5,-53.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19471 components: - pos: 82.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19472 components: - pos: 82.5,-55.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19473 components: - pos: 82.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19474 components: - pos: 82.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19475 components: - pos: 83.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19476 components: - pos: 84.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19477 components: - pos: 85.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19478 components: - pos: 86.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19479 components: - pos: 87.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19480 components: - pos: 88.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19481 components: - pos: 82.5,-58.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19482 components: - pos: 82.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19483 components: - pos: 82.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19484 components: - pos: 81.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19485 components: - pos: 80.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19486 components: - pos: 79.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19487 components: - pos: 78.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19488 components: - pos: 77.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19489 components: - pos: 76.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19491 components: - pos: 74.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19492 components: - pos: 73.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19493 components: - pos: 72.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19494 components: - pos: 71.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19495 components: - pos: 70.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19496 components: - pos: 69.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19497 components: - pos: 68.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19498 components: - pos: 67.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19499 components: - pos: 66.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19500 components: - pos: 65.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19501 components: - pos: 65.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19502 components: - pos: 65.5,-58.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19503 components: - pos: 65.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19504 components: - pos: 65.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19505 components: - pos: 66.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19506 components: - pos: 67.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19507 components: - pos: 68.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19508 components: - pos: 69.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19509 components: - pos: 66.5,-55.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19510 components: - pos: 68.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19511 components: - pos: 68.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19512 components: - pos: 68.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19513 components: - pos: 68.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19514 components: - pos: 68.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19515 components: - pos: 77.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19516 components: - pos: 77.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19517 components: - pos: 77.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19518 components: - pos: 77.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19519 components: - pos: 76.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19520 components: - pos: 75.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19521 components: - pos: 74.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19522 components: - pos: 73.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19523 components: - pos: 72.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19524 components: - pos: 72.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19525 components: - pos: 71.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19526 components: - pos: 70.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19527 components: - pos: 69.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19528 components: - pos: 72.5,-66.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19529 components: - pos: 72.5,-67.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19530 components: - pos: 72.5,-68.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19531 components: - pos: 71.5,-68.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19532 components: - pos: 70.5,-68.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19533 components: - pos: 69.5,-68.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19534 components: - pos: 68.5,-68.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19535 components: - pos: 67.5,-68.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19536 components: - pos: 66.5,-68.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19537 components: - pos: 65.5,-68.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19538 components: - pos: 65.5,-69.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19539 components: - pos: 65.5,-70.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19540 components: - pos: 65.5,-71.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19541 components: - pos: 64.5,-71.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19542 components: - pos: 63.5,-71.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19543 components: - pos: 62.5,-71.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19544 components: - pos: 61.5,-71.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19545 components: - pos: 65.5,-67.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19546 components: - pos: 65.5,-66.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19547 components: - pos: 65.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19548 components: - pos: 65.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19549 components: - pos: 65.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19550 components: - pos: 65.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19551 components: - pos: 65.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19552 components: - pos: 64.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19553 components: - pos: 63.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19554 components: - pos: 62.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19555 components: - pos: 61.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19556 components: - pos: 60.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19557 components: - pos: 59.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19558 components: - pos: 58.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19559 components: - pos: 57.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19560 components: - pos: 56.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19561 components: - pos: 55.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19562 components: - pos: 54.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19563 components: - pos: 53.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19564 components: - pos: 53.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19565 components: - pos: 52.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19566 components: - pos: 56.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19567 components: - pos: 57.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19568 components: - pos: 58.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19569 components: - pos: 61.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19570 components: - pos: 62.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19571 components: - pos: 63.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19572 components: - pos: 63.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19573 components: - pos: 63.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19574 components: - pos: 62.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19575 components: - pos: 61.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19576 components: - pos: 58.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19577 components: - pos: 58.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19578 components: - pos: 57.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19579 components: - pos: 56.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19580 components: - pos: 62.5,-70.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19581 components: - pos: 60.5,-71.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19582 components: - pos: 60.5,-70.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19583 components: - pos: 60.5,-72.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19584 components: - pos: 62.5,-72.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19585 components: - pos: 62.5,-73.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19586 components: - pos: 63.5,-73.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19587 components: - pos: 64.5,-73.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19588 components: - pos: 65.5,-73.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19589 components: - pos: 69.5,-69.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19590 components: - pos: 70.5,-69.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19591 components: - pos: 73.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19592 components: - pos: 74.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19593 components: - pos: 74.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19594 components: - pos: 73.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19595 components: - pos: 75.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19596 components: - pos: 78.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19597 components: - pos: 77.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19598 components: - pos: 76.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19599 components: - pos: 86.5,-28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19600 components: - pos: 87.5,-28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19601 components: - pos: 88.5,-28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19602 components: - pos: 89.5,-28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19603 components: - pos: 90.5,-28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19604 components: - pos: 91.5,-28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19605 components: - pos: 92.5,-28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19606 components: - pos: 93.5,-28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19607 components: - pos: 91.5,-27.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19608 components: - pos: 93.5,-27.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19609 components: - pos: 91.5,-30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19610 components: - pos: 91.5,-29.5 @@ -40854,148 +36738,106 @@ entities: - pos: 93.5,-30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19613 components: - pos: 89.5,-27.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19614 components: - pos: 89.5,-26.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19615 components: - pos: 89.5,-25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19616 components: - pos: 89.5,-24.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19617 components: - pos: 89.5,-23.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19618 components: - pos: 89.5,-22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19619 components: - pos: 88.5,-22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19620 components: - pos: 90.5,-22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19621 components: - pos: 91.5,-22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19622 components: - pos: 92.5,-22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19623 components: - pos: 92.5,-23.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19624 components: - pos: 89.5,-29.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19625 components: - pos: 89.5,-30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19866 components: - pos: 57.5,-46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19893 components: - pos: 83.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19894 components: - pos: 84.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19954 components: - pos: 26.5,-68.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19965 components: - pos: 79.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19966 components: - pos: 79.5,-58.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19967 components: - pos: 79.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19970 components: - pos: -38.5,-29.5 @@ -41006,22 +36848,16 @@ entities: - pos: 78.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19974 components: - pos: 77.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20006 components: - pos: 18.5,-82.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20014 components: - pos: -39.5,-30.5 @@ -41032,8 +36868,6 @@ entities: - pos: -42.5,-28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20063 components: - pos: -38.5,-30.5 @@ -41049,78 +36883,56 @@ entities: - pos: 83.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20162 components: - pos: 82.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20163 components: - pos: 81.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20171 components: - pos: 81.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20172 components: - pos: 81.5,-66.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20173 components: - pos: 81.5,-67.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20176 components: - pos: 82.5,-66.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20177 components: - pos: 83.5,-66.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20178 components: - pos: 82.5,-67.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20179 components: - pos: 82.5,-68.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20187 components: - pos: 57.5,-52.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20273 components: - pos: 60.5,-41.5 @@ -41136,8 +36948,6 @@ entities: - pos: 68.5,-25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20396 components: - pos: 69.5,-25.5 @@ -41363,15 +37173,11 @@ entities: - pos: 61.5,-25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20441 components: - pos: 63.5,-25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20442 components: - pos: 62.5,-26.5 @@ -41422,8 +37228,6 @@ entities: - pos: 55.5,-32.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20452 components: - pos: 66.5,-17.5 @@ -41584,22 +37388,16 @@ entities: - pos: 68.5,-40.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20484 components: - pos: 68.5,-39.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20485 components: - pos: 68.5,-41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20486 components: - pos: 71.5,-17.5 @@ -41610,8 +37408,6 @@ entities: - pos: 71.5,-16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20488 components: - pos: 69.5,-18.5 @@ -41627,15 +37423,11 @@ entities: - pos: 69.5,-16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20491 components: - pos: 78.5,-26.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20492 components: - pos: 78.5,-25.5 @@ -41676,22 +37468,16 @@ entities: - pos: 75.5,-24.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20500 components: - pos: 80.5,-27.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20501 components: - pos: 79.5,-27.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20502 components: - pos: 76.5,-25.5 @@ -41707,15 +37493,11 @@ entities: - pos: 76.5,-27.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20505 components: - pos: 77.5,-27.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20506 components: - pos: 81.5,-25.5 @@ -41791,8 +37573,6 @@ entities: - pos: 56.5,-20.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20523 components: - pos: 55.5,-20.5 @@ -41988,8 +37768,6 @@ entities: - pos: 64.5,-22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20562 components: - pos: 62.5,-24.5 @@ -42025,8 +37803,6 @@ entities: - pos: 58.5,-30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20570 components: - pos: 59.5,-30.5 @@ -42067,64 +37843,46 @@ entities: - pos: 64.5,-30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20578 components: - pos: 64.5,-29.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20579 components: - pos: 64.5,-28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20580 components: - pos: 63.5,-28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20581 components: - pos: 62.5,-28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20582 components: - pos: 64.5,-31.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20583 components: - pos: 54.5,-29.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20584 components: - pos: 54.5,-31.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20585 components: - pos: 58.5,-36.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20586 components: - pos: 59.5,-36.5 @@ -42205,15 +37963,11 @@ entities: - pos: 64.5,-39.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20605 components: - pos: 64.5,-41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20606 components: - pos: 58.5,-40.5 @@ -42334,8 +38088,6 @@ entities: - pos: 57.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20630 components: - pos: 57.5,-43.5 @@ -42346,43 +38098,31 @@ entities: - pos: 61.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20643 components: - pos: 62.5,-52.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20645 components: - pos: 57.5,-58.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20646 components: - pos: 56.5,-58.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20647 components: - pos: 58.5,-58.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20648 components: - pos: 53.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20650 components: - pos: 57.5,-56.5 @@ -42393,29 +38133,21 @@ entities: - pos: 59.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20652 components: - pos: 62.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20654 components: - pos: 52.5,-58.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20655 components: - pos: 53.5,-58.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20659 components: - pos: 71.5,-52.5 @@ -42426,15 +38158,11 @@ entities: - pos: 71.5,-53.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20669 components: - pos: 60.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20670 components: - pos: 60.5,-44.5 @@ -42445,50 +38173,36 @@ entities: - pos: 61.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20675 components: - pos: 57.5,-49.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20676 components: - pos: 58.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20677 components: - pos: 62.5,-51.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20685 components: - pos: 57.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20686 components: - pos: 57.5,-51.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20687 components: - pos: 53.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20688 components: - pos: 62.5,-44.5 @@ -42499,22 +38213,16 @@ entities: - pos: 60.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20697 components: - pos: 53.5,-55.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20698 components: - pos: 53.5,-52.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20700 components: - pos: 70.5,-52.5 @@ -42560,15 +38268,11 @@ entities: - pos: 67.5,-49.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20709 components: - pos: 65.5,-49.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20710 components: - pos: 71.5,-51.5 @@ -42734,8 +38438,6 @@ entities: - pos: 75.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20743 components: - pos: 75.5,-43.5 @@ -42786,15 +38488,11 @@ entities: - pos: 69.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20753 components: - pos: 69.5,-46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20754 components: - pos: 78.5,-46.5 @@ -42915,8 +38613,6 @@ entities: - pos: 69.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20778 components: - pos: 69.5,-37.5 @@ -42982,29 +38678,21 @@ entities: - pos: 68.5,-34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20791 components: - pos: 68.5,-33.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20792 components: - pos: 68.5,-35.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20799 components: - pos: 64.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20825 components: - pos: 57.5,-44.5 @@ -43015,15 +38703,11 @@ entities: - pos: 57.5,-48.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20855 components: - pos: 57.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20856 components: - pos: 54.5,-44.5 @@ -43069,15 +38753,11 @@ entities: - pos: 60.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21366 components: - pos: 62.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21368 components: - pos: 55.5,-44.5 @@ -43088,36 +38768,26 @@ entities: - pos: 53.5,-51.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21452 components: - pos: -22.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21453 components: - pos: -77.5,-13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21454 components: - pos: -78.5,-13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21489 components: - pos: 1.5,-34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21493 components: - pos: 2.5,-34.5 @@ -43143,8 +38813,6 @@ entities: - pos: 8.5,-36.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21997 components: - pos: -4.5,-16.5 @@ -43155,15 +38823,11 @@ entities: - pos: -4.5,-17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21999 components: - pos: 3.5,-17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 22000 components: - pos: 3.5,-16.5 @@ -43174,29 +38838,21 @@ entities: - pos: -1.5,-23.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 22002 components: - pos: -2.5,-23.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 22003 components: - pos: 0.5,-23.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 22004 components: - pos: 1.5,-23.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 22460 components: - pos: -13.5,-7.5 @@ -43242,29 +38898,21 @@ entities: - pos: 62.5,-58.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 22539 components: - pos: 61.5,-58.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 22540 components: - pos: 63.5,-58.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 22541 components: - pos: 53.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 22578 components: - pos: -16.5,-73.5 @@ -43275,8 +38923,6 @@ entities: - pos: -15.5,-71.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 22709 components: - pos: 17.5,31.5 @@ -43287,36 +38933,26 @@ entities: - pos: 12.5,-77.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 22764 components: - pos: 12.5,-76.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 22770 components: - pos: 12.5,-75.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 22818 components: - pos: -14.5,-74.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 22829 components: - pos: -12.5,-71.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 22855 components: - pos: -7.5,-61.5 @@ -43327,85 +38963,61 @@ entities: - pos: 17.5,-77.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 22857 components: - pos: 25.5,-71.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 22858 components: - pos: 18.5,-77.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 22931 components: - pos: -12.5,-74.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 22932 components: - pos: -11.5,-74.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 22933 components: - pos: -13.5,-74.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 22943 components: - pos: 21.5,-41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 22949 components: - pos: 18.5,-71.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 22975 components: - pos: 12.5,-78.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 22976 components: - pos: 12.5,-73.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 22977 components: - pos: 12.5,-71.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 22986 components: - pos: 9.5,-78.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 22995 components: - pos: 12.5,-70.5 @@ -43416,8 +39028,6 @@ entities: - pos: -14.5,-71.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 23009 components: - pos: 11.5,-82.5 @@ -43433,15 +39043,11 @@ entities: - pos: -3.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 23235 components: - pos: -13.5,-71.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 25739 components: - pos: -10.5,48.5 @@ -43502,8 +39108,6 @@ entities: - pos: 24.5,-74.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26136 components: - pos: -15.5,51.5 @@ -43544,8 +39148,6 @@ entities: - pos: 0.5,52.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26144 components: - pos: 0.5,51.5 @@ -43636,71 +39238,51 @@ entities: - pos: -12.5,-77.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26626 components: - pos: -11.5,-77.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26627 components: - pos: 19.5,-77.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26628 components: - pos: 19.5,-76.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26629 components: - pos: 22.5,-71.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26630 components: - pos: 20.5,-71.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26639 components: - pos: 24.5,-71.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26642 components: - pos: 23.5,-71.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26644 components: - pos: 2.5,-41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26714 components: - pos: -13.5,-67.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26718 components: - pos: 9.5,-69.5 @@ -43711,8 +39293,6 @@ entities: - pos: 10.5,-69.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26722 components: - pos: 4.5,-72.5 @@ -43723,8 +39303,6 @@ entities: - pos: 29.5,-111.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27032 components: - pos: 28.5,-111.5 @@ -43885,8 +39463,6 @@ entities: - pos: 31.5,-100.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27064 components: - pos: 30.5,-100.5 @@ -43897,127 +39473,91 @@ entities: - pos: 29.5,-103.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27066 components: - pos: 29.5,-102.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27067 components: - pos: 29.5,-101.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27068 components: - pos: 29.5,-100.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27069 components: - pos: 29.5,-99.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27070 components: - pos: 29.5,-98.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27071 components: - pos: 29.5,-97.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27072 components: - pos: 29.5,-96.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27073 components: - pos: 29.5,-95.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27074 components: - pos: 27.5,-95.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27075 components: - pos: 27.5,-96.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27076 components: - pos: 27.5,-97.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27077 components: - pos: 27.5,-98.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27078 components: - pos: 27.5,-99.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27079 components: - pos: 27.5,-100.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27080 components: - pos: 27.5,-101.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27081 components: - pos: 27.5,-102.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27082 components: - pos: 27.5,-103.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27083 components: - pos: 28.5,-100.5 @@ -44028,85 +39568,61 @@ entities: - pos: 32.5,-100.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27085 components: - pos: 32.5,-101.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27086 components: - pos: 32.5,-102.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27087 components: - pos: 32.5,-103.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27088 components: - pos: 33.5,-103.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27089 components: - pos: 33.5,-104.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27090 components: - pos: 32.5,-99.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27091 components: - pos: 32.5,-98.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27092 components: - pos: 32.5,-97.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27093 components: - pos: 32.5,-96.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27094 components: - pos: 35.5,-92.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27095 components: - pos: 34.5,-92.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27096 components: - pos: 33.5,-92.5 @@ -44137,15 +39653,11 @@ entities: - pos: 32.5,-89.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27102 components: - pos: 32.5,-88.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27103 components: - pos: 32.5,-93.5 @@ -44156,15 +39668,11 @@ entities: - pos: 21.5,-92.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27105 components: - pos: 22.5,-92.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27106 components: - pos: 23.5,-92.5 @@ -44190,8 +39698,6 @@ entities: - pos: 24.5,-89.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27111 components: - pos: 24.5,-93.5 @@ -44207,85 +39713,61 @@ entities: - pos: 24.5,-95.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27114 components: - pos: 24.5,-96.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27115 components: - pos: 24.5,-97.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27116 components: - pos: 24.5,-98.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27117 components: - pos: 24.5,-99.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27118 components: - pos: 24.5,-100.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27119 components: - pos: 24.5,-101.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27120 components: - pos: 24.5,-102.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27121 components: - pos: 24.5,-103.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27122 components: - pos: 23.5,-103.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27123 components: - pos: 23.5,-104.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27124 components: - pos: 31.5,-86.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27125 components: - pos: 30.5,-86.5 @@ -44361,50 +39843,36 @@ entities: - pos: 28.5,-81.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27140 components: - pos: 28.5,-80.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27141 components: - pos: 28.5,-79.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27142 components: - pos: 28.5,-78.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27143 components: - pos: 27.5,-80.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27144 components: - pos: 26.5,-80.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27145 components: - pos: 25.5,-80.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27146 components: - pos: 29.5,-85.5 @@ -44540,85 +40008,61 @@ entities: - pos: -6.5,-78.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27493 components: - pos: -0.5,-79.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27494 components: - pos: -1.5,-79.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27495 components: - pos: -2.5,-79.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27496 components: - pos: -3.5,-79.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27497 components: - pos: -3.5,-77.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27498 components: - pos: 0.5,-79.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27499 components: - pos: 1.5,-79.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27500 components: - pos: 2.5,-79.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27501 components: - pos: 2.5,-77.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27502 components: - pos: 5.5,-78.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27515 components: - pos: 2.5,-76.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27516 components: - pos: 1.5,-76.5 @@ -44634,92 +40078,66 @@ entities: - pos: 0.5,-76.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27521 components: - pos: -0.5,-76.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27522 components: - pos: -0.5,-75.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27523 components: - pos: -0.5,-74.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27524 components: - pos: -1.5,-74.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27630 components: - pos: 86.5,-10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27631 components: - pos: 87.5,-10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27632 components: - pos: 87.5,-14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27633 components: - pos: 86.5,-14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27634 components: - pos: 86.5,-6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27635 components: - pos: 87.5,-6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27636 components: - pos: 87.5,-2.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27637 components: - pos: 86.5,-2.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - proto: CableApcStack entities: - uid: 1195 @@ -44832,8 +40250,6 @@ entities: - pos: -11.5,-74.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 910 components: - pos: -19.5,-70.5 @@ -44859,43 +40275,31 @@ entities: - pos: -20.5,-35.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 1605 components: - pos: -18.5,-35.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 1607 components: - pos: -21.5,-35.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 1626 components: - pos: -12.5,-74.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 1645 components: - pos: -13.5,-74.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 1665 components: - pos: -19.5,-35.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 1889 components: - pos: -3.5,-67.5 @@ -45006,8 +40410,6 @@ entities: - pos: 13.5,-74.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 4050 components: - pos: 8.5,-74.5 @@ -45023,8 +40425,6 @@ entities: - pos: 15.5,-74.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 4585 components: - pos: -9.5,-74.5 @@ -45045,8 +40445,6 @@ entities: - pos: -5.5,-77.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 4703 components: - pos: -4.5,-74.5 @@ -45057,22 +40455,16 @@ entities: - pos: 4.5,-77.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 4726 components: - pos: 3.5,-77.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 4731 components: - pos: -4.5,-77.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 4819 components: - pos: -23.5,-64.5 @@ -45088,22 +40480,16 @@ entities: - pos: 47.5,16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5011 components: - pos: 46.5,20.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5012 components: - pos: 46.5,19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5272 components: - pos: 1.5,-24.5 @@ -45129,8 +40515,6 @@ entities: - pos: -13.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5529 components: - pos: -13.5,-14.5 @@ -45181,8 +40565,6 @@ entities: - pos: -5.5,-76.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5752 components: - pos: -13.5,-12.5 @@ -45218,8 +40600,6 @@ entities: - pos: 49.5,-46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5784 components: - pos: -13.5,-17.5 @@ -45240,8 +40620,6 @@ entities: - pos: -18.5,-70.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5792 components: - pos: 8.5,-61.5 @@ -45392,8 +40770,6 @@ entities: - pos: -2.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5827 components: - pos: -2.5,-57.5 @@ -45464,92 +40840,66 @@ entities: - pos: -15.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5841 components: - pos: -14.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5842 components: - pos: -13.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5843 components: - pos: -12.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5844 components: - pos: -11.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5845 components: - pos: -10.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5846 components: - pos: -9.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5847 components: - pos: -8.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5848 components: - pos: -7.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5849 components: - pos: -6.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5850 components: - pos: -5.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5851 components: - pos: -4.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5852 components: - pos: -3.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5853 components: - pos: -16.5,-16.5 @@ -45565,8 +40915,6 @@ entities: - pos: -19.5,-12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5856 components: - pos: -18.5,-12.5 @@ -45597,22 +40945,16 @@ entities: - pos: 15.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5922 components: - pos: -26.5,-12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5923 components: - pos: -25.5,-12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5924 components: - pos: -24.5,-12.5 @@ -45643,50 +40985,36 @@ entities: - pos: -26.5,-11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5930 components: - pos: -26.5,-10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5931 components: - pos: -26.5,-9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5932 components: - pos: -26.5,-8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5933 components: - pos: -27.5,-8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5934 components: - pos: -28.5,-8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5935 components: - pos: -29.5,-8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5936 components: - pos: -0.5,-29.5 @@ -45702,92 +41030,66 @@ entities: - pos: 14.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5940 components: - pos: 1.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5941 components: - pos: -14.5,-19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5942 components: - pos: -13.5,-19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5943 components: - pos: -12.5,-19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5944 components: - pos: -11.5,-19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5945 components: - pos: -10.5,-19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6183 components: - pos: 29.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6184 components: - pos: 27.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6185 components: - pos: 25.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6186 components: - pos: 23.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6266 components: - pos: -18.5,-49.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6268 components: - pos: 23.5,22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6270 components: - pos: -0.5,-32.5 @@ -45833,176 +41135,126 @@ entities: - pos: 13.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6279 components: - pos: 21.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6280 components: - pos: 22.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6281 components: - pos: 24.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6282 components: - pos: 26.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6283 components: - pos: 28.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6290 components: - pos: 32.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6291 components: - pos: 32.5,-39.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6292 components: - pos: 32.5,-40.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6293 components: - pos: 32.5,-41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6294 components: - pos: 32.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6295 components: - pos: 32.5,-43.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6296 components: - pos: 32.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6297 components: - pos: 20.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6298 components: - pos: 32.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6299 components: - pos: 32.5,-46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6300 components: - pos: 32.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6301 components: - pos: 32.5,-48.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6302 components: - pos: 32.5,-49.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6303 components: - pos: 32.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6304 components: - pos: 32.5,-51.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6306 components: - pos: 32.5,-53.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6307 components: - pos: 32.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6308 components: - pos: 32.5,-55.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6309 components: - pos: 32.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6316 components: - pos: -25.5,-70.5 @@ -46028,8 +41280,6 @@ entities: - pos: -0.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6323 components: - pos: -25.5,-66.5 @@ -46040,8 +41290,6 @@ entities: - pos: -1.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6327 components: - pos: -17.5,-68.5 @@ -46052,92 +41300,66 @@ entities: - pos: 19.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6330 components: - pos: 20.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6331 components: - pos: 21.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6332 components: - pos: 21.5,18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6333 components: - pos: 21.5,19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6334 components: - pos: 21.5,20.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6335 components: - pos: 21.5,21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6336 components: - pos: 21.5,22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6337 components: - pos: -18.5,-68.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6338 components: - pos: 23.5,22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6339 components: - pos: 32.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6340 components: - pos: -18.5,-48.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6341 components: - pos: -18.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6370 components: - pos: -16.5,-68.5 @@ -46153,414 +41375,296 @@ entities: - pos: 32.5,-52.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6607 components: - pos: 30.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6662 components: - pos: -18.5,-52.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6663 components: - pos: -18.5,-51.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6718 components: - pos: 32.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6719 components: - pos: 33.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6720 components: - pos: 19.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6721 components: - pos: 34.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6722 components: - pos: 35.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6723 components: - pos: 36.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6724 components: - pos: 36.5,-58.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6725 components: - pos: 36.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6726 components: - pos: 36.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6727 components: - pos: 36.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6728 components: - pos: 36.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6729 components: - pos: 37.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6730 components: - pos: 38.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6731 components: - pos: 39.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6732 components: - pos: 40.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6733 components: - pos: 40.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6734 components: - pos: 40.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6735 components: - pos: 40.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6736 components: - pos: 41.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6737 components: - pos: 42.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6738 components: - pos: 43.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6739 components: - pos: 18.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6740 components: - pos: 44.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6741 components: - pos: 46.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6742 components: - pos: 45.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6743 components: - pos: 47.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6744 components: - pos: 47.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6745 components: - pos: 47.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6746 components: - pos: 47.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6747 components: - pos: 48.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6748 components: - pos: 49.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6749 components: - pos: 49.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6750 components: - pos: 49.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6751 components: - pos: 49.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6752 components: - pos: 17.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6753 components: - pos: 49.5,-58.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6754 components: - pos: 49.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6755 components: - pos: 49.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6756 components: - pos: 49.5,-52.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6757 components: - pos: 49.5,-53.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6758 components: - pos: 49.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6759 components: - pos: 49.5,-55.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6761 components: - pos: 49.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6762 components: - pos: 49.5,-48.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6763 components: - pos: 49.5,-49.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6764 components: - pos: 49.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6765 components: - pos: 49.5,-51.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6766 components: - pos: 16.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6779 components: - pos: 49.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6780 components: - pos: 49.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6781 components: - pos: 49.5,-43.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6782 components: - pos: 49.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6783 components: - pos: 49.5,-41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6784 components: - pos: 49.5,-40.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6785 components: - pos: 49.5,-39.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6786 components: - pos: 49.5,-38.5 @@ -46601,22 +41705,16 @@ entities: - pos: 49.5,-31.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6794 components: - pos: 49.5,-30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6795 components: - pos: 49.5,-29.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6796 components: - pos: 49.5,-28.5 @@ -46642,71 +41740,51 @@ entities: - pos: 49.5,-24.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6801 components: - pos: 49.5,-23.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6802 components: - pos: 49.5,-22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6803 components: - pos: 49.5,-21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6804 components: - pos: 49.5,-20.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6805 components: - pos: 49.5,-19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6806 components: - pos: 49.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6807 components: - pos: 49.5,-17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6808 components: - pos: 49.5,-16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6809 components: - pos: 49.5,-15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6810 components: - pos: 49.5,-14.5 @@ -46762,316 +41840,226 @@ entities: - pos: 51.5,-6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6821 components: - pos: 51.5,-5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6822 components: - pos: 51.5,-4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6823 components: - pos: 51.5,-3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6824 components: - pos: 51.5,-2.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6825 components: - pos: 51.5,-1.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6826 components: - pos: 51.5,-0.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6827 components: - pos: 51.5,0.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6828 components: - pos: 51.5,1.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6829 components: - pos: 51.5,2.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6830 components: - pos: 51.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6831 components: - pos: 51.5,4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6832 components: - pos: 52.5,4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6833 components: - pos: 53.5,4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6834 components: - pos: 54.5,4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6835 components: - pos: 54.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6836 components: - pos: 54.5,6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6837 components: - pos: 54.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6838 components: - pos: 54.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6839 components: - pos: 54.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6840 components: - pos: 54.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6841 components: - pos: 53.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6842 components: - pos: 52.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6843 components: - pos: 51.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6844 components: - pos: 50.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6845 components: - pos: 49.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6846 components: - pos: 48.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6847 components: - pos: 47.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6848 components: - pos: 46.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6849 components: - pos: 45.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6850 components: - pos: 45.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6851 components: - pos: 45.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6852 components: - pos: 45.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6853 components: - pos: 45.5,6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6854 components: - pos: 45.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6855 components: - pos: 45.5,4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6856 components: - pos: 45.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6857 components: - pos: 44.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6858 components: - pos: 43.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6859 components: - pos: 42.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6860 components: - pos: 42.5,4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6861 components: - pos: 42.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6862 components: - pos: 42.5,6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6863 components: - pos: 42.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6864 components: - pos: 43.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6883 components: - pos: 19.5,15.5 @@ -47092,92 +42080,66 @@ entities: - pos: 24.5,22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7367 components: - pos: -17.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7368 components: - pos: -15.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7369 components: - pos: -18.5,-55.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7370 components: - pos: -18.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7371 components: - pos: -16.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7372 components: - pos: -15.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7374 components: - pos: -15.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7386 components: - pos: -18.5,-58.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7387 components: - pos: -18.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7388 components: - pos: -18.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7389 components: - pos: -18.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7615 components: - pos: 23.5,23.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8185 components: - pos: 5.5,-74.5 @@ -47218,78 +42180,56 @@ entities: - pos: 21.5,23.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8495 components: - pos: 21.5,24.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8496 components: - pos: 21.5,25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8497 components: - pos: 21.5,26.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8498 components: - pos: 21.5,27.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8499 components: - pos: 21.5,28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8500 components: - pos: 21.5,29.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8501 components: - pos: 21.5,30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8502 components: - pos: 20.5,30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8503 components: - pos: 19.5,30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8504 components: - pos: 18.5,30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8505 components: - pos: 17.5,30.5 @@ -47410,8 +42350,6 @@ entities: - pos: 31.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8885 components: - pos: -13.5,26.5 @@ -47432,15 +42370,11 @@ entities: - pos: -15.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8890 components: - pos: -18.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8891 components: - pos: 5.5,26.5 @@ -47451,15 +42385,11 @@ entities: - pos: -18.5,-53.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8903 components: - pos: -15.5,-66.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8907 components: - pos: 7.5,26.5 @@ -47470,568 +42400,406 @@ entities: - pos: 81.5,-83.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9465 components: - pos: 81.5,-84.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9468 components: - pos: 81.5,-85.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9469 components: - pos: 81.5,-86.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9471 components: - pos: 83.5,-82.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9473 components: - pos: 82.5,-82.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9477 components: - pos: 80.5,-82.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9478 components: - pos: 79.5,-82.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9479 components: - pos: 79.5,-78.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9563 components: - pos: 80.5,-78.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9564 components: - pos: 82.5,-78.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9565 components: - pos: 83.5,-78.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9574 components: - pos: 83.5,-74.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9578 components: - pos: 82.5,-74.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9581 components: - pos: 80.5,-74.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9582 components: - pos: 79.5,-74.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9583 components: - pos: 83.5,-73.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9584 components: - pos: 84.5,-73.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9585 components: - pos: 85.5,-73.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9586 components: - pos: 86.5,-73.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9587 components: - pos: 87.5,-73.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9588 components: - pos: 87.5,-75.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9592 components: - pos: 86.5,-75.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9593 components: - pos: 85.5,-75.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9613 components: - pos: 84.5,-75.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9619 components: - pos: 83.5,-75.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9620 components: - pos: 83.5,-77.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9622 components: - pos: 84.5,-77.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9629 components: - pos: 85.5,-77.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9644 components: - pos: 86.5,-77.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9650 components: - pos: 87.5,-77.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9652 components: - pos: 87.5,-79.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9658 components: - pos: 86.5,-79.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9677 components: - pos: 85.5,-79.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9681 components: - pos: 84.5,-79.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9682 components: - pos: -46.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9683 components: - pos: -44.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9729 components: - pos: 83.5,-79.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9740 components: - pos: 83.5,-81.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9742 components: - pos: 84.5,-81.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9743 components: - pos: 85.5,-81.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9744 components: - pos: 86.5,-81.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9750 components: - pos: 87.5,-81.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9774 components: - pos: 87.5,-83.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9795 components: - pos: 86.5,-83.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9796 components: - pos: 85.5,-83.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9797 components: - pos: 84.5,-83.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9798 components: - pos: 83.5,-83.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9799 components: - pos: 75.5,-83.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9842 components: - pos: 23.5,24.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9858 components: - pos: 22.5,25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9859 components: - pos: 23.5,25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9938 components: - pos: 76.5,-83.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9939 components: - pos: 81.5,-72.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9940 components: - pos: 81.5,-71.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9941 components: - pos: 81.5,-70.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9942 components: - pos: 81.5,-69.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9943 components: - pos: 81.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9944 components: - pos: 81.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9945 components: - pos: 81.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10107 components: - pos: -15.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10108 components: - pos: -15.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10127 components: - pos: 2.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10128 components: - pos: 3.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10129 components: - pos: 4.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10130 components: - pos: 5.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10131 components: - pos: 6.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10132 components: - pos: 7.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10133 components: - pos: 8.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10134 components: - pos: 9.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10135 components: - pos: 10.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10136 components: - pos: 11.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10137 components: - pos: 12.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10138 components: - pos: -16.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10139 components: - pos: -16.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10140 components: - pos: -16.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10141 components: - pos: -16.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10142 components: - pos: -16.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10143 components: - pos: -16.5,15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10144 components: - pos: -16.5,16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10145 components: - pos: -16.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10146 components: - pos: -16.5,18.5 @@ -48102,134 +42870,96 @@ entities: - pos: -20.5,-33.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10160 components: - pos: -19.5,-33.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10161 components: - pos: -18.5,-33.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10162 components: - pos: -17.5,-33.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10163 components: - pos: -17.5,-34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10164 components: - pos: -17.5,-35.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10165 components: - pos: -17.5,-36.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10166 components: - pos: -17.5,-37.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10167 components: - pos: -17.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10168 components: - pos: -17.5,-39.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10169 components: - pos: -17.5,-40.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10170 components: - pos: -17.5,-41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10171 components: - pos: -17.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10172 components: - pos: -17.5,-43.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10173 components: - pos: -17.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10174 components: - pos: -17.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10175 components: - pos: -17.5,-46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10176 components: - pos: -17.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10177 components: - pos: -18.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10178 components: - pos: -26.5,-32.5 @@ -48245,8 +42975,6 @@ entities: - pos: -22.5,-33.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10181 components: - pos: -25.5,-33.5 @@ -48257,8 +42985,6 @@ entities: - pos: -21.5,-33.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10183 components: - pos: -24.5,-33.5 @@ -48319,183 +43045,131 @@ entities: - pos: -39.5,-19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10211 components: - pos: -39.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10212 components: - pos: -39.5,-17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10213 components: - pos: -39.5,-16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10214 components: - pos: -38.5,-16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10215 components: - pos: -37.5,-16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10216 components: - pos: -36.5,-16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10217 components: - pos: -35.5,-16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10218 components: - pos: -34.5,-16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10219 components: - pos: -34.5,-15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10220 components: - pos: -34.5,-14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10221 components: - pos: -34.5,-13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10222 components: - pos: -34.5,-12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10223 components: - pos: -34.5,-11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10224 components: - pos: -34.5,-10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10225 components: - pos: -34.5,-9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10226 components: - pos: -34.5,-8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10227 components: - pos: -32.5,-8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10228 components: - pos: -33.5,-8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10229 components: - pos: -31.5,-8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10230 components: - pos: -30.5,-8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10231 components: - pos: -30.5,-7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10232 components: - pos: -30.5,-6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10233 components: - pos: -30.5,-5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10234 components: - pos: -30.5,-4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10235 components: - pos: -30.5,-3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10236 components: - pos: -30.5,-2.5 @@ -48541,141 +43215,101 @@ entities: - pos: -25.5,0.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10245 components: - pos: -25.5,1.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10246 components: - pos: -25.5,2.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10247 components: - pos: -25.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10248 components: - pos: -25.5,4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10249 components: - pos: -25.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10250 components: - pos: -25.5,6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10251 components: - pos: -25.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10252 components: - pos: -25.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10253 components: - pos: -25.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10254 components: - pos: -25.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10255 components: - pos: -24.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10256 components: - pos: -23.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10257 components: - pos: -22.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10258 components: - pos: -21.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10259 components: - pos: -20.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10260 components: - pos: -19.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10261 components: - pos: -18.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10262 components: - pos: -17.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10275 components: - pos: 19.5,16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10276 components: - pos: 19.5,14.5 @@ -48776,162 +43410,116 @@ entities: - pos: 28.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10296 components: - pos: 30.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10297 components: - pos: 29.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10298 components: - pos: 31.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10299 components: - pos: 24.5,22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10300 components: - pos: 33.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10301 components: - pos: 34.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10302 components: - pos: 35.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10303 components: - pos: 36.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10304 components: - pos: 37.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10305 components: - pos: 38.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10306 components: - pos: 39.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10307 components: - pos: 40.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10308 components: - pos: 41.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10578 components: - pos: 47.5,40.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10579 components: - pos: 47.5,41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10580 components: - pos: 49.5,33.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10581 components: - pos: 48.5,29.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10582 components: - pos: 45.5,29.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10583 components: - pos: 46.5,29.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10598 components: - pos: 47.5,39.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10599 components: - pos: 47.5,18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10760 components: - pos: -6.5,-77.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10762 components: - pos: 6.5,-74.5 @@ -48942,8 +43530,6 @@ entities: - pos: 4.5,-76.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10819 components: - pos: -5.5,-74.5 @@ -48954,8 +43540,6 @@ entities: - pos: 5.5,-77.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10865 components: - pos: -2.5,-75.5 @@ -48971,484 +43555,346 @@ entities: - pos: 41.5,38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11202 components: - pos: 42.5,38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11203 components: - pos: 43.5,38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11204 components: - pos: 44.5,38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11205 components: - pos: 45.5,38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11206 components: - pos: 41.5,36.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11207 components: - pos: 42.5,36.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11208 components: - pos: 43.5,36.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11209 components: - pos: 44.5,36.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11210 components: - pos: 45.5,36.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11211 components: - pos: 41.5,34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11212 components: - pos: 42.5,34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11213 components: - pos: 43.5,34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11214 components: - pos: 44.5,34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11215 components: - pos: 45.5,34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11216 components: - pos: 41.5,32.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11217 components: - pos: 42.5,32.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11218 components: - pos: 43.5,32.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11219 components: - pos: 44.5,32.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11220 components: - pos: 45.5,32.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11221 components: - pos: 49.5,32.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11222 components: - pos: 50.5,32.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11223 components: - pos: 51.5,32.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11224 components: - pos: 52.5,32.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11225 components: - pos: 53.5,32.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11226 components: - pos: 49.5,34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11227 components: - pos: 50.5,34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11228 components: - pos: 51.5,34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11229 components: - pos: 52.5,34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11230 components: - pos: 53.5,34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11231 components: - pos: 49.5,36.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11232 components: - pos: 50.5,36.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11233 components: - pos: 51.5,36.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11234 components: - pos: 52.5,36.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11235 components: - pos: 53.5,36.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11236 components: - pos: 49.5,38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11237 components: - pos: 50.5,38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11238 components: - pos: 51.5,38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11239 components: - pos: 52.5,38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11240 components: - pos: 53.5,38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11242 components: - pos: 47.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11243 components: - pos: 45.5,30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11244 components: - pos: 44.5,30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11245 components: - pos: 43.5,30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11246 components: - pos: 42.5,30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11247 components: - pos: 41.5,30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11248 components: - pos: 41.5,28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11249 components: - pos: 42.5,28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11250 components: - pos: 43.5,28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11251 components: - pos: 44.5,28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11252 components: - pos: 45.5,28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11254 components: - pos: 49.5,28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11255 components: - pos: 50.5,28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11256 components: - pos: 51.5,28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11257 components: - pos: 52.5,28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11258 components: - pos: 53.5,28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11259 components: - pos: 53.5,30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11260 components: - pos: 52.5,30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11261 components: - pos: 51.5,30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11262 components: - pos: 50.5,30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11263 components: - pos: 49.5,30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11264 components: - pos: 49.5,29.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11270 components: - pos: 46.5,33.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11272 components: - pos: 48.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11285 components: - pos: 47.5,28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11286 components: - pos: 47.5,27.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11287 components: - pos: 47.5,26.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11288 components: - pos: 47.5,25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11289 components: - pos: 47.5,24.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11290 components: - pos: 47.5,23.5 @@ -49459,624 +43905,446 @@ entities: - pos: 47.5,21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11292 components: - pos: 47.5,20.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11295 components: - pos: 47.5,15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11296 components: - pos: 47.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11297 components: - pos: 47.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11298 components: - pos: 49.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11299 components: - pos: 50.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11300 components: - pos: 51.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11301 components: - pos: 52.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11302 components: - pos: 53.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11303 components: - pos: 54.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11304 components: - pos: 55.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11305 components: - pos: 56.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11306 components: - pos: 57.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11307 components: - pos: 58.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11308 components: - pos: 59.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11309 components: - pos: 59.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11310 components: - pos: 59.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11311 components: - pos: 59.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11312 components: - pos: 58.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11313 components: - pos: 57.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11314 components: - pos: 56.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11315 components: - pos: 55.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11326 components: - pos: 48.5,37.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11327 components: - pos: 46.5,37.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11328 components: - pos: 49.5,37.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11329 components: - pos: 45.5,33.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11330 components: - pos: 48.5,33.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11331 components: - pos: 45.5,37.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11990 components: - pos: -51.5,29.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11992 components: - pos: -50.5,29.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11993 components: - pos: -51.5,28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12002 components: - pos: -52.5,28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12003 components: - pos: -51.5,30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12008 components: - pos: -53.5,30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12009 components: - pos: -52.5,30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12011 components: - pos: -55.5,30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12012 components: - pos: -54.5,30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12013 components: - pos: -55.5,28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12014 components: - pos: -54.5,28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12015 components: - pos: -53.5,28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12016 components: - pos: -43.5,32.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12017 components: - pos: -45.5,30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12018 components: - pos: -44.5,30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12019 components: - pos: -43.5,30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12021 components: - pos: -43.5,28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12022 components: - pos: -44.5,28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12025 components: - pos: -45.5,28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12026 components: - pos: -46.5,32.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12031 components: - pos: -46.5,30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12036 components: - pos: -48.5,29.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12037 components: - pos: -47.5,29.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12038 components: - pos: -47.5,30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12039 components: - pos: -47.5,32.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12040 components: - pos: -45.5,32.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12041 components: - pos: -44.5,32.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12042 components: - pos: -47.5,28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12043 components: - pos: -46.5,28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12044 components: - pos: -43.5,34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12083 components: - pos: -15.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12183 components: - pos: -44.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12184 components: - pos: -43.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12185 components: - pos: -45.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13102 components: - pos: -49.5,28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13103 components: - pos: -49.5,27.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13104 components: - pos: -49.5,26.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13105 components: - pos: -49.5,25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13106 components: - pos: -49.5,24.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13108 components: - pos: -51.5,37.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13110 components: - pos: -47.5,37.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13112 components: - pos: -47.5,33.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13114 components: - pos: -51.5,33.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13141 components: - pos: -49.5,21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13142 components: - pos: -49.5,19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13143 components: - pos: -49.5,18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13151 components: - pos: -47.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13152 components: - pos: -47.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13153 components: - pos: -47.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13154 components: - pos: -47.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13155 components: - pos: -48.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13156 components: - pos: -49.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13157 components: - pos: -49.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13158 components: - pos: -49.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13159 components: - pos: -49.5,6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13160 components: - pos: -49.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13161 components: - pos: -49.5,4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13162 components: - pos: -49.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13163 components: - pos: -49.5,2.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13164 components: - pos: -49.5,1.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13165 components: - pos: -49.5,0.5 @@ -50137,253 +44405,181 @@ entities: - pos: -50.5,-10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13178 components: - pos: -50.5,-11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13179 components: - pos: -50.5,-12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13180 components: - pos: -50.5,-13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13181 components: - pos: -50.5,-14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13182 components: - pos: -50.5,-15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13183 components: - pos: -50.5,-16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13184 components: - pos: -50.5,-17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13185 components: - pos: -50.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13186 components: - pos: -49.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13187 components: - pos: -48.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13188 components: - pos: -47.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13189 components: - pos: -46.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13190 components: - pos: -45.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13191 components: - pos: -44.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13192 components: - pos: -43.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13193 components: - pos: -42.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13194 components: - pos: -41.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13195 components: - pos: -40.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13375 components: - pos: -44.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13376 components: - pos: -43.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13377 components: - pos: -43.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13442 components: - pos: -49.5,20.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13696 components: - pos: -14.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13697 components: - pos: -13.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13698 components: - pos: -12.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13699 components: - pos: -10.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13700 components: - pos: -11.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13701 components: - pos: -9.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13702 components: - pos: -8.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13703 components: - pos: -7.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13704 components: - pos: -6.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13705 components: - pos: -5.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13706 components: - pos: -4.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13707 components: - pos: -3.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13708 components: - pos: -2.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13709 components: - pos: -1.5,11.5 @@ -50404,92 +44600,66 @@ entities: - pos: 1.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13713 components: - pos: 2.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13714 components: - pos: 2.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13715 components: - pos: 2.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13716 components: - pos: 2.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13717 components: - pos: 2.5,15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13718 components: - pos: 2.5,16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13719 components: - pos: 2.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13720 components: - pos: 3.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13721 components: - pos: 4.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13722 components: - pos: 5.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13723 components: - pos: 6.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13724 components: - pos: 7.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13725 components: - pos: 8.5,17.5 @@ -50505,64 +44675,46 @@ entities: - pos: 10.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13728 components: - pos: 11.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13729 components: - pos: 12.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13730 components: - pos: 13.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13731 components: - pos: 14.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13732 components: - pos: 15.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13733 components: - pos: 16.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13734 components: - pos: 17.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13735 components: - pos: 18.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13996 components: - pos: -50.5,-3.5 @@ -50628,15 +44780,11 @@ entities: - pos: -6.5,-49.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15464 components: - pos: -7.5,-49.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15485 components: - pos: -6.5,-50.5 @@ -50647,253 +44795,181 @@ entities: - pos: -54.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15816 components: - pos: -54.5,-58.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15817 components: - pos: -52.5,-58.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15818 components: - pos: -52.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15819 components: - pos: -52.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15820 components: - pos: -54.5,-66.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15824 components: - pos: -54.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15830 components: - pos: -52.5,-55.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15831 components: - pos: -49.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15832 components: - pos: -49.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15833 components: - pos: -50.5,-58.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15834 components: - pos: -50.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15836 components: - pos: -52.5,-67.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15837 components: - pos: -52.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15838 components: - pos: -54.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15839 components: - pos: -54.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15842 components: - pos: -53.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15843 components: - pos: -52.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15844 components: - pos: -52.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15846 components: - pos: -36.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15847 components: - pos: -38.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15848 components: - pos: -37.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15850 components: - pos: -54.5,-67.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15857 components: - pos: -53.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15858 components: - pos: -53.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15859 components: - pos: -53.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15860 components: - pos: -54.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15861 components: - pos: -52.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15862 components: - pos: -54.5,-55.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15863 components: - pos: -54.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15864 components: - pos: -52.5,-66.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15865 components: - pos: -50.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15866 components: - pos: -50.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15867 components: - pos: -48.5,-55.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15868 components: - pos: -50.5,-55.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15869 components: - pos: -36.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15884 components: - pos: -6.5,-74.5 @@ -50904,50 +44980,36 @@ entities: - pos: -31.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15905 components: - pos: -33.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15916 components: - pos: 47.5,22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15918 components: - pos: 46.5,18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16062 components: - pos: -41.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16063 components: - pos: -40.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16064 components: - pos: -39.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16081 components: - pos: -13.5,-15.5 @@ -50958,64 +45020,46 @@ entities: - pos: -47.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16091 components: - pos: -48.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16092 components: - pos: -48.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16093 components: - pos: -48.5,15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16100 components: - pos: -48.5,16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16135 components: - pos: -20.5,-66.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16139 components: - pos: -48.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16154 components: - pos: -20.5,-67.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16306 components: - pos: -49.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16504 components: - pos: 0.5,-41.5 @@ -51031,8 +45075,6 @@ entities: - pos: 2.5,-41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16510 components: - pos: 3.5,-41.5 @@ -51043,15 +45085,11 @@ entities: - pos: -0.5,-74.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16539 components: - pos: -0.5,-75.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16552 components: - pos: -6.5,-53.5 @@ -51067,15 +45105,11 @@ entities: - pos: -31.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17009 components: - pos: -32.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17012 components: - pos: -25.5,-64.5 @@ -51086,8 +45120,6 @@ entities: - pos: -34.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17024 components: - pos: -8.5,-70.5 @@ -51098,8 +45130,6 @@ entities: - pos: -35.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17080 components: - pos: -17.5,-70.5 @@ -51130,8 +45160,6 @@ entities: - pos: -21.5,-70.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17162 components: - pos: -23.5,-66.5 @@ -51162,8 +45190,6 @@ entities: - pos: -21.5,-68.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17169 components: - pos: -20.5,-68.5 @@ -51194,162 +45220,116 @@ entities: - pos: -50.5,21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17343 components: - pos: -50.5,22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17344 components: - pos: -50.5,23.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17345 components: - pos: -49.5,23.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17347 components: - pos: -49.5,39.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17348 components: - pos: -49.5,40.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17349 components: - pos: -49.5,41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17363 components: - pos: -47.5,36.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17364 components: - pos: -46.5,36.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17366 components: - pos: -45.5,36.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17367 components: - pos: -44.5,36.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17368 components: - pos: -43.5,36.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17369 components: - pos: -43.5,38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17370 components: - pos: -44.5,38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17371 components: - pos: -45.5,38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17372 components: - pos: -46.5,38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17374 components: - pos: -47.5,38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17375 components: - pos: -48.5,37.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17376 components: - pos: -50.5,37.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17377 components: - pos: -51.5,38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17378 components: - pos: -52.5,38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17379 components: - pos: -53.5,38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17380 components: - pos: -54.5,38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17385 components: - pos: -4.5,-68.5 @@ -51365,15 +45345,11 @@ entities: - pos: -55.5,38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17389 components: - pos: -55.5,36.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17396 components: - pos: -5.5,-68.5 @@ -51409,15 +45385,11 @@ entities: - pos: -54.5,36.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17432 components: - pos: -53.5,36.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17439 components: - pos: -12.5,-68.5 @@ -51448,36 +45420,26 @@ entities: - pos: -52.5,36.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17509 components: - pos: -51.5,36.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17510 components: - pos: -51.5,34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17511 components: - pos: -52.5,34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17512 components: - pos: -53.5,34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17518 components: - pos: -5.5,-72.5 @@ -51518,92 +45480,66 @@ entities: - pos: -54.5,34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17537 components: - pos: -55.5,34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17538 components: - pos: -55.5,32.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17539 components: - pos: -54.5,32.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17540 components: - pos: -53.5,32.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17541 components: - pos: -52.5,32.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17542 components: - pos: -51.5,32.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17543 components: - pos: -50.5,33.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17544 components: - pos: -48.5,33.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17545 components: - pos: -47.5,34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17546 components: - pos: -46.5,34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17547 components: - pos: -45.5,34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17548 components: - pos: -44.5,34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17573 components: - pos: -6.5,-68.5 @@ -51644,22 +45580,16 @@ entities: - pos: 15.5,-75.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17602 components: - pos: 14.5,-74.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17697 components: - pos: 12.5,-74.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17698 components: - pos: 9.5,-74.5 @@ -51675,43 +45605,31 @@ entities: - pos: 48.5,-41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18112 components: - pos: 47.5,-41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18113 components: - pos: 47.5,-40.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18114 components: - pos: 47.5,-39.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18115 components: - pos: 47.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18116 components: - pos: 46.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18722 components: - pos: -2.5,-56.5 @@ -51742,64 +45660,46 @@ entities: - pos: -28.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18900 components: - pos: -31.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18901 components: - pos: -31.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18902 components: - pos: -31.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18904 components: - pos: -31.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18905 components: - pos: -30.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18906 components: - pos: -29.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18907 components: - pos: -28.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18908 components: - pos: -27.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18919 components: - pos: -26.5,-65.5 @@ -51840,120 +45740,86 @@ entities: - pos: -19.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19133 components: - pos: -20.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19134 components: - pos: -21.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19135 components: - pos: -22.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19136 components: - pos: -23.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19137 components: - pos: -24.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19138 components: - pos: -25.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19139 components: - pos: -26.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19140 components: - pos: -27.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19141 components: - pos: -28.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19155 components: - pos: -29.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19156 components: - pos: -30.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19169 components: - pos: -54.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19172 components: - pos: -55.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19173 components: - pos: -56.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19174 components: - pos: -57.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19175 components: - pos: -42.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19288 components: - pos: -3.5,-4.5 @@ -51964,701 +45830,501 @@ entities: - pos: -44.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19309 components: - pos: -44.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19312 components: - pos: -44.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19313 components: - pos: -44.5,-66.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19314 components: - pos: -44.5,-67.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19339 components: - pos: -46.5,-67.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19340 components: - pos: -46.5,-66.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19369 components: - pos: -46.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19370 components: - pos: -46.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19384 components: - pos: -46.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19627 components: - pos: 51.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19628 components: - pos: 52.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19629 components: - pos: 53.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19630 components: - pos: 54.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19631 components: - pos: 55.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19632 components: - pos: 56.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19633 components: - pos: 57.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19634 components: - pos: 58.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19635 components: - pos: 59.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19636 components: - pos: 60.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19637 components: - pos: 61.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19638 components: - pos: 62.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19639 components: - pos: 63.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19640 components: - pos: 64.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19641 components: - pos: 65.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19642 components: - pos: 65.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19643 components: - pos: 66.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19644 components: - pos: 67.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19645 components: - pos: 68.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19646 components: - pos: 69.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19647 components: - pos: 70.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19648 components: - pos: 71.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19649 components: - pos: 72.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19650 components: - pos: 73.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19651 components: - pos: 74.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19652 components: - pos: 75.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19653 components: - pos: 76.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19654 components: - pos: 77.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19655 components: - pos: 78.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19656 components: - pos: 79.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19657 components: - pos: 80.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19658 components: - pos: 81.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19659 components: - pos: 82.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19660 components: - pos: 82.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19661 components: - pos: 82.5,-58.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19662 components: - pos: 82.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19663 components: - pos: 82.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19664 components: - pos: 82.5,-55.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19665 components: - pos: 82.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19666 components: - pos: 82.5,-53.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19667 components: - pos: 82.5,-52.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19668 components: - pos: 82.5,-51.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19669 components: - pos: 82.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19670 components: - pos: 82.5,-49.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19671 components: - pos: 82.5,-48.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19672 components: - pos: 82.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19673 components: - pos: 82.5,-46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19674 components: - pos: 82.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19675 components: - pos: 83.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19676 components: - pos: 84.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19677 components: - pos: 85.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19678 components: - pos: 85.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19773 components: - pos: -45.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19774 components: - pos: -45.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19795 components: - pos: 80.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19796 components: - pos: 80.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19797 components: - pos: 80.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19799 components: - pos: 77.5,-81.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19800 components: - pos: 78.5,-81.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19801 components: - pos: 79.5,-81.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19802 components: - pos: 77.5,-83.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19803 components: - pos: 79.5,-83.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19804 components: - pos: 78.5,-83.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19805 components: - pos: 76.5,-81.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19806 components: - pos: 75.5,-81.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19807 components: - pos: 75.5,-79.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19808 components: - pos: 76.5,-79.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19809 components: - pos: 79.5,-79.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19810 components: - pos: 79.5,-77.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19811 components: - pos: 78.5,-77.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19812 components: - pos: 77.5,-77.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19813 components: - pos: 78.5,-79.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19814 components: - pos: 77.5,-79.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19815 components: - pos: 79.5,-73.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19816 components: - pos: 76.5,-73.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19817 components: - pos: 75.5,-73.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19818 components: - pos: 75.5,-75.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19819 components: - pos: 76.5,-77.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19820 components: - pos: 75.5,-77.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19821 components: - pos: 76.5,-75.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19822 components: - pos: 79.5,-75.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19823 components: - pos: 78.5,-75.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19824 components: - pos: 77.5,-75.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19825 components: - pos: 77.5,-73.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19826 components: - pos: 78.5,-73.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19827 components: - pos: -50.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19828 components: - pos: -50.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19829 components: - pos: -50.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19830 components: - pos: -50.5,-66.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19831 components: - pos: -50.5,-67.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19850 components: - pos: -6.5,-56.5 @@ -52684,169 +46350,121 @@ entities: - pos: 50.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19892 components: - pos: -48.5,-67.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19895 components: - pos: -48.5,-66.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19896 components: - pos: -48.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19897 components: - pos: -48.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19898 components: - pos: -48.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19899 components: - pos: -49.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19900 components: - pos: -49.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19901 components: - pos: -44.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19902 components: - pos: -44.5,-58.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19903 components: - pos: -44.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19904 components: - pos: -44.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19905 components: - pos: -44.5,-55.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19906 components: - pos: -46.5,-55.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19907 components: - pos: -46.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19908 components: - pos: -46.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19909 components: - pos: -46.5,-58.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19910 components: - pos: -46.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19911 components: - pos: -45.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19912 components: - pos: -45.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19913 components: - pos: -48.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19914 components: - pos: -48.5,-58.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19915 components: - pos: -48.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19916 components: - pos: -48.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19962 components: - pos: -3.5,-6.5 @@ -52872,36 +46490,26 @@ entities: - pos: 51.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20128 components: - pos: 81.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20129 components: - pos: 81.5,-66.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20130 components: - pos: 81.5,-67.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20131 components: - pos: 81.5,-68.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 22337 components: - pos: -0.5,-31.5 @@ -52912,15 +46520,11 @@ entities: - pos: -10.5,-74.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 23203 components: - pos: -14.5,-74.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 23221 components: - pos: 11.5,-74.5 @@ -52956,8 +46560,6 @@ entities: - pos: -16.5,-74.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 25894 components: - pos: -6.5,-52.5 @@ -52973,8 +46575,6 @@ entities: - pos: -15.5,-74.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26299 components: - pos: -5.5,27.5 @@ -53090,36 +46690,26 @@ entities: - pos: -10.5,44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26322 components: - pos: -11.5,44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26323 components: - pos: -12.5,44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26324 components: - pos: -13.5,44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26325 components: - pos: -14.5,44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26326 components: - pos: -15.5,44.5 @@ -53140,43 +46730,31 @@ entities: - pos: -18.5,44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26330 components: - pos: -19.5,44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26331 components: - pos: -20.5,44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26332 components: - pos: -21.5,44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26333 components: - pos: -22.5,44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26334 components: - pos: -23.5,44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26335 components: - pos: -23.5,45.5 @@ -53187,64 +46765,46 @@ entities: - pos: -23.5,46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26337 components: - pos: -23.5,47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26338 components: - pos: -23.5,48.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26339 components: - pos: -23.5,49.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26340 components: - pos: -23.5,50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26341 components: - pos: -23.5,51.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26342 components: - pos: -22.5,51.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26343 components: - pos: -21.5,51.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26344 components: - pos: -20.5,51.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26742 components: - pos: -6.5,-67.5 @@ -53305,64 +46865,46 @@ entities: - pos: -11.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26911 components: - pos: 8.5,-78.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26917 components: - pos: 9.5,-78.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26918 components: - pos: 9.5,-77.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26919 components: - pos: 9.5,-76.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26966 components: - pos: 34.5,-92.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26967 components: - pos: 34.5,-91.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26968 components: - pos: 34.5,-90.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26969 components: - pos: 34.5,-89.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27218 components: - pos: 9.5,-75.5 @@ -53497,36 +47039,26 @@ entities: - pos: -48.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 517 components: - pos: -49.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 519 components: - pos: -48.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 555 components: - pos: -62.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 560 components: - pos: -63.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 1236 components: - pos: 4.5,-36.5 @@ -53537,22 +47069,16 @@ entities: - pos: -17.5,-40.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 1307 components: - pos: -17.5,-37.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 1606 components: - pos: -21.5,-35.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 1637 components: - pos: 5.5,-36.5 @@ -53583,29 +47109,21 @@ entities: - pos: -17.5,-36.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 2864 components: - pos: 28.5,-4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 2899 components: - pos: -34.5,-28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 2936 components: - pos: 23.5,-22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 2937 components: - pos: 22.5,-22.5 @@ -53626,8 +47144,6 @@ entities: - pos: -3.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 3815 components: - pos: 9.5,-69.5 @@ -53653,8 +47169,6 @@ entities: - pos: -7.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 4067 components: - pos: 43.5,-3.5 @@ -53665,22 +47179,16 @@ entities: - pos: 0.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5313 components: - pos: -13.5,-19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5527 components: - pos: 8.5,-28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5553 components: - pos: 46.5,-22.5 @@ -53716,8 +47224,6 @@ entities: - pos: -12.5,-19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5728 components: - pos: 0.5,-24.5 @@ -53728,15 +47234,11 @@ entities: - pos: 47.5,-22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5734 components: - pos: 4.5,-14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5763 components: - pos: -1.5,-24.5 @@ -53747,15 +47249,11 @@ entities: - pos: -0.5,-15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5788 components: - pos: -28.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5789 components: - pos: -0.5,-14.5 @@ -53776,22 +47274,16 @@ entities: - pos: -3.5,-24.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5949 components: - pos: -13.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5950 components: - pos: -10.5,-19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5951 components: - pos: -13.5,-17.5 @@ -53847,8 +47339,6 @@ entities: - pos: -5.5,-15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5976 components: - pos: -7.5,-14.5 @@ -53939,8 +47429,6 @@ entities: - pos: 3.5,-9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5995 components: - pos: -7.5,-16.5 @@ -53981,8 +47469,6 @@ entities: - pos: -6.5,-22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6003 components: - pos: 4.5,-8.5 @@ -54083,8 +47569,6 @@ entities: - pos: 9.5,-21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6042 components: - pos: 8.5,-18.5 @@ -54180,8 +47664,6 @@ entities: - pos: 5.5,-25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6094 components: - pos: -0.5,-9.5 @@ -54307,15 +47789,11 @@ entities: - pos: 13.5,4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6399 components: - pos: 25.5,20.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6418 components: - pos: 24.5,14.5 @@ -54326,8 +47804,6 @@ entities: - pos: 39.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6435 components: - pos: 39.5,13.5 @@ -54353,36 +47829,26 @@ entities: - pos: 41.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6443 components: - pos: 42.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6444 components: - pos: 43.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6445 components: - pos: 44.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6446 components: - pos: 45.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6447 components: - pos: 27.5,13.5 @@ -54448,8 +47914,6 @@ entities: - pos: 18.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6587 components: - pos: 16.5,11.5 @@ -54475,8 +47939,6 @@ entities: - pos: 15.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6674 components: - pos: 19.5,32.5 @@ -54517,92 +47979,66 @@ entities: - pos: 43.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6866 components: - pos: 42.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6867 components: - pos: 42.5,6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6868 components: - pos: 42.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6869 components: - pos: 42.5,4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6870 components: - pos: 42.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6871 components: - pos: 40.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6872 components: - pos: 38.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6873 components: - pos: 36.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6874 components: - pos: 34.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6875 components: - pos: 32.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6876 components: - pos: 30.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6877 components: - pos: 28.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6878 components: - pos: 24.5,11.5 @@ -54623,8 +48059,6 @@ entities: - pos: 31.5,2.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 6885 components: - pos: 27.5,3.5 @@ -54685,8 +48119,6 @@ entities: - pos: 19.5,4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7011 components: - pos: 7.5,-27.5 @@ -54697,8 +48129,6 @@ entities: - pos: 7.5,-28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7024 components: - pos: 26.5,-3.5 @@ -54709,22 +48139,16 @@ entities: - pos: -18.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7048 components: - pos: -17.5,-41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7064 components: - pos: 28.5,-3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7066 components: - pos: 26.5,-2.5 @@ -54735,8 +48159,6 @@ entities: - pos: -18.5,-48.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7095 components: - pos: 48.5,-3.5 @@ -54777,43 +48199,31 @@ entities: - pos: -17.5,-43.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7178 components: - pos: -17.5,-46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7179 components: - pos: -17.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7182 components: - pos: -17.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7186 components: - pos: 25.5,23.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7194 components: - pos: -17.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7198 components: - pos: 46.5,-0.5 @@ -54824,15 +48234,11 @@ entities: - pos: 24.5,23.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7200 components: - pos: -17.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7206 components: - pos: 47.5,-3.5 @@ -54853,8 +48259,6 @@ entities: - pos: 12.5,-28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7245 components: - pos: 7.5,-26.5 @@ -54875,22 +48279,16 @@ entities: - pos: -11.5,-19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7611 components: - pos: 21.5,24.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7612 components: - pos: 21.5,23.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7623 components: - pos: 15.5,27.5 @@ -55116,8 +48514,6 @@ entities: - pos: 5.5,38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8826 components: - pos: 7.5,30.5 @@ -55243,8 +48639,6 @@ entities: - pos: 11.5,39.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8851 components: - pos: -4.5,30.5 @@ -55255,8 +48649,6 @@ entities: - pos: -3.5,29.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8854 components: - pos: -4.5,31.5 @@ -55287,8 +48679,6 @@ entities: - pos: -6.5,34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8868 components: - pos: -14.5,33.5 @@ -55319,8 +48709,6 @@ entities: - pos: -16.5,30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8874 components: - pos: -4.5,26.5 @@ -55371,22 +48759,16 @@ entities: - pos: 24.5,22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8914 components: - pos: 46.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8917 components: - pos: -20.5,22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8926 components: - pos: -19.5,22.5 @@ -55437,43 +48819,31 @@ entities: - pos: 4.5,42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9208 components: - pos: 5.5,42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9209 components: - pos: 6.5,42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9218 components: - pos: 7.5,42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9248 components: - pos: 3.5,42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9249 components: - pos: 2.5,42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9264 components: - pos: 2.5,32.5 @@ -55509,8 +48879,6 @@ entities: - pos: -1.5,34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9615 components: - pos: 19.5,34.5 @@ -55526,8 +48894,6 @@ entities: - pos: 20.5,35.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9659 components: - pos: -19.5,21.5 @@ -55628,127 +48994,91 @@ entities: - pos: -13.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9835 components: - pos: -48.5,15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9845 components: - pos: 18.5,30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9846 components: - pos: 19.5,30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9847 components: - pos: 20.5,30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9848 components: - pos: 21.5,30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9849 components: - pos: 21.5,29.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9850 components: - pos: 21.5,28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9851 components: - pos: 21.5,27.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9852 components: - pos: 21.5,26.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9853 components: - pos: 21.5,25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9854 components: - pos: 22.5,25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9855 components: - pos: 23.5,25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9930 components: - pos: 23.5,23.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9933 components: - pos: 23.5,24.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9963 components: - pos: 21.5,22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9977 components: - pos: -40.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9978 components: - pos: -40.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9995 components: - pos: 25.5,19.5 @@ -55779,50 +49109,36 @@ entities: - pos: 41.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10264 components: - pos: 39.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10265 components: - pos: 37.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10266 components: - pos: 35.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10267 components: - pos: 33.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10268 components: - pos: 31.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10269 components: - pos: 29.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10270 components: - pos: 24.5,12.5 @@ -55848,8 +49164,6 @@ entities: - pos: 36.5,2.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10493 components: - pos: 36.5,1.5 @@ -55885,8 +49199,6 @@ entities: - pos: 37.5,-3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10520 components: - pos: 43.5,-2.5 @@ -55897,15 +49209,11 @@ entities: - pos: 43.5,-1.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10560 components: - pos: 6.5,-28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10601 components: - pos: 15.5,28.5 @@ -55916,15 +49224,11 @@ entities: - pos: 43.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10707 components: - pos: 43.5,-1.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10944 components: - pos: 3.5,-43.5 @@ -55935,183 +49239,131 @@ entities: - pos: 44.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10946 components: - pos: 45.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10947 components: - pos: 45.5,4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10948 components: - pos: 45.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10949 components: - pos: 45.5,6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10950 components: - pos: 45.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10951 components: - pos: 45.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10952 components: - pos: 45.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10953 components: - pos: 45.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10954 components: - pos: 46.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10955 components: - pos: 47.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10956 components: - pos: 48.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10957 components: - pos: 49.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10958 components: - pos: 50.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10959 components: - pos: 51.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10960 components: - pos: 52.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10961 components: - pos: 53.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10962 components: - pos: 54.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10963 components: - pos: 54.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10964 components: - pos: 54.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10965 components: - pos: 54.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10966 components: - pos: 54.5,6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10967 components: - pos: 54.5,6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10968 components: - pos: 54.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10969 components: - pos: 54.5,4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10970 components: - pos: 54.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10971 components: - pos: 54.5,2.5 @@ -56177,71 +49429,51 @@ entities: - pos: 60.5,-3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10984 components: - pos: 55.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10985 components: - pos: 56.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10986 components: - pos: 57.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10987 components: - pos: 58.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10988 components: - pos: 59.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10989 components: - pos: 60.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10990 components: - pos: 61.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10991 components: - pos: 61.5,4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10992 components: - pos: 61.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10993 components: - pos: 61.5,2.5 @@ -56257,8 +49489,6 @@ entities: - pos: 62.5,1.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10998 components: - pos: 3.5,-46.5 @@ -56274,50 +49504,36 @@ entities: - pos: 62.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11007 components: - pos: 63.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11008 components: - pos: 64.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11009 components: - pos: 65.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11010 components: - pos: 66.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11011 components: - pos: 67.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11012 components: - pos: 68.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11013 components: - pos: 69.5,5.5 @@ -56368,8 +49584,6 @@ entities: - pos: 72.5,-0.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11023 components: - pos: 72.5,-1.5 @@ -56395,120 +49609,86 @@ entities: - pos: 73.5,-4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11345 components: - pos: 55.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11346 components: - pos: 56.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11347 components: - pos: 57.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11348 components: - pos: 58.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11349 components: - pos: 59.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11350 components: - pos: 59.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11351 components: - pos: 59.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11352 components: - pos: 59.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11353 components: - pos: 60.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11354 components: - pos: 60.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11355 components: - pos: 61.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11356 components: - pos: 62.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11357 components: - pos: 63.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11358 components: - pos: 64.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11359 components: - pos: 65.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11360 components: - pos: 65.5,15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11364 components: - pos: 65.5,18.5 @@ -56524,155 +49704,111 @@ entities: - pos: 66.5,20.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11396 components: - pos: 41.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11769 components: - pos: 58.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11776 components: - pos: 57.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11777 components: - pos: 56.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11778 components: - pos: 55.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11779 components: - pos: 54.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11780 components: - pos: 53.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11781 components: - pos: 52.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11782 components: - pos: 51.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11783 components: - pos: 50.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11784 components: - pos: 49.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11785 components: - pos: 48.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11786 components: - pos: 47.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11787 components: - pos: 47.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11788 components: - pos: 47.5,15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11789 components: - pos: 47.5,16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11790 components: - pos: 47.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11791 components: - pos: 47.5,18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11792 components: - pos: 46.5,18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11793 components: - pos: 46.5,19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11794 components: - pos: 45.5,19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11875 components: - pos: 72.5,-5.5 @@ -56713,15 +49849,11 @@ entities: - pos: 74.5,-10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11922 components: - pos: -6.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 11923 components: - pos: -6.5,6.5 @@ -56782,169 +49914,121 @@ entities: - pos: -15.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12079 components: - pos: -16.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12080 components: - pos: -16.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12081 components: - pos: -16.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12126 components: - pos: -17.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12127 components: - pos: -18.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12128 components: - pos: -19.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12129 components: - pos: -20.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12130 components: - pos: -21.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12131 components: - pos: -22.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12132 components: - pos: -23.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12133 components: - pos: -24.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12134 components: - pos: -25.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12135 components: - pos: -25.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12136 components: - pos: -25.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12137 components: - pos: -25.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12138 components: - pos: -25.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12139 components: - pos: -25.5,6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12140 components: - pos: -25.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12141 components: - pos: -25.5,4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12142 components: - pos: -25.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12143 components: - pos: -25.5,2.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12144 components: - pos: -25.5,1.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12145 components: - pos: -25.5,0.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12146 components: - pos: -25.5,-0.5 @@ -57030,8 +50114,6 @@ entities: - pos: -31.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12166 components: - pos: -4.5,17.5 @@ -57072,8 +50154,6 @@ entities: - pos: -8.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12174 components: - pos: -13.5,19.5 @@ -57104,400 +50184,286 @@ entities: - pos: -45.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12180 components: - pos: -43.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12181 components: - pos: -43.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12182 components: - pos: -44.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12186 components: - pos: -46.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12187 components: - pos: -42.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12188 components: - pos: -41.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12210 components: - pos: -39.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12211 components: - pos: -40.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12298 components: - pos: -43.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12299 components: - pos: -42.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12300 components: - pos: -41.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12301 components: - pos: -40.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12302 components: - pos: -39.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12303 components: - pos: -38.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12304 components: - pos: -38.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12305 components: - pos: -38.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12306 components: - pos: -38.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12307 components: - pos: -37.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12308 components: - pos: -36.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12309 components: - pos: -35.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12310 components: - pos: -34.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12311 components: - pos: -33.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12312 components: - pos: -32.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12313 components: - pos: -31.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12314 components: - pos: -30.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12315 components: - pos: -29.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12316 components: - pos: -28.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12317 components: - pos: -27.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12318 components: - pos: -26.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12319 components: - pos: -43.5,6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12365 components: - pos: -57.5,6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12366 components: - pos: -57.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12367 components: - pos: -57.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12368 components: - pos: -58.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12369 components: - pos: -59.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12370 components: - pos: -60.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12371 components: - pos: -61.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12372 components: - pos: -61.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12373 components: - pos: -61.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12374 components: - pos: -61.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12375 components: - pos: -61.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12376 components: - pos: -61.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12377 components: - pos: -61.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12378 components: - pos: -60.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12382 components: - pos: -48.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12383 components: - pos: -47.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12395 components: - pos: -47.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12396 components: - pos: -47.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12397 components: - pos: -47.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12398 components: - pos: -47.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12399 components: - pos: -46.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12400 components: - pos: -46.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12401 components: - pos: -46.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12402 components: - pos: -45.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12403 components: - pos: -44.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12423 components: - pos: -64.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 12533 components: - pos: -30.5,-2.5 @@ -57508,15 +50474,11 @@ entities: - pos: -65.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13033 components: - pos: -14.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13170 components: - pos: -50.5,-3.5 @@ -57527,50 +50489,36 @@ entities: - pos: -31.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13313 components: - pos: -31.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13314 components: - pos: -31.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13315 components: - pos: -31.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13316 components: - pos: -31.5,15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13317 components: - pos: -31.5,16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13318 components: - pos: -31.5,17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13321 components: - pos: -31.5,20.5 @@ -57586,8 +50534,6 @@ entities: - pos: -39.5,20.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13329 components: - pos: -38.5,20.5 @@ -57598,659 +50544,471 @@ entities: - pos: -35.5,20.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13331 components: - pos: -33.5,20.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13372 components: - pos: -44.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13373 components: - pos: -43.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13374 components: - pos: -43.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13443 components: - pos: -49.5,18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13444 components: - pos: -49.5,19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13445 components: - pos: -49.5,20.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13446 components: - pos: -49.5,21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13447 components: - pos: -49.5,22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13448 components: - pos: -50.5,22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13449 components: - pos: -51.5,22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13457 components: - pos: -48.5,16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13524 components: - pos: -16.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13525 components: - pos: -16.5,6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13526 components: - pos: -16.5,4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13527 components: - pos: -16.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13528 components: - pos: -17.5,4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13529 components: - pos: -18.5,4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13870 components: - pos: -48.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13871 components: - pos: -49.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13872 components: - pos: -50.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13873 components: - pos: -51.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13874 components: - pos: -52.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13875 components: - pos: -53.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13876 components: - pos: -54.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13877 components: - pos: -55.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13878 components: - pos: -56.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13879 components: - pos: -57.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13880 components: - pos: -58.5,11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13881 components: - pos: -58.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13882 components: - pos: -58.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13883 components: - pos: -58.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13884 components: - pos: -59.5,14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13889 components: - pos: -42.5,10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13932 components: - pos: -30.5,-3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13933 components: - pos: -30.5,-4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13934 components: - pos: -30.5,-5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13935 components: - pos: -30.5,-6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13936 components: - pos: -30.5,-7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13937 components: - pos: -30.5,-8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13938 components: - pos: -31.5,-8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13939 components: - pos: -32.5,-8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13940 components: - pos: -33.5,-8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13941 components: - pos: -34.5,-8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13942 components: - pos: -34.5,-9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13943 components: - pos: -34.5,-10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13944 components: - pos: -34.5,-11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13945 components: - pos: -34.5,-12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13946 components: - pos: -34.5,-13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13947 components: - pos: -34.5,-14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13948 components: - pos: -34.5,-15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13949 components: - pos: -34.5,-16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13950 components: - pos: -35.5,-16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13951 components: - pos: -36.5,-16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13952 components: - pos: -37.5,-16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13953 components: - pos: -38.5,-16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13954 components: - pos: -39.5,-16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13955 components: - pos: -41.5,-16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13956 components: - pos: -41.5,-15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13957 components: - pos: -41.5,-17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13958 components: - pos: -41.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13959 components: - pos: -42.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13960 components: - pos: -43.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13961 components: - pos: -44.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13962 components: - pos: -45.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13963 components: - pos: -46.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13964 components: - pos: -47.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13965 components: - pos: -48.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13966 components: - pos: -49.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13967 components: - pos: -50.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13968 components: - pos: -50.5,-17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13969 components: - pos: -51.5,-17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13970 components: - pos: -52.5,-17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13971 components: - pos: -53.5,-17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13972 components: - pos: -54.5,-17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13973 components: - pos: -54.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13974 components: - pos: -55.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13975 components: - pos: -56.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13976 components: - pos: -57.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13977 components: - pos: -58.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13978 components: - pos: -59.5,-18.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13979 components: - pos: -59.5,-17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13980 components: - pos: -60.5,-17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13981 components: - pos: -48.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13982 components: - pos: -49.5,9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13983 components: - pos: -49.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13984 components: - pos: -49.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13985 components: - pos: -49.5,6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13986 components: - pos: -49.5,5.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13987 components: - pos: -49.5,4.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13988 components: - pos: -49.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13989 components: - pos: -49.5,2.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13990 components: - pos: -49.5,1.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 13991 components: - pos: -49.5,0.5 @@ -58311,57 +51069,41 @@ entities: - pos: -50.5,-10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14004 components: - pos: -50.5,-11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14005 components: - pos: -50.5,-12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14006 components: - pos: -50.5,-13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14007 components: - pos: -50.5,-14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14008 components: - pos: -50.5,-15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14009 components: - pos: -50.5,-16.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14074 components: - pos: -21.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14104 components: - pos: 2.5,-34.5 @@ -58372,8 +51114,6 @@ entities: - pos: 1.5,-34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14254 components: - pos: -48.5,-1.5 @@ -58459,106 +51199,76 @@ entities: - pos: -44.5,-9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14378 components: - pos: -51.5,-15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14379 components: - pos: -52.5,-15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14380 components: - pos: -53.5,-15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14381 components: - pos: -54.5,-15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14382 components: - pos: -55.5,-13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14383 components: - pos: -55.5,-14.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14384 components: - pos: -55.5,-15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14385 components: - pos: -56.5,-13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14386 components: - pos: -57.5,-13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14387 components: - pos: -58.5,-13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14388 components: - pos: -59.5,-13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14389 components: - pos: -60.5,-13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14390 components: - pos: -61.5,-13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14391 components: - pos: -62.5,-13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14392 components: - pos: -63.5,-13.5 @@ -58634,8 +51344,6 @@ entities: - pos: -53.5,-9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14450 components: - pos: -51.5,-6.5 @@ -58646,71 +51354,51 @@ entities: - pos: -52.5,-6.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14490 components: - pos: -29.5,-8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14491 components: - pos: -28.5,-8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14492 components: - pos: -27.5,-8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14493 components: - pos: -26.5,-8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14494 components: - pos: -26.5,-9.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14495 components: - pos: -26.5,-10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14496 components: - pos: -26.5,-11.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14497 components: - pos: -26.5,-12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14498 components: - pos: -25.5,-12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14499 components: - pos: -24.5,-12.5 @@ -58751,15 +51439,11 @@ entities: - pos: -19.5,-10.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14572 components: - pos: -65.5,-2.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14573 components: - pos: -63.5,-2.5 @@ -58840,15 +51524,11 @@ entities: - pos: -63.5,12.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14589 components: - pos: -63.5,13.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14590 components: - pos: -64.5,-2.5 @@ -58859,8 +51539,6 @@ entities: - pos: -65.5,-2.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14592 components: - pos: -63.5,-3.5 @@ -58931,8 +51609,6 @@ entities: - pos: -39.5,-15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14849 components: - pos: -38.5,-20.5 @@ -58968,8 +51644,6 @@ entities: - pos: -38.5,-19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14871 components: - pos: -31.5,-30.5 @@ -59035,8 +51709,6 @@ entities: - pos: -29.5,-34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14884 components: - pos: -25.5,-30.5 @@ -59077,8 +51749,6 @@ entities: - pos: -18.5,-30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14892 components: - pos: -25.5,-29.5 @@ -59129,8 +51799,6 @@ entities: - pos: -25.5,-20.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 14903 components: - pos: -37.5,-20.5 @@ -59206,85 +51874,61 @@ entities: - pos: -40.5,-15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15025 components: - pos: -20.5,-35.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15026 components: - pos: -19.5,-35.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15027 components: - pos: -18.5,-35.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15028 components: - pos: -17.5,-35.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15029 components: - pos: -17.5,-34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15030 components: - pos: -17.5,-33.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15031 components: - pos: -18.5,-33.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15032 components: - pos: -19.5,-33.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15033 components: - pos: -20.5,-33.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15034 components: - pos: -21.5,-33.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15035 components: - pos: -22.5,-33.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15036 components: - pos: -23.5,-33.5 @@ -59305,22 +51949,16 @@ entities: - pos: -17.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15040 components: - pos: -17.5,-39.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15282 components: - pos: -37.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15317 components: - pos: -38.5,-21.5 @@ -59346,113 +51984,81 @@ entities: - pos: -18.5,-49.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15532 components: - pos: -18.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15533 components: - pos: -18.5,-51.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15534 components: - pos: -18.5,-52.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15535 components: - pos: -18.5,-53.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15556 components: - pos: -31.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15557 components: - pos: -31.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15558 components: - pos: -31.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15559 components: - pos: -31.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15560 components: - pos: -31.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15561 components: - pos: -31.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15562 components: - pos: -30.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15563 components: - pos: -29.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15564 components: - pos: -29.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15565 components: - pos: -29.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15600 components: - pos: 10.5,-28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15748 components: - pos: 11.5,-26.5 @@ -59463,50 +52069,36 @@ entities: - pos: -37.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16094 components: - pos: -37.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16095 components: - pos: -36.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16096 components: - pos: -34.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16097 components: - pos: -35.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16098 components: - pos: -33.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16099 components: - pos: -32.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16132 components: - pos: -18.5,-69.5 @@ -59527,8 +52119,6 @@ entities: - pos: -20.5,-67.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16147 components: - pos: -16.5,-69.5 @@ -59539,50 +52129,36 @@ entities: - pos: -20.5,-66.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16162 components: - pos: -7.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16163 components: - pos: -6.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16164 components: - pos: -5.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16165 components: - pos: -4.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16166 components: - pos: -3.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16167 components: - pos: -2.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16171 components: - pos: -0.5,-57.5 @@ -59753,8 +52329,6 @@ entities: - pos: -11.5,-35.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16205 components: - pos: -14.5,-69.5 @@ -59770,8 +52344,6 @@ entities: - pos: -0.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16213 components: - pos: 11.5,-72.5 @@ -59962,8 +52534,6 @@ entities: - pos: 8.5,-41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16978 components: - pos: 8.5,-73.5 @@ -60044,8 +52614,6 @@ entities: - pos: 2.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17394 components: - pos: 3.5,-54.5 @@ -60056,8 +52624,6 @@ entities: - pos: 8.5,-46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17478 components: - pos: -6.5,-66.5 @@ -60193,8 +52759,6 @@ entities: - pos: -24.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17513 components: - pos: 5.5,-52.5 @@ -60225,8 +52789,6 @@ entities: - pos: 8.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17583 components: - pos: 7.5,-47.5 @@ -60237,8 +52799,6 @@ entities: - pos: 7.5,-83.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17682 components: - pos: -34.5,-30.5 @@ -60254,204 +52814,146 @@ entities: - pos: -31.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17724 components: - pos: -31.5,-58.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17725 components: - pos: -31.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17726 components: - pos: -31.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17727 components: - pos: -32.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17728 components: - pos: -33.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17729 components: - pos: -33.5,-55.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17730 components: - pos: -33.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17731 components: - pos: -32.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17732 components: - pos: -31.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17733 components: - pos: -30.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17734 components: - pos: -29.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17735 components: - pos: -28.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17736 components: - pos: -28.5,-55.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17737 components: - pos: -28.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17738 components: - pos: -28.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17739 components: - pos: -27.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17740 components: - pos: -26.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17741 components: - pos: -25.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17742 components: - pos: -24.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17743 components: - pos: -23.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17744 components: - pos: -22.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17745 components: - pos: -21.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17746 components: - pos: -21.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17747 components: - pos: -21.5,-55.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17748 components: - pos: -21.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17749 components: - pos: -21.5,-53.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17750 components: - pos: -20.5,-53.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17751 components: - pos: -19.5,-53.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17758 components: - pos: -38.5,-24.5 @@ -60462,106 +52964,76 @@ entities: - pos: 7.5,-90.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17772 components: - pos: 7.5,-88.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17773 components: - pos: 7.5,-85.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17777 components: - pos: -16.5,-71.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18117 components: - pos: 46.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18118 components: - pos: 47.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18119 components: - pos: 47.5,-39.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18120 components: - pos: 47.5,-40.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18121 components: - pos: 47.5,-41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18122 components: - pos: 47.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18123 components: - pos: 46.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18124 components: - pos: 45.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18125 components: - pos: 44.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18126 components: - pos: 43.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18127 components: - pos: 42.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18128 components: - pos: 41.5,-42.5 @@ -60657,8 +53129,6 @@ entities: - pos: 37.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18147 components: - pos: 41.5,-47.5 @@ -60669,8 +53139,6 @@ entities: - pos: 42.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18149 components: - pos: 40.5,-41.5 @@ -60716,8 +53184,6 @@ entities: - pos: 43.5,-36.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18158 components: - pos: 40.5,-35.5 @@ -60898,8 +53364,6 @@ entities: - pos: 47.5,-19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18199 components: - pos: 38.5,-22.5 @@ -60940,8 +53404,6 @@ entities: - pos: 40.5,-17.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18207 components: - pos: 35.5,-23.5 @@ -60987,8 +53449,6 @@ entities: - pos: 30.5,-26.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18216 components: - pos: 29.5,-23.5 @@ -61059,8 +53519,6 @@ entities: - pos: 20.5,-23.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18230 components: - pos: 20.5,-22.5 @@ -61081,8 +53539,6 @@ entities: - pos: 23.5,-21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18235 components: - pos: 25.5,-26.5 @@ -61133,8 +53589,6 @@ entities: - pos: 23.5,-33.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 18335 components: - pos: 45.5,-19.5 @@ -61145,8 +53599,6 @@ entities: - pos: 46.5,-40.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19035 components: - pos: 11.5,-73.5 @@ -61157,120 +53609,86 @@ entities: - pos: 85.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19680 components: - pos: 85.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19681 components: - pos: 84.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19682 components: - pos: 83.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19683 components: - pos: 82.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19684 components: - pos: 84.5,-46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19685 components: - pos: 82.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19686 components: - pos: 82.5,-43.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19687 components: - pos: 82.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19688 components: - pos: 82.5,-41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19689 components: - pos: 82.5,-40.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19690 components: - pos: 81.5,-40.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19691 components: - pos: 81.5,-39.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19692 components: - pos: 81.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19693 components: - pos: 81.5,-37.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19694 components: - pos: 81.5,-36.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19695 components: - pos: 80.5,-36.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19696 components: - pos: 79.5,-36.5 @@ -61291,407 +53709,291 @@ entities: - pos: 83.5,-23.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19700 components: - pos: 84.5,-23.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19701 components: - pos: 85.5,-23.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19702 components: - pos: 85.5,-24.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19703 components: - pos: 85.5,-25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19704 components: - pos: 85.5,-26.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19705 components: - pos: 85.5,-27.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19706 components: - pos: 85.5,-28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19707 components: - pos: 85.5,-29.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19708 components: - pos: 85.5,-30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19709 components: - pos: 85.5,-31.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19710 components: - pos: 85.5,-32.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19711 components: - pos: 84.5,-32.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19712 components: - pos: 84.5,-33.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19713 components: - pos: 83.5,-33.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19714 components: - pos: 82.5,-33.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19715 components: - pos: 81.5,-33.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19716 components: - pos: 81.5,-34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19717 components: - pos: 81.5,-35.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19718 components: - pos: 82.5,-46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19719 components: - pos: 82.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19720 components: - pos: 82.5,-48.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19721 components: - pos: 82.5,-49.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19722 components: - pos: 82.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19723 components: - pos: 82.5,-51.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19724 components: - pos: 82.5,-52.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19725 components: - pos: 82.5,-53.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19726 components: - pos: 82.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19727 components: - pos: 82.5,-55.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19728 components: - pos: 82.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19729 components: - pos: 82.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19730 components: - pos: 82.5,-58.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19731 components: - pos: 82.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19732 components: - pos: 82.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19733 components: - pos: 81.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19734 components: - pos: 80.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19735 components: - pos: 79.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19736 components: - pos: 78.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19737 components: - pos: 77.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19738 components: - pos: 76.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19739 components: - pos: 75.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19740 components: - pos: 74.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19741 components: - pos: 73.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19742 components: - pos: 72.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19743 components: - pos: 71.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19744 components: - pos: 70.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19745 components: - pos: 69.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19746 components: - pos: 68.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19747 components: - pos: 67.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19748 components: - pos: 66.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19749 components: - pos: 65.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19750 components: - pos: 65.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19751 components: - pos: 65.5,-58.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19752 components: - pos: 65.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19753 components: - pos: 65.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19754 components: - pos: 66.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19755 components: - pos: 66.5,-55.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19756 components: - pos: 66.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19757 components: - pos: 66.5,-53.5 @@ -61707,71 +54009,51 @@ entities: - pos: 85.5,-22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19760 components: - pos: 85.5,-21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19761 components: - pos: 84.5,-21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19762 components: - pos: 83.5,-21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19763 components: - pos: 82.5,-21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19764 components: - pos: 81.5,-21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19765 components: - pos: 80.5,-21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19766 components: - pos: 79.5,-21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19767 components: - pos: 78.5,-21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19768 components: - pos: 77.5,-21.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19769 components: - pos: 76.5,-21.5 @@ -61792,8 +54074,6 @@ entities: - pos: -8.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19853 components: - pos: -7.5,-54.5 @@ -61804,36 +54084,26 @@ entities: - pos: -1.5,42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19887 components: - pos: -0.5,42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19888 components: - pos: 0.5,42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19889 components: - pos: 1.5,42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19890 components: - pos: -2.5,42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 19925 components: - pos: 8.5,39.5 @@ -61854,50 +54124,36 @@ entities: - pos: 8.5,42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20164 components: - pos: 81.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20165 components: - pos: 81.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20166 components: - pos: 81.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20167 components: - pos: 81.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20168 components: - pos: 82.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20169 components: - pos: 83.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20217 components: - pos: 60.5,-41.5 @@ -61953,15 +54209,11 @@ entities: - pos: 68.5,-25.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20233 components: - pos: 78.5,-26.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20234 components: - pos: 78.5,-25.5 @@ -62002,8 +54254,6 @@ entities: - pos: 75.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20242 components: - pos: 76.5,-42.5 @@ -62064,8 +54314,6 @@ entities: - pos: 71.5,-53.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20254 components: - pos: 66.5,-51.5 @@ -62286,8 +54534,6 @@ entities: - pos: 58.5,-36.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20303 components: - pos: 67.5,-36.5 @@ -62313,8 +54559,6 @@ entities: - pos: 69.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20308 components: - pos: 66.5,-34.5 @@ -62405,8 +54649,6 @@ entities: - pos: 58.5,-30.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20326 components: - pos: 61.5,-29.5 @@ -62517,8 +54759,6 @@ entities: - pos: 56.5,-20.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20348 components: - pos: 60.5,-27.5 @@ -62574,22 +54814,16 @@ entities: - pos: 55.5,-32.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20381 components: - pos: 60.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21579 components: - pos: 19.5,31.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21580 components: - pos: 17.5,31.5 @@ -62600,659 +54834,471 @@ entities: - pos: 49.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21837 components: - pos: 48.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21838 components: - pos: 49.5,-43.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21839 components: - pos: 49.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21840 components: - pos: 49.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21841 components: - pos: 49.5,-46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21842 components: - pos: 49.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21843 components: - pos: 49.5,-48.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21844 components: - pos: 49.5,-49.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21845 components: - pos: 49.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21846 components: - pos: 49.5,-51.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21847 components: - pos: 49.5,-52.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21848 components: - pos: 49.5,-53.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21849 components: - pos: 49.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21850 components: - pos: 49.5,-55.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21851 components: - pos: 49.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21852 components: - pos: 49.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21853 components: - pos: 49.5,-58.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21854 components: - pos: 49.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21855 components: - pos: 49.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21856 components: - pos: 49.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21857 components: - pos: 49.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21858 components: - pos: 48.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21859 components: - pos: 47.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21860 components: - pos: 47.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21861 components: - pos: 47.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21862 components: - pos: 47.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21863 components: - pos: 46.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21864 components: - pos: 45.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21865 components: - pos: 44.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21866 components: - pos: 43.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21867 components: - pos: 42.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21868 components: - pos: 41.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21869 components: - pos: 40.5,-65.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21870 components: - pos: 40.5,-64.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21871 components: - pos: 40.5,-63.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21872 components: - pos: 40.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21873 components: - pos: 39.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21874 components: - pos: 38.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21875 components: - pos: 37.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21876 components: - pos: 36.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21877 components: - pos: 36.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21878 components: - pos: 36.5,-60.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21879 components: - pos: 36.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21880 components: - pos: 36.5,-58.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21881 components: - pos: 36.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21882 components: - pos: 35.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21883 components: - pos: 34.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21884 components: - pos: 33.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21885 components: - pos: 32.5,-57.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21886 components: - pos: 32.5,-56.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21887 components: - pos: 32.5,-55.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21888 components: - pos: 32.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21889 components: - pos: 32.5,-53.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21890 components: - pos: 32.5,-52.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21891 components: - pos: 32.5,-51.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21892 components: - pos: 32.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21893 components: - pos: 32.5,-49.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21894 components: - pos: 32.5,-48.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21895 components: - pos: 32.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21896 components: - pos: 32.5,-46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21897 components: - pos: 32.5,-45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21898 components: - pos: 32.5,-44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21899 components: - pos: 32.5,-43.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21900 components: - pos: 32.5,-42.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21901 components: - pos: 32.5,-41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21902 components: - pos: 32.5,-40.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21903 components: - pos: 32.5,-39.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21904 components: - pos: 32.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21905 components: - pos: 31.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21906 components: - pos: 30.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21907 components: - pos: 29.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21908 components: - pos: 28.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21909 components: - pos: 27.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21910 components: - pos: 26.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21911 components: - pos: 25.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21912 components: - pos: 24.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21913 components: - pos: 23.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21914 components: - pos: 22.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21915 components: - pos: 21.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21916 components: - pos: 20.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21917 components: - pos: 19.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21918 components: - pos: 18.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21919 components: - pos: 17.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21920 components: - pos: 16.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21921 components: - pos: 15.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21922 components: - pos: 14.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21923 components: - pos: 13.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21924 components: - pos: 12.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21925 components: - pos: 11.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21926 components: - pos: 10.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21927 components: - pos: 9.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21928 components: - pos: 8.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21929 components: - pos: 7.5,-38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21930 components: - pos: 7.5,-37.5 @@ -63268,22 +55314,16 @@ entities: - pos: 8.5,-36.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 22005 components: - pos: -10.5,-19.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 22216 components: - pos: 7.5,-86.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 22634 components: - pos: 44.5,-3.5 @@ -63294,22 +55334,16 @@ entities: - pos: 15.5,29.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 22753 components: - pos: 7.5,-89.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 22754 components: - pos: 7.5,-87.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 22935 components: - pos: 8.5,-69.5 @@ -63330,8 +55364,6 @@ entities: - pos: -1.5,-59.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 22978 components: - pos: 8.5,-72.5 @@ -63352,22 +55384,16 @@ entities: - pos: 12.5,-69.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 23200 components: - pos: 7.5,-82.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 23208 components: - pos: 7.5,-84.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 23231 components: - pos: -16.5,-70.5 @@ -63408,8 +55434,6 @@ entities: - pos: 11.5,-28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26075 components: - pos: 12.5,-26.5 @@ -63420,134 +55444,96 @@ entities: - pos: 13.5,-26.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26090 components: - pos: -8.5,-83.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26091 components: - pos: -8.5,-84.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26092 components: - pos: -8.5,-85.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26093 components: - pos: -8.5,-82.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26094 components: - pos: -8.5,-88.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26095 components: - pos: -8.5,-87.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26096 components: - pos: -8.5,-89.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26097 components: - pos: -8.5,-86.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26098 components: - pos: -8.5,-90.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26160 components: - pos: -20.5,51.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26161 components: - pos: -21.5,51.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26162 components: - pos: -22.5,51.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26163 components: - pos: -23.5,51.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26164 components: - pos: -23.5,50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26165 components: - pos: -23.5,49.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26166 components: - pos: -23.5,48.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26167 components: - pos: -23.5,47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26168 components: - pos: -23.5,46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26169 components: - pos: -23.5,45.5 @@ -63558,36 +55544,26 @@ entities: - pos: -23.5,44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26171 components: - pos: -22.5,44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26172 components: - pos: -21.5,44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26173 components: - pos: -20.5,44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26174 components: - pos: -19.5,44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26175 components: - pos: -19.5,45.5 @@ -63598,15 +55574,11 @@ entities: - pos: -19.5,46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26177 components: - pos: -18.5,44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26178 components: - pos: -17.5,44.5 @@ -63627,36 +55599,26 @@ entities: - pos: -14.5,44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26182 components: - pos: -13.5,44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26183 components: - pos: -12.5,44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26184 components: - pos: -11.5,44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26185 components: - pos: -10.5,44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26186 components: - pos: -10.5,45.5 @@ -63667,8 +55629,6 @@ entities: - pos: -10.5,46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26188 components: - pos: -9.5,45.5 @@ -63724,8 +55684,6 @@ entities: - pos: -7.5,53.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26199 components: - pos: -6.5,50.5 @@ -63771,8 +55729,6 @@ entities: - pos: 0.5,52.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26208 components: - pos: 0.5,51.5 @@ -63798,78 +55754,56 @@ entities: - pos: 0.5,46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26213 components: - pos: 1.5,46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26214 components: - pos: 2.5,46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26215 components: - pos: 3.5,46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26216 components: - pos: 4.5,46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26217 components: - pos: -0.5,46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26218 components: - pos: -1.5,46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26219 components: - pos: -2.5,46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26220 components: - pos: -7.5,44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26221 components: - pos: -6.5,44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26222 components: - pos: -5.5,44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26223 components: - pos: -4.5,44.5 @@ -63880,8 +55814,6 @@ entities: - pos: -3.5,44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26225 components: - pos: -24.5,44.5 @@ -63892,22 +55824,16 @@ entities: - pos: -25.5,44.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26227 components: - pos: -25.5,45.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26228 components: - pos: -25.5,43.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26229 components: - pos: -21.5,43.5 @@ -63933,15 +55859,11 @@ entities: - pos: -21.5,39.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26234 components: - pos: -18.5,39.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26235 components: - pos: -18.5,40.5 @@ -63987,22 +55909,16 @@ entities: - pos: -14.5,39.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26244 components: - pos: -15.5,39.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26245 components: - pos: -13.5,39.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26246 components: - pos: -8.5,48.5 @@ -64053,15 +55969,11 @@ entities: - pos: -11.5,54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26256 components: - pos: -12.5,54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26257 components: - pos: -12.5,53.5 @@ -64082,50 +55994,36 @@ entities: - pos: -14.5,54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26261 components: - pos: -15.5,54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26262 components: - pos: -20.5,50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26263 components: - pos: -19.5,50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26264 components: - pos: -18.5,50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26265 components: - pos: -17.5,50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26266 components: - pos: -16.5,50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26267 components: - pos: -15.5,50.5 @@ -64186,8 +56084,6 @@ entities: - pos: -6.5,38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26279 components: - pos: -4.5,37.5 @@ -64198,8 +56094,6 @@ entities: - pos: -4.5,38.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26281 components: - pos: -7.5,35.5 @@ -64250,22 +56144,16 @@ entities: - pos: -16.5,35.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26291 components: - pos: -16.5,34.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26292 components: - pos: -16.5,36.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26293 components: - pos: -14.5,36.5 @@ -64276,22 +56164,16 @@ entities: - pos: -14.5,37.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26295 components: - pos: -15.5,37.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26296 components: - pos: -13.5,37.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26297 components: - pos: -9.5,36.5 @@ -64302,8 +56184,6 @@ entities: - pos: -9.5,37.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26572 components: - pos: -14.5,34.5 @@ -64319,22 +56199,16 @@ entities: - pos: -13.5,-67.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26720 components: - pos: 10.5,-69.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26754 components: - pos: -8.5,-62.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26755 components: - pos: -9.5,-62.5 @@ -64355,29 +56229,21 @@ entities: - pos: -11.5,-61.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26905 components: - pos: -6.5,-80.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26970 components: - pos: 35.5,-92.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26971 components: - pos: 34.5,-92.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26972 components: - pos: 33.5,-92.5 @@ -64398,15 +56264,11 @@ entities: - pos: 33.5,-89.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26976 components: - pos: 34.5,-89.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26977 components: - pos: 32.5,-91.5 @@ -64472,8 +56334,6 @@ entities: - pos: 31.5,-86.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26990 components: - pos: 27.5,-91.5 @@ -64504,22 +56364,16 @@ entities: - pos: 22.5,-91.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26996 components: - pos: 22.5,-92.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26997 components: - pos: 21.5,-92.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 26998 components: - pos: 28.5,-92.5 @@ -64570,8 +56424,6 @@ entities: - pos: 29.5,-100.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27008 components: - pos: 30.5,-100.5 @@ -64582,57 +56434,41 @@ entities: - pos: 31.5,-100.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27010 components: - pos: 32.5,-100.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27011 components: - pos: 32.5,-99.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27012 components: - pos: 32.5,-98.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27013 components: - pos: 32.5,-97.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27014 components: - pos: 32.5,-96.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27015 components: - pos: 32.5,-95.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27016 components: - pos: 32.5,-94.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27017 components: - pos: 32.5,-93.5 @@ -64703,22 +56539,16 @@ entities: - pos: 29.5,-111.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27314 components: - pos: 8.5,-78.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27315 components: - pos: 9.5,-78.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27316 components: - pos: -6.5,-51.5 @@ -64734,8 +56564,6 @@ entities: - pos: -7.5,-49.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27319 components: - pos: -6.5,-53.5 @@ -64751,106 +56579,76 @@ entities: - pos: 9.5,-79.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27359 components: - pos: 9.5,-80.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27360 components: - pos: 9.5,-81.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27361 components: - pos: -5.5,-80.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27362 components: - pos: -4.5,-80.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27363 components: - pos: -3.5,-80.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27364 components: - pos: -2.5,-80.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27365 components: - pos: -1.5,-80.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27366 components: - pos: -0.5,-80.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27367 components: - pos: 0.5,-80.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27368 components: - pos: 1.5,-80.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27369 components: - pos: 2.5,-80.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27370 components: - pos: 3.5,-80.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27371 components: - pos: 4.5,-80.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27372 components: - pos: 5.5,-80.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27504 components: - pos: 7.5,-73.5 @@ -64906,36 +56704,26 @@ entities: - pos: 2.5,-76.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27673 components: - pos: 8.5,-80.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27674 components: - pos: 7.5,-80.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27675 components: - pos: 6.5,-80.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27676 components: - pos: -0.5,-79.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27677 components: - pos: -0.5,-78.5 @@ -64946,15 +56734,11 @@ entities: - pos: -0.5,-77.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27679 components: - pos: -0.5,-76.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - proto: CableMVStack entities: - uid: 1697 @@ -89053,8 +80837,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21308 components: @@ -89063,8 +80845,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21309 components: @@ -89073,8 +80853,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21310 components: @@ -89083,8 +80861,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21311 components: @@ -89093,8 +80869,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21312 components: @@ -89103,8 +80877,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21313 components: @@ -89113,8 +80885,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21326 components: @@ -89124,8 +80894,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21409 components: @@ -89134,8 +80902,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21410 components: @@ -89144,8 +80910,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21411 components: @@ -89155,8 +80919,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21429 components: @@ -89165,8 +80927,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21439 components: @@ -89176,8 +80936,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21440 components: @@ -89186,8 +80944,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21463 components: @@ -89197,8 +80953,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21465 components: @@ -89208,8 +80962,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21467 components: @@ -89218,8 +80970,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21470 components: @@ -89228,8 +80978,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21472 components: @@ -89239,8 +80987,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21473 components: @@ -89250,8 +80996,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21474 components: @@ -89260,8 +81004,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21475 components: @@ -89271,8 +81013,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21476 components: @@ -89281,8 +81021,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21477 components: @@ -89292,8 +81030,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21478 components: @@ -89303,8 +81039,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21483 components: @@ -89314,8 +81048,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21484 components: @@ -89324,8 +81056,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21486 components: @@ -89335,8 +81065,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - proto: EmergencyOxygenTank entities: @@ -94238,8 +85966,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3822 components: - rot: -1.5707963267948966 rad @@ -94248,8 +85974,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4140 components: - rot: -1.5707963267948966 rad @@ -94258,8 +85982,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4512 components: - rot: 3.141592653589793 rad @@ -94268,8 +85990,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4513 components: - pos: 30.5,-72.5 @@ -94277,8 +85997,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4518 components: - rot: 1.5707963267948966 rad @@ -94287,8 +86005,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4554 components: - pos: 32.5,-72.5 @@ -94296,8 +86012,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4555 components: - rot: 3.141592653589793 rad @@ -94306,8 +86020,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4556 components: - rot: 1.5707963267948966 rad @@ -94316,8 +86028,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4557 components: - rot: -1.5707963267948966 rad @@ -94326,8 +86036,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4560 components: - rot: 3.141592653589793 rad @@ -94344,8 +86052,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4562 components: - rot: 3.141592653589793 rad @@ -94354,8 +86060,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4572 components: - pos: 28.5,-74.5 @@ -94363,8 +86067,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5202 components: - rot: -1.5707963267948966 rad @@ -94379,16 +86081,12 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5259 components: - rot: -1.5707963267948966 rad pos: 44.5,-39.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5284 components: - rot: -1.5707963267948966 rad @@ -94444,8 +86142,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5597 components: - rot: -1.5707963267948966 rad @@ -94467,8 +86163,6 @@ entities: - pos: 46.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7062 components: - rot: 3.141592653589793 rad @@ -94522,8 +86216,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8752 components: - rot: 1.5707963267948966 rad @@ -94602,8 +86294,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9363 components: - pos: 26.5,25.5 @@ -94611,16 +86301,12 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9440 components: - rot: -1.5707963267948966 rad pos: 27.5,22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 9948 components: - pos: 85.5,-21.5 @@ -94628,8 +86314,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9949 components: - rot: 3.141592653589793 rad @@ -94638,8 +86322,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9950 components: - pos: 79.5,-19.5 @@ -94647,8 +86329,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9956 components: - rot: 3.141592653589793 rad @@ -94657,8 +86337,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9997 components: - rot: -1.5707963267948966 rad @@ -94667,8 +86345,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10000 components: - rot: 1.5707963267948966 rad @@ -94677,8 +86353,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10009 components: - rot: -1.5707963267948966 rad @@ -94687,8 +86361,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10010 components: - rot: 1.5707963267948966 rad @@ -94697,8 +86369,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10018 components: - rot: 3.141592653589793 rad @@ -94707,8 +86377,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10019 components: - pos: 82.5,-40.5 @@ -94716,8 +86384,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10434 components: - rot: 3.141592653589793 rad @@ -94726,23 +86392,17 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10436 components: - rot: 3.141592653589793 rad pos: 85.5,-48.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10438 components: - pos: 40.5,8.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10443 components: - rot: 3.141592653589793 rad @@ -94751,8 +86411,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14489 components: - rot: 3.141592653589793 rad @@ -94761,8 +86419,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15341 components: - pos: -1.5,-21.5 @@ -94793,8 +86449,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15877 components: - rot: 3.141592653589793 rad @@ -94803,8 +86457,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15879 components: - rot: -1.5707963267948966 rad @@ -94813,8 +86465,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15898 components: - rot: -1.5707963267948966 rad @@ -94823,8 +86473,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16550 components: - rot: 3.141592653589793 rad @@ -94833,8 +86481,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16553 components: - rot: -1.5707963267948966 rad @@ -94843,8 +86489,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16554 components: - pos: 34.5,-72.5 @@ -94852,8 +86496,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16555 components: - rot: 1.5707963267948966 rad @@ -94862,8 +86504,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16879 components: - rot: 3.141592653589793 rad @@ -94872,8 +86512,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16880 components: - rot: -1.5707963267948966 rad @@ -94889,8 +86527,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16885 components: - rot: -1.5707963267948966 rad @@ -94899,8 +86535,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16936 components: - rot: -1.5707963267948966 rad @@ -94909,8 +86543,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16988 components: - rot: 1.5707963267948966 rad @@ -94919,8 +86551,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16989 components: - pos: 20.5,-57.5 @@ -94928,8 +86558,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16991 components: - rot: -1.5707963267948966 rad @@ -94938,8 +86566,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17007 components: - rot: 1.5707963267948966 rad @@ -94956,8 +86582,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17029 components: - pos: 14.5,-72.5 @@ -94965,8 +86589,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17057 components: - pos: 17.5,-84.5 @@ -95004,8 +86626,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17141 components: - pos: -40.5,12.5 @@ -95013,8 +86633,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17142 components: - rot: 3.141592653589793 rad @@ -95023,8 +86641,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17143 components: - pos: -38.5,10.5 @@ -95032,8 +86648,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17150 components: - rot: -1.5707963267948966 rad @@ -95049,8 +86663,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17203 components: - rot: -1.5707963267948966 rad @@ -95059,8 +86671,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17229 components: - rot: 1.5707963267948966 rad @@ -95069,8 +86679,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17246 components: - rot: 3.141592653589793 rad @@ -95079,8 +86687,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17255 components: - rot: 3.141592653589793 rad @@ -95112,8 +86718,6 @@ entities: type: Transform - color: '#3AB334FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17314 components: - rot: -1.5707963267948966 rad @@ -95122,8 +86726,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17317 components: - rot: 3.141592653589793 rad @@ -95132,16 +86734,12 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17341 components: - rot: 3.141592653589793 rad pos: -44.5,15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17365 components: - rot: 1.5707963267948966 rad @@ -95150,8 +86748,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17384 components: - rot: 1.5707963267948966 rad @@ -95160,8 +86756,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17564 components: - rot: 3.141592653589793 rad @@ -95170,8 +86764,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17607 components: - pos: 15.5,-82.5 @@ -95179,8 +86771,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18600 components: - rot: 3.141592653589793 rad @@ -95205,8 +86795,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19247 components: - rot: 3.141592653589793 rad @@ -95221,8 +86809,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 20124 components: - rot: 3.141592653589793 rad @@ -95251,39 +86837,29 @@ entities: - pos: 62.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20383 components: - rot: -1.5707963267948966 rad pos: 62.5,-51.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20388 components: - pos: 53.5,-43.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20640 components: - rot: -1.5707963267948966 rad pos: 63.5,-48.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20649 components: - rot: -1.5707963267948966 rad pos: 63.5,-46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21770 components: - rot: 1.5707963267948966 rad @@ -95304,8 +86880,6 @@ entities: pos: 61.5,-49.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 22545 components: - rot: 1.5707963267948966 rad @@ -95320,8 +86894,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22744 components: - rot: -1.5707963267948966 rad @@ -95330,8 +86902,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22780 components: - rot: 1.5707963267948966 rad @@ -95340,8 +86910,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22781 components: - rot: -1.5707963267948966 rad @@ -95350,8 +86918,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22799 components: - pos: 23.5,-41.5 @@ -95359,8 +86925,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23008 components: - rot: -1.5707963267948966 rad @@ -95883,8 +87447,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24856 components: - pos: 37.5,-56.5 @@ -95892,8 +87454,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24857 components: - rot: 3.141592653589793 rad @@ -95902,8 +87462,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24868 components: - pos: 47.5,-56.5 @@ -96159,8 +87717,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 26638 components: - rot: -1.5707963267948966 rad @@ -96175,16 +87731,12 @@ entities: pos: 22.5,-93.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27181 components: - rot: 1.5707963267948966 rad pos: 21.5,-93.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - proto: GasPipeFourway entities: - uid: 5240 @@ -96194,8 +87746,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5316 components: - pos: -5.5,-68.5 @@ -96562,8 +88112,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 750 components: - rot: 3.141592653589793 rad @@ -96587,15 +88135,11 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1477 components: - pos: 15.5,-54.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 1617 components: - rot: 1.5707963267948966 rad @@ -96612,8 +88156,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1643 components: - rot: -1.5707963267948966 rad @@ -96622,8 +88164,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3681 components: - rot: 3.141592653589793 rad @@ -96632,8 +88172,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3682 components: - pos: -7.5,-63.5 @@ -96648,8 +88186,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3719 components: - rot: -1.5707963267948966 rad @@ -96665,8 +88201,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3772 components: - pos: 33.5,-73.5 @@ -96674,8 +88208,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3782 components: - pos: 34.5,-73.5 @@ -96683,8 +88215,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3783 components: - pos: 33.5,-74.5 @@ -96692,8 +88222,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3786 components: - pos: 35.5,-74.5 @@ -96701,8 +88229,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3818 components: - pos: 29.5,-73.5 @@ -96710,8 +88236,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3819 components: - rot: 1.5707963267948966 rad @@ -96720,8 +88244,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3820 components: - rot: 3.141592653589793 rad @@ -96730,8 +88252,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3826 components: - rot: 1.5707963267948966 rad @@ -96740,8 +88260,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3828 components: - rot: 1.5707963267948966 rad @@ -96750,8 +88268,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3837 components: - rot: -1.5707963267948966 rad @@ -96815,8 +88331,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3997 components: - pos: 16.5,-42.5 @@ -96824,8 +88338,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3999 components: - rot: 1.5707963267948966 rad @@ -96834,8 +88346,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4002 components: - rot: -1.5707963267948966 rad @@ -96844,8 +88354,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4004 components: - rot: -1.5707963267948966 rad @@ -96854,8 +88362,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4046 components: - rot: -1.5707963267948966 rad @@ -96864,8 +88370,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4051 components: - rot: 1.5707963267948966 rad @@ -96882,8 +88386,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4073 components: - pos: 16.5,-44.5 @@ -96891,8 +88393,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4078 components: - rot: -1.5707963267948966 rad @@ -96901,8 +88401,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4079 components: - rot: -1.5707963267948966 rad @@ -96911,8 +88409,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4080 components: - rot: -1.5707963267948966 rad @@ -96921,8 +88417,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4081 components: - rot: -1.5707963267948966 rad @@ -96931,8 +88425,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4107 components: - rot: 1.5707963267948966 rad @@ -96941,8 +88433,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4135 components: - rot: 1.5707963267948966 rad @@ -96951,8 +88441,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4147 components: - pos: 11.5,-49.5 @@ -96960,8 +88448,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4149 components: - rot: 3.141592653589793 rad @@ -96970,8 +88456,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4164 components: - rot: 3.141592653589793 rad @@ -96980,8 +88464,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4165 components: - rot: 3.141592653589793 rad @@ -96990,8 +88472,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4166 components: - rot: 3.141592653589793 rad @@ -97000,8 +88480,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4168 components: - rot: 3.141592653589793 rad @@ -97010,8 +88488,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4169 components: - rot: 3.141592653589793 rad @@ -97020,8 +88496,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4170 components: - rot: 3.141592653589793 rad @@ -97030,8 +88504,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4174 components: - rot: 3.141592653589793 rad @@ -97040,8 +88512,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4498 components: - pos: 3.5,-64.5 @@ -97056,8 +88526,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4502 components: - pos: 13.5,-82.5 @@ -97065,8 +88533,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4509 components: - rot: 1.5707963267948966 rad @@ -97075,8 +88541,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4510 components: - rot: 1.5707963267948966 rad @@ -97085,8 +88549,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4521 components: - rot: 1.5707963267948966 rad @@ -97095,8 +88557,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4530 components: - pos: 32.5,-74.5 @@ -97104,8 +88564,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4531 components: - pos: 31.5,-74.5 @@ -97113,8 +88571,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4533 components: - pos: 31.5,-73.5 @@ -97122,8 +88578,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4534 components: - pos: 30.5,-73.5 @@ -97131,8 +88585,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4535 components: - pos: 32.5,-73.5 @@ -97140,8 +88592,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4536 components: - pos: 30.5,-74.5 @@ -97149,8 +88599,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4537 components: - rot: 3.141592653589793 rad @@ -97159,8 +88607,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4538 components: - rot: 1.5707963267948966 rad @@ -97169,8 +88615,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4539 components: - pos: 35.5,-72.5 @@ -97178,8 +88622,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4540 components: - pos: 34.5,-74.5 @@ -97187,8 +88629,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4541 components: - rot: 1.5707963267948966 rad @@ -97197,8 +88637,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4559 components: - rot: 3.141592653589793 rad @@ -97207,8 +88645,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4566 components: - rot: 1.5707963267948966 rad @@ -97217,8 +88653,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4567 components: - rot: 1.5707963267948966 rad @@ -97227,8 +88661,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4576 components: - rot: 1.5707963267948966 rad @@ -97237,8 +88669,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4680 components: - rot: 1.5707963267948966 rad @@ -97247,8 +88677,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4684 components: - pos: 14.5,-74.5 @@ -97256,8 +88684,6 @@ entities: type: Transform - color: '#EB2828FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5068 components: - rot: -1.5707963267948966 rad @@ -97282,8 +88708,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5072 components: - rot: -1.5707963267948966 rad @@ -97337,8 +88761,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5256 components: - rot: 3.141592653589793 rad @@ -97347,8 +88769,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5257 components: - rot: -1.5707963267948966 rad @@ -97357,8 +88777,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5280 components: - pos: -5.5,-66.5 @@ -97366,8 +88784,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5290 components: - pos: -5.5,-67.5 @@ -97415,8 +88831,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5615 components: - pos: 27.5,29.5 @@ -97424,8 +88838,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5616 components: - rot: -1.5707963267948966 rad @@ -97434,8 +88846,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5617 components: - rot: -1.5707963267948966 rad @@ -97444,8 +88854,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5618 components: - rot: -1.5707963267948966 rad @@ -97454,8 +88862,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5620 components: - rot: -1.5707963267948966 rad @@ -97464,8 +88870,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5627 components: - pos: 46.5,2.5 @@ -97477,8 +88881,6 @@ entities: pos: 45.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 5988 components: - pos: 0.5,-7.5 @@ -97500,8 +88902,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6770 components: - rot: -1.5707963267948966 rad @@ -97612,8 +89012,6 @@ entities: pos: 44.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7216 components: - pos: 69.5,-4.5 @@ -97635,8 +89033,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7226 components: - pos: 69.5,-8.5 @@ -97676,8 +89072,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7298 components: - rot: 3.141592653589793 rad @@ -97723,8 +89117,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7317 components: - pos: -8.5,47.5 @@ -97839,8 +89231,6 @@ entities: pos: 43.5,3.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 8402 components: - rot: -1.5707963267948966 rad @@ -97857,8 +89247,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8531 components: - pos: -10.5,25.5 @@ -97866,8 +89254,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8639 components: - rot: -1.5707963267948966 rad @@ -97932,8 +89318,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8968 components: - rot: 3.141592653589793 rad @@ -97973,8 +89357,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8988 components: - rot: -1.5707963267948966 rad @@ -98020,8 +89402,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9067 components: - pos: -6.5,49.5 @@ -98044,8 +89424,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9095 components: - rot: -1.5707963267948966 rad @@ -98093,8 +89471,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9188 components: - rot: -1.5707963267948966 rad @@ -98103,8 +89479,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9198 components: - rot: -1.5707963267948966 rad @@ -98113,8 +89487,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9204 components: - rot: -1.5707963267948966 rad @@ -98123,8 +89495,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9221 components: - pos: 36.5,-32.5 @@ -98140,8 +89510,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9393 components: - rot: -1.5707963267948966 rad @@ -98182,8 +89550,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9412 components: - rot: -1.5707963267948966 rad @@ -98199,8 +89565,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9441 components: - pos: 27.5,26.5 @@ -98208,8 +89572,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9458 components: - pos: 27.5,25.5 @@ -98217,8 +89579,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9946 components: - pos: 76.5,-15.5 @@ -98241,8 +89601,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9959 components: - rot: 3.141592653589793 rad @@ -98251,8 +89609,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9960 components: - rot: -1.5707963267948966 rad @@ -98261,8 +89617,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9961 components: - rot: -1.5707963267948966 rad @@ -98271,8 +89625,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9962 components: - pos: 79.5,-20.5 @@ -98280,8 +89632,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9974 components: - rot: 1.5707963267948966 rad @@ -98290,8 +89640,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9979 components: - rot: 1.5707963267948966 rad @@ -98300,8 +89648,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9980 components: - rot: 1.5707963267948966 rad @@ -98310,8 +89656,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9981 components: - rot: 1.5707963267948966 rad @@ -98320,8 +89664,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9982 components: - rot: 1.5707963267948966 rad @@ -98330,8 +89672,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9983 components: - rot: 3.141592653589793 rad @@ -98340,8 +89680,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9984 components: - rot: 3.141592653589793 rad @@ -98350,8 +89688,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9985 components: - rot: 3.141592653589793 rad @@ -98360,8 +89696,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9986 components: - rot: 3.141592653589793 rad @@ -98370,8 +89704,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9987 components: - rot: 3.141592653589793 rad @@ -98380,8 +89712,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9988 components: - rot: 3.141592653589793 rad @@ -98390,8 +89720,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9989 components: - rot: 3.141592653589793 rad @@ -98400,8 +89728,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9990 components: - rot: 3.141592653589793 rad @@ -98410,8 +89736,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9991 components: - rot: 3.141592653589793 rad @@ -98420,8 +89744,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9992 components: - rot: 3.141592653589793 rad @@ -98430,8 +89752,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9993 components: - rot: -1.5707963267948966 rad @@ -98440,8 +89760,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9996 components: - rot: -1.5707963267948966 rad @@ -98450,8 +89768,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10012 components: - rot: 3.141592653589793 rad @@ -98460,8 +89776,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10013 components: - rot: 3.141592653589793 rad @@ -98470,8 +89784,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10014 components: - rot: 3.141592653589793 rad @@ -98480,8 +89792,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10015 components: - rot: 3.141592653589793 rad @@ -98490,8 +89800,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10016 components: - rot: 3.141592653589793 rad @@ -98500,8 +89808,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10017 components: - rot: 3.141592653589793 rad @@ -98510,8 +89816,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10400 components: - pos: 82.5,-41.5 @@ -98519,8 +89823,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10402 components: - pos: 82.5,-42.5 @@ -98528,8 +89830,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10403 components: - pos: 82.5,-43.5 @@ -98537,8 +89837,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10404 components: - pos: 82.5,-44.5 @@ -98546,8 +89844,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10426 components: - pos: 82.5,-45.5 @@ -98555,8 +89851,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10428 components: - pos: 82.5,-46.5 @@ -98564,8 +89858,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10433 components: - rot: 1.5707963267948966 rad @@ -98574,8 +89866,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10556 components: - pos: 40.5,5.5 @@ -98583,8 +89873,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10557 components: - pos: 40.5,4.5 @@ -98592,8 +89880,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10558 components: - rot: 1.5707963267948966 rad @@ -98602,8 +89888,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10559 components: - rot: 1.5707963267948966 rad @@ -98612,8 +89896,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10564 components: - rot: -1.5707963267948966 rad @@ -98637,8 +89919,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14088 components: - rot: 1.5707963267948966 rad @@ -98647,8 +89927,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15340 components: - pos: -1.5,-22.5 @@ -98663,8 +89941,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15345 components: - pos: 0.5,-22.5 @@ -98696,8 +89972,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15544 components: - pos: 13.5,-73.5 @@ -98705,8 +89979,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15546 components: - pos: 13.5,-74.5 @@ -98714,8 +89986,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15881 components: - pos: 17.5,-75.5 @@ -98723,8 +89993,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15882 components: - pos: 17.5,-74.5 @@ -98732,8 +90000,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15883 components: - pos: 17.5,-73.5 @@ -98741,8 +90007,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15890 components: - pos: 12.5,-79.5 @@ -98750,8 +90014,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15891 components: - pos: 12.5,-78.5 @@ -98759,8 +90021,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16511 components: - rot: 1.5707963267948966 rad @@ -98785,8 +90045,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16720 components: - rot: 1.5707963267948966 rad @@ -98802,8 +90060,6 @@ entities: type: Transform - color: '#3AB334FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16742 components: - pos: 16.5,-60.5 @@ -98811,8 +90067,6 @@ entities: type: Transform - color: '#3AB334FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16743 components: - rot: 1.5707963267948966 rad @@ -98821,8 +90075,6 @@ entities: type: Transform - color: '#3AB334FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16755 components: - rot: -1.5707963267948966 rad @@ -98831,8 +90083,6 @@ entities: type: Transform - color: '#3AB334FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16756 components: - rot: -1.5707963267948966 rad @@ -98841,8 +90091,6 @@ entities: type: Transform - color: '#3AB334FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16757 components: - rot: -1.5707963267948966 rad @@ -98851,8 +90099,6 @@ entities: type: Transform - color: '#3AB334FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16758 components: - rot: -1.5707963267948966 rad @@ -98861,8 +90107,6 @@ entities: type: Transform - color: '#3AB334FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16759 components: - pos: 16.5,-61.5 @@ -98870,8 +90114,6 @@ entities: type: Transform - color: '#3AB334FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16761 components: - rot: 1.5707963267948966 rad @@ -98880,8 +90122,6 @@ entities: type: Transform - color: '#3AB334FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16762 components: - rot: 1.5707963267948966 rad @@ -98890,8 +90130,6 @@ entities: type: Transform - color: '#3AB334FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16763 components: - pos: 16.5,-62.5 @@ -98899,8 +90137,6 @@ entities: type: Transform - color: '#3AB334FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16888 components: - rot: 1.5707963267948966 rad @@ -98997,8 +90233,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17022 components: - rot: 3.141592653589793 rad @@ -99007,8 +90241,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17023 components: - pos: 21.5,-42.5 @@ -99016,8 +90248,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17030 components: - pos: 16.5,-74.5 @@ -99025,8 +90255,6 @@ entities: type: Transform - color: '#28EBD7FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17047 components: - pos: 20.5,-58.5 @@ -99034,8 +90262,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17050 components: - rot: -1.5707963267948966 rad @@ -99044,8 +90270,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17053 components: - rot: 1.5707963267948966 rad @@ -99054,8 +90278,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17054 components: - rot: 3.141592653589793 rad @@ -99064,8 +90286,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17055 components: - rot: -1.5707963267948966 rad @@ -99074,8 +90294,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17083 components: - rot: 1.5707963267948966 rad @@ -99084,8 +90302,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17086 components: - pos: 21.5,-41.5 @@ -99093,8 +90309,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17091 components: - pos: 11.5,-55.5 @@ -99102,8 +90316,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17092 components: - pos: 15.5,-60.5 @@ -99111,8 +90323,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17094 components: - pos: 3.5,-45.5 @@ -99168,8 +90378,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17127 components: - rot: -1.5707963267948966 rad @@ -99178,8 +90386,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17128 components: - rot: -1.5707963267948966 rad @@ -99188,8 +90394,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17129 components: - rot: -1.5707963267948966 rad @@ -99198,8 +90402,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17130 components: - rot: -1.5707963267948966 rad @@ -99208,8 +90410,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17131 components: - rot: -1.5707963267948966 rad @@ -99218,8 +90418,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17132 components: - pos: -38.5,8.5 @@ -99227,8 +90425,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17133 components: - pos: -38.5,9.5 @@ -99236,8 +90432,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17134 components: - rot: 1.5707963267948966 rad @@ -99246,8 +90440,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17135 components: - rot: 3.141592653589793 rad @@ -99256,8 +90448,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17136 components: - rot: -1.5707963267948966 rad @@ -99266,8 +90456,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17137 components: - rot: -1.5707963267948966 rad @@ -99276,8 +90464,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17138 components: - pos: -43.5,13.5 @@ -99285,8 +90471,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17144 components: - rot: -1.5707963267948966 rad @@ -99349,8 +90533,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17210 components: - pos: 11.5,-57.5 @@ -99358,8 +90540,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17211 components: - pos: 11.5,-58.5 @@ -99367,8 +90547,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17213 components: - pos: 11.5,-53.5 @@ -99376,8 +90554,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17214 components: - pos: 11.5,-52.5 @@ -99385,8 +90561,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17215 components: - pos: 11.5,-51.5 @@ -99394,8 +90568,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17216 components: - pos: 11.5,-50.5 @@ -99403,8 +90575,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17217 components: - rot: 3.141592653589793 rad @@ -99413,8 +90583,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17228 components: - rot: 1.5707963267948966 rad @@ -99423,8 +90591,6 @@ entities: type: Transform - color: '#3AB334FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17231 components: - rot: 1.5707963267948966 rad @@ -99433,8 +90599,6 @@ entities: type: Transform - color: '#3AB334FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17232 components: - rot: 1.5707963267948966 rad @@ -99443,8 +90607,6 @@ entities: type: Transform - color: '#3AB334FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17233 components: - rot: 1.5707963267948966 rad @@ -99453,8 +90615,6 @@ entities: type: Transform - color: '#3AB334FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17234 components: - rot: 1.5707963267948966 rad @@ -99463,8 +90623,6 @@ entities: type: Transform - color: '#3AB334FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17235 components: - rot: 1.5707963267948966 rad @@ -99473,8 +90631,6 @@ entities: type: Transform - color: '#3AB334FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17236 components: - rot: 1.5707963267948966 rad @@ -99483,8 +90639,6 @@ entities: type: Transform - color: '#3AB334FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17237 components: - rot: 1.5707963267948966 rad @@ -99493,8 +90647,6 @@ entities: type: Transform - color: '#3AB334FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17238 components: - rot: 1.5707963267948966 rad @@ -99503,8 +90655,6 @@ entities: type: Transform - color: '#3AB334FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17239 components: - rot: 1.5707963267948966 rad @@ -99513,8 +90663,6 @@ entities: type: Transform - color: '#3AB334FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17240 components: - rot: 1.5707963267948966 rad @@ -99523,8 +90671,6 @@ entities: type: Transform - color: '#3AB334FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17241 components: - rot: 1.5707963267948966 rad @@ -99533,8 +90679,6 @@ entities: type: Transform - color: '#3AB334FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17242 components: - rot: 3.141592653589793 rad @@ -99543,8 +90687,6 @@ entities: type: Transform - color: '#3AB334FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17243 components: - rot: 3.141592653589793 rad @@ -99553,8 +90695,6 @@ entities: type: Transform - color: '#3AB334FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17244 components: - rot: 3.141592653589793 rad @@ -99563,8 +90703,6 @@ entities: type: Transform - color: '#3AB334FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17245 components: - rot: 3.141592653589793 rad @@ -99573,8 +90711,6 @@ entities: type: Transform - color: '#3AB334FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17252 components: - pos: 12.5,-61.5 @@ -99582,8 +90718,6 @@ entities: type: Transform - color: '#3AB334FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17253 components: - pos: 12.5,-62.5 @@ -99591,8 +90725,6 @@ entities: type: Transform - color: '#3AB334FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17254 components: - pos: 12.5,-63.5 @@ -99600,8 +90732,6 @@ entities: type: Transform - color: '#3AB334FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17259 components: - rot: 3.141592653589793 rad @@ -99610,8 +90740,6 @@ entities: type: Transform - color: '#3AB334FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17262 components: - pos: 12.5,-60.5 @@ -99619,8 +90747,6 @@ entities: type: Transform - color: '#3AB334FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17266 components: - rot: 3.141592653589793 rad @@ -99629,8 +90755,6 @@ entities: type: Transform - color: '#3AB334FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17267 components: - rot: 3.141592653589793 rad @@ -99639,8 +90763,6 @@ entities: type: Transform - color: '#3AB334FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17305 components: - rot: 3.141592653589793 rad @@ -99649,8 +90771,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17306 components: - rot: 3.141592653589793 rad @@ -99659,8 +90779,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17307 components: - rot: 3.141592653589793 rad @@ -99669,8 +90787,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17308 components: - rot: -1.5707963267948966 rad @@ -99679,8 +90795,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17321 components: - rot: -1.5707963267948966 rad @@ -99696,8 +90810,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17336 components: - rot: 3.141592653589793 rad @@ -99738,8 +90850,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17523 components: - rot: 3.141592653589793 rad @@ -99772,8 +90882,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17569 components: - rot: -1.5707963267948966 rad @@ -99782,8 +90890,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17578 components: - rot: 3.141592653589793 rad @@ -99807,8 +90913,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17600 components: - rot: -1.5707963267948966 rad @@ -99849,8 +90953,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17704 components: - rot: 1.5707963267948966 rad @@ -99859,8 +90961,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17707 components: - pos: 15.5,-83.5 @@ -99876,8 +90976,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17766 components: - rot: 1.5707963267948966 rad @@ -99886,8 +90984,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17794 components: - rot: 1.5707963267948966 rad @@ -99896,8 +90992,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17807 components: - rot: 1.5707963267948966 rad @@ -99906,8 +91000,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17812 components: - rot: 3.141592653589793 rad @@ -99916,8 +91008,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17813 components: - rot: 3.141592653589793 rad @@ -99926,8 +91016,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17814 components: - rot: 3.141592653589793 rad @@ -99936,8 +91024,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17815 components: - rot: 3.141592653589793 rad @@ -99946,8 +91032,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17816 components: - rot: 3.141592653589793 rad @@ -99956,8 +91040,6 @@ entities: type: Transform - color: '#3AB334FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18404 components: - pos: -3.5,-67.5 @@ -99986,8 +91068,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19936 components: - rot: 1.5707963267948966 rad @@ -99996,8 +91076,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19937 components: - rot: 1.5707963267948966 rad @@ -100006,8 +91084,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19938 components: - rot: 3.141592653589793 rad @@ -100016,8 +91092,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19939 components: - rot: 3.141592653589793 rad @@ -100026,8 +91100,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19940 components: - rot: 3.141592653589793 rad @@ -100036,8 +91108,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19941 components: - rot: 3.141592653589793 rad @@ -100046,8 +91116,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19942 components: - rot: 1.5707963267948966 rad @@ -100056,8 +91124,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19953 components: - pos: 13.5,-75.5 @@ -100065,8 +91131,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19957 components: - rot: -1.5707963267948966 rad @@ -100075,8 +91139,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 20068 components: - rot: 1.5707963267948966 rad @@ -100101,8 +91163,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 20127 components: - rot: -1.5707963267948966 rad @@ -100148,88 +91208,66 @@ entities: pos: 56.5,-51.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20377 components: - rot: 1.5707963267948966 rad pos: 55.5,-51.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20382 components: - rot: 1.5707963267948966 rad pos: 54.5,-51.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20384 components: - rot: -1.5707963267948966 rad pos: 60.5,-51.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20631 components: - rot: 3.141592653589793 rad pos: 59.5,-52.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20632 components: - rot: 3.141592653589793 rad pos: 61.5,-52.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20657 components: - rot: 1.5707963267948966 rad pos: 58.5,-51.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20678 components: - rot: -1.5707963267948966 rad pos: 59.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20801 components: - rot: 3.141592653589793 rad pos: 53.5,-48.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21144 components: - rot: 3.141592653589793 rad pos: 53.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21377 components: - rot: 3.141592653589793 rad pos: 53.5,-49.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21382 components: - rot: 3.141592653589793 rad @@ -100251,16 +91289,12 @@ entities: - pos: 62.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21386 components: - rot: -1.5707963267948966 rad pos: 61.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 21742 components: - rot: -1.5707963267948966 rad @@ -100282,40 +91316,30 @@ entities: - pos: 61.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 22451 components: - rot: -1.5707963267948966 rad pos: 60.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 22452 components: - rot: -1.5707963267948966 rad pos: 58.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 22455 components: - rot: -1.5707963267948966 rad pos: 57.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 22457 components: - rot: -1.5707963267948966 rad pos: 56.5,-50.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 22735 components: - pos: 14.5,-59.5 @@ -100323,8 +91347,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22739 components: - pos: 20.5,-63.5 @@ -100332,8 +91354,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22740 components: - pos: 20.5,-62.5 @@ -100341,8 +91361,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22741 components: - pos: 20.5,-61.5 @@ -100350,8 +91368,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22743 components: - pos: 20.5,-59.5 @@ -100359,8 +91375,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22747 components: - rot: 1.5707963267948966 rad @@ -100369,8 +91383,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22749 components: - rot: 3.141592653589793 rad @@ -100379,8 +91391,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22750 components: - rot: 1.5707963267948966 rad @@ -100389,8 +91399,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22760 components: - rot: 1.5707963267948966 rad @@ -100399,8 +91407,6 @@ entities: type: Transform - color: '#B3A234FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22761 components: - rot: 1.5707963267948966 rad @@ -100409,8 +91415,6 @@ entities: type: Transform - color: '#B3A234FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22762 components: - rot: 1.5707963267948966 rad @@ -100419,8 +91423,6 @@ entities: type: Transform - color: '#B3A234FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22767 components: - rot: -1.5707963267948966 rad @@ -100429,8 +91431,6 @@ entities: type: Transform - color: '#B3A234FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22768 components: - rot: -1.5707963267948966 rad @@ -100439,8 +91439,6 @@ entities: type: Transform - color: '#B3A234FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22769 components: - rot: -1.5707963267948966 rad @@ -100449,8 +91447,6 @@ entities: type: Transform - color: '#B3A234FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22771 components: - rot: -1.5707963267948966 rad @@ -100459,8 +91455,6 @@ entities: type: Transform - color: '#B3A234FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22772 components: - rot: -1.5707963267948966 rad @@ -100469,8 +91463,6 @@ entities: type: Transform - color: '#B3A234FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22773 components: - rot: -1.5707963267948966 rad @@ -100479,8 +91471,6 @@ entities: type: Transform - color: '#B3A234FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22777 components: - rot: 1.5707963267948966 rad @@ -100496,8 +91486,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22782 components: - rot: 3.141592653589793 rad @@ -100506,8 +91494,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22783 components: - rot: 3.141592653589793 rad @@ -100516,8 +91502,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22784 components: - rot: 3.141592653589793 rad @@ -100526,8 +91510,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22785 components: - rot: 3.141592653589793 rad @@ -100536,8 +91518,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22786 components: - rot: 3.141592653589793 rad @@ -100546,8 +91526,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22787 components: - rot: 3.141592653589793 rad @@ -100556,8 +91534,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22788 components: - rot: 3.141592653589793 rad @@ -100566,8 +91542,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22789 components: - rot: 3.141592653589793 rad @@ -100576,8 +91550,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22790 components: - rot: 3.141592653589793 rad @@ -100586,8 +91558,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22791 components: - rot: 3.141592653589793 rad @@ -100596,8 +91566,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22792 components: - rot: 3.141592653589793 rad @@ -100606,8 +91574,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22793 components: - rot: 3.141592653589793 rad @@ -100616,8 +91582,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22795 components: - rot: 3.141592653589793 rad @@ -100626,8 +91590,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22796 components: - rot: 3.141592653589793 rad @@ -100636,8 +91598,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22797 components: - rot: 3.141592653589793 rad @@ -100646,8 +91606,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22798 components: - rot: 1.5707963267948966 rad @@ -100656,8 +91614,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22804 components: - rot: -1.5707963267948966 rad @@ -100674,8 +91630,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22811 components: - rot: 1.5707963267948966 rad @@ -100684,8 +91638,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22812 components: - rot: 1.5707963267948966 rad @@ -100694,8 +91646,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22813 components: - rot: 1.5707963267948966 rad @@ -100704,8 +91654,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22820 components: - rot: 1.5707963267948966 rad @@ -100714,8 +91662,6 @@ entities: type: Transform - color: '#3AB334FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22821 components: - rot: 1.5707963267948966 rad @@ -100724,8 +91670,6 @@ entities: type: Transform - color: '#3AB334FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22822 components: - rot: 1.5707963267948966 rad @@ -100734,8 +91678,6 @@ entities: type: Transform - color: '#3AB334FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22823 components: - rot: 1.5707963267948966 rad @@ -100744,8 +91686,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22824 components: - rot: 1.5707963267948966 rad @@ -100754,8 +91694,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22825 components: - rot: 1.5707963267948966 rad @@ -100764,8 +91702,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22826 components: - rot: 1.5707963267948966 rad @@ -100774,8 +91710,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22833 components: - rot: 1.5707963267948966 rad @@ -100792,8 +91726,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22837 components: - rot: 1.5707963267948966 rad @@ -100802,8 +91734,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22838 components: - rot: 1.5707963267948966 rad @@ -100812,8 +91742,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22842 components: - rot: -1.5707963267948966 rad @@ -100822,8 +91750,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22846 components: - rot: 1.5707963267948966 rad @@ -100840,8 +91766,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22916 components: - rot: 3.141592653589793 rad @@ -100850,8 +91774,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22921 components: - rot: 1.5707963267948966 rad @@ -100860,8 +91782,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22922 components: - pos: 18.5,-82.5 @@ -100869,8 +91789,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22929 components: - rot: -1.5707963267948966 rad @@ -100895,8 +91813,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22944 components: - rot: 3.141592653589793 rad @@ -100905,8 +91821,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22947 components: - pos: 15.5,-61.5 @@ -100914,8 +91828,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22981 components: - rot: -1.5707963267948966 rad @@ -100940,8 +91852,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22984 components: - rot: -1.5707963267948966 rad @@ -101080,8 +91990,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23024 components: - rot: -1.5707963267948966 rad @@ -101321,8 +92229,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23066 components: - rot: 1.5707963267948966 rad @@ -101367,8 +92273,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23077 components: - pos: -5.5,-54.5 @@ -101390,8 +92294,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23080 components: - rot: -1.5707963267948966 rad @@ -101416,8 +92318,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23083 components: - rot: -1.5707963267948966 rad @@ -101426,8 +92326,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23084 components: - rot: -1.5707963267948966 rad @@ -101511,8 +92409,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23111 components: - rot: 3.141592653589793 rad @@ -101521,8 +92417,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23113 components: - rot: 1.5707963267948966 rad @@ -101636,8 +92530,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23137 components: - rot: 1.5707963267948966 rad @@ -101678,8 +92570,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23153 components: - rot: -1.5707963267948966 rad @@ -101805,8 +92695,6 @@ entities: - pos: 15.5,-53.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 23180 components: - pos: 15.5,-58.5 @@ -101814,8 +92702,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23184 components: - rot: 1.5707963267948966 rad @@ -101896,8 +92782,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23196 components: - rot: 3.141592653589793 rad @@ -101906,8 +92790,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23197 components: - rot: 3.141592653589793 rad @@ -101940,8 +92822,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23206 components: - rot: 3.141592653589793 rad @@ -101950,16 +92830,12 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23213 components: - rot: 3.141592653589793 rad pos: 15.5,-49.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 23214 components: - rot: -1.5707963267948966 rad @@ -102008,8 +92884,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23240 components: - rot: 3.141592653589793 rad @@ -102018,8 +92892,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23242 components: - rot: -1.5707963267948966 rad @@ -102060,8 +92932,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23247 components: - rot: -1.5707963267948966 rad @@ -102086,8 +92956,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23250 components: - rot: -1.5707963267948966 rad @@ -102192,8 +93060,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23275 components: - rot: -1.5707963267948966 rad @@ -102328,8 +93194,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23301 components: - rot: -1.5707963267948966 rad @@ -106166,8 +97030,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23920 components: - rot: 3.141592653589793 rad @@ -106184,8 +97046,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23922 components: - rot: 3.141592653589793 rad @@ -106218,8 +97078,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23926 components: - rot: 3.141592653589793 rad @@ -106228,8 +97086,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23927 components: - rot: 3.141592653589793 rad @@ -106286,8 +97142,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23951 components: - rot: -1.5707963267948966 rad @@ -106401,8 +97255,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23970 components: - pos: -21.5,-19.5 @@ -106433,8 +97285,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23974 components: - rot: -1.5707963267948966 rad @@ -106748,8 +97598,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24037 components: - rot: 1.5707963267948966 rad @@ -106838,8 +97686,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24050 components: - rot: -1.5707963267948966 rad @@ -106925,8 +97771,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24067 components: - rot: 3.141592653589793 rad @@ -107023,8 +97867,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24081 components: - rot: -1.5707963267948966 rad @@ -107040,8 +97882,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24089 components: - pos: 4.5,-33.5 @@ -107115,8 +97955,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24103 components: - rot: -1.5707963267948966 rad @@ -107205,8 +98043,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24118 components: - rot: -1.5707963267948966 rad @@ -107223,8 +98059,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24120 components: - rot: -1.5707963267948966 rad @@ -107265,8 +98099,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24126 components: - rot: -1.5707963267948966 rad @@ -107283,8 +98115,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24129 components: - rot: -1.5707963267948966 rad @@ -107341,8 +98171,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24136 components: - rot: 1.5707963267948966 rad @@ -107359,8 +98187,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24139 components: - rot: 1.5707963267948966 rad @@ -107401,8 +98227,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24144 components: - rot: 1.5707963267948966 rad @@ -107419,8 +98243,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24146 components: - rot: 1.5707963267948966 rad @@ -107571,8 +98393,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24184 components: - pos: 0.5,-10.5 @@ -107594,8 +98414,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24190 components: - pos: 6.5,-10.5 @@ -107638,8 +98456,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24196 components: - pos: 7.5,-11.5 @@ -107738,8 +98554,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24212 components: - pos: 6.5,-20.5 @@ -107763,8 +98577,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24218 components: - rot: 1.5707963267948966 rad @@ -107818,8 +98630,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24228 components: - pos: -8.5,-11.5 @@ -108104,8 +98914,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24285 components: - rot: 1.5707963267948966 rad @@ -108122,8 +98930,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24287 components: - rot: 1.5707963267948966 rad @@ -108140,8 +98946,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24289 components: - rot: 1.5707963267948966 rad @@ -108158,8 +98962,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24301 components: - rot: -1.5707963267948966 rad @@ -108176,8 +98978,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24305 components: - rot: 3.141592653589793 rad @@ -108202,8 +99002,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24308 components: - rot: 3.141592653589793 rad @@ -108247,8 +99045,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24316 components: - pos: -12.5,5.5 @@ -108256,8 +99052,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24319 components: - pos: -12.5,6.5 @@ -108344,8 +99138,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24330 components: - rot: -1.5707963267948966 rad @@ -108479,8 +99271,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24361 components: - pos: 16.5,12.5 @@ -108530,8 +99320,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24380 components: - rot: 3.141592653589793 rad @@ -108668,8 +99456,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24397 components: - rot: 1.5707963267948966 rad @@ -108678,8 +99464,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24402 components: - rot: 3.141592653589793 rad @@ -108712,8 +99496,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24406 components: - rot: 3.141592653589793 rad @@ -108762,8 +99544,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24414 components: - rot: 1.5707963267948966 rad @@ -109004,8 +99784,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24460 components: - pos: 20.5,2.5 @@ -109132,8 +99910,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24481 components: - rot: 3.141592653589793 rad @@ -109230,8 +100006,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24495 components: - rot: 3.141592653589793 rad @@ -109373,8 +100147,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24518 components: - pos: 37.5,-2.5 @@ -109857,8 +100629,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24608 components: - pos: 20.5,-22.5 @@ -110005,8 +100775,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24632 components: - pos: 39.5,-19.5 @@ -110038,8 +100806,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24642 components: - rot: 3.141592653589793 rad @@ -110162,8 +100928,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24668 components: - rot: 1.5707963267948966 rad @@ -110237,8 +101001,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24684 components: - pos: 26.5,-30.5 @@ -110285,8 +101047,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24696 components: - rot: 1.5707963267948966 rad @@ -110327,8 +101087,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24701 components: - rot: 1.5707963267948966 rad @@ -110449,8 +101207,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24727 components: - rot: 1.5707963267948966 rad @@ -110557,8 +101313,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24744 components: - rot: 1.5707963267948966 rad @@ -110695,8 +101449,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24770 components: - rot: 1.5707963267948966 rad @@ -110768,8 +101520,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24787 components: - rot: -1.5707963267948966 rad @@ -110794,8 +101544,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24790 components: - rot: -1.5707963267948966 rad @@ -110804,8 +101552,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24791 components: - rot: -1.5707963267948966 rad @@ -110830,8 +101576,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24794 components: - rot: -1.5707963267948966 rad @@ -110960,8 +101704,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24810 components: - rot: 1.5707963267948966 rad @@ -110986,8 +101728,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24819 components: - rot: 3.141592653589793 rad @@ -111004,8 +101744,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24823 components: - pos: 39.5,-52.5 @@ -111034,8 +101772,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24827 components: - pos: 39.5,-54.5 @@ -111043,8 +101779,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24829 components: - pos: 41.5,-55.5 @@ -111119,8 +101853,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24844 components: - pos: 46.5,-58.5 @@ -111152,8 +101884,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24858 components: - rot: 1.5707963267948966 rad @@ -111162,8 +101892,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24860 components: - rot: 1.5707963267948966 rad @@ -111203,8 +101931,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24870 components: - pos: 44.5,-58.5 @@ -111260,8 +101986,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24881 components: - rot: 3.141592653589793 rad @@ -111428,8 +102152,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24908 components: - rot: 1.5707963267948966 rad @@ -111647,8 +102369,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24958 components: - pos: 70.5,0.5 @@ -111695,8 +102415,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24966 components: - rot: -1.5707963267948966 rad @@ -111717,8 +102435,6 @@ entities: pos: 75.5,-41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 25008 components: - rot: 1.5707963267948966 rad @@ -111731,24 +102447,18 @@ entities: pos: 75.5,-39.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 25010 components: - rot: 1.5707963267948966 rad pos: 73.5,-41.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 25011 components: - rot: 1.5707963267948966 rad pos: 73.5,-39.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 25023 components: - rot: 3.141592653589793 rad @@ -111765,8 +102475,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25025 components: - rot: 3.141592653589793 rad @@ -111847,8 +102555,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25038 components: - rot: 3.141592653589793 rad @@ -111982,8 +102688,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25061 components: - rot: 1.5707963267948966 rad @@ -112229,8 +102933,6 @@ entities: pos: 57.5,-28.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 25104 components: - rot: 1.5707963267948966 rad @@ -112253,8 +102955,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25107 components: - pos: 61.5,-24.5 @@ -112325,8 +103025,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25122 components: - pos: 56.5,-29.5 @@ -112349,8 +103047,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25127 components: - rot: 1.5707963267948966 rad @@ -112367,8 +103063,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25129 components: - rot: 1.5707963267948966 rad @@ -112413,8 +103107,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25141 components: - pos: 62.5,-29.5 @@ -112462,8 +103154,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25153 components: - rot: 1.5707963267948966 rad @@ -112520,8 +103210,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25160 components: - rot: 1.5707963267948966 rad @@ -112530,8 +103218,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25161 components: - pos: 66.5,-35.5 @@ -112737,8 +103423,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25198 components: - rot: 3.141592653589793 rad @@ -112803,8 +103487,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25210 components: - rot: -1.5707963267948966 rad @@ -113039,8 +103721,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25256 components: - rot: 1.5707963267948966 rad @@ -113377,8 +104057,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25312 components: - rot: 1.5707963267948966 rad @@ -113419,8 +104097,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25323 components: - rot: 3.141592653589793 rad @@ -113450,8 +104126,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25329 components: - pos: -50.5,-3.5 @@ -113626,8 +104300,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25361 components: - pos: -45.5,-9.5 @@ -113740,8 +104412,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25383 components: - pos: -32.5,-4.5 @@ -113763,8 +104433,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25386 components: - pos: -27.5,-5.5 @@ -113772,8 +104440,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25387 components: - pos: -26.5,-1.5 @@ -113802,8 +104468,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25391 components: - pos: -26.5,-5.5 @@ -113811,8 +104475,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25398 components: - pos: -31.5,0.5 @@ -113855,8 +104517,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25404 components: - pos: -30.5,1.5 @@ -113864,8 +104524,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25405 components: - pos: -30.5,2.5 @@ -113873,8 +104531,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25410 components: - pos: -22.5,-1.5 @@ -113903,8 +104559,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25414 components: - pos: -22.5,-5.5 @@ -114005,8 +104659,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25441 components: - rot: 3.141592653589793 rad @@ -114039,8 +104691,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25445 components: - rot: 3.141592653589793 rad @@ -114073,8 +104723,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25449 components: - rot: 3.141592653589793 rad @@ -114139,8 +104787,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25457 components: - rot: 3.141592653589793 rad @@ -114373,8 +105019,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25501 components: - rot: -1.5707963267948966 rad @@ -114479,8 +105123,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25515 components: - rot: -1.5707963267948966 rad @@ -114613,8 +105255,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25545 components: - rot: 3.141592653589793 rad @@ -114679,8 +105319,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25553 components: - rot: 3.141592653589793 rad @@ -114744,8 +105382,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25569 components: - rot: -1.5707963267948966 rad @@ -114847,8 +105483,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25584 components: - rot: -1.5707963267948966 rad @@ -114903,8 +105537,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25591 components: - rot: -1.5707963267948966 rad @@ -114936,8 +105568,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25595 components: - rot: -1.5707963267948966 rad @@ -114984,8 +105614,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25604 components: - pos: -14.5,24.5 @@ -115014,8 +105642,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25608 components: - pos: 1.5,25.5 @@ -115030,8 +105656,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25610 components: - pos: 2.5,26.5 @@ -115063,8 +105687,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25632 components: - rot: 3.141592653589793 rad @@ -115314,8 +105936,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25746 components: - rot: 3.141592653589793 rad @@ -115354,8 +105974,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25767 components: - pos: 7.5,35.5 @@ -115542,8 +106160,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25793 components: - rot: 3.141592653589793 rad @@ -115623,8 +106239,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25815 components: - rot: 1.5707963267948966 rad @@ -115697,8 +106311,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 26041 components: - rot: -1.5707963267948966 rad @@ -115723,8 +106335,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 26069 components: - pos: 17.5,-59.5 @@ -115732,8 +106342,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 26070 components: - rot: -1.5707963267948966 rad @@ -115742,8 +106350,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 26071 components: - pos: 17.5,-58.5 @@ -115751,8 +106357,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 26082 components: - rot: -1.5707963267948966 rad @@ -115769,8 +106373,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 26621 components: - rot: 1.5707963267948966 rad @@ -115907,8 +106509,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 26912 components: - rot: 1.5707963267948966 rad @@ -115917,8 +106517,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 26913 components: - rot: 1.5707963267948966 rad @@ -115935,8 +106533,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 26915 components: - rot: 1.5707963267948966 rad @@ -115945,8 +106541,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 26916 components: - rot: 1.5707963267948966 rad @@ -115955,8 +106549,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 26921 components: - rot: 3.141592653589793 rad @@ -115965,8 +106557,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 26922 components: - rot: 3.141592653589793 rad @@ -116197,8 +106787,6 @@ entities: - pos: 22.5,-92.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 27425 components: - rot: -1.5707963267948966 rad @@ -116223,8 +106811,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - proto: GasPipeTJunction entities: - uid: 1 @@ -116280,8 +106866,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4003 components: - rot: 1.5707963267948966 rad @@ -116290,8 +106874,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4052 components: - rot: 3.141592653589793 rad @@ -116307,8 +106889,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4173 components: - rot: 1.5707963267948966 rad @@ -116325,8 +106905,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4577 components: - rot: -1.5707963267948966 rad @@ -116335,8 +106913,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4652 components: - rot: 1.5707963267948966 rad @@ -116359,8 +106935,6 @@ entities: pos: 43.5,-39.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 7306 components: - rot: 3.141592653589793 rad @@ -116495,23 +107069,17 @@ entities: pos: 26.5,22.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10437 components: - pos: 85.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 10439 components: - rot: -1.5707963267948966 rad pos: 40.5,7.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 15494 components: - rot: -1.5707963267948966 rad @@ -116520,8 +107088,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15549 components: - rot: 1.5707963267948966 rad @@ -116538,8 +107104,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15880 components: - rot: 1.5707963267948966 rad @@ -116548,8 +107112,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15889 components: - pos: 13.5,-80.5 @@ -116557,8 +107119,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15892 components: - rot: -1.5707963267948966 rad @@ -116567,8 +107127,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16338 components: - rot: 1.5707963267948966 rad @@ -116585,8 +107143,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16540 components: - rot: 1.5707963267948966 rad @@ -116595,8 +107151,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16604 components: - rot: -1.5707963267948966 rad @@ -116605,8 +107159,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16830 components: - rot: -1.5707963267948966 rad @@ -116621,8 +107173,6 @@ entities: pos: 15.5,-55.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 16992 components: - rot: 3.141592653589793 rad @@ -116631,8 +107181,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17025 components: - rot: 1.5707963267948966 rad @@ -116665,8 +107213,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17063 components: - rot: 1.5707963267948966 rad @@ -116682,8 +107228,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17112 components: - pos: 4.5,-56.5 @@ -116729,8 +107273,6 @@ entities: pos: -43.5,15.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 17322 components: - rot: -1.5707963267948966 rad @@ -116770,8 +107312,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17590 components: - pos: -7.5,-62.5 @@ -116793,8 +107333,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17870 components: - rot: -1.5707963267948966 rad @@ -116842,8 +107380,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 20185 components: - pos: 76.5,-14.5 @@ -116872,39 +107408,29 @@ entities: - pos: 60.5,-46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20637 components: - rot: -1.5707963267948966 rad pos: 60.5,-47.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20638 components: - rot: 3.141592653589793 rad pos: 60.5,-49.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20639 components: - pos: 62.5,-46.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20673 components: - rot: 3.141592653589793 rad pos: 62.5,-48.5 parent: 8364 type: Transform - - enabled: True - type: AmbientSound - uid: 20884 components: - rot: 3.141592653589793 rad @@ -116968,8 +107494,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22805 components: - pos: -6.5,-64.5 @@ -118962,8 +109486,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 26925 components: - rot: 1.5707963267948966 rad @@ -119647,8 +110169,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4228 @@ -119658,8 +110178,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#03FCD3FF' type: AtmosPipeColor - uid: 14079 @@ -119670,8 +110188,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - uid: 17062 components: - rot: -1.5707963267948966 rad @@ -119680,8 +110196,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#947507FF' type: AtmosPipeColor - uid: 17339 @@ -119692,8 +110206,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - uid: 20668 components: - pos: 60.5,-48.5 @@ -119701,8 +110213,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - uid: 22843 components: - name: waste valve 2 @@ -119733,8 +110243,6 @@ entities: pos: 56.5,-45.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4546 @@ -119743,8 +110251,6 @@ entities: pos: 11.5,-73.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5382 @@ -119753,8 +110259,6 @@ entities: pos: 56.5,-10.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5462 @@ -119762,16 +110266,12 @@ entities: - pos: -15.5,-68.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 7282 components: - rot: 3.141592653589793 rad pos: 3.5,50.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7293 @@ -119780,8 +110280,6 @@ entities: pos: -11.5,48.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7296 @@ -119790,8 +110288,6 @@ entities: pos: -7.5,45.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8909 @@ -119800,8 +110296,6 @@ entities: pos: -9.5,40.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8910 @@ -119810,8 +110304,6 @@ entities: pos: -9.5,50.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8950 @@ -119820,8 +110312,6 @@ entities: pos: -9.5,34.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8955 @@ -119830,8 +110320,6 @@ entities: pos: -20.5,44.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 9392 @@ -119839,8 +110327,6 @@ entities: - pos: 13.5,20.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10452 @@ -119849,8 +110335,6 @@ entities: pos: 46.5,-0.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 14562 @@ -119859,8 +110343,6 @@ entities: pos: 66.5,-18.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 15344 @@ -119869,8 +110351,6 @@ entities: pos: 1.5,-21.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 16399 @@ -119883,8 +110363,6 @@ entities: - 27486 - 256 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 17123 @@ -119896,8 +110374,6 @@ entities: - ShutdownSubscribers: - 22816 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 17188 @@ -119908,8 +110384,6 @@ entities: - ShutdownSubscribers: - 27486 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 17520 @@ -119921,8 +110395,6 @@ entities: - ShutdownSubscribers: - 22566 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 18741 @@ -119931,8 +110403,6 @@ entities: pos: -12.5,-62.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 19113 @@ -119941,8 +110411,6 @@ entities: pos: 36.5,-35.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 20368 @@ -119951,8 +110419,6 @@ entities: pos: 55.5,-45.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 22458 @@ -119960,8 +110426,6 @@ entities: - pos: 1.5,0.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 22696 @@ -119970,8 +110434,6 @@ entities: pos: 79.5,-12.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 22950 @@ -119983,8 +110445,6 @@ entities: - ShutdownSubscribers: - 22568 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 22952 @@ -119992,8 +110452,6 @@ entities: - pos: 16.5,-40.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 23011 @@ -120004,8 +110462,6 @@ entities: - ShutdownSubscribers: - 17778 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 23068 @@ -120017,8 +110473,6 @@ entities: - ShutdownSubscribers: - 18773 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 23089 @@ -120027,8 +110481,6 @@ entities: pos: -11.5,-55.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 23090 @@ -120036,8 +110488,6 @@ entities: - pos: -7.5,-51.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 23091 @@ -120045,8 +110495,6 @@ entities: - pos: -6.5,-54.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 23121 @@ -120058,8 +110506,6 @@ entities: - ShutdownSubscribers: - 27486 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 23146 @@ -120071,8 +110517,6 @@ entities: - ShutdownSubscribers: - 256 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 23179 @@ -120084,8 +110528,6 @@ entities: - ShutdownSubscribers: - 26908 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 23261 @@ -120094,8 +110536,6 @@ entities: pos: -23.5,-69.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 23279 @@ -120104,8 +110544,6 @@ entities: pos: -4.5,-42.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 23281 @@ -120114,8 +110552,6 @@ entities: pos: -0.5,-48.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 23303 @@ -120124,8 +110560,6 @@ entities: pos: -4.5,-35.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 23304 @@ -120137,8 +110571,6 @@ entities: - ShutdownSubscribers: - 22563 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 23946 @@ -120147,8 +110579,6 @@ entities: pos: -0.5,-26.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 23947 @@ -120157,8 +110587,6 @@ entities: pos: -2.5,-30.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 23949 @@ -120167,8 +110595,6 @@ entities: pos: -11.5,-30.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 23998 @@ -120176,8 +110602,6 @@ entities: - pos: -20.5,-22.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 23999 @@ -120185,8 +110609,6 @@ entities: - pos: -21.5,-18.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24010 @@ -120195,8 +110617,6 @@ entities: pos: -39.5,-25.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24011 @@ -120205,8 +110625,6 @@ entities: pos: -34.5,-21.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24031 @@ -120218,8 +110636,6 @@ entities: - ShutdownSubscribers: - 14649 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24038 @@ -120228,8 +110644,6 @@ entities: pos: -21.5,-30.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24052 @@ -120241,8 +110655,6 @@ entities: - ShutdownSubscribers: - 14152 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24057 @@ -120251,8 +110663,6 @@ entities: pos: -24.5,-33.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24063 @@ -120261,8 +110671,6 @@ entities: pos: -13.5,-27.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24072 @@ -120270,8 +110678,6 @@ entities: - pos: -7.5,-25.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24082 @@ -120280,8 +110686,6 @@ entities: pos: -21.5,-11.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24085 @@ -120290,8 +110694,6 @@ entities: pos: -16.5,-24.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24086 @@ -120300,8 +110702,6 @@ entities: pos: -16.5,-14.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24096 @@ -120310,8 +110710,6 @@ entities: pos: 5.5,-35.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24098 @@ -120323,8 +110721,6 @@ entities: - ShutdownSubscribers: - 10705 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24108 @@ -120333,8 +110729,6 @@ entities: pos: 10.5,-26.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24110 @@ -120343,8 +110737,6 @@ entities: pos: 15.5,-18.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24178 @@ -120352,8 +110744,6 @@ entities: - pos: -2.5,-7.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24179 @@ -120361,8 +110751,6 @@ entities: - pos: 1.5,-7.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24187 @@ -120371,8 +110759,6 @@ entities: pos: -1.5,-11.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24216 @@ -120381,8 +110767,6 @@ entities: pos: 10.5,-21.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24217 @@ -120391,8 +110775,6 @@ entities: pos: 5.5,-13.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24220 @@ -120401,8 +110783,6 @@ entities: pos: 6.5,-22.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24240 @@ -120411,8 +110791,6 @@ entities: pos: -7.5,-16.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24241 @@ -120421,8 +110799,6 @@ entities: pos: -16.5,-5.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24243 @@ -120431,8 +110807,6 @@ entities: pos: 15.5,-5.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24246 @@ -120440,8 +110814,6 @@ entities: - pos: 78.5,-2.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24291 @@ -120450,8 +110822,6 @@ entities: pos: 6.5,6.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24292 @@ -120460,8 +110830,6 @@ entities: pos: 6.5,9.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24293 @@ -120470,8 +110838,6 @@ entities: pos: 6.5,12.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24294 @@ -120480,8 +110846,6 @@ entities: pos: 6.5,15.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24299 @@ -120489,8 +110853,6 @@ entities: - pos: 11.5,-1.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24331 @@ -120499,8 +110861,6 @@ entities: pos: -11.5,-1.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24333 @@ -120509,8 +110869,6 @@ entities: pos: -11.5,6.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24334 @@ -120519,8 +110877,6 @@ entities: pos: -5.5,6.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24336 @@ -120529,8 +110885,6 @@ entities: pos: -11.5,2.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24368 @@ -120538,8 +110892,6 @@ entities: - pos: 11.5,12.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24369 @@ -120547,8 +110899,6 @@ entities: - pos: 12.5,14.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24370 @@ -120556,8 +110906,6 @@ entities: - pos: 16.5,14.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24376 @@ -120565,8 +110913,6 @@ entities: - pos: 19.5,12.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24400 @@ -120575,8 +110921,6 @@ entities: pos: 29.5,14.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24419 @@ -120585,8 +110929,6 @@ entities: pos: 17.5,6.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24420 @@ -120595,8 +110937,6 @@ entities: pos: 12.5,6.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24463 @@ -120605,8 +110945,6 @@ entities: pos: 22.5,3.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24493 @@ -120614,8 +110952,6 @@ entities: - pos: 30.5,-1.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24505 @@ -120624,8 +110960,6 @@ entities: pos: 38.5,-8.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24519 @@ -120633,8 +110967,6 @@ entities: - pos: 37.5,-1.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24583 @@ -120643,8 +110975,6 @@ entities: pos: 33.5,-17.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24584 @@ -120653,8 +110983,6 @@ entities: pos: 24.5,-17.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24585 @@ -120662,8 +110990,6 @@ entities: - pos: 29.5,-13.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24588 @@ -120671,8 +110997,6 @@ entities: - pos: 29.5,-24.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24599 @@ -120680,8 +111004,6 @@ entities: - pos: 19.5,-20.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24643 @@ -120689,8 +111011,6 @@ entities: - pos: 42.5,-20.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24645 @@ -120698,8 +111018,6 @@ entities: - pos: 39.5,-18.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24671 @@ -120707,8 +111025,6 @@ entities: - pos: 40.5,-27.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24672 @@ -120717,8 +111033,6 @@ entities: pos: 45.5,-28.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24705 @@ -120727,8 +111041,6 @@ entities: pos: 24.5,-28.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24706 @@ -120737,8 +111049,6 @@ entities: pos: 25.5,-35.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24707 @@ -120747,8 +111057,6 @@ entities: pos: 19.5,-34.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24745 @@ -120757,8 +111065,6 @@ entities: pos: 40.5,-32.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24746 @@ -120767,8 +111073,6 @@ entities: pos: 45.5,-32.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24775 @@ -120777,8 +111081,6 @@ entities: pos: 35.5,-40.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24776 @@ -120787,8 +111089,6 @@ entities: pos: 40.5,-41.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24811 @@ -120797,8 +111097,6 @@ entities: pos: 44.5,-46.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24812 @@ -120807,8 +111105,6 @@ entities: pos: 36.5,-46.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24813 @@ -120817,8 +111113,6 @@ entities: pos: 36.5,-49.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24831 @@ -120827,8 +111121,6 @@ entities: pos: 40.5,-51.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24849 @@ -120836,8 +111128,6 @@ entities: - pos: 44.5,-53.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24863 @@ -120845,8 +111135,6 @@ entities: - pos: 35.5,-55.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24864 @@ -120855,8 +111143,6 @@ entities: pos: 40.5,-58.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24879 @@ -120865,8 +111151,6 @@ entities: pos: 44.5,-59.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24880 @@ -120875,8 +111159,6 @@ entities: pos: 47.5,-59.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24914 @@ -120885,8 +111167,6 @@ entities: pos: 45.5,-8.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24920 @@ -120894,8 +111174,6 @@ entities: - pos: 47.5,-13.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24921 @@ -120903,8 +111181,6 @@ entities: - pos: 67.5,-13.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24931 @@ -120912,8 +111188,6 @@ entities: - pos: 73.5,-7.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24968 @@ -120922,8 +111196,6 @@ entities: pos: 66.5,2.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25013 @@ -120932,15 +111204,11 @@ entities: pos: 72.5,-41.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 25069 components: - pos: 70.5,-23.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25070 @@ -120949,8 +111217,6 @@ entities: pos: 77.5,-24.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25115 @@ -120959,8 +111225,6 @@ entities: pos: 61.5,-20.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25131 @@ -120969,8 +111233,6 @@ entities: pos: 54.5,-26.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25132 @@ -120979,8 +111241,6 @@ entities: pos: 53.5,-29.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25133 @@ -120989,8 +111249,6 @@ entities: pos: 56.5,-29.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25142 @@ -120999,8 +111257,6 @@ entities: pos: 62.5,-30.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25164 @@ -121009,8 +111265,6 @@ entities: pos: 62.5,-35.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25165 @@ -121019,8 +111273,6 @@ entities: pos: 69.5,-35.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25168 @@ -121029,8 +111281,6 @@ entities: pos: 66.5,-33.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25170 @@ -121039,8 +111289,6 @@ entities: pos: 66.5,-25.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25206 @@ -121049,8 +111297,6 @@ entities: pos: 69.5,-51.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25224 @@ -121059,8 +111305,6 @@ entities: pos: 67.5,-40.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25242 @@ -121068,8 +111312,6 @@ entities: - pos: 56.5,-39.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25260 @@ -121078,8 +111320,6 @@ entities: pos: 74.5,-44.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25276 @@ -121088,8 +111328,6 @@ entities: pos: -71.5,-14.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25289 @@ -121098,8 +111336,6 @@ entities: pos: -71.5,9.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25304 @@ -121108,8 +111344,6 @@ entities: pos: -71.5,-4.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25307 @@ -121118,8 +111352,6 @@ entities: pos: -64.5,-1.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25314 @@ -121128,8 +111360,6 @@ entities: pos: -60.5,-10.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25315 @@ -121137,8 +111367,6 @@ entities: - pos: -59.5,1.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25316 @@ -121147,8 +111375,6 @@ entities: pos: -59.5,-5.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25325 @@ -121156,8 +111382,6 @@ entities: - pos: -60.5,4.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25336 @@ -121166,8 +111390,6 @@ entities: pos: -51.5,-7.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25366 @@ -121176,8 +111398,6 @@ entities: pos: -46.5,-11.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25367 @@ -121186,8 +111406,6 @@ entities: pos: -43.5,-5.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25376 @@ -121195,8 +111413,6 @@ entities: - pos: -38.5,3.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25394 @@ -121205,8 +111421,6 @@ entities: pos: -33.5,-5.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25395 @@ -121215,8 +111429,6 @@ entities: pos: -27.5,-6.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25396 @@ -121224,8 +111436,6 @@ entities: - pos: -40.5,-1.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25407 @@ -121233,8 +111443,6 @@ entities: - pos: -30.5,3.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25409 @@ -121242,8 +111450,6 @@ entities: - pos: -25.5,-1.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25418 @@ -121252,8 +111458,6 @@ entities: pos: -21.5,-6.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25420 @@ -121262,8 +111466,6 @@ entities: pos: -0.5,5.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25421 @@ -121272,8 +111474,6 @@ entities: pos: -0.5,16.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25483 @@ -121281,8 +111481,6 @@ entities: - pos: -16.5,23.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25484 @@ -121291,8 +111489,6 @@ entities: pos: -18.5,19.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25485 @@ -121301,8 +111497,6 @@ entities: pos: -10.5,15.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25486 @@ -121311,8 +111505,6 @@ entities: pos: -4.5,15.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25488 @@ -121320,8 +111512,6 @@ entities: - pos: -6.5,20.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25519 @@ -121329,8 +111519,6 @@ entities: - pos: 9.5,20.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25533 @@ -121339,8 +111527,6 @@ entities: pos: 5.5,23.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25557 @@ -121349,8 +111535,6 @@ entities: pos: 10.5,27.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25558 @@ -121359,8 +111543,6 @@ entities: pos: 8.5,23.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25619 @@ -121369,8 +111551,6 @@ entities: pos: 1.5,24.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25620 @@ -121379,8 +111559,6 @@ entities: pos: -2.5,24.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25621 @@ -121389,8 +111567,6 @@ entities: pos: -6.5,24.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25622 @@ -121399,8 +111575,6 @@ entities: pos: -10.5,24.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25623 @@ -121409,8 +111583,6 @@ entities: pos: -13.5,23.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25751 @@ -121419,8 +111591,6 @@ entities: pos: -15.5,31.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25753 @@ -121429,8 +111599,6 @@ entities: pos: -7.5,30.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25755 @@ -121438,8 +111606,6 @@ entities: - pos: -10.5,27.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25757 @@ -121448,8 +111614,6 @@ entities: pos: -4.5,28.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25761 @@ -121457,8 +111621,6 @@ entities: - pos: 1.5,36.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25762 @@ -121467,8 +111629,6 @@ entities: pos: 0.5,31.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25803 @@ -121476,8 +111636,6 @@ entities: - pos: 15.5,38.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25804 @@ -121486,8 +111644,6 @@ entities: pos: 15.5,30.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25805 @@ -121495,8 +111651,6 @@ entities: - pos: 8.5,36.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25824 @@ -121505,8 +111659,6 @@ entities: pos: 23.5,32.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 26692 @@ -121515,8 +111667,6 @@ entities: pos: -6.5,-75.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 26693 @@ -121528,8 +111678,6 @@ entities: - ShutdownSubscribers: - 26704 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 26694 @@ -121541,8 +111689,6 @@ entities: - ShutdownSubscribers: - 26703 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 26949 @@ -121551,8 +111697,6 @@ entities: pos: 28.5,-109.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 26950 @@ -121561,8 +111705,6 @@ entities: pos: 29.5,-106.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 26951 @@ -121571,8 +111713,6 @@ entities: pos: 27.5,-92.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 26958 @@ -121581,8 +111721,6 @@ entities: pos: 24.5,-91.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 26959 @@ -121591,8 +111729,6 @@ entities: pos: 32.5,-91.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 26960 @@ -121601,8 +111737,6 @@ entities: pos: 29.5,-85.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 26961 @@ -121610,8 +111744,6 @@ entities: - pos: 28.5,-79.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 27233 @@ -121620,8 +111752,6 @@ entities: pos: 23.5,-7.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - proto: GasVentScrubber @@ -121632,8 +111762,6 @@ entities: pos: 11.5,-74.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 5383 @@ -121641,8 +111769,6 @@ entities: - pos: 57.5,-7.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 5463 @@ -121651,15 +111777,11 @@ entities: pos: -13.5,-69.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 7284 components: - pos: -7.5,44.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7294 @@ -121667,8 +111789,6 @@ entities: - pos: -13.5,47.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7295 @@ -121676,8 +111796,6 @@ entities: - pos: -18.5,44.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7301 @@ -121686,8 +111804,6 @@ entities: pos: -7.5,50.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8953 @@ -121696,8 +111812,6 @@ entities: pos: -10.5,34.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 9185 @@ -121706,8 +111820,6 @@ entities: pos: -1.5,50.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 15347 @@ -121716,8 +111828,6 @@ entities: pos: -2.5,-21.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 16832 @@ -121725,8 +111835,6 @@ entities: - pos: -0.5,-46.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 17122 @@ -121738,8 +111846,6 @@ entities: - ShutdownSubscribers: - 22816 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 17187 @@ -121751,8 +111857,6 @@ entities: - ShutdownSubscribers: - 27486 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 17630 @@ -121763,8 +111867,6 @@ entities: - ShutdownSubscribers: - 22566 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 19123 @@ -121775,8 +111877,6 @@ entities: - ShutdownSubscribers: - 3263 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 20132 @@ -121785,8 +111885,6 @@ entities: pos: -71.5,-13.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 20658 @@ -121795,8 +111893,6 @@ entities: pos: 59.5,-45.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 20865 @@ -121805,8 +111901,6 @@ entities: pos: 58.5,-45.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 22459 @@ -121814,8 +111908,6 @@ entities: - pos: -2.5,0.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 22695 @@ -121824,8 +111916,6 @@ entities: pos: 77.5,-12.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 22778 @@ -121838,8 +111928,6 @@ entities: - 27486 - 256 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 22800 @@ -121851,8 +111939,6 @@ entities: - ShutdownSubscribers: - 256 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 22828 @@ -121861,8 +111947,6 @@ entities: pos: -12.5,-64.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 22951 @@ -121873,8 +111957,6 @@ entities: - ShutdownSubscribers: - 22568 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 23010 @@ -121886,8 +111968,6 @@ entities: - ShutdownSubscribers: - 17778 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 23067 @@ -121899,8 +111979,6 @@ entities: - ShutdownSubscribers: - 18773 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 23086 @@ -121909,8 +111987,6 @@ entities: pos: -7.5,-57.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 23087 @@ -121919,8 +111995,6 @@ entities: pos: -11.5,-56.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 23088 @@ -121928,8 +112002,6 @@ entities: - pos: -5.5,-51.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 23120 @@ -121941,8 +112013,6 @@ entities: - ShutdownSubscribers: - 27486 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 23177 @@ -121954,8 +112024,6 @@ entities: - ShutdownSubscribers: - 26908 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 23260 @@ -121964,8 +112032,6 @@ entities: pos: -23.5,-68.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 23278 @@ -121974,8 +112040,6 @@ entities: pos: -4.5,-43.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 23302 @@ -121984,8 +112048,6 @@ entities: pos: -4.5,-36.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 23305 @@ -121997,8 +112059,6 @@ entities: - ShutdownSubscribers: - 22563 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 23941 @@ -122007,8 +112067,6 @@ entities: pos: -0.5,-27.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 23948 @@ -122016,8 +112074,6 @@ entities: - pos: 1.5,-30.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 23950 @@ -122025,8 +112081,6 @@ entities: - pos: -12.5,-30.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24012 @@ -122035,8 +112089,6 @@ entities: pos: -32.5,-21.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24013 @@ -122044,8 +112096,6 @@ entities: - pos: -22.5,-18.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24014 @@ -122054,8 +112104,6 @@ entities: pos: -20.5,-25.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24032 @@ -122067,8 +112115,6 @@ entities: - ShutdownSubscribers: - 14649 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24039 @@ -122077,8 +112123,6 @@ entities: pos: -21.5,-31.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24051 @@ -122090,8 +112134,6 @@ entities: - ShutdownSubscribers: - 14152 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24056 @@ -122100,8 +112142,6 @@ entities: pos: -25.5,-33.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24062 @@ -122110,8 +112150,6 @@ entities: pos: -13.5,-22.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24073 @@ -122119,8 +112157,6 @@ entities: - pos: -8.5,-25.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24083 @@ -122129,8 +112165,6 @@ entities: pos: -21.5,-12.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24084 @@ -122139,8 +112173,6 @@ entities: pos: -16.5,-25.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24087 @@ -122149,8 +112181,6 @@ entities: pos: -16.5,-15.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24097 @@ -122159,8 +112189,6 @@ entities: pos: 4.5,-35.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24099 @@ -122172,8 +112200,6 @@ entities: - ShutdownSubscribers: - 10705 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24109 @@ -122182,8 +112208,6 @@ entities: pos: 10.5,-25.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24111 @@ -122192,8 +112216,6 @@ entities: pos: 15.5,-19.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24180 @@ -122202,8 +112224,6 @@ entities: pos: -3.5,-7.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24181 @@ -122212,8 +112232,6 @@ entities: pos: 2.5,-7.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24188 @@ -122222,8 +112240,6 @@ entities: pos: 0.5,-11.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24219 @@ -122232,8 +112248,6 @@ entities: pos: 7.5,-20.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24224 @@ -122242,8 +112256,6 @@ entities: pos: 12.5,-13.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24239 @@ -122252,8 +112264,6 @@ entities: pos: -8.5,-16.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24242 @@ -122262,8 +112272,6 @@ entities: pos: -16.5,-6.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24244 @@ -122272,8 +112280,6 @@ entities: pos: 15.5,-6.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24245 @@ -122281,8 +112287,6 @@ entities: - pos: 76.5,-2.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24295 @@ -122291,8 +112295,6 @@ entities: pos: 6.5,14.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24296 @@ -122301,8 +112303,6 @@ entities: pos: 6.5,11.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24297 @@ -122311,8 +112311,6 @@ entities: pos: 6.5,8.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24298 @@ -122321,8 +112319,6 @@ entities: pos: 6.5,5.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24300 @@ -122331,8 +112327,6 @@ entities: pos: 10.5,-1.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24332 @@ -122341,8 +112335,6 @@ entities: pos: -11.5,3.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24335 @@ -122351,8 +112343,6 @@ entities: pos: -12.5,-1.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24337 @@ -122361,8 +112351,6 @@ entities: pos: -13.5,8.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24338 @@ -122371,8 +112359,6 @@ entities: pos: -5.5,8.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24371 @@ -122380,8 +112366,6 @@ entities: - pos: 13.5,14.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24372 @@ -122389,8 +112373,6 @@ entities: - pos: 17.5,14.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24373 @@ -122399,8 +112381,6 @@ entities: pos: 11.5,9.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24377 @@ -122409,8 +112389,6 @@ entities: pos: 19.5,9.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24401 @@ -122419,8 +112397,6 @@ entities: pos: 29.5,9.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24421 @@ -122429,8 +112405,6 @@ entities: pos: 12.5,5.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24422 @@ -122439,8 +112413,6 @@ entities: pos: 18.5,5.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24436 @@ -122449,8 +112421,6 @@ entities: pos: 21.5,-7.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24464 @@ -122458,8 +112428,6 @@ entities: - pos: 20.5,3.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24494 @@ -122467,8 +112435,6 @@ entities: - pos: 29.5,-1.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24506 @@ -122477,8 +112443,6 @@ entities: pos: 35.5,-8.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24520 @@ -122486,8 +112450,6 @@ entities: - pos: 36.5,-1.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24581 @@ -122496,8 +112458,6 @@ entities: pos: 27.5,-17.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24582 @@ -122506,8 +112466,6 @@ entities: pos: 34.5,-18.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24586 @@ -122516,8 +112474,6 @@ entities: pos: 31.5,-13.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24587 @@ -122526,8 +112482,6 @@ entities: pos: 31.5,-24.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24610 @@ -122535,8 +112489,6 @@ entities: - pos: 20.5,-20.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24644 @@ -122544,8 +112496,6 @@ entities: - pos: 41.5,-20.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24646 @@ -122553,8 +112503,6 @@ entities: - pos: 38.5,-18.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24673 @@ -122563,8 +112511,6 @@ entities: pos: 41.5,-27.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24674 @@ -122573,8 +112519,6 @@ entities: pos: 45.5,-26.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24709 @@ -122583,8 +112527,6 @@ entities: pos: 26.5,-35.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24711 @@ -122593,8 +112535,6 @@ entities: pos: 19.5,-33.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24712 @@ -122603,8 +112543,6 @@ entities: pos: 27.5,-28.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24747 @@ -122613,8 +112551,6 @@ entities: pos: 45.5,-34.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24752 @@ -122623,8 +112559,6 @@ entities: pos: 40.5,-35.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24777 @@ -122633,8 +112567,6 @@ entities: pos: 40.5,-39.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24778 @@ -122643,8 +112575,6 @@ entities: pos: 35.5,-39.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24814 @@ -122653,8 +112583,6 @@ entities: pos: 36.5,-48.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24815 @@ -122663,8 +112591,6 @@ entities: pos: 36.5,-45.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24816 @@ -122673,8 +112599,6 @@ entities: pos: 44.5,-45.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24830 @@ -122683,8 +112607,6 @@ entities: pos: 40.5,-53.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24850 @@ -122693,8 +112615,6 @@ entities: pos: 46.5,-59.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24851 @@ -122703,8 +112623,6 @@ entities: pos: 43.5,-59.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24852 @@ -122713,8 +112631,6 @@ entities: pos: 36.5,-55.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24853 @@ -122723,8 +112639,6 @@ entities: pos: 40.5,-56.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24878 @@ -122732,8 +112646,6 @@ entities: - pos: 43.5,-53.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24916 @@ -122741,8 +112653,6 @@ entities: - pos: 47.5,-0.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24917 @@ -122751,8 +112661,6 @@ entities: pos: 45.5,-5.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24918 @@ -122761,8 +112669,6 @@ entities: pos: 46.5,-13.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24919 @@ -122771,8 +112677,6 @@ entities: pos: 65.5,-13.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24930 @@ -122781,8 +112685,6 @@ entities: pos: 73.5,-10.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24967 @@ -122791,8 +112693,6 @@ entities: pos: 66.5,1.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25012 @@ -122801,16 +112701,12 @@ entities: pos: 72.5,-39.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 25035 components: - rot: -1.5707963267948966 rad pos: 67.5,-18.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25071 @@ -122819,8 +112715,6 @@ entities: pos: 77.5,-23.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25072 @@ -122828,8 +112722,6 @@ entities: - pos: 70.5,-21.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25116 @@ -122837,8 +112729,6 @@ entities: - pos: 61.5,-22.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25134 @@ -122847,8 +112737,6 @@ entities: pos: 53.5,-31.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25135 @@ -122857,8 +112745,6 @@ entities: pos: 57.5,-31.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25136 @@ -122867,8 +112753,6 @@ entities: pos: 54.5,-27.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25143 @@ -122877,8 +112761,6 @@ entities: pos: 61.5,-30.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25166 @@ -122887,8 +112769,6 @@ entities: pos: 62.5,-34.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25167 @@ -122897,8 +112777,6 @@ entities: pos: 69.5,-34.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25169 @@ -122907,8 +112785,6 @@ entities: pos: 67.5,-32.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25171 @@ -122917,8 +112793,6 @@ entities: pos: 67.5,-23.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25207 @@ -122927,8 +112801,6 @@ entities: pos: 69.5,-50.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25223 @@ -122937,8 +112809,6 @@ entities: pos: 67.5,-41.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25241 @@ -122946,8 +112816,6 @@ entities: - pos: 58.5,-39.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25261 @@ -122956,8 +112824,6 @@ entities: pos: 74.5,-45.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25290 @@ -122966,8 +112832,6 @@ entities: pos: -71.5,10.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25305 @@ -122976,8 +112840,6 @@ entities: pos: -71.5,-5.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25306 @@ -122986,8 +112848,6 @@ entities: pos: -63.5,-2.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25313 @@ -122996,8 +112856,6 @@ entities: pos: -60.5,-9.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25317 @@ -123005,8 +112863,6 @@ entities: - pos: -58.5,-4.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25318 @@ -123015,8 +112871,6 @@ entities: pos: -58.5,0.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25324 @@ -123024,8 +112878,6 @@ entities: - pos: -57.5,4.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25337 @@ -123034,8 +112886,6 @@ entities: pos: -50.5,-7.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25364 @@ -123044,8 +112894,6 @@ entities: pos: -40.5,-5.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25365 @@ -123054,8 +112902,6 @@ entities: pos: -45.5,-11.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25377 @@ -123063,8 +112909,6 @@ entities: - pos: -45.5,3.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25392 @@ -123073,8 +112917,6 @@ entities: pos: -26.5,-6.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25393 @@ -123083,8 +112925,6 @@ entities: pos: -32.5,-5.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25397 @@ -123093,8 +112933,6 @@ entities: pos: -43.5,-1.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25406 @@ -123102,8 +112940,6 @@ entities: - pos: -31.5,3.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25408 @@ -123112,8 +112948,6 @@ entities: pos: -23.5,-1.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25419 @@ -123122,8 +112956,6 @@ entities: pos: -22.5,-6.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25422 @@ -123132,8 +112964,6 @@ entities: pos: -0.5,14.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25423 @@ -123142,8 +112972,6 @@ entities: pos: -0.5,4.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25479 @@ -123152,8 +112980,6 @@ entities: pos: -5.5,15.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25480 @@ -123162,8 +112988,6 @@ entities: pos: -11.5,15.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25481 @@ -123172,8 +112996,6 @@ entities: pos: -18.5,20.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25482 @@ -123181,8 +113003,6 @@ entities: - pos: -17.5,23.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25487 @@ -123191,8 +113011,6 @@ entities: pos: -7.5,20.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25516 @@ -123201,8 +113019,6 @@ entities: pos: 13.5,21.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25518 @@ -123211,8 +113027,6 @@ entities: pos: 8.5,20.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25534 @@ -123221,8 +113035,6 @@ entities: pos: 5.5,24.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25559 @@ -123231,8 +113043,6 @@ entities: pos: 9.5,23.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25560 @@ -123241,8 +113051,6 @@ entities: pos: 10.5,28.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25624 @@ -123251,8 +113059,6 @@ entities: pos: -14.5,23.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25625 @@ -123261,8 +113067,6 @@ entities: pos: -8.5,24.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25626 @@ -123271,8 +113075,6 @@ entities: pos: -4.5,24.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25627 @@ -123281,8 +113083,6 @@ entities: pos: -0.5,24.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25628 @@ -123291,8 +113091,6 @@ entities: pos: 2.5,24.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25752 @@ -123301,8 +113099,6 @@ entities: pos: -13.5,31.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25754 @@ -123311,8 +113107,6 @@ entities: pos: -7.5,31.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25756 @@ -123321,8 +113115,6 @@ entities: pos: -11.5,26.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25758 @@ -123331,8 +113123,6 @@ entities: pos: -5.5,29.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25759 @@ -123341,8 +113131,6 @@ entities: pos: 3.5,31.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25760 @@ -123350,8 +113138,6 @@ entities: - pos: 2.5,36.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25800 @@ -123360,8 +113146,6 @@ entities: pos: 14.5,31.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25801 @@ -123369,8 +113153,6 @@ entities: - pos: 7.5,37.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25802 @@ -123379,8 +113161,6 @@ entities: pos: 13.5,38.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25823 @@ -123389,8 +113169,6 @@ entities: pos: 23.5,33.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 26695 @@ -123402,8 +113180,6 @@ entities: - ShutdownSubscribers: - 26703 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 26696 @@ -123411,8 +113187,6 @@ entities: - pos: -6.5,-72.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 26697 @@ -123424,8 +113198,6 @@ entities: - ShutdownSubscribers: - 26704 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - proto: GasVolumePump @@ -133973,8 +123745,6 @@ entities: - pos: 76.5,-51.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - proto: MachineAnomalyVessel entities: - uid: 21398 @@ -137724,24 +127494,18 @@ entities: pos: 57.5,-35.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 495 components: - rot: -1.5707963267948966 rad pos: 7.5,-46.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 496 components: - rot: 1.5707963267948966 rad pos: 2.5,-51.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 677 components: - pos: -76.5,-3.5 @@ -137761,15 +127525,11 @@ entities: - pos: -9.5,-68.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 1899 components: - pos: 42.5,-22.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 2259 components: - rot: 1.5707963267948966 rad @@ -137784,8 +127544,6 @@ entities: pos: 46.5,-28.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 5244 components: - rot: -1.5707963267948966 rad @@ -137978,24 +127736,18 @@ entities: pos: 3.5,-12.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 7911 components: - rot: 1.5707963267948966 rad pos: -4.5,-12.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 7914 components: - rot: 1.5707963267948966 rad pos: 11.5,4.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 8008 components: - rot: -1.5707963267948966 rad @@ -138010,16 +127762,12 @@ entities: pos: 33.5,-4.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 8197 components: - rot: 3.141592653589793 rad pos: 34.5,-9.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 8475 components: - pos: 15.5,28.5 @@ -138226,8 +127974,6 @@ entities: pos: 40.5,-8.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 10465 components: - pos: 38.5,-4.5 @@ -139015,15 +128761,11 @@ entities: pos: -35.5,-28.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 14776 components: - pos: -31.5,-24.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 14948 components: - rot: 1.5707963267948966 rad @@ -139076,30 +128818,22 @@ entities: pos: -30.5,-31.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 15430 components: - pos: -37.5,-18.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 15433 components: - rot: -1.5707963267948966 rad pos: -35.5,-23.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 15450 components: - pos: -30.5,-18.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 16343 components: - rot: -1.5707963267948966 rad @@ -139189,70 +128923,52 @@ entities: pos: 17.5,-48.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 17049 components: - rot: 1.5707963267948966 rad pos: 11.5,-50.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 17073 components: - rot: 3.141592653589793 rad pos: -9.5,-76.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 17077 components: - pos: -17.5,-72.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 17079 components: - rot: -1.5707963267948966 rad pos: 24.5,-49.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 17082 components: - pos: 17.5,-54.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 17090 components: - rot: -1.5707963267948966 rad pos: 1.5,-75.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 17315 components: - rot: -1.5707963267948966 rad pos: 24.5,-57.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 17441 components: - rot: 1.5707963267948966 rad pos: -7.5,-72.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 17522 components: - rot: -1.5707963267948966 rad @@ -139296,63 +129012,47 @@ entities: pos: 7.5,-75.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 17566 components: - rot: 3.141592653589793 rad pos: 19.5,-62.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 17572 components: - rot: -1.5707963267948966 rad pos: 24.5,-41.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 17582 components: - rot: 1.5707963267948966 rad pos: -2.5,-75.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 17703 components: - rot: 1.5707963267948966 rad pos: 9.5,-46.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 18314 components: - pos: 42.5,-16.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 18323 components: - rot: -1.5707963267948966 rad pos: 46.5,-24.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 18371 components: - rot: -1.5707963267948966 rad pos: 41.5,-48.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 18372 components: - rot: 1.5707963267948966 rad @@ -139421,16 +129121,12 @@ entities: pos: 41.5,-43.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 18381 components: - rot: 3.141592653589793 rad pos: 36.5,-49.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 18384 components: - pos: 40.5,-31.5 @@ -139490,8 +129186,6 @@ entities: pos: 27.5,-30.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 18397 components: - rot: -1.5707963267948966 rad @@ -139591,8 +129285,6 @@ entities: - pos: -1.5,-61.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 18672 components: - pos: 50.5,-26.5 @@ -139606,46 +129298,34 @@ entities: pos: -13.5,-57.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 19039 components: - rot: 3.141592653589793 rad pos: 0.5,-57.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 19040 components: - rot: 1.5707963267948966 rad pos: -3.5,-53.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 19041 components: - pos: -13.5,-49.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 19042 components: - pos: 9.5,-51.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 19058 components: - rot: 3.141592653589793 rad pos: 11.5,-62.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 19115 components: - pos: 34.5,-34.5 @@ -139658,8 +129338,6 @@ entities: - pos: 1.5,-65.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 19325 components: - rot: -1.5707963267948966 rad @@ -139681,8 +129359,6 @@ entities: - pos: 2.5,-59.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 20060 components: - rot: -1.5707963267948966 rad @@ -139697,8 +129373,6 @@ entities: pos: 11.5,-76.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 20694 components: - rot: -1.5707963267948966 rad @@ -140020,8 +129694,6 @@ entities: pos: 9.5,-34.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 22423 components: - rot: 3.141592653589793 rad @@ -140068,30 +129740,22 @@ entities: pos: 9.5,-61.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 23173 components: - pos: 25.5,-71.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 23234 components: - rot: 1.5707963267948966 rad pos: -16.5,-53.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 24848 components: - pos: 21.5,-71.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 25864 components: - pos: 30.5,-27.5 @@ -140171,39 +129835,29 @@ entities: pos: 6.5,-27.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 26079 components: - rot: -1.5707963267948966 rad pos: 12.5,-27.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 26103 components: - rot: 3.141592653589793 rad pos: 12.5,-81.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 26105 components: - pos: 15.5,-70.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 26106 components: - rot: -1.5707963267948966 rad pos: 19.5,-76.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 26368 components: - pos: -19.5,45.5 @@ -140290,15 +129944,11 @@ entities: pos: 53.5,0.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 26662 components: - pos: 36.5,-45.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 26831 components: - pos: -8.5,4.5 @@ -140351,8 +130001,6 @@ entities: pos: 9.5,-67.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 27163 components: - rot: 1.5707963267948966 rad @@ -140439,8 +130087,6 @@ entities: pos: -41.5,-21.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - proto: PoweredlightExterior entities: - uid: 18 @@ -140549,8 +130195,6 @@ entities: - pos: 8.5,-80.5 parent: 8364 type: Transform - - enabled: False - type: AmbientSound - uid: 21981 components: - pos: -28.5,1.5 @@ -152407,41 +142051,57 @@ entities: type: Transform - uid: 9461 components: + - name: Solars South East SMES + type: MetaData - pos: 80.5,-65.5 parent: 8364 type: Transform - uid: 11268 components: + - name: Solars North East SMES + type: MetaData - pos: 46.5,20.5 parent: 8364 type: Transform - uid: 13124 components: + - name: Solars North West SMES + type: MetaData - pos: -50.5,23.5 parent: 8364 type: Transform - uid: 15809 components: + - name: Telecomms SMES + type: MetaData - pos: -6.5,-49.5 parent: 8364 type: Transform - uid: 16089 components: + - name: Solars South West SMES + type: MetaData - pos: -38.5,-62.5 parent: 8364 type: Transform - uid: 19013 components: + - name: SMES Bank 3 + type: MetaData - pos: -24.5,-66.5 parent: 8364 type: Transform - uid: 19014 components: + - name: SMES Bank 2 + type: MetaData - pos: -24.5,-67.5 parent: 8364 type: Transform - uid: 19029 components: + - name: SMES Bank 1 + type: MetaData - pos: -24.5,-68.5 parent: 8364 type: Transform @@ -155328,6 +144988,8 @@ entities: type: PowerNetworkBattery - uid: 2894 components: + - name: Science Substation + type: MetaData - pos: 85.5,-44.5 parent: 8364 type: Transform @@ -155344,6 +145006,8 @@ entities: type: Transform - uid: 6246 components: + - name: Gravity Substation + type: MetaData - pos: 1.5,-24.5 parent: 8364 type: Transform @@ -155392,6 +145056,8 @@ entities: type: Transform - uid: 16500 components: + - name: Telecomms Substation + type: MetaData - pos: -7.5,-49.5 parent: 8364 type: Transform diff --git a/Resources/Maps/cluster.yml b/Resources/Maps/cluster.yml index c58e130f8c5..0e25239c362 100644 --- a/Resources/Maps/cluster.yml +++ b/Resources/Maps/cluster.yml @@ -1,83374 +1,80694 @@ -meta: - format: 6 - postmapinit: false -tilemap: - 0: Space - 2: FloorArcadeBlue2 - 11: FloorBar - 14: FloorBlueCircuit - 15: FloorBoxing - 17: FloorCarpetClown - 22: FloorDark - 23: FloorDarkDiagonal - 26: FloorDarkMini - 27: FloorDarkMono - 29: FloorDarkPavement - 34: FloorEighties - 35: FloorElevatorShaft - 37: FloorFreezer - 38: FloorGlass - 41: FloorGrassDark - 48: FloorHydro - 50: FloorLaundry - 51: FloorLino - 54: FloorMime - 59: FloorRGlass - 60: FloorReinforced - 63: FloorShowroom - 71: FloorSteel - 74: FloorSteelDiagonal - 77: FloorSteelHerringbone - 79: FloorSteelMono - 83: FloorTechMaint - 87: FloorWhite - 88: FloorWhiteDiagonal - 90: FloorWhiteHerringbone - 91: FloorWhiteMini - 92: FloorWhiteMono - 97: FloorWood - 99: Lattice - 100: Plating -entities: -- proto: "" - entities: - - uid: 1 - components: - - type: MetaData - - pos: -0.484375,-0.5 - parent: 12281 - type: Transform - - chunks: - 0,0: - ind: 0,0 - tiles: VwAAAAAAVwAAAAABVwAAAAABVwAAAAABVwAAAAAAVwAAAAADZAAAAAAARwAAAAACRwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAACVwAAAAACWAAAAAABWAAAAAAAWAAAAAADWAAAAAACVwAAAAACZAAAAAAARwAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAACVwAAAAADWAAAAAADWAAAAAAAWAAAAAACWAAAAAADVwAAAAADVwAAAAADRwAAAAADOwAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAADRwAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAACVwAAAAACVwAAAAABZAAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAADRwAAAAADRwAAAAAARwAAAAABRwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABVwAAAAACZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAACYQAAAAACYQAAAAABYQAAAAAAYQAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAAAZAAAAAAARwAAAAADRwAAAAACZAAAAAAARwAAAAACRwAAAAACYQAAAAAAYQAAAAADYQAAAAADYQAAAAACYQAAAAACYQAAAAADZAAAAAAARwAAAAADOwAAAAAARwAAAAAAZAAAAAAARwAAAAABRwAAAAADZAAAAAAARwAAAAADRwAAAAADYQAAAAAAYQAAAAABYQAAAAABYQAAAAABYQAAAAABYQAAAAACZAAAAAAARwAAAAACRwAAAAADRwAAAAACZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAARwAAAAABCwAAAAACCwAAAAADCwAAAAAACwAAAAACCwAAAAACCwAAAAAACwAAAAACRwAAAAAARwAAAAACRwAAAAABZAAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAAARwAAAAAAYQAAAAABYQAAAAABYQAAAAAACwAAAAAACwAAAAABCwAAAAADCwAAAAABRwAAAAADOwAAAAAARwAAAAADZAAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAACYQAAAAAAYQAAAAABYQAAAAACCwAAAAABYQAAAAACYQAAAAACZAAAAAAARwAAAAACRwAAAAADRwAAAAADZAAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAADRwAAAAABYQAAAAAAYQAAAAADYQAAAAAACwAAAAAAYQAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAABZAAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAFgAAAAACCwAAAAACCwAAAAAACwAAAAACCwAAAAABZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAABZAAAAAAARwAAAAADRwAAAAABZAAAAAAAFgAAAAACFgAAAAABCwAAAAABCwAAAAACCwAAAAACZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAADOwAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAAAFgAAAAACFgAAAAADFgAAAAACRwAAAAADRwAAAAADRwAAAAABRwAAAAADRwAAAAACRwAAAAABRwAAAAACRwAAAAABRwAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAACFgAAAAABFgAAAAACFgAAAAAARwAAAAAAOwAAAAAARwAAAAACRwAAAAADRwAAAAABOwAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAACZAAAAAAARwAAAAAARwAAAAADZAAAAAAAFgAAAAAAFgAAAAAC - version: 6 - -1,0: - ind: -1,0 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAACRwAAAAADRwAAAAADRwAAAAACRwAAAAADRwAAAAABRwAAAAACZAAAAAAAJQAAAAAAJQAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAABRwAAAAABRwAAAAABRwAAAAABRwAAAAABRwAAAAABOwAAAAAARwAAAAADJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAABZAAAAAAAJQAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAWAAAAAABWAAAAAADZAAAAAAAVwAAAAAAVwAAAAADXAAAAAADWAAAAAACWAAAAAADZAAAAAAARwAAAAAARwAAAAAARwAAAAACZAAAAAAAYQAAAAACYQAAAAADYQAAAAACWAAAAAACWAAAAAACZAAAAAAAVwAAAAACVwAAAAACXAAAAAADWAAAAAABWAAAAAACZAAAAAAARwAAAAAAOwAAAAAARwAAAAABZAAAAAAAYQAAAAACYQAAAAABYQAAAAACXAAAAAADXAAAAAADZAAAAAAAVwAAAAACVwAAAAABZAAAAAAAXAAAAAABXAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAABZAAAAAAAYQAAAAADYQAAAAADYQAAAAACVwAAAAADVwAAAAAAVwAAAAADVwAAAAABVwAAAAACZAAAAAAAVwAAAAABVwAAAAABVwAAAAACRwAAAAACRwAAAAABRwAAAAADCwAAAAADCwAAAAADCwAAAAABCwAAAAABVwAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAABXAAAAAABVwAAAAACVwAAAAAAVwAAAAAARwAAAAACOwAAAAAARwAAAAACCwAAAAABCwAAAAABCwAAAAADCwAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAADVwAAAAAAXAAAAAACVwAAAAABVwAAAAABVwAAAAAARwAAAAABRwAAAAAARwAAAAADZAAAAAAAYQAAAAACYQAAAAACCwAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAABVwAAAAACZAAAAAAAVwAAAAAAVwAAAAAAVwAAAAABRwAAAAADRwAAAAAARwAAAAABZAAAAAAAZAAAAAAAYQAAAAACCwAAAAAAVwAAAAABZAAAAAAAZAAAAAAAXAAAAAACZAAAAAAAZAAAAAAAXAAAAAAAXAAAAAABZAAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAACwAAAAADVwAAAAACZAAAAAAAWwAAAAADWwAAAAABWwAAAAABWwAAAAABWwAAAAACWwAAAAADZAAAAAAARwAAAAABOwAAAAAARwAAAAADRwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAZAAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAADWwAAAAAAWwAAAAACZAAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAAAVwAAAAAAXAAAAAACWwAAAAABWwAAAAABWwAAAAAAWwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAADOwAAAAAARwAAAAACRwAAAAAB - version: 6 - -1,-1: - ind: -1,-1 - tiles: TwAAAAACRwAAAAABZAAAAAAARwAAAAABRwAAAAAAFgAAAAADFgAAAAADFwAAAAABFwAAAAAAFwAAAAABFwAAAAACFwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATQAAAAADTQAAAAADZAAAAAAARwAAAAAARwAAAAADFgAAAAACFgAAAAACFwAAAAADFwAAAAABFwAAAAAAFwAAAAAAFwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATQAAAAAATQAAAAACZAAAAAAARwAAAAABRwAAAAACFgAAAAAAFgAAAAADDgAAAAAAGgAAAAABDgAAAAAAFwAAAAACFwAAAAADZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAATQAAAAADTQAAAAADZAAAAAAARwAAAAABRwAAAAABFgAAAAACFgAAAAABDgAAAAAAGgAAAAADDgAAAAAAFwAAAAADFwAAAAADZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAATwAAAAABRwAAAAAAZAAAAAAARwAAAAACRwAAAAADFgAAAAABFgAAAAABDgAAAAAAGgAAAAABDgAAAAAAFwAAAAABFwAAAAABZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAATQAAAAAATQAAAAABZAAAAAAARwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAGwAAAAACGwAAAAAAGwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATQAAAAAATQAAAAADZAAAAAAARwAAAAADRwAAAAACZAAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAABRwAAAAABRwAAAAACRwAAAAABRwAAAAADRwAAAAABRwAAAAAATQAAAAAATQAAAAADZAAAAAAARwAAAAACRwAAAAABZAAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAADOwAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAAAOwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADZAAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAADRwAAAAACRwAAAAACRwAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAACRwAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAADZAAAAAAAHQAAAAACHQAAAAADMAAAAAAARwAAAAADRwAAAAADZAAAAAAAGwAAAAABGwAAAAAAZAAAAAAAGwAAAAACGwAAAAADZAAAAAAARwAAAAABRwAAAAAARwAAAAADZAAAAAAAHQAAAAABHQAAAAACMAAAAAAARwAAAAABRwAAAAACZAAAAAAAFgAAAAADFgAAAAABFgAAAAABFgAAAAACFgAAAAABZAAAAAAARwAAAAACOwAAAAAARwAAAAAAZAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAARwAAAAAARwAAAAABZAAAAAAAFgAAAAACJgAAAAAAJgAAAAAAJgAAAAAAFgAAAAACZAAAAAAARwAAAAADRwAAAAAARwAAAAACGwAAAAABHQAAAAACHQAAAAADHQAAAAADRwAAAAABRwAAAAADZAAAAAAAFgAAAAACFgAAAAABFgAAAAAAFgAAAAABFgAAAAACZAAAAAAARwAAAAADRwAAAAAARwAAAAAAZAAAAAAAHQAAAAACHQAAAAADHQAAAAABRwAAAAABRwAAAAAAZAAAAAAAFgAAAAACFgAAAAACDgAAAAAADgAAAAAADgAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAADZAAAAAAAHQAAAAADHQAAAAAAZAAAAAAA - version: 6 - 0,-1: - ind: 0,-1 - tiles: RwAAAAACRwAAAAACRwAAAAABZAAAAAAAYQAAAAADYQAAAAADYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAABZAAAAAAAYQAAAAACYQAAAAABYQAAAAADZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAABZAAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAADRwAAAAADRwAAAAADRwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAABRwAAAAABRwAAAAABZAAAAAAAZAAAAAAATwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAAAOwAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAABOwAAAAAARwAAAAABRwAAAAACRwAAAAADRwAAAAABRwAAAAADZAAAAAAARwAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAAATwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAMAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAAARwAAAAABTwAAAAAARwAAAAABHQAAAAACHQAAAAAAHQAAAAADMAAAAAAAHQAAAAAAHQAAAAADZAAAAAAARwAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAADRwAAAAADRwAAAAADZAAAAAAATwAAAAABHQAAAAABHQAAAAADHQAAAAABMAAAAAAAHQAAAAABHQAAAAABZAAAAAAARwAAAAABRwAAAAADRwAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAABZAAAAAAARwAAAAABMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAARwAAAAABOwAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAADgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAMAAAAAAAHQAAAAAAHQAAAAADZAAAAAAARwAAAAABRwAAAAACRwAAAAADZAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAZAAAAAAAZAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAACMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAFgAAAAADFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAMAAAAAAAMAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAAAZAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAFgAAAAABFgAAAAAC - version: 6 - -1,1: - ind: -1,1 - tiles: VwAAAAAAZAAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAADXAAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACZAAAAAAARwAAAAAARwAAAAADRwAAAAABVwAAAAAAVwAAAAACVwAAAAAAVwAAAAACWAAAAAADWAAAAAABZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACVwAAAAADVwAAAAAAVwAAAAADWAAAAAAAWAAAAAABZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYQAAAAACYQAAAAAAZAAAAAAAYQAAAAADYQAAAAABYQAAAAADVwAAAAABVwAAAAABVwAAAAADVwAAAAABWAAAAAACWAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAAAYQAAAAADYQAAAAACYQAAAAACYQAAAAADVwAAAAABVwAAAAACVwAAAAADVwAAAAABWAAAAAAAWAAAAAACZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYQAAAAACYQAAAAABZAAAAAAAYQAAAAACYQAAAAAAYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAACFgAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAADgAAAAAAFgAAAAACFgAAAAADPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAABRwAAAAACRwAAAAABZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAABRwAAAAABRwAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAACRwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAADRwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAACRwAAAAACRwAAAAADRwAAAAACRwAAAAABRwAAAAACRwAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAACZAAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAADRwAAAAABRwAAAAABZAAAAAAARwAAAAAARwAAAAADZAAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAABRwAAAAABZAAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAAD - version: 6 - 0,1: - ind: 0,1 - tiles: RwAAAAACRwAAAAADRwAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAARwAAAAABRwAAAAACZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAABZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAFgAAAAADFgAAAAAAYQAAAAADYQAAAAAAYQAAAAAARwAAAAABRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAACZAAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAADZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAAAFgAAAAABFgAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAABRwAAAAACZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAFgAAAAABFgAAAAACFgAAAAACFgAAAAADZAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAACRwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAAAFgAAAAACZAAAAAAAFgAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAFgAAAAADFgAAAAABFgAAAAACZAAAAAAAZAAAAAAARwAAAAACRwAAAAADZAAAAAAAYQAAAAABYQAAAAADYQAAAAABZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAAAFgAAAAABZAAAAAAAFgAAAAADRwAAAAAARwAAAAABFgAAAAADYQAAAAABYQAAAAACYQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAAZAAAAAAAYQAAAAABYQAAAAAAYQAAAAABZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAARwAAAAABRwAAAAABZAAAAAAAYQAAAAADYQAAAAAAYQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAARwAAAAABRwAAAAADZAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAA - version: 6 - -2,0: - ind: -2,0 - tiles: RwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAACRwAAAAADRwAAAAADRwAAAAACRwAAAAACRwAAAAACRwAAAAABRwAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAABRwAAAAACRwAAAAABRwAAAAABRwAAAAACRwAAAAACRwAAAAAARwAAAAADRwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAABRwAAAAADRwAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAACZAAAAAAAZAAAAAAARwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAWgAAAAAAWgAAAAADWgAAAAABWgAAAAADZAAAAAAAWAAAAAADWAAAAAACZAAAAAAAWAAAAAAAWAAAAAADZAAAAAAAYQAAAAABZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAWgAAAAACWgAAAAABWgAAAAAAWgAAAAAAZAAAAAAAWAAAAAABWAAAAAACZAAAAAAAWAAAAAADWAAAAAADZAAAAAAAYQAAAAABZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAWgAAAAABWgAAAAADWgAAAAAAWgAAAAAAZAAAAAAAXAAAAAADXAAAAAAAZAAAAAAAXAAAAAABXAAAAAABZAAAAAAAYQAAAAADZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXAAAAAADZAAAAAAAZAAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAADVwAAAAACYQAAAAABZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAVwAAAAADVwAAAAACVwAAAAADVwAAAAACVwAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAADVwAAAAADVwAAAAABYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACVwAAAAABVwAAAAADVwAAAAADVwAAAAACVwAAAAADVwAAAAADVwAAAAAAVwAAAAADVwAAAAADVwAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAABVwAAAAABVwAAAAABVwAAAAADVwAAAAAAVwAAAAABVwAAAAACZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAMwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFwAAAAABFwAAAAACFwAAAAACFwAAAAACFwAAAAADZAAAAAAAFgAAAAACFgAAAAABFgAAAAABZAAAAAAAVwAAAAADMwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFwAAAAABFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAADZAAAAAAAFgAAAAADFgAAAAACFgAAAAAAZAAAAAAAVwAAAAACMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFwAAAAAAFwAAAAADFwAAAAAAFwAAAAADFwAAAAAAZAAAAAAAFgAAAAADFgAAAAADFgAAAAACGwAAAAAAVwAAAAAC - version: 6 - 1,0: - ind: 1,0 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAADRwAAAAABZAAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAADRwAAAAADRwAAAAABRwAAAAADRwAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAACRwAAAAADRwAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADZAAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAACZAAAAAAAYQAAAAABYQAAAAABYQAAAAAAYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABZAAAAAAARwAAAAAARwAAAAAARwAAAAABRwAAAAADZAAAAAAAYQAAAAADYQAAAAACYQAAAAAAYQAAAAABZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAACZAAAAAAAZAAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAACRwAAAAABRwAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAADRwAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAADRwAAAAAARwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAFgAAAAADZAAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAACRwAAAAADRwAAAAACZAAAAAAAFgAAAAADFgAAAAADFgAAAAABFgAAAAACFgAAAAACZAAAAAAARwAAAAABFgAAAAADZAAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAABFgAAAAAAFgAAAAAAFgAAAAACRwAAAAADFgAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAADRwAAAAABZAAAAAAAFgAAAAAAFgAAAAAAFgAAAAABFgAAAAABFgAAAAACZAAAAAAARwAAAAAAFgAAAAADZAAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAABRwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAC - version: 6 - 0,-2: - ind: 0,-2 - tiles: RwAAAAADRwAAAAACRwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAACZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAACZAAAAAAARwAAAAAARwAAAAACRwAAAAABZAAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAAARwAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAACTwAAAAADRwAAAAADRwAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAADRwAAAAAARwAAAAACRwAAAAABZAAAAAAARwAAAAACRwAAAAACRwAAAAADZAAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAABZAAAAAAAZAAAAAAATwAAAAADZAAAAAAAZAAAAAAAZAAAAAAATwAAAAACTwAAAAACZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAACRwAAAAADRwAAAAACRwAAAAADTwAAAAADRwAAAAAARwAAAAABRwAAAAABRwAAAAABZAAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAABRwAAAAADRwAAAAAARwAAAAACRwAAAAABRwAAAAACZAAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAAATwAAAAABRwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAADTwAAAAADRwAAAAAARwAAAAADRwAAAAACRwAAAAAATwAAAAADRwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAADRwAAAAAATwAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAADZAAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAACRwAAAAABRwAAAAABRwAAAAABRwAAAAABRwAAAAABRwAAAAABZAAAAAAARwAAAAABRwAAAAABRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAARwAAAAABRwAAAAABRwAAAAAAZAAAAAAAYQAAAAAAYQAAAAADYQAAAAABYQAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAARwAAAAACRwAAAAAARwAAAAABZAAAAAAAYQAAAAAAYQAAAAABYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAA - version: 6 - -2,1: - ind: -2,1 - tiles: MwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAFwAAAAAAFwAAAAACFwAAAAABFwAAAAADFwAAAAAAZAAAAAAAFgAAAAAAFgAAAAABFgAAAAABZAAAAAAAVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAVwAAAAADVwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAVwAAAAADVwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAVwAAAAAAKQAAAAADVwAAAAACVwAAAAAAKQAAAAABZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAVwAAAAACVwAAAAABUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAVwAAAAACZAAAAAAAKQAAAAACZAAAAAAAVwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAVwAAAAACVwAAAAACZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAKQAAAAABVwAAAAABVwAAAAACKQAAAAAAKQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAKQAAAAADVwAAAAABZAAAAAAAVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAKQAAAAADKQAAAAADZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA - version: 6 - 0,2: - ind: 0,2 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,2: - ind: -1,2 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAACAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAACZAAAAAAAFgAAAAACFgAAAAACFgAAAAABUwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAABFgAAAAABFgAAAAACFgAAAAAAFgAAAAADUwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAADZAAAAAAAFgAAAAADFgAAAAADFgAAAAABUwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAA - version: 6 - -2,2: - ind: -2,2 - tiles: YwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -2,-1: - ind: -2,-1 - tiles: YQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAACTwAAAAABZAAAAAAAFgAAAAADFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAATQAAAAAATwAAAAAAFgAAAAADFgAAAAABFgAAAAABZAAAAAAAFgAAAAADZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAATQAAAAACTQAAAAACFgAAAAAAZAAAAAAAFgAAAAABFgAAAAACFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAATQAAAAAATwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAADTwAAAAADUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAATQAAAAABTwAAAAABZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAATQAAAAAATQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAATQAAAAACTwAAAAADFwAAAAADFwAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAFwAAAAACFwAAAAADFwAAAAABRwAAAAABRwAAAAADRwAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAADRwAAAAABRwAAAAABRwAAAAADFwAAAAAAFwAAAAADZAAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAABRwAAAAADRwAAAAABRwAAAAADRwAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAAAFwAAAAACFwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAADFgAAAAADFgAAAAABFgAAAAAAZAAAAAAAYQAAAAADYQAAAAABYQAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAACUwAAAAAAUwAAAAAAZAAAAAAAFgAAAAABDgAAAAAAGwAAAAADDgAAAAAAFgAAAAABZAAAAAAAYQAAAAADYQAAAAAAYQAAAAABYQAAAAADRwAAAAABRwAAAAADRwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAABGwAAAAADDgAAAAAAGwAAAAACFgAAAAAAZAAAAAAAYQAAAAABYQAAAAABYQAAAAACZAAAAAAARwAAAAACRwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAADgAAAAAAGwAAAAACDgAAAAAAFgAAAAADZAAAAAAAYQAAAAACYQAAAAADYQAAAAABZAAAAAAARwAAAAABRwAAAAAARwAAAAAD - version: 6 - -1,-2: - ind: -1,-2 - tiles: AAAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAEQAAAAAAEQAAAAAAZAAAAAAAGwAAAAACFgAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAEQAAAAAAEQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAANgAAAAAANgAAAAAANgAAAAAAEQAAAAAAEQAAAAAAZAAAAAAAYQAAAAAAYQAAAAACYQAAAAADZAAAAAAAYQAAAAACYQAAAAABYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAANgAAAAAANgAAAAAANgAAAAAAEQAAAAAAEQAAAAAAZAAAAAAAYQAAAAABYQAAAAACYQAAAAACZAAAAAAAYQAAAAADYQAAAAABYQAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAABRwAAAAADRwAAAAADRwAAAAABRwAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAAAPwAAAAAAPwAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAACRwAAAAABRwAAAAADPwAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAABRwAAAAACRwAAAAABRwAAAAACRwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAASgAAAAABSgAAAAADZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAASgAAAAADSgAAAAACZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAASgAAAAADSgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAA - version: 6 - -2,-2: - ind: -2,-2 - tiles: YwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAASgAAAAACSgAAAAAASgAAAAACSgAAAAAASgAAAAABYQAAAAABYQAAAAABZAAAAAAAYQAAAAABZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAASgAAAAAASgAAAAADSgAAAAADSgAAAAACSgAAAAADZAAAAAAAYQAAAAADZAAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAASgAAAAADSgAAAAAASgAAAAABSgAAAAAASgAAAAAC - version: 6 - -3,-1: - ind: -3,-1 - tiles: AAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAASgAAAAADSgAAAAACSgAAAAACSgAAAAABZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACZAAAAAAAYQAAAAACAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAASgAAAAABSgAAAAABSgAAAAADSgAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYQAAAAAAYQAAAAADYQAAAAADYQAAAAAAYQAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYQAAAAADYQAAAAABYQAAAAADYQAAAAABYQAAAAAAYQAAAAACZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYQAAAAADYQAAAAACYQAAAAADYQAAAAACYQAAAAABYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYQAAAAAAYQAAAAADYQAAAAABYQAAAAACYQAAAAAAYQAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYQAAAAAAYQAAAAABYQAAAAACYQAAAAADYQAAAAADYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYQAAAAAAYQAAAAABYQAAAAAAYQAAAAABYQAAAAABYQAAAAADZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYQAAAAABYQAAAAABYQAAAAADYQAAAAAAYQAAAAACYQAAAAACZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYQAAAAACYQAAAAADYQAAAAACYQAAAAACYQAAAAABYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA - version: 6 - 1,1: - ind: 1,1 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAABFgAAAAAAZAAAAAAARwAAAAACZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAABFgAAAAABFgAAAAADRwAAAAADZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAABZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAFgAAAAADZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAACFgAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACZAAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAABZAAAAAAAZAAAAAAAFgAAAAACFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAADRwAAAAAARwAAAAAARwAAAAADRwAAAAADFgAAAAACZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAADFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAADRwAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAACRwAAAAABZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA - version: 6 - 2,0: - ind: 2,0 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAADRwAAAAADRwAAAAACRwAAAAACZAAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAADRwAAAAADRwAAAAACRwAAAAABRwAAAAABRwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAABZAAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAAARwAAAAABRwAAAAAARwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAACZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAADZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAADZAAAAAAARwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAABZAAAAAAARwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAAZAAAAAAAFgAAAAABFgAAAAABFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAACZAAAAAAARwAAAAACRwAAAAACFgAAAAADFgAAAAABFgAAAAAAFgAAAAADFgAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAADZAAAAAAARwAAAAAARwAAAAADZAAAAAAAZAAAAAAAFgAAAAADFgAAAAADFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAABZAAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAADFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAAAZAAAAAAARwAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAAAZAAAAAAARwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAACZAAAAAAA - version: 6 - 2,1: - ind: 2,1 - tiles: RwAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAABZAAAAAAARwAAAAAARwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAABZAAAAAAARwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAACZAAAAAAARwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAADZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAADZAAAAAAARwAAAAABRwAAAAAARwAAAAADZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAABZAAAAAAARwAAAAAARwAAAAACRwAAAAABZAAAAAAARwAAAAAARwAAAAACZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAADRwAAAAAARwAAAAADRwAAAAAAZAAAAAAARwAAAAAARwAAAAADTwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAABZAAAAAAARwAAAAACRwAAAAAARwAAAAADZAAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAARwAAAAADRwAAAAADZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAABRwAAAAAAZAAAAAAARwAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAADJgAAAAAAJgAAAAAARwAAAAADRwAAAAACRwAAAAACZAAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAACJgAAAAAAJgAAAAAARwAAAAAARwAAAAADRwAAAAADZAAAAAAARwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAACGwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYQAAAAADYQAAAAADYQAAAAADFgAAAAADFgAAAAADYQAAAAABYQAAAAADYQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAACYQAAAAACFgAAAAABFgAAAAACYQAAAAACYQAAAAAAYQAAAAACZAAAAAAA - version: 6 - 2,2: - ind: 2,2 - tiles: KQAAAAABZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADZAAAAAAAFgAAAAACFgAAAAABFgAAAAAAFgAAAAABFgAAAAABFgAAAAAAFgAAAAABFgAAAAAAZAAAAAAARwAAAAACKQAAAAACZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAADYQAAAAAAYQAAAAADYQAAAAADYQAAAAADFgAAAAABFgAAAAACZAAAAAAAZAAAAAAAKQAAAAAAKQAAAAADKQAAAAABRwAAAAAAKQAAAAABZAAAAAAAFgAAAAACFgAAAAADYQAAAAACYQAAAAAAYQAAAAAAYQAAAAAAFgAAAAAAFgAAAAADZAAAAAAAKQAAAAACKQAAAAADZAAAAAAAKQAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 1,2: - ind: 1,2 - tiles: UwAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAKQAAAAABZAAAAAAAKQAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAAZAAAAAAAKQAAAAAAZAAAAAAAKQAAAAACRwAAAAAAKQAAAAADZAAAAAAAKQAAAAACKQAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACKQAAAAACZAAAAAAARwAAAAABKQAAAAAAKQAAAAADKQAAAAABRwAAAAADZAAAAAAAKQAAAAADRwAAAAABZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAKQAAAAADRwAAAAACZAAAAAAAKQAAAAACZAAAAAAAZAAAAAAARwAAAAAAKQAAAAACZAAAAAAAKQAAAAAAZAAAAAAARwAAAAACRwAAAAADYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 1,-1: - ind: 1,-1 - tiles: RwAAAAACRwAAAAADRwAAAAAARwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAABJgAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAATwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADTwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAADRwAAAAAATwAAAAAARwAAAAABRwAAAAACTwAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAACRwAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAACTwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAADTwAAAAADZAAAAAAAZAAAAAAAZAAAAAAATwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAADRwAAAAACZAAAAAAARwAAAAACRwAAAAABRwAAAAABRwAAAAAARwAAAAADZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAADTwAAAAAARwAAAAAARwAAAAACZAAAAAAARwAAAAACRwAAAAACZAAAAAAAUwAAAAAARwAAAAADZAAAAAAARwAAAAADRwAAAAAAJgAAAAAAJgAAAAAARwAAAAABRwAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAADRwAAAAACZAAAAAAAZAAAAAAATwAAAAAAZAAAAAAARwAAAAABRwAAAAABJgAAAAAAJgAAAAAARwAAAAAARwAAAAACZAAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAACRwAAAAADZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAACRwAAAAACRwAAAAADRwAAAAABZAAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAACZAAAAAAAZAAAAAAADgAAAAAADgAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAACRwAAAAABRwAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAA - version: 6 - 2,-1: - ind: 2,-1 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAA - version: 6 - 1,-2: - ind: 1,-2 - tiles: AAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAADRwAAAAABRwAAAAACRwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAACRwAAAAACRwAAAAAARwAAAAABZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAACRwAAAAACRwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAADTwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAARwAAAAACZAAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAARwAAAAADTwAAAAADRwAAAAACRwAAAAAARwAAAAADRwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAARwAAAAADTwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAADZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAARwAAAAABZAAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAABRwAAAAACZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAAB - version: 6 - 2,-2: - ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAARwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAARwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAARwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAA - version: 6 - 0,-3: - ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACRwAAAAAARwAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABRwAAAAABRwAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,-3: - ind: -1,-3 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAAATwAAAAADTwAAAAACTwAAAAABZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAGwAAAAACFgAAAAACZAAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAABZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAACFgAAAAACFgAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAAB - version: 6 - 3,-1: - ind: 3,-1 - tiles: AAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 3,-2: - ind: 3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -3,0: - ind: -3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAACZAAAAAAARwAAAAACRwAAAAAARwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAADRwAAAAACRwAAAAABRwAAAAACRwAAAAAARwAAAAADRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAABRwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAADRwAAAAAARwAAAAAARwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAADYQAAAAADYQAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAADZAAAAAAAYQAAAAACYQAAAAAAYQAAAAADYQAAAAABYQAAAAAAYQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAACZAAAAAAAYQAAAAACYQAAAAACYQAAAAAAYQAAAAABYQAAAAABYQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAACZAAAAAAAYQAAAAABYQAAAAADYQAAAAABYQAAAAACYQAAAAADYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAADZAAAAAAAYQAAAAADYQAAAAACYQAAAAADYQAAAAACYQAAAAACYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAACZAAAAAAAYQAAAAAAYQAAAAACYQAAAAABYQAAAAADYQAAAAADYQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAADZAAAAAAAYQAAAAAAYQAAAAADYQAAAAADYQAAAAABYQAAAAACYQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAABZAAAAAAAYQAAAAABYQAAAAACYQAAAAABYQAAAAABYQAAAAADYQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAAAZAAAAAAAYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAAAZAAAAAAAYQAAAAACZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAABZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAGwAAAAABFgAAAAACMwAAAAAA - version: 6 - -3,1: - ind: -3,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAADFgAAAAABMwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAARwAAAAABZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAACZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAACZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAABGwAAAAADGwAAAAAAGwAAAAADZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAABGwAAAAACGwAAAAABGwAAAAACZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAARwAAAAABGwAAAAABGwAAAAABGwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAA - version: 6 - -3,-2: - ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAIwAAAAAAZAAAAAAAAgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAIwAAAAAAIwAAAAAAAgAAAAAAZAAAAAAAZAAAAAAAAgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAIwAAAAAAZAAAAAAAIwAAAAAAAgAAAAAAAgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAADwAAAAADDwAAAAABZAAAAAAADwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAADwAAAAAAZAAAAAAAZAAAAAAADwAAAAABZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAADwAAAAACDwAAAAACDwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAADwAAAAAADwAAAAAAZAAAAAAADwAAAAACZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAYQAAAAACZAAAAAAAZAAAAAAAYQAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAASgAAAAAASgAAAAABSgAAAAACSgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAADYQAAAAAAYQAAAAAD - version: 6 - -3,-3: - ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA - version: 6 - -2,-3: - ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA - version: 6 - -3,2: - ind: -3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 0,3: - ind: 0,3 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAABFgAAAAADFgAAAAABZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAABFgAAAAADFgAAAAACZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAABFgAAAAABFgAAAAABZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAAAFgAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAACFgAAAAABFgAAAAADZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAADFgAAAAABFgAAAAACZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAADFgAAAAABFgAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,3: - ind: -1,3 - tiles: AAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAACRwAAAAABRwAAAAABZAAAAAAAFgAAAAACAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAAAZAAAAAAAFgAAAAACAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAABZAAAAAAARwAAAAACZAAAAAAARwAAAAAARwAAAAACRwAAAAADZAAAAAAAFgAAAAACAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAADFgAAAAADFgAAAAABAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAACZAAAAAAARwAAAAABZAAAAAAARwAAAAABRwAAAAADRwAAAAACZAAAAAAAFgAAAAACAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAAAZAAAAAAAFgAAAAACAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAAARwAAAAAARwAAAAABZAAAAAAAFgAAAAABAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAADRwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAA - version: 6 - -2,-4: - ind: -2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYQAAAAACYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYQAAAAABYQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYQAAAAADYQAAAAADYQAAAAABYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYQAAAAADYQAAAAABYQAAAAACYQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYQAAAAADYQAAAAACYQAAAAACYQAAAAAA - version: 6 - -1,-4: - ind: -1,-4 - tiles: YwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAADYQAAAAACYQAAAAADYQAAAAAAUwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAADYQAAAAAAYQAAAAAAYQAAAAACUwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAYQAAAAADUwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAYQAAAAADYQAAAAACZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAABYQAAAAACYQAAAAADYQAAAAADYQAAAAABZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAABYQAAAAADYQAAAAABYQAAAAAAYQAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 3,2: - ind: 3,2 - tiles: AAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 3,1: - ind: 3,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 3,0: - ind: 3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,4: - ind: -1,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 0,4: - ind: 0,4 - tiles: ZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - type: MapGrid - - type: Broadphase - - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - type: Physics - - fixtures: {} - type: Fixtures - - type: OccluderTree - - type: Shuttle - - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: - version: 2 - nodes: - - node: - color: '#FFFFFFFF' - id: Basalt1 - decals: - 1358: 25.881918,34.192333 - 1361: 36.05116,32.59352 - 1386: -23.029747,20.063555 - - node: - color: '#FFFFFFFF' - id: Basalt5 - decals: - 1359: 31.894993,33.661083 - 1371: 25.780825,32.109146 - 1392: -27.154747,21.001055 - - node: - color: '#FFFFFFFF' - id: Basalt8 - decals: - 1360: 33.992474,34.93727 - 1391: -26.029747,22.04793 - - node: - color: '#A46106FF' - id: BotLeft - decals: - 1112: 22,-28 - 1113: 21,-28 - 1114: 20,-28 - 1115: 20,-27 - 1116: 21,-27 - 1117: 22,-27 - 1118: 15,-22 - 1119: 15,-23 - 1120: 15,-24 - 1121: 15,-25 - 1122: 14,-25 - 1123: 14,-24 - 1124: 14,-23 - 1125: 14,-22 - 1126: 18,-28 - 1127: 18,-27 - 1128: 17,-27 - 1129: 17,-28 - 1130: 16,-27 - 1131: 16,-28 - - node: - color: '#FFFFFFFF' - id: BotLeft - decals: - 1449: 6,-22 - 1450: 6,-21 - 1451: 6,-20 - 1452: 5,-20 - 1453: 4,-20 - 1454: -3,17 - 1455: -2,17 - 1456: -1,17 - 1457: 0,17 - - node: - color: '#EFB341FF' - id: BotRight - decals: - 1035: 26,-7 - 1036: 26,-6 - 1037: 26,-5 - 1038: 26,-4 - 1039: 27,-4 - 1040: 27,-5 - 1041: 27,-6 - 1042: 27,-7 - 1043: 28,-7 - 1044: 28,-6 - 1045: 28,-5 - 1046: 28,-4 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkBox - decals: - 958: -17,-9 - 973: -17,-13 - 974: -17,-11 - 975: -17,-15 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNe - decals: - 115: -4,56 - 116: -3,55 - 124: -6,46 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNw - decals: - 113: -11,55 - 114: -10,56 - 123: -8,46 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSe - decals: - 109: -4,48 - 110: -3,49 - 121: -6,44 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSw - decals: - 111: -10,48 - 112: -11,49 - 122: -8,44 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkEndE - decals: - 838: -10,-3 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkEndW - decals: - 835: -12,-3 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerNe - decals: - 118: -4,55 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerNw - decals: - 117: -10,55 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerSe - decals: - 119: -4,49 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerSw - decals: - 120: -10,49 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineE - decals: - 87: -3,54 - 88: -3,53 - 89: -3,52 - 90: -3,51 - 91: -3,50 - 125: -6,45 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineN - decals: - 92: -8,56 - 93: -9,56 - 94: -7,56 - 95: -5,56 - 96: -5,56 - 97: -6,56 - 128: -7,46 - 837: -11,-3 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineS - decals: - 104: -9,48 - 105: -8,48 - 106: -7,48 - 107: -6,48 - 108: -5,48 - 127: -7,44 - 836: -11,-3 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineW - decals: - 98: -11,54 - 99: -11,53 - 100: -11,53 - 101: -11,51 - 102: -11,52 - 103: -11,50 - 126: -8,45 - - node: - color: '#334E6DFF' - id: BrickTileSteelBox - decals: - 196: 2,49 - 197: 3,49 - - node: - color: '#52B4E9FF' - id: BrickTileSteelBox - decals: - 193: -1,49 - 194: 0,49 - 195: 1,49 - - node: - color: '#9FED58FF' - id: BrickTileSteelBox - decals: - 187: -1,53 - 188: 0,53 - - node: - color: '#A46106FF' - id: BrickTileSteelBox - decals: - 185: -1,55 - 186: 0,55 - - node: - color: '#B7FF8FFF' - id: BrickTileSteelBox - decals: - 189: 2,55 - 190: 3,55 - - node: - color: '#D381C9FF' - id: BrickTileSteelBox - decals: - 191: -1,51 - 192: 0,51 - - node: - color: '#DE3A3AFF' - id: BrickTileSteelBox - decals: - 181: 2,51 - 182: 3,51 - - node: - color: '#EFB341FF' - id: BrickTileSteelBox - decals: - 183: 2,53 - 184: 3,53 - - node: - color: '#52B4E9FF' - id: BrickTileSteelCornerNe - decals: - 748: -19,16 - 749: -23,16 - - node: - color: '#D381C9FF' - id: BrickTileSteelCornerNe - decals: - 896: -21,-1 - - node: - color: '#DE3A3AFF' - id: BrickTileSteelCornerNe - decals: - 492: 29,14 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerNe - decals: - 813: 2,-5 - 814: -2,-5 - 1244: -14,-51 - 1251: -41,-18 - - node: - color: '#52B4E9FF' - id: BrickTileSteelCornerNw - decals: - 746: -27,16 - 747: -21,16 - - node: - color: '#D381C9FF' - id: BrickTileSteelCornerNw - decals: - 897: -23,-1 - - node: - color: '#DE3A3AFF' - id: BrickTileSteelCornerNw - decals: - 491: 25,14 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerNw - decals: - 815: 0,-5 - 816: 4,-5 - 1245: -16,-51 - 1250: -44,-18 - - node: - color: '#52B4E9FF' - id: BrickTileSteelCornerSe - decals: - 744: -19,13 - 745: -23,13 - - node: - color: '#D381C9FF' - id: BrickTileSteelCornerSe - decals: - 899: -21,-4 - 969: -15,-19 - - node: - color: '#DE3A3AFF' - id: BrickTileSteelCornerSe - decals: - 494: 29,12 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerSe - decals: - 1249: -14,-52 - 1253: -41,-21 - - node: - color: '#52B4E9FF' - id: BrickTileSteelCornerSw - decals: - 750: -27,13 - 751: -21,13 - - node: - color: '#D381C9FF' - id: BrickTileSteelCornerSw - decals: - 898: -23,-4 - 968: -21,-19 - - node: - color: '#DE3A3AFF' - id: BrickTileSteelCornerSw - decals: - 493: 25,12 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerSw - decals: - 1248: -16,-52 - 1252: -44,-21 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelEndE - decals: - 824: 2,-3 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelEndW - decals: - 825: 4,-3 - 826: 0,-3 - - node: - color: '#52B4E9FF' - id: BrickTileSteelLineE - decals: - 728: -19,14 - 729: -19,15 - 733: -23,15 - 734: -23,14 - - node: - color: '#D381C9FF' - id: BrickTileSteelLineE - decals: - 890: -21,-2 - 891: -21,-3 - 959: -15,-17 - 960: -15,-18 - 1413: -15,-15 - 1414: -15,-14 - 1415: -15,-13 - 1416: -15,-11 - 1417: -15,-10 - 1418: -15,-9 - - node: - color: '#DE3A3AFF' - id: BrickTileSteelLineE - decals: - 486: 29,13 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineE - decals: - 822: -2,-6 - 823: 2,-6 - 1256: -41,-19 - 1257: -41,-20 - - node: - color: '#52B4E9FF' - id: BrickTileSteelLineN - decals: - 730: -24,16 - 731: -25,16 - 732: -26,16 - 743: -20,16 - - node: - color: '#D381C9FF' - id: BrickTileSteelLineN - decals: - 892: -22,-1 - - node: - color: '#DE3A3AFF' - id: BrickTileSteelLineN - decals: - 487: 28,14 - 488: 27,14 - 489: 26,14 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineN - decals: - 215: -4,26 - 817: -3,-5 - 818: 1,-5 - 819: 5,-5 - 827: 1,-3 - 830: 5,-3 - 1246: -15,-51 - 1254: -43,-18 - 1255: -42,-18 - - node: - color: '#52B4E9FF' - id: BrickTileSteelLineS - decals: - 739: -26,13 - 740: -25,13 - 741: -24,13 - 742: -20,13 - - node: - color: '#D381C9FF' - id: BrickTileSteelLineS - decals: - 893: -22,-4 - 961: -17,-19 - 962: -16,-19 - 963: -18,-19 - 964: -19,-19 - 965: -20,-19 - - node: - color: '#DE3A3AFF' - id: BrickTileSteelLineS - decals: - 483: 28,12 - 484: 27,12 - 485: 26,12 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineS - decals: - 828: 1,-3 - 829: 5,-3 - 1247: -15,-52 - 1260: -43,-21 - 1261: -42,-21 - 1460: -3,-3 - 1461: -2,-3 - 1462: -1,-3 - - node: - color: '#52B4E9FF' - id: BrickTileSteelLineW - decals: - 735: -27,15 - 736: -27,14 - 737: -21,15 - 738: -21,14 - - node: - color: '#D381C9FF' - id: BrickTileSteelLineW - decals: - 894: -23,-3 - 895: -23,-2 - 966: -21,-18 - 967: -21,-17 - 1419: -18,-15 - 1420: -18,-14 - 1421: -18,-13 - 1422: -18,-11 - 1423: -18,-10 - 1424: -18,-9 - 1426: -18,-12 - 1427: -18,-16 - - node: - color: '#DE3A3AFF' - id: BrickTileSteelLineW - decals: - 490: 25,13 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineW - decals: - 214: 2,28 - 820: 4,-6 - 821: 0,-6 - 1258: -44,-19 - 1259: -44,-20 - - node: - color: '#EFB341FF' - id: BrickTileWhiteBox - decals: - 1107: 19,-15 - - node: - color: '#52B4E9FF' - id: BrickTileWhiteCornerNe - decals: - 631: -21,6 - 632: -18,6 - 633: -15,6 - 777: -9,6 - - node: - color: '#9D9D97FF' - id: BrickTileWhiteCornerNe - decals: - 1305: 46,28 - 1328: 43,27 - - node: - color: '#9FED58FF' - id: BrickTileWhiteCornerNe - decals: - 707: -11,21 - 710: -11,19 - - node: - color: '#A46106FF' - id: BrickTileWhiteCornerNe - decals: - 1164: 11,-18 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerNe - decals: - 496: 29,18 - - node: - color: '#EFB341FF' - id: BrickTileWhiteCornerNe - decals: - 1095: 20,-14 - 1111: 21,-6 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerNe - decals: - 808: 4,2 - - node: - color: '#52B4E9FF' - id: BrickTileWhiteCornerNw - decals: - 628: -22,6 - 629: -19,6 - 630: -16,6 - 774: -10,6 - - node: - color: '#9D9D97FF' - id: BrickTileWhiteCornerNw - decals: - 1306: 39,28 - 1327: 42,27 - - node: - color: '#9FED58FF' - id: BrickTileWhiteCornerNw - decals: - 705: -12,21 - 709: -12,19 - - node: - color: '#A46106FF' - id: BrickTileWhiteCornerNw - decals: - 1229: 8,-18 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerNw - decals: - 495: 27,18 - - node: - color: '#EFB341FF' - id: BrickTileWhiteCornerNw - decals: - 1096: 16,-14 - 1110: 20,-6 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerNw - decals: - 805: 1,2 - - node: - color: '#334E6DFF' - id: BrickTileWhiteCornerSe - decals: - 1301: 44,33 - - node: - color: '#52B4E9FF' - id: BrickTileWhiteCornerSe - decals: - 634: -21,5 - 635: -18,5 - 636: -15,5 - 775: -9,5 - - node: - color: '#9D9D97FF' - id: BrickTileWhiteCornerSe - decals: - 1323: 46,25 - 1326: 43,26 - - node: - color: '#9FED58FF' - id: BrickTileWhiteCornerSe - decals: - 706: -11,18 - 708: -11,20 - - node: - color: '#A46106FF' - id: BrickTileWhiteCornerSe - decals: - 1163: 11,-24 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerSe - decals: - 497: 29,16 - - node: - color: '#EFB341FF' - id: BrickTileWhiteCornerSe - decals: - 1097: 20,-16 - 1108: 21,-7 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerSe - decals: - 806: 4,1 - - node: - color: '#334E6DFF' - id: BrickTileWhiteCornerSw - decals: - 1302: 41,33 - - node: - color: '#52B4E9FF' - id: BrickTileWhiteCornerSw - decals: - 637: -22,5 - 638: -19,5 - 639: -16,5 - 776: -10,5 - - node: - color: '#9D9D97FF' - id: BrickTileWhiteCornerSw - decals: - 1324: 39,25 - 1325: 42,26 - - node: - color: '#9FED58FF' - id: BrickTileWhiteCornerSw - decals: - 704: -12,18 - 711: -12,20 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerSw - decals: - 498: 27,16 - - node: - color: '#EFB341FF' - id: BrickTileWhiteCornerSw - decals: - 1098: 16,-16 - 1109: 20,-7 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerSw - decals: - 807: 1,1 - - node: - color: '#9FED5896' - id: BrickTileWhiteInnerNe - decals: - 158: -2,52 - - node: - color: '#BDFF8593' - id: BrickTileWhiteInnerNe - decals: - 175: 1,54 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteInnerNe - decals: - 149: 1,50 - - node: - color: '#EFB341FF' - id: BrickTileWhiteInnerNe - decals: - 171: 1,52 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteInnerNe - decals: - 1237: -5,-25 - - node: - color: '#9FED5896' - id: BrickTileWhiteInnerNw - decals: - 165: 1,52 - - node: - color: '#A46106FF' - id: BrickTileWhiteInnerNw - decals: - 180: 1,54 - 1228: 8,-19 - - node: - color: '#D381C9FF' - id: BrickTileWhiteInnerNw - decals: - 157: 1,50 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteInnerNw - decals: - 1398: -3,-25 - - node: - color: '#D381C9FF' - id: BrickTileWhiteInnerSe - decals: - 151: -2,52 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteInnerSe - decals: - 148: 1,52 - - node: - color: '#EFB341FF' - id: BrickTileWhiteInnerSe - decals: - 172: 1,54 - - node: - color: '#9FED5896' - id: BrickTileWhiteInnerSw - decals: - 164: 1,54 - - node: - color: '#D381C9FF' - id: BrickTileWhiteInnerSw - decals: - 154: 1,52 - - node: - color: '#334E6DFF' - id: BrickTileWhiteLineE - decals: - 1300: 44,34 - - node: - color: '#7C5C98FF' - id: BrickTileWhiteLineE - decals: - 1399: 9,-2 - - node: - color: '#9D9D97FF' - id: BrickTileWhiteLineE - decals: - 1313: 46,27 - 1314: 46,26 - - node: - color: '#A46106FF' - id: BrickTileWhiteLineE - decals: - 1155: 11,-19 - 1156: 11,-20 - 1157: 11,-21 - 1158: 11,-22 - 1159: 11,-23 - 1227: 7,-18 - - node: - color: '#BDFF8593' - id: BrickTileWhiteLineE - decals: - 176: 1,55 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineE - decals: - 147: 1,51 - 501: 29,17 - - node: - color: '#EFB341FF' - id: BrickTileWhiteLineE - decals: - 166: 1,53 - 1105: 20,-15 - - node: - color: '#9D9D97FF' - id: BrickTileWhiteLineN - decals: - 1307: 40,28 - 1308: 41,28 - 1309: 42,28 - 1310: 43,28 - 1311: 44,28 - 1312: 45,28 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineN - decals: - 159: -1,52 - 160: 0,52 - - node: - color: '#A46106FF' - id: BrickTileWhiteLineN - decals: - 177: -1,54 - 178: 0,54 - 1153: 9,-18 - 1154: 10,-18 - - node: - color: '#BDFF8593' - id: BrickTileWhiteLineN - decals: - 173: 2,54 - 174: 3,54 - - node: - color: '#D381C9FF' - id: BrickTileWhiteLineN - decals: - 155: -1,50 - 156: 0,50 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineN - decals: - 143: 2,50 - 144: 3,50 - 500: 28,18 - - node: - color: '#EFB341FF' - id: BrickTileWhiteLineN - decals: - 169: 2,52 - 170: 3,52 - 1099: 17,-14 - 1100: 18,-14 - 1101: 19,-14 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineN - decals: - 809: 2,2 - 810: 3,2 - 831: 3,-1 - 832: 4,-1 - 1236: -4,-25 - - node: - color: '#334E6DFF' - id: BrickTileWhiteLineS - decals: - 141: 2,50 - 142: 3,50 - 1297: 42,33 - 1298: 43,33 - - node: - color: '#52B4E9FF' - id: BrickTileWhiteLineS - decals: - 138: -1,50 - 139: 0,50 - 140: 1,50 - 1333: -4,-34 - - node: - color: '#7C5C98FF' - id: BrickTileWhiteLineS - decals: - 1404: 14,1 - 1405: 15,1 - - node: - color: '#9D9D97FF' - id: BrickTileWhiteLineS - decals: - 1315: 45,25 - 1316: 44,25 - 1317: 43,25 - 1318: 42,25 - 1319: 41,25 - 1320: 40,25 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineS - decals: - 161: -1,54 - 162: 0,54 - - node: - color: '#A46106FF' - id: BrickTileWhiteLineS - decals: - 1160: 8,-24 - 1161: 9,-24 - 1162: 10,-24 - 1334: -3,-34 - - node: - color: '#D381C9FF' - id: BrickTileWhiteLineS - decals: - 152: -1,52 - 153: 0,52 - 1335: -5,-34 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineS - decals: - 145: 2,52 - 146: 3,52 - 499: 28,16 - - node: - color: '#EFB341FF' - id: BrickTileWhiteLineS - decals: - 167: 2,54 - 168: 3,54 - 1102: 17,-16 - 1103: 18,-16 - 1104: 19,-16 - 1332: -2,-34 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineS - decals: - 811: 2,1 - 812: 3,1 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineW - decals: - 1329: -7,-32 - - node: - color: '#334E6DFF' - id: BrickTileWhiteLineW - decals: - 1299: 41,34 - - node: - color: '#70707093' - id: BrickTileWhiteLineW - decals: - 1331: -7,-34 - - node: - color: '#9D9D97FF' - id: BrickTileWhiteLineW - decals: - 1321: 39,26 - 1322: 39,27 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineW - decals: - 163: 1,53 - - node: - color: '#A46106FF' - id: BrickTileWhiteLineW - decals: - 179: 1,55 - - node: - color: '#C78B1993' - id: BrickTileWhiteLineW - decals: - 1330: -7,-33 - - node: - color: '#D381C9FF' - id: BrickTileWhiteLineW - decals: - 150: 1,51 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineW - decals: - 502: 27,17 - - node: - color: '#EFB341FF' - id: BrickTileWhiteLineW - decals: - 1106: 16,-15 - - node: - color: '#FFFFFFFF' - id: Busha1 - decals: - 1354: 28.377537,33.036083 - 1384: -25.060997,23.98543 - - node: - color: '#FFFFFFFF' - id: Bushb2 - decals: - 1349: 22.922419,33.036083 - 1350: 19.880083,33.942333 - - node: - color: '#FFFFFFFF' - id: Bushb3 - decals: - 1383: -23.045372,22.032305 - - node: - color: '#FFFFFFFF' - id: Bushc1 - decals: - 1351: 18.98016,34.92671 - 1352: 19.38641,32.098583 - 1353: 24.355186,34.536083 - - node: - color: '#FFFFFFFF' - id: Bushc2 - decals: - 1375: 34.975742,34.972504 - 1393: -22.967247,20.969805 - - node: - color: '#FFFFFFFF' - id: Bushi1 - decals: - 1373: 28.499575,31.984146 - 1374: 36.95945,33.952896 - 1385: -26.967247,21.92293 - 1387: -23.998497,23.938555 - - node: - color: '#FFFFFFFF' - id: Bushi2 - decals: - 1390: -26.014122,20.92293 - - node: - color: '#FFFFFFFF' - id: Bushi3 - decals: - 1372: 27.04645,31.937271 - - node: - color: '#FFFFFFFF' - id: Bushi4 - decals: - 1355: 31.565037,34.80171 - 1356: 32.45566,32.92671 - 1357: 29.877537,34.89546 - - node: - color: '#FFFFFFFF' - id: Caution - decals: - 981: -27,-6 - 1134: 11,-28 - 1135: 13,-28 - 1235: -41,16 - - node: - color: '#000000FF' - id: CheckerNESW - decals: - 778: 0,3 - 779: 1,3 - 780: 2,3 - 781: 3,3 - 782: 4,3 - 783: 5,3 - 784: 5,2 - 785: 0,2 - 786: 0,1 - 787: 5,1 - 788: 5,0 - 789: 4,0 - 790: 3,0 - 791: 2,0 - 792: 1,0 - 793: 0,0 - 794: 4,4 - 795: 3,4 - 796: 6,2 - - node: - color: '#52B4E996' - id: CheckerNESW - decals: - 640: -17,12 - 641: -16,12 - 642: -17,13 - 643: -16,13 - 644: -17,14 - 645: -16,14 - 646: -17,15 - 647: -16,15 - 648: -16,16 - 649: -17,16 - - node: - color: '#A4610696' - id: CheckerNESW - decals: - 1218: 6,-28 - 1219: 6,-27 - 1220: 6,-26 - 1221: 5,-26 - 1222: 5,-27 - 1223: 5,-28 - 1224: 4,-28 - 1225: 4,-27 - 1226: 4,-26 - - node: - color: '#D381C996' - id: CheckerNESW - decals: - 940: -13,-7 - 941: -13,-6 - 942: -12,-6 - 943: -12,-7 - - node: - color: '#DE3A3A96' - id: CheckerNESW - decals: - 381: 18,12 - 382: 18,13 - 383: 18,14 - 384: 18,15 - 385: 19,15 - 386: 19,14 - 387: 19,13 - 388: 19,12 - 389: 20,12 - 390: 20,13 - 391: 20,14 - 392: 20,15 - 393: 21,15 - 394: 21,14 - 395: 21,13 - 396: 21,12 - 397: 22,12 - 398: 22,13 - 399: 22,15 - 400: 22,14 - 401: 23,15 - 402: 23,14 - 403: 23,13 - 404: 23,12 - 405: 20,11 - 406: 21,11 - 563: 15,11 - 564: 14,12 - 565: 15,12 - 566: 16,12 - 567: 16,13 - 568: 15,13 - 569: 14,13 - 570: 14,14 - 571: 15,14 - 572: 16,14 - 573: 16,15 - 574: 15,15 - 575: 14,15 - 576: 13,14 - 577: 13,13 - 582: 10,13 - 583: 10,14 - - node: - color: '#52B4E996' - id: CheckerNWSE - decals: - 692: -8,8 - 693: -9,8 - 694: -10,8 - 695: -10,9 - 696: -9,9 - 697: -8,9 - 698: -8,10 - 699: -9,10 - 700: -10,10 - 701: -10,11 - 702: -9,11 - 703: -8,11 - - node: - color: '#DE3A3A96' - id: CheckerNWSE - decals: - 561: 34,11 - 562: 35,11 - 600: 15,7 - 601: 18,7 - 602: 12,7 - - node: - color: '#EF5C1F93' - id: CheckerNWSE - decals: - 519: 32,23 - 520: 33,23 - - node: - color: '#EFB34196' - id: CheckerNWSE - decals: - 1008: 17,-5 - 1009: 16,-5 - 1010: 15,-5 - - node: - color: '#FFFFFFFF' - id: Delivery - decals: - 979: -21,-14 - 980: -21,-10 - 1262: -6,52 - 1263: -7,53 - 1264: -8,52 - 1265: -7,51 - 1395: 11,27 - 1396: 12,27 - 1397: 13,27 - - node: - color: '#000000FF' - id: DiagonalCheckerAOverlay - decals: - 797: 2,2 - 798: 3,1 - 799: 1,1 - 800: 4,2 - 801: 2,1 - 802: 1,2 - 803: 3,2 - 804: 4,1 - - node: - color: '#334E6DC8' - id: FullTileOverlayGreyscale - decals: - 308: -7,29 - 309: -13,30 - 310: -16,30 - 321: 4,20 - 322: 4,17 - - node: - color: '#52B4E996' - id: FullTileOverlayGreyscale - decals: - 482: 22,4 - - node: - color: '#DE3A3A96' - id: FullTileOverlayGreyscale - decals: - 503: 30,13 - 504: 30,17 - 509: 32,19 - 510: 33,19 - - node: - color: '#EF5C1F93' - id: FullTileOverlayGreyscale - decals: - 513: 32,22 - 514: 33,22 - 515: 32,24 - 516: 33,24 - 535: 26,25 - 536: 26,27 - - node: - color: '#FFFFFFFF' - id: Grassa3 - decals: - 1344: 25.518755,33.161083 - 1345: 28.102278,34.536083 - 1346: 30.90701,33.067333 - 1388: -24.060997,21.969805 - - node: - color: '#FFFFFFFF' - id: Grassc1 - decals: - 1347: 33.051407,34.442333 - 1348: 35.00453,33.848583 - - node: - color: '#FFFFFFFF' - id: Grassd1 - decals: - 1343: 22.28438,34.23921 - - node: - color: '#FFFFFFFF' - id: Grassd3 - decals: - 1369: 28.9527,33.984146 - 1370: 26.85895,32.952896 - - node: - color: '#FFFFFFFF' - id: Grasse1 - decals: - 1368: 21.980526,32.077896 - - node: - color: '#FFFFFFFF' - id: Grasse2 - decals: - 1365: 23.027401,35.28102 - 1366: 24.996151,35.327896 - 1367: 23.902401,32.12477 - - node: - color: '#FFFFFFFF' - id: Grasse3 - decals: - 1362: 20.983843,34.62477 - 1363: 19.968218,33.077896 - 1364: 23.34307,34.234146 - 1389: -25.998497,19.938555 - - node: - color: '#2BAF9D93' - id: HalfTileOverlayGreyscale - decals: - 1433: 32,-17 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale - decals: - 305: -11,31 - 306: -10,31 - 307: -9,31 - 319: 4,19 - 323: 4,16 - 324: 3,16 - 325: 5,16 - 342: 2,25 - 343: 3,25 - 344: 4,25 - 345: -2,32 - 346: -3,32 - 347: 0,31 - 348: -5,31 - 372: -3,17 - 373: -2,17 - 374: -1,17 - 375: 0,17 - 376: 1,17 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale - decals: - 469: 21,7 - 470: 22,7 - 473: 22,3 - 716: -17,21 - 717: -16,21 - 718: -15,21 - 719: -14,21 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale - decals: - 37: 3,-8 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale - decals: - 845: -11,-2 - 846: -10,-2 - 900: -18,-1 - 901: -17,-1 - 902: -16,-1 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - decals: - 468: 32,18 - 556: 37,13 - - node: - color: '#EF5C1F93' - id: HalfTileOverlayGreyscale - decals: - 511: 32,21 - 512: 33,21 - 525: 28,28 - 526: 29,28 - 527: 30,28 - 528: 31,28 - 529: 32,28 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale - decals: - 1080: 12,-11 - 1081: 13,-11 - 1082: 14,-11 - 1083: 15,-11 - - node: - color: '#2BAF9D93' - id: HalfTileOverlayGreyscale180 - decals: - 1434: 32,-19 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale180 - decals: - 294: -11,26 - 295: -9,26 - 296: -10,26 - 320: 4,18 - 349: 4,21 - 350: 2,23 - 351: 1,23 - 352: -1,27 - 353: -2,27 - 354: -5,27 - 355: -4,27 - 356: -3,27 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale180 - decals: - 471: 21,5 - 472: 22,5 - 712: -17,18 - 713: -16,18 - 714: -15,18 - 715: -14,18 - - node: - color: '#707070FF' - id: HalfTileOverlayGreyscale180 - decals: - 57: -9,-10 - 58: -8,-10 - 59: -8,-10 - 60: -7,-10 - - node: - color: '#79150096' - id: HalfTileOverlayGreyscale180 - decals: - 286: 1,14 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale180 - decals: - 847: -12,-4 - 848: -11,-4 - 849: -10,-4 - 907: -16,-7 - 908: -17,-7 - 909: -18,-7 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - decals: - 507: 32,20 - 508: 33,20 - 555: 37,10 - - node: - color: '#EF5C1F93' - id: HalfTileOverlayGreyscale180 - decals: - 521: 32,25 - 522: 31,25 - 523: 29,24 - 524: 28,24 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale180 - decals: - 1077: 15,-12 - 1078: 12,-13 - 1079: 13,-13 - - node: - color: '#2BAF9D93' - id: HalfTileOverlayGreyscale270 - decals: - 1436: 31,-18 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale270 - decals: - 301: -12,27 - 302: -12,28 - 303: -12,29 - 304: -12,30 - 365: -6,28 - 366: -6,29 - 367: -6,30 - 368: 0,26 - 369: 0,25 - 370: 0,24 - 371: 3,22 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale270 - decals: - 475: 20,6 - 671: -27,10 - 722: -18,20 - 727: -18,19 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale270 - decals: - 18: 7,2 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale270 - decals: - 1203: 8,-27 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale270 - decals: - 851: -13,-3 - 852: -13,-2 - 910: -19,-6 - 911: -19,-5 - 912: -19,-4 - 913: -19,-3 - 914: -19,-2 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale270 - decals: - 559: 36,11 - 560: 36,12 - 586: 11,13 - 587: 11,14 - - node: - color: '#EF5C1F93' - id: HalfTileOverlayGreyscale270 - decals: - 532: 27,25 - 533: 27,26 - 534: 27,27 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale270 - decals: - 1021: 15,-8 - 1084: 11,-12 - - node: - color: '#2BAF9D93' - id: HalfTileOverlayGreyscale90 - decals: - 1435: 33,-18 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale90 - decals: - 297: -8,27 - 298: -8,28 - 299: -8,29 - 300: -8,30 - 357: 5,22 - 358: 5,23 - 359: 5,24 - 360: 1,26 - 361: 1,27 - 362: 1,28 - 363: 1,29 - 364: 1,30 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale90 - decals: - 474: 23,6 - 669: -12,10 - 670: -12,9 - 720: -13,20 - 721: -13,19 - - node: - color: '#707070FF' - id: HalfTileOverlayGreyscale90 - decals: - 62: -12,-12 - 63: -12,-13 - 64: -12,-14 - 65: -12,-16 - 66: -12,-15 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale90 - decals: - 287: -5,2 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale90 - decals: - 1144: 6,-23 - 1145: 6,-22 - 1146: 6,-21 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale90 - decals: - 850: -9,-3 - 903: -15,-2 - 904: -15,-4 - 905: -15,-5 - 906: -15,-6 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale90 - decals: - 557: 38,11 - 558: 38,12 - 584: 12,13 - 585: 12,14 - - node: - color: '#EF5C1F93' - id: HalfTileOverlayGreyscale90 - decals: - 530: 33,26 - 531: 33,27 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale90 - decals: - 985: 13,-8 - 986: 13,-7 - 987: 13,-6 - 1020: 16,-8 - - node: - color: '#FFFFFFFF' - id: LoadingArea - decals: - 1458: 1,17 - - node: - angle: 4.71238898038469 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 1459: 6,-23 - - node: - color: '#D381C9FF' - id: MiniTileSteelCornerNe - decals: - 885: -32,-7 - - node: - color: '#D381C9FF' - id: MiniTileSteelCornerNw - decals: - 887: -31,-7 - - node: - color: '#D381C9FF' - id: MiniTileSteelCornerSe - decals: - 880: -25,-4 - - node: - color: '#D381C9FF' - id: MiniTileSteelCornerSw - decals: - 881: -29,-4 - - node: - color: '#D381C9FF' - id: MiniTileSteelInnerNw - decals: - 886: -30,-7 - - node: - color: '#D381C9FF' - id: MiniTileSteelLineE - decals: - 877: -25,-3 - 878: -25,-2 - 879: -25,-1 - 889: -32,-8 - - node: - color: '#D381C9FF' - id: MiniTileSteelLineS - decals: - 874: -28,-4 - 875: -27,-4 - 876: -26,-4 - 883: -32,-6 - 884: -31,-6 - - node: - color: '#D381C9FF' - id: MiniTileSteelLineW - decals: - 871: -29,-1 - 872: -29,-2 - 873: -29,-3 - 888: -31,-8 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteCornerNe - decals: - 613: -24,7 - - node: - color: '#EF7241FF' - id: MiniTileWhiteCornerNe - decals: - 752: -11,16 - 753: -9,14 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteCornerNw - decals: - 612: -27,7 - - node: - color: '#EF7241FF' - id: MiniTileWhiteCornerNw - decals: - 756: -14,16 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteCornerSe - decals: - 614: -24,5 - - node: - color: '#D381C9FF' - id: MiniTileWhiteCornerSe - decals: - 926: -25,-8 - - node: - color: '#EF7241FF' - id: MiniTileWhiteCornerSe - decals: - 754: -9,13 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteCornerSw - decals: - 615: -27,5 - - node: - color: '#D381C9FF' - id: MiniTileWhiteCornerSw - decals: - 927: -29,-8 - - node: - color: '#EF7241FF' - id: MiniTileWhiteCornerSw - decals: - 755: -14,13 - - node: - color: '#7C5C98FF' - id: MiniTileWhiteInnerNe - decals: - 1402: 9,-3 - - node: - color: '#EF7241FF' - id: MiniTileWhiteInnerNe - decals: - 766: -11,14 - - node: - color: '#7C5C98FF' - id: MiniTileWhiteInnerSe - decals: - 1400: 13,1 - 1401: 9,-1 - - node: - color: '#7C5C98FF' - id: MiniTileWhiteInnerSw - decals: - 1403: 16,1 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteLineE - decals: - 604: -24,6 - - node: - color: '#D381C9FF' - id: MiniTileWhiteLineE - decals: - 919: -25,-6 - 920: -25,-7 - - node: - color: '#EF7241FF' - id: MiniTileWhiteLineE - decals: - 761: -11,15 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteLineN - decals: - 609: -26,7 - 610: -25,7 - - node: - color: '#D381C9FF' - id: MiniTileWhiteLineN - decals: - 928: -21,-6 - 929: -22,-6 - 930: -23,-6 - - node: - color: '#EF7241FF' - id: MiniTileWhiteLineN - decals: - 764: -13,16 - 765: -12,16 - 767: -10,14 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteLineS - decals: - 605: -26,5 - 606: -26,5 - 607: -25,5 - - node: - color: '#D381C9FF' - id: MiniTileWhiteLineS - decals: - 921: -26,-8 - 922: -27,-8 - 923: -28,-8 - 931: -23,-7 - 932: -22,-7 - 933: -21,-7 - - node: - color: '#EF7241FF' - id: MiniTileWhiteLineS - decals: - 757: -13,13 - 758: -12,13 - 759: -11,13 - 760: -10,13 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteLineW - decals: - 608: -27,6 - - node: - color: '#D381C9FF' - id: MiniTileWhiteLineW - decals: - 924: -29,-7 - 925: -29,-6 - - node: - color: '#EF7241FF' - id: MiniTileWhiteLineW - decals: - 762: -14,14 - 763: -14,15 - - node: - color: '#334E6DC8' - id: MonoOverlay - decals: - 1338: -8,-32 - - node: - color: '#52B4E996' - id: MonoOverlay - decals: - 624: -11,10 - 625: -11,9 - 626: -11,6 - 627: -11,5 - 768: -10,7 - 769: -9,7 - 770: -13,12 - 771: -10,12 - 772: -9,12 - 773: -15,15 - 1337: -4,-35 - - node: - color: '#52B4E9FF' - id: MonoOverlay - decals: - 611: -25,8 - - node: - color: '#70707093' - id: MonoOverlay - decals: - 1340: -8,-34 - - node: - color: '#A14F9793' - id: MonoOverlay - decals: - 867: -27,-3 - 868: -28,-2 - 869: -27,-1 - 870: -26,-2 - 882: -27,-5 - - node: - color: '#A4610696' - id: MonoOverlay - decals: - 1165: 5,-25 - 1166: 7,-27 - 1167: 9,-25 - 1168: 10,-25 - 1169: 12,-23 - 1170: 12,-22 - 1171: 7,-22 - 1172: 7,-21 - 1173: 7,-24 - 1176: 17,-22 - 1177: 17,-23 - 1342: -3,-35 - - node: - color: '#A46106FF' - id: MonoOverlay - decals: - 1174: 20,-25 - 1175: 21,-25 - - node: - color: '#C78B1993' - id: MonoOverlay - decals: - 1339: -8,-33 - - node: - color: '#D381C996' - id: MonoOverlay - decals: - 944: -13,-8 - 945: -12,-8 - 946: -11,-7 - 947: -11,-6 - 948: -12,-5 - 949: -13,-5 - 950: -17,-8 - 1336: -5,-35 - - node: - color: '#D381C9FF' - id: MonoOverlay - decals: - 934: -24,-6 - 935: -24,-7 - 936: -20,-6 - 937: -20,-7 - 938: -14,-7 - 939: -14,-6 - - node: - color: '#EF663193' - id: MonoOverlay - decals: - 1378: 34,23 - - node: - color: '#EFB34196' - id: MonoOverlay - decals: - 1022: 14,-8 - 1023: 14,-7 - 1024: 15,-6 - 1025: 16,-6 - 1026: 22,-10 - 1027: 23,-10 - 1028: 24,-8 - 1029: 27,-10 - 1030: 17,-11 - 1031: 17,-12 - 1032: 25,-13 - 1033: 30,-12 - 1034: 30,-11 - 1341: -2,-35 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale - decals: - 327: 6,16 - 328: -4,31 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale - decals: - 477: 23,3 - 616: -7,7 - 617: -7,8 - 618: -7,9 - 619: -7,10 - 620: -7,11 - 621: -7,12 - 622: -7,13 - 623: -7,14 - 687: -13,7 - 688: -13,6 - - node: - color: '#79150096' - id: QuarterTileOverlayGreyscale - decals: - 260: 7,4 - 261: 7,5 - 262: 7,6 - 263: 7,7 - 264: 7,8 - 265: 7,9 - 266: 7,10 - 275: 7,11 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale - decals: - 20: 7,1 - 28: 7,-8 - 29: -4,-8 - 30: -3,-8 - 31: -2,-8 - 32: -1,-8 - 33: 0,-8 - 34: 1,-8 - 39: 2,-8 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - decals: - 1150: 5,-20 - 1151: 4,-20 - 1152: 3,-20 - 1192: 13,-21 - 1193: 13,-22 - 1194: 13,-24 - 1195: 13,-23 - 1196: 13,-25 - 1197: 13,-26 - 1198: 12,-26 - 1199: 11,-26 - 1200: 10,-26 - 1201: 9,-26 - 1202: 8,-26 - - node: - color: '#B02E26FF' - id: QuarterTileOverlayGreyscale - decals: - 1303: 42,29 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale - decals: - 48: -10,-10 - 49: -10,-9 - 50: -10,-8 - 51: -10,-7 - 52: -10,-6 - 53: -9,-6 - 54: -8,-6 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale - decals: - 463: 31,10 - 1465: 10,-5 - 1466: 11,-5 - - node: - color: '#EF5C1F93' - id: QuarterTileOverlayGreyscale - decals: - 518: 34,21 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale - decals: - 988: 12,-5 - 990: 18,-5 - 991: 18,-4 - 992: 19,-4 - 993: 20,-4 - 994: 21,-4 - 995: 22,-4 - 1005: 18,-8 - 1006: 18,-7 - 1007: 18,-6 - 1057: 28,-11 - 1058: 27,-11 - 1059: 26,-11 - 1060: 25,-11 - 1061: 24,-11 - 1086: 25,-8 - 1087: 25,-7 - 1088: 25,-6 - 1089: 25,-5 - 1090: 25,-4 - - node: - color: '#F9801DFF' - id: QuarterTileOverlayGreyscale - decals: - 1292: 45,34 - - node: - color: '#3C44AAFF' - id: QuarterTileOverlayGreyscale180 - decals: - 1285: 43,30 - 1286: 43,31 - 1287: 43,32 - 1288: 44,32 - 1289: 45,32 - 1290: 46,32 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale180 - decals: - 672: -26,9 - 673: -25,9 - 674: -24,9 - 675: -23,9 - 678: -21,8 - 679: -20,8 - 680: -19,8 - 681: -18,8 - 682: -17,8 - 683: -15,8 - 684: -16,8 - 685: -14,8 - 689: -12,8 - 690: -12,7 - 691: -12,6 - - node: - color: '#707070FF' - id: QuarterTileOverlayGreyscale180 - decals: - 55: -10,-10 - 61: -12,-11 - - node: - color: '#79150096' - id: QuarterTileOverlayGreyscale180 - decals: - 276: -4,12 - 277: -3,13 - 283: -2,14 - 284: -1,14 - 285: 0,14 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale180 - decals: - 41: -5,-7 - 42: -5,-6 - 43: -5,-5 - 44: -5,-4 - 45: -5,-3 - 46: -5,-2 - 47: -5,-1 - 289: -5,3 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - decals: - 426: 13,8 - 427: 14,8 - 428: 15,8 - 429: 16,8 - 430: 17,8 - 431: 18,8 - 432: 20,8 - 433: 19,8 - 434: 21,8 - 435: 22,8 - 436: 23,8 - 437: 24,8 - 438: 25,8 - 439: 26,8 - 440: 27,8 - 441: 28,8 - 442: 29,8 - 443: 30,8 - 444: 31,8 - 445: 32,8 - 446: 33,8 - 447: 33,9 - 448: 33,10 - 449: 33,11 - 450: 33,12 - 451: 33,13 - 452: 33,14 - 453: 33,15 - 454: 33,17 - 455: 33,16 - 505: 31,20 - 603: 12,8 - - node: - color: '#EF5C1F93' - id: QuarterTileOverlayGreyscale180 - decals: - 550: 30,25 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale180 - decals: - 996: 23,-5 - 997: 23,-6 - 998: 23,-7 - 999: 23,-8 - 1000: 23,-9 - 1001: 22,-9 - 1002: 21,-9 - 1003: 20,-9 - 1004: 19,-9 - 1051: 23,-12 - 1052: 22,-12 - 1053: 21,-12 - 1054: 20,-12 - 1055: 19,-12 - 1075: 14,-12 - 1091: 26,-9 - 1092: 27,-9 - 1093: 28,-9 - 1094: 29,-9 - - node: - color: '#F9801DFF' - id: QuarterTileOverlayGreyscale180 - decals: - 1291: 46,33 - - node: - color: '#2BAF9D93' - id: QuarterTileOverlayGreyscale270 - decals: - 1447: 32,-12 - 1448: 31,-12 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale270 - decals: - 330: 0,27 - 331: 3,23 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale270 - decals: - 676: -22,9 - 686: -13,8 - 1463: 10,-9 - 1464: 11,-9 - - node: - color: '#707070FF' - id: QuarterTileOverlayGreyscale270 - decals: - 56: -6,-10 - - node: - color: '#79150096' - id: QuarterTileOverlayGreyscale270 - decals: - 278: 6,12 - 279: 5,13 - 280: 4,14 - 281: 3,14 - 282: 2,14 - - node: - color: '#9D9D97FF' - id: QuarterTileOverlayGreyscale270 - decals: - 1295: 39,33 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale270 - decals: - 19: 7,3 - 21: 7,-1 - 22: 7,-2 - 23: 7,-3 - 24: 7,-4 - 25: 7,-5 - 26: 7,-6 - 27: 7,-7 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale270 - decals: - 1147: 5,-24 - 1148: 4,-24 - 1149: 3,-24 - 1178: 8,-28 - 1179: 9,-28 - 1210: 18,-22 - 1211: 18,-23 - 1212: 18,-24 - 1213: 19,-24 - 1214: 20,-24 - 1215: 21,-24 - - node: - color: '#B02E26FF' - id: QuarterTileOverlayGreyscale270 - decals: - 1279: 39,32 - 1280: 40,32 - 1281: 41,32 - 1282: 42,32 - 1283: 42,31 - 1284: 42,30 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale270 - decals: - 456: 31,17 - 457: 31,16 - 458: 31,15 - 459: 31,14 - 460: 31,13 - 461: 31,12 - 462: 31,11 - 506: 34,20 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale270 - decals: - 989: 12,-9 - 1047: 28,-12 - 1048: 27,-12 - 1049: 26,-12 - 1050: 25,-12 - 1056: 24,-12 - 1442: 31,-11 - 1443: 32,-11 - - node: - color: '#2BAF9D93' - id: QuarterTileOverlayGreyscale90 - decals: - 1441: 31,-11 - 1445: 32,-12 - 1446: 32,-11 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale90 - decals: - 326: 2,16 - 329: -1,31 - 341: 1,25 - - node: - color: '#3C44AAFF' - id: QuarterTileOverlayGreyscale90 - decals: - 1304: 43,29 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale90 - decals: - 476: 21,3 - 650: -12,11 - 651: -13,11 - 652: -15,11 - 653: -14,11 - 654: -16,11 - 655: -17,11 - 656: -18,11 - 657: -19,11 - 658: -20,11 - 659: -21,11 - 660: -22,11 - 661: -23,11 - 662: -24,11 - 663: -25,11 - 664: -26,11 - - node: - color: '#79150096' - id: QuarterTileOverlayGreyscale90 - decals: - 267: -5,4 - 268: -5,5 - 269: -5,6 - 270: -5,7 - 271: -5,8 - 272: -5,9 - 273: -5,10 - 274: -5,11 - - node: - color: '#9D9D97FF' - id: QuarterTileOverlayGreyscale90 - decals: - 1296: 40,34 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale90 - decals: - 35: 6,-8 - 36: 5,-8 - 38: 4,-8 - 40: -5,-8 - 288: -5,1 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale90 - decals: - 1180: 22,-26 - 1181: 21,-26 - 1182: 20,-26 - 1183: 19,-26 - 1184: 18,-26 - 1185: 16,-26 - 1186: 17,-26 - 1187: 16,-25 - 1188: 16,-24 - 1189: 16,-23 - 1190: 16,-22 - 1191: 16,-21 - 1205: 22,-21 - 1206: 21,-21 - 1207: 20,-21 - 1208: 19,-21 - 1209: 22,-22 - 1469: 22,-23 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale90 - decals: - 844: -12,-2 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale90 - decals: - 377: 9,15 - 378: 9,14 - 379: 9,13 - 380: 9,12 - 407: 30,10 - 408: 29,10 - 409: 27,10 - 410: 28,10 - 411: 26,10 - 412: 24,10 - 413: 25,10 - 414: 23,10 - 415: 22,10 - 416: 21,10 - 417: 20,10 - 418: 19,10 - 419: 18,10 - 420: 17,10 - 421: 16,10 - 422: 15,10 - 423: 14,10 - 424: 13,10 - 425: 12,10 - - node: - color: '#EF5C1F93' - id: QuarterTileOverlayGreyscale90 - decals: - 517: 31,21 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - decals: - 1062: 23,-11 - 1063: 22,-11 - 1064: 21,-11 - 1065: 20,-11 - 1066: 19,-11 - 1444: 31,-12 - - node: - color: '#FFFFFFFF' - id: Rock01 - decals: - 1379: -27.060997,22.876055 - - node: - color: '#FFFFFFFF' - id: Rock05 - decals: - 1380: -25.107872,21.001055 - - node: - color: '#FFFFFFFF' - id: Rock06 - decals: - 1381: -25.060997,22.89168 - - node: - color: '#FFFFFFFF' - id: Rock07 - decals: - 1382: -23.045372,24.001055 - - node: - color: '#FFFFFFFF' - id: StandClear - decals: - 976: -17,-7 - 977: -8,-10 - 978: -8,-15 - 982: -27,-4 - 1132: 10,-27 - 1133: 14,-27 - 1394: 12,26 - - node: - angle: 4.71238898038469 rad - color: '#FFFFFFFF' - id: StandClear - decals: - 1234: -40,22 - - node: - color: '#2BAF9D93' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1438: 31,-17 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale - decals: - 291: -12,31 - 311: -15,31 - 317: 3,19 - 336: -4,32 - 337: -6,31 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale - decals: - 478: 20,7 - 666: -27,11 - 723: -18,21 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1216: 18,-21 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale - decals: - 843: -13,-1 - 915: -19,-1 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale - decals: - 465: 11,10 - 467: 31,18 - 551: 36,13 - 579: 11,15 - - node: - color: '#EF5C1F93' - id: ThreeQuarterTileOverlayGreyscale - decals: - 537: 27,28 - 544: 24,28 - 545: 24,25 - - node: - color: '#EF791B93' - id: ThreeQuarterTileOverlayGreyscale - decals: - 591: 11,6 - 592: 14,6 - 593: 17,6 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1017: 15,-7 - 1068: 18,-11 - 1073: 11,-11 - - node: - color: '#2BAF9D93' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 1440: 33,-19 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 293: -8,26 - 314: -14,30 - 315: 5,18 - 340: 5,21 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 481: 23,5 - 668: -12,5 - 726: -13,18 - - node: - color: '#9D9D97FF' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 1294: 40,33 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 1143: 6,-24 - 1217: 22,-24 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 840: -9,-4 - 918: -15,-7 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 554: 38,10 - 581: 12,12 - - node: - color: '#EF5C1F93' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 540: 30,24 - 541: 33,25 - 542: 25,24 - 543: 25,27 - - node: - color: '#EF791B93' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 597: 12,5 - 598: 15,5 - 599: 18,5 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 984: 13,-9 - 1019: 16,-9 - 1070: 29,-12 - 1071: 16,-12 - 1076: 14,-13 - - node: - color: '#2BAF9D93' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 1439: 31,-19 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 292: -12,26 - 313: -15,30 - 318: 3,18 - 332: 3,21 - 338: 0,23 - 339: -6,27 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 480: 20,5 - 665: -27,9 - 667: -13,5 - 677: -22,8 - 725: -18,18 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 839: -13,-4 - 917: -19,-7 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 464: 11,8 - 553: 36,10 - 578: 11,12 - - node: - color: '#EF5C1F93' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 539: 27,24 - 548: 24,24 - 549: 24,27 - - node: - color: '#EF791B93' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 594: 11,5 - 595: 14,5 - 596: 17,5 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 1011: 18,-9 - 1018: 15,-9 - 1069: 18,-12 - 1074: 11,-13 - 1085: 25,-9 - - node: - color: '#F9801DFF' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 1293: 45,33 - - node: - color: '#2BAF9D93' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 1437: 33,-17 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 290: -8,31 - 312: -14,31 - 316: 5,19 - 333: 5,25 - 334: 1,31 - 335: -1,32 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 479: 23,7 - 724: -13,21 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 1142: 6,-20 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 841: -9,-2 - 842: -12,-1 - 916: -15,-1 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 466: 33,18 - 552: 38,13 - 580: 12,15 - - node: - color: '#EF5C1F93' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 538: 33,28 - 546: 25,28 - 547: 25,25 - - node: - color: '#EF791B93' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 588: 12,6 - 589: 15,6 - 590: 18,6 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 983: 13,-5 - 1012: 23,-4 - 1016: 16,-7 - 1067: 29,-11 - 1072: 16,-11 - - node: - color: '#FFFFFFFF' - id: VentSmall - decals: - 972: -21,-18 - - node: - color: '#FFFFFFFF' - id: WarnBox - decals: - 129: -1,46 - 1270: -7,52 - - node: - color: '#FFFFFFFF' - id: WarnCornerNE - decals: - 134: -2,46 - - node: - color: '#FFFFFFFF' - id: WarnCornerNW - decals: - 5: -9,-15 - 133: -1,45 - 1406: -12,-52 - - node: - color: '#FFFFFFFF' - id: WarnCornerSE - decals: - 209: -2,23 - 1013: 17,-4 - 1376: -41,23 - 1467: 18,-1 - - node: - color: '#FFFFFFFF' - id: WarnCornerSW - decals: - 853: -11,-1 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNE - decals: - 81: -8,49 - 82: -9,50 - 135: -3,46 - 866: -29,-4 - 1233: -40,20 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNW - decals: - 6: -6,-15 - 79: -6,49 - 80: -5,50 - 198: -2,23 - 213: -4,24 - 865: -25,-4 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSE - decals: - 83: -9,54 - 84: -8,55 - 1140: 9,-28 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSW - decals: - 85: -6,55 - 86: -5,54 - 210: -4,26 - 1141: 15,-28 - - node: - color: '#FFFFFFFF' - id: WarnLineE - decals: - 13: -10,-16 - 14: -10,-15 - 15: -10,-14 - 16: -10,-13 - 17: -10,-12 - 74: -9,53 - 75: -9,52 - 76: -9,51 - 136: -2,45 - 137: -2,44 - 207: -2,24 - 208: -2,25 - 862: -29,-3 - 863: -29,-2 - 864: -29,-1 - 1230: -40,21 - 1231: -40,22 - 1232: -40,23 - 1269: -6,52 - - node: - color: '#FFFFFFFF' - id: WarnLineN - decals: - 67: -13,-8 - 68: -12,-8 - 77: -7,55 - 130: -2,47 - 131: -1,47 - 204: -5,23 - 205: -4,23 - 206: -3,23 - 854: -10,-1 - 855: -9,-1 - 1014: 16,-4 - 1015: 15,-4 - 1136: 11,-28 - 1137: 13,-28 - 1138: 14,-28 - 1139: 12,-28 - 1204: 10,-28 - 1266: -7,51 - 1377: -42,23 - 1409: -17,-12 - 1410: -16,-12 - 1428: -18,-16 - 1429: -17,-16 - 1430: -16,-16 - 1431: -18,-12 - 1468: 17,-1 - - node: - color: '#FFFFFFFF' - id: WarnLineS - decals: - 0: -11,-12 - 1: -11,-13 - 2: -11,-14 - 3: -11,-15 - 4: -11,-16 - 7: -9,-16 - 8: -6,-13 - 9: -6,-12 - 10: -6,-14 - 71: -5,52 - 72: -5,51 - 73: -5,53 - 132: -1,44 - 199: -2,25 - 200: -2,24 - 211: -4,25 - 856: -25,-1 - 857: -25,-2 - 858: -25,-3 - 1267: -8,52 - 1407: -12,-53 - 1408: -12,-54 - - node: - color: '#FFFFFFFF' - id: WarnLineW - decals: - 11: -8,-15 - 12: -7,-15 - 69: -13,-8 - 70: -12,-8 - 78: -7,49 - 201: -5,23 - 202: -4,23 - 203: -3,23 - 212: -5,24 - 859: -28,-4 - 860: -27,-4 - 861: -26,-4 - 951: -17,-9 - 952: -16,-9 - 953: -18,-17 - 954: -17,-17 - 955: -16,-17 - 956: -19,-17 - 957: -20,-17 - 970: -21,-17 - 971: -15,-17 - 1268: -7,53 - 1411: -17,-12 - 1412: -16,-12 - 1425: -18,-9 - 1432: -18,-12 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerNe - decals: - 1272: 41,31 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerNw - decals: - 1271: 44,31 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNe - decals: - 257: -4,9 - 258: -1,8 - 259: 3,9 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNw - decals: - 254: 6,9 - 255: 3,8 - 256: -1,9 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSe - decals: - 251: -1,12 - 252: -4,8 - 253: 3,12 - 1242: -8,-27 - 1243: -4,-27 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSw - decals: - 248: 6,8 - 249: -1,12 - 250: 3,12 - 1240: -6,-27 - 1241: -2,-27 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineE - decals: - 243: -1,11 - 244: -1,10 - 245: -1,9 - 246: 3,10 - 247: 3,11 - 1274: 41,30 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineN - decals: - 234: 0,8 - 235: 1,8 - 236: 2,8 - 237: -3,9 - 238: -2,9 - 239: 4,9 - 240: 5,9 - 833: 3,4 - 834: 4,4 - 1275: 40,31 - 1276: 39,31 - 1277: 45,31 - 1278: 46,31 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - decals: - 216: -3,8 - 217: -2,8 - 218: -1,8 - 219: 0,8 - 220: 1,8 - 221: 1,8 - 222: 2,8 - 223: 3,8 - 224: 4,8 - 225: 5,8 - 226: 5,8 - 227: 0,12 - 228: 1,12 - 229: 2,12 - 1238: -7,-27 - 1239: -3,-27 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineW - decals: - 230: 3,11 - 231: 3,11 - 232: 3,9 - 233: 3,10 - 241: -1,10 - 242: -1,11 - 1273: 44,30 - type: DecalGrid - - version: 2 - data: - tiles: - 0,0: - 0: 32767 - 1: 32768 - 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: 65535 - -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,0: - 0: 65535 - -1,1: - 0: 65535 - -1,2: - 0: 65535 - -1,3: - 0: 65535 - -2,-3: - 0: 65535 - -2,-2: - 0: 65535 - -2,-1: - 0: 65535 - -1,-3: - 0: 65535 - -1,-2: - 0: 65535 - -1,-1: - 0: 65535 - 0,-4: - 0: 65535 - 0,-3: - 0: 65535 - 0,-2: - 0: 65535 - 0,-1: - 0: 65535 - 1,-3: - 0: 65535 - 1,-2: - 0: 65535 - 1,-1: - 0: 65535 - 2,-3: - 0: 65535 - 2,-2: - 0: 65535 - 2,-1: - 0: 65535 - -4,4: - 0: 65535 - -4,5: - 0: 65535 - -4,6: - 0: 65535 - -4,7: - 0: 65535 - -3,4: - 0: 65535 - -3,5: - 0: 65535 - -3,6: - 0: 65535 - -3,7: - 0: 65535 - -2,4: - 0: 65535 - -2,5: - 0: 65535 - -2,6: - 0: 65535 - -2,7: - 0: 65535 - -1,4: - 0: 65535 - -1,5: - 0: 65535 - -1,6: - 0: 65535 - -1,7: - 0: 65535 - 0,4: - 0: 65535 - 0,5: - 0: 65535 - 0,6: - 0: 65535 - 0,7: - 0: 65535 - 1,4: - 0: 65535 - 1,5: - 0: 65535 - 1,6: - 0: 65535 - 1,7: - 0: 65535 - -8,1: - 0: 65535 - -8,2: - 0: 65535 - -8,3: - 0: 65535 - -8,0: - 0: 65535 - -7,0: - 0: 65535 - -7,1: - 0: 65535 - -7,2: - 0: 65535 - -7,3: - 0: 65535 - -6,0: - 0: 65535 - -6,1: - 0: 65535 - -6,2: - 0: 65535 - -6,3: - 0: 65535 - -5,0: - 0: 65535 - -5,1: - 0: 65535 - -5,2: - 0: 65535 - -5,3: - 0: 65535 - 4,0: - 0: 65535 - 5,0: - 0: 65535 - 6,0: - 0: 65535 - 0,-7: - 0: 65535 - 0,-6: - 0: 65535 - 0,-5: - 0: 65535 - -8,4: - 0: 65535 - -7,4: - 0: 65535 - -6,4: - 0: 65535 - -6,5: - 0: 65535 - -6,6: - 0: 65535 - -5,4: - 0: 65535 - -5,5: - 0: 65535 - -5,6: - 0: 65535 - -5,7: - 0: 65535 - 0,8: - 0: 32095 - 1,8: - 0: 6559 - -4,8: - 0: 44911 - -3,8: - 0: 28655 - -2,8: - 0: 58287 - -1,8: - 0: 61951 - -5,8: - 0: 28495 - -4,-4: - 0: 65535 - -4,-3: - 0: 65535 - -4,-2: - 0: 65535 - -4,-1: - 0: 65535 - -3,-4: - 0: 65535 - -3,-3: - 0: 65535 - -3,-2: - 0: 65535 - -3,-1: - 0: 65535 - -2,-4: - 0: 65535 - -1,-4: - 0: 65535 - -8,-3: - 0: 65535 - -8,-2: - 0: 65535 - -8,-1: - 0: 65535 - -7,-3: - 0: 65535 - -7,-2: - 0: 65535 - -7,-1: - 0: 65535 - -6,-4: - 0: 65533 - -6,-3: - 0: 65533 - -6,-2: - 0: 65535 - -6,-1: - 0: 65535 - -5,-4: - 0: 65535 - -5,-3: - 0: 65535 - -5,-2: - 0: 65535 - -5,-1: - 0: 65535 - -4,-5: - 0: 65535 - -3,-5: - 0: 65535 - -2,-5: - 0: 65535 - -1,-5: - 0: 65535 - -6,-5: - 0: 65535 - -5,-5: - 0: 65535 - -9,-3: - 0: 65535 - -9,-2: - 0: 65535 - -9,-1: - 0: 65535 - 3,1: - 0: 65535 - 3,2: - 0: 65535 - 3,3: - 0: 65535 - 1,-4: - 0: 65535 - 2,-4: - 0: 65535 - 3,-4: - 0: 65535 - 3,-3: - 0: 65535 - 3,-2: - 0: 65535 - 3,-1: - 0: 65535 - 2,4: - 0: 65535 - 2,5: - 0: 65535 - 2,6: - 0: 65535 - 3,4: - 0: 65535 - 3,5: - 0: 65535 - 4,1: - 0: 65535 - 4,2: - 0: 65535 - 4,3: - 0: 65535 - 5,1: - 0: 65535 - 5,2: - 0: 65535 - 5,3: - 0: 65535 - 6,1: - 0: 65535 - 6,2: - 0: 65535 - 6,3: - 0: 65535 - 7,0: - 0: 65535 - 7,1: - 0: 65535 - 7,2: - 0: 65535 - 7,3: - 0: 65535 - 0,-8: - 0: 65535 - 1,-8: - 0: 65521 - 1,-7: - 0: 65535 - 1,-6: - 0: 65535 - 1,-5: - 0: 65535 - 2,-8: - 0: 65534 - 2,-7: - 0: 65535 - 2,-6: - 0: 65535 - 2,-5: - 0: 65535 - 3,-8: - 0: 65535 - 3,-7: - 0: 65535 - 3,-6: - 0: 65535 - 3,-5: - 0: 65535 - -8,5: - 0: 65535 - -8,6: - 0: 65535 - -7,5: - 0: 65535 - -7,6: - 0: 65535 - -6,7: - 0: 16383 - -7,-4: - 0: 65279 - 2: 256 - -4,-6: - 0: 65535 - -4,-8: - 0: 65534 - -4,-7: - 0: 65535 - -3,-8: - 0: 65535 - -3,-7: - 0: 65535 - -3,-6: - 0: 65535 - -2,-8: - 0: 65535 - -2,-7: - 0: 65535 - -2,-6: - 0: 65535 - -1,-8: - 0: 65535 - -1,-7: - 0: 65535 - -1,-6: - 0: 65535 - -7,-5: - 0: 65535 - -7,-6: - 0: 65535 - -6,-6: - 0: 65535 - -5,-6: - 0: 65535 - 4,4: - 0: 65535 - 5,4: - 0: 65535 - 5,5: - 0: 65535 - 5,6: - 0: 65535 - 5,7: - 0: 65535 - 6,4: - 0: 65535 - 6,5: - 0: 65535 - 6,6: - 0: 65535 - 6,7: - 0: 61951 - 7,4: - 0: 65535 - 7,5: - 0: 65535 - 7,6: - 0: 65535 - 7,7: - 0: 65535 - 8,0: - 0: 65535 - 8,1: - 0: 65535 - 8,2: - 0: 65535 - 8,3: - 0: 65535 - 9,0: - 0: 65535 - 9,1: - 0: 65535 - 9,2: - 0: 65535 - 9,3: - 0: 65535 - 10,0: - 0: 65535 - 10,1: - 0: 65535 - 10,2: - 0: 65535 - 10,3: - 0: 65535 - 11,0: - 0: 65535 - 11,1: - 0: 65535 - 11,2: - 0: 65535 - 11,3: - 0: 65535 - 8,4: - 0: 65535 - 8,5: - 0: 65535 - 8,6: - 0: 65535 - 8,7: - 0: 65535 - 9,4: - 0: 65535 - 9,5: - 0: 65535 - 9,6: - 0: 65535 - 9,7: - 0: 65535 - 10,4: - 0: 65535 - 10,5: - 0: 65535 - 11,4: - 0: 65535 - 8,8: - 0: 65535 - 9,8: - 0: 65535 - 5,8: - 0: 65535 - 6,8: - 0: 65535 - 7,8: - 0: 65535 - 4,-4: - 0: 65535 - 4,-3: - 0: 65535 - 4,-2: - 0: 65535 - 4,-1: - 0: 65535 - 5,-4: - 0: 65535 - 5,-3: - 0: 65535 - 5,-2: - 0: 65535 - 5,-1: - 0: 65535 - 6,-4: - 0: 65535 - 6,-3: - 0: 65535 - 6,-2: - 0: 65535 - 6,-1: - 0: 65535 - 7,-4: - 0: 65535 - 7,-3: - 0: 65535 - 7,-2: - 0: 65535 - 7,-1: - 0: 65535 - 8,-4: - 0: 65535 - 8,-3: - 0: 65535 - 8,-2: - 0: 65535 - 8,-1: - 0: 65535 - 9,-4: - 0: 65535 - 9,-3: - 0: 65535 - 9,-2: - 0: 65535 - 9,-1: - 0: 65535 - 10,-4: - 0: 63479 - 3: 8 - 4: 2048 - 10,-3: - 0: 63479 - 4: 2056 - 10,-2: - 0: 63479 - 5: 8 - 6: 2048 - 10,-1: - 0: 65535 - 11,-4: - 3: 3 - 0: 64764 - 4: 768 - 11,-3: - 4: 771 - 0: 64764 - 11,-2: - 5: 3 - 0: 64764 - 6: 768 - 11,-1: - 0: 65535 - 4,-8: - 0: 65534 - 4,-7: - 0: 65535 - 4,-6: - 0: 65535 - 4,-5: - 0: 65535 - 5,-8: - 0: 65327 - 5,-7: - 0: 65535 - 5,-6: - 0: 65535 - 5,-5: - 0: 65535 - 6,-8: - 0: 61696 - 6,-7: - 0: 65535 - 6,-6: - 0: 65535 - 6,-5: - 0: 65535 - 7,-8: - 0: 28672 - 7,-7: - 0: 23933 - 7,-6: - 0: 63447 - 7,-5: - 0: 65535 - 12,0: - 0: 4369 - 12,1: - 0: 4369 - 12,2: - 0: 4369 - 12,3: - 0: 4369 - 8,-7: - 0: 65327 - 8,-6: - 0: 65331 - 4: 204 - 8,-5: - 0: 65535 - 9,-7: - 0: 32559 - 9,-6: - 4: 17 - 0: 63462 - 9,-5: - 0: 65535 - 10,-7: - 0: 4369 - 10,-6: - 0: 16145 - 10,-5: - 0: 63487 - 4: 2048 - 11,-6: - 0: 40704 - 11,-5: - 0: 64767 - 4: 768 - 0,-9: - 0: 65535 - -3,-9: - 0: 63984 - -2,-9: - 0: 65533 - -1,-9: - 0: 65535 - 12,-4: - 0: 12834 - 12,-3: - 0: 12834 - 12,-2: - 0: 8994 - 12,-1: - 0: 12850 - 12,4: - 0: 12561 - 12,-6: - 0: 8960 - 12,-5: - 0: 8754 - -9,0: - 0: 65535 - 2,7: - 0: 65535 - 3,6: - 0: 65535 - 3,7: - 0: 65535 - -8,7: - 0: 61182 - -7,7: - 0: 65535 - 0,9: - 0: 48826 - 0,10: - 0: 21621 - 0,11: - 0: 63477 - 1,9: - 0: 1 - 1,11: - 0: 64240 - 3,8: - 0: 20479 - -4,9: - 0: 52390 - -4,11: - 0: 41580 - -4,10: - 0: 34952 - -3,9: - 0: 27503 - -3,10: - 0: 65199 - -3,11: - 0: 65518 - -2,9: - 0: 58361 - -2,10: - 0: 64245 - -2,11: - 0: 65535 - -1,9: - 0: 62712 - -1,10: - 0: 62706 - -1,11: - 0: 65535 - -8,8: - 0: 65327 - -8,9: - 0: 65327 - -8,10: - 0: 11183 - -8,11: - 0: 14 - -7,8: - 0: 65375 - -7,9: - 0: 65311 - -7,10: - 0: 43839 - -7,11: - 0: 15 - -6,8: - 0: 32079 - -6,9: - 0: 21845 - -6,10: - 0: 1863 - -8,-4: - 0: 65535 - -8,-8: - 0: 65525 - -8,-7: - 0: 65525 - -8,-6: - 0: 65535 - -8,-5: - 0: 65535 - -7,-8: - 0: 44962 - -7,-7: - 0: 65530 - -6,-8: - 0: 65529 - -6,-7: - 0: 65535 - -5,-8: - 0: 64186 - -5,-7: - 0: 65535 - -12,-4: - 0: 2794 - -11,-4: - 0: 61439 - -11,-3: - 0: 61166 - -11,-2: - 0: 61182 - -11,-1: - 0: 61423 - -10,-4: - 0: 65535 - -10,-3: - 0: 65535 - -10,-2: - 0: 65535 - -10,-1: - 0: 65535 - -9,-4: - 0: 65535 - 4,5: - 0: 65535 - 4,6: - 0: 65535 - 4,7: - 0: 65535 - 10,6: - 0: 65535 - 8,9: - 0: 2047 - 9,9: - 0: 4095 - 4,8: - 0: 61439 - 4,9: - 0: 3823 - 5,9: - 0: 3583 - 6,9: - 0: 2047 - 7,9: - 0: 3327 - -4,-12: - 0: 12031 - -4,-11: - 0: 44722 - -4,-10: - 0: 43770 - -4,-9: - 0: 58610 - -3,-12: - 0: 3007 - -12,0: - 0: 34824 - -12,1: - 0: 2184 - -12,2: - 0: 34816 - -12,3: - 0: 2184 - -11,0: - 0: 65518 - -11,1: - 0: 65535 - -11,2: - 0: 65535 - -11,3: - 0: 61439 - -10,0: - 0: 65535 - -10,1: - 0: 65535 - -10,2: - 0: 65535 - -10,3: - 0: 65535 - -9,1: - 0: 65535 - -9,2: - 0: 65535 - -9,3: - 0: 65535 - -11,4: - 0: 61182 - -11,5: - 0: 61167 - -11,6: - 0: 36527 - -10,4: - 0: 65535 - -10,5: - 0: 65535 - -10,6: - 0: 61167 - -9,4: - 0: 65535 - -9,5: - 0: 65535 - -9,6: - 0: 65535 - -9,7: - 0: 35002 - -12,-6: - 0: 43054 - -12,-5: - 0: 43754 - -11,-7: - 0: 65439 - -11,-6: - 0: 65535 - -11,-5: - 0: 65535 - -10,-7: - 0: 64393 - -10,-6: - 0: 65535 - -10,-5: - 0: 65535 - -10,-8: - 0: 34952 - -9,-8: - 0: 61410 - -9,-7: - 0: 65508 - -9,-6: - 0: 65535 - -9,-5: - 0: 65535 - -10,-10: - 0: 32768 - -10,-9: - 0: 34952 - -9,-10: - 0: 45792 - -9,-9: - 0: 65258 - -8,-10: - 0: 63984 - -8,-9: - 0: 65523 - -7,-10: - 0: 12288 - -7,-9: - 0: 58146 - -6,-12: - 0: 3754 - -6,-11: - 0: 34944 - -6,-10: - 0: 34952 - -6,-9: - 0: 63624 - -5,-12: - 0: 60335 - -5,-11: - 0: 60330 - -5,-10: - 0: 60090 - -5,-9: - 0: 64186 - -9,8: - 0: 17484 - -9,9: - 0: 17484 - -9,10: - 0: 3140 - 0,12: - 0: 65535 - 0,13: - 0: 65535 - 0,14: - 0: 62207 - 0,15: - 0: 48757 - 1,12: - 0: 65471 - 1,13: - 0: 49147 - 1,14: - 0: 63935 - -4,12: - 0: 43694 - -4,13: - 0: 60142 - -4,14: - 0: 28330 - -4,15: - 0: 12 - -3,12: - 0: 65535 - -3,13: - 0: 65535 - -3,14: - 0: 16383 - -3,15: - 0: 15 - -2,12: - 0: 65535 - -2,13: - 0: 65535 - -2,14: - 0: 40959 - -2,15: - 0: 34831 - -1,12: - 0: 65535 - -1,13: - 0: 65535 - -1,14: - 0: 61439 - -1,15: - 0: 53151 - -6,-14: - 0: 34952 - -6,-13: - 0: 60138 - -5,-14: - 0: 65519 - -5,-13: - 0: 65535 - -5,-16: - 0: 11852 - -5,-15: - 0: 44714 - -4,-16: - 0: 32543 - -4,-15: - 0: 12287 - -4,-14: - 0: 65535 - -4,-13: - 0: 65535 - -3,-16: - 0: 8977 - -3,-15: - 0: 8754 - -3,-14: - 0: 49075 - -3,-13: - 0: 48123 - 10,7: - 0: 65535 - 11,5: - 0: 65535 - 11,6: - 0: 65535 - 11,7: - 0: 65535 - 10,8: - 0: 65535 - 10,9: - 0: 239 - 11,8: - 0: 65535 - 11,9: - 0: 255 - 12,5: - 0: 13107 - 12,6: - 0: 13107 - 12,7: - 0: 13107 - 12,8: - 0: 13107 - 12,9: - 0: 49 - 1,-9: - 0: 4369 - -12,-2: - 0: 34952 - -12,-1: - 0: 34952 - -3,-10: - 0: 49152 - -2,-10: - 0: 7936 - -1,-10: - 0: 9984 - -12,-7: - 0: 17484 - 2,8: - 0: 4095 - 3,9: - 0: 14 - -5,9: - 0: 15 - -12,4: - 0: 34952 - -12,5: - 0: 34952 - -12,6: - 0: 136 - -11,7: - 0: 136 - -10,7: - 0: 242 - -2,16: - 0: 34952 - -2,17: - 0: 8 - -1,16: - 0: 52847 - 3: 128 - -1,17: - 0: 245 - 0,16: - 0: 39931 - 0,17: - 0: 124 - 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.14996 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14996 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - type: GridAtmosphere - - type: GasTileOverlay - - type: RadiationGridResistance - - id: Cluster - type: BecomesStation - - type: SpreaderGrid - - type: GridPathfinding - - uid: 12281 - components: - - type: MetaData - - type: Transform - - type: Map - - type: PhysicsMap - - type: Broadphase - - type: OccluderTree - - type: LoadedMap - - type: GridTree - - type: MovedGrids -- proto: AcousticGuitarInstrument - entities: - - uid: 5973 - components: - - pos: 3.5402613,7.6028175 - parent: 1 - type: Transform -- proto: AdvancedCapacitorStockPart - entities: - - uid: 9498 - components: - - pos: -2.8552828,-31.280602 - parent: 1 - type: Transform - - uid: 9500 - components: - - pos: -3.7302828,-31.280602 - parent: 1 - type: Transform -- proto: AdvancedMatterBinStockPart - entities: - - uid: 9499 - components: - - pos: -3.3396578,-31.327477 - parent: 1 - type: Transform -- proto: AirAlarm - entities: - - uid: 8049 - components: - - pos: 29.5,11.5 - parent: 1 - type: Transform - - devices: - - 3203 - - 3204 - - 3205 - - 3219 - - 3327 - - 3217 - - 3213 - - 3214 - - 3215 - - 11609 - - 11608 - - 10602 - - 10601 - - 10599 - - 10600 - - 10548 - - 10550 - type: DeviceList - - uid: 11592 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,27.5 - parent: 1 - type: Transform - - devices: - - 3197 - - 3194 - - 3198 - - 10762 - - 10763 - type: DeviceList - - uid: 11593 - components: - - rot: 3.141592653589793 rad - pos: -2.5,26.5 - parent: 1 - type: Transform - - devices: - - 3193 - - 3192 - - 3196 - - 3194 - - 3195 - - 10748 - - 10751 - - 10749 - - 10750 - - 10724 - - 10727 - - 10725 - - 10726 - type: DeviceList - - uid: 11594 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,22.5 - parent: 1 - type: Transform - - devices: - - 3185 - - 3191 - - 3193 - - 3192 - - 3186 - - 10696 - - 10697 - - 10812 - - 10706 - - 10707 - - 10813 - type: DeviceList - - uid: 11598 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,16.5 - parent: 1 - type: Transform - - devices: - - 5009 - - 5010 - - 5011 - - 3190 - - 3199 - - 3191 - - 3134 - - 3133 - - 46 - - 5004 - - 5003 - - 5002 - - 5000 - - 5001 - - 10665 - - 10664 - - 10821 - - 10814 - type: DeviceList - - uid: 11601 - components: - - pos: 17.5,11.5 - parent: 1 - type: Transform - - devices: - - 3200 - - 3201 - - 3202 - - 1766 - - 1765 - - 3209 - - 3208 - - 3206 - - 3207 - - 3203 - - 3204 - - 3205 - - 10552 - - 10551 - - 10547 - - 10549 - - 10514 - - 10511 - - 10513 - - 10510 - - 10512 - - 10509 - - 11605 - - 11604 - type: DeviceList - - uid: 11611 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,25.5 - parent: 1 - type: Transform - - devices: - - 3224 - - 3225 - - 3226 - - 3227 - - 3228 - - 3220 - - 3221 - - 3222 - - 3223 - - 10658 - - 10663 - - 10662 - - 10660 - - 10661 - - 10659 - type: DeviceList - - uid: 11612 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,10.5 - parent: 1 - type: Transform - - devices: - - 3134 - - 3133 - - 46 - - 3135 - - 3136 - - 3138 - - 3137 - - 11622 - - 11621 - - 11620 - - 11619 - - 11618 - - 11617 - - 11616 - - 11615 - - 11614 - - 10778 - - 10786 - - 10785 - - 10772 - type: DeviceList - - uid: 11623 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,3.5 - parent: 1 - type: Transform - - devices: - - 3143 - - 3141 - - 3142 - - 3139 - - 3140 - - 10247 - - 11176 - - 10773 - - 10246 - type: DeviceList - - uid: 11625 - components: - - pos: -2.5,0.5 - parent: 1 - type: Transform - - devices: - - 3145 - - 3146 - - 3143 - - 3142 - - 11337 - - 10248 - type: DeviceList - - uid: 11630 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,4.5 - parent: 1 - type: Transform - - devices: - - 3120 - - 3119 - - 3118 - - 3149 - - 3150 - - 3151 - - 5508 - - 5498 - - 5495 - - 5008 - - 5003 - - 5002 - - 5004 - - 3135 - - 3136 - - 10994 - - 10995 - type: DeviceList - - uid: 11632 - components: - - pos: -17.5,12.5 - parent: 1 - type: Transform - - devices: - - 3183 - - 3184 - - 3171 - - 3170 - - 3169 - - 3168 - - 3167 - - 3166 - - 3165 - - 3189 - - 3164 - - 3173 - - 3172 - - 10879 - - 10880 - - 10902 - - 10900 - - 11646 - - 11645 - - 10903 - - 10901 - - 10924 - - 10921 - type: DeviceList - - uid: 11634 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,7.5 - parent: 1 - type: Transform - - uid: 11636 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,14.5 - parent: 1 - type: Transform - - devices: - - 10923 - - 10922 - - 3164 - - 3188 - type: DeviceList - - uid: 11638 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,19.5 - parent: 1 - type: Transform - - devices: - - 3187 - - 11637 - - 11643 - - 10967 - - 10972 - - 10971 - - 10969 - - 10968 - - 10970 - type: DeviceList - - uid: 11642 - components: - - pos: -9.5,15.5 - parent: 1 - type: Transform - - devices: - - 3178 - - 3179 - - 3180 - - 3181 - - 10899 - - 10944 - type: DeviceList - - uid: 11647 - components: - - pos: -16.5,4.5 - parent: 1 - type: Transform - - devices: - - 3151 - - 3150 - - 3149 - - 3155 - - 3156 - - 3157 - - 11054 - - 11057 - type: DeviceList - - uid: 11649 - components: - - pos: -27.5,4.5 - parent: 1 - type: Transform - - devices: - - 3151 - - 3150 - - 3149 - - 3155 - - 3156 - - 3157 - - 11054 - - 11057 - - 2284 - - 2094 - - 3160 - - 3272 - - 3273 - - 3158 - - 3159 - - 3161 - - 11058 - - 11055 - - 11059 - - 11042 - type: DeviceList - - uid: 11651 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,10.5 - parent: 1 - type: Transform - - devices: - - 11085 - - 11083 - - 11084 - - 11082 - - 3158 - - 3159 - - 3161 - - 11653 - type: DeviceList - - uid: 11655 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,6.5 - parent: 1 - type: Transform - - devices: - - 2284 - - 2094 - - 3160 - - 3162 - - 3163 - - 11149 - - 11147 - - 11151 - - 11150 - type: DeviceList - - uid: 11657 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-3.5 - parent: 1 - type: Transform - - devices: - - 11162 - - 11174 - - 11163 - - 11175 - - 3272 - - 3273 - type: DeviceList - - uid: 11658 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-6.5 - parent: 1 - type: Transform - - devices: - - 11195 - - 11332 - - 3115 - - 3116 - - 3117 - - 3104 - - 3103 - - 3102 - - 3096 - - 3097 - - 3100 - - 3101 - - 3118 - - 3119 - - 3120 - type: DeviceList - - uid: 11660 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-10.5 - parent: 1 - type: Transform - - devices: - - 11234 - - 11233 - - 3094 - - 3095 - - 3102 - - 3103 - - 3104 - - 3105 - type: DeviceList - - uid: 11661 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-9.5 - parent: 1 - type: Transform - - devices: - - 11667 - type: DeviceList - - uid: 11662 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-13.5 - parent: 1 - type: Transform - - devices: - - 11666 - type: DeviceList - - uid: 11664 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-17.5 - parent: 1 - type: Transform - - devices: - - 11286 - - 11284 - - 11283 - - 11285 - - 3111 - - 3112 - - 3113 - - 3106 - - 3107 - - 3108 - - 3109 - type: DeviceList - - uid: 11670 - components: - - rot: 3.141592653589793 rad - pos: -27.5,-8.5 - parent: 1 - type: Transform - - devices: - - 1979 - - 2283 - - 996 - - 11321 - - 11322 - - 11320 - - 11323 - type: DeviceList - - uid: 11672 - components: - - pos: -17.5,0.5 - parent: 1 - type: Transform - - devices: - - 3091 - - 3090 - - 3109 - - 3093 - - 3092 - - 11260 - - 11261 - - 11331 - - 11330 - type: DeviceList - - uid: 11674 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-10.5 - parent: 1 - type: Transform - - devices: - - 3117 - - 3116 - - 3115 - - 3145 - - 3121 - - 3122 - - 3123 - - 3266 - - 3265 - - 3264 - - 11366 - - 11367 - type: DeviceList - - uid: 11676 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-3.5 - parent: 1 - type: Transform - - devices: - - 3123 - - 3122 - - 3121 - - 11629 - - 11628 - - 11627 - - 3125 - - 3124 - - 3126 - - 3243 - - 10197 - - 10204 - - 3828 - - 7182 - - 10219 - - 10220 - - 1832 - - 3055 - type: DeviceList - - uid: 11678 - components: - - pos: 21.5,-2.5 - parent: 1 - type: Transform - - devices: - - 3229 - - 3230 - - 3233 - - 3232 - - 10160 - - 10161 - - 10112 - - 10113 - - 11687 - - 11688 - type: DeviceList - - uid: 11680 - components: - - pos: 14.5,-9.5 - parent: 1 - type: Transform - - devices: - - 3231 - - 3232 - - 3233 - - 3241 - - 3242 - - 10145 - - 10144 - - 10143 - - 10142 - type: DeviceList - - uid: 11682 - components: - - pos: 24.5,-9.5 - parent: 1 - type: Transform - - devices: - - 3235 - - 3234 - - 3232 - - 3233 - - 3240 - - 10114 - - 10115 - - 11687 - - 11688 - - 11689 - type: DeviceList - - uid: 11684 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-12.5 - parent: 1 - type: Transform - - devices: - - 7152 - - 7151 - - 3236 - - 3237 - - 1222 - - 11686 - type: DeviceList - - uid: 11690 - components: - - pos: 19.5,4.5 - parent: 1 - type: Transform - - devices: - - 3129 - - 3128 - - 3127 - - 3498 - - 3499 - - 10358 - - 10361 - type: DeviceList - - uid: 11692 - components: - - pos: 32.5,4.5 - parent: 1 - type: Transform - - devices: - - 3499 - - 3498 - - 3501 - - 3502 - - 3503 - - 10362 - - 10359 - type: DeviceList - - uid: 11694 - components: - - rot: 3.141592653589793 rad - pos: 40.5,0.5 - parent: 1 - type: Transform - - devices: - - 3503 - - 3502 - - 3501 - - 3504 - - 3505 - - 3506 - - 10360 - - 10363 - type: DeviceList - - uid: 11697 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,10.5 - parent: 1 - type: Transform - - devices: - - 3506 - - 3505 - - 3504 - - 3507 - - 4898 - - 10388 - - 10390 - - 10389 - - 10391 - type: DeviceList - - uid: 11698 - components: - - rot: 3.141592653589793 rad - pos: 40.5,20.5 - parent: 1 - type: Transform - - devices: - - 10413 - - 10414 - type: DeviceList - - uid: 11699 - components: - - rot: 3.141592653589793 rad - pos: 43.5,24.5 - parent: 1 - type: Transform - - devices: - - 4898 - - 4897 - - 11703 - - 11704 - - 10432 - - 10433 - type: DeviceList - - uid: 11700 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,32.5 - parent: 1 - type: Transform - - devices: - - 11703 - - 11704 - - 10448 - - 10450 - - 10449 - - 10451 - type: DeviceList - - uid: 11705 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-13.5 - parent: 1 - type: Transform - - devices: - - 3262 - - 3261 - - 3263 - - 3264 - - 3265 - - 3266 - - 11410 - - 11408 - type: DeviceList - - uid: 11707 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-27.5 - parent: 1 - type: Transform - - devices: - - 3260 - - 3259 - - 3258 - - 3267 - - 3270 - - 3269 - - 3271 - - 3268 - - 11476 - - 11472 - - 11473 - - 11477 - - 11471 - - 11479 - - 11481 - - 11482 - - 11478 - - 11474 - - 11480 - - 11475 - type: DeviceList - - uid: 11709 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-25.5 - parent: 1 - type: Transform - - devices: - - 3584 - - 3585 - - 3586 - - 3587 - - 3263 - - 3262 - - 3261 - - 3260 - - 3259 - - 3258 - - 7083 - - 7084 - - 7085 - - 11409 - - 11411 - type: DeviceList - - uid: 11711 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-30.5 - parent: 1 - type: Transform - - devices: - - 7086 - - 7083 - - 7084 - - 7085 - - 11507 - - 11510 - type: DeviceList - - uid: 11714 - components: - - pos: 10.5,-16.5 - parent: 1 - type: Transform - - devices: - - 3247 - - 3246 - - 3250 - - 3251 - - 3252 - - 3253 - - 2186 - - 11719 - - 11720 - type: DeviceList - - uid: 11718 - components: - - pos: 19.5,-19.5 - parent: 1 - type: Transform - - devices: - - 7250 - - 7249 - - 3595 - - 7301 - - 3257 - - 11589 - - 11587 - - 11588 - - 11590 - type: DeviceList -- proto: AirCanister - entities: - - uid: 6999 - components: - - pos: 37.5,-4.5 - parent: 1 - type: Transform - - uid: 7000 - components: - - pos: 37.5,-3.5 - parent: 1 - type: Transform - - uid: 7004 - components: - - pos: 37.5,-2.5 - parent: 1 - type: Transform - - uid: 7204 - components: - - pos: 10.5,-8.5 - parent: 1 - type: Transform - - uid: 8862 - components: - - pos: -15.5,-20.5 - parent: 1 - type: Transform - - uid: 8867 - components: - - pos: -27.5,-10.5 - parent: 1 - type: Transform - - uid: 8868 - components: - - pos: -34.5,-19.5 - parent: 1 - type: Transform - - uid: 9126 - components: - - pos: 22.5,-18.5 - parent: 1 - type: Transform - - uid: 9180 - components: - - pos: 26.5,-0.5 - parent: 1 - type: Transform - - uid: 9250 - components: - - pos: 33.5,32.5 - parent: 1 - type: Transform - - uid: 9336 - components: - - pos: 35.5,18.5 - parent: 1 - type: Transform - - uid: 9337 - components: - - pos: 21.5,25.5 - parent: 1 - type: Transform - - uid: 9338 - components: - - pos: 7.5,23.5 - parent: 1 - type: Transform - - uid: 9691 - components: - - pos: -17.5,23.5 - parent: 1 - type: Transform - - uid: 9692 - components: - - pos: -7.5,22.5 - parent: 1 - type: Transform - - uid: 12006 - components: - - pos: 11.5,-8.5 - parent: 1 - type: Transform -- proto: Airlock - entities: - - uid: 3575 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-25.5 - parent: 1 - type: Transform - - uid: 3576 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-27.5 - parent: 1 - type: Transform - - uid: 3577 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-27.5 - parent: 1 - type: Transform - - uid: 3600 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-26.5 - parent: 1 - type: Transform - - uid: 3601 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-26.5 - parent: 1 - type: Transform - - uid: 3602 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-26.5 - parent: 1 - type: Transform -- proto: AirlockArmoryLocked - entities: - - uid: 3314 - components: - - pos: 30.5,17.5 - parent: 1 - type: Transform -- proto: AirlockAtmosphericsGlassLocked - entities: - - uid: 3347 - components: - - pos: 33.5,-11.5 - parent: 1 - type: Transform - - uid: 3348 - components: - - pos: 33.5,-10.5 - parent: 1 - type: Transform -- proto: AirlockBrigGlassLocked - entities: - - uid: 3321 - components: - - pos: 10.5,14.5 - parent: 1 - type: Transform - - uid: 3322 - components: - - pos: 10.5,13.5 - parent: 1 - type: Transform - - uid: 3323 - components: - - pos: 11.5,11.5 - parent: 1 - type: Transform - - uid: 3324 - components: - - pos: 12.5,11.5 - parent: 1 - type: Transform - - uid: 4899 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,29.5 - parent: 1 - type: Transform - - uid: 4901 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,29.5 - parent: 1 - type: Transform -- proto: AirlockCaptainLocked - entities: - - uid: 3282 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,28.5 - parent: 1 - type: Transform - - uid: 9651 - components: - - pos: 10.5,26.5 - parent: 1 - type: Transform -- proto: AirlockCargoGlassLocked - entities: - - uid: 3588 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-24.5 - parent: 1 - type: Transform - - uid: 3589 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-26.5 - parent: 1 - type: Transform - - uid: 3590 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-24.5 - parent: 1 - type: Transform - - uid: 3591 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-24.5 - parent: 1 - type: Transform - - uid: 3592 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-21.5 - parent: 1 - type: Transform - - uid: 3593 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-22.5 - parent: 1 - type: Transform -- proto: AirlockChapelLocked - entities: - - uid: 3445 - components: - - pos: -32.5,12.5 - parent: 1 - type: Transform -- proto: AirlockChemistryLocked - entities: - - uid: 3400 - components: - - rot: 3.141592653589793 rad - pos: -14.5,15.5 - parent: 1 - type: Transform -- proto: AirlockChiefEngineerGlassLocked - entities: - - uid: 3344 - components: - - pos: 16.5,-12.5 - parent: 1 - type: Transform -- proto: AirlockChiefMedicalOfficerLocked - entities: - - uid: 3399 - components: - - rot: 3.141592653589793 rad - pos: -17.5,15.5 - parent: 1 - type: Transform -- proto: AirlockCommandGlassLocked - entities: - - uid: 3275 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,20.5 - parent: 1 - type: Transform - - uid: 3276 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,17.5 - parent: 1 - type: Transform - - uid: 3277 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,29.5 - parent: 1 - type: Transform - - uid: 3278 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,30.5 - parent: 1 - type: Transform - - uid: 3279 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,30.5 - parent: 1 - type: Transform - - uid: 3609 - components: - - rot: 3.141592653589793 rad - pos: -9.5,44.5 - parent: 1 - type: Transform - - uid: 4906 - components: - - rot: 3.141592653589793 rad - pos: 43.5,22.5 - parent: 1 - type: Transform -- proto: AirlockCommandLocked - entities: - - uid: 3611 - components: - - rot: 3.141592653589793 rad - pos: -4.5,45.5 - parent: 1 - type: Transform -- proto: AirlockDetectiveLocked - entities: - - uid: 3325 - components: - - pos: 26.5,7.5 - parent: 1 - type: Transform -- proto: AirlockEngineeringGlassLocked - entities: - - uid: 3333 - components: - - pos: 14.5,-7.5 - parent: 1 - type: Transform - - uid: 3334 - components: - - pos: 14.5,-6.5 - parent: 1 - type: Transform - - uid: 3335 - components: - - pos: 27.5,-9.5 - parent: 1 - type: Transform - - uid: 3336 - components: - - pos: 24.5,-7.5 - parent: 1 - type: Transform - - uid: 3337 - components: - - pos: 15.5,-5.5 - parent: 1 - type: Transform - - uid: 3338 - components: - - pos: 16.5,-5.5 - parent: 1 - type: Transform - - uid: 3339 - components: - - pos: 23.5,-9.5 - parent: 1 - type: Transform - - uid: 3340 - components: - - pos: 22.5,-9.5 - parent: 1 - type: Transform - - uid: 3341 - components: - - pos: 17.5,-11.5 - parent: 1 - type: Transform - - uid: 3342 - components: - - pos: 17.5,-10.5 - parent: 1 - type: Transform - - uid: 3343 - components: - - pos: 25.5,-12.5 - parent: 1 - type: Transform - - uid: 3345 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-11.5 - parent: 1 - type: Transform - - uid: 3346 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-10.5 - parent: 1 - type: Transform -- proto: AirlockEngineeringLocked - entities: - - uid: 3357 - components: - - rot: 3.141592653589793 rad - pos: 25.5,-19.5 - parent: 1 - type: Transform - - uid: 3359 - components: - - rot: 3.141592653589793 rad - pos: 10.5,20.5 - parent: 1 - type: Transform - - uid: 3360 - components: - - rot: 3.141592653589793 rad - pos: -19.5,25.5 - parent: 1 - type: Transform - - uid: 3361 - components: - - rot: 3.141592653589793 rad - pos: -25.5,28.5 - parent: 1 - type: Transform - - uid: 3362 - components: - - rot: 3.141592653589793 rad - pos: -30.5,-21.5 - parent: 1 - type: Transform - - uid: 3363 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-22.5 - parent: 1 - type: Transform - - uid: 3364 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-19.5 - parent: 1 - type: Transform - - uid: 3557 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,18.5 - parent: 1 - type: Transform - - uid: 4510 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,19.5 - parent: 1 - type: Transform - - uid: 7082 - components: - - name: Tech Vault - type: MetaData - - pos: -0.5,-32.5 - parent: 1 - type: Transform -- proto: AirlockExternal - entities: - - uid: 3550 - components: - - pos: -39.5,-12.5 - parent: 1 - type: Transform - - uid: 8327 - components: - - pos: 10.5,31.5 - parent: 1 - type: Transform -- proto: AirlockExternalGlass - entities: - - uid: 50 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-46.5 - parent: 1 - type: Transform - - uid: 57 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,22.5 - parent: 1 - type: Transform - - uid: 2862 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-47.5 - parent: 1 - type: Transform - - uid: 3051 - components: - - rot: 3.141592653589793 rad - pos: 23.5,36.5 - parent: 1 - type: Transform - - uid: 3052 - components: - - rot: 3.141592653589793 rad - pos: 25.5,36.5 - parent: 1 - type: Transform - - uid: 3053 - components: - - rot: 3.141592653589793 rad - pos: 31.5,36.5 - parent: 1 - type: Transform - - uid: 3054 - components: - - rot: 3.141592653589793 rad - pos: 33.5,36.5 - parent: 1 - type: Transform - - uid: 3067 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,13.5 - parent: 1 - type: Transform - - uid: 3068 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,11.5 - parent: 1 - type: Transform - - uid: 3069 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,5.5 - parent: 1 - type: Transform - - uid: 3070 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,3.5 - parent: 1 - type: Transform - - uid: 5547 - components: - - pos: 1.5,-34.5 - parent: 1 - type: Transform - - uid: 12282 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,12.5 - parent: 1 - type: Transform - - uid: 12283 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,5.5 - parent: 1 - type: Transform -- proto: AirlockExternalGlassCargoLocked - entities: - - uid: 1523 - components: - - pos: 23.5,-23.5 - parent: 1 - type: Transform - - uid: 1717 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-28.5 - parent: 1 - type: Transform - - uid: 1720 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-28.5 - parent: 1 - type: Transform - - uid: 1752 - components: - - pos: 25.5,-25.5 - parent: 1 - type: Transform -- proto: AirlockExternalGlassEngineeringLocked - entities: - - uid: 3571 - components: - - rot: 3.141592653589793 rad - pos: -35.5,-24.5 - parent: 1 - type: Transform - - uid: 3572 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-22.5 - parent: 1 - type: Transform - - uid: 3573 - components: - - rot: 3.141592653589793 rad - pos: -29.5,31.5 - parent: 1 - type: Transform - - uid: 3574 - components: - - rot: 3.141592653589793 rad - pos: -28.5,30.5 - parent: 1 - type: Transform -- proto: AirlockExternalGlassLocked - entities: - - uid: 3284 - components: - - pos: -17.5,29.5 - parent: 1 - type: Transform - - uid: 3285 - components: - - pos: -16.5,30.5 - parent: 1 - type: Transform - - uid: 3286 - components: - - pos: -17.5,32.5 - parent: 1 - type: Transform - - uid: 3354 - components: - - rot: 3.141592653589793 rad - pos: 29.5,-19.5 - parent: 1 - type: Transform - - uid: 3355 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-20.5 - parent: 1 - type: Transform - - uid: 3607 - components: - - rot: 3.141592653589793 rad - pos: -9.5,43.5 - parent: 1 - type: Transform - - uid: 3608 - components: - - rot: 3.141592653589793 rad - pos: -8.5,45.5 - parent: 1 - type: Transform -- proto: AirlockExternalGlassShuttleArrivals - entities: - - uid: 1268 - components: - - rot: 1.5707963267948966 rad - pos: 48.5,5.5 - parent: 1 - type: Transform - - uid: 1278 - components: - - rot: 1.5707963267948966 rad - pos: 48.5,12.5 - parent: 1 - type: Transform -- proto: AirlockExternalGlassShuttleEmergencyLocked - entities: - - uid: 3059 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,3.5 - parent: 1 - type: Transform - - uid: 3060 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,5.5 - parent: 1 - type: Transform - - uid: 3061 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,11.5 - parent: 1 - type: Transform - - uid: 3062 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,13.5 - parent: 1 - type: Transform -- proto: AirlockExternalGlassShuttleEscape - entities: - - uid: 2998 - components: - - pos: 1.5,-35.5 - parent: 1 - type: Transform - - uid: 4815 - components: - - rot: 1.5707963267948966 rad - pos: 48.5,22.5 - parent: 1 - type: Transform - - uid: 5553 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-10.5 - parent: 1 - type: Transform - - uid: 8326 - components: - - rot: 3.141592653589793 rad - pos: 10.5,34.5 - parent: 1 - type: Transform -- proto: AirlockExternalGlassShuttleLocked - entities: - - uid: 1728 - components: - - pos: 11.5,-31.5 - parent: 1 - type: Transform - - uid: 1729 - components: - - pos: 13.5,-31.5 - parent: 1 - type: Transform - - uid: 3047 - components: - - rot: 3.141592653589793 rad - pos: 33.5,38.5 - parent: 1 - type: Transform - - uid: 3048 - components: - - rot: 3.141592653589793 rad - pos: 31.5,38.5 - parent: 1 - type: Transform - - uid: 3049 - components: - - rot: 3.141592653589793 rad - pos: 25.5,38.5 - parent: 1 - type: Transform - - uid: 3050 - components: - - rot: 3.141592653589793 rad - pos: 23.5,38.5 - parent: 1 - type: Transform -- proto: AirlockFreezerKitchenHydroLocked - entities: - - uid: 3367 - components: - - pos: -0.5,2.5 - parent: 1 - type: Transform - - uid: 3368 - components: - - pos: -3.5,2.5 - parent: 1 - type: Transform -- proto: AirlockGlass - entities: - - uid: 1348 - components: - - pos: 26.5,27.5 - parent: 1 - type: Transform - - uid: 3381 - components: - - rot: 3.141592653589793 rad - pos: -3.5,9.5 - parent: 1 - type: Transform - - uid: 3382 - components: - - pos: -3.5,8.5 - parent: 1 - type: Transform - - uid: 3383 - components: - - rot: 3.141592653589793 rad - pos: 0.5,13.5 - parent: 1 - type: Transform - - uid: 3384 - components: - - rot: 3.141592653589793 rad - pos: 1.5,13.5 - parent: 1 - type: Transform - - uid: 3385 - components: - - rot: 3.141592653589793 rad - pos: 2.5,13.5 - parent: 1 - type: Transform - - uid: 3387 - components: - - pos: 6.5,8.5 - parent: 1 - type: Transform - - uid: 3437 - components: - - pos: -35.5,4.5 - parent: 1 - type: Transform - - uid: 3438 - components: - - pos: -34.5,4.5 - parent: 1 - type: Transform - - uid: 3439 - components: - - pos: -33.5,4.5 - parent: 1 - type: Transform - - uid: 3440 - components: - - pos: -36.5,0.5 - parent: 1 - type: Transform - - uid: 3441 - components: - - pos: -37.5,0.5 - parent: 1 - type: Transform - - uid: 3486 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,1.5 - parent: 1 - type: Transform - - uid: 3487 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,2.5 - parent: 1 - type: Transform - - uid: 3488 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,3.5 - parent: 1 - type: Transform - - uid: 3489 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-10.5 - parent: 1 - type: Transform - - uid: 3490 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-10.5 - parent: 1 - type: Transform - - uid: 3491 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-10.5 - parent: 1 - type: Transform - - uid: 3492 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,1.5 - parent: 1 - type: Transform - - uid: 3493 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,2.5 - parent: 1 - type: Transform - - uid: 3494 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,3.5 - parent: 1 - type: Transform - - uid: 3495 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,1.5 - parent: 1 - type: Transform - - uid: 3496 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,2.5 - parent: 1 - type: Transform - - uid: 3497 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,3.5 - parent: 1 - type: Transform - - uid: 3542 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,1.5 - parent: 1 - type: Transform - - uid: 3543 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,2.5 - parent: 1 - type: Transform - - uid: 3544 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,3.5 - parent: 1 - type: Transform - - uid: 3579 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-23.5 - parent: 1 - type: Transform - - uid: 3580 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-24.5 - parent: 1 - type: Transform - - uid: 3581 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-25.5 - parent: 1 - type: Transform - - uid: 3582 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-26.5 - parent: 1 - type: Transform - - uid: 3796 - components: - - pos: 26.5,25.5 - parent: 1 - type: Transform - - uid: 4909 - components: - - rot: 3.141592653589793 rad - pos: 45.5,24.5 - parent: 1 - type: Transform - - uid: 6295 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,9.5 - parent: 1 - type: Transform -- proto: AirlockHeadOfPersonnelLocked - entities: - - uid: 3287 - components: - - pos: 2.5,21.5 - parent: 1 - type: Transform - - uid: 3288 - components: - - pos: -3.5,20.5 - parent: 1 - type: Transform -- proto: AirlockHeadOfSecurityLocked - entities: - - uid: 3313 - components: - - pos: 30.5,13.5 - parent: 1 - type: Transform -- proto: AirlockHydroponicsLocked - entities: - - uid: 3144 - components: - - pos: -3.5,-2.5 - parent: 1 - type: Transform -- proto: AirlockJanitorLocked - entities: - - uid: 3366 - components: - - name: Jani Closet - type: MetaData - - rot: 3.141592653589793 rad - pos: 10.5,-1.5 - parent: 1 - type: Transform -- proto: AirlockMaint - entities: - - uid: 1021 - components: - - rot: 3.141592653589793 rad - pos: -30.5,-18.5 - parent: 1 - type: Transform - - uid: 3545 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-23.5 - parent: 1 - type: Transform - - uid: 3546 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-23.5 - parent: 1 - type: Transform - - uid: 3547 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-15.5 - parent: 1 - type: Transform - - uid: 3548 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-21.5 - parent: 1 - type: Transform - - uid: 3551 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,22.5 - parent: 1 - type: Transform - - uid: 3552 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,31.5 - parent: 1 - type: Transform - - uid: 3553 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,31.5 - parent: 1 - type: Transform - - uid: 3554 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,31.5 - parent: 1 - type: Transform - - uid: 3555 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,31.5 - parent: 1 - type: Transform - - uid: 12517 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-27.5 - parent: 1 - type: Transform -- proto: AirlockMaintAtmoLocked - entities: - - uid: 1305 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-17.5 - parent: 1 - type: Transform - - uid: 6988 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-1.5 - parent: 1 - type: Transform -- proto: AirlockMaintCargoLocked - entities: - - uid: 3598 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-19.5 - parent: 1 - type: Transform - - uid: 3599 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-16.5 - parent: 1 - type: Transform -- proto: AirlockMaintChapelLocked - entities: - - uid: 3444 - components: - - pos: -30.5,15.5 - parent: 1 - type: Transform -- proto: AirlockMaintCommandLocked - entities: - - uid: 3280 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,25.5 - parent: 1 - type: Transform - - uid: 3281 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,24.5 - parent: 1 - type: Transform - - uid: 4907 - components: - - rot: 3.141592653589793 rad - pos: 38.5,22.5 - parent: 1 - type: Transform -- proto: AirlockMaintEngiLocked - entities: - - uid: 3330 - components: - - pos: 20.5,-2.5 - parent: 1 - type: Transform - - uid: 3331 - components: - - pos: 25.5,-16.5 - parent: 1 - type: Transform - - uid: 3332 - components: - - pos: 13.5,-13.5 - parent: 1 - type: Transform -- proto: AirlockMaintJanitorLocked - entities: - - uid: 3365 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-1.5 - parent: 1 - type: Transform -- proto: AirlockMaintLocked - entities: - - uid: 1666 - components: - - pos: -10.5,-23.5 - parent: 1 - type: Transform - - uid: 3291 - components: - - pos: 8.5,18.5 - parent: 1 - type: Transform - - uid: 3292 - components: - - pos: 30.5,20.5 - parent: 1 - type: Transform - - uid: 3293 - components: - - pos: 30.5,21.5 - parent: 1 - type: Transform - - uid: 3294 - components: - - pos: 35.5,20.5 - parent: 1 - type: Transform - - uid: 3295 - components: - - pos: 35.5,21.5 - parent: 1 - type: Transform - - uid: 3296 - components: - - pos: 43.5,15.5 - parent: 1 - type: Transform - - uid: 3297 - components: - - pos: 31.5,4.5 - parent: 1 - type: Transform - - uid: 3298 - components: - - pos: 19.5,0.5 - parent: 1 - type: Transform - - uid: 3299 - components: - - pos: 44.5,0.5 - parent: 1 - type: Transform - - uid: 3300 - components: - - pos: 31.5,-9.5 - parent: 1 - type: Transform - - uid: 3301 - components: - - pos: 31.5,-12.5 - parent: 1 - type: Transform - - uid: 3302 - components: - - pos: 4.5,-11.5 - parent: 1 - type: Transform - - uid: 3303 - components: - - pos: -0.5,-11.5 - parent: 1 - type: Transform - - uid: 3304 - components: - - pos: -19.5,-23.5 - parent: 1 - type: Transform - - uid: 3305 - components: - - pos: -35.5,-6.5 - parent: 1 - type: Transform - - uid: 3306 - components: - - pos: -30.5,-0.5 - parent: 1 - type: Transform - - uid: 3307 - components: - - pos: -28.5,5.5 - parent: 1 - type: Transform - - uid: 3308 - components: - - pos: -38.5,15.5 - parent: 1 - type: Transform - - uid: 3309 - components: - - pos: -6.5,16.5 - parent: 1 - type: Transform - - uid: 3840 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,0.5 - parent: 1 - type: Transform - - uid: 4896 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,26.5 - parent: 1 - type: Transform -- proto: AirlockMaintMedLocked - entities: - - uid: 3394 - components: - - rot: 3.141592653589793 rad - pos: -27.5,10.5 - parent: 1 - type: Transform - - uid: 3395 - components: - - rot: 3.141592653589793 rad - pos: -23.5,17.5 - parent: 1 - type: Transform - - uid: 3396 - components: - - rot: 3.141592653589793 rad - pos: -13.5,22.5 - parent: 1 - type: Transform -- proto: AirlockMaintRnDLocked - entities: - - uid: 3428 - components: - - pos: -25.5,-8.5 - parent: 1 - type: Transform - - uid: 3429 - components: - - pos: -13.5,-17.5 - parent: 1 - type: Transform - - uid: 3431 - components: - - pos: -11.5,-16.5 - parent: 1 - type: Transform -- proto: AirlockMaintSalvageLocked - entities: - - uid: 3597 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-19.5 - parent: 1 - type: Transform -- proto: AirlockMaintSecLocked - entities: - - uid: 3328 - components: - - pos: 22.5,16.5 - parent: 1 - type: Transform - - uid: 3329 - components: - - pos: 32.5,7.5 - parent: 1 - type: Transform -- proto: AirlockMedicalGlassLocked - entities: - - uid: 1859 - components: - - pos: -15.5,7.5 - parent: 1 - type: Transform - - uid: 1860 - components: - - pos: -14.5,7.5 - parent: 1 - type: Transform - - uid: 3388 - components: - - rot: 3.141592653589793 rad - pos: -10.5,9.5 - parent: 1 - type: Transform - - uid: 3389 - components: - - rot: 3.141592653589793 rad - pos: -10.5,10.5 - parent: 1 - type: Transform - - uid: 3390 - components: - - rot: 3.141592653589793 rad - pos: -10.5,6.5 - parent: 1 - type: Transform - - uid: 3391 - components: - - rot: 3.141592653589793 rad - pos: -10.5,5.5 - parent: 1 - type: Transform - - uid: 3392 - components: - - rot: 3.141592653589793 rad - pos: -24.5,8.5 - parent: 1 - type: Transform -- proto: AirlockMedicalLocked - entities: - - uid: 734 - components: - - pos: 22.5,4.5 - parent: 1 - type: Transform - - uid: 3393 - components: - - rot: 3.141592653589793 rad - pos: -23.5,12.5 - parent: 1 - type: Transform - - uid: 3560 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,21.5 - parent: 1 - type: Transform -- proto: AirlockQuartermasterLocked - entities: - - uid: 3596 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-17.5 - parent: 1 - type: Transform -- proto: AirlockResearchDirectorLocked - entities: - - uid: 3411 - components: - - pos: -19.5,-2.5 - parent: 1 - type: Transform -- proto: AirlockSalvageGlassLocked - entities: - - uid: 1530 - components: - - pos: 17.5,-22.5 - parent: 1 - type: Transform - - uid: 7248 - components: - - pos: 17.5,-21.5 - parent: 1 - type: Transform -- proto: AirlockScienceGlassLocked - entities: - - uid: 3412 - components: - - pos: -26.5,-4.5 - parent: 1 - type: Transform - - uid: 3413 - components: - - pos: -23.5,-5.5 - parent: 1 - type: Transform - - uid: 3414 - components: - - pos: -23.5,-6.5 - parent: 1 - type: Transform - - uid: 3415 - components: - - pos: -19.5,-5.5 - parent: 1 - type: Transform - - uid: 3416 - components: - - pos: -19.5,-6.5 - parent: 1 - type: Transform - - uid: 3417 - components: - - pos: -16.5,-7.5 - parent: 1 - type: Transform - - uid: 3418 - components: - - pos: -13.5,-5.5 - parent: 1 - type: Transform - - uid: 3419 - components: - - pos: -13.5,-6.5 - parent: 1 - type: Transform - - uid: 3420 - components: - - pos: -12.5,-4.5 - parent: 1 - type: Transform - - uid: 3421 - components: - - pos: -11.5,-4.5 - parent: 1 - type: Transform - - uid: 3422 - components: - - pos: -12.5,-7.5 - parent: 1 - type: Transform - - uid: 3423 - components: - - pos: -11.5,-7.5 - parent: 1 - type: Transform - - uid: 3424 - components: - - pos: -10.5,-6.5 - parent: 1 - type: Transform - - uid: 3425 - components: - - pos: -10.5,-5.5 - parent: 1 - type: Transform - - uid: 3426 - components: - - pos: -18.5,-13.5 - parent: 1 - type: Transform - - uid: 3427 - components: - - pos: -18.5,-9.5 - parent: 1 - type: Transform -- proto: AirlockSecurityGlassLocked - entities: - - uid: 3310 - components: - - pos: 15.5,11.5 - parent: 1 - type: Transform - - uid: 3311 - components: - - pos: 21.5,11.5 - parent: 1 - type: Transform - - uid: 3312 - components: - - pos: 20.5,11.5 - parent: 1 - type: Transform - - uid: 3315 - components: - - pos: 32.5,19.5 - parent: 1 - type: Transform - - uid: 3316 - components: - - pos: 33.5,19.5 - parent: 1 - type: Transform - - uid: 3317 - components: - - pos: 32.5,22.5 - parent: 1 - type: Transform - - uid: 3318 - components: - - pos: 33.5,22.5 - parent: 1 - type: Transform - - uid: 3319 - components: - - pos: 32.5,24.5 - parent: 1 - type: Transform - - uid: 3320 - components: - - pos: 33.5,24.5 - parent: 1 - type: Transform -- proto: AirlockSecurityLocked - entities: - - uid: 2351 - components: - - pos: 18.5,21.5 - parent: 1 - type: Transform -- proto: AirlockServiceGlassLocked - entities: - - uid: 3369 - components: - - pos: 3.5,-6.5 - parent: 1 - type: Transform - - uid: 3370 - components: - - pos: 6.5,2.5 - parent: 1 - type: Transform - - uid: 3371 - components: - - rot: 3.141592653589793 rad - pos: 4.5,4.5 - parent: 1 - type: Transform - - uid: 3373 - components: - - pos: 4.5,-0.5 - parent: 1 - type: Transform - - uid: 3374 - components: - - pos: 6.5,-3.5 - parent: 1 - type: Transform -- proto: AirlockServiceLocked - entities: - - uid: 3442 - components: - - pos: -37.5,-8.5 - parent: 1 - type: Transform - - uid: 3443 - components: - - pos: -35.5,-10.5 - parent: 1 - type: Transform -- proto: AirlockTheatreLocked - entities: - - uid: 3578 - components: - - name: Theatre Room - type: MetaData - - rot: 3.141592653589793 rad - pos: -11.5,-27.5 - parent: 1 - type: Transform -- proto: AirlockVirologyLocked - entities: - - uid: 3397 - components: - - rot: 3.141592653589793 rad - pos: -16.5,17.5 - parent: 1 - type: Transform - - uid: 3398 - components: - - rot: 3.141592653589793 rad - pos: -15.5,17.5 - parent: 1 - type: Transform -- proto: AirSensor - entities: - - uid: 11666 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-13.5 - parent: 1 - type: Transform - - uid: 11667 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-9.5 - parent: 1 - type: Transform -- proto: AltarSpawner - entities: - - uid: 3467 - components: - - pos: -34.5,9.5 - parent: 1 - type: Transform -- proto: AmeController - entities: - - uid: 6778 - components: - - pos: 29.5,-6.5 - parent: 1 - type: Transform -- proto: AmePart - entities: - - uid: 6775 - components: - - flags: InContainer - type: MetaData - - parent: 6774 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 6776 - components: - - flags: InContainer - type: MetaData - - parent: 6774 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 6777 - components: - - flags: InContainer - type: MetaData - - parent: 6774 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: AnalysisComputerCircuitboard - entities: - - uid: 9509 - components: - - pos: -4.5700207,-34.400963 - parent: 1 - type: Transform -- proto: AnomalyScanner - entities: - - uid: 6083 - components: - - pos: -28.443977,-5.4184704 - parent: 1 - type: Transform - - uid: 6084 - components: - - pos: -28.568977,-5.2934704 - parent: 1 - type: Transform -- proto: APCBasic - entities: - - uid: 1872 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,7.5 - parent: 1 - type: Transform - - uid: 1886 - components: - - pos: -24.5,12.5 - parent: 1 - type: Transform - - uid: 1887 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,13.5 - parent: 1 - type: Transform - - uid: 1889 - components: - - rot: 3.141592653589793 rad - pos: -14.5,17.5 - parent: 1 - type: Transform - - uid: 1929 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,29.5 - parent: 1 - type: Transform - - uid: 1930 - components: - - rot: 3.141592653589793 rad - pos: -0.5,26.5 - parent: 1 - type: Transform - - uid: 1931 - components: - - pos: 1.5,22.5 - parent: 1 - type: Transform - - uid: 1932 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-19.5 - parent: 1 - type: Transform - - uid: 1933 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-7.5 - parent: 1 - type: Transform - - uid: 1934 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-16.5 - parent: 1 - type: Transform - - uid: 1935 - components: - - pos: -14.5,0.5 - parent: 1 - type: Transform - - uid: 1942 - components: - - pos: -0.5,-0.5 - parent: 1 - type: Transform - - uid: 1945 - components: - - pos: 13.5,11.5 - parent: 1 - type: Transform - - uid: 1946 - components: - - pos: 26.5,11.5 - parent: 1 - type: Transform - - uid: 1947 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,17.5 - parent: 1 - type: Transform - - uid: 1948 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,27.5 - parent: 1 - type: Transform - - uid: 2442 - components: - - pos: -31.5,-21.5 - parent: 1 - type: Transform - - uid: 2870 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-49.5 - parent: 1 - type: Transform - - uid: 3685 - components: - - rot: 3.141592653589793 rad - pos: -2.5,43.5 - parent: 1 - type: Transform - - uid: 3686 - components: - - pos: -6.5,57.5 - parent: 1 - type: Transform - - uid: 3687 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,52.5 - parent: 1 - type: Transform - - uid: 6248 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,0.5 - parent: 1 - type: Transform - - uid: 6278 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,7.5 - parent: 1 - type: Transform - - uid: 6521 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-15.5 - parent: 1 - type: Transform - - uid: 6522 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-27.5 - parent: 1 - type: Transform - - uid: 6523 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-25.5 - parent: 1 - type: Transform - - uid: 6525 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-12.5 - parent: 1 - type: Transform - - uid: 6526 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-5.5 - parent: 1 - type: Transform - - uid: 6527 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-14.5 - parent: 1 - type: Transform - - uid: 6780 - components: - - pos: 17.5,-2.5 - parent: 1 - type: Transform - - uid: 7088 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-19.5 - parent: 1 - type: Transform - - uid: 7089 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-28.5 - parent: 1 - type: Transform - - uid: 7090 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-21.5 - parent: 1 - type: Transform - - uid: 7555 - components: - - pos: -39.5,24.5 - parent: 1 - type: Transform - - uid: 7574 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,9.5 - parent: 1 - type: Transform - - uid: 7575 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,14.5 - parent: 1 - type: Transform - - uid: 7580 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-8.5 - parent: 1 - type: Transform - - uid: 7766 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-33.5 - parent: 1 - type: Transform - - uid: 8020 - components: - - rot: 3.141592653589793 rad - pos: 28.5,0.5 - parent: 1 - type: Transform - - uid: 8021 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,14.5 - parent: 1 - type: Transform - - uid: 8022 - components: - - pos: 41.5,24.5 - parent: 1 - type: Transform - - uid: 8023 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,28.5 - parent: 1 - type: Transform - - uid: 8189 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-2.5 - parent: 1 - type: Transform - - uid: 8330 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-11.5 - parent: 1 - type: Transform - - uid: 8383 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-18.5 - parent: 1 - type: Transform - - uid: 8415 - components: - - rot: 3.141592653589793 rad - pos: 34.5,32.5 - parent: 1 - type: Transform - - uid: 9183 - components: - - rot: 3.141592653589793 rad - pos: -26.5,28.5 - parent: 1 - type: Transform - - uid: 9740 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,24.5 - parent: 1 - type: Transform - - uid: 12568 - components: - - pos: -33.5,-14.5 - parent: 1 - type: Transform -- proto: APCElectronics - entities: - - uid: 9513 - components: - - pos: -1.6168957,-34.369713 - parent: 1 - type: Transform - - uid: 9514 - components: - - pos: -1.6168957,-34.604088 - parent: 1 - type: Transform -- proto: AppleSeeds - entities: - - uid: 5464 - components: - - pos: 29.131155,27.228777 - parent: 1 - type: Transform - - uid: 5465 - components: - - pos: 28.162405,27.582066 - parent: 1 - type: Transform -- proto: AppraisalTool - entities: - - uid: 7423 - components: - - pos: 11.436758,-20.269583 - parent: 1 - type: Transform - - uid: 7424 - components: - - pos: 11.639883,-20.394583 - parent: 1 - type: Transform -- proto: ArtifactAnalyzerMachineCircuitboard - entities: - - uid: 9508 - components: - - pos: -4.4293957,-34.588463 - parent: 1 - type: Transform -- proto: AtmosDeviceFanTiny - entities: - - uid: 1949 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,12.5 - parent: 1 - type: Transform - - uid: 1950 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,5.5 - parent: 1 - type: Transform - - uid: 1954 - components: - - pos: 13.5,-31.5 - parent: 1 - type: Transform - - uid: 1955 - components: - - pos: 11.5,-31.5 - parent: 1 - type: Transform - - uid: 3001 - components: - - pos: 1.5,-34.5 - parent: 1 - type: Transform - - uid: 3063 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,13.5 - parent: 1 - type: Transform - - uid: 3064 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,11.5 - parent: 1 - type: Transform - - uid: 3065 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,5.5 - parent: 1 - type: Transform - - uid: 3066 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,3.5 - parent: 1 - type: Transform - - uid: 3147 - components: - - pos: -0.5,2.5 - parent: 1 - type: Transform - - uid: 3148 - components: - - pos: -3.5,2.5 - parent: 1 - type: Transform - - uid: 4816 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,22.5 - parent: 1 - type: Transform - - uid: 7073 - components: - - pos: -42.5,-10.5 - parent: 1 - type: Transform - - uid: 8324 - components: - - pos: 10.5,34.5 - parent: 1 - type: Transform - - uid: 12494 - components: - - rot: 3.141592653589793 rad - pos: 23.5,38.5 - parent: 1 - type: Transform - - uid: 12495 - components: - - rot: 3.141592653589793 rad - pos: 25.5,38.5 - parent: 1 - type: Transform - - uid: 12496 - components: - - rot: 3.141592653589793 rad - pos: 31.5,38.5 - parent: 1 - type: Transform - - uid: 12497 - components: - - rot: 3.141592653589793 rad - pos: 33.5,38.5 - parent: 1 - type: Transform -- proto: AtmosFixBlockerMarker - entities: - - uid: 7260 - components: - - pos: 43.5,-9.5 - parent: 1 - type: Transform - - uid: 7261 - components: - - pos: 44.5,-9.5 - parent: 1 - type: Transform - - uid: 7262 - components: - - pos: 45.5,-9.5 - parent: 1 - type: Transform - - uid: 7263 - components: - - pos: 43.5,-11.5 - parent: 1 - type: Transform - - uid: 7264 - components: - - pos: 44.5,-11.5 - parent: 1 - type: Transform - - uid: 7265 - components: - - pos: 45.5,-11.5 - parent: 1 - type: Transform - - uid: 7266 - components: - - pos: 43.5,-13.5 - parent: 1 - type: Transform - - uid: 7267 - components: - - pos: 44.5,-13.5 - parent: 1 - type: Transform - - uid: 7268 - components: - - pos: 45.5,-13.5 - parent: 1 - type: Transform - - uid: 7269 - components: - - pos: 43.5,-17.5 - parent: 1 - type: Transform - - uid: 7270 - components: - - pos: 44.5,-17.5 - parent: 1 - type: Transform - - uid: 7271 - components: - - pos: 45.5,-17.5 - parent: 1 - type: Transform - - uid: 7272 - components: - - pos: 34.5,-22.5 - parent: 1 - type: Transform - - uid: 7273 - components: - - pos: 34.5,-23.5 - parent: 1 - type: Transform - - uid: 7274 - components: - - pos: 35.5,-22.5 - parent: 1 - type: Transform - - uid: 7275 - components: - - pos: 35.5,-23.5 - parent: 1 - type: Transform - - uid: 7276 - components: - - pos: 36.5,-22.5 - parent: 1 - type: Transform - - uid: 7277 - components: - - pos: 36.5,-23.5 - parent: 1 - type: Transform -- proto: AtmosFixNitrogenMarker - entities: - - uid: 7251 - components: - - pos: 43.5,-5.5 - parent: 1 - type: Transform - - uid: 7252 - components: - - pos: 44.5,-5.5 - parent: 1 - type: Transform - - uid: 7253 - components: - - pos: 45.5,-5.5 - parent: 1 - type: Transform -- proto: AtmosFixOxygenMarker - entities: - - uid: 7254 - components: - - pos: 43.5,-7.5 - parent: 1 - type: Transform - - uid: 7255 - components: - - pos: 44.5,-7.5 - parent: 1 - type: Transform - - uid: 7256 - components: - - pos: 45.5,-7.5 - parent: 1 - type: Transform -- proto: AtmosFixPlasmaMarker - entities: - - uid: 7257 - components: - - pos: 43.5,-15.5 - parent: 1 - type: Transform - - uid: 7258 - components: - - pos: 44.5,-15.5 - parent: 1 - type: Transform - - uid: 7259 - components: - - pos: 45.5,-15.5 - parent: 1 - type: Transform - - uid: 12339 - components: - - pos: -0.5,65.5 - parent: 1 - type: Transform -- proto: Autolathe - entities: - - uid: 1024 - components: - - pos: 17.5,-3.5 - parent: 1 - type: Transform - - uid: 1878 - components: - - pos: 13.5,-20.5 - parent: 1 - type: Transform - - uid: 3808 - components: - - pos: -8.5,-0.5 - parent: 1 - type: Transform -- proto: BananaPhoneInstrument - entities: - - uid: 12404 - components: - - pos: -9.729915,-30.052383 - parent: 1 - type: Transform -- proto: BananaSeeds - entities: - - uid: 5467 - components: - - pos: 31.256155,27.175816 - parent: 1 - type: Transform -- proto: BannerNanotrasen - entities: - - uid: 4059 - components: - - pos: -9.5,31.5 - parent: 1 - type: Transform -- proto: BannerSecurity - entities: - - uid: 5303 - components: - - pos: 9.5,15.5 - parent: 1 - type: Transform -- proto: Barricade - entities: - - uid: 8278 - components: - - pos: -25.5,-20.5 - parent: 1 - type: Transform -- proto: BarSign - entities: - - uid: 60 - components: - - pos: -0.5,4.5 - parent: 1 - type: Transform -- proto: BassGuitarInstrument - entities: - - uid: 12290 - components: - - pos: -27.503199,41.532513 - parent: 1 - type: Transform -- proto: Beaker - entities: - - uid: 6085 - components: - - pos: -27.912727,-5.4184704 - parent: 1 - type: Transform - - uid: 6086 - components: - - pos: -27.662727,-5.1840954 - parent: 1 - type: Transform -- proto: Bed - entities: - - uid: 1805 - components: - - pos: 25.5,12.5 - parent: 1 - type: Transform - - uid: 1806 - components: - - pos: 27.5,16.5 - parent: 1 - type: Transform - - uid: 1810 - components: - - pos: 25.5,24.5 - parent: 1 - type: Transform - - uid: 1818 - components: - - pos: 25.5,28.5 - parent: 1 - type: Transform - - uid: 1851 - components: - - pos: -20.5,-3.5 - parent: 1 - type: Transform - - uid: 3482 - components: - - pos: -31.5,13.5 - parent: 1 - type: Transform - - uid: 4098 - components: - - pos: 3.5,31.5 - parent: 1 - type: Transform - - uid: 4962 - components: - - pos: -5.5,19.5 - parent: 1 - type: Transform - - uid: 5361 - components: - - pos: 28.5,5.5 - parent: 1 - type: Transform - - uid: 5438 - components: - - pos: 17.5,5.5 - parent: 1 - type: Transform - - uid: 5439 - components: - - pos: 14.5,5.5 - parent: 1 - type: Transform - - uid: 5440 - components: - - pos: 11.5,5.5 - parent: 1 - type: Transform - - uid: 5663 - components: - - pos: 16.5,-15.5 - parent: 1 - type: Transform - - uid: 7442 - components: - - pos: 4.5,-17.5 - parent: 1 - type: Transform - - uid: 7714 - components: - - pos: -5.5,-29.5 - parent: 1 - type: Transform - - uid: 7715 - components: - - pos: -1.5,-29.5 - parent: 1 - type: Transform - - uid: 8261 - components: - - pos: -17.5,-53.5 - parent: 1 - type: Transform - - uid: 9017 - components: - - pos: -38.5,-10.5 - parent: 1 - type: Transform - - uid: 9620 - components: - - pos: 15.5,27.5 - parent: 1 - type: Transform - - uid: 12405 - components: - - pos: -10.5,-28.5 - parent: 1 - type: Transform - - uid: 12406 - components: - - pos: -10.5,-31.5 - parent: 1 - type: Transform - - uid: 12407 - components: - - pos: -13.5,-30.5 - parent: 1 - type: Transform -- proto: BedsheetCaptain - entities: - - uid: 4099 - components: - - pos: 3.5,31.5 - parent: 1 - type: Transform -- proto: BedsheetCE - entities: - - uid: 5662 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-15.5 - parent: 1 - type: Transform -- proto: BedsheetClown - entities: - - uid: 12410 - components: - - pos: -10.5,-31.5 - parent: 1 - type: Transform -- proto: BedsheetCMO - entities: - - uid: 1861 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,16.5 - parent: 1 - type: Transform -- proto: BedsheetCosmos - entities: - - uid: 8262 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-53.5 - parent: 1 - type: Transform - - uid: 12408 - components: - - pos: -13.5,-30.5 - parent: 1 - type: Transform -- proto: BedsheetCult - entities: - - uid: 3481 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,13.5 - parent: 1 - type: Transform -- proto: BedsheetGreen - entities: - - uid: 5619 - components: - - pos: -10.5,18.5 - parent: 1 - type: Transform - - uid: 5620 - components: - - rot: 3.141592653589793 rad - pos: -10.5,21.5 - parent: 1 - type: Transform -- proto: BedsheetHOP - entities: - - uid: 4963 - components: - - pos: -5.5,19.5 - parent: 1 - type: Transform -- proto: BedsheetHOS - entities: - - uid: 5373 - components: - - pos: 25.5,12.5 - parent: 1 - type: Transform -- proto: BedsheetMedical - entities: - - uid: 5621 - components: - - rot: 3.141592653589793 rad - pos: -18.5,5.5 - parent: 1 - type: Transform - - uid: 5622 - components: - - rot: 3.141592653589793 rad - pos: -15.5,5.5 - parent: 1 - type: Transform -- proto: BedsheetMime - entities: - - uid: 12409 - components: - - pos: -10.5,-28.5 - parent: 1 - type: Transform -- proto: BedsheetOrange - entities: - - uid: 5441 - components: - - pos: 14.5,5.5 - parent: 1 - type: Transform - - uid: 5442 - components: - - pos: 11.5,5.5 - parent: 1 - type: Transform - - uid: 5443 - components: - - pos: 17.5,5.5 - parent: 1 - type: Transform -- proto: BedsheetQM - entities: - - uid: 7441 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-17.5 - parent: 1 - type: Transform -- proto: BedsheetRD - entities: - - uid: 1850 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-3.5 - parent: 1 - type: Transform -- proto: BedsheetRed - entities: - - uid: 1807 - components: - - pos: 27.5,16.5 - parent: 1 - type: Transform - - uid: 5362 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,5.5 - parent: 1 - type: Transform -- proto: BedsheetSpawner - entities: - - uid: 7716 - components: - - pos: -5.5,-29.5 - parent: 1 - type: Transform - - uid: 7717 - components: - - pos: -1.5,-29.5 - parent: 1 - type: Transform - - uid: 9018 - components: - - pos: -38.5,-10.5 - parent: 1 - type: Transform -- proto: BedsheetSyndie - entities: - - uid: 1814 - components: - - rot: 3.141592653589793 rad - pos: 25.5,28.5 - parent: 1 - type: Transform - - uid: 1817 - components: - - rot: 3.141592653589793 rad - pos: 25.5,24.5 - parent: 1 - type: Transform - - uid: 9621 - components: - - rot: 3.141592653589793 rad - pos: 15.5,27.5 - parent: 1 - type: Transform -- proto: Bible - entities: - - uid: 7547 - components: - - pos: -31.507103,14.620898 - parent: 1 - type: Transform -- proto: BiomassReclaimer - entities: - - uid: 1921 - components: - - pos: -22.5,14.5 - parent: 1 - type: Transform -- proto: BlastDoor - entities: - - uid: 3218 - components: - - pos: 34.5,11.5 - parent: 1 - type: Transform - - links: - - 5388 - - 5389 - type: DeviceLinkSink - - uid: 3434 - components: - - pos: -21.5,-9.5 - parent: 1 - type: Transform - - links: - - 6338 - type: DeviceLinkSink - - uid: 3435 - components: - - pos: -21.5,-13.5 - parent: 1 - type: Transform - - links: - - 6337 - type: DeviceLinkSink - - uid: 3561 - components: - - pos: -35.5,25.5 - parent: 1 - type: Transform - - links: - - 1978 - type: DeviceLinkSink - - uid: 3795 - components: - - pos: 35.5,-24.5 - parent: 1 - type: Transform - - uid: 7432 - components: - - pos: 10.5,-28.5 - parent: 1 - type: Transform - - links: - - 7436 - type: DeviceLinkSink - - uid: 7433 - components: - - pos: 10.5,-31.5 - parent: 1 - type: Transform - - links: - - 7436 - type: DeviceLinkSink - - uid: 7434 - components: - - pos: 14.5,-31.5 - parent: 1 - type: Transform - - links: - - 7437 - type: DeviceLinkSink - - uid: 7435 - components: - - pos: 14.5,-28.5 - parent: 1 - type: Transform - - links: - - 7437 - type: DeviceLinkSink -- proto: BlastDoorOpen - entities: - - uid: 4064 - components: - - pos: 5.5,32.5 - parent: 1 - type: Transform - - links: - - 4100 - type: DeviceLinkSink - - uid: 4065 - components: - - pos: 4.5,32.5 - parent: 1 - type: Transform - - links: - - 4100 - type: DeviceLinkSink - - uid: 4066 - components: - - pos: 3.5,32.5 - parent: 1 - type: Transform - - links: - - 4100 - type: DeviceLinkSink -- proto: BlockGameArcade - entities: - - uid: 4945 - components: - - rot: 3.141592653589793 rad - pos: 30.5,24.5 - parent: 1 - type: Transform -- proto: Bloodpack - entities: - - uid: 9642 - components: - - pos: -26.340826,24.655668 - parent: 1 - type: Transform - - uid: 9643 - components: - - pos: -26.622076,24.452543 - parent: 1 - type: Transform -- proto: BodyBag_Container - entities: - - uid: 8242 - components: - - pos: -23.819975,23.448257 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 75.31249 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: BookRandom - entities: - - uid: 5577 - components: - - pos: -37.35744,-3.616012 - parent: 1 - type: Transform - - uid: 5578 - components: - - pos: -37.623066,-3.397262 - parent: 1 - type: Transform - - uid: 5579 - components: - - pos: -37.41994,-3.100387 - parent: 1 - type: Transform -- proto: BooksBag - entities: - - uid: 5580 - components: - - pos: -37.421623,-3.3253686 - parent: 1 - type: Transform -- proto: BookshelfFilled - entities: - - uid: 1262 - components: - - pos: -40.5,-3.5 - parent: 1 - type: Transform - - uid: 1271 - components: - - pos: -40.5,-2.5 - parent: 1 - type: Transform - - uid: 1287 - components: - - pos: -41.5,-3.5 - parent: 1 - type: Transform - - uid: 1952 - components: - - pos: -39.5,-3.5 - parent: 1 - type: Transform - - uid: 1961 - components: - - pos: -41.5,-2.5 - parent: 1 - type: Transform - - uid: 1962 - components: - - pos: -39.5,-2.5 - parent: 1 - type: Transform - - uid: 2785 - components: - - pos: -18.5,-48.5 - parent: 1 - type: Transform - - uid: 2802 - components: - - pos: -17.5,-48.5 - parent: 1 - type: Transform - - uid: 4858 - components: - - pos: -39.5,-0.5 - parent: 1 - type: Transform - - uid: 4862 - components: - - pos: -40.5,-0.5 - parent: 1 - type: Transform - - uid: 4870 - components: - - pos: -41.5,-0.5 - parent: 1 - type: Transform - - uid: 4879 - components: - - pos: -38.5,-0.5 - parent: 1 - type: Transform -- proto: BoozeDispenser - entities: - - uid: 5950 - components: - - rot: 3.141592653589793 rad - pos: -1.5,5.5 - parent: 1 - type: Transform - - uid: 8270 - components: - - pos: -14.5,-48.5 - parent: 1 - type: Transform - - uid: 8292 - components: - - pos: -31.5,-12.5 - parent: 1 - type: Transform -- proto: BorgCharger - entities: - - uid: 658 - components: - - pos: -4.5,-12.5 - parent: 1 - type: Transform - - uid: 659 - components: - - pos: -4.5,-11.5 - parent: 1 - type: Transform -- proto: BoxBeaker - entities: - - uid: 5920 - components: - - pos: -10.486181,15.653046 - parent: 1 - type: Transform - - uid: 6050 - components: - - pos: -14.475516,-1.6162148 - parent: 1 - type: Transform -- proto: BoxBeanbag - entities: - - uid: 5430 - components: - - pos: 38.515625,12.538095 - parent: 1 - type: Transform -- proto: BoxBodyBag - entities: - - uid: 5351 - components: - - pos: 23.488127,5.639096 - parent: 1 - type: Transform - - uid: 5699 - components: - - pos: -22.480776,15.689974 - parent: 1 - type: Transform -- proto: BoxFlashbang - entities: - - uid: 5306 - components: - - pos: 21.502325,15.64172 - parent: 1 - type: Transform -- proto: BoxFolderBase - entities: - - uid: 3983 - components: - - rot: 1.5707963267948966 rad - pos: -10.572755,50.565598 - parent: 1 - type: Transform - - uid: 3984 - components: - - rot: 1.5707963267948966 rad - pos: -10.43213,50.690598 - parent: 1 - type: Transform - - uid: 3987 - components: - - rot: 3.141592653589793 rad - pos: -3.5883799,48.565598 - parent: 1 - type: Transform - - uid: 3988 - components: - - pos: -5.510255,56.62389 - parent: 1 - type: Transform - - uid: 3989 - components: - - pos: -5.33838,56.545765 - parent: 1 - type: Transform - - uid: 3992 - components: - - rot: 3.141592653589793 rad - pos: -8.385255,48.646393 - parent: 1 - type: Transform - - uid: 3993 - components: - - rot: 3.141592653589793 rad - pos: -8.510255,48.552643 - parent: 1 - type: Transform - - uid: 6055 - components: - - pos: -16.543133,-2.3470023 - parent: 1 - type: Transform - - uid: 6056 - components: - - pos: -16.746258,-2.5345023 - parent: 1 - type: Transform - - uid: 6057 - components: - - pos: -16.402508,-2.6438773 - parent: 1 - type: Transform -- proto: BoxFolderBlack - entities: - - uid: 5698 - components: - - pos: -22.449526,16.580599 - parent: 1 - type: Transform - - uid: 9636 - components: - - pos: 18.643274,25.583164 - parent: 1 - type: Transform -- proto: BoxFolderBlue - entities: - - uid: 4103 - components: - - pos: -9.648237,29.409079 - parent: 1 - type: Transform - - uid: 4975 - components: - - pos: 4.828023,27.549826 - parent: 1 - type: Transform - - uid: 5094 - components: - - pos: -4.4542303,19.564632 - parent: 1 - type: Transform - - uid: 5338 - components: - - pos: 28.444067,8.501565 - parent: 1 - type: Transform - - uid: 9584 - components: - - pos: 44.920597,31.694736 - parent: 1 - type: Transform - - uid: 9585 - components: - - pos: 44.420597,31.569736 - parent: 1 - type: Transform -- proto: BoxFolderGrey - entities: - - uid: 1883 - components: - - pos: -21.598257,-1.4382241 - parent: 1 - type: Transform - - uid: 1884 - components: - - pos: -21.473257,-1.3444741 - parent: 1 - type: Transform - - uid: 6069 - components: - - pos: -9.343652,-12.375296 - parent: 1 - type: Transform - - uid: 6075 - components: - - pos: -9.593652,-12.547171 - parent: 1 - type: Transform -- proto: BoxFolderRed - entities: - - uid: 4105 - components: - - pos: -9.335737,27.815329 - parent: 1 - type: Transform - - uid: 5096 - components: - - pos: -4.5636053,19.549007 - parent: 1 - type: Transform - - uid: 5337 - components: - - pos: 28.678442,8.532815 - parent: 1 - type: Transform - - uid: 5390 - components: - - pos: 27.618711,13.570517 - parent: 1 - type: Transform - - uid: 5397 - components: - - pos: 28.399961,16.572828 - parent: 1 - type: Transform - - uid: 9586 - components: - - pos: 41.576847,31.538486 - parent: 1 - type: Transform - - uid: 9587 - components: - - pos: 41.029972,31.710361 - parent: 1 - type: Transform -- proto: BoxFolderWhite - entities: - - uid: 1879 - components: - - pos: -19.351341,14.63665 - parent: 1 - type: Transform - - uid: 1880 - components: - - pos: -19.445091,14.558525 - parent: 1 - type: Transform - - uid: 5880 - components: - - pos: -14.371586,5.6317506 - parent: 1 - type: Transform - - uid: 5881 - components: - - pos: -17.378174,5.612771 - parent: 1 - type: Transform -- proto: BoxFolderYellow - entities: - - uid: 5095 - components: - - pos: -4.5011053,19.564632 - parent: 1 - type: Transform - - uid: 5677 - components: - - pos: 18.605122,-14.452038 - parent: 1 - type: Transform - - uid: 6787 - components: - - pos: 12.643603,-12.352579 - parent: 1 - type: Transform - - uid: 6788 - components: - - pos: 12.565478,-12.461954 - parent: 1 - type: Transform - - uid: 7304 - components: - - pos: 13.624326,-23.294518 - parent: 1 - type: Transform - - uid: 7305 - components: - - pos: 13.389951,-23.325768 - parent: 1 - type: Transform - - uid: 7401 - components: - - pos: 5.547744,-21.14656 - parent: 1 - type: Transform - - uid: 7402 - components: - - pos: 5.438369,-21.39656 - parent: 1 - type: Transform - - uid: 7403 - components: - - pos: 11.688369,-18.30281 - parent: 1 - type: Transform - - uid: 7404 - components: - - pos: 11.422744,-18.443436 - parent: 1 - type: Transform - - uid: 7448 - components: - - pos: 5.6525464,-15.315514 - parent: 1 - type: Transform - - uid: 7449 - components: - - pos: 5.4181714,-15.456139 - parent: 1 - type: Transform - - uid: 9600 - components: - - rot: 3.141592653589793 rad - pos: 42.779972,33.663486 - parent: 1 - type: Transform - - uid: 9601 - components: - - rot: 3.141592653589793 rad - pos: 42.358097,33.58536 - parent: 1 - type: Transform -- proto: BoxForensicPad - entities: - - uid: 9318 - components: - - pos: 13.474606,21.591854 - parent: 1 - type: Transform -- proto: BoxHandcuff - entities: - - uid: 5308 - components: - - pos: 21.022184,15.646895 - parent: 1 - type: Transform -- proto: BoxLatexGloves - entities: - - uid: 5903 - components: - - pos: -22.54765,11.635829 - parent: 1 - type: Transform - - uid: 5907 - components: - - pos: -12.516884,19.876278 - parent: 1 - type: Transform -- proto: BoxLethalshot - entities: - - uid: 5428 - components: - - pos: 38.48653,12.471226 - parent: 1 - type: Transform - - uid: 5429 - components: - - pos: 38.502155,12.596226 - parent: 1 - type: Transform -- proto: BoxLightbulb - entities: - - uid: 7667 - components: - - pos: 12.361424,-0.38664222 - parent: 1 - type: Transform -- proto: BoxLightMixed - entities: - - uid: 8911 - components: - - pos: -24.485905,-14.450869 - parent: 1 - type: Transform -- proto: BoxLighttube - entities: - - uid: 7669 - components: - - pos: 12.611424,-0.37101722 - parent: 1 - type: Transform -- proto: BoxMagazinePistol - entities: - - uid: 5423 - components: - - pos: 37.484375,13.569345 - parent: 1 - type: Transform -- proto: BoxMagazinePistolSubMachineGun - entities: - - uid: 5421 - components: - - pos: 36.5625,13.600595 - parent: 1 - type: Transform -- proto: BoxMouthSwab - entities: - - uid: 5906 - components: - - pos: -12.390701,20.206486 - parent: 1 - type: Transform - - uid: 5908 - components: - - pos: -12.415903,19.683134 - parent: 1 - type: Transform - - uid: 12456 - components: - - pos: -1.403451,-0.3365245 - parent: 1 - type: Transform -- proto: BoxPillCanister - entities: - - uid: 5918 - components: - - pos: -10.658056,15.653046 - parent: 1 - type: Transform -- proto: BoxSterileMask - entities: - - uid: 5905 - components: - - pos: -12.531326,20.581486 - parent: 1 - type: Transform - - uid: 6054 - components: - - pos: -14.459891,-1.7880898 - parent: 1 - type: Transform - - uid: 7183 - components: - - pos: -22.431108,11.63326 - parent: 1 - type: Transform -- proto: BoxSyringe - entities: - - uid: 5919 - components: - - pos: -10.345556,15.653046 - parent: 1 - type: Transform - - uid: 6049 - components: - - pos: -14.459891,-1.9287148 - parent: 1 - type: Transform -- proto: BoxZiptie - entities: - - uid: 5309 - components: - - pos: 20.533396,15.646895 - parent: 1 - type: Transform -- proto: BrbSign - entities: - - uid: 12484 - components: - - pos: 0.4449376,21.546635 - parent: 1 - type: Transform -- proto: BriefcaseBrownFilled - entities: - - uid: 5336 - components: - - pos: 28.490942,8.501565 - parent: 1 - type: Transform -- proto: BrigTimer - entities: - - uid: 12485 - components: - - rot: 3.141592653589793 rad - pos: 11.5,7.5 - parent: 1 - type: Transform - - linkedPorts: - 5535: - - Start: Close - - Timer: AutoClose - - Timer: Open - type: DeviceLinkSource - - uid: 12486 - components: - - rot: 3.141592653589793 rad - pos: 14.5,7.5 - parent: 1 - type: Transform - - linkedPorts: - 5536: - - Start: Close - - Timer: AutoClose - - Timer: Open - type: DeviceLinkSource - - uid: 12487 - components: - - rot: 3.141592653589793 rad - pos: 17.5,7.5 - parent: 1 - type: Transform - - linkedPorts: - 5537: - - Start: Close - - Timer: AutoClose - - Timer: Open - type: DeviceLinkSource -- proto: Brutepack - entities: - - uid: 9629 - components: - - pos: 18.279701,27.765732 - parent: 1 - type: Transform -- proto: Bucket - entities: - - uid: 12549 - components: - - pos: -0.29377937,-4.689143 - parent: 1 - type: Transform - - uid: 12550 - components: - - pos: -0.6531544,-4.407893 - parent: 1 - type: Transform -- proto: CableApcExtension - entities: - - uid: 27 - components: - - pos: -12.5,-46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1943 - components: - - pos: 4.5,0.5 - parent: 1 - type: Transform - - uid: 2792 - components: - - pos: -18.5,-49.5 - parent: 1 - type: Transform - - uid: 2797 - components: - - pos: -17.5,-49.5 - parent: 1 - type: Transform - - uid: 2863 - components: - - pos: -11.5,-46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2876 - components: - - pos: -10.5,-49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2877 - components: - - pos: -11.5,-49.5 - parent: 1 - type: Transform - - uid: 2878 - components: - - pos: -12.5,-49.5 - parent: 1 - type: Transform - - uid: 2879 - components: - - pos: -13.5,-49.5 - parent: 1 - type: Transform - - uid: 2880 - components: - - pos: -14.5,-49.5 - parent: 1 - type: Transform - - uid: 2881 - components: - - pos: -15.5,-49.5 - parent: 1 - type: Transform - - uid: 2882 - components: - - pos: -16.5,-49.5 - parent: 1 - type: Transform - - uid: 2883 - components: - - pos: -16.5,-50.5 - parent: 1 - type: Transform - - uid: 2884 - components: - - pos: -16.5,-51.5 - parent: 1 - type: Transform - - uid: 2885 - components: - - pos: -16.5,-52.5 - parent: 1 - type: Transform - - uid: 2886 - components: - - pos: -13.5,-50.5 - parent: 1 - type: Transform - - uid: 2887 - components: - - pos: -13.5,-51.5 - parent: 1 - type: Transform - - uid: 2888 - components: - - pos: -13.5,-52.5 - parent: 1 - type: Transform - - uid: 2889 - components: - - pos: -11.5,-48.5 - parent: 1 - type: Transform - - uid: 2890 - components: - - pos: -11.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3386 - components: - - pos: 6.5,8.5 - parent: 1 - type: Transform - - uid: 3718 - components: - - pos: -2.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3719 - components: - - pos: -2.5,44.5 - parent: 1 - type: Transform - - uid: 3720 - components: - - pos: -2.5,45.5 - parent: 1 - type: Transform - - uid: 3721 - components: - - pos: -1.5,45.5 - parent: 1 - type: Transform - - uid: 3722 - components: - - pos: -4.5,45.5 - parent: 1 - type: Transform - - uid: 3723 - components: - - pos: -3.5,45.5 - parent: 1 - type: Transform - - uid: 3724 - components: - - pos: -5.5,45.5 - parent: 1 - type: Transform - - uid: 3725 - components: - - pos: -6.5,45.5 - parent: 1 - type: Transform - - uid: 3726 - components: - - pos: -7.5,45.5 - parent: 1 - type: Transform - - uid: 3727 - components: - - pos: -8.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3728 - components: - - pos: -9.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3729 - components: - - pos: -6.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3730 - components: - - pos: -6.5,56.5 - parent: 1 - type: Transform - - uid: 3731 - components: - - pos: -6.5,55.5 - parent: 1 - type: Transform - - uid: 3732 - components: - - pos: -5.5,55.5 - parent: 1 - type: Transform - - uid: 3733 - components: - - pos: -4.5,55.5 - parent: 1 - type: Transform - - uid: 3734 - components: - - pos: -4.5,54.5 - parent: 1 - type: Transform - - uid: 3735 - components: - - pos: -4.5,53.5 - parent: 1 - type: Transform - - uid: 3736 - components: - - pos: -4.5,52.5 - parent: 1 - type: Transform - - uid: 3737 - components: - - pos: -4.5,51.5 - parent: 1 - type: Transform - - uid: 3738 - components: - - pos: -4.5,50.5 - parent: 1 - type: Transform - - uid: 3739 - components: - - pos: -4.5,49.5 - parent: 1 - type: Transform - - uid: 3740 - components: - - pos: -5.5,49.5 - parent: 1 - type: Transform - - uid: 3741 - components: - - pos: -6.5,49.5 - parent: 1 - type: Transform - - uid: 3742 - components: - - pos: -7.5,49.5 - parent: 1 - type: Transform - - uid: 3743 - components: - - pos: -8.5,49.5 - parent: 1 - type: Transform - - uid: 3744 - components: - - pos: -8.5,50.5 - parent: 1 - type: Transform - - uid: 3745 - components: - - pos: -8.5,51.5 - parent: 1 - type: Transform - - uid: 3746 - components: - - pos: -8.5,52.5 - parent: 1 - type: Transform - - uid: 3747 - components: - - pos: -8.5,53.5 - parent: 1 - type: Transform - - uid: 3748 - components: - - pos: -8.5,54.5 - parent: 1 - type: Transform - - uid: 3749 - components: - - pos: -8.5,55.5 - parent: 1 - type: Transform - - uid: 3750 - components: - - pos: -7.5,55.5 - parent: 1 - type: Transform - - uid: 3751 - components: - - pos: -9.5,52.5 - parent: 1 - type: Transform - - uid: 3752 - components: - - pos: -3.5,52.5 - parent: 1 - type: Transform - - uid: 3753 - components: - - pos: -6.5,48.5 - parent: 1 - type: Transform - - uid: 3754 - components: - - pos: 4.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3755 - components: - - pos: 3.5,52.5 - parent: 1 - type: Transform - - uid: 3756 - components: - - pos: 2.5,52.5 - parent: 1 - type: Transform - - uid: 3757 - components: - - pos: 1.5,52.5 - parent: 1 - type: Transform - - uid: 3758 - components: - - pos: 0.5,52.5 - parent: 1 - type: Transform - - uid: 3759 - components: - - pos: -0.5,52.5 - parent: 1 - type: Transform - - uid: 3760 - components: - - pos: -1.5,52.5 - parent: 1 - type: Transform - - uid: 3761 - components: - - pos: 1.5,53.5 - parent: 1 - type: Transform - - uid: 3762 - components: - - pos: 1.5,54.5 - parent: 1 - type: Transform - - uid: 3763 - components: - - pos: 1.5,55.5 - parent: 1 - type: Transform - - uid: 3764 - components: - - pos: 1.5,51.5 - parent: 1 - type: Transform - - uid: 3765 - components: - - pos: 1.5,50.5 - parent: 1 - type: Transform - - uid: 3766 - components: - - pos: 1.5,49.5 - parent: 1 - type: Transform - - uid: 4168 - components: - - pos: -12.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4169 - components: - - pos: -12.5,30.5 - parent: 1 - type: Transform - - uid: 4170 - components: - - pos: -13.5,30.5 - parent: 1 - type: Transform - - uid: 4171 - components: - - pos: -14.5,30.5 - parent: 1 - type: Transform - - uid: 4172 - components: - - pos: -15.5,30.5 - parent: 1 - type: Transform - - uid: 4173 - components: - - pos: -16.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4174 - components: - - pos: -17.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4175 - components: - - pos: -17.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4176 - components: - - pos: -11.5,30.5 - parent: 1 - type: Transform - - uid: 4177 - components: - - pos: -10.5,30.5 - parent: 1 - type: Transform - - uid: 4178 - components: - - pos: -9.5,30.5 - parent: 1 - type: Transform - - uid: 4179 - components: - - pos: -9.5,29.5 - parent: 1 - type: Transform - - uid: 4180 - components: - - pos: -9.5,28.5 - parent: 1 - type: Transform - - uid: 4181 - components: - - pos: -9.5,27.5 - parent: 1 - type: Transform - - uid: 4182 - components: - - pos: -9.5,26.5 - parent: 1 - type: Transform - - uid: 4183 - components: - - pos: -0.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4184 - components: - - pos: -0.5,27.5 - parent: 1 - type: Transform - - uid: 4185 - components: - - pos: -0.5,28.5 - parent: 1 - type: Transform - - uid: 4186 - components: - - pos: -0.5,29.5 - parent: 1 - type: Transform - - uid: 4187 - components: - - pos: -1.5,29.5 - parent: 1 - type: Transform - - uid: 4188 - components: - - pos: -2.5,29.5 - parent: 1 - type: Transform - - uid: 4189 - components: - - pos: -3.5,29.5 - parent: 1 - type: Transform - - uid: 4190 - components: - - pos: -4.5,29.5 - parent: 1 - type: Transform - - uid: 4191 - components: - - pos: -3.5,28.5 - parent: 1 - type: Transform - - uid: 4192 - components: - - pos: -3.5,27.5 - parent: 1 - type: Transform - - uid: 4193 - components: - - pos: -3.5,26.5 - parent: 1 - type: Transform - - uid: 4194 - components: - - pos: -3.5,25.5 - parent: 1 - type: Transform - - uid: 4195 - components: - - pos: -3.5,24.5 - parent: 1 - type: Transform - - uid: 4196 - components: - - pos: -2.5,24.5 - parent: 1 - type: Transform - - uid: 4197 - components: - - pos: -1.5,30.5 - parent: 1 - type: Transform - - uid: 4198 - components: - - pos: -1.5,31.5 - parent: 1 - type: Transform - - uid: 4199 - components: - - pos: -4.5,30.5 - parent: 1 - type: Transform - - uid: 4200 - components: - - pos: 0.5,29.5 - parent: 1 - type: Transform - - uid: 4201 - components: - - pos: 1.5,29.5 - parent: 1 - type: Transform - - uid: 4202 - components: - - pos: 1.5,28.5 - parent: 1 - type: Transform - - uid: 4203 - components: - - pos: 1.5,27.5 - parent: 1 - type: Transform - - uid: 4204 - components: - - pos: 1.5,26.5 - parent: 1 - type: Transform - - uid: 4205 - components: - - pos: 1.5,25.5 - parent: 1 - type: Transform - - uid: 4206 - components: - - pos: 1.5,24.5 - parent: 1 - type: Transform - - uid: 4207 - components: - - pos: 2.5,28.5 - parent: 1 - type: Transform - - uid: 4208 - components: - - pos: 3.5,28.5 - parent: 1 - type: Transform - - uid: 4209 - components: - - pos: 4.5,28.5 - parent: 1 - type: Transform - - uid: 4210 - components: - - pos: 4.5,29.5 - parent: 1 - type: Transform - - uid: 4211 - components: - - pos: 4.5,30.5 - parent: 1 - type: Transform - - uid: 4212 - components: - - pos: 1.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4213 - components: - - pos: 1.5,21.5 - parent: 1 - type: Transform - - uid: 4214 - components: - - pos: 1.5,20.5 - parent: 1 - type: Transform - - uid: 4215 - components: - - pos: 0.5,20.5 - parent: 1 - type: Transform - - uid: 4216 - components: - - pos: -0.5,20.5 - parent: 1 - type: Transform - - uid: 4217 - components: - - pos: -1.5,20.5 - parent: 1 - type: Transform - - uid: 4218 - components: - - pos: -2.5,20.5 - parent: 1 - type: Transform - - uid: 4219 - components: - - pos: -3.5,20.5 - parent: 1 - type: Transform - - uid: 4220 - components: - - pos: -4.5,20.5 - parent: 1 - type: Transform - - uid: 4221 - components: - - pos: 1.5,19.5 - parent: 1 - type: Transform - - uid: 4222 - components: - - pos: 2.5,21.5 - parent: 1 - type: Transform - - uid: 4223 - components: - - pos: 3.5,21.5 - parent: 1 - type: Transform - - uid: 4224 - components: - - pos: 4.5,21.5 - parent: 1 - type: Transform - - uid: 4225 - components: - - pos: 4.5,20.5 - parent: 1 - type: Transform - - uid: 4226 - components: - - pos: 4.5,19.5 - parent: 1 - type: Transform - - uid: 4227 - components: - - pos: 4.5,18.5 - parent: 1 - type: Transform - - uid: 4228 - components: - - pos: 4.5,22.5 - parent: 1 - type: Transform - - uid: 4229 - components: - - pos: 4.5,23.5 - parent: 1 - type: Transform - - uid: 4230 - components: - - pos: 4.5,24.5 - parent: 1 - type: Transform - - uid: 4231 - components: - - pos: 5.5,24.5 - parent: 1 - type: Transform - - uid: 4232 - components: - - pos: 3.5,24.5 - parent: 1 - type: Transform - - uid: 4233 - components: - - pos: -9.5,31.5 - parent: 1 - type: Transform - - uid: 4234 - components: - - pos: -4.5,31.5 - parent: 1 - type: Transform - - uid: 4235 - components: - - pos: -1.5,32.5 - parent: 1 - type: Transform - - uid: 4236 - components: - - pos: 4.5,31.5 - parent: 1 - type: Transform - - uid: 4801 - components: - - pos: 1.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4802 - components: - - pos: 0.5,18.5 - parent: 1 - type: Transform - - uid: 4803 - components: - - pos: -0.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4804 - components: - - pos: -1.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4805 - components: - - pos: -2.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4806 - components: - - pos: -2.5,19.5 - parent: 1 - type: Transform - - uid: 5156 - components: - - pos: 13.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5157 - components: - - pos: 13.5,10.5 - parent: 1 - type: Transform - - uid: 5158 - components: - - pos: 13.5,9.5 - parent: 1 - type: Transform - - uid: 5159 - components: - - pos: 11.5,9.5 - parent: 1 - type: Transform - - uid: 5160 - components: - - pos: 12.5,9.5 - parent: 1 - type: Transform - - uid: 5161 - components: - - pos: 11.5,10.5 - parent: 1 - type: Transform - - uid: 5162 - components: - - pos: 11.5,11.5 - parent: 1 - type: Transform - - uid: 5163 - components: - - pos: 11.5,12.5 - parent: 1 - type: Transform - - uid: 5164 - components: - - pos: 11.5,13.5 - parent: 1 - type: Transform - - uid: 5165 - components: - - pos: 11.5,14.5 - parent: 1 - type: Transform - - uid: 5166 - components: - - pos: 14.5,9.5 - parent: 1 - type: Transform - - uid: 5167 - components: - - pos: 15.5,9.5 - parent: 1 - type: Transform - - uid: 5168 - components: - - pos: 15.5,10.5 - parent: 1 - type: Transform - - uid: 5169 - components: - - pos: 15.5,11.5 - parent: 1 - type: Transform - - uid: 5170 - components: - - pos: 15.5,12.5 - parent: 1 - type: Transform - - uid: 5171 - components: - - pos: 15.5,13.5 - parent: 1 - type: Transform - - uid: 5172 - components: - - pos: 15.5,14.5 - parent: 1 - type: Transform - - uid: 5173 - components: - - pos: 11.5,8.5 - parent: 1 - type: Transform - - uid: 5174 - components: - - pos: 11.5,6.5 - parent: 1 - type: Transform - - uid: 5175 - components: - - pos: 11.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5176 - components: - - pos: 10.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5177 - components: - - pos: 10.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5178 - components: - - pos: 10.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5179 - components: - - pos: 11.5,5.5 - parent: 1 - type: Transform - - uid: 5180 - components: - - pos: 11.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5181 - components: - - pos: 12.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5182 - components: - - pos: 14.5,8.5 - parent: 1 - type: Transform - - uid: 5183 - components: - - pos: 14.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5184 - components: - - pos: 14.5,6.5 - parent: 1 - type: Transform - - uid: 5185 - components: - - pos: 14.5,5.5 - parent: 1 - type: Transform - - uid: 5186 - components: - - pos: 14.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5187 - components: - - pos: 15.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5188 - components: - - pos: 16.5,9.5 - parent: 1 - type: Transform - - uid: 5189 - components: - - pos: 17.5,9.5 - parent: 1 - type: Transform - - uid: 5190 - components: - - pos: 18.5,9.5 - parent: 1 - type: Transform - - uid: 5191 - components: - - pos: 19.5,9.5 - parent: 1 - type: Transform - - uid: 5192 - components: - - pos: 17.5,8.5 - parent: 1 - type: Transform - - uid: 5193 - components: - - pos: 17.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5194 - components: - - pos: 17.5,6.5 - parent: 1 - type: Transform - - uid: 5195 - components: - - pos: 17.5,5.5 - parent: 1 - type: Transform - - uid: 5196 - components: - - pos: 17.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5197 - components: - - pos: 18.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5198 - components: - - pos: 10.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5199 - components: - - pos: 11.5,15.5 - parent: 1 - type: Transform - - uid: 5200 - components: - - pos: 10.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5201 - components: - - pos: 13.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5202 - components: - - pos: 12.5,15.5 - parent: 1 - type: Transform - - uid: 5203 - components: - - pos: 13.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5204 - components: - - pos: 18.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5205 - components: - - pos: 18.5,10.5 - parent: 1 - type: Transform - - uid: 5206 - components: - - pos: 19.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5207 - components: - - pos: 20.5,11.5 - parent: 1 - type: Transform - - uid: 5208 - components: - - pos: 20.5,12.5 - parent: 1 - type: Transform - - uid: 5209 - components: - - pos: 20.5,13.5 - parent: 1 - type: Transform - - uid: 5210 - components: - - pos: 20.5,14.5 - parent: 1 - type: Transform - - uid: 5211 - components: - - pos: 20.5,10.5 - parent: 1 - type: Transform - - uid: 5212 - components: - - pos: 20.5,9.5 - parent: 1 - type: Transform - - uid: 5213 - components: - - pos: 21.5,14.5 - parent: 1 - type: Transform - - uid: 5214 - components: - - pos: 22.5,14.5 - parent: 1 - type: Transform - - uid: 5215 - components: - - pos: 22.5,13.5 - parent: 1 - type: Transform - - uid: 5216 - components: - - pos: 22.5,15.5 - parent: 1 - type: Transform - - uid: 5217 - components: - - pos: 26.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5218 - components: - - pos: 26.5,10.5 - parent: 1 - type: Transform - - uid: 5219 - components: - - pos: 26.5,9.5 - parent: 1 - type: Transform - - uid: 5220 - components: - - pos: 25.5,9.5 - parent: 1 - type: Transform - - uid: 5221 - components: - - pos: 24.5,9.5 - parent: 1 - type: Transform - - uid: 5222 - components: - - pos: 23.5,9.5 - parent: 1 - type: Transform - - uid: 5223 - components: - - pos: 22.5,9.5 - parent: 1 - type: Transform - - uid: 5224 - components: - - pos: 22.5,8.5 - parent: 1 - type: Transform - - uid: 5225 - components: - - pos: 22.5,7.5 - parent: 1 - type: Transform - - uid: 5226 - components: - - pos: 22.5,6.5 - parent: 1 - type: Transform - - uid: 5227 - components: - - pos: 21.5,6.5 - parent: 1 - type: Transform - - uid: 5228 - components: - - pos: 23.5,10.5 - parent: 1 - type: Transform - - uid: 5229 - components: - - pos: 23.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5230 - components: - - pos: 22.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5231 - components: - - pos: 27.5,9.5 - parent: 1 - type: Transform - - uid: 5232 - components: - - pos: 28.5,9.5 - parent: 1 - type: Transform - - uid: 5233 - components: - - pos: 29.5,9.5 - parent: 1 - type: Transform - - uid: 5234 - components: - - pos: 30.5,9.5 - parent: 1 - type: Transform - - uid: 5235 - components: - - pos: 31.5,9.5 - parent: 1 - type: Transform - - uid: 5236 - components: - - pos: 32.5,9.5 - parent: 1 - type: Transform - - uid: 5237 - components: - - pos: 26.5,8.5 - parent: 1 - type: Transform - - uid: 5238 - components: - - pos: 26.5,7.5 - parent: 1 - type: Transform - - uid: 5239 - components: - - pos: 26.5,6.5 - parent: 1 - type: Transform - - uid: 5240 - components: - - pos: 27.5,6.5 - parent: 1 - type: Transform - - uid: 5241 - components: - - pos: 32.5,8.5 - parent: 1 - type: Transform - - uid: 5242 - components: - - pos: 34.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5243 - components: - - pos: 33.5,17.5 - parent: 1 - type: Transform - - uid: 5244 - components: - - pos: 32.5,17.5 - parent: 1 - type: Transform - - uid: 5245 - components: - - pos: 32.5,16.5 - parent: 1 - type: Transform - - uid: 5246 - components: - - pos: 32.5,15.5 - parent: 1 - type: Transform - - uid: 5247 - components: - - pos: 32.5,14.5 - parent: 1 - type: Transform - - uid: 5248 - components: - - pos: 32.5,13.5 - parent: 1 - type: Transform - - uid: 5249 - components: - - pos: 32.5,12.5 - parent: 1 - type: Transform - - uid: 5250 - components: - - pos: 32.5,11.5 - parent: 1 - type: Transform - - uid: 5251 - components: - - pos: 33.5,11.5 - parent: 1 - type: Transform - - uid: 5252 - components: - - pos: 34.5,11.5 - parent: 1 - type: Transform - - uid: 5253 - components: - - pos: 35.5,11.5 - parent: 1 - type: Transform - - uid: 5254 - components: - - pos: 36.5,11.5 - parent: 1 - type: Transform - - uid: 5255 - components: - - pos: 37.5,11.5 - parent: 1 - type: Transform - - uid: 5256 - components: - - pos: 37.5,12.5 - parent: 1 - type: Transform - - uid: 5257 - components: - - pos: 31.5,13.5 - parent: 1 - type: Transform - - uid: 5258 - components: - - pos: 30.5,13.5 - parent: 1 - type: Transform - - uid: 5259 - components: - - pos: 29.5,13.5 - parent: 1 - type: Transform - - uid: 5260 - components: - - pos: 28.5,13.5 - parent: 1 - type: Transform - - uid: 5261 - components: - - pos: 27.5,13.5 - parent: 1 - type: Transform - - uid: 5262 - components: - - pos: 26.5,13.5 - parent: 1 - type: Transform - - uid: 5263 - components: - - pos: 31.5,17.5 - parent: 1 - type: Transform - - uid: 5264 - components: - - pos: 30.5,17.5 - parent: 1 - type: Transform - - uid: 5265 - components: - - pos: 29.5,17.5 - parent: 1 - type: Transform - - uid: 5266 - components: - - pos: 28.5,17.5 - parent: 1 - type: Transform - - uid: 5267 - components: - - pos: 32.5,18.5 - parent: 1 - type: Transform - - uid: 5268 - components: - - pos: 32.5,19.5 - parent: 1 - type: Transform - - uid: 5269 - components: - - pos: 32.5,20.5 - parent: 1 - type: Transform - - uid: 5270 - components: - - pos: 34.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5271 - components: - - pos: 33.5,27.5 - parent: 1 - type: Transform - - uid: 5272 - components: - - pos: 32.5,27.5 - parent: 1 - type: Transform - - uid: 5273 - components: - - pos: 32.5,26.5 - parent: 1 - type: Transform - - uid: 5274 - components: - - pos: 32.5,25.5 - parent: 1 - type: Transform - - uid: 5275 - components: - - pos: 32.5,24.5 - parent: 1 - type: Transform - - uid: 5276 - components: - - pos: 32.5,23.5 - parent: 1 - type: Transform - - uid: 5277 - components: - - pos: 31.5,27.5 - parent: 1 - type: Transform - - uid: 5278 - components: - - pos: 30.5,27.5 - parent: 1 - type: Transform - - uid: 5279 - components: - - pos: 29.5,27.5 - parent: 1 - type: Transform - - uid: 5280 - components: - - pos: 28.5,27.5 - parent: 1 - type: Transform - - uid: 5281 - components: - - pos: 27.5,27.5 - parent: 1 - type: Transform - - uid: 5282 - components: - - pos: 26.5,27.5 - parent: 1 - type: Transform - - uid: 5283 - components: - - pos: 25.5,27.5 - parent: 1 - type: Transform - - uid: 5284 - components: - - pos: 28.5,26.5 - parent: 1 - type: Transform - - uid: 5285 - components: - - pos: 28.5,25.5 - parent: 1 - type: Transform - - uid: 5286 - components: - - pos: 27.5,25.5 - parent: 1 - type: Transform - - uid: 5287 - components: - - pos: 26.5,25.5 - parent: 1 - type: Transform - - uid: 5288 - components: - - pos: 25.5,25.5 - parent: 1 - type: Transform - - uid: 5289 - components: - - pos: 30.5,28.5 - parent: 1 - type: Transform - - uid: 5290 - components: - - pos: 30.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5291 - components: - - pos: 29.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5292 - components: - - pos: 28.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5293 - components: - - pos: 31.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5294 - components: - - pos: 32.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5295 - components: - - pos: 33.5,20.5 - parent: 1 - type: Transform - - uid: 5296 - components: - - pos: 33.5,23.5 - parent: 1 - type: Transform - - uid: 5323 - components: - - pos: -33.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5744 - components: - - pos: -24.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5745 - components: - - pos: -24.5,11.5 - parent: 1 - type: Transform - - uid: 5746 - components: - - pos: -24.5,10.5 - parent: 1 - type: Transform - - uid: 5747 - components: - - pos: -24.5,9.5 - parent: 1 - type: Transform - - uid: 5748 - components: - - pos: -24.5,8.5 - parent: 1 - type: Transform - - uid: 5749 - components: - - pos: -24.5,7.5 - parent: 1 - type: Transform - - uid: 5750 - components: - - pos: -24.5,6.5 - parent: 1 - type: Transform - - uid: 5751 - components: - - pos: -25.5,6.5 - parent: 1 - type: Transform - - uid: 5761 - components: - - pos: -24.5,13.5 - parent: 1 - type: Transform - - uid: 5762 - components: - - pos: -24.5,14.5 - parent: 1 - type: Transform - - uid: 5763 - components: - - pos: -24.5,15.5 - parent: 1 - type: Transform - - uid: 5764 - components: - - pos: -25.5,15.5 - parent: 1 - type: Transform - - uid: 5765 - components: - - pos: -23.5,15.5 - parent: 1 - type: Transform - - uid: 5766 - components: - - pos: -25.5,10.5 - parent: 1 - type: Transform - - uid: 5767 - components: - - pos: -23.5,10.5 - parent: 1 - type: Transform - - uid: 5768 - components: - - pos: -22.5,10.5 - parent: 1 - type: Transform - - uid: 5769 - components: - - pos: -21.5,10.5 - parent: 1 - type: Transform - - uid: 5770 - components: - - pos: -20.5,10.5 - parent: 1 - type: Transform - - uid: 5771 - components: - - pos: -19.5,10.5 - parent: 1 - type: Transform - - uid: 5772 - components: - - pos: -18.5,10.5 - parent: 1 - type: Transform - - uid: 5773 - components: - - pos: -18.5,9.5 - parent: 1 - type: Transform - - uid: 5774 - components: - - pos: -18.5,9.5 - parent: 1 - type: Transform - - uid: 5775 - components: - - pos: -18.5,8.5 - parent: 1 - type: Transform - - uid: 5776 - components: - - pos: -18.5,7.5 - parent: 1 - type: Transform - - uid: 5777 - components: - - pos: -18.5,6.5 - parent: 1 - type: Transform - - uid: 5778 - components: - - pos: -21.5,9.5 - parent: 1 - type: Transform - - uid: 5779 - components: - - pos: -21.5,8.5 - parent: 1 - type: Transform - - uid: 5780 - components: - - pos: -21.5,7.5 - parent: 1 - type: Transform - - uid: 5781 - components: - - pos: -21.5,6.5 - parent: 1 - type: Transform - - uid: 5782 - components: - - pos: -10.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5783 - components: - - pos: -11.5,7.5 - parent: 1 - type: Transform - - uid: 5784 - components: - - pos: -11.5,8.5 - parent: 1 - type: Transform - - uid: 5785 - components: - - pos: -11.5,9.5 - parent: 1 - type: Transform - - uid: 5786 - components: - - pos: -11.5,10.5 - parent: 1 - type: Transform - - uid: 5787 - components: - - pos: -12.5,10.5 - parent: 1 - type: Transform - - uid: 5788 - components: - - pos: -13.5,10.5 - parent: 1 - type: Transform - - uid: 5789 - components: - - pos: -14.5,10.5 - parent: 1 - type: Transform - - uid: 5790 - components: - - pos: -15.5,10.5 - parent: 1 - type: Transform - - uid: 5791 - components: - - pos: -15.5,9.5 - parent: 1 - type: Transform - - uid: 5792 - components: - - pos: -15.5,8.5 - parent: 1 - type: Transform - - uid: 5793 - components: - - pos: -15.5,7.5 - parent: 1 - type: Transform - - uid: 5794 - components: - - pos: -15.5,6.5 - parent: 1 - type: Transform - - uid: 5795 - components: - - pos: -10.5,10.5 - parent: 1 - type: Transform - - uid: 5796 - components: - - pos: -9.5,10.5 - parent: 1 - type: Transform - - uid: 5797 - components: - - pos: -8.5,10.5 - parent: 1 - type: Transform - - uid: 5798 - components: - - pos: -11.5,6.5 - parent: 1 - type: Transform - - uid: 5799 - components: - - pos: -11.5,5.5 - parent: 1 - type: Transform - - uid: 5800 - components: - - pos: -10.5,5.5 - parent: 1 - type: Transform - - uid: 5801 - components: - - pos: -9.5,5.5 - parent: 1 - type: Transform - - uid: 5802 - components: - - pos: -8.5,5.5 - parent: 1 - type: Transform - - uid: 5803 - components: - - pos: -14.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5804 - components: - - pos: -13.5,13.5 - parent: 1 - type: Transform - - uid: 5805 - components: - - pos: -12.5,13.5 - parent: 1 - type: Transform - - uid: 5806 - components: - - pos: -11.5,13.5 - parent: 1 - type: Transform - - uid: 5807 - components: - - pos: -10.5,13.5 - parent: 1 - type: Transform - - uid: 5808 - components: - - pos: -9.5,13.5 - parent: 1 - type: Transform - - uid: 5809 - components: - - pos: -8.5,13.5 - parent: 1 - type: Transform - - uid: 5810 - components: - - pos: -12.5,14.5 - parent: 1 - type: Transform - - uid: 5811 - components: - - pos: -12.5,15.5 - parent: 1 - type: Transform - - uid: 5812 - components: - - pos: -12.5,16.5 - parent: 1 - type: Transform - - uid: 5813 - components: - - pos: -15.5,13.5 - parent: 1 - type: Transform - - uid: 5814 - components: - - pos: -14.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5815 - components: - - pos: -14.5,18.5 - parent: 1 - type: Transform - - uid: 5816 - components: - - pos: -16.5,15.5 - parent: 1 - type: Transform - - uid: 5817 - components: - - pos: -16.5,15.5 - parent: 1 - type: Transform - - uid: 5818 - components: - - pos: -17.5,15.5 - parent: 1 - type: Transform - - uid: 5819 - components: - - pos: -18.5,15.5 - parent: 1 - type: Transform - - uid: 5820 - components: - - pos: -19.5,15.5 - parent: 1 - type: Transform - - uid: 5821 - components: - - pos: -19.5,14.5 - parent: 1 - type: Transform - - uid: 5822 - components: - - pos: -16.5,13.5 - parent: 1 - type: Transform - - uid: 5823 - components: - - pos: -16.5,14.5 - parent: 1 - type: Transform - - uid: 5824 - components: - - pos: -14.5,19.5 - parent: 1 - type: Transform - - uid: 5825 - components: - - pos: -15.5,19.5 - parent: 1 - type: Transform - - uid: 5826 - components: - - pos: -16.5,19.5 - parent: 1 - type: Transform - - uid: 5827 - components: - - pos: -13.5,19.5 - parent: 1 - type: Transform - - uid: 5828 - components: - - pos: -13.5,20.5 - parent: 1 - type: Transform - - uid: 5829 - components: - - pos: -13.5,21.5 - parent: 1 - type: Transform - - uid: 5830 - components: - - pos: -12.5,21.5 - parent: 1 - type: Transform - - uid: 5831 - components: - - pos: -11.5,21.5 - parent: 1 - type: Transform - - uid: 5832 - components: - - pos: -13.5,18.5 - parent: 1 - type: Transform - - uid: 5833 - components: - - pos: -12.5,18.5 - parent: 1 - type: Transform - - uid: 5834 - components: - - pos: -11.5,18.5 - parent: 1 - type: Transform - - uid: 5835 - components: - - pos: -15.5,5.5 - parent: 1 - type: Transform - - uid: 5836 - components: - - pos: -18.5,5.5 - parent: 1 - type: Transform - - uid: 5837 - components: - - pos: -21.5,5.5 - parent: 1 - type: Transform - - uid: 5838 - components: - - pos: -24.5,5.5 - parent: 1 - type: Transform - - uid: 5839 - components: - - pos: -26.5,6.5 - parent: 1 - type: Transform - - uid: 5840 - components: - - pos: -26.5,10.5 - parent: 1 - type: Transform - - uid: 5842 - components: - - pos: -17.5,19.5 - parent: 1 - type: Transform - - uid: 6200 - components: - - pos: -5.5,9.5 - parent: 1 - type: Transform - - uid: 6201 - components: - - pos: -5.5,10.5 - parent: 1 - type: Transform - - uid: 6202 - components: - - pos: -5.5,11.5 - parent: 1 - type: Transform - - uid: 6203 - components: - - pos: -5.5,12.5 - parent: 1 - type: Transform - - uid: 6204 - components: - - pos: -5.5,13.5 - parent: 1 - type: Transform - - uid: 6206 - components: - - pos: -0.5,6.5 - parent: 1 - type: Transform - - uid: 6207 - components: - - pos: -0.5,5.5 - parent: 1 - type: Transform - - uid: 6208 - components: - - pos: 4.5,6.5 - parent: 1 - type: Transform - - uid: 6227 - components: - - pos: 6.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6228 - components: - - pos: 5.5,0.5 - parent: 1 - type: Transform - - uid: 6229 - components: - - pos: 3.5,0.5 - parent: 1 - type: Transform - - uid: 6230 - components: - - pos: -0.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6231 - components: - - pos: -0.5,-1.5 - parent: 1 - type: Transform - - uid: 6232 - components: - - pos: -0.5,-2.5 - parent: 1 - type: Transform - - uid: 6233 - components: - - pos: -0.5,-3.5 - parent: 1 - type: Transform - - uid: 6234 - components: - - pos: -0.5,-4.5 - parent: 1 - type: Transform - - uid: 6235 - components: - - pos: -0.5,-5.5 - parent: 1 - type: Transform - - uid: 6236 - components: - - pos: -1.5,-3.5 - parent: 1 - type: Transform - - uid: 6237 - components: - - pos: -2.5,-3.5 - parent: 1 - type: Transform - - uid: 6238 - components: - - pos: 0.5,-3.5 - parent: 1 - type: Transform - - uid: 6239 - components: - - pos: 1.5,-3.5 - parent: 1 - type: Transform - - uid: 6240 - components: - - pos: 2.5,-3.5 - parent: 1 - type: Transform - - uid: 6241 - components: - - pos: 3.5,-3.5 - parent: 1 - type: Transform - - uid: 6242 - components: - - pos: 4.5,-3.5 - parent: 1 - type: Transform - - uid: 6243 - components: - - pos: 5.5,-3.5 - parent: 1 - type: Transform - - uid: 6244 - components: - - pos: 3.5,-4.5 - parent: 1 - type: Transform - - uid: 6245 - components: - - pos: 3.5,-5.5 - parent: 1 - type: Transform - - uid: 6246 - components: - - pos: 3.5,-2.5 - parent: 1 - type: Transform - - uid: 6247 - components: - - pos: 3.5,-1.5 - parent: 1 - type: Transform - - uid: 6249 - components: - - pos: 2.5,0.5 - parent: 1 - type: Transform - - uid: 6250 - components: - - pos: 1.5,0.5 - parent: 1 - type: Transform - - uid: 6251 - components: - - pos: 1.5,1.5 - parent: 1 - type: Transform - - uid: 6252 - components: - - pos: 1.5,2.5 - parent: 1 - type: Transform - - uid: 6253 - components: - - pos: 4.5,1.5 - parent: 1 - type: Transform - - uid: 6254 - components: - - pos: 4.5,2.5 - parent: 1 - type: Transform - - uid: 6255 - components: - - pos: 0.5,2.5 - parent: 1 - type: Transform - - uid: 6256 - components: - - pos: -0.5,2.5 - parent: 1 - type: Transform - - uid: 6257 - components: - - pos: -1.5,2.5 - parent: 1 - type: Transform - - uid: 6258 - components: - - pos: -2.5,2.5 - parent: 1 - type: Transform - - uid: 6259 - components: - - pos: 4.5,5.5 - parent: 1 - type: Transform - - uid: 6260 - components: - - pos: -7.5,10.5 - parent: 1 - type: Transform - - uid: 6261 - components: - - pos: -2.5,7.5 - parent: 1 - type: Transform - - uid: 6262 - components: - - pos: -3.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6263 - components: - - pos: -4.5,9.5 - parent: 1 - type: Transform - - uid: 6264 - components: - - pos: -1.5,7.5 - parent: 1 - type: Transform - - uid: 6265 - components: - - pos: 0.5,7.5 - parent: 1 - type: Transform - - uid: 6266 - components: - - pos: 2.5,7.5 - parent: 1 - type: Transform - - uid: 6267 - components: - - pos: 1.5,7.5 - parent: 1 - type: Transform - - uid: 6268 - components: - - pos: 3.5,7.5 - parent: 1 - type: Transform - - uid: 6269 - components: - - pos: -0.5,7.5 - parent: 1 - type: Transform - - uid: 6270 - components: - - pos: -0.5,8.5 - parent: 1 - type: Transform - - uid: 6271 - components: - - pos: -0.5,9.5 - parent: 1 - type: Transform - - uid: 6272 - components: - - pos: -0.5,10.5 - parent: 1 - type: Transform - - uid: 6273 - components: - - pos: -0.5,11.5 - parent: 1 - type: Transform - - uid: 6274 - components: - - pos: 4.5,7.5 - parent: 1 - type: Transform - - uid: 6275 - components: - - pos: 4.5,8.5 - parent: 1 - type: Transform - - uid: 6276 - components: - - pos: 4.5,9.5 - parent: 1 - type: Transform - - uid: 6277 - components: - - pos: 4.5,10.5 - parent: 1 - type: Transform - - uid: 6279 - components: - - pos: -1.5,9.5 - parent: 1 - type: Transform - - uid: 6280 - components: - - pos: -2.5,9.5 - parent: 1 - type: Transform - - uid: 6281 - components: - - pos: 7.5,8.5 - parent: 1 - type: Transform - - uid: 6282 - components: - - pos: -0.5,12.5 - parent: 1 - type: Transform - - uid: 6283 - components: - - pos: -3.5,9.5 - parent: 1 - type: Transform - - uid: 6284 - components: - - pos: 5.5,8.5 - parent: 1 - type: Transform - - uid: 6285 - components: - - pos: 4.5,11.5 - parent: 1 - type: Transform - - uid: 6292 - components: - - pos: -5.5,14.5 - parent: 1 - type: Transform - - uid: 6293 - components: - - pos: -5.5,15.5 - parent: 1 - type: Transform - - uid: 6294 - components: - - pos: -5.5,16.5 - parent: 1 - type: Transform - - uid: 6296 - components: - - pos: 8.5,8.5 - parent: 1 - type: Transform - - uid: 6297 - components: - - pos: 8.5,9.5 - parent: 1 - type: Transform - - uid: 6298 - components: - - pos: 8.5,10.5 - parent: 1 - type: Transform - - uid: 6299 - components: - - pos: 8.5,11.5 - parent: 1 - type: Transform - - uid: 6300 - components: - - pos: 8.5,12.5 - parent: 1 - type: Transform - - uid: 6301 - components: - - pos: 8.5,13.5 - parent: 1 - type: Transform - - uid: 6302 - components: - - pos: 8.5,14.5 - parent: 1 - type: Transform - - uid: 6303 - components: - - pos: 8.5,15.5 - parent: 1 - type: Transform - - uid: 6304 - components: - - pos: 8.5,16.5 - parent: 1 - type: Transform - - uid: 6305 - components: - - pos: 8.5,17.5 - parent: 1 - type: Transform - - uid: 6306 - components: - - pos: 8.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6307 - components: - - pos: 8.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6308 - components: - - pos: 9.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6309 - components: - - pos: 22.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6310 - components: - - pos: 22.5,17.5 - parent: 1 - type: Transform - - uid: 6311 - components: - - pos: 22.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6312 - components: - - pos: -13.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6313 - components: - - pos: -13.5,23.5 - parent: 1 - type: Transform - - uid: 6314 - components: - - pos: -13.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6315 - components: - - pos: -14.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6316 - components: - - pos: -15.5,24.5 - parent: 1 - type: Transform - - uid: 6317 - components: - - pos: -16.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6318 - components: - - pos: -17.5,24.5 - parent: 1 - type: Transform - - uid: 6319 - components: - - pos: -18.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6415 - components: - - pos: -1.5,-0.5 - parent: 1 - type: Transform - - uid: 6416 - components: - - pos: -2.5,-0.5 - parent: 1 - type: Transform - - uid: 6417 - components: - - pos: -21.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6418 - components: - - pos: -21.5,-6.5 - parent: 1 - type: Transform - - uid: 6419 - components: - - pos: -22.5,-6.5 - parent: 1 - type: Transform - - uid: 6420 - components: - - pos: -23.5,-6.5 - parent: 1 - type: Transform - - uid: 6421 - components: - - pos: -24.5,-6.5 - parent: 1 - type: Transform - - uid: 6422 - components: - - pos: -25.5,-6.5 - parent: 1 - type: Transform - - uid: 6423 - components: - - pos: -26.5,-6.5 - parent: 1 - type: Transform - - uid: 6424 - components: - - pos: -27.5,-6.5 - parent: 1 - type: Transform - - uid: 6425 - components: - - pos: -28.5,-6.5 - parent: 1 - type: Transform - - uid: 6426 - components: - - pos: -29.5,-6.5 - parent: 1 - type: Transform - - uid: 6427 - components: - - pos: -30.5,-6.5 - parent: 1 - type: Transform - - uid: 6428 - components: - - pos: -26.5,-5.5 - parent: 1 - type: Transform - - uid: 6429 - components: - - pos: -26.5,-4.5 - parent: 1 - type: Transform - - uid: 6430 - components: - - pos: -26.5,-3.5 - parent: 1 - type: Transform - - uid: 6431 - components: - - pos: -26.5,-2.5 - parent: 1 - type: Transform - - uid: 6432 - components: - - pos: -26.5,-1.5 - parent: 1 - type: Transform - - uid: 6433 - components: - - pos: -25.5,-7.5 - parent: 1 - type: Transform - - uid: 6434 - components: - - pos: -14.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6435 - components: - - pos: -14.5,-0.5 - parent: 1 - type: Transform - - uid: 6436 - components: - - pos: -14.5,-1.5 - parent: 1 - type: Transform - - uid: 6437 - components: - - pos: -14.5,-2.5 - parent: 1 - type: Transform - - uid: 6438 - components: - - pos: -14.5,-3.5 - parent: 1 - type: Transform - - uid: 6439 - components: - - pos: -14.5,-4.5 - parent: 1 - type: Transform - - uid: 6440 - components: - - pos: -14.5,-5.5 - parent: 1 - type: Transform - - uid: 6441 - components: - - pos: -13.5,-5.5 - parent: 1 - type: Transform - - uid: 6442 - components: - - pos: -12.5,-5.5 - parent: 1 - type: Transform - - uid: 6443 - components: - - pos: -11.5,-5.5 - parent: 1 - type: Transform - - uid: 6444 - components: - - pos: -11.5,-4.5 - parent: 1 - type: Transform - - uid: 6445 - components: - - pos: -11.5,-3.5 - parent: 1 - type: Transform - - uid: 6446 - components: - - pos: -11.5,-2.5 - parent: 1 - type: Transform - - uid: 6447 - components: - - pos: -11.5,-1.5 - parent: 1 - type: Transform - - uid: 6448 - components: - - pos: -10.5,-1.5 - parent: 1 - type: Transform - - uid: 6449 - components: - - pos: -9.5,-1.5 - parent: 1 - type: Transform - - uid: 6450 - components: - - pos: -10.5,-3.5 - parent: 1 - type: Transform - - uid: 6451 - components: - - pos: -9.5,-3.5 - parent: 1 - type: Transform - - uid: 6452 - components: - - pos: -10.5,-5.5 - parent: 1 - type: Transform - - uid: 6453 - components: - - pos: -9.5,-5.5 - parent: 1 - type: Transform - - uid: 6454 - components: - - pos: -8.5,-5.5 - parent: 1 - type: Transform - - uid: 6455 - components: - - pos: -7.5,-5.5 - parent: 1 - type: Transform - - uid: 6456 - components: - - pos: -15.5,-2.5 - parent: 1 - type: Transform - - uid: 6457 - components: - - pos: -16.5,-2.5 - parent: 1 - type: Transform - - uid: 6458 - components: - - pos: -17.5,-2.5 - parent: 1 - type: Transform - - uid: 6459 - components: - - pos: -18.5,-2.5 - parent: 1 - type: Transform - - uid: 6460 - components: - - pos: -19.5,-2.5 - parent: 1 - type: Transform - - uid: 6461 - components: - - pos: -20.5,-2.5 - parent: 1 - type: Transform - - uid: 6462 - components: - - pos: -21.5,-2.5 - parent: 1 - type: Transform - - uid: 6463 - components: - - pos: -21.5,-1.5 - parent: 1 - type: Transform - - uid: 6464 - components: - - pos: -16.5,-3.5 - parent: 1 - type: Transform - - uid: 6465 - components: - - pos: -16.5,-4.5 - parent: 1 - type: Transform - - uid: 6466 - components: - - pos: -16.5,-5.5 - parent: 1 - type: Transform - - uid: 6467 - components: - - pos: -17.5,-5.5 - parent: 1 - type: Transform - - uid: 6468 - components: - - pos: -16.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6469 - components: - - pos: -16.5,-18.5 - parent: 1 - type: Transform - - uid: 6470 - components: - - pos: -16.5,-17.5 - parent: 1 - type: Transform - - uid: 6471 - components: - - pos: -16.5,-16.5 - parent: 1 - type: Transform - - uid: 6472 - components: - - pos: -16.5,-15.5 - parent: 1 - type: Transform - - uid: 6473 - components: - - pos: -16.5,-14.5 - parent: 1 - type: Transform - - uid: 6474 - components: - - pos: -16.5,-13.5 - parent: 1 - type: Transform - - uid: 6475 - components: - - pos: -16.5,-12.5 - parent: 1 - type: Transform - - uid: 6476 - components: - - pos: -16.5,-11.5 - parent: 1 - type: Transform - - uid: 6477 - components: - - pos: -16.5,-10.5 - parent: 1 - type: Transform - - uid: 6478 - components: - - pos: -16.5,-9.5 - parent: 1 - type: Transform - - uid: 6479 - components: - - pos: -17.5,-9.5 - parent: 1 - type: Transform - - uid: 6480 - components: - - pos: -18.5,-9.5 - parent: 1 - type: Transform - - uid: 6481 - components: - - pos: -19.5,-9.5 - parent: 1 - type: Transform - - uid: 6482 - components: - - pos: -17.5,-13.5 - parent: 1 - type: Transform - - uid: 6483 - components: - - pos: -18.5,-13.5 - parent: 1 - type: Transform - - uid: 6484 - components: - - pos: -19.5,-13.5 - parent: 1 - type: Transform - - uid: 6485 - components: - - pos: -17.5,-17.5 - parent: 1 - type: Transform - - uid: 6486 - components: - - pos: -18.5,-17.5 - parent: 1 - type: Transform - - uid: 6487 - components: - - pos: -19.5,-17.5 - parent: 1 - type: Transform - - uid: 6488 - components: - - pos: -15.5,-17.5 - parent: 1 - type: Transform - - uid: 6489 - components: - - pos: -14.5,-17.5 - parent: 1 - type: Transform - - uid: 6490 - components: - - pos: -15.5,-13.5 - parent: 1 - type: Transform - - uid: 6491 - components: - - pos: -15.5,-9.5 - parent: 1 - type: Transform - - uid: 6492 - components: - - pos: -8.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6493 - components: - - pos: -8.5,-15.5 - parent: 1 - type: Transform - - uid: 6494 - components: - - pos: -8.5,-14.5 - parent: 1 - type: Transform - - uid: 6495 - components: - - pos: -7.5,-14.5 - parent: 1 - type: Transform - - uid: 6496 - components: - - pos: -6.5,-14.5 - parent: 1 - type: Transform - - uid: 6497 - components: - - pos: -5.5,-14.5 - parent: 1 - type: Transform - - uid: 6498 - components: - - pos: -5.5,-13.5 - parent: 1 - type: Transform - - uid: 6499 - components: - - pos: -5.5,-12.5 - parent: 1 - type: Transform - - uid: 6500 - components: - - pos: -5.5,-11.5 - parent: 1 - type: Transform - - uid: 6501 - components: - - pos: -7.5,-13.5 - parent: 1 - type: Transform - - uid: 6502 - components: - - pos: -7.5,-12.5 - parent: 1 - type: Transform - - uid: 6503 - components: - - pos: -7.5,-11.5 - parent: 1 - type: Transform - - uid: 6504 - components: - - pos: -7.5,-10.5 - parent: 1 - type: Transform - - uid: 6505 - components: - - pos: -7.5,-9.5 - parent: 1 - type: Transform - - uid: 6506 - components: - - pos: -7.5,-8.5 - parent: 1 - type: Transform - - uid: 6507 - components: - - pos: -7.5,-7.5 - parent: 1 - type: Transform - - uid: 6508 - components: - - pos: -9.5,-14.5 - parent: 1 - type: Transform - - uid: 6509 - components: - - pos: -10.5,-14.5 - parent: 1 - type: Transform - - uid: 6510 - components: - - pos: -11.5,-14.5 - parent: 1 - type: Transform - - uid: 6511 - components: - - pos: -11.5,-13.5 - parent: 1 - type: Transform - - uid: 6512 - components: - - pos: -11.5,-12.5 - parent: 1 - type: Transform - - uid: 6513 - components: - - pos: -11.5,-11.5 - parent: 1 - type: Transform - - uid: 6514 - components: - - pos: -11.5,-10.5 - parent: 1 - type: Transform - - uid: 6515 - components: - - pos: -11.5,-9.5 - parent: 1 - type: Transform - - uid: 6516 - components: - - pos: -11.5,-8.5 - parent: 1 - type: Transform - - uid: 6517 - components: - - pos: -6.5,-8.5 - parent: 1 - type: Transform - - uid: 6518 - components: - - pos: -5.5,-8.5 - parent: 1 - type: Transform - - uid: 6519 - components: - - pos: -4.5,-8.5 - parent: 1 - type: Transform - - uid: 6520 - components: - - pos: -3.5,-8.5 - parent: 1 - type: Transform - - uid: 6578 - components: - - pos: 24.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6579 - components: - - pos: 24.5,-11.5 - parent: 1 - type: Transform - - uid: 6580 - components: - - pos: 24.5,-10.5 - parent: 1 - type: Transform - - uid: 6581 - components: - - pos: 23.5,-10.5 - parent: 1 - type: Transform - - uid: 6582 - components: - - pos: 22.5,-10.5 - parent: 1 - type: Transform - - uid: 6583 - components: - - pos: 21.5,-10.5 - parent: 1 - type: Transform - - uid: 6584 - components: - - pos: 20.5,-10.5 - parent: 1 - type: Transform - - uid: 6585 - components: - - pos: 19.5,-10.5 - parent: 1 - type: Transform - - uid: 6586 - components: - - pos: 18.5,-10.5 - parent: 1 - type: Transform - - uid: 6587 - components: - - pos: 17.5,-10.5 - parent: 1 - type: Transform - - uid: 6588 - components: - - pos: 16.5,-10.5 - parent: 1 - type: Transform - - uid: 6589 - components: - - pos: 15.5,-10.5 - parent: 1 - type: Transform - - uid: 6590 - components: - - pos: 14.5,-10.5 - parent: 1 - type: Transform - - uid: 6591 - components: - - pos: 13.5,-10.5 - parent: 1 - type: Transform - - uid: 6592 - components: - - pos: 12.5,-10.5 - parent: 1 - type: Transform - - uid: 6593 - components: - - pos: 12.5,-9.5 - parent: 1 - type: Transform - - uid: 6594 - components: - - pos: 12.5,-8.5 - parent: 1 - type: Transform - - uid: 6595 - components: - - pos: 13.5,-11.5 - parent: 1 - type: Transform - - uid: 6596 - components: - - pos: 13.5,-12.5 - parent: 1 - type: Transform - - uid: 6597 - components: - - pos: 16.5,-11.5 - parent: 1 - type: Transform - - uid: 6598 - components: - - pos: 16.5,-12.5 - parent: 1 - type: Transform - - uid: 6599 - components: - - pos: 16.5,-13.5 - parent: 1 - type: Transform - - uid: 6600 - components: - - pos: 16.5,-14.5 - parent: 1 - type: Transform - - uid: 6601 - components: - - pos: 17.5,-14.5 - parent: 1 - type: Transform - - uid: 6602 - components: - - pos: 18.5,-14.5 - parent: 1 - type: Transform - - uid: 6603 - components: - - pos: 19.5,-14.5 - parent: 1 - type: Transform - - uid: 6604 - components: - - pos: 25.5,-12.5 - parent: 1 - type: Transform - - uid: 6605 - components: - - pos: 26.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6608 - components: - - pos: 25.5,-10.5 - parent: 1 - type: Transform - - uid: 6609 - components: - - pos: 26.5,-10.5 - parent: 1 - type: Transform - - uid: 6610 - components: - - pos: 27.5,-10.5 - parent: 1 - type: Transform - - uid: 6611 - components: - - pos: 27.5,-9.5 - parent: 1 - type: Transform - - uid: 6612 - components: - - pos: 27.5,-8.5 - parent: 1 - type: Transform - - uid: 6613 - components: - - pos: 27.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6614 - components: - - pos: 27.5,-6.5 - parent: 1 - type: Transform - - uid: 6615 - components: - - pos: 27.5,-5.5 - parent: 1 - type: Transform - - uid: 6618 - components: - - pos: 16.5,-4.5 - parent: 1 - type: Transform - - uid: 6619 - components: - - pos: 16.5,-5.5 - parent: 1 - type: Transform - - uid: 6620 - components: - - pos: 16.5,-6.5 - parent: 1 - type: Transform - - uid: 6621 - components: - - pos: 16.5,-7.5 - parent: 1 - type: Transform - - uid: 6622 - components: - - pos: 15.5,-6.5 - parent: 1 - type: Transform - - uid: 6623 - components: - - pos: 14.5,-6.5 - parent: 1 - type: Transform - - uid: 6624 - components: - - pos: 13.5,-6.5 - parent: 1 - type: Transform - - uid: 6625 - components: - - pos: 12.5,-6.5 - parent: 1 - type: Transform - - uid: 6626 - components: - - pos: 11.5,-6.5 - parent: 1 - type: Transform - - uid: 6627 - components: - - pos: 17.5,-4.5 - parent: 1 - type: Transform - - uid: 6628 - components: - - pos: 18.5,-4.5 - parent: 1 - type: Transform - - uid: 6629 - components: - - pos: 19.5,-4.5 - parent: 1 - type: Transform - - uid: 6630 - components: - - pos: 20.5,-4.5 - parent: 1 - type: Transform - - uid: 6631 - components: - - pos: 21.5,-4.5 - parent: 1 - type: Transform - - uid: 6632 - components: - - pos: 22.5,-4.5 - parent: 1 - type: Transform - - uid: 6633 - components: - - pos: 22.5,-5.5 - parent: 1 - type: Transform - - uid: 6634 - components: - - pos: 22.5,-6.5 - parent: 1 - type: Transform - - uid: 6635 - components: - - pos: 22.5,-7.5 - parent: 1 - type: Transform - - uid: 6636 - components: - - pos: 19.5,-6.5 - parent: 1 - type: Transform - - uid: 6637 - components: - - pos: 19.5,-5.5 - parent: 1 - type: Transform - - uid: 6638 - components: - - pos: 19.5,-7.5 - parent: 1 - type: Transform - - uid: 6639 - components: - - pos: 33.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6640 - components: - - pos: 34.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6641 - components: - - pos: 34.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6642 - components: - - pos: 34.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6643 - components: - - pos: 35.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6644 - components: - - pos: 36.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6645 - components: - - pos: 37.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6646 - components: - - pos: 38.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6647 - components: - - pos: 39.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6648 - components: - - pos: 40.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6649 - components: - - pos: 40.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6650 - components: - - pos: 40.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6651 - components: - - pos: 40.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6652 - components: - - pos: 40.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6653 - components: - - pos: 40.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6654 - components: - - pos: 40.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6655 - components: - - pos: 40.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6656 - components: - - pos: 40.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6657 - components: - - pos: 40.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6658 - components: - - pos: 40.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6659 - components: - - pos: 40.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6660 - components: - - pos: 40.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6661 - components: - - pos: 40.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6662 - components: - - pos: 40.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6663 - components: - - pos: 40.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6664 - components: - - pos: 40.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6665 - components: - - pos: 39.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6666 - components: - - pos: 38.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6667 - components: - - pos: 37.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6668 - components: - - pos: 36.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6669 - components: - - pos: 35.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6670 - components: - - pos: 34.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6671 - components: - - pos: 33.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6672 - components: - - pos: 34.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6673 - components: - - pos: 34.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6674 - components: - - pos: 34.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6675 - components: - - pos: 33.5,-16.5 - parent: 1 - type: Transform - - uid: 6676 - components: - - pos: 32.5,-16.5 - parent: 1 - type: Transform - - uid: 6677 - components: - - pos: 31.5,-16.5 - parent: 1 - type: Transform - - uid: 6678 - components: - - pos: 31.5,-17.5 - parent: 1 - type: Transform - - uid: 6679 - components: - - pos: 31.5,-18.5 - parent: 1 - type: Transform - - uid: 6680 - components: - - pos: 31.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6681 - components: - - pos: 32.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6682 - components: - - pos: 32.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6683 - components: - - pos: 33.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6684 - components: - - pos: 41.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6685 - components: - - pos: 33.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6686 - components: - - pos: 33.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6687 - components: - - pos: 33.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6688 - components: - - pos: 34.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6689 - components: - - pos: 35.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6690 - components: - - pos: 36.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6691 - components: - - pos: 37.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6692 - components: - - pos: 37.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6693 - components: - - pos: 37.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6694 - components: - - pos: 42.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6695 - components: - - pos: 42.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6696 - components: - - pos: 42.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6697 - components: - - pos: 42.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6698 - components: - - pos: 42.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6699 - components: - - pos: 42.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6700 - components: - - pos: 42.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6701 - components: - - pos: 42.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6702 - components: - - pos: 42.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6703 - components: - - pos: 42.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6704 - components: - - pos: 42.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6705 - components: - - pos: 42.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6706 - components: - - pos: 42.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6707 - components: - - pos: 42.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6708 - components: - - pos: 42.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6709 - components: - - pos: 41.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6710 - components: - - pos: 35.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6711 - components: - - pos: 36.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6712 - components: - - pos: 37.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6713 - components: - - pos: 38.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6714 - components: - - pos: 34.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6715 - components: - - pos: 34.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6716 - components: - - pos: 35.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6717 - components: - - pos: 36.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6718 - components: - - pos: 37.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6719 - components: - - pos: 38.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6720 - components: - - pos: 34.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6721 - components: - - pos: 34.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6722 - components: - - pos: 34.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6723 - components: - - pos: 34.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6724 - components: - - pos: 34.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6725 - components: - - pos: 34.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6726 - components: - - pos: 33.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6727 - components: - - pos: 32.5,-10.5 - parent: 1 - type: Transform - - uid: 6728 - components: - - pos: 31.5,-10.5 - parent: 1 - type: Transform - - uid: 6729 - components: - - pos: 35.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6730 - components: - - pos: 36.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6731 - components: - - pos: 37.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6732 - components: - - pos: 38.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6733 - components: - - pos: 35.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6734 - components: - - pos: 36.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6735 - components: - - pos: 37.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6736 - components: - - pos: 38.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6737 - components: - - pos: 30.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6738 - components: - - pos: 29.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6739 - components: - - pos: 29.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6740 - components: - - pos: 29.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6741 - components: - - pos: 29.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6783 - components: - - pos: 17.5,-3.5 - parent: 1 - type: Transform - - uid: 6784 - components: - - pos: 17.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7056 - components: - - pos: 43.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7057 - components: - - pos: 44.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7058 - components: - - pos: 45.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7059 - components: - - pos: 46.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7060 - components: - - pos: 46.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7061 - components: - - pos: 46.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7062 - components: - - pos: 46.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7063 - components: - - pos: 46.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7064 - components: - - pos: 46.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7106 - components: - - pos: 8.5,-20.5 - parent: 1 - type: Transform - - uid: 7107 - components: - - pos: 6.5,-20.5 - parent: 1 - type: Transform - - uid: 7108 - components: - - pos: 7.5,-20.5 - parent: 1 - type: Transform - - uid: 7205 - components: - - pos: 1.5,-33.5 - parent: 1 - type: Transform - - uid: 7225 - components: - - pos: 46.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7226 - components: - - pos: 46.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7227 - components: - - pos: 46.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7228 - components: - - pos: 46.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7229 - components: - - pos: 46.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7230 - components: - - pos: 46.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7231 - components: - - pos: 46.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7232 - components: - - pos: 46.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7233 - components: - - pos: 46.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7234 - components: - - pos: 45.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7235 - components: - - pos: 44.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7236 - components: - - pos: 43.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7308 - components: - - pos: 15.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7309 - components: - - pos: 15.5,-27.5 - parent: 1 - type: Transform - - uid: 7310 - components: - - pos: 15.5,-26.5 - parent: 1 - type: Transform - - uid: 7311 - components: - - pos: 15.5,-25.5 - parent: 1 - type: Transform - - uid: 7312 - components: - - pos: 15.5,-24.5 - parent: 1 - type: Transform - - uid: 7313 - components: - - pos: 15.5,-23.5 - parent: 1 - type: Transform - - uid: 7314 - components: - - pos: 15.5,-22.5 - parent: 1 - type: Transform - - uid: 7315 - components: - - pos: 14.5,-26.5 - parent: 1 - type: Transform - - uid: 7316 - components: - - pos: 13.5,-26.5 - parent: 1 - type: Transform - - uid: 7317 - components: - - pos: 12.5,-26.5 - parent: 1 - type: Transform - - uid: 7318 - components: - - pos: 11.5,-26.5 - parent: 1 - type: Transform - - uid: 7319 - components: - - pos: 10.5,-26.5 - parent: 1 - type: Transform - - uid: 7320 - components: - - pos: 9.5,-26.5 - parent: 1 - type: Transform - - uid: 7321 - components: - - pos: 8.5,-26.5 - parent: 1 - type: Transform - - uid: 7322 - components: - - pos: 7.5,-26.5 - parent: 1 - type: Transform - - uid: 7323 - components: - - pos: 6.5,-26.5 - parent: 1 - type: Transform - - uid: 7324 - components: - - pos: 5.5,-26.5 - parent: 1 - type: Transform - - uid: 7325 - components: - - pos: 11.5,-27.5 - parent: 1 - type: Transform - - uid: 7326 - components: - - pos: 11.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7327 - components: - - pos: 11.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7328 - components: - - pos: 11.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7329 - components: - - pos: 13.5,-27.5 - parent: 1 - type: Transform - - uid: 7330 - components: - - pos: 13.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7331 - components: - - pos: 13.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7332 - components: - - pos: 13.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7333 - components: - - pos: 12.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7334 - components: - - pos: 11.5,-19.5 - parent: 1 - type: Transform - - uid: 7335 - components: - - pos: 10.5,-19.5 - parent: 1 - type: Transform - - uid: 7336 - components: - - pos: 9.5,-19.5 - parent: 1 - type: Transform - - uid: 7337 - components: - - pos: 9.5,-20.5 - parent: 1 - type: Transform - - uid: 7338 - components: - - pos: 9.5,-21.5 - parent: 1 - type: Transform - - uid: 7339 - components: - - pos: 9.5,-22.5 - parent: 1 - type: Transform - - uid: 7340 - components: - - pos: 9.5,-23.5 - parent: 1 - type: Transform - - uid: 7341 - components: - - pos: 11.5,-20.5 - parent: 1 - type: Transform - - uid: 7342 - components: - - pos: 11.5,-21.5 - parent: 1 - type: Transform - - uid: 7343 - components: - - pos: 11.5,-22.5 - parent: 1 - type: Transform - - uid: 7344 - components: - - pos: 15.5,-21.5 - parent: 1 - type: Transform - - uid: 7345 - components: - - pos: 15.5,-20.5 - parent: 1 - type: Transform - - uid: 7346 - components: - - pos: 23.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7347 - components: - - pos: 22.5,-21.5 - parent: 1 - type: Transform - - uid: 7348 - components: - - pos: 21.5,-21.5 - parent: 1 - type: Transform - - uid: 7349 - components: - - pos: 20.5,-21.5 - parent: 1 - type: Transform - - uid: 7350 - components: - - pos: 19.5,-21.5 - parent: 1 - type: Transform - - uid: 7351 - components: - - pos: 18.5,-21.5 - parent: 1 - type: Transform - - uid: 7352 - components: - - pos: 21.5,-22.5 - parent: 1 - type: Transform - - uid: 7353 - components: - - pos: 21.5,-23.5 - parent: 1 - type: Transform - - uid: 7354 - components: - - pos: 21.5,-24.5 - parent: 1 - type: Transform - - uid: 7355 - components: - - pos: 21.5,-25.5 - parent: 1 - type: Transform - - uid: 7356 - components: - - pos: 21.5,-26.5 - parent: 1 - type: Transform - - uid: 7357 - components: - - pos: 20.5,-26.5 - parent: 1 - type: Transform - - uid: 7358 - components: - - pos: 19.5,-26.5 - parent: 1 - type: Transform - - uid: 7359 - components: - - pos: 18.5,-26.5 - parent: 1 - type: Transform - - uid: 7360 - components: - - pos: 22.5,-23.5 - parent: 1 - type: Transform - - uid: 7361 - components: - - pos: 23.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7362 - components: - - pos: 24.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7363 - components: - - pos: 25.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7364 - components: - - pos: 25.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7365 - components: - - pos: 25.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7366 - components: - - pos: 25.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7367 - components: - - pos: 21.5,-20.5 - parent: 1 - type: Transform - - uid: 7368 - components: - - pos: 21.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7369 - components: - - pos: 21.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7370 - components: - - pos: 22.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7371 - components: - - pos: 23.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7372 - components: - - pos: 24.5,-18.5 - parent: 1 - type: Transform - - uid: 7373 - components: - - pos: 25.5,-18.5 - parent: 1 - type: Transform - - uid: 7374 - components: - - pos: 5.5,-20.5 - parent: 1 - type: Transform - - uid: 7375 - components: - - pos: 5.5,-21.5 - parent: 1 - type: Transform - - uid: 7376 - components: - - pos: 5.5,-22.5 - parent: 1 - type: Transform - - uid: 7377 - components: - - pos: 9.5,-18.5 - parent: 1 - type: Transform - - uid: 7378 - components: - - pos: 9.5,-17.5 - parent: 1 - type: Transform - - uid: 7379 - components: - - pos: 8.5,-17.5 - parent: 1 - type: Transform - - uid: 7380 - components: - - pos: 7.5,-17.5 - parent: 1 - type: Transform - - uid: 7381 - components: - - pos: 6.5,-17.5 - parent: 1 - type: Transform - - uid: 7382 - components: - - pos: 5.5,-17.5 - parent: 1 - type: Transform - - uid: 7383 - components: - - pos: 5.5,-16.5 - parent: 1 - type: Transform - - uid: 7384 - components: - - pos: 5.5,-15.5 - parent: 1 - type: Transform - - uid: 7385 - components: - - pos: 5.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7386 - components: - - pos: -19.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7387 - components: - - pos: -17.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7388 - components: - - pos: 30.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7563 - components: - - pos: -40.5,22.5 - parent: 1 - type: Transform - - uid: 7564 - components: - - pos: -40.5,21.5 - parent: 1 - type: Transform - - uid: 7565 - components: - - pos: -40.5,20.5 - parent: 1 - type: Transform - - uid: 7566 - components: - - pos: -40.5,19.5 - parent: 1 - type: Transform - - uid: 7567 - components: - - pos: -40.5,18.5 - parent: 1 - type: Transform - - uid: 7568 - components: - - pos: -40.5,17.5 - parent: 1 - type: Transform - - uid: 7569 - components: - - pos: -39.5,22.5 - parent: 1 - type: Transform - - uid: 7570 - components: - - pos: -38.5,22.5 - parent: 1 - type: Transform - - uid: 7571 - components: - - pos: -37.5,22.5 - parent: 1 - type: Transform - - uid: 7720 - components: - - pos: -8.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7721 - components: - - pos: -7.5,-17.5 - parent: 1 - type: Transform - - uid: 7722 - components: - - pos: -7.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7810 - components: - - pos: -4.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7811 - components: - - pos: -4.5,-26.5 - parent: 1 - type: Transform - - uid: 7812 - components: - - pos: -4.5,-25.5 - parent: 1 - type: Transform - - uid: 7813 - components: - - pos: -5.5,-25.5 - parent: 1 - type: Transform - - uid: 7814 - components: - - pos: -6.5,-25.5 - parent: 1 - type: Transform - - uid: 7815 - components: - - pos: -6.5,-26.5 - parent: 1 - type: Transform - - uid: 7816 - components: - - pos: -6.5,-27.5 - parent: 1 - type: Transform - - uid: 7817 - components: - - pos: -6.5,-28.5 - parent: 1 - type: Transform - - uid: 7818 - components: - - pos: -3.5,-25.5 - parent: 1 - type: Transform - - uid: 7819 - components: - - pos: -2.5,-25.5 - parent: 1 - type: Transform - - uid: 7820 - components: - - pos: -2.5,-26.5 - parent: 1 - type: Transform - - uid: 7821 - components: - - pos: -2.5,-27.5 - parent: 1 - type: Transform - - uid: 7822 - components: - - pos: -2.5,-28.5 - parent: 1 - type: Transform - - uid: 7823 - components: - - pos: -3.5,-24.5 - parent: 1 - type: Transform - - uid: 7824 - components: - - pos: -3.5,-23.5 - parent: 1 - type: Transform - - uid: 7825 - components: - - pos: -3.5,-22.5 - parent: 1 - type: Transform - - uid: 7826 - components: - - pos: -3.5,-21.5 - parent: 1 - type: Transform - - uid: 7827 - components: - - pos: -4.5,-21.5 - parent: 1 - type: Transform - - uid: 7828 - components: - - pos: -2.5,-21.5 - parent: 1 - type: Transform - - uid: 7829 - components: - - pos: -0.5,-25.5 - parent: 1 - type: Transform - - uid: 7830 - components: - - pos: 0.5,-25.5 - parent: 1 - type: Transform - - uid: 7831 - components: - - pos: 1.5,-25.5 - parent: 1 - type: Transform - - uid: 7832 - components: - - pos: -1.5,-25.5 - parent: 1 - type: Transform - - uid: 7833 - components: - - pos: -5.5,-33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7834 - components: - - pos: -4.5,-33.5 - parent: 1 - type: Transform - - uid: 7835 - components: - - pos: -3.5,-33.5 - parent: 1 - type: Transform - - uid: 7836 - components: - - pos: -2.5,-33.5 - parent: 1 - type: Transform - - uid: 7837 - components: - - pos: -2.5,-32.5 - parent: 1 - type: Transform - - uid: 7838 - components: - - pos: -1.5,-32.5 - parent: 1 - type: Transform - - uid: 7839 - components: - - pos: -0.5,-32.5 - parent: 1 - type: Transform - - uid: 7840 - components: - - pos: 0.5,-32.5 - parent: 1 - type: Transform - - uid: 7841 - components: - - pos: 1.5,-32.5 - parent: 1 - type: Transform - - uid: 7842 - components: - - pos: 1.5,-31.5 - parent: 1 - type: Transform - - uid: 7843 - components: - - pos: 1.5,-30.5 - parent: 1 - type: Transform - - uid: 7844 - components: - - pos: 1.5,-29.5 - parent: 1 - type: Transform - - uid: 7845 - components: - - pos: 1.5,-26.5 - parent: 1 - type: Transform - - uid: 7846 - components: - - pos: -5.5,-32.5 - parent: 1 - type: Transform - - uid: 7847 - components: - - pos: -6.5,-32.5 - parent: 1 - type: Transform - - uid: 7848 - components: - - pos: -0.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7849 - components: - - pos: 0.5,-15.5 - parent: 1 - type: Transform - - uid: 7850 - components: - - pos: 1.5,-15.5 - parent: 1 - type: Transform - - uid: 7851 - components: - - pos: 1.5,-16.5 - parent: 1 - type: Transform - - uid: 7852 - components: - - pos: 1.5,-17.5 - parent: 1 - type: Transform - - uid: 7853 - components: - - pos: 1.5,-18.5 - parent: 1 - type: Transform - - uid: 7854 - components: - - pos: 1.5,-19.5 - parent: 1 - type: Transform - - uid: 7855 - components: - - pos: 1.5,-20.5 - parent: 1 - type: Transform - - uid: 7856 - components: - - pos: 1.5,-21.5 - parent: 1 - type: Transform - - uid: 7857 - components: - - pos: 1.5,-24.5 - parent: 1 - type: Transform - - uid: 7858 - components: - - pos: 1.5,-23.5 - parent: 1 - type: Transform - - uid: 7859 - components: - - pos: 1.5,-14.5 - parent: 1 - type: Transform - - uid: 7860 - components: - - pos: 1.5,-13.5 - parent: 1 - type: Transform - - uid: 7861 - components: - - pos: 1.5,-12.5 - parent: 1 - type: Transform - - uid: 7862 - components: - - pos: 1.5,-11.5 - parent: 1 - type: Transform - - uid: 7863 - components: - - pos: 1.5,-10.5 - parent: 1 - type: Transform - - uid: 7864 - components: - - pos: 1.5,-9.5 - parent: 1 - type: Transform - - uid: 7865 - components: - - pos: 1.5,-8.5 - parent: 1 - type: Transform - - uid: 7866 - components: - - pos: 0.5,-8.5 - parent: 1 - type: Transform - - uid: 7867 - components: - - pos: 2.5,-8.5 - parent: 1 - type: Transform - - uid: 7868 - components: - - pos: 3.5,-8.5 - parent: 1 - type: Transform - - uid: 7869 - components: - - pos: 4.5,-8.5 - parent: 1 - type: Transform - - uid: 7870 - components: - - pos: 5.5,-8.5 - parent: 1 - type: Transform - - uid: 7871 - components: - - pos: 6.5,-8.5 - parent: 1 - type: Transform - - uid: 7872 - components: - - pos: 7.5,-8.5 - parent: 1 - type: Transform - - uid: 7873 - components: - - pos: -20.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7874 - components: - - pos: -19.5,-25.5 - parent: 1 - type: Transform - - uid: 7875 - components: - - pos: -18.5,-25.5 - parent: 1 - type: Transform - - uid: 7876 - components: - - pos: -17.5,-25.5 - parent: 1 - type: Transform - - uid: 7877 - components: - - pos: -16.5,-25.5 - parent: 1 - type: Transform - - uid: 7878 - components: - - pos: -15.5,-25.5 - parent: 1 - type: Transform - - uid: 7879 - components: - - pos: -14.5,-25.5 - parent: 1 - type: Transform - - uid: 7880 - components: - - pos: -13.5,-25.5 - parent: 1 - type: Transform - - uid: 7881 - components: - - pos: -12.5,-25.5 - parent: 1 - type: Transform - - uid: 7882 - components: - - pos: -11.5,-25.5 - parent: 1 - type: Transform - - uid: 7883 - components: - - pos: -11.5,-26.5 - parent: 1 - type: Transform - - uid: 7884 - components: - - pos: -11.5,-27.5 - parent: 1 - type: Transform - - uid: 7885 - components: - - pos: -11.5,-28.5 - parent: 1 - type: Transform - - uid: 7886 - components: - - pos: -11.5,-29.5 - parent: 1 - type: Transform - - uid: 7887 - components: - - pos: -11.5,-30.5 - parent: 1 - type: Transform - - uid: 7894 - components: - - pos: -17.5,-1.5 - parent: 1 - type: Transform - - uid: 7895 - components: - - pos: -17.5,-0.5 - parent: 1 - type: Transform - - uid: 7905 - components: - - pos: -39.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7906 - components: - - pos: -39.5,-7.5 - parent: 1 - type: Transform - - uid: 7907 - components: - - pos: -39.5,-6.5 - parent: 1 - type: Transform - - uid: 7908 - components: - - pos: -38.5,-6.5 - parent: 1 - type: Transform - - uid: 7909 - components: - - pos: -37.5,-6.5 - parent: 1 - type: Transform - - uid: 7910 - components: - - pos: -36.5,-6.5 - parent: 1 - type: Transform - - uid: 7911 - components: - - pos: -37.5,-7.5 - parent: 1 - type: Transform - - uid: 7912 - components: - - pos: -37.5,-8.5 - parent: 1 - type: Transform - - uid: 7913 - components: - - pos: -37.5,-9.5 - parent: 1 - type: Transform - - uid: 7914 - components: - - pos: -37.5,-10.5 - parent: 1 - type: Transform - - uid: 7915 - components: - - pos: -36.5,-10.5 - parent: 1 - type: Transform - - uid: 7916 - components: - - pos: -40.5,-6.5 - parent: 1 - type: Transform - - uid: 7917 - components: - - pos: -41.5,-6.5 - parent: 1 - type: Transform - - uid: 7918 - components: - - pos: -37.5,-5.5 - parent: 1 - type: Transform - - uid: 7919 - components: - - pos: -37.5,-4.5 - parent: 1 - type: Transform - - uid: 7920 - components: - - pos: -37.5,-3.5 - parent: 1 - type: Transform - - uid: 7921 - components: - - pos: -37.5,-2.5 - parent: 1 - type: Transform - - uid: 7922 - components: - - pos: -37.5,-1.5 - parent: 1 - type: Transform - - uid: 7923 - components: - - pos: -37.5,-0.5 - parent: 1 - type: Transform - - uid: 7924 - components: - - pos: -39.5,-5.5 - parent: 1 - type: Transform - - uid: 7925 - components: - - pos: -39.5,-4.5 - parent: 1 - type: Transform - - uid: 7926 - components: - - pos: -39.5,-3.5 - parent: 1 - type: Transform - - uid: 7927 - components: - - pos: -39.5,-2.5 - parent: 1 - type: Transform - - uid: 7928 - components: - - pos: -39.5,-1.5 - parent: 1 - type: Transform - - uid: 7929 - components: - - pos: -39.5,-0.5 - parent: 1 - type: Transform - - uid: 7930 - components: - - pos: -38.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7931 - components: - - pos: -39.5,14.5 - parent: 1 - type: Transform - - uid: 7932 - components: - - pos: -40.5,14.5 - parent: 1 - type: Transform - - uid: 7933 - components: - - pos: -40.5,13.5 - parent: 1 - type: Transform - - uid: 7934 - components: - - pos: -40.5,12.5 - parent: 1 - type: Transform - - uid: 7935 - components: - - pos: -40.5,11.5 - parent: 1 - type: Transform - - uid: 7936 - components: - - pos: -40.5,10.5 - parent: 1 - type: Transform - - uid: 7937 - components: - - pos: -40.5,9.5 - parent: 1 - type: Transform - - uid: 7938 - components: - - pos: -40.5,8.5 - parent: 1 - type: Transform - - uid: 7939 - components: - - pos: -40.5,7.5 - parent: 1 - type: Transform - - uid: 7940 - components: - - pos: -40.5,6.5 - parent: 1 - type: Transform - - uid: 7941 - components: - - pos: -40.5,5.5 - parent: 1 - type: Transform - - uid: 7942 - components: - - pos: -40.5,4.5 - parent: 1 - type: Transform - - uid: 7943 - components: - - pos: -40.5,3.5 - parent: 1 - type: Transform - - uid: 7944 - components: - - pos: -40.5,2.5 - parent: 1 - type: Transform - - uid: 7945 - components: - - pos: -41.5,3.5 - parent: 1 - type: Transform - - uid: 7946 - components: - - pos: -42.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7947 - components: - - pos: -43.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7948 - components: - - pos: -41.5,5.5 - parent: 1 - type: Transform - - uid: 7949 - components: - - pos: -42.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7950 - components: - - pos: -43.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7951 - components: - - pos: -41.5,11.5 - parent: 1 - type: Transform - - uid: 7952 - components: - - pos: -42.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7953 - components: - - pos: -43.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7954 - components: - - pos: -41.5,13.5 - parent: 1 - type: Transform - - uid: 7955 - components: - - pos: -42.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7956 - components: - - pos: -43.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7957 - components: - - pos: -30.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7958 - components: - - pos: -31.5,9.5 - parent: 1 - type: Transform - - uid: 7959 - components: - - pos: -32.5,9.5 - parent: 1 - type: Transform - - uid: 7960 - components: - - pos: -33.5,9.5 - parent: 1 - type: Transform - - uid: 7961 - components: - - pos: -34.5,9.5 - parent: 1 - type: Transform - - uid: 7962 - components: - - pos: -34.5,8.5 - parent: 1 - type: Transform - - uid: 7963 - components: - - pos: -34.5,7.5 - parent: 1 - type: Transform - - uid: 7964 - components: - - pos: -34.5,6.5 - parent: 1 - type: Transform - - uid: 7965 - components: - - pos: -34.5,5.5 - parent: 1 - type: Transform - - uid: 7966 - components: - - pos: -34.5,4.5 - parent: 1 - type: Transform - - uid: 7967 - components: - - pos: -34.5,3.5 - parent: 1 - type: Transform - - uid: 7968 - components: - - pos: -34.5,2.5 - parent: 1 - type: Transform - - uid: 7969 - components: - - pos: -35.5,2.5 - parent: 1 - type: Transform - - uid: 7970 - components: - - pos: -36.5,2.5 - parent: 1 - type: Transform - - uid: 7971 - components: - - pos: -33.5,2.5 - parent: 1 - type: Transform - - uid: 7972 - components: - - pos: -32.5,2.5 - parent: 1 - type: Transform - - uid: 7973 - components: - - pos: -31.5,2.5 - parent: 1 - type: Transform - - uid: 7974 - components: - - pos: -30.5,2.5 - parent: 1 - type: Transform - - uid: 7975 - components: - - pos: -29.5,2.5 - parent: 1 - type: Transform - - uid: 7976 - components: - - pos: -28.5,2.5 - parent: 1 - type: Transform - - uid: 7977 - components: - - pos: -27.5,2.5 - parent: 1 - type: Transform - - uid: 7978 - components: - - pos: -28.5,3.5 - parent: 1 - type: Transform - - uid: 7979 - components: - - pos: -32.5,1.5 - parent: 1 - type: Transform - - uid: 7980 - components: - - pos: -35.5,9.5 - parent: 1 - type: Transform - - uid: 7981 - components: - - pos: -36.5,9.5 - parent: 1 - type: Transform - - uid: 7982 - components: - - pos: -37.5,9.5 - parent: 1 - type: Transform - - uid: 7983 - components: - - pos: -35.5,6.5 - parent: 1 - type: Transform - - uid: 7984 - components: - - pos: -36.5,6.5 - parent: 1 - type: Transform - - uid: 7985 - components: - - pos: -37.5,6.5 - parent: 1 - type: Transform - - uid: 7986 - components: - - pos: -33.5,6.5 - parent: 1 - type: Transform - - uid: 7987 - components: - - pos: -32.5,6.5 - parent: 1 - type: Transform - - uid: 7988 - components: - - pos: -31.5,6.5 - parent: 1 - type: Transform - - uid: 7989 - components: - - pos: -32.5,10.5 - parent: 1 - type: Transform - - uid: 7990 - components: - - pos: -32.5,11.5 - parent: 1 - type: Transform - - uid: 7991 - components: - - pos: -32.5,12.5 - parent: 1 - type: Transform - - uid: 7992 - components: - - pos: -32.5,13.5 - parent: 1 - type: Transform - - uid: 7993 - components: - - pos: -32.5,14.5 - parent: 1 - type: Transform - - uid: 7994 - components: - - pos: -32.5,15.5 - parent: 1 - type: Transform - - uid: 7995 - components: - - pos: -37.5,10.5 - parent: 1 - type: Transform - - uid: 7996 - components: - - pos: -37.5,11.5 - parent: 1 - type: Transform - - uid: 7997 - components: - - pos: -37.5,12.5 - parent: 1 - type: Transform - - uid: 7998 - components: - - pos: -37.5,13.5 - parent: 1 - type: Transform - - uid: 7999 - components: - - pos: -33.5,13.5 - parent: 1 - type: Transform - - uid: 8000 - components: - - pos: -38.5,-10.5 - parent: 1 - type: Transform - - uid: 8095 - components: - - pos: 28.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8096 - components: - - pos: 28.5,1.5 - parent: 1 - type: Transform - - uid: 8097 - components: - - pos: 28.5,2.5 - parent: 1 - type: Transform - - uid: 8098 - components: - - pos: 27.5,2.5 - parent: 1 - type: Transform - - uid: 8099 - components: - - pos: 26.5,2.5 - parent: 1 - type: Transform - - uid: 8100 - components: - - pos: 25.5,2.5 - parent: 1 - type: Transform - - uid: 8101 - components: - - pos: 24.5,2.5 - parent: 1 - type: Transform - - uid: 8102 - components: - - pos: 23.5,2.5 - parent: 1 - type: Transform - - uid: 8103 - components: - - pos: 22.5,2.5 - parent: 1 - type: Transform - - uid: 8104 - components: - - pos: 21.5,2.5 - parent: 1 - type: Transform - - uid: 8105 - components: - - pos: 20.5,2.5 - parent: 1 - type: Transform - - uid: 8106 - components: - - pos: 19.5,2.5 - parent: 1 - type: Transform - - uid: 8107 - components: - - pos: 18.5,2.5 - parent: 1 - type: Transform - - uid: 8108 - components: - - pos: 17.5,2.5 - parent: 1 - type: Transform - - uid: 8109 - components: - - pos: 16.5,2.5 - parent: 1 - type: Transform - - uid: 8110 - components: - - pos: 15.5,2.5 - parent: 1 - type: Transform - - uid: 8111 - components: - - pos: 14.5,2.5 - parent: 1 - type: Transform - - uid: 8112 - components: - - pos: 13.5,2.5 - parent: 1 - type: Transform - - uid: 8113 - components: - - pos: 12.5,2.5 - parent: 1 - type: Transform - - uid: 8114 - components: - - pos: 29.5,2.5 - parent: 1 - type: Transform - - uid: 8115 - components: - - pos: 30.5,2.5 - parent: 1 - type: Transform - - uid: 8116 - components: - - pos: 31.5,2.5 - parent: 1 - type: Transform - - uid: 8117 - components: - - pos: 32.5,2.5 - parent: 1 - type: Transform - - uid: 8118 - components: - - pos: 33.5,2.5 - parent: 1 - type: Transform - - uid: 8119 - components: - - pos: 34.5,2.5 - parent: 1 - type: Transform - - uid: 8120 - components: - - pos: 35.5,2.5 - parent: 1 - type: Transform - - uid: 8121 - components: - - pos: 36.5,2.5 - parent: 1 - type: Transform - - uid: 8122 - components: - - pos: 37.5,2.5 - parent: 1 - type: Transform - - uid: 8123 - components: - - pos: 38.5,2.5 - parent: 1 - type: Transform - - uid: 8124 - components: - - pos: 39.5,2.5 - parent: 1 - type: Transform - - uid: 8125 - components: - - pos: 40.5,2.5 - parent: 1 - type: Transform - - uid: 8126 - components: - - pos: 41.5,2.5 - parent: 1 - type: Transform - - uid: 8127 - components: - - pos: 42.5,2.5 - parent: 1 - type: Transform - - uid: 8128 - components: - - pos: 43.5,2.5 - parent: 1 - type: Transform - - uid: 8129 - components: - - pos: 44.5,2.5 - parent: 1 - type: Transform - - uid: 8130 - components: - - pos: 45.5,2.5 - parent: 1 - type: Transform - - uid: 8131 - components: - - pos: 43.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8132 - components: - - pos: 44.5,14.5 - parent: 1 - type: Transform - - uid: 8133 - components: - - pos: 45.5,14.5 - parent: 1 - type: Transform - - uid: 8134 - components: - - pos: 45.5,13.5 - parent: 1 - type: Transform - - uid: 8135 - components: - - pos: 45.5,12.5 - parent: 1 - type: Transform - - uid: 8136 - components: - - pos: 45.5,11.5 - parent: 1 - type: Transform - - uid: 8137 - components: - - pos: 45.5,10.5 - parent: 1 - type: Transform - - uid: 8138 - components: - - pos: 45.5,9.5 - parent: 1 - type: Transform - - uid: 8139 - components: - - pos: 45.5,8.5 - parent: 1 - type: Transform - - uid: 8140 - components: - - pos: 45.5,7.5 - parent: 1 - type: Transform - - uid: 8141 - components: - - pos: 45.5,6.5 - parent: 1 - type: Transform - - uid: 8142 - components: - - pos: 45.5,5.5 - parent: 1 - type: Transform - - uid: 8143 - components: - - pos: 45.5,4.5 - parent: 1 - type: Transform - - uid: 8144 - components: - - pos: 46.5,5.5 - parent: 1 - type: Transform - - uid: 8145 - components: - - pos: 45.5,15.5 - parent: 1 - type: Transform - - uid: 8146 - components: - - pos: 45.5,16.5 - parent: 1 - type: Transform - - uid: 8147 - components: - - pos: 45.5,17.5 - parent: 1 - type: Transform - - uid: 8148 - components: - - pos: 45.5,18.5 - parent: 1 - type: Transform - - uid: 8149 - components: - - pos: 45.5,19.5 - parent: 1 - type: Transform - - uid: 8150 - components: - - pos: 46.5,12.5 - parent: 1 - type: Transform - - uid: 8151 - components: - - pos: 41.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8152 - components: - - pos: 41.5,23.5 - parent: 1 - type: Transform - - uid: 8153 - components: - - pos: 41.5,22.5 - parent: 1 - type: Transform - - uid: 8154 - components: - - pos: 40.5,22.5 - parent: 1 - type: Transform - - uid: 8155 - components: - - pos: 42.5,22.5 - parent: 1 - type: Transform - - uid: 8156 - components: - - pos: 43.5,22.5 - parent: 1 - type: Transform - - uid: 8157 - components: - - pos: 44.5,22.5 - parent: 1 - type: Transform - - uid: 8158 - components: - - pos: 45.5,22.5 - parent: 1 - type: Transform - - uid: 8159 - components: - - pos: 45.5,21.5 - parent: 1 - type: Transform - - uid: 8160 - components: - - pos: 38.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8161 - components: - - pos: 39.5,28.5 - parent: 1 - type: Transform - - uid: 8162 - components: - - pos: 40.5,28.5 - parent: 1 - type: Transform - - uid: 8163 - components: - - pos: 41.5,28.5 - parent: 1 - type: Transform - - uid: 8164 - components: - - pos: 42.5,28.5 - parent: 1 - type: Transform - - uid: 8165 - components: - - pos: 43.5,28.5 - parent: 1 - type: Transform - - uid: 8166 - components: - - pos: 44.5,28.5 - parent: 1 - type: Transform - - uid: 8167 - components: - - pos: 45.5,28.5 - parent: 1 - type: Transform - - uid: 8168 - components: - - pos: 45.5,27.5 - parent: 1 - type: Transform - - uid: 8169 - components: - - pos: 45.5,26.5 - parent: 1 - type: Transform - - uid: 8170 - components: - - pos: 41.5,27.5 - parent: 1 - type: Transform - - uid: 8171 - components: - - pos: 41.5,26.5 - parent: 1 - type: Transform - - uid: 8172 - components: - - pos: 43.5,29.5 - parent: 1 - type: Transform - - uid: 8173 - components: - - pos: 43.5,30.5 - parent: 1 - type: Transform - - uid: 8174 - components: - - pos: 43.5,31.5 - parent: 1 - type: Transform - - uid: 8175 - components: - - pos: 43.5,32.5 - parent: 1 - type: Transform - - uid: 8176 - components: - - pos: 43.5,33.5 - parent: 1 - type: Transform - - uid: 8177 - components: - - pos: 42.5,32.5 - parent: 1 - type: Transform - - uid: 8178 - components: - - pos: 41.5,32.5 - parent: 1 - type: Transform - - uid: 8179 - components: - - pos: 40.5,32.5 - parent: 1 - type: Transform - - uid: 8180 - components: - - pos: 44.5,32.5 - parent: 1 - type: Transform - - uid: 8181 - components: - - pos: 45.5,32.5 - parent: 1 - type: Transform - - uid: 8190 - components: - - pos: 10.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8193 - components: - - pos: 9.5,-2.5 - parent: 1 - type: Transform - - uid: 8194 - components: - - pos: 8.5,-2.5 - parent: 1 - type: Transform - - uid: 8195 - components: - - pos: 8.5,-3.5 - parent: 1 - type: Transform - - uid: 8196 - components: - - pos: 8.5,-4.5 - parent: 1 - type: Transform - - uid: 8197 - components: - - pos: 8.5,-5.5 - parent: 1 - type: Transform - - uid: 8198 - components: - - pos: 5.5,2.5 - parent: 1 - type: Transform - - uid: 8199 - components: - - pos: 6.5,2.5 - parent: 1 - type: Transform - - uid: 8200 - components: - - pos: 7.5,2.5 - parent: 1 - type: Transform - - uid: 8201 - components: - - pos: 8.5,2.5 - parent: 1 - type: Transform - - uid: 8202 - components: - - pos: 8.5,3.5 - parent: 1 - type: Transform - - uid: 8203 - components: - - pos: 8.5,4.5 - parent: 1 - type: Transform - - uid: 8204 - components: - - pos: 8.5,5.5 - parent: 1 - type: Transform - - uid: 8205 - components: - - pos: 11.5,-2.5 - parent: 1 - type: Transform - - uid: 8206 - components: - - pos: 12.5,-2.5 - parent: 1 - type: Transform - - uid: 8207 - components: - - pos: 12.5,-1.5 - parent: 1 - type: Transform - - uid: 8208 - components: - - pos: 13.5,-1.5 - parent: 1 - type: Transform - - uid: 8209 - components: - - pos: 14.5,-1.5 - parent: 1 - type: Transform - - uid: 8210 - components: - - pos: 43.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8211 - components: - - pos: 42.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8212 - components: - - pos: 42.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8213 - components: - - pos: 41.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8214 - components: - - pos: 40.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8215 - components: - - pos: 39.5,16.5 - parent: 1 - type: Transform - - uid: 8216 - components: - - pos: 39.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8217 - components: - - pos: 37.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8218 - components: - - pos: 37.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8219 - components: - - pos: 37.5,30.5 - parent: 1 - type: Transform - - uid: 8248 - components: - - pos: -10.5,-25.5 - parent: 1 - type: Transform - - uid: 8249 - components: - - pos: -10.5,-24.5 - parent: 1 - type: Transform - - uid: 8250 - components: - - pos: -10.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8251 - components: - - pos: -10.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8252 - components: - - pos: -9.5,-22.5 - parent: 1 - type: Transform - - uid: 8363 - components: - - pos: -31.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8364 - components: - - pos: -31.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8365 - components: - - pos: -31.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8366 - components: - - pos: -30.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8367 - components: - - pos: -32.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8368 - components: - - pos: -33.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8369 - components: - - pos: -34.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8370 - components: - - pos: -35.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8371 - components: - - pos: -35.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8374 - components: - - pos: -32.5,-16.5 - parent: 1 - type: Transform - - uid: 8375 - components: - - pos: -31.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8376 - components: - - pos: -30.5,-16.5 - parent: 1 - type: Transform - - uid: 8377 - components: - - pos: -29.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8378 - components: - - pos: -29.5,-15.5 - parent: 1 - type: Transform - - uid: 8379 - components: - - pos: -29.5,-14.5 - parent: 1 - type: Transform - - uid: 8380 - components: - - pos: -29.5,-13.5 - parent: 1 - type: Transform - - uid: 8381 - components: - - pos: -33.5,-16.5 - parent: 1 - type: Transform - - uid: 8382 - components: - - pos: -34.5,-16.5 - parent: 1 - type: Transform - - uid: 8385 - components: - - pos: -39.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8386 - components: - - pos: -38.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8387 - components: - - pos: -38.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8388 - components: - - pos: -38.5,-20.5 - parent: 1 - type: Transform - - uid: 8389 - components: - - pos: -40.5,-18.5 - parent: 1 - type: Transform - - uid: 8390 - components: - - pos: -41.5,-18.5 - parent: 1 - type: Transform - - uid: 8391 - components: - - pos: -42.5,-18.5 - parent: 1 - type: Transform - - uid: 8392 - components: - - pos: -41.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8393 - components: - - pos: -41.5,-16.5 - parent: 1 - type: Transform - - uid: 8394 - components: - - pos: -41.5,-15.5 - parent: 1 - type: Transform - - uid: 8395 - components: - - pos: -41.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8396 - components: - - pos: -41.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8397 - components: - - pos: -31.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8398 - components: - - pos: -32.5,-20.5 - parent: 1 - type: Transform - - uid: 8399 - components: - - pos: -33.5,-20.5 - parent: 1 - type: Transform - - uid: 8400 - components: - - pos: -34.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8401 - components: - - pos: -35.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8402 - components: - - pos: -36.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8403 - components: - - pos: -30.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8404 - components: - - pos: -29.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8405 - components: - - pos: -28.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8406 - components: - - pos: -27.5,-20.5 - parent: 1 - type: Transform - - uid: 8407 - components: - - pos: 2.5,-11.5 - parent: 1 - type: Transform - - uid: 8408 - components: - - pos: -27.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8409 - components: - - pos: -27.5,-22.5 - parent: 1 - type: Transform - - uid: 8410 - components: - - pos: -26.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8411 - components: - - pos: -25.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8412 - components: - - pos: -24.5,-22.5 - parent: 1 - type: Transform - - uid: 8413 - components: - - pos: -23.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8414 - components: - - pos: -22.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8437 - components: - - pos: 34.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8438 - components: - - pos: 34.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8439 - components: - - pos: 34.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8440 - components: - - pos: 35.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8441 - components: - - pos: 36.5,34.5 - parent: 1 - type: Transform - - uid: 8442 - components: - - pos: 33.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8443 - components: - - pos: 32.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8444 - components: - - pos: 31.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8445 - components: - - pos: 30.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8446 - components: - - pos: 29.5,34.5 - parent: 1 - type: Transform - - uid: 8447 - components: - - pos: 28.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8448 - components: - - pos: 27.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8449 - components: - - pos: 26.5,34.5 - parent: 1 - type: Transform - - uid: 8450 - components: - - pos: 25.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8451 - components: - - pos: 24.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8452 - components: - - pos: 23.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8453 - components: - - pos: 22.5,34.5 - parent: 1 - type: Transform - - uid: 8454 - components: - - pos: 21.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8455 - components: - - pos: 20.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8456 - components: - - pos: 20.5,33.5 - parent: 1 - type: Transform - - uid: 8457 - components: - - pos: 24.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8458 - components: - - pos: 24.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8459 - components: - - pos: 24.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8460 - components: - - pos: 32.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8461 - components: - - pos: 32.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8462 - components: - - pos: 32.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8463 - components: - - pos: 25.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8464 - components: - - pos: 31.5,33.5 - parent: 1 - type: Transform - - uid: 8465 - components: - - pos: 8.5,20.5 - parent: 1 - type: Transform - - uid: 8466 - components: - - pos: 8.5,21.5 - parent: 1 - type: Transform - - uid: 8467 - components: - - pos: 8.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8468 - components: - - pos: 8.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8469 - components: - - pos: 8.5,24.5 - parent: 1 - type: Transform - - uid: 8470 - components: - - pos: 8.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8471 - components: - - pos: 8.5,26.5 - parent: 1 - type: Transform - - uid: 8472 - components: - - pos: 8.5,27.5 - parent: 1 - type: Transform - - uid: 8473 - components: - - pos: 8.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8474 - components: - - pos: 8.5,29.5 - parent: 1 - type: Transform - - uid: 8475 - components: - - pos: 8.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8476 - components: - - pos: 9.5,30.5 - parent: 1 - type: Transform - - uid: 8477 - components: - - pos: 10.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8478 - components: - - pos: 10.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8479 - components: - - pos: 10.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8480 - components: - - pos: 10.5,33.5 - parent: 1 - type: Transform - - uid: 8481 - components: - - pos: 22.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8482 - components: - - pos: 25.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8483 - components: - - pos: 25.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8935 - components: - - pos: -28.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8936 - components: - - pos: -27.5,-13.5 - parent: 1 - type: Transform - - uid: 9067 - components: - - pos: -39.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9068 - components: - - pos: -40.5,-11.5 - parent: 1 - type: Transform - - uid: 9069 - components: - - pos: -41.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9070 - components: - - pos: -41.5,-10.5 - parent: 1 - type: Transform - - uid: 9197 - components: - - pos: -32.5,24.5 - parent: 1 - type: Transform - - uid: 9200 - components: - - pos: -31.5,23.5 - parent: 1 - type: Transform - - uid: 9202 - components: - - pos: -33.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9203 - components: - - pos: -33.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9204 - components: - - pos: -33.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9205 - components: - - pos: -34.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9206 - components: - - pos: -26.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9207 - components: - - pos: -26.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9208 - components: - - pos: -26.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9209 - components: - - pos: -27.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9210 - components: - - pos: -28.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9211 - components: - - pos: -29.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9212 - components: - - pos: -29.5,22.5 - parent: 1 - type: Transform - - uid: 9213 - components: - - pos: -29.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9214 - components: - - pos: -29.5,20.5 - parent: 1 - type: Transform - - uid: 9215 - components: - - pos: -29.5,19.5 - parent: 1 - type: Transform - - uid: 9216 - components: - - pos: -29.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9217 - components: - - pos: -29.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9218 - components: - - pos: -26.5,27.5 - parent: 1 - type: Transform - - uid: 9219 - components: - - pos: -25.5,27.5 - parent: 1 - type: Transform - - uid: 9220 - components: - - pos: -24.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9221 - components: - - pos: -23.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9222 - components: - - pos: -22.5,27.5 - parent: 1 - type: Transform - - uid: 9223 - components: - - pos: -30.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9224 - components: - - pos: -31.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9225 - components: - - pos: -32.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9226 - components: - - pos: -33.5,19.5 - parent: 1 - type: Transform - - uid: 9227 - components: - - pos: -34.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9228 - components: - - pos: -35.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9229 - components: - - pos: -27.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9230 - components: - - pos: -28.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9231 - components: - - pos: -28.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9233 - components: - - pos: -28.5,25.5 - parent: 1 - type: Transform - - uid: 9310 - components: - - pos: 20.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9735 - components: - - pos: -29.5,24.5 - parent: 1 - type: Transform - - uid: 9738 - components: - - pos: -30.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9739 - components: - - pos: -31.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12124 - components: - - pos: -39.5,23.5 - parent: 1 - type: Transform - - uid: 12125 - components: - - pos: -39.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12358 - components: - - pos: 26.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12359 - components: - - pos: 26.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12360 - components: - - pos: 26.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12361 - components: - - pos: 25.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12472 - components: - - pos: -3.5,2.5 - parent: 1 - type: Transform - - uid: 12473 - components: - - pos: -4.5,2.5 - parent: 1 - type: Transform - - uid: 12474 - components: - - pos: -5.5,2.5 - parent: 1 - type: Transform - - uid: 12475 - components: - - pos: -6.5,2.5 - parent: 1 - type: Transform - - uid: 12477 - components: - - pos: 46.5,22.5 - parent: 1 - type: Transform - - uid: 12479 - components: - - pos: -26.5,2.5 - parent: 1 - type: Transform - - uid: 12480 - components: - - pos: -25.5,2.5 - parent: 1 - type: Transform - - uid: 12564 - components: - - pos: -33.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- proto: CableApcStack - entities: - - uid: 3981 - components: - - pos: -2.3223429,44.45334 - parent: 1 - type: Transform - - uid: 7643 - components: - - pos: -41.491985,19.092318 - parent: 1 - type: Transform - - uid: 8229 - components: - - pos: -5.0632915,-20.463463 - parent: 1 - type: Transform - - uid: 11798 - components: - - pos: 12.5046625,23.439209 - parent: 1 - type: Transform -- proto: CableApcStack1 - entities: - - uid: 6071 - components: - - pos: -5.883921,-15.463461 - parent: 1 - type: Transform - - count: 5 - type: Stack -- proto: CableHV - entities: - - uid: 1137 - components: - - pos: 27.5,-4.5 - parent: 1 - type: Transform - - uid: 1138 - components: - - pos: 27.5,-5.5 - parent: 1 - type: Transform - - uid: 1139 - components: - - pos: 27.5,-6.5 - parent: 1 - type: Transform - - uid: 1140 - components: - - pos: 27.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1141 - components: - - pos: 27.5,-8.5 - parent: 1 - type: Transform - - uid: 1142 - components: - - pos: 27.5,-9.5 - parent: 1 - type: Transform - - uid: 1143 - components: - - pos: 27.5,-10.5 - parent: 1 - type: Transform - - uid: 1144 - components: - - pos: 26.5,-10.5 - parent: 1 - type: Transform - - uid: 1145 - components: - - pos: 25.5,-10.5 - parent: 1 - type: Transform - - uid: 1146 - components: - - pos: 25.5,-11.5 - parent: 1 - type: Transform - - uid: 1147 - components: - - pos: 25.5,-12.5 - parent: 1 - type: Transform - - uid: 1148 - components: - - pos: 25.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1149 - components: - - pos: 24.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1150 - components: - - pos: 23.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1151 - components: - - pos: 25.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1152 - components: - - pos: 24.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1153 - components: - - pos: 23.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1154 - components: - - pos: 23.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1155 - components: - - pos: 22.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1156 - components: - - pos: 21.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1157 - components: - - pos: 20.5,-15.5 - parent: 1 - type: Transform - - uid: 1158 - components: - - pos: 19.5,-15.5 - parent: 1 - type: Transform - - uid: 1159 - components: - - pos: 18.5,-15.5 - parent: 1 - type: Transform - - uid: 1160 - components: - - pos: 17.5,-15.5 - parent: 1 - type: Transform - - uid: 1161 - components: - - pos: 16.5,-15.5 - parent: 1 - type: Transform - - uid: 1162 - components: - - pos: 16.5,-14.5 - parent: 1 - type: Transform - - uid: 1163 - components: - - pos: 16.5,-13.5 - parent: 1 - type: Transform - - uid: 1164 - components: - - pos: 16.5,-12.5 - parent: 1 - type: Transform - - uid: 1165 - components: - - pos: 16.5,-11.5 - parent: 1 - type: Transform - - uid: 1166 - components: - - pos: 16.5,-10.5 - parent: 1 - type: Transform - - uid: 1167 - components: - - pos: 15.5,-10.5 - parent: 1 - type: Transform - - uid: 1168 - components: - - pos: 14.5,-10.5 - parent: 1 - type: Transform - - uid: 1169 - components: - - pos: 13.5,-10.5 - parent: 1 - type: Transform - - uid: 1170 - components: - - pos: 12.5,-10.5 - parent: 1 - type: Transform - - uid: 1171 - components: - - pos: 11.5,-10.5 - parent: 1 - type: Transform - - uid: 1172 - components: - - pos: 12.5,-9.5 - parent: 1 - type: Transform - - uid: 1173 - components: - - pos: 25.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1174 - components: - - pos: 25.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1175 - components: - - pos: 24.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1195 - components: - - pos: 22.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1196 - components: - - pos: 21.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1197 - components: - - pos: 20.5,-13.5 - parent: 1 - type: Transform - - uid: 1454 - components: - - pos: 14.5,-12.5 - parent: 1 - type: Transform - - uid: 1825 - components: - - pos: 14.5,-11.5 - parent: 1 - type: Transform - - uid: 2496 - components: - - pos: -34.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2497 - components: - - pos: -33.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2498 - components: - - pos: -32.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2499 - components: - - pos: -30.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2500 - components: - - pos: -29.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2501 - components: - - pos: -28.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2502 - components: - - pos: -28.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2503 - components: - - pos: -29.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2504 - components: - - pos: -30.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2505 - components: - - pos: -32.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2506 - components: - - pos: -33.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2507 - components: - - pos: -34.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2508 - components: - - pos: -34.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2509 - components: - - pos: -33.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2510 - components: - - pos: -32.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2511 - components: - - pos: -34.5,-34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2512 - components: - - pos: -33.5,-34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2513 - components: - - pos: -32.5,-34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2514 - components: - - pos: -30.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2515 - components: - - pos: -29.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2516 - components: - - pos: -28.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2517 - components: - - pos: -28.5,-34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2518 - components: - - pos: -29.5,-34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2519 - components: - - pos: -30.5,-34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2520 - components: - - pos: -31.5,-35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2522 - components: - - pos: -31.5,-36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2525 - components: - - pos: -32.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2526 - components: - - pos: -31.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2527 - components: - - pos: -30.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2528 - components: - - pos: -29.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2529 - components: - - pos: -32.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2530 - components: - - pos: -33.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2531 - components: - - pos: -34.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2532 - components: - - pos: -35.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2533 - components: - - pos: -35.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2534 - components: - - pos: -35.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2535 - components: - - pos: -35.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2536 - components: - - pos: -32.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2538 - components: - - pos: -31.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2539 - components: - - pos: -31.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2540 - components: - - pos: -30.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2541 - components: - - pos: -30.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2542 - components: - - pos: -30.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2543 - components: - - pos: -27.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2544 - components: - - pos: -26.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2545 - components: - - pos: -25.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2546 - components: - - pos: -25.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2547 - components: - - pos: -25.5,27.5 - parent: 1 - type: Transform - - uid: 2548 - components: - - pos: -27.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2549 - components: - - pos: -28.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2550 - components: - - pos: -29.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2551 - components: - - pos: -29.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2554 - components: - - pos: -24.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2590 - components: - - pos: -29.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2619 - components: - - pos: -28.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2620 - components: - - pos: -29.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2621 - components: - - pos: -30.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2622 - components: - - pos: -31.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2623 - components: - - pos: -31.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2624 - components: - - pos: -30.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2625 - components: - - pos: -29.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2626 - components: - - pos: -28.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2627 - components: - - pos: -26.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2628 - components: - - pos: -25.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2629 - components: - - pos: -24.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2630 - components: - - pos: -23.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2631 - components: - - pos: -23.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2632 - components: - - pos: -24.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2633 - components: - - pos: -25.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2634 - components: - - pos: -26.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2635 - components: - - pos: -26.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2636 - components: - - pos: -25.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2637 - components: - - pos: -24.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2638 - components: - - pos: -23.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2639 - components: - - pos: -23.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2640 - components: - - pos: -24.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2641 - components: - - pos: -25.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2642 - components: - - pos: -26.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2643 - components: - - pos: -28.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2644 - components: - - pos: -29.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2645 - components: - - pos: -30.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2646 - components: - - pos: -31.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2647 - components: - - pos: -31.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2648 - components: - - pos: -30.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2649 - components: - - pos: -29.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2650 - components: - - pos: -28.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2651 - components: - - pos: -27.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2652 - components: - - pos: -27.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2793 - components: - - pos: -14.5,-57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2809 - components: - - pos: -14.5,-60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2810 - components: - - pos: -12.5,-59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2811 - components: - - pos: -16.5,-59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2812 - components: - - pos: -13.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2813 - components: - - pos: -12.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2814 - components: - - pos: -11.5,-51.5 - parent: 1 - type: Transform - - uid: 2822 - components: - - pos: -14.5,-56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2824 - components: - - pos: -12.5,-57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2825 - components: - - pos: -13.5,-59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2826 - components: - - pos: -13.5,-57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2827 - components: - - pos: -11.5,-53.5 - parent: 1 - type: Transform - - uid: 2828 - components: - - pos: -11.5,-52.5 - parent: 1 - type: Transform - - uid: 2829 - components: - - pos: -15.5,-59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2830 - components: - - pos: -14.5,-59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2831 - components: - - pos: -14.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2832 - components: - - pos: -11.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2833 - components: - - pos: -11.5,-54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2834 - components: - - pos: -15.5,-57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2835 - components: - - pos: -14.5,-58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2839 - components: - - pos: -16.5,-57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3675 - components: - - pos: -1.5,47.5 - parent: 1 - type: Transform - - uid: 3676 - components: - - pos: -0.5,47.5 - parent: 1 - type: Transform - - uid: 3677 - components: - - pos: -0.5,46.5 - parent: 1 - type: Transform - - uid: 3679 - components: - - pos: -0.5,45.5 - parent: 1 - type: Transform - - uid: 3680 - components: - - pos: -0.5,44.5 - parent: 1 - type: Transform - - uid: 4047 - components: - - pos: 8.5,20.5 - parent: 1 - type: Transform - - uid: 4052 - components: - - pos: 8.5,21.5 - parent: 1 - type: Transform - - uid: 4237 - components: - - pos: 12.5,-8.5 - parent: 1 - type: Transform - - uid: 4238 - components: - - pos: 12.5,-7.5 - parent: 1 - type: Transform - - uid: 4239 - components: - - pos: 12.5,-6.5 - parent: 1 - type: Transform - - uid: 4240 - components: - - pos: 11.5,-6.5 - parent: 1 - type: Transform - - uid: 4241 - components: - - pos: 10.5,-6.5 - parent: 1 - type: Transform - - uid: 4242 - components: - - pos: 9.5,-6.5 - parent: 1 - type: Transform - - uid: 4243 - components: - - pos: 8.5,-6.5 - parent: 1 - type: Transform - - uid: 4244 - components: - - pos: 8.5,-5.5 - parent: 1 - type: Transform - - uid: 4245 - components: - - pos: 8.5,-4.5 - parent: 1 - type: Transform - - uid: 4246 - components: - - pos: 8.5,-3.5 - parent: 1 - type: Transform - - uid: 4247 - components: - - pos: 8.5,-2.5 - parent: 1 - type: Transform - - uid: 4248 - components: - - pos: 8.5,-1.5 - parent: 1 - type: Transform - - uid: 4249 - components: - - pos: 8.5,-0.5 - parent: 1 - type: Transform - - uid: 4250 - components: - - pos: 8.5,0.5 - parent: 1 - type: Transform - - uid: 4251 - components: - - pos: 8.5,1.5 - parent: 1 - type: Transform - - uid: 4252 - components: - - pos: 8.5,2.5 - parent: 1 - type: Transform - - uid: 4253 - components: - - pos: 8.5,3.5 - parent: 1 - type: Transform - - uid: 4254 - components: - - pos: 8.5,4.5 - parent: 1 - type: Transform - - uid: 4255 - components: - - pos: 8.5,5.5 - parent: 1 - type: Transform - - uid: 4256 - components: - - pos: 8.5,6.5 - parent: 1 - type: Transform - - uid: 4257 - components: - - pos: 8.5,7.5 - parent: 1 - type: Transform - - uid: 4258 - components: - - pos: 8.5,8.5 - parent: 1 - type: Transform - - uid: 4259 - components: - - pos: 8.5,9.5 - parent: 1 - type: Transform - - uid: 4260 - components: - - pos: 8.5,10.5 - parent: 1 - type: Transform - - uid: 4261 - components: - - pos: 8.5,11.5 - parent: 1 - type: Transform - - uid: 4262 - components: - - pos: 8.5,12.5 - parent: 1 - type: Transform - - uid: 4263 - components: - - pos: 8.5,13.5 - parent: 1 - type: Transform - - uid: 4264 - components: - - pos: 8.5,14.5 - parent: 1 - type: Transform - - uid: 4265 - components: - - pos: 8.5,15.5 - parent: 1 - type: Transform - - uid: 4266 - components: - - pos: 8.5,16.5 - parent: 1 - type: Transform - - uid: 4267 - components: - - pos: 8.5,17.5 - parent: 1 - type: Transform - - uid: 4268 - components: - - pos: 8.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4269 - components: - - pos: 8.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4270 - components: - - pos: 9.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4271 - components: - - pos: 10.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4272 - components: - - pos: 10.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4273 - components: - - pos: 10.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4274 - components: - - pos: 7.5,15.5 - parent: 1 - type: Transform - - uid: 4275 - components: - - pos: 6.5,15.5 - parent: 1 - type: Transform - - uid: 4276 - components: - - pos: 5.5,15.5 - parent: 1 - type: Transform - - uid: 4277 - components: - - pos: 4.5,15.5 - parent: 1 - type: Transform - - uid: 4278 - components: - - pos: 4.5,16.5 - parent: 1 - type: Transform - - uid: 4279 - components: - - pos: 4.5,17.5 - parent: 1 - type: Transform - - uid: 4280 - components: - - pos: 4.5,18.5 - parent: 1 - type: Transform - - uid: 4281 - components: - - pos: 4.5,19.5 - parent: 1 - type: Transform - - uid: 4282 - components: - - pos: 4.5,20.5 - parent: 1 - type: Transform - - uid: 4283 - components: - - pos: 4.5,21.5 - parent: 1 - type: Transform - - uid: 4284 - components: - - pos: 4.5,22.5 - parent: 1 - type: Transform - - uid: 4285 - components: - - pos: 4.5,23.5 - parent: 1 - type: Transform - - uid: 4286 - components: - - pos: 4.5,24.5 - parent: 1 - type: Transform - - uid: 4287 - components: - - pos: 3.5,24.5 - parent: 1 - type: Transform - - uid: 4288 - components: - - pos: 2.5,24.5 - parent: 1 - type: Transform - - uid: 4289 - components: - - pos: 1.5,24.5 - parent: 1 - type: Transform - - uid: 4290 - components: - - pos: 1.5,25.5 - parent: 1 - type: Transform - - uid: 4291 - components: - - pos: 1.5,26.5 - parent: 1 - type: Transform - - uid: 4292 - components: - - pos: 1.5,27.5 - parent: 1 - type: Transform - - uid: 4293 - components: - - pos: 1.5,28.5 - parent: 1 - type: Transform - - uid: 4294 - components: - - pos: 1.5,29.5 - parent: 1 - type: Transform - - uid: 4295 - components: - - pos: 0.5,29.5 - parent: 1 - type: Transform - - uid: 4296 - components: - - pos: -0.5,29.5 - parent: 1 - type: Transform - - uid: 4297 - components: - - pos: -1.5,29.5 - parent: 1 - type: Transform - - uid: 4298 - components: - - pos: -2.5,29.5 - parent: 1 - type: Transform - - uid: 4299 - components: - - pos: -3.5,29.5 - parent: 1 - type: Transform - - uid: 4300 - components: - - pos: -4.5,29.5 - parent: 1 - type: Transform - - uid: 4301 - components: - - pos: -5.5,29.5 - parent: 1 - type: Transform - - uid: 4302 - components: - - pos: -6.5,29.5 - parent: 1 - type: Transform - - uid: 4303 - components: - - pos: -7.5,29.5 - parent: 1 - type: Transform - - uid: 4306 - components: - - pos: 8.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4307 - components: - - pos: -7.5,30.5 - parent: 1 - type: Transform - - uid: 4308 - components: - - pos: -8.5,30.5 - parent: 1 - type: Transform - - uid: 4309 - components: - - pos: -9.5,30.5 - parent: 1 - type: Transform - - uid: 4310 - components: - - pos: -10.5,30.5 - parent: 1 - type: Transform - - uid: 4311 - components: - - pos: -11.5,30.5 - parent: 1 - type: Transform - - uid: 4312 - components: - - pos: -12.5,30.5 - parent: 1 - type: Transform - - uid: 4313 - components: - - pos: -13.5,30.5 - parent: 1 - type: Transform - - uid: 4314 - components: - - pos: -14.5,30.5 - parent: 1 - type: Transform - - uid: 4315 - components: - - pos: -14.5,31.5 - parent: 1 - type: Transform - - uid: 4316 - components: - - pos: 8.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4317 - components: - - pos: 8.5,24.5 - parent: 1 - type: Transform - - uid: 4318 - components: - - pos: 7.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4319 - components: - - pos: 6.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4320 - components: - - pos: 5.5,24.5 - parent: 1 - type: Transform - - uid: 4321 - components: - - pos: -15.5,30.5 - parent: 1 - type: Transform - - uid: 4322 - components: - - pos: -16.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4323 - components: - - pos: -17.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4324 - components: - - pos: -17.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4325 - components: - - pos: -17.5,28.5 - parent: 1 - type: Transform - - uid: 4326 - components: - - pos: -17.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4327 - components: - - pos: -17.5,26.5 - parent: 1 - type: Transform - - uid: 4328 - components: - - pos: -17.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4329 - components: - - pos: -17.5,24.5 - parent: 1 - type: Transform - - uid: 4330 - components: - - pos: -18.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4331 - components: - - pos: -19.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4332 - components: - - pos: -19.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4333 - components: - - pos: -19.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4334 - components: - - pos: -20.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4335 - components: - - pos: -18.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4336 - components: - - pos: -19.5,28.5 - parent: 1 - type: Transform - - uid: 4337 - components: - - pos: -20.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4338 - components: - - pos: -21.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4339 - components: - - pos: -22.5,28.5 - parent: 1 - type: Transform - - uid: 4340 - components: - - pos: -22.5,27.5 - parent: 1 - type: Transform - - uid: 4341 - components: - - pos: -23.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4342 - components: - - pos: -24.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4343 - components: - - pos: -26.5,27.5 - parent: 1 - type: Transform - - uid: 4344 - components: - - pos: -27.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4345 - components: - - pos: -28.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4346 - components: - - pos: -28.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4347 - components: - - pos: -28.5,25.5 - parent: 1 - type: Transform - - uid: 4348 - components: - - pos: -28.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4349 - components: - - pos: -28.5,23.5 - parent: 1 - type: Transform - - uid: 4350 - components: - - pos: -28.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4351 - components: - - pos: -28.5,21.5 - parent: 1 - type: Transform - - uid: 4352 - components: - - pos: -28.5,20.5 - parent: 1 - type: Transform - - uid: 4353 - components: - - pos: -28.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4354 - components: - - pos: -28.5,18.5 - parent: 1 - type: Transform - - uid: 4355 - components: - - pos: -28.5,17.5 - parent: 1 - type: Transform - - uid: 4356 - components: - - pos: -28.5,16.5 - parent: 1 - type: Transform - - uid: 4357 - components: - - pos: -28.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4358 - components: - - pos: -28.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4359 - components: - - pos: -28.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4360 - components: - - pos: -28.5,12.5 - parent: 1 - type: Transform - - uid: 4361 - components: - - pos: -28.5,11.5 - parent: 1 - type: Transform - - uid: 4362 - components: - - pos: -28.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4363 - components: - - pos: -28.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4364 - components: - - pos: -28.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4365 - components: - - pos: -28.5,7.5 - parent: 1 - type: Transform - - uid: 4366 - components: - - pos: -28.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4367 - components: - - pos: -28.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4368 - components: - - pos: -28.5,4.5 - parent: 1 - type: Transform - - uid: 4369 - components: - - pos: -28.5,3.5 - parent: 1 - type: Transform - - uid: 4370 - components: - - pos: -28.5,2.5 - parent: 1 - type: Transform - - uid: 4371 - components: - - pos: -29.5,19.5 - parent: 1 - type: Transform - - uid: 4372 - components: - - pos: -30.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4373 - components: - - pos: -31.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4374 - components: - - pos: -32.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4375 - components: - - pos: -33.5,19.5 - parent: 1 - type: Transform - - uid: 4376 - components: - - pos: -34.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4377 - components: - - pos: -35.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4378 - components: - - pos: -36.5,19.5 - parent: 1 - type: Transform - - uid: 4379 - components: - - pos: -37.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4380 - components: - - pos: -37.5,18.5 - parent: 1 - type: Transform - - uid: 4381 - components: - - pos: -37.5,17.5 - parent: 1 - type: Transform - - uid: 4382 - components: - - pos: -37.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4383 - components: - - pos: -37.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4384 - components: - - pos: -38.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4385 - components: - - pos: -39.5,15.5 - parent: 1 - type: Transform - - uid: 4386 - components: - - pos: -40.5,15.5 - parent: 1 - type: Transform - - uid: 4387 - components: - - pos: -40.5,16.5 - parent: 1 - type: Transform - - uid: 4388 - components: - - pos: -40.5,17.5 - parent: 1 - type: Transform - - uid: 4389 - components: - - pos: -40.5,18.5 - parent: 1 - type: Transform - - uid: 4390 - components: - - pos: -40.5,14.5 - parent: 1 - type: Transform - - uid: 4391 - components: - - pos: -40.5,13.5 - parent: 1 - type: Transform - - uid: 4392 - components: - - pos: -40.5,12.5 - parent: 1 - type: Transform - - uid: 4393 - components: - - pos: -40.5,11.5 - parent: 1 - type: Transform - - uid: 4394 - components: - - pos: -40.5,10.5 - parent: 1 - type: Transform - - uid: 4395 - components: - - pos: -40.5,9.5 - parent: 1 - type: Transform - - uid: 4396 - components: - - pos: -40.5,8.5 - parent: 1 - type: Transform - - uid: 4397 - components: - - pos: -40.5,7.5 - parent: 1 - type: Transform - - uid: 4398 - components: - - pos: -40.5,6.5 - parent: 1 - type: Transform - - uid: 4399 - components: - - pos: -40.5,5.5 - parent: 1 - type: Transform - - uid: 4400 - components: - - pos: -40.5,4.5 - parent: 1 - type: Transform - - uid: 4401 - components: - - pos: -40.5,3.5 - parent: 1 - type: Transform - - uid: 4402 - components: - - pos: -40.5,2.5 - parent: 1 - type: Transform - - uid: 4403 - components: - - pos: -39.5,2.5 - parent: 1 - type: Transform - - uid: 4404 - components: - - pos: -38.5,2.5 - parent: 1 - type: Transform - - uid: 4405 - components: - - pos: -37.5,2.5 - parent: 1 - type: Transform - - uid: 4406 - components: - - pos: -36.5,2.5 - parent: 1 - type: Transform - - uid: 4407 - components: - - pos: -35.5,2.5 - parent: 1 - type: Transform - - uid: 4408 - components: - - pos: -34.5,2.5 - parent: 1 - type: Transform - - uid: 4409 - components: - - pos: -33.5,2.5 - parent: 1 - type: Transform - - uid: 4410 - components: - - pos: -32.5,2.5 - parent: 1 - type: Transform - - uid: 4411 - components: - - pos: -31.5,2.5 - parent: 1 - type: Transform - - uid: 4412 - components: - - pos: -30.5,2.5 - parent: 1 - type: Transform - - uid: 4413 - components: - - pos: -29.5,2.5 - parent: 1 - type: Transform - - uid: 4414 - components: - - pos: -27.5,2.5 - parent: 1 - type: Transform - - uid: 4415 - components: - - pos: -26.5,2.5 - parent: 1 - type: Transform - - uid: 4416 - components: - - pos: -25.5,2.5 - parent: 1 - type: Transform - - uid: 4417 - components: - - pos: -24.5,2.5 - parent: 1 - type: Transform - - uid: 4418 - components: - - pos: -23.5,2.5 - parent: 1 - type: Transform - - uid: 4419 - components: - - pos: -22.5,2.5 - parent: 1 - type: Transform - - uid: 4420 - components: - - pos: -21.5,2.5 - parent: 1 - type: Transform - - uid: 4421 - components: - - pos: -20.5,2.5 - parent: 1 - type: Transform - - uid: 4422 - components: - - pos: -19.5,2.5 - parent: 1 - type: Transform - - uid: 4423 - components: - - pos: -18.5,2.5 - parent: 1 - type: Transform - - uid: 4424 - components: - - pos: -17.5,2.5 - parent: 1 - type: Transform - - uid: 4425 - components: - - pos: -16.5,2.5 - parent: 1 - type: Transform - - uid: 4426 - components: - - pos: -15.5,2.5 - parent: 1 - type: Transform - - uid: 4427 - components: - - pos: -14.5,2.5 - parent: 1 - type: Transform - - uid: 4428 - components: - - pos: -13.5,2.5 - parent: 1 - type: Transform - - uid: 4429 - components: - - pos: -12.5,2.5 - parent: 1 - type: Transform - - uid: 4430 - components: - - pos: -11.5,2.5 - parent: 1 - type: Transform - - uid: 4431 - components: - - pos: -10.5,2.5 - parent: 1 - type: Transform - - uid: 4432 - components: - - pos: -9.5,2.5 - parent: 1 - type: Transform - - uid: 4433 - components: - - pos: -8.5,2.5 - parent: 1 - type: Transform - - uid: 4434 - components: - - pos: -7.5,2.5 - parent: 1 - type: Transform - - uid: 4435 - components: - - pos: -6.5,2.5 - parent: 1 - type: Transform - - uid: 4436 - components: - - pos: -5.5,2.5 - parent: 1 - type: Transform - - uid: 4437 - components: - - pos: -5.5,3.5 - parent: 1 - type: Transform - - uid: 4438 - components: - - pos: -5.5,4.5 - parent: 1 - type: Transform - - uid: 4439 - components: - - pos: -5.5,5.5 - parent: 1 - type: Transform - - uid: 4440 - components: - - pos: -5.5,6.5 - parent: 1 - type: Transform - - uid: 4441 - components: - - pos: -5.5,7.5 - parent: 1 - type: Transform - - uid: 4442 - components: - - pos: -5.5,8.5 - parent: 1 - type: Transform - - uid: 4443 - components: - - pos: -5.5,9.5 - parent: 1 - type: Transform - - uid: 4444 - components: - - pos: -5.5,10.5 - parent: 1 - type: Transform - - uid: 4445 - components: - - pos: -5.5,11.5 - parent: 1 - type: Transform - - uid: 4446 - components: - - pos: -5.5,12.5 - parent: 1 - type: Transform - - uid: 4447 - components: - - pos: -5.5,13.5 - parent: 1 - type: Transform - - uid: 4448 - components: - - pos: -5.5,14.5 - parent: 1 - type: Transform - - uid: 4449 - components: - - pos: -5.5,15.5 - parent: 1 - type: Transform - - uid: 4450 - components: - - pos: -5.5,16.5 - parent: 1 - type: Transform - - uid: 4451 - components: - - pos: -4.5,15.5 - parent: 1 - type: Transform - - uid: 4452 - components: - - pos: -3.5,15.5 - parent: 1 - type: Transform - - uid: 4453 - components: - - pos: -2.5,15.5 - parent: 1 - type: Transform - - uid: 4454 - components: - - pos: -1.5,15.5 - parent: 1 - type: Transform - - uid: 4455 - components: - - pos: -0.5,15.5 - parent: 1 - type: Transform - - uid: 4456 - components: - - pos: 0.5,15.5 - parent: 1 - type: Transform - - uid: 4457 - components: - - pos: 1.5,15.5 - parent: 1 - type: Transform - - uid: 4458 - components: - - pos: 2.5,15.5 - parent: 1 - type: Transform - - uid: 4459 - components: - - pos: 3.5,15.5 - parent: 1 - type: Transform - - uid: 4460 - components: - - pos: -6.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4461 - components: - - pos: -7.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4462 - components: - - pos: -8.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4463 - components: - - pos: -8.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4464 - components: - - pos: -8.5,18.5 - parent: 1 - type: Transform - - uid: 4465 - components: - - pos: -8.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4466 - components: - - pos: -8.5,20.5 - parent: 1 - type: Transform - - uid: 4467 - components: - - pos: -8.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4468 - components: - - pos: -8.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4469 - components: - - pos: -8.5,23.5 - parent: 1 - type: Transform - - uid: 4470 - components: - - pos: -9.5,23.5 - parent: 1 - type: Transform - - uid: 4471 - components: - - pos: -10.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4472 - components: - - pos: -11.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4473 - components: - - pos: -12.5,23.5 - parent: 1 - type: Transform - - uid: 4474 - components: - - pos: -13.5,23.5 - parent: 1 - type: Transform - - uid: 4475 - components: - - pos: -13.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4476 - components: - - pos: -14.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4477 - components: - - pos: -15.5,24.5 - parent: 1 - type: Transform - - uid: 4478 - components: - - pos: -16.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4479 - components: - - pos: -19.5,23.5 - parent: 1 - type: Transform - - uid: 4480 - components: - - pos: -19.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4481 - components: - - pos: -19.5,21.5 - parent: 1 - type: Transform - - uid: 4482 - components: - - pos: -19.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4483 - components: - - pos: -19.5,19.5 - parent: 1 - type: Transform - - uid: 4484 - components: - - pos: -19.5,18.5 - parent: 1 - type: Transform - - uid: 4485 - components: - - pos: -20.5,18.5 - parent: 1 - type: Transform - - uid: 4486 - components: - - pos: -21.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4487 - components: - - pos: -22.5,18.5 - parent: 1 - type: Transform - - uid: 4488 - components: - - pos: -23.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4489 - components: - - pos: -24.5,18.5 - parent: 1 - type: Transform - - uid: 4490 - components: - - pos: -25.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4491 - components: - - pos: -26.5,18.5 - parent: 1 - type: Transform - - uid: 4492 - components: - - pos: -27.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4493 - components: - - pos: 10.5,18.5 - parent: 1 - type: Transform - - uid: 4494 - components: - - pos: 11.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4495 - components: - - pos: 12.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4496 - components: - - pos: 13.5,18.5 - parent: 1 - type: Transform - - uid: 4497 - components: - - pos: 14.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4498 - components: - - pos: 15.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4499 - components: - - pos: 16.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4500 - components: - - pos: 17.5,18.5 - parent: 1 - type: Transform - - uid: 4501 - components: - - pos: 18.5,18.5 - parent: 1 - type: Transform - - uid: 4502 - components: - - pos: 19.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4503 - components: - - pos: 20.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4504 - components: - - pos: 21.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4505 - components: - - pos: 22.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4506 - components: - - pos: 23.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4507 - components: - - pos: 24.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4508 - components: - - pos: 25.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4512 - components: - - pos: 22.5,21.5 - parent: 1 - type: Transform - - uid: 4513 - components: - - pos: 25.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4514 - components: - - pos: 25.5,20.5 - parent: 1 - type: Transform - - uid: 4515 - components: - - pos: 26.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4516 - components: - - pos: 27.5,20.5 - parent: 1 - type: Transform - - uid: 4517 - components: - - pos: 28.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4518 - components: - - pos: 29.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4519 - components: - - pos: 30.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4520 - components: - - pos: 31.5,20.5 - parent: 1 - type: Transform - - uid: 4521 - components: - - pos: 32.5,20.5 - parent: 1 - type: Transform - - uid: 4522 - components: - - pos: 33.5,20.5 - parent: 1 - type: Transform - - uid: 4523 - components: - - pos: 34.5,20.5 - parent: 1 - type: Transform - - uid: 4524 - components: - - pos: 35.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4525 - components: - - pos: 36.5,20.5 - parent: 1 - type: Transform - - uid: 4526 - components: - - pos: 36.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4527 - components: - - pos: 36.5,18.5 - parent: 1 - type: Transform - - uid: 4528 - components: - - pos: 36.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4529 - components: - - pos: 36.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4530 - components: - - pos: 37.5,16.5 - parent: 1 - type: Transform - - uid: 4531 - components: - - pos: 38.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4532 - components: - - pos: 39.5,16.5 - parent: 1 - type: Transform - - uid: 4533 - components: - - pos: 39.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4534 - components: - - pos: 39.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4535 - components: - - pos: 39.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4536 - components: - - pos: 40.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4537 - components: - - pos: 40.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4538 - components: - - pos: 41.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4539 - components: - - pos: 41.5,15.5 - parent: 1 - type: Transform - - uid: 4540 - components: - - pos: 41.5,14.5 - parent: 1 - type: Transform - - uid: 4541 - components: - - pos: 41.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4542 - components: - - pos: 41.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4543 - components: - - pos: 41.5,11.5 - parent: 1 - type: Transform - - uid: 4544 - components: - - pos: 41.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4545 - components: - - pos: 41.5,9.5 - parent: 1 - type: Transform - - uid: 4546 - components: - - pos: 41.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4547 - components: - - pos: 41.5,7.5 - parent: 1 - type: Transform - - uid: 4548 - components: - - pos: 40.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4549 - components: - - pos: 39.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4550 - components: - - pos: 38.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4551 - components: - - pos: 37.5,7.5 - parent: 1 - type: Transform - - uid: 4552 - components: - - pos: 36.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4553 - components: - - pos: 35.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4554 - components: - - pos: 35.5,6.5 - parent: 1 - type: Transform - - uid: 4555 - components: - - pos: 31.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4556 - components: - - pos: 32.5,6.5 - parent: 1 - type: Transform - - uid: 4557 - components: - - pos: 33.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4558 - components: - - pos: 34.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4559 - components: - - pos: 31.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4560 - components: - - pos: 31.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4561 - components: - - pos: 31.5,3.5 - parent: 1 - type: Transform - - uid: 4562 - components: - - pos: 31.5,2.5 - parent: 1 - type: Transform - - uid: 4563 - components: - - pos: 30.5,2.5 - parent: 1 - type: Transform - - uid: 4564 - components: - - pos: 29.5,2.5 - parent: 1 - type: Transform - - uid: 4565 - components: - - pos: 28.5,2.5 - parent: 1 - type: Transform - - uid: 4566 - components: - - pos: 27.5,2.5 - parent: 1 - type: Transform - - uid: 4567 - components: - - pos: 26.5,2.5 - parent: 1 - type: Transform - - uid: 4568 - components: - - pos: 25.5,2.5 - parent: 1 - type: Transform - - uid: 4569 - components: - - pos: 24.5,2.5 - parent: 1 - type: Transform - - uid: 4570 - components: - - pos: 23.5,2.5 - parent: 1 - type: Transform - - uid: 4571 - components: - - pos: 22.5,2.5 - parent: 1 - type: Transform - - uid: 4572 - components: - - pos: 21.5,2.5 - parent: 1 - type: Transform - - uid: 4573 - components: - - pos: 20.5,2.5 - parent: 1 - type: Transform - - uid: 4574 - components: - - pos: 19.5,2.5 - parent: 1 - type: Transform - - uid: 4575 - components: - - pos: 18.5,2.5 - parent: 1 - type: Transform - - uid: 4576 - components: - - pos: 17.5,2.5 - parent: 1 - type: Transform - - uid: 4577 - components: - - pos: 16.5,2.5 - parent: 1 - type: Transform - - uid: 4578 - components: - - pos: 15.5,2.5 - parent: 1 - type: Transform - - uid: 4579 - components: - - pos: 14.5,2.5 - parent: 1 - type: Transform - - uid: 4580 - components: - - pos: 13.5,2.5 - parent: 1 - type: Transform - - uid: 4581 - components: - - pos: 12.5,2.5 - parent: 1 - type: Transform - - uid: 4582 - components: - - pos: 11.5,2.5 - parent: 1 - type: Transform - - uid: 4583 - components: - - pos: 10.5,2.5 - parent: 1 - type: Transform - - uid: 4584 - components: - - pos: 9.5,2.5 - parent: 1 - type: Transform - - uid: 4585 - components: - - pos: 30.5,1.5 - parent: 1 - type: Transform - - uid: 4586 - components: - - pos: 30.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4587 - components: - - pos: 30.5,-0.5 - parent: 1 - type: Transform - - uid: 4588 - components: - - pos: 30.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4589 - components: - - pos: 31.5,-1.5 - parent: 1 - type: Transform - - uid: 4590 - components: - - pos: 31.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4591 - components: - - pos: 31.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4592 - components: - - pos: 31.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4593 - components: - - pos: 31.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4594 - components: - - pos: 31.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4595 - components: - - pos: 31.5,-7.5 - parent: 1 - type: Transform - - uid: 4596 - components: - - pos: 31.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4597 - components: - - pos: 31.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4598 - components: - - pos: 31.5,-10.5 - parent: 1 - type: Transform - - uid: 4599 - components: - - pos: 31.5,-11.5 - parent: 1 - type: Transform - - uid: 4600 - components: - - pos: 31.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4601 - components: - - pos: 31.5,-13.5 - parent: 1 - type: Transform - - uid: 4602 - components: - - pos: 30.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4603 - components: - - pos: 29.5,-13.5 - parent: 1 - type: Transform - - uid: 4604 - components: - - pos: 28.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4605 - components: - - pos: 28.5,-14.5 - parent: 1 - type: Transform - - uid: 4606 - components: - - pos: 28.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4607 - components: - - pos: 28.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4608 - components: - - pos: 28.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4609 - components: - - pos: 27.5,-17.5 - parent: 1 - type: Transform - - uid: 4610 - components: - - pos: 26.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4611 - components: - - pos: 25.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4612 - components: - - pos: 25.5,-18.5 - parent: 1 - type: Transform - - uid: 4613 - components: - - pos: 25.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4614 - components: - - pos: 25.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4615 - components: - - pos: 24.5,-20.5 - parent: 1 - type: Transform - - uid: 4616 - components: - - pos: 24.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4617 - components: - - pos: 23.5,-17.5 - parent: 1 - type: Transform - - uid: 4618 - components: - - pos: 22.5,-17.5 - parent: 1 - type: Transform - - uid: 4619 - components: - - pos: 21.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4620 - components: - - pos: 20.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4621 - components: - - pos: 19.5,-17.5 - parent: 1 - type: Transform - - uid: 4622 - components: - - pos: 18.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4623 - components: - - pos: 17.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4624 - components: - - pos: 16.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4625 - components: - - pos: 15.5,-17.5 - parent: 1 - type: Transform - - uid: 4626 - components: - - pos: 14.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4627 - components: - - pos: 14.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4628 - components: - - pos: 14.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4629 - components: - - pos: 14.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4630 - components: - - pos: 13.5,-14.5 - parent: 1 - type: Transform - - uid: 4631 - components: - - pos: 12.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4632 - components: - - pos: 11.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4633 - components: - - pos: 10.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4634 - components: - - pos: 9.5,-14.5 - parent: 1 - type: Transform - - uid: 4635 - components: - - pos: 9.5,-13.5 - parent: 1 - type: Transform - - uid: 4636 - components: - - pos: 9.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4637 - components: - - pos: 9.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4638 - components: - - pos: 8.5,-11.5 - parent: 1 - type: Transform - - uid: 4639 - components: - - pos: 7.5,-11.5 - parent: 1 - type: Transform - - uid: 4640 - components: - - pos: 6.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4641 - components: - - pos: 5.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4642 - components: - - pos: 4.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4643 - components: - - pos: 3.5,-11.5 - parent: 1 - type: Transform - - uid: 4644 - components: - - pos: 2.5,-11.5 - parent: 1 - type: Transform - - uid: 4645 - components: - - pos: 1.5,-11.5 - parent: 1 - type: Transform - - uid: 4646 - components: - - pos: 0.5,-11.5 - parent: 1 - type: Transform - - uid: 4647 - components: - - pos: -0.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4648 - components: - - pos: -1.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4649 - components: - - pos: -2.5,-11.5 - parent: 1 - type: Transform - - uid: 4650 - components: - - pos: -2.5,-12.5 - parent: 1 - type: Transform - - uid: 4651 - components: - - pos: -2.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4652 - components: - - pos: -2.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4653 - components: - - pos: -2.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4654 - components: - - pos: -2.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4655 - components: - - pos: -2.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4656 - components: - - pos: -3.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4657 - components: - - pos: -4.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4658 - components: - - pos: -5.5,-17.5 - parent: 1 - type: Transform - - uid: 4659 - components: - - pos: -6.5,-17.5 - parent: 1 - type: Transform - - uid: 4660 - components: - - pos: -7.5,-17.5 - parent: 1 - type: Transform - - uid: 4661 - components: - - pos: -7.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4662 - components: - - pos: -7.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4663 - components: - - pos: -7.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4664 - components: - - pos: -8.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4665 - components: - - pos: -9.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4666 - components: - - pos: -10.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4667 - components: - - pos: -11.5,-18.5 - parent: 1 - type: Transform - - uid: 4668 - components: - - pos: -11.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4669 - components: - - pos: -11.5,-20.5 - parent: 1 - type: Transform - - uid: 4670 - components: - - pos: -11.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4671 - components: - - pos: -12.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4672 - components: - - pos: -13.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4673 - components: - - pos: -14.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4674 - components: - - pos: -15.5,-21.5 - parent: 1 - type: Transform - - uid: 4675 - components: - - pos: -16.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4676 - components: - - pos: -17.5,-21.5 - parent: 1 - type: Transform - - uid: 4677 - components: - - pos: -18.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4678 - components: - - pos: -19.5,-21.5 - parent: 1 - type: Transform - - uid: 4679 - components: - - pos: -20.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4680 - components: - - pos: -21.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4681 - components: - - pos: -22.5,-21.5 - parent: 1 - type: Transform - - uid: 4682 - components: - - pos: -22.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4683 - components: - - pos: -23.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4684 - components: - - pos: -24.5,-22.5 - parent: 1 - type: Transform - - uid: 4685 - components: - - pos: -25.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4686 - components: - - pos: -26.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4687 - components: - - pos: -27.5,-22.5 - parent: 1 - type: Transform - - uid: 4688 - components: - - pos: -27.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4689 - components: - - pos: -27.5,-20.5 - parent: 1 - type: Transform - - uid: 4690 - components: - - pos: -28.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4691 - components: - - pos: -29.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4692 - components: - - pos: -30.5,1.5 - parent: 1 - type: Transform - - uid: 4693 - components: - - pos: -30.5,0.5 - parent: 1 - type: Transform - - uid: 4694 - components: - - pos: -30.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4695 - components: - - pos: -30.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4696 - components: - - pos: -31.5,-1.5 - parent: 1 - type: Transform - - uid: 4697 - components: - - pos: -32.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4698 - components: - - pos: -33.5,-1.5 - parent: 1 - type: Transform - - uid: 4699 - components: - - pos: -34.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4700 - components: - - pos: -34.5,-2.5 - parent: 1 - type: Transform - - uid: 4701 - components: - - pos: -34.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4702 - components: - - pos: -34.5,-4.5 - parent: 1 - type: Transform - - uid: 4703 - components: - - pos: -34.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4704 - components: - - pos: -34.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4705 - components: - - pos: -34.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4706 - components: - - pos: -34.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4707 - components: - - pos: -34.5,-9.5 - parent: 1 - type: Transform - - uid: 4708 - components: - - pos: -34.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4709 - components: - - pos: -34.5,-11.5 - parent: 1 - type: Transform - - uid: 4710 - components: - - pos: -34.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4711 - components: - - pos: -35.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4712 - components: - - pos: -36.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4713 - components: - - pos: -37.5,-12.5 - parent: 1 - type: Transform - - uid: 4714 - components: - - pos: -38.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4715 - components: - - pos: -38.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4716 - components: - - pos: -38.5,-14.5 - parent: 1 - type: Transform - - uid: 4717 - components: - - pos: -38.5,-15.5 - parent: 1 - type: Transform - - uid: 4718 - components: - - pos: -38.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4719 - components: - - pos: -38.5,-17.5 - parent: 1 - type: Transform - - uid: 4720 - components: - - pos: -38.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4721 - components: - - pos: -38.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4722 - components: - - pos: -38.5,-20.5 - parent: 1 - type: Transform - - uid: 4723 - components: - - pos: -37.5,-20.5 - parent: 1 - type: Transform - - uid: 4724 - components: - - pos: -36.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4725 - components: - - pos: -35.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4726 - components: - - pos: -34.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4727 - components: - - pos: -33.5,-20.5 - parent: 1 - type: Transform - - uid: 4728 - components: - - pos: -32.5,-20.5 - parent: 1 - type: Transform - - uid: 4729 - components: - - pos: -31.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4731 - components: - - pos: -38.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4732 - components: - - pos: -39.5,19.5 - parent: 1 - type: Transform - - uid: 4733 - components: - - pos: -40.5,19.5 - parent: 1 - type: Transform - - uid: 4734 - components: - - pos: -11.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4735 - components: - - pos: -10.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4736 - components: - - pos: -9.5,-22.5 - parent: 1 - type: Transform - - uid: 4737 - components: - - pos: -8.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4738 - components: - - pos: -7.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4739 - components: - - pos: 1.5,-10.5 - parent: 1 - type: Transform - - uid: 4740 - components: - - pos: 1.5,-9.5 - parent: 1 - type: Transform - - uid: 4741 - components: - - pos: 1.5,-8.5 - parent: 1 - type: Transform - - uid: 4742 - components: - - pos: 2.5,-8.5 - parent: 1 - type: Transform - - uid: 4743 - components: - - pos: 3.5,-8.5 - parent: 1 - type: Transform - - uid: 4744 - components: - - pos: 4.5,-8.5 - parent: 1 - type: Transform - - uid: 4745 - components: - - pos: 5.5,-8.5 - parent: 1 - type: Transform - - uid: 4746 - components: - - pos: 6.5,-8.5 - parent: 1 - type: Transform - - uid: 4747 - components: - - pos: 7.5,-8.5 - parent: 1 - type: Transform - - uid: 4748 - components: - - pos: 8.5,-8.5 - parent: 1 - type: Transform - - uid: 4749 - components: - - pos: 8.5,-7.5 - parent: 1 - type: Transform - - uid: 4750 - components: - - pos: 0.5,-8.5 - parent: 1 - type: Transform - - uid: 4751 - components: - - pos: -0.5,-8.5 - parent: 1 - type: Transform - - uid: 4752 - components: - - pos: -1.5,-8.5 - parent: 1 - type: Transform - - uid: 4753 - components: - - pos: -2.5,-8.5 - parent: 1 - type: Transform - - uid: 4754 - components: - - pos: -3.5,-8.5 - parent: 1 - type: Transform - - uid: 4755 - components: - - pos: -4.5,-8.5 - parent: 1 - type: Transform - - uid: 4756 - components: - - pos: -5.5,-8.5 - parent: 1 - type: Transform - - uid: 4757 - components: - - pos: -5.5,-7.5 - parent: 1 - type: Transform - - uid: 4758 - components: - - pos: -5.5,-6.5 - parent: 1 - type: Transform - - uid: 4759 - components: - - pos: -5.5,-5.5 - parent: 1 - type: Transform - - uid: 4760 - components: - - pos: -5.5,-4.5 - parent: 1 - type: Transform - - uid: 4761 - components: - - pos: -5.5,-3.5 - parent: 1 - type: Transform - - uid: 4762 - components: - - pos: -5.5,-2.5 - parent: 1 - type: Transform - - uid: 4763 - components: - - pos: -5.5,-1.5 - parent: 1 - type: Transform - - uid: 4764 - components: - - pos: -5.5,-0.5 - parent: 1 - type: Transform - - uid: 4765 - components: - - pos: -5.5,0.5 - parent: 1 - type: Transform - - uid: 4766 - components: - - pos: -5.5,1.5 - parent: 1 - type: Transform - - uid: 4767 - components: - - pos: -13.5,31.5 - parent: 1 - type: Transform - - uid: 4768 - components: - - pos: -13.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4769 - components: - - pos: -11.5,31.5 - parent: 1 - type: Transform - - uid: 4770 - components: - - pos: -11.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4771 - components: - - pos: -10.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4772 - components: - - pos: -9.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4773 - components: - - pos: -8.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4774 - components: - - pos: -7.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4775 - components: - - pos: -7.5,31.5 - parent: 1 - type: Transform - - uid: 4776 - components: - - pos: -5.5,30.5 - parent: 1 - type: Transform - - uid: 4777 - components: - - pos: -5.5,31.5 - parent: 1 - type: Transform - - uid: 4778 - components: - - pos: -5.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4779 - components: - - pos: -6.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4780 - components: - - pos: -4.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4781 - components: - - pos: -4.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4782 - components: - - pos: -3.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4783 - components: - - pos: -2.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4784 - components: - - pos: -1.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4785 - components: - - pos: -0.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4786 - components: - - pos: 0.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4787 - components: - - pos: 0.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4788 - components: - - pos: 1.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4789 - components: - - pos: 1.5,31.5 - parent: 1 - type: Transform - - uid: 4790 - components: - - pos: 1.5,30.5 - parent: 1 - type: Transform - - uid: 4791 - components: - - pos: 2.5,28.5 - parent: 1 - type: Transform - - uid: 4792 - components: - - pos: 3.5,28.5 - parent: 1 - type: Transform - - uid: 4793 - components: - - pos: 4.5,28.5 - parent: 1 - type: Transform - - uid: 4794 - components: - - pos: 4.5,29.5 - parent: 1 - type: Transform - - uid: 4795 - components: - - pos: 4.5,30.5 - parent: 1 - type: Transform - - uid: 4796 - components: - - pos: 4.5,31.5 - parent: 1 - type: Transform - - uid: 4797 - components: - - pos: 4.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4798 - components: - - pos: 3.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4799 - components: - - pos: 5.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4800 - components: - - pos: 2.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4925 - components: - - pos: 19.5,-13.5 - parent: 1 - type: Transform - - uid: 5105 - components: - - pos: 22.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5106 - components: - - pos: 22.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7549 - components: - - pos: -41.5,19.5 - parent: 1 - type: Transform - - uid: 7550 - components: - - pos: -41.5,20.5 - parent: 1 - type: Transform - - uid: 7551 - components: - - pos: -41.5,21.5 - parent: 1 - type: Transform - - uid: 7552 - components: - - pos: -41.5,22.5 - parent: 1 - type: Transform - - uid: 7553 - components: - - pos: -41.5,23.5 - parent: 1 - type: Transform - - uid: 7554 - components: - - pos: -40.5,23.5 - parent: 1 - type: Transform -- proto: CableHVStack - entities: - - uid: 3980 - components: - - pos: -2.6973429,44.73459 - parent: 1 - type: Transform - - uid: 7641 - components: - - pos: -41.50761,19.420443 - parent: 1 - type: Transform - - uid: 8227 - components: - - pos: -5.5320415,-20.244713 - parent: 1 - type: Transform - - uid: 9656 - components: - - pos: 12.8484125,23.642334 - parent: 1 - type: Transform -- proto: CableMV - entities: - - uid: 1944 - components: - - pos: -3.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2849 - components: - - pos: -11.5,-50.5 - parent: 1 - type: Transform - - uid: 2850 - components: - - pos: -11.5,-51.5 - parent: 1 - type: Transform - - uid: 2874 - components: - - pos: -11.5,-49.5 - parent: 1 - type: Transform - - uid: 2875 - components: - - pos: -10.5,-49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3358 - components: - - pos: 22.5,15.5 - parent: 1 - type: Transform - - uid: 3681 - components: - - pos: -0.5,44.5 - parent: 1 - type: Transform - - uid: 3682 - components: - - pos: -1.5,44.5 - parent: 1 - type: Transform - - uid: 3683 - components: - - pos: -2.5,44.5 - parent: 1 - type: Transform - - uid: 3684 - components: - - pos: -2.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3688 - components: - - pos: -2.5,45.5 - parent: 1 - type: Transform - - uid: 3689 - components: - - pos: -3.5,45.5 - parent: 1 - type: Transform - - uid: 3690 - components: - - pos: -4.5,45.5 - parent: 1 - type: Transform - - uid: 3691 - components: - - pos: -5.5,45.5 - parent: 1 - type: Transform - - uid: 3692 - components: - - pos: -6.5,45.5 - parent: 1 - type: Transform - - uid: 3693 - components: - - pos: -6.5,46.5 - parent: 1 - type: Transform - - uid: 3694 - components: - - pos: -6.5,47.5 - parent: 1 - type: Transform - - uid: 3695 - components: - - pos: -6.5,48.5 - parent: 1 - type: Transform - - uid: 3696 - components: - - pos: -6.5,49.5 - parent: 1 - type: Transform - - uid: 3697 - components: - - pos: -5.5,49.5 - parent: 1 - type: Transform - - uid: 3698 - components: - - pos: -4.5,49.5 - parent: 1 - type: Transform - - uid: 3699 - components: - - pos: -4.5,50.5 - parent: 1 - type: Transform - - uid: 3700 - components: - - pos: -4.5,51.5 - parent: 1 - type: Transform - - uid: 3701 - components: - - pos: -4.5,52.5 - parent: 1 - type: Transform - - uid: 3702 - components: - - pos: -4.5,53.5 - parent: 1 - type: Transform - - uid: 3703 - components: - - pos: -4.5,54.5 - parent: 1 - type: Transform - - uid: 3704 - components: - - pos: -4.5,55.5 - parent: 1 - type: Transform - - uid: 3705 - components: - - pos: -5.5,55.5 - parent: 1 - type: Transform - - uid: 3706 - components: - - pos: -6.5,55.5 - parent: 1 - type: Transform - - uid: 3707 - components: - - pos: -6.5,56.5 - parent: 1 - type: Transform - - uid: 3708 - components: - - pos: -6.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3709 - components: - - pos: -3.5,52.5 - parent: 1 - type: Transform - - uid: 3710 - components: - - pos: -2.5,52.5 - parent: 1 - type: Transform - - uid: 3711 - components: - - pos: -1.5,52.5 - parent: 1 - type: Transform - - uid: 3712 - components: - - pos: -0.5,52.5 - parent: 1 - type: Transform - - uid: 3713 - components: - - pos: 0.5,52.5 - parent: 1 - type: Transform - - uid: 3714 - components: - - pos: 1.5,52.5 - parent: 1 - type: Transform - - uid: 3715 - components: - - pos: 2.5,52.5 - parent: 1 - type: Transform - - uid: 3716 - components: - - pos: 3.5,52.5 - parent: 1 - type: Transform - - uid: 3717 - components: - - pos: 4.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3767 - components: - - pos: -6.5,44.5 - parent: 1 - type: Transform - - uid: 3768 - components: - - pos: -6.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4138 - components: - - pos: -14.5,31.5 - parent: 1 - type: Transform - - uid: 4139 - components: - - pos: -14.5,30.5 - parent: 1 - type: Transform - - uid: 4140 - components: - - pos: -13.5,30.5 - parent: 1 - type: Transform - - uid: 4141 - components: - - pos: -12.5,30.5 - parent: 1 - type: Transform - - uid: 4142 - components: - - pos: -12.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4143 - components: - - pos: -11.5,30.5 - parent: 1 - type: Transform - - uid: 4144 - components: - - pos: -10.5,30.5 - parent: 1 - type: Transform - - uid: 4145 - components: - - pos: -9.5,30.5 - parent: 1 - type: Transform - - uid: 4146 - components: - - pos: -8.5,30.5 - parent: 1 - type: Transform - - uid: 4147 - components: - - pos: -7.5,30.5 - parent: 1 - type: Transform - - uid: 4148 - components: - - pos: -7.5,29.5 - parent: 1 - type: Transform - - uid: 4149 - components: - - pos: -6.5,29.5 - parent: 1 - type: Transform - - uid: 4150 - components: - - pos: -5.5,29.5 - parent: 1 - type: Transform - - uid: 4151 - components: - - pos: -4.5,29.5 - parent: 1 - type: Transform - - uid: 4152 - components: - - pos: -3.5,29.5 - parent: 1 - type: Transform - - uid: 4153 - components: - - pos: -2.5,29.5 - parent: 1 - type: Transform - - uid: 4154 - components: - - pos: -1.5,29.5 - parent: 1 - type: Transform - - uid: 4155 - components: - - pos: -0.5,29.5 - parent: 1 - type: Transform - - uid: 4156 - components: - - pos: -0.5,28.5 - parent: 1 - type: Transform - - uid: 4157 - components: - - pos: -0.5,27.5 - parent: 1 - type: Transform - - uid: 4158 - components: - - pos: -0.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4159 - components: - - pos: 0.5,29.5 - parent: 1 - type: Transform - - uid: 4160 - components: - - pos: 1.5,29.5 - parent: 1 - type: Transform - - uid: 4161 - components: - - pos: 1.5,28.5 - parent: 1 - type: Transform - - uid: 4162 - components: - - pos: 1.5,27.5 - parent: 1 - type: Transform - - uid: 4163 - components: - - pos: 1.5,26.5 - parent: 1 - type: Transform - - uid: 4164 - components: - - pos: 1.5,25.5 - parent: 1 - type: Transform - - uid: 4165 - components: - - pos: 1.5,24.5 - parent: 1 - type: Transform - - uid: 4166 - components: - - pos: 1.5,23.5 - parent: 1 - type: Transform - - uid: 4167 - components: - - pos: 1.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4509 - components: - - pos: 22.5,21.5 - parent: 1 - type: Transform - - uid: 4511 - components: - - pos: 22.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5101 - components: - - pos: 22.5,21.5 - parent: 1 - type: Transform - - uid: 5102 - components: - - pos: 22.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5103 - components: - - pos: 22.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5104 - components: - - pos: 22.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5107 - components: - - pos: 22.5,17.5 - parent: 1 - type: Transform - - uid: 5108 - components: - - pos: 21.5,15.5 - parent: 1 - type: Transform - - uid: 5109 - components: - - pos: 21.5,14.5 - parent: 1 - type: Transform - - uid: 5110 - components: - - pos: 21.5,13.5 - parent: 1 - type: Transform - - uid: 5111 - components: - - pos: 21.5,12.5 - parent: 1 - type: Transform - - uid: 5112 - components: - - pos: 21.5,11.5 - parent: 1 - type: Transform - - uid: 5113 - components: - - pos: 21.5,10.5 - parent: 1 - type: Transform - - uid: 5114 - components: - - pos: 24.5,9.5 - parent: 1 - type: Transform - - uid: 5115 - components: - - pos: 25.5,9.5 - parent: 1 - type: Transform - - uid: 5116 - components: - - pos: 26.5,9.5 - parent: 1 - type: Transform - - uid: 5117 - components: - - pos: 27.5,9.5 - parent: 1 - type: Transform - - uid: 5118 - components: - - pos: 26.5,10.5 - parent: 1 - type: Transform - - uid: 5119 - components: - - pos: 26.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5120 - components: - - pos: 23.5,9.5 - parent: 1 - type: Transform - - uid: 5121 - components: - - pos: 22.5,9.5 - parent: 1 - type: Transform - - uid: 5122 - components: - - pos: 21.5,9.5 - parent: 1 - type: Transform - - uid: 5123 - components: - - pos: 20.5,9.5 - parent: 1 - type: Transform - - uid: 5124 - components: - - pos: 19.5,9.5 - parent: 1 - type: Transform - - uid: 5125 - components: - - pos: 18.5,9.5 - parent: 1 - type: Transform - - uid: 5126 - components: - - pos: 17.5,9.5 - parent: 1 - type: Transform - - uid: 5127 - components: - - pos: 13.5,10.5 - parent: 1 - type: Transform - - uid: 5128 - components: - - pos: 13.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5129 - components: - - pos: 28.5,9.5 - parent: 1 - type: Transform - - uid: 5130 - components: - - pos: 29.5,9.5 - parent: 1 - type: Transform - - uid: 5131 - components: - - pos: 32.5,10.5 - parent: 1 - type: Transform - - uid: 5132 - components: - - pos: 30.5,9.5 - parent: 1 - type: Transform - - uid: 5133 - components: - - pos: 31.5,9.5 - parent: 1 - type: Transform - - uid: 5134 - components: - - pos: 32.5,9.5 - parent: 1 - type: Transform - - uid: 5135 - components: - - pos: 32.5,11.5 - parent: 1 - type: Transform - - uid: 5136 - components: - - pos: 32.5,12.5 - parent: 1 - type: Transform - - uid: 5137 - components: - - pos: 32.5,13.5 - parent: 1 - type: Transform - - uid: 5138 - components: - - pos: 32.5,14.5 - parent: 1 - type: Transform - - uid: 5139 - components: - - pos: 32.5,15.5 - parent: 1 - type: Transform - - uid: 5140 - components: - - pos: 32.5,16.5 - parent: 1 - type: Transform - - uid: 5141 - components: - - pos: 32.5,17.5 - parent: 1 - type: Transform - - uid: 5142 - components: - - pos: 32.5,18.5 - parent: 1 - type: Transform - - uid: 5143 - components: - - pos: 32.5,19.5 - parent: 1 - type: Transform - - uid: 5144 - components: - - pos: 32.5,20.5 - parent: 1 - type: Transform - - uid: 5145 - components: - - pos: 32.5,21.5 - parent: 1 - type: Transform - - uid: 5146 - components: - - pos: 32.5,22.5 - parent: 1 - type: Transform - - uid: 5147 - components: - - pos: 32.5,23.5 - parent: 1 - type: Transform - - uid: 5148 - components: - - pos: 32.5,24.5 - parent: 1 - type: Transform - - uid: 5149 - components: - - pos: 32.5,25.5 - parent: 1 - type: Transform - - uid: 5150 - components: - - pos: 32.5,26.5 - parent: 1 - type: Transform - - uid: 5151 - components: - - pos: 32.5,27.5 - parent: 1 - type: Transform - - uid: 5152 - components: - - pos: 33.5,27.5 - parent: 1 - type: Transform - - uid: 5153 - components: - - pos: 34.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5154 - components: - - pos: 33.5,17.5 - parent: 1 - type: Transform - - uid: 5155 - components: - - pos: 34.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5297 - components: - - pos: 16.5,9.5 - parent: 1 - type: Transform - - uid: 5298 - components: - - pos: 15.5,9.5 - parent: 1 - type: Transform - - uid: 5299 - components: - - pos: 14.5,9.5 - parent: 1 - type: Transform - - uid: 5300 - components: - - pos: 13.5,9.5 - parent: 1 - type: Transform - - uid: 5703 - components: - - pos: -20.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5704 - components: - - pos: -19.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5705 - components: - - pos: -19.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5706 - components: - - pos: -19.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5707 - components: - - pos: -18.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5708 - components: - - pos: -17.5,24.5 - parent: 1 - type: Transform - - uid: 5709 - components: - - pos: -16.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5710 - components: - - pos: -15.5,24.5 - parent: 1 - type: Transform - - uid: 5711 - components: - - pos: -14.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5712 - components: - - pos: -13.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5713 - components: - - pos: -13.5,23.5 - parent: 1 - type: Transform - - uid: 5714 - components: - - pos: -13.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5715 - components: - - pos: -13.5,21.5 - parent: 1 - type: Transform - - uid: 5716 - components: - - pos: -13.5,20.5 - parent: 1 - type: Transform - - uid: 5717 - components: - - pos: -13.5,19.5 - parent: 1 - type: Transform - - uid: 5718 - components: - - pos: -14.5,19.5 - parent: 1 - type: Transform - - uid: 5719 - components: - - pos: -15.5,19.5 - parent: 1 - type: Transform - - uid: 5720 - components: - - pos: -16.5,19.5 - parent: 1 - type: Transform - - uid: 5721 - components: - - pos: -14.5,18.5 - parent: 1 - type: Transform - - uid: 5722 - components: - - pos: -14.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5723 - components: - - pos: -16.5,18.5 - parent: 1 - type: Transform - - uid: 5724 - components: - - pos: -16.5,17.5 - parent: 1 - type: Transform - - uid: 5725 - components: - - pos: -16.5,16.5 - parent: 1 - type: Transform - - uid: 5726 - components: - - pos: -16.5,15.5 - parent: 1 - type: Transform - - uid: 5727 - components: - - pos: -16.5,14.5 - parent: 1 - type: Transform - - uid: 5728 - components: - - pos: -16.5,13.5 - parent: 1 - type: Transform - - uid: 5729 - components: - - pos: -16.5,12.5 - parent: 1 - type: Transform - - uid: 5730 - components: - - pos: -16.5,11.5 - parent: 1 - type: Transform - - uid: 5731 - components: - - pos: -15.5,13.5 - parent: 1 - type: Transform - - uid: 5732 - components: - - pos: -14.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5733 - components: - - pos: -16.5,10.5 - parent: 1 - type: Transform - - uid: 5734 - components: - - pos: -17.5,10.5 - parent: 1 - type: Transform - - uid: 5735 - components: - - pos: -18.5,10.5 - parent: 1 - type: Transform - - uid: 5736 - components: - - pos: -19.5,10.5 - parent: 1 - type: Transform - - uid: 5737 - components: - - pos: -20.5,10.5 - parent: 1 - type: Transform - - uid: 5738 - components: - - pos: -21.5,10.5 - parent: 1 - type: Transform - - uid: 5739 - components: - - pos: -22.5,10.5 - parent: 1 - type: Transform - - uid: 5740 - components: - - pos: -23.5,10.5 - parent: 1 - type: Transform - - uid: 5741 - components: - - pos: -24.5,10.5 - parent: 1 - type: Transform - - uid: 5742 - components: - - pos: -24.5,11.5 - parent: 1 - type: Transform - - uid: 5743 - components: - - pos: -24.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5752 - components: - - pos: -15.5,10.5 - parent: 1 - type: Transform - - uid: 5753 - components: - - pos: -14.5,10.5 - parent: 1 - type: Transform - - uid: 5754 - components: - - pos: -13.5,10.5 - parent: 1 - type: Transform - - uid: 5755 - components: - - pos: -12.5,10.5 - parent: 1 - type: Transform - - uid: 5756 - components: - - pos: -11.5,10.5 - parent: 1 - type: Transform - - uid: 5757 - components: - - pos: -11.5,9.5 - parent: 1 - type: Transform - - uid: 5758 - components: - - pos: -11.5,8.5 - parent: 1 - type: Transform - - uid: 5759 - components: - - pos: -11.5,7.5 - parent: 1 - type: Transform - - uid: 5760 - components: - - pos: -10.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6180 - components: - - pos: 10.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6181 - components: - - pos: 10.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6182 - components: - - pos: 10.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6183 - components: - - pos: 9.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6184 - components: - - pos: 8.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6185 - components: - - pos: 8.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6186 - components: - - pos: 8.5,17.5 - parent: 1 - type: Transform - - uid: 6187 - components: - - pos: 8.5,16.5 - parent: 1 - type: Transform - - uid: 6188 - components: - - pos: 8.5,15.5 - parent: 1 - type: Transform - - uid: 6189 - components: - - pos: 8.5,14.5 - parent: 1 - type: Transform - - uid: 6190 - components: - - pos: 8.5,13.5 - parent: 1 - type: Transform - - uid: 6191 - components: - - pos: 8.5,12.5 - parent: 1 - type: Transform - - uid: 6192 - components: - - pos: 8.5,11.5 - parent: 1 - type: Transform - - uid: 6193 - components: - - pos: 8.5,10.5 - parent: 1 - type: Transform - - uid: 6194 - components: - - pos: 8.5,9.5 - parent: 1 - type: Transform - - uid: 6195 - components: - - pos: 8.5,8.5 - parent: 1 - type: Transform - - uid: 6196 - components: - - pos: 7.5,8.5 - parent: 1 - type: Transform - - uid: 6197 - components: - - pos: 6.5,8.5 - parent: 1 - type: Transform - - uid: 6198 - components: - - pos: 5.5,8.5 - parent: 1 - type: Transform - - uid: 6199 - components: - - pos: 4.5,8.5 - parent: 1 - type: Transform - - uid: 6205 - components: - - pos: -0.5,7.5 - parent: 1 - type: Transform - - uid: 6209 - components: - - pos: 4.5,7.5 - parent: 1 - type: Transform - - uid: 6210 - components: - - pos: 4.5,6.5 - parent: 1 - type: Transform - - uid: 6211 - components: - - pos: 4.5,5.5 - parent: 1 - type: Transform - - uid: 6212 - components: - - pos: 4.5,4.5 - parent: 1 - type: Transform - - uid: 6213 - components: - - pos: 4.5,3.5 - parent: 1 - type: Transform - - uid: 6214 - components: - - pos: 4.5,2.5 - parent: 1 - type: Transform - - uid: 6215 - components: - - pos: 4.5,1.5 - parent: 1 - type: Transform - - uid: 6216 - components: - - pos: 4.5,0.5 - parent: 1 - type: Transform - - uid: 6217 - components: - - pos: 4.5,-0.5 - parent: 1 - type: Transform - - uid: 6218 - components: - - pos: 4.5,-1.5 - parent: 1 - type: Transform - - uid: 6219 - components: - - pos: 3.5,-1.5 - parent: 1 - type: Transform - - uid: 6220 - components: - - pos: 2.5,-1.5 - parent: 1 - type: Transform - - uid: 6221 - components: - - pos: 1.5,-1.5 - parent: 1 - type: Transform - - uid: 6222 - components: - - pos: 0.5,-1.5 - parent: 1 - type: Transform - - uid: 6223 - components: - - pos: -0.5,-1.5 - parent: 1 - type: Transform - - uid: 6224 - components: - - pos: -0.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6225 - components: - - pos: 5.5,0.5 - parent: 1 - type: Transform - - uid: 6226 - components: - - pos: 6.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6286 - components: - - pos: 3.5,7.5 - parent: 1 - type: Transform - - uid: 6287 - components: - - pos: 2.5,7.5 - parent: 1 - type: Transform - - uid: 6288 - components: - - pos: 1.5,7.5 - parent: 1 - type: Transform - - uid: 6289 - components: - - pos: 0.5,7.5 - parent: 1 - type: Transform - - uid: 6290 - components: - - pos: -1.5,7.5 - parent: 1 - type: Transform - - uid: 6291 - components: - - pos: -2.5,7.5 - parent: 1 - type: Transform - - uid: 6340 - components: - - pos: -7.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6341 - components: - - pos: -7.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6342 - components: - - pos: -7.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6343 - components: - - pos: -8.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6344 - components: - - pos: -9.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6345 - components: - - pos: -10.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6346 - components: - - pos: -11.5,-18.5 - parent: 1 - type: Transform - - uid: 6347 - components: - - pos: -11.5,-17.5 - parent: 1 - type: Transform - - uid: 6348 - components: - - pos: -11.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6349 - components: - - pos: -11.5,-15.5 - parent: 1 - type: Transform - - uid: 6350 - components: - - pos: -11.5,-14.5 - parent: 1 - type: Transform - - uid: 6351 - components: - - pos: -11.5,-13.5 - parent: 1 - type: Transform - - uid: 6352 - components: - - pos: -11.5,-12.5 - parent: 1 - type: Transform - - uid: 6353 - components: - - pos: -11.5,-11.5 - parent: 1 - type: Transform - - uid: 6354 - components: - - pos: -11.5,-10.5 - parent: 1 - type: Transform - - uid: 6355 - components: - - pos: -11.5,-9.5 - parent: 1 - type: Transform - - uid: 6356 - components: - - pos: -11.5,-8.5 - parent: 1 - type: Transform - - uid: 6357 - components: - - pos: -11.5,-7.5 - parent: 1 - type: Transform - - uid: 6358 - components: - - pos: -11.5,-6.5 - parent: 1 - type: Transform - - uid: 6359 - components: - - pos: -10.5,-15.5 - parent: 1 - type: Transform - - uid: 6360 - components: - - pos: -9.5,-15.5 - parent: 1 - type: Transform - - uid: 6361 - components: - - pos: -8.5,-15.5 - parent: 1 - type: Transform - - uid: 6362 - components: - - pos: -8.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6363 - components: - - pos: -12.5,-6.5 - parent: 1 - type: Transform - - uid: 6364 - components: - - pos: -13.5,-6.5 - parent: 1 - type: Transform - - uid: 6365 - components: - - pos: -14.5,-6.5 - parent: 1 - type: Transform - - uid: 6366 - components: - - pos: -15.5,-6.5 - parent: 1 - type: Transform - - uid: 6367 - components: - - pos: -16.5,-6.5 - parent: 1 - type: Transform - - uid: 6368 - components: - - pos: -17.5,-6.5 - parent: 1 - type: Transform - - uid: 6369 - components: - - pos: -18.5,-6.5 - parent: 1 - type: Transform - - uid: 6370 - components: - - pos: -19.5,-6.5 - parent: 1 - type: Transform - - uid: 6371 - components: - - pos: -20.5,-6.5 - parent: 1 - type: Transform - - uid: 6372 - components: - - pos: -14.5,-5.5 - parent: 1 - type: Transform - - uid: 6373 - components: - - pos: -14.5,-4.5 - parent: 1 - type: Transform - - uid: 6374 - components: - - pos: -14.5,-3.5 - parent: 1 - type: Transform - - uid: 6375 - components: - - pos: -14.5,-2.5 - parent: 1 - type: Transform - - uid: 6376 - components: - - pos: -14.5,-1.5 - parent: 1 - type: Transform - - uid: 6377 - components: - - pos: -14.5,-0.5 - parent: 1 - type: Transform - - uid: 6378 - components: - - pos: -14.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6379 - components: - - pos: -16.5,-7.5 - parent: 1 - type: Transform - - uid: 6380 - components: - - pos: -16.5,-8.5 - parent: 1 - type: Transform - - uid: 6381 - components: - - pos: -16.5,-9.5 - parent: 1 - type: Transform - - uid: 6382 - components: - - pos: -16.5,-10.5 - parent: 1 - type: Transform - - uid: 6383 - components: - - pos: -16.5,-11.5 - parent: 1 - type: Transform - - uid: 6384 - components: - - pos: -16.5,-12.5 - parent: 1 - type: Transform - - uid: 6385 - components: - - pos: -16.5,-13.5 - parent: 1 - type: Transform - - uid: 6386 - components: - - pos: -16.5,-14.5 - parent: 1 - type: Transform - - uid: 6387 - components: - - pos: -16.5,-15.5 - parent: 1 - type: Transform - - uid: 6388 - components: - - pos: -16.5,-16.5 - parent: 1 - type: Transform - - uid: 6389 - components: - - pos: -16.5,-17.5 - parent: 1 - type: Transform - - uid: 6390 - components: - - pos: -16.5,-18.5 - parent: 1 - type: Transform - - uid: 6391 - components: - - pos: -16.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6392 - components: - - pos: -21.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6393 - components: - - pos: -21.5,-6.5 - parent: 1 - type: Transform - - uid: 6528 - components: - - pos: 14.5,-12.5 - parent: 1 - type: Transform - - uid: 6529 - components: - - pos: 14.5,-11.5 - parent: 1 - type: Transform - - uid: 6530 - components: - - pos: 14.5,-10.5 - parent: 1 - type: Transform - - uid: 6531 - components: - - pos: 15.5,-10.5 - parent: 1 - type: Transform - - uid: 6532 - components: - - pos: 16.5,-10.5 - parent: 1 - type: Transform - - uid: 6533 - components: - - pos: 17.5,-10.5 - parent: 1 - type: Transform - - uid: 6534 - components: - - pos: 18.5,-10.5 - parent: 1 - type: Transform - - uid: 6535 - components: - - pos: 19.5,-10.5 - parent: 1 - type: Transform - - uid: 6536 - components: - - pos: 20.5,-10.5 - parent: 1 - type: Transform - - uid: 6537 - components: - - pos: 21.5,-10.5 - parent: 1 - type: Transform - - uid: 6538 - components: - - pos: 22.5,-10.5 - parent: 1 - type: Transform - - uid: 6539 - components: - - pos: 23.5,-10.5 - parent: 1 - type: Transform - - uid: 6540 - components: - - pos: 24.5,-10.5 - parent: 1 - type: Transform - - uid: 6541 - components: - - pos: 24.5,-11.5 - parent: 1 - type: Transform - - uid: 6542 - components: - - pos: 24.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6543 - components: - - pos: 22.5,-9.5 - parent: 1 - type: Transform - - uid: 6544 - components: - - pos: 22.5,-8.5 - parent: 1 - type: Transform - - uid: 6545 - components: - - pos: 22.5,-7.5 - parent: 1 - type: Transform - - uid: 6546 - components: - - pos: 22.5,-6.5 - parent: 1 - type: Transform - - uid: 6547 - components: - - pos: 22.5,-5.5 - parent: 1 - type: Transform - - uid: 6548 - components: - - pos: 22.5,-4.5 - parent: 1 - type: Transform - - uid: 6549 - components: - - pos: 21.5,-4.5 - parent: 1 - type: Transform - - uid: 6550 - components: - - pos: 20.5,-4.5 - parent: 1 - type: Transform - - uid: 6551 - components: - - pos: 19.5,-4.5 - parent: 1 - type: Transform - - uid: 6552 - components: - - pos: 18.5,-4.5 - parent: 1 - type: Transform - - uid: 6553 - components: - - pos: 17.5,-4.5 - parent: 1 - type: Transform - - uid: 6554 - components: - - pos: 16.5,-4.5 - parent: 1 - type: Transform - - uid: 6557 - components: - - pos: 25.5,-10.5 - parent: 1 - type: Transform - - uid: 6558 - components: - - pos: 26.5,-10.5 - parent: 1 - type: Transform - - uid: 6559 - components: - - pos: 27.5,-10.5 - parent: 1 - type: Transform - - uid: 6560 - components: - - pos: 28.5,-10.5 - parent: 1 - type: Transform - - uid: 6561 - components: - - pos: 29.5,-10.5 - parent: 1 - type: Transform - - uid: 6562 - components: - - pos: 30.5,-10.5 - parent: 1 - type: Transform - - uid: 6563 - components: - - pos: 31.5,-10.5 - parent: 1 - type: Transform - - uid: 6564 - components: - - pos: 32.5,-10.5 - parent: 1 - type: Transform - - uid: 6565 - components: - - pos: 33.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6566 - components: - - pos: 34.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6567 - components: - - pos: 34.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6568 - components: - - pos: 34.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6569 - components: - - pos: 34.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6570 - components: - - pos: 34.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6571 - components: - - pos: 34.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6572 - components: - - pos: 33.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6573 - components: - - pos: 34.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6574 - components: - - pos: 34.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6575 - components: - - pos: 34.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6576 - components: - - pos: 34.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6577 - components: - - pos: 33.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6781 - components: - - pos: 17.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6782 - components: - - pos: 17.5,-3.5 - parent: 1 - type: Transform - - uid: 7091 - components: - - pos: 24.5,-20.5 - parent: 1 - type: Transform - - uid: 7092 - components: - - pos: 21.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7094 - components: - - pos: 25.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7095 - components: - - pos: 25.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7096 - components: - - pos: 25.5,-18.5 - parent: 1 - type: Transform - - uid: 7097 - components: - - pos: 24.5,-18.5 - parent: 1 - type: Transform - - uid: 7098 - components: - - pos: 23.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7099 - components: - - pos: 22.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7100 - components: - - pos: 21.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7101 - components: - - pos: 20.5,-21.5 - parent: 1 - type: Transform - - uid: 7102 - components: - - pos: 19.5,-21.5 - parent: 1 - type: Transform - - uid: 7103 - components: - - pos: 18.5,-21.5 - parent: 1 - type: Transform - - uid: 7104 - components: - - pos: 17.5,-21.5 - parent: 1 - type: Transform - - uid: 7105 - components: - - pos: 16.5,-21.5 - parent: 1 - type: Transform - - uid: 7109 - components: - - pos: 15.5,-21.5 - parent: 1 - type: Transform - - uid: 7110 - components: - - pos: 14.5,-21.5 - parent: 1 - type: Transform - - uid: 7111 - components: - - pos: 13.5,-21.5 - parent: 1 - type: Transform - - uid: 7112 - components: - - pos: 12.5,-21.5 - parent: 1 - type: Transform - - uid: 7113 - components: - - pos: 11.5,-21.5 - parent: 1 - type: Transform - - uid: 7114 - components: - - pos: 11.5,-20.5 - parent: 1 - type: Transform - - uid: 7115 - components: - - pos: 11.5,-19.5 - parent: 1 - type: Transform - - uid: 7116 - components: - - pos: 12.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7117 - components: - - pos: 15.5,-22.5 - parent: 1 - type: Transform - - uid: 7118 - components: - - pos: 15.5,-23.5 - parent: 1 - type: Transform - - uid: 7119 - components: - - pos: 15.5,-24.5 - parent: 1 - type: Transform - - uid: 7120 - components: - - pos: 15.5,-25.5 - parent: 1 - type: Transform - - uid: 7121 - components: - - pos: 15.5,-26.5 - parent: 1 - type: Transform - - uid: 7122 - components: - - pos: 15.5,-27.5 - parent: 1 - type: Transform - - uid: 7123 - components: - - pos: 15.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7124 - components: - - pos: 21.5,-20.5 - parent: 1 - type: Transform - - uid: 7125 - components: - - pos: 21.5,-21.5 - parent: 1 - type: Transform - - uid: 7126 - components: - - pos: 22.5,-21.5 - parent: 1 - type: Transform - - uid: 7127 - components: - - pos: 23.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7389 - components: - - pos: 18.5,-11.5 - parent: 1 - type: Transform - - uid: 7390 - components: - - pos: 18.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7391 - components: - - pos: 19.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7392 - components: - - pos: 20.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7393 - components: - - pos: 20.5,-11.5 - parent: 1 - type: Transform - - uid: 7559 - components: - - pos: -40.5,23.5 - parent: 1 - type: Transform - - uid: 7560 - components: - - pos: -39.5,23.5 - parent: 1 - type: Transform - - uid: 7561 - components: - - pos: -39.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7581 - components: - - pos: -40.5,22.5 - parent: 1 - type: Transform - - uid: 7582 - components: - - pos: -40.5,21.5 - parent: 1 - type: Transform - - uid: 7583 - components: - - pos: -40.5,20.5 - parent: 1 - type: Transform - - uid: 7584 - components: - - pos: -40.5,19.5 - parent: 1 - type: Transform - - uid: 7585 - components: - - pos: -40.5,18.5 - parent: 1 - type: Transform - - uid: 7586 - components: - - pos: -40.5,17.5 - parent: 1 - type: Transform - - uid: 7587 - components: - - pos: -40.5,16.5 - parent: 1 - type: Transform - - uid: 7588 - components: - - pos: -40.5,15.5 - parent: 1 - type: Transform - - uid: 7589 - components: - - pos: -40.5,14.5 - parent: 1 - type: Transform - - uid: 7590 - components: - - pos: -40.5,13.5 - parent: 1 - type: Transform - - uid: 7591 - components: - - pos: -40.5,12.5 - parent: 1 - type: Transform - - uid: 7592 - components: - - pos: -40.5,11.5 - parent: 1 - type: Transform - - uid: 7593 - components: - - pos: -40.5,10.5 - parent: 1 - type: Transform - - uid: 7594 - components: - - pos: -40.5,9.5 - parent: 1 - type: Transform - - uid: 7595 - components: - - pos: -40.5,8.5 - parent: 1 - type: Transform - - uid: 7596 - components: - - pos: -40.5,7.5 - parent: 1 - type: Transform - - uid: 7597 - components: - - pos: -40.5,6.5 - parent: 1 - type: Transform - - uid: 7598 - components: - - pos: -40.5,5.5 - parent: 1 - type: Transform - - uid: 7599 - components: - - pos: -40.5,4.5 - parent: 1 - type: Transform - - uid: 7600 - components: - - pos: -40.5,3.5 - parent: 1 - type: Transform - - uid: 7601 - components: - - pos: -40.5,2.5 - parent: 1 - type: Transform - - uid: 7602 - components: - - pos: -39.5,14.5 - parent: 1 - type: Transform - - uid: 7603 - components: - - pos: -38.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7604 - components: - - pos: -39.5,2.5 - parent: 1 - type: Transform - - uid: 7605 - components: - - pos: -38.5,2.5 - parent: 1 - type: Transform - - uid: 7606 - components: - - pos: -37.5,2.5 - parent: 1 - type: Transform - - uid: 7607 - components: - - pos: -36.5,2.5 - parent: 1 - type: Transform - - uid: 7608 - components: - - pos: -35.5,2.5 - parent: 1 - type: Transform - - uid: 7609 - components: - - pos: -34.5,2.5 - parent: 1 - type: Transform - - uid: 7610 - components: - - pos: -34.5,3.5 - parent: 1 - type: Transform - - uid: 7611 - components: - - pos: -34.5,4.5 - parent: 1 - type: Transform - - uid: 7612 - components: - - pos: -34.5,5.5 - parent: 1 - type: Transform - - uid: 7613 - components: - - pos: -34.5,6.5 - parent: 1 - type: Transform - - uid: 7614 - components: - - pos: -34.5,7.5 - parent: 1 - type: Transform - - uid: 7615 - components: - - pos: -34.5,8.5 - parent: 1 - type: Transform - - uid: 7616 - components: - - pos: -34.5,9.5 - parent: 1 - type: Transform - - uid: 7617 - components: - - pos: -33.5,9.5 - parent: 1 - type: Transform - - uid: 7618 - components: - - pos: -32.5,9.5 - parent: 1 - type: Transform - - uid: 7619 - components: - - pos: -31.5,9.5 - parent: 1 - type: Transform - - uid: 7620 - components: - - pos: -30.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7621 - components: - - pos: -37.5,1.5 - parent: 1 - type: Transform - - uid: 7622 - components: - - pos: -37.5,0.5 - parent: 1 - type: Transform - - uid: 7623 - components: - - pos: -37.5,-0.5 - parent: 1 - type: Transform - - uid: 7624 - components: - - pos: -37.5,-1.5 - parent: 1 - type: Transform - - uid: 7625 - components: - - pos: -37.5,-2.5 - parent: 1 - type: Transform - - uid: 7626 - components: - - pos: -37.5,-3.5 - parent: 1 - type: Transform - - uid: 7627 - components: - - pos: -37.5,-4.5 - parent: 1 - type: Transform - - uid: 7628 - components: - - pos: -37.5,-5.5 - parent: 1 - type: Transform - - uid: 7629 - components: - - pos: -37.5,-6.5 - parent: 1 - type: Transform - - uid: 7630 - components: - - pos: -38.5,-6.5 - parent: 1 - type: Transform - - uid: 7631 - components: - - pos: -39.5,-6.5 - parent: 1 - type: Transform - - uid: 7632 - components: - - pos: -39.5,-7.5 - parent: 1 - type: Transform - - uid: 7633 - components: - - pos: -39.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7723 - components: - - pos: -7.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7724 - components: - - pos: -8.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7725 - components: - - pos: -9.5,-22.5 - parent: 1 - type: Transform - - uid: 7726 - components: - - pos: -10.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7727 - components: - - pos: -10.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7728 - components: - - pos: -10.5,-24.5 - parent: 1 - type: Transform - - uid: 7729 - components: - - pos: -10.5,-25.5 - parent: 1 - type: Transform - - uid: 7730 - components: - - pos: -11.5,-25.5 - parent: 1 - type: Transform - - uid: 7731 - components: - - pos: -12.5,-25.5 - parent: 1 - type: Transform - - uid: 7732 - components: - - pos: -13.5,-25.5 - parent: 1 - type: Transform - - uid: 7733 - components: - - pos: -14.5,-25.5 - parent: 1 - type: Transform - - uid: 7734 - components: - - pos: -15.5,-25.5 - parent: 1 - type: Transform - - uid: 7735 - components: - - pos: -16.5,-25.5 - parent: 1 - type: Transform - - uid: 7736 - components: - - pos: -17.5,-25.5 - parent: 1 - type: Transform - - uid: 7737 - components: - - pos: -18.5,-25.5 - parent: 1 - type: Transform - - uid: 7738 - components: - - pos: -19.5,-25.5 - parent: 1 - type: Transform - - uid: 7739 - components: - - pos: -20.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7740 - components: - - pos: -9.5,-25.5 - parent: 1 - type: Transform - - uid: 7741 - components: - - pos: -8.5,-25.5 - parent: 1 - type: Transform - - uid: 7742 - components: - - pos: -7.5,-25.5 - parent: 1 - type: Transform - - uid: 7743 - components: - - pos: -6.5,-25.5 - parent: 1 - type: Transform - - uid: 7744 - components: - - pos: -5.5,-25.5 - parent: 1 - type: Transform - - uid: 7745 - components: - - pos: -4.5,-25.5 - parent: 1 - type: Transform - - uid: 7746 - components: - - pos: -3.5,-25.5 - parent: 1 - type: Transform - - uid: 7747 - components: - - pos: -2.5,-25.5 - parent: 1 - type: Transform - - uid: 7748 - components: - - pos: -1.5,-25.5 - parent: 1 - type: Transform - - uid: 7749 - components: - - pos: -0.5,-25.5 - parent: 1 - type: Transform - - uid: 7750 - components: - - pos: 0.5,-25.5 - parent: 1 - type: Transform - - uid: 7751 - components: - - pos: 1.5,-25.5 - parent: 1 - type: Transform - - uid: 7752 - components: - - pos: -4.5,-26.5 - parent: 1 - type: Transform - - uid: 7753 - components: - - pos: -4.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7754 - components: - - pos: 1.5,-24.5 - parent: 1 - type: Transform - - uid: 7755 - components: - - pos: 1.5,-23.5 - parent: 1 - type: Transform - - uid: 7756 - components: - - pos: 1.5,-22.5 - parent: 1 - type: Transform - - uid: 7757 - components: - - pos: 1.5,-21.5 - parent: 1 - type: Transform - - uid: 7758 - components: - - pos: 1.5,-20.5 - parent: 1 - type: Transform - - uid: 7759 - components: - - pos: 1.5,-19.5 - parent: 1 - type: Transform - - uid: 7760 - components: - - pos: 1.5,-18.5 - parent: 1 - type: Transform - - uid: 7761 - components: - - pos: 1.5,-17.5 - parent: 1 - type: Transform - - uid: 7762 - components: - - pos: 1.5,-16.5 - parent: 1 - type: Transform - - uid: 7763 - components: - - pos: 1.5,-15.5 - parent: 1 - type: Transform - - uid: 7764 - components: - - pos: 0.5,-15.5 - parent: 1 - type: Transform - - uid: 7765 - components: - - pos: -0.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7767 - components: - - pos: 1.5,-26.5 - parent: 1 - type: Transform - - uid: 7768 - components: - - pos: 1.5,-27.5 - parent: 1 - type: Transform - - uid: 7769 - components: - - pos: 1.5,-28.5 - parent: 1 - type: Transform - - uid: 7770 - components: - - pos: 1.5,-29.5 - parent: 1 - type: Transform - - uid: 7771 - components: - - pos: 1.5,-30.5 - parent: 1 - type: Transform - - uid: 7772 - components: - - pos: 1.5,-31.5 - parent: 1 - type: Transform - - uid: 7773 - components: - - pos: 1.5,-32.5 - parent: 1 - type: Transform - - uid: 7774 - components: - - pos: 0.5,-32.5 - parent: 1 - type: Transform - - uid: 7775 - components: - - pos: -0.5,-32.5 - parent: 1 - type: Transform - - uid: 7776 - components: - - pos: -1.5,-32.5 - parent: 1 - type: Transform - - uid: 7777 - components: - - pos: -2.5,-32.5 - parent: 1 - type: Transform - - uid: 7778 - components: - - pos: -3.5,-32.5 - parent: 1 - type: Transform - - uid: 7779 - components: - - pos: -4.5,-32.5 - parent: 1 - type: Transform - - uid: 7780 - components: - - pos: -5.5,-32.5 - parent: 1 - type: Transform - - uid: 7781 - components: - - pos: -5.5,-33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8024 - components: - - pos: 40.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8025 - components: - - pos: 39.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8026 - components: - - pos: 39.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8027 - components: - - pos: 39.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8028 - components: - - pos: 39.5,16.5 - parent: 1 - type: Transform - - uid: 8029 - components: - - pos: 40.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8030 - components: - - pos: 41.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8031 - components: - - pos: 42.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8032 - components: - - pos: 42.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8033 - components: - - pos: 43.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8034 - components: - - pos: 44.5,15.5 - parent: 1 - type: Transform - - uid: 8035 - components: - - pos: 43.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8036 - components: - - pos: 45.5,15.5 - parent: 1 - type: Transform - - uid: 8037 - components: - - pos: 45.5,16.5 - parent: 1 - type: Transform - - uid: 8038 - components: - - pos: 45.5,17.5 - parent: 1 - type: Transform - - uid: 8039 - components: - - pos: 45.5,18.5 - parent: 1 - type: Transform - - uid: 8040 - components: - - pos: 45.5,19.5 - parent: 1 - type: Transform - - uid: 8041 - components: - - pos: 45.5,20.5 - parent: 1 - type: Transform - - uid: 8042 - components: - - pos: 45.5,21.5 - parent: 1 - type: Transform - - uid: 8043 - components: - - pos: 45.5,22.5 - parent: 1 - type: Transform - - uid: 8044 - components: - - pos: 45.5,23.5 - parent: 1 - type: Transform - - uid: 8045 - components: - - pos: 45.5,24.5 - parent: 1 - type: Transform - - uid: 8046 - components: - - pos: 45.5,25.5 - parent: 1 - type: Transform - - uid: 8047 - components: - - pos: 45.5,26.5 - parent: 1 - type: Transform - - uid: 8048 - components: - - pos: 45.5,27.5 - parent: 1 - type: Transform - - uid: 8050 - components: - - pos: 44.5,28.5 - parent: 1 - type: Transform - - uid: 8051 - components: - - pos: 43.5,28.5 - parent: 1 - type: Transform - - uid: 8052 - components: - - pos: 42.5,28.5 - parent: 1 - type: Transform - - uid: 8053 - components: - - pos: 41.5,28.5 - parent: 1 - type: Transform - - uid: 8054 - components: - - pos: 40.5,28.5 - parent: 1 - type: Transform - - uid: 8055 - components: - - pos: 39.5,28.5 - parent: 1 - type: Transform - - uid: 8056 - components: - - pos: 38.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8057 - components: - - pos: 44.5,22.5 - parent: 1 - type: Transform - - uid: 8058 - components: - - pos: 43.5,22.5 - parent: 1 - type: Transform - - uid: 8059 - components: - - pos: 42.5,22.5 - parent: 1 - type: Transform - - uid: 8060 - components: - - pos: 41.5,22.5 - parent: 1 - type: Transform - - uid: 8061 - components: - - pos: 41.5,23.5 - parent: 1 - type: Transform - - uid: 8062 - components: - - pos: 41.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8063 - components: - - pos: 45.5,14.5 - parent: 1 - type: Transform - - uid: 8064 - components: - - pos: 45.5,13.5 - parent: 1 - type: Transform - - uid: 8065 - components: - - pos: 45.5,12.5 - parent: 1 - type: Transform - - uid: 8066 - components: - - pos: 45.5,11.5 - parent: 1 - type: Transform - - uid: 8067 - components: - - pos: 45.5,10.5 - parent: 1 - type: Transform - - uid: 8068 - components: - - pos: 45.5,9.5 - parent: 1 - type: Transform - - uid: 8069 - components: - - pos: 45.5,8.5 - parent: 1 - type: Transform - - uid: 8070 - components: - - pos: 45.5,7.5 - parent: 1 - type: Transform - - uid: 8071 - components: - - pos: 45.5,6.5 - parent: 1 - type: Transform - - uid: 8072 - components: - - pos: 45.5,5.5 - parent: 1 - type: Transform - - uid: 8073 - components: - - pos: 45.5,4.5 - parent: 1 - type: Transform - - uid: 8074 - components: - - pos: 45.5,3.5 - parent: 1 - type: Transform - - uid: 8075 - components: - - pos: 45.5,2.5 - parent: 1 - type: Transform - - uid: 8076 - components: - - pos: 44.5,2.5 - parent: 1 - type: Transform - - uid: 8077 - components: - - pos: 43.5,2.5 - parent: 1 - type: Transform - - uid: 8078 - components: - - pos: 42.5,2.5 - parent: 1 - type: Transform - - uid: 8079 - components: - - pos: 41.5,2.5 - parent: 1 - type: Transform - - uid: 8080 - components: - - pos: 40.5,2.5 - parent: 1 - type: Transform - - uid: 8081 - components: - - pos: 39.5,2.5 - parent: 1 - type: Transform - - uid: 8082 - components: - - pos: 38.5,2.5 - parent: 1 - type: Transform - - uid: 8083 - components: - - pos: 37.5,2.5 - parent: 1 - type: Transform - - uid: 8084 - components: - - pos: 36.5,2.5 - parent: 1 - type: Transform - - uid: 8085 - components: - - pos: 35.5,2.5 - parent: 1 - type: Transform - - uid: 8086 - components: - - pos: 34.5,2.5 - parent: 1 - type: Transform - - uid: 8087 - components: - - pos: 33.5,2.5 - parent: 1 - type: Transform - - uid: 8088 - components: - - pos: 32.5,2.5 - parent: 1 - type: Transform - - uid: 8089 - components: - - pos: 31.5,2.5 - parent: 1 - type: Transform - - uid: 8090 - components: - - pos: 30.5,2.5 - parent: 1 - type: Transform - - uid: 8091 - components: - - pos: 29.5,2.5 - parent: 1 - type: Transform - - uid: 8092 - components: - - pos: 28.5,2.5 - parent: 1 - type: Transform - - uid: 8093 - components: - - pos: 28.5,1.5 - parent: 1 - type: Transform - - uid: 8094 - components: - - pos: 28.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8182 - components: - - pos: 4.5,-2.5 - parent: 1 - type: Transform - - uid: 8183 - components: - - pos: 4.5,-3.5 - parent: 1 - type: Transform - - uid: 8184 - components: - - pos: 5.5,-3.5 - parent: 1 - type: Transform - - uid: 8185 - components: - - pos: 6.5,-3.5 - parent: 1 - type: Transform - - uid: 8186 - components: - - pos: 7.5,-3.5 - parent: 1 - type: Transform - - uid: 8187 - components: - - pos: 8.5,-3.5 - parent: 1 - type: Transform - - uid: 8188 - components: - - pos: 8.5,-2.5 - parent: 1 - type: Transform - - uid: 8191 - components: - - pos: 9.5,-2.5 - parent: 1 - type: Transform - - uid: 8192 - components: - - pos: 10.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8331 - components: - - pos: -29.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8332 - components: - - pos: -30.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8333 - components: - - pos: -30.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8334 - components: - - pos: -30.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8335 - components: - - pos: -30.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8336 - components: - - pos: -31.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8337 - components: - - pos: -30.5,-19.5 - parent: 1 - type: Transform - - uid: 8338 - components: - - pos: -30.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8339 - components: - - pos: -30.5,-17.5 - parent: 1 - type: Transform - - uid: 8340 - components: - - pos: -30.5,-16.5 - parent: 1 - type: Transform - - uid: 8341 - components: - - pos: -31.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8342 - components: - - pos: -32.5,-16.5 - parent: 1 - type: Transform - - uid: 8345 - components: - - pos: -31.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8346 - components: - - pos: -32.5,-20.5 - parent: 1 - type: Transform - - uid: 8347 - components: - - pos: -33.5,-20.5 - parent: 1 - type: Transform - - uid: 8348 - components: - - pos: -34.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8349 - components: - - pos: -35.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8350 - components: - - pos: -36.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8351 - components: - - pos: -37.5,-20.5 - parent: 1 - type: Transform - - uid: 8352 - components: - - pos: -38.5,-20.5 - parent: 1 - type: Transform - - uid: 8353 - components: - - pos: -38.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8354 - components: - - pos: -38.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8355 - components: - - pos: -38.5,-17.5 - parent: 1 - type: Transform - - uid: 8356 - components: - - pos: -38.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8357 - components: - - pos: -38.5,-15.5 - parent: 1 - type: Transform - - uid: 8358 - components: - - pos: -38.5,-14.5 - parent: 1 - type: Transform - - uid: 8359 - components: - - pos: -38.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8360 - components: - - pos: -38.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8361 - components: - - pos: -39.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8362 - components: - - pos: -39.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8384 - components: - - pos: -39.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8416 - components: - - pos: 38.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8417 - components: - - pos: 37.5,16.5 - parent: 1 - type: Transform - - uid: 8418 - components: - - pos: 36.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8419 - components: - - pos: 36.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8420 - components: - - pos: 36.5,18.5 - parent: 1 - type: Transform - - uid: 8421 - components: - - pos: 36.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8422 - components: - - pos: 36.5,20.5 - parent: 1 - type: Transform - - uid: 8423 - components: - - pos: 36.5,21.5 - parent: 1 - type: Transform - - uid: 8424 - components: - - pos: 36.5,22.5 - parent: 1 - type: Transform - - uid: 8425 - components: - - pos: 36.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8426 - components: - - pos: 36.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8427 - components: - - pos: 36.5,25.5 - parent: 1 - type: Transform - - uid: 8428 - components: - - pos: 36.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8429 - components: - - pos: 36.5,27.5 - parent: 1 - type: Transform - - uid: 8430 - components: - - pos: 36.5,28.5 - parent: 1 - type: Transform - - uid: 8431 - components: - - pos: 36.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8432 - components: - - pos: 36.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8433 - components: - - pos: 36.5,31.5 - parent: 1 - type: Transform - - uid: 8434 - components: - - pos: 36.5,32.5 - parent: 1 - type: Transform - - uid: 8435 - components: - - pos: 35.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8436 - components: - - pos: 34.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9185 - components: - - pos: -24.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9186 - components: - - pos: -25.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9187 - components: - - pos: -25.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9188 - components: - - pos: -25.5,27.5 - parent: 1 - type: Transform - - uid: 9189 - components: - - pos: -26.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9190 - components: - - pos: -26.5,27.5 - parent: 1 - type: Transform - - uid: 9191 - components: - - pos: -27.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9192 - components: - - pos: -28.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9193 - components: - - pos: -28.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9194 - components: - - pos: -28.5,25.5 - parent: 1 - type: Transform - - uid: 9195 - components: - - pos: -28.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9196 - components: - - pos: -28.5,23.5 - parent: 1 - type: Transform - - uid: 9736 - components: - - pos: -29.5,24.5 - parent: 1 - type: Transform - - uid: 9737 - components: - - pos: -30.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12123 - components: - - pos: 45.5,28.5 - parent: 1 - type: Transform - - uid: 12565 - components: - - pos: -33.5,-16.5 - parent: 1 - type: Transform - - uid: 12566 - components: - - pos: -33.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12567 - components: - - pos: -33.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- proto: CableMVStack - entities: - - uid: 3982 - components: - - pos: -2.5254679,44.593964 - parent: 1 - type: Transform - - uid: 7642 - components: - - pos: -41.491985,19.264193 - parent: 1 - type: Transform - - uid: 8228 - components: - - pos: -5.2976665,-20.338463 - parent: 1 - type: Transform - - uid: 9647 - components: - - pos: 12.6765375,23.532959 - parent: 1 - type: Transform -- proto: CableTerminal - entities: - - uid: 1130 - components: - - pos: 23.5,-13.5 - parent: 1 - type: Transform - - uid: 1131 - components: - - pos: 24.5,-13.5 - parent: 1 - type: Transform - - uid: 1132 - components: - - pos: 25.5,-13.5 - parent: 1 - type: Transform - - uid: 2449 - components: - - pos: -32.5,-22.5 - parent: 1 - type: Transform - - uid: 2552 - components: - - pos: -27.5,30.5 - parent: 1 - type: Transform - - uid: 2848 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-53.5 - parent: 1 - type: Transform - - uid: 3678 - components: - - pos: -0.5,46.5 - parent: 1 - type: Transform - - uid: 7558 - components: - - rot: 3.141592653589793 rad - pos: -41.5,22.5 - parent: 1 - type: Transform -- proto: CannabisSeeds - entities: - - uid: 5466 - components: - - pos: 30.131155,27.66019 - parent: 1 - type: Transform -- proto: CaptainIDCard - entities: - - uid: 4981 - components: - - pos: 4.562398,31.612326 - parent: 1 - type: Transform -- proto: CarbonDioxideCanister - entities: - - uid: 6323 - components: - - pos: -19.5,-18.5 - parent: 1 - type: Transform - - uid: 6809 - components: - - pos: 43.5,-9.5 - parent: 1 - type: Transform -- proto: Carpet - entities: - - uid: 5022 - components: - - pos: 2.5,10.5 - parent: 1 - type: Transform - - uid: 5024 - components: - - pos: 1.5,10.5 - parent: 1 - type: Transform - - uid: 5026 - components: - - pos: 0.5,10.5 - parent: 1 - type: Transform - - uid: 5027 - components: - - pos: 0.5,9.5 - parent: 1 - type: Transform - - uid: 5028 - components: - - pos: 1.5,9.5 - parent: 1 - type: Transform - - uid: 5029 - components: - - pos: 2.5,9.5 - parent: 1 - type: Transform - - uid: 5043 - components: - - rot: 3.141592653589793 rad - pos: 0.5,11.5 - parent: 1 - type: Transform - - uid: 5044 - components: - - rot: 3.141592653589793 rad - pos: 1.5,11.5 - parent: 1 - type: Transform - - uid: 5045 - components: - - rot: 3.141592653589793 rad - pos: 2.5,11.5 - parent: 1 - type: Transform - - uid: 5623 - components: - - rot: 3.141592653589793 rad - pos: 26.5,14.5 - parent: 1 - type: Transform - - uid: 5624 - components: - - rot: 3.141592653589793 rad - pos: 26.5,13.5 - parent: 1 - type: Transform - - uid: 5625 - components: - - rot: 3.141592653589793 rad - pos: 27.5,14.5 - parent: 1 - type: Transform - - uid: 5626 - components: - - rot: 3.141592653589793 rad - pos: 27.5,13.5 - parent: 1 - type: Transform - - uid: 5627 - components: - - rot: 3.141592653589793 rad - pos: 28.5,14.5 - parent: 1 - type: Transform - - uid: 5628 - components: - - rot: 3.141592653589793 rad - pos: 28.5,13.5 - parent: 1 - type: Transform - - uid: 5629 - components: - - rot: 3.141592653589793 rad - pos: 26.5,12.5 - parent: 1 - type: Transform - - uid: 5630 - components: - - rot: 3.141592653589793 rad - pos: 25.5,12.5 - parent: 1 - type: Transform - - uid: 5631 - components: - - rot: 3.141592653589793 rad - pos: 25.5,13.5 - parent: 1 - type: Transform - - uid: 5632 - components: - - rot: 3.141592653589793 rad - pos: 25.5,14.5 - parent: 1 - type: Transform - - uid: 5633 - components: - - rot: 3.141592653589793 rad - pos: 27.5,12.5 - parent: 1 - type: Transform - - uid: 5634 - components: - - rot: 3.141592653589793 rad - pos: 28.5,12.5 - parent: 1 - type: Transform - - uid: 5635 - components: - - rot: 3.141592653589793 rad - pos: 27.5,16.5 - parent: 1 - type: Transform - - uid: 5636 - components: - - rot: 3.141592653589793 rad - pos: 27.5,17.5 - parent: 1 - type: Transform - - uid: 5637 - components: - - rot: 3.141592653589793 rad - pos: 28.5,16.5 - parent: 1 - type: Transform - - uid: 5638 - components: - - rot: 3.141592653589793 rad - pos: 28.5,17.5 - parent: 1 - type: Transform - - uid: 12438 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,6.5 - parent: 1 - type: Transform - - uid: 12439 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,5.5 - parent: 1 - type: Transform - - uid: 12440 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,6.5 - parent: 1 - type: Transform - - uid: 12441 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,5.5 - parent: 1 - type: Transform -- proto: CarpetBlack - entities: - - uid: 2010 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,6.5 - parent: 1 - type: Transform - - uid: 2011 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,7.5 - parent: 1 - type: Transform - - uid: 2012 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,8.5 - parent: 1 - type: Transform - - uid: 2013 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,9.5 - parent: 1 - type: Transform - - uid: 2014 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,10.5 - parent: 1 - type: Transform - - uid: 2015 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,9.5 - parent: 1 - type: Transform - - uid: 2016 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,9.5 - parent: 1 - type: Transform - - uid: 2017 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,9.5 - parent: 1 - type: Transform - - uid: 2018 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,9.5 - parent: 1 - type: Transform -- proto: CarpetBlue - entities: - - uid: 5645 - components: - - rot: 3.141592653589793 rad - pos: -5.5,19.5 - parent: 1 - type: Transform - - uid: 5646 - components: - - rot: 3.141592653589793 rad - pos: -5.5,20.5 - parent: 1 - type: Transform - - uid: 5647 - components: - - rot: 3.141592653589793 rad - pos: -4.5,19.5 - parent: 1 - type: Transform - - uid: 5648 - components: - - rot: 3.141592653589793 rad - pos: -4.5,20.5 - parent: 1 - type: Transform - - uid: 5649 - components: - - rot: 3.141592653589793 rad - pos: -18.5,16.5 - parent: 1 - type: Transform - - uid: 5650 - components: - - rot: 3.141592653589793 rad - pos: -18.5,15.5 - parent: 1 - type: Transform - - uid: 5651 - components: - - rot: 3.141592653589793 rad - pos: -19.5,16.5 - parent: 1 - type: Transform - - uid: 5652 - components: - - rot: 3.141592653589793 rad - pos: -19.5,15.5 - parent: 1 - type: Transform - - uid: 5653 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-2.5 - parent: 1 - type: Transform - - uid: 5654 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-2.5 - parent: 1 - type: Transform - - uid: 5655 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-3.5 - parent: 1 - type: Transform - - uid: 5656 - components: - - rot: 3.141592653589793 rad - pos: -20.5,-2.5 - parent: 1 - type: Transform - - uid: 5657 - components: - - rot: 3.141592653589793 rad - pos: -20.5,-3.5 - parent: 1 - type: Transform -- proto: CarpetGreen - entities: - - uid: 3833 - components: - - pos: -2.5,10.5 - parent: 1 - type: Transform - - uid: 5023 - components: - - pos: -1.5,10.5 - parent: 1 - type: Transform - - uid: 5025 - components: - - pos: -1.5,11.5 - parent: 1 - type: Transform - - uid: 9019 - components: - - pos: -37.5,-2.5 - parent: 1 - type: Transform - - uid: 9020 - components: - - pos: -37.5,-3.5 - parent: 1 - type: Transform - - uid: 9021 - components: - - pos: -40.5,-6.5 - parent: 1 - type: Transform - - uid: 9022 - components: - - pos: -40.5,-5.5 - parent: 1 - type: Transform - - uid: 9023 - components: - - pos: -36.5,-2.5 - parent: 1 - type: Transform - - uid: 9024 - components: - - pos: -36.5,-3.5 - parent: 1 - type: Transform - - uid: 9025 - components: - - pos: -38.5,-5.5 - parent: 1 - type: Transform - - uid: 9026 - components: - - pos: -38.5,-4.5 - parent: 1 - type: Transform - - uid: 9027 - components: - - pos: -38.5,-6.5 - parent: 1 - type: Transform - - uid: 9028 - components: - - pos: -37.5,-5.5 - parent: 1 - type: Transform - - uid: 9029 - components: - - pos: -36.5,-5.5 - parent: 1 - type: Transform - - uid: 9030 - components: - - pos: -39.5,-7.5 - parent: 1 - type: Transform - - uid: 9031 - components: - - pos: -38.5,-7.5 - parent: 1 - type: Transform - - uid: 9032 - components: - - pos: -37.5,-4.5 - parent: 1 - type: Transform - - uid: 9033 - components: - - pos: -36.5,-4.5 - parent: 1 - type: Transform - - uid: 9034 - components: - - pos: -39.5,-6.5 - parent: 1 - type: Transform - - uid: 9035 - components: - - pos: -40.5,-7.5 - parent: 1 - type: Transform - - uid: 9036 - components: - - pos: -39.5,-4.5 - parent: 1 - type: Transform - - uid: 9037 - components: - - pos: -39.5,-5.5 - parent: 1 - type: Transform - - uid: 9038 - components: - - pos: -40.5,-4.5 - parent: 1 - type: Transform - - uid: 9039 - components: - - pos: -41.5,-4.5 - parent: 1 - type: Transform - - uid: 9040 - components: - - pos: -41.5,-5.5 - parent: 1 - type: Transform - - uid: 9041 - components: - - pos: -41.5,-6.5 - parent: 1 - type: Transform - - uid: 9042 - components: - - pos: -41.5,-7.5 - parent: 1 - type: Transform -- proto: CarpetOrange - entities: - - uid: 5658 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-14.5 - parent: 1 - type: Transform - - uid: 5659 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-15.5 - parent: 1 - type: Transform - - uid: 5660 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-14.5 - parent: 1 - type: Transform - - uid: 5661 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-15.5 - parent: 1 - type: Transform - - uid: 12419 - components: - - pos: 4.5,-17.5 - parent: 1 - type: Transform - - uid: 12420 - components: - - pos: 4.5,-16.5 - parent: 1 - type: Transform - - uid: 12421 - components: - - pos: 5.5,-17.5 - parent: 1 - type: Transform - - uid: 12422 - components: - - pos: 5.5,-16.5 - parent: 1 - type: Transform -- proto: CarpetPurple - entities: - - uid: 5018 - components: - - pos: 4.5,11.5 - parent: 1 - type: Transform - - uid: 5019 - components: - - pos: 4.5,10.5 - parent: 1 - type: Transform - - uid: 5020 - components: - - pos: 5.5,10.5 - parent: 1 - type: Transform -- proto: CarpetSBlue - entities: - - uid: 5639 - components: - - rot: 3.141592653589793 rad - pos: 3.5,30.5 - parent: 1 - type: Transform - - uid: 5640 - components: - - rot: 3.141592653589793 rad - pos: 3.5,31.5 - parent: 1 - type: Transform - - uid: 5641 - components: - - rot: 3.141592653589793 rad - pos: 4.5,31.5 - parent: 1 - type: Transform - - uid: 5642 - components: - - rot: 3.141592653589793 rad - pos: 5.5,31.5 - parent: 1 - type: Transform - - uid: 5643 - components: - - rot: 3.141592653589793 rad - pos: 4.5,30.5 - parent: 1 - type: Transform - - uid: 5644 - components: - - rot: 3.141592653589793 rad - pos: 5.5,30.5 - parent: 1 - type: Transform -- proto: Catwalk - entities: - - uid: 1100 - components: - - pos: 22.5,-15.5 - parent: 1 - type: Transform - - uid: 1106 - components: - - pos: 22.5,-14.5 - parent: 1 - type: Transform - - uid: 1115 - components: - - pos: 22.5,-13.5 - parent: 1 - type: Transform - - uid: 1120 - components: - - pos: 23.5,-15.5 - parent: 1 - type: Transform - - uid: 1121 - components: - - pos: 24.5,-15.5 - parent: 1 - type: Transform - - uid: 1122 - components: - - pos: 25.5,-15.5 - parent: 1 - type: Transform - - uid: 1123 - components: - - pos: 26.5,-15.5 - parent: 1 - type: Transform - - uid: 1124 - components: - - pos: 26.5,-14.5 - parent: 1 - type: Transform - - uid: 1125 - components: - - pos: 26.5,-13.5 - parent: 1 - type: Transform - - uid: 1126 - components: - - pos: 25.5,-13.5 - parent: 1 - type: Transform - - uid: 1127 - components: - - pos: 24.5,-13.5 - parent: 1 - type: Transform - - uid: 1128 - components: - - pos: 23.5,-13.5 - parent: 1 - type: Transform - - uid: 1133 - components: - - pos: 27.5,-7.5 - parent: 1 - type: Transform - - uid: 1973 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-58.5 - parent: 1 - type: Transform - - uid: 2446 - components: - - pos: -35.5,-25.5 - parent: 1 - type: Transform - - uid: 2447 - components: - - pos: -34.5,-25.5 - parent: 1 - type: Transform - - uid: 2448 - components: - - pos: -33.5,-25.5 - parent: 1 - type: Transform - - uid: 2450 - components: - - pos: -31.5,-25.5 - parent: 1 - type: Transform - - uid: 2451 - components: - - pos: -31.5,-26.5 - parent: 1 - type: Transform - - uid: 2452 - components: - - pos: -31.5,-27.5 - parent: 1 - type: Transform - - uid: 2453 - components: - - pos: -31.5,-28.5 - parent: 1 - type: Transform - - uid: 2454 - components: - - pos: -31.5,-29.5 - parent: 1 - type: Transform - - uid: 2455 - components: - - pos: -31.5,-30.5 - parent: 1 - type: Transform - - uid: 2456 - components: - - pos: -31.5,-31.5 - parent: 1 - type: Transform - - uid: 2457 - components: - - pos: -31.5,-32.5 - parent: 1 - type: Transform - - uid: 2458 - components: - - pos: -31.5,-33.5 - parent: 1 - type: Transform - - uid: 2459 - components: - - pos: -31.5,-34.5 - parent: 1 - type: Transform - - uid: 2460 - components: - - pos: -32.5,-29.5 - parent: 1 - type: Transform - - uid: 2461 - components: - - pos: -33.5,-29.5 - parent: 1 - type: Transform - - uid: 2462 - components: - - pos: -34.5,-29.5 - parent: 1 - type: Transform - - uid: 2463 - components: - - pos: -30.5,-29.5 - parent: 1 - type: Transform - - uid: 2464 - components: - - pos: -29.5,-29.5 - parent: 1 - type: Transform - - uid: 2465 - components: - - pos: -28.5,-29.5 - parent: 1 - type: Transform - - uid: 2466 - components: - - pos: -32.5,-33.5 - parent: 1 - type: Transform - - uid: 2467 - components: - - pos: -33.5,-33.5 - parent: 1 - type: Transform - - uid: 2468 - components: - - pos: -34.5,-33.5 - parent: 1 - type: Transform - - uid: 2469 - components: - - pos: -30.5,-33.5 - parent: 1 - type: Transform - - uid: 2470 - components: - - pos: -29.5,-33.5 - parent: 1 - type: Transform - - uid: 2471 - components: - - pos: -28.5,-33.5 - parent: 1 - type: Transform - - uid: 2523 - components: - - pos: -31.5,-35.5 - parent: 1 - type: Transform - - uid: 2537 - components: - - pos: -32.5,-25.5 - parent: 1 - type: Transform - - uid: 2591 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,32.5 - parent: 1 - type: Transform - - uid: 2592 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,32.5 - parent: 1 - type: Transform - - uid: 2593 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,32.5 - parent: 1 - type: Transform - - uid: 2594 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,33.5 - parent: 1 - type: Transform - - uid: 2595 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,34.5 - parent: 1 - type: Transform - - uid: 2596 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,35.5 - parent: 1 - type: Transform - - uid: 2597 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,36.5 - parent: 1 - type: Transform - - uid: 2598 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,37.5 - parent: 1 - type: Transform - - uid: 2599 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,38.5 - parent: 1 - type: Transform - - uid: 2600 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,39.5 - parent: 1 - type: Transform - - uid: 2601 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,40.5 - parent: 1 - type: Transform - - uid: 2602 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,41.5 - parent: 1 - type: Transform - - uid: 2603 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,39.5 - parent: 1 - type: Transform - - uid: 2604 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,39.5 - parent: 1 - type: Transform - - uid: 2605 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,39.5 - parent: 1 - type: Transform - - uid: 2606 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,39.5 - parent: 1 - type: Transform - - uid: 2607 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,39.5 - parent: 1 - type: Transform - - uid: 2608 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,39.5 - parent: 1 - type: Transform - - uid: 2609 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,39.5 - parent: 1 - type: Transform - - uid: 2610 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,39.5 - parent: 1 - type: Transform - - uid: 2611 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,35.5 - parent: 1 - type: Transform - - uid: 2612 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,35.5 - parent: 1 - type: Transform - - uid: 2613 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,35.5 - parent: 1 - type: Transform - - uid: 2614 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,35.5 - parent: 1 - type: Transform - - uid: 2615 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,35.5 - parent: 1 - type: Transform - - uid: 2616 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,35.5 - parent: 1 - type: Transform - - uid: 2617 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,35.5 - parent: 1 - type: Transform - - uid: 2618 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,35.5 - parent: 1 - type: Transform - - uid: 2790 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-58.5 - parent: 1 - type: Transform - - uid: 2837 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-58.5 - parent: 1 - type: Transform - - uid: 2840 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-58.5 - parent: 1 - type: Transform - - uid: 2841 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-58.5 - parent: 1 - type: Transform - - uid: 2842 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-57.5 - parent: 1 - type: Transform - - uid: 2843 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-59.5 - parent: 1 - type: Transform - - uid: 2844 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-56.5 - parent: 1 - type: Transform - - uid: 2845 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-55.5 - parent: 1 - type: Transform - - uid: 2980 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-32.5 - parent: 1 - type: Transform - - uid: 3804 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,34.5 - parent: 1 - type: Transform - - uid: 3850 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,42.5 - parent: 1 - type: Transform - - uid: 3851 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,41.5 - parent: 1 - type: Transform - - uid: 3852 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,40.5 - parent: 1 - type: Transform - - uid: 3853 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,40.5 - parent: 1 - type: Transform - - uid: 3854 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,39.5 - parent: 1 - type: Transform - - uid: 3855 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,39.5 - parent: 1 - type: Transform - - uid: 3856 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,38.5 - parent: 1 - type: Transform - - uid: 3857 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,37.5 - parent: 1 - type: Transform - - uid: 3858 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,37.5 - parent: 1 - type: Transform - - uid: 3859 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,36.5 - parent: 1 - type: Transform - - uid: 3860 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,35.5 - parent: 1 - type: Transform - - uid: 3861 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,34.5 - parent: 1 - type: Transform - - uid: 3862 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,34.5 - parent: 1 - type: Transform - - uid: 3863 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,33.5 - parent: 1 - type: Transform - - uid: 3864 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,42.5 - parent: 1 - type: Transform - - uid: 3865 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,41.5 - parent: 1 - type: Transform - - uid: 3866 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,41.5 - parent: 1 - type: Transform - - uid: 3867 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,40.5 - parent: 1 - type: Transform - - uid: 3868 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,39.5 - parent: 1 - type: Transform - - uid: 3869 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,39.5 - parent: 1 - type: Transform - - uid: 3870 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,38.5 - parent: 1 - type: Transform - - uid: 3871 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,37.5 - parent: 1 - type: Transform - - uid: 3872 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,37.5 - parent: 1 - type: Transform - - uid: 3873 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,36.5 - parent: 1 - type: Transform - - uid: 3874 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,35.5 - parent: 1 - type: Transform - - uid: 3875 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,35.5 - parent: 1 - type: Transform - - uid: 3876 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,34.5 - parent: 1 - type: Transform - - uid: 3877 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,34.5 - parent: 1 - type: Transform - - uid: 3878 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,34.5 - parent: 1 - type: Transform - - uid: 3879 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,34.5 - parent: 1 - type: Transform - - uid: 3880 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,35.5 - parent: 1 - type: Transform - - uid: 3881 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,35.5 - parent: 1 - type: Transform - - uid: 3882 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,35.5 - parent: 1 - type: Transform - - uid: 3883 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,35.5 - parent: 1 - type: Transform - - uid: 3884 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,35.5 - parent: 1 - type: Transform - - uid: 3885 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,35.5 - parent: 1 - type: Transform - - uid: 3886 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,41.5 - parent: 1 - type: Transform - - uid: 3887 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,41.5 - parent: 1 - type: Transform - - uid: 3888 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,41.5 - parent: 1 - type: Transform - - uid: 3889 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,41.5 - parent: 1 - type: Transform - - uid: 3890 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,41.5 - parent: 1 - type: Transform - - uid: 3891 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,34.5 - parent: 1 - type: Transform - - uid: 3892 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,34.5 - parent: 1 - type: Transform - - uid: 3893 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,34.5 - parent: 1 - type: Transform - - uid: 3894 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,34.5 - parent: 1 - type: Transform - - uid: 3895 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,34.5 - parent: 1 - type: Transform - - uid: 3896 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,34.5 - parent: 1 - type: Transform - - uid: 3897 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,33.5 - parent: 1 - type: Transform - - uid: 3899 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,34.5 - parent: 1 - type: Transform - - uid: 3900 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,34.5 - parent: 1 - type: Transform - - uid: 3901 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,34.5 - parent: 1 - type: Transform - - uid: 3902 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,34.5 - parent: 1 - type: Transform - - uid: 3903 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,33.5 - parent: 1 - type: Transform - - uid: 3904 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,32.5 - parent: 1 - type: Transform - - uid: 3905 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,32.5 - parent: 1 - type: Transform - - uid: 3906 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,32.5 - parent: 1 - type: Transform - - uid: 3907 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,32.5 - parent: 1 - type: Transform - - uid: 3908 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,32.5 - parent: 1 - type: Transform - - uid: 3909 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,32.5 - parent: 1 - type: Transform - - uid: 3931 - components: - - pos: -13.5,33.5 - parent: 1 - type: Transform - - uid: 3940 - components: - - pos: -6.5,42.5 - parent: 1 - type: Transform - - uid: 5841 - components: - - pos: -16.5,-46.5 - parent: 1 - type: Transform - - uid: 5843 - components: - - pos: -16.5,-45.5 - parent: 1 - type: Transform - - uid: 5844 - components: - - pos: -16.5,-44.5 - parent: 1 - type: Transform - - uid: 5845 - components: - - pos: -16.5,-43.5 - parent: 1 - type: Transform - - uid: 5846 - components: - - pos: -16.5,-42.5 - parent: 1 - type: Transform - - uid: 5847 - components: - - pos: -16.5,-41.5 - parent: 1 - type: Transform - - uid: 5848 - components: - - pos: -16.5,-40.5 - parent: 1 - type: Transform - - uid: 5849 - components: - - pos: -16.5,-39.5 - parent: 1 - type: Transform - - uid: 5850 - components: - - pos: -16.5,-38.5 - parent: 1 - type: Transform - - uid: 5851 - components: - - pos: -16.5,-37.5 - parent: 1 - type: Transform - - uid: 5852 - components: - - pos: -16.5,-36.5 - parent: 1 - type: Transform - - uid: 5853 - components: - - pos: -16.5,-35.5 - parent: 1 - type: Transform - - uid: 5854 - components: - - pos: -16.5,-34.5 - parent: 1 - type: Transform - - uid: 5855 - components: - - pos: -16.5,-33.5 - parent: 1 - type: Transform - - uid: 5857 - components: - - pos: -17.5,-32.5 - parent: 1 - type: Transform - - uid: 7005 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-2.5 - parent: 1 - type: Transform - - uid: 7006 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-3.5 - parent: 1 - type: Transform - - uid: 7007 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-4.5 - parent: 1 - type: Transform - - uid: 7008 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-2.5 - parent: 1 - type: Transform - - uid: 7009 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-3.5 - parent: 1 - type: Transform - - uid: 7010 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-4.5 - parent: 1 - type: Transform - - uid: 7011 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-2.5 - parent: 1 - type: Transform - - uid: 7012 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-3.5 - parent: 1 - type: Transform - - uid: 7013 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-4.5 - parent: 1 - type: Transform - - uid: 7014 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-2.5 - parent: 1 - type: Transform - - uid: 7015 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-3.5 - parent: 1 - type: Transform - - uid: 7016 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-4.5 - parent: 1 - type: Transform - - uid: 7023 - components: - - pos: 31.5,-20.5 - parent: 1 - type: Transform - - uid: 7024 - components: - - pos: 32.5,-20.5 - parent: 1 - type: Transform - - uid: 7025 - components: - - pos: 33.5,-20.5 - parent: 1 - type: Transform - - uid: 7026 - components: - - pos: 34.5,-20.5 - parent: 1 - type: Transform - - uid: 7027 - components: - - pos: 35.5,-20.5 - parent: 1 - type: Transform - - uid: 7028 - components: - - pos: 36.5,-20.5 - parent: 1 - type: Transform - - uid: 7029 - components: - - pos: 37.5,-20.5 - parent: 1 - type: Transform - - uid: 7030 - components: - - pos: 38.5,-20.5 - parent: 1 - type: Transform - - uid: 7031 - components: - - pos: 32.5,-21.5 - parent: 1 - type: Transform - - uid: 7032 - components: - - pos: 32.5,-22.5 - parent: 1 - type: Transform - - uid: 7033 - components: - - pos: 32.5,-23.5 - parent: 1 - type: Transform - - uid: 7034 - components: - - pos: 32.5,-24.5 - parent: 1 - type: Transform - - uid: 7035 - components: - - pos: 32.5,-25.5 - parent: 1 - type: Transform - - uid: 7036 - components: - - pos: 33.5,-25.5 - parent: 1 - type: Transform - - uid: 7037 - components: - - pos: 34.5,-25.5 - parent: 1 - type: Transform - - uid: 7038 - components: - - pos: 35.5,-25.5 - parent: 1 - type: Transform - - uid: 7039 - components: - - pos: 36.5,-25.5 - parent: 1 - type: Transform - - uid: 7040 - components: - - pos: 37.5,-25.5 - parent: 1 - type: Transform - - uid: 7041 - components: - - pos: 38.5,-25.5 - parent: 1 - type: Transform - - uid: 7042 - components: - - pos: 38.5,-24.5 - parent: 1 - type: Transform - - uid: 7043 - components: - - pos: 38.5,-23.5 - parent: 1 - type: Transform - - uid: 7044 - components: - - pos: 38.5,-22.5 - parent: 1 - type: Transform - - uid: 7045 - components: - - pos: 38.5,-21.5 - parent: 1 - type: Transform - - uid: 7046 - components: - - pos: 39.5,-20.5 - parent: 1 - type: Transform - - uid: 7047 - components: - - pos: 40.5,-20.5 - parent: 1 - type: Transform - - uid: 7048 - components: - - pos: 41.5,-20.5 - parent: 1 - type: Transform - - uid: 7049 - components: - - pos: 41.5,-19.5 - parent: 1 - type: Transform - - uid: 7065 - components: - - pos: 41.5,-3.5 - parent: 1 - type: Transform - - uid: 7455 - components: - - pos: 24.5,-26.5 - parent: 1 - type: Transform - - uid: 7456 - components: - - pos: 24.5,-27.5 - parent: 1 - type: Transform - - uid: 7457 - components: - - pos: 25.5,-26.5 - parent: 1 - type: Transform - - uid: 7458 - components: - - pos: 25.5,-27.5 - parent: 1 - type: Transform - - uid: 7459 - components: - - pos: 26.5,-26.5 - parent: 1 - type: Transform - - uid: 7460 - components: - - pos: 26.5,-27.5 - parent: 1 - type: Transform - - uid: 8937 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-12.5 - parent: 1 - type: Transform - - uid: 8938 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-12.5 - parent: 1 - type: Transform - - uid: 8939 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-13.5 - parent: 1 - type: Transform - - uid: 8940 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-15.5 - parent: 1 - type: Transform - - uid: 8941 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-16.5 - parent: 1 - type: Transform - - uid: 8942 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-18.5 - parent: 1 - type: Transform - - uid: 8943 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-19.5 - parent: 1 - type: Transform - - uid: 8944 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-20.5 - parent: 1 - type: Transform - - uid: 8945 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-20.5 - parent: 1 - type: Transform - - uid: 8946 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-19.5 - parent: 1 - type: Transform - - uid: 8947 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-20.5 - parent: 1 - type: Transform - - uid: 8948 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-20.5 - parent: 1 - type: Transform - - uid: 8949 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-19.5 - parent: 1 - type: Transform - - uid: 8950 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-20.5 - parent: 1 - type: Transform - - uid: 8951 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-19.5 - parent: 1 - type: Transform - - uid: 8952 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-21.5 - parent: 1 - type: Transform - - uid: 8953 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-21.5 - parent: 1 - type: Transform - - uid: 8954 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-22.5 - parent: 1 - type: Transform - - uid: 8955 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-22.5 - parent: 1 - type: Transform - - uid: 8956 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-22.5 - parent: 1 - type: Transform - - uid: 8957 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-21.5 - parent: 1 - type: Transform - - uid: 8958 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-17.5 - parent: 1 - type: Transform - - uid: 8959 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-17.5 - parent: 1 - type: Transform - - uid: 8960 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-16.5 - parent: 1 - type: Transform - - uid: 8961 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-15.5 - parent: 1 - type: Transform - - uid: 8962 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-17.5 - parent: 1 - type: Transform - - uid: 8963 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-12.5 - parent: 1 - type: Transform - - uid: 8964 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-13.5 - parent: 1 - type: Transform - - uid: 8965 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-14.5 - parent: 1 - type: Transform - - uid: 8966 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-10.5 - parent: 1 - type: Transform - - uid: 8967 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-10.5 - parent: 1 - type: Transform - - uid: 8968 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-9.5 - parent: 1 - type: Transform - - uid: 8969 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-9.5 - parent: 1 - type: Transform - - uid: 8970 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-10.5 - parent: 1 - type: Transform - - uid: 8971 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-10.5 - parent: 1 - type: Transform - - uid: 8972 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-10.5 - parent: 1 - type: Transform - - uid: 8973 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-11.5 - parent: 1 - type: Transform - - uid: 8974 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-12.5 - parent: 1 - type: Transform - - uid: 8975 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-13.5 - parent: 1 - type: Transform - - uid: 8976 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-12.5 - parent: 1 - type: Transform - - uid: 8977 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-8.5 - parent: 1 - type: Transform - - uid: 8978 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-7.5 - parent: 1 - type: Transform - - uid: 8979 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-5.5 - parent: 1 - type: Transform - - uid: 8980 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-4.5 - parent: 1 - type: Transform - - uid: 8981 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-3.5 - parent: 1 - type: Transform - - uid: 8982 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-1.5 - parent: 1 - type: Transform - - uid: 8983 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-1.5 - parent: 1 - type: Transform - - uid: 8984 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-2.5 - parent: 1 - type: Transform - - uid: 8985 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-9.5 - parent: 1 - type: Transform - - uid: 8986 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-21.5 - parent: 1 - type: Transform - - uid: 8987 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-20.5 - parent: 1 - type: Transform - - uid: 8988 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-22.5 - parent: 1 - type: Transform - - uid: 8989 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-21.5 - parent: 1 - type: Transform - - uid: 8990 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-21.5 - parent: 1 - type: Transform - - uid: 8991 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-20.5 - parent: 1 - type: Transform - - uid: 8992 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-22.5 - parent: 1 - type: Transform - - uid: 8993 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-21.5 - parent: 1 - type: Transform - - uid: 8994 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-22.5 - parent: 1 - type: Transform - - uid: 8995 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-21.5 - parent: 1 - type: Transform - - uid: 8996 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-20.5 - parent: 1 - type: Transform - - uid: 8997 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-18.5 - parent: 1 - type: Transform - - uid: 8998 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-18.5 - parent: 1 - type: Transform - - uid: 8999 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-17.5 - parent: 1 - type: Transform - - uid: 9000 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-18.5 - parent: 1 - type: Transform - - uid: 9001 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-18.5 - parent: 1 - type: Transform - - uid: 9002 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-17.5 - parent: 1 - type: Transform - - uid: 9003 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-18.5 - parent: 1 - type: Transform - - uid: 9004 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-17.5 - parent: 1 - type: Transform - - uid: 9005 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-18.5 - parent: 1 - type: Transform - - uid: 9006 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-25.5 - parent: 1 - type: Transform - - uid: 9007 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-18.5 - parent: 1 - type: Transform - - uid: 9008 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-16.5 - parent: 1 - type: Transform - - uid: 9009 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-14.5 - parent: 1 - type: Transform - - uid: 9010 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-13.5 - parent: 1 - type: Transform - - uid: 9011 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-11.5 - parent: 1 - type: Transform - - uid: 9012 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-25.5 - parent: 1 - type: Transform - - uid: 9013 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-26.5 - parent: 1 - type: Transform - - uid: 9071 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-11.5 - parent: 1 - type: Transform - - uid: 9072 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-11.5 - parent: 1 - type: Transform - - uid: 9073 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-12.5 - parent: 1 - type: Transform - - uid: 9074 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-13.5 - parent: 1 - type: Transform - - uid: 9075 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-14.5 - parent: 1 - type: Transform - - uid: 9076 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-12.5 - parent: 1 - type: Transform - - uid: 9077 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-11.5 - parent: 1 - type: Transform - - uid: 9078 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-15.5 - parent: 1 - type: Transform - - uid: 9079 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-15.5 - parent: 1 - type: Transform - - uid: 9080 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-14.5 - parent: 1 - type: Transform - - uid: 9081 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-16.5 - parent: 1 - type: Transform - - uid: 9082 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-17.5 - parent: 1 - type: Transform - - uid: 9083 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-18.5 - parent: 1 - type: Transform - - uid: 9084 - components: - - rot: 3.141592653589793 rad - pos: 20.5,-17.5 - parent: 1 - type: Transform - - uid: 9085 - components: - - rot: 3.141592653589793 rad - pos: 21.5,-17.5 - parent: 1 - type: Transform - - uid: 9086 - components: - - rot: 3.141592653589793 rad - pos: 19.5,-18.5 - parent: 1 - type: Transform - - uid: 9087 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-17.5 - parent: 1 - type: Transform - - uid: 9088 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-18.5 - parent: 1 - type: Transform - - uid: 9089 - components: - - rot: 3.141592653589793 rad - pos: 25.5,-18.5 - parent: 1 - type: Transform - - uid: 9090 - components: - - rot: 3.141592653589793 rad - pos: 28.5,-17.5 - parent: 1 - type: Transform - - uid: 9091 - components: - - rot: 3.141592653589793 rad - pos: 28.5,-15.5 - parent: 1 - type: Transform - - uid: 9092 - components: - - rot: 3.141592653589793 rad - pos: 28.5,-13.5 - parent: 1 - type: Transform - - uid: 9093 - components: - - rot: 3.141592653589793 rad - pos: 29.5,-14.5 - parent: 1 - type: Transform - - uid: 9094 - components: - - rot: 3.141592653589793 rad - pos: 28.5,-14.5 - parent: 1 - type: Transform - - uid: 9095 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-13.5 - parent: 1 - type: Transform - - uid: 9096 - components: - - rot: 3.141592653589793 rad - pos: 31.5,-14.5 - parent: 1 - type: Transform - - uid: 9097 - components: - - rot: 3.141592653589793 rad - pos: 31.5,-7.5 - parent: 1 - type: Transform - - uid: 9098 - components: - - rot: 3.141592653589793 rad - pos: 32.5,-5.5 - parent: 1 - type: Transform - - uid: 9099 - components: - - rot: 3.141592653589793 rad - pos: 32.5,-6.5 - parent: 1 - type: Transform - - uid: 9100 - components: - - rot: 3.141592653589793 rad - pos: 31.5,-3.5 - parent: 1 - type: Transform - - uid: 9101 - components: - - rot: 3.141592653589793 rad - pos: 31.5,-1.5 - parent: 1 - type: Transform - - uid: 9102 - components: - - rot: 3.141592653589793 rad - pos: 33.5,-0.5 - parent: 1 - type: Transform - - uid: 9103 - components: - - rot: 3.141592653589793 rad - pos: 29.5,-1.5 - parent: 1 - type: Transform - - uid: 9104 - components: - - rot: 3.141592653589793 rad - pos: 25.5,-1.5 - parent: 1 - type: Transform - - uid: 9105 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-1.5 - parent: 1 - type: Transform - - uid: 9106 - components: - - rot: 3.141592653589793 rad - pos: 22.5,-0.5 - parent: 1 - type: Transform - - uid: 9107 - components: - - rot: 3.141592653589793 rad - pos: 22.5,-0.5 - parent: 1 - type: Transform - - uid: 9108 - components: - - rot: 3.141592653589793 rad - pos: 21.5,-0.5 - parent: 1 - type: Transform - - uid: 9109 - components: - - rot: 3.141592653589793 rad - pos: 18.5,-1.5 - parent: 1 - type: Transform - - uid: 9111 - components: - - rot: 3.141592653589793 rad - pos: 19.5,-1.5 - parent: 1 - type: Transform - - uid: 9112 - components: - - rot: 3.141592653589793 rad - pos: 28.5,-0.5 - parent: 1 - type: Transform - - uid: 9113 - components: - - rot: 3.141592653589793 rad - pos: 29.5,-0.5 - parent: 1 - type: Transform - - uid: 9114 - components: - - rot: 3.141592653589793 rad - pos: 37.5,-0.5 - parent: 1 - type: Transform - - uid: 9115 - components: - - rot: 3.141592653589793 rad - pos: 40.5,-0.5 - parent: 1 - type: Transform - - uid: 9116 - components: - - rot: 3.141592653589793 rad - pos: 42.5,-0.5 - parent: 1 - type: Transform - - uid: 9117 - components: - - rot: 3.141592653589793 rad - pos: 39.5,-0.5 - parent: 1 - type: Transform - - uid: 9118 - components: - - rot: 3.141592653589793 rad - pos: 42.5,-1.5 - parent: 1 - type: Transform - - uid: 9119 - components: - - rot: 3.141592653589793 rad - pos: 44.5,-0.5 - parent: 1 - type: Transform - - uid: 9120 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-0.5 - parent: 1 - type: Transform - - uid: 9121 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-0.5 - parent: 1 - type: Transform - - uid: 9122 - components: - - rot: 3.141592653589793 rad - pos: 25.5,-20.5 - parent: 1 - type: Transform - - uid: 9123 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-21.5 - parent: 1 - type: Transform - - uid: 9184 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,15.5 - parent: 1 - type: Transform - - uid: 9332 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,42.5 - parent: 1 - type: Transform - - uid: 9384 - components: - - rot: 3.141592653589793 rad - pos: 23.5,21.5 - parent: 1 - type: Transform - - uid: 9386 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,19.5 - parent: 1 - type: Transform - - uid: 9387 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,21.5 - parent: 1 - type: Transform - - uid: 9388 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,22.5 - parent: 1 - type: Transform - - uid: 9389 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,23.5 - parent: 1 - type: Transform - - uid: 9390 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,24.5 - parent: 1 - type: Transform - - uid: 9391 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,26.5 - parent: 1 - type: Transform - - uid: 9392 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,26.5 - parent: 1 - type: Transform - - uid: 9393 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,28.5 - parent: 1 - type: Transform - - uid: 9394 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,28.5 - parent: 1 - type: Transform - - uid: 9395 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,30.5 - parent: 1 - type: Transform - - uid: 9396 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,29.5 - parent: 1 - type: Transform - - uid: 9397 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,30.5 - parent: 1 - type: Transform - - uid: 9398 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,29.5 - parent: 1 - type: Transform - - uid: 9399 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,29.5 - parent: 1 - type: Transform - - uid: 9400 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,30.5 - parent: 1 - type: Transform - - uid: 9401 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,33.5 - parent: 1 - type: Transform - - uid: 9402 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,33.5 - parent: 1 - type: Transform - - uid: 9403 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,32.5 - parent: 1 - type: Transform - - uid: 9404 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,29.5 - parent: 1 - type: Transform - - uid: 9405 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,32.5 - parent: 1 - type: Transform - - uid: 9406 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,33.5 - parent: 1 - type: Transform - - uid: 9407 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,33.5 - parent: 1 - type: Transform - - uid: 9408 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,33.5 - parent: 1 - type: Transform - - uid: 9409 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,30.5 - parent: 1 - type: Transform - - uid: 9410 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,30.5 - parent: 1 - type: Transform - - uid: 9411 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,28.5 - parent: 1 - type: Transform - - uid: 9412 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,27.5 - parent: 1 - type: Transform - - uid: 9413 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,25.5 - parent: 1 - type: Transform - - uid: 9414 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,24.5 - parent: 1 - type: Transform - - uid: 9415 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,22.5 - parent: 1 - type: Transform - - uid: 9416 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,20.5 - parent: 1 - type: Transform - - uid: 9417 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,19.5 - parent: 1 - type: Transform - - uid: 9418 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,18.5 - parent: 1 - type: Transform - - uid: 9419 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,18.5 - parent: 1 - type: Transform - - uid: 9420 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,18.5 - parent: 1 - type: Transform - - uid: 9421 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,17.5 - parent: 1 - type: Transform - - uid: 9422 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,17.5 - parent: 1 - type: Transform - - uid: 9423 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,18.5 - parent: 1 - type: Transform - - uid: 9424 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,17.5 - parent: 1 - type: Transform - - uid: 9425 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,18.5 - parent: 1 - type: Transform - - uid: 9426 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,18.5 - parent: 1 - type: Transform - - uid: 9427 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,18.5 - parent: 1 - type: Transform - - uid: 9428 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,20.5 - parent: 1 - type: Transform - - uid: 9429 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,21.5 - parent: 1 - type: Transform - - uid: 9430 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,21.5 - parent: 1 - type: Transform - - uid: 9431 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,20.5 - parent: 1 - type: Transform - - uid: 9432 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,21.5 - parent: 1 - type: Transform - - uid: 9433 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,32.5 - parent: 1 - type: Transform - - uid: 9434 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,33.5 - parent: 1 - type: Transform - - uid: 9435 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,35.5 - parent: 1 - type: Transform - - uid: 9436 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,34.5 - parent: 1 - type: Transform - - uid: 9437 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,34.5 - parent: 1 - type: Transform - - uid: 9438 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,34.5 - parent: 1 - type: Transform - - uid: 9439 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,35.5 - parent: 1 - type: Transform - - uid: 9440 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,33.5 - parent: 1 - type: Transform - - uid: 9441 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,33.5 - parent: 1 - type: Transform - - uid: 9442 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,32.5 - parent: 1 - type: Transform - - uid: 9443 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,34.5 - parent: 1 - type: Transform - - uid: 9444 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,29.5 - parent: 1 - type: Transform - - uid: 9445 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,28.5 - parent: 1 - type: Transform - - uid: 9446 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,27.5 - parent: 1 - type: Transform - - uid: 9447 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,25.5 - parent: 1 - type: Transform - - uid: 9448 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,23.5 - parent: 1 - type: Transform - - uid: 9449 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,20.5 - parent: 1 - type: Transform - - uid: 9450 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,19.5 - parent: 1 - type: Transform - - uid: 9451 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,18.5 - parent: 1 - type: Transform - - uid: 9452 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,16.5 - parent: 1 - type: Transform - - uid: 9453 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,17.5 - parent: 1 - type: Transform - - uid: 9454 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,17.5 - parent: 1 - type: Transform - - uid: 9455 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,13.5 - parent: 1 - type: Transform - - uid: 9456 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,11.5 - parent: 1 - type: Transform - - uid: 9457 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,10.5 - parent: 1 - type: Transform - - uid: 9458 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,15.5 - parent: 1 - type: Transform - - uid: 9459 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,8.5 - parent: 1 - type: Transform - - uid: 9460 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,7.5 - parent: 1 - type: Transform - - uid: 9461 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,6.5 - parent: 1 - type: Transform - - uid: 9462 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,6.5 - parent: 1 - type: Transform - - uid: 9463 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,6.5 - parent: 1 - type: Transform - - uid: 9464 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,7.5 - parent: 1 - type: Transform - - uid: 9465 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,5.5 - parent: 1 - type: Transform - - uid: 9466 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,7.5 - parent: 1 - type: Transform - - uid: 9467 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,6.5 - parent: 1 - type: Transform - - uid: 9468 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,6.5 - parent: 1 - type: Transform - - uid: 9469 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,5.5 - parent: 1 - type: Transform - - uid: 9741 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,16.5 - parent: 1 - type: Transform - - uid: 9742 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,18.5 - parent: 1 - type: Transform - - uid: 9743 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,19.5 - parent: 1 - type: Transform - - uid: 9744 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,18.5 - parent: 1 - type: Transform - - uid: 9745 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,19.5 - parent: 1 - type: Transform - - uid: 9746 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,19.5 - parent: 1 - type: Transform - - uid: 9747 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,18.5 - parent: 1 - type: Transform - - uid: 9748 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,19.5 - parent: 1 - type: Transform - - uid: 9749 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,19.5 - parent: 1 - type: Transform - - uid: 9750 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,22.5 - parent: 1 - type: Transform - - uid: 9751 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,23.5 - parent: 1 - type: Transform - - uid: 9752 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,24.5 - parent: 1 - type: Transform - - uid: 9753 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,25.5 - parent: 1 - type: Transform - - uid: 9754 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,22.5 - parent: 1 - type: Transform - - uid: 9755 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,22.5 - parent: 1 - type: Transform - - uid: 9756 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,23.5 - parent: 1 - type: Transform - - uid: 9757 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,25.5 - parent: 1 - type: Transform - - uid: 9758 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,23.5 - parent: 1 - type: Transform - - uid: 9759 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,26.5 - parent: 1 - type: Transform - - uid: 9760 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,27.5 - parent: 1 - type: Transform - - uid: 9761 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,27.5 - parent: 1 - type: Transform - - uid: 9762 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,27.5 - parent: 1 - type: Transform - - uid: 9763 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,26.5 - parent: 1 - type: Transform - - uid: 9764 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,27.5 - parent: 1 - type: Transform - - uid: 9765 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,28.5 - parent: 1 - type: Transform - - uid: 9766 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,28.5 - parent: 1 - type: Transform - - uid: 9767 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,29.5 - parent: 1 - type: Transform - - uid: 9768 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,27.5 - parent: 1 - type: Transform - - uid: 9769 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,27.5 - parent: 1 - type: Transform - - uid: 9770 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,25.5 - parent: 1 - type: Transform - - uid: 9771 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,24.5 - parent: 1 - type: Transform - - uid: 9772 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,24.5 - parent: 1 - type: Transform - - uid: 9773 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,25.5 - parent: 1 - type: Transform - - uid: 9774 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,23.5 - parent: 1 - type: Transform - - uid: 9775 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,25.5 - parent: 1 - type: Transform - - uid: 9776 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,24.5 - parent: 1 - type: Transform - - uid: 9777 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,23.5 - parent: 1 - type: Transform - - uid: 9778 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,24.5 - parent: 1 - type: Transform - - uid: 9779 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,22.5 - parent: 1 - type: Transform - - uid: 9780 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,21.5 - parent: 1 - type: Transform - - uid: 9781 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,20.5 - parent: 1 - type: Transform - - uid: 9782 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,18.5 - parent: 1 - type: Transform - - uid: 9783 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,17.5 - parent: 1 - type: Transform - - uid: 9784 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,17.5 - parent: 1 - type: Transform - - uid: 9785 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,22.5 - parent: 1 - type: Transform - - uid: 9786 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,24.5 - parent: 1 - type: Transform - - uid: 9787 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,23.5 - parent: 1 - type: Transform - - uid: 9788 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,20.5 - parent: 1 - type: Transform - - uid: 9789 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,19.5 - parent: 1 - type: Transform - - uid: 9790 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,18.5 - parent: 1 - type: Transform - - uid: 9791 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,18.5 - parent: 1 - type: Transform - - uid: 9792 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,18.5 - parent: 1 - type: Transform - - uid: 9793 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,18.5 - parent: 1 - type: Transform - - uid: 9794 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,18.5 - parent: 1 - type: Transform - - uid: 9795 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,16.5 - parent: 1 - type: Transform - - uid: 9796 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,15.5 - parent: 1 - type: Transform - - uid: 9797 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,14.5 - parent: 1 - type: Transform - - uid: 9798 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,12.5 - parent: 1 - type: Transform - - uid: 9799 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,11.5 - parent: 1 - type: Transform - - uid: 9800 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,9.5 - parent: 1 - type: Transform - - uid: 9801 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,8.5 - parent: 1 - type: Transform - - uid: 9802 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,7.5 - parent: 1 - type: Transform - - uid: 9803 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,6.5 - parent: 1 - type: Transform - - uid: 9804 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,28.5 - parent: 1 - type: Transform - - uid: 9805 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,27.5 - parent: 1 - type: Transform - - uid: 10090 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-15.5 - parent: 1 - type: Transform - - uid: 12516 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-32.5 - parent: 1 - type: Transform -- proto: Cautery - entities: - - uid: 8244 - components: - - pos: -24.632475,20.505098 - parent: 1 - type: Transform - - uid: 9628 - components: - - pos: 16.576576,27.750107 - parent: 1 - type: Transform -- proto: Chair - entities: - - uid: 664 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-9.5 - parent: 1 - type: Transform - - uid: 665 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-8.5 - parent: 1 - type: Transform - - uid: 666 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-7.5 - parent: 1 - type: Transform - - uid: 1839 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-5.5 - parent: 1 - type: Transform - - uid: 1893 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,14.5 - parent: 1 - type: Transform - - uid: 1894 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,13.5 - parent: 1 - type: Transform - - uid: 1895 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,12.5 - parent: 1 - type: Transform - - uid: 1899 - components: - - rot: 3.141592653589793 rad - pos: -13.5,8.5 - parent: 1 - type: Transform - - uid: 1900 - components: - - rot: 3.141592653589793 rad - pos: -16.5,8.5 - parent: 1 - type: Transform - - uid: 1901 - components: - - rot: 3.141592653589793 rad - pos: -19.5,8.5 - parent: 1 - type: Transform - - uid: 3210 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,1.5 - parent: 1 - type: Transform - - uid: 3211 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,1.5 - parent: 1 - type: Transform - - uid: 3212 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,8.5 - parent: 1 - type: Transform - - uid: 3801 - components: - - pos: -1.5,16.5 - parent: 1 - type: Transform - - uid: 3802 - components: - - pos: -0.5,16.5 - parent: 1 - type: Transform - - uid: 3803 - components: - - pos: 0.5,16.5 - parent: 1 - type: Transform - - uid: 4845 - components: - - rot: 3.141592653589793 rad - pos: 39.5,27.5 - parent: 1 - type: Transform - - uid: 4846 - components: - - rot: 3.141592653589793 rad - pos: 40.5,27.5 - parent: 1 - type: Transform - - uid: 4847 - components: - - rot: 3.141592653589793 rad - pos: 41.5,27.5 - parent: 1 - type: Transform - - uid: 4848 - components: - - rot: 3.141592653589793 rad - pos: 44.5,27.5 - parent: 1 - type: Transform - - uid: 4849 - components: - - rot: 3.141592653589793 rad - pos: 45.5,27.5 - parent: 1 - type: Transform - - uid: 4850 - components: - - rot: 3.141592653589793 rad - pos: 46.5,27.5 - parent: 1 - type: Transform - - uid: 4851 - components: - - rot: 3.141592653589793 rad - pos: 41.5,25.5 - parent: 1 - type: Transform - - uid: 4852 - components: - - rot: 3.141592653589793 rad - pos: 42.5,25.5 - parent: 1 - type: Transform - - uid: 4853 - components: - - rot: 3.141592653589793 rad - pos: 43.5,25.5 - parent: 1 - type: Transform - - uid: 4854 - components: - - rot: 3.141592653589793 rad - pos: 44.5,25.5 - parent: 1 - type: Transform - - uid: 4910 - components: - - pos: 46.5,34.5 - parent: 1 - type: Transform - - uid: 5538 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,7.5 - parent: 1 - type: Transform - - uid: 5539 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,9.5 - parent: 1 - type: Transform - - uid: 5540 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,10.5 - parent: 1 - type: Transform - - uid: 5541 - components: - - rot: -1.5707963267948966 rad - pos: 46.5,17.5 - parent: 1 - type: Transform - - uid: 5542 - components: - - rot: -1.5707963267948966 rad - pos: 46.5,18.5 - parent: 1 - type: Transform - - uid: 5543 - components: - - rot: -1.5707963267948966 rad - pos: 46.5,19.5 - parent: 1 - type: Transform - - uid: 5544 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,16.5 - parent: 1 - type: Transform - - uid: 5545 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,17.5 - parent: 1 - type: Transform - - uid: 5546 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,18.5 - parent: 1 - type: Transform - - uid: 5549 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,3.5 - parent: 1 - type: Transform - - uid: 5550 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,3.5 - parent: 1 - type: Transform - - uid: 5559 - components: - - rot: -1.5707963267948966 rad - pos: 46.5,20.5 - parent: 1 - type: Transform - - uid: 5572 - components: - - pos: -39.5,-4.5 - parent: 1 - type: Transform - - uid: 7501 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-20.5 - parent: 1 - type: Transform - - uid: 7502 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-21.5 - parent: 1 - type: Transform - - uid: 7503 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-22.5 - parent: 1 - type: Transform - - uid: 7505 - components: - - pos: 2.5,-30.5 - parent: 1 - type: Transform - - uid: 7506 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-32.5 - parent: 1 - type: Transform - - uid: 7510 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,3.5 - parent: 1 - type: Transform - - uid: 7511 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,3.5 - parent: 1 - type: Transform - - uid: 7512 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,1.5 - parent: 1 - type: Transform - - uid: 7513 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,1.5 - parent: 1 - type: Transform - - uid: 7514 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,6.5 - parent: 1 - type: Transform - - uid: 7515 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,7.5 - parent: 1 - type: Transform - - uid: 7516 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,8.5 - parent: 1 - type: Transform - - uid: 7517 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,9.5 - parent: 1 - type: Transform - - uid: 7518 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,10.5 - parent: 1 - type: Transform - - uid: 7519 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,1.5 - parent: 1 - type: Transform - - uid: 7520 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,1.5 - parent: 1 - type: Transform - - uid: 7521 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,7.5 - parent: 1 - type: Transform - - uid: 7522 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,8.5 - parent: 1 - type: Transform - - uid: 7523 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,9.5 - parent: 1 - type: Transform - - uid: 8892 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-15.5 - parent: 1 - type: Transform - - uid: 8895 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-16.5 - parent: 1 - type: Transform - - uid: 8898 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-15.5 - parent: 1 - type: Transform - - uid: 8899 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-21.5 - parent: 1 - type: Transform - - uid: 9141 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-12.5 - parent: 1 - type: Transform - - uid: 9165 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-3.5 - parent: 1 - type: Transform - - uid: 9232 - components: - - rot: 3.141592653589793 rad - pos: 24.5,32.5 - parent: 1 - type: Transform - - uid: 9234 - components: - - rot: 3.141592653589793 rad - pos: 23.5,32.5 - parent: 1 - type: Transform - - uid: 9235 - components: - - rot: 3.141592653589793 rad - pos: 22.5,32.5 - parent: 1 - type: Transform - - uid: 9236 - components: - - rot: 3.141592653589793 rad - pos: 25.5,32.5 - parent: 1 - type: Transform - - uid: 9237 - components: - - pos: 27.5,35.5 - parent: 1 - type: Transform - - uid: 9238 - components: - - pos: 28.5,35.5 - parent: 1 - type: Transform - - uid: 9239 - components: - - pos: 29.5,35.5 - parent: 1 - type: Transform - - uid: 9316 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,23.5 - parent: 1 - type: Transform - - uid: 9361 - components: - - rot: 3.141592653589793 rad - pos: 18.5,17.5 - parent: 1 - type: Transform - - uid: 9362 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,22.5 - parent: 1 - type: Transform - - uid: 9367 - components: - - pos: 12.5,30.5 - parent: 1 - type: Transform - - uid: 9383 - components: - - rot: 3.141592653589793 rad - pos: 23.5,20.5 - parent: 1 - type: Transform - - uid: 9528 - components: - - pos: 4.5,-7.5 - parent: 1 - type: Transform - - uid: 9529 - components: - - pos: 5.5,-7.5 - parent: 1 - type: Transform - - uid: 9540 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,7.5 - parent: 1 - type: Transform - - uid: 9701 - components: - - rot: 3.141592653589793 rad - pos: -35.5,18.5 - parent: 1 - type: Transform - - uid: 9705 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,21.5 - parent: 1 - type: Transform - - uid: 9706 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,23.5 - parent: 1 - type: Transform - - uid: 9712 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,11.5 - parent: 1 - type: Transform -- proto: ChairCursed - entities: - - uid: 8763 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-24.5 - parent: 1 - type: Transform -- proto: ChairFolding - entities: - - uid: 1812 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,25.5 - parent: 1 - type: Transform - - uid: 1813 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,27.5 - parent: 1 - type: Transform - - uid: 3449 - components: - - rot: 3.141592653589793 rad - pos: -37.5,5.5 - parent: 1 - type: Transform - - uid: 3450 - components: - - rot: 3.141592653589793 rad - pos: -37.5,6.5 - parent: 1 - type: Transform - - uid: 3451 - components: - - rot: 3.141592653589793 rad - pos: -37.5,7.5 - parent: 1 - type: Transform - - uid: 3452 - components: - - rot: 3.141592653589793 rad - pos: -37.5,8.5 - parent: 1 - type: Transform - - uid: 3453 - components: - - rot: 3.141592653589793 rad - pos: -36.5,5.5 - parent: 1 - type: Transform - - uid: 3454 - components: - - rot: 3.141592653589793 rad - pos: -36.5,6.5 - parent: 1 - type: Transform - - uid: 3455 - components: - - rot: 3.141592653589793 rad - pos: -36.5,7.5 - parent: 1 - type: Transform - - uid: 3456 - components: - - rot: 3.141592653589793 rad - pos: -36.5,8.5 - parent: 1 - type: Transform - - uid: 3457 - components: - - rot: 3.141592653589793 rad - pos: -32.5,8.5 - parent: 1 - type: Transform - - uid: 3458 - components: - - rot: 3.141592653589793 rad - pos: -32.5,7.5 - parent: 1 - type: Transform - - uid: 3459 - components: - - rot: 3.141592653589793 rad - pos: -32.5,6.5 - parent: 1 - type: Transform - - uid: 3460 - components: - - rot: 3.141592653589793 rad - pos: -32.5,5.5 - parent: 1 - type: Transform - - uid: 3461 - components: - - rot: 3.141592653589793 rad - pos: -31.5,8.5 - parent: 1 - type: Transform - - uid: 3462 - components: - - rot: 3.141592653589793 rad - pos: -31.5,7.5 - parent: 1 - type: Transform - - uid: 3463 - components: - - rot: 3.141592653589793 rad - pos: -31.5,6.5 - parent: 1 - type: Transform - - uid: 3464 - components: - - rot: 3.141592653589793 rad - pos: -31.5,5.5 - parent: 1 - type: Transform - - uid: 3465 - components: - - rot: 3.141592653589793 rad - pos: -31.5,10.5 - parent: 1 - type: Transform - - uid: 3466 - components: - - pos: -34.5,10.5 - parent: 1 - type: Transform - - uid: 5570 - components: - - pos: -40.5,-4.5 - parent: 1 - type: Transform - - uid: 5571 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-6.5 - parent: 1 - type: Transform - - uid: 8803 - components: - - pos: -38.5,-22.5 - parent: 1 - type: Transform - - uid: 8804 - components: - - pos: -37.5,-22.5 - parent: 1 - type: Transform - - uid: 8810 - components: - - pos: -42.5,-16.5 - parent: 1 - type: Transform - - uid: 8811 - components: - - pos: -43.5,-14.5 - parent: 1 - type: Transform - - uid: 8812 - components: - - pos: -42.5,-14.5 - parent: 1 - type: Transform - - uid: 8813 - components: - - pos: -41.5,-14.5 - parent: 1 - type: Transform - - uid: 8814 - components: - - pos: -40.5,-14.5 - parent: 1 - type: Transform - - uid: 8893 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-22.5 - parent: 1 - type: Transform - - uid: 8896 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-2.5 - parent: 1 - type: Transform - - uid: 8897 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-8.5 - parent: 1 - type: Transform - - uid: 9142 - components: - - rot: 3.141592653589793 rad - pos: 18.5,-18.5 - parent: 1 - type: Transform - - uid: 9166 - components: - - rot: 3.141592653589793 rad - pos: 42.5,-1.5 - parent: 1 - type: Transform - - uid: 9360 - components: - - rot: 3.141592653589793 rad - pos: 16.5,17.5 - parent: 1 - type: Transform - - uid: 9539 - components: - - pos: 37.5,7.5 - parent: 1 - type: Transform - - uid: 9703 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,20.5 - parent: 1 - type: Transform - - uid: 9708 - components: - - pos: -22.5,29.5 - parent: 1 - type: Transform -- proto: ChairFoldingSpawnFolded - entities: - - uid: 8801 - components: - - pos: -40.497337,-24.45458 - parent: 1 - type: Transform - - uid: 8802 - components: - - pos: -40.481712,-24.251455 - parent: 1 - type: Transform -- proto: ChairOfficeDark - entities: - - uid: 778 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,14.5 - parent: 1 - type: Transform - - uid: 779 - components: - - pos: 14.5,13.5 - parent: 1 - type: Transform - - uid: 1710 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-16.5 - parent: 1 - type: Transform - - uid: 1875 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-2.5 - parent: 1 - type: Transform - - uid: 2868 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-50.5 - parent: 1 - type: Transform - - uid: 3914 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,51.5 - parent: 1 - type: Transform - - uid: 3915 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,53.5 - parent: 1 - type: Transform - - uid: 3916 - components: - - rot: 3.141592653589793 rad - pos: -6.5,55.5 - parent: 1 - type: Transform - - uid: 3917 - components: - - pos: -4.5,49.5 - parent: 1 - type: Transform - - uid: 4053 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,29.5 - parent: 1 - type: Transform - - uid: 4054 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,28.5 - parent: 1 - type: Transform - - uid: 4055 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,27.5 - parent: 1 - type: Transform - - uid: 4056 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,27.5 - parent: 1 - type: Transform - - uid: 4057 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,28.5 - parent: 1 - type: Transform - - uid: 4058 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,29.5 - parent: 1 - type: Transform - - uid: 4078 - components: - - rot: 3.141592653589793 rad - pos: -2.5,31.5 - parent: 1 - type: Transform - - uid: 4079 - components: - - rot: 3.141592653589793 rad - pos: -1.5,31.5 - parent: 1 - type: Transform - - uid: 4080 - components: - - rot: 3.141592653589793 rad - pos: -4.5,30.5 - parent: 1 - type: Transform - - uid: 4081 - components: - - rot: 3.141592653589793 rad - pos: -5.5,30.5 - parent: 1 - type: Transform - - uid: 4082 - components: - - rot: 3.141592653589793 rad - pos: 0.5,30.5 - parent: 1 - type: Transform - - uid: 4083 - components: - - rot: 3.141592653589793 rad - pos: 1.5,30.5 - parent: 1 - type: Transform - - uid: 4096 - components: - - pos: 4.5,28.5 - parent: 1 - type: Transform - - uid: 4902 - components: - - rot: 3.141592653589793 rad - pos: 40.5,30.5 - parent: 1 - type: Transform - - uid: 4903 - components: - - rot: 3.141592653589793 rad - pos: 41.5,30.5 - parent: 1 - type: Transform - - uid: 4904 - components: - - rot: 3.141592653589793 rad - pos: 44.5,30.5 - parent: 1 - type: Transform - - uid: 4905 - components: - - rot: 3.141592653589793 rad - pos: 45.5,30.5 - parent: 1 - type: Transform - - uid: 4912 - components: - - pos: 39.5,34.5 - parent: 1 - type: Transform - - uid: 4966 - components: - - pos: 0.5,19.5 - parent: 1 - type: Transform - - uid: 5332 - components: - - pos: 29.5,9.5 - parent: 1 - type: Transform - - uid: 5364 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,5.5 - parent: 1 - type: Transform - - uid: 5367 - components: - - rot: 3.141592653589793 rad - pos: 28.5,17.5 - parent: 1 - type: Transform - - uid: 5375 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,13.5 - parent: 1 - type: Transform - - uid: 5574 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-7.5 - parent: 1 - type: Transform - - uid: 5575 - components: - - rot: 3.141592653589793 rad - pos: -36.5,-3.5 - parent: 1 - type: Transform - - uid: 5673 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-14.5 - parent: 1 - type: Transform - - uid: 5674 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-14.5 - parent: 1 - type: Transform - - uid: 6394 - components: - - pos: -9.5,-3.5 - parent: 1 - type: Transform - - uid: 6786 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-10.5 - parent: 1 - type: Transform - - uid: 7397 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-20.5 - parent: 1 - type: Transform - - uid: 7398 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-21.5 - parent: 1 - type: Transform - - uid: 7399 - components: - - pos: 12.5,-26.5 - parent: 1 - type: Transform - - uid: 8013 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-12.5 - parent: 1 - type: Transform - - uid: 8894 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-16.5 - parent: 1 - type: Transform - - uid: 9317 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,23.5 - parent: 1 - type: Transform - - uid: 9385 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,17.5 - parent: 1 - type: Transform - - uid: 9633 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,25.5 - parent: 1 - type: Transform - - uid: 11749 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-11.5 - parent: 1 - type: Transform - - uid: 12424 - components: - - pos: -6.5,-14.5 - parent: 1 - type: Transform - - uid: 12455 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-1.5 - parent: 1 - type: Transform -- proto: ChairOfficeLight - entities: - - uid: 1874 - components: - - pos: -19.5,15.5 - parent: 1 - type: Transform - - uid: 5608 - components: - - rot: 3.141592653589793 rad - pos: -12.5,15.5 - parent: 1 - type: Transform - - uid: 5609 - components: - - rot: 3.141592653589793 rad - pos: -9.5,13.5 - parent: 1 - type: Transform - - uid: 5610 - components: - - rot: 3.141592653589793 rad - pos: -8.5,6.5 - parent: 1 - type: Transform - - uid: 5921 - components: - - pos: -12.5,13.5 - parent: 1 - type: Transform - - uid: 9143 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-15.5 - parent: 1 - type: Transform - - uid: 9152 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-21.5 - parent: 1 - type: Transform - - uid: 9162 - components: - - pos: 22.5,-0.5 - parent: 1 - type: Transform - - uid: 9366 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,30.5 - parent: 1 - type: Transform - - uid: 9547 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,23.5 - parent: 1 - type: Transform - - uid: 9702 - components: - - rot: 3.141592653589793 rad - pos: -32.5,21.5 - parent: 1 - type: Transform - - uid: 9704 - components: - - rot: 3.141592653589793 rad - pos: -24.5,26.5 - parent: 1 - type: Transform -- proto: ChairRitual - entities: - - uid: 8761 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-23.5 - parent: 1 - type: Transform - - uid: 8762 - components: - - pos: -41.5,-22.5 - parent: 1 - type: Transform -- proto: ChairWood - entities: - - uid: 2031 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,13.5 - parent: 1 - type: Transform - - uid: 2787 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-50.5 - parent: 1 - type: Transform - - uid: 3448 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,13.5 - parent: 1 - type: Transform - - uid: 5030 - components: - - rot: 3.141592653589793 rad - pos: 0.5,9.5 - parent: 1 - type: Transform - - uid: 5033 - components: - - pos: -1.5,11.5 - parent: 1 - type: Transform - - uid: 5034 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,10.5 - parent: 1 - type: Transform - - uid: 5037 - components: - - pos: 0.5,11.5 - parent: 1 - type: Transform - - uid: 5038 - components: - - pos: 1.5,11.5 - parent: 1 - type: Transform - - uid: 5046 - components: - - rot: 3.141592653589793 rad - pos: 1.5,9.5 - parent: 1 - type: Transform - - uid: 5047 - components: - - rot: 3.141592653589793 rad - pos: 2.5,9.5 - parent: 1 - type: Transform - - uid: 5048 - components: - - pos: 2.5,11.5 - parent: 1 - type: Transform - - uid: 5576 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-5.5 - parent: 1 - type: Transform - - uid: 8301 - components: - - pos: -35.5,-15.5 - parent: 1 - type: Transform - - uid: 8302 - components: - - rot: 3.141592653589793 rad - pos: -35.5,-17.5 - parent: 1 - type: Transform - - uid: 8303 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-17.5 - parent: 1 - type: Transform - - uid: 8304 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-17.5 - parent: 1 - type: Transform - - uid: 8499 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-17.5 - parent: 1 - type: Transform - - uid: 12523 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-29.5 - parent: 1 - type: Transform -- proto: chem_master - entities: - - uid: 5604 - components: - - pos: -8.5,14.5 - parent: 1 - type: Transform - - uid: 5605 - components: - - pos: -11.5,16.5 - parent: 1 - type: Transform -- proto: ChemDispenser - entities: - - uid: 5606 - components: - - pos: -12.5,16.5 - parent: 1 - type: Transform - - uid: 5612 - components: - - pos: -8.5,13.5 - parent: 1 - type: Transform -- proto: ChemistryHotplate - entities: - - uid: 5871 - components: - - pos: -11.5,13.5 - parent: 1 - type: Transform -- proto: ChessBoard - entities: - - uid: 5058 - components: - - rot: -1.5707963267948966 rad - pos: 3.502126,25.59834 - parent: 1 - type: Transform - - uid: 7657 - components: - - pos: 2.5021737,-31.407312 - parent: 1 - type: Transform -- proto: ChurchOrganInstrument - entities: - - uid: 3468 - components: - - rot: 3.141592653589793 rad - pos: -31.5,11.5 - parent: 1 - type: Transform -- proto: CigarGoldCase - entities: - - uid: 4136 - components: - - pos: -3.2445543,23.545168 - parent: 1 - type: Transform -- proto: CircuitImprinter - entities: - - uid: 3807 - components: - - pos: -9.5,-0.5 - parent: 1 - type: Transform -- proto: ClosetBase - entities: - - uid: 12521 - components: - - pos: -23.5,-28.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 12522 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: ClosetChefFilled - entities: - - uid: 5963 - components: - - pos: -2.5,1.5 - parent: 1 - type: Transform -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 3610 - components: - - pos: -9.5,46.5 - parent: 1 - type: Transform - - uid: 4085 - components: - - pos: -4.5,27.5 - parent: 1 - type: Transform - - uid: 5057 - components: - - pos: 3.5,18.5 - parent: 1 - type: Transform - - uid: 5562 - components: - - pos: 44.5,23.5 - parent: 1 - type: Transform - - uid: 5563 - components: - - pos: 46.5,3.5 - parent: 1 - type: Transform - - uid: 5565 - components: - - pos: 42.5,4.5 - parent: 1 - type: Transform - - uid: 6330 - components: - - pos: -20.5,-16.5 - parent: 1 - type: Transform - - uid: 7238 - components: - - pos: 5.5,-27.5 - parent: 1 - type: Transform - - uid: 7526 - components: - - pos: -39.5,13.5 - parent: 1 - type: Transform - - uid: 7647 - components: - - pos: -39.5,4.5 - parent: 1 - type: Transform - - uid: 8836 - components: - - pos: -34.5,-1.5 - parent: 1 - type: Transform - - uid: 8839 - components: - - pos: -24.5,-10.5 - parent: 1 - type: Transform - - uid: 8840 - components: - - pos: -10.5,-17.5 - parent: 1 - type: Transform - - uid: 8841 - components: - - pos: -2.5,-11.5 - parent: 1 - type: Transform - - uid: 8844 - components: - - pos: 6.5,-12.5 - parent: 1 - type: Transform - - uid: 8845 - components: - - pos: 32.5,-13.5 - parent: 1 - type: Transform - - uid: 8849 - components: - - pos: 44.5,-1.5 - parent: 1 - type: Transform - - uid: 8902 - components: - - pos: -41.5,-12.5 - parent: 1 - type: Transform - - uid: 9173 - components: - - pos: 32.5,-7.5 - parent: 1 - type: Transform - - uid: 9247 - components: - - pos: 37.5,35.5 - parent: 1 - type: Transform - - uid: 9248 - components: - - pos: 36.5,35.5 - parent: 1 - type: Transform - - uid: 9345 - components: - - pos: 7.5,19.5 - parent: 1 - type: Transform - - uid: 9346 - components: - - pos: -4.5,17.5 - parent: 1 - type: Transform - - uid: 9347 - components: - - pos: -5.5,17.5 - parent: 1 - type: Transform - - uid: 9356 - components: - - pos: 8.5,33.5 - parent: 1 - type: Transform - - uid: 9379 - components: - - pos: 26.5,21.5 - parent: 1 - type: Transform - - uid: 9531 - components: - - pos: 41.5,17.5 - parent: 1 - type: Transform - - uid: 9534 - components: - - pos: 30.5,5.5 - parent: 1 - type: Transform - - uid: 9665 - components: - - pos: -31.5,25.5 - parent: 1 - type: Transform - - uid: 9668 - components: - - pos: -36.5,16.5 - parent: 1 - type: Transform - - uid: 9669 - components: - - pos: -29.5,6.5 - parent: 1 - type: Transform - - uid: 9672 - components: - - pos: -8.5,17.5 - parent: 1 - type: Transform - - uid: 12536 - components: - - pos: 21.5,-0.5 - parent: 1 - type: Transform -- proto: ClosetFireFilled - entities: - - uid: 4086 - components: - - pos: -5.5,27.5 - parent: 1 - type: Transform - - uid: 5056 - components: - - pos: 3.5,19.5 - parent: 1 - type: Transform - - uid: 5564 - components: - - pos: 46.5,4.5 - parent: 1 - type: Transform - - uid: 6100 - components: - - pos: -26.5,-7.5 - parent: 1 - type: Transform - - uid: 6331 - components: - - pos: -19.5,-16.5 - parent: 1 - type: Transform - - uid: 7239 - components: - - pos: 6.5,-27.5 - parent: 1 - type: Transform - - uid: 7530 - components: - - pos: -39.5,5.5 - parent: 1 - type: Transform - - uid: 8837 - components: - - pos: -33.5,-1.5 - parent: 1 - type: Transform - - uid: 8838 - components: - - pos: -24.5,-9.5 - parent: 1 - type: Transform - - uid: 8842 - components: - - pos: -2.5,-12.5 - parent: 1 - type: Transform - - uid: 8843 - components: - - pos: 5.5,-12.5 - parent: 1 - type: Transform - - uid: 8846 - components: - - pos: 32.5,-14.5 - parent: 1 - type: Transform - - uid: 8850 - components: - - pos: 43.5,-1.5 - parent: 1 - type: Transform - - uid: 9174 - components: - - pos: 32.5,-6.5 - parent: 1 - type: Transform - - uid: 9249 - components: - - pos: 35.5,35.5 - parent: 1 - type: Transform - - uid: 9348 - components: - - pos: 7.5,20.5 - parent: 1 - type: Transform - - uid: 9380 - components: - - pos: 27.5,21.5 - parent: 1 - type: Transform - - uid: 9532 - components: - - pos: 42.5,17.5 - parent: 1 - type: Transform - - uid: 9533 - components: - - pos: 30.5,6.5 - parent: 1 - type: Transform - - uid: 9574 - components: - - pos: 46.5,23.5 - parent: 1 - type: Transform - - uid: 9666 - components: - - pos: -31.5,24.5 - parent: 1 - type: Transform - - uid: 9667 - components: - - pos: -36.5,15.5 - parent: 1 - type: Transform - - uid: 9670 - components: - - pos: -29.5,7.5 - parent: 1 - type: Transform - - uid: 9671 - components: - - pos: -8.5,16.5 - parent: 1 - type: Transform - - uid: 12537 - components: - - pos: 20.5,-0.5 - parent: 1 - type: Transform -- proto: ClosetJanitorFilled - entities: - - uid: 7659 - components: - - pos: 11.5,-2.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14972 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 7660 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: ClosetL3JanitorFilled - entities: - - uid: 7662 - components: - - pos: 11.5,-0.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 3057 - - 3056 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: ClosetL3VirologyFilled - entities: - - uid: 5694 - components: - - pos: -17.5,20.5 - parent: 1 - type: Transform - - uid: 5695 - components: - - pos: -17.5,19.5 - parent: 1 - type: Transform -- proto: ClosetMaintenanceFilledRandom - entities: - - uid: 8851 - components: - - pos: -24.5,-11.5 - parent: 1 - type: Transform - - uid: 8854 - components: - - pos: -27.5,-22.5 - parent: 1 - type: Transform - - uid: 8855 - components: - - pos: -35.5,-19.5 - parent: 1 - type: Transform - - uid: 8856 - components: - - pos: -17.5,-20.5 - parent: 1 - type: Transform - - uid: 8857 - components: - - pos: -1.5,-18.5 - parent: 1 - type: Transform - - uid: 8861 - components: - - pos: -33.5,-12.5 - parent: 1 - type: Transform - - uid: 8871 - components: - - pos: -36.5,-19.5 - parent: 1 - type: Transform - - uid: 8890 - components: - - pos: -6.5,-17.5 - parent: 1 - type: Transform - - uid: 9131 - components: - - pos: 7.5,-12.5 - parent: 1 - type: Transform - - uid: 9133 - components: - - pos: 14.5,-15.5 - parent: 1 - type: Transform - - uid: 9161 - components: - - pos: 40.5,-1.5 - parent: 1 - type: Transform - - uid: 9172 - components: - - pos: 32.5,-8.5 - parent: 1 - type: Transform - - uid: 9179 - components: - - pos: 23.5,-0.5 - parent: 1 - type: Transform - - uid: 9242 - components: - - pos: 29.5,32.5 - parent: 1 - type: Transform - - uid: 9253 - components: - - pos: 35.5,32.5 - parent: 1 - type: Transform - - uid: 9349 - components: - - pos: 7.5,25.5 - parent: 1 - type: Transform - - uid: 9353 - components: - - pos: 17.5,17.5 - parent: 1 - type: Transform - - uid: 9357 - components: - - pos: 8.5,32.5 - parent: 1 - type: Transform - - uid: 9364 - components: - - pos: 21.5,28.5 - parent: 1 - type: Transform - - uid: 9381 - components: - - pos: 25.5,21.5 - parent: 1 - type: Transform - - uid: 9530 - components: - - pos: 40.5,17.5 - parent: 1 - type: Transform - - uid: 9673 - components: - - pos: -36.5,17.5 - parent: 1 - type: Transform - - uid: 9674 - components: - - pos: -29.5,8.5 - parent: 1 - type: Transform - - uid: 9675 - components: - - pos: -19.5,18.5 - parent: 1 - type: Transform - - uid: 9676 - components: - - pos: -29.5,27.5 - parent: 1 - type: Transform - - uid: 9677 - components: - - pos: -19.5,29.5 - parent: 1 - type: Transform - - uid: 9678 - components: - - pos: -15.5,25.5 - parent: 1 - type: Transform - - uid: 9707 - components: - - pos: -7.5,24.5 - parent: 1 - type: Transform - - uid: 9734 - components: - - pos: -34.5,21.5 - parent: 1 - type: Transform -- proto: ClosetRadiationSuitFilled - entities: - - uid: 6099 - components: - - pos: -27.5,-7.5 - parent: 1 - type: Transform - - uid: 6332 - components: - - pos: -18.5,-16.5 - parent: 1 - type: Transform - - uid: 9679 - components: - - pos: -19.5,19.5 - parent: 1 - type: Transform -- proto: ClosetToolFilled - entities: - - uid: 662 - components: - - pos: -12.5,-14.5 - parent: 1 - type: Transform - - uid: 8852 - components: - - pos: -33.5,-13.5 - parent: 1 - type: Transform - - uid: 9137 - components: - - pos: 28.5,-13.5 - parent: 1 - type: Transform - - uid: 9171 - components: - - pos: 41.5,-1.5 - parent: 1 - type: Transform -- proto: ClothingBackpackClown - entities: - - uid: 7791 - components: - - pos: -9.479882,-29.613472 - parent: 1 - type: Transform -- proto: ClothingBeltChampion - entities: - - uid: 4133 - components: - - pos: -2.0726793,23.701418 - parent: 1 - type: Transform -- proto: ClothingBeltMilitaryWebbing - entities: - - uid: 9624 - components: - - pos: 16.498451,25.579258 - parent: 1 - type: Transform -- proto: ClothingBeltUtilityFilled - entities: - - uid: 6028 - components: - - pos: -17.427578,-2.5386095 - parent: 1 - type: Transform - - uid: 8222 - components: - - pos: -3.2247663,-20.380867 - parent: 1 - type: Transform -- proto: ClothingEyesEyepatch - entities: - - uid: 9493 - components: - - pos: 17.334412,33.640858 - parent: 1 - type: Transform - - uid: 9494 - components: - - pos: 17.537537,33.500233 - parent: 1 - type: Transform -- proto: ClothingEyesGlasses - entities: - - uid: 5887 - components: - - pos: -17.56469,5.4986477 - parent: 1 - type: Transform - - uid: 6051 - components: - - pos: -16.578178,-4.4178576 - parent: 1 - type: Transform - - uid: 6052 - components: - - pos: -16.593803,-4.1209826 - parent: 1 - type: Transform -- proto: ClothingHandsGlovesBoxingBlue - entities: - - uid: 8820 - components: - - pos: -43.5167,-17.531178 - parent: 1 - type: Transform -- proto: ClothingHandsGlovesBoxingGreen - entities: - - uid: 8821 - components: - - pos: -40.42295,-17.562428 - parent: 1 - type: Transform -- proto: ClothingHandsGlovesBoxingRed - entities: - - uid: 8822 - components: - - pos: -43.532326,-20.546803 - parent: 1 - type: Transform - - uid: 8823 - components: - - pos: -40.469826,-20.531178 - parent: 1 - type: Transform -- proto: ClothingHandsGlovesColorBlack - entities: - - uid: 9319 - components: - - pos: 12.551676,20.51373 - parent: 1 - type: Transform -- proto: ClothingHandsGlovesColorPurple - entities: - - uid: 3056 - components: - - flags: InContainer - type: MetaData - - parent: 7662 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 3057 - components: - - flags: InContainer - type: MetaData - - parent: 7662 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingHandsGlovesColorYellow - entities: - - uid: 8230 - components: - - pos: -2.3917544,-20.443367 - parent: 1 - type: Transform - - uid: 9521 - components: - - pos: -4.5182076,-31.477982 - parent: 1 - type: Transform -- proto: ClothingHandsGlovesCombat - entities: - - uid: 7138 - components: - - pos: 33.449986,-18.355843 - parent: 1 - type: Transform -- proto: ClothingHandsGlovesLatex - entities: - - uid: 5348 - components: - - pos: 23.541037,5.5013475 - parent: 1 - type: Transform - - uid: 9644 - components: - - pos: -25.418951,24.343168 - parent: 1 - type: Transform -- proto: ClothingHandsGlovesNitrile - entities: - - uid: 5874 - components: - - pos: -22.4964,13.596224 - parent: 1 - type: Transform -- proto: ClothingHandsGlovesPowerglove - entities: - - uid: 12284 - components: - - pos: 46.50932,-1.5721288 - parent: 1 - type: Transform -- proto: ClothingHandsGlovesRobohands - entities: - - uid: 6074 - components: - - pos: -9.486496,-13.051972 - parent: 1 - type: Transform -- proto: ClothingHeadHatAnimalHeadslime - entities: - - uid: 9326 - components: - - pos: -13.503023,28.53958 - parent: 1 - type: Transform -- proto: ClothingHeadHatFedoraBrown - entities: - - uid: 12535 - components: - - pos: -21.389526,-28.408783 - parent: 1 - type: Transform -- proto: ClothingHeadHatHairflower - entities: - - uid: 4135 - components: - - pos: -3.6820545,23.685793 - parent: 1 - type: Transform -- proto: ClothingHeadHatHoodCulthood - entities: - - uid: 8797 - components: - - pos: -39.669212,-24.282705 - parent: 1 - type: Transform - - uid: 8798 - components: - - pos: -39.466087,-24.282705 - parent: 1 - type: Transform -- proto: ClothingHeadHatPirate - entities: - - uid: 9489 - components: - - pos: 16.834412,33.453358 - parent: 1 - type: Transform - - uid: 9490 - components: - - pos: 16.725037,33.656483 - parent: 1 - type: Transform -- proto: ClothingHeadHatRichard - entities: - - uid: 12539 - components: - - pos: -18.568806,-30.46414 - parent: 1 - type: Transform -- proto: ClothingHeadHatWelding - entities: - - uid: 8908 - components: - - pos: -38.506927,-17.413034 - parent: 1 - type: Transform -- proto: ClothingHeadHatWeldingMaskFlame - entities: - - uid: 9328 - components: - - pos: -14.628023,27.492704 - parent: 1 - type: Transform -- proto: ClothingHeadHatWeldingMaskFlameBlue - entities: - - uid: 9327 - components: - - pos: -14.268648,27.648954 - parent: 1 - type: Transform -- proto: ClothingHeadHatWeldingMaskPainted - entities: - - uid: 9718 - components: - - pos: -23.488003,26.56069 - parent: 1 - type: Transform -- proto: ClothingHeadHatWitch1 - entities: - - uid: 7546 - components: - - pos: -35.132103,11.605273 - parent: 1 - type: Transform - - uid: 8280 - components: - - pos: -24.502247,-20.155039 - parent: 1 - type: Transform -- proto: ClothingMaskClown - entities: - - uid: 7790 - components: - - pos: -9.354882,-29.035347 - parent: 1 - type: Transform -- proto: ClothingMaskGasCentcom - entities: - - uid: 9014 - components: - - pos: -22.500423,-8.478397 - parent: 1 - type: Transform -- proto: ClothingMaskGasSecurity - entities: - - uid: 9321 - components: - - pos: 12.497511,21.52373 - parent: 1 - type: Transform -- proto: ClothingMaskSterile - entities: - - uid: 5349 - components: - - pos: 23.509787,5.6575975 - parent: 1 - type: Transform - - uid: 9645 - components: - - pos: -25.575201,24.655668 - parent: 1 - type: Transform -- proto: ClothingNeckMantleCap - entities: - - uid: 6397 - components: - - pos: 4.585783,31.487268 - parent: 1 - type: Transform -- proto: ClothingNeckMantleCE - entities: - - uid: 5675 - components: - - pos: 18.495747,-13.358288 - parent: 1 - type: Transform -- proto: ClothingNeckMantleCMO - entities: - - uid: 1869 - components: - - pos: -20.496048,14.567978 - parent: 1 - type: Transform -- proto: ClothingNeckMantleHOP - entities: - - uid: 5927 - components: - - flags: InContainer - type: MetaData - - parent: 4965 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingNeckMantleRD - entities: - - uid: 1877 - components: - - pos: -22.452333,-1.4018333 - parent: 1 - type: Transform -- proto: ClothingNeckScarfStripedBlue - entities: - - uid: 5883 - components: - - pos: -20.521955,5.5536256 - parent: 1 - type: Transform -- proto: ClothingNeckStethoscope - entities: - - uid: 5889 - components: - - pos: -14.496586,5.5848756 - parent: 1 - type: Transform -- proto: ClothingNeckTieRed - entities: - - uid: 12534 - components: - - pos: -21.717651,-29.127533 - parent: 1 - type: Transform -- proto: ClothingOuterCoatBomber - entities: - - uid: 7807 - components: - - pos: -3.4980807,-28.439547 - parent: 1 - type: Transform -- proto: ClothingOuterCoatInspector - entities: - - uid: 12524 - components: - - pos: -21.321499,-29.42984 - parent: 1 - type: Transform -- proto: ClothingOuterCoatJensen - entities: - - uid: 9322 - components: - - pos: -24.505365,-15.407537 - parent: 1 - type: Transform -- proto: ClothingOuterCoatPirate - entities: - - uid: 9487 - components: - - pos: 14.396911,32.515858 - parent: 1 - type: Transform - - uid: 9488 - components: - - pos: 14.615661,32.578358 - parent: 1 - type: Transform -- proto: ClothingOuterRobesCult - entities: - - uid: 8799 - components: - - pos: -39.591087,-24.532705 - parent: 1 - type: Transform - - uid: 8800 - components: - - pos: -39.356712,-24.532705 - parent: 1 - type: Transform -- proto: ClothingOuterWinterCap - entities: - - uid: 5926 - components: - - flags: InContainer - type: MetaData - - parent: 4090 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterWinterCE - entities: - - uid: 5670 - components: - - flags: InContainer - type: MetaData - - parent: 5669 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterWinterCMO - entities: - - uid: 1868 - components: - - flags: InContainer - type: MetaData - - parent: 1867 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterWinterHoP - entities: - - uid: 5928 - components: - - flags: InContainer - type: MetaData - - parent: 4965 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterWinterHoS - entities: - - uid: 12478 - components: - - flags: InContainer - type: MetaData - - parent: 5374 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterWinterQM - entities: - - uid: 7444 - components: - - flags: InContainer - type: MetaData - - parent: 7443 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterWinterRD - entities: - - uid: 12418 - components: - - flags: InContainer - type: MetaData - - parent: 1845 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingShoesBootsCombat - entities: - - uid: 8275 - components: - - desc: Robust pilot's boots for combat scenarios or combat situations. All combat, all the time. - name: pilot's boots - type: MetaData - - pos: -19.507818,-48.36427 - parent: 1 - type: Transform -- proto: ClothingShoesBootsJack - entities: - - uid: 9320 - components: - - pos: 14.338758,21.725782 - parent: 1 - type: Transform - - uid: 9497 - components: - - pos: 14.573133,21.522657 - parent: 1 - type: Transform -- proto: ClothingShoesBootsMag - entities: - - uid: 4922 - components: - - pos: 39.41031,21.404913 - parent: 1 - type: Transform - - uid: 4928 - components: - - pos: 39.613434,21.529913 - parent: 1 - type: Transform - - uid: 7137 - components: - - pos: 31.59061,-16.652718 - parent: 1 - type: Transform -- proto: ClothingUniformColorRainbow - entities: - - uid: 8279 - components: - - pos: -24.486622,-20.530039 - parent: 1 - type: Transform -- proto: ClothingUniformJumpskirtOperative - entities: - - uid: 9622 - components: - - pos: 15.393528,25.548008 - parent: 1 - type: Transform -- proto: ClothingUniformJumpsuitOperative - entities: - - uid: 9623 - components: - - pos: 15.721653,25.376133 - parent: 1 - type: Transform -- proto: ClothingUniformJumpsuitPirate - entities: - - uid: 9491 - components: - - pos: 14.350036,33.375233 - parent: 1 - type: Transform - - uid: 9492 - components: - - pos: 14.662536,33.531483 - parent: 1 - type: Transform -- proto: ClownRecorder - entities: - - uid: 8274 - components: - - pos: -9.689836,-28.97975 - parent: 1 - type: Transform -- proto: ComfyChair - entities: - - uid: 1711 - components: - - pos: 5.5,-14.5 - parent: 1 - type: Transform - - uid: 1873 - components: - - rot: 3.141592653589793 rad - pos: -19.5,13.5 - parent: 1 - type: Transform - - uid: 1876 - components: - - pos: -21.5,-0.5 - parent: 1 - type: Transform - - uid: 2866 - components: - - pos: -15.5,-53.5 - parent: 1 - type: Transform - - uid: 2867 - components: - - pos: -13.5,-53.5 - parent: 1 - type: Transform - - uid: 4304 - components: - - pos: -9.5,30.5 - parent: 1 - type: Transform - - uid: 4911 - components: - - pos: 42.5,34.5 - parent: 1 - type: Transform - - uid: 5039 - components: - - rot: 3.141592653589793 rad - pos: 4.5,10.5 - parent: 1 - type: Transform - - uid: 5053 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,25.5 - parent: 1 - type: Transform - - uid: 5054 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,25.5 - parent: 1 - type: Transform - - uid: 5377 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,13.5 - parent: 1 - type: Transform - - uid: 5573 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-6.5 - parent: 1 - type: Transform - - uid: 5953 - components: - - rot: 3.141592653589793 rad - pos: 2.5,5.5 - parent: 1 - type: Transform - - uid: 7712 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-29.5 - parent: 1 - type: Transform - - uid: 8232 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-29.5 - parent: 1 - type: Transform -- proto: ComputerAnalysisConsole - entities: - - uid: 6123 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-14.5 - parent: 1 - type: Transform -- proto: ComputerCargoBounty - entities: - - uid: 7247 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-23.5 - parent: 1 - type: Transform -- proto: ComputerCargoOrders - entities: - - uid: 4919 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-22.5 - parent: 1 - type: Transform - - uid: 7395 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-14.5 - parent: 1 - type: Transform -- proto: ComputerCargoShuttle - entities: - - uid: 4918 - components: - - pos: 8.5,-19.5 - parent: 1 - type: Transform -- proto: ComputerComms - entities: - - uid: 4076 - components: - - pos: -1.5,32.5 - parent: 1 - type: Transform - - uid: 4097 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,28.5 - parent: 1 - type: Transform -- proto: ComputerCrewMonitoring - entities: - - uid: 1888 - components: - - rot: 3.141592653589793 rad - pos: -8.5,5.5 - parent: 1 - type: Transform - - uid: 4074 - components: - - pos: -4.5,31.5 - parent: 1 - type: Transform -- proto: ComputerCriminalRecords - entities: - - uid: 776 - components: - - pos: 14.5,15.5 - parent: 1 - type: Transform - - uid: 5366 - components: - - pos: 25.5,14.5 - parent: 1 - type: Transform - - uid: 5370 - components: - - pos: 28.5,18.5 - parent: 1 - type: Transform -- proto: ComputerFrame - entities: - - uid: 2685 - components: - - rot: 3.141592653589793 rad - pos: -4.5,48.5 - parent: 1 - type: Transform - - uid: 2752 - components: - - pos: -6.5,56.5 - parent: 1 - type: Transform - - uid: 2757 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,51.5 - parent: 1 - type: Transform - - uid: 2765 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,53.5 - parent: 1 - type: Transform - - uid: 5904 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,6.5 - parent: 1 - type: Transform -- proto: ComputerId - entities: - - uid: 4070 - components: - - pos: -2.5,32.5 - parent: 1 - type: Transform - - uid: 4955 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,19.5 - parent: 1 - type: Transform -- proto: ComputerMedicalRecords - entities: - - uid: 1871 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,13.5 - parent: 1 - type: Transform -- proto: ComputerPowerMonitoring - entities: - - uid: 4072 - components: - - pos: -5.5,31.5 - parent: 1 - type: Transform - - uid: 5415 - components: - - pos: 19.5,-13.5 - parent: 1 - type: Transform - - uid: 5668 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-10.5 - parent: 1 - type: Transform -- proto: ComputerRadar - entities: - - uid: 7282 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-24.5 - parent: 1 - type: Transform -- proto: ComputerResearchAndDevelopment - entities: - - uid: 3805 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-3.5 - parent: 1 - type: Transform - - uid: 5365 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-0.5 - parent: 1 - type: Transform -- proto: ComputerSalvageExpedition - entities: - - uid: 5667 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-24.5 - parent: 1 - type: Transform -- proto: ComputerShuttleCargo - entities: - - uid: 1723 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-27.5 - parent: 1 - type: Transform -- proto: ComputerSolarControl - entities: - - uid: 2557 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,30.5 - parent: 1 - type: Transform - - uid: 2931 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-51.5 - parent: 1 - type: Transform - - uid: 4807 - components: - - rot: 3.141592653589793 rad - pos: -31.5,-23.5 - parent: 1 - type: Transform - - uid: 6760 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-11.5 - parent: 1 - type: Transform -- proto: ComputerStationRecords - entities: - - uid: 774 - components: - - pos: 15.5,15.5 - parent: 1 - type: Transform - - uid: 4073 - components: - - pos: 0.5,31.5 - parent: 1 - type: Transform - - uid: 4959 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,19.5 - parent: 1 - type: Transform - - uid: 5360 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,5.5 - parent: 1 - type: Transform -- proto: ComputerSurveillanceCameraMonitor - entities: - - uid: 777 - components: - - rot: 3.141592653589793 rad - pos: 14.5,12.5 - parent: 1 - type: Transform - - uid: 3794 - components: - - pos: 1.5,55.5 - parent: 1 - type: Transform - - uid: 4071 - components: - - pos: 1.5,31.5 - parent: 1 - type: Transform - - uid: 5313 - components: - - rot: 3.141592653589793 rad - pos: 29.5,8.5 - parent: 1 - type: Transform - - uid: 5363 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,6.5 - parent: 1 - type: Transform - - uid: 5369 - components: - - pos: 26.5,14.5 - parent: 1 - type: Transform -- proto: ComputerTechnologyDiskTerminal - entities: - - uid: 3822 - components: - - pos: -14.5,-4.5 - parent: 1 - type: Transform -- proto: ConveyorBelt - entities: - - uid: 1730 - components: - - pos: 10.5,-31.5 - parent: 1 - type: Transform - - links: - - 7429 - type: DeviceLinkSink - - uid: 1731 - components: - - pos: 10.5,-30.5 - parent: 1 - type: Transform - - links: - - 7429 - type: DeviceLinkSink - - uid: 1732 - components: - - pos: 10.5,-29.5 - parent: 1 - type: Transform - - links: - - 7429 - type: DeviceLinkSink - - uid: 1733 - components: - - pos: 10.5,-28.5 - parent: 1 - type: Transform - - links: - - 7429 - type: DeviceLinkSink - - uid: 1734 - components: - - pos: 10.5,-27.5 - parent: 1 - type: Transform - - links: - - 7429 - type: DeviceLinkSink - - uid: 1735 - components: - - pos: 14.5,-31.5 - parent: 1 - type: Transform - - links: - - 7430 - type: DeviceLinkSink - - uid: 1736 - components: - - pos: 14.5,-30.5 - parent: 1 - type: Transform - - links: - - 7430 - type: DeviceLinkSink - - uid: 1737 - components: - - pos: 14.5,-29.5 - parent: 1 - type: Transform - - links: - - 7430 - type: DeviceLinkSink - - uid: 1738 - components: - - pos: 14.5,-28.5 - parent: 1 - type: Transform - - links: - - 7430 - type: DeviceLinkSink - - uid: 1739 - components: - - pos: 14.5,-27.5 - parent: 1 - type: Transform - - links: - - 7430 - type: DeviceLinkSink - - uid: 1740 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-23.5 - parent: 1 - type: Transform - - links: - - 7431 - type: DeviceLinkSink - - uid: 1741 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-23.5 - parent: 1 - type: Transform - - links: - - 7431 - type: DeviceLinkSink - - uid: 1742 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-23.5 - parent: 1 - type: Transform - - links: - - 7431 - type: DeviceLinkSink - - uid: 3563 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,25.5 - parent: 1 - type: Transform - - links: - - 9199 - type: DeviceLinkSink - - uid: 3564 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,25.5 - parent: 1 - type: Transform - - links: - - 9199 - type: DeviceLinkSink - - uid: 3565 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,25.5 - parent: 1 - type: Transform - - links: - - 9199 - type: DeviceLinkSink - - uid: 3566 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,25.5 - parent: 1 - type: Transform - - links: - - 9199 - type: DeviceLinkSink - - uid: 3567 - components: - - rot: 3.141592653589793 rad - pos: -33.5,24.5 - parent: 1 - type: Transform - - links: - - 9199 - type: DeviceLinkSink - - uid: 3568 - components: - - rot: 3.141592653589793 rad - pos: -33.5,23.5 - parent: 1 - type: Transform - - links: - - 9199 - type: DeviceLinkSink - - uid: 3569 - components: - - rot: 3.141592653589793 rad - pos: -33.5,22.5 - parent: 1 - type: Transform - - links: - - 9199 - type: DeviceLinkSink -- proto: CowToolboxFilled - entities: - - uid: 12285 - components: - - pos: 47.516796,-12.569088 - parent: 1 - type: Transform -- proto: CrateArtifactContainer - entities: - - uid: 3823 - components: - - pos: -14.5,-18.5 - parent: 1 - type: Transform - - uid: 6327 - components: - - pos: -15.5,-18.5 - parent: 1 - type: Transform -- proto: CrateEmptySpawner - entities: - - uid: 1529 - components: - - pos: 21.5,-26.5 - parent: 1 - type: Transform - - uid: 7427 - components: - - pos: 16.5,-26.5 - parent: 1 - type: Transform - - uid: 7428 - components: - - pos: 17.5,-27.5 - parent: 1 - type: Transform - - uid: 9365 - components: - - pos: 21.5,29.5 - parent: 1 - type: Transform - - uid: 9374 - components: - - pos: 17.5,32.5 - parent: 1 - type: Transform - - uid: 9548 - components: - - pos: 36.5,5.5 - parent: 1 - type: Transform -- proto: CrateEngineeringAMEJar - entities: - - uid: 6773 - components: - - pos: 29.5,-8.5 - parent: 1 - type: Transform -- proto: CrateEngineeringAMEShielding - entities: - - uid: 6774 - components: - - pos: 29.5,-7.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6775 - - 6776 - - 6777 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: CrateEngineeringCableBulk - entities: - - uid: 1136 - components: - - pos: 18.5,-3.5 - parent: 1 - type: Transform - - uid: 2524 - components: - - pos: -29.5,-22.5 - parent: 1 - type: Transform -- proto: CrateEngineeringCableHV - entities: - - uid: 2556 - components: - - pos: -26.5,29.5 - parent: 1 - type: Transform -- proto: CrateFilledSpawner - entities: - - uid: 1512 - components: - - pos: 18.5,-26.5 - parent: 1 - type: Transform - - uid: 7285 - components: - - pos: 20.5,-27.5 - parent: 1 - type: Transform - - uid: 7296 - components: - - pos: 22.5,-26.5 - parent: 1 - type: Transform - - uid: 8284 - components: - - pos: -23.5,-24.5 - parent: 1 - type: Transform - - uid: 8824 - components: - - pos: -25.5,-25.5 - parent: 1 - type: Transform - - uid: 9245 - components: - - pos: 28.5,32.5 - parent: 1 - type: Transform - - uid: 9685 - components: - - pos: -20.5,29.5 - parent: 1 - type: Transform -- proto: CrateFreezer - entities: - - uid: 5911 - components: - - pos: -1.5,1.5 - parent: 1 - type: Transform -- proto: CrateHydroponicsSeedsExotic - entities: - - uid: 6008 - components: - - pos: -2.5,-4.5 - parent: 1 - type: Transform -- proto: CrateMedicalSurgery - entities: - - uid: 5520 - components: - - pos: -22.5,24.5 - parent: 1 - type: Transform -- proto: CrateNPCCow - entities: - - uid: 5971 - components: - - pos: 3.5,3.5 - parent: 1 - type: Transform - - open: True - removedMasks: 28 - type: EntityStorage - - 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 - - MidImpassable - - HighImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 135 - hard: True - restitution: 0 - friction: 0.4 - type: Fixtures - - isPlaceable: True - type: PlaceableSurface -- proto: CrateNPCHamlet - entities: - - uid: 7180 - components: - - pos: -3.5,30.5 - parent: 1 - type: Transform -- proto: CrateSecurityRiot - entities: - - uid: 8344 - components: - - pos: 23.5,14.5 - parent: 1 - type: Transform -- proto: CrateServiceJanitorialSupplies - entities: - - uid: 7661 - components: - - pos: 12.5,-2.5 - parent: 1 - type: Transform -- proto: CrayonBox - entities: - - uid: 6041 - components: - - pos: -9.510162,-31.109522 - parent: 1 - type: Transform -- proto: CrayonMime - entities: - - uid: 7787 - components: - - pos: -13.70612,-29.090147 - parent: 1 - type: Transform - - uid: 7788 - components: - - pos: -13.596745,-29.121397 - parent: 1 - type: Transform -- proto: Crematorium - entities: - - uid: 3477 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,15.5 - parent: 1 - type: Transform -- proto: CrewMonitoringServer - entities: - - uid: 3773 - components: - - pos: 1.5,49.5 - parent: 1 - type: Transform -- proto: CrewMonitoringServerMachineCircuitboard - entities: - - uid: 4007 - components: - - pos: -2.4571166,54.52544 - parent: 1 - type: Transform -- proto: CrowbarRed - entities: - - uid: 5601 - components: - - pos: -23.451687,5.4552503 - parent: 1 - type: Transform - - uid: 6336 - components: - - pos: -14.519168,-9.104249 - parent: 1 - type: Transform - - uid: 9580 - components: - - pos: 46.50183,2.500444 - parent: 1 - type: Transform - - uid: 9581 - components: - - pos: 46.673706,2.406694 - parent: 1 - type: Transform - - uid: 9582 - components: - - pos: 44.47058,20.50442 - parent: 1 - type: Transform - - uid: 9583 - components: - - pos: 44.673706,20.41067 - parent: 1 - type: Transform - - uid: 12526 - components: - - pos: -21.430874,-29.30484 - parent: 1 - type: Transform -- proto: CultAltarSpawner - entities: - - uid: 8760 - components: - - pos: -41.5,-23.5 - parent: 1 - type: Transform -- proto: d20Dice - entities: - - uid: 5591 - components: - - pos: -39.55801,-5.7503414 - parent: 1 - type: Transform -- proto: d8Dice - entities: - - uid: 5592 - components: - - pos: -40.636135,-6.3128414 - parent: 1 - type: Transform -- proto: DawInstrumentMachineCircuitboard - entities: - - uid: 7803 - components: - - pos: -11.479882,-31.566597 - parent: 1 - type: Transform -- proto: DefibrillatorCabinetFilled - entities: - - uid: 328 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,16.5 - parent: 1 - type: Transform - - uid: 8372 - components: - - rot: 3.141592653589793 rad - pos: -12.5,17.5 - parent: 1 - type: Transform - - uid: 8373 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,5.5 - parent: 1 - type: Transform - - uid: 9831 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,4.5 - parent: 1 - type: Transform - - uid: 12543 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,8.5 - parent: 1 - type: Transform - - uid: 12551 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-17.5 - parent: 1 - type: Transform - - uid: 12552 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-27.5 - parent: 1 - type: Transform - - uid: 12554 - components: - - pos: -21.5,12.5 - parent: 1 - type: Transform - - uid: 12555 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,6.5 - parent: 1 - type: Transform - - uid: 12556 - components: - - pos: 35.5,4.5 - parent: 1 - type: Transform - - uid: 12557 - components: - - pos: 6.5,-6.5 - parent: 1 - type: Transform - - uid: 12558 - components: - - pos: -19.5,4.5 - parent: 1 - type: Transform - - uid: 12559 - components: - - rot: -1.5707963267948966 rad - pos: 47.5,23.5 - parent: 1 - type: Transform - - uid: 12561 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,25.5 - parent: 1 - type: Transform - - uid: 12607 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,23.5 - parent: 1 - type: Transform -- proto: DeployableBarrier - entities: - - uid: 760 - components: - - anchored: False - pos: 22.5,10.5 - parent: 1 - type: Transform - - uid: 761 - components: - - anchored: False - pos: 22.5,12.5 - parent: 1 - type: Transform - - uid: 763 - components: - - anchored: False - pos: 23.5,12.5 - parent: 1 - type: Transform - - uid: 1842 - components: - - anchored: False - pos: 23.5,10.5 - parent: 1 - type: Transform -- proto: DeskBell - entities: - - uid: 5453 - components: - - pos: 13.386117,14.75304 - parent: 1 - type: Transform - - uid: 5454 - components: - - pos: 0.7052691,18.503328 - parent: 1 - type: Transform - - uid: 5455 - components: - - pos: -8.312405,12.452121 - parent: 1 - type: Transform - - uid: 5456 - components: - - pos: -8.23428,7.664645 - parent: 1 - type: Transform - - uid: 5457 - components: - - pos: -8.258537,-4.530675 - parent: 1 - type: Transform - - uid: 5458 - components: - - pos: -12.205997,12.431334 - parent: 1 - type: Transform - - uid: 8486 - components: - - pos: 12.719743,-9.462604 - parent: 1 - type: Transform - - uid: 8487 - components: - - pos: 3.1651187,7.7825413 - parent: 1 - type: Transform - - uid: 8488 - components: - - pos: 7.4230685,-21.500029 - parent: 1 - type: Transform - - uid: 8489 - components: - - pos: -36.9685,-2.2472436 - parent: 1 - type: Transform - - uid: 8494 - components: - - pos: 3.247385,4.510758 - parent: 1 - type: Transform - - uid: 8498 - components: - - pos: 3.278635,-0.52339196 - parent: 1 - type: Transform -- proto: DiceBag - entities: - - uid: 5590 - components: - - pos: -40.011135,-5.1565914 - parent: 1 - type: Transform -- proto: DiseaseDiagnoser - entities: - - uid: 5689 - components: - - pos: -15.5,21.5 - parent: 1 - type: Transform -- proto: DisposalBend - entities: - - uid: 2941 - components: - - pos: -16.5,-32.5 - parent: 1 - type: Transform - - uid: 3941 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,41.5 - parent: 1 - type: Transform - - uid: 3942 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,40.5 - parent: 1 - type: Transform - - uid: 3943 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,39.5 - parent: 1 - type: Transform - - uid: 3944 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,34.5 - parent: 1 - type: Transform - - uid: 3945 - components: - - rot: 3.141592653589793 rad - pos: -10.5,37.5 - parent: 1 - type: Transform - - uid: 3946 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,39.5 - parent: 1 - type: Transform - - uid: 3947 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,40.5 - parent: 1 - type: Transform - - uid: 3948 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,41.5 - parent: 1 - type: Transform - - uid: 3949 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,34.5 - parent: 1 - type: Transform - - uid: 3950 - components: - - pos: -9.5,37.5 - parent: 1 - type: Transform - - uid: 4015 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,29.5 - parent: 1 - type: Transform - - uid: 4016 - components: - - rot: 3.141592653589793 rad - pos: 1.5,24.5 - parent: 1 - type: Transform - - uid: 4018 - components: - - pos: 4.5,24.5 - parent: 1 - type: Transform - - uid: 4032 - components: - - pos: 1.5,29.5 - parent: 1 - type: Transform - - uid: 5856 - components: - - rot: 3.141592653589793 rad - pos: -26.5,-32.5 - parent: 1 - type: Transform - - uid: 6128 - components: - - pos: -16.5,18.5 - parent: 1 - type: Transform - - uid: 6129 - components: - - rot: 3.141592653589793 rad - pos: -16.5,9.5 - parent: 1 - type: Transform - - uid: 6150 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,9.5 - parent: 1 - type: Transform - - uid: 6151 - components: - - rot: 3.141592653589793 rad - pos: 12.5,9.5 - parent: 1 - type: Transform - - uid: 6152 - components: - - pos: 12.5,13.5 - parent: 1 - type: Transform - - uid: 6167 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,8.5 - parent: 1 - type: Transform - - uid: 6174 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,2.5 - parent: 1 - type: Transform - - uid: 7175 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-5.5 - parent: 1 - type: Transform - - uid: 7176 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-3.5 - parent: 1 - type: Transform - - uid: 7177 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-16.5 - parent: 1 - type: Transform - - uid: 7187 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-4.5 - parent: 1 - type: Transform - - uid: 7188 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-7.5 - parent: 1 - type: Transform - - uid: 7189 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-4.5 - parent: 1 - type: Transform - - uid: 9806 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,16.5 - parent: 1 - type: Transform - - uid: 9807 - components: - - rot: 3.141592653589793 rad - pos: -40.5,2.5 - parent: 1 - type: Transform - - uid: 9859 - components: - - pos: -28.5,22.5 - parent: 1 - type: Transform - - uid: 9894 - components: - - pos: -5.5,1.5 - parent: 1 - type: Transform - - uid: 9895 - components: - - rot: 3.141592653589793 rad - pos: -6.5,1.5 - parent: 1 - type: Transform - - uid: 9898 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-8.5 - parent: 1 - type: Transform - - uid: 9911 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-8.5 - parent: 1 - type: Transform - - uid: 9926 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,2.5 - parent: 1 - type: Transform - - uid: 9984 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,25.5 - parent: 1 - type: Transform - - uid: 9988 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,2.5 - parent: 1 - type: Transform - - uid: 10028 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-21.5 - parent: 1 - type: Transform - - uid: 10029 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-21.5 - parent: 1 - type: Transform - - uid: 10030 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-26.5 - parent: 1 - type: Transform - - uid: 10031 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-26.5 - parent: 1 - type: Transform - - uid: 10032 - components: - - pos: 5.5,-22.5 - parent: 1 - type: Transform - - uid: 10033 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-25.5 - parent: 1 - type: Transform - - uid: 10034 - components: - - pos: -3.5,-22.5 - parent: 1 - type: Transform - - uid: 10053 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-25.5 - parent: 1 - type: Transform - - uid: 10066 - components: - - rot: 3.141592653589793 rad - pos: 8.5,13.5 - parent: 1 - type: Transform - - uid: 10067 - components: - - pos: 8.5,15.5 - parent: 1 - type: Transform - - uid: 10068 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,15.5 - parent: 1 - type: Transform - - uid: 12599 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-2.5 - parent: 1 - type: Transform - - uid: 12600 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-13.5 - parent: 1 - type: Transform - - uid: 12601 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-19.5 - parent: 1 - type: Transform - - uid: 12602 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-19.5 - parent: 1 - type: Transform - - uid: 12603 - components: - - rot: 3.141592653589793 rad - pos: -32.5,-17.5 - parent: 1 - type: Transform - - uid: 12604 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-13.5 - parent: 1 - type: Transform - - uid: 12605 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-2.5 - parent: 1 - type: Transform - - uid: 12606 - components: - - pos: -30.5,-17.5 - parent: 1 - type: Transform -- proto: DisposalJunction - entities: - - uid: 4042 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,24.5 - parent: 1 - type: Transform - - uid: 6130 - components: - - pos: -16.5,11.5 - parent: 1 - type: Transform - - uid: 6131 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,9.5 - parent: 1 - type: Transform - - uid: 6172 - components: - - pos: -5.5,9.5 - parent: 1 - type: Transform - - uid: 9886 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,2.5 - parent: 1 - type: Transform - - uid: 9908 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-8.5 - parent: 1 - type: Transform - - uid: 9987 - components: - - pos: 45.5,13.5 - parent: 1 - type: Transform - - uid: 9989 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,2.5 - parent: 1 - type: Transform - - uid: 10059 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-26.5 - parent: 1 - type: Transform - - uid: 10061 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-22.5 - parent: 1 - type: Transform - - uid: 10063 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-12.5 - parent: 1 - type: Transform - - uid: 10088 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,15.5 - parent: 1 - type: Transform - - uid: 10089 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,15.5 - parent: 1 - type: Transform - - uid: 12465 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-7.5 - parent: 1 - type: Transform - - uid: 12560 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,2.5 - parent: 1 - type: Transform -- proto: DisposalJunctionFlipped - entities: - - uid: 6173 - components: - - pos: -5.5,8.5 - parent: 1 - type: Transform - - uid: 7179 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-5.5 - parent: 1 - type: Transform - - uid: 9833 - components: - - rot: 3.141592653589793 rad - pos: -28.5,4.5 - parent: 1 - type: Transform - - uid: 9896 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,2.5 - parent: 1 - type: Transform - - uid: 9897 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-5.5 - parent: 1 - type: Transform - - uid: 9907 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-8.5 - parent: 1 - type: Transform - - uid: 9910 - components: - - pos: 8.5,-7.5 - parent: 1 - type: Transform - - uid: 9990 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,2.5 - parent: 1 - type: Transform - - uid: 10060 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-22.5 - parent: 1 - type: Transform - - uid: 10062 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-25.5 - parent: 1 - type: Transform -- proto: DisposalPipe - entities: - - uid: 2203 - components: - - rot: 3.141592653589793 rad - pos: -30.5,-18.5 - parent: 1 - type: Transform - - uid: 2252 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-32.5 - parent: 1 - type: Transform - - uid: 2954 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-47.5 - parent: 1 - type: Transform - - uid: 2955 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-46.5 - parent: 1 - type: Transform - - uid: 2956 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-45.5 - parent: 1 - type: Transform - - uid: 2957 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-44.5 - parent: 1 - type: Transform - - uid: 2958 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-43.5 - parent: 1 - type: Transform - - uid: 2959 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-42.5 - parent: 1 - type: Transform - - uid: 2960 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-41.5 - parent: 1 - type: Transform - - uid: 2961 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-40.5 - parent: 1 - type: Transform - - uid: 2962 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-39.5 - parent: 1 - type: Transform - - uid: 2963 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-38.5 - parent: 1 - type: Transform - - uid: 2964 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-37.5 - parent: 1 - type: Transform - - uid: 2965 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-36.5 - parent: 1 - type: Transform - - uid: 2966 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-35.5 - parent: 1 - type: Transform - - uid: 2967 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-34.5 - parent: 1 - type: Transform - - uid: 2968 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-33.5 - parent: 1 - type: Transform - - uid: 2972 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-32.5 - parent: 1 - type: Transform - - uid: 2974 - components: - - rot: 3.141592653589793 rad - pos: -26.5,-29.5 - parent: 1 - type: Transform - - uid: 2977 - components: - - pos: -26.5,-26.5 - parent: 1 - type: Transform - - uid: 2978 - components: - - pos: -26.5,-27.5 - parent: 1 - type: Transform - - uid: 2979 - components: - - pos: -26.5,-28.5 - parent: 1 - type: Transform - - uid: 2982 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-32.5 - parent: 1 - type: Transform - - uid: 3010 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-32.5 - parent: 1 - type: Transform - - uid: 3011 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-32.5 - parent: 1 - type: Transform - - uid: 3013 - components: - - rot: 3.141592653589793 rad - pos: -26.5,-31.5 - parent: 1 - type: Transform - - uid: 3014 - components: - - rot: 3.141592653589793 rad - pos: -26.5,-30.5 - parent: 1 - type: Transform - - uid: 3930 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,41.5 - parent: 1 - type: Transform - - uid: 3932 - components: - - pos: -13.5,33.5 - parent: 1 - type: Transform - - uid: 3933 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,34.5 - parent: 1 - type: Transform - - uid: 3934 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,34.5 - parent: 1 - type: Transform - - uid: 3935 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,34.5 - parent: 1 - type: Transform - - uid: 3936 - components: - - rot: 3.141592653589793 rad - pos: -9.5,35.5 - parent: 1 - type: Transform - - uid: 3937 - components: - - rot: 3.141592653589793 rad - pos: -9.5,36.5 - parent: 1 - type: Transform - - uid: 3938 - components: - - rot: 3.141592653589793 rad - pos: -10.5,38.5 - parent: 1 - type: Transform - - uid: 3939 - components: - - pos: -6.5,42.5 - parent: 1 - type: Transform - - uid: 3951 - components: - - pos: -6.5,43.5 - parent: 1 - type: Transform - - uid: 3952 - components: - - pos: -13.5,32.5 - parent: 1 - type: Transform - - uid: 4017 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,29.5 - parent: 1 - type: Transform - - uid: 4019 - components: - - pos: -7.5,27.5 - parent: 1 - type: Transform - - uid: 4020 - components: - - pos: -7.5,28.5 - parent: 1 - type: Transform - - uid: 4021 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,29.5 - parent: 1 - type: Transform - - uid: 4022 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,29.5 - parent: 1 - type: Transform - - uid: 4023 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,29.5 - parent: 1 - type: Transform - - uid: 4024 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,29.5 - parent: 1 - type: Transform - - uid: 4025 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,29.5 - parent: 1 - type: Transform - - uid: 4026 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,29.5 - parent: 1 - type: Transform - - uid: 4027 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,29.5 - parent: 1 - type: Transform - - uid: 4028 - components: - - rot: 3.141592653589793 rad - pos: 1.5,28.5 - parent: 1 - type: Transform - - uid: 4029 - components: - - rot: 3.141592653589793 rad - pos: 1.5,27.5 - parent: 1 - type: Transform - - uid: 4030 - components: - - rot: 3.141592653589793 rad - pos: 1.5,26.5 - parent: 1 - type: Transform - - uid: 4031 - components: - - rot: 3.141592653589793 rad - pos: 1.5,25.5 - parent: 1 - type: Transform - - uid: 4033 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,24.5 - parent: 1 - type: Transform - - uid: 4034 - components: - - pos: 4.5,23.5 - parent: 1 - type: Transform - - uid: 4035 - components: - - pos: 4.5,22.5 - parent: 1 - type: Transform - - uid: 4036 - components: - - pos: 4.5,21.5 - parent: 1 - type: Transform - - uid: 4037 - components: - - pos: 4.5,20.5 - parent: 1 - type: Transform - - uid: 4038 - components: - - pos: 4.5,19.5 - parent: 1 - type: Transform - - uid: 4039 - components: - - pos: 4.5,18.5 - parent: 1 - type: Transform - - uid: 4040 - components: - - pos: 4.5,17.5 - parent: 1 - type: Transform - - uid: 4041 - components: - - pos: 4.5,16.5 - parent: 1 - type: Transform - - uid: 5346 - components: - - pos: -32.5,-16.5 - parent: 1 - type: Transform - - uid: 6132 - components: - - pos: -16.5,17.5 - parent: 1 - type: Transform - - uid: 6133 - components: - - pos: -16.5,16.5 - parent: 1 - type: Transform - - uid: 6134 - components: - - pos: -16.5,15.5 - parent: 1 - type: Transform - - uid: 6135 - components: - - pos: -16.5,14.5 - parent: 1 - type: Transform - - uid: 6136 - components: - - pos: -16.5,13.5 - parent: 1 - type: Transform - - uid: 6137 - components: - - pos: -16.5,12.5 - parent: 1 - type: Transform - - uid: 6138 - components: - - pos: -16.5,10.5 - parent: 1 - type: Transform - - uid: 6139 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,9.5 - parent: 1 - type: Transform - - uid: 6140 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,9.5 - parent: 1 - type: Transform - - uid: 6141 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,9.5 - parent: 1 - type: Transform - - uid: 6142 - components: - - rot: 3.141592653589793 rad - pos: -12.5,8.5 - parent: 1 - type: Transform - - uid: 6143 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,9.5 - parent: 1 - type: Transform - - uid: 6144 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,9.5 - parent: 1 - type: Transform - - uid: 6145 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,9.5 - parent: 1 - type: Transform - - uid: 6146 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,9.5 - parent: 1 - type: Transform - - uid: 6147 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,9.5 - parent: 1 - type: Transform - - uid: 6148 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,9.5 - parent: 1 - type: Transform - - uid: 6153 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,9.5 - parent: 1 - type: Transform - - uid: 6154 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,9.5 - parent: 1 - type: Transform - - uid: 6155 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,9.5 - parent: 1 - type: Transform - - uid: 6156 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,9.5 - parent: 1 - type: Transform - - uid: 6157 - components: - - rot: 3.141592653589793 rad - pos: 12.5,10.5 - parent: 1 - type: Transform - - uid: 6158 - components: - - rot: 3.141592653589793 rad - pos: 12.5,11.5 - parent: 1 - type: Transform - - uid: 6159 - components: - - rot: 3.141592653589793 rad - pos: 12.5,12.5 - parent: 1 - type: Transform - - uid: 6160 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,13.5 - parent: 1 - type: Transform - - uid: 6161 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,13.5 - parent: 1 - type: Transform - - uid: 6162 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,13.5 - parent: 1 - type: Transform - - uid: 6164 - components: - - pos: -0.5,11.5 - parent: 1 - type: Transform - - uid: 6165 - components: - - pos: -0.5,10.5 - parent: 1 - type: Transform - - uid: 6166 - components: - - pos: -0.5,9.5 - parent: 1 - type: Transform - - uid: 6168 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,8.5 - parent: 1 - type: Transform - - uid: 6169 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,8.5 - parent: 1 - type: Transform - - uid: 6170 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,8.5 - parent: 1 - type: Transform - - uid: 6171 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,8.5 - parent: 1 - type: Transform - - uid: 6176 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,2.5 - parent: 1 - type: Transform - - uid: 6177 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,2.5 - parent: 1 - type: Transform - - uid: 6178 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,2.5 - parent: 1 - type: Transform - - uid: 6179 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,2.5 - parent: 1 - type: Transform - - uid: 7155 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-16.5 - parent: 1 - type: Transform - - uid: 7156 - components: - - pos: -16.5,-15.5 - parent: 1 - type: Transform - - uid: 7157 - components: - - pos: -16.5,-14.5 - parent: 1 - type: Transform - - uid: 7158 - components: - - pos: -16.5,-13.5 - parent: 1 - type: Transform - - uid: 7159 - components: - - pos: -16.5,-12.5 - parent: 1 - type: Transform - - uid: 7160 - components: - - pos: -16.5,-11.5 - parent: 1 - type: Transform - - uid: 7161 - components: - - pos: -16.5,-10.5 - parent: 1 - type: Transform - - uid: 7162 - components: - - pos: -16.5,-9.5 - parent: 1 - type: Transform - - uid: 7163 - components: - - pos: -16.5,-8.5 - parent: 1 - type: Transform - - uid: 7164 - components: - - pos: -16.5,-7.5 - parent: 1 - type: Transform - - uid: 7165 - components: - - pos: -16.5,-6.5 - parent: 1 - type: Transform - - uid: 7166 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-5.5 - parent: 1 - type: Transform - - uid: 7167 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-5.5 - parent: 1 - type: Transform - - uid: 7168 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-5.5 - parent: 1 - type: Transform - - uid: 7169 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-5.5 - parent: 1 - type: Transform - - uid: 7170 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-5.5 - parent: 1 - type: Transform - - uid: 7171 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-5.5 - parent: 1 - type: Transform - - uid: 7172 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-5.5 - parent: 1 - type: Transform - - uid: 7173 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-5.5 - parent: 1 - type: Transform - - uid: 7174 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-5.5 - parent: 1 - type: Transform - - uid: 7178 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-4.5 - parent: 1 - type: Transform - - uid: 7190 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-7.5 - parent: 1 - type: Transform - - uid: 7191 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-4.5 - parent: 1 - type: Transform - - uid: 7192 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-4.5 - parent: 1 - type: Transform - - uid: 7193 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-4.5 - parent: 1 - type: Transform - - uid: 7194 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-4.5 - parent: 1 - type: Transform - - uid: 7195 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-5.5 - parent: 1 - type: Transform - - uid: 7196 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-6.5 - parent: 1 - type: Transform - - uid: 7197 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-7.5 - parent: 1 - type: Transform - - uid: 7198 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-7.5 - parent: 1 - type: Transform - - uid: 7200 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-7.5 - parent: 1 - type: Transform - - uid: 7201 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-7.5 - parent: 1 - type: Transform - - uid: 7202 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-7.5 - parent: 1 - type: Transform - - uid: 8329 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-17.5 - parent: 1 - type: Transform - - uid: 9809 - components: - - rot: 3.141592653589793 rad - pos: -40.5,3.5 - parent: 1 - type: Transform - - uid: 9810 - components: - - rot: 3.141592653589793 rad - pos: -40.5,4.5 - parent: 1 - type: Transform - - uid: 9811 - components: - - rot: 3.141592653589793 rad - pos: -40.5,5.5 - parent: 1 - type: Transform - - uid: 9812 - components: - - rot: 3.141592653589793 rad - pos: -40.5,6.5 - parent: 1 - type: Transform - - uid: 9813 - components: - - rot: 3.141592653589793 rad - pos: -40.5,7.5 - parent: 1 - type: Transform - - uid: 9814 - components: - - rot: 3.141592653589793 rad - pos: -40.5,8.5 - parent: 1 - type: Transform - - uid: 9815 - components: - - rot: 3.141592653589793 rad - pos: -40.5,9.5 - parent: 1 - type: Transform - - uid: 9816 - components: - - rot: 3.141592653589793 rad - pos: -40.5,10.5 - parent: 1 - type: Transform - - uid: 9817 - components: - - rot: 3.141592653589793 rad - pos: -40.5,11.5 - parent: 1 - type: Transform - - uid: 9818 - components: - - rot: 3.141592653589793 rad - pos: -40.5,12.5 - parent: 1 - type: Transform - - uid: 9819 - components: - - rot: 3.141592653589793 rad - pos: -40.5,13.5 - parent: 1 - type: Transform - - uid: 9820 - components: - - rot: 3.141592653589793 rad - pos: -40.5,14.5 - parent: 1 - type: Transform - - uid: 9821 - components: - - rot: 3.141592653589793 rad - pos: -40.5,15.5 - parent: 1 - type: Transform - - uid: 9822 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,2.5 - parent: 1 - type: Transform - - uid: 9823 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,2.5 - parent: 1 - type: Transform - - uid: 9824 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,2.5 - parent: 1 - type: Transform - - uid: 9825 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,2.5 - parent: 1 - type: Transform - - uid: 9826 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,2.5 - parent: 1 - type: Transform - - uid: 9827 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,2.5 - parent: 1 - type: Transform - - uid: 9828 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,2.5 - parent: 1 - type: Transform - - uid: 9829 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,2.5 - parent: 1 - type: Transform - - uid: 9830 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,2.5 - parent: 1 - type: Transform - - uid: 9832 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,2.5 - parent: 1 - type: Transform - - uid: 9836 - components: - - pos: -28.5,3.5 - parent: 1 - type: Transform - - uid: 9837 - components: - - pos: -28.5,5.5 - parent: 1 - type: Transform - - uid: 9838 - components: - - pos: -28.5,6.5 - parent: 1 - type: Transform - - uid: 9839 - components: - - pos: -28.5,7.5 - parent: 1 - type: Transform - - uid: 9840 - components: - - pos: -28.5,8.5 - parent: 1 - type: Transform - - uid: 9841 - components: - - pos: -28.5,9.5 - parent: 1 - type: Transform - - uid: 9842 - components: - - pos: -28.5,10.5 - parent: 1 - type: Transform - - uid: 9843 - components: - - pos: -28.5,11.5 - parent: 1 - type: Transform - - uid: 9844 - components: - - pos: -28.5,12.5 - parent: 1 - type: Transform - - uid: 9845 - components: - - pos: -28.5,13.5 - parent: 1 - type: Transform - - uid: 9846 - components: - - pos: -28.5,14.5 - parent: 1 - type: Transform - - uid: 9847 - components: - - pos: -28.5,15.5 - parent: 1 - type: Transform - - uid: 9848 - components: - - pos: -28.5,16.5 - parent: 1 - type: Transform - - uid: 9849 - components: - - pos: -28.5,17.5 - parent: 1 - type: Transform - - uid: 9850 - components: - - pos: -28.5,18.5 - parent: 1 - type: Transform - - uid: 9851 - components: - - pos: -28.5,19.5 - parent: 1 - type: Transform - - uid: 9852 - components: - - pos: -28.5,20.5 - parent: 1 - type: Transform - - uid: 9853 - components: - - pos: -28.5,21.5 - parent: 1 - type: Transform - - uid: 9854 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,22.5 - parent: 1 - type: Transform - - uid: 9855 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,22.5 - parent: 1 - type: Transform - - uid: 9856 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,22.5 - parent: 1 - type: Transform - - uid: 9857 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,22.5 - parent: 1 - type: Transform - - uid: 9860 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,2.5 - parent: 1 - type: Transform - - uid: 9861 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,2.5 - parent: 1 - type: Transform - - uid: 9862 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,2.5 - parent: 1 - type: Transform - - uid: 9863 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,2.5 - parent: 1 - type: Transform - - uid: 9864 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,2.5 - parent: 1 - type: Transform - - uid: 9865 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,2.5 - parent: 1 - type: Transform - - uid: 9866 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,2.5 - parent: 1 - type: Transform - - uid: 9867 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,2.5 - parent: 1 - type: Transform - - uid: 9868 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,2.5 - parent: 1 - type: Transform - - uid: 9869 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,2.5 - parent: 1 - type: Transform - - uid: 9870 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,2.5 - parent: 1 - type: Transform - - uid: 9871 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,2.5 - parent: 1 - type: Transform - - uid: 9872 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,2.5 - parent: 1 - type: Transform - - uid: 9873 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,2.5 - parent: 1 - type: Transform - - uid: 9874 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,2.5 - parent: 1 - type: Transform - - uid: 9875 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,2.5 - parent: 1 - type: Transform - - uid: 9876 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,2.5 - parent: 1 - type: Transform - - uid: 9877 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,2.5 - parent: 1 - type: Transform - - uid: 9878 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,2.5 - parent: 1 - type: Transform - - uid: 9879 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,2.5 - parent: 1 - type: Transform - - uid: 9880 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,2.5 - parent: 1 - type: Transform - - uid: 9881 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-4.5 - parent: 1 - type: Transform - - uid: 9882 - components: - - pos: -5.5,7.5 - parent: 1 - type: Transform - - uid: 9883 - components: - - pos: -5.5,6.5 - parent: 1 - type: Transform - - uid: 9884 - components: - - pos: -5.5,5.5 - parent: 1 - type: Transform - - uid: 9885 - components: - - pos: -5.5,4.5 - parent: 1 - type: Transform - - uid: 9887 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,2.5 - parent: 1 - type: Transform - - uid: 9888 - components: - - rot: 3.141592653589793 rad - pos: -5.5,3.5 - parent: 1 - type: Transform - - uid: 9889 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-3.5 - parent: 1 - type: Transform - - uid: 9890 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-2.5 - parent: 1 - type: Transform - - uid: 9891 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-1.5 - parent: 1 - type: Transform - - uid: 9892 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-0.5 - parent: 1 - type: Transform - - uid: 9893 - components: - - rot: 3.141592653589793 rad - pos: -5.5,0.5 - parent: 1 - type: Transform - - uid: 9899 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-7.5 - parent: 1 - type: Transform - - uid: 9900 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-6.5 - parent: 1 - type: Transform - - uid: 9901 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-8.5 - parent: 1 - type: Transform - - uid: 9902 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-8.5 - parent: 1 - type: Transform - - uid: 9903 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-8.5 - parent: 1 - type: Transform - - uid: 9904 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-8.5 - parent: 1 - type: Transform - - uid: 9905 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-8.5 - parent: 1 - type: Transform - - uid: 9906 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-8.5 - parent: 1 - type: Transform - - uid: 9912 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-8.5 - parent: 1 - type: Transform - - uid: 9913 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-8.5 - parent: 1 - type: Transform - - uid: 9914 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-8.5 - parent: 1 - type: Transform - - uid: 9915 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-8.5 - parent: 1 - type: Transform - - uid: 9916 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-8.5 - parent: 1 - type: Transform - - uid: 9917 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-6.5 - parent: 1 - type: Transform - - uid: 9918 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-5.5 - parent: 1 - type: Transform - - uid: 9919 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-4.5 - parent: 1 - type: Transform - - uid: 9920 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-3.5 - parent: 1 - type: Transform - - uid: 9921 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-2.5 - parent: 1 - type: Transform - - uid: 9922 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-1.5 - parent: 1 - type: Transform - - uid: 9923 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-0.5 - parent: 1 - type: Transform - - uid: 9924 - components: - - rot: 3.141592653589793 rad - pos: 8.5,0.5 - parent: 1 - type: Transform - - uid: 9925 - components: - - rot: 3.141592653589793 rad - pos: 8.5,1.5 - parent: 1 - type: Transform - - uid: 9927 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,2.5 - parent: 1 - type: Transform - - uid: 9928 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,2.5 - parent: 1 - type: Transform - - uid: 9929 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,2.5 - parent: 1 - type: Transform - - uid: 9930 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,2.5 - parent: 1 - type: Transform - - uid: 9931 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,2.5 - parent: 1 - type: Transform - - uid: 9932 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,2.5 - parent: 1 - type: Transform - - uid: 9933 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,2.5 - parent: 1 - type: Transform - - uid: 9934 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,2.5 - parent: 1 - type: Transform - - uid: 9935 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,2.5 - parent: 1 - type: Transform - - uid: 9936 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,2.5 - parent: 1 - type: Transform - - uid: 9937 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,2.5 - parent: 1 - type: Transform - - uid: 9938 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,2.5 - parent: 1 - type: Transform - - uid: 9939 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,2.5 - parent: 1 - type: Transform - - uid: 9940 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,2.5 - parent: 1 - type: Transform - - uid: 9941 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,2.5 - parent: 1 - type: Transform - - uid: 9942 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,2.5 - parent: 1 - type: Transform - - uid: 9943 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,2.5 - parent: 1 - type: Transform - - uid: 9944 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,2.5 - parent: 1 - type: Transform - - uid: 9945 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,2.5 - parent: 1 - type: Transform - - uid: 9946 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,2.5 - parent: 1 - type: Transform - - uid: 9947 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,2.5 - parent: 1 - type: Transform - - uid: 9948 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,2.5 - parent: 1 - type: Transform - - uid: 9949 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,2.5 - parent: 1 - type: Transform - - uid: 9950 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,2.5 - parent: 1 - type: Transform - - uid: 9951 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,2.5 - parent: 1 - type: Transform - - uid: 9952 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,2.5 - parent: 1 - type: Transform - - uid: 9953 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,2.5 - parent: 1 - type: Transform - - uid: 9954 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,2.5 - parent: 1 - type: Transform - - uid: 9955 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,2.5 - parent: 1 - type: Transform - - uid: 9956 - components: - - pos: 38.5,3.5 - parent: 1 - type: Transform - - uid: 9957 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,2.5 - parent: 1 - type: Transform - - uid: 9958 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,2.5 - parent: 1 - type: Transform - - uid: 9959 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,2.5 - parent: 1 - type: Transform - - uid: 9960 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,2.5 - parent: 1 - type: Transform - - uid: 9961 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,2.5 - parent: 1 - type: Transform - - uid: 9962 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,2.5 - parent: 1 - type: Transform - - uid: 9963 - components: - - rot: 3.141592653589793 rad - pos: 45.5,3.5 - parent: 1 - type: Transform - - uid: 9964 - components: - - rot: 3.141592653589793 rad - pos: 45.5,4.5 - parent: 1 - type: Transform - - uid: 9965 - components: - - rot: 3.141592653589793 rad - pos: 45.5,5.5 - parent: 1 - type: Transform - - uid: 9966 - components: - - rot: 3.141592653589793 rad - pos: 45.5,6.5 - parent: 1 - type: Transform - - uid: 9967 - components: - - rot: 3.141592653589793 rad - pos: 45.5,7.5 - parent: 1 - type: Transform - - uid: 9968 - components: - - rot: 3.141592653589793 rad - pos: 45.5,8.5 - parent: 1 - type: Transform - - uid: 9969 - components: - - rot: 3.141592653589793 rad - pos: 45.5,9.5 - parent: 1 - type: Transform - - uid: 9970 - components: - - rot: 3.141592653589793 rad - pos: 45.5,10.5 - parent: 1 - type: Transform - - uid: 9971 - components: - - rot: 3.141592653589793 rad - pos: 45.5,11.5 - parent: 1 - type: Transform - - uid: 9972 - components: - - rot: 3.141592653589793 rad - pos: 45.5,12.5 - parent: 1 - type: Transform - - uid: 9973 - components: - - rot: 3.141592653589793 rad - pos: 45.5,14.5 - parent: 1 - type: Transform - - uid: 9974 - components: - - rot: 3.141592653589793 rad - pos: 45.5,15.5 - parent: 1 - type: Transform - - uid: 9975 - components: - - rot: 3.141592653589793 rad - pos: 45.5,16.5 - parent: 1 - type: Transform - - uid: 9976 - components: - - rot: 3.141592653589793 rad - pos: 45.5,17.5 - parent: 1 - type: Transform - - uid: 9977 - components: - - rot: 3.141592653589793 rad - pos: 45.5,18.5 - parent: 1 - type: Transform - - uid: 9978 - components: - - rot: 3.141592653589793 rad - pos: 45.5,19.5 - parent: 1 - type: Transform - - uid: 9979 - components: - - rot: 3.141592653589793 rad - pos: 45.5,20.5 - parent: 1 - type: Transform - - uid: 9980 - components: - - rot: 3.141592653589793 rad - pos: 45.5,21.5 - parent: 1 - type: Transform - - uid: 9981 - components: - - rot: 3.141592653589793 rad - pos: 45.5,22.5 - parent: 1 - type: Transform - - uid: 9982 - components: - - rot: 3.141592653589793 rad - pos: 45.5,23.5 - parent: 1 - type: Transform - - uid: 9983 - components: - - rot: 3.141592653589793 rad - pos: 45.5,24.5 - parent: 1 - type: Transform - - uid: 9992 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-9.5 - parent: 1 - type: Transform - - uid: 9993 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-10.5 - parent: 1 - type: Transform - - uid: 9994 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-11.5 - parent: 1 - type: Transform - - uid: 9995 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-13.5 - parent: 1 - type: Transform - - uid: 9996 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-14.5 - parent: 1 - type: Transform - - uid: 9997 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-15.5 - parent: 1 - type: Transform - - uid: 9998 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-16.5 - parent: 1 - type: Transform - - uid: 9999 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-17.5 - parent: 1 - type: Transform - - uid: 10000 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-18.5 - parent: 1 - type: Transform - - uid: 10001 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-19.5 - parent: 1 - type: Transform - - uid: 10002 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-20.5 - parent: 1 - type: Transform - - uid: 10003 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-21.5 - parent: 1 - type: Transform - - uid: 10004 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-22.5 - parent: 1 - type: Transform - - uid: 10005 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-22.5 - parent: 1 - type: Transform - - uid: 10006 - components: - - pos: 5.5,-23.5 - parent: 1 - type: Transform - - uid: 10007 - components: - - pos: 5.5,-24.5 - parent: 1 - type: Transform - - uid: 10008 - components: - - pos: 5.5,-25.5 - parent: 1 - type: Transform - - uid: 10009 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-26.5 - parent: 1 - type: Transform - - uid: 10010 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-26.5 - parent: 1 - type: Transform - - uid: 10011 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-26.5 - parent: 1 - type: Transform - - uid: 10012 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-26.5 - parent: 1 - type: Transform - - uid: 10013 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-26.5 - parent: 1 - type: Transform - - uid: 10014 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-26.5 - parent: 1 - type: Transform - - uid: 10015 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-26.5 - parent: 1 - type: Transform - - uid: 10016 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-26.5 - parent: 1 - type: Transform - - uid: 10017 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-26.5 - parent: 1 - type: Transform - - uid: 10018 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-25.5 - parent: 1 - type: Transform - - uid: 10019 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-24.5 - parent: 1 - type: Transform - - uid: 10020 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-23.5 - parent: 1 - type: Transform - - uid: 10021 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-22.5 - parent: 1 - type: Transform - - uid: 10022 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-21.5 - parent: 1 - type: Transform - - uid: 10023 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-21.5 - parent: 1 - type: Transform - - uid: 10024 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-21.5 - parent: 1 - type: Transform - - uid: 10025 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-21.5 - parent: 1 - type: Transform - - uid: 10026 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-21.5 - parent: 1 - type: Transform - - uid: 10027 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-21.5 - parent: 1 - type: Transform - - uid: 10035 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-25.5 - parent: 1 - type: Transform - - uid: 10036 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-25.5 - parent: 1 - type: Transform - - uid: 10037 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-25.5 - parent: 1 - type: Transform - - uid: 10038 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-25.5 - parent: 1 - type: Transform - - uid: 10039 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-25.5 - parent: 1 - type: Transform - - uid: 10040 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-25.5 - parent: 1 - type: Transform - - uid: 10041 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-25.5 - parent: 1 - type: Transform - - uid: 10042 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-25.5 - parent: 1 - type: Transform - - uid: 10043 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-25.5 - parent: 1 - type: Transform - - uid: 10044 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-22.5 - parent: 1 - type: Transform - - uid: 10045 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-25.5 - parent: 1 - type: Transform - - uid: 10046 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-25.5 - parent: 1 - type: Transform - - uid: 10047 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-25.5 - parent: 1 - type: Transform - - uid: 10048 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-25.5 - parent: 1 - type: Transform - - uid: 10049 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-24.5 - parent: 1 - type: Transform - - uid: 10050 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-23.5 - parent: 1 - type: Transform - - uid: 10051 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-23.5 - parent: 1 - type: Transform - - uid: 10052 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-24.5 - parent: 1 - type: Transform - - uid: 10064 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-12.5 - parent: 1 - type: Transform - - uid: 10069 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,15.5 - parent: 1 - type: Transform - - uid: 10070 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,15.5 - parent: 1 - type: Transform - - uid: 10071 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,15.5 - parent: 1 - type: Transform - - uid: 10072 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,15.5 - parent: 1 - type: Transform - - uid: 10073 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,15.5 - parent: 1 - type: Transform - - uid: 10074 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,15.5 - parent: 1 - type: Transform - - uid: 10075 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,15.5 - parent: 1 - type: Transform - - uid: 10076 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,15.5 - parent: 1 - type: Transform - - uid: 10077 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,15.5 - parent: 1 - type: Transform - - uid: 10078 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,15.5 - parent: 1 - type: Transform - - uid: 10079 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,15.5 - parent: 1 - type: Transform - - uid: 10080 - components: - - pos: 8.5,14.5 - parent: 1 - type: Transform - - uid: 10081 - components: - - pos: -5.5,14.5 - parent: 1 - type: Transform - - uid: 10082 - components: - - pos: -5.5,13.5 - parent: 1 - type: Transform - - uid: 10083 - components: - - pos: -5.5,12.5 - parent: 1 - type: Transform - - uid: 10084 - components: - - pos: -5.5,11.5 - parent: 1 - type: Transform - - uid: 10085 - components: - - pos: -5.5,10.5 - parent: 1 - type: Transform - - uid: 10086 - components: - - pos: 7.5,16.5 - parent: 1 - type: Transform - - uid: 12466 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-5.5 - parent: 1 - type: Transform - - uid: 12467 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-6.5 - parent: 1 - type: Transform - - uid: 12512 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-32.5 - parent: 1 - type: Transform - - uid: 12513 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-32.5 - parent: 1 - type: Transform - - uid: 12514 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-32.5 - parent: 1 - type: Transform - - uid: 12515 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-32.5 - parent: 1 - type: Transform - - uid: 12569 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-19.5 - parent: 1 - type: Transform - - uid: 12570 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-19.5 - parent: 1 - type: Transform - - uid: 12571 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-19.5 - parent: 1 - type: Transform - - uid: 12572 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-19.5 - parent: 1 - type: Transform - - uid: 12573 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-19.5 - parent: 1 - type: Transform - - uid: 12574 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-19.5 - parent: 1 - type: Transform - - uid: 12575 - components: - - pos: -37.5,-18.5 - parent: 1 - type: Transform - - uid: 12576 - components: - - pos: -37.5,-17.5 - parent: 1 - type: Transform - - uid: 12577 - components: - - pos: -37.5,-16.5 - parent: 1 - type: Transform - - uid: 12578 - components: - - pos: -37.5,-15.5 - parent: 1 - type: Transform - - uid: 12579 - components: - - pos: -37.5,-14.5 - parent: 1 - type: Transform - - uid: 12580 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-13.5 - parent: 1 - type: Transform - - uid: 12581 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-13.5 - parent: 1 - type: Transform - - uid: 12582 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-13.5 - parent: 1 - type: Transform - - uid: 12583 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-12.5 - parent: 1 - type: Transform - - uid: 12584 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-11.5 - parent: 1 - type: Transform - - uid: 12585 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-10.5 - parent: 1 - type: Transform - - uid: 12586 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-9.5 - parent: 1 - type: Transform - - uid: 12587 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-8.5 - parent: 1 - type: Transform - - uid: 12588 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-7.5 - parent: 1 - type: Transform - - uid: 12589 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-6.5 - parent: 1 - type: Transform - - uid: 12590 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-5.5 - parent: 1 - type: Transform - - uid: 12591 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-4.5 - parent: 1 - type: Transform - - uid: 12592 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-3.5 - parent: 1 - type: Transform - - uid: 12593 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-2.5 - parent: 1 - type: Transform - - uid: 12594 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-2.5 - parent: 1 - type: Transform - - uid: 12595 - components: - - pos: -30.5,-1.5 - parent: 1 - type: Transform - - uid: 12596 - components: - - pos: -30.5,-0.5 - parent: 1 - type: Transform - - uid: 12597 - components: - - pos: -30.5,0.5 - parent: 1 - type: Transform - - uid: 12598 - components: - - pos: -30.5,1.5 - parent: 1 - type: Transform -- proto: DisposalTrunk - entities: - - uid: 2953 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-48.5 - parent: 1 - type: Transform - - uid: 2975 - components: - - pos: -26.5,-25.5 - parent: 1 - type: Transform - - uid: 3929 - components: - - rot: 3.141592653589793 rad - pos: -13.5,31.5 - parent: 1 - type: Transform - - uid: 3953 - components: - - pos: -6.5,44.5 - parent: 1 - type: Transform - - uid: 4043 - components: - - rot: 3.141592653589793 rad - pos: -7.5,26.5 - parent: 1 - type: Transform - - uid: 4044 - components: - - rot: 3.141592653589793 rad - pos: 2.5,23.5 - parent: 1 - type: Transform - - uid: 6098 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-3.5 - parent: 1 - type: Transform - - uid: 6125 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,11.5 - parent: 1 - type: Transform - - uid: 6126 - components: - - rot: 3.141592653589793 rad - pos: -12.5,7.5 - parent: 1 - type: Transform - - uid: 6127 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,18.5 - parent: 1 - type: Transform - - uid: 6149 - components: - - pos: 17.5,10.5 - parent: 1 - type: Transform - - uid: 6163 - components: - - pos: -0.5,12.5 - parent: 1 - type: Transform - - uid: 6175 - components: - - pos: 0.5,3.5 - parent: 1 - type: Transform - - uid: 7154 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-16.5 - parent: 1 - type: Transform - - uid: 7185 - components: - - pos: 21.5,-3.5 - parent: 1 - type: Transform - - uid: 9834 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,16.5 - parent: 1 - type: Transform - - uid: 9835 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,4.5 - parent: 1 - type: Transform - - uid: 9858 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,22.5 - parent: 1 - type: Transform - - uid: 9909 - components: - - pos: 2.5,-7.5 - parent: 1 - type: Transform - - uid: 9985 - components: - - rot: -1.5707963267948966 rad - pos: 46.5,25.5 - parent: 1 - type: Transform - - uid: 9986 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,13.5 - parent: 1 - type: Transform - - uid: 9991 - components: - - rot: 3.141592653589793 rad - pos: 23.5,1.5 - parent: 1 - type: Transform - - uid: 10054 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-26.5 - parent: 1 - type: Transform - - uid: 10055 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-22.5 - parent: 1 - type: Transform - - uid: 10056 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-23.5 - parent: 1 - type: Transform - - uid: 10057 - components: - - pos: 22.5,-20.5 - parent: 1 - type: Transform - - uid: 10058 - components: - - pos: 8.5,-25.5 - parent: 1 - type: Transform - - uid: 10065 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-12.5 - parent: 1 - type: Transform - - uid: 10087 - components: - - pos: 7.5,17.5 - parent: 1 - type: Transform - - uid: 12464 - components: - - pos: 13.5,-4.5 - parent: 1 - type: Transform - - uid: 12562 - components: - - pos: -32.5,-15.5 - parent: 1 - type: Transform -- proto: DisposalUnit - entities: - - uid: 1007 - components: - - pos: 2.5,-7.5 - parent: 1 - type: Transform - - uid: 1838 - components: - - pos: 13.5,-4.5 - parent: 1 - type: Transform - - uid: 1892 - components: - - pos: -12.5,7.5 - parent: 1 - type: Transform - - uid: 1903 - components: - - pos: -17.5,11.5 - parent: 1 - type: Transform - - uid: 1995 - components: - - pos: -39.5,16.5 - parent: 1 - type: Transform - - uid: 2952 - components: - - pos: -16.5,-48.5 - parent: 1 - type: Transform - - uid: 3819 - components: - - pos: -14.5,-3.5 - parent: 1 - type: Transform - - uid: 3824 - components: - - pos: 2.5,23.5 - parent: 1 - type: Transform - - uid: 3825 - components: - - pos: -13.5,31.5 - parent: 1 - type: Transform - - uid: 3826 - components: - - pos: -7.5,26.5 - parent: 1 - type: Transform - - uid: 3827 - components: - - pos: 17.5,10.5 - parent: 1 - type: Transform - - uid: 3829 - components: - - pos: 0.5,3.5 - parent: 1 - type: Transform - - uid: 3830 - components: - - pos: -17.5,18.5 - parent: 1 - type: Transform - - uid: 3831 - components: - - pos: 7.5,17.5 - parent: 1 - type: Transform - - uid: 3832 - components: - - pos: -29.5,4.5 - parent: 1 - type: Transform - - uid: 3834 - components: - - pos: 38.5,4.5 - parent: 1 - type: Transform - - uid: 3837 - components: - - pos: -5.5,-22.5 - parent: 1 - type: Transform - - uid: 3838 - components: - - pos: 3.5,-12.5 - parent: 1 - type: Transform - - uid: 3839 - components: - - pos: 23.5,1.5 - parent: 1 - type: Transform - - uid: 3841 - components: - - pos: -13.5,-26.5 - parent: 1 - type: Transform - - uid: 3842 - components: - - pos: 3.5,-23.5 - parent: 1 - type: Transform - - uid: 3843 - components: - - pos: 8.5,-25.5 - parent: 1 - type: Transform - - uid: 3844 - components: - - pos: 22.5,-20.5 - parent: 1 - type: Transform - - uid: 3845 - components: - - pos: 44.5,13.5 - parent: 1 - type: Transform - - uid: 3846 - components: - - pos: 19.5,35.5 - parent: 1 - type: Transform - - uid: 3848 - components: - - pos: -6.5,44.5 - parent: 1 - type: Transform - - uid: 4855 - components: - - pos: 46.5,25.5 - parent: 1 - type: Transform - - uid: 5021 - components: - - pos: -0.5,12.5 - parent: 1 - type: Transform - - uid: 6326 - components: - - pos: -14.5,-16.5 - parent: 1 - type: Transform - - uid: 7186 - components: - - pos: 21.5,-3.5 - parent: 1 - type: Transform - - uid: 8343 - components: - - pos: -32.5,-15.5 - parent: 1 - type: Transform -- proto: DisposalYJunction - entities: - - uid: 9808 - components: - - rot: 3.141592653589793 rad - pos: -28.5,2.5 - parent: 1 - type: Transform -- proto: DogBed - entities: - - uid: 4960 - components: - - pos: -1.5,19.5 - parent: 1 - type: Transform - - uid: 4971 - components: - - pos: 5.5,29.5 - parent: 1 - type: Transform -- proto: Drill - entities: - - uid: 9639 - components: - - pos: -26.392878,20.608793 - parent: 1 - type: Transform -- proto: DrinkBottleWine - entities: - - uid: 7543 - components: - - pos: -33.460228,11.714648 - parent: 1 - type: Transform -- proto: DrinkChangelingStingCan - entities: - - uid: 12287 - components: - - pos: -11.69306,-33.29647 - parent: 1 - type: Transform -- proto: DrinkDetFlask - entities: - - uid: 12525 - components: - - pos: -21.680874,-28.320465 - parent: 1 - type: Transform -- proto: DrinkGlass - entities: - - uid: 5976 - components: - - pos: 0.57151127,7.5559425 - parent: 1 - type: Transform - - uid: 5977 - components: - - pos: 0.22776127,7.7278175 - parent: 1 - type: Transform - - uid: 5978 - components: - - pos: 1.4777613,7.7434425 - parent: 1 - type: Transform - - uid: 8267 - components: - - pos: -14.259693,-53.493797 - parent: 1 - type: Transform - - uid: 8268 - components: - - pos: -15.197193,-48.228172 - parent: 1 - type: Transform - - uid: 8269 - components: - - pos: -15.056568,-48.478172 - parent: 1 - type: Transform - - uid: 8277 - components: - - pos: -14.712818,-53.400047 - parent: 1 - type: Transform - - uid: 8309 - components: - - pos: -29.313759,-12.206892 - parent: 1 - type: Transform - - uid: 8310 - components: - - pos: -29.454384,-12.456892 - parent: 1 - type: Transform -- proto: DrinkGlassCoupeShaped - entities: - - uid: 5979 - components: - - pos: 1.8058863,7.6653175 - parent: 1 - type: Transform - - uid: 7544 - components: - - pos: -33.897728,11.652148 - parent: 1 - type: Transform - - uid: 7545 - components: - - pos: -34.319603,11.730273 - parent: 1 - type: Transform -- proto: DrinkGoldenCup - entities: - - uid: 4129 - components: - - pos: -1.434155,24.205725 - parent: 1 - type: Transform -- proto: DrinkMilkCarton - entities: - - uid: 6014 - components: - - pos: 0.5749459,1.7185974 - parent: 1 - type: Transform -- proto: DrinkMugBlack - entities: - - uid: 4913 - components: - - pos: 40.67775,25.53639 - parent: 1 - type: Transform -- proto: DrinkMugBlue - entities: - - uid: 4915 - components: - - pos: 40.318375,25.458265 - parent: 1 - type: Transform -- proto: DrinkMugRed - entities: - - uid: 4914 - components: - - pos: 40.380875,25.75514 - parent: 1 - type: Transform -- proto: DrinkShaker - entities: - - uid: 5975 - components: - - pos: 1.0246363,7.6965675 - parent: 1 - type: Transform - - uid: 8264 - components: - - pos: -15.603443,-48.431297 - parent: 1 - type: Transform - - uid: 8276 - components: - - pos: -14.415943,-53.165672 - parent: 1 - type: Transform - - uid: 8308 - components: - - pos: -29.766884,-12.316267 - parent: 1 - type: Transform -- proto: DrinkVacuumFlask - entities: - - uid: 12354 - components: - - pos: 5.53118,46.361736 - parent: 1 - type: Transform - - solutions: - drink: - temperature: 293.15 - canMix: False - canReact: True - maxVol: 30 - reagents: - - Quantity: 30 - ReagentId: LongIslandIcedTea - type: SolutionContainerManager -- proto: DrinkWhiskeyBottleFull - entities: - - uid: 5357 - components: - - flags: InContainer - type: MetaData - - parent: 5356 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: Dropper - entities: - - uid: 6088 - components: - - pos: -28.506477,-7.2309704 - parent: 1 - type: Transform - - uid: 6089 - components: - - pos: -28.412727,-7.5278454 - parent: 1 - type: Transform -- proto: ElectricGuitarInstrument - entities: - - uid: 7804 - components: - - pos: -13.014593,-31.488472 - parent: 1 - type: Transform -- proto: EmergencyLight - entities: - - uid: 5524 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 5525 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 5526 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 5527 - components: - - rot: 3.141592653589793 rad - pos: -2.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 5528 - components: - - pos: 2.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 5529 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 5530 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 5531 - components: - - rot: 3.141592653589793 rad - pos: 29.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 5532 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 5533 - components: - - rot: 3.141592653589793 rad - pos: 30.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 5534 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 6606 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 6607 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12362 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12363 - components: - - rot: 3.141592653589793 rad - pos: 35.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12364 - components: - - pos: 23.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12365 - components: - - rot: 3.141592653589793 rad - pos: 11.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12366 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12367 - components: - - rot: 3.141592653589793 rad - pos: 5.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12369 - components: - - pos: 12.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12370 - components: - - pos: 22.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12371 - components: - - rot: 3.141592653589793 rad - pos: 28.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12372 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12373 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12374 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12375 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12376 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12377 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12378 - components: - - pos: -11.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12379 - components: - - rot: 3.141592653589793 rad - pos: -12.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12380 - components: - - rot: 3.141592653589793 rad - pos: -13.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12381 - components: - - pos: -21.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12382 - components: - - rot: 3.141592653589793 rad - pos: -24.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12383 - components: - - rot: 3.141592653589793 rad - pos: -18.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12384 - components: - - pos: -30.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12385 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12386 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12387 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12388 - components: - - rot: 3.141592653589793 rad - pos: -27.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12389 - components: - - pos: -16.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12390 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12391 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12392 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12393 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12394 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12395 - components: - - pos: -2.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12396 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12397 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12398 - components: - - pos: 19.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12399 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12400 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12401 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12454 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- proto: EmergencyMedipen - entities: - - uid: 1925 - components: - - pos: -22.134233,11.75826 - parent: 1 - type: Transform - - uid: 7681 - components: - - pos: -22.212358,11.492635 - parent: 1 - type: Transform -- proto: EmergencyRollerBed - entities: - - uid: 5862 - components: - - pos: -14.510358,11.588304 - parent: 1 - type: Transform - - uid: 5863 - components: - - pos: -13.494733,11.588304 - parent: 1 - type: Transform -- proto: EncryptionKeyCargo - entities: - - uid: 3778 - components: - - flags: InContainer - type: MetaData - - parent: 3777 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyCommand - entities: - - uid: 3780 - components: - - flags: InContainer - type: MetaData - - parent: 3779 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyCommon - entities: - - uid: 3783 - components: - - flags: InContainer - type: MetaData - - parent: 3782 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyEngineering - entities: - - uid: 3785 - components: - - flags: InContainer - type: MetaData - - parent: 3784 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyMedical - entities: - - uid: 3772 - components: - - flags: InContainer - type: MetaData - - parent: 3771 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyScience - entities: - - uid: 3790 - components: - - flags: InContainer - type: MetaData - - parent: 3789 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeySecurity - entities: - - uid: 3793 - components: - - flags: InContainer - type: MetaData - - parent: 3792 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyService - entities: - - uid: 3770 - components: - - flags: InContainer - type: MetaData - - parent: 3769 - type: Transform - - canCollide: False - type: Physics -- proto: ExosuitFabricator - entities: - - uid: 663 - components: - - pos: -7.5,-15.5 - parent: 1 - type: Transform -- proto: ExtinguisherCabinetFilled - entities: - - uid: 5490 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,19.5 - parent: 1 - type: Transform - - uid: 5502 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,25.5 - parent: 1 - type: Transform - - uid: 5503 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,26.5 - parent: 1 - type: Transform - - uid: 5505 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,25.5 - parent: 1 - type: Transform - - uid: 5506 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,21.5 - parent: 1 - type: Transform - - uid: 5507 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,16.5 - parent: 1 - type: Transform - - uid: 5509 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,4.5 - parent: 1 - type: Transform - - uid: 5510 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,14.5 - parent: 1 - type: Transform - - uid: 5511 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,16.5 - parent: 1 - type: Transform - - uid: 5512 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,7.5 - parent: 1 - type: Transform - - uid: 5513 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,29.5 - parent: 1 - type: Transform - - uid: 5514 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,29.5 - parent: 1 - type: Transform - - uid: 5515 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,44.5 - parent: 1 - type: Transform - - uid: 5516 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,50.5 - parent: 1 - type: Transform - - uid: 5517 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,50.5 - parent: 1 - type: Transform - - uid: 5518 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,56.5 - parent: 1 - type: Transform - - uid: 5519 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,30.5 - parent: 1 - type: Transform - - uid: 9279 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,17.5 - parent: 1 - type: Transform - - uid: 9280 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,4.5 - parent: 1 - type: Transform - - uid: 9281 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-5.5 - parent: 1 - type: Transform - - uid: 9282 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,8.5 - parent: 1 - type: Transform - - uid: 9283 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,0.5 - parent: 1 - type: Transform - - uid: 9284 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,4.5 - parent: 1 - type: Transform - - uid: 9285 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-19.5 - parent: 1 - type: Transform - - uid: 9286 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-11.5 - parent: 1 - type: Transform - - uid: 9287 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-4.5 - parent: 1 - type: Transform - - uid: 9289 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,13.5 - parent: 1 - type: Transform - - uid: 9290 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,0.5 - parent: 1 - type: Transform - - uid: 9291 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,1.5 - parent: 1 - type: Transform - - uid: 9292 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,4.5 - parent: 1 - type: Transform - - uid: 9293 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,8.5 - parent: 1 - type: Transform - - uid: 9294 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,18.5 - parent: 1 - type: Transform - - uid: 9295 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,27.5 - parent: 1 - type: Transform - - uid: 9296 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-2.5 - parent: 1 - type: Transform - - uid: 9297 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-4.5 - parent: 1 - type: Transform - - uid: 9298 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-5.5 - parent: 1 - type: Transform - - uid: 9299 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-10.5 - parent: 1 - type: Transform - - uid: 9300 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-17.5 - parent: 1 - type: Transform - - uid: 9301 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-19.5 - parent: 1 - type: Transform - - uid: 9302 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-25.5 - parent: 1 - type: Transform - - uid: 9303 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-26.5 - parent: 1 - type: Transform - - uid: 9304 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-27.5 - parent: 1 - type: Transform - - uid: 9305 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-24.5 - parent: 1 - type: Transform - - uid: 9306 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-21.5 - parent: 1 - type: Transform - - uid: 11600 - components: - - pos: 17.5,12.5 - parent: 1 - type: Transform - - uid: 12023 - components: - - pos: -1.5,-10.5 - parent: 1 - type: Transform - - uid: 12402 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-31.5 - parent: 1 - type: Transform - - uid: 12403 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-33.5 - parent: 1 - type: Transform -- proto: FaxMachineBase - entities: - - uid: 4111 - components: - - pos: -8.5,31.5 - parent: 1 - type: Transform - - name: Bridge - type: FaxMachine - - uid: 4968 - components: - - pos: -0.5,21.5 - parent: 1 - type: Transform - - name: HoP Office - type: FaxMachine - - uid: 5329 - components: - - pos: 26.5,10.5 - parent: 1 - type: Transform - - name: Security - type: FaxMachine - - uid: 5582 - components: - - pos: -37.5,-4.5 - parent: 1 - type: Transform - - name: Library - type: FaxMachine - - uid: 5882 - components: - - pos: -12.5,6.5 - parent: 1 - type: Transform - - name: Medical - type: FaxMachine - - uid: 5974 - components: - - pos: 4.5,7.5 - parent: 1 - type: Transform - - name: Bar - type: FaxMachine - - uid: 6027 - components: - - pos: -16.5,-3.5 - parent: 1 - type: Transform - - name: Science - type: FaxMachine - - uid: 6785 - components: - - pos: 11.5,-12.5 - parent: 1 - type: Transform - - name: Engineering - type: FaxMachine - - uid: 7242 - components: - - pos: 11.5,-17.5 - parent: 1 - type: Transform - - name: Cargo - type: FaxMachine - - uid: 9129 - components: - - pos: 40.5,33.5 - parent: 1 - type: Transform - - name: Courthouse - type: FaxMachine -- proto: FaxMachineCaptain - entities: - - uid: 4102 - components: - - pos: 5.5,27.5 - parent: 1 - type: Transform -- proto: FireAlarm - entities: - - uid: 5969 - components: - - pos: 16.5,11.5 - parent: 1 - type: Transform - - devices: - - 3200 - - 3201 - - 3202 - - 1766 - - 1765 - - 3209 - - 3208 - - 3206 - - 3207 - - 3203 - - 3204 - - 3205 - type: DeviceList - - uid: 11595 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,26.5 - parent: 1 - type: Transform - - devices: - - 3197 - - 3194 - - 3198 - type: DeviceList - - uid: 11596 - components: - - rot: 3.141592653589793 rad - pos: -1.5,26.5 - parent: 1 - type: Transform - - devices: - - 3193 - - 3192 - - 3196 - - 3194 - - 3195 - type: DeviceList - - uid: 11597 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,21.5 - parent: 1 - type: Transform - - devices: - - 3185 - - 3191 - - 3193 - - 3192 - - 3186 - type: DeviceList - - uid: 11599 - components: - - pos: 6.5,17.5 - parent: 1 - type: Transform - - devices: - - 5009 - - 5010 - - 5011 - - 3190 - - 3199 - - 3191 - - 3134 - - 3133 - - 46 - - 5004 - - 5003 - - 5002 - - 5000 - - 5001 - type: DeviceList - - uid: 11607 - components: - - pos: 30.5,11.5 - parent: 1 - type: Transform - - devices: - - 3203 - - 3204 - - 3205 - - 3219 - - 3327 - - 3217 - - 3213 - - 3214 - - 3215 - type: DeviceList - - uid: 11610 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,26.5 - parent: 1 - type: Transform - - devices: - - 3224 - - 3225 - - 3226 - - 3227 - - 3228 - - 3220 - - 3221 - - 3222 - - 3223 - type: DeviceList - - uid: 11613 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,10.5 - parent: 1 - type: Transform - - devices: - - 3134 - - 3133 - - 46 - - 3135 - - 3136 - - 3138 - - 3137 - - 11622 - - 11621 - - 11620 - - 11619 - - 11618 - - 11617 - - 11616 - - 11615 - - 11614 - type: DeviceList - - uid: 11624 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,1.5 - parent: 1 - type: Transform - - devices: - - 3143 - - 3141 - - 3142 - - 3139 - - 3140 - type: DeviceList - - uid: 11626 - components: - - pos: -1.5,0.5 - parent: 1 - type: Transform - - devices: - - 3145 - - 3146 - - 3143 - - 3142 - type: DeviceList - - uid: 11631 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,1.5 - parent: 1 - type: Transform - - devices: - - 3120 - - 3119 - - 3118 - - 3149 - - 3150 - - 3151 - - 5508 - - 5498 - - 5495 - - 5008 - - 5003 - - 5002 - - 5004 - - 3135 - - 3136 - type: DeviceList - - uid: 11633 - components: - - pos: -18.5,12.5 - parent: 1 - type: Transform - - devices: - - 3183 - - 3184 - - 3171 - - 3170 - - 3169 - - 3168 - - 3167 - - 3166 - - 3165 - - 3189 - - 3164 - - 3173 - - 3172 - type: DeviceList - - uid: 11635 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,6.5 - parent: 1 - type: Transform - - uid: 11639 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,20.5 - parent: 1 - type: Transform - - devices: - - 3187 - - 11637 - - 11643 - type: DeviceList - - uid: 11640 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,15.5 - parent: 1 - type: Transform - - devices: - - 3164 - - 3188 - type: DeviceList - - uid: 11641 - components: - - pos: -8.5,15.5 - parent: 1 - type: Transform - - devices: - - 3178 - - 3179 - - 3180 - - 3181 - type: DeviceList - - uid: 11648 - components: - - pos: -10.5,4.5 - parent: 1 - type: Transform - - devices: - - 3151 - - 3150 - - 3149 - - 3155 - - 3156 - - 3157 - type: DeviceList - - uid: 11650 - components: - - pos: -26.5,4.5 - parent: 1 - type: Transform - - devices: - - 3151 - - 3150 - - 3149 - - 3155 - - 3156 - - 3157 - - 11054 - - 11057 - - 2284 - - 2094 - - 3160 - - 3272 - - 3273 - - 3158 - - 3159 - - 3161 - type: DeviceList - - uid: 11652 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,9.5 - parent: 1 - type: Transform - - devices: - - 3158 - - 3159 - - 3161 - - 11653 - type: DeviceList - - uid: 11654 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,7.5 - parent: 1 - type: Transform - - devices: - - 2284 - - 2094 - - 3160 - - 3162 - - 3163 - type: DeviceList - - uid: 11656 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-4.5 - parent: 1 - type: Transform - - devices: - - 3273 - - 3272 - type: DeviceList - - uid: 11659 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-10.5 - parent: 1 - type: Transform - - devices: - - 3115 - - 3116 - - 3117 - - 3104 - - 3103 - - 3102 - - 3096 - - 3097 - - 3100 - - 3101 - - 3118 - - 3119 - - 3120 - type: DeviceList - - uid: 11663 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-8.5 - parent: 1 - type: Transform - - devices: - - 3094 - - 3095 - - 3102 - - 3103 - - 3104 - - 3105 - type: DeviceList - - uid: 11665 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-16.5 - parent: 1 - type: Transform - - devices: - - 3111 - - 3112 - - 3113 - - 3106 - - 3107 - - 3108 - - 3109 - - 11668 - - 11669 - type: DeviceList - - uid: 11671 - components: - - rot: 3.141592653589793 rad - pos: -26.5,-8.5 - parent: 1 - type: Transform - - devices: - - 1979 - - 2283 - - 996 - type: DeviceList - - uid: 11673 - components: - - pos: -16.5,0.5 - parent: 1 - type: Transform - - devices: - - 3091 - - 3090 - - 3109 - - 3093 - - 3092 - type: DeviceList - - uid: 11675 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-10.5 - parent: 1 - type: Transform - - devices: - - 3117 - - 3116 - - 3115 - - 3145 - - 3121 - - 3122 - - 3123 - - 3266 - - 3265 - - 3264 - type: DeviceList - - uid: 11677 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-0.5 - parent: 1 - type: Transform - - devices: - - 3123 - - 3122 - - 3121 - - 11629 - - 11628 - - 11627 - - 3125 - - 3124 - - 3126 - - 3243 - - 1832 - - 3055 - type: DeviceList - - uid: 11679 - components: - - pos: 19.5,-2.5 - parent: 1 - type: Transform - - devices: - - 3229 - - 3230 - - 3233 - - 3232 - - 11687 - - 11688 - type: DeviceList - - uid: 11681 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-12.5 - parent: 1 - type: Transform - - devices: - - 3231 - - 3232 - - 3233 - - 3241 - - 3242 - type: DeviceList - - uid: 11683 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-12.5 - parent: 1 - type: Transform - - devices: - - 3235 - - 3234 - - 3232 - - 3233 - - 3240 - - 11687 - - 11688 - - 11689 - type: DeviceList - - uid: 11685 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-13.5 - parent: 1 - type: Transform - - devices: - - 3236 - - 3237 - - 1222 - - 11686 - type: DeviceList - - uid: 11691 - components: - - pos: 20.5,4.5 - parent: 1 - type: Transform - - devices: - - 3129 - - 3128 - - 3127 - - 3498 - - 3499 - type: DeviceList - - uid: 11693 - components: - - pos: 33.5,4.5 - parent: 1 - type: Transform - - devices: - - 3499 - - 3498 - - 3501 - - 3502 - - 3503 - type: DeviceList - - uid: 11695 - components: - - rot: 3.141592653589793 rad - pos: 41.5,0.5 - parent: 1 - type: Transform - - devices: - - 3503 - - 3502 - - 3501 - - 3504 - - 3505 - - 3506 - type: DeviceList - - uid: 11696 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,9.5 - parent: 1 - type: Transform - - devices: - - 3506 - - 3505 - - 3504 - - 3507 - - 4898 - type: DeviceList - - uid: 11701 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,31.5 - parent: 1 - type: Transform - - devices: - - 11703 - - 11704 - type: DeviceList - - uid: 11702 - components: - - rot: 3.141592653589793 rad - pos: 42.5,24.5 - parent: 1 - type: Transform - - devices: - - 4898 - - 4897 - - 11703 - - 11704 - type: DeviceList - - uid: 11706 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-14.5 - parent: 1 - type: Transform - - devices: - - 3262 - - 3261 - - 3263 - - 3264 - - 3265 - - 3266 - type: DeviceList - - uid: 11708 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-27.5 - parent: 1 - type: Transform - - devices: - - 3260 - - 3259 - - 3258 - - 3267 - - 3270 - - 3269 - - 3271 - - 3268 - type: DeviceList - - uid: 11710 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-24.5 - parent: 1 - type: Transform - - devices: - - 3584 - - 3585 - - 3586 - - 3587 - - 3263 - - 3262 - - 3261 - - 3260 - - 3259 - - 3258 - - 7083 - - 7084 - - 7085 - type: DeviceList - - uid: 11712 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-29.5 - parent: 1 - type: Transform - - devices: - - 7086 - - 7083 - - 7084 - - 7085 - type: DeviceList - - uid: 11715 - components: - - pos: 8.5,-16.5 - parent: 1 - type: Transform - - devices: - - 3247 - - 3246 - - 3250 - - 3251 - - 3252 - - 3253 - - 2186 - type: DeviceList - - uid: 11716 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-28.5 - parent: 1 - type: Transform - - devices: - - 3248 - - 3249 - type: DeviceList - - uid: 11717 - components: - - pos: 20.5,-19.5 - parent: 1 - type: Transform - - devices: - - 7250 - - 7249 - - 3595 - - 7301 - - 3257 - type: DeviceList -- proto: FireAxeCabinetFilled - entities: - - uid: 4101 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,29.5 - parent: 1 - type: Transform - - uid: 12471 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-9.5 - parent: 1 - type: Transform -- proto: FireExtinguisher - entities: - - uid: 6334 - components: - - pos: -14.675418,-8.401124 - parent: 1 - type: Transform -- proto: Firelock - entities: - - uid: 3508 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,6.5 - parent: 1 - type: Transform - - uid: 3509 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,7.5 - parent: 1 - type: Transform - - uid: 3510 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,16.5 - parent: 1 - type: Transform - - uid: 3511 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,29.5 - parent: 1 - type: Transform - - uid: 3512 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,29.5 - parent: 1 - type: Transform - - uid: 3513 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,19.5 - parent: 1 - type: Transform - - uid: 3514 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,31.5 - parent: 1 - type: Transform - - uid: 3515 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,28.5 - parent: 1 - type: Transform - - uid: 3516 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,28.5 - parent: 1 - type: Transform - - uid: 3517 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,18.5 - parent: 1 - type: Transform - - uid: 3518 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,17.5 - parent: 1 - type: Transform - - uid: 3519 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,23.5 - parent: 1 - type: Transform - - uid: 3520 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,24.5 - parent: 1 - type: Transform - - uid: 3521 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,22.5 - parent: 1 - type: Transform - - uid: 3522 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,22.5 - parent: 1 - type: Transform - - uid: 3523 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,28.5 - parent: 1 - type: Transform - - uid: 3524 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,29.5 - parent: 1 - type: Transform - - uid: 3525 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,19.5 - parent: 1 - type: Transform - - uid: 3526 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,18.5 - parent: 1 - type: Transform - - uid: 3527 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,17.5 - parent: 1 - type: Transform - - uid: 3528 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,17.5 - parent: 1 - type: Transform - - uid: 3529 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-3.5 - parent: 1 - type: Transform - - uid: 3530 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-3.5 - parent: 1 - type: Transform - - uid: 3531 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-14.5 - parent: 1 - type: Transform - - uid: 3532 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-14.5 - parent: 1 - type: Transform - - uid: 3533 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-19.5 - parent: 1 - type: Transform - - uid: 3534 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-20.5 - parent: 1 - type: Transform - - uid: 3535 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-21.5 - parent: 1 - type: Transform - - uid: 3536 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-22.5 - parent: 1 - type: Transform - - uid: 3537 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-9.5 - parent: 1 - type: Transform - - uid: 3538 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-17.5 - parent: 1 - type: Transform - - uid: 3539 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-18.5 - parent: 1 - type: Transform - - uid: 3540 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-2.5 - parent: 1 - type: Transform - - uid: 3541 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-2.5 - parent: 1 - type: Transform - - uid: 12493 - components: - - pos: 33.5,-0.5 - parent: 1 - type: Transform -- proto: FirelockEdge - entities: - - uid: 996 - components: - - pos: -25.5,-7.5 - parent: 1 - type: Transform - - uid: 1222 - components: - - rot: 3.141592653589793 rad - pos: 38.5,-2.5 - parent: 1 - type: Transform - - uid: 1764 - components: - - rot: 3.141592653589793 rad - pos: 18.5,7.5 - parent: 1 - type: Transform - - uid: 1765 - components: - - rot: 3.141592653589793 rad - pos: 15.5,7.5 - parent: 1 - type: Transform - - uid: 1766 - components: - - rot: 3.141592653589793 rad - pos: 12.5,7.5 - parent: 1 - type: Transform - - uid: 1832 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-8.5 - parent: 1 - type: Transform - - uid: 2186 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-17.5 - parent: 1 - type: Transform - - uid: 2864 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-48.5 - parent: 1 - type: Transform - - uid: 3055 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-4.5 - parent: 1 - type: Transform - - uid: 3105 - components: - - pos: -11.5,-15.5 - parent: 1 - type: Transform - - uid: 3114 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-17.5 - parent: 1 - type: Transform - - uid: 3162 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,15.5 - parent: 1 - type: Transform - - uid: 3187 - components: - - rot: 3.141592653589793 rad - pos: -13.5,21.5 - parent: 1 - type: Transform - - uid: 3188 - components: - - rot: 3.141592653589793 rad - pos: -23.5,16.5 - parent: 1 - type: Transform - - uid: 3189 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,10.5 - parent: 1 - type: Transform - - uid: 3197 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,30.5 - parent: 1 - type: Transform - - uid: 3198 - components: - - pos: -9.5,26.5 - parent: 1 - type: Transform - - uid: 3208 - components: - - pos: 21.5,8.5 - parent: 1 - type: Transform - - uid: 3209 - components: - - pos: 22.5,8.5 - parent: 1 - type: Transform - - uid: 3222 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,25.5 - parent: 1 - type: Transform - - uid: 3223 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,27.5 - parent: 1 - type: Transform - - uid: 3224 - components: - - rot: 3.141592653589793 rad - pos: 28.5,29.5 - parent: 1 - type: Transform - - uid: 3225 - components: - - rot: 3.141592653589793 rad - pos: 29.5,29.5 - parent: 1 - type: Transform - - uid: 3226 - components: - - rot: 3.141592653589793 rad - pos: 30.5,29.5 - parent: 1 - type: Transform - - uid: 3227 - components: - - rot: 3.141592653589793 rad - pos: 31.5,29.5 - parent: 1 - type: Transform - - uid: 3228 - components: - - rot: 3.141592653589793 rad - pos: 32.5,29.5 - parent: 1 - type: Transform - - uid: 3238 - components: - - rot: 3.141592653589793 rad - pos: 20.5,-3.5 - parent: 1 - type: Transform - - uid: 3240 - components: - - pos: 25.5,-15.5 - parent: 1 - type: Transform - - uid: 3242 - components: - - pos: 13.5,-12.5 - parent: 1 - type: Transform - - uid: 3256 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-20.5 - parent: 1 - type: Transform - - uid: 3257 - components: - - rot: 3.141592653589793 rad - pos: 21.5,-20.5 - parent: 1 - type: Transform - - uid: 3274 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,22.5 - parent: 1 - type: Transform - - uid: 3507 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,15.5 - parent: 1 - type: Transform - - uid: 3584 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-22.5 - parent: 1 - type: Transform - - uid: 3585 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-21.5 - parent: 1 - type: Transform - - uid: 3586 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-20.5 - parent: 1 - type: Transform - - uid: 3587 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-19.5 - parent: 1 - type: Transform - - uid: 4897 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,26.5 - parent: 1 - type: Transform - - uid: 4898 - components: - - rot: 3.141592653589793 rad - pos: 45.5,23.5 - parent: 1 - type: Transform - - uid: 5000 - components: - - pos: -2.5,17.5 - parent: 1 - type: Transform - - uid: 5001 - components: - - pos: 1.5,17.5 - parent: 1 - type: Transform - - uid: 5002 - components: - - rot: 3.141592653589793 rad - pos: -6.5,11.5 - parent: 1 - type: Transform - - uid: 5003 - components: - - rot: 3.141592653589793 rad - pos: -5.5,11.5 - parent: 1 - type: Transform - - uid: 5004 - components: - - rot: 3.141592653589793 rad - pos: -4.5,11.5 - parent: 1 - type: Transform - - uid: 7148 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-16.5 - parent: 1 - type: Transform - - uid: 7149 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-17.5 - parent: 1 - type: Transform - - uid: 7150 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-18.5 - parent: 1 - type: Transform - - uid: 11627 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-5.5 - parent: 1 - type: Transform - - uid: 11628 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-6.5 - parent: 1 - type: Transform - - uid: 11629 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-7.5 - parent: 1 - type: Transform - - uid: 11668 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-13.5 - parent: 1 - type: Transform - - uid: 11669 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-9.5 - parent: 1 - type: Transform - - uid: 11686 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-17.5 - parent: 1 - type: Transform - - uid: 12112 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,21.5 - parent: 1 - type: Transform -- proto: FirelockGlass - entities: - - uid: 46 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,13.5 - parent: 1 - type: Transform - - uid: 1979 - components: - - pos: -23.5,-6.5 - parent: 1 - type: Transform - - uid: 2094 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,2.5 - parent: 1 - type: Transform - - uid: 2283 - components: - - pos: -23.5,-5.5 - parent: 1 - type: Transform - - uid: 2284 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,3.5 - parent: 1 - type: Transform - - uid: 3075 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-17.5 - parent: 1 - type: Transform - - uid: 3090 - components: - - pos: -19.5,-6.5 - parent: 1 - type: Transform - - uid: 3091 - components: - - pos: -19.5,-5.5 - parent: 1 - type: Transform - - uid: 3092 - components: - - pos: -13.5,-5.5 - parent: 1 - type: Transform - - uid: 3093 - components: - - pos: -13.5,-6.5 - parent: 1 - type: Transform - - uid: 3094 - components: - - pos: -12.5,-7.5 - parent: 1 - type: Transform - - uid: 3095 - components: - - pos: -11.5,-7.5 - parent: 1 - type: Transform - - uid: 3096 - components: - - pos: -10.5,-6.5 - parent: 1 - type: Transform - - uid: 3097 - components: - - pos: -10.5,-5.5 - parent: 1 - type: Transform - - uid: 3098 - components: - - pos: -11.5,-4.5 - parent: 1 - type: Transform - - uid: 3099 - components: - - pos: -12.5,-4.5 - parent: 1 - type: Transform - - uid: 3100 - components: - - pos: -9.5,-4.5 - parent: 1 - type: Transform - - uid: 3101 - components: - - pos: -8.5,-4.5 - parent: 1 - type: Transform - - uid: 3102 - components: - - pos: -8.5,-10.5 - parent: 1 - type: Transform - - uid: 3103 - components: - - pos: -7.5,-10.5 - parent: 1 - type: Transform - - uid: 3104 - components: - - pos: -6.5,-10.5 - parent: 1 - type: Transform - - uid: 3106 - components: - - pos: -17.5,-11.5 - parent: 1 - type: Transform - - uid: 3107 - components: - - pos: -16.5,-11.5 - parent: 1 - type: Transform - - uid: 3108 - components: - - pos: -15.5,-11.5 - parent: 1 - type: Transform - - uid: 3109 - components: - - pos: -16.5,-7.5 - parent: 1 - type: Transform - - uid: 3111 - components: - - pos: -17.5,-15.5 - parent: 1 - type: Transform - - uid: 3112 - components: - - pos: -16.5,-15.5 - parent: 1 - type: Transform - - uid: 3113 - components: - - pos: -15.5,-15.5 - parent: 1 - type: Transform - - uid: 3115 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-7.5 - parent: 1 - type: Transform - - uid: 3116 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-8.5 - parent: 1 - type: Transform - - uid: 3117 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-9.5 - parent: 1 - type: Transform - - uid: 3118 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,0.5 - parent: 1 - type: Transform - - uid: 3119 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,0.5 - parent: 1 - type: Transform - - uid: 3120 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,0.5 - parent: 1 - type: Transform - - uid: 3121 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-7.5 - parent: 1 - type: Transform - - uid: 3122 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-8.5 - parent: 1 - type: Transform - - uid: 3123 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-9.5 - parent: 1 - type: Transform - - uid: 3124 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,0.5 - parent: 1 - type: Transform - - uid: 3125 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,0.5 - parent: 1 - type: Transform - - uid: 3126 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,0.5 - parent: 1 - type: Transform - - uid: 3127 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,1.5 - parent: 1 - type: Transform - - uid: 3128 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,2.5 - parent: 1 - type: Transform - - uid: 3129 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,3.5 - parent: 1 - type: Transform - - uid: 3133 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,13.5 - parent: 1 - type: Transform - - uid: 3134 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,13.5 - parent: 1 - type: Transform - - uid: 3135 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,9.5 - parent: 1 - type: Transform - - uid: 3136 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,8.5 - parent: 1 - type: Transform - - uid: 3137 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,9.5 - parent: 1 - type: Transform - - uid: 3138 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,8.5 - parent: 1 - type: Transform - - uid: 3139 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,4.5 - parent: 1 - type: Transform - - uid: 3140 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,4.5 - parent: 1 - type: Transform - - uid: 3141 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,2.5 - parent: 1 - type: Transform - - uid: 3142 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-0.5 - parent: 1 - type: Transform - - uid: 3143 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-0.5 - parent: 1 - type: Transform - - uid: 3145 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-6.5 - parent: 1 - type: Transform - - uid: 3146 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-3.5 - parent: 1 - type: Transform - - uid: 3149 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,1.5 - parent: 1 - type: Transform - - uid: 3150 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,2.5 - parent: 1 - type: Transform - - uid: 3151 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,3.5 - parent: 1 - type: Transform - - uid: 3155 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,1.5 - parent: 1 - type: Transform - - uid: 3156 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,2.5 - parent: 1 - type: Transform - - uid: 3157 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,3.5 - parent: 1 - type: Transform - - uid: 3158 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,4.5 - parent: 1 - type: Transform - - uid: 3159 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,4.5 - parent: 1 - type: Transform - - uid: 3160 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,1.5 - parent: 1 - type: Transform - - uid: 3161 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,4.5 - parent: 1 - type: Transform - - uid: 3163 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,17.5 - parent: 1 - type: Transform - - uid: 3164 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,12.5 - parent: 1 - type: Transform - - uid: 3165 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,8.5 - parent: 1 - type: Transform - - uid: 3166 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,7.5 - parent: 1 - type: Transform - - uid: 3167 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,7.5 - parent: 1 - type: Transform - - uid: 3168 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,7.5 - parent: 1 - type: Transform - - uid: 3169 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,7.5 - parent: 1 - type: Transform - - uid: 3170 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,7.5 - parent: 1 - type: Transform - - uid: 3171 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,7.5 - parent: 1 - type: Transform - - uid: 3172 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,9.5 - parent: 1 - type: Transform - - uid: 3173 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,10.5 - parent: 1 - type: Transform - - uid: 3174 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,7.5 - parent: 1 - type: Transform - - uid: 3175 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,7.5 - parent: 1 - type: Transform - - uid: 3176 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,6.5 - parent: 1 - type: Transform - - uid: 3177 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,5.5 - parent: 1 - type: Transform - - uid: 3178 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,12.5 - parent: 1 - type: Transform - - uid: 3179 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,12.5 - parent: 1 - type: Transform - - uid: 3180 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,12.5 - parent: 1 - type: Transform - - uid: 3181 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,15.5 - parent: 1 - type: Transform - - uid: 3182 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,15.5 - parent: 1 - type: Transform - - uid: 3183 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,12.5 - parent: 1 - type: Transform - - uid: 3184 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,12.5 - parent: 1 - type: Transform - - uid: 3185 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,20.5 - parent: 1 - type: Transform - - uid: 3186 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,18.5 - parent: 1 - type: Transform - - uid: 3190 - components: - - pos: 10.5,13.5 - parent: 1 - type: Transform - - uid: 3191 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,17.5 - parent: 1 - type: Transform - - uid: 3192 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,26.5 - parent: 1 - type: Transform - - uid: 3193 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,26.5 - parent: 1 - type: Transform - - uid: 3194 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,29.5 - parent: 1 - type: Transform - - uid: 3195 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,26.5 - parent: 1 - type: Transform - - uid: 3196 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,28.5 - parent: 1 - type: Transform - - uid: 3199 - components: - - pos: 10.5,14.5 - parent: 1 - type: Transform - - uid: 3200 - components: - - pos: 11.5,11.5 - parent: 1 - type: Transform - - uid: 3201 - components: - - pos: 12.5,11.5 - parent: 1 - type: Transform - - uid: 3202 - components: - - pos: 15.5,11.5 - parent: 1 - type: Transform - - uid: 3203 - components: - - pos: 24.5,10.5 - parent: 1 - type: Transform - - uid: 3204 - components: - - pos: 24.5,9.5 - parent: 1 - type: Transform - - uid: 3205 - components: - - pos: 24.5,8.5 - parent: 1 - type: Transform - - uid: 3206 - components: - - pos: 20.5,11.5 - parent: 1 - type: Transform - - uid: 3207 - components: - - pos: 21.5,11.5 - parent: 1 - type: Transform - - uid: 3213 - components: - - pos: 31.5,15.5 - parent: 1 - type: Transform - - uid: 3214 - components: - - pos: 32.5,15.5 - parent: 1 - type: Transform - - uid: 3215 - components: - - pos: 33.5,15.5 - parent: 1 - type: Transform - - uid: 3216 - components: - - pos: 30.5,17.5 - parent: 1 - type: Transform - - uid: 3217 - components: - - pos: 30.5,13.5 - parent: 1 - type: Transform - - uid: 3219 - components: - - pos: 26.5,7.5 - parent: 1 - type: Transform - - uid: 3220 - components: - - pos: 32.5,24.5 - parent: 1 - type: Transform - - uid: 3221 - components: - - pos: 33.5,24.5 - parent: 1 - type: Transform - - uid: 3229 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-6.5 - parent: 1 - type: Transform - - uid: 3230 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-7.5 - parent: 1 - type: Transform - - uid: 3231 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-9.5 - parent: 1 - type: Transform - - uid: 3232 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-10.5 - parent: 1 - type: Transform - - uid: 3233 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-11.5 - parent: 1 - type: Transform - - uid: 3234 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-10.5 - parent: 1 - type: Transform - - uid: 3235 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-11.5 - parent: 1 - type: Transform - - uid: 3236 - components: - - rot: 3.141592653589793 rad - pos: 33.5,-11.5 - parent: 1 - type: Transform - - uid: 3237 - components: - - rot: 3.141592653589793 rad - pos: 33.5,-10.5 - parent: 1 - type: Transform - - uid: 3241 - components: - - pos: 16.5,-12.5 - parent: 1 - type: Transform - - uid: 3243 - components: - - pos: 10.5,-1.5 - parent: 1 - type: Transform - - uid: 3244 - components: - - pos: 14.5,0.5 - parent: 1 - type: Transform - - uid: 3245 - components: - - pos: 15.5,0.5 - parent: 1 - type: Transform - - uid: 3246 - components: - - pos: 7.5,-21.5 - parent: 1 - type: Transform - - uid: 3247 - components: - - pos: 7.5,-20.5 - parent: 1 - type: Transform - - uid: 3248 - components: - - pos: 5.5,-24.5 - parent: 1 - type: Transform - - uid: 3249 - components: - - pos: 7.5,-26.5 - parent: 1 - type: Transform - - uid: 3250 - components: - - pos: 9.5,-24.5 - parent: 1 - type: Transform - - uid: 3251 - components: - - pos: 10.5,-24.5 - parent: 1 - type: Transform - - uid: 3252 - components: - - pos: 12.5,-22.5 - parent: 1 - type: Transform - - uid: 3253 - components: - - pos: 12.5,-21.5 - parent: 1 - type: Transform - - uid: 3258 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-26.5 - parent: 1 - type: Transform - - uid: 3259 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-25.5 - parent: 1 - type: Transform - - uid: 3260 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-24.5 - parent: 1 - type: Transform - - uid: 3261 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-18.5 - parent: 1 - type: Transform - - uid: 3262 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-18.5 - parent: 1 - type: Transform - - uid: 3263 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-18.5 - parent: 1 - type: Transform - - uid: 3264 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-10.5 - parent: 1 - type: Transform - - uid: 3265 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-10.5 - parent: 1 - type: Transform - - uid: 3266 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-10.5 - parent: 1 - type: Transform - - uid: 3267 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-23.5 - parent: 1 - type: Transform - - uid: 3268 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-25.5 - parent: 1 - type: Transform - - uid: 3269 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-27.5 - parent: 1 - type: Transform - - uid: 3270 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-27.5 - parent: 1 - type: Transform - - uid: 3271 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-27.5 - parent: 1 - type: Transform - - uid: 3272 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,0.5 - parent: 1 - type: Transform - - uid: 3273 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,0.5 - parent: 1 - type: Transform - - uid: 3327 - components: - - pos: 35.5,11.5 - parent: 1 - type: Transform - - uid: 3498 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,3.5 - parent: 1 - type: Transform - - uid: 3499 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,2.5 - parent: 1 - type: Transform - - uid: 3501 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,3.5 - parent: 1 - type: Transform - - uid: 3502 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,2.5 - parent: 1 - type: Transform - - uid: 3503 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,1.5 - parent: 1 - type: Transform - - uid: 3504 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,1.5 - parent: 1 - type: Transform - - uid: 3505 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,2.5 - parent: 1 - type: Transform - - uid: 3506 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,3.5 - parent: 1 - type: Transform - - uid: 3595 - components: - - pos: 20.5,-24.5 - parent: 1 - type: Transform - - uid: 5008 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,11.5 - parent: 1 - type: Transform - - uid: 5009 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,11.5 - parent: 1 - type: Transform - - uid: 5010 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,11.5 - parent: 1 - type: Transform - - uid: 5011 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,11.5 - parent: 1 - type: Transform - - uid: 5495 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,10.5 - parent: 1 - type: Transform - - uid: 5498 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,9.5 - parent: 1 - type: Transform - - uid: 5508 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,8.5 - parent: 1 - type: Transform - - uid: 7083 - components: - - pos: 0.5,-27.5 - parent: 1 - type: Transform - - uid: 7084 - components: - - pos: 1.5,-27.5 - parent: 1 - type: Transform - - uid: 7085 - components: - - pos: 2.5,-27.5 - parent: 1 - type: Transform - - uid: 7086 - components: - - pos: -0.5,-32.5 - parent: 1 - type: Transform - - uid: 7087 - components: - - pos: -5.5,-32.5 - parent: 1 - type: Transform - - uid: 7249 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-21.5 - parent: 1 - type: Transform - - uid: 7250 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-22.5 - parent: 1 - type: Transform - - uid: 7301 - components: - - rot: 3.141592653589793 rad - pos: 21.5,-24.5 - parent: 1 - type: Transform - - uid: 11602 - components: - - pos: 13.5,13.5 - parent: 1 - type: Transform - - uid: 11603 - components: - - pos: 13.5,14.5 - parent: 1 - type: Transform - - uid: 11614 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,7.5 - parent: 1 - type: Transform - - uid: 11615 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,7.5 - parent: 1 - type: Transform - - uid: 11616 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,7.5 - parent: 1 - type: Transform - - uid: 11617 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,7.5 - parent: 1 - type: Transform - - uid: 11618 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,7.5 - parent: 1 - type: Transform - - uid: 11619 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,7.5 - parent: 1 - type: Transform - - uid: 11620 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,7.5 - parent: 1 - type: Transform - - uid: 11621 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,7.5 - parent: 1 - type: Transform - - uid: 11622 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,7.5 - parent: 1 - type: Transform - - uid: 11637 - components: - - pos: -16.5,17.5 - parent: 1 - type: Transform - - uid: 11643 - components: - - pos: -15.5,17.5 - parent: 1 - type: Transform - - uid: 11653 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,12.5 - parent: 1 - type: Transform - - uid: 11687 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-9.5 - parent: 1 - type: Transform - - uid: 11688 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-9.5 - parent: 1 - type: Transform - - uid: 11689 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-9.5 - parent: 1 - type: Transform - - uid: 11703 - components: - - rot: 3.141592653589793 rad - pos: 42.5,29.5 - parent: 1 - type: Transform - - uid: 11704 - components: - - rot: 3.141592653589793 rad - pos: 43.5,29.5 - parent: 1 - type: Transform -- proto: Fireplace - entities: - - uid: 4961 - components: - - pos: -5.5,21.5 - parent: 1 - type: Transform - - uid: 12563 - components: - - pos: 3.5,12.5 - parent: 1 - type: Transform -- proto: Flash - entities: - - uid: 5064 - components: - - pos: -0.72998714,31.713612 - parent: 1 - type: Transform -- proto: FlashlightLantern - entities: - - uid: 8929 - components: - - pos: -24.399763,-12.310871 - parent: 1 - type: Transform - - uid: 8930 - components: - - pos: -24.618513,-12.670246 - parent: 1 - type: Transform - - uid: 9550 - components: - - pos: 36.560673,24.84187 - parent: 1 - type: Transform - - uid: 9556 - components: - - pos: 36.357548,24.52937 - parent: 1 - type: Transform - - uid: 9732 - components: - - pos: -33.69252,18.729115 - parent: 1 - type: Transform - - uid: 9733 - components: - - pos: -33.34877,18.49474 - parent: 1 - type: Transform -- proto: FlashlightSeclite - entities: - - uid: 12531 - components: - - pos: -21.477749,-28.757965 - parent: 1 - type: Transform - - uid: 12532 - components: - - pos: 12.504955,21.180922 - parent: 1 - type: Transform - - uid: 12533 - components: - - pos: 12.504955,20.899672 - parent: 1 - type: Transform -- proto: Floodlight - entities: - - uid: 7307 - components: - - pos: 24.51259,-24.494957 - parent: 1 - type: Transform -- proto: FloorDrain - entities: - - uid: 5872 - components: - - pos: -23.5,14.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 5873 - components: - - pos: 12.5,-1.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 9655 - components: - - pos: 12.5,25.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 10117 - components: - - rot: 3.141592653589793 rad - pos: -2.5,3.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 12481 - components: - - pos: -11.5,15.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures -- proto: FloorTileItemArcadeBlue2 - entities: - - uid: 8752 - components: - - pos: -39.510826,-23.477228 - parent: 1 - type: Transform - - count: 30 - type: Stack -- proto: FloorTileItemBoxing - entities: - - uid: 8725 - components: - - pos: -43.51509,-18.484356 - parent: 1 - type: Transform - - uid: 8726 - components: - - pos: -42.51509,-19.46873 - parent: 1 - type: Transform - - uid: 8727 - components: - - pos: -41.499466,-19.49998 - parent: 1 - type: Transform - - uid: 8728 - components: - - pos: -41.468216,-20.53123 - parent: 1 - type: Transform - - uid: 8729 - components: - - pos: -41.48384,-17.49998 - parent: 1 - type: Transform -- proto: FluteInstrument - entities: - - uid: 7805 - components: - - pos: -11.967718,-31.457222 - parent: 1 - type: Transform -- proto: FoamBlade - entities: - - uid: 12286 - components: - - pos: -11.477329,-33.530846 - parent: 1 - type: Transform -- proto: FoamCutlass - entities: - - uid: 9495 - components: - - pos: 16.350037,33.593983 - parent: 1 - type: Transform - - uid: 9496 - components: - - pos: 16.646912,33.578358 - parent: 1 - type: Transform -- proto: FoodBreadPlain - entities: - - uid: 7542 - components: - - pos: -36.085228,11.652148 - parent: 1 - type: Transform -- proto: FoodBurgerMime - entities: - - uid: 7785 - components: - - pos: -13.67487,-28.683897 - parent: 1 - type: Transform -- proto: FoodBurgerRobot - entities: - - uid: 12427 - components: - - pos: -12.540917,-11.312796 - parent: 1 - type: Transform -- proto: FoodCakeClown - entities: - - uid: 7789 - components: - - pos: -9.479882,-28.394722 - parent: 1 - type: Transform -- proto: FoodCakeSuppermatterSlice - entities: - - uid: 12541 - components: - - pos: -31.503586,-35.411694 - parent: 1 - type: Transform -- proto: FoodCartCold - entities: - - uid: 1793 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,3.5 - parent: 1 - type: Transform -- proto: FoodCartHot - entities: - - uid: 1795 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,0.5 - parent: 1 - type: Transform -- proto: FoodContainerEgg - entities: - - uid: 6015 - components: - - pos: 0.6686959,0.7498474 - parent: 1 - type: Transform -- proto: FoodDonutJellySlugcat - entities: - - uid: 12540 - components: - - pos: 17.536278,36.515877 - parent: 1 - type: Transform -- proto: FoodDonutJellySpaceman - entities: - - uid: 12355 - components: - - pos: 47.534332,36.51474 - parent: 1 - type: Transform -- proto: FoodFrozenSandwichStrawberry - entities: - - uid: 12289 - components: - - pos: -13.495724,52.499588 - parent: 1 - type: Transform -- proto: FoodFrozenSnowconeClown - entities: - - uid: 7792 - components: - - pos: -9.261132,-30.191597 - parent: 1 - type: Transform -- proto: FoodFrozenSnowconeMime - entities: - - uid: 7784 - components: - - pos: -13.67487,-29.449522 - parent: 1 - type: Transform -- proto: FoodMeatClown - entities: - - uid: 7793 - components: - - pos: -9.698632,-30.535347 - parent: 1 - type: Transform -- proto: FoodPieBananaCream - entities: - - uid: 7794 - components: - - pos: -9.370507,-31.394722 - parent: 1 - type: Transform - - uid: 7795 - components: - - pos: -9.370507,-31.394722 - parent: 1 - type: Transform - - uid: 7796 - components: - - pos: -9.370507,-31.394722 - parent: 1 - type: Transform - - uid: 7797 - components: - - pos: -9.370507,-31.394722 - parent: 1 - type: Transform - - uid: 7798 - components: - - pos: -9.370507,-31.394722 - parent: 1 - type: Transform -- proto: FoodTartMime - entities: - - uid: 7783 - components: - - pos: -13.20612,-28.277647 - parent: 1 - type: Transform -- proto: Fork - entities: - - uid: 5985 - components: - - pos: 1.2974858,10.5533285 - parent: 1 - type: Transform -- proto: GasAnalyzer - entities: - - uid: 6339 - components: - - pos: -14.47985,-9.759103 - parent: 1 - type: Transform -- proto: GasFilterFlipped - entities: - - uid: 6840 - components: - - rot: 3.141592653589793 rad - pos: 38.5,-17.5 - parent: 1 - type: Transform - - uid: 6841 - components: - - name: plasma filter - type: MetaData - - rot: 3.141592653589793 rad - pos: 38.5,-15.5 - parent: 1 - type: Transform - - uid: 6842 - components: - - name: water vapor filter - type: MetaData - - rot: 3.141592653589793 rad - pos: 38.5,-13.5 - parent: 1 - type: Transform - - uid: 6843 - components: - - name: n2o filter - type: MetaData - - rot: 3.141592653589793 rad - pos: 38.5,-11.5 - parent: 1 - type: Transform - - uid: 6844 - components: - - name: co2 filter - type: MetaData - - rot: 3.141592653589793 rad - pos: 38.5,-9.5 - parent: 1 - type: Transform - - uid: 6845 - components: - - name: o2 filter - type: MetaData - - rot: 3.141592653589793 rad - pos: 38.5,-7.5 - parent: 1 - type: Transform - - uid: 6846 - components: - - name: n2 filter - type: MetaData - - rot: 3.141592653589793 rad - pos: 38.5,-5.5 - parent: 1 - type: Transform -- proto: GasMinerCarbonDioxide - entities: - - uid: 6804 - components: - - pos: 44.5,-9.5 - parent: 1 - type: Transform -- proto: GasMinerNitrogenStation - entities: - - uid: 6808 - components: - - pos: 44.5,-5.5 - parent: 1 - type: Transform -- proto: GasMinerOxygenStation - entities: - - uid: 6807 - components: - - pos: 44.5,-7.5 - parent: 1 - type: Transform -- proto: GasMinerPlasma - entities: - - uid: 6806 - components: - - pos: 44.5,-15.5 - parent: 1 - type: Transform -- proto: GasMinerWaterVapor - entities: - - uid: 6805 - components: - - pos: 44.5,-13.5 - parent: 1 - type: Transform -- proto: GasMixer - entities: - - uid: 6942 - components: - - name: n2 + o2 to mix - type: MetaData - - pos: 37.5,-7.5 - parent: 1 - type: Transform -- proto: GasMixerFlipped - entities: - - uid: 6932 - components: - - name: distro mixer - type: MetaData - - rot: 3.141592653589793 rad - pos: 35.5,-6.5 - parent: 1 - type: Transform - - inletTwoConcentration: 0.22000003 - inletOneConcentration: 0.78 - type: GasMixer - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6943 - components: - - name: co2 to mix - type: MetaData - - rot: 3.141592653589793 rad - pos: 37.5,-8.5 - parent: 1 - type: Transform - - uid: 6944 - components: - - name: n2o to mix - type: MetaData - - rot: 3.141592653589793 rad - pos: 37.5,-10.5 - parent: 1 - type: Transform - - uid: 6945 - components: - - name: water vapor to mix - type: MetaData - - rot: 3.141592653589793 rad - pos: 37.5,-12.5 - parent: 1 - type: Transform - - uid: 6946 - components: - - name: plasma to mix - type: MetaData - - rot: 3.141592653589793 rad - pos: 37.5,-14.5 - parent: 1 - type: Transform - - uid: 6947 - components: - - rot: 3.141592653589793 rad - pos: 37.5,-16.5 - parent: 1 - type: Transform -- proto: GasOutletInjector - entities: - - uid: 1436 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-13.5 - parent: 1 - type: Transform - - uid: 6815 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-17.5 - parent: 1 - type: Transform - - uid: 6816 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-15.5 - parent: 1 - type: Transform - - uid: 6817 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-11.5 - parent: 1 - type: Transform - - uid: 6818 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-9.5 - parent: 1 - type: Transform - - uid: 6819 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-7.5 - parent: 1 - type: Transform - - uid: 6821 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-5.5 - parent: 1 - type: Transform - - uid: 6959 - components: - - rot: 3.141592653589793 rad - pos: 36.5,-22.5 - parent: 1 - type: Transform -- proto: GasPassiveVent - entities: - - uid: 6119 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-8.5 - parent: 1 - type: Transform - - uid: 6120 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-10.5 - parent: 1 - type: Transform - - uid: 6121 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-12.5 - parent: 1 - type: Transform - - uid: 6122 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-14.5 - parent: 1 - type: Transform - - uid: 6839 - components: - - rot: 3.141592653589793 rad - pos: 38.5,-20.5 - parent: 1 - type: Transform - - uid: 6875 - components: - - rot: 3.141592653589793 rad - pos: 45.5,-5.5 - parent: 1 - type: Transform - - uid: 6876 - components: - - rot: 3.141592653589793 rad - pos: 45.5,-7.5 - parent: 1 - type: Transform - - uid: 6877 - components: - - rot: 3.141592653589793 rad - pos: 45.5,-9.5 - parent: 1 - type: Transform - - uid: 6878 - components: - - rot: 3.141592653589793 rad - pos: 45.5,-11.5 - parent: 1 - type: Transform - - uid: 6879 - components: - - rot: 3.141592653589793 rad - pos: 45.5,-13.5 - parent: 1 - type: Transform - - uid: 6880 - components: - - rot: 3.141592653589793 rad - pos: 45.5,-15.5 - parent: 1 - type: Transform - - uid: 6881 - components: - - rot: 3.141592653589793 rad - pos: 45.5,-17.5 - parent: 1 - type: Transform - - uid: 6958 - components: - - rot: 3.141592653589793 rad - pos: 34.5,-22.5 - parent: 1 - type: Transform - - uid: 6992 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-3.5 - parent: 1 - type: Transform -- proto: GasPipeBend - entities: - - uid: 6882 - components: - - pos: 45.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6883 - components: - - pos: 45.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6884 - components: - - pos: 45.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6885 - components: - - pos: 45.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6886 - components: - - pos: 45.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6887 - components: - - pos: 45.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6888 - components: - - pos: 45.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6931 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6936 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6941 - components: - - rot: 3.141592653589793 rad - pos: 36.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6948 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6949 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6950 - components: - - rot: 3.141592653589793 rad - pos: 35.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6979 - components: - - pos: 35.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6982 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10159 - components: - - rot: 3.141592653589793 rad - pos: 20.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10162 - components: - - pos: 22.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10163 - components: - - pos: 23.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10164 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10165 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10166 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10167 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10186 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10196 - components: - - pos: 12.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10201 - components: - - pos: 13.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10203 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10273 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10274 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10275 - components: - - pos: 25.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10276 - components: - - rot: 3.141592653589793 rad - pos: 25.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10322 - components: - - pos: 38.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10323 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10353 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10354 - components: - - rot: -1.5707963267948966 rad - pos: 46.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10401 - components: - - rot: 3.141592653589793 rad - pos: 45.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10408 - components: - - pos: 46.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10419 - components: - - pos: 45.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10425 - components: - - pos: 44.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10437 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10440 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10456 - components: - - pos: 9.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10457 - components: - - rot: 3.141592653589793 rad - pos: 8.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10458 - components: - - pos: 8.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10575 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10580 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10607 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10624 - components: - - pos: 32.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10637 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10646 - components: - - pos: 33.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10682 - components: - - pos: 4.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10686 - components: - - pos: 5.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10687 - components: - - rot: 3.141592653589793 rad - pos: 1.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10688 - components: - - rot: 3.141592653589793 rad - pos: 0.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10699 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10700 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10717 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10719 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10734 - components: - - pos: 1.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10752 - components: - - rot: 3.141592653589793 rad - pos: -5.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10753 - components: - - pos: -5.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10800 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10801 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10802 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10820 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10846 - components: - - rot: 3.141592653589793 rad - pos: -12.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10847 - components: - - rot: 3.141592653589793 rad - pos: -11.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10906 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10907 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10954 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10955 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11070 - components: - - pos: -35.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11071 - components: - - rot: 3.141592653589793 rad - pos: -37.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11072 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11078 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11079 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11109 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11120 - components: - - rot: 3.141592653589793 rad - pos: -41.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11130 - components: - - rot: 3.141592653589793 rad - pos: -39.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11210 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11211 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11226 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11227 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11228 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11318 - components: - - pos: -16.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11319 - components: - - pos: -18.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11420 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11422 - components: - - pos: -13.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11483 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11484 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11530 - components: - - pos: 10.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11532 - components: - - pos: 11.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11533 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11536 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11537 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11544 - components: - - pos: 9.5,-17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11555 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12142 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12143 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12144 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12145 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12146 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12149 - components: - - pos: -9.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12152 - components: - - pos: -7.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12153 - components: - - rot: 3.141592653589793 rad - pos: -10.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12160 - components: - - pos: 0.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12161 - components: - - pos: -0.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12162 - components: - - pos: -1.5,39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12163 - components: - - pos: -2.5,41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12164 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12165 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12166 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,40.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12167 - components: - - rot: 3.141592653589793 rad - pos: -6.5,41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12168 - components: - - rot: 3.141592653589793 rad - pos: -2.5,39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12169 - components: - - rot: 3.141592653589793 rad - pos: -1.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12170 - components: - - rot: 3.141592653589793 rad - pos: -0.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12171 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12172 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,40.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12173 - components: - - rot: 3.141592653589793 rad - pos: -10.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12174 - components: - - pos: -8.5,42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12175 - components: - - rot: 3.141592653589793 rad - pos: -9.5,42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12177 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12199 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12229 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12230 - components: - - pos: -4.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12231 - components: - - rot: 3.141592653589793 rad - pos: -8.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12232 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12240 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12241 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12242 - components: - - rot: 3.141592653589793 rad - pos: -9.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12243 - components: - - rot: 3.141592653589793 rad - pos: -10.5,49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12244 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12245 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12246 - components: - - pos: -3.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12247 - components: - - pos: -2.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12262 - components: - - pos: -9.5,49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12263 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12264 - components: - - rot: 3.141592653589793 rad - pos: -3.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12265 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- proto: GasPipeFourway - entities: - - uid: 1837 - components: - - pos: 9.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10454 - components: - - pos: 7.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10519 - components: - - pos: 21.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10728 - components: - - pos: 0.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10844 - components: - - pos: -12.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10877 - components: - - pos: -15.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10926 - components: - - pos: -16.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11051 - components: - - pos: -35.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11191 - components: - - pos: -6.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11197 - components: - - pos: -8.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11256 - components: - - pos: -15.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11522 - components: - - pos: 4.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12196 - components: - - pos: -7.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12249 - components: - - pos: -2.5,52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- proto: GasPipeStraight - entities: - - uid: 926 - components: - - pos: 33.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 949 - components: - - pos: 33.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 3351 - components: - - pos: 38.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5007 - components: - - rot: 3.141592653589793 rad - pos: 42.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6103 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-14.5 - parent: 1 - type: Transform - - uid: 6105 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-12.5 - parent: 1 - type: Transform - - uid: 6111 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-8.5 - parent: 1 - type: Transform - - uid: 6112 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-10.5 - parent: 1 - type: Transform - - uid: 6113 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-12.5 - parent: 1 - type: Transform - - uid: 6114 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-14.5 - parent: 1 - type: Transform - - uid: 6115 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6116 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6117 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6118 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6824 - components: - - rot: 3.141592653589793 rad - pos: 38.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6825 - components: - - rot: 3.141592653589793 rad - pos: 38.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6826 - components: - - rot: 3.141592653589793 rad - pos: 38.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6827 - components: - - rot: 3.141592653589793 rad - pos: 38.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6828 - components: - - rot: 3.141592653589793 rad - pos: 38.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6829 - components: - - rot: 3.141592653589793 rad - pos: 38.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6831 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6832 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6833 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6834 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6835 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6836 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6837 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6838 - components: - - pos: 38.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6847 - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6848 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6849 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6850 - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6851 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6852 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6853 - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6854 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6855 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6856 - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6857 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6858 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6859 - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6860 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6861 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6862 - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6863 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6864 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6865 - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6866 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6867 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6889 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6890 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6891 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6892 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6893 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6894 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6895 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6896 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6897 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6898 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6899 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6900 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6901 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6902 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6903 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6904 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6905 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6906 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6907 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6908 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6909 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6910 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6911 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6912 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6913 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6914 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6915 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6916 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6917 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6918 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6919 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6920 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6921 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6922 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6923 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6924 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6925 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6926 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6927 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6928 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6929 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6930 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6933 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6934 - components: - - pos: 35.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6935 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6939 - components: - - pos: 36.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6940 - components: - - pos: 36.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6951 - components: - - pos: 36.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6952 - components: - - pos: 36.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6953 - components: - - pos: 36.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6954 - components: - - rot: 3.141592653589793 rad - pos: 34.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6955 - components: - - rot: 3.141592653589793 rad - pos: 34.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6956 - components: - - rot: 3.141592653589793 rad - pos: 34.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6957 - components: - - rot: 3.141592653589793 rad - pos: 34.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6960 - components: - - rot: 3.141592653589793 rad - pos: 37.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6961 - components: - - rot: 3.141592653589793 rad - pos: 37.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6962 - components: - - rot: 3.141592653589793 rad - pos: 37.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6963 - components: - - rot: 3.141592653589793 rad - pos: 37.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6965 - components: - - rot: 3.141592653589793 rad - pos: 35.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6966 - components: - - rot: 3.141592653589793 rad - pos: 35.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6981 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6991 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8768 - components: - - pos: -16.5,-48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8769 - components: - - pos: -16.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8770 - components: - - pos: -16.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8771 - components: - - pos: -16.5,-28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8772 - components: - - pos: -16.5,-29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8773 - components: - - pos: -16.5,-30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8774 - components: - - pos: -16.5,-31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8775 - components: - - pos: -16.5,-32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8776 - components: - - pos: -16.5,-33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8777 - components: - - pos: -16.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8778 - components: - - pos: -16.5,-35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8779 - components: - - pos: -16.5,-36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8780 - components: - - pos: -16.5,-37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8781 - components: - - pos: -16.5,-38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8782 - components: - - pos: -16.5,-39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8783 - components: - - pos: -16.5,-40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8784 - components: - - pos: -16.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8785 - components: - - pos: -16.5,-42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8786 - components: - - pos: -16.5,-43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8787 - components: - - pos: -16.5,-44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8788 - components: - - pos: -16.5,-45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8789 - components: - - pos: -16.5,-46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8790 - components: - - pos: -16.5,-47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8791 - components: - - pos: -15.5,-47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8792 - components: - - pos: -15.5,-48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8793 - components: - - pos: -14.5,-45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8794 - components: - - pos: -14.5,-45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10091 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10092 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10093 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10094 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10095 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10096 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10097 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10098 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10099 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10100 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10105 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10106 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10107 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10108 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10109 - components: - - rot: 3.141592653589793 rad - pos: 28.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10110 - components: - - rot: 3.141592653589793 rad - pos: 28.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10111 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10118 - components: - - pos: 7.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10119 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10120 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10121 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10122 - components: - - rot: 3.141592653589793 rad - pos: 23.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10123 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10124 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10125 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10126 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10127 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10128 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10129 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10130 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10131 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10132 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10133 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10134 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10135 - components: - - pos: 16.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10136 - components: - - pos: 16.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10137 - components: - - pos: 18.5,-12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10146 - components: - - pos: 23.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10147 - components: - - pos: 22.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10148 - components: - - pos: 23.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10150 - components: - - pos: 23.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10151 - components: - - pos: 23.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10152 - components: - - pos: 23.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10154 - components: - - pos: 22.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10155 - components: - - pos: 22.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10156 - components: - - pos: 22.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10157 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10158 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10168 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10169 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10170 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10171 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10172 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10173 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10174 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10175 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10176 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10177 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10178 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10179 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10180 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10181 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10182 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10183 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10184 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10185 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10187 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10188 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10189 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10191 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10193 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10195 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10207 - components: - - pos: 9.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10208 - components: - - pos: 9.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10209 - components: - - pos: 7.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10211 - components: - - pos: 7.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10212 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10213 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10214 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10215 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10216 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10221 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10222 - components: - - rot: 3.141592653589793 rad - pos: 9.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10223 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10224 - components: - - rot: 3.141592653589793 rad - pos: 7.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10228 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10229 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10231 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10232 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10233 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10234 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10235 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10238 - components: - - pos: 9.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10239 - components: - - pos: 9.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10240 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10241 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10242 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10243 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10244 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10245 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10249 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10250 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10251 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10252 - components: - - pos: 7.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10253 - components: - - pos: 9.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10256 - components: - - rot: 3.141592653589793 rad - pos: 7.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10257 - components: - - rot: 3.141592653589793 rad - pos: 7.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10258 - components: - - rot: 3.141592653589793 rad - pos: 7.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10259 - components: - - rot: 3.141592653589793 rad - pos: 9.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10260 - components: - - rot: 3.141592653589793 rad - pos: 9.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10261 - components: - - rot: 3.141592653589793 rad - pos: 9.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10262 - components: - - rot: 3.141592653589793 rad - pos: 7.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10263 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10264 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10266 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10267 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10268 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10269 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10278 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10280 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10281 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10282 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10283 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10284 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10285 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10286 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10287 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10288 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10289 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10290 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10291 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10292 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10293 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10294 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10295 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10296 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10297 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10298 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10299 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10300 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10301 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10302 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10303 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10304 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10305 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10306 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10307 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10308 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10309 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10311 - components: - - pos: 30.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10312 - components: - - pos: 30.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10313 - components: - - pos: 30.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10314 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10315 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10316 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10317 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10318 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10319 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10320 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10321 - components: - - rot: 3.141592653589793 rad - pos: 38.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10324 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10325 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10326 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10327 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10328 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10329 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10330 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10331 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10332 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10333 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10334 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10335 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10336 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10337 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10338 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10339 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10340 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10341 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10342 - components: - - rot: 1.5707963267948966 rad - pos: 40.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10343 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10344 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10345 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10346 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10347 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10348 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10349 - components: - - pos: 46.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10350 - components: - - pos: 46.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10351 - components: - - pos: 46.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10352 - components: - - pos: 44.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10357 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10366 - components: - - pos: 46.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10367 - components: - - pos: 46.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10368 - components: - - pos: 46.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10369 - components: - - pos: 46.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10370 - components: - - pos: 46.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10371 - components: - - pos: 46.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10372 - components: - - pos: 46.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10373 - components: - - pos: 46.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10374 - components: - - pos: 46.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10375 - components: - - pos: 46.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10376 - components: - - pos: 46.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10377 - components: - - pos: 44.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10378 - components: - - pos: 44.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10379 - components: - - pos: 44.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10380 - components: - - pos: 44.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10381 - components: - - pos: 44.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10382 - components: - - pos: 44.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10383 - components: - - pos: 44.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10384 - components: - - pos: 44.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10385 - components: - - pos: 44.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10392 - components: - - pos: 44.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10393 - components: - - pos: 46.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10394 - components: - - pos: 46.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10395 - components: - - pos: 46.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10396 - components: - - pos: 46.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10397 - components: - - pos: 44.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10398 - components: - - pos: 44.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10399 - components: - - pos: 44.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10400 - components: - - pos: 44.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10404 - components: - - rot: 3.141592653589793 rad - pos: 44.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10405 - components: - - rot: 3.141592653589793 rad - pos: 44.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10406 - components: - - rot: 3.141592653589793 rad - pos: 44.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10407 - components: - - rot: 3.141592653589793 rad - pos: 45.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10409 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10410 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10411 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10412 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10415 - components: - - pos: 44.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10416 - components: - - rot: 3.141592653589793 rad - pos: 43.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10417 - components: - - rot: 3.141592653589793 rad - pos: 42.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10418 - components: - - rot: 3.141592653589793 rad - pos: 42.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10420 - components: - - rot: 3.141592653589793 rad - pos: 43.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10421 - components: - - rot: 3.141592653589793 rad - pos: 45.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10422 - components: - - rot: 3.141592653589793 rad - pos: 43.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10423 - components: - - pos: 7.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10424 - components: - - pos: 7.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10426 - components: - - rot: 3.141592653589793 rad - pos: 44.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10427 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10429 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10430 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10434 - components: - - pos: 43.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10435 - components: - - pos: 43.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10438 - components: - - pos: 43.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10439 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10441 - components: - - pos: 9.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10443 - components: - - pos: 9.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10444 - components: - - rot: 3.141592653589793 rad - pos: 42.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10445 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10446 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10452 - components: - - pos: 9.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10455 - components: - - rot: 3.141592653589793 rad - pos: 9.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10460 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10461 - components: - - rot: 3.141592653589793 rad - pos: 7.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10462 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10463 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10464 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10465 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10466 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10469 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10470 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10471 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10472 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10473 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10476 - components: - - rot: 3.141592653589793 rad - pos: 12.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10477 - components: - - rot: 3.141592653589793 rad - pos: 12.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10478 - components: - - rot: 3.141592653589793 rad - pos: 12.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10480 - components: - - rot: 3.141592653589793 rad - pos: 11.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10481 - components: - - rot: 3.141592653589793 rad - pos: 11.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10482 - components: - - rot: 3.141592653589793 rad - pos: 11.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10483 - components: - - rot: 3.141592653589793 rad - pos: 11.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10485 - components: - - pos: 12.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10486 - components: - - pos: 12.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10487 - components: - - pos: 12.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10488 - components: - - pos: 11.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10489 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10490 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10491 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10496 - components: - - pos: 14.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10497 - components: - - pos: 15.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10498 - components: - - pos: 15.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10499 - components: - - pos: 15.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10500 - components: - - pos: 17.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10501 - components: - - pos: 18.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10502 - components: - - pos: 18.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10503 - components: - - pos: 18.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10504 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10505 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10506 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10508 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10515 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10516 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10517 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10521 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10522 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10523 - components: - - rot: 3.141592653589793 rad - pos: 21.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10524 - components: - - rot: 3.141592653589793 rad - pos: 21.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10525 - components: - - rot: 3.141592653589793 rad - pos: 21.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10526 - components: - - rot: 3.141592653589793 rad - pos: 21.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10527 - components: - - rot: 3.141592653589793 rad - pos: 20.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10528 - components: - - rot: 3.141592653589793 rad - pos: 20.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10529 - components: - - rot: 3.141592653589793 rad - pos: 22.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10530 - components: - - rot: 3.141592653589793 rad - pos: 22.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10531 - components: - - rot: 3.141592653589793 rad - pos: 22.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10532 - components: - - rot: 3.141592653589793 rad - pos: 21.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10533 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10534 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10535 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10536 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10537 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10538 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10539 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10540 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10541 - components: - - pos: 26.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10542 - components: - - pos: 26.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10545 - components: - - pos: 26.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10546 - components: - - pos: 27.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10553 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10554 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10555 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10557 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10558 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10559 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10560 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10563 - components: - - rot: 3.141592653589793 rad - pos: 31.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10564 - components: - - rot: 3.141592653589793 rad - pos: 31.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10565 - components: - - rot: 3.141592653589793 rad - pos: 31.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10566 - components: - - rot: 3.141592653589793 rad - pos: 31.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10567 - components: - - rot: 3.141592653589793 rad - pos: 33.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10568 - components: - - rot: 3.141592653589793 rad - pos: 33.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10569 - components: - - rot: 3.141592653589793 rad - pos: 33.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10570 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10571 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10572 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10573 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10574 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10577 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10578 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10579 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10583 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10584 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10585 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10586 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10587 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10588 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10589 - components: - - rot: 3.141592653589793 rad - pos: 33.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10590 - components: - - rot: 3.141592653589793 rad - pos: 33.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10591 - components: - - rot: 3.141592653589793 rad - pos: 33.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10592 - components: - - rot: 3.141592653589793 rad - pos: 33.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10593 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10594 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10595 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10596 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10597 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10598 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10608 - components: - - rot: 3.141592653589793 rad - pos: 32.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10609 - components: - - rot: 3.141592653589793 rad - pos: 32.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10610 - components: - - rot: 3.141592653589793 rad - pos: 32.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10611 - components: - - rot: 3.141592653589793 rad - pos: 32.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10612 - components: - - rot: 3.141592653589793 rad - pos: 32.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10613 - components: - - rot: 3.141592653589793 rad - pos: 32.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10614 - components: - - rot: 3.141592653589793 rad - pos: 32.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10616 - components: - - rot: 3.141592653589793 rad - pos: 33.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10617 - components: - - rot: 3.141592653589793 rad - pos: 33.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10618 - components: - - rot: 3.141592653589793 rad - pos: 33.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10619 - components: - - rot: 3.141592653589793 rad - pos: 33.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10620 - components: - - rot: 3.141592653589793 rad - pos: 33.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10621 - components: - - rot: 3.141592653589793 rad - pos: 33.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10622 - components: - - rot: 3.141592653589793 rad - pos: 33.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10625 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10626 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10627 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10628 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10629 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10630 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10631 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10632 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10633 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10634 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10635 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10636 - components: - - pos: 32.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10638 - components: - - rot: 3.141592653589793 rad - pos: 28.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10644 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10645 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10648 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10649 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10650 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10652 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10653 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10655 - components: - - pos: 30.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10656 - components: - - pos: 28.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10657 - components: - - pos: 28.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10666 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10667 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10670 - components: - - pos: 5.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10671 - components: - - pos: 5.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10672 - components: - - pos: 5.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10673 - components: - - pos: 5.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10674 - components: - - pos: 5.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10676 - components: - - pos: 4.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10677 - components: - - pos: 4.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10678 - components: - - pos: 4.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10679 - components: - - pos: 4.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10680 - components: - - pos: 4.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10681 - components: - - pos: 4.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10685 - components: - - rot: 3.141592653589793 rad - pos: 5.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10689 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10690 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10691 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10692 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10693 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10694 - components: - - pos: 0.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10695 - components: - - pos: 3.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10701 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10702 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10703 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10704 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10705 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10708 - components: - - pos: 1.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10709 - components: - - pos: 1.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10710 - components: - - pos: 0.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10711 - components: - - pos: 0.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10712 - components: - - pos: 0.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10715 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10716 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10718 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10721 - components: - - pos: 4.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10722 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10723 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10730 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10731 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10732 - components: - - rot: 3.141592653589793 rad - pos: 1.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10733 - components: - - rot: 3.141592653589793 rad - pos: 1.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10735 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10737 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10740 - components: - - rot: 3.141592653589793 rad - pos: -2.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10741 - components: - - rot: 3.141592653589793 rad - pos: -2.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10742 - components: - - rot: 3.141592653589793 rad - pos: -2.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10743 - components: - - rot: 3.141592653589793 rad - pos: -2.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10744 - components: - - rot: 3.141592653589793 rad - pos: -2.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10745 - components: - - rot: 3.141592653589793 rad - pos: -3.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10746 - components: - - rot: 3.141592653589793 rad - pos: -3.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10747 - components: - - rot: 3.141592653589793 rad - pos: -3.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10754 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10755 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10756 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10757 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10759 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10760 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10761 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10766 - components: - - rot: 3.141592653589793 rad - pos: 4.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10767 - components: - - rot: 3.141592653589793 rad - pos: 4.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10768 - components: - - rot: 3.141592653589793 rad - pos: 4.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10769 - components: - - rot: 3.141592653589793 rad - pos: 4.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10770 - components: - - rot: 3.141592653589793 rad - pos: 4.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10771 - components: - - rot: 3.141592653589793 rad - pos: 4.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10774 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10775 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10776 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10777 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10779 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10780 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10781 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10782 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10783 - components: - - pos: 0.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10787 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10788 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10789 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10790 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10791 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10792 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10793 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10795 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10796 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10797 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10798 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10799 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10804 - components: - - rot: 3.141592653589793 rad - pos: 0.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10805 - components: - - rot: 3.141592653589793 rad - pos: 0.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10807 - components: - - rot: 3.141592653589793 rad - pos: 0.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10808 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10809 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10810 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10811 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10816 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10817 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10818 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10819 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10822 - components: - - pos: -4.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10823 - components: - - pos: -6.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10824 - components: - - pos: -6.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10825 - components: - - pos: -4.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10826 - components: - - pos: -4.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10827 - components: - - pos: -6.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10830 - components: - - rot: 3.141592653589793 rad - pos: -4.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10831 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10832 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10833 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10834 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10835 - components: - - pos: -6.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10838 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10839 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10840 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10841 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10848 - components: - - rot: 3.141592653589793 rad - pos: -12.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10849 - components: - - rot: 3.141592653589793 rad - pos: -12.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10850 - components: - - rot: 3.141592653589793 rad - pos: -12.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10851 - components: - - rot: 3.141592653589793 rad - pos: -12.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10852 - components: - - rot: 3.141592653589793 rad - pos: -11.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10853 - components: - - rot: 3.141592653589793 rad - pos: -11.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10856 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10857 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10858 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10859 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10860 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10861 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10862 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10865 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10866 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10867 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10868 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10869 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10870 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10871 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10873 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10874 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10881 - components: - - rot: 3.141592653589793 rad - pos: -14.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10882 - components: - - rot: 3.141592653589793 rad - pos: -14.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10883 - components: - - rot: 3.141592653589793 rad - pos: -15.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10884 - components: - - rot: 3.141592653589793 rad - pos: -15.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10885 - components: - - rot: 3.141592653589793 rad - pos: -15.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10886 - components: - - rot: 3.141592653589793 rad - pos: -20.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10887 - components: - - rot: 3.141592653589793 rad - pos: -20.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10888 - components: - - rot: 3.141592653589793 rad - pos: -21.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10889 - components: - - rot: 3.141592653589793 rad - pos: -21.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10890 - components: - - rot: 3.141592653589793 rad - pos: -21.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10891 - components: - - rot: 3.141592653589793 rad - pos: -16.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10892 - components: - - rot: 3.141592653589793 rad - pos: -16.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10893 - components: - - rot: 3.141592653589793 rad - pos: -16.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10894 - components: - - rot: 3.141592653589793 rad - pos: -15.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10895 - components: - - rot: 3.141592653589793 rad - pos: -15.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10896 - components: - - rot: 3.141592653589793 rad - pos: -12.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10897 - components: - - rot: 3.141592653589793 rad - pos: -12.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10898 - components: - - rot: 3.141592653589793 rad - pos: -12.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10904 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10909 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10910 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10911 - components: - - pos: -23.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10912 - components: - - pos: -23.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10913 - components: - - pos: -23.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10914 - components: - - pos: -24.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10915 - components: - - pos: -24.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10916 - components: - - pos: -25.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10917 - components: - - pos: -25.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10918 - components: - - pos: -24.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10919 - components: - - pos: -25.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10920 - components: - - pos: -24.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10927 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10928 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10929 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10930 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10931 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10932 - components: - - rot: 3.141592653589793 rad - pos: -16.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10933 - components: - - rot: 3.141592653589793 rad - pos: -16.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10934 - components: - - rot: 3.141592653589793 rad - pos: -15.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10935 - components: - - rot: 3.141592653589793 rad - pos: -15.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10936 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10937 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10938 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10939 - components: - - pos: -15.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10940 - components: - - pos: -16.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10941 - components: - - pos: -16.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10942 - components: - - pos: -15.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10950 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10951 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10952 - components: - - pos: -15.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10953 - components: - - pos: -15.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10956 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10957 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10958 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10959 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10960 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10961 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10962 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10963 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10964 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10965 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10966 - components: - - pos: -16.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10973 - components: - - pos: -4.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10974 - components: - - pos: -4.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10975 - components: - - pos: -4.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10976 - components: - - pos: -4.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10977 - components: - - pos: -6.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10978 - components: - - pos: -6.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10979 - components: - - pos: -6.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10980 - components: - - pos: -6.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10985 - components: - - rot: 3.141592653589793 rad - pos: -4.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10986 - components: - - rot: 3.141592653589793 rad - pos: -4.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10987 - components: - - rot: 3.141592653589793 rad - pos: -4.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10988 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10989 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10990 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10991 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10993 - components: - - pos: -6.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10996 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10997 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10998 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10999 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11000 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11001 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11002 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11003 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11004 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11005 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11006 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11007 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11008 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11009 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11010 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11011 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11012 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11013 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11014 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11015 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11016 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11017 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11018 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11019 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11020 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11021 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11022 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11023 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11024 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11025 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11026 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11027 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11028 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11029 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11030 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11031 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11032 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11033 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11034 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11035 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11036 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11037 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11038 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11039 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11040 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11041 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11043 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11044 - components: - - pos: -33.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11049 - components: - - pos: -33.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11052 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11053 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11060 - components: - - pos: -35.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11061 - components: - - pos: -35.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11062 - components: - - pos: -35.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11063 - components: - - pos: -33.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11064 - components: - - pos: -33.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11065 - components: - - pos: -33.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11068 - components: - - pos: -35.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11069 - components: - - pos: -35.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11073 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11074 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11075 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11076 - components: - - pos: -33.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11077 - components: - - pos: -33.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11080 - components: - - rot: 3.141592653589793 rad - pos: -32.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11081 - components: - - rot: 3.141592653589793 rad - pos: -32.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11086 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11087 - components: - - rot: 3.141592653589793 rad - pos: -37.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11088 - components: - - rot: 3.141592653589793 rad - pos: -37.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11089 - components: - - pos: -36.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11090 - components: - - pos: -36.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11092 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11093 - components: - - rot: 3.141592653589793 rad - pos: -36.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11095 - components: - - rot: 3.141592653589793 rad - pos: -37.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11096 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11097 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11098 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11099 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11100 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11101 - components: - - pos: -41.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11102 - components: - - pos: -41.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11103 - components: - - pos: -41.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11104 - components: - - pos: -41.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11105 - components: - - pos: -41.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11106 - components: - - pos: -41.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11107 - components: - - pos: -41.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11108 - components: - - pos: -41.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11111 - components: - - rot: 3.141592653589793 rad - pos: -40.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11112 - components: - - rot: 3.141592653589793 rad - pos: -40.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11113 - components: - - rot: 3.141592653589793 rad - pos: -40.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11114 - components: - - rot: 3.141592653589793 rad - pos: -40.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11125 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11126 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11127 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11128 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11132 - components: - - rot: 3.141592653589793 rad - pos: -39.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11133 - components: - - rot: 3.141592653589793 rad - pos: -39.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11134 - components: - - rot: 3.141592653589793 rad - pos: -39.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11135 - components: - - rot: 3.141592653589793 rad - pos: -39.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11136 - components: - - rot: 3.141592653589793 rad - pos: -39.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11137 - components: - - rot: 3.141592653589793 rad - pos: -39.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11138 - components: - - rot: 3.141592653589793 rad - pos: -39.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11139 - components: - - rot: 3.141592653589793 rad - pos: -39.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11141 - components: - - rot: 3.141592653589793 rad - pos: -39.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11142 - components: - - rot: 3.141592653589793 rad - pos: -39.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11143 - components: - - rot: 3.141592653589793 rad - pos: -39.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11144 - components: - - rot: 3.141592653589793 rad - pos: -39.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11145 - components: - - rot: 3.141592653589793 rad - pos: -39.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11146 - components: - - rot: 3.141592653589793 rad - pos: -39.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11152 - components: - - rot: 3.141592653589793 rad - pos: -37.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11153 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11154 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11155 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11156 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11157 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11158 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11159 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11160 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11165 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11166 - components: - - rot: 3.141592653589793 rad - pos: -36.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11167 - components: - - rot: 3.141592653589793 rad - pos: -36.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11168 - components: - - rot: 3.141592653589793 rad - pos: -36.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11169 - components: - - rot: 3.141592653589793 rad - pos: -36.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11170 - components: - - rot: 3.141592653589793 rad - pos: -36.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11171 - components: - - rot: 3.141592653589793 rad - pos: -36.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11172 - components: - - rot: 3.141592653589793 rad - pos: -36.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11173 - components: - - rot: 3.141592653589793 rad - pos: -36.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11177 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11178 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11179 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11180 - components: - - rot: 3.141592653589793 rad - pos: -4.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11181 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11182 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11183 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11184 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11185 - components: - - rot: 3.141592653589793 rad - pos: -6.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11186 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11187 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11188 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11189 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11193 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11196 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11200 - components: - - pos: -8.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11201 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11202 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11203 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11204 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11205 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11206 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11207 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11208 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11209 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11212 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11213 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11214 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11215 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11216 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11217 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11218 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11219 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11220 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11221 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11222 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11223 - components: - - pos: -6.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11224 - components: - - pos: -6.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11225 - components: - - pos: -6.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11229 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11231 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11232 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11235 - components: - - pos: -9.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11236 - components: - - pos: -9.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11237 - components: - - pos: -9.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11238 - components: - - pos: -8.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11239 - components: - - pos: -8.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11240 - components: - - pos: -8.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11243 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11244 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11245 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11246 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11247 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11248 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11249 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11250 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11251 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11252 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11253 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11257 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11258 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11262 - components: - - pos: -15.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11263 - components: - - pos: -15.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11264 - components: - - pos: -15.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11265 - components: - - pos: -15.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11266 - components: - - pos: -15.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11267 - components: - - pos: -15.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11268 - components: - - pos: -15.5,-12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11269 - components: - - pos: -16.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11270 - components: - - pos: -16.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11271 - components: - - pos: -16.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11272 - components: - - pos: -16.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11273 - components: - - pos: -16.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11274 - components: - - pos: -16.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11277 - components: - - pos: -16.5,-14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11278 - components: - - pos: -16.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11279 - components: - - pos: -16.5,-16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11280 - components: - - pos: -15.5,-14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11281 - components: - - pos: -15.5,-15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11282 - components: - - pos: -15.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11288 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11289 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11290 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11291 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11292 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11293 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11294 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11295 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11296 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11297 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11298 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11299 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11300 - components: - - pos: -26.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11301 - components: - - pos: -26.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11302 - components: - - pos: -26.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11303 - components: - - pos: -26.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11304 - components: - - pos: -24.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11305 - components: - - pos: -24.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11306 - components: - - pos: -24.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11309 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11310 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11311 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11312 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11313 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11314 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11315 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11316 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11317 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11324 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11325 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11326 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11327 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11328 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11329 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11333 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11334 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11335 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11336 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11338 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11339 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11340 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11341 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11342 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11345 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11346 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11348 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11349 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11350 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11351 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11352 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11353 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11354 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11356 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11357 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11358 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11359 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11360 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11361 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11362 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11363 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11364 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11365 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11368 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11369 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11370 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11371 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11372 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11373 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11374 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11375 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11376 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11377 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11378 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11379 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11380 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11381 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11382 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11383 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11384 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11385 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11386 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11393 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11394 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11395 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11396 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11397 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11398 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11399 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11400 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11401 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11404 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11405 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11406 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11407 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11412 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11413 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11414 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11415 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11417 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11418 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11419 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11421 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11423 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11424 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11425 - components: - - pos: -14.5,-44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11426 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11427 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11428 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11429 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11430 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11431 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11432 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11434 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11435 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11436 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11437 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11438 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11447 - components: - - pos: -10.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11448 - components: - - pos: -10.5,-26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11449 - components: - - pos: -10.5,-27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11450 - components: - - pos: -14.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11451 - components: - - pos: -11.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11452 - components: - - pos: -11.5,-28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11453 - components: - - pos: -6.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11454 - components: - - pos: -6.5,-28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11455 - components: - - pos: -5.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11456 - components: - - pos: -5.5,-26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11457 - components: - - pos: -5.5,-27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11458 - components: - - pos: -5.5,-28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11459 - components: - - pos: -2.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11460 - components: - - pos: -2.5,-28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11461 - components: - - pos: -1.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11462 - components: - - pos: -1.5,-26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11463 - components: - - pos: -1.5,-27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11464 - components: - - pos: -1.5,-28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11465 - components: - - pos: -3.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11466 - components: - - pos: -3.5,-24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11467 - components: - - pos: -3.5,-23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11468 - components: - - pos: -3.5,-22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11469 - components: - - pos: -2.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11470 - components: - - pos: -2.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11487 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11488 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11489 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11490 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11491 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11492 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11493 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11494 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11495 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11496 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11497 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11498 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11499 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11500 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11501 - components: - - pos: -3.5,-32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11502 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11503 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11504 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11505 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11506 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11515 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11517 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11518 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11519 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11520 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11521 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11523 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11524 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11525 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11534 - components: - - pos: 4.5,-20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11535 - components: - - pos: 5.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11540 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11541 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11542 - components: - - pos: 9.5,-18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11545 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11546 - components: - - pos: 10.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11547 - components: - - pos: 10.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11548 - components: - - pos: 10.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11549 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11550 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11551 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11556 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11557 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11558 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11559 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11560 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11561 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11562 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11563 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11564 - components: - - pos: 15.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11565 - components: - - pos: 15.5,-24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11566 - components: - - pos: 15.5,-23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11567 - components: - - pos: 15.5,-22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11569 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11570 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11571 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11572 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11573 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11574 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11575 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11576 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11577 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11578 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11579 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11580 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11581 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11582 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11583 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11584 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11585 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11586 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11644 - components: - - rot: 3.141592653589793 rad - pos: -18.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12127 - components: - - pos: -14.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12128 - components: - - pos: -14.5,-41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12129 - components: - - pos: -14.5,-40.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12130 - components: - - pos: -14.5,-39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12131 - components: - - pos: -14.5,-38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12132 - components: - - pos: -14.5,-37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12133 - components: - - pos: -14.5,-36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12134 - components: - - pos: -14.5,-35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12135 - components: - - pos: -13.5,-33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12136 - components: - - pos: -13.5,-32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12137 - components: - - pos: -13.5,-31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12138 - components: - - pos: -13.5,-30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12139 - components: - - pos: -13.5,-29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12140 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12141 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12150 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12151 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12154 - components: - - rot: 3.141592653589793 rad - pos: -10.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12155 - components: - - rot: 3.141592653589793 rad - pos: 0.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12156 - components: - - rot: 3.141592653589793 rad - pos: 0.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12157 - components: - - rot: 3.141592653589793 rad - pos: 0.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12158 - components: - - rot: 3.141592653589793 rad - pos: 0.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12159 - components: - - rot: 3.141592653589793 rad - pos: 0.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12176 - components: - - rot: 3.141592653589793 rad - pos: -10.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12178 - components: - - pos: -9.5,35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12179 - components: - - pos: -9.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12180 - components: - - pos: -10.5,38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12181 - components: - - rot: 3.141592653589793 rad - pos: -8.5,41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12182 - components: - - rot: 3.141592653589793 rad - pos: -6.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12183 - components: - - rot: 3.141592653589793 rad - pos: -6.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12184 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12185 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12186 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12187 - components: - - pos: -2.5,40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12188 - components: - - pos: -1.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12189 - components: - - pos: -0.5,36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12190 - components: - - pos: 0.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12191 - components: - - pos: -9.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12192 - components: - - pos: -9.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12193 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12194 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12195 - components: - - rot: 3.141592653589793 rad - pos: -6.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12200 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12201 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12202 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12203 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12204 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12205 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12206 - components: - - pos: -6.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12208 - components: - - pos: -7.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12209 - components: - - pos: -7.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12210 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12211 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12212 - components: - - rot: 3.141592653589793 rad - pos: -7.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12214 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12215 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12216 - components: - - rot: 3.141592653589793 rad - pos: -8.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12217 - components: - - rot: 3.141592653589793 rad - pos: -8.5,51.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12218 - components: - - rot: 3.141592653589793 rad - pos: -4.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12220 - components: - - pos: -4.5,52.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12223 - components: - - rot: 3.141592653589793 rad - pos: -8.5,52.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12224 - components: - - rot: 3.141592653589793 rad - pos: -8.5,54.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12225 - components: - - rot: 3.141592653589793 rad - pos: -4.5,54.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12226 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12227 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12228 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12233 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12234 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12235 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12236 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12237 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12238 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12239 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12250 - components: - - pos: -2.5,53.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12251 - components: - - pos: -2.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12252 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12253 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12254 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12255 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12256 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12257 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12258 - components: - - rot: 3.141592653589793 rad - pos: -10.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12259 - components: - - rot: 3.141592653589793 rad - pos: -10.5,53.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12260 - components: - - rot: 3.141592653589793 rad - pos: -10.5,51.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12261 - components: - - rot: 3.141592653589793 rad - pos: -10.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12266 - components: - - pos: -2.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12267 - components: - - pos: -2.5,51.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12273 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12274 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12275 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- proto: GasPipeTJunction - entities: - - uid: 6820 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6830 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6937 - components: - - pos: 36.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6938 - components: - - pos: 37.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6974 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6975 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6983 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7022 - components: - - rot: 3.141592653589793 rad - pos: 34.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8765 - components: - - pos: -16.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8766 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 9158 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10101 - components: - - rot: 3.141592653589793 rad - pos: 28.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10102 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10103 - components: - - pos: 26.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10104 - components: - - rot: 3.141592653589793 rad - pos: 25.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10138 - components: - - rot: 3.141592653589793 rad - pos: 23.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10139 - components: - - rot: 3.141592653589793 rad - pos: 22.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10140 - components: - - pos: 18.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10141 - components: - - pos: 16.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10149 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10153 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10194 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10198 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10199 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10200 - components: - - pos: 11.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10202 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10205 - components: - - pos: 10.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10206 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10210 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10217 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10218 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10225 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10226 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10227 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10230 - components: - - pos: 3.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10254 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10255 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10265 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10270 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10271 - components: - - pos: 16.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10272 - components: - - rot: 3.141592653589793 rad - pos: 17.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10277 - components: - - rot: 3.141592653589793 rad - pos: 29.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10279 - components: - - pos: 30.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10310 - components: - - pos: 31.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10355 - components: - - rot: 3.141592653589793 rad - pos: 40.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10356 - components: - - pos: 41.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10364 - components: - - rot: -1.5707963267948966 rad - pos: 46.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10365 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10386 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10387 - components: - - rot: -1.5707963267948966 rad - pos: 46.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10402 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10403 - components: - - rot: -1.5707963267948966 rad - pos: 46.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10428 - components: - - rot: 3.141592653589793 rad - pos: 43.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10431 - components: - - rot: 3.141592653589793 rad - pos: 42.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10436 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10447 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10453 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10459 - components: - - pos: 6.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10467 - components: - - pos: 12.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10468 - components: - - pos: 11.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10479 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10484 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10492 - components: - - pos: 14.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10493 - components: - - pos: 15.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10494 - components: - - rot: 3.141592653589793 rad - pos: 17.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10495 - components: - - pos: 18.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10507 - components: - - pos: 16.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10518 - components: - - rot: 3.141592653589793 rad - pos: 20.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10520 - components: - - pos: 22.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10543 - components: - - pos: 26.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10544 - components: - - pos: 27.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10556 - components: - - rot: 3.141592653589793 rad - pos: 31.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10561 - components: - - pos: 30.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10562 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10576 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10581 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10582 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10605 - components: - - pos: 31.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10606 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10615 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10623 - components: - - rot: 3.141592653589793 rad - pos: 29.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10651 - components: - - pos: 28.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10654 - components: - - pos: 30.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10668 - components: - - rot: 3.141592653589793 rad - pos: 4.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10669 - components: - - rot: 3.141592653589793 rad - pos: 5.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10675 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10683 - components: - - rot: 3.141592653589793 rad - pos: 3.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10684 - components: - - pos: 3.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10698 - components: - - rot: 3.141592653589793 rad - pos: -0.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10713 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10714 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10720 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10729 - components: - - rot: 3.141592653589793 rad - pos: -1.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10736 - components: - - pos: -0.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10738 - components: - - pos: -2.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10739 - components: - - pos: -3.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10758 - components: - - rot: 3.141592653589793 rad - pos: -7.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10764 - components: - - pos: 4.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10765 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10784 - components: - - pos: 0.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10794 - components: - - rot: 3.141592653589793 rad - pos: 0.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10803 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10806 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10815 - components: - - rot: 3.141592653589793 rad - pos: -3.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10828 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10829 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10836 - components: - - pos: -8.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10837 - components: - - rot: 3.141592653589793 rad - pos: -8.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10845 - components: - - pos: -11.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10863 - components: - - rot: 3.141592653589793 rad - pos: -16.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10864 - components: - - pos: -17.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10872 - components: - - pos: -18.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10875 - components: - - pos: -14.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10876 - components: - - pos: -20.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10878 - components: - - pos: -21.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10905 - components: - - rot: 3.141592653589793 rad - pos: -23.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10908 - components: - - rot: 3.141592653589793 rad - pos: -24.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10925 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10946 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10947 - components: - - rot: 3.141592653589793 rad - pos: -13.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10948 - components: - - pos: -14.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10949 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10981 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10982 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10983 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10984 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10992 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11045 - components: - - rot: 3.141592653589793 rad - pos: -23.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11046 - components: - - rot: 3.141592653589793 rad - pos: -12.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11047 - components: - - pos: -13.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11048 - components: - - pos: -24.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11050 - components: - - rot: 3.141592653589793 rad - pos: -34.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11056 - components: - - rot: 3.141592653589793 rad - pos: -33.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11066 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11067 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11091 - components: - - pos: -37.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11094 - components: - - pos: -36.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11110 - components: - - rot: -1.5707963267948966 rad - pos: -40.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11115 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11116 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11117 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11118 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11119 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11131 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11140 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11161 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11164 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11190 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11192 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11194 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11198 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11199 - components: - - pos: -7.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11254 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11255 - components: - - pos: -16.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11259 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11275 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11276 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11287 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11307 - components: - - rot: 3.141592653589793 rad - pos: -24.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11308 - components: - - rot: 3.141592653589793 rad - pos: -26.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11343 - components: - - pos: 0.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11344 - components: - - pos: 2.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11347 - components: - - pos: 4.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11355 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11387 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11388 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11389 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11390 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11391 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11392 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11402 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11403 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11416 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11433 - components: - - pos: -8.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11439 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11440 - components: - - pos: -1.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11441 - components: - - pos: -2.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11442 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11443 - components: - - pos: -5.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11444 - components: - - pos: -6.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11445 - components: - - pos: -10.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11446 - components: - - pos: -11.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11485 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11486 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11513 - components: - - pos: -3.5,-31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11514 - components: - - pos: -2.5,-32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11516 - components: - - pos: 5.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11528 - components: - - pos: 9.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11529 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11531 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11543 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11553 - components: - - pos: 15.5,-21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11554 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11568 - components: - - pos: 14.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12197 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12198 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12207 - components: - - pos: -6.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12213 - components: - - pos: -7.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12219 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,51.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12221 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12222 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12248 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- proto: GasPort - entities: - - uid: 1836 - components: - - pos: 10.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 3835 - components: - - pos: 11.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6101 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-12.5 - parent: 1 - type: Transform - - uid: 6102 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-14.5 - parent: 1 - type: Transform - - uid: 6109 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-8.5 - parent: 1 - type: Transform - - uid: 6110 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-10.5 - parent: 1 - type: Transform - - uid: 6984 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-15.5 - parent: 1 - type: Transform - - uid: 6985 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-14.5 - parent: 1 - type: Transform - - uid: 6986 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-13.5 - parent: 1 - type: Transform - - uid: 7199 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-8.5 - parent: 1 - type: Transform - - uid: 7203 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-8.5 - parent: 1 - type: Transform -- proto: GasPressurePump - entities: - - uid: 3239 - components: - - name: waste pump - type: MetaData - - pos: 38.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6104 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-14.5 - parent: 1 - type: Transform - - uid: 6106 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-12.5 - parent: 1 - type: Transform - - uid: 6107 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-10.5 - parent: 1 - type: Transform - - uid: 6108 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-8.5 - parent: 1 - type: Transform - - uid: 6868 - components: - - name: n2 pump - type: MetaData - - rot: -1.5707963267948966 rad - pos: 39.5,-4.5 - parent: 1 - type: Transform - - uid: 6869 - components: - - name: o2 pump - type: MetaData - - rot: -1.5707963267948966 rad - pos: 39.5,-6.5 - parent: 1 - type: Transform - - uid: 6870 - components: - - name: co2 pump - type: MetaData - - rot: -1.5707963267948966 rad - pos: 39.5,-8.5 - parent: 1 - type: Transform - - uid: 6871 - components: - - name: n2o pump - type: MetaData - - rot: -1.5707963267948966 rad - pos: 39.5,-10.5 - parent: 1 - type: Transform - - uid: 6872 - components: - - name: water vapor pump - type: MetaData - - rot: -1.5707963267948966 rad - pos: 39.5,-12.5 - parent: 1 - type: Transform - - uid: 6873 - components: - - name: plasma pump - type: MetaData - - rot: -1.5707963267948966 rad - pos: 39.5,-14.5 - parent: 1 - type: Transform - - uid: 6874 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-16.5 - parent: 1 - type: Transform - - uid: 6964 - components: - - name: distro pump - type: MetaData - - pos: 35.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6976 - components: - - name: mix to space pump - type: MetaData - - pos: 35.5,-17.5 - parent: 1 - type: Transform - - uid: 6977 - components: - - name: mix pump - type: MetaData - - pos: 36.5,-18.5 - parent: 1 - type: Transform - - uid: 6980 - components: - - name: mix output pump - type: MetaData - - rot: 3.141592653589793 rad - pos: 34.5,-17.5 - parent: 1 - type: Transform - - uid: 10190 - components: - - pos: 10.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10192 - components: - - pos: 11.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- proto: GasThermoMachineFreezer - entities: - - uid: 7020 - components: - - pos: 34.5,-7.5 - parent: 1 - type: Transform - - uid: 7021 - components: - - pos: 34.5,-8.5 - parent: 1 - type: Transform -- proto: GasThermoMachineHeater - entities: - - uid: 6814 - components: - - pos: 34.5,-6.5 - parent: 1 - type: Transform -- proto: GasValve - entities: - - uid: 6978 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-18.5 - parent: 1 - type: Transform - - open: False - type: GasValve - - enabled: False - type: AmbientSound - - uid: 6990 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-3.5 - parent: 1 - type: Transform - - open: False - type: GasValve - - enabled: False - type: AmbientSound -- proto: GasVentPump - entities: - - uid: 7151 - components: - - pos: 34.5,-9.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 7182 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10112 - components: - - pos: 27.5,-8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10115 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10143 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10144 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-10.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10160 - components: - - pos: 20.5,-7.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10204 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10219 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10236 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10246 - components: - - rot: 3.141592653589793 rad - pos: 3.5,1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10247 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10248 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10358 - components: - - pos: 17.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10359 - components: - - pos: 29.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10360 - components: - - pos: 40.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10390 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10391 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,17.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10413 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,22.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10432 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,26.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10450 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,32.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10451 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,34.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10475 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,14.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10512 - components: - - rot: 3.141592653589793 rad - pos: 12.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10513 - components: - - rot: 3.141592653589793 rad - pos: 15.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10514 - components: - - rot: 3.141592653589793 rad - pos: 18.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10547 - components: - - rot: 3.141592653589793 rad - pos: 22.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10548 - components: - - rot: 3.141592653589793 rad - pos: 26.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10552 - components: - - pos: 20.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10600 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10602 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10604 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,17.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10661 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,25.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10662 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,27.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10663 - components: - - pos: 29.5,26.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10665 - components: - - pos: 7.5,15.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10697 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,23.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10706 - components: - - pos: -0.5,21.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10707 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,20.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10724 - components: - - pos: 3.5,30.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10725 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,29.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10748 - components: - - pos: -1.5,29.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10749 - components: - - rot: 3.141592653589793 rad - pos: -3.5,24.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10762 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,29.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10785 - components: - - rot: 3.141592653589793 rad - pos: 0.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10786 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10821 - components: - - pos: -3.5,15.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10843 - components: - - rot: 3.141592653589793 rad - pos: -8.5,8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10879 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10902 - components: - - rot: 3.141592653589793 rad - pos: -14.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10903 - components: - - rot: 3.141592653589793 rad - pos: -20.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10923 - components: - - pos: -23.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10924 - components: - - rot: 3.141592653589793 rad - pos: -24.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10943 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,15.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10944 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,15.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10967 - components: - - rot: 3.141592653589793 rad - pos: -14.5,19.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10968 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,19.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10969 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,20.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10995 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11057 - components: - - pos: -12.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11058 - components: - - pos: -23.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11059 - components: - - pos: -34.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11082 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,7.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11083 - components: - - pos: -32.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11121 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11122 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11123 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11124 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11129 - components: - - pos: -40.5,20.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11149 - components: - - rot: -1.5707963267948966 rad - pos: -40.5,8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11150 - components: - - rot: 3.141592653589793 rad - pos: -40.5,14.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11162 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11163 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-9.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11195 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11234 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-15.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11242 - components: - - pos: -9.5,-1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11261 - components: - - pos: -17.5,-4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11285 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11286 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-17.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11320 - components: - - pos: -26.5,-1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11321 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11330 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11367 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11410 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-14.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11411 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-22.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11476 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-29.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11477 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-29.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11478 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-29.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11479 - components: - - pos: -3.5,-21.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11480 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-25.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11482 - components: - - pos: -7.5,-25.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11510 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-30.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11511 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-33.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11512 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-32.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11526 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-22.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11539 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-17.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11589 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-21.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11590 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-26.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11591 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-26.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11605 - components: - - rot: 3.141592653589793 rad - pos: 16.5,9.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11608 - components: - - rot: 3.141592653589793 rad - pos: 30.5,9.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11646 - components: - - rot: 3.141592653589793 rad - pos: -17.5,8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11720 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-19.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12148 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-49.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12268 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,52.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12269 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,52.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12276 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,52.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12279 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,46.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12280 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,44.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor -- proto: GasVentScrubber - entities: - - uid: 3828 - components: - - pos: 12.5,-4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 7152 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10113 - components: - - pos: 28.5,-8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10114 - components: - - pos: 25.5,-10.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10142 - components: - - rot: 3.141592653589793 rad - pos: 18.5,-13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10145 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10161 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-7.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10197 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10220 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10237 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10361 - components: - - rot: 3.141592653589793 rad - pos: 16.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10362 - components: - - rot: 3.141592653589793 rad - pos: 31.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10363 - components: - - rot: 3.141592653589793 rad - pos: 41.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10388 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10389 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,16.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10414 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,21.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10433 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,27.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10448 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,32.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10449 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,33.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10474 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10509 - components: - - rot: 3.141592653589793 rad - pos: 11.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10510 - components: - - rot: 3.141592653589793 rad - pos: 14.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10511 - components: - - rot: 3.141592653589793 rad - pos: 17.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10549 - components: - - rot: 3.141592653589793 rad - pos: 21.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10550 - components: - - rot: 3.141592653589793 rad - pos: 27.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10551 - components: - - pos: 21.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10599 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,14.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10601 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,12.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10603 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,18.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10658 - components: - - rot: 3.141592653589793 rad - pos: 30.5,26.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10659 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,24.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10660 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,28.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10664 - components: - - rot: 3.141592653589793 rad - pos: 6.5,15.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10696 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,22.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10726 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,28.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10727 - components: - - pos: 4.5,30.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10750 - components: - - rot: 3.141592653589793 rad - pos: -2.5,24.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10751 - components: - - rot: 3.141592653589793 rad - pos: -0.5,29.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10763 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,30.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10772 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10773 - components: - - rot: 3.141592653589793 rad - pos: 4.5,1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10778 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,9.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10812 - components: - - pos: 0.5,21.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10813 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,19.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10814 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,15.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10842 - components: - - pos: -8.5,11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10880 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10899 - components: - - pos: -12.5,14.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10900 - components: - - rot: 3.141592653589793 rad - pos: -15.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10901 - components: - - rot: 3.141592653589793 rad - pos: -21.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10921 - components: - - rot: 3.141592653589793 rad - pos: -25.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10922 - components: - - pos: -24.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10945 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,14.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10970 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,18.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10971 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,21.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10972 - components: - - pos: -13.5,19.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10994 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11042 - components: - - rot: 3.141592653589793 rad - pos: -35.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11054 - components: - - rot: 3.141592653589793 rad - pos: -13.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11055 - components: - - rot: 3.141592653589793 rad - pos: -24.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11084 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11085 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11147 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,7.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11148 - components: - - pos: -39.5,20.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11151 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11174 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11175 - components: - - rot: 3.141592653589793 rad - pos: -36.5,-9.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11176 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11233 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-14.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11241 - components: - - pos: -8.5,-1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11260 - components: - - pos: -15.5,-4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11283 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11284 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-17.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11322 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11323 - components: - - pos: -24.5,-1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11331 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11332 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11337 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11366 - components: - - pos: -1.5,-8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11408 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-15.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11409 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-23.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11471 - components: - - pos: -2.5,-21.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11472 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-29.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11473 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-29.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11474 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-29.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11475 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-24.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11481 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-25.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11507 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-29.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11508 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-33.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11509 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-31.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11527 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-22.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11538 - components: - - pos: 5.5,-17.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11552 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-26.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11587 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-22.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11588 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-25.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11604 - components: - - pos: 17.5,9.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11609 - components: - - pos: 31.5,9.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11645 - components: - - rot: 3.141592653589793 rad - pos: -18.5,8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11719 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-22.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12147 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-49.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12270 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,51.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12271 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,53.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12272 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,53.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12277 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,45.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12278 - components: - - rot: 3.141592653589793 rad - pos: -7.5,44.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor -- proto: GeneratorBasic15kW - entities: - - uid: 3673 - components: - - pos: -1.5,47.5 - parent: 1 - type: Transform - - uid: 3674 - components: - - pos: -0.5,47.5 - parent: 1 - type: Transform -- proto: Girder - entities: - - uid: 1598 - components: - - pos: -10.5,-19.5 - parent: 1 - type: Transform - - uid: 1763 - components: - - pos: -25.5,19.5 - parent: 1 - type: Transform - - uid: 1788 - components: - - pos: -24.5,19.5 - parent: 1 - type: Transform - - uid: 1792 - components: - - pos: -27.5,22.5 - parent: 1 - type: Transform -- proto: GravityGenerator - entities: - - uid: 7548 - components: - - pos: -37.5,22.5 - parent: 1 - type: Transform - - charge: 100 - type: GravityGenerator - - radius: 175.75 - type: PointLight -- proto: Grille - entities: - - uid: 30 - components: - - pos: 2.5,-6.5 - parent: 1 - type: Transform - - uid: 42 - components: - - pos: 0.5,-0.5 - parent: 1 - type: Transform - - uid: 43 - components: - - pos: 1.5,-0.5 - parent: 1 - type: Transform - - uid: 53 - components: - - pos: 5.5,-6.5 - parent: 1 - type: Transform - - uid: 56 - components: - - pos: 4.5,-6.5 - parent: 1 - type: Transform - - uid: 58 - components: - - pos: 6.5,-4.5 - parent: 1 - type: Transform - - uid: 59 - components: - - pos: -3.5,-3.5 - parent: 1 - type: Transform - - uid: 65 - components: - - pos: 5.5,4.5 - parent: 1 - type: Transform - - uid: 66 - components: - - pos: 2.5,4.5 - parent: 1 - type: Transform - - uid: 67 - components: - - pos: 1.5,4.5 - parent: 1 - type: Transform - - uid: 74 - components: - - pos: -1.5,12.5 - parent: 1 - type: Transform - - uid: 76 - components: - - pos: 5.5,11.5 - parent: 1 - type: Transform - - uid: 83 - components: - - pos: 6.5,11.5 - parent: 1 - type: Transform - - uid: 85 - components: - - pos: 5.5,12.5 - parent: 1 - type: Transform - - uid: 87 - components: - - pos: 4.5,13.5 - parent: 1 - type: Transform - - uid: 88 - components: - - pos: -2.5,11.5 - parent: 1 - type: Transform - - uid: 89 - components: - - pos: -1.5,13.5 - parent: 1 - type: Transform - - uid: 90 - components: - - pos: -2.5,12.5 - parent: 1 - type: Transform - - uid: 91 - components: - - pos: 4.5,12.5 - parent: 1 - type: Transform - - uid: 92 - components: - - pos: -3.5,11.5 - parent: 1 - type: Transform - - uid: 99 - components: - - pos: 6.5,5.5 - parent: 1 - type: Transform - - uid: 100 - components: - - pos: 6.5,6.5 - parent: 1 - type: Transform - - uid: 101 - components: - - pos: -3.5,6.5 - parent: 1 - type: Transform - - uid: 102 - components: - - pos: -3.5,5.5 - parent: 1 - type: Transform - - uid: 104 - components: - - pos: 6.5,1.5 - parent: 1 - type: Transform - - uid: 105 - components: - - pos: 6.5,3.5 - parent: 1 - type: Transform - - uid: 113 - components: - - pos: 5.5,17.5 - parent: 1 - type: Transform - - uid: 114 - components: - - pos: 5.5,20.5 - parent: 1 - type: Transform - - uid: 115 - components: - - pos: 3.5,20.5 - parent: 1 - type: Transform - - uid: 116 - components: - - pos: 3.5,17.5 - parent: 1 - type: Transform - - uid: 138 - components: - - pos: -2.5,18.5 - parent: 1 - type: Transform - - uid: 139 - components: - - pos: -1.5,18.5 - parent: 1 - type: Transform - - uid: 140 - components: - - pos: -0.5,18.5 - parent: 1 - type: Transform - - uid: 141 - components: - - pos: 1.5,18.5 - parent: 1 - type: Transform - - uid: 166 - components: - - pos: -7.5,13.5 - parent: 1 - type: Transform - - uid: 167 - components: - - pos: -13.5,12.5 - parent: 1 - type: Transform - - uid: 169 - components: - - pos: -11.5,12.5 - parent: 1 - type: Transform - - uid: 173 - components: - - pos: -10.5,11.5 - parent: 1 - type: Transform - - uid: 176 - components: - - pos: -7.5,14.5 - parent: 1 - type: Transform - - uid: 177 - components: - - pos: -7.5,5.5 - parent: 1 - type: Transform - - uid: 179 - components: - - pos: -7.5,6.5 - parent: 1 - type: Transform - - uid: 181 - components: - - pos: -10.5,8.5 - parent: 1 - type: Transform - - uid: 187 - components: - - pos: -14.5,14.5 - parent: 1 - type: Transform - - uid: 196 - components: - - pos: -14.5,16.5 - parent: 1 - type: Transform - - uid: 197 - components: - - pos: -26.5,8.5 - parent: 1 - type: Transform - - uid: 210 - components: - - pos: -17.5,14.5 - parent: 1 - type: Transform - - uid: 213 - components: - - pos: -9.5,4.5 - parent: 1 - type: Transform - - uid: 214 - components: - - pos: -8.5,4.5 - parent: 1 - type: Transform - - uid: 234 - components: - - pos: -25.5,8.5 - parent: 1 - type: Transform - - uid: 240 - components: - - pos: -13.5,6.5 - parent: 1 - type: Transform - - uid: 241 - components: - - pos: -13.5,5.5 - parent: 1 - type: Transform - - uid: 242 - components: - - pos: -14.5,4.5 - parent: 1 - type: Transform - - uid: 243 - components: - - pos: -15.5,4.5 - parent: 1 - type: Transform - - uid: 244 - components: - - pos: -12.5,4.5 - parent: 1 - type: Transform - - uid: 245 - components: - - pos: -11.5,4.5 - parent: 1 - type: Transform - - uid: 246 - components: - - pos: -16.5,5.5 - parent: 1 - type: Transform - - uid: 247 - components: - - pos: -16.5,6.5 - parent: 1 - type: Transform - - uid: 248 - components: - - pos: -17.5,4.5 - parent: 1 - type: Transform - - uid: 249 - components: - - pos: -18.5,4.5 - parent: 1 - type: Transform - - uid: 250 - components: - - pos: -19.5,5.5 - parent: 1 - type: Transform - - uid: 251 - components: - - pos: -19.5,6.5 - parent: 1 - type: Transform - - uid: 252 - components: - - pos: -20.5,4.5 - parent: 1 - type: Transform - - uid: 253 - components: - - pos: -21.5,4.5 - parent: 1 - type: Transform - - uid: 266 - components: - - pos: -23.5,8.5 - parent: 1 - type: Transform - - uid: 364 - components: - - pos: -4.5,32.5 - parent: 1 - type: Transform - - uid: 365 - components: - - pos: -4.5,33.5 - parent: 1 - type: Transform - - uid: 370 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,32.5 - parent: 1 - type: Transform - - uid: 374 - components: - - pos: -3.5,33.5 - parent: 1 - type: Transform - - uid: 375 - components: - - pos: -2.5,33.5 - parent: 1 - type: Transform - - uid: 377 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,32.5 - parent: 1 - type: Transform - - uid: 383 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,31.5 - parent: 1 - type: Transform - - uid: 384 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,30.5 - parent: 1 - type: Transform - - uid: 385 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,28.5 - parent: 1 - type: Transform - - uid: 386 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,27.5 - parent: 1 - type: Transform - - uid: 405 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,32.5 - parent: 1 - type: Transform - - uid: 406 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,32.5 - parent: 1 - type: Transform - - uid: 408 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,32.5 - parent: 1 - type: Transform - - uid: 409 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,32.5 - parent: 1 - type: Transform - - uid: 416 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,28.5 - parent: 1 - type: Transform - - uid: 422 - components: - - pos: -1.5,33.5 - parent: 1 - type: Transform - - uid: 423 - components: - - pos: -0.5,33.5 - parent: 1 - type: Transform - - uid: 424 - components: - - pos: 0.5,33.5 - parent: 1 - type: Transform - - uid: 425 - components: - - pos: 0.5,32.5 - parent: 1 - type: Transform - - uid: 427 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,32.5 - parent: 1 - type: Transform - - uid: 431 - components: - - pos: -13.5,32.5 - parent: 1 - type: Transform - - uid: 449 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-3.5 - parent: 1 - type: Transform - - uid: 471 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-8.5 - parent: 1 - type: Transform - - uid: 474 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-9.5 - parent: 1 - type: Transform - - uid: 487 - components: - - rot: 3.141592653589793 rad - pos: -12.5,0.5 - parent: 1 - type: Transform - - uid: 488 - components: - - rot: 3.141592653589793 rad - pos: -11.5,0.5 - parent: 1 - type: Transform - - uid: 489 - components: - - rot: 3.141592653589793 rad - pos: -10.5,0.5 - parent: 1 - type: Transform - - uid: 490 - components: - - rot: 3.141592653589793 rad - pos: -9.5,0.5 - parent: 1 - type: Transform - - uid: 491 - components: - - rot: 3.141592653589793 rad - pos: -8.5,0.5 - parent: 1 - type: Transform - - uid: 492 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-0.5 - parent: 1 - type: Transform - - uid: 493 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-1.5 - parent: 1 - type: Transform - - uid: 494 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-2.5 - parent: 1 - type: Transform - - uid: 522 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-3.5 - parent: 1 - type: Transform - - uid: 523 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-2.5 - parent: 1 - type: Transform - - uid: 532 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-1.5 - parent: 1 - type: Transform - - uid: 533 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-0.5 - parent: 1 - type: Transform - - uid: 546 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-1.5 - parent: 1 - type: Transform - - uid: 580 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-7.5 - parent: 1 - type: Transform - - uid: 581 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-7.5 - parent: 1 - type: Transform - - uid: 583 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-10.5 - parent: 1 - type: Transform - - uid: 584 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-12.5 - parent: 1 - type: Transform - - uid: 585 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-14.5 - parent: 1 - type: Transform - - uid: 586 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-8.5 - parent: 1 - type: Transform - - uid: 596 - components: - - rot: 3.141592653589793 rad - pos: -20.5,-11.5 - parent: 1 - type: Transform - - uid: 601 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-11.5 - parent: 1 - type: Transform - - uid: 619 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-14.5 - parent: 1 - type: Transform - - uid: 620 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-13.5 - parent: 1 - type: Transform - - uid: 621 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-12.5 - parent: 1 - type: Transform - - uid: 622 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-11.5 - parent: 1 - type: Transform - - uid: 623 - components: - - rot: 3.141592653589793 rad - pos: -24.5,-4.5 - parent: 1 - type: Transform - - uid: 624 - components: - - rot: 3.141592653589793 rad - pos: -28.5,-4.5 - parent: 1 - type: Transform - - uid: 668 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,12.5 - parent: 1 - type: Transform - - uid: 669 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,15.5 - parent: 1 - type: Transform - - uid: 675 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,12.5 - parent: 1 - type: Transform - - uid: 678 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,15.5 - parent: 1 - type: Transform - - uid: 712 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,10.5 - parent: 1 - type: Transform - - uid: 713 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,9.5 - parent: 1 - type: Transform - - uid: 714 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,8.5 - parent: 1 - type: Transform - - uid: 715 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,4.5 - parent: 1 - type: Transform - - uid: 716 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,4.5 - parent: 1 - type: Transform - - uid: 717 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,4.5 - parent: 1 - type: Transform - - uid: 718 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,4.5 - parent: 1 - type: Transform - - uid: 719 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,4.5 - parent: 1 - type: Transform - - uid: 720 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,4.5 - parent: 1 - type: Transform - - uid: 722 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,7.5 - parent: 1 - type: Transform - - uid: 724 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,7.5 - parent: 1 - type: Transform - - uid: 726 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,7.5 - parent: 1 - type: Transform - - uid: 741 - components: - - rot: 3.141592653589793 rad - pos: 18.5,11.5 - parent: 1 - type: Transform - - uid: 742 - components: - - rot: 3.141592653589793 rad - pos: 19.5,11.5 - parent: 1 - type: Transform - - uid: 743 - components: - - rot: 3.141592653589793 rad - pos: 23.5,11.5 - parent: 1 - type: Transform - - uid: 744 - components: - - rot: 3.141592653589793 rad - pos: 22.5,11.5 - parent: 1 - type: Transform - - uid: 969 - components: - - pos: 28.5,31.5 - parent: 1 - type: Transform - - uid: 970 - components: - - pos: 27.5,31.5 - parent: 1 - type: Transform - - uid: 971 - components: - - pos: 26.5,31.5 - parent: 1 - type: Transform - - uid: 972 - components: - - pos: 25.5,31.5 - parent: 1 - type: Transform - - uid: 973 - components: - - pos: 24.5,31.5 - parent: 1 - type: Transform - - uid: 974 - components: - - pos: 28.5,29.5 - parent: 1 - type: Transform - - uid: 975 - components: - - pos: 29.5,29.5 - parent: 1 - type: Transform - - uid: 976 - components: - - pos: 30.5,29.5 - parent: 1 - type: Transform - - uid: 977 - components: - - pos: 31.5,29.5 - parent: 1 - type: Transform - - uid: 978 - components: - - pos: 32.5,29.5 - parent: 1 - type: Transform - - uid: 1029 - components: - - pos: 13.5,-9.5 - parent: 1 - type: Transform - - uid: 1035 - components: - - pos: 14.5,-4.5 - parent: 1 - type: Transform - - uid: 1047 - components: - - pos: 11.5,-9.5 - parent: 1 - type: Transform - - uid: 1052 - components: - - pos: 17.5,-6.5 - parent: 1 - type: Transform - - uid: 1053 - components: - - pos: 17.5,-7.5 - parent: 1 - type: Transform - - uid: 1080 - components: - - pos: 20.5,-12.5 - parent: 1 - type: Transform - - uid: 1081 - components: - - pos: 19.5,-12.5 - parent: 1 - type: Transform - - uid: 1082 - components: - - pos: 18.5,-12.5 - parent: 1 - type: Transform - - uid: 1087 - components: - - pos: 20.5,-9.5 - parent: 1 - type: Transform - - uid: 1088 - components: - - pos: 19.5,-9.5 - parent: 1 - type: Transform - - uid: 1089 - components: - - pos: 18.5,-9.5 - parent: 1 - type: Transform - - uid: 1101 - components: - - pos: 23.5,-12.5 - parent: 1 - type: Transform - - uid: 1129 - components: - - pos: 21.5,-15.5 - parent: 1 - type: Transform - - uid: 1186 - components: - - pos: 24.5,-8.5 - parent: 1 - type: Transform - - uid: 1187 - components: - - pos: 24.5,-6.5 - parent: 1 - type: Transform - - uid: 1188 - components: - - pos: 24.5,-5.5 - parent: 1 - type: Transform - - uid: 1189 - components: - - pos: 24.5,-4.5 - parent: 1 - type: Transform - - uid: 1190 - components: - - pos: 24.5,-3.5 - parent: 1 - type: Transform - - uid: 1191 - components: - - pos: 25.5,-9.5 - parent: 1 - type: Transform - - uid: 1192 - components: - - pos: 26.5,-9.5 - parent: 1 - type: Transform - - uid: 1193 - components: - - pos: 28.5,-9.5 - parent: 1 - type: Transform - - uid: 1194 - components: - - pos: 29.5,-9.5 - parent: 1 - type: Transform - - uid: 1257 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,3.5 - parent: 1 - type: Transform - - uid: 1260 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,10.5 - parent: 1 - type: Transform - - uid: 1269 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,9.5 - parent: 1 - type: Transform - - uid: 1273 - components: - - pos: 46.5,0.5 - parent: 1 - type: Transform - - uid: 1274 - components: - - pos: 47.5,0.5 - parent: 1 - type: Transform - - uid: 1275 - components: - - pos: 47.5,1.5 - parent: 1 - type: Transform - - uid: 1277 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,2.5 - parent: 1 - type: Transform - - uid: 1280 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,14.5 - parent: 1 - type: Transform - - uid: 1289 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,7.5 - parent: 1 - type: Transform - - uid: 1291 - components: - - pos: 47.5,15.5 - parent: 1 - type: Transform - - uid: 1292 - components: - - pos: 47.5,16.5 - parent: 1 - type: Transform - - uid: 1300 - components: - - pos: 47.5,17.5 - parent: 1 - type: Transform - - uid: 1325 - components: - - pos: 40.5,-3.5 - parent: 1 - type: Transform - - uid: 1326 - components: - - pos: 40.5,-4.5 - parent: 1 - type: Transform - - uid: 1327 - components: - - pos: 40.5,-5.5 - parent: 1 - type: Transform - - uid: 1328 - components: - - pos: 40.5,-6.5 - parent: 1 - type: Transform - - uid: 1329 - components: - - pos: 40.5,-7.5 - parent: 1 - type: Transform - - uid: 1330 - components: - - pos: 40.5,-8.5 - parent: 1 - type: Transform - - uid: 1331 - components: - - pos: 40.5,-9.5 - parent: 1 - type: Transform - - uid: 1332 - components: - - pos: 40.5,-10.5 - parent: 1 - type: Transform - - uid: 1333 - components: - - pos: 40.5,-11.5 - parent: 1 - type: Transform - - uid: 1334 - components: - - pos: 40.5,-12.5 - parent: 1 - type: Transform - - uid: 1335 - components: - - pos: 40.5,-13.5 - parent: 1 - type: Transform - - uid: 1336 - components: - - pos: 40.5,-14.5 - parent: 1 - type: Transform - - uid: 1337 - components: - - pos: 40.5,-15.5 - parent: 1 - type: Transform - - uid: 1338 - components: - - pos: 40.5,-16.5 - parent: 1 - type: Transform - - uid: 1339 - components: - - pos: 40.5,-17.5 - parent: 1 - type: Transform - - uid: 1340 - components: - - pos: 40.5,-18.5 - parent: 1 - type: Transform - - uid: 1341 - components: - - pos: 40.5,-19.5 - parent: 1 - type: Transform - - uid: 1351 - components: - - pos: 31.5,-19.5 - parent: 1 - type: Transform - - uid: 1352 - components: - - pos: 32.5,-19.5 - parent: 1 - type: Transform - - uid: 1354 - components: - - pos: 34.5,-19.5 - parent: 1 - type: Transform - - uid: 1355 - components: - - pos: 35.5,-19.5 - parent: 1 - type: Transform - - uid: 1356 - components: - - pos: 36.5,-19.5 - parent: 1 - type: Transform - - uid: 1357 - components: - - pos: 37.5,-19.5 - parent: 1 - type: Transform - - uid: 1358 - components: - - pos: 38.5,-19.5 - parent: 1 - type: Transform - - uid: 1359 - components: - - pos: 39.5,-19.5 - parent: 1 - type: Transform - - uid: 1373 - components: - - pos: 37.5,-23.5 - parent: 1 - type: Transform - - uid: 1374 - components: - - pos: 37.5,-22.5 - parent: 1 - type: Transform - - uid: 1375 - components: - - pos: 36.5,-21.5 - parent: 1 - type: Transform - - uid: 1376 - components: - - pos: 35.5,-21.5 - parent: 1 - type: Transform - - uid: 1377 - components: - - pos: 34.5,-21.5 - parent: 1 - type: Transform - - uid: 1378 - components: - - pos: 33.5,-22.5 - parent: 1 - type: Transform - - uid: 1379 - components: - - pos: 33.5,-23.5 - parent: 1 - type: Transform - - uid: 1427 - components: - - pos: 42.5,-17.5 - parent: 1 - type: Transform - - uid: 1428 - components: - - pos: 42.5,-15.5 - parent: 1 - type: Transform - - uid: 1429 - components: - - pos: 42.5,-13.5 - parent: 1 - type: Transform - - uid: 1430 - components: - - pos: 42.5,-11.5 - parent: 1 - type: Transform - - uid: 1431 - components: - - pos: 42.5,-9.5 - parent: 1 - type: Transform - - uid: 1432 - components: - - pos: 42.5,-7.5 - parent: 1 - type: Transform - - uid: 1433 - components: - - pos: 42.5,-5.5 - parent: 1 - type: Transform - - uid: 1461 - components: - - pos: 5.5,-18.5 - parent: 1 - type: Transform - - uid: 1475 - components: - - pos: 17.5,-24.5 - parent: 1 - type: Transform - - uid: 1493 - components: - - pos: 7.5,-19.5 - parent: 1 - type: Transform - - uid: 1497 - components: - - pos: 7.5,-22.5 - parent: 1 - type: Transform - - uid: 1501 - components: - - pos: 4.5,-24.5 - parent: 1 - type: Transform - - uid: 1502 - components: - - pos: 6.5,-24.5 - parent: 1 - type: Transform - - uid: 1514 - components: - - pos: 7.5,-25.5 - parent: 1 - type: Transform - - uid: 1515 - components: - - pos: 7.5,-27.5 - parent: 1 - type: Transform - - uid: 1528 - components: - - pos: 17.5,-23.5 - parent: 1 - type: Transform - - uid: 1531 - components: - - pos: 17.5,-20.5 - parent: 1 - type: Transform - - uid: 1534 - components: - - pos: 20.5,-28.5 - parent: 1 - type: Transform - - uid: 1553 - components: - - pos: 9.5,-29.5 - parent: 1 - type: Transform - - uid: 1554 - components: - - pos: 9.5,-30.5 - parent: 1 - type: Transform - - uid: 1555 - components: - - pos: 12.5,-30.5 - parent: 1 - type: Transform - - uid: 1556 - components: - - pos: 12.5,-29.5 - parent: 1 - type: Transform - - uid: 1557 - components: - - pos: 15.5,-29.5 - parent: 1 - type: Transform - - uid: 1558 - components: - - pos: 15.5,-30.5 - parent: 1 - type: Transform - - uid: 1563 - components: - - pos: 24.5,-25.5 - parent: 1 - type: Transform - - uid: 1564 - components: - - pos: 26.5,-25.5 - parent: 1 - type: Transform - - uid: 1565 - components: - - pos: 27.5,-23.5 - parent: 1 - type: Transform - - uid: 1566 - components: - - pos: 27.5,-24.5 - parent: 1 - type: Transform - - uid: 1572 - components: - - pos: 12.5,-23.5 - parent: 1 - type: Transform - - uid: 1573 - components: - - pos: 12.5,-20.5 - parent: 1 - type: Transform - - uid: 1574 - components: - - pos: 11.5,-24.5 - parent: 1 - type: Transform - - uid: 1575 - components: - - pos: 8.5,-24.5 - parent: 1 - type: Transform - - uid: 1617 - components: - - pos: 3.5,-30.5 - parent: 1 - type: Transform - - uid: 1618 - components: - - pos: 3.5,-29.5 - parent: 1 - type: Transform - - uid: 1622 - components: - - pos: -0.5,-22.5 - parent: 1 - type: Transform - - uid: 1623 - components: - - pos: -0.5,-21.5 - parent: 1 - type: Transform - - uid: 1624 - components: - - pos: -0.5,-20.5 - parent: 1 - type: Transform - - uid: 1629 - components: - - pos: -1.5,-23.5 - parent: 1 - type: Transform - - uid: 1630 - components: - - pos: -2.5,-23.5 - parent: 1 - type: Transform - - uid: 1631 - components: - - pos: -4.5,-23.5 - parent: 1 - type: Transform - - uid: 1632 - components: - - pos: -5.5,-23.5 - parent: 1 - type: Transform - - uid: 1686 - components: - - pos: 43.5,23.5 - parent: 1 - type: Transform - - uid: 1724 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-28.5 - parent: 1 - type: Transform - - uid: 1725 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-31.5 - parent: 1 - type: Transform - - uid: 1753 - components: - - pos: 19.5,-28.5 - parent: 1 - type: Transform - - uid: 1754 - components: - - pos: 21.5,-28.5 - parent: 1 - type: Transform - - uid: 1785 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,25.5 - parent: 1 - type: Transform - - uid: 1800 - components: - - pos: 30.5,14.5 - parent: 1 - type: Transform - - uid: 1801 - components: - - pos: -23.5,19.5 - parent: 1 - type: Transform - - uid: 1953 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,8.5 - parent: 1 - type: Transform - - uid: 1958 - components: - - pos: 16.5,-9.5 - parent: 1 - type: Transform - - uid: 1959 - components: - - pos: 15.5,-9.5 - parent: 1 - type: Transform - - uid: 1991 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,4.5 - parent: 1 - type: Transform - - uid: 1992 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,4.5 - parent: 1 - type: Transform - - uid: 1993 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,4.5 - parent: 1 - type: Transform - - uid: 1994 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,4.5 - parent: 1 - type: Transform - - uid: 2001 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,15.5 - parent: 1 - type: Transform - - uid: 2068 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,10.5 - parent: 1 - type: Transform - - uid: 2069 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,12.5 - parent: 1 - type: Transform - - uid: 2070 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,14.5 - parent: 1 - type: Transform - - uid: 2072 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,12.5 - parent: 1 - type: Transform - - uid: 2073 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,2.5 - parent: 1 - type: Transform - - uid: 2074 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,2.5 - parent: 1 - type: Transform - - uid: 2075 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,10.5 - parent: 1 - type: Transform - - uid: 2076 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,36.5 - parent: 1 - type: Transform - - uid: 2078 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,36.5 - parent: 1 - type: Transform - - uid: 2079 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,4.5 - parent: 1 - type: Transform - - uid: 2080 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,8.5 - parent: 1 - type: Transform - - uid: 2093 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,0.5 - parent: 1 - type: Transform - - uid: 2102 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,0.5 - parent: 1 - type: Transform - - uid: 2109 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,0.5 - parent: 1 - type: Transform - - uid: 2114 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,36.5 - parent: 1 - type: Transform - - uid: 2115 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,6.5 - parent: 1 - type: Transform - - uid: 2116 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,4.5 - parent: 1 - type: Transform - - uid: 2117 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,6.5 - parent: 1 - type: Transform - - uid: 2118 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,6.5 - parent: 1 - type: Transform - - uid: 2119 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,9.5 - parent: 1 - type: Transform - - uid: 2120 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,10.5 - parent: 1 - type: Transform - - uid: 2121 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,2.5 - parent: 1 - type: Transform - - uid: 2122 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,1.5 - parent: 1 - type: Transform - - uid: 2128 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,14.5 - parent: 1 - type: Transform - - uid: 2129 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,14.5 - parent: 1 - type: Transform - - uid: 2133 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,12.5 - parent: 1 - type: Transform - - uid: 2152 - components: - - pos: -42.5,-9.5 - parent: 1 - type: Transform - - uid: 2221 - components: - - pos: 43.5,21.5 - parent: 1 - type: Transform - - uid: 2234 - components: - - pos: -42.5,-11.5 - parent: 1 - type: Transform - - uid: 2265 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-24.5 - parent: 1 - type: Transform - - uid: 2266 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-24.5 - parent: 1 - type: Transform - - uid: 2267 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-24.5 - parent: 1 - type: Transform - - uid: 2268 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-24.5 - parent: 1 - type: Transform - - uid: 2270 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-23.5 - parent: 1 - type: Transform - - uid: 2272 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-24.5 - parent: 1 - type: Transform - - uid: 2285 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,26.5 - parent: 1 - type: Transform - - uid: 2286 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,26.5 - parent: 1 - type: Transform - - uid: 2287 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,26.5 - parent: 1 - type: Transform - - uid: 2288 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,26.5 - parent: 1 - type: Transform - - uid: 2293 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,31.5 - parent: 1 - type: Transform - - uid: 2294 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,31.5 - parent: 1 - type: Transform - - uid: 2295 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,31.5 - parent: 1 - type: Transform - - uid: 2296 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,31.5 - parent: 1 - type: Transform - - uid: 2298 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,22.5 - parent: 1 - type: Transform - - uid: 2303 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,30.5 - parent: 1 - type: Transform - - uid: 2304 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,24.5 - parent: 1 - type: Transform - - uid: 2325 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,37.5 - parent: 1 - type: Transform - - uid: 2332 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,36.5 - parent: 1 - type: Transform - - uid: 2339 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,37.5 - parent: 1 - type: Transform - - uid: 2377 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,37.5 - parent: 1 - type: Transform - - uid: 2382 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,38.5 - parent: 1 - type: Transform - - uid: 2383 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,38.5 - parent: 1 - type: Transform - - uid: 2384 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,36.5 - parent: 1 - type: Transform - - uid: 2385 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,36.5 - parent: 1 - type: Transform - - uid: 2386 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,37.5 - parent: 1 - type: Transform - - uid: 2387 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,36.5 - parent: 1 - type: Transform - - uid: 2388 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,36.5 - parent: 1 - type: Transform - - uid: 2389 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,36.5 - parent: 1 - type: Transform - - uid: 2390 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,38.5 - parent: 1 - type: Transform - - uid: 2391 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,36.5 - parent: 1 - type: Transform - - uid: 2392 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,37.5 - parent: 1 - type: Transform - - uid: 2393 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,38.5 - parent: 1 - type: Transform - - uid: 2394 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,36.5 - parent: 1 - type: Transform - - uid: 2395 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,38.5 - parent: 1 - type: Transform - - uid: 2396 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,37.5 - parent: 1 - type: Transform - - uid: 2397 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,38.5 - parent: 1 - type: Transform - - uid: 2405 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,36.5 - parent: 1 - type: Transform - - uid: 2410 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,36.5 - parent: 1 - type: Transform - - uid: 2411 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,36.5 - parent: 1 - type: Transform - - uid: 2412 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,36.5 - parent: 1 - type: Transform - - uid: 2415 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,7.5 - parent: 1 - type: Transform - - uid: 2416 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,4.5 - parent: 1 - type: Transform - - uid: 2417 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,36.5 - parent: 1 - type: Transform - - uid: 2662 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,43.5 - parent: 1 - type: Transform - - uid: 2690 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,50.5 - parent: 1 - type: Transform - - uid: 2691 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,54.5 - parent: 1 - type: Transform - - uid: 2783 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-53.5 - parent: 1 - type: Transform - - uid: 2784 - components: - - pos: -16.5,-47.5 - parent: 1 - type: Transform - - uid: 2795 - components: - - pos: -14.5,-54.5 - parent: 1 - type: Transform - - uid: 2796 - components: - - pos: -15.5,-54.5 - parent: 1 - type: Transform - - uid: 2804 - components: - - pos: -13.5,-54.5 - parent: 1 - type: Transform - - uid: 2807 - components: - - pos: -16.5,-54.5 - parent: 1 - type: Transform - - uid: 2836 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-55.5 - parent: 1 - type: Transform - - uid: 2851 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-52.5 - parent: 1 - type: Transform - - uid: 2852 - components: - - pos: -12.5,-54.5 - parent: 1 - type: Transform - - uid: 2891 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-56.5 - parent: 1 - type: Transform - - uid: 2892 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-57.5 - parent: 1 - type: Transform - - uid: 2893 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-58.5 - parent: 1 - type: Transform - - uid: 2894 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-59.5 - parent: 1 - type: Transform - - uid: 2895 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-60.5 - parent: 1 - type: Transform - - uid: 2896 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-61.5 - parent: 1 - type: Transform - - uid: 2897 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-61.5 - parent: 1 - type: Transform - - uid: 2898 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-61.5 - parent: 1 - type: Transform - - uid: 2899 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-62.5 - parent: 1 - type: Transform - - uid: 2900 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-63.5 - parent: 1 - type: Transform - - uid: 2901 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-63.5 - parent: 1 - type: Transform - - uid: 2902 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-63.5 - parent: 1 - type: Transform - - uid: 2903 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-63.5 - parent: 1 - type: Transform - - uid: 2904 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-63.5 - parent: 1 - type: Transform - - uid: 2905 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-63.5 - parent: 1 - type: Transform - - uid: 2906 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-63.5 - parent: 1 - type: Transform - - uid: 2907 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-62.5 - parent: 1 - type: Transform - - uid: 2908 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-61.5 - parent: 1 - type: Transform - - uid: 2909 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-60.5 - parent: 1 - type: Transform - - uid: 2910 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-59.5 - parent: 1 - type: Transform - - uid: 2911 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-58.5 - parent: 1 - type: Transform - - uid: 2912 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-57.5 - parent: 1 - type: Transform - - uid: 2913 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-56.5 - parent: 1 - type: Transform - - uid: 2914 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-55.5 - parent: 1 - type: Transform - - uid: 2915 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-42.5 - parent: 1 - type: Transform - - uid: 2916 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-54.5 - parent: 1 - type: Transform - - uid: 2918 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-52.5 - parent: 1 - type: Transform - - uid: 2919 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-51.5 - parent: 1 - type: Transform - - uid: 2920 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-50.5 - parent: 1 - type: Transform - - uid: 2921 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-49.5 - parent: 1 - type: Transform - - uid: 2923 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-47.5 - parent: 1 - type: Transform - - uid: 2924 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-46.5 - parent: 1 - type: Transform - - uid: 2925 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-45.5 - parent: 1 - type: Transform - - uid: 2933 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-49.5 - parent: 1 - type: Transform - - uid: 2935 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-41.5 - parent: 1 - type: Transform - - uid: 2937 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-39.5 - parent: 1 - type: Transform - - uid: 2938 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-38.5 - parent: 1 - type: Transform - - uid: 2940 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-36.5 - parent: 1 - type: Transform - - uid: 2942 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-42.5 - parent: 1 - type: Transform - - uid: 2943 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-41.5 - parent: 1 - type: Transform - - uid: 2945 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-39.5 - parent: 1 - type: Transform - - uid: 2946 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-38.5 - parent: 1 - type: Transform - - uid: 2947 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-37.5 - parent: 1 - type: Transform - - uid: 2948 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-36.5 - parent: 1 - type: Transform - - uid: 2949 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-35.5 - parent: 1 - type: Transform - - uid: 2951 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-33.5 - parent: 1 - type: Transform - - uid: 2971 - components: - - pos: -22.5,-30.5 - parent: 1 - type: Transform - - uid: 2983 - components: - - pos: -24.5,-29.5 - parent: 1 - type: Transform - - uid: 2984 - components: - - pos: -21.5,-32.5 - parent: 1 - type: Transform - - uid: 2988 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-34.5 - parent: 1 - type: Transform - - uid: 2989 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-34.5 - parent: 1 - type: Transform - - uid: 2990 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-34.5 - parent: 1 - type: Transform - - uid: 2992 - components: - - pos: -7.5,-34.5 - parent: 1 - type: Transform - - uid: 2993 - components: - - pos: -6.5,-34.5 - parent: 1 - type: Transform - - uid: 3007 - components: - - pos: -20.5,-32.5 - parent: 1 - type: Transform - - uid: 3008 - components: - - pos: -22.5,-32.5 - parent: 1 - type: Transform - - uid: 3009 - components: - - pos: -24.5,-32.5 - parent: 1 - type: Transform - - uid: 3016 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-31.5 - parent: 1 - type: Transform - - uid: 3017 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-32.5 - parent: 1 - type: Transform - - uid: 3019 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-34.5 - parent: 1 - type: Transform - - uid: 3021 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-36.5 - parent: 1 - type: Transform - - uid: 3024 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-37.5 - parent: 1 - type: Transform - - uid: 3025 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-37.5 - parent: 1 - type: Transform - - uid: 3026 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-38.5 - parent: 1 - type: Transform - - uid: 3027 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-38.5 - parent: 1 - type: Transform - - uid: 3029 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-38.5 - parent: 1 - type: Transform - - uid: 3030 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-38.5 - parent: 1 - type: Transform - - uid: 3031 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-38.5 - parent: 1 - type: Transform - - uid: 3033 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-37.5 - parent: 1 - type: Transform - - uid: 3036 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-36.5 - parent: 1 - type: Transform - - uid: 3037 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-35.5 - parent: 1 - type: Transform - - uid: 3038 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-35.5 - parent: 1 - type: Transform - - uid: 3039 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-34.5 - parent: 1 - type: Transform - - uid: 3040 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-33.5 - parent: 1 - type: Transform - - uid: 3043 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-30.5 - parent: 1 - type: Transform - - uid: 3044 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-29.5 - parent: 1 - type: Transform - - uid: 3045 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-28.5 - parent: 1 - type: Transform - - uid: 3089 - components: - - pos: -36.5,13.5 - parent: 1 - type: Transform - - uid: 3254 - components: - - pos: 19.5,-24.5 - parent: 1 - type: Transform - - uid: 3815 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,25.5 - parent: 1 - type: Transform - - uid: 4049 - components: - - rot: 3.141592653589793 rad - pos: 3.5,32.5 - parent: 1 - type: Transform - - uid: 4050 - components: - - rot: 3.141592653589793 rad - pos: 4.5,32.5 - parent: 1 - type: Transform - - uid: 4051 - components: - - rot: 3.141592653589793 rad - pos: 5.5,32.5 - parent: 1 - type: Transform - - uid: 4817 - components: - - pos: 47.5,20.5 - parent: 1 - type: Transform - - uid: 4818 - components: - - pos: 47.5,19.5 - parent: 1 - type: Transform - - uid: 4822 - components: - - pos: 46.5,24.5 - parent: 1 - type: Transform - - uid: 4823 - components: - - pos: 44.5,24.5 - parent: 1 - type: Transform - - uid: 4827 - components: - - pos: 40.5,29.5 - parent: 1 - type: Transform - - uid: 4828 - components: - - pos: 39.5,29.5 - parent: 1 - type: Transform - - uid: 4833 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,28.5 - parent: 1 - type: Transform - - uid: 4838 - components: - - pos: 47.5,27.5 - parent: 1 - type: Transform - - uid: 4839 - components: - - pos: 47.5,26.5 - parent: 1 - type: Transform - - uid: 4841 - components: - - pos: 41.5,29.5 - parent: 1 - type: Transform - - uid: 4843 - components: - - pos: 45.5,29.5 - parent: 1 - type: Transform - - uid: 4844 - components: - - pos: 46.5,29.5 - parent: 1 - type: Transform - - uid: 4873 - components: - - rot: 3.141592653589793 rad - pos: 40.5,35.5 - parent: 1 - type: Transform - - uid: 4874 - components: - - rot: 3.141592653589793 rad - pos: 41.5,35.5 - parent: 1 - type: Transform - - uid: 4875 - components: - - rot: 3.141592653589793 rad - pos: 42.5,35.5 - parent: 1 - type: Transform - - uid: 4876 - components: - - rot: 3.141592653589793 rad - pos: 43.5,35.5 - parent: 1 - type: Transform - - uid: 4877 - components: - - rot: 3.141592653589793 rad - pos: 44.5,35.5 - parent: 1 - type: Transform - - uid: 4878 - components: - - rot: 3.141592653589793 rad - pos: 45.5,35.5 - parent: 1 - type: Transform - - uid: 4881 - components: - - rot: 3.141592653589793 rad - pos: 47.5,33.5 - parent: 1 - type: Transform - - uid: 4882 - components: - - rot: 3.141592653589793 rad - pos: 47.5,32.5 - parent: 1 - type: Transform - - uid: 4883 - components: - - rot: 3.141592653589793 rad - pos: 47.5,31.5 - parent: 1 - type: Transform - - uid: 6328 - components: - - pos: -20.5,-15.5 - parent: 1 - type: Transform - - uid: 6329 - components: - - pos: -19.5,-15.5 - parent: 1 - type: Transform - - uid: 7067 - components: - - pos: 3.5,-31.5 - parent: 1 - type: Transform - - uid: 7068 - components: - - pos: 3.5,-32.5 - parent: 1 - type: Transform - - uid: 7069 - components: - - pos: 3.5,-33.5 - parent: 1 - type: Transform - - uid: 7299 - components: - - pos: 22.5,-24.5 - parent: 1 - type: Transform - - uid: 7303 - components: - - pos: 18.5,-24.5 - parent: 1 - type: Transform - - uid: 7572 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-5.5 - parent: 1 - type: Transform - - uid: 7573 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-6.5 - parent: 1 - type: Transform - - uid: 7576 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-4.5 - parent: 1 - type: Transform - - uid: 7577 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-3.5 - parent: 1 - type: Transform - - uid: 7578 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-2.5 - parent: 1 - type: Transform - - uid: 7579 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-1.5 - parent: 1 - type: Transform - - uid: 8258 - components: - - pos: -44.5,-18.5 - parent: 1 - type: Transform - - uid: 8266 - components: - - pos: -44.5,-17.5 - parent: 1 - type: Transform - - uid: 8271 - components: - - pos: -44.5,-16.5 - parent: 1 - type: Transform - - uid: 8273 - components: - - pos: -44.5,-19.5 - parent: 1 - type: Transform - - uid: 8321 - components: - - pos: 11.5,34.5 - parent: 1 - type: Transform - - uid: 8322 - components: - - pos: 9.5,34.5 - parent: 1 - type: Transform - - uid: 8328 - components: - - pos: 42.5,-21.5 - parent: 1 - type: Transform - - uid: 8491 - components: - - pos: -20.5,-55.5 - parent: 1 - type: Transform - - uid: 8492 - components: - - pos: -20.5,-53.5 - parent: 1 - type: Transform - - uid: 8493 - components: - - pos: -22.5,-51.5 - parent: 1 - type: Transform - - uid: 8497 - components: - - pos: -22.5,-50.5 - parent: 1 - type: Transform - - uid: 8501 - components: - - pos: -22.5,-48.5 - parent: 1 - type: Transform - - uid: 8502 - components: - - pos: -22.5,-47.5 - parent: 1 - type: Transform - - uid: 8503 - components: - - pos: -22.5,-46.5 - parent: 1 - type: Transform - - uid: 8504 - components: - - pos: -22.5,-45.5 - parent: 1 - type: Transform - - uid: 8505 - components: - - pos: -21.5,-45.5 - parent: 1 - type: Transform - - uid: 8507 - components: - - pos: -19.5,-45.5 - parent: 1 - type: Transform - - uid: 8509 - components: - - pos: -8.5,-36.5 - parent: 1 - type: Transform - - uid: 8510 - components: - - pos: -7.5,-36.5 - parent: 1 - type: Transform - - uid: 8511 - components: - - pos: -7.5,-37.5 - parent: 1 - type: Transform - - uid: 8512 - components: - - pos: -6.5,-37.5 - parent: 1 - type: Transform - - uid: 8514 - components: - - pos: -4.5,-37.5 - parent: 1 - type: Transform - - uid: 8515 - components: - - pos: -3.5,-37.5 - parent: 1 - type: Transform - - uid: 8517 - components: - - pos: -1.5,-37.5 - parent: 1 - type: Transform - - uid: 8519 - components: - - pos: 18.5,-31.5 - parent: 1 - type: Transform - - uid: 8520 - components: - - pos: 19.5,-31.5 - parent: 1 - type: Transform - - uid: 8521 - components: - - pos: 20.5,-31.5 - parent: 1 - type: Transform - - uid: 8524 - components: - - pos: 23.5,-31.5 - parent: 1 - type: Transform - - uid: 8526 - components: - - pos: 40.5,-26.5 - parent: 1 - type: Transform - - uid: 8528 - components: - - pos: 32.5,-27.5 - parent: 1 - type: Transform - - uid: 8529 - components: - - pos: 33.5,-27.5 - parent: 1 - type: Transform - - uid: 8530 - components: - - pos: 34.5,-27.5 - parent: 1 - type: Transform - - uid: 8532 - components: - - pos: 36.5,-27.5 - parent: 1 - type: Transform - - uid: 8534 - components: - - pos: 38.5,-27.5 - parent: 1 - type: Transform - - uid: 8536 - components: - - pos: 40.5,-24.5 - parent: 1 - type: Transform - - uid: 8537 - components: - - rot: 3.141592653589793 rad - pos: 40.5,-23.5 - parent: 1 - type: Transform - - uid: 8539 - components: - - pos: 43.5,-21.5 - parent: 1 - type: Transform - - uid: 8541 - components: - - pos: 45.5,-21.5 - parent: 1 - type: Transform - - uid: 8542 - components: - - pos: 46.5,-21.5 - parent: 1 - type: Transform - - uid: 8544 - components: - - pos: -13.5,39.5 - parent: 1 - type: Transform - - uid: 8545 - components: - - pos: 48.5,-21.5 - parent: 1 - type: Transform - - uid: 8546 - components: - - pos: 49.5,-19.5 - parent: 1 - type: Transform - - uid: 8547 - components: - - pos: 49.5,-18.5 - parent: 1 - type: Transform - - uid: 8548 - components: - - pos: 49.5,-17.5 - parent: 1 - type: Transform - - uid: 8550 - components: - - pos: 49.5,-15.5 - parent: 1 - type: Transform - - uid: 8551 - components: - - pos: 49.5,-14.5 - parent: 1 - type: Transform - - uid: 8552 - components: - - pos: 49.5,-13.5 - parent: 1 - type: Transform - - uid: 8553 - components: - - pos: 49.5,-12.5 - parent: 1 - type: Transform - - uid: 8555 - components: - - pos: 49.5,-10.5 - parent: 1 - type: Transform - - uid: 8556 - components: - - pos: 49.5,-9.5 - parent: 1 - type: Transform - - uid: 8557 - components: - - pos: 49.5,-8.5 - parent: 1 - type: Transform - - uid: 8558 - components: - - pos: 49.5,-7.5 - parent: 1 - type: Transform - - uid: 8560 - components: - - pos: 49.5,-5.5 - parent: 1 - type: Transform - - uid: 8561 - components: - - pos: 49.5,-4.5 - parent: 1 - type: Transform - - uid: 8562 - components: - - pos: 49.5,-3.5 - parent: 1 - type: Transform - - uid: 8563 - components: - - pos: 49.5,-2.5 - parent: 1 - type: Transform - - uid: 8566 - components: - - pos: 49.5,27.5 - parent: 1 - type: Transform - - uid: 8567 - components: - - pos: 49.5,28.5 - parent: 1 - type: Transform - - uid: 8568 - components: - - pos: 49.5,29.5 - parent: 1 - type: Transform - - uid: 8569 - components: - - pos: 49.5,30.5 - parent: 1 - type: Transform - - uid: 8571 - components: - - pos: 49.5,32.5 - parent: 1 - type: Transform - - uid: 8572 - components: - - pos: 49.5,33.5 - parent: 1 - type: Transform - - uid: 8574 - components: - - pos: 49.5,35.5 - parent: 1 - type: Transform - - uid: 8576 - components: - - pos: 48.5,37.5 - parent: 1 - type: Transform - - uid: 8577 - components: - - pos: 47.5,37.5 - parent: 1 - type: Transform - - uid: 8579 - components: - - pos: 45.5,37.5 - parent: 1 - type: Transform - - uid: 8580 - components: - - pos: 44.5,37.5 - parent: 1 - type: Transform - - uid: 8581 - components: - - pos: 43.5,37.5 - parent: 1 - type: Transform - - uid: 8583 - components: - - pos: 41.5,37.5 - parent: 1 - type: Transform - - uid: 8584 - components: - - pos: 4.5,34.5 - parent: 1 - type: Transform - - uid: 8585 - components: - - pos: 4.5,35.5 - parent: 1 - type: Transform - - uid: 8587 - components: - - pos: 4.5,45.5 - parent: 1 - type: Transform - - uid: 8589 - components: - - pos: 3.5,39.5 - parent: 1 - type: Transform - - uid: 8590 - components: - - pos: 2.5,41.5 - parent: 1 - type: Transform - - uid: 8591 - components: - - pos: 2.5,42.5 - parent: 1 - type: Transform - - uid: 8593 - components: - - pos: 3.5,45.5 - parent: 1 - type: Transform - - uid: 8594 - components: - - pos: 7.5,51.5 - parent: 1 - type: Transform - - uid: 8595 - components: - - pos: 6.5,45.5 - parent: 1 - type: Transform - - uid: 8598 - components: - - pos: 7.5,48.5 - parent: 1 - type: Transform - - uid: 8599 - components: - - pos: 7.5,49.5 - parent: 1 - type: Transform - - uid: 8602 - components: - - pos: 7.5,52.5 - parent: 1 - type: Transform - - uid: 8603 - components: - - pos: 7.5,53.5 - parent: 1 - type: Transform - - uid: 8606 - components: - - pos: 7.5,56.5 - parent: 1 - type: Transform - - uid: 8607 - components: - - pos: 7.5,57.5 - parent: 1 - type: Transform - - uid: 8608 - components: - - pos: 7.5,58.5 - parent: 1 - type: Transform - - uid: 8611 - components: - - pos: 4.5,59.5 - parent: 1 - type: Transform - - uid: 8612 - components: - - pos: 3.5,59.5 - parent: 1 - type: Transform - - uid: 8613 - components: - - pos: 2.5,59.5 - parent: 1 - type: Transform - - uid: 8615 - components: - - pos: 0.5,59.5 - parent: 1 - type: Transform - - uid: 8617 - components: - - pos: -2.5,60.5 - parent: 1 - type: Transform - - uid: 8618 - components: - - pos: -3.5,60.5 - parent: 1 - type: Transform - - uid: 8619 - components: - - pos: -4.5,60.5 - parent: 1 - type: Transform - - uid: 8620 - components: - - pos: -5.5,60.5 - parent: 1 - type: Transform - - uid: 8622 - components: - - pos: -7.5,60.5 - parent: 1 - type: Transform - - uid: 8624 - components: - - pos: -9.5,60.5 - parent: 1 - type: Transform - - uid: 8625 - components: - - pos: -10.5,60.5 - parent: 1 - type: Transform - - uid: 8627 - components: - - pos: -12.5,60.5 - parent: 1 - type: Transform - - uid: 8629 - components: - - pos: -14.5,58.5 - parent: 1 - type: Transform - - uid: 8630 - components: - - pos: -14.5,57.5 - parent: 1 - type: Transform - - uid: 8631 - components: - - pos: -14.5,56.5 - parent: 1 - type: Transform - - uid: 8633 - components: - - pos: -14.5,54.5 - parent: 1 - type: Transform - - uid: 8634 - components: - - pos: -14.5,53.5 - parent: 1 - type: Transform - - uid: 8635 - components: - - pos: -14.5,52.5 - parent: 1 - type: Transform - - uid: 8636 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,45.5 - parent: 1 - type: Transform - - uid: 8638 - components: - - pos: -14.5,49.5 - parent: 1 - type: Transform - - uid: 8639 - components: - - pos: -14.5,48.5 - parent: 1 - type: Transform - - uid: 8640 - components: - - pos: -14.5,47.5 - parent: 1 - type: Transform - - uid: 8643 - components: - - pos: -12.5,44.5 - parent: 1 - type: Transform - - uid: 8645 - components: - - pos: -12.5,42.5 - parent: 1 - type: Transform - - uid: 8646 - components: - - pos: -12.5,41.5 - parent: 1 - type: Transform - - uid: 8648 - components: - - pos: -14.5,37.5 - parent: 1 - type: Transform - - uid: 8652 - components: - - pos: -17.5,36.5 - parent: 1 - type: Transform - - uid: 8653 - components: - - pos: -18.5,36.5 - parent: 1 - type: Transform - - uid: 8654 - components: - - pos: -19.5,36.5 - parent: 1 - type: Transform - - uid: 8655 - components: - - pos: -21.5,35.5 - parent: 1 - type: Transform - - uid: 8657 - components: - - pos: -21.5,37.5 - parent: 1 - type: Transform - - uid: 8658 - components: - - pos: -21.5,38.5 - parent: 1 - type: Transform - - uid: 8659 - components: - - pos: -21.5,39.5 - parent: 1 - type: Transform - - uid: 8661 - components: - - pos: -21.5,41.5 - parent: 1 - type: Transform - - uid: 8662 - components: - - pos: -21.5,42.5 - parent: 1 - type: Transform - - uid: 8664 - components: - - pos: -23.5,42.5 - parent: 1 - type: Transform - - uid: 8665 - components: - - pos: -24.5,42.5 - parent: 1 - type: Transform - - uid: 8666 - components: - - pos: -24.5,43.5 - parent: 1 - type: Transform - - uid: 8667 - components: - - pos: -24.5,44.5 - parent: 1 - type: Transform - - uid: 8668 - components: - - pos: -25.5,44.5 - parent: 1 - type: Transform - - uid: 8669 - components: - - pos: -26.5,44.5 - parent: 1 - type: Transform - - uid: 8670 - components: - - pos: -27.5,44.5 - parent: 1 - type: Transform - - uid: 8672 - components: - - pos: -29.5,44.5 - parent: 1 - type: Transform - - uid: 8673 - components: - - pos: -30.5,44.5 - parent: 1 - type: Transform - - uid: 8674 - components: - - pos: -30.5,43.5 - parent: 1 - type: Transform - - uid: 8675 - components: - - pos: -30.5,42.5 - parent: 1 - type: Transform - - uid: 8676 - components: - - pos: -31.5,42.5 - parent: 1 - type: Transform - - uid: 8678 - components: - - pos: -33.5,42.5 - parent: 1 - type: Transform - - uid: 8679 - components: - - pos: -33.5,40.5 - parent: 1 - type: Transform - - uid: 8680 - components: - - pos: -33.5,39.5 - parent: 1 - type: Transform - - uid: 8682 - components: - - pos: -33.5,37.5 - parent: 1 - type: Transform - - uid: 8683 - components: - - pos: -33.5,36.5 - parent: 1 - type: Transform - - uid: 8685 - components: - - pos: -33.5,34.5 - parent: 1 - type: Transform - - uid: 8687 - components: - - pos: -34.5,29.5 - parent: 1 - type: Transform - - uid: 8688 - components: - - pos: -32.5,31.5 - parent: 1 - type: Transform - - uid: 8689 - components: - - pos: -32.5,30.5 - parent: 1 - type: Transform - - uid: 8691 - components: - - pos: -32.5,28.5 - parent: 1 - type: Transform - - uid: 8693 - components: - - pos: -36.5,29.5 - parent: 1 - type: Transform - - uid: 8695 - components: - - pos: -38.5,29.5 - parent: 1 - type: Transform - - uid: 8696 - components: - - pos: -39.5,29.5 - parent: 1 - type: Transform - - uid: 8697 - components: - - pos: -40.5,29.5 - parent: 1 - type: Transform - - uid: 8699 - components: - - pos: -40.5,27.5 - parent: 1 - type: Transform - - uid: 8700 - components: - - pos: -40.5,26.5 - parent: 1 - type: Transform - - uid: 8702 - components: - - pos: -42.5,26.5 - parent: 1 - type: Transform - - uid: 8703 - components: - - pos: -44.5,25.5 - parent: 1 - type: Transform - - uid: 8705 - components: - - pos: -44.5,23.5 - parent: 1 - type: Transform - - uid: 8706 - components: - - pos: -44.5,22.5 - parent: 1 - type: Transform - - uid: 8708 - components: - - pos: -44.5,20.5 - parent: 1 - type: Transform - - uid: 8709 - components: - - pos: -44.5,19.5 - parent: 1 - type: Transform - - uid: 8711 - components: - - pos: -44.5,17.5 - parent: 1 - type: Transform - - uid: 8713 - components: - - pos: 13.5,36.5 - parent: 1 - type: Transform - - uid: 8714 - components: - - pos: 14.5,36.5 - parent: 1 - type: Transform - - uid: 8715 - components: - - pos: 15.5,36.5 - parent: 1 - type: Transform - - uid: 8717 - components: - - pos: 17.5,38.5 - parent: 1 - type: Transform - - uid: 8718 - components: - - pos: 18.5,38.5 - parent: 1 - type: Transform - - uid: 8720 - components: - - pos: 20.5,38.5 - parent: 1 - type: Transform - - uid: 8721 - components: - - pos: 36.5,38.5 - parent: 1 - type: Transform - - uid: 8723 - components: - - pos: 38.5,38.5 - parent: 1 - type: Transform - - uid: 8724 - components: - - pos: 39.5,38.5 - parent: 1 - type: Transform - - uid: 8730 - components: - - pos: -46.5,-13.5 - parent: 1 - type: Transform - - uid: 8732 - components: - - pos: -46.5,-15.5 - parent: 1 - type: Transform - - uid: 8733 - components: - - pos: -46.5,-16.5 - parent: 1 - type: Transform - - uid: 8734 - components: - - pos: -46.5,-17.5 - parent: 1 - type: Transform - - uid: 8736 - components: - - pos: -46.5,-19.5 - parent: 1 - type: Transform - - uid: 8738 - components: - - pos: -45.5,-23.5 - parent: 1 - type: Transform - - uid: 8740 - components: - - pos: -45.5,-25.5 - parent: 1 - type: Transform - - uid: 8741 - components: - - pos: -45.5,-26.5 - parent: 1 - type: Transform - - uid: 8742 - components: - - pos: -45.5,-27.5 - parent: 1 - type: Transform - - uid: 8743 - components: - - pos: -44.5,-27.5 - parent: 1 - type: Transform - - uid: 8745 - components: - - pos: -42.5,-27.5 - parent: 1 - type: Transform - - uid: 8746 - components: - - pos: -41.5,-27.5 - parent: 1 - type: Transform - - uid: 8748 - components: - - pos: -39.5,-27.5 - parent: 1 - type: Transform - - uid: 8750 - components: - - pos: -44.5,-6.5 - parent: 1 - type: Transform - - uid: 8751 - components: - - pos: -44.5,-5.5 - parent: 1 - type: Transform - - uid: 8753 - components: - - pos: -44.5,-3.5 - parent: 1 - type: Transform - - uid: 8754 - components: - - pos: -44.5,-2.5 - parent: 1 - type: Transform - - uid: 8755 - components: - - pos: -44.5,-1.5 - parent: 1 - type: Transform - - uid: 8757 - components: - - pos: -44.5,0.5 - parent: 1 - type: Transform - - uid: 10442 - components: - - rot: 3.141592653589793 rad - pos: 44.5,29.5 - parent: 1 - type: Transform - - uid: 12312 - components: - - rot: 3.141592653589793 rad - pos: -1.5,65.5 - parent: 1 - type: Transform - - uid: 12313 - components: - - rot: 3.141592653589793 rad - pos: -0.5,66.5 - parent: 1 - type: Transform - - uid: 12314 - components: - - rot: 3.141592653589793 rad - pos: 0.5,65.5 - parent: 1 - type: Transform - - uid: 12315 - components: - - rot: 3.141592653589793 rad - pos: -0.5,64.5 - parent: 1 - type: Transform - - uid: 12316 - components: - - rot: 3.141592653589793 rad - pos: -4.5,62.5 - parent: 1 - type: Transform - - uid: 12318 - components: - - rot: 3.141592653589793 rad - pos: -4.5,64.5 - parent: 1 - type: Transform - - uid: 12319 - components: - - rot: 3.141592653589793 rad - pos: -4.5,65.5 - parent: 1 - type: Transform - - uid: 12320 - components: - - rot: 3.141592653589793 rad - pos: -4.5,67.5 - parent: 1 - type: Transform - - uid: 12322 - components: - - rot: 3.141592653589793 rad - pos: -4.5,68.5 - parent: 1 - type: Transform - - uid: 12323 - components: - - rot: 3.141592653589793 rad - pos: -2.5,69.5 - parent: 1 - type: Transform - - uid: 12325 - components: - - rot: 3.141592653589793 rad - pos: -0.5,69.5 - parent: 1 - type: Transform - - uid: 12326 - components: - - rot: 3.141592653589793 rad - pos: 0.5,69.5 - parent: 1 - type: Transform - - uid: 12327 - components: - - rot: 3.141592653589793 rad - pos: 1.5,69.5 - parent: 1 - type: Transform - - uid: 12328 - components: - - rot: 3.141592653589793 rad - pos: 3.5,68.5 - parent: 1 - type: Transform - - uid: 12330 - components: - - rot: 3.141592653589793 rad - pos: 3.5,66.5 - parent: 1 - type: Transform - - uid: 12331 - components: - - rot: 3.141592653589793 rad - pos: 3.5,65.5 - parent: 1 - type: Transform - - uid: 12332 - components: - - rot: 3.141592653589793 rad - pos: 3.5,64.5 - parent: 1 - type: Transform - - uid: 12333 - components: - - rot: 3.141592653589793 rad - pos: 3.5,63.5 - parent: 1 - type: Transform - - uid: 12334 - components: - - rot: 3.141592653589793 rad - pos: 0.5,61.5 - parent: 1 - type: Transform - - uid: 12335 - components: - - rot: 3.141592653589793 rad - pos: 1.5,61.5 - parent: 1 - type: Transform - - uid: 12368 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-2.5 - parent: 1 - type: Transform - - uid: 12461 - components: - - pos: 6.5,-5.5 - parent: 1 - type: Transform - - uid: 12527 - components: - - pos: -26.5,-29.5 - parent: 1 - type: Transform - - uid: 12528 - components: - - pos: -26.5,-28.5 - parent: 1 - type: Transform -- proto: GrilleBroken - entities: - - uid: 1786 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,25.5 - parent: 1 - type: Transform - - uid: 1790 - components: - - rot: 3.141592653589793 rad - pos: -27.5,23.5 - parent: 1 - type: Transform - - uid: 2917 - components: - - pos: -8.5,-53.5 - parent: 1 - type: Transform - - uid: 2922 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-48.5 - parent: 1 - type: Transform - - uid: 2936 - components: - - rot: 3.141592653589793 rad - pos: -12.5,-40.5 - parent: 1 - type: Transform - - uid: 2939 - components: - - pos: -12.5,-37.5 - parent: 1 - type: Transform - - uid: 2944 - components: - - pos: -20.5,-40.5 - parent: 1 - type: Transform - - uid: 2950 - components: - - rot: 3.141592653589793 rad - pos: -20.5,-34.5 - parent: 1 - type: Transform - - uid: 2973 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-32.5 - parent: 1 - type: Transform - - uid: 2981 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-32.5 - parent: 1 - type: Transform - - uid: 3012 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-32.5 - parent: 1 - type: Transform - - uid: 3018 - components: - - pos: -36.5,-27.5 - parent: 1 - type: Transform - - uid: 3020 - components: - - pos: -26.5,-35.5 - parent: 1 - type: Transform - - uid: 3022 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-31.5 - parent: 1 - type: Transform - - uid: 3023 - components: - - pos: -36.5,-32.5 - parent: 1 - type: Transform - - uid: 3028 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-36.5 - parent: 1 - type: Transform - - uid: 3032 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-38.5 - parent: 1 - type: Transform - - uid: 3034 - components: - - pos: -34.5,-36.5 - parent: 1 - type: Transform - - uid: 3035 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-38.5 - parent: 1 - type: Transform - - uid: 3041 - components: - - pos: -28.5,-36.5 - parent: 1 - type: Transform - - uid: 3042 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-33.5 - parent: 1 - type: Transform - - uid: 3046 - components: - - pos: -20.5,-54.5 - parent: 1 - type: Transform - - uid: 8485 - components: - - pos: -22.5,-49.5 - parent: 1 - type: Transform - - uid: 8500 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-45.5 - parent: 1 - type: Transform - - uid: 8506 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-36.5 - parent: 1 - type: Transform - - uid: 8508 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-37.5 - parent: 1 - type: Transform - - uid: 8513 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-37.5 - parent: 1 - type: Transform - - uid: 8516 - components: - - rot: 3.141592653589793 rad - pos: 22.5,-31.5 - parent: 1 - type: Transform - - uid: 8518 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-31.5 - parent: 1 - type: Transform - - uid: 8522 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-31.5 - parent: 1 - type: Transform - - uid: 8523 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-27.5 - parent: 1 - type: Transform - - uid: 8525 - components: - - pos: 40.5,-22.5 - parent: 1 - type: Transform - - uid: 8527 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-25.5 - parent: 1 - type: Transform - - uid: 8531 - components: - - rot: 3.141592653589793 rad - pos: 40.5,-27.5 - parent: 1 - type: Transform - - uid: 8533 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-27.5 - parent: 1 - type: Transform - - uid: 8535 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-27.5 - parent: 1 - type: Transform - - uid: 8538 - components: - - rot: 3.141592653589793 rad - pos: 47.5,-21.5 - parent: 1 - type: Transform - - uid: 8540 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-21.5 - parent: 1 - type: Transform - - uid: 8543 - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-16.5 - parent: 1 - type: Transform - - uid: 8549 - components: - - pos: 49.5,-11.5 - parent: 1 - type: Transform - - uid: 8554 - components: - - rot: 3.141592653589793 rad - pos: 49.5,-6.5 - parent: 1 - type: Transform - - uid: 8559 - components: - - pos: 49.5,-1.5 - parent: 1 - type: Transform - - uid: 8564 - components: - - pos: 49.5,31.5 - parent: 1 - type: Transform - - uid: 8565 - components: - - rot: 3.141592653589793 rad - pos: 49.5,34.5 - parent: 1 - type: Transform - - uid: 8570 - components: - - rot: -1.5707963267948966 rad - pos: 49.5,37.5 - parent: 1 - type: Transform - - uid: 8573 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,37.5 - parent: 1 - type: Transform - - uid: 8575 - components: - - pos: 46.5,37.5 - parent: 1 - type: Transform - - uid: 8578 - components: - - rot: 3.141592653589793 rad - pos: -21.5,36.5 - parent: 1 - type: Transform - - uid: 8582 - components: - - pos: 4.5,36.5 - parent: 1 - type: Transform - - uid: 8586 - components: - - pos: 2.5,43.5 - parent: 1 - type: Transform - - uid: 8588 - components: - - rot: 3.141592653589793 rad - pos: 7.5,55.5 - parent: 1 - type: Transform - - uid: 8592 - components: - - pos: 7.5,54.5 - parent: 1 - type: Transform - - uid: 8597 - components: - - rot: 3.141592653589793 rad - pos: 7.5,47.5 - parent: 1 - type: Transform - - uid: 8600 - components: - - rot: 3.141592653589793 rad - pos: 7.5,50.5 - parent: 1 - type: Transform - - uid: 8601 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,45.5 - parent: 1 - type: Transform - - uid: 8604 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,60.5 - parent: 1 - type: Transform - - uid: 8605 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,59.5 - parent: 1 - type: Transform - - uid: 8610 - components: - - pos: 1.5,59.5 - parent: 1 - type: Transform - - uid: 8614 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,60.5 - parent: 1 - type: Transform - - uid: 8616 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,60.5 - parent: 1 - type: Transform - - uid: 8621 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,60.5 - parent: 1 - type: Transform - - uid: 8623 - components: - - pos: -14.5,59.5 - parent: 1 - type: Transform - - uid: 8626 - components: - - pos: -14.5,55.5 - parent: 1 - type: Transform - - uid: 8628 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,50.5 - parent: 1 - type: Transform - - uid: 8632 - components: - - rot: 3.141592653589793 rad - pos: -14.5,51.5 - parent: 1 - type: Transform - - uid: 8637 - components: - - pos: -14.5,46.5 - parent: 1 - type: Transform - - uid: 8641 - components: - - pos: -12.5,43.5 - parent: 1 - type: Transform - - uid: 8642 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,36.5 - parent: 1 - type: Transform - - uid: 8644 - components: - - rot: 3.141592653589793 rad - pos: -13.5,38.5 - parent: 1 - type: Transform - - uid: 8647 - components: - - rot: 3.141592653589793 rad - pos: -33.5,41.5 - parent: 1 - type: Transform - - uid: 8649 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,36.5 - parent: 1 - type: Transform - - uid: 8650 - components: - - rot: 3.141592653589793 rad - pos: -33.5,33.5 - parent: 1 - type: Transform - - uid: 8651 - components: - - pos: -26.5,-30.5 - parent: 1 - type: Transform - - uid: 8656 - components: - - pos: -33.5,38.5 - parent: 1 - type: Transform - - uid: 8660 - components: - - pos: -21.5,40.5 - parent: 1 - type: Transform - - uid: 8663 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,42.5 - parent: 1 - type: Transform - - uid: 8671 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,44.5 - parent: 1 - type: Transform - - uid: 8677 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,35.5 - parent: 1 - type: Transform - - uid: 8681 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,42.5 - parent: 1 - type: Transform - - uid: 8684 - components: - - pos: -40.5,28.5 - parent: 1 - type: Transform - - uid: 8686 - components: - - pos: -37.5,29.5 - parent: 1 - type: Transform - - uid: 8690 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,29.5 - parent: 1 - type: Transform - - uid: 8692 - components: - - pos: -32.5,29.5 - parent: 1 - type: Transform - - uid: 8694 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,26.5 - parent: 1 - type: Transform - - uid: 8698 - components: - - rot: 3.141592653589793 rad - pos: -44.5,16.5 - parent: 1 - type: Transform - - uid: 8701 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,21.5 - parent: 1 - type: Transform - - uid: 8704 - components: - - rot: 3.141592653589793 rad - pos: -44.5,18.5 - parent: 1 - type: Transform - - uid: 8707 - components: - - pos: -44.5,24.5 - parent: 1 - type: Transform - - uid: 8710 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,36.5 - parent: 1 - type: Transform - - uid: 8712 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,38.5 - parent: 1 - type: Transform - - uid: 8716 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,38.5 - parent: 1 - type: Transform - - uid: 8719 - components: - - pos: -46.5,-14.5 - parent: 1 - type: Transform - - uid: 8722 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-18.5 - parent: 1 - type: Transform - - uid: 8731 - components: - - rot: 3.141592653589793 rad - pos: -46.5,-20.5 - parent: 1 - type: Transform - - uid: 8735 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-27.5 - parent: 1 - type: Transform - - uid: 8737 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-24.5 - parent: 1 - type: Transform - - uid: 8739 - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-27.5 - parent: 1 - type: Transform - - uid: 8744 - components: - - rot: 3.141592653589793 rad - pos: -44.5,-7.5 - parent: 1 - type: Transform - - uid: 8747 - components: - - rot: 3.141592653589793 rad - pos: -44.5,-4.5 - parent: 1 - type: Transform - - uid: 8749 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-0.5 - parent: 1 - type: Transform - - uid: 8756 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-34.5 - parent: 1 - type: Transform - - uid: 8767 - components: - - rot: 3.141592653589793 rad - pos: 3.5,38.5 - parent: 1 - type: Transform - - uid: 12317 - components: - - pos: -4.5,66.5 - parent: 1 - type: Transform - - uid: 12321 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,69.5 - parent: 1 - type: Transform - - uid: 12324 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,69.5 - parent: 1 - type: Transform - - uid: 12329 - components: - - pos: 3.5,67.5 - parent: 1 - type: Transform - - uid: 12336 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,61.5 - parent: 1 - type: Transform - - uid: 12337 - components: - - rot: 3.141592653589793 rad - pos: -4.5,63.5 - parent: 1 - type: Transform - - uid: 12338 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,62.5 - parent: 1 - type: Transform - - uid: 12341 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,61.5 - parent: 1 - type: Transform - - uid: 12529 - components: - - pos: -26.5,-27.5 - parent: 1 - type: Transform - - uid: 12530 - components: - - rot: 3.141592653589793 rad - pos: -26.5,-30.5 - parent: 1 - type: Transform -- proto: Handcuffs - entities: - - uid: 5063 - components: - - pos: -0.47162104,32.53128 - parent: 1 - type: Transform -- proto: HandheldGPSBasic - entities: - - uid: 12545 - components: - - pos: 20.351448,-20.427984 - parent: 1 - type: Transform - - uid: 12546 - components: - - pos: 20.632698,-20.552984 - parent: 1 - type: Transform -- proto: HandheldHealthAnalyzer - entities: - - uid: 12428 - components: - - pos: -12.421777,-11.625296 - parent: 1 - type: Transform -- proto: HandLabeler - entities: - - uid: 5093 - components: - - pos: -4.5167303,19.595882 - parent: 1 - type: Transform - - uid: 12544 - components: - - pos: 11.496555,-20.355099 - parent: 1 - type: Transform -- proto: HarpInstrument - entities: - - uid: 2846 - components: - - pos: -18.5,-50.5 - parent: 1 - type: Transform -- proto: HeadSkeleton - entities: - - uid: 8257 - components: - - flags: SessionSpecific - desc: jim :) - name: jim :) - type: MetaData - - pos: 25.50356,16.52645 - parent: 1 - type: Transform -- proto: Hemostat - entities: - - uid: 8243 - components: - - pos: -24.61685,20.770723 - parent: 1 - type: Transform - - uid: 9627 - components: - - pos: 18.467201,27.515732 - parent: 1 - type: Transform -- proto: HighSecArmoryLocked - entities: - - uid: 3326 - components: - - pos: 35.5,11.5 - parent: 1 - type: Transform -- proto: HighSecCommandLocked - entities: - - uid: 3283 - components: - - pos: -3.5,26.5 - parent: 1 - type: Transform - - uid: 3612 - components: - - pos: -6.5,47.5 - parent: 1 - type: Transform - - uid: 3613 - components: - - pos: -1.5,52.5 - parent: 1 - type: Transform - - uid: 3670 - components: - - pos: -40.5,17.5 - parent: 1 - type: Transform - - uid: 7081 - components: - - pos: -5.5,-32.5 - parent: 1 - type: Transform -- proto: HolofanProjector - entities: - - uid: 7144 - components: - - pos: 31.574986,-16.324593 - parent: 1 - type: Transform -- proto: HospitalCurtainsOpen - entities: - - uid: 794 - components: - - pos: 25.5,12.5 - parent: 1 - type: Transform - - uid: 1804 - components: - - pos: 28.5,5.5 - parent: 1 - type: Transform - - uid: 1843 - components: - - pos: -20.5,-3.5 - parent: 1 - type: Transform - - uid: 1852 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,16.5 - parent: 1 - type: Transform - - uid: 1855 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,7.5 - parent: 1 - type: Transform - - uid: 1856 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,7.5 - parent: 1 - type: Transform - - uid: 1857 - components: - - pos: -17.5,7.5 - parent: 1 - type: Transform - - uid: 1858 - components: - - pos: -18.5,7.5 - parent: 1 - type: Transform - - uid: 5371 - components: - - pos: -5.5,19.5 - parent: 1 - type: Transform - - uid: 5372 - components: - - pos: 3.5,31.5 - parent: 1 - type: Transform - - uid: 5376 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,16.5 - parent: 1 - type: Transform - - uid: 5672 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-15.5 - parent: 1 - type: Transform - - uid: 7440 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-17.5 - parent: 1 - type: Transform - - uid: 7718 - components: - - pos: -5.5,-29.5 - parent: 1 - type: Transform - - uid: 7719 - components: - - pos: -1.5,-29.5 - parent: 1 - type: Transform - - uid: 9638 - components: - - pos: 15.5,27.5 - parent: 1 - type: Transform - - uid: 12412 - components: - - pos: -10.5,-28.5 - parent: 1 - type: Transform - - uid: 12413 - components: - - pos: -10.5,-31.5 - parent: 1 - type: Transform - - uid: 12414 - components: - - pos: -13.5,-30.5 - parent: 1 - type: Transform - - uid: 12415 - components: - - pos: -17.5,-53.5 - parent: 1 - type: Transform - - uid: 12416 - components: - - pos: -38.5,-10.5 - parent: 1 - type: Transform - - uid: 12417 - components: - - pos: -31.5,13.5 - parent: 1 - type: Transform -- proto: HydroponicsToolClippers - entities: - - uid: 5462 - components: - - pos: 29.474905,24.50394 - parent: 1 - type: Transform - - uid: 12458 - components: - - pos: -2.512826,-0.5396495 - parent: 1 - type: Transform -- proto: HydroponicsToolHatchet - entities: - - uid: 12460 - components: - - pos: -2.2798755,-0.4458995 - parent: 1 - type: Transform -- proto: HydroponicsToolMiniHoe - entities: - - uid: 5461 - components: - - pos: 29.474905,24.550816 - parent: 1 - type: Transform - - uid: 12457 - components: - - pos: -2.012826,-0.4458995 - parent: 1 - type: Transform -- proto: HydroponicsToolSpade - entities: - - uid: 5463 - components: - - pos: 29.506155,24.550816 - parent: 1 - type: Transform - - uid: 12459 - components: - - pos: -2.465951,-0.3052745 - parent: 1 - type: Transform -- proto: hydroponicsTray - entities: - - uid: 4939 - components: - - pos: 31.5,28.5 - parent: 1 - type: Transform - - uid: 4940 - components: - - pos: 30.5,28.5 - parent: 1 - type: Transform - - uid: 4943 - components: - - pos: 29.5,28.5 - parent: 1 - type: Transform - - uid: 4944 - components: - - pos: 28.5,28.5 - parent: 1 - type: Transform - - uid: 5996 - components: - - pos: 0.5,-2.5 - parent: 1 - type: Transform - - uid: 5997 - components: - - pos: 1.5,-2.5 - parent: 1 - type: Transform - - uid: 5998 - components: - - pos: 2.5,-2.5 - parent: 1 - type: Transform - - uid: 5999 - components: - - pos: 4.5,-2.5 - parent: 1 - type: Transform - - uid: 6000 - components: - - pos: 5.5,-2.5 - parent: 1 - type: Transform - - uid: 6001 - components: - - pos: -1.5,-5.5 - parent: 1 - type: Transform - - uid: 6002 - components: - - pos: -1.5,-4.5 - parent: 1 - type: Transform - - uid: 6003 - components: - - pos: 0.5,-5.5 - parent: 1 - type: Transform - - uid: 6004 - components: - - pos: 0.5,-4.5 - parent: 1 - type: Transform - - uid: 6005 - components: - - pos: 2.5,-5.5 - parent: 1 - type: Transform - - uid: 6006 - components: - - pos: 2.5,-4.5 - parent: 1 - type: Transform -- proto: InflatableDoorStack - entities: - - uid: 7147 - components: - - pos: 32.62186,-18.512093 - parent: 1 - type: Transform -- proto: InflatableWallStack - entities: - - uid: 7146 - components: - - pos: 32.40311,-18.355843 - parent: 1 - type: Transform -- proto: IngotGold - entities: - - uid: 4131 - components: - - pos: -1.465405,25.0651 - parent: 1 - type: Transform -- proto: IngotSilver - entities: - - uid: 4137 - components: - - pos: -1.4981794,24.932814 - parent: 1 - type: Transform -- proto: IntercomAll - entities: - - uid: 5491 - components: - - pos: 0.5,22.5 - parent: 1 - type: Transform - - uid: 5492 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,29.5 - parent: 1 - type: Transform -- proto: IntercomCommand - entities: - - uid: 5488 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,27.5 - parent: 1 - type: Transform - - uid: 5489 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,28.5 - parent: 1 - type: Transform - - uid: 5504 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,23.5 - parent: 1 - type: Transform -- proto: IntercomCommon - entities: - - uid: 3910 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,53.5 - parent: 1 - type: Transform - - uid: 3911 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,51.5 - parent: 1 - type: Transform - - uid: 3912 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,53.5 - parent: 1 - type: Transform - - uid: 3913 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,51.5 - parent: 1 - type: Transform -- proto: IntercomEngineering - entities: - - uid: 9272 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-5.5 - parent: 1 - type: Transform - - uid: 9273 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-13.5 - parent: 1 - type: Transform - - uid: 9274 - components: - - rot: 3.141592653589793 rad - pos: 22.5,-12.5 - parent: 1 - type: Transform - - uid: 9275 - components: - - pos: 22.5,-2.5 - parent: 1 - type: Transform - - uid: 9276 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-5.5 - parent: 1 - type: Transform - - uid: 9277 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-15.5 - parent: 1 - type: Transform - - uid: 9278 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-4.5 - parent: 1 - type: Transform -- proto: IntercomMedical - entities: - - uid: 5702 - components: - - rot: 3.141592653589793 rad - pos: -7.5,7.5 - parent: 1 - type: Transform - - uid: 9258 - components: - - rot: 3.141592653589793 rad - pos: -10.5,12.5 - parent: 1 - type: Transform - - uid: 9259 - components: - - pos: -12.5,22.5 - parent: 1 - type: Transform - - uid: 9260 - components: - - rot: 3.141592653589793 rad - pos: -25.5,4.5 - parent: 1 - type: Transform - - uid: 9261 - components: - - pos: -22.5,17.5 - parent: 1 - type: Transform - - uid: 9262 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,21.5 - parent: 1 - type: Transform -- proto: IntercomScience - entities: - - uid: 24 - components: - - pos: -27.5,-4.5 - parent: 1 - type: Transform - - uid: 9263 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-3.5 - parent: 1 - type: Transform - - uid: 9265 - components: - - pos: -14.5,-11.5 - parent: 1 - type: Transform - - uid: 9266 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-16.5 - parent: 1 - type: Transform - - uid: 9267 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-7.5 - parent: 1 - type: Transform -- proto: IntercomSecurity - entities: - - uid: 5302 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,11.5 - parent: 1 - type: Transform - - uid: 5494 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,14.5 - parent: 1 - type: Transform - - uid: 5496 - components: - - pos: 21.5,16.5 - parent: 1 - type: Transform - - uid: 5497 - components: - - rot: 3.141592653589793 rad - pos: 21.5,4.5 - parent: 1 - type: Transform - - uid: 5499 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,14.5 - parent: 1 - type: Transform - - uid: 5500 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,13.5 - parent: 1 - type: Transform - - uid: 5501 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,16.5 - parent: 1 - type: Transform - - uid: 10116 - components: - - pos: 14.5,11.5 - parent: 1 - type: Transform - - uid: 11606 - components: - - pos: 28.5,11.5 - parent: 1 - type: Transform -- proto: IntercomService - entities: - - uid: 9256 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,3.5 - parent: 1 - type: Transform -- proto: IntercomSupply - entities: - - uid: 9268 - components: - - pos: 6.5,-18.5 - parent: 1 - type: Transform - - uid: 9269 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-18.5 - parent: 1 - type: Transform - - uid: 9270 - components: - - pos: 12.5,-24.5 - parent: 1 - type: Transform - - uid: 9271 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-22.5 - parent: 1 - type: Transform -- proto: JanitorialTrolley - entities: - - uid: 12437 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-0.5 - parent: 1 - type: Transform -- proto: JetpackBlueFilled - entities: - - uid: 5005 - components: - - flags: InContainer - type: MetaData - - parent: 4120 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: JetpackMiniFilled - entities: - - uid: 4926 - components: - - pos: 40.56656,21.748663 - parent: 1 - type: Transform - - uid: 4927 - components: - - pos: 40.50406,21.498663 - parent: 1 - type: Transform -- proto: KitchenMicrowave - entities: - - uid: 4942 - components: - - pos: 28.5,24.5 - parent: 1 - type: Transform - - uid: 5968 - components: - - pos: 5.5,1.5 - parent: 1 - type: Transform -- proto: KitchenReagentGrinder - entities: - - uid: 4941 - components: - - pos: 27.5,24.5 - parent: 1 - type: Transform - - uid: 5870 - components: - - pos: -10.5,16.5 - parent: 1 - type: Transform - - uid: 5914 - components: - - pos: -14.5,-1.5 - parent: 1 - type: Transform - - uid: 5967 - components: - - pos: 5.5,3.5 - parent: 1 - type: Transform -- proto: KitchenSpike - entities: - - uid: 5970 - components: - - pos: -1.5,3.5 - parent: 1 - type: Transform -- proto: Lamp - entities: - - uid: 3986 - components: - - pos: -9.510255,48.896393 - parent: 1 - type: Transform - - uid: 3990 - components: - - pos: -8.49463,57.014515 - parent: 1 - type: Transform - - uid: 3991 - components: - - pos: -10.55713,54.97145 - parent: 1 - type: Transform - - uid: 4012 - components: - - pos: -7.5221167,46.845314 - parent: 1 - type: Transform - - uid: 5584 - components: - - pos: -40.604885,-5.037887 - parent: 1 - type: Transform - - uid: 6026 - components: - - pos: -12.614596,-0.4335618 - parent: 1 - type: Transform - - uid: 6048 - components: - - pos: -17.453178,-4.0584826 - parent: 1 - type: Transform - - uid: 7287 - components: - - pos: 16.489933,-23.942678 - parent: 1 - type: Transform - - uid: 8246 - components: - - pos: -9.624902,-11.094046 - parent: 1 - type: Transform - - uid: 9589 - components: - - pos: 40.264347,31.975986 - parent: 1 - type: Transform - - uid: 9590 - components: - - pos: 46.436222,31.944736 - parent: 1 - type: Transform - - uid: 9591 - components: - - pos: 39.451847,33.913486 - parent: 1 - type: Transform - - uid: 9635 - components: - - rot: 1.5707963267948966 rad - pos: 18.518274,26.145664 - parent: 1 - type: Transform -- proto: LampGold - entities: - - uid: 5583 - components: - - pos: -36.27676,-2.084762 - parent: 1 - type: Transform - - uid: 7418 - components: - - pos: 11.72576,-18.556658 - parent: 1 - type: Transform - - uid: 9016 - components: - - pos: -38.493835,-9.175766 - parent: 1 - type: Transform -- proto: LargeBeaker - entities: - - uid: 6087 - components: - - pos: -27.397102,-5.3872204 - parent: 1 - type: Transform -- proto: LightReplacer - entities: - - uid: 7668 - components: - - pos: 12.627049,-0.27726722 - parent: 1 - type: Transform -- proto: LockerAtmosphericsFilled - entities: - - uid: 7128 - components: - - pos: 33.5,-16.5 - parent: 1 - type: Transform - - uid: 7129 - components: - - pos: 32.5,-16.5 - parent: 1 - type: Transform -- proto: LockerBooze - entities: - - uid: 8297 - components: - - pos: -27.5,-13.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerBoozeFilled - entities: - - uid: 5951 - components: - - pos: 1.5,5.5 - parent: 1 - type: Transform -- proto: LockerBotanistFilled - entities: - - uid: 3372 - components: - - pos: -0.5,-2.5 - parent: 1 - type: Transform - - uid: 5994 - components: - - pos: -0.5,-1.5 - parent: 1 - type: Transform -- proto: LockerCaptainFilled - entities: - - uid: 4090 - components: - - pos: 3.5,27.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1497 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 5926 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerChemistryFilled - entities: - - uid: 5613 - components: - - pos: -13.5,13.5 - parent: 1 - type: Transform -- proto: LockerChiefEngineerFilled - entities: - - uid: 5669 - components: - - pos: 20.5,-15.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 93.465614 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 5670 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerChiefMedicalOfficerFilled - entities: - - uid: 1867 - components: - - pos: -20.5,16.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 98.0039 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1868 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerDetectiveFilled - entities: - - uid: 5356 - components: - - pos: 27.5,6.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 93.465614 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 5357 - - 5358 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerElectricalSuppliesFilled - entities: - - uid: 3898 - components: - - pos: -2.5,46.5 - parent: 1 - type: Transform - - uid: 6762 - components: - - pos: 18.5,-5.5 - parent: 1 - type: Transform - - uid: 8827 - components: - - pos: -21.5,-24.5 - parent: 1 - type: Transform - - uid: 9138 - components: - - pos: 8.5,-15.5 - parent: 1 - type: Transform - - uid: 9355 - components: - - pos: 8.5,29.5 - parent: 1 - type: Transform - - uid: 9680 - components: - - pos: -28.5,27.5 - parent: 1 - type: Transform -- proto: LockerEngineerFilled - entities: - - uid: 3797 - components: - - pos: 19.5,-3.5 - parent: 1 - type: Transform - - uid: 6770 - components: - - pos: 23.5,-4.5 - parent: 1 - type: Transform - - uid: 6771 - components: - - pos: 23.5,-5.5 - parent: 1 - type: Transform - - uid: 6772 - components: - - pos: 23.5,-6.5 - parent: 1 - type: Transform -- proto: LockerEvidence - entities: - - uid: 12065 - components: - - pos: 13.5,8.5 - parent: 1 - type: Transform - - uid: 12066 - components: - - pos: 16.5,8.5 - parent: 1 - type: Transform - - uid: 12067 - components: - - pos: 19.5,8.5 - parent: 1 - type: Transform -- proto: LockerFreezer - entities: - - uid: 4120 - components: - - pos: -4.5,23.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 4829 - - 4842 - - 5005 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerHeadOfPersonnelFilled - entities: - - uid: 4965 - components: - - pos: -4.5,21.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1497 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 5928 - - 5927 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerHeadOfSecurityFilled - entities: - - uid: 5374 - components: - - pos: 29.5,12.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 12478 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerMedicalFilled - entities: - - uid: 1908 - components: - - pos: -26.5,9.5 - parent: 1 - type: Transform - - uid: 1909 - components: - - pos: -25.5,9.5 - parent: 1 - type: Transform - - uid: 5917 - components: - - pos: -23.5,9.5 - parent: 1 - type: Transform - - uid: 12608 - components: - - pos: 21.5,5.5 - parent: 1 - type: Transform -- proto: LockerMedicineFilled - entities: - - uid: 1905 - components: - - pos: -19.5,11.5 - parent: 1 - type: Transform - - uid: 1910 - components: - - pos: -18.5,11.5 - parent: 1 - type: Transform -- proto: LockerQuarterMasterFilled - entities: - - uid: 7443 - components: - - pos: 4.5,-16.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 75.31249 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 7444 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerResearchDirectorFilled - entities: - - uid: 1845 - components: - - pos: -21.5,-3.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 12418 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerSalvageSpecialistFilled - entities: - - uid: 3594 - components: - - pos: 19.5,-23.5 - parent: 1 - type: Transform - - uid: 7295 - components: - - pos: 18.5,-23.5 - parent: 1 - type: Transform -- proto: LockerScienceFilled - entities: - - uid: 3816 - components: - - pos: -18.5,-0.5 - parent: 1 - type: Transform - - uid: 3817 - components: - - pos: -17.5,-0.5 - parent: 1 - type: Transform - - uid: 3818 - components: - - pos: -16.5,-0.5 - parent: 1 - type: Transform - - uid: 5912 - components: - - pos: -15.5,-0.5 - parent: 1 - type: Transform -- proto: LockerSecurityFilled - entities: - - uid: 764 - components: - - pos: 18.5,14.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 765 - components: - - pos: 18.5,13.5 - parent: 1 - type: Transform - - uid: 766 - components: - - pos: 18.5,12.5 - parent: 1 - type: Transform -- proto: LockerWallMedicalFilled - entities: - - uid: 10854 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,13.5 - parent: 1 - type: Transform - - uid: 10855 - components: - - rot: 3.141592653589793 rad - pos: -13.5,17.5 - parent: 1 - type: Transform -- proto: LockerWardenFilled - entities: - - uid: 5368 - components: - - pos: 27.5,18.5 - parent: 1 - type: Transform -- proto: LockerWeldingSuppliesFilled - entities: - - uid: 6761 - components: - - pos: 18.5,-6.5 - parent: 1 - type: Transform - - uid: 8828 - components: - - pos: -21.5,-25.5 - parent: 1 - type: Transform - - uid: 8831 - components: - - pos: 14.5,-14.5 - parent: 1 - type: Transform - - uid: 9354 - components: - - pos: 8.5,30.5 - parent: 1 - type: Transform - - uid: 9681 - components: - - pos: -27.5,27.5 - parent: 1 - type: Transform -- proto: MachineAnomalyGenerator - entities: - - uid: 6063 - components: - - pos: -26.5,-2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound -- proto: MachineAnomalyVessel - entities: - - uid: 6097 - components: - - pos: -31.5,-7.5 - parent: 1 - type: Transform - - uid: 7153 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-6.5 - parent: 1 - type: Transform -- proto: MachineAPE - entities: - - uid: 6093 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-4.5 - parent: 1 - type: Transform - - uid: 6094 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-4.5 - parent: 1 - type: Transform - - uid: 6095 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-5.5 - parent: 1 - type: Transform - - uid: 6096 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-5.5 - parent: 1 - type: Transform -- proto: MachineArtifactAnalyzer - entities: - - uid: 6124 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-13.5 - parent: 1 - type: Transform -- proto: MagazinePistol - entities: - - uid: 5403 - components: - - pos: 29.556211,16.447828 - parent: 1 - type: Transform -- proto: MagazinePistolSubMachineGunRubber - entities: - - uid: 5311 - components: - - pos: 18.504484,15.628139 - parent: 1 - type: Transform - - uid: 5312 - components: - - pos: 18.77011,15.612514 - parent: 1 - type: Transform -- proto: MagazinePistolSubMachineGunTopMounted - entities: - - uid: 5386 - components: - - pos: 27.431211,14.508017 - parent: 1 - type: Transform - - uid: 5387 - components: - - pos: 27.431211,14.367392 - parent: 1 - type: Transform -- proto: MagazineRifle - entities: - - uid: 5432 - components: - - pos: 38.28125,11.49122 - parent: 1 - type: Transform - - uid: 5433 - components: - - pos: 38.421875,11.506845 - parent: 1 - type: Transform -- proto: MagazineRifleRubber - entities: - - uid: 5434 - components: - - pos: 38.59375,11.506845 - parent: 1 - type: Transform - - uid: 5435 - components: - - pos: 38.75,11.506845 - parent: 1 - type: Transform -- proto: MaintenanceFluffSpawner - entities: - - uid: 8830 - components: - - pos: -25.5,-24.5 - parent: 1 - type: Transform - - uid: 8907 - components: - - pos: -33.5,-5.5 - parent: 1 - type: Transform - - uid: 8914 - components: - - pos: -26.5,-16.5 - parent: 1 - type: Transform - - uid: 8915 - components: - - pos: -33.5,-8.5 - parent: 1 - type: Transform - - uid: 8916 - components: - - pos: -31.5,-2.5 - parent: 1 - type: Transform - - uid: 8920 - components: - - pos: -15.5,-22.5 - parent: 1 - type: Transform - - uid: 8921 - components: - - pos: -5.5,-17.5 - parent: 1 - type: Transform - - uid: 8922 - components: - - pos: -1.5,-17.5 - parent: 1 - type: Transform - - uid: 8923 - components: - - pos: -1.5,-15.5 - parent: 1 - type: Transform - - uid: 8926 - components: - - pos: -27.5,-21.5 - parent: 1 - type: Transform - - uid: 9049 - components: - - pos: -1.5,-7.5 - parent: 1 - type: Transform - - uid: 9146 - components: - - pos: 18.5,-18.5 - parent: 1 - type: Transform - - uid: 9150 - components: - - pos: 9.5,-12.5 - parent: 1 - type: Transform - - uid: 9154 - components: - - pos: 26.5,-20.5 - parent: 1 - type: Transform - - uid: 9167 - components: - - pos: 22.5,-0.5 - parent: 1 - type: Transform - - uid: 9255 - components: - - pos: -36.5,-9.5 - parent: 1 - type: Transform - - uid: 9329 - components: - - pos: -13.5,27.5 - parent: 1 - type: Transform - - uid: 9330 - components: - - pos: 16.5,23.5 - parent: 1 - type: Transform - - uid: 9471 - components: - - pos: 14.5,30.5 - parent: 1 - type: Transform - - uid: 9472 - components: - - pos: 12.5,32.5 - parent: 1 - type: Transform - - uid: 9477 - components: - - pos: 13.5,17.5 - parent: 1 - type: Transform - - uid: 9478 - components: - - pos: 14.5,17.5 - parent: 1 - type: Transform - - uid: 9481 - components: - - pos: 18.5,17.5 - parent: 1 - type: Transform - - uid: 9482 - components: - - pos: 19.5,22.5 - parent: 1 - type: Transform - - uid: 9485 - components: - - pos: 27.5,35.5 - parent: 1 - type: Transform - - uid: 9486 - components: - - pos: 29.5,35.5 - parent: 1 - type: Transform - - uid: 9551 - components: - - pos: 36.5,23.5 - parent: 1 - type: Transform - - uid: 9557 - components: - - pos: 41.5,11.5 - parent: 1 - type: Transform - - uid: 9558 - components: - - pos: 37.5,7.5 - parent: 1 - type: Transform - - uid: 9559 - components: - - pos: 42.5,7.5 - parent: 1 - type: Transform - - uid: 9714 - components: - - pos: -35.5,18.5 - parent: 1 - type: Transform - - uid: 9716 - components: - - pos: -32.5,18.5 - parent: 1 - type: Transform - - uid: 9717 - components: - - pos: -24.5,26.5 - parent: 1 - type: Transform - - uid: 9721 - components: - - pos: -19.5,20.5 - parent: 1 - type: Transform - - uid: 9722 - components: - - pos: -19.5,21.5 - parent: 1 - type: Transform - - uid: 9727 - components: - - pos: -31.5,21.5 - parent: 1 - type: Transform -- proto: MaintenancePlantSpawner - entities: - - uid: 10641 - components: - - pos: -28.5,24.5 - parent: 1 - type: Transform - - uid: 10642 - components: - - pos: 28.5,-18.5 - parent: 1 - type: Transform - - uid: 10643 - components: - - pos: 20.5,35.5 - parent: 1 - type: Transform -- proto: MaintenanceToolSpawner - entities: - - uid: 8832 - components: - - pos: -23.5,-25.5 - parent: 1 - type: Transform - - uid: 8903 - components: - - pos: -41.5,-9.5 - parent: 1 - type: Transform - - uid: 8905 - components: - - pos: -33.5,-6.5 - parent: 1 - type: Transform - - uid: 8906 - components: - - pos: -30.5,-2.5 - parent: 1 - type: Transform - - uid: 8912 - components: - - pos: -24.5,-13.5 - parent: 1 - type: Transform - - uid: 8913 - components: - - pos: -26.5,-15.5 - parent: 1 - type: Transform - - uid: 8918 - components: - - pos: -18.5,-20.5 - parent: 1 - type: Transform - - uid: 8919 - components: - - pos: -14.5,-22.5 - parent: 1 - type: Transform - - uid: 8924 - components: - - pos: -1.5,-16.5 - parent: 1 - type: Transform - - uid: 8925 - components: - - pos: -4.5,-17.5 - parent: 1 - type: Transform - - uid: 9145 - components: - - pos: 19.5,-18.5 - parent: 1 - type: Transform - - uid: 9147 - components: - - pos: 9.5,-11.5 - parent: 1 - type: Transform - - uid: 9148 - components: - - pos: 28.5,-14.5 - parent: 1 - type: Transform - - uid: 9153 - components: - - pos: 26.5,-21.5 - parent: 1 - type: Transform - - uid: 9168 - components: - - pos: 42.5,-1.5 - parent: 1 - type: Transform - - uid: 9169 - components: - - pos: 32.5,-3.5 - parent: 1 - type: Transform - - uid: 9473 - components: - - pos: 12.5,33.5 - parent: 1 - type: Transform - - uid: 9474 - components: - - pos: 12.5,30.5 - parent: 1 - type: Transform - - uid: 9476 - components: - - pos: 12.5,17.5 - parent: 1 - type: Transform - - uid: 9479 - components: - - pos: 16.5,17.5 - parent: 1 - type: Transform - - uid: 9480 - components: - - pos: 23.5,21.5 - parent: 1 - type: Transform - - uid: 9552 - components: - - pos: 36.5,25.5 - parent: 1 - type: Transform - - uid: 9553 - components: - - pos: 41.5,12.5 - parent: 1 - type: Transform - - uid: 9554 - components: - - pos: 38.5,7.5 - parent: 1 - type: Transform - - uid: 9555 - components: - - pos: 42.5,6.5 - parent: 1 - type: Transform - - uid: 9713 - components: - - pos: -34.5,18.5 - parent: 1 - type: Transform - - uid: 9719 - components: - - pos: -22.5,29.5 - parent: 1 - type: Transform - - uid: 9720 - components: - - pos: -7.5,23.5 - parent: 1 - type: Transform - - uid: 9723 - components: - - pos: -28.5,20.5 - parent: 1 - type: Transform - - uid: 9728 - components: - - pos: -32.5,21.5 - parent: 1 - type: Transform - - uid: 9729 - components: - - pos: -28.5,11.5 - parent: 1 - type: Transform -- proto: MaintenanceWeaponSpawner - entities: - - uid: 8834 - components: - - pos: -23.5,-26.5 - parent: 1 - type: Transform - - uid: 8910 - components: - - pos: -31.5,-19.5 - parent: 1 - type: Transform - - uid: 9144 - components: - - pos: 20.5,-18.5 - parent: 1 - type: Transform - - uid: 9170 - components: - - pos: 32.5,-5.5 - parent: 1 - type: Transform - - uid: 9470 - components: - - pos: 21.5,30.5 - parent: 1 - type: Transform - - uid: 9483 - components: - - pos: 19.5,23.5 - parent: 1 - type: Transform - - uid: 9484 - components: - - pos: 23.5,32.5 - parent: 1 - type: Transform - - uid: 9549 - components: - - pos: 36.5,26.5 - parent: 1 - type: Transform - - uid: 9715 - components: - - pos: -22.5,26.5 - parent: 1 - type: Transform - - uid: 9724 - components: - - pos: -28.5,23.5 - parent: 1 - type: Transform -- proto: MaterialCloth - entities: - - uid: 5089 - components: - - pos: 0.3902992,21.580257 - parent: 1 - type: Transform -- proto: MaterialDurathread - entities: - - uid: 5090 - components: - - pos: 0.4215492,21.564632 - parent: 1 - type: Transform -- proto: MaterialReclaimer - entities: - - uid: 7289 - components: - - pos: 21.5,-24.5 - parent: 1 - type: Transform -- proto: MaterialReclaimerMachineCircuitboard - entities: - - uid: 9518 - components: - - pos: -2.569489,-34.556107 - parent: 1 - type: Transform -- proto: MaterialWoodPlank - entities: - - uid: 8495 - components: - - pos: -30.470095,-14.477021 - parent: 1 - type: Transform -- proto: MedicalBed - entities: - - uid: 1853 - components: - - pos: -18.5,5.5 - parent: 1 - type: Transform - - uid: 1854 - components: - - pos: -15.5,5.5 - parent: 1 - type: Transform - - uid: 1862 - components: - - pos: -18.5,16.5 - parent: 1 - type: Transform - - uid: 5339 - components: - - pos: 23.5,6.5 - parent: 1 - type: Transform - - uid: 5607 - components: - - pos: -10.5,18.5 - parent: 1 - type: Transform - - uid: 5618 - components: - - pos: -10.5,21.5 - parent: 1 - type: Transform -- proto: MedicalTechFab - entities: - - uid: 5597 - components: - - pos: -23.5,7.5 - parent: 1 - type: Transform -- proto: MedkitAdvancedFilled - entities: - - uid: 4118 - components: - - pos: -2.430763,27.440598 - parent: 1 - type: Transform - - uid: 5900 - components: - - pos: -26.652166,11.588954 - parent: 1 - type: Transform -- proto: MedkitBruteFilled - entities: - - uid: 5893 - components: - - pos: -24.902317,11.678088 - parent: 1 - type: Transform - - uid: 5897 - components: - - pos: -24.902166,11.526454 - parent: 1 - type: Transform - - uid: 8819 - components: - - pos: -40.48545,-16.453053 - parent: 1 - type: Transform -- proto: MedkitBurnFilled - entities: - - uid: 5891 - components: - - pos: -25.409866,11.671727 - parent: 1 - type: Transform - - uid: 5898 - components: - - pos: -25.402166,11.510829 - parent: 1 - type: Transform -- proto: MedkitCombatFilled - entities: - - uid: 4119 - components: - - pos: -2.4295425,27.687153 - parent: 1 - type: Transform -- proto: MedkitFilled - entities: - - uid: 5059 - components: - - pos: 5.540815,19.460373 - parent: 1 - type: Transform - - uid: 5347 - components: - - pos: 23.535002,7.498471 - parent: 1 - type: Transform - - uid: 5895 - components: - - pos: -24.402317,11.678088 - parent: 1 - type: Transform - - uid: 5896 - components: - - pos: -24.386541,11.526454 - parent: 1 - type: Transform - - uid: 7419 - components: - - pos: 11.436758,-19.113333 - parent: 1 - type: Transform - - uid: 9579 - components: - - pos: 44.521946,6.5499096 - parent: 1 - type: Transform - - uid: 9641 - components: - - pos: -26.512701,21.421293 - parent: 1 - type: Transform -- proto: MedkitO2 - entities: - - uid: 5066 - components: - - pos: -3.487246,31.609404 - parent: 1 - type: Transform -- proto: MedkitOxygenFilled - entities: - - uid: 5352 - components: - - pos: 23.535002,7.373471 - parent: 1 - type: Transform - - uid: 5890 - components: - - pos: -25.909866,11.671727 - parent: 1 - type: Transform - - uid: 5899 - components: - - pos: -25.902166,11.510829 - parent: 1 - type: Transform -- proto: MedkitRadiationFilled - entities: - - uid: 5892 - components: - - pos: -26.402166,11.656432 - parent: 1 - type: Transform -- proto: MedkitToxinFilled - entities: - - uid: 5894 - components: - - pos: -26.394794,11.510829 - parent: 1 - type: Transform -- proto: Mirror - entities: - - uid: 7888 - components: - - pos: -18.5,-23.5 - parent: 1 - type: Transform - - uid: 7889 - components: - - pos: -17.5,-23.5 - parent: 1 - type: Transform - - uid: 7890 - components: - - pos: -16.5,-23.5 - parent: 1 - type: Transform -- proto: MonkeyCube - entities: - - uid: 5990 - components: - - pos: -2.5931392,3.6905057 - parent: 1 - type: Transform -- proto: MonkeyCubeBox - entities: - - uid: 6333 - components: - - pos: -14.498325,-10.477551 - parent: 1 - type: Transform -- proto: MopBucketFull - entities: - - uid: 8847 - components: - - pos: 17.627773,-0.48197973 - parent: 1 - type: Transform - - uid: 9652 - components: - - pos: 13.5359125,24.626709 - parent: 1 - type: Transform - - uid: 11938 - components: - - pos: 13.5359125,25.564209 - parent: 1 - type: Transform -- proto: MopItem - entities: - - uid: 8848 - components: - - pos: 17.455898,-0.46635473 - parent: 1 - type: Transform - - uid: 9654 - components: - - pos: 13.2546625,23.517334 - parent: 1 - type: Transform - - uid: 9657 - components: - - pos: 13.4890375,23.501709 - parent: 1 - type: Transform -- proto: Morgue - entities: - - uid: 1913 - components: - - rot: 3.141592653589793 rad - pos: -25.5,13.5 - parent: 1 - type: Transform - - uid: 1914 - components: - - rot: 3.141592653589793 rad - pos: -26.5,13.5 - parent: 1 - type: Transform - - uid: 1915 - components: - - rot: 3.141592653589793 rad - pos: -24.5,13.5 - parent: 1 - type: Transform - - uid: 1916 - components: - - pos: -26.5,16.5 - parent: 1 - type: Transform - - uid: 1917 - components: - - pos: -25.5,16.5 - parent: 1 - type: Transform - - uid: 1918 - components: - - pos: -24.5,16.5 - parent: 1 - type: Transform - - uid: 3476 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,16.5 - parent: 1 - type: Transform - - uid: 5343 - components: - - rot: 3.141592653589793 rad - pos: 20.5,5.5 - parent: 1 - type: Transform -- proto: MouseTimedSpawner - entities: - - uid: 11909 - components: - - pos: -37.5,-13.5 - parent: 1 - type: Transform - - uid: 11910 - components: - - pos: -28.5,26.5 - parent: 1 - type: Transform - - uid: 11911 - components: - - pos: 18.5,29.5 - parent: 1 - type: Transform - - uid: 11912 - components: - - pos: 18.5,-17.5 - parent: 1 - type: Transform -- proto: Multitool - entities: - - uid: 6072 - components: - - pos: -5.580178,-15.315853 - parent: 1 - type: Transform - - uid: 6335 - components: - - pos: -14.316043,-8.369874 - parent: 1 - type: Transform -- proto: NanoManipulatorStockPart - entities: - - uid: 9501 - components: - - pos: -3.015568,-31.493607 - parent: 1 - type: Transform - - uid: 9502 - components: - - pos: -3.960114,-31.306107 - parent: 1 - type: Transform -- proto: NetworkConfigurator - entities: - - uid: 5602 - components: - - pos: -23.538898,5.5020247 - parent: 1 - type: Transform -- proto: NitrogenCanister - entities: - - uid: 6803 - components: - - pos: 43.5,-5.5 - parent: 1 - type: Transform - - uid: 6996 - components: - - pos: 36.5,-4.5 - parent: 1 - type: Transform - - uid: 6998 - components: - - pos: 35.5,-4.5 - parent: 1 - type: Transform - - uid: 8864 - components: - - pos: -13.5,-20.5 - parent: 1 - type: Transform - - uid: 8865 - components: - - pos: -29.5,-10.5 - parent: 1 - type: Transform - - uid: 8869 - components: - - pos: -32.5,-19.5 - parent: 1 - type: Transform - - uid: 9127 - components: - - pos: 24.5,-18.5 - parent: 1 - type: Transform - - uid: 9182 - components: - - pos: 28.5,-0.5 - parent: 1 - type: Transform - - uid: 9251 - components: - - pos: 31.5,32.5 - parent: 1 - type: Transform - - uid: 9342 - components: - - pos: 35.5,16.5 - parent: 1 - type: Transform - - uid: 9343 - components: - - pos: 21.5,23.5 - parent: 1 - type: Transform - - uid: 9344 - components: - - pos: 7.5,21.5 - parent: 1 - type: Transform - - uid: 9693 - components: - - pos: -15.5,23.5 - parent: 1 - type: Transform - - uid: 9694 - components: - - pos: -7.5,20.5 - parent: 1 - type: Transform -- proto: NitrogenTankFilled - entities: - - uid: 8927 - components: - - pos: -33.671288,-7.446391 - parent: 1 - type: Transform - - uid: 9730 - components: - - pos: -28.673817,12.610113 - parent: 1 - type: Transform -- proto: NitrousOxideCanister - entities: - - uid: 6324 - components: - - pos: -18.5,-18.5 - parent: 1 - type: Transform - - uid: 6810 - components: - - pos: 43.5,-11.5 - parent: 1 - type: Transform - - uid: 7003 - components: - - pos: 36.5,-2.5 - parent: 1 - type: Transform -- proto: NuclearBomb - entities: - - uid: 4128 - components: - - pos: -4.5,25.5 - parent: 1 - type: Transform -- proto: Ointment - entities: - - uid: 9630 - components: - - pos: 18.654701,27.734482 - parent: 1 - type: Transform -- proto: Omnitool - entities: - - uid: 4829 - components: - - flags: InContainer - type: MetaData - - parent: 4120 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: OperatingTable - entities: - - uid: 5521 - components: - - pos: -24.5,22.5 - parent: 1 - type: Transform -- proto: OreProcessor - entities: - - uid: 7286 - components: - - pos: 20.5,-24.5 - parent: 1 - type: Transform -- proto: OreProcessorMachineCircuitboard - entities: - - uid: 9517 - components: - - pos: -2.366364,-34.35298 - parent: 1 - type: Transform -- proto: OrganHumanHeart - entities: - - uid: 12288 - components: - - pos: -11.34931,-33.29647 - parent: 1 - type: Transform -- proto: OxygenCanister - entities: - - uid: 3356 - components: - - pos: 28.5,-20.5 - parent: 1 - type: Transform - - uid: 4924 - components: - - pos: 41.5,21.5 - parent: 1 - type: Transform - - uid: 6802 - components: - - pos: 43.5,-7.5 - parent: 1 - type: Transform - - uid: 6995 - components: - - pos: 36.5,-3.5 - parent: 1 - type: Transform - - uid: 6997 - components: - - pos: 35.5,-3.5 - parent: 1 - type: Transform - - uid: 7283 - components: - - pos: 26.5,-23.5 - parent: 1 - type: Transform - - uid: 8805 - components: - - pos: -34.5,-23.5 - parent: 1 - type: Transform - - uid: 8863 - components: - - pos: -14.5,-20.5 - parent: 1 - type: Transform - - uid: 8866 - components: - - pos: -28.5,-10.5 - parent: 1 - type: Transform - - uid: 8870 - components: - - pos: -33.5,-19.5 - parent: 1 - type: Transform - - uid: 9128 - components: - - pos: 23.5,-18.5 - parent: 1 - type: Transform - - uid: 9181 - components: - - pos: 27.5,-0.5 - parent: 1 - type: Transform - - uid: 9252 - components: - - pos: 32.5,32.5 - parent: 1 - type: Transform - - uid: 9339 - components: - - pos: 7.5,22.5 - parent: 1 - type: Transform - - uid: 9340 - components: - - pos: 21.5,24.5 - parent: 1 - type: Transform - - uid: 9341 - components: - - pos: 35.5,17.5 - parent: 1 - type: Transform - - uid: 9662 - components: - - pos: -29.5,29.5 - parent: 1 - type: Transform - - uid: 9664 - components: - - pos: -18.5,31.5 - parent: 1 - type: Transform - - uid: 9695 - components: - - pos: -16.5,23.5 - parent: 1 - type: Transform - - uid: 9696 - components: - - pos: -7.5,21.5 - parent: 1 - type: Transform -- proto: PaintingMonkey - entities: - - uid: 5040 - components: - - pos: 3.5,13.5 - parent: 1 - type: Transform -- proto: Paper - entities: - - uid: 5585 - components: - - pos: -39.604885,-5.4378414 - parent: 1 - type: Transform - - uid: 5586 - components: - - pos: -40.448635,-5.8909664 - parent: 1 - type: Transform - - uid: 5587 - components: - - pos: -39.55801,-6.2972164 - parent: 1 - type: Transform - - uid: 5588 - components: - - pos: -40.104885,-6.3753414 - parent: 1 - type: Transform - - uid: 5589 - components: - - pos: -40.011135,-5.7034664 - parent: 1 - type: Transform -- proto: PaperBin10 - entities: - - uid: 4110 - components: - - pos: -10.5,31.5 - parent: 1 - type: Transform - - uid: 5073 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,19.5 - parent: 1 - type: Transform - - uid: 5581 - components: - - pos: -37.5,-2.5 - parent: 1 - type: Transform - - uid: 6053 - components: - - pos: -17.5,-3.5 - parent: 1 - type: Transform - - uid: 7400 - components: - - pos: 5.5,-20.5 - parent: 1 - type: Transform - - uid: 7447 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-15.5 - parent: 1 - type: Transform - - uid: 7782 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-28.5 - parent: 1 - type: Transform - - uid: 9588 - components: - - pos: 39.5,31.5 - parent: 1 - type: Transform -- proto: PaperBin5 - entities: - - uid: 3985 - components: - - pos: -10.5,52.5 - parent: 1 - type: Transform - - uid: 3994 - components: - - pos: -4.5,56.5 - parent: 1 - type: Transform - - uid: 4974 - components: - - pos: 5.5,31.5 - parent: 1 - type: Transform - - uid: 5331 - components: - - pos: 27.5,10.5 - parent: 1 - type: Transform - - uid: 7405 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-17.5 - parent: 1 - type: Transform -- proto: PaperCaptainsThoughts - entities: - - uid: 4977 - components: - - pos: 4.359273,27.643576 - parent: 1 - type: Transform - - uid: 4978 - components: - - pos: 4.437398,27.643576 - parent: 1 - type: Transform - - uid: 4979 - components: - - pos: 4.515523,27.643576 - parent: 1 - type: Transform - - uid: 4980 - components: - - pos: 4.593648,27.643576 - parent: 1 - type: Transform -- proto: PaperOffice - entities: - - uid: 3999 - components: - - rot: 3.141592653589793 rad - pos: -8.849914,48.62344 - parent: 1 - type: Transform - - uid: 4000 - components: - - rot: 3.141592653589793 rad - pos: -8.928039,48.62344 - parent: 1 - type: Transform - - uid: 4001 - components: - - rot: 3.141592653589793 rad - pos: -8.943664,48.62344 - parent: 1 - type: Transform - - uid: 4002 - components: - - rot: 3.141592653589793 rad - pos: -3.4749136,48.607815 - parent: 1 - type: Transform - - uid: 4003 - components: - - rot: 3.141592653589793 rad - pos: -3.3967886,48.576565 - parent: 1 - type: Transform - - uid: 4004 - components: - - pos: -7.5999136,56.62344 - parent: 1 - type: Transform - - uid: 4005 - components: - - pos: -7.5061636,56.62344 - parent: 1 - type: Transform - - uid: 4006 - components: - - pos: -7.4592886,56.62344 - parent: 1 - type: Transform - - uid: 4112 - components: - - pos: -9.663862,28.018454 - parent: 1 - type: Transform - - uid: 4113 - components: - - pos: -9.585737,27.940329 - parent: 1 - type: Transform - - uid: 4114 - components: - - pos: -9.304487,29.049704 - parent: 1 - type: Transform - - uid: 4115 - components: - - pos: -9.460737,28.955954 - parent: 1 - type: Transform - - uid: 5074 - components: - - pos: -4.5159507,19.627132 - parent: 1 - type: Transform - - uid: 5075 - components: - - pos: -4.5159507,19.627132 - parent: 1 - type: Transform - - uid: 5076 - components: - - pos: -4.5159507,19.627132 - parent: 1 - type: Transform - - uid: 5077 - components: - - pos: -4.5159507,19.627132 - parent: 1 - type: Transform - - uid: 5078 - components: - - pos: -4.5159507,19.627132 - parent: 1 - type: Transform - - uid: 5079 - components: - - pos: -4.5159507,19.627132 - parent: 1 - type: Transform - - uid: 5080 - components: - - pos: -4.5159507,19.627132 - parent: 1 - type: Transform - - uid: 5081 - components: - - pos: -4.5159507,19.627132 - parent: 1 - type: Transform - - uid: 5082 - components: - - pos: -4.5159507,19.627132 - parent: 1 - type: Transform - - uid: 5083 - components: - - pos: -4.5159507,19.627132 - parent: 1 - type: Transform - - uid: 5084 - components: - - pos: -4.5159507,19.627132 - parent: 1 - type: Transform - - uid: 5085 - components: - - pos: -4.5159507,19.627132 - parent: 1 - type: Transform - - uid: 5086 - components: - - pos: -4.5159507,19.627132 - parent: 1 - type: Transform - - uid: 5087 - components: - - pos: -4.5472007,19.595882 - parent: 1 - type: Transform - - uid: 5088 - components: - - pos: -4.5472007,19.595882 - parent: 1 - type: Transform - - uid: 5391 - components: - - pos: 27.337461,13.773642 - parent: 1 - type: Transform - - uid: 5392 - components: - - pos: 27.368711,13.758017 - parent: 1 - type: Transform - - uid: 5393 - components: - - pos: 27.415586,13.711142 - parent: 1 - type: Transform - - uid: 5394 - components: - - pos: 27.478086,13.679892 - parent: 1 - type: Transform - - uid: 5398 - components: - - pos: 28.493711,16.557203 - parent: 1 - type: Transform - - uid: 5399 - components: - - pos: 28.540586,16.557203 - parent: 1 - type: Transform - - uid: 5400 - components: - - pos: 28.587461,16.557203 - parent: 1 - type: Transform - - uid: 5401 - components: - - pos: 28.618711,16.557203 - parent: 1 - type: Transform - - uid: 5678 - components: - - pos: 18.339497,-14.389538 - parent: 1 - type: Transform - - uid: 5679 - components: - - pos: 18.339497,-14.295788 - parent: 1 - type: Transform - - uid: 5680 - components: - - pos: 18.339497,-14.186413 - parent: 1 - type: Transform - - uid: 5681 - components: - - pos: 18.355122,-14.061413 - parent: 1 - type: Transform - - uid: 5875 - components: - - pos: -22.6214,16.518099 - parent: 1 - type: Transform - - uid: 5876 - components: - - pos: -22.605776,16.455599 - parent: 1 - type: Transform - - uid: 5877 - components: - - pos: -22.59015,16.377474 - parent: 1 - type: Transform - - uid: 5878 - components: - - pos: -22.574526,16.268099 - parent: 1 - type: Transform - - uid: 5884 - components: - - pos: -14.637211,5.5536256 - parent: 1 - type: Transform - - uid: 5885 - components: - - pos: -17.62719,5.5455227 - parent: 1 - type: Transform - - uid: 5886 - components: - - pos: -17.62719,5.5455227 - parent: 1 - type: Transform - - uid: 5888 - components: - - pos: -14.637211,5.5536256 - parent: 1 - type: Transform - - uid: 6058 - components: - - pos: -16.855633,-2.6907523 - parent: 1 - type: Transform - - uid: 6059 - components: - - pos: -16.855633,-2.5970023 - parent: 1 - type: Transform - - uid: 6060 - components: - - pos: -16.855633,-2.5188773 - parent: 1 - type: Transform - - uid: 6061 - components: - - pos: -16.855633,-2.4720023 - parent: 1 - type: Transform - - uid: 6062 - components: - - pos: -16.855633,-2.3938773 - parent: 1 - type: Transform - - uid: 6789 - components: - - pos: 12.221728,-12.274454 - parent: 1 - type: Transform - - uid: 6790 - components: - - pos: 12.221728,-12.352579 - parent: 1 - type: Transform - - uid: 6791 - components: - - pos: 12.221728,-12.415079 - parent: 1 - type: Transform - - uid: 6792 - components: - - pos: 12.221728,-12.493204 - parent: 1 - type: Transform - - uid: 7306 - components: - - pos: 13.624326,-23.419518 - parent: 1 - type: Transform - - uid: 7394 - components: - - pos: 13.561826,-23.419518 - parent: 1 - type: Transform - - uid: 7396 - components: - - pos: 13.499326,-23.419518 - parent: 1 - type: Transform - - uid: 7406 - components: - - pos: 5.516494,-21.287186 - parent: 1 - type: Transform - - uid: 7407 - components: - - pos: 5.516494,-21.287186 - parent: 1 - type: Transform - - uid: 7408 - components: - - pos: 5.516494,-21.287186 - parent: 1 - type: Transform - - uid: 7409 - components: - - pos: 5.516494,-21.287186 - parent: 1 - type: Transform - - uid: 7410 - components: - - pos: 5.516494,-21.287186 - parent: 1 - type: Transform - - uid: 7411 - components: - - pos: 11.453994,-18.162186 - parent: 1 - type: Transform - - uid: 7412 - components: - - pos: 11.453994,-18.162186 - parent: 1 - type: Transform - - uid: 7413 - components: - - pos: 11.453994,-18.162186 - parent: 1 - type: Transform - - uid: 7414 - components: - - pos: 11.453994,-18.162186 - parent: 1 - type: Transform - - uid: 7415 - components: - - pos: 11.453994,-18.162186 - parent: 1 - type: Transform - - uid: 7450 - components: - - pos: 5.1056714,-15.299889 - parent: 1 - type: Transform - - uid: 7451 - components: - - pos: 5.1056714,-15.299889 - parent: 1 - type: Transform - - uid: 7452 - components: - - pos: 5.1056714,-15.299889 - parent: 1 - type: Transform - - uid: 7453 - components: - - pos: 5.1056714,-15.299889 - parent: 1 - type: Transform - - uid: 8247 - components: - - pos: -9.640527,-11.922171 - parent: 1 - type: Transform - - uid: 9592 - components: - - pos: 40.748722,31.554111 - parent: 1 - type: Transform - - uid: 9593 - components: - - pos: 40.826847,31.554111 - parent: 1 - type: Transform - - uid: 9594 - components: - - pos: 40.904972,31.554111 - parent: 1 - type: Transform - - uid: 9595 - components: - - pos: 40.951847,31.554111 - parent: 1 - type: Transform - - uid: 9596 - components: - - pos: 44.951847,31.538486 - parent: 1 - type: Transform - - uid: 9597 - components: - - pos: 45.029972,31.538486 - parent: 1 - type: Transform - - uid: 9598 - components: - - pos: 45.108097,31.538486 - parent: 1 - type: Transform - - uid: 9599 - components: - - pos: 45.170597,31.538486 - parent: 1 - type: Transform - - uid: 9602 - components: - - rot: 3.141592653589793 rad - pos: 43.576847,33.600986 - parent: 1 - type: Transform - - uid: 9603 - components: - - rot: 3.141592653589793 rad - pos: 43.451847,33.600986 - parent: 1 - type: Transform - - uid: 9604 - components: - - rot: 3.141592653589793 rad - pos: 43.279972,33.58536 - parent: 1 - type: Transform - - uid: 9605 - components: - - rot: 3.141592653589793 rad - pos: 43.186222,33.58536 - parent: 1 - type: Transform - - uid: 9612 - components: - - rot: 3.141592653589793 rad - pos: 39.826847,33.632236 - parent: 1 - type: Transform - - uid: 9613 - components: - - rot: 3.141592653589793 rad - pos: 39.795597,33.632236 - parent: 1 - type: Transform - - uid: 9614 - components: - - rot: 3.141592653589793 rad - pos: 39.748722,33.632236 - parent: 1 - type: Transform - - uid: 12431 - components: - - pos: -9.562402,-11.984671 - parent: 1 - type: Transform - - uid: 12432 - components: - - pos: -9.468652,-12.094046 - parent: 1 - type: Transform - - uid: 12433 - components: - - pos: -9.624902,-12.109671 - parent: 1 - type: Transform - - uid: 12434 - components: - - pos: -9.640527,-12.015921 - parent: 1 - type: Transform -- proto: PartRodMetal - entities: - - uid: 6092 - components: - - pos: -24.506477,-0.38722038 - parent: 1 - type: Transform - - uid: 6798 - components: - - pos: 18.539476,-8.350777 - parent: 1 - type: Transform - - uid: 6799 - components: - - pos: 18.539476,-8.350777 - parent: 1 - type: Transform - - uid: 7142 - components: - - pos: 32.46561,-18.402718 - parent: 1 - type: Transform - - uid: 7143 - components: - - pos: 32.46561,-18.402718 - parent: 1 - type: Transform - - uid: 11934 - components: - - pos: 12.1296625,23.642334 - parent: 1 - type: Transform - - uid: 11935 - components: - - pos: 11.9734125,23.657959 - parent: 1 - type: Transform -- proto: Pen - entities: - - uid: 1881 - components: - - pos: -19.882591,14.621025 - parent: 1 - type: Transform - - uid: 1882 - components: - - pos: -21.958109,-1.4018333 - parent: 1 - type: Transform - - uid: 3995 - components: - - pos: -8.015554,56.563858 - parent: 1 - type: Transform - - uid: 3996 - components: - - pos: -10.312429,54.548233 - parent: 1 - type: Transform - - uid: 3997 - components: - - rot: 3.141592653589793 rad - pos: -8.959289,48.52969 - parent: 1 - type: Transform - - uid: 3998 - components: - - rot: 3.141592653589793 rad - pos: -3.2874136,48.56094 - parent: 1 - type: Transform - - uid: 4106 - components: - - pos: -9.741987,27.659079 - parent: 1 - type: Transform - - uid: 4107 - components: - - pos: -9.304487,29.627829 - parent: 1 - type: Transform - - uid: 5354 - components: - - rot: -1.5707963267948966 rad - pos: 25.429817,10.545956 - parent: 1 - type: Transform - - uid: 5355 - components: - - rot: -1.5707963267948966 rad - pos: 25.773567,10.670956 - parent: 1 - type: Transform - - uid: 5395 - components: - - rot: -1.5707963267948966 rad - pos: 27.587461,13.804892 - parent: 1 - type: Transform - - uid: 5402 - components: - - rot: -1.5707963267948966 rad - pos: 28.821836,16.650953 - parent: 1 - type: Transform - - uid: 5593 - components: - - pos: -40.77676,-5.6722164 - parent: 1 - type: Transform - - uid: 5594 - components: - - pos: -39.21426,-6.2659664 - parent: 1 - type: Transform - - uid: 5595 - components: - - pos: -39.229885,-5.2659664 - parent: 1 - type: Transform - - uid: 5682 - components: - - rot: -1.5707963267948966 rad - pos: 18.651997,-14.061413 - parent: 1 - type: Transform - - uid: 5879 - components: - - rot: 3.141592653589793 rad - pos: -22.355776,16.299349 - parent: 1 - type: Transform - - uid: 6047 - components: - - pos: -16.293133,-2.3157523 - parent: 1 - type: Transform - - uid: 6793 - components: - - pos: 12.143603,-12.633829 - parent: 1 - type: Transform - - uid: 7416 - components: - - pos: 11.610244,-18.45906 - parent: 1 - type: Transform - - uid: 7417 - components: - - pos: 5.313369,-21.14656 - parent: 1 - type: Transform - - uid: 7454 - components: - - pos: 5.6369214,-15.503014 - parent: 1 - type: Transform - - uid: 9046 - components: - - pos: 16.646183,-24.473928 - parent: 1 - type: Transform - - uid: 9606 - components: - - pos: 45.826847,31.663486 - parent: 1 - type: Transform - - uid: 9607 - components: - - pos: 45.670597,31.522861 - parent: 1 - type: Transform - - uid: 9608 - components: - - rot: -1.5707963267948966 rad - pos: 41.670597,31.694736 - parent: 1 - type: Transform - - uid: 9609 - components: - - rot: -1.5707963267948966 rad - pos: 41.420597,31.725986 - parent: 1 - type: Transform - - uid: 9610 - components: - - rot: 3.141592653589793 rad - pos: 42.545597,33.58536 - parent: 1 - type: Transform - - uid: 9611 - components: - - rot: 1.5707963267948966 rad - pos: 39.873722,33.600986 - parent: 1 - type: Transform - - uid: 9637 - components: - - pos: 18.330774,25.583164 - parent: 1 - type: Transform - - uid: 10640 - components: - - pos: 16.333683,-24.473928 - parent: 1 - type: Transform - - uid: 12435 - components: - - pos: -9.253772,-11.803861 - parent: 1 - type: Transform - - uid: 12436 - components: - - pos: -13.198837,-28.688225 - parent: 1 - type: Transform -- proto: PenCap - entities: - - uid: 4976 - components: - - pos: 4.328023,27.581076 - parent: 1 - type: Transform -- proto: PersonalAI - entities: - - uid: 7651 - components: - - flags: SessionSpecific - type: MetaData - - pos: -40.503788,1.6275148 - parent: 1 - type: Transform - - uid: 8231 - components: - - flags: SessionSpecific - type: MetaData - - pos: -5.47295,-28.48368 - parent: 1 - type: Transform - - uid: 8253 - components: - - flags: SessionSpecific - type: MetaData - - pos: -2.3764815,-31.488258 - parent: 1 - type: Transform - - uid: 8254 - components: - - flags: SessionSpecific - type: MetaData - - pos: 5.3845835,10.568368 - parent: 1 - type: Transform - - uid: 8255 - components: - - flags: SessionSpecific - type: MetaData - - pos: -0.33936208,31.760487 - parent: 1 - type: Transform - - uid: 12429 - components: - - flags: SessionSpecific - type: MetaData - - pos: -12.687402,-12.500296 - parent: 1 - type: Transform - - uid: 12430 - components: - - flags: SessionSpecific - type: MetaData - - pos: -12.296777,-12.500296 - parent: 1 - type: Transform -- proto: PhoneInstrument - entities: - - uid: 4104 - components: - - pos: -9.523237,28.490625 - parent: 1 - type: Transform -- proto: PianoInstrument - entities: - - uid: 5042 - components: - - rot: 3.141592653589793 rad - pos: 4.5,11.5 - parent: 1 - type: Transform -- proto: Pickaxe - entities: - - uid: 1519 - components: - - pos: 20.414032,-20.475288 - parent: 1 - type: Transform - - uid: 7302 - components: - - pos: 20.648407,-20.490913 - parent: 1 - type: Transform -- proto: PinpointerNuclear - entities: - - uid: 4134 - components: - - pos: -2.6820543,23.560793 - parent: 1 - type: Transform -- proto: PlasmaCanister - entities: - - uid: 6320 - components: - - pos: -20.5,-18.5 - parent: 1 - type: Transform - - uid: 6812 - components: - - pos: 43.5,-15.5 - parent: 1 - type: Transform - - uid: 7002 - components: - - pos: 35.5,-2.5 - parent: 1 - type: Transform -- proto: PlasticFlapsAirtightClear - entities: - - uid: 1743 - components: - - pos: 7.5,-23.5 - parent: 1 - type: Transform - - uid: 1744 - components: - - pos: 10.5,-31.5 - parent: 1 - type: Transform - - uid: 1745 - components: - - pos: 10.5,-28.5 - parent: 1 - type: Transform - - uid: 1746 - components: - - pos: 14.5,-28.5 - parent: 1 - type: Transform - - uid: 1747 - components: - - pos: 14.5,-31.5 - parent: 1 - type: Transform - - uid: 3562 - components: - - pos: -35.5,25.5 - parent: 1 - type: Transform -- proto: PlasticFlapsAirtightOpaque - entities: - - uid: 2046 - components: - - pos: -38.5,19.5 - parent: 1 - type: Transform -- proto: PlushieLamp - entities: - - uid: 5991 - components: - - pos: 5.7439585,10.615243 - parent: 1 - type: Transform - - uid: 7808 - components: - - pos: -7.528466,-28.402908 - parent: 1 - type: Transform - - uid: 8263 - components: - - pos: -17.703978,-52.27695 - parent: 1 - type: Transform -- proto: PlushieRGBee - entities: - - uid: 2201 - components: - - pos: -24.499949,-19.444412 - parent: 1 - type: Transform -- proto: PlushieSpaceLizard - entities: - - uid: 12542 - components: - - pos: -14.489916,-61.54038 - parent: 1 - type: Transform -- proto: PonderingOrb - entities: - - uid: 12340 - components: - - desc: It shines a brilliant irradiating blue. - name: demon core - type: MetaData - - pos: -0.50479734,65.52099 - parent: 1 - type: Transform - - slope: 0.32 - intensity: 2 - type: RadiationSource -- proto: PortableGeneratorJrPacman - entities: - - uid: 5965 - components: - - pos: 25.5,-8.5 - parent: 1 - type: Transform - - uid: 5987 - components: - - pos: 8.5,-14.5 - parent: 1 - type: Transform - - uid: 5988 - components: - - pos: -32.5,-10.5 - parent: 1 - type: Transform - - uid: 5989 - components: - - pos: -29.5,9.5 - parent: 1 - type: Transform - - uid: 6013 - components: - - pos: -7.5,19.5 - parent: 1 - type: Transform - - uid: 6067 - components: - - pos: 35.5,5.5 - parent: 1 - type: Transform -- proto: PortableGeneratorPacman - entities: - - uid: 2857 - components: - - pos: -11.5,-53.5 - parent: 1 - type: Transform - - uid: 5958 - components: - - pos: 25.5,-3.5 - parent: 1 - type: Transform -- proto: PortableGeneratorSuperPacmanMachineCircuitboard - entities: - - uid: 9515 - components: - - pos: -7.3825207,-32.322838 - parent: 1 - type: Transform - - uid: 9516 - components: - - pos: -7.6012707,-32.572838 - parent: 1 - type: Transform -- proto: PortableScrubber - entities: - - uid: 12462 - components: - - pos: 10.5,-4.5 - parent: 1 - type: Transform - - uid: 12463 - components: - - pos: 11.5,-4.5 - parent: 1 - type: Transform -- proto: PosterBroken - entities: - - uid: 1298 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,19.5 - parent: 1 - type: Transform - - uid: 2159 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-28.5 - parent: 1 - type: Transform -- proto: PosterContrabandAtmosiaDeclarationIndependence - entities: - - uid: 11974 - components: - - pos: 32.5,-15.5 - parent: 1 - type: Transform -- proto: PosterContrabandClown - entities: - - uid: 11966 - components: - - pos: -10.5,-27.5 - parent: 1 - type: Transform -- proto: PosterContrabandDonutCorp - entities: - - uid: 11956 - components: - - pos: 2.5,-0.5 - parent: 1 - type: Transform -- proto: PosterContrabandMissingGloves - entities: - - uid: 11970 - components: - - pos: -3.5,-19.5 - parent: 1 - type: Transform -- proto: PosterContrabandNuclearDeviceInformational - entities: - - uid: 11964 - components: - - pos: -5.5,24.5 - parent: 1 - type: Transform -- proto: PosterContrabandTools - entities: - - uid: 11969 - components: - - pos: 16.5,-2.5 - parent: 1 - type: Transform -- proto: PosterLegitCarbonDioxide - entities: - - uid: 11973 - components: - - pos: 33.5,-8.5 - parent: 1 - type: Transform -- proto: PosterLegitCleanliness - entities: - - uid: 11965 - components: - - pos: -19.5,12.5 - parent: 1 - type: Transform -- proto: PosterLegitIan - entities: - - uid: 11961 - components: - - pos: -4.5,18.5 - parent: 1 - type: Transform -- proto: PosterLegitLoveIan - entities: - - uid: 11960 - components: - - pos: -0.5,22.5 - parent: 1 - type: Transform -- proto: PosterLegitObey - entities: - - uid: 11957 - components: - - pos: 16.5,6.5 - parent: 1 - type: Transform -- proto: PosterLegitReportCrimes - entities: - - uid: 11958 - components: - - pos: 20.5,16.5 - parent: 1 - type: Transform -- proto: PosterLegitSafetyEyeProtection - entities: - - uid: 11972 - components: - - pos: 11.5,-13.5 - parent: 1 - type: Transform -- proto: PosterLegitSafetyInternals - entities: - - uid: 11971 - components: - - pos: 21.5,-9.5 - parent: 1 - type: Transform -- proto: PosterLegitScience - entities: - - uid: 11979 - components: - - pos: -18.5,-7.5 - parent: 1 - type: Transform -- proto: PosterLegitSecWatch - entities: - - uid: 11962 - components: - - pos: 17.5,13.5 - parent: 1 - type: Transform -- proto: PosterLegitSpaceCops - entities: - - uid: 11959 - components: - - pos: 30.5,12.5 - parent: 1 - type: Transform -- proto: PosterLegitStateLaws - entities: - - uid: 11999 - components: - - pos: 10.5,25.5 - parent: 1 - type: Transform - - uid: 12105 - components: - - pos: -4.5,57.5 - parent: 1 - type: Transform -- proto: PottedPlantRandom - entities: - - uid: 1841 - components: - - pos: 13.5,-8.5 - parent: 1 - type: Transform - - uid: 2800 - components: - - pos: -12.5,-48.5 - parent: 1 - type: Transform - - uid: 3957 - components: - - pos: -7.5,48.5 - parent: 1 - type: Transform - - uid: 3958 - components: - - pos: -5.5,48.5 - parent: 1 - type: Transform - - uid: 3959 - components: - - pos: -7.5,44.5 - parent: 1 - type: Transform - - uid: 3960 - components: - - pos: -5.5,44.5 - parent: 1 - type: Transform - - uid: 3961 - components: - - pos: -2.5,51.5 - parent: 1 - type: Transform - - uid: 3962 - components: - - pos: -2.5,53.5 - parent: 1 - type: Transform - - uid: 3963 - components: - - pos: -9.5,56.5 - parent: 1 - type: Transform - - uid: 3964 - components: - - pos: -3.5,56.5 - parent: 1 - type: Transform - - uid: 3965 - components: - - pos: 3.5,54.5 - parent: 1 - type: Transform - - uid: 3966 - components: - - pos: -0.5,54.5 - parent: 1 - type: Transform - - uid: 3967 - components: - - pos: -0.5,50.5 - parent: 1 - type: Transform - - uid: 3968 - components: - - pos: 3.5,50.5 - parent: 1 - type: Transform - - uid: 4060 - components: - - pos: -11.5,31.5 - parent: 1 - type: Transform - - uid: 4061 - components: - - pos: -7.5,31.5 - parent: 1 - type: Transform - - uid: 4947 - components: - - pos: 27.5,28.5 - parent: 1 - type: Transform - - uid: 4950 - components: - - pos: 31.5,25.5 - parent: 1 - type: Transform - - uid: 4996 - components: - - pos: 5.5,25.5 - parent: 1 - type: Transform - - uid: 4997 - components: - - pos: 5.5,21.5 - parent: 1 - type: Transform - - uid: 4998 - components: - - pos: -3.5,16.5 - parent: 1 - type: Transform - - uid: 4999 - components: - - pos: 6.5,16.5 - parent: 1 - type: Transform - - uid: 5378 - components: - - pos: 11.5,9.5 - parent: 1 - type: Transform - - uid: 5379 - components: - - pos: 27.5,8.5 - parent: 1 - type: Transform - - uid: 5380 - components: - - pos: 28.5,10.5 - parent: 1 - type: Transform - - uid: 5381 - components: - - pos: 33.5,10.5 - parent: 1 - type: Transform - - uid: 5384 - components: - - pos: 20.5,8.5 - parent: 1 - type: Transform - - uid: 5558 - components: - - pos: 44.5,21.5 - parent: 1 - type: Transform - - uid: 5560 - components: - - pos: 39.5,30.5 - parent: 1 - type: Transform - - uid: 5561 - components: - - pos: 46.5,30.5 - parent: 1 - type: Transform - - uid: 5664 - components: - - pos: 16.5,-20.5 - parent: 1 - type: Transform - - uid: 7637 - components: - - pos: -39.5,18.5 - parent: 1 - type: Transform - - uid: 7638 - components: - - pos: -39.5,14.5 - parent: 1 - type: Transform - - uid: 7639 - components: - - pos: -41.5,21.5 - parent: 1 - type: Transform - - uid: 7648 - components: - - pos: -41.5,10.5 - parent: 1 - type: Transform - - uid: 7649 - components: - - pos: -41.5,6.5 - parent: 1 - type: Transform - - uid: 7674 - components: - - pos: 7.5,-9.5 - parent: 1 - type: Transform - - uid: 7675 - components: - - pos: -6.5,-4.5 - parent: 1 - type: Transform - - uid: 7676 - components: - - pos: -4.5,4.5 - parent: 1 - type: Transform - - uid: 7677 - components: - - pos: 7.5,4.5 - parent: 1 - type: Transform - - uid: 7678 - components: - - pos: 2.5,-13.5 - parent: 1 - type: Transform - - uid: 7679 - components: - - pos: 0.5,-19.5 - parent: 1 - type: Transform - - uid: 7680 - components: - - pos: 8.5,-27.5 - parent: 1 - type: Transform - - uid: 7682 - components: - - pos: 22.5,-25.5 - parent: 1 - type: Transform - - uid: 7683 - components: - - pos: 2.5,-26.5 - parent: 1 - type: Transform - - uid: 7684 - components: - - pos: -6.5,-24.5 - parent: 1 - type: Transform - - uid: 7698 - components: - - pos: -13.5,-24.5 - parent: 1 - type: Transform - - uid: 9524 - components: - - pos: 2.5,-33.5 - parent: 1 - type: Transform - - uid: 9525 - components: - - pos: 0.5,-33.5 - parent: 1 - type: Transform - - uid: 9573 - components: - - pos: 46.5,21.5 - parent: 1 - type: Transform - - uid: 9576 - components: - - pos: 44.5,5.5 - parent: 1 - type: Transform - - uid: 10639 - components: - - pos: 26.5,-11.5 - parent: 1 - type: Transform -- proto: PottedPlantRandomPlastic - entities: - - uid: 5696 - components: - - pos: -10.5,19.5 - parent: 1 - type: Transform - - uid: 5697 - components: - - pos: -10.5,20.5 - parent: 1 - type: Transform -- proto: PottedPlantRD - entities: - - uid: 5414 - components: - - pos: -20.5,-0.5 - parent: 1 - type: Transform -- proto: PowerCellHigh - entities: - - uid: 7145 - components: - - pos: 33.68436,-18.590218 - parent: 1 - type: Transform -- proto: PowerCellRecharger - entities: - - uid: 785 - components: - - pos: 12.5,15.5 - parent: 1 - type: Transform - - uid: 3821 - components: - - pos: -14.5,-2.5 - parent: 1 - type: Transform - - uid: 4117 - components: - - pos: -1.5,27.5 - parent: 1 - type: Transform - - uid: 5353 - components: - - pos: 30.5,8.5 - parent: 1 - type: Transform - - uid: 5901 - components: - - pos: -9.5,7.5 - parent: 1 - type: Transform - - uid: 5902 - components: - - pos: -21.5,11.5 - parent: 1 - type: Transform - - uid: 5972 - components: - - rot: 3.141592653589793 rad - pos: -1.5,7.5 - parent: 1 - type: Transform - - uid: 6524 - components: - - pos: 15.5,-8.5 - parent: 1 - type: Transform - - uid: 6555 - components: - - pos: 16.5,-8.5 - parent: 1 - type: Transform - - uid: 7241 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-27.5 - parent: 1 - type: Transform - - uid: 9047 - components: - - pos: -2.5,-7.5 - parent: 1 - type: Transform - - uid: 9048 - components: - - pos: -1.5,-20.5 - parent: 1 - type: Transform -- proto: Poweredlight - entities: - - uid: 26 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-27.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 49 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3918 - components: - - rot: 3.141592653589793 rad - pos: -5.5,44.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3919 - components: - - rot: 3.141592653589793 rad - pos: -2.5,44.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3920 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,52.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3921 - components: - - pos: -6.5,56.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3923 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,53.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3924 - components: - - rot: 3.141592653589793 rad - pos: -5.5,48.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3926 - components: - - pos: 1.5,55.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3927 - components: - - rot: 3.141592653589793 rad - pos: 1.5,49.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4982 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,29.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4983 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,29.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4984 - components: - - rot: 3.141592653589793 rad - pos: -2.5,27.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4985 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,30.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4986 - components: - - pos: 4.5,25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4987 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,19.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4988 - components: - - pos: -0.5,21.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4989 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,24.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4990 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4991 - components: - - pos: -14.5,31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4993 - components: - - rot: 3.141592653589793 rad - pos: -6.5,33.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4994 - components: - - rot: 3.141592653589793 rad - pos: -14.5,33.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4995 - components: - - rot: 3.141592653589793 rad - pos: 2.5,33.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5468 - components: - - pos: 25.5,28.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5469 - components: - - rot: 3.141592653589793 rad - pos: 25.5,24.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5470 - components: - - rot: 3.141592653589793 rad - pos: 28.5,24.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5471 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,26.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5472 - components: - - rot: 3.141592653589793 rad - pos: 34.5,20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5473 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,16.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5474 - components: - - rot: 3.141592653589793 rad - pos: 28.5,16.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5475 - components: - - rot: 3.141592653589793 rad - pos: 27.5,12.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5476 - components: - - pos: 30.5,10.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5477 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5478 - components: - - rot: 3.141592653589793 rad - pos: 19.5,8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5479 - components: - - rot: 3.141592653589793 rad - pos: 26.5,5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5480 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5481 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5482 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5483 - components: - - pos: 9.5,15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5484 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5485 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5486 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5522 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5523 - components: - - rot: 3.141592653589793 rad - pos: 25.5,8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5929 - components: - - rot: 3.141592653589793 rad - pos: -24.5,5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5930 - components: - - pos: -22.5,11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5931 - components: - - rot: 3.141592653589793 rad - pos: -16.5,8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5932 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5933 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5934 - components: - - pos: -8.5,14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5935 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,16.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5936 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5937 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5938 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5939 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5940 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5941 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5942 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5943 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,19.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5944 - components: - - rot: 3.141592653589793 rad - pos: -7.5,8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5995 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6406 - components: - - rot: 3.141592653589793 rad - pos: -0.5,14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6407 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6408 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6409 - components: - - rot: 3.141592653589793 rad - pos: -0.5,5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6410 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6411 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6412 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6413 - components: - - pos: 5.5,-1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6414 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6743 - components: - - pos: -26.5,-0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6744 - components: - - rot: 3.141592653589793 rad - pos: -26.5,-7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6745 - components: - - rot: 3.141592653589793 rad - pos: -20.5,-6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6746 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6747 - components: - - pos: -14.5,-0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6748 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6749 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6750 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-18.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6751 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-12.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6752 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-10.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6753 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6754 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-12.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6755 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6756 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6757 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7050 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7051 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7052 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7053 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7054 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7055 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7206 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7207 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7208 - components: - - pos: 21.5,-3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7209 - components: - - rot: 3.141592653589793 rad - pos: 21.5,-11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7210 - components: - - pos: 27.5,-3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7211 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7212 - components: - - rot: 3.141592653589793 rad - pos: 18.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7213 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7214 - components: - - rot: 3.141592653589793 rad - pos: 32.5,-11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7215 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7216 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-12.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7217 - components: - - pos: 33.5,-16.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7218 - components: - - rot: 3.141592653589793 rad - pos: 33.5,-20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7219 - components: - - rot: 3.141592653589793 rad - pos: 36.5,-23.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7220 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-18.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7221 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7222 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-17.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7223 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7224 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7462 - components: - - pos: 20.5,-20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7463 - components: - - rot: 3.141592653589793 rad - pos: 18.5,-27.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7464 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-27.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7465 - components: - - pos: 13.5,-20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7466 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-30.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7467 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-30.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7468 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-26.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7469 - components: - - pos: 4.5,-19.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7470 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7471 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-19.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7472 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7473 - components: - - pos: -0.5,12.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7474 - components: - - rot: 3.141592653589793 rad - pos: 21.5,-8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7891 - components: - - pos: -10.5,3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7892 - components: - - rot: 3.141592653589793 rad - pos: -17.5,1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7893 - components: - - pos: -23.5,3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7896 - components: - - rot: 3.141592653589793 rad - pos: -29.5,1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7897 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7898 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,10.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7899 - components: - - pos: -32.5,16.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7900 - components: - - pos: -35.5,13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7901 - components: - - pos: -37.5,13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7902 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7903 - components: - - rot: 3.141592653589793 rad - pos: -40.5,-7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7904 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-10.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8001 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8002 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8003 - components: - - rot: 3.141592653589793 rad - pos: -43.5,11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8004 - components: - - pos: -43.5,5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8005 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8006 - components: - - pos: -3.5,-20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8007 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-26.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8008 - components: - - pos: -9.5,-24.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8009 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8010 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-30.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8011 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-27.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8012 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-27.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8014 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-29.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8015 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-29.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8016 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-32.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8017 - components: - - pos: -3.5,-31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8018 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8019 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9043 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9044 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9052 - components: - - pos: 13.5,-0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9053 - components: - - rot: 3.141592653589793 rad - pos: 17.5,1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9054 - components: - - pos: 26.5,3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9055 - components: - - rot: 3.141592653589793 rad - pos: 36.5,1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9056 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9057 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9059 - components: - - rot: 3.141592653589793 rad - pos: 41.5,21.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9061 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,28.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9062 - components: - - pos: 39.5,34.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9063 - components: - - rot: 3.141592653589793 rad - pos: 43.5,25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9064 - components: - - rot: -1.5707963267948966 rad - pos: 46.5,30.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11929 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11930 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,22.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- proto: PoweredlightSodium - entities: - - uid: 7461 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-27.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- proto: PoweredSmallLight - entities: - - uid: 28 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-45.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1794 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,22.5 - parent: 1 - type: Transform - - uid: 2781 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-51.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2928 - components: - - pos: -14.5,-48.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2929 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-48.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3928 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,45.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4992 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,30.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6742 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8316 - components: - - pos: -34.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8807 - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-17.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8932 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9060 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,34.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9065 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,34.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9066 - components: - - rot: 3.141592653589793 rad - pos: 9.5,32.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9155 - components: - - rot: 3.141592653589793 rad - pos: 25.5,-21.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9156 - components: - - pos: -31.5,-22.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9157 - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-10.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9331 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,22.5 - parent: 1 - type: Transform - - uid: 9649 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 12126 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 12476 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-12.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 12518 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-28.5 - parent: 1 - type: Transform -- proto: PoweredSmallLightEmpty - entities: - - uid: 8317 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-16.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8806 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-23.5 - parent: 1 - type: Transform -- proto: Protolathe - entities: - - uid: 3806 - components: - - pos: -10.5,-0.5 - parent: 1 - type: Transform -- proto: Rack - entities: - - uid: 559 - components: - - pos: -24.5,-7.5 - parent: 1 - type: Transform - - uid: 657 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-13.5 - parent: 1 - type: Transform - - uid: 775 - components: - - pos: 16.5,15.5 - parent: 1 - type: Transform - - uid: 2761 - components: - - pos: -2.5,50.5 - parent: 1 - type: Transform - - uid: 2762 - components: - - pos: -2.5,54.5 - parent: 1 - type: Transform - - uid: 2934 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-48.5 - parent: 1 - type: Transform - - uid: 4920 - components: - - pos: 39.5,21.5 - parent: 1 - type: Transform - - uid: 4921 - components: - - pos: 40.5,21.5 - parent: 1 - type: Transform - - uid: 5333 - components: - - pos: 28.5,8.5 - parent: 1 - type: Transform - - uid: 5342 - components: - - pos: 23.5,7.5 - parent: 1 - type: Transform - - uid: 5555 - components: - - rot: 1.5707963267948966 rad - pos: 46.5,2.5 - parent: 1 - type: Transform - - uid: 5556 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,20.5 - parent: 1 - type: Transform - - uid: 5598 - components: - - pos: -23.5,5.5 - parent: 1 - type: Transform - - uid: 7074 - components: - - pos: -4.5,-34.5 - parent: 1 - type: Transform - - uid: 7075 - components: - - pos: -3.5,-34.5 - parent: 1 - type: Transform - - uid: 7076 - components: - - pos: -2.5,-34.5 - parent: 1 - type: Transform - - uid: 7077 - components: - - pos: -1.5,-34.5 - parent: 1 - type: Transform - - uid: 7134 - components: - - pos: 31.5,-16.5 - parent: 1 - type: Transform - - uid: 7293 - components: - - pos: 20.5,-20.5 - parent: 1 - type: Transform - - uid: 7713 - components: - - pos: -1.5,-28.5 - parent: 1 - type: Transform - - uid: 7806 - components: - - pos: -5.5,-28.5 - parent: 1 - type: Transform - - uid: 8240 - components: - - pos: -26.5,24.5 - parent: 1 - type: Transform - - uid: 8241 - components: - - pos: -25.5,24.5 - parent: 1 - type: Transform - - uid: 8283 - components: - - pos: -25.5,-24.5 - parent: 1 - type: Transform - - uid: 8287 - components: - - pos: -23.5,-26.5 - parent: 1 - type: Transform - - uid: 8484 - components: - - pos: -7.5,-33.5 - parent: 1 - type: Transform - - uid: 8490 - components: - - pos: -7.5,-32.5 - parent: 1 - type: Transform - - uid: 8496 - components: - - pos: -7.5,-31.5 - parent: 1 - type: Transform - - uid: 8764 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-24.5 - parent: 1 - type: Transform - - uid: 8808 - components: - - pos: -43.5,-16.5 - parent: 1 - type: Transform - - uid: 8880 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-14.5 - parent: 1 - type: Transform - - uid: 8883 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-19.5 - parent: 1 - type: Transform - - uid: 8884 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-7.5 - parent: 1 - type: Transform - - uid: 8885 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-20.5 - parent: 1 - type: Transform - - uid: 8891 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-17.5 - parent: 1 - type: Transform - - uid: 8900 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-9.5 - parent: 1 - type: Transform - - uid: 8901 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-9.5 - parent: 1 - type: Transform - - uid: 9130 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-5.5 - parent: 1 - type: Transform - - uid: 9134 - components: - - pos: 20.5,-18.5 - parent: 1 - type: Transform - - uid: 9254 - components: - - pos: -36.5,-9.5 - parent: 1 - type: Transform - - uid: 9314 - components: - - pos: 14.5,21.5 - parent: 1 - type: Transform - - uid: 9323 - components: - - pos: -13.5,28.5 - parent: 1 - type: Transform - - uid: 9351 - components: - - pos: 14.5,17.5 - parent: 1 - type: Transform - - uid: 9358 - components: - - pos: 12.5,33.5 - parent: 1 - type: Transform - - uid: 9359 - components: - - pos: 12.5,32.5 - parent: 1 - type: Transform - - uid: 9368 - components: - - pos: 13.5,30.5 - parent: 1 - type: Transform - - uid: 9369 - components: - - pos: 14.5,32.5 - parent: 1 - type: Transform - - uid: 9371 - components: - - pos: 14.5,33.5 - parent: 1 - type: Transform - - uid: 9543 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,11.5 - parent: 1 - type: Transform - - uid: 9544 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,26.5 - parent: 1 - type: Transform - - uid: 9618 - components: - - rot: 3.141592653589793 rad - pos: 15.5,25.5 - parent: 1 - type: Transform - - uid: 9619 - components: - - rot: 3.141592653589793 rad - pos: 16.5,25.5 - parent: 1 - type: Transform - - uid: 9684 - components: - - pos: -28.5,23.5 - parent: 1 - type: Transform - - uid: 9687 - components: - - pos: -22.5,26.5 - parent: 1 - type: Transform - - uid: 9699 - components: - - pos: -34.5,18.5 - parent: 1 - type: Transform - - uid: 12425 - components: - - pos: -12.5,-12.5 - parent: 1 - type: Transform - - uid: 12426 - components: - - pos: -12.5,-11.5 - parent: 1 - type: Transform -- proto: RadarConsoleCircuitboard - entities: - - uid: 9522 - components: - - pos: -7.3932076,-33.368607 - parent: 1 - type: Transform -- proto: RadioHandheld - entities: - - uid: 12547 - components: - - pos: 20.335823,-20.56861 - parent: 1 - type: Transform - - uid: 12548 - components: - - pos: 20.679573,-20.66236 - parent: 1 - type: Transform -- proto: Railing - entities: - - uid: 437 - components: - - pos: -7.5,20.5 - parent: 1 - type: Transform - - uid: 438 - components: - - rot: 3.141592653589793 rad - pos: -7.5,22.5 - parent: 1 - type: Transform - - uid: 647 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-14.5 - parent: 1 - type: Transform - - uid: 648 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-13.5 - parent: 1 - type: Transform - - uid: 649 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-12.5 - parent: 1 - type: Transform - - uid: 651 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-11.5 - parent: 1 - type: Transform - - uid: 3015 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-10.5 - parent: 1 - type: Transform - - uid: 7017 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-2.5 - parent: 1 - type: Transform - - uid: 7018 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-3.5 - parent: 1 - type: Transform - - uid: 7019 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-4.5 - parent: 1 - type: Transform - - uid: 7664 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-0.5 - parent: 1 - type: Transform - - uid: 8596 - components: - - pos: -43.5,-16.5 - parent: 1 - type: Transform - - uid: 8609 - components: - - pos: -42.5,-16.5 - parent: 1 - type: Transform - - uid: 8758 - components: - - pos: -40.5,-16.5 - parent: 1 - type: Transform - - uid: 8872 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-19.5 - parent: 1 - type: Transform - - uid: 8873 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-19.5 - parent: 1 - type: Transform - - uid: 9124 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-18.5 - parent: 1 - type: Transform - - uid: 9125 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-18.5 - parent: 1 - type: Transform - - uid: 9175 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-0.5 - parent: 1 - type: Transform - - uid: 9176 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-0.5 - parent: 1 - type: Transform - - uid: 9333 - components: - - rot: 3.141592653589793 rad - pos: 21.5,25.5 - parent: 1 - type: Transform - - uid: 9334 - components: - - rot: 3.141592653589793 rad - pos: 7.5,23.5 - parent: 1 - type: Transform - - uid: 9335 - components: - - pos: 7.5,21.5 - parent: 1 - type: Transform - - uid: 12491 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-4.5 - parent: 1 - type: Transform - - uid: 12492 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-8.5 - parent: 1 - type: Transform -- proto: RailingCornerSmall - entities: - - uid: 652 - components: - - pos: -8.5,-14.5 - parent: 1 - type: Transform - - uid: 653 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-10.5 - parent: 1 - type: Transform - - uid: 12489 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-9.5 - parent: 1 - type: Transform - - uid: 12490 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-3.5 - parent: 1 - type: Transform -- proto: RandomArcade - entities: - - uid: 8795 - components: - - rot: 3.141592653589793 rad - pos: -38.5,-23.5 - parent: 1 - type: Transform - - uid: 8796 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-23.5 - parent: 1 - type: Transform -- proto: RandomArtifactSpawner - entities: - - uid: 6321 - components: - - pos: -20.5,-13.5 - parent: 1 - type: Transform - - uid: 6325 - components: - - pos: -20.5,-9.5 - parent: 1 - type: Transform -- proto: RandomArtifactSpawner20 - entities: - - uid: 8233 - components: - - pos: -15.5,-29.5 - parent: 1 - type: Transform - - uid: 8234 - components: - - pos: 42.5,19.5 - parent: 1 - type: Transform - - uid: 8235 - components: - - pos: -25.5,23.5 - parent: 1 - type: Transform -- proto: RandomDrinkBottle - entities: - - uid: 5982 - components: - - pos: 2.5,10.5 - parent: 1 - type: Transform -- proto: RandomDrinkGlass - entities: - - uid: 5980 - components: - - pos: -0.5,7.5 - parent: 1 - type: Transform - - uid: 7653 - components: - - pos: -15.5,1.5 - parent: 1 - type: Transform - - uid: 7654 - components: - - pos: 26.5,1.5 - parent: 1 - type: Transform - - uid: 8311 - components: - - pos: -31.5,-14.5 - parent: 1 - type: Transform - - uid: 8312 - components: - - pos: -32.5,-17.5 - parent: 1 - type: Transform -- proto: RandomFoodBakedWhole - entities: - - uid: 5984 - components: - - pos: -1.5,10.5 - parent: 1 - type: Transform -- proto: RandomFoodMeal - entities: - - uid: 5983 - components: - - pos: 0.5,10.5 - parent: 1 - type: Transform - - uid: 7655 - components: - - pos: 34.5,3.5 - parent: 1 - type: Transform - - uid: 8313 - components: - - pos: -35.5,-16.5 - parent: 1 - type: Transform -- proto: RandomFoodSingle - entities: - - uid: 5981 - components: - - pos: 2.5,7.5 - parent: 1 - type: Transform - - uid: 7652 - components: - - pos: -25.5,3.5 - parent: 1 - type: Transform - - uid: 8314 - components: - - pos: -29.5,-14.5 - parent: 1 - type: Transform -- proto: RandomInstruments - entities: - - uid: 4951 - components: - - pos: 24.5,25.5 - parent: 1 - type: Transform - - uid: 4952 - components: - - pos: 24.5,27.5 - parent: 1 - type: Transform - - uid: 6399 - components: - - pos: -15.5,-24.5 - parent: 1 - type: Transform - - uid: 7801 - components: - - pos: -13.5,-31.5 - parent: 1 - type: Transform - - uid: 7802 - components: - - pos: -12.5,-31.5 - parent: 1 - type: Transform -- proto: RandomPosterAny - entities: - - uid: 11981 - components: - - pos: -32.5,-11.5 - parent: 1 - type: Transform - - uid: 11984 - components: - - pos: -23.5,-20.5 - parent: 1 - type: Transform - - uid: 11985 - components: - - pos: -14.5,-23.5 - parent: 1 - type: Transform - - uid: 11986 - components: - - pos: -3.5,-16.5 - parent: 1 - type: Transform - - uid: 11987 - components: - - pos: 10.5,-13.5 - parent: 1 - type: Transform - - uid: 11988 - components: - - pos: 21.5,-16.5 - parent: 1 - type: Transform - - uid: 11989 - components: - - pos: 30.5,-15.5 - parent: 1 - type: Transform - - uid: 11990 - components: - - pos: 33.5,-1.5 - parent: 1 - type: Transform - - uid: 11991 - components: - - pos: 40.5,8.5 - parent: 1 - type: Transform - - uid: 11992 - components: - - pos: 37.5,15.5 - parent: 1 - type: Transform - - uid: 11993 - components: - - pos: 30.5,32.5 - parent: 1 - type: Transform - - uid: 11994 - components: - - pos: 18.5,31.5 - parent: 1 - type: Transform - - uid: 11996 - components: - - pos: 7.5,27.5 - parent: 1 - type: Transform - - uid: 11997 - components: - - pos: 14.5,19.5 - parent: 1 - type: Transform - - uid: 12106 - components: - - pos: -33.5,20.5 - parent: 1 - type: Transform - - uid: 12107 - components: - - pos: -25.5,25.5 - parent: 1 - type: Transform - - uid: 12108 - components: - - pos: -15.5,26.5 - parent: 1 - type: Transform - - uid: 12109 - components: - - pos: -9.5,22.5 - parent: 1 - type: Transform - - uid: 12122 - components: - - pos: -32.5,-21.5 - parent: 1 - type: Transform -- proto: RandomPosterContraband - entities: - - uid: 11983 - components: - - pos: -44.5,-15.5 - parent: 1 - type: Transform - - uid: 11995 - components: - - pos: 19.5,26.5 - parent: 1 - type: Transform -- proto: RandomPosterLegit - entities: - - uid: 29 - components: - - pos: -0.5,-6.5 - parent: 1 - type: Transform - - uid: 11939 - components: - - pos: -5.5,26.5 - parent: 1 - type: Transform - - uid: 11940 - components: - - pos: 2.5,22.5 - parent: 1 - type: Transform - - uid: 11941 - components: - - pos: 6.5,7.5 - parent: 1 - type: Transform - - uid: 11942 - components: - - pos: -3.5,0.5 - parent: 1 - type: Transform - - uid: 11943 - components: - - pos: -2.5,-10.5 - parent: 1 - type: Transform - - uid: 11944 - components: - - pos: 9.5,-10.5 - parent: 1 - type: Transform - - uid: 11945 - components: - - pos: 12.5,-3.5 - parent: 1 - type: Transform - - uid: 11946 - components: - - pos: 17.5,0.5 - parent: 1 - type: Transform - - uid: 11947 - components: - - pos: 28.5,4.5 - parent: 1 - type: Transform - - uid: 11948 - components: - - pos: 39.5,0.5 - parent: 1 - type: Transform - - uid: 11949 - components: - - pos: 43.5,7.5 - parent: 1 - type: Transform - - uid: 11951 - components: - - pos: 40.5,24.5 - parent: 1 - type: Transform - - uid: 11952 - components: - - pos: -18.5,0.5 - parent: 1 - type: Transform - - uid: 11953 - components: - - pos: -30.5,4.5 - parent: 1 - type: Transform - - uid: 11954 - components: - - pos: -38.5,11.5 - parent: 1 - type: Transform - - uid: 11955 - components: - - pos: -40.5,-8.5 - parent: 1 - type: Transform - - uid: 11967 - components: - - pos: 16.5,-19.5 - parent: 1 - type: Transform - - uid: 11968 - components: - - pos: 17.5,-28.5 - parent: 1 - type: Transform - - uid: 11975 - components: - - pos: 3.5,-13.5 - parent: 1 - type: Transform - - uid: 11976 - components: - - pos: -0.5,-27.5 - parent: 1 - type: Transform - - uid: 11977 - components: - - pos: -12.5,-23.5 - parent: 1 - type: Transform - - uid: 11978 - components: - - pos: -13.5,-12.5 - parent: 1 - type: Transform - - uid: 11980 - components: - - pos: -29.5,-5.5 - parent: 1 - type: Transform - - uid: 11998 - components: - - pos: 14.5,22.5 - parent: 1 - type: Transform - - uid: 12101 - components: - - pos: -14.5,29.5 - parent: 1 - type: Transform - - uid: 12102 - components: - - pos: -2.5,47.5 - parent: 1 - type: Transform - - uid: 12103 - components: - - pos: -11.5,51.5 - parent: 1 - type: Transform - - uid: 12104 - components: - - pos: 4.5,53.5 - parent: 1 - type: Transform - - uid: 12110 - components: - - pos: -38.5,20.5 - parent: 1 - type: Transform -- proto: RandomSoap - entities: - - uid: 12498 - components: - - pos: -19.5,-27.5 - parent: 1 - type: Transform - - uid: 12499 - components: - - pos: -17.5,-27.5 - parent: 1 - type: Transform - - uid: 12500 - components: - - pos: -15.5,-27.5 - parent: 1 - type: Transform -- proto: RandomSpawner - entities: - - uid: 11734 - components: - - pos: -11.5,27.5 - parent: 1 - type: Transform - - uid: 11735 - components: - - pos: -2.5,29.5 - parent: 1 - type: Transform - - uid: 11736 - components: - - pos: 0.5,25.5 - parent: 1 - type: Transform - - uid: 11737 - components: - - pos: 5.5,23.5 - parent: 1 - type: Transform - - uid: 11738 - components: - - pos: 2.5,14.5 - parent: 1 - type: Transform - - uid: 11739 - components: - - pos: 8.5,16.5 - parent: 1 - type: Transform - - uid: 11740 - components: - - pos: 7.5,12.5 - parent: 1 - type: Transform - - uid: 11741 - components: - - pos: -2.5,16.5 - parent: 1 - type: Transform - - uid: 11742 - components: - - pos: -5.5,13.5 - parent: 1 - type: Transform - - uid: 11743 - components: - - pos: -4.5,7.5 - parent: 1 - type: Transform - - uid: 11744 - components: - - pos: -6.5,1.5 - parent: 1 - type: Transform - - uid: 11745 - components: - - pos: -4.5,-4.5 - parent: 1 - type: Transform - - uid: 11746 - components: - - pos: -8.5,-7.5 - parent: 1 - type: Transform - - uid: 11747 - components: - - pos: -1.5,-9.5 - parent: 1 - type: Transform - - uid: 11748 - components: - - pos: 4.5,-5.5 - parent: 1 - type: Transform - - uid: 11750 - components: - - pos: 12.5,-8.5 - parent: 1 - type: Transform - - uid: 11751 - components: - - pos: 7.5,-4.5 - parent: 1 - type: Transform - - uid: 11752 - components: - - pos: 9.5,3.5 - parent: 1 - type: Transform - - uid: 11753 - components: - - pos: 7.5,9.5 - parent: 1 - type: Transform - - uid: 11754 - components: - - pos: 3.5,8.5 - parent: 1 - type: Transform - - uid: 11755 - components: - - pos: -1.5,9.5 - parent: 1 - type: Transform - - uid: 11756 - components: - - pos: 0.5,2.5 - parent: 1 - type: Transform - - uid: 11757 - components: - - pos: 4.5,0.5 - parent: 1 - type: Transform - - uid: 11758 - components: - - pos: 13.5,1.5 - parent: 1 - type: Transform - - uid: 11759 - components: - - pos: 21.5,3.5 - parent: 1 - type: Transform - - uid: 11760 - components: - - pos: 29.5,2.5 - parent: 1 - type: Transform - - uid: 11761 - components: - - pos: 37.5,1.5 - parent: 1 - type: Transform - - uid: 11762 - components: - - pos: 40.5,3.5 - parent: 1 - type: Transform - - uid: 11763 - components: - - pos: 45.5,1.5 - parent: 1 - type: Transform - - uid: 11764 - components: - - pos: 46.5,8.5 - parent: 1 - type: Transform - - uid: 11765 - components: - - pos: 46.5,16.5 - parent: 1 - type: Transform - - uid: 11766 - components: - - pos: 44.5,22.5 - parent: 1 - type: Transform - - uid: 11767 - components: - - pos: 40.5,26.5 - parent: 1 - type: Transform - - uid: 11768 - components: - - pos: 45.5,28.5 - parent: 1 - type: Transform - - uid: 11769 - components: - - pos: 32.5,26.5 - parent: 1 - type: Transform - - uid: 11770 - components: - - pos: 27.5,26.5 - parent: 1 - type: Transform - - uid: 11771 - components: - - pos: 33.5,21.5 - parent: 1 - type: Transform - - uid: 11772 - components: - - pos: 31.5,16.5 - parent: 1 - type: Transform - - uid: 11773 - components: - - pos: 33.5,11.5 - parent: 1 - type: Transform - - uid: 11774 - components: - - pos: 26.5,8.5 - parent: 1 - type: Transform - - uid: 11775 - components: - - pos: 20.5,10.5 - parent: 1 - type: Transform - - uid: 11776 - components: - - pos: 14.5,8.5 - parent: 1 - type: Transform - - uid: 11777 - components: - - pos: 12.5,13.5 - parent: 1 - type: Transform - - uid: 11778 - components: - - pos: 21.5,14.5 - parent: 1 - type: Transform - - uid: 11779 - components: - - pos: 21.5,6.5 - parent: 1 - type: Transform - - uid: 11780 - components: - - pos: 32.5,6.5 - parent: 1 - type: Transform - - uid: 11781 - components: - - pos: 42.5,15.5 - parent: 1 - type: Transform - - uid: 11782 - components: - - pos: 41.5,6.5 - parent: 1 - type: Transform - - uid: 11783 - components: - - pos: 36.5,19.5 - parent: 1 - type: Transform - - uid: 11784 - components: - - pos: 37.5,29.5 - parent: 1 - type: Transform - - uid: 11785 - components: - - pos: 33.5,34.5 - parent: 1 - type: Transform - - uid: 11786 - components: - - pos: 26.5,33.5 - parent: 1 - type: Transform - - uid: 11787 - components: - - pos: 21.5,35.5 - parent: 1 - type: Transform - - uid: 11788 - components: - - pos: 20.5,29.5 - parent: 1 - type: Transform - - uid: 11789 - components: - - pos: 16.5,30.5 - parent: 1 - type: Transform - - uid: 11790 - components: - - pos: 9.5,28.5 - parent: 1 - type: Transform - - uid: 11791 - components: - - pos: 8.5,22.5 - parent: 1 - type: Transform - - uid: 11792 - components: - - pos: 13.5,18.5 - parent: 1 - type: Transform - - uid: 11793 - components: - - pos: 21.5,18.5 - parent: 1 - type: Transform - - uid: 11794 - components: - - pos: 26.5,20.5 - parent: 1 - type: Transform - - uid: 11795 - components: - - pos: 20.5,26.5 - parent: 1 - type: Transform - - uid: 11796 - components: - - pos: 15.5,21.5 - parent: 1 - type: Transform - - uid: 11799 - components: - - pos: 17.5,26.5 - parent: 1 - type: Transform - - uid: 11800 - components: - - pos: -8.5,18.5 - parent: 1 - type: Transform - - uid: 11801 - components: - - pos: -9.5,24.5 - parent: 1 - type: Transform - - uid: 11802 - components: - - pos: -16.5,24.5 - parent: 1 - type: Transform - - uid: 11803 - components: - - pos: -17.5,28.5 - parent: 1 - type: Transform - - uid: 11804 - components: - - pos: -27.5,26.5 - parent: 1 - type: Transform - - uid: 11805 - components: - - pos: -23.5,22.5 - parent: 1 - type: Transform - - uid: 11806 - components: - - pos: -25.5,21.5 - parent: 1 - type: Transform - - uid: 11807 - components: - - pos: -29.5,22.5 - parent: 1 - type: Transform - - uid: 11808 - components: - - pos: -34.5,23.5 - parent: 1 - type: Transform - - uid: 11809 - components: - - pos: -36.5,18.5 - parent: 1 - type: Transform - - uid: 11810 - components: - - pos: -40.5,19.5 - parent: 1 - type: Transform - - uid: 11811 - components: - - pos: -39.5,15.5 - parent: 1 - type: Transform - - uid: 11812 - components: - - pos: -41.5,12.5 - parent: 1 - type: Transform - - uid: 11813 - components: - - pos: -40.5,9.5 - parent: 1 - type: Transform - - uid: 11814 - components: - - pos: -41.5,3.5 - parent: 1 - type: Transform - - uid: 11815 - components: - - pos: -35.5,1.5 - parent: 1 - type: Transform - - uid: 11816 - components: - - pos: -30.5,3.5 - parent: 1 - type: Transform - - uid: 11817 - components: - - pos: -24.5,1.5 - parent: 1 - type: Transform - - uid: 11818 - components: - - pos: -17.5,3.5 - parent: 1 - type: Transform - - uid: 11819 - components: - - pos: -11.5,2.5 - parent: 1 - type: Transform - - uid: 11820 - components: - - pos: -11.5,6.5 - parent: 1 - type: Transform - - uid: 11821 - components: - - pos: -8.5,10.5 - parent: 1 - type: Transform - - uid: 11822 - components: - - pos: -13.5,10.5 - parent: 1 - type: Transform - - uid: 11823 - components: - - pos: -20.5,8.5 - parent: 1 - type: Transform - - uid: 11824 - components: - - pos: -16.5,15.5 - parent: 1 - type: Transform - - uid: 11825 - components: - - pos: -13.5,18.5 - parent: 1 - type: Transform - - uid: 11826 - components: - - pos: -11.5,15.5 - parent: 1 - type: Transform - - uid: 11827 - components: - - pos: -25.5,10.5 - parent: 1 - type: Transform - - uid: 11828 - components: - - pos: -24.5,15.5 - parent: 1 - type: Transform - - uid: 11829 - components: - - pos: -25.5,5.5 - parent: 1 - type: Transform - - uid: 11830 - components: - - pos: -18.5,10.5 - parent: 1 - type: Transform - - uid: 11831 - components: - - pos: -28.5,8.5 - parent: 1 - type: Transform - - uid: 11832 - components: - - pos: -29.5,15.5 - parent: 1 - type: Transform - - uid: 11833 - components: - - pos: -23.5,18.5 - parent: 1 - type: Transform - - uid: 11834 - components: - - pos: -22.5,27.5 - parent: 1 - type: Transform - - uid: 11835 - components: - - pos: -33.5,5.5 - parent: 1 - type: Transform - - uid: 11836 - components: - - pos: -37.5,10.5 - parent: 1 - type: Transform - - uid: 11837 - components: - - pos: -37.5,-1.5 - parent: 1 - type: Transform - - uid: 11838 - components: - - pos: -40.5,-7.5 - parent: 1 - type: Transform - - uid: 11839 - components: - - pos: -40.5,-10.5 - parent: 1 - type: Transform - - uid: 11840 - components: - - pos: -32.5,-2.5 - parent: 1 - type: Transform - - uid: 11841 - components: - - pos: -34.5,-9.5 - parent: 1 - type: Transform - - uid: 11842 - components: - - pos: -28.5,-9.5 - parent: 1 - type: Transform - - uid: 11843 - components: - - pos: -25.5,-13.5 - parent: 1 - type: Transform - - uid: 11844 - components: - - pos: -26.5,-18.5 - parent: 1 - type: Transform - - uid: 11845 - components: - - pos: -22.5,-20.5 - parent: 1 - type: Transform - - uid: 11846 - components: - - pos: -15.5,-21.5 - parent: 1 - type: Transform - - uid: 11847 - components: - - pos: -17.5,-25.5 - parent: 1 - type: Transform - - uid: 11848 - components: - - pos: -9.5,-21.5 - parent: 1 - type: Transform - - uid: 11849 - components: - - pos: -12.5,-17.5 - parent: 1 - type: Transform - - uid: 11850 - components: - - pos: -3.5,-18.5 - parent: 1 - type: Transform - - uid: 11852 - components: - - pos: -1.5,-13.5 - parent: 1 - type: Transform - - uid: 11853 - components: - - pos: -12.5,-10.5 - parent: 1 - type: Transform - - uid: 11854 - components: - - pos: -10.5,-2.5 - parent: 1 - type: Transform - - uid: 11855 - components: - - pos: -15.5,-2.5 - parent: 1 - type: Transform - - uid: 11856 - components: - - pos: -22.5,-6.5 - parent: 1 - type: Transform - - uid: 11857 - components: - - pos: -26.5,-5.5 - parent: 1 - type: Transform - - uid: 11858 - components: - - pos: -28.5,-3.5 - parent: 1 - type: Transform - - uid: 11859 - components: - - pos: -17.5,-10.5 - parent: 1 - type: Transform - - uid: 11860 - components: - - pos: -15.5,-16.5 - parent: 1 - type: Transform - - uid: 11861 - components: - - pos: -20.5,-17.5 - parent: 1 - type: Transform - - uid: 11862 - components: - - pos: -22.5,-25.5 - parent: 1 - type: Transform - - uid: 11863 - components: - - pos: -32.5,-20.5 - parent: 1 - type: Transform - - uid: 11864 - components: - - pos: -37.5,-19.5 - parent: 1 - type: Transform - - uid: 11865 - components: - - pos: -38.5,-15.5 - parent: 1 - type: Transform - - uid: 11866 - components: - - pos: -33.5,-16.5 - parent: 1 - type: Transform - - uid: 11867 - components: - - pos: -29.5,-13.5 - parent: 1 - type: Transform - - uid: 11868 - components: - - pos: -35.5,-12.5 - parent: 1 - type: Transform - - uid: 11869 - components: - - pos: -41.5,-15.5 - parent: 1 - type: Transform - - uid: 11870 - components: - - pos: -42.5,-18.5 - parent: 1 - type: Transform - - uid: 11871 - components: - - pos: -40.5,-23.5 - parent: 1 - type: Transform - - uid: 11872 - components: - - pos: -9.5,-26.5 - parent: 1 - type: Transform - - uid: 11873 - components: - - pos: -2.5,-24.5 - parent: 1 - type: Transform - - uid: 11874 - components: - - pos: -5.5,-25.5 - parent: 1 - type: Transform - - uid: 11875 - components: - - pos: -4.5,-21.5 - parent: 1 - type: Transform - - uid: 11876 - components: - - pos: 0.5,-31.5 - parent: 1 - type: Transform - - uid: 11877 - components: - - pos: 2.5,-23.5 - parent: 1 - type: Transform - - uid: 11878 - components: - - pos: 0.5,-15.5 - parent: 1 - type: Transform - - uid: 11879 - components: - - pos: 1.5,-12.5 - parent: 1 - type: Transform - - uid: 11880 - components: - - pos: 7.5,-11.5 - parent: 1 - type: Transform - - uid: 11881 - components: - - pos: 10.5,-14.5 - parent: 1 - type: Transform - - uid: 11882 - components: - - pos: 16.5,-18.5 - parent: 1 - type: Transform - - uid: 11883 - components: - - pos: 23.5,-17.5 - parent: 1 - type: Transform - - uid: 11884 - components: - - pos: 29.5,-17.5 - parent: 1 - type: Transform - - uid: 11885 - components: - - pos: 30.5,-13.5 - parent: 1 - type: Transform - - uid: 11886 - components: - - pos: 31.5,-11.5 - parent: 1 - type: Transform - - uid: 11887 - components: - - pos: 26.5,-6.5 - parent: 1 - type: Transform - - uid: 11888 - components: - - pos: 28.5,-3.5 - parent: 1 - type: Transform - - uid: 11889 - components: - - pos: 21.5,-6.5 - parent: 1 - type: Transform - - uid: 11890 - components: - - pos: 16.5,-4.5 - parent: 1 - type: Transform - - uid: 11891 - components: - - pos: 11.5,-6.5 - parent: 1 - type: Transform - - uid: 11892 - components: - - pos: 14.5,-11.5 - parent: 1 - type: Transform - - uid: 11893 - components: - - pos: 22.5,-10.5 - parent: 1 - type: Transform - - uid: 11894 - components: - - pos: 18.5,-1.5 - parent: 1 - type: Transform - - uid: 11895 - components: - - pos: 28.5,-1.5 - parent: 1 - type: Transform - - uid: 11896 - components: - - pos: 34.5,-0.5 - parent: 1 - type: Transform - - uid: 11897 - components: - - pos: 43.5,-0.5 - parent: 1 - type: Transform - - uid: 11898 - components: - - pos: 31.5,-6.5 - parent: 1 - type: Transform - - uid: 11899 - components: - - pos: 22.5,-27.5 - parent: 1 - type: Transform - - uid: 11900 - components: - - pos: 13.5,-25.5 - parent: 1 - type: Transform - - uid: 11901 - components: - - pos: 8.5,-26.5 - parent: 1 - type: Transform - - uid: 11902 - components: - - pos: 5.5,-25.5 - parent: 1 - type: Transform - - uid: 11903 - components: - - pos: 10.5,-22.5 - parent: 1 - type: Transform - - uid: 11904 - components: - - pos: 4.5,-20.5 - parent: 1 - type: Transform - - uid: 11905 - components: - - pos: 9.5,-17.5 - parent: 1 - type: Transform - - uid: 11906 - components: - - pos: 15.5,-21.5 - parent: 1 - type: Transform - - uid: 11907 - components: - - pos: 20.5,-21.5 - parent: 1 - type: Transform - - uid: 11908 - components: - - pos: -2.5,-32.5 - parent: 1 - type: Transform - - uid: 12423 - components: - - pos: -1.5,-3.5 - parent: 1 - type: Transform - - uid: 12538 - components: - - pos: -22.5,-28.5 - parent: 1 - type: Transform -- proto: RandomVending - entities: - - uid: 7525 - components: - - pos: -41.5,16.5 - parent: 1 - type: Transform - - uid: 7534 - components: - - pos: -32.5,0.5 - parent: 1 - type: Transform - - uid: 7541 - components: - - pos: 1.5,-7.5 - parent: 1 - type: Transform - - uid: 7685 - components: - - pos: 8.5,-9.5 - parent: 1 - type: Transform - - uid: 7686 - components: - - pos: 9.5,-9.5 - parent: 1 - type: Transform - - uid: 9241 - components: - - pos: 19.5,34.5 - parent: 1 - type: Transform - - uid: 9565 - components: - - pos: 20.5,1.5 - parent: 1 - type: Transform - - uid: 9570 - components: - - pos: 41.5,4.5 - parent: 1 - type: Transform - - uid: 9572 - components: - - pos: 44.5,14.5 - parent: 1 - type: Transform -- proto: RandomVendingDrinks - entities: - - uid: 5050 - components: - - pos: 1.5,23.5 - parent: 1 - type: Transform - - uid: 7529 - components: - - pos: -41.5,15.5 - parent: 1 - type: Transform - - uid: 7531 - components: - - pos: -0.5,-7.5 - parent: 1 - type: Transform - - uid: 7532 - components: - - pos: -34.5,0.5 - parent: 1 - type: Transform - - uid: 7536 - components: - - pos: -3.5,12.5 - parent: 1 - type: Transform - - uid: 7687 - components: - - pos: -12.5,-24.5 - parent: 1 - type: Transform - - uid: 9240 - components: - - pos: 19.5,33.5 - parent: 1 - type: Transform - - uid: 9527 - components: - - pos: 2.5,-28.5 - parent: 1 - type: Transform - - uid: 9564 - components: - - pos: 22.5,1.5 - parent: 1 - type: Transform - - uid: 9568 - components: - - pos: 39.5,4.5 - parent: 1 - type: Transform - - uid: 9569 - components: - - pos: 44.5,11.5 - parent: 1 - type: Transform -- proto: RandomVendingSnacks - entities: - - uid: 5049 - components: - - pos: 0.5,23.5 - parent: 1 - type: Transform - - uid: 7528 - components: - - pos: -39.5,11.5 - parent: 1 - type: Transform - - uid: 7535 - components: - - pos: -31.5,0.5 - parent: 1 - type: Transform - - uid: 7537 - components: - - pos: 6.5,12.5 - parent: 1 - type: Transform - - uid: 7538 - components: - - pos: -2.5,13.5 - parent: 1 - type: Transform - - uid: 7540 - components: - - pos: 0.5,-7.5 - parent: 1 - type: Transform - - uid: 7688 - components: - - pos: -11.5,-24.5 - parent: 1 - type: Transform - - uid: 9243 - components: - - pos: 19.5,32.5 - parent: 1 - type: Transform - - uid: 9244 - components: - - pos: 26.5,32.5 - parent: 1 - type: Transform - - uid: 9526 - components: - - pos: 2.5,-29.5 - parent: 1 - type: Transform - - uid: 9566 - components: - - pos: 21.5,1.5 - parent: 1 - type: Transform - - uid: 9567 - components: - - pos: 40.5,4.5 - parent: 1 - type: Transform - - uid: 9571 - components: - - pos: 44.5,12.5 - parent: 1 - type: Transform -- proto: RCD - entities: - - uid: 7135 - components: - - pos: 31.574986,-16.418343 - parent: 1 - type: Transform - - uid: 12468 - components: - - pos: 18.51267,-13.338883 - parent: 1 - type: Transform -- proto: RCDAmmo - entities: - - uid: 7136 - components: - - pos: 31.27811,-16.605843 - parent: 1 - type: Transform - - uid: 12469 - components: - - pos: 18.278296,-13.526383 - parent: 1 - type: Transform - - uid: 12470 - components: - - pos: 18.434546,-13.526383 - parent: 1 - type: Transform -- proto: ReagentContainerFlour - entities: - - uid: 6016 - components: - - pos: 0.46557093,1.1092224 - parent: 1 - type: Transform -- proto: ReagentContainerSugar - entities: - - uid: 6017 - components: - - pos: 0.6191431,1.0935974 - parent: 1 - type: Transform -- proto: Recycler - entities: - - uid: 3570 - components: - - rot: 3.141592653589793 rad - pos: -33.5,24.5 - parent: 1 - type: Transform - - links: - - 9199 - type: DeviceLinkSink -- proto: ReinforcedPlasmaWindow - entities: - - uid: 521 - components: - - rot: 3.141592653589793 rad - pos: -28.5,-4.5 - parent: 1 - type: Transform - - uid: 539 - components: - - rot: 3.141592653589793 rad - pos: -24.5,-4.5 - parent: 1 - type: Transform - - uid: 1434 - components: - - pos: 42.5,-5.5 - parent: 1 - type: Transform - - uid: 1435 - components: - - pos: 42.5,-7.5 - parent: 1 - type: Transform - - uid: 1437 - components: - - pos: 42.5,-11.5 - parent: 1 - type: Transform - - uid: 1438 - components: - - pos: 42.5,-13.5 - parent: 1 - type: Transform - - uid: 1439 - components: - - pos: 42.5,-15.5 - parent: 1 - type: Transform - - uid: 1440 - components: - - pos: 42.5,-17.5 - parent: 1 - type: Transform - - uid: 6822 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-9.5 - parent: 1 - type: Transform - - uid: 12308 - components: - - rot: 3.141592653589793 rad - pos: -0.5,64.5 - parent: 1 - type: Transform - - uid: 12309 - components: - - rot: 3.141592653589793 rad - pos: -1.5,65.5 - parent: 1 - type: Transform - - uid: 12310 - components: - - rot: 3.141592653589793 rad - pos: -0.5,66.5 - parent: 1 - type: Transform - - uid: 12311 - components: - - rot: 3.141592653589793 rad - pos: 0.5,65.5 - parent: 1 - type: Transform -- proto: ReinforcedWindow - entities: - - uid: 23 - components: - - rot: 3.141592653589793 rad - pos: 6.5,1.5 - parent: 1 - type: Transform - - uid: 31 - components: - - pos: 2.5,-6.5 - parent: 1 - type: Transform - - uid: 32 - components: - - rot: 3.141592653589793 rad - pos: 6.5,3.5 - parent: 1 - type: Transform - - uid: 33 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-6.5 - parent: 1 - type: Transform - - uid: 37 - components: - - rot: 3.141592653589793 rad - pos: 1.5,4.5 - parent: 1 - type: Transform - - uid: 39 - components: - - pos: 6.5,-5.5 - parent: 1 - type: Transform - - uid: 45 - components: - - pos: 5.5,-6.5 - parent: 1 - type: Transform - - uid: 61 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-2.5 - parent: 1 - type: Transform - - uid: 62 - components: - - pos: 6.5,-4.5 - parent: 1 - type: Transform - - uid: 63 - components: - - rot: 3.141592653589793 rad - pos: 2.5,4.5 - parent: 1 - type: Transform - - uid: 64 - components: - - rot: 3.141592653589793 rad - pos: 5.5,4.5 - parent: 1 - type: Transform - - uid: 108 - components: - - pos: 3.5,20.5 - parent: 1 - type: Transform - - uid: 109 - components: - - pos: 3.5,17.5 - parent: 1 - type: Transform - - uid: 110 - components: - - pos: 5.5,17.5 - parent: 1 - type: Transform - - uid: 121 - components: - - pos: 5.5,20.5 - parent: 1 - type: Transform - - uid: 134 - components: - - pos: -2.5,18.5 - parent: 1 - type: Transform - - uid: 135 - components: - - pos: -1.5,18.5 - parent: 1 - type: Transform - - uid: 136 - components: - - pos: -0.5,18.5 - parent: 1 - type: Transform - - uid: 137 - components: - - pos: 1.5,18.5 - parent: 1 - type: Transform - - uid: 159 - components: - - rot: 3.141592653589793 rad - pos: -10.5,8.5 - parent: 1 - type: Transform - - uid: 161 - components: - - pos: -7.5,13.5 - parent: 1 - type: Transform - - uid: 163 - components: - - pos: -7.5,14.5 - parent: 1 - type: Transform - - uid: 164 - components: - - pos: -13.5,12.5 - parent: 1 - type: Transform - - uid: 170 - components: - - pos: -11.5,12.5 - parent: 1 - type: Transform - - uid: 171 - components: - - rot: 3.141592653589793 rad - pos: -10.5,11.5 - parent: 1 - type: Transform - - uid: 174 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,5.5 - parent: 1 - type: Transform - - uid: 178 - components: - - rot: 3.141592653589793 rad - pos: -7.5,6.5 - parent: 1 - type: Transform - - uid: 186 - components: - - pos: -14.5,16.5 - parent: 1 - type: Transform - - uid: 188 - components: - - pos: -14.5,14.5 - parent: 1 - type: Transform - - uid: 209 - components: - - pos: -17.5,14.5 - parent: 1 - type: Transform - - uid: 211 - components: - - rot: 3.141592653589793 rad - pos: -8.5,4.5 - parent: 1 - type: Transform - - uid: 212 - components: - - rot: 3.141592653589793 rad - pos: -9.5,4.5 - parent: 1 - type: Transform - - uid: 215 - components: - - rot: 3.141592653589793 rad - pos: -11.5,4.5 - parent: 1 - type: Transform - - uid: 217 - components: - - rot: 3.141592653589793 rad - pos: -12.5,4.5 - parent: 1 - type: Transform - - uid: 219 - components: - - rot: 3.141592653589793 rad - pos: -14.5,4.5 - parent: 1 - type: Transform - - uid: 220 - components: - - rot: 3.141592653589793 rad - pos: -15.5,4.5 - parent: 1 - type: Transform - - uid: 228 - components: - - rot: 3.141592653589793 rad - pos: -18.5,4.5 - parent: 1 - type: Transform - - uid: 229 - components: - - rot: 3.141592653589793 rad - pos: -17.5,4.5 - parent: 1 - type: Transform - - uid: 231 - components: - - rot: 3.141592653589793 rad - pos: -20.5,4.5 - parent: 1 - type: Transform - - uid: 255 - components: - - rot: 3.141592653589793 rad - pos: -21.5,4.5 - parent: 1 - type: Transform - - uid: 263 - components: - - pos: -26.5,8.5 - parent: 1 - type: Transform - - uid: 264 - components: - - pos: -25.5,8.5 - parent: 1 - type: Transform - - uid: 265 - components: - - pos: -23.5,8.5 - parent: 1 - type: Transform - - uid: 332 - components: - - rot: 3.141592653589793 rad - pos: 3.5,32.5 - parent: 1 - type: Transform - - uid: 333 - components: - - rot: 3.141592653589793 rad - pos: 4.5,32.5 - parent: 1 - type: Transform - - uid: 334 - components: - - rot: 3.141592653589793 rad - pos: 5.5,32.5 - parent: 1 - type: Transform - - uid: 362 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,32.5 - parent: 1 - type: Transform - - uid: 363 - components: - - pos: -4.5,33.5 - parent: 1 - type: Transform - - uid: 366 - components: - - pos: 0.5,32.5 - parent: 1 - type: Transform - - uid: 367 - components: - - pos: 0.5,33.5 - parent: 1 - type: Transform - - uid: 368 - components: - - pos: -2.5,33.5 - parent: 1 - type: Transform - - uid: 369 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,32.5 - parent: 1 - type: Transform - - uid: 371 - components: - - pos: -3.5,33.5 - parent: 1 - type: Transform - - uid: 372 - components: - - pos: -0.5,33.5 - parent: 1 - type: Transform - - uid: 373 - components: - - pos: -1.5,33.5 - parent: 1 - type: Transform - - uid: 376 - components: - - pos: -4.5,32.5 - parent: 1 - type: Transform - - uid: 379 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,27.5 - parent: 1 - type: Transform - - uid: 380 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,28.5 - parent: 1 - type: Transform - - uid: 381 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,30.5 - parent: 1 - type: Transform - - uid: 382 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,31.5 - parent: 1 - type: Transform - - uid: 400 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,32.5 - parent: 1 - type: Transform - - uid: 401 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,32.5 - parent: 1 - type: Transform - - uid: 403 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,32.5 - parent: 1 - type: Transform - - uid: 404 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,32.5 - parent: 1 - type: Transform - - uid: 426 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,32.5 - parent: 1 - type: Transform - - uid: 430 - components: - - pos: -13.5,32.5 - parent: 1 - type: Transform - - uid: 445 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-2.5 - parent: 1 - type: Transform - - uid: 446 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-1.5 - parent: 1 - type: Transform - - uid: 447 - components: - - rot: 3.141592653589793 rad - pos: -9.5,0.5 - parent: 1 - type: Transform - - uid: 448 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-3.5 - parent: 1 - type: Transform - - uid: 450 - components: - - rot: 3.141592653589793 rad - pos: -10.5,0.5 - parent: 1 - type: Transform - - uid: 451 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-0.5 - parent: 1 - type: Transform - - uid: 452 - components: - - rot: 3.141592653589793 rad - pos: -8.5,0.5 - parent: 1 - type: Transform - - uid: 455 - components: - - rot: 3.141592653589793 rad - pos: -12.5,0.5 - parent: 1 - type: Transform - - uid: 457 - components: - - rot: 3.141592653589793 rad - pos: -11.5,0.5 - parent: 1 - type: Transform - - uid: 467 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-8.5 - parent: 1 - type: Transform - - uid: 473 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-9.5 - parent: 1 - type: Transform - - uid: 504 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,15.5 - parent: 1 - type: Transform - - uid: 545 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-1.5 - parent: 1 - type: Transform - - uid: 578 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-7.5 - parent: 1 - type: Transform - - uid: 579 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-7.5 - parent: 1 - type: Transform - - uid: 582 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-10.5 - parent: 1 - type: Transform - - uid: 589 - components: - - rot: 3.141592653589793 rad - pos: -20.5,-11.5 - parent: 1 - type: Transform - - uid: 593 - components: - - pos: -19.5,-15.5 - parent: 1 - type: Transform - - uid: 594 - components: - - pos: -20.5,-15.5 - parent: 1 - type: Transform - - uid: 595 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-12.5 - parent: 1 - type: Transform - - uid: 598 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-11.5 - parent: 1 - type: Transform - - uid: 600 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-14.5 - parent: 1 - type: Transform - - uid: 602 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-8.5 - parent: 1 - type: Transform - - uid: 608 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-14.5 - parent: 1 - type: Transform - - uid: 609 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-13.5 - parent: 1 - type: Transform - - uid: 610 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-11.5 - parent: 1 - type: Transform - - uid: 611 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-12.5 - parent: 1 - type: Transform - - uid: 667 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,12.5 - parent: 1 - type: Transform - - uid: 671 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,15.5 - parent: 1 - type: Transform - - uid: 674 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,12.5 - parent: 1 - type: Transform - - uid: 703 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,4.5 - parent: 1 - type: Transform - - uid: 704 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,4.5 - parent: 1 - type: Transform - - uid: 705 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,4.5 - parent: 1 - type: Transform - - uid: 706 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,4.5 - parent: 1 - type: Transform - - uid: 707 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,4.5 - parent: 1 - type: Transform - - uid: 708 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,4.5 - parent: 1 - type: Transform - - uid: 709 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,8.5 - parent: 1 - type: Transform - - uid: 710 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,9.5 - parent: 1 - type: Transform - - uid: 711 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,10.5 - parent: 1 - type: Transform - - uid: 721 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,7.5 - parent: 1 - type: Transform - - uid: 723 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,7.5 - parent: 1 - type: Transform - - uid: 725 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,7.5 - parent: 1 - type: Transform - - uid: 737 - components: - - rot: 3.141592653589793 rad - pos: 18.5,11.5 - parent: 1 - type: Transform - - uid: 738 - components: - - rot: 3.141592653589793 rad - pos: 19.5,11.5 - parent: 1 - type: Transform - - uid: 739 - components: - - rot: 3.141592653589793 rad - pos: 22.5,11.5 - parent: 1 - type: Transform - - uid: 740 - components: - - rot: 3.141592653589793 rad - pos: 23.5,11.5 - parent: 1 - type: Transform - - uid: 792 - components: - - pos: 30.5,14.5 - parent: 1 - type: Transform - - uid: 960 - components: - - pos: 28.5,31.5 - parent: 1 - type: Transform - - uid: 965 - components: - - pos: 27.5,31.5 - parent: 1 - type: Transform - - uid: 966 - components: - - pos: 26.5,31.5 - parent: 1 - type: Transform - - uid: 967 - components: - - pos: 25.5,31.5 - parent: 1 - type: Transform - - uid: 968 - components: - - pos: 24.5,31.5 - parent: 1 - type: Transform - - uid: 979 - components: - - pos: 32.5,29.5 - parent: 1 - type: Transform - - uid: 980 - components: - - pos: 31.5,29.5 - parent: 1 - type: Transform - - uid: 981 - components: - - pos: 30.5,29.5 - parent: 1 - type: Transform - - uid: 982 - components: - - pos: 29.5,29.5 - parent: 1 - type: Transform - - uid: 983 - components: - - pos: 28.5,29.5 - parent: 1 - type: Transform - - uid: 1030 - components: - - pos: 13.5,-9.5 - parent: 1 - type: Transform - - uid: 1031 - components: - - pos: 11.5,-9.5 - parent: 1 - type: Transform - - uid: 1037 - components: - - pos: 14.5,-4.5 - parent: 1 - type: Transform - - uid: 1048 - components: - - pos: 17.5,-6.5 - parent: 1 - type: Transform - - uid: 1049 - components: - - pos: 17.5,-7.5 - parent: 1 - type: Transform - - uid: 1072 - components: - - pos: 21.5,-15.5 - parent: 1 - type: Transform - - uid: 1077 - components: - - pos: 18.5,-12.5 - parent: 1 - type: Transform - - uid: 1078 - components: - - pos: 19.5,-12.5 - parent: 1 - type: Transform - - uid: 1079 - components: - - pos: 20.5,-12.5 - parent: 1 - type: Transform - - uid: 1084 - components: - - pos: 18.5,-9.5 - parent: 1 - type: Transform - - uid: 1085 - components: - - pos: 19.5,-9.5 - parent: 1 - type: Transform - - uid: 1086 - components: - - pos: 20.5,-9.5 - parent: 1 - type: Transform - - uid: 1099 - components: - - pos: 23.5,-12.5 - parent: 1 - type: Transform - - uid: 1176 - components: - - pos: 24.5,-8.5 - parent: 1 - type: Transform - - uid: 1178 - components: - - pos: 25.5,-9.5 - parent: 1 - type: Transform - - uid: 1179 - components: - - pos: 26.5,-9.5 - parent: 1 - type: Transform - - uid: 1180 - components: - - pos: 24.5,-6.5 - parent: 1 - type: Transform - - uid: 1181 - components: - - pos: 24.5,-5.5 - parent: 1 - type: Transform - - uid: 1182 - components: - - pos: 24.5,-4.5 - parent: 1 - type: Transform - - uid: 1183 - components: - - pos: 24.5,-3.5 - parent: 1 - type: Transform - - uid: 1184 - components: - - pos: 28.5,-9.5 - parent: 1 - type: Transform - - uid: 1185 - components: - - pos: 29.5,-9.5 - parent: 1 - type: Transform - - uid: 1253 - components: - - pos: 46.5,0.5 - parent: 1 - type: Transform - - uid: 1254 - components: - - pos: 47.5,0.5 - parent: 1 - type: Transform - - uid: 1255 - components: - - pos: 47.5,1.5 - parent: 1 - type: Transform - - uid: 1258 - components: - - pos: 47.5,16.5 - parent: 1 - type: Transform - - uid: 1259 - components: - - pos: 47.5,15.5 - parent: 1 - type: Transform - - uid: 1264 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,2.5 - parent: 1 - type: Transform - - uid: 1265 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,3.5 - parent: 1 - type: Transform - - uid: 1266 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,10.5 - parent: 1 - type: Transform - - uid: 1267 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,9.5 - parent: 1 - type: Transform - - uid: 1270 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,14.5 - parent: 1 - type: Transform - - uid: 1284 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,8.5 - parent: 1 - type: Transform - - uid: 1285 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,7.5 - parent: 1 - type: Transform - - uid: 1293 - components: - - pos: 47.5,17.5 - parent: 1 - type: Transform - - uid: 1295 - components: - - pos: 43.5,21.5 - parent: 1 - type: Transform - - uid: 1296 - components: - - pos: 43.5,23.5 - parent: 1 - type: Transform - - uid: 1308 - components: - - pos: 40.5,-19.5 - parent: 1 - type: Transform - - uid: 1309 - components: - - pos: 40.5,-18.5 - parent: 1 - type: Transform - - uid: 1310 - components: - - pos: 40.5,-17.5 - parent: 1 - type: Transform - - uid: 1311 - components: - - pos: 40.5,-16.5 - parent: 1 - type: Transform - - uid: 1312 - components: - - pos: 40.5,-15.5 - parent: 1 - type: Transform - - uid: 1313 - components: - - pos: 40.5,-14.5 - parent: 1 - type: Transform - - uid: 1314 - components: - - pos: 40.5,-13.5 - parent: 1 - type: Transform - - uid: 1315 - components: - - pos: 40.5,-12.5 - parent: 1 - type: Transform - - uid: 1316 - components: - - pos: 40.5,-11.5 - parent: 1 - type: Transform - - uid: 1317 - components: - - pos: 40.5,-10.5 - parent: 1 - type: Transform - - uid: 1318 - components: - - pos: 40.5,-9.5 - parent: 1 - type: Transform - - uid: 1319 - components: - - pos: 40.5,-8.5 - parent: 1 - type: Transform - - uid: 1320 - components: - - pos: 40.5,-7.5 - parent: 1 - type: Transform - - uid: 1321 - components: - - pos: 40.5,-6.5 - parent: 1 - type: Transform - - uid: 1322 - components: - - pos: 40.5,-5.5 - parent: 1 - type: Transform - - uid: 1323 - components: - - pos: 40.5,-4.5 - parent: 1 - type: Transform - - uid: 1324 - components: - - pos: 40.5,-3.5 - parent: 1 - type: Transform - - uid: 1342 - components: - - pos: 39.5,-19.5 - parent: 1 - type: Transform - - uid: 1343 - components: - - pos: 38.5,-19.5 - parent: 1 - type: Transform - - uid: 1344 - components: - - pos: 37.5,-19.5 - parent: 1 - type: Transform - - uid: 1345 - components: - - pos: 36.5,-19.5 - parent: 1 - type: Transform - - uid: 1346 - components: - - pos: 35.5,-19.5 - parent: 1 - type: Transform - - uid: 1347 - components: - - pos: 34.5,-19.5 - parent: 1 - type: Transform - - uid: 1349 - components: - - pos: 32.5,-19.5 - parent: 1 - type: Transform - - uid: 1350 - components: - - pos: 31.5,-19.5 - parent: 1 - type: Transform - - uid: 1363 - components: - - pos: 33.5,-23.5 - parent: 1 - type: Transform - - uid: 1367 - components: - - pos: 33.5,-22.5 - parent: 1 - type: Transform - - uid: 1368 - components: - - pos: 34.5,-21.5 - parent: 1 - type: Transform - - uid: 1369 - components: - - pos: 35.5,-21.5 - parent: 1 - type: Transform - - uid: 1370 - components: - - pos: 36.5,-21.5 - parent: 1 - type: Transform - - uid: 1371 - components: - - pos: 37.5,-22.5 - parent: 1 - type: Transform - - uid: 1372 - components: - - pos: 37.5,-23.5 - parent: 1 - type: Transform - - uid: 1458 - components: - - pos: 5.5,-18.5 - parent: 1 - type: Transform - - uid: 1492 - components: - - pos: 7.5,-19.5 - parent: 1 - type: Transform - - uid: 1494 - components: - - pos: 7.5,-22.5 - parent: 1 - type: Transform - - uid: 1499 - components: - - pos: 6.5,-24.5 - parent: 1 - type: Transform - - uid: 1500 - components: - - pos: 4.5,-24.5 - parent: 1 - type: Transform - - uid: 1508 - components: - - pos: 7.5,-27.5 - parent: 1 - type: Transform - - uid: 1509 - components: - - pos: 7.5,-25.5 - parent: 1 - type: Transform - - uid: 1513 - components: - - pos: 17.5,-20.5 - parent: 1 - type: Transform - - uid: 1517 - components: - - pos: 17.5,-24.5 - parent: 1 - type: Transform - - uid: 1518 - components: - - pos: 17.5,-23.5 - parent: 1 - type: Transform - - uid: 1524 - components: - - pos: 27.5,-23.5 - parent: 1 - type: Transform - - uid: 1535 - components: - - pos: 20.5,-28.5 - parent: 1 - type: Transform - - uid: 1536 - components: - - pos: 19.5,-28.5 - parent: 1 - type: Transform - - uid: 1540 - components: - - pos: 15.5,-30.5 - parent: 1 - type: Transform - - uid: 1541 - components: - - pos: 9.5,-30.5 - parent: 1 - type: Transform - - uid: 1542 - components: - - pos: 9.5,-29.5 - parent: 1 - type: Transform - - uid: 1548 - components: - - pos: 15.5,-29.5 - parent: 1 - type: Transform - - uid: 1549 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-31.5 - parent: 1 - type: Transform - - uid: 1550 - components: - - pos: 12.5,-30.5 - parent: 1 - type: Transform - - uid: 1551 - components: - - pos: 12.5,-29.5 - parent: 1 - type: Transform - - uid: 1552 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-28.5 - parent: 1 - type: Transform - - uid: 1559 - components: - - pos: 27.5,-24.5 - parent: 1 - type: Transform - - uid: 1561 - components: - - pos: 24.5,-25.5 - parent: 1 - type: Transform - - uid: 1562 - components: - - pos: 26.5,-25.5 - parent: 1 - type: Transform - - uid: 1568 - components: - - pos: 8.5,-24.5 - parent: 1 - type: Transform - - uid: 1569 - components: - - pos: 11.5,-24.5 - parent: 1 - type: Transform - - uid: 1570 - components: - - pos: 12.5,-23.5 - parent: 1 - type: Transform - - uid: 1571 - components: - - pos: 12.5,-20.5 - parent: 1 - type: Transform - - uid: 1608 - components: - - pos: 3.5,-29.5 - parent: 1 - type: Transform - - uid: 1614 - components: - - pos: 3.5,-30.5 - parent: 1 - type: Transform - - uid: 1654 - components: - - pos: 3.5,-32.5 - parent: 1 - type: Transform - - uid: 1755 - components: - - pos: 21.5,-28.5 - parent: 1 - type: Transform - - uid: 1956 - components: - - pos: 15.5,-9.5 - parent: 1 - type: Transform - - uid: 1957 - components: - - pos: 16.5,-9.5 - parent: 1 - type: Transform - - uid: 2045 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,22.5 - parent: 1 - type: Transform - - uid: 2057 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,24.5 - parent: 1 - type: Transform - - uid: 2067 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,14.5 - parent: 1 - type: Transform - - uid: 2071 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,12.5 - parent: 1 - type: Transform - - uid: 2081 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,15.5 - parent: 1 - type: Transform - - uid: 2082 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,10.5 - parent: 1 - type: Transform - - uid: 2083 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,1.5 - parent: 1 - type: Transform - - uid: 2084 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,2.5 - parent: 1 - type: Transform - - uid: 2085 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,14.5 - parent: 1 - type: Transform - - uid: 2086 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,14.5 - parent: 1 - type: Transform - - uid: 2087 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,9.5 - parent: 1 - type: Transform - - uid: 2088 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,12.5 - parent: 1 - type: Transform - - uid: 2089 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,10.5 - parent: 1 - type: Transform - - uid: 2103 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-1.5 - parent: 1 - type: Transform - - uid: 2104 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-2.5 - parent: 1 - type: Transform - - uid: 2105 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-3.5 - parent: 1 - type: Transform - - uid: 2106 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-4.5 - parent: 1 - type: Transform - - uid: 2107 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-6.5 - parent: 1 - type: Transform - - uid: 2108 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-5.5 - parent: 1 - type: Transform - - uid: 2123 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,12.5 - parent: 1 - type: Transform - - uid: 2124 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,10.5 - parent: 1 - type: Transform - - uid: 2125 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,6.5 - parent: 1 - type: Transform - - uid: 2126 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,6.5 - parent: 1 - type: Transform - - uid: 2127 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,4.5 - parent: 1 - type: Transform - - uid: 2130 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,2.5 - parent: 1 - type: Transform - - uid: 2131 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,2.5 - parent: 1 - type: Transform - - uid: 2132 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,4.5 - parent: 1 - type: Transform - - uid: 2134 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,6.5 - parent: 1 - type: Transform - - uid: 2135 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,4.5 - parent: 1 - type: Transform - - uid: 2217 - components: - - pos: -44.5,-19.5 - parent: 1 - type: Transform - - uid: 2219 - components: - - pos: -44.5,-18.5 - parent: 1 - type: Transform - - uid: 2233 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-24.5 - parent: 1 - type: Transform - - uid: 2235 - components: - - pos: -42.5,-11.5 - parent: 1 - type: Transform - - uid: 2255 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-24.5 - parent: 1 - type: Transform - - uid: 2262 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-24.5 - parent: 1 - type: Transform - - uid: 2263 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-24.5 - parent: 1 - type: Transform - - uid: 2269 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-23.5 - parent: 1 - type: Transform - - uid: 2277 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-24.5 - parent: 1 - type: Transform - - uid: 2279 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,26.5 - parent: 1 - type: Transform - - uid: 2280 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,26.5 - parent: 1 - type: Transform - - uid: 2281 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,26.5 - parent: 1 - type: Transform - - uid: 2282 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,26.5 - parent: 1 - type: Transform - - uid: 2289 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,31.5 - parent: 1 - type: Transform - - uid: 2290 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,31.5 - parent: 1 - type: Transform - - uid: 2291 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,31.5 - parent: 1 - type: Transform - - uid: 2292 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,31.5 - parent: 1 - type: Transform - - uid: 2302 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,30.5 - parent: 1 - type: Transform - - uid: 2321 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,36.5 - parent: 1 - type: Transform - - uid: 2328 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,36.5 - parent: 1 - type: Transform - - uid: 2331 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,36.5 - parent: 1 - type: Transform - - uid: 2333 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,38.5 - parent: 1 - type: Transform - - uid: 2334 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,38.5 - parent: 1 - type: Transform - - uid: 2335 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,36.5 - parent: 1 - type: Transform - - uid: 2336 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,36.5 - parent: 1 - type: Transform - - uid: 2337 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,38.5 - parent: 1 - type: Transform - - uid: 2338 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,36.5 - parent: 1 - type: Transform - - uid: 2340 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,37.5 - parent: 1 - type: Transform - - uid: 2341 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,36.5 - parent: 1 - type: Transform - - uid: 2342 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,36.5 - parent: 1 - type: Transform - - uid: 2363 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,36.5 - parent: 1 - type: Transform - - uid: 2374 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,36.5 - parent: 1 - type: Transform - - uid: 2375 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,38.5 - parent: 1 - type: Transform - - uid: 2376 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,37.5 - parent: 1 - type: Transform - - uid: 2398 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,36.5 - parent: 1 - type: Transform - - uid: 2399 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,37.5 - parent: 1 - type: Transform - - uid: 2400 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,36.5 - parent: 1 - type: Transform - - uid: 2401 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,36.5 - parent: 1 - type: Transform - - uid: 2402 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,36.5 - parent: 1 - type: Transform - - uid: 2403 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,38.5 - parent: 1 - type: Transform - - uid: 2404 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,38.5 - parent: 1 - type: Transform - - uid: 2406 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,37.5 - parent: 1 - type: Transform - - uid: 2407 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,37.5 - parent: 1 - type: Transform - - uid: 2408 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,36.5 - parent: 1 - type: Transform - - uid: 2409 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,37.5 - parent: 1 - type: Transform - - uid: 2413 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,7.5 - parent: 1 - type: Transform - - uid: 2414 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,8.5 - parent: 1 - type: Transform - - uid: 2438 - components: - - pos: -44.5,-16.5 - parent: 1 - type: Transform - - uid: 2659 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,43.5 - parent: 1 - type: Transform - - uid: 2675 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,54.5 - parent: 1 - type: Transform - - uid: 2689 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,50.5 - parent: 1 - type: Transform - - uid: 2769 - components: - - pos: -14.5,-54.5 - parent: 1 - type: Transform - - uid: 2772 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-53.5 - parent: 1 - type: Transform - - uid: 2778 - components: - - pos: -12.5,-54.5 - parent: 1 - type: Transform - - uid: 2794 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-47.5 - parent: 1 - type: Transform - - uid: 2806 - components: - - pos: -13.5,-54.5 - parent: 1 - type: Transform - - uid: 2847 - components: - - pos: -15.5,-54.5 - parent: 1 - type: Transform - - uid: 2853 - components: - - pos: -16.5,-54.5 - parent: 1 - type: Transform - - uid: 2871 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-52.5 - parent: 1 - type: Transform - - uid: 2927 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-49.5 - parent: 1 - type: Transform - - uid: 2970 - components: - - pos: -22.5,-30.5 - parent: 1 - type: Transform - - uid: 2991 - components: - - pos: -7.5,-34.5 - parent: 1 - type: Transform - - uid: 2995 - components: - - pos: -6.5,-34.5 - parent: 1 - type: Transform - - uid: 2999 - components: - - pos: 3.5,-33.5 - parent: 1 - type: Transform - - uid: 3071 - components: - - pos: -44.5,-17.5 - parent: 1 - type: Transform - - uid: 3073 - components: - - pos: -42.5,-9.5 - parent: 1 - type: Transform - - uid: 3255 - components: - - pos: 19.5,-24.5 - parent: 1 - type: Transform - - uid: 4809 - components: - - pos: 47.5,19.5 - parent: 1 - type: Transform - - uid: 4810 - components: - - pos: 47.5,20.5 - parent: 1 - type: Transform - - uid: 4824 - components: - - pos: 39.5,29.5 - parent: 1 - type: Transform - - uid: 4825 - components: - - pos: 40.5,29.5 - parent: 1 - type: Transform - - uid: 4826 - components: - - pos: 41.5,29.5 - parent: 1 - type: Transform - - uid: 4830 - components: - - pos: 45.5,29.5 - parent: 1 - type: Transform - - uid: 4831 - components: - - pos: 46.5,29.5 - parent: 1 - type: Transform - - uid: 4834 - components: - - pos: 47.5,26.5 - parent: 1 - type: Transform - - uid: 4835 - components: - - pos: 47.5,27.5 - parent: 1 - type: Transform - - uid: 4836 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,28.5 - parent: 1 - type: Transform - - uid: 4837 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,25.5 - parent: 1 - type: Transform - - uid: 4859 - components: - - rot: 3.141592653589793 rad - pos: 47.5,31.5 - parent: 1 - type: Transform - - uid: 4860 - components: - - rot: 3.141592653589793 rad - pos: 47.5,32.5 - parent: 1 - type: Transform - - uid: 4861 - components: - - rot: 3.141592653589793 rad - pos: 47.5,33.5 - parent: 1 - type: Transform - - uid: 4864 - components: - - rot: 3.141592653589793 rad - pos: 40.5,35.5 - parent: 1 - type: Transform - - uid: 4865 - components: - - rot: 3.141592653589793 rad - pos: 41.5,35.5 - parent: 1 - type: Transform - - uid: 4866 - components: - - rot: 3.141592653589793 rad - pos: 42.5,35.5 - parent: 1 - type: Transform - - uid: 4867 - components: - - rot: 3.141592653589793 rad - pos: 43.5,35.5 - parent: 1 - type: Transform - - uid: 4868 - components: - - rot: 3.141592653589793 rad - pos: 44.5,35.5 - parent: 1 - type: Transform - - uid: 4869 - components: - - rot: 3.141592653589793 rad - pos: 45.5,35.5 - parent: 1 - type: Transform - - uid: 5006 - components: - - rot: 3.141592653589793 rad - pos: 44.5,29.5 - parent: 1 - type: Transform - - uid: 5858 - components: - - pos: -24.5,-29.5 - parent: 1 - type: Transform - - uid: 7066 - components: - - pos: 3.5,-31.5 - parent: 1 - type: Transform - - uid: 7294 - components: - - pos: 18.5,-24.5 - parent: 1 - type: Transform - - uid: 7298 - components: - - pos: 22.5,-24.5 - parent: 1 - type: Transform - - uid: 8319 - components: - - pos: 9.5,34.5 - parent: 1 - type: Transform - - uid: 8320 - components: - - pos: 11.5,34.5 - parent: 1 - type: Transform -- proto: ResearchAndDevelopmentServer - entities: - - uid: 1848 - components: - - pos: -22.5,-3.5 - parent: 1 - type: Transform -- proto: RightArmBorg - entities: - - uid: 6070 - components: - - pos: -5.1487813,-15.441898 - parent: 1 - type: Transform -- proto: RubberStampApproved - entities: - - uid: 4013 - components: - - pos: -5.3658667,46.70469 - parent: 1 - type: Transform - - uid: 5091 - components: - - pos: -4.3448553,19.674007 - parent: 1 - type: Transform -- proto: RubberStampDenied - entities: - - uid: 4014 - components: - - pos: -5.6314917,46.532814 - parent: 1 - type: Transform - - uid: 5092 - components: - - pos: -4.7042303,19.424007 - parent: 1 - type: Transform -- proto: RubberStampMime - entities: - - uid: 7786 - components: - - pos: -13.33112,-29.043272 - parent: 1 - type: Transform -- proto: SalvageMagnet - entities: - - uid: 7284 - components: - - pos: 24.5,-26.5 - parent: 1 - type: Transform -- proto: Saw - entities: - - uid: 8245 - components: - - pos: -25.476225,20.817598 - parent: 1 - type: Transform - - uid: 9625 - components: - - pos: 17.482826,27.671982 - parent: 1 - type: Transform -- proto: Scalpel - entities: - - uid: 9640 - components: - - pos: -25.484652,20.468168 - parent: 1 - type: Transform -- proto: ScalpelLaser - entities: - - uid: 9626 - components: - - pos: 16.498451,27.468857 - parent: 1 - type: Transform -- proto: SecurityTechFab - entities: - - uid: 5417 - components: - - pos: 36.5,10.5 - parent: 1 - type: Transform -- proto: SeedExtractor - entities: - - uid: 6012 - components: - - pos: 5.5,-4.5 - parent: 1 - type: Transform -- proto: SheetGlass - entities: - - uid: 5600 - components: - - pos: -23.623562,5.5177503 - parent: 1 - type: Transform - - uid: 6022 - components: - - pos: -12.208346,-0.4335618 - parent: 1 - type: Transform - - uid: 6023 - components: - - pos: -12.208346,-0.4335618 - parent: 1 - type: Transform - - uid: 6091 - components: - - pos: -28.475227,-0.46534538 - parent: 1 - type: Transform - - uid: 6796 - components: - - pos: 19.039476,-8.444527 - parent: 1 - type: Transform - - uid: 6797 - components: - - pos: 19.039476,-8.444527 - parent: 1 - type: Transform - - uid: 7420 - components: - - pos: 11.514883,-19.457083 - parent: 1 - type: Transform - - uid: 8223 - components: - - pos: -4.0320415,-20.432213 - parent: 1 - type: Transform - - uid: 8917 - components: - - pos: -38.36674,-18.403994 - parent: 1 - type: Transform - - uid: 11230 - components: - - pos: -28.604006,22.484268 - parent: 1 - type: Transform -- proto: SheetPaper - entities: - - uid: 8904 - components: - - pos: -40.572815,-9.497994 - parent: 1 - type: Transform - - uid: 9159 - components: - - pos: -40.510315,-9.497994 - parent: 1 - type: Transform - - uid: 9160 - components: - - pos: -40.43219,-9.482369 - parent: 1 - type: Transform -- proto: SheetPlasma - entities: - - uid: 6081 - components: - - pos: -24.49349,-7.4965954 - parent: 1 - type: Transform - - uid: 6082 - components: - - pos: -24.49349,-7.4965954 - parent: 1 - type: Transform - - uid: 12522 - components: - - flags: InContainer - type: MetaData - - parent: 12521 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: SheetPlasteel - entities: - - uid: 1134 - components: - - pos: 19.570726,-8.444527 - parent: 1 - type: Transform - - uid: 1135 - components: - - pos: 19.570726,-8.444527 - parent: 1 - type: Transform - - uid: 3979 - components: - - pos: -3.2598429,44.57834 - parent: 1 - type: Transform - - uid: 7645 - components: - - pos: -41.491985,20.438309 - parent: 1 - type: Transform - - uid: 11936 - components: - - pos: 11.3171625,23.595459 - parent: 1 - type: Transform - - uid: 11937 - components: - - pos: 11.4577875,23.595459 - parent: 1 - type: Transform -- proto: SheetPlastic - entities: - - uid: 5419 - components: - - pos: 38.4375,10.569345 - parent: 1 - type: Transform - - uid: 5599 - components: - - pos: -23.404812,5.5177503 - parent: 1 - type: Transform - - uid: 6020 - components: - - pos: -11.864596,-0.4179368 - parent: 1 - type: Transform - - uid: 6021 - components: - - pos: -11.864596,-0.4179368 - parent: 1 - type: Transform - - uid: 7422 - components: - - pos: 11.514883,-19.660208 - parent: 1 - type: Transform - - uid: 8829 - components: - - pos: -27.411745,-25.34438 - parent: 1 - type: Transform - - uid: 9725 - components: - - pos: -28.37981,22.482435 - parent: 1 - type: Transform -- proto: SheetRGlass - entities: - - uid: 11932 - components: - - pos: 10.3796625,23.595459 - parent: 1 - type: Transform - - uid: 11933 - components: - - pos: 10.6609125,23.595459 - parent: 1 - type: Transform -- proto: SheetSteel - entities: - - uid: 3978 - components: - - pos: -3.5098429,44.57834 - parent: 1 - type: Transform - - uid: 5420 - components: - - pos: 38.59375,10.569345 - parent: 1 - type: Transform - - uid: 6018 - components: - - pos: -11.458346,-0.4179368 - parent: 1 - type: Transform - - uid: 6019 - components: - - pos: -11.458346,-0.4179368 - parent: 1 - type: Transform - - uid: 6066 - components: - - pos: -4.457944,-13.5120735 - parent: 1 - type: Transform - - uid: 6794 - components: - - pos: 19.289476,-8.444527 - parent: 1 - type: Transform - - uid: 6795 - components: - - pos: 19.289476,-8.444527 - parent: 1 - type: Transform - - uid: 7140 - components: - - pos: 32.668736,-18.433968 - parent: 1 - type: Transform - - uid: 7141 - components: - - pos: 32.668736,-18.433968 - parent: 1 - type: Transform - - uid: 7421 - components: - - pos: 11.514883,-19.566458 - parent: 1 - type: Transform - - uid: 7644 - components: - - pos: -41.491985,20.110184 - parent: 1 - type: Transform - - uid: 8224 - components: - - pos: -4.2976665,-20.432213 - parent: 1 - type: Transform - - uid: 8318 - components: - - pos: -38.612484,-18.388916 - parent: 1 - type: Transform - - uid: 8826 - components: - - pos: -27.567995,-25.37563 - parent: 1 - type: Transform - - uid: 9648 - components: - - pos: 10.4109125,24.486084 - parent: 1 - type: Transform - - uid: 11931 - components: - - pos: 10.6452875,24.486084 - parent: 1 - type: Transform -- proto: ShuttersNormal - entities: - - uid: 3430 - components: - - pos: -8.5,-10.5 - parent: 1 - type: Transform - - links: - - 1799 - type: DeviceLinkSink - - uid: 3432 - components: - - pos: -7.5,-10.5 - parent: 1 - type: Transform - - links: - - 1799 - type: DeviceLinkSink - - uid: 3433 - components: - - pos: -6.5,-10.5 - parent: 1 - type: Transform - - links: - - 1799 - type: DeviceLinkSink - - uid: 3436 - components: - - pos: -29.5,-6.5 - parent: 1 - type: Transform - - links: - - 9264 - type: DeviceLinkSink - - uid: 5459 - components: - - pos: 14.5,0.5 - parent: 1 - type: Transform - - links: - - 7670 - type: DeviceLinkSink - - uid: 5460 - components: - - pos: 15.5,0.5 - parent: 1 - type: Transform - - links: - - 7670 - type: DeviceLinkSink -- proto: ShuttersNormalOpen - entities: - - uid: 1796 - components: - - pos: 14.5,4.5 - parent: 1 - type: Transform - - links: - - 5448 - type: DeviceLinkSink - - uid: 1797 - components: - - pos: 15.5,4.5 - parent: 1 - type: Transform - - links: - - 5448 - type: DeviceLinkSink - - uid: 1798 - components: - - pos: 17.5,4.5 - parent: 1 - type: Transform - - links: - - 5449 - type: DeviceLinkSink - - uid: 1824 - components: - - pos: 11.5,4.5 - parent: 1 - type: Transform - - links: - - 5447 - type: DeviceLinkSink - - uid: 1847 - components: - - pos: 12.5,4.5 - parent: 1 - type: Transform - - links: - - 5447 - type: DeviceLinkSink - - uid: 1866 - components: - - pos: 18.5,4.5 - parent: 1 - type: Transform - - links: - - 5449 - type: DeviceLinkSink - - uid: 1936 - components: - - pos: -21.5,4.5 - parent: 1 - type: Transform - - links: - - 1896 - type: DeviceLinkSink - - uid: 1937 - components: - - pos: -20.5,4.5 - parent: 1 - type: Transform - - links: - - 1896 - type: DeviceLinkSink - - uid: 1938 - components: - - pos: -18.5,4.5 - parent: 1 - type: Transform - - links: - - 1897 - type: DeviceLinkSink - - uid: 1939 - components: - - pos: -17.5,4.5 - parent: 1 - type: Transform - - links: - - 1897 - type: DeviceLinkSink - - uid: 1940 - components: - - pos: -15.5,4.5 - parent: 1 - type: Transform - - links: - - 1898 - type: DeviceLinkSink - - uid: 1941 - components: - - pos: -14.5,4.5 - parent: 1 - type: Transform - - links: - - 1898 - type: DeviceLinkSink - - uid: 3618 - components: - - pos: -6.5,50.5 - parent: 1 - type: Transform - - uid: 3619 - components: - - pos: -6.5,54.5 - parent: 1 - type: Transform - - uid: 3620 - components: - - pos: -7.5,52.5 - parent: 1 - type: Transform - - uid: 3621 - components: - - pos: -5.5,52.5 - parent: 1 - type: Transform - - uid: 5067 - components: - - pos: -2.5,18.5 - parent: 1 - type: Transform - - links: - - 5072 - type: DeviceLinkSink - - uid: 5068 - components: - - pos: -1.5,18.5 - parent: 1 - type: Transform - - links: - - 5072 - type: DeviceLinkSink - - uid: 5069 - components: - - pos: -0.5,18.5 - parent: 1 - type: Transform - - links: - - 5072 - type: DeviceLinkSink - - uid: 5070 - components: - - pos: 1.5,18.5 - parent: 1 - type: Transform - - links: - - 5072 - type: DeviceLinkSink - - uid: 5450 - components: - - pos: 11.5,7.5 - parent: 1 - type: Transform - - links: - - 5447 - type: DeviceLinkSink - - uid: 5451 - components: - - pos: 14.5,7.5 - parent: 1 - type: Transform - - links: - - 5448 - type: DeviceLinkSink - - uid: 5452 - components: - - pos: 17.5,7.5 - parent: 1 - type: Transform - - links: - - 5449 - type: DeviceLinkSink - - uid: 5683 - components: - - pos: 18.5,-12.5 - parent: 1 - type: Transform - - links: - - 5671 - type: DeviceLinkSink - - uid: 5684 - components: - - pos: 19.5,-12.5 - parent: 1 - type: Transform - - links: - - 5671 - type: DeviceLinkSink - - uid: 5685 - components: - - pos: 20.5,-12.5 - parent: 1 - type: Transform - - links: - - 5671 - type: DeviceLinkSink - - uid: 5686 - components: - - pos: 16.5,-12.5 - parent: 1 - type: Transform - - links: - - 5671 - type: DeviceLinkSink - - uid: 5687 - components: - - pos: 21.5,-15.5 - parent: 1 - type: Transform - - links: - - 5671 - type: DeviceLinkSink - - uid: 7438 - components: - - pos: 5.5,-18.5 - parent: 1 - type: Transform - - links: - - 7439 - type: DeviceLinkSink - - uid: 7485 - components: - - pos: 10.5,15.5 - parent: 1 - type: Transform - - links: - - 7484 - type: DeviceLinkSink - - uid: 11721 - components: - - pos: -1.5,7.5 - parent: 1 - type: Transform - - links: - - 11713 - type: DeviceLinkSink - - uid: 11722 - components: - - pos: -0.5,7.5 - parent: 1 - type: Transform - - links: - - 11713 - type: DeviceLinkSink - - uid: 11723 - components: - - pos: 0.5,7.5 - parent: 1 - type: Transform - - links: - - 11713 - type: DeviceLinkSink - - uid: 11724 - components: - - pos: 1.5,7.5 - parent: 1 - type: Transform - - links: - - 11713 - type: DeviceLinkSink - - uid: 11725 - components: - - pos: 2.5,7.5 - parent: 1 - type: Transform - - links: - - 11713 - type: DeviceLinkSink - - uid: 11726 - components: - - pos: 3.5,7.5 - parent: 1 - type: Transform - - links: - - 11713 - type: DeviceLinkSink - - uid: 11727 - components: - - pos: 4.5,7.5 - parent: 1 - type: Transform - - links: - - 11713 - type: DeviceLinkSink - - uid: 11730 - components: - - pos: -3.5,6.5 - parent: 1 - type: Transform - - links: - - 11713 - type: DeviceLinkSink - - uid: 11731 - components: - - pos: -3.5,5.5 - parent: 1 - type: Transform - - links: - - 11713 - type: DeviceLinkSink - - uid: 11732 - components: - - pos: 6.5,6.5 - parent: 1 - type: Transform - - links: - - 11713 - type: DeviceLinkSink - - uid: 11733 - components: - - pos: 6.5,5.5 - parent: 1 - type: Transform - - links: - - 11713 - type: DeviceLinkSink - - uid: 12444 - components: - - pos: 10.5,12.5 - parent: 1 - type: Transform - - links: - - 7484 - type: DeviceLinkSink - - uid: 12445 - components: - - pos: 10.5,10.5 - parent: 1 - type: Transform - - links: - - 7484 - type: DeviceLinkSink - - uid: 12446 - components: - - pos: 10.5,9.5 - parent: 1 - type: Transform - - links: - - 7484 - type: DeviceLinkSink - - uid: 12447 - components: - - pos: 10.5,8.5 - parent: 1 - type: Transform - - links: - - 7484 - type: DeviceLinkSink - - uid: 12448 - components: - - pos: 13.5,12.5 - parent: 1 - type: Transform - - links: - - 7484 - type: DeviceLinkSink - - uid: 12449 - components: - - pos: 13.5,15.5 - parent: 1 - type: Transform - - links: - - 7484 - type: DeviceLinkSink -- proto: ShuttersWindowOpen - entities: - - uid: 5071 - components: - - pos: 0.5,18.5 - parent: 1 - type: Transform - - links: - - 5072 - type: DeviceLinkSink - - uid: 11728 - components: - - pos: -2.5,7.5 - parent: 1 - type: Transform - - links: - - 11713 - type: DeviceLinkSink - - uid: 11729 - components: - - pos: 5.5,7.5 - parent: 1 - type: Transform - - links: - - 11713 - type: DeviceLinkSink - - uid: 12450 - components: - - pos: 13.5,14.5 - parent: 1 - type: Transform - - links: - - 7484 - type: DeviceLinkSink - - uid: 12451 - components: - - pos: 13.5,13.5 - parent: 1 - type: Transform - - links: - - 7484 - type: DeviceLinkSink -- proto: ShuttleConsoleCircuitboard - entities: - - uid: 9523 - components: - - pos: -7.5807076,-33.60298 - parent: 1 - type: Transform -- proto: SignAi - entities: - - uid: 3006 - components: - - pos: -12.5,31.5 - parent: 1 - type: Transform - - uid: 3617 - components: - - pos: -8.5,43.5 - parent: 1 - type: Transform - - uid: 4010 - components: - - pos: -7.5,47.5 - parent: 1 - type: Transform - - uid: 4011 - components: - - pos: -5.5,47.5 - parent: 1 - type: Transform -- proto: SignalButton - entities: - - uid: 1799 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-13.5 - parent: 1 - type: Transform - - linkedPorts: - 3430: - - Pressed: Toggle - 3432: - - Pressed: Toggle - 3433: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 1896 - components: - - rot: 3.141592653589793 rad - pos: -19.5,7.5 - parent: 1 - type: Transform - - linkedPorts: - 1937: - - Pressed: Toggle - 1936: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 1897 - components: - - rot: 3.141592653589793 rad - pos: -16.5,7.5 - parent: 1 - type: Transform - - linkedPorts: - 1939: - - Pressed: Toggle - 1938: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 1898 - components: - - rot: 3.141592653589793 rad - pos: -13.5,7.5 - parent: 1 - type: Transform - - linkedPorts: - 1941: - - Pressed: Toggle - 1940: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 1978 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,23.5 - parent: 1 - type: Transform - - linkedPorts: - 3561: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 4100 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,30.5 - parent: 1 - type: Transform - - linkedPorts: - 4064: - - Pressed: Toggle - 4065: - - Pressed: Toggle - 4066: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 5072 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,20.5 - parent: 1 - type: Transform - - linkedPorts: - 5070: - - Pressed: Toggle - 5071: - - Pressed: Toggle - 5069: - - Pressed: Toggle - 5068: - - Pressed: Toggle - 5067: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 5388 - components: - - pos: 28.5,15.5 - parent: 1 - type: Transform - - linkedPorts: - 3218: - - Pressed: Toggle - type: DeviceLinkSource - - type: ItemCooldown - - uid: 5389 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,17.5 - parent: 1 - type: Transform - - state: True - type: SignalSwitch - - linkedPorts: - 3218: - - Pressed: Toggle - type: DeviceLinkSource - - type: ItemCooldown - - uid: 5447 - components: - - rot: 3.141592653589793 rad - pos: 13.5,7.5 - parent: 1 - type: Transform - - linkedPorts: - 5450: - - Pressed: Toggle - 1824: - - Pressed: Toggle - 1847: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 5448 - components: - - rot: 3.141592653589793 rad - pos: 16.5,7.5 - parent: 1 - type: Transform - - linkedPorts: - 5451: - - Pressed: Toggle - 1796: - - Pressed: Toggle - 1797: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 5449 - components: - - rot: 3.141592653589793 rad - pos: 19.5,7.5 - parent: 1 - type: Transform - - linkedPorts: - 5452: - - Pressed: Toggle - 1798: - - Pressed: Toggle - 1866: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 5671 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-14.5 - parent: 1 - type: Transform - - linkedPorts: - 5687: - - Pressed: Toggle - 5685: - - Pressed: Toggle - 5684: - - Pressed: Toggle - 5683: - - Pressed: Toggle - 5686: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 6337 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-15.5 - parent: 1 - type: Transform - - linkedPorts: - 3435: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 6338 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-11.5 - parent: 1 - type: Transform - - linkedPorts: - 3434: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 7436 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-28.5 - parent: 1 - type: Transform - - linkedPorts: - 7432: - - Pressed: Toggle - 7433: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 7437 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-28.5 - parent: 1 - type: Transform - - linkedPorts: - 7435: - - Pressed: Toggle - 7434: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 7439 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-16.5 - parent: 1 - type: Transform - - linkedPorts: - 7438: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 7484 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,13.5 - parent: 1 - type: Transform - - linkedPorts: - 12448: - - Pressed: Toggle - 12451: - - Pressed: Toggle - 12450: - - Pressed: Toggle - 12449: - - Pressed: Toggle - 7485: - - Pressed: Toggle - 12444: - - Pressed: Toggle - 12445: - - Pressed: Toggle - 12446: - - Pressed: Toggle - 12447: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 7670 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-2.5 - parent: 1 - type: Transform - - linkedPorts: - 5459: - - Pressed: Toggle - 5460: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 9264 - components: - - pos: -25.5,-4.5 - parent: 1 - type: Transform - - linkedPorts: - 3436: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 11713 - components: - - rot: 3.141592653589793 rad - pos: -2.5,4.5 - parent: 1 - type: Transform - - linkedPorts: - 11733: - - Pressed: Toggle - 11732: - - Pressed: Toggle - 11729: - - Pressed: Toggle - 11727: - - Pressed: Toggle - 11726: - - Pressed: Toggle - 11725: - - Pressed: Toggle - 11724: - - Pressed: Toggle - 11723: - - Pressed: Toggle - 11722: - - Pressed: Toggle - 11721: - - Pressed: Toggle - 11728: - - Pressed: Toggle - 11730: - - Pressed: Toggle - 11731: - - Pressed: Toggle - type: DeviceLinkSource -- proto: SignAnomaly - entities: - - uid: 6077 - components: - - pos: -14.5,-7.5 - parent: 1 - type: Transform -- proto: SignAnomaly2 - entities: - - uid: 6076 - components: - - pos: -19.5,-4.5 - parent: 1 - type: Transform -- proto: SignArmory - entities: - - uid: 5305 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,12.5 - parent: 1 - type: Transform - - uid: 5307 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,11.5 - parent: 1 - type: Transform -- proto: SignBridge - entities: - - uid: 4067 - components: - - pos: 2.5,17.5 - parent: 1 - type: Transform -- proto: SignCargoDock - entities: - - uid: 1721 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-28.5 - parent: 1 - type: Transform - - uid: 1722 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-31.5 - parent: 1 - type: Transform -- proto: SignChem - entities: - - uid: 5700 - components: - - pos: -14.5,12.5 - parent: 1 - type: Transform - - uid: 5701 - components: - - pos: -7.5,12.5 - parent: 1 - type: Transform -- proto: SignCloning - entities: - - uid: 1924 - components: - - pos: -22.5,8.5 - parent: 1 - type: Transform -- proto: SignConference - entities: - - uid: 4068 - components: - - pos: -6.5,30.5 - parent: 1 - type: Transform -- proto: SignDirectionalBar - entities: - - uid: 12028 - components: - - rot: 3.141592653589793 rad - pos: -0.48991406,-12.586099 - parent: 1 - type: Transform - - uid: 12030 - components: - - rot: -1.5707963267948966 rad - pos: 43.500732,4.885596 - parent: 1 - type: Transform - - uid: 12041 - components: - - rot: 3.141592653589793 rad - pos: -0.46916193,-19.753078 - parent: 1 - type: Transform -- proto: SignDirectionalBridge - entities: - - uid: 12014 - components: - - rot: 3.141592653589793 rad - pos: 10.548269,5.4918203 - parent: 1 - type: Transform - - uid: 12020 - components: - - rot: 3.141592653589793 rad - pos: -7.4735146,0.6779753 - parent: 1 - type: Transform - - uid: 12027 - components: - - rot: 3.141592653589793 rad - pos: -0.48991406,-12.367349 - parent: 1 - type: Transform - - uid: 12031 - components: - - rot: -1.5707963267948966 rad - pos: 43.500732,4.682471 - parent: 1 - type: Transform - - uid: 12042 - components: - - rot: 3.141592653589793 rad - pos: -0.46916193,-19.546629 - parent: 1 - type: Transform -- proto: SignDirectionalChapel - entities: - - uid: 12035 - components: - - rot: -1.5707963267948966 rad - pos: -13.484905,0.5560063 - parent: 1 - type: Transform -- proto: SignDirectionalDorms - entities: - - uid: 12009 - components: - - pos: 10.501394,0.38287616 - parent: 1 - type: Transform - - uid: 12025 - components: - - pos: -0.4927984,-10.414679 - parent: 1 - type: Transform -- proto: SignDirectionalEng - entities: - - uid: 12007 - components: - - pos: 10.501394,0.78912616 - parent: 1 - type: Transform - - uid: 12022 - components: - - pos: -7.4735146,0.2561003 - parent: 1 - type: Transform - - uid: 12033 - components: - - rot: -1.5707963267948966 rad - pos: 43.500732,4.260596 - parent: 1 - type: Transform - - uid: 12037 - components: - - rot: 3.141592653589793 rad - pos: -0.46722627,-23.206203 - parent: 1 - type: Transform - - uid: 12044 - components: - - rot: 1.5707963267948966 rad - pos: 5.4593363,-10.397989 - parent: 1 - type: Transform -- proto: SignDirectionalEvac - entities: - - uid: 12015 - components: - - rot: 3.141592653589793 rad - pos: 10.548269,5.6793203 - parent: 1 - type: Transform - - uid: 12016 - components: - - pos: -6.456008,15.288413 - parent: 1 - type: Transform - - uid: 12019 - components: - - rot: -1.5707963267948966 rad - pos: -7.4735146,0.8654753 - parent: 1 - type: Transform -- proto: SignDirectionalGravity - entities: - - uid: 12034 - components: - - rot: -1.5707963267948966 rad - pos: -13.488332,0.7605958 - parent: 1 - type: Transform -- proto: SignDirectionalJanitor - entities: - - uid: 12010 - components: - - pos: 13.517019,0.82037616 - parent: 1 - type: Transform -- proto: SignDirectionalLibrary - entities: - - uid: 12036 - components: - - rot: -1.5707963267948966 rad - pos: -13.484905,0.3372563 - parent: 1 - type: Transform -- proto: SignDirectionalMed - entities: - - uid: 12013 - components: - - rot: 3.141592653589793 rad - pos: 10.548269,5.2886953 - parent: 1 - type: Transform - - uid: 12026 - components: - - rot: 3.141592653589793 rad - pos: -0.48820066,-10.617804 - parent: 1 - type: Transform - - uid: 12040 - components: - - rot: 3.141592653589793 rad - pos: -0.46722627,-23.831203 - parent: 1 - type: Transform -- proto: SignDirectionalSci - entities: - - uid: 12011 - components: - - pos: 10.501394,0.19537616 - parent: 1 - type: Transform - - uid: 12017 - components: - - pos: -6.456008,15.507163 - parent: 1 - type: Transform - - uid: 12038 - components: - - rot: 3.141592653589793 rad - pos: -0.46722627,-23.409328 - parent: 1 - type: Transform -- proto: SignDirectionalSec - entities: - - uid: 12012 - components: - - rot: 3.141592653589793 rad - pos: 10.548269,5.1011953 - parent: 1 - type: Transform - - uid: 12021 - components: - - rot: 3.141592653589793 rad - pos: -7.4735146,0.4592253 - parent: 1 - type: Transform - - uid: 12032 - components: - - rot: -1.5707963267948966 rad - pos: 43.500732,4.463721 - parent: 1 - type: Transform - - uid: 12039 - components: - - rot: 3.141592653589793 rad - pos: -0.46722627,-23.628078 - parent: 1 - type: Transform - - uid: 12043 - components: - - rot: 3.141592653589793 rad - pos: 5.4593363,-10.210489 - parent: 1 - type: Transform -- proto: SignDirectionalSolar - entities: - - uid: 11982 - components: - - pos: -29.486988,-21.20969 - parent: 1 - type: Transform - - uid: 12024 - components: - - rot: -1.5707963267948966 rad - pos: -0.4927984,-12.149054 - parent: 1 - type: Transform - - uid: 12113 - components: - - rot: 3.141592653589793 rad - pos: -24.472755,28.702217 - parent: 1 - type: Transform - - uid: 12114 - components: - - rot: 3.141592653589793 rad - pos: -29.444752,5.7120094 - parent: 1 - type: Transform - - uid: 12115 - components: - - rot: 1.5707963267948966 rad - pos: -38.46161,16.234806 - parent: 1 - type: Transform - - uid: 12116 - components: - - rot: 3.141592653589793 rad - pos: -27.46682,17.811657 - parent: 1 - type: Transform - - uid: 12117 - components: - - pos: -31.445858,-0.22823012 - parent: 1 - type: Transform - - uid: 12118 - components: - - rot: -1.5707963267948966 rad - pos: -35.514,-11.739195 - parent: 1 - type: Transform - - uid: 12119 - components: - - rot: 1.5707963267948966 rad - pos: -37.451214,-21.220106 - parent: 1 - type: Transform - - uid: 12120 - components: - - rot: -1.5707963267948966 rad - pos: -10.486212,-20.751356 - parent: 1 - type: Transform - - uid: 12121 - components: - - rot: 3.141592653589793 rad - pos: -9.470587,-23.708044 - parent: 1 - type: Transform -- proto: SignDirectionalSupply - entities: - - uid: 9288 - components: - - pos: -0.4927984,-10.195929 - parent: 1 - type: Transform - - uid: 12008 - components: - - pos: 10.501394,0.58600116 - parent: 1 - type: Transform - - uid: 12018 - components: - - pos: -6.458366,15.721934 - parent: 1 - type: Transform -- proto: SignDirectionalWash - entities: - - uid: 12029 - components: - - rot: -1.5707963267948966 rad - pos: -14.500072,-24.746931 - parent: 1 - type: Transform -- proto: SignDisposalSpace - entities: - - uid: 2976 - components: - - pos: -26.5,-26.5 - parent: 1 - type: Transform -- proto: SignDrones - entities: - - uid: 9653 - components: - - pos: 10.5,27.5 - parent: 1 - type: Transform -- proto: SignEscapePods - entities: - - uid: 25 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,21.5 - parent: 1 - type: Transform - - uid: 34 - components: - - pos: 0.5,-34.5 - parent: 1 - type: Transform - - uid: 51 - components: - - pos: -39.5,-13.5 - parent: 1 - type: Transform - - uid: 6395 - components: - - pos: 9.5,31.5 - parent: 1 - type: Transform -- proto: SignEVA - entities: - - uid: 4908 - components: - - rot: 3.141592653589793 rad - pos: 43.5,20.5 - parent: 1 - type: Transform -- proto: SignGravity - entities: - - uid: 7646 - components: - - pos: -41.5,17.5 - parent: 1 - type: Transform -- proto: SignHead - entities: - - uid: 4069 - components: - - pos: -3.5,17.5 - parent: 1 - type: Transform -- proto: SignInterrogation - entities: - - uid: 9307 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,20.5 - parent: 1 - type: Transform -- proto: SignMedical - entities: - - uid: 5301 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,7.5 - parent: 1 - type: Transform - - uid: 9257 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,4.5 - parent: 1 - type: Transform -- proto: SignMorgue - entities: - - uid: 1923 - components: - - pos: -22.5,12.5 - parent: 1 - type: Transform -- proto: SignPrison - entities: - - uid: 5341 - components: - - pos: 31.5,19.5 - parent: 1 - type: Transform - - uid: 5487 - components: - - pos: 31.5,24.5 - parent: 1 - type: Transform -- proto: SignRadiationMed - entities: - - uid: 12342 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,63.5 - parent: 1 - type: Transform - - uid: 12343 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,65.5 - parent: 1 - type: Transform - - uid: 12344 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,67.5 - parent: 1 - type: Transform - - uid: 12345 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,65.5 - parent: 1 - type: Transform -- proto: SignRobo - entities: - - uid: 6078 - components: - - pos: -13.5,-7.5 - parent: 1 - type: Transform - - uid: 6079 - components: - - pos: -5.5,-10.5 - parent: 1 - type: Transform -- proto: SignScience - entities: - - uid: 6080 - components: - - pos: -7.5,-4.5 - parent: 1 - type: Transform -- proto: SignSecureMed - entities: - - uid: 5304 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,10.5 - parent: 1 - type: Transform -- proto: SignSecureMedRed - entities: - - uid: 12346 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,64.5 - parent: 1 - type: Transform - - uid: 12347 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,66.5 - parent: 1 - type: Transform - - uid: 12348 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,67.5 - parent: 1 - type: Transform - - uid: 12349 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,67.5 - parent: 1 - type: Transform - - uid: 12350 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,66.5 - parent: 1 - type: Transform - - uid: 12351 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,64.5 - parent: 1 - type: Transform - - uid: 12352 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,63.5 - parent: 1 - type: Transform - - uid: 12353 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,63.5 - parent: 1 - type: Transform -- proto: SignSecurity - entities: - - uid: 5493 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,12.5 - parent: 1 - type: Transform -- proto: SignSurgery - entities: - - uid: 4884 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,20.5 - parent: 1 - type: Transform -- proto: SignTelecomms - entities: - - uid: 3969 - components: - - pos: -1.5,53.5 - parent: 1 - type: Transform - - uid: 3971 - components: - - pos: -1.5,51.5 - parent: 1 - type: Transform -- proto: SignVirology - entities: - - uid: 12097 - components: - - pos: -17.5,17.5 - parent: 1 - type: Transform -- proto: Sink - entities: - - uid: 6400 - components: - - pos: -18.5,-24.5 - parent: 1 - type: Transform - - uid: 6401 - components: - - pos: -17.5,-24.5 - parent: 1 - type: Transform - - uid: 6402 - components: - - pos: -16.5,-24.5 - parent: 1 - type: Transform - - uid: 12482 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,14.5 - parent: 1 - type: Transform -- proto: SinkWide - entities: - - uid: 5945 - components: - - rot: 3.141592653589793 rad - pos: -2.5,5.5 - parent: 1 - type: Transform - - uid: 5946 - components: - - rot: 3.141592653589793 rad - pos: 2.5,0.5 - parent: 1 - type: Transform - - uid: 8835 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-13.5 - parent: 1 - type: Transform - - uid: 9110 - components: - - pos: 18.5,-0.5 - parent: 1 - type: Transform -- proto: SMESBasic - entities: - - uid: 1097 - components: - - pos: 23.5,-14.5 - parent: 1 - type: Transform - - uid: 1118 - components: - - pos: 24.5,-14.5 - parent: 1 - type: Transform - - uid: 1119 - components: - - pos: 25.5,-14.5 - parent: 1 - type: Transform - - uid: 2445 - components: - - pos: -32.5,-23.5 - parent: 1 - type: Transform - - uid: 2553 - components: - - pos: -27.5,29.5 - parent: 1 - type: Transform - - uid: 2856 - components: - - pos: -11.5,-52.5 - parent: 1 - type: Transform - - uid: 3671 - components: - - pos: -0.5,45.5 - parent: 1 - type: Transform - - uid: 7557 - components: - - pos: -41.5,23.5 - parent: 1 - type: Transform -- proto: SMESMachineCircuitboard - entities: - - uid: 9512 - components: - - pos: -1.3981457,-34.369713 - parent: 1 - type: Transform -- proto: SoapOmega - entities: - - uid: 12356 - components: - - pos: -43.500492,24.479343 - parent: 1 - type: Transform -- proto: soda_dispenser - entities: - - uid: 5954 - components: - - rot: 3.141592653589793 rad - pos: -0.5,5.5 - parent: 1 - type: Transform - - uid: 8265 - components: - - pos: -13.5,-48.5 - parent: 1 - type: Transform - - uid: 8296 - components: - - pos: -30.5,-12.5 - parent: 1 - type: Transform -- proto: SolarPanel - entities: - - uid: 2472 - components: - - pos: -34.5,-28.5 - parent: 1 - type: Transform - - uid: 2473 - components: - - pos: -33.5,-28.5 - parent: 1 - type: Transform - - uid: 2474 - components: - - pos: -32.5,-28.5 - parent: 1 - type: Transform - - uid: 2475 - components: - - pos: -34.5,-30.5 - parent: 1 - type: Transform - - uid: 2476 - components: - - pos: -33.5,-30.5 - parent: 1 - type: Transform - - uid: 2477 - components: - - pos: -32.5,-30.5 - parent: 1 - type: Transform - - uid: 2478 - components: - - pos: -30.5,-28.5 - parent: 1 - type: Transform - - uid: 2479 - components: - - pos: -29.5,-28.5 - parent: 1 - type: Transform - - uid: 2480 - components: - - pos: -28.5,-28.5 - parent: 1 - type: Transform - - uid: 2481 - components: - - pos: -30.5,-30.5 - parent: 1 - type: Transform - - uid: 2482 - components: - - pos: -29.5,-30.5 - parent: 1 - type: Transform - - uid: 2483 - components: - - pos: -28.5,-30.5 - parent: 1 - type: Transform - - uid: 2484 - components: - - pos: -28.5,-32.5 - parent: 1 - type: Transform - - uid: 2485 - components: - - pos: -29.5,-32.5 - parent: 1 - type: Transform - - uid: 2486 - components: - - pos: -30.5,-32.5 - parent: 1 - type: Transform - - uid: 2487 - components: - - pos: -32.5,-32.5 - parent: 1 - type: Transform - - uid: 2488 - components: - - pos: -33.5,-32.5 - parent: 1 - type: Transform - - uid: 2489 - components: - - pos: -34.5,-32.5 - parent: 1 - type: Transform - - uid: 2490 - components: - - pos: -34.5,-34.5 - parent: 1 - type: Transform - - uid: 2491 - components: - - pos: -33.5,-34.5 - parent: 1 - type: Transform - - uid: 2492 - components: - - pos: -32.5,-34.5 - parent: 1 - type: Transform - - uid: 2493 - components: - - pos: -30.5,-34.5 - parent: 1 - type: Transform - - uid: 2494 - components: - - pos: -29.5,-34.5 - parent: 1 - type: Transform - - uid: 2495 - components: - - pos: -28.5,-34.5 - parent: 1 - type: Transform - - uid: 2558 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,36.5 - parent: 1 - type: Transform - - uid: 2559 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,36.5 - parent: 1 - type: Transform - - uid: 2560 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,36.5 - parent: 1 - type: Transform - - uid: 2561 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,36.5 - parent: 1 - type: Transform - - uid: 2562 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,40.5 - parent: 1 - type: Transform - - uid: 2563 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,40.5 - parent: 1 - type: Transform - - uid: 2564 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,40.5 - parent: 1 - type: Transform - - uid: 2565 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,40.5 - parent: 1 - type: Transform - - uid: 2566 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,38.5 - parent: 1 - type: Transform - - uid: 2567 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,38.5 - parent: 1 - type: Transform - - uid: 2568 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,38.5 - parent: 1 - type: Transform - - uid: 2569 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,38.5 - parent: 1 - type: Transform - - uid: 2570 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,34.5 - parent: 1 - type: Transform - - uid: 2571 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,34.5 - parent: 1 - type: Transform - - uid: 2572 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,34.5 - parent: 1 - type: Transform - - uid: 2573 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,34.5 - parent: 1 - type: Transform - - uid: 2574 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,34.5 - parent: 1 - type: Transform - - uid: 2575 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,34.5 - parent: 1 - type: Transform - - uid: 2576 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,34.5 - parent: 1 - type: Transform - - uid: 2577 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,34.5 - parent: 1 - type: Transform - - uid: 2578 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,36.5 - parent: 1 - type: Transform - - uid: 2579 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,36.5 - parent: 1 - type: Transform - - uid: 2580 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,36.5 - parent: 1 - type: Transform - - uid: 2581 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,36.5 - parent: 1 - type: Transform - - uid: 2582 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,40.5 - parent: 1 - type: Transform - - uid: 2583 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,40.5 - parent: 1 - type: Transform - - uid: 2584 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,40.5 - parent: 1 - type: Transform - - uid: 2585 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,40.5 - parent: 1 - type: Transform - - uid: 2586 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,38.5 - parent: 1 - type: Transform - - uid: 2587 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,38.5 - parent: 1 - type: Transform - - uid: 2588 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,38.5 - parent: 1 - type: Transform - - uid: 2589 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,38.5 - parent: 1 - type: Transform - - uid: 2816 - components: - - pos: -16.5,-57.5 - parent: 1 - type: Transform - - uid: 2817 - components: - - pos: -15.5,-57.5 - parent: 1 - type: Transform - - uid: 2818 - components: - - pos: -13.5,-57.5 - parent: 1 - type: Transform - - uid: 2819 - components: - - pos: -12.5,-57.5 - parent: 1 - type: Transform - - uid: 2820 - components: - - pos: -12.5,-59.5 - parent: 1 - type: Transform - - uid: 2821 - components: - - pos: -15.5,-59.5 - parent: 1 - type: Transform - - uid: 2823 - components: - - pos: -13.5,-59.5 - parent: 1 - type: Transform - - uid: 2838 - components: - - pos: -16.5,-59.5 - parent: 1 - type: Transform -- proto: SolarTracker - entities: - - uid: 2521 - components: - - pos: -31.5,-36.5 - parent: 1 - type: Transform - - uid: 2653 - components: - - pos: -27.5,42.5 - parent: 1 - type: Transform - - uid: 2815 - components: - - pos: -14.5,-60.5 - parent: 1 - type: Transform -- proto: SpaceCash1000 - entities: - - uid: 4132 - components: - - pos: -1.4122305,23.498293 - parent: 1 - type: Transform - - count: 2000 - type: Stack -- proto: SpaceVillainArcadeFilled - entities: - - uid: 2869 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-50.5 - parent: 1 - type: Transform -- proto: SpawnMobAlexander - entities: - - uid: 11924 - components: - - pos: 1.5,1.5 - parent: 1 - type: Transform -- proto: SpawnMobBandito - entities: - - uid: 11925 - components: - - pos: -15.5,-3.5 - parent: 1 - type: Transform -- proto: SpawnMobCatException - entities: - - uid: 5924 - components: - - pos: -19.5,15.5 - parent: 1 - type: Transform -- proto: SpawnMobCatRuntime - entities: - - uid: 11923 - components: - - pos: 20.5,-5.5 - parent: 1 - type: Transform -- proto: SpawnMobCorgi - entities: - - uid: 4967 - components: - - pos: -1.5,19.5 - parent: 1 - type: Transform -- proto: SpawnMobDrone - entities: - - uid: 9658 - components: - - pos: 11.5,27.5 - parent: 1 - type: Transform - - uid: 9659 - components: - - pos: 12.5,27.5 - parent: 1 - type: Transform - - uid: 9661 - components: - - pos: 13.5,27.5 - parent: 1 - type: Transform -- proto: SpawnMobFoxRenault - entities: - - uid: 4084 - components: - - pos: 5.5,29.5 - parent: 1 - type: Transform -- proto: SpawnMobMcGriff - entities: - - uid: 5925 - components: - - pos: 15.5,14.5 - parent: 1 - type: Transform -- proto: SpawnMobMonkeyPunpun - entities: - - uid: 5416 - components: - - pos: 0.5,6.5 - parent: 1 - type: Transform -- proto: SpawnMobMouse - entities: - - uid: 11913 - components: - - pos: 8.5,-12.5 - parent: 1 - type: Transform - - uid: 11914 - components: - - pos: 29.5,-14.5 - parent: 1 - type: Transform - - uid: 11915 - components: - - pos: 30.5,-1.5 - parent: 1 - type: Transform - - uid: 11916 - components: - - pos: 41.5,10.5 - parent: 1 - type: Transform - - uid: 11917 - components: - - pos: 30.5,34.5 - parent: 1 - type: Transform - - uid: 11918 - components: - - pos: 8.5,24.5 - parent: 1 - type: Transform - - uid: 11919 - components: - - pos: -9.5,23.5 - parent: 1 - type: Transform - - uid: 11920 - components: - - pos: -32.5,19.5 - parent: 1 - type: Transform - - uid: 11921 - components: - - pos: -34.5,-6.5 - parent: 1 - type: Transform - - uid: 11922 - components: - - pos: -24.5,-17.5 - parent: 1 - type: Transform -- proto: SpawnMobPossumMorty - entities: - - uid: 11926 - components: - - pos: -9.5,-25.5 - parent: 1 - type: Transform -- proto: SpawnMobRaccoonMorticia - entities: - - uid: 11927 - components: - - pos: 9.5,-19.5 - parent: 1 - type: Transform - - uid: 11928 - components: - - pos: -38.5,-3.5 - parent: 1 - type: Transform -- proto: SpawnMobShiva - entities: - - uid: 8256 - components: - - pos: 25.5,13.5 - parent: 1 - type: Transform -- proto: SpawnMobWalter - entities: - - uid: 5922 - components: - - pos: -12.5,13.5 - parent: 1 - type: Transform -- proto: SpawnPointAssistant - entities: - - uid: 7496 - components: - - pos: -3.5,-21.5 - parent: 1 - type: Transform - - uid: 7497 - components: - - pos: -3.5,-25.5 - parent: 1 - type: Transform - - uid: 7498 - components: - - pos: -7.5,-25.5 - parent: 1 - type: Transform - - uid: 7499 - components: - - pos: -11.5,-25.5 - parent: 1 - type: Transform -- proto: SpawnPointAtmos - entities: - - uid: 7130 - components: - - pos: 32.5,-17.5 - parent: 1 - type: Transform - - uid: 7131 - components: - - pos: 33.5,-17.5 - parent: 1 - type: Transform -- proto: SpawnPointBartender - entities: - - uid: 6037 - components: - - pos: 2.5,6.5 - parent: 1 - type: Transform -- proto: SpawnPointBorg - entities: - - uid: 5913 - components: - - pos: -7.5,-12.5 - parent: 1 - type: Transform -- proto: SpawnPointBotanist - entities: - - uid: 6038 - components: - - pos: -0.5,-3.5 - parent: 1 - type: Transform - - uid: 6039 - components: - - pos: 3.5,-3.5 - parent: 1 - type: Transform -- proto: SpawnPointCaptain - entities: - - uid: 6046 - components: - - pos: 4.5,30.5 - parent: 1 - type: Transform -- proto: SpawnPointCargoTechnician - entities: - - uid: 7475 - components: - - pos: 9.5,-20.5 - parent: 1 - type: Transform - - uid: 7476 - components: - - pos: 9.5,-21.5 - parent: 1 - type: Transform -- proto: SpawnPointChaplain - entities: - - uid: 7487 - components: - - pos: -32.5,14.5 - parent: 1 - type: Transform -- proto: SpawnPointChef - entities: - - uid: 6036 - components: - - pos: 3.5,1.5 - parent: 1 - type: Transform -- proto: SpawnPointChemist - entities: - - uid: 6031 - components: - - pos: -11.5,14.5 - parent: 1 - type: Transform -- proto: SpawnPointChiefEngineer - entities: - - uid: 7279 - components: - - pos: 19.5,-14.5 - parent: 1 - type: Transform -- proto: SpawnPointChiefMedicalOfficer - entities: - - uid: 1870 - components: - - pos: -19.5,13.5 - parent: 1 - type: Transform -- proto: SpawnPointClown - entities: - - uid: 7488 - components: - - pos: -10.5,-29.5 - parent: 1 - type: Transform -- proto: SpawnPointDetective - entities: - - uid: 12411 - components: - - pos: 26.5,5.5 - parent: 1 - type: Transform -- proto: SpawnPointHeadOfPersonnel - entities: - - uid: 6045 - components: - - pos: -5.5,20.5 - parent: 1 - type: Transform -- proto: SpawnPointHeadOfSecurity - entities: - - uid: 6044 - components: - - pos: 26.5,13.5 - parent: 1 - type: Transform -- proto: SpawnPointJanitor - entities: - - uid: 7491 - components: - - pos: 12.5,-1.5 - parent: 1 - type: Transform -- proto: SpawnPointLatejoin - entities: - - uid: 7480 - components: - - pos: 45.5,12.5 - parent: 1 - type: Transform - - uid: 7481 - components: - - pos: 45.5,5.5 - parent: 1 - type: Transform - - uid: 7482 - components: - - pos: 45.5,8.5 - parent: 1 - type: Transform - - uid: 7483 - components: - - pos: 45.5,9.5 - parent: 1 - type: Transform -- proto: SpawnPointLawyer - entities: - - uid: 12442 - components: - - pos: 42.5,32.5 - parent: 1 - type: Transform - - uid: 12443 - components: - - pos: 43.5,32.5 - parent: 1 - type: Transform -- proto: SpawnPointLibrarian - entities: - - uid: 7486 - components: - - pos: -37.5,-9.5 - parent: 1 - type: Transform -- proto: SpawnPointMedicalDoctor - entities: - - uid: 6029 - components: - - pos: -22.5,10.5 - parent: 1 - type: Transform -- proto: SpawnPointMedicalIntern - entities: - - uid: 6030 - components: - - pos: -21.5,10.5 - parent: 1 - type: Transform -- proto: SpawnPointMime - entities: - - uid: 7489 - components: - - pos: -12.5,-29.5 - parent: 1 - type: Transform -- proto: SpawnPointMusician - entities: - - uid: 7490 - components: - - pos: -12.5,-30.5 - parent: 1 - type: Transform -- proto: SpawnPointObserver - entities: - - uid: 7492 - components: - - pos: 1.5,15.5 - parent: 1 - type: Transform -- proto: SpawnPointQuartermaster - entities: - - uid: 7477 - components: - - pos: 5.5,-14.5 - parent: 1 - type: Transform -- proto: SpawnPointResearchAssistant - entities: - - uid: 6035 - components: - - pos: -15.5,-5.5 - parent: 1 - type: Transform -- proto: SpawnPointResearchDirector - entities: - - uid: 6034 - components: - - pos: -21.5,-0.5 - parent: 1 - type: Transform -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 7478 - components: - - pos: 20.5,-22.5 - parent: 1 - type: Transform - - uid: 7479 - components: - - pos: 19.5,-22.5 - parent: 1 - type: Transform -- proto: SpawnPointScientist - entities: - - uid: 6032 - components: - - pos: -17.5,-5.5 - parent: 1 - type: Transform - - uid: 6033 - components: - - pos: -16.5,-5.5 - parent: 1 - type: Transform -- proto: SpawnPointSecurityCadet - entities: - - uid: 6042 - components: - - pos: 17.5,9.5 - parent: 1 - type: Transform -- proto: SpawnPointSecurityOfficer - entities: - - uid: 6040 - components: - - pos: 13.5,9.5 - parent: 1 - type: Transform -- proto: SpawnPointSeniorEngineer - entities: - - uid: 5915 - components: - - pos: 19.5,-4.5 - parent: 1 - type: Transform -- proto: SpawnPointSeniorOfficer - entities: - - uid: 5916 - components: - - pos: 15.5,9.5 - parent: 1 - type: Transform -- proto: SpawnPointSeniorPhysician - entities: - - uid: 5923 - components: - - pos: -20.5,10.5 - parent: 1 - type: Transform -- proto: SpawnPointSeniorResearcher - entities: - - uid: 770 - components: - - pos: -16.5,-1.5 - parent: 1 - type: Transform -- proto: SpawnPointServiceWorker - entities: - - uid: 7493 - components: - - pos: 1.5,6.5 - parent: 1 - type: Transform - - uid: 7494 - components: - - pos: 2.5,1.5 - parent: 1 - type: Transform - - uid: 7495 - components: - - pos: 1.5,-3.5 - parent: 1 - type: Transform -- proto: SpawnPointStationEngineer - entities: - - uid: 7278 - components: - - pos: 22.5,-4.5 - parent: 1 - type: Transform - - uid: 7280 - components: - - pos: 22.5,-5.5 - parent: 1 - type: Transform -- proto: SpawnPointTechnicalAssistant - entities: - - uid: 7281 - components: - - pos: 22.5,-6.5 - parent: 1 - type: Transform -- proto: SpawnPointWarden - entities: - - uid: 6043 - components: - - pos: 28.5,17.5 - parent: 1 - type: Transform -- proto: SpawnVehicleJanicart - entities: - - uid: 7663 - components: - - pos: 14.5,-1.5 - parent: 1 - type: Transform -- proto: SpawnVehicleSecway - entities: - - uid: 5319 - components: - - pos: 18.5,10.5 - parent: 1 - type: Transform - - uid: 5320 - components: - - pos: 19.5,10.5 - parent: 1 - type: Transform -- proto: SpawnVendingMachineRestockDrink - entities: - - uid: 3058 - components: - - pos: 12.5,-0.5 - parent: 1 - type: Transform - - uid: 7673 - components: - - pos: -38.5,-16.5 - parent: 1 - type: Transform -- proto: SpawnVendingMachineRestockFood - entities: - - uid: 3836 - components: - - pos: 12.5,-0.5 - parent: 1 - type: Transform - - uid: 7672 - components: - - pos: -21.5,-26.5 - parent: 1 - type: Transform -- proto: SpawnVendingMachineRestockFoodDrink - entities: - - uid: 7671 - components: - - pos: 12.5,-0.5 - parent: 1 - type: Transform - - uid: 8833 - components: - - pos: 28.5,-15.5 - parent: 1 - type: Transform - - uid: 8909 - components: - - pos: 32.5,-4.5 - parent: 1 - type: Transform - - uid: 9149 - components: - - pos: 13.5,30.5 - parent: 1 - type: Transform - - uid: 9164 - components: - - pos: -28.5,21.5 - parent: 1 - type: Transform - - uid: 9475 - components: - - pos: 12.5,-0.5 - parent: 1 - type: Transform - - uid: 9726 - components: - - pos: 41.5,13.5 - parent: 1 - type: Transform - - uid: 12488 - components: - - pos: 24.5,32.5 - parent: 1 - type: Transform -- proto: SpeedLoaderPistol - entities: - - uid: 5358 - components: - - flags: InContainer - type: MetaData - - parent: 5356 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: Spoon - entities: - - uid: 5986 - components: - - pos: 1.7662358,10.5377035 - parent: 1 - type: Transform -- proto: SprayBottleSpaceCleaner - entities: - - uid: 5350 - components: - - pos: 23.525412,5.6263475 - parent: 1 - type: Transform -- proto: StasisBed - entities: - - uid: 1885 - components: - - pos: -21.5,5.5 - parent: 1 - type: Transform -- proto: StationMap - entities: - - uid: 12501 - components: - - pos: 6.5,-0.5 - parent: 1 - type: Transform - - uid: 12502 - components: - - pos: -0.5,-28.5 - parent: 1 - type: Transform - - uid: 12503 - components: - - pos: -12.5,-27.5 - parent: 1 - type: Transform - - uid: 12504 - components: - - pos: 3.5,-14.5 - parent: 1 - type: Transform - - uid: 12505 - components: - - pos: -3.5,-5.5 - parent: 1 - type: Transform - - uid: 12506 - components: - - pos: 27.5,4.5 - parent: 1 - type: Transform - - uid: 12507 - components: - - pos: 43.5,5.5 - parent: 1 - type: Transform - - uid: 12508 - components: - - pos: 43.5,18.5 - parent: 1 - type: Transform - - uid: 12509 - components: - - pos: -15.5,0.5 - parent: 1 - type: Transform - - uid: 12510 - components: - - pos: -29.5,0.5 - parent: 1 - type: Transform - - uid: 12511 - components: - - pos: -38.5,5.5 - parent: 1 - type: Transform -- proto: Stool - entities: - - uid: 4946 - components: - - pos: 30.5,25.5 - parent: 1 - type: Transform -- proto: StoolBar - entities: - - uid: 5013 - components: - - pos: -0.5,8.5 - parent: 1 - type: Transform - - uid: 5014 - components: - - pos: 0.5,8.5 - parent: 1 - type: Transform - - uid: 5015 - components: - - pos: 1.5,8.5 - parent: 1 - type: Transform - - uid: 5016 - components: - - pos: 2.5,8.5 - parent: 1 - type: Transform - - uid: 5017 - components: - - pos: 3.5,8.5 - parent: 1 - type: Transform - - uid: 8305 - components: - - rot: 3.141592653589793 rad - pos: -31.5,-15.5 - parent: 1 - type: Transform - - uid: 8306 - components: - - rot: 3.141592653589793 rad - pos: -30.5,-15.5 - parent: 1 - type: Transform - - uid: 8307 - components: - - rot: 3.141592653589793 rad - pos: -29.5,-15.5 - parent: 1 - type: Transform -- proto: StorageCanister - entities: - - uid: 6322 - components: - - pos: -17.5,-18.5 - parent: 1 - type: Transform - - uid: 6813 - components: - - pos: 43.5,-17.5 - parent: 1 - type: Transform - - uid: 6993 - components: - - pos: 34.5,-3.5 - parent: 1 - type: Transform - - uid: 7001 - components: - - pos: 34.5,-2.5 - parent: 1 - type: Transform - - uid: 9561 - components: - - pos: 35.5,-13.5 - parent: 1 - type: Transform - - uid: 9562 - components: - - pos: 35.5,-14.5 - parent: 1 - type: Transform - - uid: 9563 - components: - - pos: 35.5,-15.5 - parent: 1 - type: Transform -- proto: Stunbaton - entities: - - uid: 5327 - components: - - pos: 19.341703,15.5968685 - parent: 1 - type: Transform - - uid: 5328 - components: - - pos: 19.622953,15.5812435 - parent: 1 - type: Transform -- proto: SubstationBasic - entities: - - uid: 1469 - components: - - pos: 22.5,21.5 - parent: 1 - type: Transform - - uid: 1714 - components: - - pos: -7.5,-22.5 - parent: 1 - type: Transform - - uid: 1715 - components: - - pos: 24.5,-20.5 - parent: 1 - type: Transform - - uid: 1716 - components: - - pos: 14.5,-12.5 - parent: 1 - type: Transform - - uid: 1718 - components: - - pos: -7.5,-20.5 - parent: 1 - type: Transform - - uid: 1719 - components: - - pos: -14.5,31.5 - parent: 1 - type: Transform - - uid: 1749 - components: - - pos: 10.5,21.5 - parent: 1 - type: Transform - - uid: 1951 - components: - - pos: -20.5,26.5 - parent: 1 - type: Transform - - uid: 2260 - components: - - pos: -29.5,-23.5 - parent: 1 - type: Transform - - uid: 2426 - components: - - pos: 40.5,19.5 - parent: 1 - type: Transform - - uid: 2555 - components: - - pos: -24.5,29.5 - parent: 1 - type: Transform - - uid: 2855 - components: - - pos: -11.5,-51.5 - parent: 1 - type: Transform - - uid: 3672 - components: - - pos: -0.5,44.5 - parent: 1 - type: Transform - - uid: 7556 - components: - - pos: -40.5,23.5 - parent: 1 - type: Transform -- proto: SubstationMachineCircuitboard - entities: - - uid: 9510 - components: - - pos: -1.3825207,-34.682213 - parent: 1 - type: Transform - - uid: 9511 - components: - - pos: -1.5075207,-34.557213 - parent: 1 - type: Transform -- proto: SuitStorageAtmos - entities: - - uid: 1849 - components: - - pos: 34.5,-18.5 - parent: 1 - type: Transform - - uid: 4931 - components: - - pos: 35.5,-18.5 - parent: 1 - type: Transform -- proto: SuitStorageCaptain - entities: - - uid: 4934 - components: - - pos: 3.5,29.5 - parent: 1 - type: Transform -- proto: SuitStorageCE - entities: - - uid: 4933 - components: - - pos: 20.5,-13.5 - parent: 1 - type: Transform -- proto: SuitStorageCMO - entities: - - uid: 1865 - components: - - pos: -20.5,15.5 - parent: 1 - type: Transform -- proto: SuitStorageEngi - entities: - - uid: 1510 - components: - - pos: 21.5,-10.5 - parent: 1 - type: Transform - - uid: 1522 - components: - - pos: 20.5,-10.5 - parent: 1 - type: Transform - - uid: 4916 - components: - - pos: 19.5,-10.5 - parent: 1 - type: Transform -- proto: SuitStorageEVA - entities: - - uid: 762 - components: - - pos: 40.5,23.5 - parent: 1 - type: Transform - - uid: 1846 - components: - - pos: 41.5,23.5 - parent: 1 - type: Transform - - uid: 5410 - components: - - pos: 42.5,23.5 - parent: 1 - type: Transform - - uid: 5411 - components: - - pos: 39.5,23.5 - parent: 1 - type: Transform -- proto: SuitStorageEVAPrisoner - entities: - - uid: 4935 - components: - - pos: 31.5,18.5 - parent: 1 - type: Transform - - uid: 5412 - components: - - pos: 34.5,23.5 - parent: 1 - type: Transform -- proto: SuitStorageHOS - entities: - - uid: 4973 - components: - - pos: 29.5,14.5 - parent: 1 - type: Transform -- proto: SuitStorageRD - entities: - - uid: 4929 - components: - - pos: -22.5,-2.5 - parent: 1 - type: Transform -- proto: SuitStorageSalv - entities: - - uid: 5382 - components: - - pos: 22.5,-22.5 - parent: 1 - type: Transform - - uid: 5413 - components: - - pos: 22.5,-21.5 - parent: 1 - type: Transform -- proto: SuitStorageSec - entities: - - uid: 4917 - components: - - pos: 37.5,10.5 - parent: 1 - type: Transform - - uid: 4932 - components: - - pos: 23.5,13.5 - parent: 1 - type: Transform -- proto: SuitStorageWarden - entities: - - uid: 4930 - components: - - pos: 29.5,18.5 - parent: 1 - type: Transform -- proto: SurveillanceCameraCommand - entities: - - uid: 3970 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,52.5 - parent: 1 - type: Transform - - id: Telecomms - type: SurveillanceCamera - - uid: 3972 - components: - - rot: 3.141592653589793 rad - pos: -7.5,56.5 - parent: 1 - type: Transform - - id: AI Room North - type: SurveillanceCamera - - uid: 3973 - components: - - pos: -5.5,48.5 - parent: 1 - type: Transform - - id: AI Room South - type: SurveillanceCamera - - uid: 3974 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,44.5 - parent: 1 - type: Transform - - id: AI Room Entrance - type: SurveillanceCamera - - uid: 3975 - components: - - pos: -2.5,44.5 - parent: 1 - type: Transform - - id: AI Electrical Room - type: SurveillanceCamera - - uid: 5909 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,28.5 - parent: 1 - type: Transform - - id: Meeting Room - type: SurveillanceCamera - - uid: 5910 - components: - - pos: -0.5,27.5 - parent: 1 - type: Transform - - id: Bridge - type: SurveillanceCamera - - uid: 12098 - components: - - pos: -3.5,23.5 - parent: 1 - type: Transform - - id: Vault - type: SurveillanceCamera - - uid: 12099 - components: - - rot: 3.141592653589793 rad - pos: 0.5,21.5 - parent: 1 - type: Transform - - id: HoP Office - type: SurveillanceCamera - - uid: 12100 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,19.5 - parent: 1 - type: Transform - - id: Entrance - type: SurveillanceCamera -- proto: SurveillanceCameraEngineering - entities: - - uid: 12070 - components: - - rot: 3.141592653589793 rad - pos: 23.5,-3.5 - parent: 1 - type: Transform - - id: Equipment Room - type: SurveillanceCamera - - uid: 12071 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-10.5 - parent: 1 - type: Transform - - id: Reception - type: SurveillanceCamera - - uid: 12072 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-6.5 - parent: 1 - type: Transform - - id: Atmospherics North - type: SurveillanceCamera - - uid: 12073 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-15.5 - parent: 1 - type: Transform - - id: Atmospherics South - type: SurveillanceCamera - - uid: 12074 - components: - - pos: 24.5,-15.5 - parent: 1 - type: Transform - - id: SMES Room - type: SurveillanceCamera - - uid: 12077 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-31.5 - parent: 1 - type: Transform - - id: Tech Vault - type: SurveillanceCamera - - uid: 12088 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,21.5 - parent: 1 - type: Transform - - id: Gravity Generator Room - type: SurveillanceCamera -- proto: SurveillanceCameraGeneral - entities: - - uid: 12068 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,32.5 - parent: 1 - type: Transform - - id: Courtroom - type: SurveillanceCamera - - uid: 12069 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,9.5 - parent: 1 - type: Transform - - id: Arrivals - type: SurveillanceCamera - - uid: 12078 - components: - - pos: -4.5,-26.5 - parent: 1 - type: Transform - - id: Dorms - type: SurveillanceCamera - - uid: 12087 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,8.5 - parent: 1 - type: Transform - - id: Evac - type: SurveillanceCamera - - uid: 12089 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,8.5 - parent: 1 - type: Transform - - id: Chapel - type: SurveillanceCamera - - uid: 12090 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-4.5 - parent: 1 - type: Transform - - id: Library - type: SurveillanceCamera -- proto: SurveillanceCameraMedical - entities: - - uid: 12091 - components: - - pos: -25.5,5.5 - parent: 1 - type: Transform - - id: Cloning - type: SurveillanceCamera - - uid: 12092 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,14.5 - parent: 1 - type: Transform - - id: Morgue - type: SurveillanceCamera - - uid: 12093 - components: - - rot: 3.141592653589793 rad - pos: -17.5,11.5 - parent: 1 - type: Transform - - id: Ward - type: SurveillanceCamera - - uid: 12094 - components: - - rot: 3.141592653589793 rad - pos: -7.5,11.5 - parent: 1 - type: Transform - - id: Entrance - type: SurveillanceCamera - - uid: 12095 - components: - - rot: 3.141592653589793 rad - pos: -12.5,16.5 - parent: 1 - type: Transform - - id: Chemistry - type: SurveillanceCamera - - uid: 12096 - components: - - pos: -14.5,18.5 - parent: 1 - type: Transform - - id: Virology - type: SurveillanceCamera - - uid: 12111 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,22.5 - parent: 1 - type: Transform - - id: Surgery Room - type: SurveillanceCamera -- proto: SurveillanceCameraRouterCommand - entities: - - uid: 3776 - components: - - pos: 2.5,49.5 - parent: 1 - type: Transform -- proto: SurveillanceCameraRouterEngineering - entities: - - uid: 3787 - components: - - pos: 2.5,53.5 - parent: 1 - type: Transform -- proto: SurveillanceCameraRouterGeneral - entities: - - uid: 3791 - components: - - pos: 2.5,55.5 - parent: 1 - type: Transform -- proto: SurveillanceCameraRouterMedical - entities: - - uid: 3774 - components: - - pos: 0.5,49.5 - parent: 1 - type: Transform -- proto: SurveillanceCameraRouterScience - entities: - - uid: 3788 - components: - - pos: 0.5,51.5 - parent: 1 - type: Transform -- proto: SurveillanceCameraRouterSecurity - entities: - - uid: 3775 - components: - - pos: 2.5,51.5 - parent: 1 - type: Transform -- proto: SurveillanceCameraRouterService - entities: - - uid: 3786 - components: - - pos: 0.5,53.5 - parent: 1 - type: Transform -- proto: SurveillanceCameraRouterSupply - entities: - - uid: 3781 - components: - - pos: 0.5,55.5 - parent: 1 - type: Transform -- proto: SurveillanceCameraScience - entities: - - uid: 12082 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-15.5 - parent: 1 - type: Transform - - id: Xenoarchaeology - type: SurveillanceCamera - - uid: 12083 - components: - - pos: -8.5,-15.5 - parent: 1 - type: Transform - - id: Robotics - type: SurveillanceCamera - - uid: 12084 - components: - - pos: -9.5,-9.5 - parent: 1 - type: Transform - - id: Entrance - type: SurveillanceCamera - - uid: 12085 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-3.5 - parent: 1 - type: Transform - - id: Equipment Room - type: SurveillanceCamera - - uid: 12086 - components: - - pos: -27.5,-7.5 - parent: 1 - type: Transform - - id: Anomaly Lab - type: SurveillanceCamera -- proto: SurveillanceCameraSecurity - entities: - - uid: 12059 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,27.5 - parent: 1 - type: Transform - - id: Permabrig - type: SurveillanceCamera - - uid: 12060 - components: - - rot: 3.141592653589793 rad - pos: 37.5,13.5 - parent: 1 - type: Transform - - id: Armory - type: SurveillanceCamera - - uid: 12061 - components: - - pos: 31.5,8.5 - parent: 1 - type: Transform - - id: Hallway - type: SurveillanceCamera - - uid: 12062 - components: - - rot: 3.141592653589793 rad - pos: 20.5,15.5 - parent: 1 - type: Transform - - id: Equipment Room - type: SurveillanceCamera - - uid: 12063 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,14.5 - parent: 1 - type: Transform - - id: Entrance - type: SurveillanceCamera - - uid: 12064 - components: - - rot: 3.141592653589793 rad - pos: 14.5,10.5 - parent: 1 - type: Transform - - id: Brig Area - type: SurveillanceCamera -- proto: SurveillanceCameraService - entities: - - uid: 12079 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-1.5 - parent: 1 - type: Transform - - id: Botany - type: SurveillanceCamera - - uid: 12080 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,1.5 - parent: 1 - type: Transform - - id: Kitchen - type: SurveillanceCamera - - uid: 12081 - components: - - pos: 0.5,5.5 - parent: 1 - type: Transform - - id: Bar - type: SurveillanceCamera -- proto: SurveillanceCameraSupply - entities: - - uid: 12075 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-18.5 - parent: 1 - type: Transform - - id: Reception - type: SurveillanceCamera - - uid: 12076 - components: - - pos: 16.5,-27.5 - parent: 1 - type: Transform - - id: Cargo Bay - type: SurveillanceCamera -- proto: SurvivalKnife - entities: - - uid: 8272 - components: - - desc: Weapon of last resort for a certified pilot. - name: dataknife - type: MetaData - - pos: -19.460943,-48.42677 - parent: 1 - type: Transform -- proto: Table - entities: - - uid: 233 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,11.5 - parent: 1 - type: Transform - - uid: 477 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-4.5 - parent: 1 - type: Transform - - uid: 478 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-4.5 - parent: 1 - type: Transform - - uid: 479 - components: - - rot: 3.141592653589793 rad - pos: -9.5,7.5 - parent: 1 - type: Transform - - uid: 480 - components: - - rot: 3.141592653589793 rad - pos: -8.5,7.5 - parent: 1 - type: Transform - - uid: 481 - components: - - rot: 3.141592653589793 rad - pos: -9.5,12.5 - parent: 1 - type: Transform - - uid: 482 - components: - - rot: 3.141592653589793 rad - pos: -8.5,12.5 - parent: 1 - type: Transform - - uid: 483 - components: - - rot: 3.141592653589793 rad - pos: -17.5,5.5 - parent: 1 - type: Transform - - uid: 484 - components: - - rot: 3.141592653589793 rad - pos: -14.5,5.5 - parent: 1 - type: Transform - - uid: 485 - components: - - rot: 3.141592653589793 rad - pos: -20.5,5.5 - parent: 1 - type: Transform - - uid: 767 - components: - - rot: 3.141592653589793 rad - pos: 18.5,15.5 - parent: 1 - type: Transform - - uid: 768 - components: - - rot: 3.141592653589793 rad - pos: 19.5,15.5 - parent: 1 - type: Transform - - uid: 769 - components: - - rot: 3.141592653589793 rad - pos: 20.5,15.5 - parent: 1 - type: Transform - - uid: 771 - components: - - pos: 16.5,13.5 - parent: 1 - type: Transform - - uid: 772 - components: - - rot: 3.141592653589793 rad - pos: 11.5,15.5 - parent: 1 - type: Transform - - uid: 773 - components: - - rot: 3.141592653589793 rad - pos: 12.5,15.5 - parent: 1 - type: Transform - - uid: 781 - components: - - pos: 13.5,13.5 - parent: 1 - type: Transform - - uid: 782 - components: - - pos: 13.5,14.5 - parent: 1 - type: Transform - - uid: 786 - components: - - pos: 16.5,12.5 - parent: 1 - type: Transform - - uid: 1505 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-26.5 - parent: 1 - type: Transform - - uid: 1701 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-20.5 - parent: 1 - type: Transform - - uid: 1702 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-21.5 - parent: 1 - type: Transform - - uid: 1703 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-20.5 - parent: 1 - type: Transform - - uid: 1704 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-21.5 - parent: 1 - type: Transform - - uid: 1705 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-18.5 - parent: 1 - type: Transform - - uid: 1706 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-19.5 - parent: 1 - type: Transform - - uid: 1707 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-20.5 - parent: 1 - type: Transform - - uid: 1708 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-17.5 - parent: 1 - type: Transform - - uid: 1709 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-17.5 - parent: 1 - type: Transform - - uid: 1756 - components: - - pos: 4.5,-27.5 - parent: 1 - type: Transform - - uid: 1808 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,25.5 - parent: 1 - type: Transform - - uid: 1811 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,27.5 - parent: 1 - type: Transform - - uid: 1890 - components: - - rot: 3.141592653589793 rad - pos: -12.5,6.5 - parent: 1 - type: Transform - - uid: 1902 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,11.5 - parent: 1 - type: Transform - - uid: 1904 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,11.5 - parent: 1 - type: Transform - - uid: 1906 - components: - - rot: 3.141592653589793 rad - pos: -25.5,11.5 - parent: 1 - type: Transform - - uid: 1907 - components: - - rot: 3.141592653589793 rad - pos: -24.5,11.5 - parent: 1 - type: Transform - - uid: 1919 - components: - - pos: -22.5,16.5 - parent: 1 - type: Transform - - uid: 1920 - components: - - pos: -22.5,15.5 - parent: 1 - type: Transform - - uid: 1922 - components: - - pos: -22.5,13.5 - parent: 1 - type: Transform - - uid: 1928 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,12.5 - parent: 1 - type: Transform - - uid: 2369 - components: - - pos: 11.5,23.5 - parent: 1 - type: Transform - - uid: 2748 - components: - - pos: -10.5,52.5 - parent: 1 - type: Transform - - uid: 2749 - components: - - pos: -10.5,54.5 - parent: 1 - type: Transform - - uid: 2751 - components: - - pos: -10.5,50.5 - parent: 1 - type: Transform - - uid: 2755 - components: - - pos: -9.5,48.5 - parent: 1 - type: Transform - - uid: 2756 - components: - - pos: -8.5,48.5 - parent: 1 - type: Transform - - uid: 2758 - components: - - pos: -3.5,48.5 - parent: 1 - type: Transform - - uid: 2763 - components: - - pos: -8.5,56.5 - parent: 1 - type: Transform - - uid: 2764 - components: - - pos: -7.5,56.5 - parent: 1 - type: Transform - - uid: 2766 - components: - - pos: -5.5,56.5 - parent: 1 - type: Transform - - uid: 2767 - components: - - pos: -4.5,56.5 - parent: 1 - type: Transform - - uid: 3662 - components: - - pos: -24.5,-19.5 - parent: 1 - type: Transform - - uid: 3809 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-0.5 - parent: 1 - type: Transform - - uid: 3810 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-0.5 - parent: 1 - type: Transform - - uid: 3811 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-1.5 - parent: 1 - type: Transform - - uid: 3812 - components: - - pos: 21.5,15.5 - parent: 1 - type: Transform - - uid: 3813 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-1.5 - parent: 1 - type: Transform - - uid: 3814 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-2.5 - parent: 1 - type: Transform - - uid: 3922 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,44.5 - parent: 1 - type: Transform - - uid: 3925 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,46.5 - parent: 1 - type: Transform - - uid: 3954 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,44.5 - parent: 1 - type: Transform - - uid: 3955 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,46.5 - parent: 1 - type: Transform - - uid: 3956 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,46.5 - parent: 1 - type: Transform - - uid: 4062 - components: - - pos: -0.5,32.5 - parent: 1 - type: Transform - - uid: 4063 - components: - - pos: -3.5,32.5 - parent: 1 - type: Transform - - uid: 4075 - components: - - pos: -3.5,31.5 - parent: 1 - type: Transform - - uid: 4077 - components: - - pos: -0.5,31.5 - parent: 1 - type: Transform - - uid: 4087 - components: - - rot: 3.141592653589793 rad - pos: -2.5,27.5 - parent: 1 - type: Transform - - uid: 4088 - components: - - rot: 3.141592653589793 rad - pos: -1.5,27.5 - parent: 1 - type: Transform - - uid: 4089 - components: - - rot: 3.141592653589793 rad - pos: -0.5,27.5 - parent: 1 - type: Transform - - uid: 4857 - components: - - rot: 3.141592653589793 rad - pos: 40.5,25.5 - parent: 1 - type: Transform - - uid: 4936 - components: - - pos: 27.5,24.5 - parent: 1 - type: Transform - - uid: 4937 - components: - - pos: 28.5,24.5 - parent: 1 - type: Transform - - uid: 4938 - components: - - pos: 29.5,24.5 - parent: 1 - type: Transform - - uid: 5052 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,19.5 - parent: 1 - type: Transform - - uid: 5055 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,18.5 - parent: 1 - type: Transform - - uid: 5061 - components: - - pos: 0.5,18.5 - parent: 1 - type: Transform - - uid: 5314 - components: - - pos: 30.5,8.5 - parent: 1 - type: Transform - - uid: 5315 - components: - - pos: 11.5,8.5 - parent: 1 - type: Transform - - uid: 5316 - components: - - pos: 25.5,10.5 - parent: 1 - type: Transform - - uid: 5317 - components: - - pos: 26.5,10.5 - parent: 1 - type: Transform - - uid: 5318 - components: - - pos: 27.5,10.5 - parent: 1 - type: Transform - - uid: 5340 - components: - - pos: 23.5,5.5 - parent: 1 - type: Transform - - uid: 5404 - components: - - pos: 36.5,13.5 - parent: 1 - type: Transform - - uid: 5405 - components: - - pos: 37.5,13.5 - parent: 1 - type: Transform - - uid: 5406 - components: - - pos: 38.5,13.5 - parent: 1 - type: Transform - - uid: 5407 - components: - - pos: 38.5,12.5 - parent: 1 - type: Transform - - uid: 5408 - components: - - pos: 38.5,10.5 - parent: 1 - type: Transform - - uid: 5409 - components: - - pos: 38.5,11.5 - parent: 1 - type: Transform - - uid: 5551 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,1.5 - parent: 1 - type: Transform - - uid: 5552 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,3.5 - parent: 1 - type: Transform - - uid: 5554 - components: - - rot: 1.5707963267948966 rad - pos: 46.5,1.5 - parent: 1 - type: Transform - - uid: 5557 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,19.5 - parent: 1 - type: Transform - - uid: 5676 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-23.5 - parent: 1 - type: Transform - - uid: 5690 - components: - - pos: -16.5,21.5 - parent: 1 - type: Transform - - uid: 5692 - components: - - pos: -12.5,19.5 - parent: 1 - type: Transform - - uid: 5693 - components: - - pos: -12.5,20.5 - parent: 1 - type: Transform - - uid: 5864 - components: - - pos: -16.5,-2.5 - parent: 1 - type: Transform - - uid: 5865 - components: - - pos: -16.5,-3.5 - parent: 1 - type: Transform - - uid: 5866 - components: - - pos: -16.5,-4.5 - parent: 1 - type: Transform - - uid: 5867 - components: - - pos: -17.5,-2.5 - parent: 1 - type: Transform - - uid: 5868 - components: - - pos: -17.5,-3.5 - parent: 1 - type: Transform - - uid: 5869 - components: - - pos: -17.5,-4.5 - parent: 1 - type: Transform - - uid: 5955 - components: - - rot: 3.141592653589793 rad - pos: 3.5,4.5 - parent: 1 - type: Transform - - uid: 5956 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-0.5 - parent: 1 - type: Transform - - uid: 5957 - components: - - rot: 3.141592653589793 rad - pos: 0.5,0.5 - parent: 1 - type: Transform - - uid: 5959 - components: - - rot: 3.141592653589793 rad - pos: 5.5,3.5 - parent: 1 - type: Transform - - uid: 5960 - components: - - rot: 3.141592653589793 rad - pos: 5.5,1.5 - parent: 1 - type: Transform - - uid: 5966 - components: - - rot: 3.141592653589793 rad - pos: 0.5,1.5 - parent: 1 - type: Transform - - uid: 5992 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-0.5 - parent: 1 - type: Transform - - uid: 5993 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-0.5 - parent: 1 - type: Transform - - uid: 6398 - components: - - pos: -15.5,-24.5 - parent: 1 - type: Transform - - uid: 6617 - components: - - pos: 12.5,-9.5 - parent: 1 - type: Transform - - uid: 6758 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-12.5 - parent: 1 - type: Transform - - uid: 6759 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-12.5 - parent: 1 - type: Transform - - uid: 6763 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-7.5 - parent: 1 - type: Transform - - uid: 6764 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-8.5 - parent: 1 - type: Transform - - uid: 6765 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-8.5 - parent: 1 - type: Transform - - uid: 6768 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-8.5 - parent: 1 - type: Transform - - uid: 6769 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-8.5 - parent: 1 - type: Transform - - uid: 7078 - components: - - pos: -4.5,-31.5 - parent: 1 - type: Transform - - uid: 7079 - components: - - pos: -3.5,-31.5 - parent: 1 - type: Transform - - uid: 7080 - components: - - pos: -2.5,-31.5 - parent: 1 - type: Transform - - uid: 7132 - components: - - pos: 32.5,-18.5 - parent: 1 - type: Transform - - uid: 7133 - components: - - pos: 33.5,-18.5 - parent: 1 - type: Transform - - uid: 7500 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-31.5 - parent: 1 - type: Transform - - uid: 7504 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-7.5 - parent: 1 - type: Transform - - uid: 7507 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-7.5 - parent: 1 - type: Transform - - uid: 7508 - components: - - rot: 3.141592653589793 rad - pos: -15.5,1.5 - parent: 1 - type: Transform - - uid: 7509 - components: - - rot: 3.141592653589793 rad - pos: -25.5,3.5 - parent: 1 - type: Transform - - uid: 7524 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,1.5 - parent: 1 - type: Transform - - uid: 7527 - components: - - pos: -39.5,12.5 - parent: 1 - type: Transform - - uid: 7634 - components: - - rot: 3.141592653589793 rad - pos: -41.5,18.5 - parent: 1 - type: Transform - - uid: 7635 - components: - - rot: 3.141592653589793 rad - pos: -41.5,19.5 - parent: 1 - type: Transform - - uid: 7636 - components: - - rot: 3.141592653589793 rad - pos: -41.5,20.5 - parent: 1 - type: Transform - - uid: 7666 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-0.5 - parent: 1 - type: Transform - - uid: 7689 - components: - - pos: -5.5,-20.5 - parent: 1 - type: Transform - - uid: 7690 - components: - - pos: -4.5,-20.5 - parent: 1 - type: Transform - - uid: 7691 - components: - - pos: -3.5,-20.5 - parent: 1 - type: Transform - - uid: 7692 - components: - - pos: -2.5,-20.5 - parent: 1 - type: Transform - - uid: 7693 - components: - - pos: -1.5,-20.5 - parent: 1 - type: Transform - - uid: 7694 - components: - - pos: -5.5,-21.5 - parent: 1 - type: Transform - - uid: 7700 - components: - - pos: -12.5,-28.5 - parent: 1 - type: Transform - - uid: 7701 - components: - - pos: -13.5,-28.5 - parent: 1 - type: Transform - - uid: 7702 - components: - - pos: -13.5,-29.5 - parent: 1 - type: Transform - - uid: 7703 - components: - - pos: -13.5,-31.5 - parent: 1 - type: Transform - - uid: 7704 - components: - - pos: -12.5,-31.5 - parent: 1 - type: Transform - - uid: 7705 - components: - - pos: -11.5,-31.5 - parent: 1 - type: Transform - - uid: 7706 - components: - - pos: -9.5,-31.5 - parent: 1 - type: Transform - - uid: 7707 - components: - - pos: -9.5,-30.5 - parent: 1 - type: Transform - - uid: 7708 - components: - - pos: -9.5,-29.5 - parent: 1 - type: Transform - - uid: 7709 - components: - - pos: -9.5,-28.5 - parent: 1 - type: Transform - - uid: 8236 - components: - - pos: -26.5,21.5 - parent: 1 - type: Transform - - uid: 8237 - components: - - pos: -26.5,20.5 - parent: 1 - type: Transform - - uid: 8238 - components: - - pos: -25.5,20.5 - parent: 1 - type: Transform - - uid: 8239 - components: - - pos: -24.5,20.5 - parent: 1 - type: Transform - - uid: 8281 - components: - - pos: -27.5,-24.5 - parent: 1 - type: Transform - - uid: 8282 - components: - - pos: -27.5,-25.5 - parent: 1 - type: Transform - - uid: 8285 - components: - - pos: -23.5,-25.5 - parent: 1 - type: Transform - - uid: 8286 - components: - - pos: -21.5,-26.5 - parent: 1 - type: Transform - - uid: 8809 - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-16.5 - parent: 1 - type: Transform - - uid: 8874 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-18.5 - parent: 1 - type: Transform - - uid: 8875 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-17.5 - parent: 1 - type: Transform - - uid: 8876 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-2.5 - parent: 1 - type: Transform - - uid: 8877 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-5.5 - parent: 1 - type: Transform - - uid: 8878 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-6.5 - parent: 1 - type: Transform - - uid: 8879 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-15.5 - parent: 1 - type: Transform - - uid: 8881 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-12.5 - parent: 1 - type: Transform - - uid: 8882 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-13.5 - parent: 1 - type: Transform - - uid: 8886 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-22.5 - parent: 1 - type: Transform - - uid: 8887 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-16.5 - parent: 1 - type: Transform - - uid: 8888 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-17.5 - parent: 1 - type: Transform - - uid: 8889 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-17.5 - parent: 1 - type: Transform - - uid: 9045 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-24.5 - parent: 1 - type: Transform - - uid: 9132 - components: - - pos: 9.5,-11.5 - parent: 1 - type: Transform - - uid: 9135 - components: - - pos: 19.5,-18.5 - parent: 1 - type: Transform - - uid: 9136 - components: - - pos: 28.5,-14.5 - parent: 1 - type: Transform - - uid: 9151 - components: - - pos: 26.5,-20.5 - parent: 1 - type: Transform - - uid: 9163 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-4.5 - parent: 1 - type: Transform - - uid: 9311 - components: - - pos: 16.5,23.5 - parent: 1 - type: Transform - - uid: 9312 - components: - - pos: 12.5,21.5 - parent: 1 - type: Transform - - uid: 9313 - components: - - pos: 13.5,21.5 - parent: 1 - type: Transform - - uid: 9315 - components: - - pos: 12.5,20.5 - parent: 1 - type: Transform - - uid: 9324 - components: - - pos: -14.5,27.5 - parent: 1 - type: Transform - - uid: 9325 - components: - - pos: -13.5,27.5 - parent: 1 - type: Transform - - uid: 9350 - components: - - pos: 12.5,17.5 - parent: 1 - type: Transform - - uid: 9352 - components: - - pos: 13.5,17.5 - parent: 1 - type: Transform - - uid: 9363 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,23.5 - parent: 1 - type: Transform - - uid: 9370 - components: - - pos: 14.5,30.5 - parent: 1 - type: Transform - - uid: 9372 - components: - - pos: 16.5,33.5 - parent: 1 - type: Transform - - uid: 9373 - components: - - pos: 17.5,33.5 - parent: 1 - type: Transform - - uid: 9382 - components: - - pos: 23.5,21.5 - parent: 1 - type: Transform - - uid: 9537 - components: - - pos: 38.5,7.5 - parent: 1 - type: Transform - - uid: 9538 - components: - - pos: 42.5,6.5 - parent: 1 - type: Transform - - uid: 9541 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,13.5 - parent: 1 - type: Transform - - uid: 9542 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,12.5 - parent: 1 - type: Transform - - uid: 9545 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,25.5 - parent: 1 - type: Transform - - uid: 9546 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,24.5 - parent: 1 - type: Transform - - uid: 9575 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,6.5 - parent: 1 - type: Transform - - uid: 9646 - components: - - pos: 10.5,24.5 - parent: 1 - type: Transform - - uid: 9650 - components: - - pos: 13.5,23.5 - parent: 1 - type: Transform - - uid: 9660 - components: - - pos: 10.5,23.5 - parent: 1 - type: Transform - - uid: 9682 - components: - - pos: -28.5,22.5 - parent: 1 - type: Transform - - uid: 9683 - components: - - pos: -28.5,21.5 - parent: 1 - type: Transform - - uid: 9686 - components: - - pos: -23.5,26.5 - parent: 1 - type: Transform - - uid: 9688 - components: - - pos: -19.5,20.5 - parent: 1 - type: Transform - - uid: 9697 - components: - - pos: -31.5,21.5 - parent: 1 - type: Transform - - uid: 9698 - components: - - pos: -32.5,18.5 - parent: 1 - type: Transform - - uid: 9700 - components: - - pos: -33.5,18.5 - parent: 1 - type: Transform - - uid: 9711 - components: - - pos: -28.5,12.5 - parent: 1 - type: Transform - - uid: 11797 - components: - - pos: 12.5,23.5 - parent: 1 - type: Transform -- proto: TableCarpet - entities: - - uid: 5041 - components: - - pos: 5.5,10.5 - parent: 1 - type: Transform - - uid: 5566 - components: - - pos: -40.5,-5.5 - parent: 1 - type: Transform - - uid: 5567 - components: - - pos: -40.5,-6.5 - parent: 1 - type: Transform - - uid: 5568 - components: - - pos: -39.5,-5.5 - parent: 1 - type: Transform - - uid: 5569 - components: - - pos: -39.5,-6.5 - parent: 1 - type: Transform -- proto: TableCounterWood - entities: - - uid: 4886 - components: - - rot: 3.141592653589793 rad - pos: 43.5,33.5 - parent: 1 - type: Transform - - uid: 4887 - components: - - rot: 3.141592653589793 rad - pos: 42.5,33.5 - parent: 1 - type: Transform -- proto: TableGlass - entities: - - uid: 5051 - components: - - pos: 3.5,25.5 - parent: 1 - type: Transform - - uid: 5614 - components: - - rot: 3.141592653589793 rad - pos: -10.5,16.5 - parent: 1 - type: Transform - - uid: 5615 - components: - - rot: 3.141592653589793 rad - pos: -10.5,15.5 - parent: 1 - type: Transform - - uid: 5616 - components: - - rot: 3.141592653589793 rad - pos: -11.5,13.5 - parent: 1 - type: Transform - - uid: 9615 - components: - - rot: 3.141592653589793 rad - pos: 16.5,27.5 - parent: 1 - type: Transform - - uid: 9616 - components: - - rot: 3.141592653589793 rad - pos: 17.5,27.5 - parent: 1 - type: Transform - - uid: 9617 - components: - - rot: 3.141592653589793 rad - pos: 18.5,27.5 - parent: 1 - type: Transform -- proto: TablePlasmaGlass - entities: - - uid: 553 - components: - - pos: -28.5,-5.5 - parent: 1 - type: Transform - - uid: 557 - components: - - pos: -27.5,-5.5 - parent: 1 - type: Transform - - uid: 558 - components: - - pos: -28.5,-7.5 - parent: 1 - type: Transform - - uid: 606 - components: - - pos: -28.5,-0.5 - parent: 1 - type: Transform - - uid: 607 - components: - - pos: -24.5,-0.5 - parent: 1 - type: Transform - - uid: 2865 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-53.5 - parent: 1 - type: Transform -- proto: TableReinforced - entities: - - uid: 605 - components: - - pos: -14.5,-8.5 - parent: 1 - type: Transform - - uid: 645 - components: - - pos: -5.5,-15.5 - parent: 1 - type: Transform - - uid: 646 - components: - - pos: -9.5,-11.5 - parent: 1 - type: Transform - - uid: 650 - components: - - pos: -6.5,-15.5 - parent: 1 - type: Transform - - uid: 655 - components: - - pos: -9.5,-13.5 - parent: 1 - type: Transform - - uid: 656 - components: - - pos: -9.5,-12.5 - parent: 1 - type: Transform - - uid: 4121 - components: - - pos: -3.5,23.5 - parent: 1 - type: Transform - - uid: 4122 - components: - - pos: -2.5,23.5 - parent: 1 - type: Transform - - uid: 4123 - components: - - pos: -1.5,23.5 - parent: 1 - type: Transform - - uid: 4124 - components: - - pos: -1.5,24.5 - parent: 1 - type: Transform - - uid: 4125 - components: - - pos: -1.5,25.5 - parent: 1 - type: Transform - - uid: 6064 - components: - - pos: -14.5,-9.5 - parent: 1 - type: Transform - - uid: 6065 - components: - - pos: -14.5,-10.5 - parent: 1 - type: Transform -- proto: TableWood - entities: - - uid: 165 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,7.5 - parent: 1 - type: Transform - - uid: 798 - components: - - pos: 27.5,13.5 - parent: 1 - type: Transform - - uid: 1256 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-2.5 - parent: 1 - type: Transform - - uid: 1261 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-2.5 - parent: 1 - type: Transform - - uid: 1263 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-3.5 - parent: 1 - type: Transform - - uid: 1281 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-4.5 - parent: 1 - type: Transform - - uid: 1780 - components: - - pos: 27.5,14.5 - parent: 1 - type: Transform - - uid: 1802 - components: - - pos: 29.5,16.5 - parent: 1 - type: Transform - - uid: 1803 - components: - - pos: 28.5,16.5 - parent: 1 - type: Transform - - uid: 1844 - components: - - pos: -21.5,-1.5 - parent: 1 - type: Transform - - uid: 1863 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,14.5 - parent: 1 - type: Transform - - uid: 1864 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,14.5 - parent: 1 - type: Transform - - uid: 2782 - components: - - pos: -14.5,-48.5 - parent: 1 - type: Transform - - uid: 2786 - components: - - pos: -15.5,-48.5 - parent: 1 - type: Transform - - uid: 2799 - components: - - pos: -13.5,-48.5 - parent: 1 - type: Transform - - uid: 2930 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-52.5 - parent: 1 - type: Transform - - uid: 3130 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,7.5 - parent: 1 - type: Transform - - uid: 3131 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,7.5 - parent: 1 - type: Transform - - uid: 3132 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,7.5 - parent: 1 - type: Transform - - uid: 3153 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,7.5 - parent: 1 - type: Transform - - uid: 3154 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,7.5 - parent: 1 - type: Transform - - uid: 3469 - components: - - rot: 3.141592653589793 rad - pos: -36.5,11.5 - parent: 1 - type: Transform - - uid: 3470 - components: - - rot: 3.141592653589793 rad - pos: -35.5,11.5 - parent: 1 - type: Transform - - uid: 3471 - components: - - rot: 3.141592653589793 rad - pos: -34.5,11.5 - parent: 1 - type: Transform - - uid: 3472 - components: - - rot: 3.141592653589793 rad - pos: -33.5,11.5 - parent: 1 - type: Transform - - uid: 3480 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,14.5 - parent: 1 - type: Transform - - uid: 4045 - components: - - rot: 3.141592653589793 rad - pos: -9.5,27.5 - parent: 1 - type: Transform - - uid: 4046 - components: - - rot: 3.141592653589793 rad - pos: -9.5,28.5 - parent: 1 - type: Transform - - uid: 4091 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,31.5 - parent: 1 - type: Transform - - uid: 4092 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,31.5 - parent: 1 - type: Transform - - uid: 4093 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,30.5 - parent: 1 - type: Transform - - uid: 4094 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,27.5 - parent: 1 - type: Transform - - uid: 4095 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,27.5 - parent: 1 - type: Transform - - uid: 4108 - components: - - pos: -10.5,31.5 - parent: 1 - type: Transform - - uid: 4109 - components: - - pos: -8.5,31.5 - parent: 1 - type: Transform - - uid: 4305 - components: - - pos: -9.5,29.5 - parent: 1 - type: Transform - - uid: 4885 - components: - - rot: 3.141592653589793 rad - pos: 40.5,33.5 - parent: 1 - type: Transform - - uid: 4888 - components: - - rot: 3.141592653589793 rad - pos: 39.5,33.5 - parent: 1 - type: Transform - - uid: 4889 - components: - - rot: 3.141592653589793 rad - pos: 39.5,31.5 - parent: 1 - type: Transform - - uid: 4890 - components: - - rot: 3.141592653589793 rad - pos: 40.5,31.5 - parent: 1 - type: Transform - - uid: 4891 - components: - - rot: 3.141592653589793 rad - pos: 41.5,31.5 - parent: 1 - type: Transform - - uid: 4892 - components: - - rot: 3.141592653589793 rad - pos: 44.5,31.5 - parent: 1 - type: Transform - - uid: 4893 - components: - - rot: 3.141592653589793 rad - pos: 45.5,31.5 - parent: 1 - type: Transform - - uid: 4894 - components: - - rot: 3.141592653589793 rad - pos: 46.5,31.5 - parent: 1 - type: Transform - - uid: 4956 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,21.5 - parent: 1 - type: Transform - - uid: 4957 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,21.5 - parent: 1 - type: Transform - - uid: 4958 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,19.5 - parent: 1 - type: Transform - - uid: 4964 - components: - - pos: -4.5,19.5 - parent: 1 - type: Transform - - uid: 5012 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,7.5 - parent: 1 - type: Transform - - uid: 5031 - components: - - pos: 1.5,10.5 - parent: 1 - type: Transform - - uid: 5032 - components: - - pos: -1.5,10.5 - parent: 1 - type: Transform - - uid: 5035 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,10.5 - parent: 1 - type: Transform - - uid: 5036 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,10.5 - parent: 1 - type: Transform - - uid: 5383 - components: - - pos: -22.5,-1.5 - parent: 1 - type: Transform - - uid: 5665 - components: - - rot: 3.141592653589793 rad - pos: 18.5,-13.5 - parent: 1 - type: Transform - - uid: 5666 - components: - - rot: 3.141592653589793 rad - pos: 18.5,-14.5 - parent: 1 - type: Transform - - uid: 5947 - components: - - rot: 3.141592653589793 rad - pos: -1.5,5.5 - parent: 1 - type: Transform - - uid: 5948 - components: - - rot: 3.141592653589793 rad - pos: -0.5,5.5 - parent: 1 - type: Transform - - uid: 7445 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-15.5 - parent: 1 - type: Transform - - uid: 7446 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-15.5 - parent: 1 - type: Transform - - uid: 7710 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-28.5 - parent: 1 - type: Transform - - uid: 7711 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-28.5 - parent: 1 - type: Transform - - uid: 8288 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-14.5 - parent: 1 - type: Transform - - uid: 8289 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-12.5 - parent: 1 - type: Transform - - uid: 8290 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-12.5 - parent: 1 - type: Transform - - uid: 8291 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-14.5 - parent: 1 - type: Transform - - uid: 8294 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-12.5 - parent: 1 - type: Transform - - uid: 8295 - components: - - pos: -35.5,-16.5 - parent: 1 - type: Transform - - uid: 8298 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-14.5 - parent: 1 - type: Transform - - uid: 8300 - components: - - pos: -32.5,-17.5 - parent: 1 - type: Transform - - uid: 9015 - components: - - pos: -38.5,-9.5 - parent: 1 - type: Transform - - uid: 9634 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,25.5 - parent: 1 - type: Transform - - uid: 12519 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-29.5 - parent: 1 - type: Transform - - uid: 12520 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-28.5 - parent: 1 - type: Transform -- proto: TelecomServer - entities: - - uid: 3769 - components: - - pos: -0.5,53.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 3770 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 3771 - components: - - pos: -0.5,49.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 3772 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 3777 - components: - - pos: -0.5,55.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 3778 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 3779 - components: - - pos: 3.5,49.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 3780 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 3782 - components: - - pos: 3.5,55.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 3783 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 3784 - components: - - pos: 3.5,53.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 3785 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 3789 - components: - - pos: -0.5,51.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 3790 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 3792 - components: - - pos: 3.5,51.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 3793 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- proto: TelecomServerCircuitboard - entities: - - uid: 4008 - components: - - pos: -2.3633666,50.634815 - parent: 1 - type: Transform - - uid: 4009 - components: - - pos: -2.5352416,50.43169 - parent: 1 - type: Transform -- proto: ThermomachineHeaterMachineCircuitBoard - entities: - - uid: 9560 - components: - - pos: -1.4709852,-34.50978 - parent: 1 - type: Transform -- proto: TintedWindow - entities: - - uid: 47 - components: - - pos: -3.5,-3.5 - parent: 1 - type: Transform - - uid: 232 - components: - - pos: -13.5,6.5 - parent: 1 - type: Transform - - uid: 236 - components: - - pos: -16.5,6.5 - parent: 1 - type: Transform - - uid: 237 - components: - - pos: -16.5,5.5 - parent: 1 - type: Transform - - uid: 238 - components: - - pos: -19.5,5.5 - parent: 1 - type: Transform - - uid: 239 - components: - - pos: -19.5,6.5 - parent: 1 - type: Transform - - uid: 260 - components: - - pos: -13.5,5.5 - parent: 1 - type: Transform - - uid: 453 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-1.5 - parent: 1 - type: Transform - - uid: 454 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-2.5 - parent: 1 - type: Transform - - uid: 458 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-0.5 - parent: 1 - type: Transform - - uid: 524 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-3.5 - parent: 1 - type: Transform - - uid: 3447 - components: - - pos: -36.5,13.5 - parent: 1 - type: Transform -- proto: ToiletEmpty - entities: - - uid: 6403 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-27.5 - parent: 1 - type: Transform - - uid: 6404 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-27.5 - parent: 1 - type: Transform - - uid: 6405 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-27.5 - parent: 1 - type: Transform -- proto: ToolboxArtistic - entities: - - uid: 8226 - components: - - pos: -5.5007915,-20.744713 - parent: 1 - type: Transform -- proto: ToolboxElectricalFilled - entities: - - uid: 3976 - components: - - pos: -3.4942179,46.73459 - parent: 1 - type: Transform - - uid: 6025 - components: - - pos: -12.505221,-1.1054368 - parent: 1 - type: Transform - - uid: 6800 - components: - - pos: 18.476976,-7.3507767 - parent: 1 - type: Transform - - uid: 7640 - components: - - pos: -41.523235,18.607943 - parent: 1 - type: Transform - - uid: 8220 - components: - - pos: -5.49676,-21.465288 - parent: 1 - type: Transform - - uid: 8825 - components: - - pos: -27.52112,-24.46938 - parent: 1 - type: Transform - - uid: 9520 - components: - - pos: -4.515568,-31.274857 - parent: 1 - type: Transform -- proto: ToolboxEmergencyFilled - entities: - - uid: 5062 - components: - - pos: -3.518496,32.609406 - parent: 1 - type: Transform - - uid: 7426 - components: - - pos: 4.483827,-26.624891 - parent: 1 - type: Transform - - uid: 7650 - components: - - pos: -39.493473,12.623091 - parent: 1 - type: Transform - - uid: 8225 - components: - - pos: -5.5007915,-20.963463 - parent: 1 - type: Transform - - uid: 9577 - components: - - pos: 44.490696,19.610844 - parent: 1 - type: Transform - - uid: 9578 - components: - - pos: 46.47507,1.6124096 - parent: 1 - type: Transform -- proto: ToolboxGoldFilled - entities: - - uid: 4130 - components: - - pos: -1.51228,25.6276 - parent: 1 - type: Transform -- proto: ToolboxMechanicalFilled - entities: - - uid: 3977 - components: - - pos: -3.4942179,46.51584 - parent: 1 - type: Transform - - uid: 5065 - components: - - pos: -3.518496,32.421906 - parent: 1 - type: Transform - - uid: 6024 - components: - - pos: -12.505221,-1.4335618 - parent: 1 - type: Transform - - uid: 6801 - components: - - pos: 18.476976,-7.6789017 - parent: 1 - type: Transform - - uid: 7425 - components: - - pos: 4.483827,-26.343641 - parent: 1 - type: Transform - - uid: 8221 - components: - - pos: -5.5007915,-21.244713 - parent: 1 - type: Transform -- proto: ToyAi - entities: - - uid: 3616 - components: - - pos: -6.5061026,52.63185 - parent: 1 - type: Transform -- proto: ToyFireRipley - entities: - - uid: 8259 - components: - - desc: A figure of a well known titan, and perhaps an old friend. - name: bt-7274 figurine - type: MetaData - - pos: -17.266478,-52.27695 - parent: 1 - type: Transform -- proto: ToyIan - entities: - - uid: 12483 - components: - - pos: -1.0943661,19.21257 - parent: 1 - type: Transform -- proto: ToySpawner - entities: - - uid: 7809 - components: - - pos: -1.5,-28.5 - parent: 1 - type: Transform -- proto: TrashBananaPeel - entities: - - uid: 7799 - components: - - pos: -9.558007,-30.972847 - parent: 1 - type: Transform - - uid: 7800 - components: - - pos: -9.354882,-30.879097 - parent: 1 - type: Transform -- proto: TwoWayLever - entities: - - uid: 7429 - components: - - pos: 9.5,-27.5 - parent: 1 - type: Transform - - linkedPorts: - 1734: - - Left: Forward - - Right: Reverse - - Middle: Off - 1733: - - Left: Forward - - Right: Reverse - - Middle: Off - 1732: - - Left: Forward - - Right: Reverse - - Middle: Off - 1731: - - Left: Forward - - Right: Reverse - - Middle: Off - 1730: - - Left: Forward - - Right: Reverse - - Middle: Off - type: DeviceLinkSource - - uid: 7430 - components: - - pos: 15.5,-27.5 - parent: 1 - type: Transform - - linkedPorts: - 1739: - - Left: Forward - - Right: Reverse - - Middle: Off - 1738: - - Left: Forward - - Right: Reverse - - Middle: Off - 1737: - - Left: Forward - - Right: Reverse - - Middle: Off - 1736: - - Left: Forward - - Right: Reverse - - Middle: Off - 1735: - - Left: Forward - - Right: Reverse - - Middle: Off - type: DeviceLinkSource - - uid: 7431 - components: - - pos: 9.5,-22.5 - parent: 1 - type: Transform - - linkedPorts: - 1742: - - Left: Forward - - Right: Reverse - - Middle: Off - 1741: - - Left: Forward - - Right: Reverse - - Middle: Off - 1740: - - Left: Forward - - Right: Reverse - - Middle: Off - type: DeviceLinkSource - - uid: 9199 - components: - - pos: -32.5,23.5 - parent: 1 - type: Transform - - linkedPorts: - 3569: - - Left: Forward - - Right: Reverse - - Middle: Off - 3568: - - Left: Forward - - Right: Reverse - - Middle: Off - 3570: - - Left: Forward - - Right: Reverse - - Middle: Off - 3567: - - Left: Forward - - Right: Reverse - - Middle: Off - 3566: - - Left: Forward - - Right: Reverse - - Middle: Off - 3565: - - Left: Forward - - Right: Reverse - - Middle: Off - 3564: - - Left: Forward - - Right: Reverse - - Middle: Off - 3563: - - Left: Forward - - Right: Reverse - - Middle: Off - type: DeviceLinkSource -- proto: UnfinishedMachineFrame - entities: - - uid: 1926 - components: - - pos: -26.5,7.5 - parent: 1 - type: Transform - - uid: 1927 - components: - - pos: -26.5,5.5 - parent: 1 - type: Transform -- proto: UniformPrinter - entities: - - uid: 4954 - components: - - pos: -1.5,21.5 - parent: 1 - type: Transform -- proto: UniformShortsRed - entities: - - uid: 8815 - components: - - pos: -43.7042,-16.640553 - parent: 1 - type: Transform - - uid: 8816 - components: - - pos: -43.438576,-16.624928 - parent: 1 - type: Transform -- proto: UniformShortsRedWithTop - entities: - - uid: 8817 - components: - - pos: -43.54795,-16.390553 - parent: 1 - type: Transform - - uid: 8818 - components: - - pos: -43.251076,-16.406178 - parent: 1 - type: Transform -- proto: UprightPianoInstrument - entities: - - uid: 8299 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-17.5 - parent: 1 - type: Transform -- proto: Vaccinator - entities: - - uid: 5688 - components: - - pos: -14.5,21.5 - parent: 1 - type: Transform -- proto: VehicleKeyJanicart - entities: - - uid: 7660 - components: - - flags: InContainer - type: MetaData - - parent: 7659 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: VehicleKeySecway - entities: - - uid: 5321 - components: - - pos: 25.427599,10.5971575 - parent: 1 - type: Transform - - uid: 5322 - components: - - pos: 25.708849,10.6596575 - parent: 1 - type: Transform -- proto: VendingBarDrobe - entities: - - uid: 5952 - components: - - flags: SessionSpecific - type: MetaData - - pos: 5.5,5.5 - parent: 1 - type: Transform -- proto: VendingMachineAtmosDrobe - entities: - - uid: 7093 - components: - - flags: SessionSpecific - type: MetaData - - pos: 31.5,-18.5 - parent: 1 - type: Transform -- proto: VendingMachineBooze - entities: - - uid: 5949 - components: - - flags: SessionSpecific - type: MetaData - - pos: 0.5,5.5 - parent: 1 - type: Transform - - uid: 8293 - components: - - flags: SessionSpecific - type: MetaData - - pos: -27.5,-12.5 - parent: 1 - type: Transform -- proto: VendingMachineCargoDrobe - entities: - - uid: 1712 - components: - - flags: SessionSpecific - type: MetaData - - pos: 11.5,-23.5 - parent: 1 - type: Transform -- proto: VendingMachineCart - entities: - - uid: 4953 - components: - - flags: SessionSpecific - type: MetaData - - pos: -2.5,21.5 - parent: 1 - type: Transform -- proto: VendingMachineChapel - entities: - - uid: 3478 - components: - - flags: SessionSpecific - type: MetaData - - pos: -31.5,16.5 - parent: 1 - type: Transform -- proto: VendingMachineChefDrobe - entities: - - uid: 5961 - components: - - flags: SessionSpecific - type: MetaData - - pos: 5.5,0.5 - parent: 1 - type: Transform -- proto: VendingMachineChefvend - entities: - - uid: 5962 - components: - - flags: SessionSpecific - type: MetaData - - pos: 1.5,3.5 - parent: 1 - type: Transform -- proto: VendingMachineChemDrobe - entities: - - uid: 5611 - components: - - flags: SessionSpecific - type: MetaData - - pos: -13.5,16.5 - parent: 1 - type: Transform -- proto: VendingMachineChemicals - entities: - - uid: 5617 - components: - - flags: SessionSpecific - type: MetaData - - pos: -10.5,13.5 - parent: 1 - type: Transform -- proto: VendingMachineCigs - entities: - - uid: 4048 - components: - - flags: SessionSpecific - type: MetaData - - pos: -11.5,26.5 - parent: 1 - type: Transform - - uid: 7533 - components: - - flags: SessionSpecific - type: MetaData - - pos: -33.5,0.5 - parent: 1 - type: Transform - - uid: 7539 - components: - - flags: SessionSpecific - type: MetaData - - pos: 5.5,13.5 - parent: 1 - type: Transform -- proto: VendingMachineClothing - entities: - - uid: 7697 - components: - - flags: SessionSpecific - type: MetaData - - pos: -7.5,-24.5 - parent: 1 - type: Transform -- proto: VendingMachineDetDrobe - entities: - - uid: 5359 - components: - - flags: SessionSpecific - type: MetaData - - pos: 28.5,6.5 - parent: 1 - type: Transform -- proto: VendingMachineDinnerware - entities: - - uid: 5964 - components: - - flags: SessionSpecific - type: MetaData - - pos: 2.5,3.5 - parent: 1 - type: Transform -- proto: VendingMachineEngiDrobe - entities: - - uid: 7184 - components: - - flags: SessionSpecific - type: MetaData - - pos: 23.5,-3.5 - parent: 1 - type: Transform -- proto: VendingMachineEngivend - entities: - - uid: 6556 - components: - - flags: SessionSpecific - type: MetaData - - pos: 16.5,-3.5 - parent: 1 - type: Transform -- proto: VendingMachineGames - entities: - - uid: 5596 - components: - - flags: SessionSpecific - type: MetaData - - pos: -36.5,-7.5 - parent: 1 - type: Transform -- proto: VendingMachineHydrobe - entities: - - uid: 6011 - components: - - flags: SessionSpecific - type: MetaData - - pos: 5.5,-5.5 - parent: 1 - type: Transform -- proto: VendingMachineJaniDrobe - entities: - - uid: 7658 - components: - - flags: SessionSpecific - type: MetaData - - pos: 13.5,-2.5 - parent: 1 - type: Transform -- proto: VendingMachineLawDrobe - entities: - - uid: 5334 - components: - - flags: SessionSpecific - type: MetaData - - pos: 33.5,8.5 - parent: 1 - type: Transform -- proto: VendingMachineMedical - entities: - - uid: 1911 - components: - - flags: SessionSpecific - type: MetaData - - pos: -20.5,11.5 - parent: 1 - type: Transform - - uid: 5344 - components: - - flags: SessionSpecific - type: MetaData - - pos: 20.5,7.5 - parent: 1 - type: Transform -- proto: VendingMachineMediDrobe - entities: - - uid: 1891 - components: - - flags: SessionSpecific - type: MetaData - - pos: -12.5,5.5 - parent: 1 - type: Transform -- proto: VendingMachineNutri - entities: - - uid: 6010 - components: - - flags: SessionSpecific - type: MetaData - - pos: 1.5,-5.5 - parent: 1 - type: Transform -- proto: VendingMachineRoboDrobe - entities: - - uid: 660 - components: - - flags: SessionSpecific - type: MetaData - - pos: -12.5,-15.5 - parent: 1 - type: Transform -- proto: VendingMachineRobotics - entities: - - uid: 654 - components: - - flags: SessionSpecific - type: MetaData - - pos: -4.5,-15.5 - parent: 1 - type: Transform -- proto: VendingMachineSalvage - entities: - - uid: 7291 - components: - - flags: SessionSpecific - type: MetaData - - pos: 18.5,-20.5 - parent: 1 - type: Transform -- proto: VendingMachineSciDrobe - entities: - - uid: 3820 - components: - - flags: SessionSpecific - type: MetaData - - pos: -14.5,-0.5 - parent: 1 - type: Transform -- proto: VendingMachineSec - entities: - - uid: 759 - components: - - flags: SessionSpecific - type: MetaData - - pos: 23.5,15.5 - parent: 1 - type: Transform -- proto: VendingMachineSecDrobe - entities: - - uid: 5335 - components: - - flags: SessionSpecific - type: MetaData - - pos: 33.5,9.5 - parent: 1 - type: Transform -- proto: VendingMachineSeeds - entities: - - uid: 6007 - components: - - flags: SessionSpecific - type: MetaData - - pos: -0.5,-5.5 - parent: 1 - type: Transform -- proto: VendingMachineSeedsUnlocked - entities: - - uid: 4949 - components: - - flags: SessionSpecific - type: MetaData - - pos: 32.5,28.5 - parent: 1 - type: Transform -- proto: VendingMachineSovietSoda - entities: - - uid: 9246 - components: - - flags: SessionSpecific - type: MetaData - - pos: 27.5,32.5 - parent: 1 - type: Transform -- proto: VendingMachineTankDispenserEngineering - entities: - - uid: 6994 - components: - - flags: SessionSpecific - type: MetaData - - pos: 34.5,-4.5 - parent: 1 - type: Transform -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 4923 - components: - - flags: SessionSpecific - type: MetaData - - pos: 42.5,21.5 - parent: 1 - type: Transform - - uid: 6767 - components: - - flags: SessionSpecific - type: MetaData - - pos: 21.5,-8.5 - parent: 1 - type: Transform - - uid: 7292 - components: - - flags: SessionSpecific - type: MetaData - - pos: 19.5,-20.5 - parent: 1 - type: Transform -- proto: VendingMachineTheater - entities: - - uid: 7699 - components: - - flags: SessionSpecific - type: MetaData - - pos: -8.5,-24.5 - parent: 1 - type: Transform -- proto: VendingMachineVendomat - entities: - - uid: 7695 - components: - - flags: SessionSpecific - type: MetaData - - pos: -1.5,-22.5 - parent: 1 - type: Transform - - uid: 9519 - components: - - flags: SessionSpecific - type: MetaData - - pos: -1.5,-31.5 - parent: 1 - type: Transform -- proto: VendingMachineViroDrobe - entities: - - uid: 5691 - components: - - flags: SessionSpecific - type: MetaData - - pos: -17.5,21.5 - parent: 1 - type: Transform -- proto: VendingMachineWallMedical - entities: - - uid: 1912 - components: - - flags: SessionSpecific - type: MetaData - - rot: 1.5707963267948966 rad - pos: -21.5,15.5 - parent: 1 - type: Transform -- proto: VendingMachineYouTool - entities: - - uid: 6779 - components: - - flags: SessionSpecific - type: MetaData - - pos: 15.5,-3.5 - parent: 1 - type: Transform - - uid: 7696 - components: - - flags: SessionSpecific - type: MetaData - - pos: -1.5,-21.5 - parent: 1 - type: Transform -- proto: WallReinforced - entities: - - uid: 106 - components: - - pos: 2.5,20.5 - parent: 1 - type: Transform - - uid: 107 - components: - - pos: 2.5,19.5 - parent: 1 - type: Transform - - uid: 111 - components: - - pos: 2.5,18.5 - parent: 1 - type: Transform - - uid: 112 - components: - - pos: 6.5,17.5 - parent: 1 - type: Transform - - uid: 117 - components: - - pos: 2.5,17.5 - parent: 1 - type: Transform - - uid: 118 - components: - - pos: 6.5,18.5 - parent: 1 - type: Transform - - uid: 119 - components: - - pos: 6.5,19.5 - parent: 1 - type: Transform - - uid: 120 - components: - - pos: 6.5,20.5 - parent: 1 - type: Transform - - uid: 122 - components: - - pos: -5.5,22.5 - parent: 1 - type: Transform - - uid: 123 - components: - - pos: 2.5,22.5 - parent: 1 - type: Transform - - uid: 124 - components: - - pos: 1.5,22.5 - parent: 1 - type: Transform - - uid: 125 - components: - - pos: 0.5,22.5 - parent: 1 - type: Transform - - uid: 126 - components: - - pos: -0.5,22.5 - parent: 1 - type: Transform - - uid: 127 - components: - - pos: -1.5,22.5 - parent: 1 - type: Transform - - uid: 128 - components: - - pos: -2.5,22.5 - parent: 1 - type: Transform - - uid: 129 - components: - - pos: -3.5,22.5 - parent: 1 - type: Transform - - uid: 130 - components: - - pos: -3.5,21.5 - parent: 1 - type: Transform - - uid: 131 - components: - - pos: -4.5,22.5 - parent: 1 - type: Transform - - uid: 132 - components: - - pos: -3.5,19.5 - parent: 1 - type: Transform - - uid: 133 - components: - - pos: -3.5,18.5 - parent: 1 - type: Transform - - uid: 142 - components: - - pos: -6.5,22.5 - parent: 1 - type: Transform - - uid: 143 - components: - - pos: -6.5,21.5 - parent: 1 - type: Transform - - uid: 144 - components: - - pos: -6.5,20.5 - parent: 1 - type: Transform - - uid: 145 - components: - - pos: -6.5,19.5 - parent: 1 - type: Transform - - uid: 146 - components: - - pos: -6.5,18.5 - parent: 1 - type: Transform - - uid: 147 - components: - - pos: -5.5,18.5 - parent: 1 - type: Transform - - uid: 148 - components: - - pos: -4.5,18.5 - parent: 1 - type: Transform - - uid: 152 - components: - - pos: -7.5,15.5 - parent: 1 - type: Transform - - uid: 153 - components: - - pos: -8.5,15.5 - parent: 1 - type: Transform - - uid: 154 - components: - - pos: -9.5,15.5 - parent: 1 - type: Transform - - uid: 155 - components: - - pos: -9.5,16.5 - parent: 1 - type: Transform - - uid: 156 - components: - - pos: -9.5,17.5 - parent: 1 - type: Transform - - uid: 160 - components: - - pos: -10.5,12.5 - parent: 1 - type: Transform - - uid: 162 - components: - - pos: -7.5,12.5 - parent: 1 - type: Transform - - uid: 168 - components: - - pos: -14.5,12.5 - parent: 1 - type: Transform - - uid: 180 - components: - - pos: -10.5,17.5 - parent: 1 - type: Transform - - uid: 182 - components: - - pos: -11.5,17.5 - parent: 1 - type: Transform - - uid: 183 - components: - - pos: -12.5,17.5 - parent: 1 - type: Transform - - uid: 184 - components: - - pos: -13.5,17.5 - parent: 1 - type: Transform - - uid: 185 - components: - - pos: -14.5,17.5 - parent: 1 - type: Transform - - uid: 189 - components: - - pos: -14.5,13.5 - parent: 1 - type: Transform - - uid: 190 - components: - - pos: -17.5,16.5 - parent: 1 - type: Transform - - uid: 191 - components: - - pos: -18.5,17.5 - parent: 1 - type: Transform - - uid: 193 - components: - - pos: -17.5,17.5 - parent: 1 - type: Transform - - uid: 194 - components: - - pos: -19.5,17.5 - parent: 1 - type: Transform - - uid: 195 - components: - - pos: -20.5,17.5 - parent: 1 - type: Transform - - uid: 198 - components: - - pos: -21.5,17.5 - parent: 1 - type: Transform - - uid: 199 - components: - - pos: -21.5,16.5 - parent: 1 - type: Transform - - uid: 200 - components: - - pos: -21.5,15.5 - parent: 1 - type: Transform - - uid: 201 - components: - - pos: -21.5,14.5 - parent: 1 - type: Transform - - uid: 202 - components: - - pos: -21.5,13.5 - parent: 1 - type: Transform - - uid: 203 - components: - - pos: -21.5,12.5 - parent: 1 - type: Transform - - uid: 204 - components: - - pos: -20.5,12.5 - parent: 1 - type: Transform - - uid: 205 - components: - - pos: -19.5,12.5 - parent: 1 - type: Transform - - uid: 206 - components: - - pos: -18.5,12.5 - parent: 1 - type: Transform - - uid: 207 - components: - - pos: -17.5,12.5 - parent: 1 - type: Transform - - uid: 208 - components: - - pos: -17.5,13.5 - parent: 1 - type: Transform - - uid: 225 - components: - - pos: -22.5,5.5 - parent: 1 - type: Transform - - uid: 226 - components: - - pos: -22.5,7.5 - parent: 1 - type: Transform - - uid: 230 - components: - - rot: 3.141592653589793 rad - pos: -22.5,4.5 - parent: 1 - type: Transform - - uid: 254 - components: - - pos: -22.5,6.5 - parent: 1 - type: Transform - - uid: 261 - components: - - pos: -27.5,5.5 - parent: 1 - type: Transform - - uid: 262 - components: - - pos: -27.5,4.5 - parent: 1 - type: Transform - - uid: 267 - components: - - pos: -27.5,7.5 - parent: 1 - type: Transform - - uid: 268 - components: - - pos: -27.5,6.5 - parent: 1 - type: Transform - - uid: 269 - components: - - pos: -22.5,8.5 - parent: 1 - type: Transform - - uid: 270 - components: - - pos: -27.5,8.5 - parent: 1 - type: Transform - - uid: 273 - components: - - pos: -23.5,4.5 - parent: 1 - type: Transform - - uid: 274 - components: - - pos: -24.5,4.5 - parent: 1 - type: Transform - - uid: 275 - components: - - pos: -25.5,4.5 - parent: 1 - type: Transform - - uid: 276 - components: - - pos: -26.5,4.5 - parent: 1 - type: Transform - - uid: 314 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,25.5 - parent: 1 - type: Transform - - uid: 317 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,24.5 - parent: 1 - type: Transform - - uid: 318 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,23.5 - parent: 1 - type: Transform - - uid: 319 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,26.5 - parent: 1 - type: Transform - - uid: 320 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,26.5 - parent: 1 - type: Transform - - uid: 321 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,25.5 - parent: 1 - type: Transform - - uid: 322 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,24.5 - parent: 1 - type: Transform - - uid: 323 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,23.5 - parent: 1 - type: Transform - - uid: 324 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,26.5 - parent: 1 - type: Transform - - uid: 325 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,26.5 - parent: 1 - type: Transform - - uid: 326 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,26.5 - parent: 1 - type: Transform - - uid: 327 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,26.5 - parent: 1 - type: Transform - - uid: 329 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,24.5 - parent: 1 - type: Transform - - uid: 330 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,23.5 - parent: 1 - type: Transform - - uid: 331 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,32.5 - parent: 1 - type: Transform - - uid: 335 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,32.5 - parent: 1 - type: Transform - - uid: 336 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,32.5 - parent: 1 - type: Transform - - uid: 337 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,31.5 - parent: 1 - type: Transform - - uid: 338 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,30.5 - parent: 1 - type: Transform - - uid: 339 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,29.5 - parent: 1 - type: Transform - - uid: 340 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,28.5 - parent: 1 - type: Transform - - uid: 341 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,27.5 - parent: 1 - type: Transform - - uid: 342 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,26.5 - parent: 1 - type: Transform - - uid: 343 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,31.5 - parent: 1 - type: Transform - - uid: 344 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,30.5 - parent: 1 - type: Transform - - uid: 345 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,29.5 - parent: 1 - type: Transform - - uid: 346 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,28.5 - parent: 1 - type: Transform - - uid: 347 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,27.5 - parent: 1 - type: Transform - - uid: 348 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,26.5 - parent: 1 - type: Transform - - uid: 349 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,26.5 - parent: 1 - type: Transform - - uid: 350 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,26.5 - parent: 1 - type: Transform - - uid: 351 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,26.5 - parent: 1 - type: Transform - - uid: 352 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,26.5 - parent: 1 - type: Transform - - uid: 353 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,27.5 - parent: 1 - type: Transform - - uid: 354 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,29.5 - parent: 1 - type: Transform - - uid: 355 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,30.5 - parent: 1 - type: Transform - - uid: 356 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,31.5 - parent: 1 - type: Transform - - uid: 357 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,21.5 - parent: 1 - type: Transform - - uid: 358 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,22.5 - parent: 1 - type: Transform - - uid: 359 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,23.5 - parent: 1 - type: Transform - - uid: 360 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,29.5 - parent: 1 - type: Transform - - uid: 361 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,25.5 - parent: 1 - type: Transform - - uid: 378 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,32.5 - parent: 1 - type: Transform - - uid: 387 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,25.5 - parent: 1 - type: Transform - - uid: 388 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,25.5 - parent: 1 - type: Transform - - uid: 389 - components: - - pos: -18.5,30.5 - parent: 1 - type: Transform - - uid: 390 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,25.5 - parent: 1 - type: Transform - - uid: 391 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,25.5 - parent: 1 - type: Transform - - uid: 392 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,25.5 - parent: 1 - type: Transform - - uid: 393 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,26.5 - parent: 1 - type: Transform - - uid: 394 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,27.5 - parent: 1 - type: Transform - - uid: 395 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,28.5 - parent: 1 - type: Transform - - uid: 396 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,29.5 - parent: 1 - type: Transform - - uid: 397 - components: - - pos: -15.5,31.5 - parent: 1 - type: Transform - - uid: 398 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,31.5 - parent: 1 - type: Transform - - uid: 399 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,32.5 - parent: 1 - type: Transform - - uid: 402 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,16.5 - parent: 1 - type: Transform - - uid: 410 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,29.5 - parent: 1 - type: Transform - - uid: 411 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,29.5 - parent: 1 - type: Transform - - uid: 412 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,32.5 - parent: 1 - type: Transform - - uid: 413 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,32.5 - parent: 1 - type: Transform - - uid: 414 - components: - - pos: 9.5,21.5 - parent: 1 - type: Transform - - uid: 415 - components: - - pos: -16.5,31.5 - parent: 1 - type: Transform - - uid: 428 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,16.5 - parent: 1 - type: Transform - - uid: 429 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,16.5 - parent: 1 - type: Transform - - uid: 432 - components: - - pos: -16.5,29.5 - parent: 1 - type: Transform - - uid: 433 - components: - - pos: -8.5,-19.5 - parent: 1 - type: Transform - - uid: 434 - components: - - pos: -16.5,32.5 - parent: 1 - type: Transform - - uid: 439 - components: - - pos: 39.5,20.5 - parent: 1 - type: Transform - - uid: 440 - components: - - pos: -8.5,-21.5 - parent: 1 - type: Transform - - uid: 441 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,19.5 - parent: 1 - type: Transform - - uid: 442 - components: - - pos: 40.5,20.5 - parent: 1 - type: Transform - - uid: 460 - components: - - rot: 3.141592653589793 rad - pos: -32.5,-6.5 - parent: 1 - type: Transform - - uid: 503 - components: - - rot: 3.141592653589793 rad - pos: -29.5,0.5 - parent: 1 - type: Transform - - uid: 520 - components: - - rot: 3.141592653589793 rad - pos: -30.5,-8.5 - parent: 1 - type: Transform - - uid: 525 - components: - - rot: 3.141592653589793 rad - pos: -24.5,-8.5 - parent: 1 - type: Transform - - uid: 526 - components: - - rot: 3.141592653589793 rad - pos: -29.5,-1.5 - parent: 1 - type: Transform - - uid: 527 - components: - - rot: 3.141592653589793 rad - pos: -24.5,0.5 - parent: 1 - type: Transform - - uid: 528 - components: - - rot: 3.141592653589793 rad - pos: -27.5,-8.5 - parent: 1 - type: Transform - - uid: 529 - components: - - rot: 3.141592653589793 rad - pos: -29.5,-0.5 - parent: 1 - type: Transform - - uid: 530 - components: - - rot: 3.141592653589793 rad - pos: -29.5,-2.5 - parent: 1 - type: Transform - - uid: 531 - components: - - rot: 3.141592653589793 rad - pos: -32.5,-7.5 - parent: 1 - type: Transform - - uid: 534 - components: - - rot: 3.141592653589793 rad - pos: -32.5,-8.5 - parent: 1 - type: Transform - - uid: 535 - components: - - rot: 3.141592653589793 rad - pos: -31.5,-8.5 - parent: 1 - type: Transform - - uid: 536 - components: - - rot: 3.141592653589793 rad - pos: -27.5,0.5 - parent: 1 - type: Transform - - uid: 537 - components: - - rot: 3.141592653589793 rad - pos: -28.5,-8.5 - parent: 1 - type: Transform - - uid: 538 - components: - - rot: 3.141592653589793 rad - pos: -28.5,0.5 - parent: 1 - type: Transform - - uid: 540 - components: - - rot: 3.141592653589793 rad - pos: -29.5,-3.5 - parent: 1 - type: Transform - - uid: 541 - components: - - rot: 3.141592653589793 rad - pos: -20.5,-4.5 - parent: 1 - type: Transform - - uid: 542 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-4.5 - parent: 1 - type: Transform - - uid: 543 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-3.5 - parent: 1 - type: Transform - - uid: 544 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-0.5 - parent: 1 - type: Transform - - uid: 547 - components: - - rot: 3.141592653589793 rad - pos: -27.5,-4.5 - parent: 1 - type: Transform - - uid: 548 - components: - - rot: 3.141592653589793 rad - pos: -25.5,-4.5 - parent: 1 - type: Transform - - uid: 549 - components: - - rot: 3.141592653589793 rad - pos: -22.5,0.5 - parent: 1 - type: Transform - - uid: 550 - components: - - rot: 3.141592653589793 rad - pos: -29.5,-8.5 - parent: 1 - type: Transform - - uid: 551 - components: - - rot: 3.141592653589793 rad - pos: -29.5,-5.5 - parent: 1 - type: Transform - - uid: 552 - components: - - rot: 3.141592653589793 rad - pos: -26.5,0.5 - parent: 1 - type: Transform - - uid: 554 - components: - - rot: 3.141592653589793 rad - pos: -31.5,-3.5 - parent: 1 - type: Transform - - uid: 555 - components: - - rot: 3.141592653589793 rad - pos: -32.5,-5.5 - parent: 1 - type: Transform - - uid: 556 - components: - - rot: 3.141592653589793 rad - pos: -32.5,-3.5 - parent: 1 - type: Transform - - uid: 560 - components: - - rot: 3.141592653589793 rad - pos: -32.5,-4.5 - parent: 1 - type: Transform - - uid: 561 - components: - - rot: 3.141592653589793 rad - pos: -25.5,0.5 - parent: 1 - type: Transform - - uid: 562 - components: - - rot: 3.141592653589793 rad - pos: -30.5,-3.5 - parent: 1 - type: Transform - - uid: 563 - components: - - rot: 3.141592653589793 rad - pos: -29.5,-7.5 - parent: 1 - type: Transform - - uid: 564 - components: - - rot: 3.141592653589793 rad - pos: -26.5,-8.5 - parent: 1 - type: Transform - - uid: 565 - components: - - rot: 3.141592653589793 rad - pos: -23.5,0.5 - parent: 1 - type: Transform - - uid: 567 - components: - - rot: 3.141592653589793 rad - pos: -19.5,0.5 - parent: 1 - type: Transform - - uid: 568 - components: - - rot: 3.141592653589793 rad - pos: -20.5,0.5 - parent: 1 - type: Transform - - uid: 569 - components: - - rot: 3.141592653589793 rad - pos: -29.5,-4.5 - parent: 1 - type: Transform - - uid: 570 - components: - - rot: 3.141592653589793 rad - pos: -21.5,0.5 - parent: 1 - type: Transform - - uid: 571 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-7.5 - parent: 1 - type: Transform - - uid: 572 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-7.5 - parent: 1 - type: Transform - - uid: 573 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-7.5 - parent: 1 - type: Transform - - uid: 574 - components: - - rot: 3.141592653589793 rad - pos: -20.5,-7.5 - parent: 1 - type: Transform - - uid: 575 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-7.5 - parent: 1 - type: Transform - - uid: 577 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-7.5 - parent: 1 - type: Transform - - uid: 587 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-11.5 - parent: 1 - type: Transform - - uid: 588 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-8.5 - parent: 1 - type: Transform - - uid: 590 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-10.5 - parent: 1 - type: Transform - - uid: 591 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-11.5 - parent: 1 - type: Transform - - uid: 592 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-14.5 - parent: 1 - type: Transform - - uid: 597 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-12.5 - parent: 1 - type: Transform - - uid: 599 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-15.5 - parent: 1 - type: Transform - - uid: 603 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-15.5 - parent: 1 - type: Transform - - uid: 612 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-8.5 - parent: 1 - type: Transform - - uid: 613 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-9.5 - parent: 1 - type: Transform - - uid: 614 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-10.5 - parent: 1 - type: Transform - - uid: 615 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-15.5 - parent: 1 - type: Transform - - uid: 616 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-16.5 - parent: 1 - type: Transform - - uid: 617 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-16.5 - parent: 1 - type: Transform - - uid: 618 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-16.5 - parent: 1 - type: Transform - - uid: 625 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-4.5 - parent: 1 - type: Transform - - uid: 626 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-0.5 - parent: 1 - type: Transform - - uid: 627 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-1.5 - parent: 1 - type: Transform - - uid: 628 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-2.5 - parent: 1 - type: Transform - - uid: 629 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-3.5 - parent: 1 - type: Transform - - uid: 630 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-4.5 - parent: 1 - type: Transform - - uid: 631 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-4.5 - parent: 1 - type: Transform - - uid: 644 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,16.5 - parent: 1 - type: Transform - - uid: 670 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,11.5 - parent: 1 - type: Transform - - uid: 672 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,16.5 - parent: 1 - type: Transform - - uid: 673 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,11.5 - parent: 1 - type: Transform - - uid: 676 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,16.5 - parent: 1 - type: Transform - - uid: 677 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,16.5 - parent: 1 - type: Transform - - uid: 679 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,11.5 - parent: 1 - type: Transform - - uid: 680 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,11.5 - parent: 1 - type: Transform - - uid: 681 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,11.5 - parent: 1 - type: Transform - - uid: 682 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,12.5 - parent: 1 - type: Transform - - uid: 683 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,13.5 - parent: 1 - type: Transform - - uid: 684 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,14.5 - parent: 1 - type: Transform - - uid: 685 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,15.5 - parent: 1 - type: Transform - - uid: 686 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,16.5 - parent: 1 - type: Transform - - uid: 687 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,7.5 - parent: 1 - type: Transform - - uid: 688 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,6.5 - parent: 1 - type: Transform - - uid: 689 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,5.5 - parent: 1 - type: Transform - - uid: 690 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,4.5 - parent: 1 - type: Transform - - uid: 691 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,7.5 - parent: 1 - type: Transform - - uid: 692 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,6.5 - parent: 1 - type: Transform - - uid: 693 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,5.5 - parent: 1 - type: Transform - - uid: 694 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,4.5 - parent: 1 - type: Transform - - uid: 695 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,7.5 - parent: 1 - type: Transform - - uid: 696 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,6.5 - parent: 1 - type: Transform - - uid: 697 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,5.5 - parent: 1 - type: Transform - - uid: 698 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,4.5 - parent: 1 - type: Transform - - uid: 699 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,7.5 - parent: 1 - type: Transform - - uid: 700 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,6.5 - parent: 1 - type: Transform - - uid: 701 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,5.5 - parent: 1 - type: Transform - - uid: 702 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,4.5 - parent: 1 - type: Transform - - uid: 729 - components: - - rot: 3.141592653589793 rad - pos: 24.5,7.5 - parent: 1 - type: Transform - - uid: 730 - components: - - rot: 3.141592653589793 rad - pos: 24.5,6.5 - parent: 1 - type: Transform - - uid: 731 - components: - - rot: 3.141592653589793 rad - pos: 24.5,5.5 - parent: 1 - type: Transform - - uid: 732 - components: - - rot: 3.141592653589793 rad - pos: 24.5,4.5 - parent: 1 - type: Transform - - uid: 733 - components: - - rot: 3.141592653589793 rad - pos: 23.5,4.5 - parent: 1 - type: Transform - - uid: 735 - components: - - rot: 3.141592653589793 rad - pos: 21.5,4.5 - parent: 1 - type: Transform - - uid: 736 - components: - - rot: 3.141592653589793 rad - pos: 20.5,4.5 - parent: 1 - type: Transform - - uid: 748 - components: - - rot: 3.141592653589793 rad - pos: 18.5,16.5 - parent: 1 - type: Transform - - uid: 749 - components: - - rot: 3.141592653589793 rad - pos: 19.5,16.5 - parent: 1 - type: Transform - - uid: 750 - components: - - rot: 3.141592653589793 rad - pos: 20.5,16.5 - parent: 1 - type: Transform - - uid: 751 - components: - - rot: 3.141592653589793 rad - pos: 21.5,16.5 - parent: 1 - type: Transform - - uid: 752 - components: - - rot: 3.141592653589793 rad - pos: 23.5,16.5 - parent: 1 - type: Transform - - uid: 753 - components: - - pos: 24.5,17.5 - parent: 1 - type: Transform - - uid: 754 - components: - - rot: 3.141592653589793 rad - pos: 24.5,15.5 - parent: 1 - type: Transform - - uid: 755 - components: - - rot: 3.141592653589793 rad - pos: 24.5,14.5 - parent: 1 - type: Transform - - uid: 756 - components: - - rot: 3.141592653589793 rad - pos: 24.5,13.5 - parent: 1 - type: Transform - - uid: 757 - components: - - rot: 3.141592653589793 rad - pos: 24.5,12.5 - parent: 1 - type: Transform - - uid: 758 - components: - - rot: 3.141592653589793 rad - pos: 24.5,11.5 - parent: 1 - type: Transform - - uid: 783 - components: - - pos: 25.5,15.5 - parent: 1 - type: Transform - - uid: 787 - components: - - pos: 26.5,15.5 - parent: 1 - type: Transform - - uid: 788 - components: - - pos: 27.5,15.5 - parent: 1 - type: Transform - - uid: 789 - components: - - pos: 28.5,15.5 - parent: 1 - type: Transform - - uid: 790 - components: - - pos: 29.5,15.5 - parent: 1 - type: Transform - - uid: 791 - components: - - pos: 30.5,15.5 - parent: 1 - type: Transform - - uid: 793 - components: - - pos: 30.5,12.5 - parent: 1 - type: Transform - - uid: 795 - components: - - pos: 30.5,11.5 - parent: 1 - type: Transform - - uid: 796 - components: - - pos: 29.5,11.5 - parent: 1 - type: Transform - - uid: 797 - components: - - pos: 28.5,11.5 - parent: 1 - type: Transform - - uid: 799 - components: - - pos: 25.5,11.5 - parent: 1 - type: Transform - - uid: 800 - components: - - pos: 25.5,7.5 - parent: 1 - type: Transform - - uid: 801 - components: - - pos: 27.5,7.5 - parent: 1 - type: Transform - - uid: 802 - components: - - pos: 28.5,7.5 - parent: 1 - type: Transform - - uid: 803 - components: - - pos: 29.5,7.5 - parent: 1 - type: Transform - - uid: 804 - components: - - pos: 29.5,6.5 - parent: 1 - type: Transform - - uid: 805 - components: - - pos: 29.5,5.5 - parent: 1 - type: Transform - - uid: 806 - components: - - pos: 29.5,4.5 - parent: 1 - type: Transform - - uid: 807 - components: - - pos: 28.5,4.5 - parent: 1 - type: Transform - - uid: 808 - components: - - pos: 27.5,4.5 - parent: 1 - type: Transform - - uid: 809 - components: - - pos: 26.5,4.5 - parent: 1 - type: Transform - - uid: 810 - components: - - pos: 25.5,4.5 - parent: 1 - type: Transform - - uid: 811 - components: - - pos: 30.5,7.5 - parent: 1 - type: Transform - - uid: 812 - components: - - pos: 31.5,7.5 - parent: 1 - type: Transform - - uid: 814 - components: - - pos: 33.5,7.5 - parent: 1 - type: Transform - - uid: 819 - components: - - pos: 34.5,7.5 - parent: 1 - type: Transform - - uid: 820 - components: - - pos: 34.5,8.5 - parent: 1 - type: Transform - - uid: 821 - components: - - pos: 34.5,9.5 - parent: 1 - type: Transform - - uid: 822 - components: - - pos: 34.5,10.5 - parent: 1 - type: Transform - - uid: 823 - components: - - pos: 35.5,9.5 - parent: 1 - type: Transform - - uid: 824 - components: - - pos: 34.5,12.5 - parent: 1 - type: Transform - - uid: 825 - components: - - pos: 34.5,13.5 - parent: 1 - type: Transform - - uid: 826 - components: - - pos: 34.5,14.5 - parent: 1 - type: Transform - - uid: 827 - components: - - pos: 34.5,15.5 - parent: 1 - type: Transform - - uid: 828 - components: - - pos: 35.5,8.5 - parent: 1 - type: Transform - - uid: 829 - components: - - pos: 36.5,9.5 - parent: 1 - type: Transform - - uid: 830 - components: - - pos: 36.5,8.5 - parent: 1 - type: Transform - - uid: 831 - components: - - pos: 37.5,9.5 - parent: 1 - type: Transform - - uid: 832 - components: - - pos: 37.5,8.5 - parent: 1 - type: Transform - - uid: 833 - components: - - pos: 38.5,8.5 - parent: 1 - type: Transform - - uid: 834 - components: - - pos: 38.5,9.5 - parent: 1 - type: Transform - - uid: 835 - components: - - pos: 40.5,15.5 - parent: 1 - type: Transform - - uid: 836 - components: - - pos: 40.5,14.5 - parent: 1 - type: Transform - - uid: 837 - components: - - pos: 40.5,13.5 - parent: 1 - type: Transform - - uid: 838 - components: - - pos: 40.5,12.5 - parent: 1 - type: Transform - - uid: 839 - components: - - pos: 38.5,14.5 - parent: 1 - type: Transform - - uid: 840 - components: - - pos: 38.5,15.5 - parent: 1 - type: Transform - - uid: 841 - components: - - pos: 39.5,8.5 - parent: 1 - type: Transform - - uid: 842 - components: - - pos: 39.5,9.5 - parent: 1 - type: Transform - - uid: 843 - components: - - pos: 39.5,10.5 - parent: 1 - type: Transform - - uid: 844 - components: - - pos: 39.5,11.5 - parent: 1 - type: Transform - - uid: 845 - components: - - pos: 39.5,12.5 - parent: 1 - type: Transform - - uid: 846 - components: - - pos: 39.5,13.5 - parent: 1 - type: Transform - - uid: 847 - components: - - pos: 39.5,14.5 - parent: 1 - type: Transform - - uid: 848 - components: - - pos: 39.5,15.5 - parent: 1 - type: Transform - - uid: 849 - components: - - pos: 37.5,14.5 - parent: 1 - type: Transform - - uid: 850 - components: - - pos: 37.5,15.5 - parent: 1 - type: Transform - - uid: 851 - components: - - pos: 36.5,14.5 - parent: 1 - type: Transform - - uid: 852 - components: - - pos: 36.5,15.5 - parent: 1 - type: Transform - - uid: 853 - components: - - pos: 35.5,14.5 - parent: 1 - type: Transform - - uid: 854 - components: - - pos: 35.5,15.5 - parent: 1 - type: Transform - - uid: 855 - components: - - pos: 30.5,16.5 - parent: 1 - type: Transform - - uid: 856 - components: - - pos: 30.5,18.5 - parent: 1 - type: Transform - - uid: 857 - components: - - pos: 30.5,19.5 - parent: 1 - type: Transform - - uid: 858 - components: - - pos: 29.5,19.5 - parent: 1 - type: Transform - - uid: 859 - components: - - pos: 28.5,19.5 - parent: 1 - type: Transform - - uid: 860 - components: - - pos: 27.5,19.5 - parent: 1 - type: Transform - - uid: 861 - components: - - pos: 26.5,19.5 - parent: 1 - type: Transform - - uid: 862 - components: - - pos: 26.5,18.5 - parent: 1 - type: Transform - - uid: 863 - components: - - pos: 26.5,17.5 - parent: 1 - type: Transform - - uid: 864 - components: - - pos: 26.5,16.5 - parent: 1 - type: Transform - - uid: 865 - components: - - pos: 34.5,16.5 - parent: 1 - type: Transform - - uid: 866 - components: - - pos: 34.5,17.5 - parent: 1 - type: Transform - - uid: 867 - components: - - pos: 34.5,18.5 - parent: 1 - type: Transform - - uid: 868 - components: - - pos: 34.5,19.5 - parent: 1 - type: Transform - - uid: 870 - components: - - pos: 24.5,16.5 - parent: 1 - type: Transform - - uid: 872 - components: - - pos: 40.5,11.5 - parent: 1 - type: Transform - - uid: 873 - components: - - pos: 40.5,10.5 - parent: 1 - type: Transform - - uid: 874 - components: - - pos: 40.5,9.5 - parent: 1 - type: Transform - - uid: 875 - components: - - pos: 40.5,8.5 - parent: 1 - type: Transform - - uid: 876 - components: - - pos: 35.5,10.5 - parent: 1 - type: Transform - - uid: 877 - components: - - pos: 35.5,12.5 - parent: 1 - type: Transform - - uid: 878 - components: - - pos: 35.5,13.5 - parent: 1 - type: Transform - - uid: 887 - components: - - pos: 31.5,19.5 - parent: 1 - type: Transform - - uid: 888 - components: - - pos: 34.5,22.5 - parent: 1 - type: Transform - - uid: 889 - components: - - pos: 35.5,19.5 - parent: 1 - type: Transform - - uid: 890 - components: - - pos: 30.5,22.5 - parent: 1 - type: Transform - - uid: 891 - components: - - pos: 30.5,23.5 - parent: 1 - type: Transform - - uid: 892 - components: - - pos: 29.5,22.5 - parent: 1 - type: Transform - - uid: 893 - components: - - pos: 29.5,23.5 - parent: 1 - type: Transform - - uid: 894 - components: - - pos: 28.5,22.5 - parent: 1 - type: Transform - - uid: 895 - components: - - pos: 28.5,23.5 - parent: 1 - type: Transform - - uid: 896 - components: - - pos: 27.5,22.5 - parent: 1 - type: Transform - - uid: 897 - components: - - pos: 27.5,23.5 - parent: 1 - type: Transform - - uid: 898 - components: - - pos: 26.5,22.5 - parent: 1 - type: Transform - - uid: 899 - components: - - pos: 26.5,23.5 - parent: 1 - type: Transform - - uid: 900 - components: - - pos: 25.5,22.5 - parent: 1 - type: Transform - - uid: 901 - components: - - pos: 25.5,23.5 - parent: 1 - type: Transform - - uid: 902 - components: - - pos: 24.5,22.5 - parent: 1 - type: Transform - - uid: 903 - components: - - pos: 24.5,23.5 - parent: 1 - type: Transform - - uid: 904 - components: - - pos: 23.5,22.5 - parent: 1 - type: Transform - - uid: 905 - components: - - pos: 23.5,23.5 - parent: 1 - type: Transform - - uid: 906 - components: - - pos: 23.5,24.5 - parent: 1 - type: Transform - - uid: 907 - components: - - pos: 23.5,25.5 - parent: 1 - type: Transform - - uid: 908 - components: - - pos: 23.5,26.5 - parent: 1 - type: Transform - - uid: 909 - components: - - pos: 23.5,27.5 - parent: 1 - type: Transform - - uid: 910 - components: - - pos: 23.5,28.5 - parent: 1 - type: Transform - - uid: 911 - components: - - pos: 23.5,29.5 - parent: 1 - type: Transform - - uid: 912 - components: - - pos: 22.5,22.5 - parent: 1 - type: Transform - - uid: 913 - components: - - pos: 22.5,23.5 - parent: 1 - type: Transform - - uid: 914 - components: - - pos: 22.5,24.5 - parent: 1 - type: Transform - - uid: 915 - components: - - pos: 22.5,25.5 - parent: 1 - type: Transform - - uid: 916 - components: - - pos: 22.5,26.5 - parent: 1 - type: Transform - - uid: 917 - components: - - pos: 22.5,27.5 - parent: 1 - type: Transform - - uid: 918 - components: - - pos: 22.5,28.5 - parent: 1 - type: Transform - - uid: 919 - components: - - pos: 22.5,29.5 - parent: 1 - type: Transform - - uid: 920 - components: - - pos: 24.5,29.5 - parent: 1 - type: Transform - - uid: 921 - components: - - pos: 25.5,29.5 - parent: 1 - type: Transform - - uid: 922 - components: - - pos: 26.5,29.5 - parent: 1 - type: Transform - - uid: 923 - components: - - pos: 27.5,29.5 - parent: 1 - type: Transform - - uid: 924 - components: - - pos: 33.5,29.5 - parent: 1 - type: Transform - - uid: 925 - components: - - pos: 34.5,29.5 - parent: 1 - type: Transform - - uid: 927 - components: - - pos: 34.5,24.5 - parent: 1 - type: Transform - - uid: 928 - components: - - pos: 34.5,25.5 - parent: 1 - type: Transform - - uid: 929 - components: - - pos: 34.5,26.5 - parent: 1 - type: Transform - - uid: 930 - components: - - pos: 34.5,27.5 - parent: 1 - type: Transform - - uid: 931 - components: - - pos: 34.5,28.5 - parent: 1 - type: Transform - - uid: 932 - components: - - pos: 35.5,23.5 - parent: 1 - type: Transform - - uid: 933 - components: - - pos: 35.5,24.5 - parent: 1 - type: Transform - - uid: 934 - components: - - pos: 35.5,25.5 - parent: 1 - type: Transform - - uid: 935 - components: - - pos: 35.5,26.5 - parent: 1 - type: Transform - - uid: 936 - components: - - pos: 35.5,27.5 - parent: 1 - type: Transform - - uid: 937 - components: - - pos: 35.5,28.5 - parent: 1 - type: Transform - - uid: 938 - components: - - pos: 35.5,29.5 - parent: 1 - type: Transform - - uid: 939 - components: - - pos: 35.5,22.5 - parent: 1 - type: Transform - - uid: 940 - components: - - pos: 21.5,19.5 - parent: 1 - type: Transform - - uid: 941 - components: - - pos: 21.5,20.5 - parent: 1 - type: Transform - - uid: 942 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,19.5 - parent: 1 - type: Transform - - uid: 943 - components: - - pos: 24.5,21.5 - parent: 1 - type: Transform - - uid: 944 - components: - - pos: 24.5,20.5 - parent: 1 - type: Transform - - uid: 945 - components: - - pos: 24.5,26.5 - parent: 1 - type: Transform - - uid: 946 - components: - - pos: 25.5,26.5 - parent: 1 - type: Transform - - uid: 947 - components: - - pos: 26.5,26.5 - parent: 1 - type: Transform - - uid: 948 - components: - - pos: 26.5,24.5 - parent: 1 - type: Transform - - uid: 950 - components: - - pos: 24.5,19.5 - parent: 1 - type: Transform - - uid: 951 - components: - - pos: 21.5,21.5 - parent: 1 - type: Transform - - uid: 952 - components: - - pos: 21.5,22.5 - parent: 1 - type: Transform - - uid: 953 - components: - - pos: 35.5,30.5 - parent: 1 - type: Transform - - uid: 954 - components: - - pos: 35.5,31.5 - parent: 1 - type: Transform - - uid: 955 - components: - - pos: 34.5,31.5 - parent: 1 - type: Transform - - uid: 956 - components: - - pos: 33.5,31.5 - parent: 1 - type: Transform - - uid: 957 - components: - - pos: 32.5,31.5 - parent: 1 - type: Transform - - uid: 958 - components: - - pos: 31.5,31.5 - parent: 1 - type: Transform - - uid: 959 - components: - - pos: 30.5,31.5 - parent: 1 - type: Transform - - uid: 961 - components: - - pos: 29.5,31.5 - parent: 1 - type: Transform - - uid: 962 - components: - - pos: 23.5,31.5 - parent: 1 - type: Transform - - uid: 963 - components: - - pos: 22.5,31.5 - parent: 1 - type: Transform - - uid: 964 - components: - - pos: 22.5,30.5 - parent: 1 - type: Transform - - uid: 984 - components: - - pos: 31.5,22.5 - parent: 1 - type: Transform - - uid: 1059 - components: - - pos: 15.5,-15.5 - parent: 1 - type: Transform - - uid: 1061 - components: - - pos: 15.5,-13.5 - parent: 1 - type: Transform - - uid: 1062 - components: - - pos: 15.5,-14.5 - parent: 1 - type: Transform - - uid: 1063 - components: - - pos: 15.5,-16.5 - parent: 1 - type: Transform - - uid: 1064 - components: - - pos: 15.5,-12.5 - parent: 1 - type: Transform - - uid: 1066 - components: - - pos: 16.5,-16.5 - parent: 1 - type: Transform - - uid: 1067 - components: - - pos: 17.5,-16.5 - parent: 1 - type: Transform - - uid: 1068 - components: - - pos: 18.5,-16.5 - parent: 1 - type: Transform - - uid: 1069 - components: - - pos: 19.5,-16.5 - parent: 1 - type: Transform - - uid: 1070 - components: - - pos: 20.5,-16.5 - parent: 1 - type: Transform - - uid: 1071 - components: - - pos: 21.5,-16.5 - parent: 1 - type: Transform - - uid: 1073 - components: - - pos: 21.5,-14.5 - parent: 1 - type: Transform - - uid: 1074 - components: - - pos: 21.5,-13.5 - parent: 1 - type: Transform - - uid: 1075 - components: - - pos: 21.5,-12.5 - parent: 1 - type: Transform - - uid: 1076 - components: - - pos: 17.5,-12.5 - parent: 1 - type: Transform - - uid: 1093 - components: - - pos: 24.5,-2.5 - parent: 1 - type: Transform - - uid: 1094 - components: - - pos: 29.5,-2.5 - parent: 1 - type: Transform - - uid: 1095 - components: - - pos: 30.5,-2.5 - parent: 1 - type: Transform - - uid: 1096 - components: - - pos: 22.5,-16.5 - parent: 1 - type: Transform - - uid: 1098 - components: - - pos: 27.5,-2.5 - parent: 1 - type: Transform - - uid: 1102 - components: - - pos: 27.5,-13.5 - parent: 1 - type: Transform - - uid: 1103 - components: - - pos: 27.5,-14.5 - parent: 1 - type: Transform - - uid: 1104 - components: - - pos: 26.5,-12.5 - parent: 1 - type: Transform - - uid: 1105 - components: - - pos: 27.5,-12.5 - parent: 1 - type: Transform - - uid: 1107 - components: - - pos: 22.5,-12.5 - parent: 1 - type: Transform - - uid: 1108 - components: - - pos: 27.5,-15.5 - parent: 1 - type: Transform - - uid: 1109 - components: - - pos: 27.5,-16.5 - parent: 1 - type: Transform - - uid: 1110 - components: - - pos: 24.5,-12.5 - parent: 1 - type: Transform - - uid: 1111 - components: - - pos: 28.5,-2.5 - parent: 1 - type: Transform - - uid: 1112 - components: - - pos: 24.5,-16.5 - parent: 1 - type: Transform - - uid: 1113 - components: - - pos: 25.5,-2.5 - parent: 1 - type: Transform - - uid: 1114 - components: - - pos: 26.5,-16.5 - parent: 1 - type: Transform - - uid: 1116 - components: - - pos: 26.5,-2.5 - parent: 1 - type: Transform - - uid: 1117 - components: - - pos: 23.5,-16.5 - parent: 1 - type: Transform - - uid: 1177 - components: - - pos: 24.5,-9.5 - parent: 1 - type: Transform - - uid: 1198 - components: - - pos: 30.5,-3.5 - parent: 1 - type: Transform - - uid: 1199 - components: - - pos: 30.5,-4.5 - parent: 1 - type: Transform - - uid: 1200 - components: - - pos: 30.5,-5.5 - parent: 1 - type: Transform - - uid: 1201 - components: - - pos: 30.5,-6.5 - parent: 1 - type: Transform - - uid: 1202 - components: - - pos: 30.5,-7.5 - parent: 1 - type: Transform - - uid: 1203 - components: - - pos: 30.5,-8.5 - parent: 1 - type: Transform - - uid: 1204 - components: - - pos: 30.5,-9.5 - parent: 1 - type: Transform - - uid: 1205 - components: - - pos: 28.5,-12.5 - parent: 1 - type: Transform - - uid: 1206 - components: - - pos: 29.5,-12.5 - parent: 1 - type: Transform - - uid: 1207 - components: - - pos: 30.5,-12.5 - parent: 1 - type: Transform - - uid: 1208 - components: - - pos: 32.5,-9.5 - parent: 1 - type: Transform - - uid: 1209 - components: - - pos: 33.5,-9.5 - parent: 1 - type: Transform - - uid: 1210 - components: - - pos: 33.5,-8.5 - parent: 1 - type: Transform - - uid: 1211 - components: - - pos: 33.5,-7.5 - parent: 1 - type: Transform - - uid: 1212 - components: - - pos: 33.5,-6.5 - parent: 1 - type: Transform - - uid: 1213 - components: - - pos: 33.5,-5.5 - parent: 1 - type: Transform - - uid: 1214 - components: - - pos: 33.5,-4.5 - parent: 1 - type: Transform - - uid: 1215 - components: - - pos: 33.5,-3.5 - parent: 1 - type: Transform - - uid: 1216 - components: - - pos: 33.5,-2.5 - parent: 1 - type: Transform - - uid: 1217 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-1.5 - parent: 1 - type: Transform - - uid: 1218 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-1.5 - parent: 1 - type: Transform - - uid: 1219 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-1.5 - parent: 1 - type: Transform - - uid: 1220 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-1.5 - parent: 1 - type: Transform - - uid: 1223 - components: - - pos: 40.5,-2.5 - parent: 1 - type: Transform - - uid: 1224 - components: - - pos: 32.5,-12.5 - parent: 1 - type: Transform - - uid: 1225 - components: - - pos: 33.5,-12.5 - parent: 1 - type: Transform - - uid: 1226 - components: - - pos: 33.5,-13.5 - parent: 1 - type: Transform - - uid: 1227 - components: - - pos: 33.5,-14.5 - parent: 1 - type: Transform - - uid: 1228 - components: - - pos: 33.5,-15.5 - parent: 1 - type: Transform - - uid: 1229 - components: - - pos: 41.5,-2.5 - parent: 1 - type: Transform - - uid: 1241 - components: - - pos: 38.5,19.5 - parent: 1 - type: Transform - - uid: 1244 - components: - - pos: 42.5,-2.5 - parent: 1 - type: Transform - - uid: 1245 - components: - - pos: 43.5,-2.5 - parent: 1 - type: Transform - - uid: 1246 - components: - - pos: 44.5,-2.5 - parent: 1 - type: Transform - - uid: 1247 - components: - - pos: 45.5,-2.5 - parent: 1 - type: Transform - - uid: 1250 - components: - - pos: 45.5,0.5 - parent: 1 - type: Transform - - uid: 1251 - components: - - pos: 45.5,-0.5 - parent: 1 - type: Transform - - uid: 1252 - components: - - pos: 45.5,-1.5 - parent: 1 - type: Transform - - uid: 1272 - components: - - rot: 1.5707963267948966 rad - pos: 48.5,11.5 - parent: 1 - type: Transform - - uid: 1276 - components: - - pos: 47.5,4.5 - parent: 1 - type: Transform - - uid: 1279 - components: - - rot: 1.5707963267948966 rad - pos: 48.5,13.5 - parent: 1 - type: Transform - - uid: 1282 - components: - - rot: 1.5707963267948966 rad - pos: 48.5,4.5 - parent: 1 - type: Transform - - uid: 1283 - components: - - pos: 47.5,13.5 - parent: 1 - type: Transform - - uid: 1286 - components: - - pos: 47.5,6.5 - parent: 1 - type: Transform - - uid: 1288 - components: - - rot: 1.5707963267948966 rad - pos: 48.5,6.5 - parent: 1 - type: Transform - - uid: 1290 - components: - - pos: 47.5,11.5 - parent: 1 - type: Transform - - uid: 1294 - components: - - pos: 42.5,20.5 - parent: 1 - type: Transform - - uid: 1297 - components: - - pos: 47.5,18.5 - parent: 1 - type: Transform - - uid: 1299 - components: - - pos: 43.5,20.5 - parent: 1 - type: Transform - - uid: 1301 - components: - - pos: 32.5,-15.5 - parent: 1 - type: Transform - - uid: 1302 - components: - - pos: 31.5,-15.5 - parent: 1 - type: Transform - - uid: 1303 - components: - - pos: 30.5,-15.5 - parent: 1 - type: Transform - - uid: 1304 - components: - - pos: 30.5,-16.5 - parent: 1 - type: Transform - - uid: 1306 - components: - - pos: 30.5,-18.5 - parent: 1 - type: Transform - - uid: 1307 - components: - - pos: 30.5,-19.5 - parent: 1 - type: Transform - - uid: 1353 - components: - - pos: 33.5,-19.5 - parent: 1 - type: Transform - - uid: 1360 - components: - - pos: 33.5,-21.5 - parent: 1 - type: Transform - - uid: 1361 - components: - - pos: 33.5,-24.5 - parent: 1 - type: Transform - - uid: 1362 - components: - - pos: 34.5,-24.5 - parent: 1 - type: Transform - - uid: 1364 - components: - - pos: 36.5,-24.5 - parent: 1 - type: Transform - - uid: 1365 - components: - - pos: 37.5,-24.5 - parent: 1 - type: Transform - - uid: 1366 - components: - - pos: 37.5,-21.5 - parent: 1 - type: Transform - - uid: 1380 - components: - - pos: 42.5,-18.5 - parent: 1 - type: Transform - - uid: 1381 - components: - - pos: 43.5,-18.5 - parent: 1 - type: Transform - - uid: 1382 - components: - - pos: 44.5,-18.5 - parent: 1 - type: Transform - - uid: 1383 - components: - - pos: 45.5,-18.5 - parent: 1 - type: Transform - - uid: 1384 - components: - - pos: 46.5,-18.5 - parent: 1 - type: Transform - - uid: 1385 - components: - - pos: 46.5,-17.5 - parent: 1 - type: Transform - - uid: 1386 - components: - - pos: 46.5,-16.5 - parent: 1 - type: Transform - - uid: 1387 - components: - - pos: 46.5,-15.5 - parent: 1 - type: Transform - - uid: 1388 - components: - - pos: 46.5,-14.5 - parent: 1 - type: Transform - - uid: 1389 - components: - - pos: 46.5,-13.5 - parent: 1 - type: Transform - - uid: 1390 - components: - - pos: 46.5,-12.5 - parent: 1 - type: Transform - - uid: 1391 - components: - - pos: 46.5,-11.5 - parent: 1 - type: Transform - - uid: 1392 - components: - - pos: 46.5,-10.5 - parent: 1 - type: Transform - - uid: 1393 - components: - - pos: 46.5,-9.5 - parent: 1 - type: Transform - - uid: 1394 - components: - - pos: 46.5,-8.5 - parent: 1 - type: Transform - - uid: 1395 - components: - - pos: 46.5,-7.5 - parent: 1 - type: Transform - - uid: 1396 - components: - - pos: 46.5,-6.5 - parent: 1 - type: Transform - - uid: 1397 - components: - - pos: 46.5,-5.5 - parent: 1 - type: Transform - - uid: 1398 - components: - - pos: 46.5,-4.5 - parent: 1 - type: Transform - - uid: 1399 - components: - - pos: 45.5,-4.5 - parent: 1 - type: Transform - - uid: 1400 - components: - - pos: 44.5,-4.5 - parent: 1 - type: Transform - - uid: 1401 - components: - - pos: 43.5,-4.5 - parent: 1 - type: Transform - - uid: 1402 - components: - - pos: 42.5,-4.5 - parent: 1 - type: Transform - - uid: 1403 - components: - - pos: 42.5,-6.5 - parent: 1 - type: Transform - - uid: 1404 - components: - - pos: 43.5,-6.5 - parent: 1 - type: Transform - - uid: 1405 - components: - - pos: 44.5,-6.5 - parent: 1 - type: Transform - - uid: 1406 - components: - - pos: 45.5,-6.5 - parent: 1 - type: Transform - - uid: 1407 - components: - - pos: 45.5,-8.5 - parent: 1 - type: Transform - - uid: 1408 - components: - - pos: 44.5,-8.5 - parent: 1 - type: Transform - - uid: 1409 - components: - - pos: 43.5,-8.5 - parent: 1 - type: Transform - - uid: 1410 - components: - - pos: 42.5,-8.5 - parent: 1 - type: Transform - - uid: 1411 - components: - - pos: 42.5,-10.5 - parent: 1 - type: Transform - - uid: 1412 - components: - - pos: 43.5,-10.5 - parent: 1 - type: Transform - - uid: 1413 - components: - - pos: 44.5,-10.5 - parent: 1 - type: Transform - - uid: 1414 - components: - - pos: 45.5,-10.5 - parent: 1 - type: Transform - - uid: 1415 - components: - - pos: 45.5,-12.5 - parent: 1 - type: Transform - - uid: 1416 - components: - - pos: 44.5,-12.5 - parent: 1 - type: Transform - - uid: 1417 - components: - - pos: 43.5,-12.5 - parent: 1 - type: Transform - - uid: 1418 - components: - - pos: 42.5,-12.5 - parent: 1 - type: Transform - - uid: 1419 - components: - - pos: 42.5,-14.5 - parent: 1 - type: Transform - - uid: 1420 - components: - - pos: 43.5,-14.5 - parent: 1 - type: Transform - - uid: 1421 - components: - - pos: 44.5,-14.5 - parent: 1 - type: Transform - - uid: 1422 - components: - - pos: 45.5,-14.5 - parent: 1 - type: Transform - - uid: 1423 - components: - - pos: 45.5,-16.5 - parent: 1 - type: Transform - - uid: 1424 - components: - - pos: 44.5,-16.5 - parent: 1 - type: Transform - - uid: 1425 - components: - - pos: 43.5,-16.5 - parent: 1 - type: Transform - - uid: 1426 - components: - - pos: 42.5,-16.5 - parent: 1 - type: Transform - - uid: 1441 - components: - - pos: 6.5,-13.5 - parent: 1 - type: Transform - - uid: 1442 - components: - - pos: 5.5,-13.5 - parent: 1 - type: Transform - - uid: 1443 - components: - - pos: 4.5,-13.5 - parent: 1 - type: Transform - - uid: 1444 - components: - - pos: 3.5,-13.5 - parent: 1 - type: Transform - - uid: 1445 - components: - - pos: 3.5,-14.5 - parent: 1 - type: Transform - - uid: 1446 - components: - - pos: 3.5,-15.5 - parent: 1 - type: Transform - - uid: 1447 - components: - - pos: 3.5,-16.5 - parent: 1 - type: Transform - - uid: 1448 - components: - - pos: 3.5,-17.5 - parent: 1 - type: Transform - - uid: 1449 - components: - - pos: 7.5,-13.5 - parent: 1 - type: Transform - - uid: 1450 - components: - - pos: 7.5,-14.5 - parent: 1 - type: Transform - - uid: 1451 - components: - - pos: 7.5,-15.5 - parent: 1 - type: Transform - - uid: 1452 - components: - - pos: 7.5,-16.5 - parent: 1 - type: Transform - - uid: 1456 - components: - - pos: 3.5,-18.5 - parent: 1 - type: Transform - - uid: 1457 - components: - - pos: 4.5,-18.5 - parent: 1 - type: Transform - - uid: 1459 - components: - - pos: 6.5,-18.5 - parent: 1 - type: Transform - - uid: 1460 - components: - - pos: 7.5,-18.5 - parent: 1 - type: Transform - - uid: 1477 - components: - - pos: 27.5,-19.5 - parent: 1 - type: Transform - - uid: 1478 - components: - - pos: 26.5,-19.5 - parent: 1 - type: Transform - - uid: 1479 - components: - - pos: 23.5,-20.5 - parent: 1 - type: Transform - - uid: 1480 - components: - - pos: 24.5,-19.5 - parent: 1 - type: Transform - - uid: 1481 - components: - - pos: 23.5,-19.5 - parent: 1 - type: Transform - - uid: 1482 - components: - - pos: 28.5,-19.5 - parent: 1 - type: Transform - - uid: 1483 - components: - - rot: 3.141592653589793 rad - pos: 28.5,-21.5 - parent: 1 - type: Transform - - uid: 1484 - components: - - pos: 23.5,-21.5 - parent: 1 - type: Transform - - uid: 1485 - components: - - pos: 23.5,-22.5 - parent: 1 - type: Transform - - uid: 1486 - components: - - pos: 24.5,-22.5 - parent: 1 - type: Transform - - uid: 1487 - components: - - pos: 25.5,-22.5 - parent: 1 - type: Transform - - uid: 1488 - components: - - pos: 26.5,-22.5 - parent: 1 - type: Transform - - uid: 1489 - components: - - pos: 27.5,-22.5 - parent: 1 - type: Transform - - uid: 1490 - components: - - pos: 27.5,-21.5 - parent: 1 - type: Transform - - uid: 1491 - components: - - pos: 27.5,-20.5 - parent: 1 - type: Transform - - uid: 1506 - components: - - pos: 5.5,-28.5 - parent: 1 - type: Transform - - uid: 1507 - components: - - pos: 4.5,-28.5 - parent: 1 - type: Transform - - uid: 1511 - components: - - pos: 3.5,-28.5 - parent: 1 - type: Transform - - uid: 1516 - components: - - pos: 7.5,-28.5 - parent: 1 - type: Transform - - uid: 1520 - components: - - pos: 6.5,-28.5 - parent: 1 - type: Transform - - uid: 1525 - components: - - pos: 23.5,-25.5 - parent: 1 - type: Transform - - uid: 1526 - components: - - pos: 23.5,-26.5 - parent: 1 - type: Transform - - uid: 1527 - components: - - pos: 23.5,-27.5 - parent: 1 - type: Transform - - uid: 1532 - components: - - pos: 23.5,-28.5 - parent: 1 - type: Transform - - uid: 1533 - components: - - pos: 22.5,-28.5 - parent: 1 - type: Transform - - uid: 1537 - components: - - pos: 18.5,-28.5 - parent: 1 - type: Transform - - uid: 1538 - components: - - pos: 17.5,-28.5 - parent: 1 - type: Transform - - uid: 1539 - components: - - pos: 16.5,-28.5 - parent: 1 - type: Transform - - uid: 1543 - components: - - pos: 9.5,-31.5 - parent: 1 - type: Transform - - uid: 1544 - components: - - pos: 15.5,-31.5 - parent: 1 - type: Transform - - uid: 1545 - components: - - pos: 9.5,-28.5 - parent: 1 - type: Transform - - uid: 1546 - components: - - pos: 15.5,-28.5 - parent: 1 - type: Transform - - uid: 1547 - components: - - pos: 8.5,-28.5 - parent: 1 - type: Transform - - uid: 1560 - components: - - pos: 27.5,-25.5 - parent: 1 - type: Transform - - uid: 1591 - components: - - pos: -6.5,-19.5 - parent: 1 - type: Transform - - uid: 1592 - components: - - pos: -6.5,-20.5 - parent: 1 - type: Transform - - uid: 1593 - components: - - pos: -6.5,-23.5 - parent: 1 - type: Transform - - uid: 1594 - components: - - pos: -6.5,-21.5 - parent: 1 - type: Transform - - uid: 1595 - components: - - pos: -6.5,-22.5 - parent: 1 - type: Transform - - uid: 1597 - components: - - pos: 9.5,20.5 - parent: 1 - type: Transform - - uid: 1601 - components: - - pos: -8.5,-23.5 - parent: 1 - type: Transform - - uid: 1602 - components: - - pos: -7.5,-23.5 - parent: 1 - type: Transform - - uid: 1603 - components: - - pos: -8.5,-20.5 - parent: 1 - type: Transform - - uid: 1605 - components: - - pos: -0.5,-30.5 - parent: 1 - type: Transform - - uid: 1607 - components: - - pos: -5.5,-31.5 - parent: 1 - type: Transform - - uid: 1609 - components: - - pos: -5.5,-33.5 - parent: 1 - type: Transform - - uid: 1610 - components: - - pos: -0.5,-34.5 - parent: 1 - type: Transform - - uid: 1613 - components: - - pos: -0.5,-33.5 - parent: 1 - type: Transform - - uid: 1615 - components: - - pos: -0.5,-35.5 - parent: 1 - type: Transform - - uid: 1616 - components: - - pos: -1.5,-35.5 - parent: 1 - type: Transform - - uid: 1620 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-28.5 - parent: 1 - type: Transform - - uid: 1634 - components: - - pos: -1.5,-30.5 - parent: 1 - type: Transform - - uid: 1636 - components: - - pos: -3.5,-30.5 - parent: 1 - type: Transform - - uid: 1637 - components: - - pos: -4.5,-30.5 - parent: 1 - type: Transform - - uid: 1638 - components: - - pos: -5.5,-30.5 - parent: 1 - type: Transform - - uid: 1640 - components: - - pos: -7.5,-30.5 - parent: 1 - type: Transform - - uid: 1641 - components: - - pos: -8.5,-30.5 - parent: 1 - type: Transform - - uid: 1642 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-32.5 - parent: 1 - type: Transform - - uid: 1643 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-32.5 - parent: 1 - type: Transform - - uid: 1652 - components: - - pos: -0.5,-31.5 - parent: 1 - type: Transform - - uid: 1653 - components: - - pos: -6.5,-30.5 - parent: 1 - type: Transform - - uid: 1655 - components: - - pos: -2.5,-30.5 - parent: 1 - type: Transform - - uid: 1656 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-32.5 - parent: 1 - type: Transform - - uid: 1657 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-32.5 - parent: 1 - type: Transform - - uid: 1658 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-31.5 - parent: 1 - type: Transform - - uid: 1661 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-32.5 - parent: 1 - type: Transform - - uid: 1662 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-32.5 - parent: 1 - type: Transform - - uid: 1663 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-30.5 - parent: 1 - type: Transform - - uid: 1664 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-32.5 - parent: 1 - type: Transform - - uid: 1665 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-31.5 - parent: 1 - type: Transform - - uid: 1670 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-28.5 - parent: 1 - type: Transform - - uid: 1678 - components: - - pos: 41.5,18.5 - parent: 1 - type: Transform - - uid: 1679 - components: - - pos: 40.5,18.5 - parent: 1 - type: Transform - - uid: 1680 - components: - - pos: -7.5,-21.5 - parent: 1 - type: Transform - - uid: 1681 - components: - - pos: 38.5,18.5 - parent: 1 - type: Transform - - uid: 1683 - components: - - pos: 38.5,20.5 - parent: 1 - type: Transform - - uid: 1684 - components: - - pos: 38.5,21.5 - parent: 1 - type: Transform - - uid: 1685 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,23.5 - parent: 1 - type: Transform - - uid: 1687 - components: - - pos: 38.5,24.5 - parent: 1 - type: Transform - - uid: 1713 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,25.5 - parent: 1 - type: Transform - - uid: 1726 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,30.5 - parent: 1 - type: Transform - - uid: 1727 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,30.5 - parent: 1 - type: Transform - - uid: 1748 - components: - - pos: 11.5,20.5 - parent: 1 - type: Transform - - uid: 1750 - components: - - pos: 11.5,21.5 - parent: 1 - type: Transform - - uid: 1751 - components: - - pos: 23.5,-24.5 - parent: 1 - type: Transform - - uid: 1757 - components: - - pos: 31.5,23.5 - parent: 1 - type: Transform - - uid: 1758 - components: - - pos: 31.5,24.5 - parent: 1 - type: Transform - - uid: 1767 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,26.5 - parent: 1 - type: Transform - - uid: 1768 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,26.5 - parent: 1 - type: Transform - - uid: 1769 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,25.5 - parent: 1 - type: Transform - - uid: 1770 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,25.5 - parent: 1 - type: Transform - - uid: 1771 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,27.5 - parent: 1 - type: Transform - - uid: 1772 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,27.5 - parent: 1 - type: Transform - - uid: 1773 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,27.5 - parent: 1 - type: Transform - - uid: 1779 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,27.5 - parent: 1 - type: Transform - - uid: 1781 - components: - - pos: 27.5,11.5 - parent: 1 - type: Transform - - uid: 1782 - components: - - pos: 26.5,11.5 - parent: 1 - type: Transform - - uid: 1787 - components: - - pos: -18.5,32.5 - parent: 1 - type: Transform - - uid: 1821 - components: - - pos: 9.5,22.5 - parent: 1 - type: Transform - - uid: 1822 - components: - - pos: -18.5,29.5 - parent: 1 - type: Transform - - uid: 1823 - components: - - pos: -19.5,32.5 - parent: 1 - type: Transform - - uid: 1828 - components: - - pos: 11.5,22.5 - parent: 1 - type: Transform - - uid: 1829 - components: - - pos: 10.5,22.5 - parent: 1 - type: Transform - - uid: 1830 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,30.5 - parent: 1 - type: Transform - - uid: 1960 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,28.5 - parent: 1 - type: Transform - - uid: 1963 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,30.5 - parent: 1 - type: Transform - - uid: 1964 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,30.5 - parent: 1 - type: Transform - - uid: 1965 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,29.5 - parent: 1 - type: Transform - - uid: 1966 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,28.5 - parent: 1 - type: Transform - - uid: 1967 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,28.5 - parent: 1 - type: Transform - - uid: 1968 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,28.5 - parent: 1 - type: Transform - - uid: 1969 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,31.5 - parent: 1 - type: Transform - - uid: 1970 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,28.5 - parent: 1 - type: Transform - - uid: 1971 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,28.5 - parent: 1 - type: Transform - - uid: 1972 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,28.5 - parent: 1 - type: Transform - - uid: 1974 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,27.5 - parent: 1 - type: Transform - - uid: 1975 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,26.5 - parent: 1 - type: Transform - - uid: 1976 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,25.5 - parent: 1 - type: Transform - - uid: 1977 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,24.5 - parent: 1 - type: Transform - - uid: 1980 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,21.5 - parent: 1 - type: Transform - - uid: 1981 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,20.5 - parent: 1 - type: Transform - - uid: 1982 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,17.5 - parent: 1 - type: Transform - - uid: 1983 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,17.5 - parent: 1 - type: Transform - - uid: 1986 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,18.5 - parent: 1 - type: Transform - - uid: 2039 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,17.5 - parent: 1 - type: Transform - - uid: 2040 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,18.5 - parent: 1 - type: Transform - - uid: 2041 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,17.5 - parent: 1 - type: Transform - - uid: 2042 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,19.5 - parent: 1 - type: Transform - - uid: 2043 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,20.5 - parent: 1 - type: Transform - - uid: 2044 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,21.5 - parent: 1 - type: Transform - - uid: 2047 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,20.5 - parent: 1 - type: Transform - - uid: 2048 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,20.5 - parent: 1 - type: Transform - - uid: 2049 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,20.5 - parent: 1 - type: Transform - - uid: 2050 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,20.5 - parent: 1 - type: Transform - - uid: 2051 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,21.5 - parent: 1 - type: Transform - - uid: 2052 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,22.5 - parent: 1 - type: Transform - - uid: 2053 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,23.5 - parent: 1 - type: Transform - - uid: 2054 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,23.5 - parent: 1 - type: Transform - - uid: 2055 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,24.5 - parent: 1 - type: Transform - - uid: 2056 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,24.5 - parent: 1 - type: Transform - - uid: 2058 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,24.5 - parent: 1 - type: Transform - - uid: 2059 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,24.5 - parent: 1 - type: Transform - - uid: 2060 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,24.5 - parent: 1 - type: Transform - - uid: 2061 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,24.5 - parent: 1 - type: Transform - - uid: 2062 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,24.5 - parent: 1 - type: Transform - - uid: 2063 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,20.5 - parent: 1 - type: Transform - - uid: 2064 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,20.5 - parent: 1 - type: Transform - - uid: 2065 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,20.5 - parent: 1 - type: Transform - - uid: 2066 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,20.5 - parent: 1 - type: Transform - - uid: 2077 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-8.5 - parent: 1 - type: Transform - - uid: 2090 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,0.5 - parent: 1 - type: Transform - - uid: 2091 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-0.5 - parent: 1 - type: Transform - - uid: 2136 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,16.5 - parent: 1 - type: Transform - - uid: 2138 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-7.5 - parent: 1 - type: Transform - - uid: 2154 - components: - - rot: 3.141592653589793 rad - pos: -42.5,-21.5 - parent: 1 - type: Transform - - uid: 2157 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-28.5 - parent: 1 - type: Transform - - uid: 2161 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-28.5 - parent: 1 - type: Transform - - uid: 2164 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-28.5 - parent: 1 - type: Transform - - uid: 2169 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-29.5 - parent: 1 - type: Transform - - uid: 2173 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-30.5 - parent: 1 - type: Transform - - uid: 2181 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-30.5 - parent: 1 - type: Transform - - uid: 2218 - components: - - rot: 3.141592653589793 rad - pos: -44.5,-13.5 - parent: 1 - type: Transform - - uid: 2220 - components: - - rot: 3.141592653589793 rad - pos: -40.5,-21.5 - parent: 1 - type: Transform - - uid: 2222 - components: - - rot: 3.141592653589793 rad - pos: -44.5,-21.5 - parent: 1 - type: Transform - - uid: 2223 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-21.5 - parent: 1 - type: Transform - - uid: 2224 - components: - - rot: 3.141592653589793 rad - pos: -43.5,-24.5 - parent: 1 - type: Transform - - uid: 2225 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-21.5 - parent: 1 - type: Transform - - uid: 2226 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-21.5 - parent: 1 - type: Transform - - uid: 2227 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-21.5 - parent: 1 - type: Transform - - uid: 2228 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-21.5 - parent: 1 - type: Transform - - uid: 2229 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-21.5 - parent: 1 - type: Transform - - uid: 2230 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-21.5 - parent: 1 - type: Transform - - uid: 2231 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-21.5 - parent: 1 - type: Transform - - uid: 2232 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-21.5 - parent: 1 - type: Transform - - uid: 2236 - components: - - pos: -42.5,-13.5 - parent: 1 - type: Transform - - uid: 2240 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-21.5 - parent: 1 - type: Transform - - uid: 2241 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-22.5 - parent: 1 - type: Transform - - uid: 2242 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-23.5 - parent: 1 - type: Transform - - uid: 2243 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-24.5 - parent: 1 - type: Transform - - uid: 2244 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-25.5 - parent: 1 - type: Transform - - uid: 2245 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-26.5 - parent: 1 - type: Transform - - uid: 2246 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-26.5 - parent: 1 - type: Transform - - uid: 2247 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-26.5 - parent: 1 - type: Transform - - uid: 2248 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-26.5 - parent: 1 - type: Transform - - uid: 2249 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-26.5 - parent: 1 - type: Transform - - uid: 2250 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-27.5 - parent: 1 - type: Transform - - uid: 2264 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-24.5 - parent: 1 - type: Transform - - uid: 2271 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-24.5 - parent: 1 - type: Transform - - uid: 2273 - components: - - rot: 3.141592653589793 rad - pos: -43.5,-22.5 - parent: 1 - type: Transform - - uid: 2274 - components: - - rot: 3.141592653589793 rad - pos: -43.5,-23.5 - parent: 1 - type: Transform - - uid: 2275 - components: - - rot: 3.141592653589793 rad - pos: -36.5,-23.5 - parent: 1 - type: Transform - - uid: 2276 - components: - - rot: 3.141592653589793 rad - pos: -36.5,-22.5 - parent: 1 - type: Transform - - uid: 2278 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,26.5 - parent: 1 - type: Transform - - uid: 2297 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,31.5 - parent: 1 - type: Transform - - uid: 2299 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,29.5 - parent: 1 - type: Transform - - uid: 2300 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,31.5 - parent: 1 - type: Transform - - uid: 2301 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,29.5 - parent: 1 - type: Transform - - uid: 2305 - components: - - pos: 39.5,24.5 - parent: 1 - type: Transform - - uid: 2306 - components: - - pos: 40.5,24.5 - parent: 1 - type: Transform - - uid: 2307 - components: - - pos: 41.5,24.5 - parent: 1 - type: Transform - - uid: 2308 - components: - - pos: 42.5,24.5 - parent: 1 - type: Transform - - uid: 2309 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,20.5 - parent: 1 - type: Transform - - uid: 2311 - components: - - pos: 8.5,34.5 - parent: 1 - type: Transform - - uid: 2312 - components: - - pos: 7.5,34.5 - parent: 1 - type: Transform - - uid: 2313 - components: - - pos: 7.5,33.5 - parent: 1 - type: Transform - - uid: 2316 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,34.5 - parent: 1 - type: Transform - - uid: 2317 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,34.5 - parent: 1 - type: Transform - - uid: 2318 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,34.5 - parent: 1 - type: Transform - - uid: 2319 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,34.5 - parent: 1 - type: Transform - - uid: 2324 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,34.5 - parent: 1 - type: Transform - - uid: 2326 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,35.5 - parent: 1 - type: Transform - - uid: 2327 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,36.5 - parent: 1 - type: Transform - - uid: 2329 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,36.5 - parent: 1 - type: Transform - - uid: 2330 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,35.5 - parent: 1 - type: Transform - - uid: 2360 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,25.5 - parent: 1 - type: Transform - - uid: 2361 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,25.5 - parent: 1 - type: Transform - - uid: 2362 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,24.5 - parent: 1 - type: Transform - - uid: 2368 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,28.5 - parent: 1 - type: Transform - - uid: 2370 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,24.5 - parent: 1 - type: Transform - - uid: 2371 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,23.5 - parent: 1 - type: Transform - - uid: 2372 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,22.5 - parent: 1 - type: Transform - - uid: 2373 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,22.5 - parent: 1 - type: Transform - - uid: 2379 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,22.5 - parent: 1 - type: Transform - - uid: 2381 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,23.5 - parent: 1 - type: Transform - - uid: 2422 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,34.5 - parent: 1 - type: Transform - - uid: 2427 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,26.5 - parent: 1 - type: Transform - - uid: 2428 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,27.5 - parent: 1 - type: Transform - - uid: 2429 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,27.5 - parent: 1 - type: Transform - - uid: 2430 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,28.5 - parent: 1 - type: Transform - - uid: 2434 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,28.5 - parent: 1 - type: Transform - - uid: 2435 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,28.5 - parent: 1 - type: Transform - - uid: 2436 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,28.5 - parent: 1 - type: Transform - - uid: 2437 - components: - - rot: 3.141592653589793 rad - pos: -44.5,-14.5 - parent: 1 - type: Transform - - uid: 2439 - components: - - rot: 3.141592653589793 rad - pos: -44.5,-15.5 - parent: 1 - type: Transform - - uid: 2440 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-21.5 - parent: 1 - type: Transform - - uid: 2443 - components: - - rot: 3.141592653589793 rad - pos: -44.5,-20.5 - parent: 1 - type: Transform - - uid: 2444 - components: - - rot: 3.141592653589793 rad - pos: -43.5,-21.5 - parent: 1 - type: Transform - - uid: 2654 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,44.5 - parent: 1 - type: Transform - - uid: 2655 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,43.5 - parent: 1 - type: Transform - - uid: 2656 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,44.5 - parent: 1 - type: Transform - - uid: 2657 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,45.5 - parent: 1 - type: Transform - - uid: 2658 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,48.5 - parent: 1 - type: Transform - - uid: 2660 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,43.5 - parent: 1 - type: Transform - - uid: 2661 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,47.5 - parent: 1 - type: Transform - - uid: 2663 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,43.5 - parent: 1 - type: Transform - - uid: 2664 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,46.5 - parent: 1 - type: Transform - - uid: 2665 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,48.5 - parent: 1 - type: Transform - - uid: 2666 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,46.5 - parent: 1 - type: Transform - - uid: 2667 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,49.5 - parent: 1 - type: Transform - - uid: 2668 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,47.5 - parent: 1 - type: Transform - - uid: 2669 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,43.5 - parent: 1 - type: Transform - - uid: 2670 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,47.5 - parent: 1 - type: Transform - - uid: 2671 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,47.5 - parent: 1 - type: Transform - - uid: 2672 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,43.5 - parent: 1 - type: Transform - - uid: 2673 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,43.5 - parent: 1 - type: Transform - - uid: 2674 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,44.5 - parent: 1 - type: Transform - - uid: 2676 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,46.5 - parent: 1 - type: Transform - - uid: 2677 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,43.5 - parent: 1 - type: Transform - - uid: 2678 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,43.5 - parent: 1 - type: Transform - - uid: 2679 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,43.5 - parent: 1 - type: Transform - - uid: 2680 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,43.5 - parent: 1 - type: Transform - - uid: 2681 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,44.5 - parent: 1 - type: Transform - - uid: 2682 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,45.5 - parent: 1 - type: Transform - - uid: 2683 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,46.5 - parent: 1 - type: Transform - - uid: 2684 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,47.5 - parent: 1 - type: Transform - - uid: 2686 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,47.5 - parent: 1 - type: Transform - - uid: 2687 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,47.5 - parent: 1 - type: Transform - - uid: 2692 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,51.5 - parent: 1 - type: Transform - - uid: 2693 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,50.5 - parent: 1 - type: Transform - - uid: 2694 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,51.5 - parent: 1 - type: Transform - - uid: 2695 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,50.5 - parent: 1 - type: Transform - - uid: 2696 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,54.5 - parent: 1 - type: Transform - - uid: 2697 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,53.5 - parent: 1 - type: Transform - - uid: 2698 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,54.5 - parent: 1 - type: Transform - - uid: 2699 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,53.5 - parent: 1 - type: Transform - - uid: 2700 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,47.5 - parent: 1 - type: Transform - - uid: 2701 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,47.5 - parent: 1 - type: Transform - - uid: 2702 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,50.5 - parent: 1 - type: Transform - - uid: 2703 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,51.5 - parent: 1 - type: Transform - - uid: 2704 - components: - - pos: -12.5,52.5 - parent: 1 - type: Transform - - uid: 2705 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,53.5 - parent: 1 - type: Transform - - uid: 2706 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,54.5 - parent: 1 - type: Transform - - uid: 2707 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,55.5 - parent: 1 - type: Transform - - uid: 2708 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,56.5 - parent: 1 - type: Transform - - uid: 2709 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,56.5 - parent: 1 - type: Transform - - uid: 2710 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,57.5 - parent: 1 - type: Transform - - uid: 2711 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,57.5 - parent: 1 - type: Transform - - uid: 2712 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,57.5 - parent: 1 - type: Transform - - uid: 2713 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,57.5 - parent: 1 - type: Transform - - uid: 2714 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,57.5 - parent: 1 - type: Transform - - uid: 2715 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,57.5 - parent: 1 - type: Transform - - uid: 2716 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,57.5 - parent: 1 - type: Transform - - uid: 2717 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,57.5 - parent: 1 - type: Transform - - uid: 2718 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,57.5 - parent: 1 - type: Transform - - uid: 2719 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,56.5 - parent: 1 - type: Transform - - uid: 2720 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,56.5 - parent: 1 - type: Transform - - uid: 2721 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,55.5 - parent: 1 - type: Transform - - uid: 2722 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,54.5 - parent: 1 - type: Transform - - uid: 2723 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,53.5 - parent: 1 - type: Transform - - uid: 2724 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,48.5 - parent: 1 - type: Transform - - uid: 2725 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,51.5 - parent: 1 - type: Transform - - uid: 2726 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,50.5 - parent: 1 - type: Transform - - uid: 2727 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,49.5 - parent: 1 - type: Transform - - uid: 2728 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,48.5 - parent: 1 - type: Transform - - uid: 2729 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,48.5 - parent: 1 - type: Transform - - uid: 2730 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,48.5 - parent: 1 - type: Transform - - uid: 2731 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,48.5 - parent: 1 - type: Transform - - uid: 2732 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,56.5 - parent: 1 - type: Transform - - uid: 2733 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,55.5 - parent: 1 - type: Transform - - uid: 2734 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,54.5 - parent: 1 - type: Transform - - uid: 2735 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,53.5 - parent: 1 - type: Transform - - uid: 2736 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,52.5 - parent: 1 - type: Transform - - uid: 2737 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,51.5 - parent: 1 - type: Transform - - uid: 2738 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,50.5 - parent: 1 - type: Transform - - uid: 2739 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,49.5 - parent: 1 - type: Transform - - uid: 2740 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,56.5 - parent: 1 - type: Transform - - uid: 2741 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,56.5 - parent: 1 - type: Transform - - uid: 2742 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,56.5 - parent: 1 - type: Transform - - uid: 2743 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,56.5 - parent: 1 - type: Transform - - uid: 2744 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,56.5 - parent: 1 - type: Transform - - uid: 2745 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,48.5 - parent: 1 - type: Transform - - uid: 2746 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,48.5 - parent: 1 - type: Transform - - uid: 2747 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,48.5 - parent: 1 - type: Transform - - uid: 2969 - components: - - pos: -24.5,-28.5 - parent: 1 - type: Transform - - uid: 2985 - components: - - pos: -21.5,-30.5 - parent: 1 - type: Transform - - uid: 2986 - components: - - pos: -24.5,-30.5 - parent: 1 - type: Transform - - uid: 2987 - components: - - pos: -5.5,-35.5 - parent: 1 - type: Transform - - uid: 2994 - components: - - pos: -5.5,-34.5 - parent: 1 - type: Transform - - uid: 2996 - components: - - pos: -8.5,-34.5 - parent: 1 - type: Transform - - uid: 2997 - components: - - pos: -8.5,-33.5 - parent: 1 - type: Transform - - uid: 3000 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-35.5 - parent: 1 - type: Transform - - uid: 3002 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-34.5 - parent: 1 - type: Transform - - uid: 3003 - components: - - pos: -2.5,-35.5 - parent: 1 - type: Transform - - uid: 3004 - components: - - pos: -3.5,-35.5 - parent: 1 - type: Transform - - uid: 3005 - components: - - pos: -4.5,-35.5 - parent: 1 - type: Transform - - uid: 3072 - components: - - rot: 3.141592653589793 rad - pos: -43.5,-13.5 - parent: 1 - type: Transform - - uid: 3080 - components: - - rot: 3.141592653589793 rad - pos: -43.5,-25.5 - parent: 1 - type: Transform - - uid: 3081 - components: - - rot: 3.141592653589793 rad - pos: -42.5,-25.5 - parent: 1 - type: Transform - - uid: 3082 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-25.5 - parent: 1 - type: Transform - - uid: 3083 - components: - - rot: 3.141592653589793 rad - pos: -40.5,-25.5 - parent: 1 - type: Transform - - uid: 3084 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-25.5 - parent: 1 - type: Transform - - uid: 3085 - components: - - rot: 3.141592653589793 rad - pos: -38.5,-25.5 - parent: 1 - type: Transform - - uid: 3086 - components: - - rot: 3.141592653589793 rad - pos: -38.5,-24.5 - parent: 1 - type: Transform - - uid: 3087 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-24.5 - parent: 1 - type: Transform - - uid: 3352 - components: - - rot: 3.141592653589793 rad - pos: 29.5,-21.5 - parent: 1 - type: Transform - - uid: 3353 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-21.5 - parent: 1 - type: Transform - - uid: 3622 - components: - - pos: 1.5,47.5 - parent: 1 - type: Transform - - uid: 3623 - components: - - pos: 1.5,46.5 - parent: 1 - type: Transform - - uid: 3624 - components: - - pos: 2.5,47.5 - parent: 1 - type: Transform - - uid: 3625 - components: - - pos: 3.5,47.5 - parent: 1 - type: Transform - - uid: 3626 - components: - - pos: 4.5,47.5 - parent: 1 - type: Transform - - uid: 3627 - components: - - pos: 5.5,47.5 - parent: 1 - type: Transform - - uid: 3628 - components: - - pos: 5.5,48.5 - parent: 1 - type: Transform - - uid: 3629 - components: - - pos: 5.5,49.5 - parent: 1 - type: Transform - - uid: 3630 - components: - - pos: 5.5,50.5 - parent: 1 - type: Transform - - uid: 3631 - components: - - pos: 5.5,51.5 - parent: 1 - type: Transform - - uid: 3632 - components: - - pos: 5.5,52.5 - parent: 1 - type: Transform - - uid: 3633 - components: - - pos: 5.5,53.5 - parent: 1 - type: Transform - - uid: 3634 - components: - - pos: 5.5,54.5 - parent: 1 - type: Transform - - uid: 3635 - components: - - pos: 5.5,55.5 - parent: 1 - type: Transform - - uid: 3636 - components: - - pos: 5.5,56.5 - parent: 1 - type: Transform - - uid: 3637 - components: - - pos: 5.5,57.5 - parent: 1 - type: Transform - - uid: 3638 - components: - - pos: 4.5,57.5 - parent: 1 - type: Transform - - uid: 3639 - components: - - pos: 3.5,57.5 - parent: 1 - type: Transform - - uid: 3640 - components: - - pos: 2.5,57.5 - parent: 1 - type: Transform - - uid: 3641 - components: - - pos: 1.5,57.5 - parent: 1 - type: Transform - - uid: 3642 - components: - - pos: 0.5,57.5 - parent: 1 - type: Transform - - uid: 3643 - components: - - pos: -0.5,57.5 - parent: 1 - type: Transform - - uid: 3644 - components: - - pos: -1.5,57.5 - parent: 1 - type: Transform - - uid: 3645 - components: - - pos: -1.5,58.5 - parent: 1 - type: Transform - - uid: 3646 - components: - - pos: -2.5,58.5 - parent: 1 - type: Transform - - uid: 3647 - components: - - pos: -3.5,58.5 - parent: 1 - type: Transform - - uid: 3648 - components: - - pos: -4.5,58.5 - parent: 1 - type: Transform - - uid: 3649 - components: - - pos: -5.5,58.5 - parent: 1 - type: Transform - - uid: 3650 - components: - - pos: -6.5,58.5 - parent: 1 - type: Transform - - uid: 3651 - components: - - pos: -7.5,58.5 - parent: 1 - type: Transform - - uid: 3652 - components: - - pos: -8.5,58.5 - parent: 1 - type: Transform - - uid: 3653 - components: - - pos: -9.5,58.5 - parent: 1 - type: Transform - - uid: 3654 - components: - - pos: -10.5,58.5 - parent: 1 - type: Transform - - uid: 3655 - components: - - pos: -11.5,58.5 - parent: 1 - type: Transform - - uid: 3656 - components: - - pos: -11.5,57.5 - parent: 1 - type: Transform - - uid: 3657 - components: - - pos: -12.5,57.5 - parent: 1 - type: Transform - - uid: 3658 - components: - - pos: -12.5,56.5 - parent: 1 - type: Transform - - uid: 3659 - components: - - pos: -12.5,55.5 - parent: 1 - type: Transform - - uid: 3660 - components: - - pos: -12.5,54.5 - parent: 1 - type: Transform - - uid: 3661 - components: - - pos: -12.5,53.5 - parent: 1 - type: Transform - - uid: 3663 - components: - - pos: -12.5,51.5 - parent: 1 - type: Transform - - uid: 3664 - components: - - pos: -12.5,50.5 - parent: 1 - type: Transform - - uid: 3665 - components: - - pos: -12.5,49.5 - parent: 1 - type: Transform - - uid: 3666 - components: - - pos: -12.5,48.5 - parent: 1 - type: Transform - - uid: 3667 - components: - - pos: -12.5,47.5 - parent: 1 - type: Transform - - uid: 3668 - components: - - pos: -11.5,47.5 - parent: 1 - type: Transform - - uid: 3669 - components: - - pos: -11.5,46.5 - parent: 1 - type: Transform - - uid: 3847 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,32.5 - parent: 1 - type: Transform - - uid: 3849 - components: - - pos: 30.5,32.5 - parent: 1 - type: Transform - - uid: 4808 - components: - - pos: 43.5,24.5 - parent: 1 - type: Transform - - uid: 4811 - components: - - rot: 1.5707963267948966 rad - pos: 48.5,23.5 - parent: 1 - type: Transform - - uid: 4812 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,23.5 - parent: 1 - type: Transform - - uid: 4813 - components: - - rot: 1.5707963267948966 rad - pos: 48.5,21.5 - parent: 1 - type: Transform - - uid: 4814 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,21.5 - parent: 1 - type: Transform - - uid: 4819 - components: - - pos: 47.5,24.5 - parent: 1 - type: Transform - - uid: 4832 - components: - - pos: 47.5,29.5 - parent: 1 - type: Transform - - uid: 4840 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,34.5 - parent: 1 - type: Transform - - uid: 4863 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,35.5 - parent: 1 - type: Transform - - uid: 4871 - components: - - rot: 3.141592653589793 rad - pos: 47.5,35.5 - parent: 1 - type: Transform - - uid: 4872 - components: - - rot: 1.5707963267948966 rad - pos: 46.5,35.5 - parent: 1 - type: Transform - - uid: 4880 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,30.5 - parent: 1 - type: Transform - - uid: 5548 - components: - - pos: -42.5,-12.5 - parent: 1 - type: Transform - - uid: 5859 - components: - - pos: -23.5,-30.5 - parent: 1 - type: Transform - - uid: 5860 - components: - - pos: -20.5,-30.5 - parent: 1 - type: Transform - - uid: 5861 - components: - - pos: -20.5,-29.5 - parent: 1 - type: Transform - - uid: 6823 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-1.5 - parent: 1 - type: Transform - - uid: 6987 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-2.5 - parent: 1 - type: Transform - - uid: 6989 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-1.5 - parent: 1 - type: Transform - - uid: 7070 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-34.5 - parent: 1 - type: Transform - - uid: 7071 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-34.5 - parent: 1 - type: Transform - - uid: 7072 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-35.5 - parent: 1 - type: Transform - - uid: 7656 - components: - - pos: 12.5,34.5 - parent: 1 - type: Transform - - uid: 8260 - components: - - pos: -11.5,52.5 - parent: 1 - type: Transform - - uid: 9198 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,23.5 - parent: 1 - type: Transform - - uid: 9663 - components: - - pos: -19.5,31.5 - parent: 1 - type: Transform - - uid: 10647 - components: - - pos: 26.5,28.5 - parent: 1 - type: Transform - - uid: 12292 - components: - - rot: 3.141592653589793 rad - pos: -1.5,63.5 - parent: 1 - type: Transform - - uid: 12293 - components: - - rot: 3.141592653589793 rad - pos: -1.5,64.5 - parent: 1 - type: Transform - - uid: 12294 - components: - - rot: 3.141592653589793 rad - pos: -2.5,64.5 - parent: 1 - type: Transform - - uid: 12295 - components: - - rot: 3.141592653589793 rad - pos: -2.5,65.5 - parent: 1 - type: Transform - - uid: 12296 - components: - - rot: 3.141592653589793 rad - pos: -2.5,66.5 - parent: 1 - type: Transform - - uid: 12297 - components: - - rot: 3.141592653589793 rad - pos: -1.5,67.5 - parent: 1 - type: Transform - - uid: 12298 - components: - - rot: 3.141592653589793 rad - pos: -0.5,67.5 - parent: 1 - type: Transform - - uid: 12299 - components: - - rot: 3.141592653589793 rad - pos: 0.5,67.5 - parent: 1 - type: Transform - - uid: 12300 - components: - - rot: 3.141592653589793 rad - pos: 1.5,66.5 - parent: 1 - type: Transform - - uid: 12301 - components: - - rot: 3.141592653589793 rad - pos: 1.5,65.5 - parent: 1 - type: Transform - - uid: 12302 - components: - - rot: 3.141592653589793 rad - pos: 1.5,64.5 - parent: 1 - type: Transform - - uid: 12303 - components: - - rot: 3.141592653589793 rad - pos: 0.5,64.5 - parent: 1 - type: Transform - - uid: 12304 - components: - - rot: 3.141592653589793 rad - pos: 0.5,63.5 - parent: 1 - type: Transform - - uid: 12305 - components: - - rot: 3.141592653589793 rad - pos: -0.5,63.5 - parent: 1 - type: Transform - - uid: 12306 - components: - - rot: 3.141592653589793 rad - pos: -1.5,66.5 - parent: 1 - type: Transform - - uid: 12307 - components: - - rot: 3.141592653589793 rad - pos: 0.5,66.5 - parent: 1 - type: Transform - - uid: 12553 - components: - - rot: 3.141592653589793 rad - pos: -0.5,25.5 - parent: 1 - type: Transform -- proto: WallSolid - entities: - - uid: 2 - components: - - pos: -0.5,3.5 - parent: 1 - type: Transform - - uid: 3 - components: - - pos: -0.5,4.5 - parent: 1 - type: Transform - - uid: 4 - components: - - pos: -1.5,4.5 - parent: 1 - type: Transform - - uid: 5 - components: - - pos: -2.5,4.5 - parent: 1 - type: Transform - - uid: 6 - components: - - pos: -3.5,4.5 - parent: 1 - type: Transform - - uid: 7 - components: - - pos: -3.5,3.5 - parent: 1 - type: Transform - - uid: 8 - components: - - pos: -3.5,1.5 - parent: 1 - type: Transform - - uid: 9 - components: - - pos: -3.5,0.5 - parent: 1 - type: Transform - - uid: 10 - components: - - pos: -2.5,0.5 - parent: 1 - type: Transform - - uid: 11 - components: - - pos: -1.5,0.5 - parent: 1 - type: Transform - - uid: 12 - components: - - pos: -0.5,0.5 - parent: 1 - type: Transform - - uid: 13 - components: - - pos: -0.5,1.5 - parent: 1 - type: Transform - - uid: 14 - components: - - pos: -3.5,-0.5 - parent: 1 - type: Transform - - uid: 15 - components: - - pos: -3.5,-6.5 - parent: 1 - type: Transform - - uid: 16 - components: - - pos: 6.5,-6.5 - parent: 1 - type: Transform - - uid: 17 - components: - - pos: 6.5,-0.5 - parent: 1 - type: Transform - - uid: 18 - components: - - pos: 5.5,-0.5 - parent: 1 - type: Transform - - uid: 19 - components: - - pos: 2.5,-0.5 - parent: 1 - type: Transform - - uid: 20 - components: - - pos: -1.5,-6.5 - parent: 1 - type: Transform - - uid: 21 - components: - - pos: -2.5,-6.5 - parent: 1 - type: Transform - - uid: 22 - components: - - pos: -0.5,-0.5 - parent: 1 - type: Transform - - uid: 35 - components: - - pos: -3.5,-5.5 - parent: 1 - type: Transform - - uid: 36 - components: - - pos: -3.5,-1.5 - parent: 1 - type: Transform - - uid: 38 - components: - - pos: 6.5,-1.5 - parent: 1 - type: Transform - - uid: 44 - components: - - pos: -0.5,-6.5 - parent: 1 - type: Transform - - uid: 48 - components: - - pos: -3.5,-4.5 - parent: 1 - type: Transform - - uid: 52 - components: - - pos: 0.5,-6.5 - parent: 1 - type: Transform - - uid: 54 - components: - - pos: 1.5,-6.5 - parent: 1 - type: Transform - - uid: 55 - components: - - pos: 6.5,4.5 - parent: 1 - type: Transform - - uid: 68 - components: - - pos: 0.5,4.5 - parent: 1 - type: Transform - - uid: 69 - components: - - pos: -0.5,13.5 - parent: 1 - type: Transform - - uid: 70 - components: - - pos: -3.5,10.5 - parent: 1 - type: Transform - - uid: 71 - components: - - pos: 6.5,10.5 - parent: 1 - type: Transform - - uid: 72 - components: - - pos: 3.5,13.5 - parent: 1 - type: Transform - - uid: 93 - components: - - pos: 6.5,7.5 - parent: 1 - type: Transform - - uid: 94 - components: - - pos: -3.5,7.5 - parent: 1 - type: Transform - - uid: 103 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,0.5 - parent: 1 - type: Transform - - uid: 149 - components: - - pos: -3.5,17.5 - parent: 1 - type: Transform - - uid: 150 - components: - - pos: -6.5,17.5 - parent: 1 - type: Transform - - uid: 151 - components: - - pos: -6.5,15.5 - parent: 1 - type: Transform - - uid: 157 - components: - - pos: -9.5,18.5 - parent: 1 - type: Transform - - uid: 158 - components: - - pos: -9.5,19.5 - parent: 1 - type: Transform - - uid: 172 - components: - - pos: -10.5,7.5 - parent: 1 - type: Transform - - uid: 175 - components: - - pos: -7.5,7.5 - parent: 1 - type: Transform - - uid: 192 - components: - - pos: -27.5,13.5 - parent: 1 - type: Transform - - uid: 216 - components: - - pos: -10.5,4.5 - parent: 1 - type: Transform - - uid: 218 - components: - - pos: -16.5,4.5 - parent: 1 - type: Transform - - uid: 221 - components: - - pos: -13.5,4.5 - parent: 1 - type: Transform - - uid: 222 - components: - - pos: -16.5,7.5 - parent: 1 - type: Transform - - uid: 223 - components: - - pos: -13.5,7.5 - parent: 1 - type: Transform - - uid: 224 - components: - - pos: -19.5,7.5 - parent: 1 - type: Transform - - uid: 227 - components: - - pos: -19.5,4.5 - parent: 1 - type: Transform - - uid: 235 - components: - - pos: -22.5,17.5 - parent: 1 - type: Transform - - uid: 256 - components: - - pos: -24.5,12.5 - parent: 1 - type: Transform - - uid: 257 - components: - - pos: -25.5,12.5 - parent: 1 - type: Transform - - uid: 258 - components: - - pos: -26.5,12.5 - parent: 1 - type: Transform - - uid: 259 - components: - - pos: -27.5,12.5 - parent: 1 - type: Transform - - uid: 271 - components: - - pos: -30.5,5.5 - parent: 1 - type: Transform - - uid: 272 - components: - - pos: -30.5,4.5 - parent: 1 - type: Transform - - uid: 277 - components: - - pos: -30.5,6.5 - parent: 1 - type: Transform - - uid: 278 - components: - - pos: -30.5,7.5 - parent: 1 - type: Transform - - uid: 279 - components: - - pos: -30.5,8.5 - parent: 1 - type: Transform - - uid: 280 - components: - - pos: -30.5,9.5 - parent: 1 - type: Transform - - uid: 281 - components: - - pos: -30.5,10.5 - parent: 1 - type: Transform - - uid: 282 - components: - - pos: -30.5,11.5 - parent: 1 - type: Transform - - uid: 283 - components: - - pos: -30.5,12.5 - parent: 1 - type: Transform - - uid: 284 - components: - - pos: -30.5,13.5 - parent: 1 - type: Transform - - uid: 285 - components: - - pos: -30.5,14.5 - parent: 1 - type: Transform - - uid: 286 - components: - - pos: -24.5,17.5 - parent: 1 - type: Transform - - uid: 287 - components: - - pos: -25.5,17.5 - parent: 1 - type: Transform - - uid: 288 - components: - - pos: -26.5,17.5 - parent: 1 - type: Transform - - uid: 289 - components: - - pos: -27.5,17.5 - parent: 1 - type: Transform - - uid: 290 - components: - - pos: -27.5,16.5 - parent: 1 - type: Transform - - uid: 291 - components: - - pos: -27.5,15.5 - parent: 1 - type: Transform - - uid: 292 - components: - - pos: -27.5,14.5 - parent: 1 - type: Transform - - uid: 293 - components: - - pos: -22.5,12.5 - parent: 1 - type: Transform - - uid: 294 - components: - - pos: -27.5,11.5 - parent: 1 - type: Transform - - uid: 295 - components: - - pos: -27.5,9.5 - parent: 1 - type: Transform - - uid: 296 - components: - - pos: -29.5,5.5 - parent: 1 - type: Transform - - uid: 297 - components: - - pos: -9.5,20.5 - parent: 1 - type: Transform - - uid: 298 - components: - - pos: -9.5,21.5 - parent: 1 - type: Transform - - uid: 299 - components: - - pos: -9.5,22.5 - parent: 1 - type: Transform - - uid: 300 - components: - - pos: -10.5,22.5 - parent: 1 - type: Transform - - uid: 301 - components: - - pos: -11.5,22.5 - parent: 1 - type: Transform - - uid: 302 - components: - - pos: -12.5,22.5 - parent: 1 - type: Transform - - uid: 303 - components: - - pos: -18.5,21.5 - parent: 1 - type: Transform - - uid: 304 - components: - - pos: -14.5,22.5 - parent: 1 - type: Transform - - uid: 305 - components: - - pos: -15.5,22.5 - parent: 1 - type: Transform - - uid: 306 - components: - - pos: -16.5,22.5 - parent: 1 - type: Transform - - uid: 307 - components: - - pos: -17.5,22.5 - parent: 1 - type: Transform - - uid: 308 - components: - - pos: -18.5,22.5 - parent: 1 - type: Transform - - uid: 309 - components: - - pos: -18.5,20.5 - parent: 1 - type: Transform - - uid: 310 - components: - - pos: -18.5,19.5 - parent: 1 - type: Transform - - uid: 311 - components: - - pos: -18.5,18.5 - parent: 1 - type: Transform - - uid: 407 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,16.5 - parent: 1 - type: Transform - - uid: 417 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,27.5 - parent: 1 - type: Transform - - uid: 418 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,26.5 - parent: 1 - type: Transform - - uid: 419 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,26.5 - parent: 1 - type: Transform - - uid: 421 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,26.5 - parent: 1 - type: Transform - - uid: 435 - components: - - pos: -14.5,23.5 - parent: 1 - type: Transform - - uid: 436 - components: - - pos: -18.5,23.5 - parent: 1 - type: Transform - - uid: 443 - components: - - rot: 3.141592653589793 rad - pos: -7.5,0.5 - parent: 1 - type: Transform - - uid: 444 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-4.5 - parent: 1 - type: Transform - - uid: 456 - components: - - rot: 3.141592653589793 rad - pos: -14.5,0.5 - parent: 1 - type: Transform - - uid: 459 - components: - - rot: 3.141592653589793 rad - pos: -15.5,0.5 - parent: 1 - type: Transform - - uid: 461 - components: - - rot: 3.141592653589793 rad - pos: -16.5,0.5 - parent: 1 - type: Transform - - uid: 462 - components: - - rot: 3.141592653589793 rad - pos: -17.5,0.5 - parent: 1 - type: Transform - - uid: 463 - components: - - rot: 3.141592653589793 rad - pos: -13.5,0.5 - parent: 1 - type: Transform - - uid: 464 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-4.5 - parent: 1 - type: Transform - - uid: 465 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-10.5 - parent: 1 - type: Transform - - uid: 466 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-7.5 - parent: 1 - type: Transform - - uid: 468 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-12.5 - parent: 1 - type: Transform - - uid: 469 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-10.5 - parent: 1 - type: Transform - - uid: 470 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-10.5 - parent: 1 - type: Transform - - uid: 472 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-7.5 - parent: 1 - type: Transform - - uid: 475 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-10.5 - parent: 1 - type: Transform - - uid: 476 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-10.5 - parent: 1 - type: Transform - - uid: 486 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-4.5 - parent: 1 - type: Transform - - uid: 495 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-12.5 - parent: 1 - type: Transform - - uid: 496 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-14.5 - parent: 1 - type: Transform - - uid: 497 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-15.5 - parent: 1 - type: Transform - - uid: 498 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-13.5 - parent: 1 - type: Transform - - uid: 499 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-14.5 - parent: 1 - type: Transform - - uid: 500 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-8.5 - parent: 1 - type: Transform - - uid: 501 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-9.5 - parent: 1 - type: Transform - - uid: 502 - components: - - rot: 3.141592653589793 rad - pos: -12.5,-16.5 - parent: 1 - type: Transform - - uid: 505 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-10.5 - parent: 1 - type: Transform - - uid: 506 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-11.5 - parent: 1 - type: Transform - - uid: 507 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-15.5 - parent: 1 - type: Transform - - uid: 508 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-11.5 - parent: 1 - type: Transform - - uid: 509 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-16.5 - parent: 1 - type: Transform - - uid: 510 - components: - - rot: 3.141592653589793 rad - pos: -12.5,-16.5 - parent: 1 - type: Transform - - uid: 511 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-13.5 - parent: 1 - type: Transform - - uid: 512 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-16.5 - parent: 1 - type: Transform - - uid: 513 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-16.5 - parent: 1 - type: Transform - - uid: 514 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-16.5 - parent: 1 - type: Transform - - uid: 515 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-16.5 - parent: 1 - type: Transform - - uid: 516 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-16.5 - parent: 1 - type: Transform - - uid: 517 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-16.5 - parent: 1 - type: Transform - - uid: 518 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-16.5 - parent: 1 - type: Transform - - uid: 519 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-16.5 - parent: 1 - type: Transform - - uid: 566 - components: - - rot: 3.141592653589793 rad - pos: -18.5,0.5 - parent: 1 - type: Transform - - uid: 576 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-7.5 - parent: 1 - type: Transform - - uid: 604 - components: - - pos: -14.5,-11.5 - parent: 1 - type: Transform - - uid: 632 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-17.5 - parent: 1 - type: Transform - - uid: 633 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-18.5 - parent: 1 - type: Transform - - uid: 634 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-19.5 - parent: 1 - type: Transform - - uid: 635 - components: - - rot: 3.141592653589793 rad - pos: -20.5,-19.5 - parent: 1 - type: Transform - - uid: 636 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-19.5 - parent: 1 - type: Transform - - uid: 637 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-19.5 - parent: 1 - type: Transform - - uid: 638 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-19.5 - parent: 1 - type: Transform - - uid: 639 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-19.5 - parent: 1 - type: Transform - - uid: 640 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-19.5 - parent: 1 - type: Transform - - uid: 641 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-19.5 - parent: 1 - type: Transform - - uid: 642 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-19.5 - parent: 1 - type: Transform - - uid: 643 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-18.5 - parent: 1 - type: Transform - - uid: 745 - components: - - rot: 3.141592653589793 rad - pos: 7.5,18.5 - parent: 1 - type: Transform - - uid: 746 - components: - - rot: 3.141592653589793 rad - pos: 9.5,18.5 - parent: 1 - type: Transform - - uid: 747 - components: - - rot: 3.141592653589793 rad - pos: 9.5,17.5 - parent: 1 - type: Transform - - uid: 813 - components: - - pos: 30.5,4.5 - parent: 1 - type: Transform - - uid: 815 - components: - - pos: 32.5,4.5 - parent: 1 - type: Transform - - uid: 816 - components: - - pos: 33.5,4.5 - parent: 1 - type: Transform - - uid: 817 - components: - - pos: 34.5,4.5 - parent: 1 - type: Transform - - uid: 818 - components: - - pos: 35.5,4.5 - parent: 1 - type: Transform - - uid: 869 - components: - - pos: -26.5,25.5 - parent: 1 - type: Transform - - uid: 871 - components: - - pos: 25.5,17.5 - parent: 1 - type: Transform - - uid: 879 - components: - - pos: 36.5,4.5 - parent: 1 - type: Transform - - uid: 880 - components: - - pos: 37.5,4.5 - parent: 1 - type: Transform - - uid: 881 - components: - - pos: 37.5,5.5 - parent: 1 - type: Transform - - uid: 882 - components: - - pos: 38.5,5.5 - parent: 1 - type: Transform - - uid: 883 - components: - - pos: 39.5,5.5 - parent: 1 - type: Transform - - uid: 884 - components: - - pos: 40.5,5.5 - parent: 1 - type: Transform - - uid: 885 - components: - - pos: 41.5,5.5 - parent: 1 - type: Transform - - uid: 886 - components: - - pos: 42.5,5.5 - parent: 1 - type: Transform - - uid: 985 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,0.5 - parent: 1 - type: Transform - - uid: 986 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-18.5 - parent: 1 - type: Transform - - uid: 987 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,0.5 - parent: 1 - type: Transform - - uid: 988 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-18.5 - parent: 1 - type: Transform - - uid: 989 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,0.5 - parent: 1 - type: Transform - - uid: 990 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-0.5 - parent: 1 - type: Transform - - uid: 991 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-18.5 - parent: 1 - type: Transform - - uid: 992 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-18.5 - parent: 1 - type: Transform - - uid: 993 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,0.5 - parent: 1 - type: Transform - - uid: 994 - components: - - pos: 17.5,0.5 - parent: 1 - type: Transform - - uid: 995 - components: - - rot: 3.141592653589793 rad - pos: 18.5,0.5 - parent: 1 - type: Transform - - uid: 997 - components: - - pos: 20.5,0.5 - parent: 1 - type: Transform - - uid: 998 - components: - - pos: 21.5,0.5 - parent: 1 - type: Transform - - uid: 999 - components: - - pos: 22.5,0.5 - parent: 1 - type: Transform - - uid: 1000 - components: - - pos: 23.5,0.5 - parent: 1 - type: Transform - - uid: 1001 - components: - - pos: 24.5,0.5 - parent: 1 - type: Transform - - uid: 1002 - components: - - pos: 25.5,0.5 - parent: 1 - type: Transform - - uid: 1003 - components: - - pos: 26.5,0.5 - parent: 1 - type: Transform - - uid: 1004 - components: - - pos: 27.5,0.5 - parent: 1 - type: Transform - - uid: 1005 - components: - - pos: 28.5,0.5 - parent: 1 - type: Transform - - uid: 1006 - components: - - pos: 29.5,0.5 - parent: 1 - type: Transform - - uid: 1008 - components: - - pos: 31.5,0.5 - parent: 1 - type: Transform - - uid: 1009 - components: - - pos: 32.5,0.5 - parent: 1 - type: Transform - - uid: 1010 - components: - - pos: 33.5,0.5 - parent: 1 - type: Transform - - uid: 1011 - components: - - pos: 34.5,0.5 - parent: 1 - type: Transform - - uid: 1012 - components: - - pos: 35.5,0.5 - parent: 1 - type: Transform - - uid: 1013 - components: - - pos: 36.5,0.5 - parent: 1 - type: Transform - - uid: 1014 - components: - - pos: 37.5,0.5 - parent: 1 - type: Transform - - uid: 1015 - components: - - pos: 38.5,0.5 - parent: 1 - type: Transform - - uid: 1016 - components: - - pos: 39.5,0.5 - parent: 1 - type: Transform - - uid: 1017 - components: - - pos: 40.5,0.5 - parent: 1 - type: Transform - - uid: 1018 - components: - - pos: 41.5,0.5 - parent: 1 - type: Transform - - uid: 1019 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-3.5 - parent: 1 - type: Transform - - uid: 1020 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-2.5 - parent: 1 - type: Transform - - uid: 1022 - components: - - pos: 14.5,-2.5 - parent: 1 - type: Transform - - uid: 1023 - components: - - pos: 15.5,-2.5 - parent: 1 - type: Transform - - uid: 1025 - components: - - pos: 17.5,-2.5 - parent: 1 - type: Transform - - uid: 1026 - components: - - pos: 18.5,-2.5 - parent: 1 - type: Transform - - uid: 1027 - components: - - pos: 19.5,-2.5 - parent: 1 - type: Transform - - uid: 1028 - components: - - pos: 10.5,-9.5 - parent: 1 - type: Transform - - uid: 1032 - components: - - pos: 14.5,-9.5 - parent: 1 - type: Transform - - uid: 1033 - components: - - pos: 14.5,-8.5 - parent: 1 - type: Transform - - uid: 1034 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-3.5 - parent: 1 - type: Transform - - uid: 1036 - components: - - pos: 14.5,-5.5 - parent: 1 - type: Transform - - uid: 1038 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-3.5 - parent: 1 - type: Transform - - uid: 1039 - components: - - pos: 3.5,-10.5 - parent: 1 - type: Transform - - uid: 1040 - components: - - pos: 4.5,-10.5 - parent: 1 - type: Transform - - uid: 1041 - components: - - pos: 5.5,-10.5 - parent: 1 - type: Transform - - uid: 1042 - components: - - pos: 6.5,-10.5 - parent: 1 - type: Transform - - uid: 1043 - components: - - pos: 7.5,-10.5 - parent: 1 - type: Transform - - uid: 1044 - components: - - pos: 8.5,-10.5 - parent: 1 - type: Transform - - uid: 1045 - components: - - pos: 9.5,-10.5 - parent: 1 - type: Transform - - uid: 1046 - components: - - pos: 10.5,-10.5 - parent: 1 - type: Transform - - uid: 1050 - components: - - pos: 17.5,-8.5 - parent: 1 - type: Transform - - uid: 1051 - components: - - pos: 17.5,-5.5 - parent: 1 - type: Transform - - uid: 1054 - components: - - pos: 10.5,-11.5 - parent: 1 - type: Transform - - uid: 1055 - components: - - pos: 10.5,-12.5 - parent: 1 - type: Transform - - uid: 1056 - components: - - pos: 10.5,-13.5 - parent: 1 - type: Transform - - uid: 1057 - components: - - pos: 11.5,-13.5 - parent: 1 - type: Transform - - uid: 1058 - components: - - pos: 12.5,-13.5 - parent: 1 - type: Transform - - uid: 1060 - components: - - pos: 14.5,-13.5 - parent: 1 - type: Transform - - uid: 1065 - components: - - pos: 17.5,-9.5 - parent: 1 - type: Transform - - uid: 1083 - components: - - pos: 21.5,-9.5 - parent: 1 - type: Transform - - uid: 1090 - components: - - pos: 21.5,-2.5 - parent: 1 - type: Transform - - uid: 1091 - components: - - pos: 22.5,-2.5 - parent: 1 - type: Transform - - uid: 1092 - components: - - pos: 23.5,-2.5 - parent: 1 - type: Transform - - uid: 1221 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,18.5 - parent: 1 - type: Transform - - uid: 1230 - components: - - pos: 43.5,4.5 - parent: 1 - type: Transform - - uid: 1231 - components: - - pos: 43.5,5.5 - parent: 1 - type: Transform - - uid: 1232 - components: - - pos: 43.5,6.5 - parent: 1 - type: Transform - - uid: 1233 - components: - - pos: 43.5,7.5 - parent: 1 - type: Transform - - uid: 1234 - components: - - pos: 43.5,8.5 - parent: 1 - type: Transform - - uid: 1235 - components: - - pos: 43.5,9.5 - parent: 1 - type: Transform - - uid: 1236 - components: - - pos: 43.5,10.5 - parent: 1 - type: Transform - - uid: 1237 - components: - - pos: 43.5,11.5 - parent: 1 - type: Transform - - uid: 1238 - components: - - pos: 43.5,12.5 - parent: 1 - type: Transform - - uid: 1239 - components: - - pos: 43.5,13.5 - parent: 1 - type: Transform - - uid: 1240 - components: - - pos: 43.5,14.5 - parent: 1 - type: Transform - - uid: 1242 - components: - - pos: 43.5,16.5 - parent: 1 - type: Transform - - uid: 1243 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,17.5 - parent: 1 - type: Transform - - uid: 1248 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,0.5 - parent: 1 - type: Transform - - uid: 1249 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,0.5 - parent: 1 - type: Transform - - uid: 1453 - components: - - pos: 8.5,-16.5 - parent: 1 - type: Transform - - uid: 1455 - components: - - pos: 10.5,-16.5 - parent: 1 - type: Transform - - uid: 1462 - components: - - pos: 11.5,-16.5 - parent: 1 - type: Transform - - uid: 1463 - components: - - pos: 12.5,-16.5 - parent: 1 - type: Transform - - uid: 1464 - components: - - pos: 12.5,-17.5 - parent: 1 - type: Transform - - uid: 1465 - components: - - pos: 12.5,-18.5 - parent: 1 - type: Transform - - uid: 1466 - components: - - pos: 12.5,-19.5 - parent: 1 - type: Transform - - uid: 1467 - components: - - pos: 13.5,-19.5 - parent: 1 - type: Transform - - uid: 1468 - components: - - pos: 14.5,-19.5 - parent: 1 - type: Transform - - uid: 1470 - components: - - pos: 16.5,-19.5 - parent: 1 - type: Transform - - uid: 1471 - components: - - pos: 17.5,-19.5 - parent: 1 - type: Transform - - uid: 1472 - components: - - pos: 18.5,-19.5 - parent: 1 - type: Transform - - uid: 1473 - components: - - pos: 19.5,-19.5 - parent: 1 - type: Transform - - uid: 1474 - components: - - pos: 20.5,-19.5 - parent: 1 - type: Transform - - uid: 1476 - components: - - pos: 22.5,-19.5 - parent: 1 - type: Transform - - uid: 1495 - components: - - pos: -1.5,-10.5 - parent: 1 - type: Transform - - uid: 1496 - components: - - pos: -2.5,-10.5 - parent: 1 - type: Transform - - uid: 1498 - components: - - pos: 7.5,-24.5 - parent: 1 - type: Transform - - uid: 1503 - components: - - pos: 3.5,-24.5 - parent: 1 - type: Transform - - uid: 1504 - components: - - pos: 3.5,-25.5 - parent: 1 - type: Transform - - uid: 1521 - components: - - pos: 3.5,-27.5 - parent: 1 - type: Transform - - uid: 1567 - components: - - pos: 12.5,-24.5 - parent: 1 - type: Transform - - uid: 1576 - components: - - pos: -0.5,-10.5 - parent: 1 - type: Transform - - uid: 1577 - components: - - pos: 4.5,-12.5 - parent: 1 - type: Transform - - uid: 1578 - components: - - pos: -0.5,-12.5 - parent: 1 - type: Transform - - uid: 1579 - components: - - pos: -0.5,-13.5 - parent: 1 - type: Transform - - uid: 1580 - components: - - pos: -0.5,-14.5 - parent: 1 - type: Transform - - uid: 1581 - components: - - pos: -0.5,-15.5 - parent: 1 - type: Transform - - uid: 1582 - components: - - pos: -0.5,-16.5 - parent: 1 - type: Transform - - uid: 1583 - components: - - pos: -0.5,-17.5 - parent: 1 - type: Transform - - uid: 1584 - components: - - pos: -0.5,-18.5 - parent: 1 - type: Transform - - uid: 1585 - components: - - pos: -0.5,-19.5 - parent: 1 - type: Transform - - uid: 1586 - components: - - pos: -1.5,-19.5 - parent: 1 - type: Transform - - uid: 1587 - components: - - pos: -2.5,-19.5 - parent: 1 - type: Transform - - uid: 1588 - components: - - pos: -3.5,-19.5 - parent: 1 - type: Transform - - uid: 1589 - components: - - pos: -4.5,-19.5 - parent: 1 - type: Transform - - uid: 1590 - components: - - pos: -5.5,-19.5 - parent: 1 - type: Transform - - uid: 1596 - components: - - pos: -9.5,-17.5 - parent: 1 - type: Transform - - uid: 1599 - components: - - pos: -10.5,-20.5 - parent: 1 - type: Transform - - uid: 1600 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-23.5 - parent: 1 - type: Transform - - uid: 1606 - components: - - pos: -0.5,-28.5 - parent: 1 - type: Transform - - uid: 1612 - components: - - pos: -0.5,-29.5 - parent: 1 - type: Transform - - uid: 1621 - components: - - pos: -0.5,-23.5 - parent: 1 - type: Transform - - uid: 1633 - components: - - pos: -0.5,-27.5 - parent: 1 - type: Transform - - uid: 1635 - components: - - pos: -4.5,-28.5 - parent: 1 - type: Transform - - uid: 1639 - components: - - pos: -4.5,-27.5 - parent: 1 - type: Transform - - uid: 1644 - components: - - pos: -4.5,-29.5 - parent: 1 - type: Transform - - uid: 1645 - components: - - pos: -3.5,-27.5 - parent: 1 - type: Transform - - uid: 1646 - components: - - pos: -1.5,-27.5 - parent: 1 - type: Transform - - uid: 1647 - components: - - pos: -5.5,-27.5 - parent: 1 - type: Transform - - uid: 1648 - components: - - pos: -7.5,-27.5 - parent: 1 - type: Transform - - uid: 1649 - components: - - pos: -8.5,-27.5 - parent: 1 - type: Transform - - uid: 1650 - components: - - pos: -8.5,-28.5 - parent: 1 - type: Transform - - uid: 1651 - components: - - pos: -8.5,-29.5 - parent: 1 - type: Transform - - uid: 1659 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-27.5 - parent: 1 - type: Transform - - uid: 1660 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-27.5 - parent: 1 - type: Transform - - uid: 1667 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-23.5 - parent: 1 - type: Transform - - uid: 1668 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-23.5 - parent: 1 - type: Transform - - uid: 1669 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-23.5 - parent: 1 - type: Transform - - uid: 1671 - components: - - pos: -12.5,-19.5 - parent: 1 - type: Transform - - uid: 1672 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-28.5 - parent: 1 - type: Transform - - uid: 1673 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-27.5 - parent: 1 - type: Transform - - uid: 1674 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-27.5 - parent: 1 - type: Transform - - uid: 1675 - components: - - pos: -12.5,-20.5 - parent: 1 - type: Transform - - uid: 1676 - components: - - pos: -16.5,-20.5 - parent: 1 - type: Transform - - uid: 1677 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,18.5 - parent: 1 - type: Transform - - uid: 1682 - components: - - pos: 38.5,17.5 - parent: 1 - type: Transform - - uid: 1689 - components: - - rot: 3.141592653589793 rad - pos: 38.5,25.5 - parent: 1 - type: Transform - - uid: 1690 - components: - - rot: 3.141592653589793 rad - pos: 38.5,27.5 - parent: 1 - type: Transform - - uid: 1691 - components: - - rot: 3.141592653589793 rad - pos: 38.5,28.5 - parent: 1 - type: Transform - - uid: 1692 - components: - - rot: 3.141592653589793 rad - pos: 38.5,29.5 - parent: 1 - type: Transform - - uid: 1693 - components: - - rot: 3.141592653589793 rad - pos: 38.5,30.5 - parent: 1 - type: Transform - - uid: 1694 - components: - - rot: 3.141592653589793 rad - pos: 38.5,34.5 - parent: 1 - type: Transform - - uid: 1695 - components: - - rot: 3.141592653589793 rad - pos: 38.5,33.5 - parent: 1 - type: Transform - - uid: 1696 - components: - - rot: 3.141592653589793 rad - pos: 38.5,32.5 - parent: 1 - type: Transform - - uid: 1759 - components: - - pos: -26.5,25.5 - parent: 1 - type: Transform - - uid: 1760 - components: - - pos: -25.5,25.5 - parent: 1 - type: Transform - - uid: 1761 - components: - - pos: -26.5,19.5 - parent: 1 - type: Transform - - uid: 1762 - components: - - pos: -22.5,25.5 - parent: 1 - type: Transform - - uid: 1774 - components: - - pos: -21.5,22.5 - parent: 1 - type: Transform - - uid: 1777 - components: - - pos: -21.5,24.5 - parent: 1 - type: Transform - - uid: 1778 - components: - - pos: -21.5,23.5 - parent: 1 - type: Transform - - uid: 1783 - components: - - pos: -21.5,25.5 - parent: 1 - type: Transform - - uid: 1784 - components: - - pos: -27.5,20.5 - parent: 1 - type: Transform - - uid: 1789 - components: - - pos: -27.5,19.5 - parent: 1 - type: Transform - - uid: 1791 - components: - - pos: -27.5,21.5 - parent: 1 - type: Transform - - uid: 1809 - components: - - pos: -27.5,25.5 - parent: 1 - type: Transform - - uid: 1819 - components: - - pos: -27.5,24.5 - parent: 1 - type: Transform - - uid: 1820 - components: - - pos: -22.5,19.5 - parent: 1 - type: Transform - - uid: 1826 - components: - - pos: -21.5,19.5 - parent: 1 - type: Transform - - uid: 1827 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-27.5 - parent: 1 - type: Transform - - uid: 1831 - components: - - pos: -21.5,20.5 - parent: 1 - type: Transform - - uid: 1833 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-3.5 - parent: 1 - type: Transform - - uid: 1834 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-0.5 - parent: 1 - type: Transform - - uid: 1835 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,0.5 - parent: 1 - type: Transform - - uid: 1840 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-3.5 - parent: 1 - type: Transform - - uid: 1984 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,17.5 - parent: 1 - type: Transform - - uid: 1985 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,16.5 - parent: 1 - type: Transform - - uid: 1996 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-0.5 - parent: 1 - type: Transform - - uid: 1997 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-0.5 - parent: 1 - type: Transform - - uid: 1998 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-0.5 - parent: 1 - type: Transform - - uid: 1999 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-0.5 - parent: 1 - type: Transform - - uid: 2000 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-0.5 - parent: 1 - type: Transform - - uid: 2002 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,11.5 - parent: 1 - type: Transform - - uid: 2003 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,10.5 - parent: 1 - type: Transform - - uid: 2004 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,9.5 - parent: 1 - type: Transform - - uid: 2005 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,8.5 - parent: 1 - type: Transform - - uid: 2006 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,7.5 - parent: 1 - type: Transform - - uid: 2007 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,6.5 - parent: 1 - type: Transform - - uid: 2008 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,5.5 - parent: 1 - type: Transform - - uid: 2009 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,4.5 - parent: 1 - type: Transform - - uid: 2019 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,12.5 - parent: 1 - type: Transform - - uid: 2020 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,14.5 - parent: 1 - type: Transform - - uid: 2021 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,12.5 - parent: 1 - type: Transform - - uid: 2022 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,12.5 - parent: 1 - type: Transform - - uid: 2023 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,12.5 - parent: 1 - type: Transform - - uid: 2024 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,12.5 - parent: 1 - type: Transform - - uid: 2025 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,14.5 - parent: 1 - type: Transform - - uid: 2026 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,12.5 - parent: 1 - type: Transform - - uid: 2027 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,14.5 - parent: 1 - type: Transform - - uid: 2028 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,13.5 - parent: 1 - type: Transform - - uid: 2029 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,14.5 - parent: 1 - type: Transform - - uid: 2030 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,14.5 - parent: 1 - type: Transform - - uid: 2032 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,17.5 - parent: 1 - type: Transform - - uid: 2033 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,17.5 - parent: 1 - type: Transform - - uid: 2034 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,17.5 - parent: 1 - type: Transform - - uid: 2035 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,17.5 - parent: 1 - type: Transform - - uid: 2036 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,17.5 - parent: 1 - type: Transform - - uid: 2037 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,16.5 - parent: 1 - type: Transform - - uid: 2038 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,15.5 - parent: 1 - type: Transform - - uid: 2095 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-1.5 - parent: 1 - type: Transform - - uid: 2096 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-2.5 - parent: 1 - type: Transform - - uid: 2097 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-3.5 - parent: 1 - type: Transform - - uid: 2098 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-4.5 - parent: 1 - type: Transform - - uid: 2099 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-5.5 - parent: 1 - type: Transform - - uid: 2100 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-9.5 - parent: 1 - type: Transform - - uid: 2101 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-7.5 - parent: 1 - type: Transform - - uid: 2112 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,0.5 - parent: 1 - type: Transform - - uid: 2113 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,0.5 - parent: 1 - type: Transform - - uid: 2137 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,16.5 - parent: 1 - type: Transform - - uid: 2139 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-8.5 - parent: 1 - type: Transform - - uid: 2140 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-8.5 - parent: 1 - type: Transform - - uid: 2141 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-10.5 - parent: 1 - type: Transform - - uid: 2142 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-8.5 - parent: 1 - type: Transform - - uid: 2143 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-9.5 - parent: 1 - type: Transform - - uid: 2144 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-8.5 - parent: 1 - type: Transform - - uid: 2145 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-8.5 - parent: 1 - type: Transform - - uid: 2146 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-8.5 - parent: 1 - type: Transform - - uid: 2147 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-11.5 - parent: 1 - type: Transform - - uid: 2148 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-11.5 - parent: 1 - type: Transform - - uid: 2149 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-11.5 - parent: 1 - type: Transform - - uid: 2150 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-11.5 - parent: 1 - type: Transform - - uid: 2151 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-11.5 - parent: 1 - type: Transform - - uid: 2153 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-20.5 - parent: 1 - type: Transform - - uid: 2155 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-27.5 - parent: 1 - type: Transform - - uid: 2156 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-27.5 - parent: 1 - type: Transform - - uid: 2158 - components: - - pos: -20.5,-27.5 - parent: 1 - type: Transform - - uid: 2160 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-29.5 - parent: 1 - type: Transform - - uid: 2162 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-26.5 - parent: 1 - type: Transform - - uid: 2163 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-26.5 - parent: 1 - type: Transform - - uid: 2165 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-23.5 - parent: 1 - type: Transform - - uid: 2166 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-23.5 - parent: 1 - type: Transform - - uid: 2167 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-23.5 - parent: 1 - type: Transform - - uid: 2168 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-23.5 - parent: 1 - type: Transform - - uid: 2170 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-23.5 - parent: 1 - type: Transform - - uid: 2171 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-24.5 - parent: 1 - type: Transform - - uid: 2172 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-26.5 - parent: 1 - type: Transform - - uid: 2174 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-11.5 - parent: 1 - type: Transform - - uid: 2175 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-12.5 - parent: 1 - type: Transform - - uid: 2176 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-23.5 - parent: 1 - type: Transform - - uid: 2177 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-25.5 - parent: 1 - type: Transform - - uid: 2178 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-26.5 - parent: 1 - type: Transform - - uid: 2179 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-13.5 - parent: 1 - type: Transform - - uid: 2180 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-10.5 - parent: 1 - type: Transform - - uid: 2182 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-14.5 - parent: 1 - type: Transform - - uid: 2183 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-11.5 - parent: 1 - type: Transform - - uid: 2184 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-11.5 - parent: 1 - type: Transform - - uid: 2185 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-11.5 - parent: 1 - type: Transform - - uid: 2187 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-11.5 - parent: 1 - type: Transform - - uid: 2188 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-18.5 - parent: 1 - type: Transform - - uid: 2189 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-14.5 - parent: 1 - type: Transform - - uid: 2190 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-14.5 - parent: 1 - type: Transform - - uid: 2191 - components: - - rot: 3.141592653589793 rad - pos: -34.5,-14.5 - parent: 1 - type: Transform - - uid: 2192 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-24.5 - parent: 1 - type: Transform - - uid: 2193 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-18.5 - parent: 1 - type: Transform - - uid: 2194 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-14.5 - parent: 1 - type: Transform - - uid: 2195 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-21.5 - parent: 1 - type: Transform - - uid: 2196 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-19.5 - parent: 1 - type: Transform - - uid: 2197 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-18.5 - parent: 1 - type: Transform - - uid: 2198 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-18.5 - parent: 1 - type: Transform - - uid: 2199 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-19.5 - parent: 1 - type: Transform - - uid: 2200 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-20.5 - parent: 1 - type: Transform - - uid: 2202 - components: - - rot: 3.141592653589793 rad - pos: -35.5,-14.5 - parent: 1 - type: Transform - - uid: 2204 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-13.5 - parent: 1 - type: Transform - - uid: 2205 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-15.5 - parent: 1 - type: Transform - - uid: 2206 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-16.5 - parent: 1 - type: Transform - - uid: 2207 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-16.5 - parent: 1 - type: Transform - - uid: 2208 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-15.5 - parent: 1 - type: Transform - - uid: 2209 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-17.5 - parent: 1 - type: Transform - - uid: 2210 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-11.5 - parent: 1 - type: Transform - - uid: 2211 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-12.5 - parent: 1 - type: Transform - - uid: 2212 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-17.5 - parent: 1 - type: Transform - - uid: 2213 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-18.5 - parent: 1 - type: Transform - - uid: 2214 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-18.5 - parent: 1 - type: Transform - - uid: 2215 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-18.5 - parent: 1 - type: Transform - - uid: 2216 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-18.5 - parent: 1 - type: Transform - - uid: 2237 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-17.5 - parent: 1 - type: Transform - - uid: 2238 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-18.5 - parent: 1 - type: Transform - - uid: 2239 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-19.5 - parent: 1 - type: Transform - - uid: 2251 - components: - - pos: -23.5,-27.5 - parent: 1 - type: Transform - - uid: 2253 - components: - - pos: -21.5,-27.5 - parent: 1 - type: Transform - - uid: 2254 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-23.5 - parent: 1 - type: Transform - - uid: 2256 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-24.5 - parent: 1 - type: Transform - - uid: 2257 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-23.5 - parent: 1 - type: Transform - - uid: 2258 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-23.5 - parent: 1 - type: Transform - - uid: 2259 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-23.5 - parent: 1 - type: Transform - - uid: 2261 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-23.5 - parent: 1 - type: Transform - - uid: 2310 - components: - - pos: 12.5,31.5 - parent: 1 - type: Transform - - uid: 2314 - components: - - pos: 9.5,31.5 - parent: 1 - type: Transform - - uid: 2315 - components: - - pos: 13.5,31.5 - parent: 1 - type: Transform - - uid: 2320 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,31.5 - parent: 1 - type: Transform - - uid: 2322 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,32.5 - parent: 1 - type: Transform - - uid: 2323 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,33.5 - parent: 1 - type: Transform - - uid: 2343 - components: - - rot: 3.141592653589793 rad - pos: 38.5,31.5 - parent: 1 - type: Transform - - uid: 2344 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,19.5 - parent: 1 - type: Transform - - uid: 2345 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,19.5 - parent: 1 - type: Transform - - uid: 2346 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,19.5 - parent: 1 - type: Transform - - uid: 2347 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,19.5 - parent: 1 - type: Transform - - uid: 2348 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,19.5 - parent: 1 - type: Transform - - uid: 2349 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,19.5 - parent: 1 - type: Transform - - uid: 2350 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,20.5 - parent: 1 - type: Transform - - uid: 2352 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,22.5 - parent: 1 - type: Transform - - uid: 2353 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,23.5 - parent: 1 - type: Transform - - uid: 2354 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,24.5 - parent: 1 - type: Transform - - uid: 2355 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,24.5 - parent: 1 - type: Transform - - uid: 2356 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,25.5 - parent: 1 - type: Transform - - uid: 2357 - components: - - rot: 3.141592653589793 rad - pos: 19.5,26.5 - parent: 1 - type: Transform - - uid: 2358 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,27.5 - parent: 1 - type: Transform - - uid: 2359 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,28.5 - parent: 1 - type: Transform - - uid: 2364 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,28.5 - parent: 1 - type: Transform - - uid: 2365 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,28.5 - parent: 1 - type: Transform - - uid: 2366 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,28.5 - parent: 1 - type: Transform - - uid: 2367 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,28.5 - parent: 1 - type: Transform - - uid: 2378 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,19.5 - parent: 1 - type: Transform - - uid: 2380 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,19.5 - parent: 1 - type: Transform - - uid: 2418 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,31.5 - parent: 1 - type: Transform - - uid: 2419 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,31.5 - parent: 1 - type: Transform - - uid: 2420 - components: - - pos: 13.5,32.5 - parent: 1 - type: Transform - - uid: 2421 - components: - - pos: 13.5,33.5 - parent: 1 - type: Transform - - uid: 2423 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,31.5 - parent: 1 - type: Transform - - uid: 2424 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,31.5 - parent: 1 - type: Transform - - uid: 2425 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,31.5 - parent: 1 - type: Transform - - uid: 2431 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,24.5 - parent: 1 - type: Transform - - uid: 2432 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,24.5 - parent: 1 - type: Transform - - uid: 2433 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,24.5 - parent: 1 - type: Transform - - uid: 2441 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-25.5 - parent: 1 - type: Transform - - uid: 3074 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-16.5 - parent: 1 - type: Transform - - uid: 3076 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-14.5 - parent: 1 - type: Transform - - uid: 3077 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-13.5 - parent: 1 - type: Transform - - uid: 3078 - components: - - rot: 3.141592653589793 rad - pos: -40.5,-13.5 - parent: 1 - type: Transform - - uid: 3079 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-13.5 - parent: 1 - type: Transform - - uid: 3110 - components: - - pos: -14.5,-15.5 - parent: 1 - type: Transform - - uid: 3152 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,4.5 - parent: 1 - type: Transform - - uid: 3483 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-21.5 - parent: 1 - type: Transform - - uid: 3484 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-21.5 - parent: 1 - type: Transform - - uid: 3485 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-22.5 - parent: 1 - type: Transform - - uid: 3500 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,1.5 - parent: 1 - type: Transform - - uid: 3549 - components: - - rot: 3.141592653589793 rad - pos: -30.5,-11.5 - parent: 1 - type: Transform - - uid: 5345 - components: - - pos: -32.5,-14.5 - parent: 1 - type: Transform - - uid: 6616 - components: - - pos: 16.5,-2.5 - parent: 1 - type: Transform - - uid: 7237 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-26.5 - parent: 1 - type: Transform - - uid: 8323 - components: - - pos: 11.5,31.5 - parent: 1 - type: Transform - - uid: 8325 - components: - - pos: 8.5,31.5 - parent: 1 - type: Transform -- proto: WallSolidRust - entities: - - uid: 9058 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-28.5 - parent: 1 - type: Transform - - uid: 11950 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,19.5 - parent: 1 - type: Transform -- proto: WallWood - entities: - - uid: 2759 - components: - - pos: -10.5,-54.5 - parent: 1 - type: Transform - - uid: 2760 - components: - - pos: -10.5,-53.5 - parent: 1 - type: Transform - - uid: 2768 - components: - - pos: -10.5,-51.5 - parent: 1 - type: Transform - - uid: 2770 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-47.5 - parent: 1 - type: Transform - - uid: 2771 - components: - - pos: -18.5,-54.5 - parent: 1 - type: Transform - - uid: 2773 - components: - - pos: -11.5,-54.5 - parent: 1 - type: Transform - - uid: 2774 - components: - - pos: -10.5,-48.5 - parent: 1 - type: Transform - - uid: 2775 - components: - - pos: -12.5,-45.5 - parent: 1 - type: Transform - - uid: 2776 - components: - - pos: -10.5,-45.5 - parent: 1 - type: Transform - - uid: 2777 - components: - - pos: -10.5,-46.5 - parent: 1 - type: Transform - - uid: 2779 - components: - - pos: -12.5,-47.5 - parent: 1 - type: Transform - - uid: 2780 - components: - - pos: -11.5,-45.5 - parent: 1 - type: Transform - - uid: 2788 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-51.5 - parent: 1 - type: Transform - - uid: 2789 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-47.5 - parent: 1 - type: Transform - - uid: 2791 - components: - - pos: -15.5,-47.5 - parent: 1 - type: Transform - - uid: 2798 - components: - - pos: -10.5,-52.5 - parent: 1 - type: Transform - - uid: 2801 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-51.5 - parent: 1 - type: Transform - - uid: 2803 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-51.5 - parent: 1 - type: Transform - - uid: 2805 - components: - - pos: -17.5,-54.5 - parent: 1 - type: Transform - - uid: 2808 - components: - - pos: -10.5,-50.5 - parent: 1 - type: Transform - - uid: 2854 - components: - - pos: -10.5,-49.5 - parent: 1 - type: Transform - - uid: 2858 - components: - - pos: -14.5,-47.5 - parent: 1 - type: Transform - - uid: 2859 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-47.5 - parent: 1 - type: Transform - - uid: 2860 - components: - - pos: -13.5,-47.5 - parent: 1 - type: Transform - - uid: 2861 - components: - - pos: -10.5,-47.5 - parent: 1 - type: Transform - - uid: 2872 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-47.5 - parent: 1 - type: Transform - - uid: 2873 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-45.5 - parent: 1 - type: Transform - - uid: 2926 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-50.5 - parent: 1 - type: Transform - - uid: 2932 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-48.5 - parent: 1 - type: Transform -- proto: WardrobeCargoFilled - entities: - - uid: 7240 - components: - - pos: 4.5,-25.5 - parent: 1 - type: Transform -- proto: WardrobeChapelFilled - entities: - - uid: 3479 - components: - - pos: -33.5,14.5 - parent: 1 - type: Transform -- proto: WardrobePrisonFilled - entities: - - uid: 1815 - components: - - pos: 24.5,28.5 - parent: 1 - type: Transform - - uid: 1816 - components: - - pos: 24.5,24.5 - parent: 1 - type: Transform - - uid: 5444 - components: - - pos: 18.5,5.5 - parent: 1 - type: Transform - - uid: 5445 - components: - - pos: 15.5,5.5 - parent: 1 - type: Transform - - uid: 5446 - components: - - pos: 12.5,5.5 - parent: 1 - type: Transform -- proto: WardrobeRobotics - entities: - - uid: 661 - components: - - pos: -12.5,-13.5 - parent: 1 - type: Transform -- proto: WarningCO2 - entities: - - uid: 6969 - components: - - rot: 3.141592653589793 rad - pos: 42.5,-8.5 - parent: 1 - type: Transform -- proto: WarningN2 - entities: - - uid: 6967 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-4.5 - parent: 1 - type: Transform -- proto: WarningN2O - entities: - - uid: 6971 - components: - - rot: 3.141592653589793 rad - pos: 42.5,-10.5 - parent: 1 - type: Transform -- proto: WarningO2 - entities: - - uid: 6968 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-6.5 - parent: 1 - type: Transform -- proto: WarningPlasma - entities: - - uid: 6970 - components: - - rot: 3.141592653589793 rad - pos: 42.5,-14.5 - parent: 1 - type: Transform -- proto: WarningTritium - entities: - - uid: 6972 - components: - - rot: 3.141592653589793 rad - pos: 42.5,-16.5 - parent: 1 - type: Transform -- proto: WarningWaste - entities: - - uid: 6973 - components: - - rot: 3.141592653589793 rad - pos: 42.5,-12.5 - parent: 1 - type: Transform -- proto: WarpPoint - entities: - - uid: 12045 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,10.5 - parent: 1 - type: Transform - - location: bar - type: WarpPoint - - uid: 12046 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,29.5 - parent: 1 - type: Transform - - location: bridge - type: WarpPoint - - uid: 12047 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,52.5 - parent: 1 - type: Transform - - location: ai sat - type: WarpPoint - - uid: 12048 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,10.5 - parent: 1 - type: Transform - - location: med - type: WarpPoint - - uid: 12049 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-3.5 - parent: 1 - type: Transform - - location: sci - type: WarpPoint - - uid: 12050 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-6.5 - parent: 1 - type: Transform - - location: engi - type: WarpPoint - - uid: 12051 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-10.5 - parent: 1 - type: Transform - - location: atmos - type: WarpPoint - - uid: 12052 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,34.5 - parent: 1 - type: Transform - - location: abandoned evac dock - type: WarpPoint - - uid: 12053 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,13.5 - parent: 1 - type: Transform - - location: sec - type: WarpPoint - - uid: 12054 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,31.5 - parent: 1 - type: Transform - - location: courthouse - type: WarpPoint - - uid: 12055 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,10.5 - parent: 1 - type: Transform - - location: arrivals - type: WarpPoint - - uid: 12056 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-25.5 - parent: 1 - type: Transform - - location: cargo - type: WarpPoint - - uid: 12057 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-25.5 - parent: 1 - type: Transform - - location: dorms - type: WarpPoint - - uid: 12058 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,8.5 - parent: 1 - type: Transform - - location: evac - type: WarpPoint -- proto: WaterCooler - entities: - - uid: 4856 - components: - - pos: 39.5,25.5 - parent: 1 - type: Transform - - uid: 6396 - components: - - pos: -12.5,-18.5 - parent: 1 - type: Transform -- proto: WaterTankFull - entities: - - uid: 4948 - components: - - pos: 33.5,28.5 - parent: 1 - type: Transform - - uid: 7665 - components: - - pos: 13.5,-0.5 - parent: 1 - type: Transform - - uid: 8853 - components: - - pos: -30.5,-10.5 - parent: 1 - type: Transform - - uid: 8859 - components: - - pos: -7.5,-17.5 - parent: 1 - type: Transform - - uid: 9140 - components: - - pos: 14.5,-18.5 - parent: 1 - type: Transform - - uid: 9177 - components: - - pos: 24.5,-0.5 - parent: 1 - type: Transform - - uid: 9377 - components: - - pos: 11.5,17.5 - parent: 1 - type: Transform - - uid: 9378 - components: - - pos: 21.5,26.5 - parent: 1 - type: Transform - - uid: 9536 - components: - - pos: 35.5,7.5 - parent: 1 - type: Transform - - uid: 9690 - components: - - pos: -13.5,25.5 - parent: 1 - type: Transform - - uid: 9710 - components: - - pos: -28.5,14.5 - parent: 1 - type: Transform -- proto: WaterTankHighCapacity - entities: - - uid: 6009 - components: - - pos: -2.5,-5.5 - parent: 1 - type: Transform -- proto: WaterVaporCanister - entities: - - uid: 6811 - components: - - pos: 43.5,-13.5 - parent: 1 - type: Transform -- proto: WeaponCapacitorRecharger - entities: - - uid: 780 - components: - - pos: 16.5,12.5 - parent: 1 - type: Transform - - uid: 784 - components: - - pos: 11.5,15.5 - parent: 1 - type: Transform - - uid: 4116 - components: - - pos: -0.5,27.5 - parent: 1 - type: Transform - - uid: 5060 - components: - - pos: 5.5,18.5 - parent: 1 - type: Transform - - uid: 5330 - components: - - pos: 11.5,8.5 - parent: 1 - type: Transform -- proto: WeaponDisabler - entities: - - uid: 5324 - components: - - pos: 19.372377,15.690639 - parent: 1 - type: Transform - - uid: 5325 - components: - - pos: 19.544252,15.612514 - parent: 1 - type: Transform - - uid: 5326 - components: - - pos: 19.747377,15.550014 - parent: 1 - type: Transform - - uid: 5437 - components: - - pos: 16.478151,15.561477 - parent: 1 - type: Transform -- proto: WeaponLaserCarbine - entities: - - uid: 5424 - components: - - pos: 38.328125,13.694345 - parent: 1 - type: Transform - - uid: 5425 - components: - - pos: 38.375,13.58497 - parent: 1 - type: Transform -- proto: WeaponPistolMk58 - entities: - - uid: 5396 - components: - - pos: 29.446836,16.541578 - parent: 1 - type: Transform - - uid: 5422 - components: - - pos: 37.46875,13.61622 - parent: 1 - type: Transform - - uid: 5436 - components: - - pos: 37.546875,13.55372 - parent: 1 - type: Transform -- proto: WeaponRevolverDeckard - entities: - - uid: 4842 - components: - - flags: InContainer - type: MetaData - - parent: 4120 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: WeaponRifleLecter - entities: - - uid: 5431 - components: - - pos: 38.533405,11.484736 - parent: 1 - type: Transform -- proto: WeaponShotgunKammerer - entities: - - uid: 5426 - components: - - pos: 38.470905,12.377476 - parent: 1 - type: Transform - - uid: 5427 - components: - - pos: 38.54903,12.330601 - parent: 1 - type: Transform -- proto: WeaponSubMachineGunDrozd - entities: - - uid: 5418 - components: - - pos: 36.546875,13.694345 - parent: 1 - type: Transform -- proto: WeaponSubMachineGunDrozdRubber - entities: - - uid: 5310 - components: - - pos: 18.660734,15.690639 - parent: 1 - type: Transform -- proto: WeaponSubMachineGunWt550 - entities: - - uid: 5385 - components: - - pos: 27.524961,14.648642 - parent: 1 - type: Transform -- proto: WeaponTurretSyndicateBroken - entities: - - uid: 2688 - components: - - pos: -10.5,55.5 - parent: 1 - type: Transform - - uid: 2750 - components: - - pos: -2.5,55.5 - parent: 1 - type: Transform - - uid: 2753 - components: - - pos: -2.5,49.5 - parent: 1 - type: Transform - - uid: 2754 - components: - - pos: -10.5,49.5 - parent: 1 - type: Transform -- proto: WelderIndustrialAdvanced - entities: - - uid: 7139 - components: - - pos: 33.606236,-18.496468 - parent: 1 - type: Transform -- proto: WeldingFuelTankFull - entities: - - uid: 6766 - components: - - pos: 20.5,-8.5 - parent: 1 - type: Transform - - uid: 8858 - components: - - pos: -8.5,-17.5 - parent: 1 - type: Transform - - uid: 8860 - components: - - pos: -31.5,-10.5 - parent: 1 - type: Transform - - uid: 9139 - components: - - pos: 13.5,-18.5 - parent: 1 - type: Transform - - uid: 9178 - components: - - pos: 25.5,-0.5 - parent: 1 - type: Transform - - uid: 9375 - components: - - pos: 21.5,27.5 - parent: 1 - type: Transform - - uid: 9376 - components: - - pos: 10.5,17.5 - parent: 1 - type: Transform - - uid: 9535 - components: - - pos: 36.5,7.5 - parent: 1 - type: Transform - - uid: 9689 - components: - - pos: -14.5,25.5 - parent: 1 - type: Transform - - uid: 9709 - components: - - pos: -28.5,13.5 - parent: 1 - type: Transform -- proto: Windoor - entities: - - uid: 8315 - components: - - pos: -28.5,-14.5 - parent: 1 - type: Transform - - uid: 8759 - components: - - pos: -41.5,-16.5 - parent: 1 - type: Transform -- proto: WindoorChapelLocked - entities: - - uid: 3474 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,15.5 - parent: 1 - type: Transform - - uid: 3475 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,16.5 - parent: 1 - type: Transform -- proto: WindoorSecure - entities: - - uid: 3290 - components: - - pos: 0.5,18.5 - parent: 1 - type: Transform - - uid: 3350 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-9.5 - parent: 1 - type: Transform - - uid: 3405 - components: - - pos: -9.5,12.5 - parent: 1 - type: Transform - - uid: 3406 - components: - - pos: -8.5,12.5 - parent: 1 - type: Transform - - uid: 3407 - components: - - rot: 3.141592653589793 rad - pos: -9.5,7.5 - parent: 1 - type: Transform - - uid: 3408 - components: - - rot: 3.141592653589793 rad - pos: -8.5,7.5 - parent: 1 - type: Transform - - uid: 3603 - components: - - pos: -9.5,-4.5 - parent: 1 - type: Transform - - uid: 3604 - components: - - pos: -8.5,-4.5 - parent: 1 - type: Transform - - uid: 5099 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,14.5 - parent: 1 - type: Transform - - uid: 5100 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,13.5 - parent: 1 - type: Transform - - uid: 7245 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-21.5 - parent: 1 - type: Transform - - uid: 7246 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-20.5 - parent: 1 - type: Transform -- proto: WindoorSecureCargoLocked - entities: - - uid: 7243 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-20.5 - parent: 1 - type: Transform - - uid: 7244 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-21.5 - parent: 1 - type: Transform - - uid: 7288 - components: - - pos: 20.5,-24.5 - parent: 1 - type: Transform - - uid: 7290 - components: - - pos: 21.5,-24.5 - parent: 1 - type: Transform -- proto: WindoorSecureChemistryLocked - entities: - - uid: 3401 - components: - - rot: 3.141592653589793 rad - pos: -12.5,12.5 - parent: 1 - type: Transform - - uid: 3402 - components: - - rot: 3.141592653589793 rad - pos: -9.5,12.5 - parent: 1 - type: Transform - - uid: 3403 - components: - - rot: 3.141592653589793 rad - pos: -8.5,12.5 - parent: 1 - type: Transform -- proto: WindoorSecureCommandLocked - entities: - - uid: 3614 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,52.5 - parent: 1 - type: Transform - - uid: 3615 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,52.5 - parent: 1 - type: Transform - - uid: 4127 - components: - - pos: -4.5,25.5 - parent: 1 - type: Transform - - uid: 4730 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,19.5 - parent: 1 - type: Transform - - uid: 4972 - components: - - pos: 4.5,30.5 - parent: 1 - type: Transform -- proto: WindoorSecureEngineeringLocked - entities: - - uid: 3349 - components: - - pos: 12.5,-9.5 - parent: 1 - type: Transform -- proto: WindoorSecureHeadOfPersonnelLocked - entities: - - uid: 3289 - components: - - rot: 3.141592653589793 rad - pos: 0.5,18.5 - parent: 1 - type: Transform -- proto: WindoorSecureMedicalLocked - entities: - - uid: 3404 - components: - - pos: -12.5,12.5 - parent: 1 - type: Transform - - uid: 3409 - components: - - pos: -9.5,7.5 - parent: 1 - type: Transform - - uid: 3410 - components: - - pos: -8.5,7.5 - parent: 1 - type: Transform - - uid: 3558 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,21.5 - parent: 1 - type: Transform - - uid: 3559 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,18.5 - parent: 1 - type: Transform -- proto: WindoorSecureSalvageLocked - entities: - - uid: 7297 - components: - - rot: 3.141592653589793 rad - pos: 21.5,-24.5 - parent: 1 - type: Transform - - uid: 7300 - components: - - rot: 3.141592653589793 rad - pos: 20.5,-24.5 - parent: 1 - type: Transform -- proto: WindoorSecureScienceLocked - entities: - - uid: 3605 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-4.5 - parent: 1 - type: Transform - - uid: 3606 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-4.5 - parent: 1 - type: Transform -- proto: WindoorSecureSecurityLocked - entities: - - uid: 1775 - components: - - rot: 3.141592653589793 rad - pos: 21.5,7.5 - parent: 1 - type: Transform - - uid: 1776 - components: - - rot: 3.141592653589793 rad - pos: 22.5,7.5 - parent: 1 - type: Transform - - uid: 4900 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,34.5 - parent: 1 - type: Transform - - uid: 5097 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,14.5 - parent: 1 - type: Transform - - uid: 5098 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,13.5 - parent: 1 - type: Transform - - uid: 5535 - components: - - pos: 12.5,7.5 - parent: 1 - type: Transform - - links: - - 12485 - type: DeviceLinkSink - - uid: 5536 - components: - - pos: 15.5,7.5 - parent: 1 - type: Transform - - links: - - 12486 - type: DeviceLinkSink - - uid: 5537 - components: - - pos: 18.5,7.5 - parent: 1 - type: Transform - - links: - - 12487 - type: DeviceLinkSink - - uid: 12003 - components: - - pos: 36.5,13.5 - parent: 1 - type: Transform - - uid: 12004 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,12.5 - parent: 1 - type: Transform - - uid: 12005 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,11.5 - parent: 1 - type: Transform -- proto: WindoorServiceLocked - entities: - - uid: 3375 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-0.5 - parent: 1 - type: Transform - - uid: 3376 - components: - - pos: 3.5,-0.5 - parent: 1 - type: Transform - - uid: 3377 - components: - - pos: 3.5,4.5 - parent: 1 - type: Transform - - uid: 3378 - components: - - rot: 3.141592653589793 rad - pos: 3.5,4.5 - parent: 1 - type: Transform - - uid: 3379 - components: - - rot: 3.141592653589793 rad - pos: -2.5,7.5 - parent: 1 - type: Transform - - uid: 3380 - components: - - rot: 3.141592653589793 rad - pos: 5.5,7.5 - parent: 1 - type: Transform -- proto: Window - entities: - - uid: 40 - components: - - pos: 1.5,-0.5 - parent: 1 - type: Transform - - uid: 41 - components: - - pos: 0.5,-0.5 - parent: 1 - type: Transform - - uid: 73 - components: - - pos: -1.5,13.5 - parent: 1 - type: Transform - - uid: 75 - components: - - pos: -2.5,12.5 - parent: 1 - type: Transform - - uid: 77 - components: - - pos: -3.5,11.5 - parent: 1 - type: Transform - - uid: 78 - components: - - pos: 4.5,13.5 - parent: 1 - type: Transform - - uid: 79 - components: - - pos: -1.5,12.5 - parent: 1 - type: Transform - - uid: 80 - components: - - pos: 5.5,12.5 - parent: 1 - type: Transform - - uid: 81 - components: - - pos: 4.5,12.5 - parent: 1 - type: Transform - - uid: 82 - components: - - pos: 6.5,11.5 - parent: 1 - type: Transform - - uid: 84 - components: - - pos: 5.5,11.5 - parent: 1 - type: Transform - - uid: 86 - components: - - pos: -2.5,11.5 - parent: 1 - type: Transform - - uid: 95 - components: - - pos: -3.5,6.5 - parent: 1 - type: Transform - - uid: 96 - components: - - pos: -3.5,5.5 - parent: 1 - type: Transform - - uid: 97 - components: - - pos: 6.5,6.5 - parent: 1 - type: Transform - - uid: 98 - components: - - pos: 6.5,5.5 - parent: 1 - type: Transform - - uid: 420 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,28.5 - parent: 1 - type: Transform - - uid: 1604 - components: - - pos: -0.5,-20.5 - parent: 1 - type: Transform - - uid: 1611 - components: - - pos: -0.5,-21.5 - parent: 1 - type: Transform - - uid: 1619 - components: - - pos: -0.5,-22.5 - parent: 1 - type: Transform - - uid: 1625 - components: - - pos: -5.5,-23.5 - parent: 1 - type: Transform - - uid: 1626 - components: - - pos: -4.5,-23.5 - parent: 1 - type: Transform - - uid: 1627 - components: - - pos: -2.5,-23.5 - parent: 1 - type: Transform - - uid: 1628 - components: - - pos: -1.5,-23.5 - parent: 1 - type: Transform - - uid: 1987 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,4.5 - parent: 1 - type: Transform - - uid: 1988 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,4.5 - parent: 1 - type: Transform - - uid: 1989 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,4.5 - parent: 1 - type: Transform - - uid: 1990 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,4.5 - parent: 1 - type: Transform - - uid: 2092 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,0.5 - parent: 1 - type: Transform - - uid: 2110 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,0.5 - parent: 1 - type: Transform - - uid: 2111 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,0.5 - parent: 1 - type: Transform - - uid: 4820 - components: - - pos: 44.5,24.5 - parent: 1 - type: Transform - - uid: 4821 - components: - - pos: 46.5,24.5 - parent: 1 - type: Transform -- proto: WindowDirectional - entities: - - uid: 315 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,19.5 - parent: 1 - type: Transform - - uid: 316 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,20.5 - parent: 1 - type: Transform -- proto: WindowFrostedDirectional - entities: - - uid: 312 - components: - - pos: -10.5,20.5 - parent: 1 - type: Transform - - uid: 313 - components: - - pos: -11.5,20.5 - parent: 1 - type: Transform - - uid: 3473 - components: - - rot: 3.141592653589793 rad - pos: -33.5,14.5 - parent: 1 - type: Transform - - uid: 9631 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,27.5 - parent: 1 - type: Transform - - uid: 9632 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,25.5 - parent: 1 - type: Transform - - uid: 12452 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-1.5 - parent: 1 - type: Transform - - uid: 12453 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-2.5 - parent: 1 - type: Transform -- proto: WindowReinforcedDirectional - entities: - - uid: 727 - components: - - rot: 3.141592653589793 rad - pos: 20.5,7.5 - parent: 1 - type: Transform - - uid: 728 - components: - - rot: 3.141592653589793 rad - pos: 23.5,7.5 - parent: 1 - type: Transform - - uid: 1688 - components: - - pos: 46.5,33.5 - parent: 1 - type: Transform - - uid: 1697 - components: - - pos: 5.5,-19.5 - parent: 1 - type: Transform - - uid: 1698 - components: - - pos: 4.5,-19.5 - parent: 1 - type: Transform - - uid: 1699 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-20.5 - parent: 1 - type: Transform - - uid: 1700 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-21.5 - parent: 1 - type: Transform - - uid: 3556 - components: - - pos: 45.5,33.5 - parent: 1 - type: Transform - - uid: 3583 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-23.5 - parent: 1 - type: Transform - - uid: 3798 - components: - - pos: -1.5,17.5 - parent: 1 - type: Transform - - uid: 3799 - components: - - pos: -0.5,17.5 - parent: 1 - type: Transform - - uid: 3800 - components: - - pos: 0.5,17.5 - parent: 1 - type: Transform - - uid: 4126 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,25.5 - parent: 1 - type: Transform - - uid: 4895 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,33.5 - parent: 1 - type: Transform - - uid: 4969 - components: - - pos: 3.5,30.5 - parent: 1 - type: Transform - - uid: 4970 - components: - - pos: 5.5,30.5 - parent: 1 - type: Transform - - uid: 11963 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,13.5 - parent: 1 - type: Transform - - uid: 12000 - components: - - pos: 38.5,12.5 - parent: 1 - type: Transform - - uid: 12001 - components: - - pos: 38.5,11.5 - parent: 1 - type: Transform - - uid: 12002 - components: - - rot: 3.141592653589793 rad - pos: 38.5,12.5 - parent: 1 - type: Transform -- proto: Wirecutter - entities: - - uid: 6073 - components: - - pos: -6.449393,-15.322836 - parent: 1 - type: Transform -- proto: WoodDoor - entities: - - uid: 3088 - components: - - pos: -34.5,13.5 - parent: 1 - type: Transform - - uid: 3446 - components: - - pos: -37.5,12.5 - parent: 1 - type: Transform -- proto: Wrench - entities: - - uid: 5603 - components: - - pos: -23.498562,5.5333753 - parent: 1 - type: Transform - - uid: 6090 - components: - - pos: -28.522102,-7.4028454 - parent: 1 - type: Transform -- proto: YellowOxygenTankFilled - entities: - - uid: 8928 - components: - - pos: -33.421288,-7.524516 - parent: 1 - type: Transform - - uid: 9731 - components: - - pos: -28.423817,12.547613 - parent: 1 - type: Transform -... +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 2: FloorArcadeBlue2 + 12: FloorBar + 15: FloorBlueCircuit + 16: FloorBoxing + 18: FloorCarpetClown + 26: FloorDark + 27: FloorDarkDiagonal + 30: FloorDarkMini + 31: FloorDarkMono + 33: FloorDarkPavement + 38: FloorEighties + 39: FloorElevatorShaft + 41: FloorFreezer + 42: FloorGlass + 45: FloorGrassDark + 55: FloorHydro + 58: FloorLaundry + 59: FloorLino + 62: FloorMime + 70: FloorRGlass + 71: FloorReinforced + 74: FloorShowroom + 83: FloorSteel + 86: FloorSteelDiagonal + 89: FloorSteelHerringbone + 91: FloorSteelMono + 95: FloorTechMaint + 99: FloorWhite + 100: FloorWhiteDiagonal + 102: FloorWhiteHerringbone + 103: FloorWhiteMini + 104: FloorWhiteMono + 109: FloorWood + 111: Lattice + 112: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + - pos: -0.484375,-0.5 + parent: 12281 + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: YwAAAAAAYwAAAAABYwAAAAABYwAAAAABYwAAAAAAYwAAAAADcAAAAAAAUwAAAAACUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACYwAAAAACZAAAAAABZAAAAAAAZAAAAAADZAAAAAACYwAAAAACcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAACYwAAAAADZAAAAAADZAAAAAAAZAAAAAACZAAAAAADYwAAAAADYwAAAAADUwAAAAADRgAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAYwAAAAADYwAAAAADYwAAAAADYwAAAAACYwAAAAACYwAAAAABcAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAACcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAACbQAAAAACbQAAAAABbQAAAAAAbQAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAUwAAAAACUwAAAAACbQAAAAAAbQAAAAADbQAAAAADbQAAAAACbQAAAAACbQAAAAADcAAAAAAAUwAAAAADRgAAAAAAUwAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAUwAAAAADUwAAAAADbQAAAAAAbQAAAAABbQAAAAABbQAAAAABbQAAAAABbQAAAAACcAAAAAAAUwAAAAACUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAUwAAAAABDAAAAAACDAAAAAADDAAAAAAADAAAAAACDAAAAAACDAAAAAAADAAAAAACUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAbQAAAAABbQAAAAABbQAAAAAADAAAAAAADAAAAAABDAAAAAADDAAAAAABUwAAAAADRgAAAAAAUwAAAAADcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAACbQAAAAAAbQAAAAABbQAAAAACDAAAAAABbQAAAAACbQAAAAACcAAAAAAAUwAAAAACUwAAAAADUwAAAAADcAAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAADUwAAAAABbQAAAAAAbQAAAAADbQAAAAAADAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAABcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAGgAAAAACDAAAAAACDAAAAAAADAAAAAACDAAAAAABcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAABcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAGgAAAAACGgAAAAABDAAAAAABDAAAAAACDAAAAAACcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADRgAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAGgAAAAACGgAAAAADGgAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAACGgAAAAABGgAAAAACGgAAAAAAUwAAAAAARgAAAAAAUwAAAAACUwAAAAADUwAAAAABRgAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAGgAAAAAAGgAAAAAC + version: 6 + -1,0: + ind: -1,0 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAACcAAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAABRgAAAAAAUwAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAABcAAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAZAAAAAABZAAAAAADcAAAAAAAYwAAAAAAYwAAAAADaAAAAAADZAAAAAACZAAAAAADcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAbQAAAAACbQAAAAADbQAAAAACZAAAAAACZAAAAAACcAAAAAAAYwAAAAACYwAAAAACaAAAAAADZAAAAAABZAAAAAACcAAAAAAAUwAAAAAARgAAAAAAUwAAAAABcAAAAAAAbQAAAAACbQAAAAABbQAAAAACaAAAAAADaAAAAAADcAAAAAAAYwAAAAACYwAAAAABcAAAAAAAaAAAAAABaAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAbQAAAAADbQAAAAADbQAAAAACYwAAAAADYwAAAAAAYwAAAAADYwAAAAABYwAAAAACcAAAAAAAYwAAAAABYwAAAAABYwAAAAACUwAAAAACUwAAAAABUwAAAAADDAAAAAADDAAAAAADDAAAAAABDAAAAAABYwAAAAAAYwAAAAACYwAAAAAAYwAAAAABYwAAAAABaAAAAAABYwAAAAACYwAAAAAAYwAAAAAAUwAAAAACRgAAAAAAUwAAAAACDAAAAAABDAAAAAABDAAAAAADDAAAAAAAYwAAAAACYwAAAAAAYwAAAAACYwAAAAADYwAAAAAAaAAAAAACYwAAAAABYwAAAAABYwAAAAAAUwAAAAABUwAAAAAAUwAAAAADcAAAAAAAbQAAAAACbQAAAAACDAAAAAAAYwAAAAADYwAAAAADYwAAAAADYwAAAAABYwAAAAACcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAABUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAbQAAAAACDAAAAAAAYwAAAAABcAAAAAAAcAAAAAAAaAAAAAACcAAAAAAAcAAAAAAAaAAAAAAAaAAAAAABcAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAADAAAAAADYwAAAAACcAAAAAAAZwAAAAADZwAAAAABZwAAAAABZwAAAAABZwAAAAACZwAAAAADcAAAAAAAUwAAAAABRgAAAAAAUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAcAAAAAAAZwAAAAAAZwAAAAACZwAAAAAAZwAAAAADZwAAAAAAZwAAAAACcAAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAYwAAAAAAaAAAAAACZwAAAAABZwAAAAABZwAAAAAAZwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADRgAAAAAAUwAAAAACUwAAAAAB + version: 6 + -1,-1: + ind: -1,-1 + tiles: WwAAAAACUwAAAAABcAAAAAAAUwAAAAABUwAAAAAAGgAAAAADGgAAAAADGwAAAAABGwAAAAAAGwAAAAABGwAAAAACGwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWQAAAAADWQAAAAADcAAAAAAAUwAAAAAAUwAAAAADGgAAAAACGgAAAAACGwAAAAADGwAAAAABGwAAAAAAGwAAAAAAGwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWQAAAAAAWQAAAAACcAAAAAAAUwAAAAABUwAAAAACGgAAAAAAGgAAAAADDwAAAAAAHgAAAAABDwAAAAAAGwAAAAACGwAAAAADcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAWQAAAAADWQAAAAADcAAAAAAAUwAAAAABUwAAAAABGgAAAAACGgAAAAABDwAAAAAAHgAAAAADDwAAAAAAGwAAAAADGwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAWwAAAAABUwAAAAAAcAAAAAAAUwAAAAACUwAAAAADGgAAAAABGgAAAAABDwAAAAAAHgAAAAABDwAAAAAAGwAAAAABGwAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAWQAAAAAAWQAAAAABcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAHwAAAAACHwAAAAAAHwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWQAAAAAAWQAAAAADcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAAAWQAAAAAAWQAAAAADcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADRgAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAAARgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAADcAAAAAAAIQAAAAACIQAAAAADNwAAAAAAUwAAAAADUwAAAAADcAAAAAAAHwAAAAABHwAAAAAAcAAAAAAAHwAAAAACHwAAAAADcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADcAAAAAAAIQAAAAABIQAAAAACNwAAAAAAUwAAAAABUwAAAAACcAAAAAAAGgAAAAADGgAAAAABGgAAAAABGgAAAAACGgAAAAABcAAAAAAAUwAAAAACRgAAAAAAUwAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAGgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAGgAAAAACcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACHwAAAAABIQAAAAACIQAAAAADIQAAAAADUwAAAAABUwAAAAADcAAAAAAAGgAAAAACGgAAAAABGgAAAAAAGgAAAAABGgAAAAACcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAIQAAAAACIQAAAAADIQAAAAABUwAAAAABUwAAAAAAcAAAAAAAGgAAAAACGgAAAAACDwAAAAAADwAAAAAADwAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAADcAAAAAAAIQAAAAADIQAAAAAAcAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: UwAAAAACUwAAAAACUwAAAAABcAAAAAAAbQAAAAADbQAAAAADbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAbQAAAAACbQAAAAABbQAAAAADcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAABcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAWwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAARgAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAABRgAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAADcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAWwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAANwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABWwAAAAAAUwAAAAABIQAAAAACIQAAAAAAIQAAAAADNwAAAAAAIQAAAAAAIQAAAAADcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAADcAAAAAAAWwAAAAABIQAAAAABIQAAAAADIQAAAAABNwAAAAAAIQAAAAABIQAAAAABcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAUwAAAAABNwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAUwAAAAABRgAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAANwAAAAAAIQAAAAAAIQAAAAADcAAAAAAAUwAAAAABUwAAAAACUwAAAAADcAAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAACNwAAAAAANwAAAAAANwAAAAAANwAAAAAAGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAANwAAAAAANwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAAGgAAAAABGgAAAAAC + version: 6 + -1,1: + ind: -1,1 + tiles: YwAAAAAAcAAAAAAAZwAAAAACZwAAAAACZwAAAAADZwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAADaAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABYwAAAAAAYwAAAAACYwAAAAAAYwAAAAACZAAAAAADZAAAAAABcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAADYwAAAAAAYwAAAAADZAAAAAAAZAAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAACbQAAAAAAcAAAAAAAbQAAAAADbQAAAAABbQAAAAADYwAAAAABYwAAAAABYwAAAAADYwAAAAABZAAAAAACZAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAAAbQAAAAADbQAAAAACbQAAAAACbQAAAAADYwAAAAABYwAAAAACYwAAAAADYwAAAAABZAAAAAAAZAAAAAACcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAACbQAAAAABcAAAAAAAbQAAAAACbQAAAAAAbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAAARwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADwAAAAAAGgAAAAACGgAAAAADRwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAACcAAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAABUwAAAAABcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAABcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAD + version: 6 + 0,1: + ind: 0,1 + tiles: UwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAABcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAGgAAAAADGgAAAAAAbQAAAAADbQAAAAAAbQAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAACcAAAAAAAGgAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAACcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAbQAAAAABbQAAAAADbQAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAABcAAAAAAAGgAAAAADUwAAAAAAUwAAAAABGgAAAAADbQAAAAABbQAAAAACbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAbQAAAAABbQAAAAAAbQAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAUwAAAAABUwAAAAABcAAAAAAAbQAAAAADbQAAAAAAbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAUwAAAAABUwAAAAADcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAA + version: 6 + -2,0: + ind: -2,0 + tiles: UwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAZgAAAAAAZgAAAAADZgAAAAABZgAAAAADcAAAAAAAZAAAAAADZAAAAAACcAAAAAAAZAAAAAAAZAAAAAADcAAAAAAAbQAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAZgAAAAACZgAAAAABZgAAAAAAZgAAAAAAcAAAAAAAZAAAAAABZAAAAAACcAAAAAAAZAAAAAADZAAAAAADcAAAAAAAbQAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAZgAAAAABZgAAAAADZgAAAAAAZgAAAAAAcAAAAAAAaAAAAAADaAAAAAAAcAAAAAAAaAAAAAABaAAAAAABcAAAAAAAbQAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAaAAAAAADcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAACYwAAAAADYwAAAAACYwAAAAADYwAAAAACbQAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAACYwAAAAADYwAAAAACYwAAAAAAYwAAAAADYwAAAAADYwAAAAABYwAAAAADYwAAAAADYwAAAAABbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAABYwAAAAADYwAAAAADYwAAAAACYwAAAAADYwAAAAADYwAAAAAAYwAAAAADYwAAAAADYwAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYwAAAAAAYwAAAAABYwAAAAAAYwAAAAADYwAAAAABYwAAAAABYwAAAAABYwAAAAADYwAAAAAAYwAAAAABYwAAAAACcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAOwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGwAAAAABGwAAAAACGwAAAAACGwAAAAACGwAAAAADcAAAAAAAGgAAAAACGgAAAAABGgAAAAABcAAAAAAAYwAAAAADOwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGwAAAAABGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAADcAAAAAAAGgAAAAADGgAAAAACGgAAAAAAcAAAAAAAYwAAAAACOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAACHwAAAAAAYwAAAAAC + version: 6 + 1,0: + ind: 1,0 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAABcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAACcAAAAAAAbQAAAAABbQAAAAABbQAAAAAAbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAbQAAAAADbQAAAAACbQAAAAAAbQAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAGgAAAAADcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAACcAAAAAAAGgAAAAADGgAAAAADGgAAAAABGgAAAAACGgAAAAACcAAAAAAAUwAAAAABGgAAAAADcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAABGgAAAAAAGgAAAAAAGgAAAAACUwAAAAADGgAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAADUwAAAAABcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAABGgAAAAABGgAAAAACcAAAAAAAUwAAAAAAGgAAAAADcAAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAC + version: 6 + 0,-2: + ind: 0,-2 + tiles: UwAAAAADUwAAAAACUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACWwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAUwAAAAACUwAAAAACUwAAAAADcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAWwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAACWwAAAAACcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAADWwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAABcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAACcAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAAAWwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAADWwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAWwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAADUwAAAAAAWwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAADcAAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAABcAAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAABbQAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAbQAAAAAAbQAAAAABbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAA + version: 6 + -2,1: + ind: -2,1 + tiles: OwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGwAAAAAAGwAAAAACGwAAAAABGwAAAAADGwAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAABcAAAAAAAYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAaAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAYwAAAAADYwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYwAAAAADYwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAYwAAAAAALQAAAAADYwAAAAACYwAAAAAALQAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAABXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYwAAAAACcAAAAAAALQAAAAACcAAAAAAAYwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAYwAAAAACYwAAAAACcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAALQAAAAABYwAAAAABYwAAAAACLQAAAAAALQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAALQAAAAADYwAAAAABcAAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAALQAAAAADLQAAAAADcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 + 0,2: + ind: 0,2 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,2: + ind: -1,2 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAGgAAAAACGgAAAAACGgAAAAABXwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABGgAAAAABGgAAAAACGgAAAAAAGgAAAAADXwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAGgAAAAADGgAAAAADGgAAAAABXwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAA + version: 6 + -2,2: + ind: -2,2 + tiles: bwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,-1: + ind: -2,-1 + tiles: bQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAACWwAAAAABcAAAAAAAGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAWQAAAAAAWwAAAAAAGgAAAAADGgAAAAABGgAAAAABcAAAAAAAGgAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAWQAAAAACWQAAAAACGgAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAWQAAAAAAWwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAADWwAAAAADXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAWQAAAAABWwAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAWQAAAAAAWQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAWQAAAAACWwAAAAADGwAAAAADGwAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAGwAAAAACGwAAAAADGwAAAAABUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAADGwAAAAAAGwAAAAADcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAGwAAAAACGwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAADGgAAAAABGgAAAAAAcAAAAAAAbQAAAAADbQAAAAABbQAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAABDwAAAAAAHwAAAAADDwAAAAAAGgAAAAABcAAAAAAAbQAAAAADbQAAAAAAbQAAAAABbQAAAAADUwAAAAABUwAAAAADUwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAABHwAAAAADDwAAAAAAHwAAAAACGgAAAAAAcAAAAAAAbQAAAAABbQAAAAABbQAAAAACcAAAAAAAUwAAAAACUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAADwAAAAAAHwAAAAACDwAAAAAAGgAAAAADcAAAAAAAbQAAAAACbQAAAAADbQAAAAABcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAD + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAcAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAHwAAAAACGgAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbQAAAAADcAAAAAAAbQAAAAACbQAAAAABbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAbQAAAAABbQAAAAACbQAAAAACcAAAAAAAbQAAAAADbQAAAAABbQAAAAAAcAAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAASgAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAASgAAAAAASgAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAADSgAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVgAAAAABVgAAAAADcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAVgAAAAADVgAAAAACcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVgAAAAADVgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAA + version: 6 + -2,-2: + ind: -2,-2 + tiles: bwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAAcAAAAAAASgAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAASgAAAAAAcAAAAAAASgAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAVgAAAAACVgAAAAAAVgAAAAACVgAAAAAAVgAAAAABbQAAAAABbQAAAAABcAAAAAAAbQAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVgAAAAAAVgAAAAADVgAAAAADVgAAAAACVgAAAAADcAAAAAAAbQAAAAADcAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVgAAAAADVgAAAAAAVgAAAAABVgAAAAAAVgAAAAAC + version: 6 + -3,-1: + ind: -3,-1 + tiles: AAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAVgAAAAADVgAAAAACVgAAAAACVgAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACcAAAAAAAbQAAAAACAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAVgAAAAABVgAAAAABVgAAAAADVgAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAADbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbQAAAAADbQAAAAABbQAAAAADbQAAAAABbQAAAAAAbQAAAAACcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbQAAAAADbQAAAAACbQAAAAADbQAAAAACbQAAAAABbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAABbQAAAAACbQAAAAAAbQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbQAAAAAAbQAAAAABbQAAAAACbQAAAAADbQAAAAADbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbQAAAAAAbQAAAAABbQAAAAAAbQAAAAABbQAAAAABbQAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbQAAAAABbQAAAAABbQAAAAADbQAAAAAAbQAAAAACbQAAAAACcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbQAAAAACbQAAAAADbQAAAAACbQAAAAACbQAAAAABbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAAAcAAAAAAAUwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAABGgAAAAADUwAAAAADcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAABcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAGgAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAACGgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADGgAAAAACcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAACcAAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAABcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAADcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAUwAAAAACUwAAAAACGgAAAAADGgAAAAABGgAAAAAAGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAADcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAABcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACcAAAAAAA + version: 6 + 2,1: + ind: 2,1 + tiles: UwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAACcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAABcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADWwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAABcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADKgAAAAAAKgAAAAAAUwAAAAADUwAAAAACUwAAAAACcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAACKgAAAAAAKgAAAAAAUwAAAAAAUwAAAAADUwAAAAADcAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAACHwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAADbQAAAAADbQAAAAADGgAAAAADGgAAAAADbQAAAAABbQAAAAADbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAACbQAAAAACGgAAAAABGgAAAAACbQAAAAACbQAAAAAAbQAAAAACcAAAAAAA + version: 6 + 2,2: + ind: 2,2 + tiles: LQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAGgAAAAACGgAAAAABGgAAAAAAGgAAAAABGgAAAAABGgAAAAAAGgAAAAABGgAAAAAAcAAAAAAAUwAAAAACLQAAAAACcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADbQAAAAAAbQAAAAADbQAAAAADbQAAAAADGgAAAAABGgAAAAACcAAAAAAAcAAAAAAALQAAAAAALQAAAAADLQAAAAABUwAAAAAALQAAAAABcAAAAAAAGgAAAAACGgAAAAADbQAAAAACbQAAAAAAbQAAAAAAbQAAAAAAGgAAAAAAGgAAAAADcAAAAAAALQAAAAACLQAAAAADcAAAAAAALQAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,2: + ind: 1,2 + tiles: XwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAALQAAAAABcAAAAAAALQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAALQAAAAAAcAAAAAAALQAAAAACUwAAAAAALQAAAAADcAAAAAAALQAAAAACLQAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACLQAAAAACcAAAAAAAUwAAAAABLQAAAAAALQAAAAADLQAAAAABUwAAAAADcAAAAAAALQAAAAADUwAAAAABcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAALQAAAAADUwAAAAACcAAAAAAALQAAAAACcAAAAAAAcAAAAAAAUwAAAAAALQAAAAACcAAAAAAALQAAAAAAcAAAAAAAUwAAAAACUwAAAAADbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: UwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAABKgAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAWwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADWwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAWwAAAAAAUwAAAAABUwAAAAACWwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAACWwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAADWwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAACcAAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAADWwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAXwAAAAAAUwAAAAADcAAAAAAAUwAAAAADUwAAAAAAKgAAAAAAKgAAAAAAUwAAAAABUwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAWwAAAAAAcAAAAAAAUwAAAAABUwAAAAABKgAAAAAAKgAAAAAAUwAAAAAAUwAAAAACcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAABcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAADwAAAAAADwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAA + version: 6 + 2,-1: + ind: 2,-1 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAA + version: 6 + 1,-2: + ind: 1,-2 + tiles: AAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAADWwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAUwAAAAACcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAUwAAAAADWwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAUwAAAAADWwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAUwAAAAABcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAAB + version: 6 + 2,-2: + ind: 2,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAA + version: 6 + 0,-3: + ind: 0,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAABUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-3: + ind: -1,-3 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAAAWwAAAAADWwAAAAACWwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAHwAAAAACGgAAAAACcAAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAABcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAACGgAAAAACGgAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAAB + version: 6 + 3,-1: + ind: 3,-1 + tiles: AAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,-2: + ind: 3,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,0: + ind: -3,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAACcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAADbQAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAADcAAAAAAAbQAAAAACbQAAAAAAbQAAAAADbQAAAAABbQAAAAAAbQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAACcAAAAAAAbQAAAAACbQAAAAACbQAAAAAAbQAAAAABbQAAAAABbQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAACcAAAAAAAbQAAAAABbQAAAAADbQAAAAABbQAAAAACbQAAAAADbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADcAAAAAAAbQAAAAADbQAAAAACbQAAAAADbQAAAAACbQAAAAACbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAbQAAAAAAbQAAAAACbQAAAAABbQAAAAADbQAAAAADbQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADcAAAAAAAbQAAAAAAbQAAAAADbQAAAAADbQAAAAABbQAAAAACbQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAABcAAAAAAAbQAAAAABbQAAAAACbQAAAAABbQAAAAABbQAAAAADbQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAAAcAAAAAAAbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAbQAAAAACcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAHwAAAAABGgAAAAACOwAAAAAA + version: 6 + -3,1: + ind: -3,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAADGgAAAAABOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABHwAAAAADHwAAAAAAHwAAAAADcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABHwAAAAACHwAAAAABHwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAUwAAAAABHwAAAAABHwAAAAABHwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAA + version: 6 + -3,-2: + ind: -3,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAJwAAAAAAcAAAAAAAAgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAJwAAAAAAJwAAAAAAAgAAAAAAcAAAAAAAcAAAAAAAAgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAJwAAAAAAcAAAAAAAJwAAAAAAAgAAAAAAAgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAEAAAAAADEAAAAAABcAAAAAAAEAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAEAAAAAAAcAAAAAAAcAAAAAAAEAAAAAABcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAEAAAAAACEAAAAAACEAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAEAAAAAAAEAAAAAAAcAAAAAAAEAAAAAACcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAbQAAAAACcAAAAAAAcAAAAAAAbQAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAVgAAAAAAVgAAAAABVgAAAAACVgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAADbQAAAAAAbQAAAAAD + version: 6 + -3,-3: + ind: -3,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA + version: 6 + -2,-3: + ind: -2,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA + version: 6 + -3,2: + ind: -3,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,3: + ind: 0,3 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAABGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGgAAAAABGgAAAAADGgAAAAACcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAABGgAAAAABGgAAAAABcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAACGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGgAAAAADGgAAAAABGgAAAAACcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAADGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,3: + ind: -1,3 + tiles: AAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAABcAAAAAAAGgAAAAACAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAGgAAAAACAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABcAAAAAAAUwAAAAACcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADcAAAAAAAGgAAAAACAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADGgAAAAADGgAAAAABAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACcAAAAAAAUwAAAAABcAAAAAAAUwAAAAABUwAAAAADUwAAAAACcAAAAAAAGgAAAAACAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAAAcAAAAAAAGgAAAAACAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAGgAAAAABAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAA + version: 6 + -2,-4: + ind: -2,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbQAAAAACbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbQAAAAABbQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbQAAAAADbQAAAAADbQAAAAABbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbQAAAAADbQAAAAABbQAAAAACbQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbQAAAAADbQAAAAACbQAAAAACbQAAAAAA + version: 6 + -1,-4: + ind: -1,-4 + tiles: bwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAADbQAAAAACbQAAAAADbQAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAADbQAAAAAAbQAAAAAAbQAAAAACXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAbQAAAAADXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAbQAAAAADbQAAAAACcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAABbQAAAAACbQAAAAADbQAAAAADbQAAAAABcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAABbQAAAAADbQAAAAABbQAAAAAAbQAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,2: + ind: 3,2 + tiles: AAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,1: + ind: 3,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,0: + ind: 3,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,4: + ind: -1,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,4: + ind: 0,4 + tiles: cAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: Shuttle + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Basalt1 + decals: + 1358: 25.881918,34.192333 + 1361: 36.05116,32.59352 + 1386: -23.029747,20.063555 + - node: + color: '#FFFFFFFF' + id: Basalt5 + decals: + 1359: 31.894993,33.661083 + 1371: 25.780825,32.109146 + 1392: -27.154747,21.001055 + - node: + color: '#FFFFFFFF' + id: Basalt8 + decals: + 1360: 33.992474,34.93727 + 1391: -26.029747,22.04793 + - node: + color: '#A46106FF' + id: BotLeft + decals: + 1112: 22,-28 + 1113: 21,-28 + 1114: 20,-28 + 1115: 20,-27 + 1116: 21,-27 + 1117: 22,-27 + 1118: 15,-22 + 1119: 15,-23 + 1120: 15,-24 + 1121: 15,-25 + 1122: 14,-25 + 1123: 14,-24 + 1124: 14,-23 + 1125: 14,-22 + 1126: 18,-28 + 1127: 18,-27 + 1128: 17,-27 + 1129: 17,-28 + 1130: 16,-27 + 1131: 16,-28 + - node: + color: '#FFFFFFFF' + id: BotLeft + decals: + 1449: 6,-22 + 1450: 6,-21 + 1451: 6,-20 + 1452: 5,-20 + 1453: 4,-20 + 1454: -3,17 + 1455: -2,17 + 1456: -1,17 + 1457: 0,17 + - node: + color: '#EFB341FF' + id: BotRight + decals: + 1035: 26,-7 + 1036: 26,-6 + 1037: 26,-5 + 1038: 26,-4 + 1039: 27,-4 + 1040: 27,-5 + 1041: 27,-6 + 1042: 27,-7 + 1043: 28,-7 + 1044: 28,-6 + 1045: 28,-5 + 1046: 28,-4 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkBox + decals: + 958: -17,-9 + 973: -17,-13 + 974: -17,-11 + 975: -17,-15 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNe + decals: + 115: -4,56 + 116: -3,55 + 124: -6,46 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + decals: + 113: -11,55 + 114: -10,56 + 123: -8,46 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + decals: + 109: -4,48 + 110: -3,49 + 121: -6,44 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + decals: + 111: -10,48 + 112: -11,49 + 122: -8,44 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndE + decals: + 838: -10,-3 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndW + decals: + 835: -12,-3 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNe + decals: + 118: -4,55 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNw + decals: + 117: -10,55 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSe + decals: + 119: -4,49 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSw + decals: + 120: -10,49 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 87: -3,54 + 88: -3,53 + 89: -3,52 + 90: -3,51 + 91: -3,50 + 125: -6,45 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 92: -8,56 + 93: -9,56 + 94: -7,56 + 95: -5,56 + 96: -5,56 + 97: -6,56 + 128: -7,46 + 837: -11,-3 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 104: -9,48 + 105: -8,48 + 106: -7,48 + 107: -6,48 + 108: -5,48 + 127: -7,44 + 836: -11,-3 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + decals: + 98: -11,54 + 99: -11,53 + 100: -11,53 + 101: -11,51 + 102: -11,52 + 103: -11,50 + 126: -8,45 + - node: + color: '#334E6DFF' + id: BrickTileSteelBox + decals: + 196: 2,49 + 197: 3,49 + - node: + color: '#52B4E9FF' + id: BrickTileSteelBox + decals: + 193: -1,49 + 194: 0,49 + 195: 1,49 + - node: + color: '#9FED58FF' + id: BrickTileSteelBox + decals: + 187: -1,53 + 188: 0,53 + - node: + color: '#A46106FF' + id: BrickTileSteelBox + decals: + 185: -1,55 + 186: 0,55 + - node: + color: '#B7FF8FFF' + id: BrickTileSteelBox + decals: + 189: 2,55 + 190: 3,55 + - node: + color: '#D381C9FF' + id: BrickTileSteelBox + decals: + 191: -1,51 + 192: 0,51 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelBox + decals: + 181: 2,51 + 182: 3,51 + - node: + color: '#EFB341FF' + id: BrickTileSteelBox + decals: + 183: 2,53 + 184: 3,53 + - node: + color: '#52B4E9FF' + id: BrickTileSteelCornerNe + decals: + 748: -19,16 + 749: -23,16 + - node: + color: '#D381C9FF' + id: BrickTileSteelCornerNe + decals: + 896: -21,-1 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelCornerNe + decals: + 492: 29,14 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNe + decals: + 813: 2,-5 + 814: -2,-5 + 1244: -14,-51 + 1251: -41,-18 + - node: + color: '#52B4E9FF' + id: BrickTileSteelCornerNw + decals: + 746: -27,16 + 747: -21,16 + - node: + color: '#D381C9FF' + id: BrickTileSteelCornerNw + decals: + 897: -23,-1 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelCornerNw + decals: + 491: 25,14 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNw + decals: + 815: 0,-5 + 816: 4,-5 + 1245: -16,-51 + 1250: -44,-18 + - node: + color: '#52B4E9FF' + id: BrickTileSteelCornerSe + decals: + 744: -19,13 + 745: -23,13 + - node: + color: '#D381C9FF' + id: BrickTileSteelCornerSe + decals: + 899: -21,-4 + 969: -15,-19 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelCornerSe + decals: + 494: 29,12 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSe + decals: + 1249: -14,-52 + 1253: -41,-21 + - node: + color: '#52B4E9FF' + id: BrickTileSteelCornerSw + decals: + 750: -27,13 + 751: -21,13 + - node: + color: '#D381C9FF' + id: BrickTileSteelCornerSw + decals: + 898: -23,-4 + 968: -21,-19 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelCornerSw + decals: + 493: 25,12 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSw + decals: + 1248: -16,-52 + 1252: -44,-21 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndE + decals: + 824: 2,-3 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndW + decals: + 825: 4,-3 + 826: 0,-3 + - node: + color: '#52B4E9FF' + id: BrickTileSteelLineE + decals: + 728: -19,14 + 729: -19,15 + 733: -23,15 + 734: -23,14 + - node: + color: '#D381C9FF' + id: BrickTileSteelLineE + decals: + 890: -21,-2 + 891: -21,-3 + 959: -15,-17 + 960: -15,-18 + 1413: -15,-15 + 1414: -15,-14 + 1415: -15,-13 + 1416: -15,-11 + 1417: -15,-10 + 1418: -15,-9 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelLineE + decals: + 486: 29,13 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + decals: + 822: -2,-6 + 823: 2,-6 + 1256: -41,-19 + 1257: -41,-20 + - node: + color: '#52B4E9FF' + id: BrickTileSteelLineN + decals: + 730: -24,16 + 731: -25,16 + 732: -26,16 + 743: -20,16 + - node: + color: '#D381C9FF' + id: BrickTileSteelLineN + decals: + 892: -22,-1 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelLineN + decals: + 487: 28,14 + 488: 27,14 + 489: 26,14 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 215: -4,26 + 817: -3,-5 + 818: 1,-5 + 819: 5,-5 + 827: 1,-3 + 830: 5,-3 + 1246: -15,-51 + 1254: -43,-18 + 1255: -42,-18 + - node: + color: '#52B4E9FF' + id: BrickTileSteelLineS + decals: + 739: -26,13 + 740: -25,13 + 741: -24,13 + 742: -20,13 + - node: + color: '#D381C9FF' + id: BrickTileSteelLineS + decals: + 893: -22,-4 + 961: -17,-19 + 962: -16,-19 + 963: -18,-19 + 964: -19,-19 + 965: -20,-19 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelLineS + decals: + 483: 28,12 + 484: 27,12 + 485: 26,12 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 828: 1,-3 + 829: 5,-3 + 1247: -15,-52 + 1260: -43,-21 + 1261: -42,-21 + 1460: -3,-3 + 1461: -2,-3 + 1462: -1,-3 + - node: + color: '#52B4E9FF' + id: BrickTileSteelLineW + decals: + 735: -27,15 + 736: -27,14 + 737: -21,15 + 738: -21,14 + - node: + color: '#D381C9FF' + id: BrickTileSteelLineW + decals: + 894: -23,-3 + 895: -23,-2 + 966: -21,-18 + 967: -21,-17 + 1419: -18,-15 + 1420: -18,-14 + 1421: -18,-13 + 1422: -18,-11 + 1423: -18,-10 + 1424: -18,-9 + 1426: -18,-12 + 1427: -18,-16 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelLineW + decals: + 490: 25,13 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + decals: + 214: 2,28 + 820: 4,-6 + 821: 0,-6 + 1258: -44,-19 + 1259: -44,-20 + - node: + color: '#EFB341FF' + id: BrickTileWhiteBox + decals: + 1107: 19,-15 + - node: + color: '#52B4E9FF' + id: BrickTileWhiteCornerNe + decals: + 631: -21,6 + 632: -18,6 + 633: -15,6 + 777: -9,6 + - node: + color: '#9D9D97FF' + id: BrickTileWhiteCornerNe + decals: + 1305: 46,28 + 1328: 43,27 + - node: + color: '#9FED58FF' + id: BrickTileWhiteCornerNe + decals: + 707: -11,21 + 710: -11,19 + - node: + color: '#A46106FF' + id: BrickTileWhiteCornerNe + decals: + 1164: 11,-18 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNe + decals: + 496: 29,18 + - node: + color: '#EFB341FF' + id: BrickTileWhiteCornerNe + decals: + 1095: 20,-14 + 1111: 21,-6 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNe + decals: + 808: 4,2 + - node: + color: '#52B4E9FF' + id: BrickTileWhiteCornerNw + decals: + 628: -22,6 + 629: -19,6 + 630: -16,6 + 774: -10,6 + - node: + color: '#9D9D97FF' + id: BrickTileWhiteCornerNw + decals: + 1306: 39,28 + 1327: 42,27 + - node: + color: '#9FED58FF' + id: BrickTileWhiteCornerNw + decals: + 705: -12,21 + 709: -12,19 + - node: + color: '#A46106FF' + id: BrickTileWhiteCornerNw + decals: + 1229: 8,-18 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNw + decals: + 495: 27,18 + - node: + color: '#EFB341FF' + id: BrickTileWhiteCornerNw + decals: + 1096: 16,-14 + 1110: 20,-6 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNw + decals: + 805: 1,2 + - node: + color: '#334E6DFF' + id: BrickTileWhiteCornerSe + decals: + 1301: 44,33 + - node: + color: '#52B4E9FF' + id: BrickTileWhiteCornerSe + decals: + 634: -21,5 + 635: -18,5 + 636: -15,5 + 775: -9,5 + - node: + color: '#9D9D97FF' + id: BrickTileWhiteCornerSe + decals: + 1323: 46,25 + 1326: 43,26 + - node: + color: '#9FED58FF' + id: BrickTileWhiteCornerSe + decals: + 706: -11,18 + 708: -11,20 + - node: + color: '#A46106FF' + id: BrickTileWhiteCornerSe + decals: + 1163: 11,-24 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSe + decals: + 497: 29,16 + - node: + color: '#EFB341FF' + id: BrickTileWhiteCornerSe + decals: + 1097: 20,-16 + 1108: 21,-7 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSe + decals: + 806: 4,1 + - node: + color: '#334E6DFF' + id: BrickTileWhiteCornerSw + decals: + 1302: 41,33 + - node: + color: '#52B4E9FF' + id: BrickTileWhiteCornerSw + decals: + 637: -22,5 + 638: -19,5 + 639: -16,5 + 776: -10,5 + - node: + color: '#9D9D97FF' + id: BrickTileWhiteCornerSw + decals: + 1324: 39,25 + 1325: 42,26 + - node: + color: '#9FED58FF' + id: BrickTileWhiteCornerSw + decals: + 704: -12,18 + 711: -12,20 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSw + decals: + 498: 27,16 + - node: + color: '#EFB341FF' + id: BrickTileWhiteCornerSw + decals: + 1098: 16,-16 + 1109: 20,-7 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSw + decals: + 807: 1,1 + - node: + color: '#9FED5896' + id: BrickTileWhiteInnerNe + decals: + 158: -2,52 + - node: + color: '#BDFF8593' + id: BrickTileWhiteInnerNe + decals: + 175: 1,54 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerNe + decals: + 149: 1,50 + - node: + color: '#EFB341FF' + id: BrickTileWhiteInnerNe + decals: + 171: 1,52 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerNe + decals: + 1237: -5,-25 + - node: + color: '#9FED5896' + id: BrickTileWhiteInnerNw + decals: + 165: 1,52 + - node: + color: '#A46106FF' + id: BrickTileWhiteInnerNw + decals: + 180: 1,54 + 1228: 8,-19 + - node: + color: '#D381C9FF' + id: BrickTileWhiteInnerNw + decals: + 157: 1,50 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerNw + decals: + 1398: -3,-25 + - node: + color: '#D381C9FF' + id: BrickTileWhiteInnerSe + decals: + 151: -2,52 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerSe + decals: + 148: 1,52 + - node: + color: '#EFB341FF' + id: BrickTileWhiteInnerSe + decals: + 172: 1,54 + - node: + color: '#9FED5896' + id: BrickTileWhiteInnerSw + decals: + 164: 1,54 + - node: + color: '#D381C9FF' + id: BrickTileWhiteInnerSw + decals: + 154: 1,52 + - node: + color: '#334E6DFF' + id: BrickTileWhiteLineE + decals: + 1300: 44,34 + - node: + color: '#7C5C98FF' + id: BrickTileWhiteLineE + decals: + 1399: 9,-2 + - node: + color: '#9D9D97FF' + id: BrickTileWhiteLineE + decals: + 1313: 46,27 + 1314: 46,26 + - node: + color: '#A46106FF' + id: BrickTileWhiteLineE + decals: + 1155: 11,-19 + 1156: 11,-20 + 1157: 11,-21 + 1158: 11,-22 + 1159: 11,-23 + 1227: 7,-18 + - node: + color: '#BDFF8593' + id: BrickTileWhiteLineE + decals: + 176: 1,55 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineE + decals: + 147: 1,51 + 501: 29,17 + - node: + color: '#EFB341FF' + id: BrickTileWhiteLineE + decals: + 166: 1,53 + 1105: 20,-15 + - node: + color: '#9D9D97FF' + id: BrickTileWhiteLineN + decals: + 1307: 40,28 + 1308: 41,28 + 1309: 42,28 + 1310: 43,28 + 1311: 44,28 + 1312: 45,28 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineN + decals: + 159: -1,52 + 160: 0,52 + - node: + color: '#A46106FF' + id: BrickTileWhiteLineN + decals: + 177: -1,54 + 178: 0,54 + 1153: 9,-18 + 1154: 10,-18 + - node: + color: '#BDFF8593' + id: BrickTileWhiteLineN + decals: + 173: 2,54 + 174: 3,54 + - node: + color: '#D381C9FF' + id: BrickTileWhiteLineN + decals: + 155: -1,50 + 156: 0,50 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + decals: + 143: 2,50 + 144: 3,50 + 500: 28,18 + - node: + color: '#EFB341FF' + id: BrickTileWhiteLineN + decals: + 169: 2,52 + 170: 3,52 + 1099: 17,-14 + 1100: 18,-14 + 1101: 19,-14 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + decals: + 809: 2,2 + 810: 3,2 + 831: 3,-1 + 832: 4,-1 + 1236: -4,-25 + - node: + color: '#334E6DFF' + id: BrickTileWhiteLineS + decals: + 141: 2,50 + 142: 3,50 + 1297: 42,33 + 1298: 43,33 + - node: + color: '#52B4E9FF' + id: BrickTileWhiteLineS + decals: + 138: -1,50 + 139: 0,50 + 140: 1,50 + 1333: -4,-34 + - node: + color: '#7C5C98FF' + id: BrickTileWhiteLineS + decals: + 1404: 14,1 + 1405: 15,1 + - node: + color: '#9D9D97FF' + id: BrickTileWhiteLineS + decals: + 1315: 45,25 + 1316: 44,25 + 1317: 43,25 + 1318: 42,25 + 1319: 41,25 + 1320: 40,25 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineS + decals: + 161: -1,54 + 162: 0,54 + - node: + color: '#A46106FF' + id: BrickTileWhiteLineS + decals: + 1160: 8,-24 + 1161: 9,-24 + 1162: 10,-24 + 1334: -3,-34 + - node: + color: '#D381C9FF' + id: BrickTileWhiteLineS + decals: + 152: -1,52 + 153: 0,52 + 1335: -5,-34 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + decals: + 145: 2,52 + 146: 3,52 + 499: 28,16 + - node: + color: '#EFB341FF' + id: BrickTileWhiteLineS + decals: + 167: 2,54 + 168: 3,54 + 1102: 17,-16 + 1103: 18,-16 + 1104: 19,-16 + 1332: -2,-34 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + decals: + 811: 2,1 + 812: 3,1 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineW + decals: + 1329: -7,-32 + - node: + color: '#334E6DFF' + id: BrickTileWhiteLineW + decals: + 1299: 41,34 + - node: + color: '#70707093' + id: BrickTileWhiteLineW + decals: + 1331: -7,-34 + - node: + color: '#9D9D97FF' + id: BrickTileWhiteLineW + decals: + 1321: 39,26 + 1322: 39,27 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineW + decals: + 163: 1,53 + - node: + color: '#A46106FF' + id: BrickTileWhiteLineW + decals: + 179: 1,55 + - node: + color: '#C78B1993' + id: BrickTileWhiteLineW + decals: + 1330: -7,-33 + - node: + color: '#D381C9FF' + id: BrickTileWhiteLineW + decals: + 150: 1,51 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineW + decals: + 502: 27,17 + - node: + color: '#EFB341FF' + id: BrickTileWhiteLineW + decals: + 1106: 16,-15 + - node: + color: '#FFFFFFFF' + id: Busha1 + decals: + 1354: 28.377537,33.036083 + 1384: -25.060997,23.98543 + - node: + color: '#FFFFFFFF' + id: Bushb2 + decals: + 1349: 22.922419,33.036083 + 1350: 19.880083,33.942333 + - node: + color: '#FFFFFFFF' + id: Bushb3 + decals: + 1383: -23.045372,22.032305 + - node: + color: '#FFFFFFFF' + id: Bushc1 + decals: + 1351: 18.98016,34.92671 + 1352: 19.38641,32.098583 + 1353: 24.355186,34.536083 + - node: + color: '#FFFFFFFF' + id: Bushc2 + decals: + 1375: 34.975742,34.972504 + 1393: -22.967247,20.969805 + - node: + color: '#FFFFFFFF' + id: Bushi1 + decals: + 1373: 28.499575,31.984146 + 1374: 36.95945,33.952896 + 1385: -26.967247,21.92293 + 1387: -23.998497,23.938555 + - node: + color: '#FFFFFFFF' + id: Bushi2 + decals: + 1390: -26.014122,20.92293 + - node: + color: '#FFFFFFFF' + id: Bushi3 + decals: + 1372: 27.04645,31.937271 + - node: + color: '#FFFFFFFF' + id: Bushi4 + decals: + 1355: 31.565037,34.80171 + 1356: 32.45566,32.92671 + 1357: 29.877537,34.89546 + - node: + color: '#FFFFFFFF' + id: Caution + decals: + 981: -27,-6 + 1134: 11,-28 + 1135: 13,-28 + 1235: -41,16 + - node: + color: '#000000FF' + id: CheckerNESW + decals: + 778: 0,3 + 779: 1,3 + 780: 2,3 + 781: 3,3 + 782: 4,3 + 783: 5,3 + 784: 5,2 + 785: 0,2 + 786: 0,1 + 787: 5,1 + 788: 5,0 + 789: 4,0 + 790: 3,0 + 791: 2,0 + 792: 1,0 + 793: 0,0 + 794: 4,4 + 795: 3,4 + 796: 6,2 + - node: + color: '#52B4E996' + id: CheckerNESW + decals: + 640: -17,12 + 641: -16,12 + 642: -17,13 + 643: -16,13 + 644: -17,14 + 645: -16,14 + 646: -17,15 + 647: -16,15 + 648: -16,16 + 649: -17,16 + - node: + color: '#A4610696' + id: CheckerNESW + decals: + 1218: 6,-28 + 1219: 6,-27 + 1220: 6,-26 + 1221: 5,-26 + 1222: 5,-27 + 1223: 5,-28 + 1224: 4,-28 + 1225: 4,-27 + 1226: 4,-26 + - node: + color: '#D381C996' + id: CheckerNESW + decals: + 940: -13,-7 + 941: -13,-6 + 942: -12,-6 + 943: -12,-7 + - node: + color: '#DE3A3A96' + id: CheckerNESW + decals: + 381: 18,12 + 382: 18,13 + 383: 18,14 + 384: 18,15 + 385: 19,15 + 386: 19,14 + 387: 19,13 + 388: 19,12 + 389: 20,12 + 390: 20,13 + 391: 20,14 + 392: 20,15 + 393: 21,15 + 394: 21,14 + 395: 21,13 + 396: 21,12 + 397: 22,12 + 398: 22,13 + 399: 22,15 + 400: 22,14 + 401: 23,15 + 402: 23,14 + 403: 23,13 + 404: 23,12 + 405: 20,11 + 406: 21,11 + 563: 15,11 + 564: 14,12 + 565: 15,12 + 566: 16,12 + 567: 16,13 + 568: 15,13 + 569: 14,13 + 570: 14,14 + 571: 15,14 + 572: 16,14 + 573: 16,15 + 574: 15,15 + 575: 14,15 + 576: 13,14 + 577: 13,13 + 582: 10,13 + 583: 10,14 + - node: + color: '#52B4E996' + id: CheckerNWSE + decals: + 692: -8,8 + 693: -9,8 + 694: -10,8 + 695: -10,9 + 696: -9,9 + 697: -8,9 + 698: -8,10 + 699: -9,10 + 700: -10,10 + 701: -10,11 + 702: -9,11 + 703: -8,11 + - node: + color: '#DE3A3A96' + id: CheckerNWSE + decals: + 561: 34,11 + 562: 35,11 + 600: 15,7 + 601: 18,7 + 602: 12,7 + - node: + color: '#EF5C1F93' + id: CheckerNWSE + decals: + 519: 32,23 + 520: 33,23 + - node: + color: '#EFB34196' + id: CheckerNWSE + decals: + 1008: 17,-5 + 1009: 16,-5 + 1010: 15,-5 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 979: -21,-14 + 980: -21,-10 + 1262: -6,52 + 1263: -7,53 + 1264: -8,52 + 1265: -7,51 + 1395: 11,27 + 1396: 12,27 + 1397: 13,27 + - node: + color: '#000000FF' + id: DiagonalCheckerAOverlay + decals: + 797: 2,2 + 798: 3,1 + 799: 1,1 + 800: 4,2 + 801: 2,1 + 802: 1,2 + 803: 3,2 + 804: 4,1 + - node: + color: '#334E6DC8' + id: FullTileOverlayGreyscale + decals: + 308: -7,29 + 309: -13,30 + 310: -16,30 + 321: 4,20 + 322: 4,17 + - node: + color: '#52B4E996' + id: FullTileOverlayGreyscale + decals: + 482: 22,4 + - node: + color: '#DE3A3A96' + id: FullTileOverlayGreyscale + decals: + 503: 30,13 + 504: 30,17 + 509: 32,19 + 510: 33,19 + - node: + color: '#EF5C1F93' + id: FullTileOverlayGreyscale + decals: + 513: 32,22 + 514: 33,22 + 515: 32,24 + 516: 33,24 + 535: 26,25 + 536: 26,27 + - node: + color: '#FFFFFFFF' + id: Grassa3 + decals: + 1344: 25.518755,33.161083 + 1345: 28.102278,34.536083 + 1346: 30.90701,33.067333 + 1388: -24.060997,21.969805 + - node: + color: '#FFFFFFFF' + id: Grassc1 + decals: + 1347: 33.051407,34.442333 + 1348: 35.00453,33.848583 + - node: + color: '#FFFFFFFF' + id: Grassd1 + decals: + 1343: 22.28438,34.23921 + - node: + color: '#FFFFFFFF' + id: Grassd3 + decals: + 1369: 28.9527,33.984146 + 1370: 26.85895,32.952896 + - node: + color: '#FFFFFFFF' + id: Grasse1 + decals: + 1368: 21.980526,32.077896 + - node: + color: '#FFFFFFFF' + id: Grasse2 + decals: + 1365: 23.027401,35.28102 + 1366: 24.996151,35.327896 + 1367: 23.902401,32.12477 + - node: + color: '#FFFFFFFF' + id: Grasse3 + decals: + 1362: 20.983843,34.62477 + 1363: 19.968218,33.077896 + 1364: 23.34307,34.234146 + 1389: -25.998497,19.938555 + - node: + color: '#2BAF9D93' + id: HalfTileOverlayGreyscale + decals: + 1433: 32,-17 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale + decals: + 305: -11,31 + 306: -10,31 + 307: -9,31 + 319: 4,19 + 323: 4,16 + 324: 3,16 + 325: 5,16 + 342: 2,25 + 343: 3,25 + 344: 4,25 + 345: -2,32 + 346: -3,32 + 347: 0,31 + 348: -5,31 + 372: -3,17 + 373: -2,17 + 374: -1,17 + 375: 0,17 + 376: 1,17 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + decals: + 469: 21,7 + 470: 22,7 + 473: 22,3 + 716: -17,21 + 717: -16,21 + 718: -15,21 + 719: -14,21 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale + decals: + 37: 3,-8 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale + decals: + 845: -11,-2 + 846: -10,-2 + 900: -18,-1 + 901: -17,-1 + 902: -16,-1 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale + decals: + 468: 32,18 + 556: 37,13 + - node: + color: '#EF5C1F93' + id: HalfTileOverlayGreyscale + decals: + 511: 32,21 + 512: 33,21 + 525: 28,28 + 526: 29,28 + 527: 30,28 + 528: 31,28 + 529: 32,28 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale + decals: + 1080: 12,-11 + 1081: 13,-11 + 1082: 14,-11 + 1083: 15,-11 + - node: + color: '#2BAF9D93' + id: HalfTileOverlayGreyscale180 + decals: + 1434: 32,-19 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale180 + decals: + 294: -11,26 + 295: -9,26 + 296: -10,26 + 320: 4,18 + 349: 4,21 + 350: 2,23 + 351: 1,23 + 352: -1,27 + 353: -2,27 + 354: -5,27 + 355: -4,27 + 356: -3,27 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + decals: + 471: 21,5 + 472: 22,5 + 712: -17,18 + 713: -16,18 + 714: -15,18 + 715: -14,18 + - node: + color: '#707070FF' + id: HalfTileOverlayGreyscale180 + decals: + 57: -9,-10 + 58: -8,-10 + 59: -8,-10 + 60: -7,-10 + - node: + color: '#79150096' + id: HalfTileOverlayGreyscale180 + decals: + 286: 1,14 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale180 + decals: + 847: -12,-4 + 848: -11,-4 + 849: -10,-4 + 907: -16,-7 + 908: -17,-7 + 909: -18,-7 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale180 + decals: + 507: 32,20 + 508: 33,20 + 555: 37,10 + - node: + color: '#EF5C1F93' + id: HalfTileOverlayGreyscale180 + decals: + 521: 32,25 + 522: 31,25 + 523: 29,24 + 524: 28,24 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale180 + decals: + 1077: 15,-12 + 1078: 12,-13 + 1079: 13,-13 + - node: + color: '#2BAF9D93' + id: HalfTileOverlayGreyscale270 + decals: + 1436: 31,-18 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale270 + decals: + 301: -12,27 + 302: -12,28 + 303: -12,29 + 304: -12,30 + 365: -6,28 + 366: -6,29 + 367: -6,30 + 368: 0,26 + 369: 0,25 + 370: 0,24 + 371: 3,22 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + decals: + 475: 20,6 + 671: -27,10 + 722: -18,20 + 727: -18,19 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale270 + decals: + 18: 7,2 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale270 + decals: + 1203: 8,-27 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale270 + decals: + 851: -13,-3 + 852: -13,-2 + 910: -19,-6 + 911: -19,-5 + 912: -19,-4 + 913: -19,-3 + 914: -19,-2 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale270 + decals: + 559: 36,11 + 560: 36,12 + 586: 11,13 + 587: 11,14 + - node: + color: '#EF5C1F93' + id: HalfTileOverlayGreyscale270 + decals: + 532: 27,25 + 533: 27,26 + 534: 27,27 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale270 + decals: + 1021: 15,-8 + 1084: 11,-12 + - node: + color: '#2BAF9D93' + id: HalfTileOverlayGreyscale90 + decals: + 1435: 33,-18 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale90 + decals: + 297: -8,27 + 298: -8,28 + 299: -8,29 + 300: -8,30 + 357: 5,22 + 358: 5,23 + 359: 5,24 + 360: 1,26 + 361: 1,27 + 362: 1,28 + 363: 1,29 + 364: 1,30 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale90 + decals: + 474: 23,6 + 669: -12,10 + 670: -12,9 + 720: -13,20 + 721: -13,19 + - node: + color: '#707070FF' + id: HalfTileOverlayGreyscale90 + decals: + 62: -12,-12 + 63: -12,-13 + 64: -12,-14 + 65: -12,-16 + 66: -12,-15 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale90 + decals: + 287: -5,2 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale90 + decals: + 1144: 6,-23 + 1145: 6,-22 + 1146: 6,-21 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale90 + decals: + 850: -9,-3 + 903: -15,-2 + 904: -15,-4 + 905: -15,-5 + 906: -15,-6 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale90 + decals: + 557: 38,11 + 558: 38,12 + 584: 12,13 + 585: 12,14 + - node: + color: '#EF5C1F93' + id: HalfTileOverlayGreyscale90 + decals: + 530: 33,26 + 531: 33,27 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale90 + decals: + 985: 13,-8 + 986: 13,-7 + 987: 13,-6 + 1020: 16,-8 + - node: + color: '#FFFFFFFF' + id: LoadingArea + decals: + 1458: 1,17 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 1459: 6,-23 + - node: + color: '#D381C9FF' + id: MiniTileSteelCornerNe + decals: + 885: -32,-7 + - node: + color: '#D381C9FF' + id: MiniTileSteelCornerNw + decals: + 887: -31,-7 + - node: + color: '#D381C9FF' + id: MiniTileSteelCornerSe + decals: + 880: -25,-4 + - node: + color: '#D381C9FF' + id: MiniTileSteelCornerSw + decals: + 881: -29,-4 + - node: + color: '#D381C9FF' + id: MiniTileSteelInnerNw + decals: + 886: -30,-7 + - node: + color: '#D381C9FF' + id: MiniTileSteelLineE + decals: + 877: -25,-3 + 878: -25,-2 + 879: -25,-1 + 889: -32,-8 + - node: + color: '#D381C9FF' + id: MiniTileSteelLineS + decals: + 874: -28,-4 + 875: -27,-4 + 876: -26,-4 + 883: -32,-6 + 884: -31,-6 + - node: + color: '#D381C9FF' + id: MiniTileSteelLineW + decals: + 871: -29,-1 + 872: -29,-2 + 873: -29,-3 + 888: -31,-8 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteCornerNe + decals: + 613: -24,7 + - node: + color: '#EF7241FF' + id: MiniTileWhiteCornerNe + decals: + 752: -11,16 + 753: -9,14 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteCornerNw + decals: + 612: -27,7 + - node: + color: '#EF7241FF' + id: MiniTileWhiteCornerNw + decals: + 756: -14,16 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteCornerSe + decals: + 614: -24,5 + - node: + color: '#D381C9FF' + id: MiniTileWhiteCornerSe + decals: + 926: -25,-8 + - node: + color: '#EF7241FF' + id: MiniTileWhiteCornerSe + decals: + 754: -9,13 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteCornerSw + decals: + 615: -27,5 + - node: + color: '#D381C9FF' + id: MiniTileWhiteCornerSw + decals: + 927: -29,-8 + - node: + color: '#EF7241FF' + id: MiniTileWhiteCornerSw + decals: + 755: -14,13 + - node: + color: '#7C5C98FF' + id: MiniTileWhiteInnerNe + decals: + 1402: 9,-3 + - node: + color: '#EF7241FF' + id: MiniTileWhiteInnerNe + decals: + 766: -11,14 + - node: + color: '#7C5C98FF' + id: MiniTileWhiteInnerSe + decals: + 1400: 13,1 + 1401: 9,-1 + - node: + color: '#7C5C98FF' + id: MiniTileWhiteInnerSw + decals: + 1403: 16,1 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteLineE + decals: + 604: -24,6 + - node: + color: '#D381C9FF' + id: MiniTileWhiteLineE + decals: + 919: -25,-6 + 920: -25,-7 + - node: + color: '#EF7241FF' + id: MiniTileWhiteLineE + decals: + 761: -11,15 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteLineN + decals: + 609: -26,7 + 610: -25,7 + - node: + color: '#D381C9FF' + id: MiniTileWhiteLineN + decals: + 928: -21,-6 + 929: -22,-6 + 930: -23,-6 + - node: + color: '#EF7241FF' + id: MiniTileWhiteLineN + decals: + 764: -13,16 + 765: -12,16 + 767: -10,14 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteLineS + decals: + 605: -26,5 + 606: -26,5 + 607: -25,5 + - node: + color: '#D381C9FF' + id: MiniTileWhiteLineS + decals: + 921: -26,-8 + 922: -27,-8 + 923: -28,-8 + 931: -23,-7 + 932: -22,-7 + 933: -21,-7 + - node: + color: '#EF7241FF' + id: MiniTileWhiteLineS + decals: + 757: -13,13 + 758: -12,13 + 759: -11,13 + 760: -10,13 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteLineW + decals: + 608: -27,6 + - node: + color: '#D381C9FF' + id: MiniTileWhiteLineW + decals: + 924: -29,-7 + 925: -29,-6 + - node: + color: '#EF7241FF' + id: MiniTileWhiteLineW + decals: + 762: -14,14 + 763: -14,15 + - node: + color: '#334E6DC8' + id: MonoOverlay + decals: + 1338: -8,-32 + - node: + color: '#52B4E996' + id: MonoOverlay + decals: + 624: -11,10 + 625: -11,9 + 626: -11,6 + 627: -11,5 + 768: -10,7 + 769: -9,7 + 770: -13,12 + 771: -10,12 + 772: -9,12 + 773: -15,15 + 1337: -4,-35 + - node: + color: '#52B4E9FF' + id: MonoOverlay + decals: + 611: -25,8 + - node: + color: '#70707093' + id: MonoOverlay + decals: + 1340: -8,-34 + - node: + color: '#A14F9793' + id: MonoOverlay + decals: + 867: -27,-3 + 868: -28,-2 + 869: -27,-1 + 870: -26,-2 + 882: -27,-5 + - node: + color: '#A4610696' + id: MonoOverlay + decals: + 1165: 5,-25 + 1166: 7,-27 + 1167: 9,-25 + 1168: 10,-25 + 1169: 12,-23 + 1170: 12,-22 + 1171: 7,-22 + 1172: 7,-21 + 1173: 7,-24 + 1176: 17,-22 + 1177: 17,-23 + 1342: -3,-35 + - node: + color: '#A46106FF' + id: MonoOverlay + decals: + 1174: 20,-25 + 1175: 21,-25 + - node: + color: '#C78B1993' + id: MonoOverlay + decals: + 1339: -8,-33 + - node: + color: '#D381C996' + id: MonoOverlay + decals: + 944: -13,-8 + 945: -12,-8 + 946: -11,-7 + 947: -11,-6 + 948: -12,-5 + 949: -13,-5 + 950: -17,-8 + 1336: -5,-35 + - node: + color: '#D381C9FF' + id: MonoOverlay + decals: + 934: -24,-6 + 935: -24,-7 + 936: -20,-6 + 937: -20,-7 + 938: -14,-7 + 939: -14,-6 + - node: + color: '#EF663193' + id: MonoOverlay + decals: + 1378: 34,23 + - node: + color: '#EFB34196' + id: MonoOverlay + decals: + 1022: 14,-8 + 1023: 14,-7 + 1024: 15,-6 + 1025: 16,-6 + 1026: 22,-10 + 1027: 23,-10 + 1028: 24,-8 + 1029: 27,-10 + 1030: 17,-11 + 1031: 17,-12 + 1032: 25,-13 + 1033: 30,-12 + 1034: 30,-11 + 1341: -2,-35 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale + decals: + 327: 6,16 + 328: -4,31 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale + decals: + 477: 23,3 + 616: -7,7 + 617: -7,8 + 618: -7,9 + 619: -7,10 + 620: -7,11 + 621: -7,12 + 622: -7,13 + 623: -7,14 + 687: -13,7 + 688: -13,6 + - node: + color: '#79150096' + id: QuarterTileOverlayGreyscale + decals: + 260: 7,4 + 261: 7,5 + 262: 7,6 + 263: 7,7 + 264: 7,8 + 265: 7,9 + 266: 7,10 + 275: 7,11 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale + decals: + 20: 7,1 + 28: 7,-8 + 29: -4,-8 + 30: -3,-8 + 31: -2,-8 + 32: -1,-8 + 33: 0,-8 + 34: 1,-8 + 39: 2,-8 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale + decals: + 1150: 5,-20 + 1151: 4,-20 + 1152: 3,-20 + 1192: 13,-21 + 1193: 13,-22 + 1194: 13,-24 + 1195: 13,-23 + 1196: 13,-25 + 1197: 13,-26 + 1198: 12,-26 + 1199: 11,-26 + 1200: 10,-26 + 1201: 9,-26 + 1202: 8,-26 + - node: + color: '#B02E26FF' + id: QuarterTileOverlayGreyscale + decals: + 1303: 42,29 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale + decals: + 48: -10,-10 + 49: -10,-9 + 50: -10,-8 + 51: -10,-7 + 52: -10,-6 + 53: -9,-6 + 54: -8,-6 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale + decals: + 463: 31,10 + 1465: 10,-5 + 1466: 11,-5 + - node: + color: '#EF5C1F93' + id: QuarterTileOverlayGreyscale + decals: + 518: 34,21 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + decals: + 988: 12,-5 + 990: 18,-5 + 991: 18,-4 + 992: 19,-4 + 993: 20,-4 + 994: 21,-4 + 995: 22,-4 + 1005: 18,-8 + 1006: 18,-7 + 1007: 18,-6 + 1057: 28,-11 + 1058: 27,-11 + 1059: 26,-11 + 1060: 25,-11 + 1061: 24,-11 + 1086: 25,-8 + 1087: 25,-7 + 1088: 25,-6 + 1089: 25,-5 + 1090: 25,-4 + - node: + color: '#F9801DFF' + id: QuarterTileOverlayGreyscale + decals: + 1292: 45,34 + - node: + color: '#3C44AAFF' + id: QuarterTileOverlayGreyscale180 + decals: + 1285: 43,30 + 1286: 43,31 + 1287: 43,32 + 1288: 44,32 + 1289: 45,32 + 1290: 46,32 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + decals: + 672: -26,9 + 673: -25,9 + 674: -24,9 + 675: -23,9 + 678: -21,8 + 679: -20,8 + 680: -19,8 + 681: -18,8 + 682: -17,8 + 683: -15,8 + 684: -16,8 + 685: -14,8 + 689: -12,8 + 690: -12,7 + 691: -12,6 + - node: + color: '#707070FF' + id: QuarterTileOverlayGreyscale180 + decals: + 55: -10,-10 + 61: -12,-11 + - node: + color: '#79150096' + id: QuarterTileOverlayGreyscale180 + decals: + 276: -4,12 + 277: -3,13 + 283: -2,14 + 284: -1,14 + 285: 0,14 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale180 + decals: + 41: -5,-7 + 42: -5,-6 + 43: -5,-5 + 44: -5,-4 + 45: -5,-3 + 46: -5,-2 + 47: -5,-1 + 289: -5,3 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale180 + decals: + 426: 13,8 + 427: 14,8 + 428: 15,8 + 429: 16,8 + 430: 17,8 + 431: 18,8 + 432: 20,8 + 433: 19,8 + 434: 21,8 + 435: 22,8 + 436: 23,8 + 437: 24,8 + 438: 25,8 + 439: 26,8 + 440: 27,8 + 441: 28,8 + 442: 29,8 + 443: 30,8 + 444: 31,8 + 445: 32,8 + 446: 33,8 + 447: 33,9 + 448: 33,10 + 449: 33,11 + 450: 33,12 + 451: 33,13 + 452: 33,14 + 453: 33,15 + 454: 33,17 + 455: 33,16 + 505: 31,20 + 603: 12,8 + - node: + color: '#EF5C1F93' + id: QuarterTileOverlayGreyscale180 + decals: + 550: 30,25 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale180 + decals: + 996: 23,-5 + 997: 23,-6 + 998: 23,-7 + 999: 23,-8 + 1000: 23,-9 + 1001: 22,-9 + 1002: 21,-9 + 1003: 20,-9 + 1004: 19,-9 + 1051: 23,-12 + 1052: 22,-12 + 1053: 21,-12 + 1054: 20,-12 + 1055: 19,-12 + 1075: 14,-12 + 1091: 26,-9 + 1092: 27,-9 + 1093: 28,-9 + 1094: 29,-9 + - node: + color: '#F9801DFF' + id: QuarterTileOverlayGreyscale180 + decals: + 1291: 46,33 + - node: + color: '#2BAF9D93' + id: QuarterTileOverlayGreyscale270 + decals: + 1447: 32,-12 + 1448: 31,-12 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale270 + decals: + 330: 0,27 + 331: 3,23 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + decals: + 676: -22,9 + 686: -13,8 + 1463: 10,-9 + 1464: 11,-9 + - node: + color: '#707070FF' + id: QuarterTileOverlayGreyscale270 + decals: + 56: -6,-10 + - node: + color: '#79150096' + id: QuarterTileOverlayGreyscale270 + decals: + 278: 6,12 + 279: 5,13 + 280: 4,14 + 281: 3,14 + 282: 2,14 + - node: + color: '#9D9D97FF' + id: QuarterTileOverlayGreyscale270 + decals: + 1295: 39,33 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale270 + decals: + 19: 7,3 + 21: 7,-1 + 22: 7,-2 + 23: 7,-3 + 24: 7,-4 + 25: 7,-5 + 26: 7,-6 + 27: 7,-7 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale270 + decals: + 1147: 5,-24 + 1148: 4,-24 + 1149: 3,-24 + 1178: 8,-28 + 1179: 9,-28 + 1210: 18,-22 + 1211: 18,-23 + 1212: 18,-24 + 1213: 19,-24 + 1214: 20,-24 + 1215: 21,-24 + - node: + color: '#B02E26FF' + id: QuarterTileOverlayGreyscale270 + decals: + 1279: 39,32 + 1280: 40,32 + 1281: 41,32 + 1282: 42,32 + 1283: 42,31 + 1284: 42,30 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale270 + decals: + 456: 31,17 + 457: 31,16 + 458: 31,15 + 459: 31,14 + 460: 31,13 + 461: 31,12 + 462: 31,11 + 506: 34,20 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale270 + decals: + 989: 12,-9 + 1047: 28,-12 + 1048: 27,-12 + 1049: 26,-12 + 1050: 25,-12 + 1056: 24,-12 + 1442: 31,-11 + 1443: 32,-11 + - node: + color: '#2BAF9D93' + id: QuarterTileOverlayGreyscale90 + decals: + 1441: 31,-11 + 1445: 32,-12 + 1446: 32,-11 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale90 + decals: + 326: 2,16 + 329: -1,31 + 341: 1,25 + - node: + color: '#3C44AAFF' + id: QuarterTileOverlayGreyscale90 + decals: + 1304: 43,29 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + decals: + 476: 21,3 + 650: -12,11 + 651: -13,11 + 652: -15,11 + 653: -14,11 + 654: -16,11 + 655: -17,11 + 656: -18,11 + 657: -19,11 + 658: -20,11 + 659: -21,11 + 660: -22,11 + 661: -23,11 + 662: -24,11 + 663: -25,11 + 664: -26,11 + - node: + color: '#79150096' + id: QuarterTileOverlayGreyscale90 + decals: + 267: -5,4 + 268: -5,5 + 269: -5,6 + 270: -5,7 + 271: -5,8 + 272: -5,9 + 273: -5,10 + 274: -5,11 + - node: + color: '#9D9D97FF' + id: QuarterTileOverlayGreyscale90 + decals: + 1296: 40,34 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale90 + decals: + 35: 6,-8 + 36: 5,-8 + 38: 4,-8 + 40: -5,-8 + 288: -5,1 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale90 + decals: + 1180: 22,-26 + 1181: 21,-26 + 1182: 20,-26 + 1183: 19,-26 + 1184: 18,-26 + 1185: 16,-26 + 1186: 17,-26 + 1187: 16,-25 + 1188: 16,-24 + 1189: 16,-23 + 1190: 16,-22 + 1191: 16,-21 + 1205: 22,-21 + 1206: 21,-21 + 1207: 20,-21 + 1208: 19,-21 + 1209: 22,-22 + 1469: 22,-23 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale90 + decals: + 844: -12,-2 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale90 + decals: + 377: 9,15 + 378: 9,14 + 379: 9,13 + 380: 9,12 + 407: 30,10 + 408: 29,10 + 409: 27,10 + 410: 28,10 + 411: 26,10 + 412: 24,10 + 413: 25,10 + 414: 23,10 + 415: 22,10 + 416: 21,10 + 417: 20,10 + 418: 19,10 + 419: 18,10 + 420: 17,10 + 421: 16,10 + 422: 15,10 + 423: 14,10 + 424: 13,10 + 425: 12,10 + - node: + color: '#EF5C1F93' + id: QuarterTileOverlayGreyscale90 + decals: + 517: 31,21 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale90 + decals: + 1062: 23,-11 + 1063: 22,-11 + 1064: 21,-11 + 1065: 20,-11 + 1066: 19,-11 + 1444: 31,-12 + - node: + color: '#FFFFFFFF' + id: Rock01 + decals: + 1379: -27.060997,22.876055 + - node: + color: '#FFFFFFFF' + id: Rock05 + decals: + 1380: -25.107872,21.001055 + - node: + color: '#FFFFFFFF' + id: Rock06 + decals: + 1381: -25.060997,22.89168 + - node: + color: '#FFFFFFFF' + id: Rock07 + decals: + 1382: -23.045372,24.001055 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 976: -17,-7 + 977: -8,-10 + 978: -8,-15 + 982: -27,-4 + 1132: 10,-27 + 1133: 14,-27 + 1394: 12,26 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: StandClear + decals: + 1234: -40,22 + - node: + color: '#2BAF9D93' + id: ThreeQuarterTileOverlayGreyscale + decals: + 1438: 31,-17 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale + decals: + 291: -12,31 + 311: -15,31 + 317: 3,19 + 336: -4,32 + 337: -6,31 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale + decals: + 478: 20,7 + 666: -27,11 + 723: -18,21 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale + decals: + 1216: 18,-21 + - node: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale + decals: + 843: -13,-1 + 915: -19,-1 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale + decals: + 465: 11,10 + 467: 31,18 + 551: 36,13 + 579: 11,15 + - node: + color: '#EF5C1F93' + id: ThreeQuarterTileOverlayGreyscale + decals: + 537: 27,28 + 544: 24,28 + 545: 24,25 + - node: + color: '#EF791B93' + id: ThreeQuarterTileOverlayGreyscale + decals: + 591: 11,6 + 592: 14,6 + 593: 17,6 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale + decals: + 1017: 15,-7 + 1068: 18,-11 + 1073: 11,-11 + - node: + color: '#2BAF9D93' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 1440: 33,-19 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 293: -8,26 + 314: -14,30 + 315: 5,18 + 340: 5,21 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 481: 23,5 + 668: -12,5 + 726: -13,18 + - node: + color: '#9D9D97FF' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 1294: 40,33 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 1143: 6,-24 + 1217: 22,-24 + - node: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 840: -9,-4 + 918: -15,-7 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 554: 38,10 + 581: 12,12 + - node: + color: '#EF5C1F93' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 540: 30,24 + 541: 33,25 + 542: 25,24 + 543: 25,27 + - node: + color: '#EF791B93' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 597: 12,5 + 598: 15,5 + 599: 18,5 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 984: 13,-9 + 1019: 16,-9 + 1070: 29,-12 + 1071: 16,-12 + 1076: 14,-13 + - node: + color: '#2BAF9D93' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 1439: 31,-19 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 292: -12,26 + 313: -15,30 + 318: 3,18 + 332: 3,21 + 338: 0,23 + 339: -6,27 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 480: 20,5 + 665: -27,9 + 667: -13,5 + 677: -22,8 + 725: -18,18 + - node: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 839: -13,-4 + 917: -19,-7 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 464: 11,8 + 553: 36,10 + 578: 11,12 + - node: + color: '#EF5C1F93' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 539: 27,24 + 548: 24,24 + 549: 24,27 + - node: + color: '#EF791B93' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 594: 11,5 + 595: 14,5 + 596: 17,5 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 1011: 18,-9 + 1018: 15,-9 + 1069: 18,-12 + 1074: 11,-13 + 1085: 25,-9 + - node: + color: '#F9801DFF' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 1293: 45,33 + - node: + color: '#2BAF9D93' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 1437: 33,-17 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 290: -8,31 + 312: -14,31 + 316: 5,19 + 333: 5,25 + 334: 1,31 + 335: -1,32 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 479: 23,7 + 724: -13,21 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 1142: 6,-20 + - node: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 841: -9,-2 + 842: -12,-1 + 916: -15,-1 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 466: 33,18 + 552: 38,13 + 580: 12,15 + - node: + color: '#EF5C1F93' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 538: 33,28 + 546: 25,28 + 547: 25,25 + - node: + color: '#EF791B93' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 588: 12,6 + 589: 15,6 + 590: 18,6 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 983: 13,-5 + 1012: 23,-4 + 1016: 16,-7 + 1067: 29,-11 + 1072: 16,-11 + - node: + color: '#FFFFFFFF' + id: VentSmall + decals: + 972: -21,-18 + - node: + color: '#FFFFFFFF' + id: WarnBox + decals: + 129: -1,46 + 1270: -7,52 + - node: + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 134: -2,46 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 5: -9,-15 + 133: -1,45 + 1406: -12,-52 + - node: + color: '#FFFFFFFF' + id: WarnCornerSE + decals: + 209: -2,23 + 1013: 17,-4 + 1376: -41,23 + 1467: 18,-1 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 853: -11,-1 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 81: -8,49 + 82: -9,50 + 135: -3,46 + 866: -29,-4 + 1233: -40,20 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 6: -6,-15 + 79: -6,49 + 80: -5,50 + 198: -2,23 + 213: -4,24 + 865: -25,-4 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 83: -9,54 + 84: -8,55 + 1140: 9,-28 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 85: -6,55 + 86: -5,54 + 210: -4,26 + 1141: 15,-28 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 13: -10,-16 + 14: -10,-15 + 15: -10,-14 + 16: -10,-13 + 17: -10,-12 + 74: -9,53 + 75: -9,52 + 76: -9,51 + 136: -2,45 + 137: -2,44 + 207: -2,24 + 208: -2,25 + 862: -29,-3 + 863: -29,-2 + 864: -29,-1 + 1230: -40,21 + 1231: -40,22 + 1232: -40,23 + 1269: -6,52 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 67: -13,-8 + 68: -12,-8 + 77: -7,55 + 130: -2,47 + 131: -1,47 + 204: -5,23 + 205: -4,23 + 206: -3,23 + 854: -10,-1 + 855: -9,-1 + 1014: 16,-4 + 1015: 15,-4 + 1136: 11,-28 + 1137: 13,-28 + 1138: 14,-28 + 1139: 12,-28 + 1204: 10,-28 + 1266: -7,51 + 1377: -42,23 + 1409: -17,-12 + 1410: -16,-12 + 1428: -18,-16 + 1429: -17,-16 + 1430: -16,-16 + 1431: -18,-12 + 1468: 17,-1 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 0: -11,-12 + 1: -11,-13 + 2: -11,-14 + 3: -11,-15 + 4: -11,-16 + 7: -9,-16 + 8: -6,-13 + 9: -6,-12 + 10: -6,-14 + 71: -5,52 + 72: -5,51 + 73: -5,53 + 132: -1,44 + 199: -2,25 + 200: -2,24 + 211: -4,25 + 856: -25,-1 + 857: -25,-2 + 858: -25,-3 + 1267: -8,52 + 1407: -12,-53 + 1408: -12,-54 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 11: -8,-15 + 12: -7,-15 + 69: -13,-8 + 70: -12,-8 + 78: -7,49 + 201: -5,23 + 202: -4,23 + 203: -3,23 + 212: -5,24 + 859: -28,-4 + 860: -27,-4 + 861: -26,-4 + 951: -17,-9 + 952: -16,-9 + 953: -18,-17 + 954: -17,-17 + 955: -16,-17 + 956: -19,-17 + 957: -20,-17 + 970: -21,-17 + 971: -15,-17 + 1268: -7,53 + 1411: -17,-12 + 1412: -16,-12 + 1425: -18,-9 + 1432: -18,-12 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 1272: 41,31 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 1271: 44,31 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNe + decals: + 257: -4,9 + 258: -1,8 + 259: 3,9 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNw + decals: + 254: 6,9 + 255: 3,8 + 256: -1,9 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSe + decals: + 251: -1,12 + 252: -4,8 + 253: 3,12 + 1242: -8,-27 + 1243: -4,-27 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSw + decals: + 248: 6,8 + 249: -1,12 + 250: 3,12 + 1240: -6,-27 + 1241: -2,-27 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 243: -1,11 + 244: -1,10 + 245: -1,9 + 246: 3,10 + 247: 3,11 + 1274: 41,30 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 234: 0,8 + 235: 1,8 + 236: 2,8 + 237: -3,9 + 238: -2,9 + 239: 4,9 + 240: 5,9 + 833: 3,4 + 834: 4,4 + 1275: 40,31 + 1276: 39,31 + 1277: 45,31 + 1278: 46,31 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 216: -3,8 + 217: -2,8 + 218: -1,8 + 219: 0,8 + 220: 1,8 + 221: 1,8 + 222: 2,8 + 223: 3,8 + 224: 4,8 + 225: 5,8 + 226: 5,8 + 227: 0,12 + 228: 1,12 + 229: 2,12 + 1238: -7,-27 + 1239: -3,-27 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 230: 3,11 + 231: 3,11 + 232: 3,9 + 233: 3,10 + 241: -1,10 + 242: -1,11 + 1273: 44,30 + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 32767 + 1: 32768 + 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: 65535 + -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,0: + 0: 65535 + -1,1: + 0: 65535 + -1,2: + 0: 65535 + -1,3: + 0: 65535 + -2,-3: + 0: 65535 + -2,-2: + 0: 65535 + -2,-1: + 0: 65535 + -1,-3: + 0: 65535 + -1,-2: + 0: 65535 + -1,-1: + 0: 65535 + 0,-4: + 0: 65535 + 0,-3: + 0: 65535 + 0,-2: + 0: 65535 + 0,-1: + 0: 65535 + 1,-3: + 0: 65535 + 1,-2: + 0: 65535 + 1,-1: + 0: 65535 + 2,-3: + 0: 65535 + 2,-2: + 0: 65535 + 2,-1: + 0: 65535 + -4,4: + 0: 65535 + -4,5: + 0: 65535 + -4,6: + 0: 65535 + -4,7: + 0: 65535 + -3,4: + 0: 65535 + -3,5: + 0: 65535 + -3,6: + 0: 65535 + -3,7: + 0: 65535 + -2,4: + 0: 65535 + -2,5: + 0: 65535 + -2,6: + 0: 65535 + -2,7: + 0: 65535 + -1,4: + 0: 65535 + -1,5: + 0: 65535 + -1,6: + 0: 65535 + -1,7: + 0: 65535 + 0,4: + 0: 65535 + 0,5: + 0: 65535 + 0,6: + 0: 65535 + 0,7: + 0: 65535 + 1,4: + 0: 65535 + 1,5: + 0: 65535 + 1,6: + 0: 65535 + 1,7: + 0: 65535 + -8,1: + 0: 65535 + -8,2: + 0: 65535 + -8,3: + 0: 65535 + -8,0: + 0: 65535 + -7,0: + 0: 65535 + -7,1: + 0: 65535 + -7,2: + 0: 65535 + -7,3: + 0: 65535 + -6,0: + 0: 65535 + -6,1: + 0: 65535 + -6,2: + 0: 65535 + -6,3: + 0: 65535 + -5,0: + 0: 65535 + -5,1: + 0: 65535 + -5,2: + 0: 65535 + -5,3: + 0: 65535 + 4,0: + 0: 65535 + 5,0: + 0: 65535 + 6,0: + 0: 65535 + 0,-7: + 0: 65535 + 0,-6: + 0: 65535 + 0,-5: + 0: 65535 + -8,4: + 0: 65535 + -7,4: + 0: 65535 + -6,4: + 0: 65535 + -6,5: + 0: 65535 + -6,6: + 0: 65535 + -5,4: + 0: 65535 + -5,5: + 0: 65535 + -5,6: + 0: 65535 + -5,7: + 0: 65535 + 0,8: + 0: 32095 + 1,8: + 0: 6559 + -4,8: + 0: 44911 + -3,8: + 0: 28655 + -2,8: + 0: 58287 + -1,8: + 0: 61951 + -5,8: + 0: 28495 + -4,-4: + 0: 65535 + -4,-3: + 0: 65535 + -4,-2: + 0: 65535 + -4,-1: + 0: 65535 + -3,-4: + 0: 65535 + -3,-3: + 0: 65535 + -3,-2: + 0: 65535 + -3,-1: + 0: 65535 + -2,-4: + 0: 65535 + -1,-4: + 0: 65535 + -8,-3: + 0: 65535 + -8,-2: + 0: 65535 + -8,-1: + 0: 65535 + -7,-3: + 0: 65535 + -7,-2: + 0: 65535 + -7,-1: + 0: 65535 + -6,-4: + 0: 65533 + -6,-3: + 0: 65533 + -6,-2: + 0: 65535 + -6,-1: + 0: 65535 + -5,-4: + 0: 65535 + -5,-3: + 0: 65535 + -5,-2: + 0: 65535 + -5,-1: + 0: 65535 + -4,-5: + 0: 65535 + -3,-5: + 0: 65535 + -2,-5: + 0: 65535 + -1,-5: + 0: 65535 + -6,-5: + 0: 65535 + -5,-5: + 0: 65535 + -9,-3: + 0: 65535 + -9,-2: + 0: 65535 + -9,-1: + 0: 65535 + 3,1: + 0: 65535 + 3,2: + 0: 65535 + 3,3: + 0: 65535 + 1,-4: + 0: 65535 + 2,-4: + 0: 65535 + 3,-4: + 0: 65535 + 3,-3: + 0: 65535 + 3,-2: + 0: 65535 + 3,-1: + 0: 65535 + 2,4: + 0: 65535 + 2,5: + 0: 65535 + 2,6: + 0: 65535 + 3,4: + 0: 65535 + 3,5: + 0: 65535 + 4,1: + 0: 65535 + 4,2: + 0: 65535 + 4,3: + 0: 65535 + 5,1: + 0: 65535 + 5,2: + 0: 65535 + 5,3: + 0: 65535 + 6,1: + 0: 65535 + 6,2: + 0: 65535 + 6,3: + 0: 65535 + 7,0: + 0: 65535 + 7,1: + 0: 65535 + 7,2: + 0: 65535 + 7,3: + 0: 65535 + 0,-8: + 0: 65535 + 1,-8: + 0: 65521 + 1,-7: + 0: 65535 + 1,-6: + 0: 65535 + 1,-5: + 0: 65535 + 2,-8: + 0: 65534 + 2,-7: + 0: 65535 + 2,-6: + 0: 65535 + 2,-5: + 0: 65535 + 3,-8: + 0: 65535 + 3,-7: + 0: 65535 + 3,-6: + 0: 65535 + 3,-5: + 0: 65535 + -8,5: + 0: 65535 + -8,6: + 0: 65535 + -7,5: + 0: 65535 + -7,6: + 0: 65535 + -6,7: + 0: 16383 + -7,-4: + 0: 65279 + 2: 256 + -4,-6: + 0: 65535 + -4,-8: + 0: 65534 + -4,-7: + 0: 65535 + -3,-8: + 0: 65535 + -3,-7: + 0: 65535 + -3,-6: + 0: 65535 + -2,-8: + 0: 65535 + -2,-7: + 0: 65535 + -2,-6: + 0: 65535 + -1,-8: + 0: 65535 + -1,-7: + 0: 65535 + -1,-6: + 0: 65535 + -7,-5: + 0: 65535 + -7,-6: + 0: 65535 + -6,-6: + 0: 65535 + -5,-6: + 0: 65535 + 4,4: + 0: 65535 + 5,4: + 0: 65535 + 5,5: + 0: 65535 + 5,6: + 0: 65535 + 5,7: + 0: 65535 + 6,4: + 0: 65535 + 6,5: + 0: 65535 + 6,6: + 0: 65535 + 6,7: + 0: 61951 + 7,4: + 0: 65535 + 7,5: + 0: 65535 + 7,6: + 0: 65535 + 7,7: + 0: 65535 + 8,0: + 0: 65535 + 8,1: + 0: 65535 + 8,2: + 0: 65535 + 8,3: + 0: 65535 + 9,0: + 0: 65535 + 9,1: + 0: 65535 + 9,2: + 0: 65535 + 9,3: + 0: 65535 + 10,0: + 0: 65535 + 10,1: + 0: 65535 + 10,2: + 0: 65535 + 10,3: + 0: 65535 + 11,0: + 0: 65535 + 11,1: + 0: 65535 + 11,2: + 0: 65535 + 11,3: + 0: 65535 + 8,4: + 0: 65535 + 8,5: + 0: 65535 + 8,6: + 0: 65535 + 8,7: + 0: 65535 + 9,4: + 0: 65535 + 9,5: + 0: 65535 + 9,6: + 0: 65535 + 9,7: + 0: 65535 + 10,4: + 0: 65535 + 10,5: + 0: 65535 + 11,4: + 0: 65535 + 8,8: + 0: 65535 + 9,8: + 0: 65535 + 5,8: + 0: 65535 + 6,8: + 0: 65535 + 7,8: + 0: 65535 + 4,-4: + 0: 65535 + 4,-3: + 0: 65535 + 4,-2: + 0: 65535 + 4,-1: + 0: 65535 + 5,-4: + 0: 65535 + 5,-3: + 0: 65535 + 5,-2: + 0: 65535 + 5,-1: + 0: 65535 + 6,-4: + 0: 65535 + 6,-3: + 0: 65535 + 6,-2: + 0: 65535 + 6,-1: + 0: 65535 + 7,-4: + 0: 65535 + 7,-3: + 0: 65535 + 7,-2: + 0: 65535 + 7,-1: + 0: 65535 + 8,-4: + 0: 65535 + 8,-3: + 0: 65535 + 8,-2: + 0: 65535 + 8,-1: + 0: 65535 + 9,-4: + 0: 65535 + 9,-3: + 0: 65535 + 9,-2: + 0: 65535 + 9,-1: + 0: 65535 + 10,-4: + 0: 63479 + 3: 8 + 4: 2048 + 10,-3: + 0: 63479 + 4: 2056 + 10,-2: + 0: 63479 + 5: 8 + 6: 2048 + 10,-1: + 0: 65535 + 11,-4: + 3: 3 + 0: 64764 + 4: 768 + 11,-3: + 4: 771 + 0: 64764 + 11,-2: + 5: 3 + 0: 64764 + 6: 768 + 11,-1: + 0: 65535 + 4,-8: + 0: 65534 + 4,-7: + 0: 65535 + 4,-6: + 0: 65535 + 4,-5: + 0: 65535 + 5,-8: + 0: 65327 + 5,-7: + 0: 65535 + 5,-6: + 0: 65535 + 5,-5: + 0: 65535 + 6,-8: + 0: 61696 + 6,-7: + 0: 65535 + 6,-6: + 0: 65535 + 6,-5: + 0: 65535 + 7,-8: + 0: 28672 + 7,-7: + 0: 23933 + 7,-6: + 0: 63447 + 7,-5: + 0: 65535 + 12,0: + 0: 4369 + 12,1: + 0: 4369 + 12,2: + 0: 4369 + 12,3: + 0: 4369 + 8,-7: + 0: 65327 + 8,-6: + 0: 65331 + 4: 204 + 8,-5: + 0: 65535 + 9,-7: + 0: 32559 + 9,-6: + 4: 17 + 0: 63462 + 9,-5: + 0: 65535 + 10,-7: + 0: 4369 + 10,-6: + 0: 16145 + 10,-5: + 0: 63487 + 4: 2048 + 11,-6: + 0: 40704 + 11,-5: + 0: 64767 + 4: 768 + 0,-9: + 0: 65535 + -3,-9: + 0: 63984 + -2,-9: + 0: 65533 + -1,-9: + 0: 65535 + 12,-4: + 0: 12834 + 12,-3: + 0: 12834 + 12,-2: + 0: 8994 + 12,-1: + 0: 12850 + 12,4: + 0: 12561 + 12,-6: + 0: 8960 + 12,-5: + 0: 8754 + -9,0: + 0: 65535 + 2,7: + 0: 65535 + 3,6: + 0: 65535 + 3,7: + 0: 65535 + -8,7: + 0: 61182 + -7,7: + 0: 65535 + 0,9: + 0: 48826 + 0,10: + 0: 21621 + 0,11: + 0: 63477 + 1,9: + 0: 1 + 1,11: + 0: 64240 + 3,8: + 0: 20479 + -4,9: + 0: 52390 + -4,11: + 0: 41580 + -4,10: + 0: 34952 + -3,9: + 0: 27503 + -3,10: + 0: 65199 + -3,11: + 0: 65518 + -2,9: + 0: 58361 + -2,10: + 0: 64245 + -2,11: + 0: 65535 + -1,9: + 0: 62712 + -1,10: + 0: 62706 + -1,11: + 0: 65535 + -8,8: + 0: 65327 + -8,9: + 0: 65327 + -8,10: + 0: 11183 + -8,11: + 0: 14 + -7,8: + 0: 65375 + -7,9: + 0: 65311 + -7,10: + 0: 43839 + -7,11: + 0: 15 + -6,8: + 0: 32079 + -6,9: + 0: 21845 + -6,10: + 0: 1863 + -8,-4: + 0: 65535 + -8,-8: + 0: 65525 + -8,-7: + 0: 65525 + -8,-6: + 0: 65535 + -8,-5: + 0: 65535 + -7,-8: + 0: 44962 + -7,-7: + 0: 65530 + -6,-8: + 0: 65529 + -6,-7: + 0: 65535 + -5,-8: + 0: 64186 + -5,-7: + 0: 65535 + -12,-4: + 0: 2794 + -11,-4: + 0: 61439 + -11,-3: + 0: 61166 + -11,-2: + 0: 61182 + -11,-1: + 0: 61423 + -10,-4: + 0: 65535 + -10,-3: + 0: 65535 + -10,-2: + 0: 65535 + -10,-1: + 0: 65535 + -9,-4: + 0: 65535 + 4,5: + 0: 65535 + 4,6: + 0: 65535 + 4,7: + 0: 65535 + 10,6: + 0: 65535 + 8,9: + 0: 2047 + 9,9: + 0: 4095 + 4,8: + 0: 61439 + 4,9: + 0: 3823 + 5,9: + 0: 3583 + 6,9: + 0: 2047 + 7,9: + 0: 3327 + -4,-12: + 0: 12031 + -4,-11: + 0: 44722 + -4,-10: + 0: 43770 + -4,-9: + 0: 58610 + -3,-12: + 0: 3007 + -12,0: + 0: 34824 + -12,1: + 0: 2184 + -12,2: + 0: 34816 + -12,3: + 0: 2184 + -11,0: + 0: 65518 + -11,1: + 0: 65535 + -11,2: + 0: 65535 + -11,3: + 0: 61439 + -10,0: + 0: 65535 + -10,1: + 0: 65535 + -10,2: + 0: 65535 + -10,3: + 0: 65535 + -9,1: + 0: 65535 + -9,2: + 0: 65535 + -9,3: + 0: 65535 + -11,4: + 0: 61182 + -11,5: + 0: 61167 + -11,6: + 0: 36527 + -10,4: + 0: 65535 + -10,5: + 0: 65535 + -10,6: + 0: 61167 + -9,4: + 0: 65535 + -9,5: + 0: 65535 + -9,6: + 0: 65535 + -9,7: + 0: 35002 + -12,-6: + 0: 43054 + -12,-5: + 0: 43754 + -11,-7: + 0: 65439 + -11,-6: + 0: 65535 + -11,-5: + 0: 65535 + -10,-7: + 0: 64393 + -10,-6: + 0: 65535 + -10,-5: + 0: 65535 + -10,-8: + 0: 34952 + -9,-8: + 0: 61410 + -9,-7: + 0: 65508 + -9,-6: + 0: 65535 + -9,-5: + 0: 65535 + -10,-10: + 0: 32768 + -10,-9: + 0: 34952 + -9,-10: + 0: 45792 + -9,-9: + 0: 65258 + -8,-10: + 0: 63984 + -8,-9: + 0: 65523 + -7,-10: + 0: 12288 + -7,-9: + 0: 58146 + -6,-12: + 0: 3754 + -6,-11: + 0: 34944 + -6,-10: + 0: 34952 + -6,-9: + 0: 63624 + -5,-12: + 0: 60335 + -5,-11: + 0: 60330 + -5,-10: + 0: 60090 + -5,-9: + 0: 64186 + -9,8: + 0: 17484 + -9,9: + 0: 17484 + -9,10: + 0: 3140 + 0,12: + 0: 65535 + 0,13: + 0: 65535 + 0,14: + 0: 62207 + 0,15: + 0: 48757 + 1,12: + 0: 65471 + 1,13: + 0: 49147 + 1,14: + 0: 63935 + -4,12: + 0: 43694 + -4,13: + 0: 60142 + -4,14: + 0: 28330 + -4,15: + 0: 12 + -3,12: + 0: 65535 + -3,13: + 0: 65535 + -3,14: + 0: 16383 + -3,15: + 0: 15 + -2,12: + 0: 65535 + -2,13: + 0: 65535 + -2,14: + 0: 40959 + -2,15: + 0: 34831 + -1,12: + 0: 65535 + -1,13: + 0: 65535 + -1,14: + 0: 61439 + -1,15: + 0: 53151 + -6,-14: + 0: 34952 + -6,-13: + 0: 60138 + -5,-14: + 0: 65519 + -5,-13: + 0: 65535 + -5,-16: + 0: 11852 + -5,-15: + 0: 44714 + -4,-16: + 0: 32543 + -4,-15: + 0: 12287 + -4,-14: + 0: 65535 + -4,-13: + 0: 65535 + -3,-16: + 0: 8977 + -3,-15: + 0: 8754 + -3,-14: + 0: 49075 + -3,-13: + 0: 48123 + 10,7: + 0: 65535 + 11,5: + 0: 65535 + 11,6: + 0: 65535 + 11,7: + 0: 65535 + 10,8: + 0: 65535 + 10,9: + 0: 239 + 11,8: + 0: 65535 + 11,9: + 0: 255 + 12,5: + 0: 13107 + 12,6: + 0: 13107 + 12,7: + 0: 13107 + 12,8: + 0: 13107 + 12,9: + 0: 49 + 1,-9: + 0: 4369 + -12,-2: + 0: 34952 + -12,-1: + 0: 34952 + -3,-10: + 0: 49152 + -2,-10: + 0: 7936 + -1,-10: + 0: 9984 + -12,-7: + 0: 17484 + 2,8: + 0: 4095 + 3,9: + 0: 14 + -5,9: + 0: 15 + -12,4: + 0: 34952 + -12,5: + 0: 34952 + -12,6: + 0: 136 + -11,7: + 0: 136 + -10,7: + 0: 242 + -2,16: + 0: 34952 + -2,17: + 0: 8 + -1,16: + 0: 52847 + 3: 128 + -1,17: + 0: 245 + 0,16: + 0: 39931 + 0,17: + 0: 124 + 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.14996 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14996 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - id: Cluster + type: BecomesStation + - type: SpreaderGrid + - type: GridPathfinding + - uid: 12281 + components: + - type: MetaData + - type: Transform + - type: Map + - type: PhysicsMap + - type: Broadphase + - type: OccluderTree + - type: LoadedMap + - type: GridTree + - type: MovedGrids +- proto: AcousticGuitarInstrument + entities: + - uid: 5973 + components: + - pos: 3.5402613,7.6028175 + parent: 1 + type: Transform +- proto: AdvancedCapacitorStockPart + entities: + - uid: 9498 + components: + - pos: -2.8552828,-31.280602 + parent: 1 + type: Transform + - uid: 9500 + components: + - pos: -3.7302828,-31.280602 + parent: 1 + type: Transform +- proto: AdvancedMatterBinStockPart + entities: + - uid: 9499 + components: + - pos: -3.3396578,-31.327477 + parent: 1 + type: Transform +- proto: AirAlarm + entities: + - uid: 8049 + components: + - pos: 29.5,11.5 + parent: 1 + type: Transform + - devices: + - 3203 + - 3204 + - 3205 + - 3219 + - 3327 + - 3217 + - 3213 + - 3214 + - 3215 + - 11609 + - 11608 + - 10602 + - 10601 + - 10599 + - 10600 + - 10548 + - 10550 + type: DeviceList + - uid: 11592 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,27.5 + parent: 1 + type: Transform + - devices: + - 3197 + - 3194 + - 3198 + - 10762 + - 10763 + type: DeviceList + - uid: 11593 + components: + - rot: 3.141592653589793 rad + pos: -2.5,26.5 + parent: 1 + type: Transform + - devices: + - 3193 + - 3192 + - 3196 + - 3194 + - 3195 + - 10748 + - 10751 + - 10749 + - 10750 + - 10724 + - 10727 + - 10725 + - 10726 + type: DeviceList + - uid: 11594 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,22.5 + parent: 1 + type: Transform + - devices: + - 3185 + - 3191 + - 3193 + - 3192 + - 3186 + - 10696 + - 10697 + - 10812 + - 10706 + - 10707 + - 10813 + type: DeviceList + - uid: 11598 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,16.5 + parent: 1 + type: Transform + - devices: + - 5009 + - 5010 + - 5011 + - 3190 + - 3199 + - 3191 + - 3134 + - 3133 + - 46 + - 5004 + - 5003 + - 5002 + - 5000 + - 5001 + - 10665 + - 10664 + - 10821 + - 10814 + type: DeviceList + - uid: 11601 + components: + - pos: 17.5,11.5 + parent: 1 + type: Transform + - devices: + - 3200 + - 3201 + - 3202 + - 1766 + - 1765 + - 3209 + - 3208 + - 3206 + - 3207 + - 3203 + - 3204 + - 3205 + - 10552 + - 10551 + - 10547 + - 10549 + - 10514 + - 10511 + - 10513 + - 10510 + - 10512 + - 10509 + - 11605 + - 11604 + type: DeviceList + - uid: 11611 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,25.5 + parent: 1 + type: Transform + - devices: + - 3224 + - 3225 + - 3226 + - 3227 + - 3228 + - 3220 + - 3221 + - 3222 + - 3223 + - 10658 + - 10663 + - 10662 + - 10660 + - 10661 + - 10659 + type: DeviceList + - uid: 11612 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,10.5 + parent: 1 + type: Transform + - devices: + - 3134 + - 3133 + - 46 + - 3135 + - 3136 + - 3138 + - 3137 + - 11622 + - 11621 + - 11620 + - 11619 + - 11618 + - 11617 + - 11616 + - 11615 + - 11614 + - 10778 + - 10786 + - 10785 + - 10772 + type: DeviceList + - uid: 11623 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 + type: Transform + - devices: + - 3143 + - 3141 + - 3142 + - 3139 + - 3140 + - 10247 + - 11176 + - 10773 + - 10246 + type: DeviceList + - uid: 11625 + components: + - pos: -2.5,0.5 + parent: 1 + type: Transform + - devices: + - 3145 + - 3146 + - 3143 + - 3142 + - 11337 + - 10248 + type: DeviceList + - uid: 11630 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 + type: Transform + - devices: + - 3120 + - 3119 + - 3118 + - 3149 + - 3150 + - 3151 + - 5508 + - 5498 + - 5495 + - 5008 + - 5003 + - 5002 + - 5004 + - 3135 + - 3136 + - 10994 + - 10995 + type: DeviceList + - uid: 11632 + components: + - pos: -17.5,12.5 + parent: 1 + type: Transform + - devices: + - 3183 + - 3184 + - 3171 + - 3170 + - 3169 + - 3168 + - 3167 + - 3166 + - 3165 + - 3189 + - 3164 + - 3173 + - 3172 + - 10879 + - 10880 + - 10902 + - 10900 + - 11646 + - 11645 + - 10903 + - 10901 + - 10924 + - 10921 + type: DeviceList + - uid: 11634 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,7.5 + parent: 1 + type: Transform + - uid: 11636 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,14.5 + parent: 1 + type: Transform + - devices: + - 10923 + - 10922 + - 3164 + - 3188 + type: DeviceList + - uid: 11638 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,19.5 + parent: 1 + type: Transform + - devices: + - 3187 + - 11637 + - 11643 + - 10967 + - 10972 + - 10971 + - 10969 + - 10968 + - 10970 + type: DeviceList + - uid: 11642 + components: + - pos: -9.5,15.5 + parent: 1 + type: Transform + - devices: + - 3178 + - 3179 + - 3180 + - 3181 + - 10899 + - 10944 + type: DeviceList + - uid: 11647 + components: + - pos: -16.5,4.5 + parent: 1 + type: Transform + - devices: + - 3151 + - 3150 + - 3149 + - 3155 + - 3156 + - 3157 + - 11054 + - 11057 + type: DeviceList + - uid: 11649 + components: + - pos: -27.5,4.5 + parent: 1 + type: Transform + - devices: + - 3151 + - 3150 + - 3149 + - 3155 + - 3156 + - 3157 + - 11054 + - 11057 + - 2284 + - 2094 + - 3160 + - 3272 + - 3273 + - 3158 + - 3159 + - 3161 + - 11058 + - 11055 + - 11059 + - 11042 + type: DeviceList + - uid: 11651 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,10.5 + parent: 1 + type: Transform + - devices: + - 11085 + - 11083 + - 11084 + - 11082 + - 3158 + - 3159 + - 3161 + - 11653 + type: DeviceList + - uid: 11655 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,6.5 + parent: 1 + type: Transform + - devices: + - 2284 + - 2094 + - 3160 + - 3162 + - 3163 + - 11149 + - 11147 + - 11151 + - 11150 + type: DeviceList + - uid: 11657 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-3.5 + parent: 1 + type: Transform + - devices: + - 11162 + - 11174 + - 11163 + - 11175 + - 3272 + - 3273 + type: DeviceList + - uid: 11658 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 1 + type: Transform + - devices: + - 11195 + - 11332 + - 3115 + - 3116 + - 3117 + - 3104 + - 3103 + - 3102 + - 3096 + - 3097 + - 3100 + - 3101 + - 3118 + - 3119 + - 3120 + type: DeviceList + - uid: 11660 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-10.5 + parent: 1 + type: Transform + - devices: + - 11234 + - 11233 + - 3094 + - 3095 + - 3102 + - 3103 + - 3104 + - 3105 + type: DeviceList + - uid: 11661 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-9.5 + parent: 1 + type: Transform + - devices: + - 11667 + type: DeviceList + - uid: 11662 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-13.5 + parent: 1 + type: Transform + - devices: + - 11666 + type: DeviceList + - uid: 11664 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-17.5 + parent: 1 + type: Transform + - devices: + - 11286 + - 11284 + - 11283 + - 11285 + - 3111 + - 3112 + - 3113 + - 3106 + - 3107 + - 3108 + - 3109 + type: DeviceList + - uid: 11670 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-8.5 + parent: 1 + type: Transform + - devices: + - 1979 + - 2283 + - 996 + - 11321 + - 11322 + - 11320 + - 11323 + type: DeviceList + - uid: 11672 + components: + - pos: -17.5,0.5 + parent: 1 + type: Transform + - devices: + - 3091 + - 3090 + - 3109 + - 3093 + - 3092 + - 11260 + - 11261 + - 11331 + - 11330 + type: DeviceList + - uid: 11674 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-10.5 + parent: 1 + type: Transform + - devices: + - 3117 + - 3116 + - 3115 + - 3145 + - 3121 + - 3122 + - 3123 + - 3266 + - 3265 + - 3264 + - 11366 + - 11367 + type: DeviceList + - uid: 11676 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 1 + type: Transform + - devices: + - 3123 + - 3122 + - 3121 + - 11629 + - 11628 + - 11627 + - 3125 + - 3124 + - 3126 + - 3243 + - 10197 + - 10204 + - 3828 + - 7182 + - 10219 + - 10220 + - 1832 + - 3055 + type: DeviceList + - uid: 11678 + components: + - pos: 21.5,-2.5 + parent: 1 + type: Transform + - devices: + - 3229 + - 3230 + - 3233 + - 3232 + - 10160 + - 10161 + - 10112 + - 10113 + - 11687 + - 11688 + type: DeviceList + - uid: 11680 + components: + - pos: 14.5,-9.5 + parent: 1 + type: Transform + - devices: + - 3231 + - 3232 + - 3233 + - 3241 + - 3242 + - 10145 + - 10144 + - 10143 + - 10142 + type: DeviceList + - uid: 11682 + components: + - pos: 24.5,-9.5 + parent: 1 + type: Transform + - devices: + - 3235 + - 3234 + - 3232 + - 3233 + - 3240 + - 10114 + - 10115 + - 11687 + - 11688 + - 11689 + type: DeviceList + - uid: 11684 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-12.5 + parent: 1 + type: Transform + - devices: + - 7152 + - 7151 + - 3236 + - 3237 + - 1222 + - 11686 + type: DeviceList + - uid: 11690 + components: + - pos: 19.5,4.5 + parent: 1 + type: Transform + - devices: + - 3129 + - 3128 + - 3127 + - 3498 + - 3499 + - 10358 + - 10361 + type: DeviceList + - uid: 11692 + components: + - pos: 32.5,4.5 + parent: 1 + type: Transform + - devices: + - 3499 + - 3498 + - 3501 + - 3502 + - 3503 + - 10362 + - 10359 + type: DeviceList + - uid: 11694 + components: + - rot: 3.141592653589793 rad + pos: 40.5,0.5 + parent: 1 + type: Transform + - devices: + - 3503 + - 3502 + - 3501 + - 3504 + - 3505 + - 3506 + - 10360 + - 10363 + type: DeviceList + - uid: 11697 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,10.5 + parent: 1 + type: Transform + - devices: + - 3506 + - 3505 + - 3504 + - 3507 + - 4898 + - 10388 + - 10390 + - 10389 + - 10391 + type: DeviceList + - uid: 11698 + components: + - rot: 3.141592653589793 rad + pos: 40.5,20.5 + parent: 1 + type: Transform + - devices: + - 10413 + - 10414 + type: DeviceList + - uid: 11699 + components: + - rot: 3.141592653589793 rad + pos: 43.5,24.5 + parent: 1 + type: Transform + - devices: + - 4898 + - 4897 + - 11703 + - 11704 + - 10432 + - 10433 + type: DeviceList + - uid: 11700 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,32.5 + parent: 1 + type: Transform + - devices: + - 11703 + - 11704 + - 10448 + - 10450 + - 10449 + - 10451 + type: DeviceList + - uid: 11705 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-13.5 + parent: 1 + type: Transform + - devices: + - 3262 + - 3261 + - 3263 + - 3264 + - 3265 + - 3266 + - 11410 + - 11408 + type: DeviceList + - uid: 11707 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-27.5 + parent: 1 + type: Transform + - devices: + - 3260 + - 3259 + - 3258 + - 3267 + - 3270 + - 3269 + - 3271 + - 3268 + - 11476 + - 11472 + - 11473 + - 11477 + - 11471 + - 11479 + - 11481 + - 11482 + - 11478 + - 11474 + - 11480 + - 11475 + type: DeviceList + - uid: 11709 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-25.5 + parent: 1 + type: Transform + - devices: + - 3584 + - 3585 + - 3586 + - 3587 + - 3263 + - 3262 + - 3261 + - 3260 + - 3259 + - 3258 + - 7083 + - 7084 + - 7085 + - 11409 + - 11411 + type: DeviceList + - uid: 11711 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-30.5 + parent: 1 + type: Transform + - devices: + - 7086 + - 7083 + - 7084 + - 7085 + - 11507 + - 11510 + type: DeviceList + - uid: 11714 + components: + - pos: 10.5,-16.5 + parent: 1 + type: Transform + - devices: + - 3247 + - 3246 + - 3250 + - 3251 + - 3252 + - 3253 + - 2186 + - 11719 + - 11720 + type: DeviceList + - uid: 11718 + components: + - pos: 19.5,-19.5 + parent: 1 + type: Transform + - devices: + - 7250 + - 7249 + - 3595 + - 7301 + - 3257 + - 11589 + - 11587 + - 11588 + - 11590 + type: DeviceList +- proto: AirCanister + entities: + - uid: 6999 + components: + - pos: 37.5,-4.5 + parent: 1 + type: Transform + - uid: 7000 + components: + - pos: 37.5,-3.5 + parent: 1 + type: Transform + - uid: 7004 + components: + - pos: 37.5,-2.5 + parent: 1 + type: Transform + - uid: 7204 + components: + - pos: 10.5,-8.5 + parent: 1 + type: Transform + - uid: 8862 + components: + - pos: -15.5,-20.5 + parent: 1 + type: Transform + - uid: 8867 + components: + - pos: -27.5,-10.5 + parent: 1 + type: Transform + - uid: 8868 + components: + - pos: -34.5,-19.5 + parent: 1 + type: Transform + - uid: 9126 + components: + - pos: 22.5,-18.5 + parent: 1 + type: Transform + - uid: 9180 + components: + - pos: 26.5,-0.5 + parent: 1 + type: Transform + - uid: 9250 + components: + - pos: 33.5,32.5 + parent: 1 + type: Transform + - uid: 9336 + components: + - pos: 35.5,18.5 + parent: 1 + type: Transform + - uid: 9337 + components: + - pos: 21.5,25.5 + parent: 1 + type: Transform + - uid: 9338 + components: + - pos: 7.5,23.5 + parent: 1 + type: Transform + - uid: 9691 + components: + - pos: -17.5,23.5 + parent: 1 + type: Transform + - uid: 9692 + components: + - pos: -7.5,22.5 + parent: 1 + type: Transform + - uid: 12006 + components: + - pos: 11.5,-8.5 + parent: 1 + type: Transform +- proto: Airlock + entities: + - uid: 3575 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-25.5 + parent: 1 + type: Transform + - uid: 3576 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-27.5 + parent: 1 + type: Transform + - uid: 3577 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-27.5 + parent: 1 + type: Transform + - uid: 3600 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-26.5 + parent: 1 + type: Transform + - uid: 3601 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-26.5 + parent: 1 + type: Transform + - uid: 3602 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-26.5 + parent: 1 + type: Transform +- proto: AirlockArmoryLocked + entities: + - uid: 3314 + components: + - pos: 30.5,17.5 + parent: 1 + type: Transform +- proto: AirlockAtmosphericsGlassLocked + entities: + - uid: 3347 + components: + - pos: 33.5,-11.5 + parent: 1 + type: Transform + - uid: 3348 + components: + - pos: 33.5,-10.5 + parent: 1 + type: Transform +- proto: AirlockBrigGlassLocked + entities: + - uid: 3321 + components: + - pos: 10.5,14.5 + parent: 1 + type: Transform + - uid: 3322 + components: + - pos: 10.5,13.5 + parent: 1 + type: Transform + - uid: 3323 + components: + - pos: 11.5,11.5 + parent: 1 + type: Transform + - uid: 3324 + components: + - pos: 12.5,11.5 + parent: 1 + type: Transform + - uid: 4899 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,29.5 + parent: 1 + type: Transform + - uid: 4901 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,29.5 + parent: 1 + type: Transform +- proto: AirlockCaptainLocked + entities: + - uid: 3282 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,28.5 + parent: 1 + type: Transform + - uid: 9651 + components: + - pos: 10.5,26.5 + parent: 1 + type: Transform +- proto: AirlockCargoGlassLocked + entities: + - uid: 3588 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-24.5 + parent: 1 + type: Transform + - uid: 3589 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-26.5 + parent: 1 + type: Transform + - uid: 3590 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-24.5 + parent: 1 + type: Transform + - uid: 3591 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-24.5 + parent: 1 + type: Transform + - uid: 3592 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-21.5 + parent: 1 + type: Transform + - uid: 3593 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-22.5 + parent: 1 + type: Transform +- proto: AirlockChapelLocked + entities: + - uid: 3445 + components: + - pos: -32.5,12.5 + parent: 1 + type: Transform +- proto: AirlockChemistryLocked + entities: + - uid: 3400 + components: + - rot: 3.141592653589793 rad + pos: -14.5,15.5 + parent: 1 + type: Transform +- proto: AirlockChiefEngineerGlassLocked + entities: + - uid: 3344 + components: + - pos: 16.5,-12.5 + parent: 1 + type: Transform +- proto: AirlockChiefMedicalOfficerLocked + entities: + - uid: 3399 + components: + - rot: 3.141592653589793 rad + pos: -17.5,15.5 + parent: 1 + type: Transform +- proto: AirlockCommandGlassLocked + entities: + - uid: 3275 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,20.5 + parent: 1 + type: Transform + - uid: 3276 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,17.5 + parent: 1 + type: Transform + - uid: 3277 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,29.5 + parent: 1 + type: Transform + - uid: 3278 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,30.5 + parent: 1 + type: Transform + - uid: 3279 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,30.5 + parent: 1 + type: Transform + - uid: 3609 + components: + - rot: 3.141592653589793 rad + pos: -9.5,44.5 + parent: 1 + type: Transform + - uid: 4906 + components: + - rot: 3.141592653589793 rad + pos: 43.5,22.5 + parent: 1 + type: Transform +- proto: AirlockCommandLocked + entities: + - uid: 3611 + components: + - rot: 3.141592653589793 rad + pos: -4.5,45.5 + parent: 1 + type: Transform +- proto: AirlockDetectiveLocked + entities: + - uid: 3325 + components: + - pos: 26.5,7.5 + parent: 1 + type: Transform +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 3333 + components: + - pos: 14.5,-7.5 + parent: 1 + type: Transform + - uid: 3334 + components: + - pos: 14.5,-6.5 + parent: 1 + type: Transform + - uid: 3335 + components: + - pos: 27.5,-9.5 + parent: 1 + type: Transform + - uid: 3336 + components: + - pos: 24.5,-7.5 + parent: 1 + type: Transform + - uid: 3337 + components: + - pos: 15.5,-5.5 + parent: 1 + type: Transform + - uid: 3338 + components: + - pos: 16.5,-5.5 + parent: 1 + type: Transform + - uid: 3339 + components: + - pos: 23.5,-9.5 + parent: 1 + type: Transform + - uid: 3340 + components: + - pos: 22.5,-9.5 + parent: 1 + type: Transform + - uid: 3341 + components: + - pos: 17.5,-11.5 + parent: 1 + type: Transform + - uid: 3342 + components: + - pos: 17.5,-10.5 + parent: 1 + type: Transform + - uid: 3343 + components: + - pos: 25.5,-12.5 + parent: 1 + type: Transform + - uid: 3345 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-11.5 + parent: 1 + type: Transform + - uid: 3346 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-10.5 + parent: 1 + type: Transform +- proto: AirlockEngineeringLocked + entities: + - uid: 3357 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-19.5 + parent: 1 + type: Transform + - uid: 3359 + components: + - rot: 3.141592653589793 rad + pos: 10.5,20.5 + parent: 1 + type: Transform + - uid: 3360 + components: + - rot: 3.141592653589793 rad + pos: -19.5,25.5 + parent: 1 + type: Transform + - uid: 3361 + components: + - rot: 3.141592653589793 rad + pos: -25.5,28.5 + parent: 1 + type: Transform + - uid: 3362 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-21.5 + parent: 1 + type: Transform + - uid: 3363 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-22.5 + parent: 1 + type: Transform + - uid: 3364 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-19.5 + parent: 1 + type: Transform + - uid: 3557 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,18.5 + parent: 1 + type: Transform + - uid: 4510 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,19.5 + parent: 1 + type: Transform + - uid: 7082 + components: + - name: Tech Vault + type: MetaData + - pos: -0.5,-32.5 + parent: 1 + type: Transform +- proto: AirlockExternal + entities: + - uid: 3550 + components: + - pos: -39.5,-12.5 + parent: 1 + type: Transform + - uid: 8327 + components: + - pos: 10.5,31.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlass + entities: + - uid: 50 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-46.5 + parent: 1 + type: Transform + - uid: 57 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,22.5 + parent: 1 + type: Transform + - uid: 2862 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-47.5 + parent: 1 + type: Transform + - uid: 3051 + components: + - rot: 3.141592653589793 rad + pos: 23.5,36.5 + parent: 1 + type: Transform + - uid: 3052 + components: + - rot: 3.141592653589793 rad + pos: 25.5,36.5 + parent: 1 + type: Transform + - uid: 3053 + components: + - rot: 3.141592653589793 rad + pos: 31.5,36.5 + parent: 1 + type: Transform + - uid: 3054 + components: + - rot: 3.141592653589793 rad + pos: 33.5,36.5 + parent: 1 + type: Transform + - uid: 3067 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,13.5 + parent: 1 + type: Transform + - uid: 3068 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,11.5 + parent: 1 + type: Transform + - uid: 3069 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,5.5 + parent: 1 + type: Transform + - uid: 3070 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,3.5 + parent: 1 + type: Transform + - uid: 5547 + components: + - pos: 1.5,-34.5 + parent: 1 + type: Transform + - uid: 12282 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,12.5 + parent: 1 + type: Transform + - uid: 12283 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,5.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlassCargoLocked + entities: + - uid: 1523 + components: + - pos: 23.5,-23.5 + parent: 1 + type: Transform + - uid: 1717 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-28.5 + parent: 1 + type: Transform + - uid: 1720 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-28.5 + parent: 1 + type: Transform + - uid: 1752 + components: + - pos: 25.5,-25.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlassEngineeringLocked + entities: + - uid: 3571 + components: + - rot: 3.141592653589793 rad + pos: -35.5,-24.5 + parent: 1 + type: Transform + - uid: 3572 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-22.5 + parent: 1 + type: Transform + - uid: 3573 + components: + - rot: 3.141592653589793 rad + pos: -29.5,31.5 + parent: 1 + type: Transform + - uid: 3574 + components: + - rot: 3.141592653589793 rad + pos: -28.5,30.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlassLocked + entities: + - uid: 3284 + components: + - pos: -17.5,29.5 + parent: 1 + type: Transform + - uid: 3285 + components: + - pos: -16.5,30.5 + parent: 1 + type: Transform + - uid: 3286 + components: + - pos: -17.5,32.5 + parent: 1 + type: Transform + - uid: 3354 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-19.5 + parent: 1 + type: Transform + - uid: 3355 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-20.5 + parent: 1 + type: Transform + - uid: 3607 + components: + - rot: 3.141592653589793 rad + pos: -9.5,43.5 + parent: 1 + type: Transform + - uid: 3608 + components: + - rot: 3.141592653589793 rad + pos: -8.5,45.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlassShuttleArrivals + entities: + - uid: 1268 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,5.5 + parent: 1 + type: Transform + - uid: 1278 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,12.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlassShuttleEmergencyLocked + entities: + - uid: 3059 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,3.5 + parent: 1 + type: Transform + - uid: 3060 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,5.5 + parent: 1 + type: Transform + - uid: 3061 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,11.5 + parent: 1 + type: Transform + - uid: 3062 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,13.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlassShuttleEscape + entities: + - uid: 2998 + components: + - pos: 1.5,-35.5 + parent: 1 + type: Transform + - uid: 4815 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,22.5 + parent: 1 + type: Transform + - uid: 5553 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-10.5 + parent: 1 + type: Transform + - uid: 8326 + components: + - rot: 3.141592653589793 rad + pos: 10.5,34.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 1728 + components: + - pos: 11.5,-31.5 + parent: 1 + type: Transform + - uid: 1729 + components: + - pos: 13.5,-31.5 + parent: 1 + type: Transform + - uid: 3047 + components: + - rot: 3.141592653589793 rad + pos: 33.5,38.5 + parent: 1 + type: Transform + - uid: 3048 + components: + - rot: 3.141592653589793 rad + pos: 31.5,38.5 + parent: 1 + type: Transform + - uid: 3049 + components: + - rot: 3.141592653589793 rad + pos: 25.5,38.5 + parent: 1 + type: Transform + - uid: 3050 + components: + - rot: 3.141592653589793 rad + pos: 23.5,38.5 + parent: 1 + type: Transform +- proto: AirlockFreezerKitchenHydroLocked + entities: + - uid: 3367 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 3368 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform +- proto: AirlockGlass + entities: + - uid: 1348 + components: + - pos: 26.5,27.5 + parent: 1 + type: Transform + - uid: 3381 + components: + - rot: 3.141592653589793 rad + pos: -3.5,9.5 + parent: 1 + type: Transform + - uid: 3382 + components: + - pos: -3.5,8.5 + parent: 1 + type: Transform + - uid: 3383 + components: + - rot: 3.141592653589793 rad + pos: 0.5,13.5 + parent: 1 + type: Transform + - uid: 3384 + components: + - rot: 3.141592653589793 rad + pos: 1.5,13.5 + parent: 1 + type: Transform + - uid: 3385 + components: + - rot: 3.141592653589793 rad + pos: 2.5,13.5 + parent: 1 + type: Transform + - uid: 3387 + components: + - pos: 6.5,8.5 + parent: 1 + type: Transform + - uid: 3437 + components: + - pos: -35.5,4.5 + parent: 1 + type: Transform + - uid: 3438 + components: + - pos: -34.5,4.5 + parent: 1 + type: Transform + - uid: 3439 + components: + - pos: -33.5,4.5 + parent: 1 + type: Transform + - uid: 3440 + components: + - pos: -36.5,0.5 + parent: 1 + type: Transform + - uid: 3441 + components: + - pos: -37.5,0.5 + parent: 1 + type: Transform + - uid: 3486 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,1.5 + parent: 1 + type: Transform + - uid: 3487 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,2.5 + parent: 1 + type: Transform + - uid: 3488 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,3.5 + parent: 1 + type: Transform + - uid: 3489 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 1 + type: Transform + - uid: 3490 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 1 + type: Transform + - uid: 3491 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 1 + type: Transform + - uid: 3492 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,1.5 + parent: 1 + type: Transform + - uid: 3493 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,2.5 + parent: 1 + type: Transform + - uid: 3494 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,3.5 + parent: 1 + type: Transform + - uid: 3495 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,1.5 + parent: 1 + type: Transform + - uid: 3496 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,2.5 + parent: 1 + type: Transform + - uid: 3497 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,3.5 + parent: 1 + type: Transform + - uid: 3542 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,1.5 + parent: 1 + type: Transform + - uid: 3543 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,2.5 + parent: 1 + type: Transform + - uid: 3544 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,3.5 + parent: 1 + type: Transform + - uid: 3579 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-23.5 + parent: 1 + type: Transform + - uid: 3580 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-24.5 + parent: 1 + type: Transform + - uid: 3581 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-25.5 + parent: 1 + type: Transform + - uid: 3582 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-26.5 + parent: 1 + type: Transform + - uid: 3796 + components: + - pos: 26.5,25.5 + parent: 1 + type: Transform + - uid: 4909 + components: + - rot: 3.141592653589793 rad + pos: 45.5,24.5 + parent: 1 + type: Transform + - uid: 6295 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,9.5 + parent: 1 + type: Transform +- proto: AirlockHeadOfPersonnelLocked + entities: + - uid: 3287 + components: + - pos: 2.5,21.5 + parent: 1 + type: Transform + - uid: 3288 + components: + - pos: -3.5,20.5 + parent: 1 + type: Transform +- proto: AirlockHeadOfSecurityLocked + entities: + - uid: 3313 + components: + - pos: 30.5,13.5 + parent: 1 + type: Transform +- proto: AirlockHydroponicsLocked + entities: + - uid: 3144 + components: + - pos: -3.5,-2.5 + parent: 1 + type: Transform +- proto: AirlockJanitorLocked + entities: + - uid: 3366 + components: + - name: Jani Closet + type: MetaData + - rot: 3.141592653589793 rad + pos: 10.5,-1.5 + parent: 1 + type: Transform +- proto: AirlockMaint + entities: + - uid: 1021 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-18.5 + parent: 1 + type: Transform + - uid: 3545 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-23.5 + parent: 1 + type: Transform + - uid: 3546 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-23.5 + parent: 1 + type: Transform + - uid: 3547 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-15.5 + parent: 1 + type: Transform + - uid: 3548 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-21.5 + parent: 1 + type: Transform + - uid: 3551 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,22.5 + parent: 1 + type: Transform + - uid: 3552 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,31.5 + parent: 1 + type: Transform + - uid: 3553 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,31.5 + parent: 1 + type: Transform + - uid: 3554 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,31.5 + parent: 1 + type: Transform + - uid: 3555 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,31.5 + parent: 1 + type: Transform + - uid: 12517 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-27.5 + parent: 1 + type: Transform +- proto: AirlockMaintAtmoLocked + entities: + - uid: 1305 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-17.5 + parent: 1 + type: Transform + - uid: 6988 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,-1.5 + parent: 1 + type: Transform +- proto: AirlockMaintCargoLocked + entities: + - uid: 3598 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-19.5 + parent: 1 + type: Transform + - uid: 3599 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-16.5 + parent: 1 + type: Transform +- proto: AirlockMaintChapelLocked + entities: + - uid: 3444 + components: + - pos: -30.5,15.5 + parent: 1 + type: Transform +- proto: AirlockMaintCommandLocked + entities: + - uid: 3280 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,25.5 + parent: 1 + type: Transform + - uid: 3281 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,24.5 + parent: 1 + type: Transform + - uid: 4907 + components: + - rot: 3.141592653589793 rad + pos: 38.5,22.5 + parent: 1 + type: Transform +- proto: AirlockMaintEngiLocked + entities: + - uid: 3330 + components: + - pos: 20.5,-2.5 + parent: 1 + type: Transform + - uid: 3331 + components: + - pos: 25.5,-16.5 + parent: 1 + type: Transform + - uid: 3332 + components: + - pos: 13.5,-13.5 + parent: 1 + type: Transform +- proto: AirlockMaintJanitorLocked + entities: + - uid: 3365 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-1.5 + parent: 1 + type: Transform +- proto: AirlockMaintLocked + entities: + - uid: 1666 + components: + - pos: -10.5,-23.5 + parent: 1 + type: Transform + - uid: 3291 + components: + - pos: 8.5,18.5 + parent: 1 + type: Transform + - uid: 3292 + components: + - pos: 30.5,20.5 + parent: 1 + type: Transform + - uid: 3293 + components: + - pos: 30.5,21.5 + parent: 1 + type: Transform + - uid: 3294 + components: + - pos: 35.5,20.5 + parent: 1 + type: Transform + - uid: 3295 + components: + - pos: 35.5,21.5 + parent: 1 + type: Transform + - uid: 3296 + components: + - pos: 43.5,15.5 + parent: 1 + type: Transform + - uid: 3297 + components: + - pos: 31.5,4.5 + parent: 1 + type: Transform + - uid: 3298 + components: + - pos: 19.5,0.5 + parent: 1 + type: Transform + - uid: 3299 + components: + - pos: 44.5,0.5 + parent: 1 + type: Transform + - uid: 3300 + components: + - pos: 31.5,-9.5 + parent: 1 + type: Transform + - uid: 3301 + components: + - pos: 31.5,-12.5 + parent: 1 + type: Transform + - uid: 3302 + components: + - pos: 4.5,-11.5 + parent: 1 + type: Transform + - uid: 3303 + components: + - pos: -0.5,-11.5 + parent: 1 + type: Transform + - uid: 3304 + components: + - pos: -19.5,-23.5 + parent: 1 + type: Transform + - uid: 3305 + components: + - pos: -35.5,-6.5 + parent: 1 + type: Transform + - uid: 3306 + components: + - pos: -30.5,-0.5 + parent: 1 + type: Transform + - uid: 3307 + components: + - pos: -28.5,5.5 + parent: 1 + type: Transform + - uid: 3308 + components: + - pos: -38.5,15.5 + parent: 1 + type: Transform + - uid: 3309 + components: + - pos: -6.5,16.5 + parent: 1 + type: Transform + - uid: 3840 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,0.5 + parent: 1 + type: Transform + - uid: 4896 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,26.5 + parent: 1 + type: Transform +- proto: AirlockMaintMedLocked + entities: + - uid: 3394 + components: + - rot: 3.141592653589793 rad + pos: -27.5,10.5 + parent: 1 + type: Transform + - uid: 3395 + components: + - rot: 3.141592653589793 rad + pos: -23.5,17.5 + parent: 1 + type: Transform + - uid: 3396 + components: + - rot: 3.141592653589793 rad + pos: -13.5,22.5 + parent: 1 + type: Transform +- proto: AirlockMaintRnDLocked + entities: + - uid: 3428 + components: + - pos: -25.5,-8.5 + parent: 1 + type: Transform + - uid: 3429 + components: + - pos: -13.5,-17.5 + parent: 1 + type: Transform + - uid: 3431 + components: + - pos: -11.5,-16.5 + parent: 1 + type: Transform +- proto: AirlockMaintSalvageLocked + entities: + - uid: 3597 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-19.5 + parent: 1 + type: Transform +- proto: AirlockMaintSecLocked + entities: + - uid: 3328 + components: + - pos: 22.5,16.5 + parent: 1 + type: Transform + - uid: 3329 + components: + - pos: 32.5,7.5 + parent: 1 + type: Transform +- proto: AirlockMedicalGlassLocked + entities: + - uid: 1859 + components: + - pos: -15.5,7.5 + parent: 1 + type: Transform + - uid: 1860 + components: + - pos: -14.5,7.5 + parent: 1 + type: Transform + - uid: 3388 + components: + - rot: 3.141592653589793 rad + pos: -10.5,9.5 + parent: 1 + type: Transform + - uid: 3389 + components: + - rot: 3.141592653589793 rad + pos: -10.5,10.5 + parent: 1 + type: Transform + - uid: 3390 + components: + - rot: 3.141592653589793 rad + pos: -10.5,6.5 + parent: 1 + type: Transform + - uid: 3391 + components: + - rot: 3.141592653589793 rad + pos: -10.5,5.5 + parent: 1 + type: Transform + - uid: 3392 + components: + - rot: 3.141592653589793 rad + pos: -24.5,8.5 + parent: 1 + type: Transform +- proto: AirlockMedicalLocked + entities: + - uid: 734 + components: + - pos: 22.5,4.5 + parent: 1 + type: Transform + - uid: 3393 + components: + - rot: 3.141592653589793 rad + pos: -23.5,12.5 + parent: 1 + type: Transform + - uid: 3560 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,21.5 + parent: 1 + type: Transform +- proto: AirlockQuartermasterLocked + entities: + - uid: 3596 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-17.5 + parent: 1 + type: Transform +- proto: AirlockResearchDirectorLocked + entities: + - uid: 3411 + components: + - pos: -19.5,-2.5 + parent: 1 + type: Transform +- proto: AirlockSalvageGlassLocked + entities: + - uid: 1530 + components: + - pos: 17.5,-22.5 + parent: 1 + type: Transform + - uid: 7248 + components: + - pos: 17.5,-21.5 + parent: 1 + type: Transform +- proto: AirlockScienceGlassLocked + entities: + - uid: 3412 + components: + - pos: -26.5,-4.5 + parent: 1 + type: Transform + - uid: 3413 + components: + - pos: -23.5,-5.5 + parent: 1 + type: Transform + - uid: 3414 + components: + - pos: -23.5,-6.5 + parent: 1 + type: Transform + - uid: 3415 + components: + - pos: -19.5,-5.5 + parent: 1 + type: Transform + - uid: 3416 + components: + - pos: -19.5,-6.5 + parent: 1 + type: Transform + - uid: 3417 + components: + - pos: -16.5,-7.5 + parent: 1 + type: Transform + - uid: 3418 + components: + - pos: -13.5,-5.5 + parent: 1 + type: Transform + - uid: 3419 + components: + - pos: -13.5,-6.5 + parent: 1 + type: Transform + - uid: 3420 + components: + - pos: -12.5,-4.5 + parent: 1 + type: Transform + - uid: 3421 + components: + - pos: -11.5,-4.5 + parent: 1 + type: Transform + - uid: 3422 + components: + - pos: -12.5,-7.5 + parent: 1 + type: Transform + - uid: 3423 + components: + - pos: -11.5,-7.5 + parent: 1 + type: Transform + - uid: 3424 + components: + - pos: -10.5,-6.5 + parent: 1 + type: Transform + - uid: 3425 + components: + - pos: -10.5,-5.5 + parent: 1 + type: Transform + - uid: 3426 + components: + - pos: -18.5,-13.5 + parent: 1 + type: Transform + - uid: 3427 + components: + - pos: -18.5,-9.5 + parent: 1 + type: Transform +- proto: AirlockSecurityGlassLocked + entities: + - uid: 3310 + components: + - pos: 15.5,11.5 + parent: 1 + type: Transform + - uid: 3311 + components: + - pos: 21.5,11.5 + parent: 1 + type: Transform + - uid: 3312 + components: + - pos: 20.5,11.5 + parent: 1 + type: Transform + - uid: 3315 + components: + - pos: 32.5,19.5 + parent: 1 + type: Transform + - uid: 3316 + components: + - pos: 33.5,19.5 + parent: 1 + type: Transform + - uid: 3317 + components: + - pos: 32.5,22.5 + parent: 1 + type: Transform + - uid: 3318 + components: + - pos: 33.5,22.5 + parent: 1 + type: Transform + - uid: 3319 + components: + - pos: 32.5,24.5 + parent: 1 + type: Transform + - uid: 3320 + components: + - pos: 33.5,24.5 + parent: 1 + type: Transform +- proto: AirlockSecurityLocked + entities: + - uid: 2351 + components: + - pos: 18.5,21.5 + parent: 1 + type: Transform +- proto: AirlockServiceGlassLocked + entities: + - uid: 3369 + components: + - pos: 3.5,-6.5 + parent: 1 + type: Transform + - uid: 3370 + components: + - pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 3371 + components: + - rot: 3.141592653589793 rad + pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 3373 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 3374 + components: + - pos: 6.5,-3.5 + parent: 1 + type: Transform +- proto: AirlockServiceLocked + entities: + - uid: 3442 + components: + - pos: -37.5,-8.5 + parent: 1 + type: Transform + - uid: 3443 + components: + - pos: -35.5,-10.5 + parent: 1 + type: Transform +- proto: AirlockTheatreLocked + entities: + - uid: 3578 + components: + - name: Theatre Room + type: MetaData + - rot: 3.141592653589793 rad + pos: -11.5,-27.5 + parent: 1 + type: Transform +- proto: AirlockVirologyLocked + entities: + - uid: 3397 + components: + - rot: 3.141592653589793 rad + pos: -16.5,17.5 + parent: 1 + type: Transform + - uid: 3398 + components: + - rot: 3.141592653589793 rad + pos: -15.5,17.5 + parent: 1 + type: Transform +- proto: AirSensor + entities: + - uid: 11666 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-13.5 + parent: 1 + type: Transform + - uid: 11667 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-9.5 + parent: 1 + type: Transform +- proto: AltarSpawner + entities: + - uid: 3467 + components: + - pos: -34.5,9.5 + parent: 1 + type: Transform +- proto: AmeController + entities: + - uid: 6778 + components: + - pos: 29.5,-6.5 + parent: 1 + type: Transform +- proto: AmePart + entities: + - uid: 6775 + components: + - flags: InContainer + type: MetaData + - parent: 6774 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 6776 + components: + - flags: InContainer + type: MetaData + - parent: 6774 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 6777 + components: + - flags: InContainer + type: MetaData + - parent: 6774 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: AnalysisComputerCircuitboard + entities: + - uid: 9509 + components: + - pos: -4.5700207,-34.400963 + parent: 1 + type: Transform +- proto: AnomalyScanner + entities: + - uid: 6083 + components: + - pos: -28.443977,-5.4184704 + parent: 1 + type: Transform + - uid: 6084 + components: + - pos: -28.568977,-5.2934704 + parent: 1 + type: Transform +- proto: APCBasic + entities: + - uid: 1872 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,7.5 + parent: 1 + type: Transform + - uid: 1886 + components: + - pos: -24.5,12.5 + parent: 1 + type: Transform + - uid: 1887 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,13.5 + parent: 1 + type: Transform + - uid: 1889 + components: + - rot: 3.141592653589793 rad + pos: -14.5,17.5 + parent: 1 + type: Transform + - uid: 1929 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,29.5 + parent: 1 + type: Transform + - uid: 1930 + components: + - rot: 3.141592653589793 rad + pos: -0.5,26.5 + parent: 1 + type: Transform + - uid: 1931 + components: + - pos: 1.5,22.5 + parent: 1 + type: Transform + - uid: 1932 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-19.5 + parent: 1 + type: Transform + - uid: 1933 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-7.5 + parent: 1 + type: Transform + - uid: 1934 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-16.5 + parent: 1 + type: Transform + - uid: 1935 + components: + - pos: -14.5,0.5 + parent: 1 + type: Transform + - uid: 1942 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 1945 + components: + - pos: 13.5,11.5 + parent: 1 + type: Transform + - uid: 1946 + components: + - pos: 26.5,11.5 + parent: 1 + type: Transform + - uid: 1947 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,17.5 + parent: 1 + type: Transform + - uid: 1948 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,27.5 + parent: 1 + type: Transform + - uid: 2442 + components: + - pos: -31.5,-21.5 + parent: 1 + type: Transform + - uid: 2870 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-49.5 + parent: 1 + type: Transform + - uid: 3685 + components: + - rot: 3.141592653589793 rad + pos: -2.5,43.5 + parent: 1 + type: Transform + - uid: 3686 + components: + - pos: -6.5,57.5 + parent: 1 + type: Transform + - uid: 3687 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,52.5 + parent: 1 + type: Transform + - uid: 6248 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 + type: Transform + - uid: 6278 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 6521 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-15.5 + parent: 1 + type: Transform + - uid: 6522 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-27.5 + parent: 1 + type: Transform + - uid: 6523 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-25.5 + parent: 1 + type: Transform + - uid: 6525 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-12.5 + parent: 1 + type: Transform + - uid: 6526 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-5.5 + parent: 1 + type: Transform + - uid: 6527 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-14.5 + parent: 1 + type: Transform + - uid: 6780 + components: + - pos: 17.5,-2.5 + parent: 1 + type: Transform + - uid: 7088 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-19.5 + parent: 1 + type: Transform + - uid: 7089 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-28.5 + parent: 1 + type: Transform + - uid: 7090 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-21.5 + parent: 1 + type: Transform + - uid: 7555 + components: + - pos: -39.5,24.5 + parent: 1 + type: Transform + - uid: 7574 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,9.5 + parent: 1 + type: Transform + - uid: 7575 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,14.5 + parent: 1 + type: Transform + - uid: 7580 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-8.5 + parent: 1 + type: Transform + - uid: 7766 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-33.5 + parent: 1 + type: Transform + - uid: 8020 + components: + - rot: 3.141592653589793 rad + pos: 28.5,0.5 + parent: 1 + type: Transform + - uid: 8021 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,14.5 + parent: 1 + type: Transform + - uid: 8022 + components: + - pos: 41.5,24.5 + parent: 1 + type: Transform + - uid: 8023 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,28.5 + parent: 1 + type: Transform + - uid: 8189 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 1 + type: Transform + - uid: 8330 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-11.5 + parent: 1 + type: Transform + - uid: 8383 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-18.5 + parent: 1 + type: Transform + - uid: 8415 + components: + - rot: 3.141592653589793 rad + pos: 34.5,32.5 + parent: 1 + type: Transform + - uid: 9183 + components: + - rot: 3.141592653589793 rad + pos: -26.5,28.5 + parent: 1 + type: Transform + - uid: 9740 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,24.5 + parent: 1 + type: Transform + - uid: 12568 + components: + - pos: -33.5,-14.5 + parent: 1 + type: Transform +- proto: APCElectronics + entities: + - uid: 9513 + components: + - pos: -1.6168957,-34.369713 + parent: 1 + type: Transform + - uid: 9514 + components: + - pos: -1.6168957,-34.604088 + parent: 1 + type: Transform +- proto: AppleSeeds + entities: + - uid: 5464 + components: + - pos: 29.131155,27.228777 + parent: 1 + type: Transform + - uid: 5465 + components: + - pos: 28.162405,27.582066 + parent: 1 + type: Transform +- proto: AppraisalTool + entities: + - uid: 7423 + components: + - pos: 11.436758,-20.269583 + parent: 1 + type: Transform + - uid: 7424 + components: + - pos: 11.639883,-20.394583 + parent: 1 + type: Transform +- proto: ArtifactAnalyzerMachineCircuitboard + entities: + - uid: 9508 + components: + - pos: -4.4293957,-34.588463 + parent: 1 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 1949 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,12.5 + parent: 1 + type: Transform + - uid: 1950 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,5.5 + parent: 1 + type: Transform + - uid: 1954 + components: + - pos: 13.5,-31.5 + parent: 1 + type: Transform + - uid: 1955 + components: + - pos: 11.5,-31.5 + parent: 1 + type: Transform + - uid: 3001 + components: + - pos: 1.5,-34.5 + parent: 1 + type: Transform + - uid: 3063 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,13.5 + parent: 1 + type: Transform + - uid: 3064 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,11.5 + parent: 1 + type: Transform + - uid: 3065 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,5.5 + parent: 1 + type: Transform + - uid: 3066 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,3.5 + parent: 1 + type: Transform + - uid: 3147 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 3148 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 4816 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,22.5 + parent: 1 + type: Transform + - uid: 7073 + components: + - pos: -42.5,-10.5 + parent: 1 + type: Transform + - uid: 8324 + components: + - pos: 10.5,34.5 + parent: 1 + type: Transform + - uid: 12494 + components: + - rot: 3.141592653589793 rad + pos: 23.5,38.5 + parent: 1 + type: Transform + - uid: 12495 + components: + - rot: 3.141592653589793 rad + pos: 25.5,38.5 + parent: 1 + type: Transform + - uid: 12496 + components: + - rot: 3.141592653589793 rad + pos: 31.5,38.5 + parent: 1 + type: Transform + - uid: 12497 + components: + - rot: 3.141592653589793 rad + pos: 33.5,38.5 + parent: 1 + type: Transform +- proto: AtmosFixBlockerMarker + entities: + - uid: 7260 + components: + - pos: 43.5,-9.5 + parent: 1 + type: Transform + - uid: 7261 + components: + - pos: 44.5,-9.5 + parent: 1 + type: Transform + - uid: 7262 + components: + - pos: 45.5,-9.5 + parent: 1 + type: Transform + - uid: 7263 + components: + - pos: 43.5,-11.5 + parent: 1 + type: Transform + - uid: 7264 + components: + - pos: 44.5,-11.5 + parent: 1 + type: Transform + - uid: 7265 + components: + - pos: 45.5,-11.5 + parent: 1 + type: Transform + - uid: 7266 + components: + - pos: 43.5,-13.5 + parent: 1 + type: Transform + - uid: 7267 + components: + - pos: 44.5,-13.5 + parent: 1 + type: Transform + - uid: 7268 + components: + - pos: 45.5,-13.5 + parent: 1 + type: Transform + - uid: 7269 + components: + - pos: 43.5,-17.5 + parent: 1 + type: Transform + - uid: 7270 + components: + - pos: 44.5,-17.5 + parent: 1 + type: Transform + - uid: 7271 + components: + - pos: 45.5,-17.5 + parent: 1 + type: Transform + - uid: 7272 + components: + - pos: 34.5,-22.5 + parent: 1 + type: Transform + - uid: 7273 + components: + - pos: 34.5,-23.5 + parent: 1 + type: Transform + - uid: 7274 + components: + - pos: 35.5,-22.5 + parent: 1 + type: Transform + - uid: 7275 + components: + - pos: 35.5,-23.5 + parent: 1 + type: Transform + - uid: 7276 + components: + - pos: 36.5,-22.5 + parent: 1 + type: Transform + - uid: 7277 + components: + - pos: 36.5,-23.5 + parent: 1 + type: Transform +- proto: AtmosFixNitrogenMarker + entities: + - uid: 7251 + components: + - pos: 43.5,-5.5 + parent: 1 + type: Transform + - uid: 7252 + components: + - pos: 44.5,-5.5 + parent: 1 + type: Transform + - uid: 7253 + components: + - pos: 45.5,-5.5 + parent: 1 + type: Transform +- proto: AtmosFixOxygenMarker + entities: + - uid: 7254 + components: + - pos: 43.5,-7.5 + parent: 1 + type: Transform + - uid: 7255 + components: + - pos: 44.5,-7.5 + parent: 1 + type: Transform + - uid: 7256 + components: + - pos: 45.5,-7.5 + parent: 1 + type: Transform +- proto: AtmosFixPlasmaMarker + entities: + - uid: 7257 + components: + - pos: 43.5,-15.5 + parent: 1 + type: Transform + - uid: 7258 + components: + - pos: 44.5,-15.5 + parent: 1 + type: Transform + - uid: 7259 + components: + - pos: 45.5,-15.5 + parent: 1 + type: Transform + - uid: 12339 + components: + - pos: -0.5,65.5 + parent: 1 + type: Transform +- proto: Autolathe + entities: + - uid: 1024 + components: + - pos: 17.5,-3.5 + parent: 1 + type: Transform + - uid: 1878 + components: + - pos: 13.5,-20.5 + parent: 1 + type: Transform + - uid: 3808 + components: + - pos: -8.5,-0.5 + parent: 1 + type: Transform +- proto: BananaPhoneInstrument + entities: + - uid: 12404 + components: + - pos: -9.729915,-30.052383 + parent: 1 + type: Transform +- proto: BananaSeeds + entities: + - uid: 5467 + components: + - pos: 31.256155,27.175816 + parent: 1 + type: Transform +- proto: BannerNanotrasen + entities: + - uid: 4059 + components: + - pos: -9.5,31.5 + parent: 1 + type: Transform +- proto: BannerSecurity + entities: + - uid: 5303 + components: + - pos: 9.5,15.5 + parent: 1 + type: Transform +- proto: Barricade + entities: + - uid: 8278 + components: + - pos: -25.5,-20.5 + parent: 1 + type: Transform +- proto: BarSign + entities: + - uid: 60 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform +- proto: BassGuitarInstrument + entities: + - uid: 12290 + components: + - pos: -27.503199,41.532513 + parent: 1 + type: Transform +- proto: Beaker + entities: + - uid: 6085 + components: + - pos: -27.912727,-5.4184704 + parent: 1 + type: Transform + - uid: 6086 + components: + - pos: -27.662727,-5.1840954 + parent: 1 + type: Transform +- proto: Bed + entities: + - uid: 1805 + components: + - pos: 25.5,12.5 + parent: 1 + type: Transform + - uid: 1806 + components: + - pos: 27.5,16.5 + parent: 1 + type: Transform + - uid: 1810 + components: + - pos: 25.5,24.5 + parent: 1 + type: Transform + - uid: 1818 + components: + - pos: 25.5,28.5 + parent: 1 + type: Transform + - uid: 1851 + components: + - pos: -20.5,-3.5 + parent: 1 + type: Transform + - uid: 3482 + components: + - pos: -31.5,13.5 + parent: 1 + type: Transform + - uid: 4098 + components: + - pos: 3.5,31.5 + parent: 1 + type: Transform + - uid: 4962 + components: + - pos: -5.5,19.5 + parent: 1 + type: Transform + - uid: 5361 + components: + - pos: 28.5,5.5 + parent: 1 + type: Transform + - uid: 5438 + components: + - pos: 17.5,5.5 + parent: 1 + type: Transform + - uid: 5439 + components: + - pos: 14.5,5.5 + parent: 1 + type: Transform + - uid: 5440 + components: + - pos: 11.5,5.5 + parent: 1 + type: Transform + - uid: 5663 + components: + - pos: 16.5,-15.5 + parent: 1 + type: Transform + - uid: 7442 + components: + - pos: 4.5,-17.5 + parent: 1 + type: Transform + - uid: 7714 + components: + - pos: -5.5,-29.5 + parent: 1 + type: Transform + - uid: 7715 + components: + - pos: -1.5,-29.5 + parent: 1 + type: Transform + - uid: 8261 + components: + - pos: -17.5,-53.5 + parent: 1 + type: Transform + - uid: 9017 + components: + - pos: -38.5,-10.5 + parent: 1 + type: Transform + - uid: 9620 + components: + - pos: 15.5,27.5 + parent: 1 + type: Transform + - uid: 12405 + components: + - pos: -10.5,-28.5 + parent: 1 + type: Transform + - uid: 12406 + components: + - pos: -10.5,-31.5 + parent: 1 + type: Transform + - uid: 12407 + components: + - pos: -13.5,-30.5 + parent: 1 + type: Transform +- proto: BedsheetCaptain + entities: + - uid: 4099 + components: + - pos: 3.5,31.5 + parent: 1 + type: Transform +- proto: BedsheetCE + entities: + - uid: 5662 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-15.5 + parent: 1 + type: Transform +- proto: BedsheetClown + entities: + - uid: 12410 + components: + - pos: -10.5,-31.5 + parent: 1 + type: Transform +- proto: BedsheetCMO + entities: + - uid: 1861 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,16.5 + parent: 1 + type: Transform +- proto: BedsheetCosmos + entities: + - uid: 8262 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-53.5 + parent: 1 + type: Transform + - uid: 12408 + components: + - pos: -13.5,-30.5 + parent: 1 + type: Transform +- proto: BedsheetCult + entities: + - uid: 3481 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,13.5 + parent: 1 + type: Transform +- proto: BedsheetGreen + entities: + - uid: 5619 + components: + - pos: -10.5,18.5 + parent: 1 + type: Transform + - uid: 5620 + components: + - rot: 3.141592653589793 rad + pos: -10.5,21.5 + parent: 1 + type: Transform +- proto: BedsheetHOP + entities: + - uid: 4963 + components: + - pos: -5.5,19.5 + parent: 1 + type: Transform +- proto: BedsheetHOS + entities: + - uid: 5373 + components: + - pos: 25.5,12.5 + parent: 1 + type: Transform +- proto: BedsheetMedical + entities: + - uid: 5621 + components: + - rot: 3.141592653589793 rad + pos: -18.5,5.5 + parent: 1 + type: Transform + - uid: 5622 + components: + - rot: 3.141592653589793 rad + pos: -15.5,5.5 + parent: 1 + type: Transform +- proto: BedsheetMime + entities: + - uid: 12409 + components: + - pos: -10.5,-28.5 + parent: 1 + type: Transform +- proto: BedsheetOrange + entities: + - uid: 5441 + components: + - pos: 14.5,5.5 + parent: 1 + type: Transform + - uid: 5442 + components: + - pos: 11.5,5.5 + parent: 1 + type: Transform + - uid: 5443 + components: + - pos: 17.5,5.5 + parent: 1 + type: Transform +- proto: BedsheetQM + entities: + - uid: 7441 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-17.5 + parent: 1 + type: Transform +- proto: BedsheetRD + entities: + - uid: 1850 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-3.5 + parent: 1 + type: Transform +- proto: BedsheetRed + entities: + - uid: 1807 + components: + - pos: 27.5,16.5 + parent: 1 + type: Transform + - uid: 5362 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,5.5 + parent: 1 + type: Transform +- proto: BedsheetSpawner + entities: + - uid: 7716 + components: + - pos: -5.5,-29.5 + parent: 1 + type: Transform + - uid: 7717 + components: + - pos: -1.5,-29.5 + parent: 1 + type: Transform + - uid: 9018 + components: + - pos: -38.5,-10.5 + parent: 1 + type: Transform +- proto: BedsheetSyndie + entities: + - uid: 1814 + components: + - rot: 3.141592653589793 rad + pos: 25.5,28.5 + parent: 1 + type: Transform + - uid: 1817 + components: + - rot: 3.141592653589793 rad + pos: 25.5,24.5 + parent: 1 + type: Transform + - uid: 9621 + components: + - rot: 3.141592653589793 rad + pos: 15.5,27.5 + parent: 1 + type: Transform +- proto: Bible + entities: + - uid: 7547 + components: + - pos: -31.507103,14.620898 + parent: 1 + type: Transform +- proto: BiomassReclaimer + entities: + - uid: 1921 + components: + - pos: -22.5,14.5 + parent: 1 + type: Transform +- proto: BlastDoor + entities: + - uid: 3218 + components: + - pos: 34.5,11.5 + parent: 1 + type: Transform + - links: + - 5388 + - 5389 + type: DeviceLinkSink + - uid: 3434 + components: + - pos: -21.5,-9.5 + parent: 1 + type: Transform + - links: + - 6338 + type: DeviceLinkSink + - uid: 3435 + components: + - pos: -21.5,-13.5 + parent: 1 + type: Transform + - links: + - 6337 + type: DeviceLinkSink + - uid: 3561 + components: + - pos: -35.5,25.5 + parent: 1 + type: Transform + - links: + - 1978 + type: DeviceLinkSink + - uid: 3795 + components: + - pos: 35.5,-24.5 + parent: 1 + type: Transform + - uid: 7432 + components: + - pos: 10.5,-28.5 + parent: 1 + type: Transform + - links: + - 7436 + type: DeviceLinkSink + - uid: 7433 + components: + - pos: 10.5,-31.5 + parent: 1 + type: Transform + - links: + - 7436 + type: DeviceLinkSink + - uid: 7434 + components: + - pos: 14.5,-31.5 + parent: 1 + type: Transform + - links: + - 7437 + type: DeviceLinkSink + - uid: 7435 + components: + - pos: 14.5,-28.5 + parent: 1 + type: Transform + - links: + - 7437 + type: DeviceLinkSink +- proto: BlastDoorOpen + entities: + - uid: 4064 + components: + - pos: 5.5,32.5 + parent: 1 + type: Transform + - links: + - 4100 + type: DeviceLinkSink + - uid: 4065 + components: + - pos: 4.5,32.5 + parent: 1 + type: Transform + - links: + - 4100 + type: DeviceLinkSink + - uid: 4066 + components: + - pos: 3.5,32.5 + parent: 1 + type: Transform + - links: + - 4100 + type: DeviceLinkSink +- proto: BlockGameArcade + entities: + - uid: 4945 + components: + - rot: 3.141592653589793 rad + pos: 30.5,24.5 + parent: 1 + type: Transform +- proto: Bloodpack + entities: + - uid: 9642 + components: + - pos: -26.340826,24.655668 + parent: 1 + type: Transform + - uid: 9643 + components: + - pos: -26.622076,24.452543 + parent: 1 + type: Transform +- proto: BodyBag_Container + entities: + - uid: 8242 + components: + - pos: -23.819975,23.448257 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: BookRandom + entities: + - uid: 5577 + components: + - pos: -37.35744,-3.616012 + parent: 1 + type: Transform + - uid: 5578 + components: + - pos: -37.623066,-3.397262 + parent: 1 + type: Transform + - uid: 5579 + components: + - pos: -37.41994,-3.100387 + parent: 1 + type: Transform +- proto: BooksBag + entities: + - uid: 5580 + components: + - pos: -37.421623,-3.3253686 + parent: 1 + type: Transform +- proto: BookshelfFilled + entities: + - uid: 1262 + components: + - pos: -40.5,-3.5 + parent: 1 + type: Transform + - uid: 1271 + components: + - pos: -40.5,-2.5 + parent: 1 + type: Transform + - uid: 1287 + components: + - pos: -41.5,-3.5 + parent: 1 + type: Transform + - uid: 1952 + components: + - pos: -39.5,-3.5 + parent: 1 + type: Transform + - uid: 1961 + components: + - pos: -41.5,-2.5 + parent: 1 + type: Transform + - uid: 1962 + components: + - pos: -39.5,-2.5 + parent: 1 + type: Transform + - uid: 2785 + components: + - pos: -18.5,-48.5 + parent: 1 + type: Transform + - uid: 2802 + components: + - pos: -17.5,-48.5 + parent: 1 + type: Transform + - uid: 4858 + components: + - pos: -39.5,-0.5 + parent: 1 + type: Transform + - uid: 4862 + components: + - pos: -40.5,-0.5 + parent: 1 + type: Transform + - uid: 4870 + components: + - pos: -41.5,-0.5 + parent: 1 + type: Transform + - uid: 4879 + components: + - pos: -38.5,-0.5 + parent: 1 + type: Transform +- proto: BoozeDispenser + entities: + - uid: 5950 + components: + - rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 8270 + components: + - pos: -14.5,-48.5 + parent: 1 + type: Transform + - uid: 8292 + components: + - pos: -31.5,-12.5 + parent: 1 + type: Transform +- proto: BorgCharger + entities: + - uid: 658 + components: + - pos: -4.5,-12.5 + parent: 1 + type: Transform + - uid: 659 + components: + - pos: -4.5,-11.5 + parent: 1 + type: Transform +- proto: BoxBeaker + entities: + - uid: 5920 + components: + - pos: -10.486181,15.653046 + parent: 1 + type: Transform + - uid: 6050 + components: + - pos: -14.475516,-1.6162148 + parent: 1 + type: Transform +- proto: BoxBeanbag + entities: + - uid: 5430 + components: + - pos: 38.515625,12.538095 + parent: 1 + type: Transform +- proto: BoxBodyBag + entities: + - uid: 5351 + components: + - pos: 23.488127,5.639096 + parent: 1 + type: Transform + - uid: 5699 + components: + - pos: -22.480776,15.689974 + parent: 1 + type: Transform +- proto: BoxFlashbang + entities: + - uid: 5306 + components: + - pos: 21.502325,15.64172 + parent: 1 + type: Transform +- proto: BoxFolderBase + entities: + - uid: 3983 + components: + - rot: 1.5707963267948966 rad + pos: -10.572755,50.565598 + parent: 1 + type: Transform + - uid: 3984 + components: + - rot: 1.5707963267948966 rad + pos: -10.43213,50.690598 + parent: 1 + type: Transform + - uid: 3987 + components: + - rot: 3.141592653589793 rad + pos: -3.5883799,48.565598 + parent: 1 + type: Transform + - uid: 3988 + components: + - pos: -5.510255,56.62389 + parent: 1 + type: Transform + - uid: 3989 + components: + - pos: -5.33838,56.545765 + parent: 1 + type: Transform + - uid: 3992 + components: + - rot: 3.141592653589793 rad + pos: -8.385255,48.646393 + parent: 1 + type: Transform + - uid: 3993 + components: + - rot: 3.141592653589793 rad + pos: -8.510255,48.552643 + parent: 1 + type: Transform + - uid: 6055 + components: + - pos: -16.543133,-2.3470023 + parent: 1 + type: Transform + - uid: 6056 + components: + - pos: -16.746258,-2.5345023 + parent: 1 + type: Transform + - uid: 6057 + components: + - pos: -16.402508,-2.6438773 + parent: 1 + type: Transform +- proto: BoxFolderBlack + entities: + - uid: 5698 + components: + - pos: -22.449526,16.580599 + parent: 1 + type: Transform + - uid: 9636 + components: + - pos: 18.643274,25.583164 + parent: 1 + type: Transform +- proto: BoxFolderBlue + entities: + - uid: 4103 + components: + - pos: -9.648237,29.409079 + parent: 1 + type: Transform + - uid: 4975 + components: + - pos: 4.828023,27.549826 + parent: 1 + type: Transform + - uid: 5094 + components: + - pos: -4.4542303,19.564632 + parent: 1 + type: Transform + - uid: 5338 + components: + - pos: 28.444067,8.501565 + parent: 1 + type: Transform + - uid: 9584 + components: + - pos: 44.920597,31.694736 + parent: 1 + type: Transform + - uid: 9585 + components: + - pos: 44.420597,31.569736 + parent: 1 + type: Transform +- proto: BoxFolderGrey + entities: + - uid: 1883 + components: + - pos: -21.598257,-1.4382241 + parent: 1 + type: Transform + - uid: 1884 + components: + - pos: -21.473257,-1.3444741 + parent: 1 + type: Transform + - uid: 6069 + components: + - pos: -9.343652,-12.375296 + parent: 1 + type: Transform + - uid: 6075 + components: + - pos: -9.593652,-12.547171 + parent: 1 + type: Transform +- proto: BoxFolderRed + entities: + - uid: 4105 + components: + - pos: -9.335737,27.815329 + parent: 1 + type: Transform + - uid: 5096 + components: + - pos: -4.5636053,19.549007 + parent: 1 + type: Transform + - uid: 5337 + components: + - pos: 28.678442,8.532815 + parent: 1 + type: Transform + - uid: 5390 + components: + - pos: 27.618711,13.570517 + parent: 1 + type: Transform + - uid: 5397 + components: + - pos: 28.399961,16.572828 + parent: 1 + type: Transform + - uid: 9586 + components: + - pos: 41.576847,31.538486 + parent: 1 + type: Transform + - uid: 9587 + components: + - pos: 41.029972,31.710361 + parent: 1 + type: Transform +- proto: BoxFolderWhite + entities: + - uid: 1879 + components: + - pos: -19.351341,14.63665 + parent: 1 + type: Transform + - uid: 1880 + components: + - pos: -19.445091,14.558525 + parent: 1 + type: Transform + - uid: 5880 + components: + - pos: -14.371586,5.6317506 + parent: 1 + type: Transform + - uid: 5881 + components: + - pos: -17.378174,5.612771 + parent: 1 + type: Transform +- proto: BoxFolderYellow + entities: + - uid: 5095 + components: + - pos: -4.5011053,19.564632 + parent: 1 + type: Transform + - uid: 5677 + components: + - pos: 18.605122,-14.452038 + parent: 1 + type: Transform + - uid: 6787 + components: + - pos: 12.643603,-12.352579 + parent: 1 + type: Transform + - uid: 6788 + components: + - pos: 12.565478,-12.461954 + parent: 1 + type: Transform + - uid: 7304 + components: + - pos: 13.624326,-23.294518 + parent: 1 + type: Transform + - uid: 7305 + components: + - pos: 13.389951,-23.325768 + parent: 1 + type: Transform + - uid: 7401 + components: + - pos: 5.547744,-21.14656 + parent: 1 + type: Transform + - uid: 7402 + components: + - pos: 5.438369,-21.39656 + parent: 1 + type: Transform + - uid: 7403 + components: + - pos: 11.688369,-18.30281 + parent: 1 + type: Transform + - uid: 7404 + components: + - pos: 11.422744,-18.443436 + parent: 1 + type: Transform + - uid: 7448 + components: + - pos: 5.6525464,-15.315514 + parent: 1 + type: Transform + - uid: 7449 + components: + - pos: 5.4181714,-15.456139 + parent: 1 + type: Transform + - uid: 9600 + components: + - rot: 3.141592653589793 rad + pos: 42.779972,33.663486 + parent: 1 + type: Transform + - uid: 9601 + components: + - rot: 3.141592653589793 rad + pos: 42.358097,33.58536 + parent: 1 + type: Transform +- proto: BoxForensicPad + entities: + - uid: 9318 + components: + - pos: 13.474606,21.591854 + parent: 1 + type: Transform +- proto: BoxHandcuff + entities: + - uid: 5308 + components: + - pos: 21.022184,15.646895 + parent: 1 + type: Transform +- proto: BoxLatexGloves + entities: + - uid: 5903 + components: + - pos: -22.54765,11.635829 + parent: 1 + type: Transform + - uid: 5907 + components: + - pos: -12.516884,19.876278 + parent: 1 + type: Transform +- proto: BoxLethalshot + entities: + - uid: 5428 + components: + - pos: 38.48653,12.471226 + parent: 1 + type: Transform + - uid: 5429 + components: + - pos: 38.502155,12.596226 + parent: 1 + type: Transform +- proto: BoxLightbulb + entities: + - uid: 7667 + components: + - pos: 12.361424,-0.38664222 + parent: 1 + type: Transform +- proto: BoxLightMixed + entities: + - uid: 8911 + components: + - pos: -24.485905,-14.450869 + parent: 1 + type: Transform +- proto: BoxLighttube + entities: + - uid: 7669 + components: + - pos: 12.611424,-0.37101722 + parent: 1 + type: Transform +- proto: BoxMagazinePistol + entities: + - uid: 5423 + components: + - pos: 37.484375,13.569345 + parent: 1 + type: Transform +- proto: BoxMagazinePistolSubMachineGun + entities: + - uid: 5421 + components: + - pos: 36.5625,13.600595 + parent: 1 + type: Transform +- proto: BoxMouthSwab + entities: + - uid: 5906 + components: + - pos: -12.390701,20.206486 + parent: 1 + type: Transform + - uid: 5908 + components: + - pos: -12.415903,19.683134 + parent: 1 + type: Transform + - uid: 12456 + components: + - pos: -1.403451,-0.3365245 + parent: 1 + type: Transform +- proto: BoxPillCanister + entities: + - uid: 5918 + components: + - pos: -10.658056,15.653046 + parent: 1 + type: Transform +- proto: BoxSterileMask + entities: + - uid: 5905 + components: + - pos: -12.531326,20.581486 + parent: 1 + type: Transform + - uid: 6054 + components: + - pos: -14.459891,-1.7880898 + parent: 1 + type: Transform + - uid: 7183 + components: + - pos: -22.431108,11.63326 + parent: 1 + type: Transform +- proto: BoxSyringe + entities: + - uid: 5919 + components: + - pos: -10.345556,15.653046 + parent: 1 + type: Transform + - uid: 6049 + components: + - pos: -14.459891,-1.9287148 + parent: 1 + type: Transform +- proto: BoxZiptie + entities: + - uid: 5309 + components: + - pos: 20.533396,15.646895 + parent: 1 + type: Transform +- proto: BrbSign + entities: + - uid: 12484 + components: + - pos: 0.4449376,21.546635 + parent: 1 + type: Transform +- proto: BriefcaseBrownFilled + entities: + - uid: 5336 + components: + - pos: 28.490942,8.501565 + parent: 1 + type: Transform +- proto: BrigTimer + entities: + - uid: 12485 + components: + - rot: 3.141592653589793 rad + pos: 11.5,7.5 + parent: 1 + type: Transform + - linkedPorts: + 5535: + - Start: Close + - Timer: AutoClose + - Timer: Open + type: DeviceLinkSource + - uid: 12486 + components: + - rot: 3.141592653589793 rad + pos: 14.5,7.5 + parent: 1 + type: Transform + - linkedPorts: + 5536: + - Start: Close + - Timer: AutoClose + - Timer: Open + type: DeviceLinkSource + - uid: 12487 + components: + - rot: 3.141592653589793 rad + pos: 17.5,7.5 + parent: 1 + type: Transform + - linkedPorts: + 5537: + - Start: Close + - Timer: AutoClose + - Timer: Open + type: DeviceLinkSource +- proto: Brutepack + entities: + - uid: 9629 + components: + - pos: 18.279701,27.765732 + parent: 1 + type: Transform +- proto: Bucket + entities: + - uid: 12549 + components: + - pos: -0.29377937,-4.689143 + parent: 1 + type: Transform + - uid: 12550 + components: + - pos: -0.6531544,-4.407893 + parent: 1 + type: Transform +- proto: CableApcExtension + entities: + - uid: 27 + components: + - pos: -12.5,-46.5 + parent: 1 + type: Transform + - uid: 1943 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 2792 + components: + - pos: -18.5,-49.5 + parent: 1 + type: Transform + - uid: 2797 + components: + - pos: -17.5,-49.5 + parent: 1 + type: Transform + - uid: 2863 + components: + - pos: -11.5,-46.5 + parent: 1 + type: Transform + - uid: 2876 + components: + - pos: -10.5,-49.5 + parent: 1 + type: Transform + - uid: 2877 + components: + - pos: -11.5,-49.5 + parent: 1 + type: Transform + - uid: 2878 + components: + - pos: -12.5,-49.5 + parent: 1 + type: Transform + - uid: 2879 + components: + - pos: -13.5,-49.5 + parent: 1 + type: Transform + - uid: 2880 + components: + - pos: -14.5,-49.5 + parent: 1 + type: Transform + - uid: 2881 + components: + - pos: -15.5,-49.5 + parent: 1 + type: Transform + - uid: 2882 + components: + - pos: -16.5,-49.5 + parent: 1 + type: Transform + - uid: 2883 + components: + - pos: -16.5,-50.5 + parent: 1 + type: Transform + - uid: 2884 + components: + - pos: -16.5,-51.5 + parent: 1 + type: Transform + - uid: 2885 + components: + - pos: -16.5,-52.5 + parent: 1 + type: Transform + - uid: 2886 + components: + - pos: -13.5,-50.5 + parent: 1 + type: Transform + - uid: 2887 + components: + - pos: -13.5,-51.5 + parent: 1 + type: Transform + - uid: 2888 + components: + - pos: -13.5,-52.5 + parent: 1 + type: Transform + - uid: 2889 + components: + - pos: -11.5,-48.5 + parent: 1 + type: Transform + - uid: 2890 + components: + - pos: -11.5,-47.5 + parent: 1 + type: Transform + - uid: 3386 + components: + - pos: 6.5,8.5 + parent: 1 + type: Transform + - uid: 3718 + components: + - pos: -2.5,43.5 + parent: 1 + type: Transform + - uid: 3719 + components: + - pos: -2.5,44.5 + parent: 1 + type: Transform + - uid: 3720 + components: + - pos: -2.5,45.5 + parent: 1 + type: Transform + - uid: 3721 + components: + - pos: -1.5,45.5 + parent: 1 + type: Transform + - uid: 3722 + components: + - pos: -4.5,45.5 + parent: 1 + type: Transform + - uid: 3723 + components: + - pos: -3.5,45.5 + parent: 1 + type: Transform + - uid: 3724 + components: + - pos: -5.5,45.5 + parent: 1 + type: Transform + - uid: 3725 + components: + - pos: -6.5,45.5 + parent: 1 + type: Transform + - uid: 3726 + components: + - pos: -7.5,45.5 + parent: 1 + type: Transform + - uid: 3727 + components: + - pos: -8.5,45.5 + parent: 1 + type: Transform + - uid: 3728 + components: + - pos: -9.5,45.5 + parent: 1 + type: Transform + - uid: 3729 + components: + - pos: -6.5,57.5 + parent: 1 + type: Transform + - uid: 3730 + components: + - pos: -6.5,56.5 + parent: 1 + type: Transform + - uid: 3731 + components: + - pos: -6.5,55.5 + parent: 1 + type: Transform + - uid: 3732 + components: + - pos: -5.5,55.5 + parent: 1 + type: Transform + - uid: 3733 + components: + - pos: -4.5,55.5 + parent: 1 + type: Transform + - uid: 3734 + components: + - pos: -4.5,54.5 + parent: 1 + type: Transform + - uid: 3735 + components: + - pos: -4.5,53.5 + parent: 1 + type: Transform + - uid: 3736 + components: + - pos: -4.5,52.5 + parent: 1 + type: Transform + - uid: 3737 + components: + - pos: -4.5,51.5 + parent: 1 + type: Transform + - uid: 3738 + components: + - pos: -4.5,50.5 + parent: 1 + type: Transform + - uid: 3739 + components: + - pos: -4.5,49.5 + parent: 1 + type: Transform + - uid: 3740 + components: + - pos: -5.5,49.5 + parent: 1 + type: Transform + - uid: 3741 + components: + - pos: -6.5,49.5 + parent: 1 + type: Transform + - uid: 3742 + components: + - pos: -7.5,49.5 + parent: 1 + type: Transform + - uid: 3743 + components: + - pos: -8.5,49.5 + parent: 1 + type: Transform + - uid: 3744 + components: + - pos: -8.5,50.5 + parent: 1 + type: Transform + - uid: 3745 + components: + - pos: -8.5,51.5 + parent: 1 + type: Transform + - uid: 3746 + components: + - pos: -8.5,52.5 + parent: 1 + type: Transform + - uid: 3747 + components: + - pos: -8.5,53.5 + parent: 1 + type: Transform + - uid: 3748 + components: + - pos: -8.5,54.5 + parent: 1 + type: Transform + - uid: 3749 + components: + - pos: -8.5,55.5 + parent: 1 + type: Transform + - uid: 3750 + components: + - pos: -7.5,55.5 + parent: 1 + type: Transform + - uid: 3751 + components: + - pos: -9.5,52.5 + parent: 1 + type: Transform + - uid: 3752 + components: + - pos: -3.5,52.5 + parent: 1 + type: Transform + - uid: 3753 + components: + - pos: -6.5,48.5 + parent: 1 + type: Transform + - uid: 3754 + components: + - pos: 4.5,52.5 + parent: 1 + type: Transform + - uid: 3755 + components: + - pos: 3.5,52.5 + parent: 1 + type: Transform + - uid: 3756 + components: + - pos: 2.5,52.5 + parent: 1 + type: Transform + - uid: 3757 + components: + - pos: 1.5,52.5 + parent: 1 + type: Transform + - uid: 3758 + components: + - pos: 0.5,52.5 + parent: 1 + type: Transform + - uid: 3759 + components: + - pos: -0.5,52.5 + parent: 1 + type: Transform + - uid: 3760 + components: + - pos: -1.5,52.5 + parent: 1 + type: Transform + - uid: 3761 + components: + - pos: 1.5,53.5 + parent: 1 + type: Transform + - uid: 3762 + components: + - pos: 1.5,54.5 + parent: 1 + type: Transform + - uid: 3763 + components: + - pos: 1.5,55.5 + parent: 1 + type: Transform + - uid: 3764 + components: + - pos: 1.5,51.5 + parent: 1 + type: Transform + - uid: 3765 + components: + - pos: 1.5,50.5 + parent: 1 + type: Transform + - uid: 3766 + components: + - pos: 1.5,49.5 + parent: 1 + type: Transform + - uid: 4168 + components: + - pos: -12.5,29.5 + parent: 1 + type: Transform + - uid: 4169 + components: + - pos: -12.5,30.5 + parent: 1 + type: Transform + - uid: 4170 + components: + - pos: -13.5,30.5 + parent: 1 + type: Transform + - uid: 4171 + components: + - pos: -14.5,30.5 + parent: 1 + type: Transform + - uid: 4172 + components: + - pos: -15.5,30.5 + parent: 1 + type: Transform + - uid: 4173 + components: + - pos: -16.5,30.5 + parent: 1 + type: Transform + - uid: 4174 + components: + - pos: -17.5,30.5 + parent: 1 + type: Transform + - uid: 4175 + components: + - pos: -17.5,31.5 + parent: 1 + type: Transform + - uid: 4176 + components: + - pos: -11.5,30.5 + parent: 1 + type: Transform + - uid: 4177 + components: + - pos: -10.5,30.5 + parent: 1 + type: Transform + - uid: 4178 + components: + - pos: -9.5,30.5 + parent: 1 + type: Transform + - uid: 4179 + components: + - pos: -9.5,29.5 + parent: 1 + type: Transform + - uid: 4180 + components: + - pos: -9.5,28.5 + parent: 1 + type: Transform + - uid: 4181 + components: + - pos: -9.5,27.5 + parent: 1 + type: Transform + - uid: 4182 + components: + - pos: -9.5,26.5 + parent: 1 + type: Transform + - uid: 4183 + components: + - pos: -0.5,26.5 + parent: 1 + type: Transform + - uid: 4184 + components: + - pos: -0.5,27.5 + parent: 1 + type: Transform + - uid: 4185 + components: + - pos: -0.5,28.5 + parent: 1 + type: Transform + - uid: 4186 + components: + - pos: -0.5,29.5 + parent: 1 + type: Transform + - uid: 4187 + components: + - pos: -1.5,29.5 + parent: 1 + type: Transform + - uid: 4188 + components: + - pos: -2.5,29.5 + parent: 1 + type: Transform + - uid: 4189 + components: + - pos: -3.5,29.5 + parent: 1 + type: Transform + - uid: 4190 + components: + - pos: -4.5,29.5 + parent: 1 + type: Transform + - uid: 4191 + components: + - pos: -3.5,28.5 + parent: 1 + type: Transform + - uid: 4192 + components: + - pos: -3.5,27.5 + parent: 1 + type: Transform + - uid: 4193 + components: + - pos: -3.5,26.5 + parent: 1 + type: Transform + - uid: 4194 + components: + - pos: -3.5,25.5 + parent: 1 + type: Transform + - uid: 4195 + components: + - pos: -3.5,24.5 + parent: 1 + type: Transform + - uid: 4196 + components: + - pos: -2.5,24.5 + parent: 1 + type: Transform + - uid: 4197 + components: + - pos: -1.5,30.5 + parent: 1 + type: Transform + - uid: 4198 + components: + - pos: -1.5,31.5 + parent: 1 + type: Transform + - uid: 4199 + components: + - pos: -4.5,30.5 + parent: 1 + type: Transform + - uid: 4200 + components: + - pos: 0.5,29.5 + parent: 1 + type: Transform + - uid: 4201 + components: + - pos: 1.5,29.5 + parent: 1 + type: Transform + - uid: 4202 + components: + - pos: 1.5,28.5 + parent: 1 + type: Transform + - uid: 4203 + components: + - pos: 1.5,27.5 + parent: 1 + type: Transform + - uid: 4204 + components: + - pos: 1.5,26.5 + parent: 1 + type: Transform + - uid: 4205 + components: + - pos: 1.5,25.5 + parent: 1 + type: Transform + - uid: 4206 + components: + - pos: 1.5,24.5 + parent: 1 + type: Transform + - uid: 4207 + components: + - pos: 2.5,28.5 + parent: 1 + type: Transform + - uid: 4208 + components: + - pos: 3.5,28.5 + parent: 1 + type: Transform + - uid: 4209 + components: + - pos: 4.5,28.5 + parent: 1 + type: Transform + - uid: 4210 + components: + - pos: 4.5,29.5 + parent: 1 + type: Transform + - uid: 4211 + components: + - pos: 4.5,30.5 + parent: 1 + type: Transform + - uid: 4212 + components: + - pos: 1.5,22.5 + parent: 1 + type: Transform + - uid: 4213 + components: + - pos: 1.5,21.5 + parent: 1 + type: Transform + - uid: 4214 + components: + - pos: 1.5,20.5 + parent: 1 + type: Transform + - uid: 4215 + components: + - pos: 0.5,20.5 + parent: 1 + type: Transform + - uid: 4216 + components: + - pos: -0.5,20.5 + parent: 1 + type: Transform + - uid: 4217 + components: + - pos: -1.5,20.5 + parent: 1 + type: Transform + - uid: 4218 + components: + - pos: -2.5,20.5 + parent: 1 + type: Transform + - uid: 4219 + components: + - pos: -3.5,20.5 + parent: 1 + type: Transform + - uid: 4220 + components: + - pos: -4.5,20.5 + parent: 1 + type: Transform + - uid: 4221 + components: + - pos: 1.5,19.5 + parent: 1 + type: Transform + - uid: 4222 + components: + - pos: 2.5,21.5 + parent: 1 + type: Transform + - uid: 4223 + components: + - pos: 3.5,21.5 + parent: 1 + type: Transform + - uid: 4224 + components: + - pos: 4.5,21.5 + parent: 1 + type: Transform + - uid: 4225 + components: + - pos: 4.5,20.5 + parent: 1 + type: Transform + - uid: 4226 + components: + - pos: 4.5,19.5 + parent: 1 + type: Transform + - uid: 4227 + components: + - pos: 4.5,18.5 + parent: 1 + type: Transform + - uid: 4228 + components: + - pos: 4.5,22.5 + parent: 1 + type: Transform + - uid: 4229 + components: + - pos: 4.5,23.5 + parent: 1 + type: Transform + - uid: 4230 + components: + - pos: 4.5,24.5 + parent: 1 + type: Transform + - uid: 4231 + components: + - pos: 5.5,24.5 + parent: 1 + type: Transform + - uid: 4232 + components: + - pos: 3.5,24.5 + parent: 1 + type: Transform + - uid: 4233 + components: + - pos: -9.5,31.5 + parent: 1 + type: Transform + - uid: 4234 + components: + - pos: -4.5,31.5 + parent: 1 + type: Transform + - uid: 4235 + components: + - pos: -1.5,32.5 + parent: 1 + type: Transform + - uid: 4236 + components: + - pos: 4.5,31.5 + parent: 1 + type: Transform + - uid: 4801 + components: + - pos: 1.5,18.5 + parent: 1 + type: Transform + - uid: 4802 + components: + - pos: 0.5,18.5 + parent: 1 + type: Transform + - uid: 4803 + components: + - pos: -0.5,18.5 + parent: 1 + type: Transform + - uid: 4804 + components: + - pos: -1.5,18.5 + parent: 1 + type: Transform + - uid: 4805 + components: + - pos: -2.5,18.5 + parent: 1 + type: Transform + - uid: 4806 + components: + - pos: -2.5,19.5 + parent: 1 + type: Transform + - uid: 5156 + components: + - pos: 13.5,11.5 + parent: 1 + type: Transform + - uid: 5157 + components: + - pos: 13.5,10.5 + parent: 1 + type: Transform + - uid: 5158 + components: + - pos: 13.5,9.5 + parent: 1 + type: Transform + - uid: 5159 + components: + - pos: 11.5,9.5 + parent: 1 + type: Transform + - uid: 5160 + components: + - pos: 12.5,9.5 + parent: 1 + type: Transform + - uid: 5161 + components: + - pos: 11.5,10.5 + parent: 1 + type: Transform + - uid: 5162 + components: + - pos: 11.5,11.5 + parent: 1 + type: Transform + - uid: 5163 + components: + - pos: 11.5,12.5 + parent: 1 + type: Transform + - uid: 5164 + components: + - pos: 11.5,13.5 + parent: 1 + type: Transform + - uid: 5165 + components: + - pos: 11.5,14.5 + parent: 1 + type: Transform + - uid: 5166 + components: + - pos: 14.5,9.5 + parent: 1 + type: Transform + - uid: 5167 + components: + - pos: 15.5,9.5 + parent: 1 + type: Transform + - uid: 5168 + components: + - pos: 15.5,10.5 + parent: 1 + type: Transform + - uid: 5169 + components: + - pos: 15.5,11.5 + parent: 1 + type: Transform + - uid: 5170 + components: + - pos: 15.5,12.5 + parent: 1 + type: Transform + - uid: 5171 + components: + - pos: 15.5,13.5 + parent: 1 + type: Transform + - uid: 5172 + components: + - pos: 15.5,14.5 + parent: 1 + type: Transform + - uid: 5173 + components: + - pos: 11.5,8.5 + parent: 1 + type: Transform + - uid: 5174 + components: + - pos: 11.5,6.5 + parent: 1 + type: Transform + - uid: 5175 + components: + - pos: 11.5,7.5 + parent: 1 + type: Transform + - uid: 5176 + components: + - pos: 10.5,8.5 + parent: 1 + type: Transform + - uid: 5177 + components: + - pos: 10.5,10.5 + parent: 1 + type: Transform + - uid: 5178 + components: + - pos: 10.5,9.5 + parent: 1 + type: Transform + - uid: 5179 + components: + - pos: 11.5,5.5 + parent: 1 + type: Transform + - uid: 5180 + components: + - pos: 11.5,4.5 + parent: 1 + type: Transform + - uid: 5181 + components: + - pos: 12.5,4.5 + parent: 1 + type: Transform + - uid: 5182 + components: + - pos: 14.5,8.5 + parent: 1 + type: Transform + - uid: 5183 + components: + - pos: 14.5,7.5 + parent: 1 + type: Transform + - uid: 5184 + components: + - pos: 14.5,6.5 + parent: 1 + type: Transform + - uid: 5185 + components: + - pos: 14.5,5.5 + parent: 1 + type: Transform + - uid: 5186 + components: + - pos: 14.5,4.5 + parent: 1 + type: Transform + - uid: 5187 + components: + - pos: 15.5,4.5 + parent: 1 + type: Transform + - uid: 5188 + components: + - pos: 16.5,9.5 + parent: 1 + type: Transform + - uid: 5189 + components: + - pos: 17.5,9.5 + parent: 1 + type: Transform + - uid: 5190 + components: + - pos: 18.5,9.5 + parent: 1 + type: Transform + - uid: 5191 + components: + - pos: 19.5,9.5 + parent: 1 + type: Transform + - uid: 5192 + components: + - pos: 17.5,8.5 + parent: 1 + type: Transform + - uid: 5193 + components: + - pos: 17.5,7.5 + parent: 1 + type: Transform + - uid: 5194 + components: + - pos: 17.5,6.5 + parent: 1 + type: Transform + - uid: 5195 + components: + - pos: 17.5,5.5 + parent: 1 + type: Transform + - uid: 5196 + components: + - pos: 17.5,4.5 + parent: 1 + type: Transform + - uid: 5197 + components: + - pos: 18.5,4.5 + parent: 1 + type: Transform + - uid: 5198 + components: + - pos: 10.5,12.5 + parent: 1 + type: Transform + - uid: 5199 + components: + - pos: 11.5,15.5 + parent: 1 + type: Transform + - uid: 5200 + components: + - pos: 10.5,15.5 + parent: 1 + type: Transform + - uid: 5201 + components: + - pos: 13.5,12.5 + parent: 1 + type: Transform + - uid: 5202 + components: + - pos: 12.5,15.5 + parent: 1 + type: Transform + - uid: 5203 + components: + - pos: 13.5,15.5 + parent: 1 + type: Transform + - uid: 5204 + components: + - pos: 18.5,11.5 + parent: 1 + type: Transform + - uid: 5205 + components: + - pos: 18.5,10.5 + parent: 1 + type: Transform + - uid: 5206 + components: + - pos: 19.5,11.5 + parent: 1 + type: Transform + - uid: 5207 + components: + - pos: 20.5,11.5 + parent: 1 + type: Transform + - uid: 5208 + components: + - pos: 20.5,12.5 + parent: 1 + type: Transform + - uid: 5209 + components: + - pos: 20.5,13.5 + parent: 1 + type: Transform + - uid: 5210 + components: + - pos: 20.5,14.5 + parent: 1 + type: Transform + - uid: 5211 + components: + - pos: 20.5,10.5 + parent: 1 + type: Transform + - uid: 5212 + components: + - pos: 20.5,9.5 + parent: 1 + type: Transform + - uid: 5213 + components: + - pos: 21.5,14.5 + parent: 1 + type: Transform + - uid: 5214 + components: + - pos: 22.5,14.5 + parent: 1 + type: Transform + - uid: 5215 + components: + - pos: 22.5,13.5 + parent: 1 + type: Transform + - uid: 5216 + components: + - pos: 22.5,15.5 + parent: 1 + type: Transform + - uid: 5217 + components: + - pos: 26.5,11.5 + parent: 1 + type: Transform + - uid: 5218 + components: + - pos: 26.5,10.5 + parent: 1 + type: Transform + - uid: 5219 + components: + - pos: 26.5,9.5 + parent: 1 + type: Transform + - uid: 5220 + components: + - pos: 25.5,9.5 + parent: 1 + type: Transform + - uid: 5221 + components: + - pos: 24.5,9.5 + parent: 1 + type: Transform + - uid: 5222 + components: + - pos: 23.5,9.5 + parent: 1 + type: Transform + - uid: 5223 + components: + - pos: 22.5,9.5 + parent: 1 + type: Transform + - uid: 5224 + components: + - pos: 22.5,8.5 + parent: 1 + type: Transform + - uid: 5225 + components: + - pos: 22.5,7.5 + parent: 1 + type: Transform + - uid: 5226 + components: + - pos: 22.5,6.5 + parent: 1 + type: Transform + - uid: 5227 + components: + - pos: 21.5,6.5 + parent: 1 + type: Transform + - uid: 5228 + components: + - pos: 23.5,10.5 + parent: 1 + type: Transform + - uid: 5229 + components: + - pos: 23.5,11.5 + parent: 1 + type: Transform + - uid: 5230 + components: + - pos: 22.5,11.5 + parent: 1 + type: Transform + - uid: 5231 + components: + - pos: 27.5,9.5 + parent: 1 + type: Transform + - uid: 5232 + components: + - pos: 28.5,9.5 + parent: 1 + type: Transform + - uid: 5233 + components: + - pos: 29.5,9.5 + parent: 1 + type: Transform + - uid: 5234 + components: + - pos: 30.5,9.5 + parent: 1 + type: Transform + - uid: 5235 + components: + - pos: 31.5,9.5 + parent: 1 + type: Transform + - uid: 5236 + components: + - pos: 32.5,9.5 + parent: 1 + type: Transform + - uid: 5237 + components: + - pos: 26.5,8.5 + parent: 1 + type: Transform + - uid: 5238 + components: + - pos: 26.5,7.5 + parent: 1 + type: Transform + - uid: 5239 + components: + - pos: 26.5,6.5 + parent: 1 + type: Transform + - uid: 5240 + components: + - pos: 27.5,6.5 + parent: 1 + type: Transform + - uid: 5241 + components: + - pos: 32.5,8.5 + parent: 1 + type: Transform + - uid: 5242 + components: + - pos: 34.5,17.5 + parent: 1 + type: Transform + - uid: 5243 + components: + - pos: 33.5,17.5 + parent: 1 + type: Transform + - uid: 5244 + components: + - pos: 32.5,17.5 + parent: 1 + type: Transform + - uid: 5245 + components: + - pos: 32.5,16.5 + parent: 1 + type: Transform + - uid: 5246 + components: + - pos: 32.5,15.5 + parent: 1 + type: Transform + - uid: 5247 + components: + - pos: 32.5,14.5 + parent: 1 + type: Transform + - uid: 5248 + components: + - pos: 32.5,13.5 + parent: 1 + type: Transform + - uid: 5249 + components: + - pos: 32.5,12.5 + parent: 1 + type: Transform + - uid: 5250 + components: + - pos: 32.5,11.5 + parent: 1 + type: Transform + - uid: 5251 + components: + - pos: 33.5,11.5 + parent: 1 + type: Transform + - uid: 5252 + components: + - pos: 34.5,11.5 + parent: 1 + type: Transform + - uid: 5253 + components: + - pos: 35.5,11.5 + parent: 1 + type: Transform + - uid: 5254 + components: + - pos: 36.5,11.5 + parent: 1 + type: Transform + - uid: 5255 + components: + - pos: 37.5,11.5 + parent: 1 + type: Transform + - uid: 5256 + components: + - pos: 37.5,12.5 + parent: 1 + type: Transform + - uid: 5257 + components: + - pos: 31.5,13.5 + parent: 1 + type: Transform + - uid: 5258 + components: + - pos: 30.5,13.5 + parent: 1 + type: Transform + - uid: 5259 + components: + - pos: 29.5,13.5 + parent: 1 + type: Transform + - uid: 5260 + components: + - pos: 28.5,13.5 + parent: 1 + type: Transform + - uid: 5261 + components: + - pos: 27.5,13.5 + parent: 1 + type: Transform + - uid: 5262 + components: + - pos: 26.5,13.5 + parent: 1 + type: Transform + - uid: 5263 + components: + - pos: 31.5,17.5 + parent: 1 + type: Transform + - uid: 5264 + components: + - pos: 30.5,17.5 + parent: 1 + type: Transform + - uid: 5265 + components: + - pos: 29.5,17.5 + parent: 1 + type: Transform + - uid: 5266 + components: + - pos: 28.5,17.5 + parent: 1 + type: Transform + - uid: 5267 + components: + - pos: 32.5,18.5 + parent: 1 + type: Transform + - uid: 5268 + components: + - pos: 32.5,19.5 + parent: 1 + type: Transform + - uid: 5269 + components: + - pos: 32.5,20.5 + parent: 1 + type: Transform + - uid: 5270 + components: + - pos: 34.5,27.5 + parent: 1 + type: Transform + - uid: 5271 + components: + - pos: 33.5,27.5 + parent: 1 + type: Transform + - uid: 5272 + components: + - pos: 32.5,27.5 + parent: 1 + type: Transform + - uid: 5273 + components: + - pos: 32.5,26.5 + parent: 1 + type: Transform + - uid: 5274 + components: + - pos: 32.5,25.5 + parent: 1 + type: Transform + - uid: 5275 + components: + - pos: 32.5,24.5 + parent: 1 + type: Transform + - uid: 5276 + components: + - pos: 32.5,23.5 + parent: 1 + type: Transform + - uid: 5277 + components: + - pos: 31.5,27.5 + parent: 1 + type: Transform + - uid: 5278 + components: + - pos: 30.5,27.5 + parent: 1 + type: Transform + - uid: 5279 + components: + - pos: 29.5,27.5 + parent: 1 + type: Transform + - uid: 5280 + components: + - pos: 28.5,27.5 + parent: 1 + type: Transform + - uid: 5281 + components: + - pos: 27.5,27.5 + parent: 1 + type: Transform + - uid: 5282 + components: + - pos: 26.5,27.5 + parent: 1 + type: Transform + - uid: 5283 + components: + - pos: 25.5,27.5 + parent: 1 + type: Transform + - uid: 5284 + components: + - pos: 28.5,26.5 + parent: 1 + type: Transform + - uid: 5285 + components: + - pos: 28.5,25.5 + parent: 1 + type: Transform + - uid: 5286 + components: + - pos: 27.5,25.5 + parent: 1 + type: Transform + - uid: 5287 + components: + - pos: 26.5,25.5 + parent: 1 + type: Transform + - uid: 5288 + components: + - pos: 25.5,25.5 + parent: 1 + type: Transform + - uid: 5289 + components: + - pos: 30.5,28.5 + parent: 1 + type: Transform + - uid: 5290 + components: + - pos: 30.5,29.5 + parent: 1 + type: Transform + - uid: 5291 + components: + - pos: 29.5,29.5 + parent: 1 + type: Transform + - uid: 5292 + components: + - pos: 28.5,29.5 + parent: 1 + type: Transform + - uid: 5293 + components: + - pos: 31.5,29.5 + parent: 1 + type: Transform + - uid: 5294 + components: + - pos: 32.5,29.5 + parent: 1 + type: Transform + - uid: 5295 + components: + - pos: 33.5,20.5 + parent: 1 + type: Transform + - uid: 5296 + components: + - pos: 33.5,23.5 + parent: 1 + type: Transform + - uid: 5323 + components: + - pos: -33.5,-15.5 + parent: 1 + type: Transform + - uid: 5744 + components: + - pos: -24.5,12.5 + parent: 1 + type: Transform + - uid: 5745 + components: + - pos: -24.5,11.5 + parent: 1 + type: Transform + - uid: 5746 + components: + - pos: -24.5,10.5 + parent: 1 + type: Transform + - uid: 5747 + components: + - pos: -24.5,9.5 + parent: 1 + type: Transform + - uid: 5748 + components: + - pos: -24.5,8.5 + parent: 1 + type: Transform + - uid: 5749 + components: + - pos: -24.5,7.5 + parent: 1 + type: Transform + - uid: 5750 + components: + - pos: -24.5,6.5 + parent: 1 + type: Transform + - uid: 5751 + components: + - pos: -25.5,6.5 + parent: 1 + type: Transform + - uid: 5761 + components: + - pos: -24.5,13.5 + parent: 1 + type: Transform + - uid: 5762 + components: + - pos: -24.5,14.5 + parent: 1 + type: Transform + - uid: 5763 + components: + - pos: -24.5,15.5 + parent: 1 + type: Transform + - uid: 5764 + components: + - pos: -25.5,15.5 + parent: 1 + type: Transform + - uid: 5765 + components: + - pos: -23.5,15.5 + parent: 1 + type: Transform + - uid: 5766 + components: + - pos: -25.5,10.5 + parent: 1 + type: Transform + - uid: 5767 + components: + - pos: -23.5,10.5 + parent: 1 + type: Transform + - uid: 5768 + components: + - pos: -22.5,10.5 + parent: 1 + type: Transform + - uid: 5769 + components: + - pos: -21.5,10.5 + parent: 1 + type: Transform + - uid: 5770 + components: + - pos: -20.5,10.5 + parent: 1 + type: Transform + - uid: 5771 + components: + - pos: -19.5,10.5 + parent: 1 + type: Transform + - uid: 5772 + components: + - pos: -18.5,10.5 + parent: 1 + type: Transform + - uid: 5773 + components: + - pos: -18.5,9.5 + parent: 1 + type: Transform + - uid: 5774 + components: + - pos: -18.5,9.5 + parent: 1 + type: Transform + - uid: 5775 + components: + - pos: -18.5,8.5 + parent: 1 + type: Transform + - uid: 5776 + components: + - pos: -18.5,7.5 + parent: 1 + type: Transform + - uid: 5777 + components: + - pos: -18.5,6.5 + parent: 1 + type: Transform + - uid: 5778 + components: + - pos: -21.5,9.5 + parent: 1 + type: Transform + - uid: 5779 + components: + - pos: -21.5,8.5 + parent: 1 + type: Transform + - uid: 5780 + components: + - pos: -21.5,7.5 + parent: 1 + type: Transform + - uid: 5781 + components: + - pos: -21.5,6.5 + parent: 1 + type: Transform + - uid: 5782 + components: + - pos: -10.5,7.5 + parent: 1 + type: Transform + - uid: 5783 + components: + - pos: -11.5,7.5 + parent: 1 + type: Transform + - uid: 5784 + components: + - pos: -11.5,8.5 + parent: 1 + type: Transform + - uid: 5785 + components: + - pos: -11.5,9.5 + parent: 1 + type: Transform + - uid: 5786 + components: + - pos: -11.5,10.5 + parent: 1 + type: Transform + - uid: 5787 + components: + - pos: -12.5,10.5 + parent: 1 + type: Transform + - uid: 5788 + components: + - pos: -13.5,10.5 + parent: 1 + type: Transform + - uid: 5789 + components: + - pos: -14.5,10.5 + parent: 1 + type: Transform + - uid: 5790 + components: + - pos: -15.5,10.5 + parent: 1 + type: Transform + - uid: 5791 + components: + - pos: -15.5,9.5 + parent: 1 + type: Transform + - uid: 5792 + components: + - pos: -15.5,8.5 + parent: 1 + type: Transform + - uid: 5793 + components: + - pos: -15.5,7.5 + parent: 1 + type: Transform + - uid: 5794 + components: + - pos: -15.5,6.5 + parent: 1 + type: Transform + - uid: 5795 + components: + - pos: -10.5,10.5 + parent: 1 + type: Transform + - uid: 5796 + components: + - pos: -9.5,10.5 + parent: 1 + type: Transform + - uid: 5797 + components: + - pos: -8.5,10.5 + parent: 1 + type: Transform + - uid: 5798 + components: + - pos: -11.5,6.5 + parent: 1 + type: Transform + - uid: 5799 + components: + - pos: -11.5,5.5 + parent: 1 + type: Transform + - uid: 5800 + components: + - pos: -10.5,5.5 + parent: 1 + type: Transform + - uid: 5801 + components: + - pos: -9.5,5.5 + parent: 1 + type: Transform + - uid: 5802 + components: + - pos: -8.5,5.5 + parent: 1 + type: Transform + - uid: 5803 + components: + - pos: -14.5,13.5 + parent: 1 + type: Transform + - uid: 5804 + components: + - pos: -13.5,13.5 + parent: 1 + type: Transform + - uid: 5805 + components: + - pos: -12.5,13.5 + parent: 1 + type: Transform + - uid: 5806 + components: + - pos: -11.5,13.5 + parent: 1 + type: Transform + - uid: 5807 + components: + - pos: -10.5,13.5 + parent: 1 + type: Transform + - uid: 5808 + components: + - pos: -9.5,13.5 + parent: 1 + type: Transform + - uid: 5809 + components: + - pos: -8.5,13.5 + parent: 1 + type: Transform + - uid: 5810 + components: + - pos: -12.5,14.5 + parent: 1 + type: Transform + - uid: 5811 + components: + - pos: -12.5,15.5 + parent: 1 + type: Transform + - uid: 5812 + components: + - pos: -12.5,16.5 + parent: 1 + type: Transform + - uid: 5813 + components: + - pos: -15.5,13.5 + parent: 1 + type: Transform + - uid: 5814 + components: + - pos: -14.5,17.5 + parent: 1 + type: Transform + - uid: 5815 + components: + - pos: -14.5,18.5 + parent: 1 + type: Transform + - uid: 5816 + components: + - pos: -16.5,15.5 + parent: 1 + type: Transform + - uid: 5817 + components: + - pos: -16.5,15.5 + parent: 1 + type: Transform + - uid: 5818 + components: + - pos: -17.5,15.5 + parent: 1 + type: Transform + - uid: 5819 + components: + - pos: -18.5,15.5 + parent: 1 + type: Transform + - uid: 5820 + components: + - pos: -19.5,15.5 + parent: 1 + type: Transform + - uid: 5821 + components: + - pos: -19.5,14.5 + parent: 1 + type: Transform + - uid: 5822 + components: + - pos: -16.5,13.5 + parent: 1 + type: Transform + - uid: 5823 + components: + - pos: -16.5,14.5 + parent: 1 + type: Transform + - uid: 5824 + components: + - pos: -14.5,19.5 + parent: 1 + type: Transform + - uid: 5825 + components: + - pos: -15.5,19.5 + parent: 1 + type: Transform + - uid: 5826 + components: + - pos: -16.5,19.5 + parent: 1 + type: Transform + - uid: 5827 + components: + - pos: -13.5,19.5 + parent: 1 + type: Transform + - uid: 5828 + components: + - pos: -13.5,20.5 + parent: 1 + type: Transform + - uid: 5829 + components: + - pos: -13.5,21.5 + parent: 1 + type: Transform + - uid: 5830 + components: + - pos: -12.5,21.5 + parent: 1 + type: Transform + - uid: 5831 + components: + - pos: -11.5,21.5 + parent: 1 + type: Transform + - uid: 5832 + components: + - pos: -13.5,18.5 + parent: 1 + type: Transform + - uid: 5833 + components: + - pos: -12.5,18.5 + parent: 1 + type: Transform + - uid: 5834 + components: + - pos: -11.5,18.5 + parent: 1 + type: Transform + - uid: 5835 + components: + - pos: -15.5,5.5 + parent: 1 + type: Transform + - uid: 5836 + components: + - pos: -18.5,5.5 + parent: 1 + type: Transform + - uid: 5837 + components: + - pos: -21.5,5.5 + parent: 1 + type: Transform + - uid: 5838 + components: + - pos: -24.5,5.5 + parent: 1 + type: Transform + - uid: 5839 + components: + - pos: -26.5,6.5 + parent: 1 + type: Transform + - uid: 5840 + components: + - pos: -26.5,10.5 + parent: 1 + type: Transform + - uid: 5842 + components: + - pos: -17.5,19.5 + parent: 1 + type: Transform + - uid: 6200 + components: + - pos: -5.5,9.5 + parent: 1 + type: Transform + - uid: 6201 + components: + - pos: -5.5,10.5 + parent: 1 + type: Transform + - uid: 6202 + components: + - pos: -5.5,11.5 + parent: 1 + type: Transform + - uid: 6203 + components: + - pos: -5.5,12.5 + parent: 1 + type: Transform + - uid: 6204 + components: + - pos: -5.5,13.5 + parent: 1 + type: Transform + - uid: 6206 + components: + - pos: -0.5,6.5 + parent: 1 + type: Transform + - uid: 6207 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 6208 + components: + - pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 6227 + components: + - pos: 6.5,0.5 + parent: 1 + type: Transform + - uid: 6228 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 6229 + components: + - pos: 3.5,0.5 + parent: 1 + type: Transform + - uid: 6230 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 6231 + components: + - pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 6232 + components: + - pos: -0.5,-2.5 + parent: 1 + type: Transform + - uid: 6233 + components: + - pos: -0.5,-3.5 + parent: 1 + type: Transform + - uid: 6234 + components: + - pos: -0.5,-4.5 + parent: 1 + type: Transform + - uid: 6235 + components: + - pos: -0.5,-5.5 + parent: 1 + type: Transform + - uid: 6236 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 6237 + components: + - pos: -2.5,-3.5 + parent: 1 + type: Transform + - uid: 6238 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 6239 + components: + - pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 6240 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 6241 + components: + - pos: 3.5,-3.5 + parent: 1 + type: Transform + - uid: 6242 + components: + - pos: 4.5,-3.5 + parent: 1 + type: Transform + - uid: 6243 + components: + - pos: 5.5,-3.5 + parent: 1 + type: Transform + - uid: 6244 + components: + - pos: 3.5,-4.5 + parent: 1 + type: Transform + - uid: 6245 + components: + - pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 6246 + components: + - pos: 3.5,-2.5 + parent: 1 + type: Transform + - uid: 6247 + components: + - pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 6249 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 6250 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 6251 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 6252 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 6253 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 6254 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 6255 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 6256 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 6257 + components: + - pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 6258 + components: + - pos: -2.5,2.5 + parent: 1 + type: Transform + - uid: 6259 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 6260 + components: + - pos: -7.5,10.5 + parent: 1 + type: Transform + - uid: 6261 + components: + - pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 6262 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 6263 + components: + - pos: -4.5,9.5 + parent: 1 + type: Transform + - uid: 6264 + components: + - pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 6265 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 6266 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 6267 + components: + - pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 6268 + components: + - pos: 3.5,7.5 + parent: 1 + type: Transform + - uid: 6269 + components: + - pos: -0.5,7.5 + parent: 1 + type: Transform + - uid: 6270 + components: + - pos: -0.5,8.5 + parent: 1 + type: Transform + - uid: 6271 + components: + - pos: -0.5,9.5 + parent: 1 + type: Transform + - uid: 6272 + components: + - pos: -0.5,10.5 + parent: 1 + type: Transform + - uid: 6273 + components: + - pos: -0.5,11.5 + parent: 1 + type: Transform + - uid: 6274 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 6275 + components: + - pos: 4.5,8.5 + parent: 1 + type: Transform + - uid: 6276 + components: + - pos: 4.5,9.5 + parent: 1 + type: Transform + - uid: 6277 + components: + - pos: 4.5,10.5 + parent: 1 + type: Transform + - uid: 6279 + components: + - pos: -1.5,9.5 + parent: 1 + type: Transform + - uid: 6280 + components: + - pos: -2.5,9.5 + parent: 1 + type: Transform + - uid: 6281 + components: + - pos: 7.5,8.5 + parent: 1 + type: Transform + - uid: 6282 + components: + - pos: -0.5,12.5 + parent: 1 + type: Transform + - uid: 6283 + components: + - pos: -3.5,9.5 + parent: 1 + type: Transform + - uid: 6284 + components: + - pos: 5.5,8.5 + parent: 1 + type: Transform + - uid: 6285 + components: + - pos: 4.5,11.5 + parent: 1 + type: Transform + - uid: 6292 + components: + - pos: -5.5,14.5 + parent: 1 + type: Transform + - uid: 6293 + components: + - pos: -5.5,15.5 + parent: 1 + type: Transform + - uid: 6294 + components: + - pos: -5.5,16.5 + parent: 1 + type: Transform + - uid: 6296 + components: + - pos: 8.5,8.5 + parent: 1 + type: Transform + - uid: 6297 + components: + - pos: 8.5,9.5 + parent: 1 + type: Transform + - uid: 6298 + components: + - pos: 8.5,10.5 + parent: 1 + type: Transform + - uid: 6299 + components: + - pos: 8.5,11.5 + parent: 1 + type: Transform + - uid: 6300 + components: + - pos: 8.5,12.5 + parent: 1 + type: Transform + - uid: 6301 + components: + - pos: 8.5,13.5 + parent: 1 + type: Transform + - uid: 6302 + components: + - pos: 8.5,14.5 + parent: 1 + type: Transform + - uid: 6303 + components: + - pos: 8.5,15.5 + parent: 1 + type: Transform + - uid: 6304 + components: + - pos: 8.5,16.5 + parent: 1 + type: Transform + - uid: 6305 + components: + - pos: 8.5,17.5 + parent: 1 + type: Transform + - uid: 6306 + components: + - pos: 8.5,18.5 + parent: 1 + type: Transform + - uid: 6307 + components: + - pos: 8.5,19.5 + parent: 1 + type: Transform + - uid: 6308 + components: + - pos: 9.5,19.5 + parent: 1 + type: Transform + - uid: 6309 + components: + - pos: 22.5,16.5 + parent: 1 + type: Transform + - uid: 6310 + components: + - pos: 22.5,17.5 + parent: 1 + type: Transform + - uid: 6311 + components: + - pos: 22.5,18.5 + parent: 1 + type: Transform + - uid: 6312 + components: + - pos: -13.5,22.5 + parent: 1 + type: Transform + - uid: 6313 + components: + - pos: -13.5,23.5 + parent: 1 + type: Transform + - uid: 6314 + components: + - pos: -13.5,24.5 + parent: 1 + type: Transform + - uid: 6315 + components: + - pos: -14.5,24.5 + parent: 1 + type: Transform + - uid: 6316 + components: + - pos: -15.5,24.5 + parent: 1 + type: Transform + - uid: 6317 + components: + - pos: -16.5,24.5 + parent: 1 + type: Transform + - uid: 6318 + components: + - pos: -17.5,24.5 + parent: 1 + type: Transform + - uid: 6319 + components: + - pos: -18.5,24.5 + parent: 1 + type: Transform + - uid: 6415 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 6416 + components: + - pos: -2.5,-0.5 + parent: 1 + type: Transform + - uid: 6417 + components: + - pos: -21.5,-7.5 + parent: 1 + type: Transform + - uid: 6418 + components: + - pos: -21.5,-6.5 + parent: 1 + type: Transform + - uid: 6419 + components: + - pos: -22.5,-6.5 + parent: 1 + type: Transform + - uid: 6420 + components: + - pos: -23.5,-6.5 + parent: 1 + type: Transform + - uid: 6421 + components: + - pos: -24.5,-6.5 + parent: 1 + type: Transform + - uid: 6422 + components: + - pos: -25.5,-6.5 + parent: 1 + type: Transform + - uid: 6423 + components: + - pos: -26.5,-6.5 + parent: 1 + type: Transform + - uid: 6424 + components: + - pos: -27.5,-6.5 + parent: 1 + type: Transform + - uid: 6425 + components: + - pos: -28.5,-6.5 + parent: 1 + type: Transform + - uid: 6426 + components: + - pos: -29.5,-6.5 + parent: 1 + type: Transform + - uid: 6427 + components: + - pos: -30.5,-6.5 + parent: 1 + type: Transform + - uid: 6428 + components: + - pos: -26.5,-5.5 + parent: 1 + type: Transform + - uid: 6429 + components: + - pos: -26.5,-4.5 + parent: 1 + type: Transform + - uid: 6430 + components: + - pos: -26.5,-3.5 + parent: 1 + type: Transform + - uid: 6431 + components: + - pos: -26.5,-2.5 + parent: 1 + type: Transform + - uid: 6432 + components: + - pos: -26.5,-1.5 + parent: 1 + type: Transform + - uid: 6433 + components: + - pos: -25.5,-7.5 + parent: 1 + type: Transform + - uid: 6434 + components: + - pos: -14.5,0.5 + parent: 1 + type: Transform + - uid: 6435 + components: + - pos: -14.5,-0.5 + parent: 1 + type: Transform + - uid: 6436 + components: + - pos: -14.5,-1.5 + parent: 1 + type: Transform + - uid: 6437 + components: + - pos: -14.5,-2.5 + parent: 1 + type: Transform + - uid: 6438 + components: + - pos: -14.5,-3.5 + parent: 1 + type: Transform + - uid: 6439 + components: + - pos: -14.5,-4.5 + parent: 1 + type: Transform + - uid: 6440 + components: + - pos: -14.5,-5.5 + parent: 1 + type: Transform + - uid: 6441 + components: + - pos: -13.5,-5.5 + parent: 1 + type: Transform + - uid: 6442 + components: + - pos: -12.5,-5.5 + parent: 1 + type: Transform + - uid: 6443 + components: + - pos: -11.5,-5.5 + parent: 1 + type: Transform + - uid: 6444 + components: + - pos: -11.5,-4.5 + parent: 1 + type: Transform + - uid: 6445 + components: + - pos: -11.5,-3.5 + parent: 1 + type: Transform + - uid: 6446 + components: + - pos: -11.5,-2.5 + parent: 1 + type: Transform + - uid: 6447 + components: + - pos: -11.5,-1.5 + parent: 1 + type: Transform + - uid: 6448 + components: + - pos: -10.5,-1.5 + parent: 1 + type: Transform + - uid: 6449 + components: + - pos: -9.5,-1.5 + parent: 1 + type: Transform + - uid: 6450 + components: + - pos: -10.5,-3.5 + parent: 1 + type: Transform + - uid: 6451 + components: + - pos: -9.5,-3.5 + parent: 1 + type: Transform + - uid: 6452 + components: + - pos: -10.5,-5.5 + parent: 1 + type: Transform + - uid: 6453 + components: + - pos: -9.5,-5.5 + parent: 1 + type: Transform + - uid: 6454 + components: + - pos: -8.5,-5.5 + parent: 1 + type: Transform + - uid: 6455 + components: + - pos: -7.5,-5.5 + parent: 1 + type: Transform + - uid: 6456 + components: + - pos: -15.5,-2.5 + parent: 1 + type: Transform + - uid: 6457 + components: + - pos: -16.5,-2.5 + parent: 1 + type: Transform + - uid: 6458 + components: + - pos: -17.5,-2.5 + parent: 1 + type: Transform + - uid: 6459 + components: + - pos: -18.5,-2.5 + parent: 1 + type: Transform + - uid: 6460 + components: + - pos: -19.5,-2.5 + parent: 1 + type: Transform + - uid: 6461 + components: + - pos: -20.5,-2.5 + parent: 1 + type: Transform + - uid: 6462 + components: + - pos: -21.5,-2.5 + parent: 1 + type: Transform + - uid: 6463 + components: + - pos: -21.5,-1.5 + parent: 1 + type: Transform + - uid: 6464 + components: + - pos: -16.5,-3.5 + parent: 1 + type: Transform + - uid: 6465 + components: + - pos: -16.5,-4.5 + parent: 1 + type: Transform + - uid: 6466 + components: + - pos: -16.5,-5.5 + parent: 1 + type: Transform + - uid: 6467 + components: + - pos: -17.5,-5.5 + parent: 1 + type: Transform + - uid: 6468 + components: + - pos: -16.5,-19.5 + parent: 1 + type: Transform + - uid: 6469 + components: + - pos: -16.5,-18.5 + parent: 1 + type: Transform + - uid: 6470 + components: + - pos: -16.5,-17.5 + parent: 1 + type: Transform + - uid: 6471 + components: + - pos: -16.5,-16.5 + parent: 1 + type: Transform + - uid: 6472 + components: + - pos: -16.5,-15.5 + parent: 1 + type: Transform + - uid: 6473 + components: + - pos: -16.5,-14.5 + parent: 1 + type: Transform + - uid: 6474 + components: + - pos: -16.5,-13.5 + parent: 1 + type: Transform + - uid: 6475 + components: + - pos: -16.5,-12.5 + parent: 1 + type: Transform + - uid: 6476 + components: + - pos: -16.5,-11.5 + parent: 1 + type: Transform + - uid: 6477 + components: + - pos: -16.5,-10.5 + parent: 1 + type: Transform + - uid: 6478 + components: + - pos: -16.5,-9.5 + parent: 1 + type: Transform + - uid: 6479 + components: + - pos: -17.5,-9.5 + parent: 1 + type: Transform + - uid: 6480 + components: + - pos: -18.5,-9.5 + parent: 1 + type: Transform + - uid: 6481 + components: + - pos: -19.5,-9.5 + parent: 1 + type: Transform + - uid: 6482 + components: + - pos: -17.5,-13.5 + parent: 1 + type: Transform + - uid: 6483 + components: + - pos: -18.5,-13.5 + parent: 1 + type: Transform + - uid: 6484 + components: + - pos: -19.5,-13.5 + parent: 1 + type: Transform + - uid: 6485 + components: + - pos: -17.5,-17.5 + parent: 1 + type: Transform + - uid: 6486 + components: + - pos: -18.5,-17.5 + parent: 1 + type: Transform + - uid: 6487 + components: + - pos: -19.5,-17.5 + parent: 1 + type: Transform + - uid: 6488 + components: + - pos: -15.5,-17.5 + parent: 1 + type: Transform + - uid: 6489 + components: + - pos: -14.5,-17.5 + parent: 1 + type: Transform + - uid: 6490 + components: + - pos: -15.5,-13.5 + parent: 1 + type: Transform + - uid: 6491 + components: + - pos: -15.5,-9.5 + parent: 1 + type: Transform + - uid: 6492 + components: + - pos: -8.5,-16.5 + parent: 1 + type: Transform + - uid: 6493 + components: + - pos: -8.5,-15.5 + parent: 1 + type: Transform + - uid: 6494 + components: + - pos: -8.5,-14.5 + parent: 1 + type: Transform + - uid: 6495 + components: + - pos: -7.5,-14.5 + parent: 1 + type: Transform + - uid: 6496 + components: + - pos: -6.5,-14.5 + parent: 1 + type: Transform + - uid: 6497 + components: + - pos: -5.5,-14.5 + parent: 1 + type: Transform + - uid: 6498 + components: + - pos: -5.5,-13.5 + parent: 1 + type: Transform + - uid: 6499 + components: + - pos: -5.5,-12.5 + parent: 1 + type: Transform + - uid: 6500 + components: + - pos: -5.5,-11.5 + parent: 1 + type: Transform + - uid: 6501 + components: + - pos: -7.5,-13.5 + parent: 1 + type: Transform + - uid: 6502 + components: + - pos: -7.5,-12.5 + parent: 1 + type: Transform + - uid: 6503 + components: + - pos: -7.5,-11.5 + parent: 1 + type: Transform + - uid: 6504 + components: + - pos: -7.5,-10.5 + parent: 1 + type: Transform + - uid: 6505 + components: + - pos: -7.5,-9.5 + parent: 1 + type: Transform + - uid: 6506 + components: + - pos: -7.5,-8.5 + parent: 1 + type: Transform + - uid: 6507 + components: + - pos: -7.5,-7.5 + parent: 1 + type: Transform + - uid: 6508 + components: + - pos: -9.5,-14.5 + parent: 1 + type: Transform + - uid: 6509 + components: + - pos: -10.5,-14.5 + parent: 1 + type: Transform + - uid: 6510 + components: + - pos: -11.5,-14.5 + parent: 1 + type: Transform + - uid: 6511 + components: + - pos: -11.5,-13.5 + parent: 1 + type: Transform + - uid: 6512 + components: + - pos: -11.5,-12.5 + parent: 1 + type: Transform + - uid: 6513 + components: + - pos: -11.5,-11.5 + parent: 1 + type: Transform + - uid: 6514 + components: + - pos: -11.5,-10.5 + parent: 1 + type: Transform + - uid: 6515 + components: + - pos: -11.5,-9.5 + parent: 1 + type: Transform + - uid: 6516 + components: + - pos: -11.5,-8.5 + parent: 1 + type: Transform + - uid: 6517 + components: + - pos: -6.5,-8.5 + parent: 1 + type: Transform + - uid: 6518 + components: + - pos: -5.5,-8.5 + parent: 1 + type: Transform + - uid: 6519 + components: + - pos: -4.5,-8.5 + parent: 1 + type: Transform + - uid: 6520 + components: + - pos: -3.5,-8.5 + parent: 1 + type: Transform + - uid: 6578 + components: + - pos: 24.5,-12.5 + parent: 1 + type: Transform + - uid: 6579 + components: + - pos: 24.5,-11.5 + parent: 1 + type: Transform + - uid: 6580 + components: + - pos: 24.5,-10.5 + parent: 1 + type: Transform + - uid: 6581 + components: + - pos: 23.5,-10.5 + parent: 1 + type: Transform + - uid: 6582 + components: + - pos: 22.5,-10.5 + parent: 1 + type: Transform + - uid: 6583 + components: + - pos: 21.5,-10.5 + parent: 1 + type: Transform + - uid: 6584 + components: + - pos: 20.5,-10.5 + parent: 1 + type: Transform + - uid: 6585 + components: + - pos: 19.5,-10.5 + parent: 1 + type: Transform + - uid: 6586 + components: + - pos: 18.5,-10.5 + parent: 1 + type: Transform + - uid: 6587 + components: + - pos: 17.5,-10.5 + parent: 1 + type: Transform + - uid: 6588 + components: + - pos: 16.5,-10.5 + parent: 1 + type: Transform + - uid: 6589 + components: + - pos: 15.5,-10.5 + parent: 1 + type: Transform + - uid: 6590 + components: + - pos: 14.5,-10.5 + parent: 1 + type: Transform + - uid: 6591 + components: + - pos: 13.5,-10.5 + parent: 1 + type: Transform + - uid: 6592 + components: + - pos: 12.5,-10.5 + parent: 1 + type: Transform + - uid: 6593 + components: + - pos: 12.5,-9.5 + parent: 1 + type: Transform + - uid: 6594 + components: + - pos: 12.5,-8.5 + parent: 1 + type: Transform + - uid: 6595 + components: + - pos: 13.5,-11.5 + parent: 1 + type: Transform + - uid: 6596 + components: + - pos: 13.5,-12.5 + parent: 1 + type: Transform + - uid: 6597 + components: + - pos: 16.5,-11.5 + parent: 1 + type: Transform + - uid: 6598 + components: + - pos: 16.5,-12.5 + parent: 1 + type: Transform + - uid: 6599 + components: + - pos: 16.5,-13.5 + parent: 1 + type: Transform + - uid: 6600 + components: + - pos: 16.5,-14.5 + parent: 1 + type: Transform + - uid: 6601 + components: + - pos: 17.5,-14.5 + parent: 1 + type: Transform + - uid: 6602 + components: + - pos: 18.5,-14.5 + parent: 1 + type: Transform + - uid: 6603 + components: + - pos: 19.5,-14.5 + parent: 1 + type: Transform + - uid: 6604 + components: + - pos: 25.5,-12.5 + parent: 1 + type: Transform + - uid: 6605 + components: + - pos: 26.5,-12.5 + parent: 1 + type: Transform + - uid: 6608 + components: + - pos: 25.5,-10.5 + parent: 1 + type: Transform + - uid: 6609 + components: + - pos: 26.5,-10.5 + parent: 1 + type: Transform + - uid: 6610 + components: + - pos: 27.5,-10.5 + parent: 1 + type: Transform + - uid: 6611 + components: + - pos: 27.5,-9.5 + parent: 1 + type: Transform + - uid: 6612 + components: + - pos: 27.5,-8.5 + parent: 1 + type: Transform + - uid: 6613 + components: + - pos: 27.5,-7.5 + parent: 1 + type: Transform + - uid: 6614 + components: + - pos: 27.5,-6.5 + parent: 1 + type: Transform + - uid: 6615 + components: + - pos: 27.5,-5.5 + parent: 1 + type: Transform + - uid: 6618 + components: + - pos: 16.5,-4.5 + parent: 1 + type: Transform + - uid: 6619 + components: + - pos: 16.5,-5.5 + parent: 1 + type: Transform + - uid: 6620 + components: + - pos: 16.5,-6.5 + parent: 1 + type: Transform + - uid: 6621 + components: + - pos: 16.5,-7.5 + parent: 1 + type: Transform + - uid: 6622 + components: + - pos: 15.5,-6.5 + parent: 1 + type: Transform + - uid: 6623 + components: + - pos: 14.5,-6.5 + parent: 1 + type: Transform + - uid: 6624 + components: + - pos: 13.5,-6.5 + parent: 1 + type: Transform + - uid: 6625 + components: + - pos: 12.5,-6.5 + parent: 1 + type: Transform + - uid: 6626 + components: + - pos: 11.5,-6.5 + parent: 1 + type: Transform + - uid: 6627 + components: + - pos: 17.5,-4.5 + parent: 1 + type: Transform + - uid: 6628 + components: + - pos: 18.5,-4.5 + parent: 1 + type: Transform + - uid: 6629 + components: + - pos: 19.5,-4.5 + parent: 1 + type: Transform + - uid: 6630 + components: + - pos: 20.5,-4.5 + parent: 1 + type: Transform + - uid: 6631 + components: + - pos: 21.5,-4.5 + parent: 1 + type: Transform + - uid: 6632 + components: + - pos: 22.5,-4.5 + parent: 1 + type: Transform + - uid: 6633 + components: + - pos: 22.5,-5.5 + parent: 1 + type: Transform + - uid: 6634 + components: + - pos: 22.5,-6.5 + parent: 1 + type: Transform + - uid: 6635 + components: + - pos: 22.5,-7.5 + parent: 1 + type: Transform + - uid: 6636 + components: + - pos: 19.5,-6.5 + parent: 1 + type: Transform + - uid: 6637 + components: + - pos: 19.5,-5.5 + parent: 1 + type: Transform + - uid: 6638 + components: + - pos: 19.5,-7.5 + parent: 1 + type: Transform + - uid: 6639 + components: + - pos: 33.5,-5.5 + parent: 1 + type: Transform + - uid: 6640 + components: + - pos: 34.5,-5.5 + parent: 1 + type: Transform + - uid: 6641 + components: + - pos: 34.5,-4.5 + parent: 1 + type: Transform + - uid: 6642 + components: + - pos: 34.5,-3.5 + parent: 1 + type: Transform + - uid: 6643 + components: + - pos: 35.5,-3.5 + parent: 1 + type: Transform + - uid: 6644 + components: + - pos: 36.5,-3.5 + parent: 1 + type: Transform + - uid: 6645 + components: + - pos: 37.5,-3.5 + parent: 1 + type: Transform + - uid: 6646 + components: + - pos: 38.5,-3.5 + parent: 1 + type: Transform + - uid: 6647 + components: + - pos: 39.5,-3.5 + parent: 1 + type: Transform + - uid: 6648 + components: + - pos: 40.5,-3.5 + parent: 1 + type: Transform + - uid: 6649 + components: + - pos: 40.5,-4.5 + parent: 1 + type: Transform + - uid: 6650 + components: + - pos: 40.5,-5.5 + parent: 1 + type: Transform + - uid: 6651 + components: + - pos: 40.5,-6.5 + parent: 1 + type: Transform + - uid: 6652 + components: + - pos: 40.5,-7.5 + parent: 1 + type: Transform + - uid: 6653 + components: + - pos: 40.5,-8.5 + parent: 1 + type: Transform + - uid: 6654 + components: + - pos: 40.5,-9.5 + parent: 1 + type: Transform + - uid: 6655 + components: + - pos: 40.5,-10.5 + parent: 1 + type: Transform + - uid: 6656 + components: + - pos: 40.5,-11.5 + parent: 1 + type: Transform + - uid: 6657 + components: + - pos: 40.5,-12.5 + parent: 1 + type: Transform + - uid: 6658 + components: + - pos: 40.5,-13.5 + parent: 1 + type: Transform + - uid: 6659 + components: + - pos: 40.5,-14.5 + parent: 1 + type: Transform + - uid: 6660 + components: + - pos: 40.5,-15.5 + parent: 1 + type: Transform + - uid: 6661 + components: + - pos: 40.5,-16.5 + parent: 1 + type: Transform + - uid: 6662 + components: + - pos: 40.5,-17.5 + parent: 1 + type: Transform + - uid: 6663 + components: + - pos: 40.5,-18.5 + parent: 1 + type: Transform + - uid: 6664 + components: + - pos: 40.5,-19.5 + parent: 1 + type: Transform + - uid: 6665 + components: + - pos: 39.5,-19.5 + parent: 1 + type: Transform + - uid: 6666 + components: + - pos: 38.5,-19.5 + parent: 1 + type: Transform + - uid: 6667 + components: + - pos: 37.5,-19.5 + parent: 1 + type: Transform + - uid: 6668 + components: + - pos: 36.5,-19.5 + parent: 1 + type: Transform + - uid: 6669 + components: + - pos: 35.5,-19.5 + parent: 1 + type: Transform + - uid: 6670 + components: + - pos: 34.5,-19.5 + parent: 1 + type: Transform + - uid: 6671 + components: + - pos: 33.5,-14.5 + parent: 1 + type: Transform + - uid: 6672 + components: + - pos: 34.5,-14.5 + parent: 1 + type: Transform + - uid: 6673 + components: + - pos: 34.5,-15.5 + parent: 1 + type: Transform + - uid: 6674 + components: + - pos: 34.5,-16.5 + parent: 1 + type: Transform + - uid: 6675 + components: + - pos: 33.5,-16.5 + parent: 1 + type: Transform + - uid: 6676 + components: + - pos: 32.5,-16.5 + parent: 1 + type: Transform + - uid: 6677 + components: + - pos: 31.5,-16.5 + parent: 1 + type: Transform + - uid: 6678 + components: + - pos: 31.5,-17.5 + parent: 1 + type: Transform + - uid: 6679 + components: + - pos: 31.5,-18.5 + parent: 1 + type: Transform + - uid: 6680 + components: + - pos: 31.5,-19.5 + parent: 1 + type: Transform + - uid: 6681 + components: + - pos: 32.5,-19.5 + parent: 1 + type: Transform + - uid: 6682 + components: + - pos: 32.5,-20.5 + parent: 1 + type: Transform + - uid: 6683 + components: + - pos: 33.5,-20.5 + parent: 1 + type: Transform + - uid: 6684 + components: + - pos: 41.5,-18.5 + parent: 1 + type: Transform + - uid: 6685 + components: + - pos: 33.5,-22.5 + parent: 1 + type: Transform + - uid: 6686 + components: + - pos: 33.5,-23.5 + parent: 1 + type: Transform + - uid: 6687 + components: + - pos: 33.5,-21.5 + parent: 1 + type: Transform + - uid: 6688 + components: + - pos: 34.5,-21.5 + parent: 1 + type: Transform + - uid: 6689 + components: + - pos: 35.5,-21.5 + parent: 1 + type: Transform + - uid: 6690 + components: + - pos: 36.5,-21.5 + parent: 1 + type: Transform + - uid: 6691 + components: + - pos: 37.5,-21.5 + parent: 1 + type: Transform + - uid: 6692 + components: + - pos: 37.5,-22.5 + parent: 1 + type: Transform + - uid: 6693 + components: + - pos: 37.5,-23.5 + parent: 1 + type: Transform + - uid: 6694 + components: + - pos: 42.5,-18.5 + parent: 1 + type: Transform + - uid: 6695 + components: + - pos: 42.5,-17.5 + parent: 1 + type: Transform + - uid: 6696 + components: + - pos: 42.5,-16.5 + parent: 1 + type: Transform + - uid: 6697 + components: + - pos: 42.5,-15.5 + parent: 1 + type: Transform + - uid: 6698 + components: + - pos: 42.5,-14.5 + parent: 1 + type: Transform + - uid: 6699 + components: + - pos: 42.5,-13.5 + parent: 1 + type: Transform + - uid: 6700 + components: + - pos: 42.5,-12.5 + parent: 1 + type: Transform + - uid: 6701 + components: + - pos: 42.5,-11.5 + parent: 1 + type: Transform + - uid: 6702 + components: + - pos: 42.5,-10.5 + parent: 1 + type: Transform + - uid: 6703 + components: + - pos: 42.5,-9.5 + parent: 1 + type: Transform + - uid: 6704 + components: + - pos: 42.5,-8.5 + parent: 1 + type: Transform + - uid: 6705 + components: + - pos: 42.5,-7.5 + parent: 1 + type: Transform + - uid: 6706 + components: + - pos: 42.5,-6.5 + parent: 1 + type: Transform + - uid: 6707 + components: + - pos: 42.5,-5.5 + parent: 1 + type: Transform + - uid: 6708 + components: + - pos: 42.5,-4.5 + parent: 1 + type: Transform + - uid: 6709 + components: + - pos: 41.5,-4.5 + parent: 1 + type: Transform + - uid: 6710 + components: + - pos: 35.5,-16.5 + parent: 1 + type: Transform + - uid: 6711 + components: + - pos: 36.5,-16.5 + parent: 1 + type: Transform + - uid: 6712 + components: + - pos: 37.5,-16.5 + parent: 1 + type: Transform + - uid: 6713 + components: + - pos: 38.5,-16.5 + parent: 1 + type: Transform + - uid: 6714 + components: + - pos: 34.5,-13.5 + parent: 1 + type: Transform + - uid: 6715 + components: + - pos: 34.5,-12.5 + parent: 1 + type: Transform + - uid: 6716 + components: + - pos: 35.5,-12.5 + parent: 1 + type: Transform + - uid: 6717 + components: + - pos: 36.5,-12.5 + parent: 1 + type: Transform + - uid: 6718 + components: + - pos: 37.5,-12.5 + parent: 1 + type: Transform + - uid: 6719 + components: + - pos: 38.5,-12.5 + parent: 1 + type: Transform + - uid: 6720 + components: + - pos: 34.5,-6.5 + parent: 1 + type: Transform + - uid: 6721 + components: + - pos: 34.5,-7.5 + parent: 1 + type: Transform + - uid: 6722 + components: + - pos: 34.5,-8.5 + parent: 1 + type: Transform + - uid: 6723 + components: + - pos: 34.5,-9.5 + parent: 1 + type: Transform + - uid: 6724 + components: + - pos: 34.5,-10.5 + parent: 1 + type: Transform + - uid: 6725 + components: + - pos: 34.5,-10.5 + parent: 1 + type: Transform + - uid: 6726 + components: + - pos: 33.5,-10.5 + parent: 1 + type: Transform + - uid: 6727 + components: + - pos: 32.5,-10.5 + parent: 1 + type: Transform + - uid: 6728 + components: + - pos: 31.5,-10.5 + parent: 1 + type: Transform + - uid: 6729 + components: + - pos: 35.5,-10.5 + parent: 1 + type: Transform + - uid: 6730 + components: + - pos: 36.5,-10.5 + parent: 1 + type: Transform + - uid: 6731 + components: + - pos: 37.5,-10.5 + parent: 1 + type: Transform + - uid: 6732 + components: + - pos: 38.5,-10.5 + parent: 1 + type: Transform + - uid: 6733 + components: + - pos: 35.5,-6.5 + parent: 1 + type: Transform + - uid: 6734 + components: + - pos: 36.5,-6.5 + parent: 1 + type: Transform + - uid: 6735 + components: + - pos: 37.5,-6.5 + parent: 1 + type: Transform + - uid: 6736 + components: + - pos: 38.5,-6.5 + parent: 1 + type: Transform + - uid: 6737 + components: + - pos: 30.5,-17.5 + parent: 1 + type: Transform + - uid: 6738 + components: + - pos: 29.5,-17.5 + parent: 1 + type: Transform + - uid: 6739 + components: + - pos: 29.5,-18.5 + parent: 1 + type: Transform + - uid: 6740 + components: + - pos: 29.5,-19.5 + parent: 1 + type: Transform + - uid: 6741 + components: + - pos: 29.5,-20.5 + parent: 1 + type: Transform + - uid: 6783 + components: + - pos: 17.5,-3.5 + parent: 1 + type: Transform + - uid: 6784 + components: + - pos: 17.5,-2.5 + parent: 1 + type: Transform + - uid: 7056 + components: + - pos: 43.5,-18.5 + parent: 1 + type: Transform + - uid: 7057 + components: + - pos: 44.5,-18.5 + parent: 1 + type: Transform + - uid: 7058 + components: + - pos: 45.5,-18.5 + parent: 1 + type: Transform + - uid: 7059 + components: + - pos: 46.5,-18.5 + parent: 1 + type: Transform + - uid: 7060 + components: + - pos: 46.5,-17.5 + parent: 1 + type: Transform + - uid: 7061 + components: + - pos: 46.5,-16.5 + parent: 1 + type: Transform + - uid: 7062 + components: + - pos: 46.5,-15.5 + parent: 1 + type: Transform + - uid: 7063 + components: + - pos: 46.5,-14.5 + parent: 1 + type: Transform + - uid: 7064 + components: + - pos: 46.5,-13.5 + parent: 1 + type: Transform + - uid: 7106 + components: + - pos: 8.5,-20.5 + parent: 1 + type: Transform + - uid: 7107 + components: + - pos: 6.5,-20.5 + parent: 1 + type: Transform + - uid: 7108 + components: + - pos: 7.5,-20.5 + parent: 1 + type: Transform + - uid: 7205 + components: + - pos: 1.5,-33.5 + parent: 1 + type: Transform + - uid: 7225 + components: + - pos: 46.5,-12.5 + parent: 1 + type: Transform + - uid: 7226 + components: + - pos: 46.5,-11.5 + parent: 1 + type: Transform + - uid: 7227 + components: + - pos: 46.5,-10.5 + parent: 1 + type: Transform + - uid: 7228 + components: + - pos: 46.5,-9.5 + parent: 1 + type: Transform + - uid: 7229 + components: + - pos: 46.5,-8.5 + parent: 1 + type: Transform + - uid: 7230 + components: + - pos: 46.5,-7.5 + parent: 1 + type: Transform + - uid: 7231 + components: + - pos: 46.5,-6.5 + parent: 1 + type: Transform + - uid: 7232 + components: + - pos: 46.5,-5.5 + parent: 1 + type: Transform + - uid: 7233 + components: + - pos: 46.5,-4.5 + parent: 1 + type: Transform + - uid: 7234 + components: + - pos: 45.5,-4.5 + parent: 1 + type: Transform + - uid: 7235 + components: + - pos: 44.5,-4.5 + parent: 1 + type: Transform + - uid: 7236 + components: + - pos: 43.5,-4.5 + parent: 1 + type: Transform + - uid: 7308 + components: + - pos: 15.5,-28.5 + parent: 1 + type: Transform + - uid: 7309 + components: + - pos: 15.5,-27.5 + parent: 1 + type: Transform + - uid: 7310 + components: + - pos: 15.5,-26.5 + parent: 1 + type: Transform + - uid: 7311 + components: + - pos: 15.5,-25.5 + parent: 1 + type: Transform + - uid: 7312 + components: + - pos: 15.5,-24.5 + parent: 1 + type: Transform + - uid: 7313 + components: + - pos: 15.5,-23.5 + parent: 1 + type: Transform + - uid: 7314 + components: + - pos: 15.5,-22.5 + parent: 1 + type: Transform + - uid: 7315 + components: + - pos: 14.5,-26.5 + parent: 1 + type: Transform + - uid: 7316 + components: + - pos: 13.5,-26.5 + parent: 1 + type: Transform + - uid: 7317 + components: + - pos: 12.5,-26.5 + parent: 1 + type: Transform + - uid: 7318 + components: + - pos: 11.5,-26.5 + parent: 1 + type: Transform + - uid: 7319 + components: + - pos: 10.5,-26.5 + parent: 1 + type: Transform + - uid: 7320 + components: + - pos: 9.5,-26.5 + parent: 1 + type: Transform + - uid: 7321 + components: + - pos: 8.5,-26.5 + parent: 1 + type: Transform + - uid: 7322 + components: + - pos: 7.5,-26.5 + parent: 1 + type: Transform + - uid: 7323 + components: + - pos: 6.5,-26.5 + parent: 1 + type: Transform + - uid: 7324 + components: + - pos: 5.5,-26.5 + parent: 1 + type: Transform + - uid: 7325 + components: + - pos: 11.5,-27.5 + parent: 1 + type: Transform + - uid: 7326 + components: + - pos: 11.5,-28.5 + parent: 1 + type: Transform + - uid: 7327 + components: + - pos: 11.5,-29.5 + parent: 1 + type: Transform + - uid: 7328 + components: + - pos: 11.5,-30.5 + parent: 1 + type: Transform + - uid: 7329 + components: + - pos: 13.5,-27.5 + parent: 1 + type: Transform + - uid: 7330 + components: + - pos: 13.5,-28.5 + parent: 1 + type: Transform + - uid: 7331 + components: + - pos: 13.5,-29.5 + parent: 1 + type: Transform + - uid: 7332 + components: + - pos: 13.5,-30.5 + parent: 1 + type: Transform + - uid: 7333 + components: + - pos: 12.5,-19.5 + parent: 1 + type: Transform + - uid: 7334 + components: + - pos: 11.5,-19.5 + parent: 1 + type: Transform + - uid: 7335 + components: + - pos: 10.5,-19.5 + parent: 1 + type: Transform + - uid: 7336 + components: + - pos: 9.5,-19.5 + parent: 1 + type: Transform + - uid: 7337 + components: + - pos: 9.5,-20.5 + parent: 1 + type: Transform + - uid: 7338 + components: + - pos: 9.5,-21.5 + parent: 1 + type: Transform + - uid: 7339 + components: + - pos: 9.5,-22.5 + parent: 1 + type: Transform + - uid: 7340 + components: + - pos: 9.5,-23.5 + parent: 1 + type: Transform + - uid: 7341 + components: + - pos: 11.5,-20.5 + parent: 1 + type: Transform + - uid: 7342 + components: + - pos: 11.5,-21.5 + parent: 1 + type: Transform + - uid: 7343 + components: + - pos: 11.5,-22.5 + parent: 1 + type: Transform + - uid: 7344 + components: + - pos: 15.5,-21.5 + parent: 1 + type: Transform + - uid: 7345 + components: + - pos: 15.5,-20.5 + parent: 1 + type: Transform + - uid: 7346 + components: + - pos: 23.5,-21.5 + parent: 1 + type: Transform + - uid: 7347 + components: + - pos: 22.5,-21.5 + parent: 1 + type: Transform + - uid: 7348 + components: + - pos: 21.5,-21.5 + parent: 1 + type: Transform + - uid: 7349 + components: + - pos: 20.5,-21.5 + parent: 1 + type: Transform + - uid: 7350 + components: + - pos: 19.5,-21.5 + parent: 1 + type: Transform + - uid: 7351 + components: + - pos: 18.5,-21.5 + parent: 1 + type: Transform + - uid: 7352 + components: + - pos: 21.5,-22.5 + parent: 1 + type: Transform + - uid: 7353 + components: + - pos: 21.5,-23.5 + parent: 1 + type: Transform + - uid: 7354 + components: + - pos: 21.5,-24.5 + parent: 1 + type: Transform + - uid: 7355 + components: + - pos: 21.5,-25.5 + parent: 1 + type: Transform + - uid: 7356 + components: + - pos: 21.5,-26.5 + parent: 1 + type: Transform + - uid: 7357 + components: + - pos: 20.5,-26.5 + parent: 1 + type: Transform + - uid: 7358 + components: + - pos: 19.5,-26.5 + parent: 1 + type: Transform + - uid: 7359 + components: + - pos: 18.5,-26.5 + parent: 1 + type: Transform + - uid: 7360 + components: + - pos: 22.5,-23.5 + parent: 1 + type: Transform + - uid: 7361 + components: + - pos: 23.5,-23.5 + parent: 1 + type: Transform + - uid: 7362 + components: + - pos: 24.5,-23.5 + parent: 1 + type: Transform + - uid: 7363 + components: + - pos: 25.5,-23.5 + parent: 1 + type: Transform + - uid: 7364 + components: + - pos: 25.5,-24.5 + parent: 1 + type: Transform + - uid: 7365 + components: + - pos: 25.5,-25.5 + parent: 1 + type: Transform + - uid: 7366 + components: + - pos: 25.5,-26.5 + parent: 1 + type: Transform + - uid: 7367 + components: + - pos: 21.5,-20.5 + parent: 1 + type: Transform + - uid: 7368 + components: + - pos: 21.5,-18.5 + parent: 1 + type: Transform + - uid: 7369 + components: + - pos: 21.5,-19.5 + parent: 1 + type: Transform + - uid: 7370 + components: + - pos: 22.5,-18.5 + parent: 1 + type: Transform + - uid: 7371 + components: + - pos: 23.5,-18.5 + parent: 1 + type: Transform + - uid: 7372 + components: + - pos: 24.5,-18.5 + parent: 1 + type: Transform + - uid: 7373 + components: + - pos: 25.5,-18.5 + parent: 1 + type: Transform + - uid: 7374 + components: + - pos: 5.5,-20.5 + parent: 1 + type: Transform + - uid: 7375 + components: + - pos: 5.5,-21.5 + parent: 1 + type: Transform + - uid: 7376 + components: + - pos: 5.5,-22.5 + parent: 1 + type: Transform + - uid: 7377 + components: + - pos: 9.5,-18.5 + parent: 1 + type: Transform + - uid: 7378 + components: + - pos: 9.5,-17.5 + parent: 1 + type: Transform + - uid: 7379 + components: + - pos: 8.5,-17.5 + parent: 1 + type: Transform + - uid: 7380 + components: + - pos: 7.5,-17.5 + parent: 1 + type: Transform + - uid: 7381 + components: + - pos: 6.5,-17.5 + parent: 1 + type: Transform + - uid: 7382 + components: + - pos: 5.5,-17.5 + parent: 1 + type: Transform + - uid: 7383 + components: + - pos: 5.5,-16.5 + parent: 1 + type: Transform + - uid: 7384 + components: + - pos: 5.5,-15.5 + parent: 1 + type: Transform + - uid: 7385 + components: + - pos: 5.5,-18.5 + parent: 1 + type: Transform + - uid: 7386 + components: + - pos: -19.5,-1.5 + parent: 1 + type: Transform + - uid: 7387 + components: + - pos: -17.5,14.5 + parent: 1 + type: Transform + - uid: 7388 + components: + - pos: 30.5,14.5 + parent: 1 + type: Transform + - uid: 7563 + components: + - pos: -40.5,22.5 + parent: 1 + type: Transform + - uid: 7564 + components: + - pos: -40.5,21.5 + parent: 1 + type: Transform + - uid: 7565 + components: + - pos: -40.5,20.5 + parent: 1 + type: Transform + - uid: 7566 + components: + - pos: -40.5,19.5 + parent: 1 + type: Transform + - uid: 7567 + components: + - pos: -40.5,18.5 + parent: 1 + type: Transform + - uid: 7568 + components: + - pos: -40.5,17.5 + parent: 1 + type: Transform + - uid: 7569 + components: + - pos: -39.5,22.5 + parent: 1 + type: Transform + - uid: 7570 + components: + - pos: -38.5,22.5 + parent: 1 + type: Transform + - uid: 7571 + components: + - pos: -37.5,22.5 + parent: 1 + type: Transform + - uid: 7720 + components: + - pos: -8.5,-17.5 + parent: 1 + type: Transform + - uid: 7721 + components: + - pos: -7.5,-17.5 + parent: 1 + type: Transform + - uid: 7722 + components: + - pos: -7.5,-18.5 + parent: 1 + type: Transform + - uid: 7810 + components: + - pos: -4.5,-27.5 + parent: 1 + type: Transform + - uid: 7811 + components: + - pos: -4.5,-26.5 + parent: 1 + type: Transform + - uid: 7812 + components: + - pos: -4.5,-25.5 + parent: 1 + type: Transform + - uid: 7813 + components: + - pos: -5.5,-25.5 + parent: 1 + type: Transform + - uid: 7814 + components: + - pos: -6.5,-25.5 + parent: 1 + type: Transform + - uid: 7815 + components: + - pos: -6.5,-26.5 + parent: 1 + type: Transform + - uid: 7816 + components: + - pos: -6.5,-27.5 + parent: 1 + type: Transform + - uid: 7817 + components: + - pos: -6.5,-28.5 + parent: 1 + type: Transform + - uid: 7818 + components: + - pos: -3.5,-25.5 + parent: 1 + type: Transform + - uid: 7819 + components: + - pos: -2.5,-25.5 + parent: 1 + type: Transform + - uid: 7820 + components: + - pos: -2.5,-26.5 + parent: 1 + type: Transform + - uid: 7821 + components: + - pos: -2.5,-27.5 + parent: 1 + type: Transform + - uid: 7822 + components: + - pos: -2.5,-28.5 + parent: 1 + type: Transform + - uid: 7823 + components: + - pos: -3.5,-24.5 + parent: 1 + type: Transform + - uid: 7824 + components: + - pos: -3.5,-23.5 + parent: 1 + type: Transform + - uid: 7825 + components: + - pos: -3.5,-22.5 + parent: 1 + type: Transform + - uid: 7826 + components: + - pos: -3.5,-21.5 + parent: 1 + type: Transform + - uid: 7827 + components: + - pos: -4.5,-21.5 + parent: 1 + type: Transform + - uid: 7828 + components: + - pos: -2.5,-21.5 + parent: 1 + type: Transform + - uid: 7829 + components: + - pos: -0.5,-25.5 + parent: 1 + type: Transform + - uid: 7830 + components: + - pos: 0.5,-25.5 + parent: 1 + type: Transform + - uid: 7831 + components: + - pos: 1.5,-25.5 + parent: 1 + type: Transform + - uid: 7832 + components: + - pos: -1.5,-25.5 + parent: 1 + type: Transform + - uid: 7833 + components: + - pos: -5.5,-33.5 + parent: 1 + type: Transform + - uid: 7834 + components: + - pos: -4.5,-33.5 + parent: 1 + type: Transform + - uid: 7835 + components: + - pos: -3.5,-33.5 + parent: 1 + type: Transform + - uid: 7836 + components: + - pos: -2.5,-33.5 + parent: 1 + type: Transform + - uid: 7837 + components: + - pos: -2.5,-32.5 + parent: 1 + type: Transform + - uid: 7838 + components: + - pos: -1.5,-32.5 + parent: 1 + type: Transform + - uid: 7839 + components: + - pos: -0.5,-32.5 + parent: 1 + type: Transform + - uid: 7840 + components: + - pos: 0.5,-32.5 + parent: 1 + type: Transform + - uid: 7841 + components: + - pos: 1.5,-32.5 + parent: 1 + type: Transform + - uid: 7842 + components: + - pos: 1.5,-31.5 + parent: 1 + type: Transform + - uid: 7843 + components: + - pos: 1.5,-30.5 + parent: 1 + type: Transform + - uid: 7844 + components: + - pos: 1.5,-29.5 + parent: 1 + type: Transform + - uid: 7845 + components: + - pos: 1.5,-26.5 + parent: 1 + type: Transform + - uid: 7846 + components: + - pos: -5.5,-32.5 + parent: 1 + type: Transform + - uid: 7847 + components: + - pos: -6.5,-32.5 + parent: 1 + type: Transform + - uid: 7848 + components: + - pos: -0.5,-15.5 + parent: 1 + type: Transform + - uid: 7849 + components: + - pos: 0.5,-15.5 + parent: 1 + type: Transform + - uid: 7850 + components: + - pos: 1.5,-15.5 + parent: 1 + type: Transform + - uid: 7851 + components: + - pos: 1.5,-16.5 + parent: 1 + type: Transform + - uid: 7852 + components: + - pos: 1.5,-17.5 + parent: 1 + type: Transform + - uid: 7853 + components: + - pos: 1.5,-18.5 + parent: 1 + type: Transform + - uid: 7854 + components: + - pos: 1.5,-19.5 + parent: 1 + type: Transform + - uid: 7855 + components: + - pos: 1.5,-20.5 + parent: 1 + type: Transform + - uid: 7856 + components: + - pos: 1.5,-21.5 + parent: 1 + type: Transform + - uid: 7857 + components: + - pos: 1.5,-24.5 + parent: 1 + type: Transform + - uid: 7858 + components: + - pos: 1.5,-23.5 + parent: 1 + type: Transform + - uid: 7859 + components: + - pos: 1.5,-14.5 + parent: 1 + type: Transform + - uid: 7860 + components: + - pos: 1.5,-13.5 + parent: 1 + type: Transform + - uid: 7861 + components: + - pos: 1.5,-12.5 + parent: 1 + type: Transform + - uid: 7862 + components: + - pos: 1.5,-11.5 + parent: 1 + type: Transform + - uid: 7863 + components: + - pos: 1.5,-10.5 + parent: 1 + type: Transform + - uid: 7864 + components: + - pos: 1.5,-9.5 + parent: 1 + type: Transform + - uid: 7865 + components: + - pos: 1.5,-8.5 + parent: 1 + type: Transform + - uid: 7866 + components: + - pos: 0.5,-8.5 + parent: 1 + type: Transform + - uid: 7867 + components: + - pos: 2.5,-8.5 + parent: 1 + type: Transform + - uid: 7868 + components: + - pos: 3.5,-8.5 + parent: 1 + type: Transform + - uid: 7869 + components: + - pos: 4.5,-8.5 + parent: 1 + type: Transform + - uid: 7870 + components: + - pos: 5.5,-8.5 + parent: 1 + type: Transform + - uid: 7871 + components: + - pos: 6.5,-8.5 + parent: 1 + type: Transform + - uid: 7872 + components: + - pos: 7.5,-8.5 + parent: 1 + type: Transform + - uid: 7873 + components: + - pos: -20.5,-25.5 + parent: 1 + type: Transform + - uid: 7874 + components: + - pos: -19.5,-25.5 + parent: 1 + type: Transform + - uid: 7875 + components: + - pos: -18.5,-25.5 + parent: 1 + type: Transform + - uid: 7876 + components: + - pos: -17.5,-25.5 + parent: 1 + type: Transform + - uid: 7877 + components: + - pos: -16.5,-25.5 + parent: 1 + type: Transform + - uid: 7878 + components: + - pos: -15.5,-25.5 + parent: 1 + type: Transform + - uid: 7879 + components: + - pos: -14.5,-25.5 + parent: 1 + type: Transform + - uid: 7880 + components: + - pos: -13.5,-25.5 + parent: 1 + type: Transform + - uid: 7881 + components: + - pos: -12.5,-25.5 + parent: 1 + type: Transform + - uid: 7882 + components: + - pos: -11.5,-25.5 + parent: 1 + type: Transform + - uid: 7883 + components: + - pos: -11.5,-26.5 + parent: 1 + type: Transform + - uid: 7884 + components: + - pos: -11.5,-27.5 + parent: 1 + type: Transform + - uid: 7885 + components: + - pos: -11.5,-28.5 + parent: 1 + type: Transform + - uid: 7886 + components: + - pos: -11.5,-29.5 + parent: 1 + type: Transform + - uid: 7887 + components: + - pos: -11.5,-30.5 + parent: 1 + type: Transform + - uid: 7894 + components: + - pos: -17.5,-1.5 + parent: 1 + type: Transform + - uid: 7895 + components: + - pos: -17.5,-0.5 + parent: 1 + type: Transform + - uid: 7905 + components: + - pos: -39.5,-8.5 + parent: 1 + type: Transform + - uid: 7906 + components: + - pos: -39.5,-7.5 + parent: 1 + type: Transform + - uid: 7907 + components: + - pos: -39.5,-6.5 + parent: 1 + type: Transform + - uid: 7908 + components: + - pos: -38.5,-6.5 + parent: 1 + type: Transform + - uid: 7909 + components: + - pos: -37.5,-6.5 + parent: 1 + type: Transform + - uid: 7910 + components: + - pos: -36.5,-6.5 + parent: 1 + type: Transform + - uid: 7911 + components: + - pos: -37.5,-7.5 + parent: 1 + type: Transform + - uid: 7912 + components: + - pos: -37.5,-8.5 + parent: 1 + type: Transform + - uid: 7913 + components: + - pos: -37.5,-9.5 + parent: 1 + type: Transform + - uid: 7914 + components: + - pos: -37.5,-10.5 + parent: 1 + type: Transform + - uid: 7915 + components: + - pos: -36.5,-10.5 + parent: 1 + type: Transform + - uid: 7916 + components: + - pos: -40.5,-6.5 + parent: 1 + type: Transform + - uid: 7917 + components: + - pos: -41.5,-6.5 + parent: 1 + type: Transform + - uid: 7918 + components: + - pos: -37.5,-5.5 + parent: 1 + type: Transform + - uid: 7919 + components: + - pos: -37.5,-4.5 + parent: 1 + type: Transform + - uid: 7920 + components: + - pos: -37.5,-3.5 + parent: 1 + type: Transform + - uid: 7921 + components: + - pos: -37.5,-2.5 + parent: 1 + type: Transform + - uid: 7922 + components: + - pos: -37.5,-1.5 + parent: 1 + type: Transform + - uid: 7923 + components: + - pos: -37.5,-0.5 + parent: 1 + type: Transform + - uid: 7924 + components: + - pos: -39.5,-5.5 + parent: 1 + type: Transform + - uid: 7925 + components: + - pos: -39.5,-4.5 + parent: 1 + type: Transform + - uid: 7926 + components: + - pos: -39.5,-3.5 + parent: 1 + type: Transform + - uid: 7927 + components: + - pos: -39.5,-2.5 + parent: 1 + type: Transform + - uid: 7928 + components: + - pos: -39.5,-1.5 + parent: 1 + type: Transform + - uid: 7929 + components: + - pos: -39.5,-0.5 + parent: 1 + type: Transform + - uid: 7930 + components: + - pos: -38.5,14.5 + parent: 1 + type: Transform + - uid: 7931 + components: + - pos: -39.5,14.5 + parent: 1 + type: Transform + - uid: 7932 + components: + - pos: -40.5,14.5 + parent: 1 + type: Transform + - uid: 7933 + components: + - pos: -40.5,13.5 + parent: 1 + type: Transform + - uid: 7934 + components: + - pos: -40.5,12.5 + parent: 1 + type: Transform + - uid: 7935 + components: + - pos: -40.5,11.5 + parent: 1 + type: Transform + - uid: 7936 + components: + - pos: -40.5,10.5 + parent: 1 + type: Transform + - uid: 7937 + components: + - pos: -40.5,9.5 + parent: 1 + type: Transform + - uid: 7938 + components: + - pos: -40.5,8.5 + parent: 1 + type: Transform + - uid: 7939 + components: + - pos: -40.5,7.5 + parent: 1 + type: Transform + - uid: 7940 + components: + - pos: -40.5,6.5 + parent: 1 + type: Transform + - uid: 7941 + components: + - pos: -40.5,5.5 + parent: 1 + type: Transform + - uid: 7942 + components: + - pos: -40.5,4.5 + parent: 1 + type: Transform + - uid: 7943 + components: + - pos: -40.5,3.5 + parent: 1 + type: Transform + - uid: 7944 + components: + - pos: -40.5,2.5 + parent: 1 + type: Transform + - uid: 7945 + components: + - pos: -41.5,3.5 + parent: 1 + type: Transform + - uid: 7946 + components: + - pos: -42.5,3.5 + parent: 1 + type: Transform + - uid: 7947 + components: + - pos: -43.5,3.5 + parent: 1 + type: Transform + - uid: 7948 + components: + - pos: -41.5,5.5 + parent: 1 + type: Transform + - uid: 7949 + components: + - pos: -42.5,5.5 + parent: 1 + type: Transform + - uid: 7950 + components: + - pos: -43.5,5.5 + parent: 1 + type: Transform + - uid: 7951 + components: + - pos: -41.5,11.5 + parent: 1 + type: Transform + - uid: 7952 + components: + - pos: -42.5,11.5 + parent: 1 + type: Transform + - uid: 7953 + components: + - pos: -43.5,11.5 + parent: 1 + type: Transform + - uid: 7954 + components: + - pos: -41.5,13.5 + parent: 1 + type: Transform + - uid: 7955 + components: + - pos: -42.5,13.5 + parent: 1 + type: Transform + - uid: 7956 + components: + - pos: -43.5,13.5 + parent: 1 + type: Transform + - uid: 7957 + components: + - pos: -30.5,9.5 + parent: 1 + type: Transform + - uid: 7958 + components: + - pos: -31.5,9.5 + parent: 1 + type: Transform + - uid: 7959 + components: + - pos: -32.5,9.5 + parent: 1 + type: Transform + - uid: 7960 + components: + - pos: -33.5,9.5 + parent: 1 + type: Transform + - uid: 7961 + components: + - pos: -34.5,9.5 + parent: 1 + type: Transform + - uid: 7962 + components: + - pos: -34.5,8.5 + parent: 1 + type: Transform + - uid: 7963 + components: + - pos: -34.5,7.5 + parent: 1 + type: Transform + - uid: 7964 + components: + - pos: -34.5,6.5 + parent: 1 + type: Transform + - uid: 7965 + components: + - pos: -34.5,5.5 + parent: 1 + type: Transform + - uid: 7966 + components: + - pos: -34.5,4.5 + parent: 1 + type: Transform + - uid: 7967 + components: + - pos: -34.5,3.5 + parent: 1 + type: Transform + - uid: 7968 + components: + - pos: -34.5,2.5 + parent: 1 + type: Transform + - uid: 7969 + components: + - pos: -35.5,2.5 + parent: 1 + type: Transform + - uid: 7970 + components: + - pos: -36.5,2.5 + parent: 1 + type: Transform + - uid: 7971 + components: + - pos: -33.5,2.5 + parent: 1 + type: Transform + - uid: 7972 + components: + - pos: -32.5,2.5 + parent: 1 + type: Transform + - uid: 7973 + components: + - pos: -31.5,2.5 + parent: 1 + type: Transform + - uid: 7974 + components: + - pos: -30.5,2.5 + parent: 1 + type: Transform + - uid: 7975 + components: + - pos: -29.5,2.5 + parent: 1 + type: Transform + - uid: 7976 + components: + - pos: -28.5,2.5 + parent: 1 + type: Transform + - uid: 7977 + components: + - pos: -27.5,2.5 + parent: 1 + type: Transform + - uid: 7978 + components: + - pos: -28.5,3.5 + parent: 1 + type: Transform + - uid: 7979 + components: + - pos: -32.5,1.5 + parent: 1 + type: Transform + - uid: 7980 + components: + - pos: -35.5,9.5 + parent: 1 + type: Transform + - uid: 7981 + components: + - pos: -36.5,9.5 + parent: 1 + type: Transform + - uid: 7982 + components: + - pos: -37.5,9.5 + parent: 1 + type: Transform + - uid: 7983 + components: + - pos: -35.5,6.5 + parent: 1 + type: Transform + - uid: 7984 + components: + - pos: -36.5,6.5 + parent: 1 + type: Transform + - uid: 7985 + components: + - pos: -37.5,6.5 + parent: 1 + type: Transform + - uid: 7986 + components: + - pos: -33.5,6.5 + parent: 1 + type: Transform + - uid: 7987 + components: + - pos: -32.5,6.5 + parent: 1 + type: Transform + - uid: 7988 + components: + - pos: -31.5,6.5 + parent: 1 + type: Transform + - uid: 7989 + components: + - pos: -32.5,10.5 + parent: 1 + type: Transform + - uid: 7990 + components: + - pos: -32.5,11.5 + parent: 1 + type: Transform + - uid: 7991 + components: + - pos: -32.5,12.5 + parent: 1 + type: Transform + - uid: 7992 + components: + - pos: -32.5,13.5 + parent: 1 + type: Transform + - uid: 7993 + components: + - pos: -32.5,14.5 + parent: 1 + type: Transform + - uid: 7994 + components: + - pos: -32.5,15.5 + parent: 1 + type: Transform + - uid: 7995 + components: + - pos: -37.5,10.5 + parent: 1 + type: Transform + - uid: 7996 + components: + - pos: -37.5,11.5 + parent: 1 + type: Transform + - uid: 7997 + components: + - pos: -37.5,12.5 + parent: 1 + type: Transform + - uid: 7998 + components: + - pos: -37.5,13.5 + parent: 1 + type: Transform + - uid: 7999 + components: + - pos: -33.5,13.5 + parent: 1 + type: Transform + - uid: 8000 + components: + - pos: -38.5,-10.5 + parent: 1 + type: Transform + - uid: 8095 + components: + - pos: 28.5,0.5 + parent: 1 + type: Transform + - uid: 8096 + components: + - pos: 28.5,1.5 + parent: 1 + type: Transform + - uid: 8097 + components: + - pos: 28.5,2.5 + parent: 1 + type: Transform + - uid: 8098 + components: + - pos: 27.5,2.5 + parent: 1 + type: Transform + - uid: 8099 + components: + - pos: 26.5,2.5 + parent: 1 + type: Transform + - uid: 8100 + components: + - pos: 25.5,2.5 + parent: 1 + type: Transform + - uid: 8101 + components: + - pos: 24.5,2.5 + parent: 1 + type: Transform + - uid: 8102 + components: + - pos: 23.5,2.5 + parent: 1 + type: Transform + - uid: 8103 + components: + - pos: 22.5,2.5 + parent: 1 + type: Transform + - uid: 8104 + components: + - pos: 21.5,2.5 + parent: 1 + type: Transform + - uid: 8105 + components: + - pos: 20.5,2.5 + parent: 1 + type: Transform + - uid: 8106 + components: + - pos: 19.5,2.5 + parent: 1 + type: Transform + - uid: 8107 + components: + - pos: 18.5,2.5 + parent: 1 + type: Transform + - uid: 8108 + components: + - pos: 17.5,2.5 + parent: 1 + type: Transform + - uid: 8109 + components: + - pos: 16.5,2.5 + parent: 1 + type: Transform + - uid: 8110 + components: + - pos: 15.5,2.5 + parent: 1 + type: Transform + - uid: 8111 + components: + - pos: 14.5,2.5 + parent: 1 + type: Transform + - uid: 8112 + components: + - pos: 13.5,2.5 + parent: 1 + type: Transform + - uid: 8113 + components: + - pos: 12.5,2.5 + parent: 1 + type: Transform + - uid: 8114 + components: + - pos: 29.5,2.5 + parent: 1 + type: Transform + - uid: 8115 + components: + - pos: 30.5,2.5 + parent: 1 + type: Transform + - uid: 8116 + components: + - pos: 31.5,2.5 + parent: 1 + type: Transform + - uid: 8117 + components: + - pos: 32.5,2.5 + parent: 1 + type: Transform + - uid: 8118 + components: + - pos: 33.5,2.5 + parent: 1 + type: Transform + - uid: 8119 + components: + - pos: 34.5,2.5 + parent: 1 + type: Transform + - uid: 8120 + components: + - pos: 35.5,2.5 + parent: 1 + type: Transform + - uid: 8121 + components: + - pos: 36.5,2.5 + parent: 1 + type: Transform + - uid: 8122 + components: + - pos: 37.5,2.5 + parent: 1 + type: Transform + - uid: 8123 + components: + - pos: 38.5,2.5 + parent: 1 + type: Transform + - uid: 8124 + components: + - pos: 39.5,2.5 + parent: 1 + type: Transform + - uid: 8125 + components: + - pos: 40.5,2.5 + parent: 1 + type: Transform + - uid: 8126 + components: + - pos: 41.5,2.5 + parent: 1 + type: Transform + - uid: 8127 + components: + - pos: 42.5,2.5 + parent: 1 + type: Transform + - uid: 8128 + components: + - pos: 43.5,2.5 + parent: 1 + type: Transform + - uid: 8129 + components: + - pos: 44.5,2.5 + parent: 1 + type: Transform + - uid: 8130 + components: + - pos: 45.5,2.5 + parent: 1 + type: Transform + - uid: 8131 + components: + - pos: 43.5,14.5 + parent: 1 + type: Transform + - uid: 8132 + components: + - pos: 44.5,14.5 + parent: 1 + type: Transform + - uid: 8133 + components: + - pos: 45.5,14.5 + parent: 1 + type: Transform + - uid: 8134 + components: + - pos: 45.5,13.5 + parent: 1 + type: Transform + - uid: 8135 + components: + - pos: 45.5,12.5 + parent: 1 + type: Transform + - uid: 8136 + components: + - pos: 45.5,11.5 + parent: 1 + type: Transform + - uid: 8137 + components: + - pos: 45.5,10.5 + parent: 1 + type: Transform + - uid: 8138 + components: + - pos: 45.5,9.5 + parent: 1 + type: Transform + - uid: 8139 + components: + - pos: 45.5,8.5 + parent: 1 + type: Transform + - uid: 8140 + components: + - pos: 45.5,7.5 + parent: 1 + type: Transform + - uid: 8141 + components: + - pos: 45.5,6.5 + parent: 1 + type: Transform + - uid: 8142 + components: + - pos: 45.5,5.5 + parent: 1 + type: Transform + - uid: 8143 + components: + - pos: 45.5,4.5 + parent: 1 + type: Transform + - uid: 8144 + components: + - pos: 46.5,5.5 + parent: 1 + type: Transform + - uid: 8145 + components: + - pos: 45.5,15.5 + parent: 1 + type: Transform + - uid: 8146 + components: + - pos: 45.5,16.5 + parent: 1 + type: Transform + - uid: 8147 + components: + - pos: 45.5,17.5 + parent: 1 + type: Transform + - uid: 8148 + components: + - pos: 45.5,18.5 + parent: 1 + type: Transform + - uid: 8149 + components: + - pos: 45.5,19.5 + parent: 1 + type: Transform + - uid: 8150 + components: + - pos: 46.5,12.5 + parent: 1 + type: Transform + - uid: 8151 + components: + - pos: 41.5,24.5 + parent: 1 + type: Transform + - uid: 8152 + components: + - pos: 41.5,23.5 + parent: 1 + type: Transform + - uid: 8153 + components: + - pos: 41.5,22.5 + parent: 1 + type: Transform + - uid: 8154 + components: + - pos: 40.5,22.5 + parent: 1 + type: Transform + - uid: 8155 + components: + - pos: 42.5,22.5 + parent: 1 + type: Transform + - uid: 8156 + components: + - pos: 43.5,22.5 + parent: 1 + type: Transform + - uid: 8157 + components: + - pos: 44.5,22.5 + parent: 1 + type: Transform + - uid: 8158 + components: + - pos: 45.5,22.5 + parent: 1 + type: Transform + - uid: 8159 + components: + - pos: 45.5,21.5 + parent: 1 + type: Transform + - uid: 8160 + components: + - pos: 38.5,28.5 + parent: 1 + type: Transform + - uid: 8161 + components: + - pos: 39.5,28.5 + parent: 1 + type: Transform + - uid: 8162 + components: + - pos: 40.5,28.5 + parent: 1 + type: Transform + - uid: 8163 + components: + - pos: 41.5,28.5 + parent: 1 + type: Transform + - uid: 8164 + components: + - pos: 42.5,28.5 + parent: 1 + type: Transform + - uid: 8165 + components: + - pos: 43.5,28.5 + parent: 1 + type: Transform + - uid: 8166 + components: + - pos: 44.5,28.5 + parent: 1 + type: Transform + - uid: 8167 + components: + - pos: 45.5,28.5 + parent: 1 + type: Transform + - uid: 8168 + components: + - pos: 45.5,27.5 + parent: 1 + type: Transform + - uid: 8169 + components: + - pos: 45.5,26.5 + parent: 1 + type: Transform + - uid: 8170 + components: + - pos: 41.5,27.5 + parent: 1 + type: Transform + - uid: 8171 + components: + - pos: 41.5,26.5 + parent: 1 + type: Transform + - uid: 8172 + components: + - pos: 43.5,29.5 + parent: 1 + type: Transform + - uid: 8173 + components: + - pos: 43.5,30.5 + parent: 1 + type: Transform + - uid: 8174 + components: + - pos: 43.5,31.5 + parent: 1 + type: Transform + - uid: 8175 + components: + - pos: 43.5,32.5 + parent: 1 + type: Transform + - uid: 8176 + components: + - pos: 43.5,33.5 + parent: 1 + type: Transform + - uid: 8177 + components: + - pos: 42.5,32.5 + parent: 1 + type: Transform + - uid: 8178 + components: + - pos: 41.5,32.5 + parent: 1 + type: Transform + - uid: 8179 + components: + - pos: 40.5,32.5 + parent: 1 + type: Transform + - uid: 8180 + components: + - pos: 44.5,32.5 + parent: 1 + type: Transform + - uid: 8181 + components: + - pos: 45.5,32.5 + parent: 1 + type: Transform + - uid: 8190 + components: + - pos: 10.5,-2.5 + parent: 1 + type: Transform + - uid: 8193 + components: + - pos: 9.5,-2.5 + parent: 1 + type: Transform + - uid: 8194 + components: + - pos: 8.5,-2.5 + parent: 1 + type: Transform + - uid: 8195 + components: + - pos: 8.5,-3.5 + parent: 1 + type: Transform + - uid: 8196 + components: + - pos: 8.5,-4.5 + parent: 1 + type: Transform + - uid: 8197 + components: + - pos: 8.5,-5.5 + parent: 1 + type: Transform + - uid: 8198 + components: + - pos: 5.5,2.5 + parent: 1 + type: Transform + - uid: 8199 + components: + - pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 8200 + components: + - pos: 7.5,2.5 + parent: 1 + type: Transform + - uid: 8201 + components: + - pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 8202 + components: + - pos: 8.5,3.5 + parent: 1 + type: Transform + - uid: 8203 + components: + - pos: 8.5,4.5 + parent: 1 + type: Transform + - uid: 8204 + components: + - pos: 8.5,5.5 + parent: 1 + type: Transform + - uid: 8205 + components: + - pos: 11.5,-2.5 + parent: 1 + type: Transform + - uid: 8206 + components: + - pos: 12.5,-2.5 + parent: 1 + type: Transform + - uid: 8207 + components: + - pos: 12.5,-1.5 + parent: 1 + type: Transform + - uid: 8208 + components: + - pos: 13.5,-1.5 + parent: 1 + type: Transform + - uid: 8209 + components: + - pos: 14.5,-1.5 + parent: 1 + type: Transform + - uid: 8210 + components: + - pos: 43.5,15.5 + parent: 1 + type: Transform + - uid: 8211 + components: + - pos: 42.5,15.5 + parent: 1 + type: Transform + - uid: 8212 + components: + - pos: 42.5,16.5 + parent: 1 + type: Transform + - uid: 8213 + components: + - pos: 41.5,16.5 + parent: 1 + type: Transform + - uid: 8214 + components: + - pos: 40.5,16.5 + parent: 1 + type: Transform + - uid: 8215 + components: + - pos: 39.5,16.5 + parent: 1 + type: Transform + - uid: 8216 + components: + - pos: 39.5,17.5 + parent: 1 + type: Transform + - uid: 8217 + components: + - pos: 37.5,28.5 + parent: 1 + type: Transform + - uid: 8218 + components: + - pos: 37.5,29.5 + parent: 1 + type: Transform + - uid: 8219 + components: + - pos: 37.5,30.5 + parent: 1 + type: Transform + - uid: 8248 + components: + - pos: -10.5,-25.5 + parent: 1 + type: Transform + - uid: 8249 + components: + - pos: -10.5,-24.5 + parent: 1 + type: Transform + - uid: 8250 + components: + - pos: -10.5,-23.5 + parent: 1 + type: Transform + - uid: 8251 + components: + - pos: -10.5,-22.5 + parent: 1 + type: Transform + - uid: 8252 + components: + - pos: -9.5,-22.5 + parent: 1 + type: Transform + - uid: 8363 + components: + - pos: -31.5,-21.5 + parent: 1 + type: Transform + - uid: 8364 + components: + - pos: -31.5,-22.5 + parent: 1 + type: Transform + - uid: 8365 + components: + - pos: -31.5,-23.5 + parent: 1 + type: Transform + - uid: 8366 + components: + - pos: -30.5,-23.5 + parent: 1 + type: Transform + - uid: 8367 + components: + - pos: -32.5,-22.5 + parent: 1 + type: Transform + - uid: 8368 + components: + - pos: -33.5,-22.5 + parent: 1 + type: Transform + - uid: 8369 + components: + - pos: -34.5,-22.5 + parent: 1 + type: Transform + - uid: 8370 + components: + - pos: -35.5,-22.5 + parent: 1 + type: Transform + - uid: 8371 + components: + - pos: -35.5,-23.5 + parent: 1 + type: Transform + - uid: 8374 + components: + - pos: -32.5,-16.5 + parent: 1 + type: Transform + - uid: 8375 + components: + - pos: -31.5,-16.5 + parent: 1 + type: Transform + - uid: 8376 + components: + - pos: -30.5,-16.5 + parent: 1 + type: Transform + - uid: 8377 + components: + - pos: -29.5,-16.5 + parent: 1 + type: Transform + - uid: 8378 + components: + - pos: -29.5,-15.5 + parent: 1 + type: Transform + - uid: 8379 + components: + - pos: -29.5,-14.5 + parent: 1 + type: Transform + - uid: 8380 + components: + - pos: -29.5,-13.5 + parent: 1 + type: Transform + - uid: 8381 + components: + - pos: -33.5,-16.5 + parent: 1 + type: Transform + - uid: 8382 + components: + - pos: -34.5,-16.5 + parent: 1 + type: Transform + - uid: 8385 + components: + - pos: -39.5,-18.5 + parent: 1 + type: Transform + - uid: 8386 + components: + - pos: -38.5,-18.5 + parent: 1 + type: Transform + - uid: 8387 + components: + - pos: -38.5,-19.5 + parent: 1 + type: Transform + - uid: 8388 + components: + - pos: -38.5,-20.5 + parent: 1 + type: Transform + - uid: 8389 + components: + - pos: -40.5,-18.5 + parent: 1 + type: Transform + - uid: 8390 + components: + - pos: -41.5,-18.5 + parent: 1 + type: Transform + - uid: 8391 + components: + - pos: -42.5,-18.5 + parent: 1 + type: Transform + - uid: 8392 + components: + - pos: -41.5,-17.5 + parent: 1 + type: Transform + - uid: 8393 + components: + - pos: -41.5,-16.5 + parent: 1 + type: Transform + - uid: 8394 + components: + - pos: -41.5,-15.5 + parent: 1 + type: Transform + - uid: 8395 + components: + - pos: -41.5,-19.5 + parent: 1 + type: Transform + - uid: 8396 + components: + - pos: -41.5,-20.5 + parent: 1 + type: Transform + - uid: 8397 + components: + - pos: -31.5,-20.5 + parent: 1 + type: Transform + - uid: 8398 + components: + - pos: -32.5,-20.5 + parent: 1 + type: Transform + - uid: 8399 + components: + - pos: -33.5,-20.5 + parent: 1 + type: Transform + - uid: 8400 + components: + - pos: -34.5,-20.5 + parent: 1 + type: Transform + - uid: 8401 + components: + - pos: -35.5,-20.5 + parent: 1 + type: Transform + - uid: 8402 + components: + - pos: -36.5,-20.5 + parent: 1 + type: Transform + - uid: 8403 + components: + - pos: -30.5,-20.5 + parent: 1 + type: Transform + - uid: 8404 + components: + - pos: -29.5,-20.5 + parent: 1 + type: Transform + - uid: 8405 + components: + - pos: -28.5,-20.5 + parent: 1 + type: Transform + - uid: 8406 + components: + - pos: -27.5,-20.5 + parent: 1 + type: Transform + - uid: 8407 + components: + - pos: 2.5,-11.5 + parent: 1 + type: Transform + - uid: 8408 + components: + - pos: -27.5,-21.5 + parent: 1 + type: Transform + - uid: 8409 + components: + - pos: -27.5,-22.5 + parent: 1 + type: Transform + - uid: 8410 + components: + - pos: -26.5,-22.5 + parent: 1 + type: Transform + - uid: 8411 + components: + - pos: -25.5,-22.5 + parent: 1 + type: Transform + - uid: 8412 + components: + - pos: -24.5,-22.5 + parent: 1 + type: Transform + - uid: 8413 + components: + - pos: -23.5,-22.5 + parent: 1 + type: Transform + - uid: 8414 + components: + - pos: -22.5,-22.5 + parent: 1 + type: Transform + - uid: 8437 + components: + - pos: 34.5,32.5 + parent: 1 + type: Transform + - uid: 8438 + components: + - pos: 34.5,33.5 + parent: 1 + type: Transform + - uid: 8439 + components: + - pos: 34.5,34.5 + parent: 1 + type: Transform + - uid: 8440 + components: + - pos: 35.5,34.5 + parent: 1 + type: Transform + - uid: 8441 + components: + - pos: 36.5,34.5 + parent: 1 + type: Transform + - uid: 8442 + components: + - pos: 33.5,34.5 + parent: 1 + type: Transform + - uid: 8443 + components: + - pos: 32.5,34.5 + parent: 1 + type: Transform + - uid: 8444 + components: + - pos: 31.5,34.5 + parent: 1 + type: Transform + - uid: 8445 + components: + - pos: 30.5,34.5 + parent: 1 + type: Transform + - uid: 8446 + components: + - pos: 29.5,34.5 + parent: 1 + type: Transform + - uid: 8447 + components: + - pos: 28.5,34.5 + parent: 1 + type: Transform + - uid: 8448 + components: + - pos: 27.5,34.5 + parent: 1 + type: Transform + - uid: 8449 + components: + - pos: 26.5,34.5 + parent: 1 + type: Transform + - uid: 8450 + components: + - pos: 25.5,34.5 + parent: 1 + type: Transform + - uid: 8451 + components: + - pos: 24.5,34.5 + parent: 1 + type: Transform + - uid: 8452 + components: + - pos: 23.5,34.5 + parent: 1 + type: Transform + - uid: 8453 + components: + - pos: 22.5,34.5 + parent: 1 + type: Transform + - uid: 8454 + components: + - pos: 21.5,34.5 + parent: 1 + type: Transform + - uid: 8455 + components: + - pos: 20.5,34.5 + parent: 1 + type: Transform + - uid: 8456 + components: + - pos: 20.5,33.5 + parent: 1 + type: Transform + - uid: 8457 + components: + - pos: 24.5,35.5 + parent: 1 + type: Transform + - uid: 8458 + components: + - pos: 24.5,36.5 + parent: 1 + type: Transform + - uid: 8459 + components: + - pos: 24.5,37.5 + parent: 1 + type: Transform + - uid: 8460 + components: + - pos: 32.5,35.5 + parent: 1 + type: Transform + - uid: 8461 + components: + - pos: 32.5,36.5 + parent: 1 + type: Transform + - uid: 8462 + components: + - pos: 32.5,37.5 + parent: 1 + type: Transform + - uid: 8463 + components: + - pos: 25.5,33.5 + parent: 1 + type: Transform + - uid: 8464 + components: + - pos: 31.5,33.5 + parent: 1 + type: Transform + - uid: 8465 + components: + - pos: 8.5,20.5 + parent: 1 + type: Transform + - uid: 8466 + components: + - pos: 8.5,21.5 + parent: 1 + type: Transform + - uid: 8467 + components: + - pos: 8.5,22.5 + parent: 1 + type: Transform + - uid: 8468 + components: + - pos: 8.5,23.5 + parent: 1 + type: Transform + - uid: 8469 + components: + - pos: 8.5,24.5 + parent: 1 + type: Transform + - uid: 8470 + components: + - pos: 8.5,25.5 + parent: 1 + type: Transform + - uid: 8471 + components: + - pos: 8.5,26.5 + parent: 1 + type: Transform + - uid: 8472 + components: + - pos: 8.5,27.5 + parent: 1 + type: Transform + - uid: 8473 + components: + - pos: 8.5,28.5 + parent: 1 + type: Transform + - uid: 8474 + components: + - pos: 8.5,29.5 + parent: 1 + type: Transform + - uid: 8475 + components: + - pos: 8.5,30.5 + parent: 1 + type: Transform + - uid: 8476 + components: + - pos: 9.5,30.5 + parent: 1 + type: Transform + - uid: 8477 + components: + - pos: 10.5,30.5 + parent: 1 + type: Transform + - uid: 8478 + components: + - pos: 10.5,31.5 + parent: 1 + type: Transform + - uid: 8479 + components: + - pos: 10.5,32.5 + parent: 1 + type: Transform + - uid: 8480 + components: + - pos: 10.5,33.5 + parent: 1 + type: Transform + - uid: 8481 + components: + - pos: 22.5,19.5 + parent: 1 + type: Transform + - uid: 8482 + components: + - pos: 25.5,-19.5 + parent: 1 + type: Transform + - uid: 8483 + components: + - pos: 25.5,-20.5 + parent: 1 + type: Transform + - uid: 8935 + components: + - pos: -28.5,-13.5 + parent: 1 + type: Transform + - uid: 8936 + components: + - pos: -27.5,-13.5 + parent: 1 + type: Transform + - uid: 9067 + components: + - pos: -39.5,-11.5 + parent: 1 + type: Transform + - uid: 9068 + components: + - pos: -40.5,-11.5 + parent: 1 + type: Transform + - uid: 9069 + components: + - pos: -41.5,-11.5 + parent: 1 + type: Transform + - uid: 9070 + components: + - pos: -41.5,-10.5 + parent: 1 + type: Transform + - uid: 9197 + components: + - pos: -32.5,24.5 + parent: 1 + type: Transform + - uid: 9200 + components: + - pos: -31.5,23.5 + parent: 1 + type: Transform + - uid: 9202 + components: + - pos: -33.5,23.5 + parent: 1 + type: Transform + - uid: 9203 + components: + - pos: -33.5,24.5 + parent: 1 + type: Transform + - uid: 9204 + components: + - pos: -33.5,25.5 + parent: 1 + type: Transform + - uid: 9205 + components: + - pos: -34.5,25.5 + parent: 1 + type: Transform + - uid: 9206 + components: + - pos: -26.5,28.5 + parent: 1 + type: Transform + - uid: 9207 + components: + - pos: -26.5,29.5 + parent: 1 + type: Transform + - uid: 9208 + components: + - pos: -26.5,30.5 + parent: 1 + type: Transform + - uid: 9209 + components: + - pos: -27.5,30.5 + parent: 1 + type: Transform + - uid: 9210 + components: + - pos: -28.5,30.5 + parent: 1 + type: Transform + - uid: 9211 + components: + - pos: -29.5,23.5 + parent: 1 + type: Transform + - uid: 9212 + components: + - pos: -29.5,22.5 + parent: 1 + type: Transform + - uid: 9213 + components: + - pos: -29.5,21.5 + parent: 1 + type: Transform + - uid: 9214 + components: + - pos: -29.5,20.5 + parent: 1 + type: Transform + - uid: 9215 + components: + - pos: -29.5,19.5 + parent: 1 + type: Transform + - uid: 9216 + components: + - pos: -29.5,18.5 + parent: 1 + type: Transform + - uid: 9217 + components: + - pos: -29.5,17.5 + parent: 1 + type: Transform + - uid: 9218 + components: + - pos: -26.5,27.5 + parent: 1 + type: Transform + - uid: 9219 + components: + - pos: -25.5,27.5 + parent: 1 + type: Transform + - uid: 9220 + components: + - pos: -24.5,27.5 + parent: 1 + type: Transform + - uid: 9221 + components: + - pos: -23.5,27.5 + parent: 1 + type: Transform + - uid: 9222 + components: + - pos: -22.5,27.5 + parent: 1 + type: Transform + - uid: 9223 + components: + - pos: -30.5,19.5 + parent: 1 + type: Transform + - uid: 9224 + components: + - pos: -31.5,19.5 + parent: 1 + type: Transform + - uid: 9225 + components: + - pos: -32.5,19.5 + parent: 1 + type: Transform + - uid: 9226 + components: + - pos: -33.5,19.5 + parent: 1 + type: Transform + - uid: 9227 + components: + - pos: -34.5,19.5 + parent: 1 + type: Transform + - uid: 9228 + components: + - pos: -35.5,19.5 + parent: 1 + type: Transform + - uid: 9229 + components: + - pos: -27.5,27.5 + parent: 1 + type: Transform + - uid: 9230 + components: + - pos: -28.5,27.5 + parent: 1 + type: Transform + - uid: 9231 + components: + - pos: -28.5,26.5 + parent: 1 + type: Transform + - uid: 9233 + components: + - pos: -28.5,25.5 + parent: 1 + type: Transform + - uid: 9310 + components: + - pos: 20.5,32.5 + parent: 1 + type: Transform + - uid: 9735 + components: + - pos: -29.5,24.5 + parent: 1 + type: Transform + - uid: 9738 + components: + - pos: -30.5,24.5 + parent: 1 + type: Transform + - uid: 9739 + components: + - pos: -31.5,24.5 + parent: 1 + type: Transform + - uid: 12124 + components: + - pos: -39.5,23.5 + parent: 1 + type: Transform + - uid: 12125 + components: + - pos: -39.5,24.5 + parent: 1 + type: Transform + - uid: 12358 + components: + - pos: 26.5,-13.5 + parent: 1 + type: Transform + - uid: 12359 + components: + - pos: 26.5,-14.5 + parent: 1 + type: Transform + - uid: 12360 + components: + - pos: 26.5,-15.5 + parent: 1 + type: Transform + - uid: 12361 + components: + - pos: 25.5,-15.5 + parent: 1 + type: Transform + - uid: 12472 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 12473 + components: + - pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 12474 + components: + - pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 12475 + components: + - pos: -6.5,2.5 + parent: 1 + type: Transform + - uid: 12477 + components: + - pos: 46.5,22.5 + parent: 1 + type: Transform + - uid: 12479 + components: + - pos: -26.5,2.5 + parent: 1 + type: Transform + - uid: 12480 + components: + - pos: -25.5,2.5 + parent: 1 + type: Transform + - uid: 12564 + components: + - pos: -33.5,-14.5 + parent: 1 + type: Transform +- proto: CableApcStack + entities: + - uid: 3981 + components: + - pos: -2.3223429,44.45334 + parent: 1 + type: Transform + - uid: 7643 + components: + - pos: -41.491985,19.092318 + parent: 1 + type: Transform + - uid: 8229 + components: + - pos: -5.0632915,-20.463463 + parent: 1 + type: Transform + - uid: 11798 + components: + - pos: 12.5046625,23.439209 + parent: 1 + type: Transform +- proto: CableApcStack1 + entities: + - uid: 6071 + components: + - pos: -5.883921,-15.463461 + parent: 1 + type: Transform + - count: 5 + type: Stack +- proto: CableHV + entities: + - uid: 1137 + components: + - pos: 27.5,-4.5 + parent: 1 + type: Transform + - uid: 1138 + components: + - pos: 27.5,-5.5 + parent: 1 + type: Transform + - uid: 1139 + components: + - pos: 27.5,-6.5 + parent: 1 + type: Transform + - uid: 1140 + components: + - pos: 27.5,-7.5 + parent: 1 + type: Transform + - uid: 1141 + components: + - pos: 27.5,-8.5 + parent: 1 + type: Transform + - uid: 1142 + components: + - pos: 27.5,-9.5 + parent: 1 + type: Transform + - uid: 1143 + components: + - pos: 27.5,-10.5 + parent: 1 + type: Transform + - uid: 1144 + components: + - pos: 26.5,-10.5 + parent: 1 + type: Transform + - uid: 1145 + components: + - pos: 25.5,-10.5 + parent: 1 + type: Transform + - uid: 1146 + components: + - pos: 25.5,-11.5 + parent: 1 + type: Transform + - uid: 1147 + components: + - pos: 25.5,-12.5 + parent: 1 + type: Transform + - uid: 1148 + components: + - pos: 25.5,-13.5 + parent: 1 + type: Transform + - uid: 1149 + components: + - pos: 24.5,-13.5 + parent: 1 + type: Transform + - uid: 1150 + components: + - pos: 23.5,-13.5 + parent: 1 + type: Transform + - uid: 1151 + components: + - pos: 25.5,-14.5 + parent: 1 + type: Transform + - uid: 1152 + components: + - pos: 24.5,-14.5 + parent: 1 + type: Transform + - uid: 1153 + components: + - pos: 23.5,-14.5 + parent: 1 + type: Transform + - uid: 1154 + components: + - pos: 23.5,-15.5 + parent: 1 + type: Transform + - uid: 1155 + components: + - pos: 22.5,-15.5 + parent: 1 + type: Transform + - uid: 1156 + components: + - pos: 21.5,-15.5 + parent: 1 + type: Transform + - uid: 1157 + components: + - pos: 20.5,-15.5 + parent: 1 + type: Transform + - uid: 1158 + components: + - pos: 19.5,-15.5 + parent: 1 + type: Transform + - uid: 1159 + components: + - pos: 18.5,-15.5 + parent: 1 + type: Transform + - uid: 1160 + components: + - pos: 17.5,-15.5 + parent: 1 + type: Transform + - uid: 1161 + components: + - pos: 16.5,-15.5 + parent: 1 + type: Transform + - uid: 1162 + components: + - pos: 16.5,-14.5 + parent: 1 + type: Transform + - uid: 1163 + components: + - pos: 16.5,-13.5 + parent: 1 + type: Transform + - uid: 1164 + components: + - pos: 16.5,-12.5 + parent: 1 + type: Transform + - uid: 1165 + components: + - pos: 16.5,-11.5 + parent: 1 + type: Transform + - uid: 1166 + components: + - pos: 16.5,-10.5 + parent: 1 + type: Transform + - uid: 1167 + components: + - pos: 15.5,-10.5 + parent: 1 + type: Transform + - uid: 1168 + components: + - pos: 14.5,-10.5 + parent: 1 + type: Transform + - uid: 1169 + components: + - pos: 13.5,-10.5 + parent: 1 + type: Transform + - uid: 1170 + components: + - pos: 12.5,-10.5 + parent: 1 + type: Transform + - uid: 1171 + components: + - pos: 11.5,-10.5 + parent: 1 + type: Transform + - uid: 1172 + components: + - pos: 12.5,-9.5 + parent: 1 + type: Transform + - uid: 1173 + components: + - pos: 25.5,-15.5 + parent: 1 + type: Transform + - uid: 1174 + components: + - pos: 25.5,-16.5 + parent: 1 + type: Transform + - uid: 1175 + components: + - pos: 24.5,-15.5 + parent: 1 + type: Transform + - uid: 1195 + components: + - pos: 22.5,-13.5 + parent: 1 + type: Transform + - uid: 1196 + components: + - pos: 21.5,-13.5 + parent: 1 + type: Transform + - uid: 1197 + components: + - pos: 20.5,-13.5 + parent: 1 + type: Transform + - uid: 1454 + components: + - pos: 14.5,-12.5 + parent: 1 + type: Transform + - uid: 1825 + components: + - pos: 14.5,-11.5 + parent: 1 + type: Transform + - uid: 2496 + components: + - pos: -34.5,-28.5 + parent: 1 + type: Transform + - uid: 2497 + components: + - pos: -33.5,-28.5 + parent: 1 + type: Transform + - uid: 2498 + components: + - pos: -32.5,-28.5 + parent: 1 + type: Transform + - uid: 2499 + components: + - pos: -30.5,-28.5 + parent: 1 + type: Transform + - uid: 2500 + components: + - pos: -29.5,-28.5 + parent: 1 + type: Transform + - uid: 2501 + components: + - pos: -28.5,-28.5 + parent: 1 + type: Transform + - uid: 2502 + components: + - pos: -28.5,-30.5 + parent: 1 + type: Transform + - uid: 2503 + components: + - pos: -29.5,-30.5 + parent: 1 + type: Transform + - uid: 2504 + components: + - pos: -30.5,-30.5 + parent: 1 + type: Transform + - uid: 2505 + components: + - pos: -32.5,-30.5 + parent: 1 + type: Transform + - uid: 2506 + components: + - pos: -33.5,-30.5 + parent: 1 + type: Transform + - uid: 2507 + components: + - pos: -34.5,-30.5 + parent: 1 + type: Transform + - uid: 2508 + components: + - pos: -34.5,-32.5 + parent: 1 + type: Transform + - uid: 2509 + components: + - pos: -33.5,-32.5 + parent: 1 + type: Transform + - uid: 2510 + components: + - pos: -32.5,-32.5 + parent: 1 + type: Transform + - uid: 2511 + components: + - pos: -34.5,-34.5 + parent: 1 + type: Transform + - uid: 2512 + components: + - pos: -33.5,-34.5 + parent: 1 + type: Transform + - uid: 2513 + components: + - pos: -32.5,-34.5 + parent: 1 + type: Transform + - uid: 2514 + components: + - pos: -30.5,-32.5 + parent: 1 + type: Transform + - uid: 2515 + components: + - pos: -29.5,-32.5 + parent: 1 + type: Transform + - uid: 2516 + components: + - pos: -28.5,-32.5 + parent: 1 + type: Transform + - uid: 2517 + components: + - pos: -28.5,-34.5 + parent: 1 + type: Transform + - uid: 2518 + components: + - pos: -29.5,-34.5 + parent: 1 + type: Transform + - uid: 2519 + components: + - pos: -30.5,-34.5 + parent: 1 + type: Transform + - uid: 2520 + components: + - pos: -31.5,-35.5 + parent: 1 + type: Transform + - uid: 2522 + components: + - pos: -31.5,-36.5 + parent: 1 + type: Transform + - uid: 2525 + components: + - pos: -32.5,-23.5 + parent: 1 + type: Transform + - uid: 2526 + components: + - pos: -31.5,-23.5 + parent: 1 + type: Transform + - uid: 2527 + components: + - pos: -30.5,-23.5 + parent: 1 + type: Transform + - uid: 2528 + components: + - pos: -29.5,-23.5 + parent: 1 + type: Transform + - uid: 2529 + components: + - pos: -32.5,-22.5 + parent: 1 + type: Transform + - uid: 2530 + components: + - pos: -33.5,-22.5 + parent: 1 + type: Transform + - uid: 2531 + components: + - pos: -34.5,-22.5 + parent: 1 + type: Transform + - uid: 2532 + components: + - pos: -35.5,-22.5 + parent: 1 + type: Transform + - uid: 2533 + components: + - pos: -35.5,-23.5 + parent: 1 + type: Transform + - uid: 2534 + components: + - pos: -35.5,-24.5 + parent: 1 + type: Transform + - uid: 2535 + components: + - pos: -35.5,-25.5 + parent: 1 + type: Transform + - uid: 2536 + components: + - pos: -32.5,-25.5 + parent: 1 + type: Transform + - uid: 2538 + components: + - pos: -31.5,-25.5 + parent: 1 + type: Transform + - uid: 2539 + components: + - pos: -31.5,-26.5 + parent: 1 + type: Transform + - uid: 2540 + components: + - pos: -30.5,-22.5 + parent: 1 + type: Transform + - uid: 2541 + components: + - pos: -30.5,-21.5 + parent: 1 + type: Transform + - uid: 2542 + components: + - pos: -30.5,-20.5 + parent: 1 + type: Transform + - uid: 2543 + components: + - pos: -27.5,29.5 + parent: 1 + type: Transform + - uid: 2544 + components: + - pos: -26.5,29.5 + parent: 1 + type: Transform + - uid: 2545 + components: + - pos: -25.5,29.5 + parent: 1 + type: Transform + - uid: 2546 + components: + - pos: -25.5,28.5 + parent: 1 + type: Transform + - uid: 2547 + components: + - pos: -25.5,27.5 + parent: 1 + type: Transform + - uid: 2548 + components: + - pos: -27.5,30.5 + parent: 1 + type: Transform + - uid: 2549 + components: + - pos: -28.5,30.5 + parent: 1 + type: Transform + - uid: 2550 + components: + - pos: -29.5,30.5 + parent: 1 + type: Transform + - uid: 2551 + components: + - pos: -29.5,31.5 + parent: 1 + type: Transform + - uid: 2554 + components: + - pos: -24.5,29.5 + parent: 1 + type: Transform + - uid: 2590 + components: + - pos: -29.5,32.5 + parent: 1 + type: Transform + - uid: 2619 + components: + - pos: -28.5,34.5 + parent: 1 + type: Transform + - uid: 2620 + components: + - pos: -29.5,34.5 + parent: 1 + type: Transform + - uid: 2621 + components: + - pos: -30.5,34.5 + parent: 1 + type: Transform + - uid: 2622 + components: + - pos: -31.5,34.5 + parent: 1 + type: Transform + - uid: 2623 + components: + - pos: -31.5,36.5 + parent: 1 + type: Transform + - uid: 2624 + components: + - pos: -30.5,36.5 + parent: 1 + type: Transform + - uid: 2625 + components: + - pos: -29.5,36.5 + parent: 1 + type: Transform + - uid: 2626 + components: + - pos: -28.5,36.5 + parent: 1 + type: Transform + - uid: 2627 + components: + - pos: -26.5,36.5 + parent: 1 + type: Transform + - uid: 2628 + components: + - pos: -25.5,36.5 + parent: 1 + type: Transform + - uid: 2629 + components: + - pos: -24.5,36.5 + parent: 1 + type: Transform + - uid: 2630 + components: + - pos: -23.5,36.5 + parent: 1 + type: Transform + - uid: 2631 + components: + - pos: -23.5,34.5 + parent: 1 + type: Transform + - uid: 2632 + components: + - pos: -24.5,34.5 + parent: 1 + type: Transform + - uid: 2633 + components: + - pos: -25.5,34.5 + parent: 1 + type: Transform + - uid: 2634 + components: + - pos: -26.5,34.5 + parent: 1 + type: Transform + - uid: 2635 + components: + - pos: -26.5,38.5 + parent: 1 + type: Transform + - uid: 2636 + components: + - pos: -25.5,38.5 + parent: 1 + type: Transform + - uid: 2637 + components: + - pos: -24.5,38.5 + parent: 1 + type: Transform + - uid: 2638 + components: + - pos: -23.5,38.5 + parent: 1 + type: Transform + - uid: 2639 + components: + - pos: -23.5,40.5 + parent: 1 + type: Transform + - uid: 2640 + components: + - pos: -24.5,40.5 + parent: 1 + type: Transform + - uid: 2641 + components: + - pos: -25.5,40.5 + parent: 1 + type: Transform + - uid: 2642 + components: + - pos: -26.5,40.5 + parent: 1 + type: Transform + - uid: 2643 + components: + - pos: -28.5,40.5 + parent: 1 + type: Transform + - uid: 2644 + components: + - pos: -29.5,40.5 + parent: 1 + type: Transform + - uid: 2645 + components: + - pos: -30.5,40.5 + parent: 1 + type: Transform + - uid: 2646 + components: + - pos: -31.5,40.5 + parent: 1 + type: Transform + - uid: 2647 + components: + - pos: -31.5,38.5 + parent: 1 + type: Transform + - uid: 2648 + components: + - pos: -30.5,38.5 + parent: 1 + type: Transform + - uid: 2649 + components: + - pos: -29.5,38.5 + parent: 1 + type: Transform + - uid: 2650 + components: + - pos: -28.5,38.5 + parent: 1 + type: Transform + - uid: 2651 + components: + - pos: -27.5,41.5 + parent: 1 + type: Transform + - uid: 2652 + components: + - pos: -27.5,42.5 + parent: 1 + type: Transform + - uid: 2793 + components: + - pos: -14.5,-57.5 + parent: 1 + type: Transform + - uid: 2809 + components: + - pos: -14.5,-60.5 + parent: 1 + type: Transform + - uid: 2810 + components: + - pos: -12.5,-59.5 + parent: 1 + type: Transform + - uid: 2811 + components: + - pos: -16.5,-59.5 + parent: 1 + type: Transform + - uid: 2812 + components: + - pos: -13.5,-55.5 + parent: 1 + type: Transform + - uid: 2813 + components: + - pos: -12.5,-55.5 + parent: 1 + type: Transform + - uid: 2814 + components: + - pos: -11.5,-51.5 + parent: 1 + type: Transform + - uid: 2822 + components: + - pos: -14.5,-56.5 + parent: 1 + type: Transform + - uid: 2824 + components: + - pos: -12.5,-57.5 + parent: 1 + type: Transform + - uid: 2825 + components: + - pos: -13.5,-59.5 + parent: 1 + type: Transform + - uid: 2826 + components: + - pos: -13.5,-57.5 + parent: 1 + type: Transform + - uid: 2827 + components: + - pos: -11.5,-53.5 + parent: 1 + type: Transform + - uid: 2828 + components: + - pos: -11.5,-52.5 + parent: 1 + type: Transform + - uid: 2829 + components: + - pos: -15.5,-59.5 + parent: 1 + type: Transform + - uid: 2830 + components: + - pos: -14.5,-59.5 + parent: 1 + type: Transform + - uid: 2831 + components: + - pos: -14.5,-55.5 + parent: 1 + type: Transform + - uid: 2832 + components: + - pos: -11.5,-55.5 + parent: 1 + type: Transform + - uid: 2833 + components: + - pos: -11.5,-54.5 + parent: 1 + type: Transform + - uid: 2834 + components: + - pos: -15.5,-57.5 + parent: 1 + type: Transform + - uid: 2835 + components: + - pos: -14.5,-58.5 + parent: 1 + type: Transform + - uid: 2839 + components: + - pos: -16.5,-57.5 + parent: 1 + type: Transform + - uid: 3675 + components: + - pos: -1.5,47.5 + parent: 1 + type: Transform + - uid: 3676 + components: + - pos: -0.5,47.5 + parent: 1 + type: Transform + - uid: 3677 + components: + - pos: -0.5,46.5 + parent: 1 + type: Transform + - uid: 3679 + components: + - pos: -0.5,45.5 + parent: 1 + type: Transform + - uid: 3680 + components: + - pos: -0.5,44.5 + parent: 1 + type: Transform + - uid: 4047 + components: + - pos: 8.5,20.5 + parent: 1 + type: Transform + - uid: 4052 + components: + - pos: 8.5,21.5 + parent: 1 + type: Transform + - uid: 4237 + components: + - pos: 12.5,-8.5 + parent: 1 + type: Transform + - uid: 4238 + components: + - pos: 12.5,-7.5 + parent: 1 + type: Transform + - uid: 4239 + components: + - pos: 12.5,-6.5 + parent: 1 + type: Transform + - uid: 4240 + components: + - pos: 11.5,-6.5 + parent: 1 + type: Transform + - uid: 4241 + components: + - pos: 10.5,-6.5 + parent: 1 + type: Transform + - uid: 4242 + components: + - pos: 9.5,-6.5 + parent: 1 + type: Transform + - uid: 4243 + components: + - pos: 8.5,-6.5 + parent: 1 + type: Transform + - uid: 4244 + components: + - pos: 8.5,-5.5 + parent: 1 + type: Transform + - uid: 4245 + components: + - pos: 8.5,-4.5 + parent: 1 + type: Transform + - uid: 4246 + components: + - pos: 8.5,-3.5 + parent: 1 + type: Transform + - uid: 4247 + components: + - pos: 8.5,-2.5 + parent: 1 + type: Transform + - uid: 4248 + components: + - pos: 8.5,-1.5 + parent: 1 + type: Transform + - uid: 4249 + components: + - pos: 8.5,-0.5 + parent: 1 + type: Transform + - uid: 4250 + components: + - pos: 8.5,0.5 + parent: 1 + type: Transform + - uid: 4251 + components: + - pos: 8.5,1.5 + parent: 1 + type: Transform + - uid: 4252 + components: + - pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 4253 + components: + - pos: 8.5,3.5 + parent: 1 + type: Transform + - uid: 4254 + components: + - pos: 8.5,4.5 + parent: 1 + type: Transform + - uid: 4255 + components: + - pos: 8.5,5.5 + parent: 1 + type: Transform + - uid: 4256 + components: + - pos: 8.5,6.5 + parent: 1 + type: Transform + - uid: 4257 + components: + - pos: 8.5,7.5 + parent: 1 + type: Transform + - uid: 4258 + components: + - pos: 8.5,8.5 + parent: 1 + type: Transform + - uid: 4259 + components: + - pos: 8.5,9.5 + parent: 1 + type: Transform + - uid: 4260 + components: + - pos: 8.5,10.5 + parent: 1 + type: Transform + - uid: 4261 + components: + - pos: 8.5,11.5 + parent: 1 + type: Transform + - uid: 4262 + components: + - pos: 8.5,12.5 + parent: 1 + type: Transform + - uid: 4263 + components: + - pos: 8.5,13.5 + parent: 1 + type: Transform + - uid: 4264 + components: + - pos: 8.5,14.5 + parent: 1 + type: Transform + - uid: 4265 + components: + - pos: 8.5,15.5 + parent: 1 + type: Transform + - uid: 4266 + components: + - pos: 8.5,16.5 + parent: 1 + type: Transform + - uid: 4267 + components: + - pos: 8.5,17.5 + parent: 1 + type: Transform + - uid: 4268 + components: + - pos: 8.5,18.5 + parent: 1 + type: Transform + - uid: 4269 + components: + - pos: 8.5,19.5 + parent: 1 + type: Transform + - uid: 4270 + components: + - pos: 9.5,19.5 + parent: 1 + type: Transform + - uid: 4271 + components: + - pos: 10.5,19.5 + parent: 1 + type: Transform + - uid: 4272 + components: + - pos: 10.5,20.5 + parent: 1 + type: Transform + - uid: 4273 + components: + - pos: 10.5,21.5 + parent: 1 + type: Transform + - uid: 4274 + components: + - pos: 7.5,15.5 + parent: 1 + type: Transform + - uid: 4275 + components: + - pos: 6.5,15.5 + parent: 1 + type: Transform + - uid: 4276 + components: + - pos: 5.5,15.5 + parent: 1 + type: Transform + - uid: 4277 + components: + - pos: 4.5,15.5 + parent: 1 + type: Transform + - uid: 4278 + components: + - pos: 4.5,16.5 + parent: 1 + type: Transform + - uid: 4279 + components: + - pos: 4.5,17.5 + parent: 1 + type: Transform + - uid: 4280 + components: + - pos: 4.5,18.5 + parent: 1 + type: Transform + - uid: 4281 + components: + - pos: 4.5,19.5 + parent: 1 + type: Transform + - uid: 4282 + components: + - pos: 4.5,20.5 + parent: 1 + type: Transform + - uid: 4283 + components: + - pos: 4.5,21.5 + parent: 1 + type: Transform + - uid: 4284 + components: + - pos: 4.5,22.5 + parent: 1 + type: Transform + - uid: 4285 + components: + - pos: 4.5,23.5 + parent: 1 + type: Transform + - uid: 4286 + components: + - pos: 4.5,24.5 + parent: 1 + type: Transform + - uid: 4287 + components: + - pos: 3.5,24.5 + parent: 1 + type: Transform + - uid: 4288 + components: + - pos: 2.5,24.5 + parent: 1 + type: Transform + - uid: 4289 + components: + - pos: 1.5,24.5 + parent: 1 + type: Transform + - uid: 4290 + components: + - pos: 1.5,25.5 + parent: 1 + type: Transform + - uid: 4291 + components: + - pos: 1.5,26.5 + parent: 1 + type: Transform + - uid: 4292 + components: + - pos: 1.5,27.5 + parent: 1 + type: Transform + - uid: 4293 + components: + - pos: 1.5,28.5 + parent: 1 + type: Transform + - uid: 4294 + components: + - pos: 1.5,29.5 + parent: 1 + type: Transform + - uid: 4295 + components: + - pos: 0.5,29.5 + parent: 1 + type: Transform + - uid: 4296 + components: + - pos: -0.5,29.5 + parent: 1 + type: Transform + - uid: 4297 + components: + - pos: -1.5,29.5 + parent: 1 + type: Transform + - uid: 4298 + components: + - pos: -2.5,29.5 + parent: 1 + type: Transform + - uid: 4299 + components: + - pos: -3.5,29.5 + parent: 1 + type: Transform + - uid: 4300 + components: + - pos: -4.5,29.5 + parent: 1 + type: Transform + - uid: 4301 + components: + - pos: -5.5,29.5 + parent: 1 + type: Transform + - uid: 4302 + components: + - pos: -6.5,29.5 + parent: 1 + type: Transform + - uid: 4303 + components: + - pos: -7.5,29.5 + parent: 1 + type: Transform + - uid: 4306 + components: + - pos: 8.5,22.5 + parent: 1 + type: Transform + - uid: 4307 + components: + - pos: -7.5,30.5 + parent: 1 + type: Transform + - uid: 4308 + components: + - pos: -8.5,30.5 + parent: 1 + type: Transform + - uid: 4309 + components: + - pos: -9.5,30.5 + parent: 1 + type: Transform + - uid: 4310 + components: + - pos: -10.5,30.5 + parent: 1 + type: Transform + - uid: 4311 + components: + - pos: -11.5,30.5 + parent: 1 + type: Transform + - uid: 4312 + components: + - pos: -12.5,30.5 + parent: 1 + type: Transform + - uid: 4313 + components: + - pos: -13.5,30.5 + parent: 1 + type: Transform + - uid: 4314 + components: + - pos: -14.5,30.5 + parent: 1 + type: Transform + - uid: 4315 + components: + - pos: -14.5,31.5 + parent: 1 + type: Transform + - uid: 4316 + components: + - pos: 8.5,23.5 + parent: 1 + type: Transform + - uid: 4317 + components: + - pos: 8.5,24.5 + parent: 1 + type: Transform + - uid: 4318 + components: + - pos: 7.5,24.5 + parent: 1 + type: Transform + - uid: 4319 + components: + - pos: 6.5,24.5 + parent: 1 + type: Transform + - uid: 4320 + components: + - pos: 5.5,24.5 + parent: 1 + type: Transform + - uid: 4321 + components: + - pos: -15.5,30.5 + parent: 1 + type: Transform + - uid: 4322 + components: + - pos: -16.5,30.5 + parent: 1 + type: Transform + - uid: 4323 + components: + - pos: -17.5,30.5 + parent: 1 + type: Transform + - uid: 4324 + components: + - pos: -17.5,29.5 + parent: 1 + type: Transform + - uid: 4325 + components: + - pos: -17.5,28.5 + parent: 1 + type: Transform + - uid: 4326 + components: + - pos: -17.5,27.5 + parent: 1 + type: Transform + - uid: 4327 + components: + - pos: -17.5,26.5 + parent: 1 + type: Transform + - uid: 4328 + components: + - pos: -17.5,25.5 + parent: 1 + type: Transform + - uid: 4329 + components: + - pos: -17.5,24.5 + parent: 1 + type: Transform + - uid: 4330 + components: + - pos: -18.5,24.5 + parent: 1 + type: Transform + - uid: 4331 + components: + - pos: -19.5,24.5 + parent: 1 + type: Transform + - uid: 4332 + components: + - pos: -19.5,25.5 + parent: 1 + type: Transform + - uid: 4333 + components: + - pos: -19.5,26.5 + parent: 1 + type: Transform + - uid: 4334 + components: + - pos: -20.5,26.5 + parent: 1 + type: Transform + - uid: 4335 + components: + - pos: -18.5,28.5 + parent: 1 + type: Transform + - uid: 4336 + components: + - pos: -19.5,28.5 + parent: 1 + type: Transform + - uid: 4337 + components: + - pos: -20.5,28.5 + parent: 1 + type: Transform + - uid: 4338 + components: + - pos: -21.5,28.5 + parent: 1 + type: Transform + - uid: 4339 + components: + - pos: -22.5,28.5 + parent: 1 + type: Transform + - uid: 4340 + components: + - pos: -22.5,27.5 + parent: 1 + type: Transform + - uid: 4341 + components: + - pos: -23.5,27.5 + parent: 1 + type: Transform + - uid: 4342 + components: + - pos: -24.5,27.5 + parent: 1 + type: Transform + - uid: 4343 + components: + - pos: -26.5,27.5 + parent: 1 + type: Transform + - uid: 4344 + components: + - pos: -27.5,27.5 + parent: 1 + type: Transform + - uid: 4345 + components: + - pos: -28.5,27.5 + parent: 1 + type: Transform + - uid: 4346 + components: + - pos: -28.5,26.5 + parent: 1 + type: Transform + - uid: 4347 + components: + - pos: -28.5,25.5 + parent: 1 + type: Transform + - uid: 4348 + components: + - pos: -28.5,24.5 + parent: 1 + type: Transform + - uid: 4349 + components: + - pos: -28.5,23.5 + parent: 1 + type: Transform + - uid: 4350 + components: + - pos: -28.5,22.5 + parent: 1 + type: Transform + - uid: 4351 + components: + - pos: -28.5,21.5 + parent: 1 + type: Transform + - uid: 4352 + components: + - pos: -28.5,20.5 + parent: 1 + type: Transform + - uid: 4353 + components: + - pos: -28.5,19.5 + parent: 1 + type: Transform + - uid: 4354 + components: + - pos: -28.5,18.5 + parent: 1 + type: Transform + - uid: 4355 + components: + - pos: -28.5,17.5 + parent: 1 + type: Transform + - uid: 4356 + components: + - pos: -28.5,16.5 + parent: 1 + type: Transform + - uid: 4357 + components: + - pos: -28.5,15.5 + parent: 1 + type: Transform + - uid: 4358 + components: + - pos: -28.5,14.5 + parent: 1 + type: Transform + - uid: 4359 + components: + - pos: -28.5,13.5 + parent: 1 + type: Transform + - uid: 4360 + components: + - pos: -28.5,12.5 + parent: 1 + type: Transform + - uid: 4361 + components: + - pos: -28.5,11.5 + parent: 1 + type: Transform + - uid: 4362 + components: + - pos: -28.5,10.5 + parent: 1 + type: Transform + - uid: 4363 + components: + - pos: -28.5,9.5 + parent: 1 + type: Transform + - uid: 4364 + components: + - pos: -28.5,8.5 + parent: 1 + type: Transform + - uid: 4365 + components: + - pos: -28.5,7.5 + parent: 1 + type: Transform + - uid: 4366 + components: + - pos: -28.5,6.5 + parent: 1 + type: Transform + - uid: 4367 + components: + - pos: -28.5,5.5 + parent: 1 + type: Transform + - uid: 4368 + components: + - pos: -28.5,4.5 + parent: 1 + type: Transform + - uid: 4369 + components: + - pos: -28.5,3.5 + parent: 1 + type: Transform + - uid: 4370 + components: + - pos: -28.5,2.5 + parent: 1 + type: Transform + - uid: 4371 + components: + - pos: -29.5,19.5 + parent: 1 + type: Transform + - uid: 4372 + components: + - pos: -30.5,19.5 + parent: 1 + type: Transform + - uid: 4373 + components: + - pos: -31.5,19.5 + parent: 1 + type: Transform + - uid: 4374 + components: + - pos: -32.5,19.5 + parent: 1 + type: Transform + - uid: 4375 + components: + - pos: -33.5,19.5 + parent: 1 + type: Transform + - uid: 4376 + components: + - pos: -34.5,19.5 + parent: 1 + type: Transform + - uid: 4377 + components: + - pos: -35.5,19.5 + parent: 1 + type: Transform + - uid: 4378 + components: + - pos: -36.5,19.5 + parent: 1 + type: Transform + - uid: 4379 + components: + - pos: -37.5,19.5 + parent: 1 + type: Transform + - uid: 4380 + components: + - pos: -37.5,18.5 + parent: 1 + type: Transform + - uid: 4381 + components: + - pos: -37.5,17.5 + parent: 1 + type: Transform + - uid: 4382 + components: + - pos: -37.5,16.5 + parent: 1 + type: Transform + - uid: 4383 + components: + - pos: -37.5,15.5 + parent: 1 + type: Transform + - uid: 4384 + components: + - pos: -38.5,15.5 + parent: 1 + type: Transform + - uid: 4385 + components: + - pos: -39.5,15.5 + parent: 1 + type: Transform + - uid: 4386 + components: + - pos: -40.5,15.5 + parent: 1 + type: Transform + - uid: 4387 + components: + - pos: -40.5,16.5 + parent: 1 + type: Transform + - uid: 4388 + components: + - pos: -40.5,17.5 + parent: 1 + type: Transform + - uid: 4389 + components: + - pos: -40.5,18.5 + parent: 1 + type: Transform + - uid: 4390 + components: + - pos: -40.5,14.5 + parent: 1 + type: Transform + - uid: 4391 + components: + - pos: -40.5,13.5 + parent: 1 + type: Transform + - uid: 4392 + components: + - pos: -40.5,12.5 + parent: 1 + type: Transform + - uid: 4393 + components: + - pos: -40.5,11.5 + parent: 1 + type: Transform + - uid: 4394 + components: + - pos: -40.5,10.5 + parent: 1 + type: Transform + - uid: 4395 + components: + - pos: -40.5,9.5 + parent: 1 + type: Transform + - uid: 4396 + components: + - pos: -40.5,8.5 + parent: 1 + type: Transform + - uid: 4397 + components: + - pos: -40.5,7.5 + parent: 1 + type: Transform + - uid: 4398 + components: + - pos: -40.5,6.5 + parent: 1 + type: Transform + - uid: 4399 + components: + - pos: -40.5,5.5 + parent: 1 + type: Transform + - uid: 4400 + components: + - pos: -40.5,4.5 + parent: 1 + type: Transform + - uid: 4401 + components: + - pos: -40.5,3.5 + parent: 1 + type: Transform + - uid: 4402 + components: + - pos: -40.5,2.5 + parent: 1 + type: Transform + - uid: 4403 + components: + - pos: -39.5,2.5 + parent: 1 + type: Transform + - uid: 4404 + components: + - pos: -38.5,2.5 + parent: 1 + type: Transform + - uid: 4405 + components: + - pos: -37.5,2.5 + parent: 1 + type: Transform + - uid: 4406 + components: + - pos: -36.5,2.5 + parent: 1 + type: Transform + - uid: 4407 + components: + - pos: -35.5,2.5 + parent: 1 + type: Transform + - uid: 4408 + components: + - pos: -34.5,2.5 + parent: 1 + type: Transform + - uid: 4409 + components: + - pos: -33.5,2.5 + parent: 1 + type: Transform + - uid: 4410 + components: + - pos: -32.5,2.5 + parent: 1 + type: Transform + - uid: 4411 + components: + - pos: -31.5,2.5 + parent: 1 + type: Transform + - uid: 4412 + components: + - pos: -30.5,2.5 + parent: 1 + type: Transform + - uid: 4413 + components: + - pos: -29.5,2.5 + parent: 1 + type: Transform + - uid: 4414 + components: + - pos: -27.5,2.5 + parent: 1 + type: Transform + - uid: 4415 + components: + - pos: -26.5,2.5 + parent: 1 + type: Transform + - uid: 4416 + components: + - pos: -25.5,2.5 + parent: 1 + type: Transform + - uid: 4417 + components: + - pos: -24.5,2.5 + parent: 1 + type: Transform + - uid: 4418 + components: + - pos: -23.5,2.5 + parent: 1 + type: Transform + - uid: 4419 + components: + - pos: -22.5,2.5 + parent: 1 + type: Transform + - uid: 4420 + components: + - pos: -21.5,2.5 + parent: 1 + type: Transform + - uid: 4421 + components: + - pos: -20.5,2.5 + parent: 1 + type: Transform + - uid: 4422 + components: + - pos: -19.5,2.5 + parent: 1 + type: Transform + - uid: 4423 + components: + - pos: -18.5,2.5 + parent: 1 + type: Transform + - uid: 4424 + components: + - pos: -17.5,2.5 + parent: 1 + type: Transform + - uid: 4425 + components: + - pos: -16.5,2.5 + parent: 1 + type: Transform + - uid: 4426 + components: + - pos: -15.5,2.5 + parent: 1 + type: Transform + - uid: 4427 + components: + - pos: -14.5,2.5 + parent: 1 + type: Transform + - uid: 4428 + components: + - pos: -13.5,2.5 + parent: 1 + type: Transform + - uid: 4429 + components: + - pos: -12.5,2.5 + parent: 1 + type: Transform + - uid: 4430 + components: + - pos: -11.5,2.5 + parent: 1 + type: Transform + - uid: 4431 + components: + - pos: -10.5,2.5 + parent: 1 + type: Transform + - uid: 4432 + components: + - pos: -9.5,2.5 + parent: 1 + type: Transform + - uid: 4433 + components: + - pos: -8.5,2.5 + parent: 1 + type: Transform + - uid: 4434 + components: + - pos: -7.5,2.5 + parent: 1 + type: Transform + - uid: 4435 + components: + - pos: -6.5,2.5 + parent: 1 + type: Transform + - uid: 4436 + components: + - pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 4437 + components: + - pos: -5.5,3.5 + parent: 1 + type: Transform + - uid: 4438 + components: + - pos: -5.5,4.5 + parent: 1 + type: Transform + - uid: 4439 + components: + - pos: -5.5,5.5 + parent: 1 + type: Transform + - uid: 4440 + components: + - pos: -5.5,6.5 + parent: 1 + type: Transform + - uid: 4441 + components: + - pos: -5.5,7.5 + parent: 1 + type: Transform + - uid: 4442 + components: + - pos: -5.5,8.5 + parent: 1 + type: Transform + - uid: 4443 + components: + - pos: -5.5,9.5 + parent: 1 + type: Transform + - uid: 4444 + components: + - pos: -5.5,10.5 + parent: 1 + type: Transform + - uid: 4445 + components: + - pos: -5.5,11.5 + parent: 1 + type: Transform + - uid: 4446 + components: + - pos: -5.5,12.5 + parent: 1 + type: Transform + - uid: 4447 + components: + - pos: -5.5,13.5 + parent: 1 + type: Transform + - uid: 4448 + components: + - pos: -5.5,14.5 + parent: 1 + type: Transform + - uid: 4449 + components: + - pos: -5.5,15.5 + parent: 1 + type: Transform + - uid: 4450 + components: + - pos: -5.5,16.5 + parent: 1 + type: Transform + - uid: 4451 + components: + - pos: -4.5,15.5 + parent: 1 + type: Transform + - uid: 4452 + components: + - pos: -3.5,15.5 + parent: 1 + type: Transform + - uid: 4453 + components: + - pos: -2.5,15.5 + parent: 1 + type: Transform + - uid: 4454 + components: + - pos: -1.5,15.5 + parent: 1 + type: Transform + - uid: 4455 + components: + - pos: -0.5,15.5 + parent: 1 + type: Transform + - uid: 4456 + components: + - pos: 0.5,15.5 + parent: 1 + type: Transform + - uid: 4457 + components: + - pos: 1.5,15.5 + parent: 1 + type: Transform + - uid: 4458 + components: + - pos: 2.5,15.5 + parent: 1 + type: Transform + - uid: 4459 + components: + - pos: 3.5,15.5 + parent: 1 + type: Transform + - uid: 4460 + components: + - pos: -6.5,16.5 + parent: 1 + type: Transform + - uid: 4461 + components: + - pos: -7.5,16.5 + parent: 1 + type: Transform + - uid: 4462 + components: + - pos: -8.5,16.5 + parent: 1 + type: Transform + - uid: 4463 + components: + - pos: -8.5,17.5 + parent: 1 + type: Transform + - uid: 4464 + components: + - pos: -8.5,18.5 + parent: 1 + type: Transform + - uid: 4465 + components: + - pos: -8.5,19.5 + parent: 1 + type: Transform + - uid: 4466 + components: + - pos: -8.5,20.5 + parent: 1 + type: Transform + - uid: 4467 + components: + - pos: -8.5,21.5 + parent: 1 + type: Transform + - uid: 4468 + components: + - pos: -8.5,22.5 + parent: 1 + type: Transform + - uid: 4469 + components: + - pos: -8.5,23.5 + parent: 1 + type: Transform + - uid: 4470 + components: + - pos: -9.5,23.5 + parent: 1 + type: Transform + - uid: 4471 + components: + - pos: -10.5,23.5 + parent: 1 + type: Transform + - uid: 4472 + components: + - pos: -11.5,23.5 + parent: 1 + type: Transform + - uid: 4473 + components: + - pos: -12.5,23.5 + parent: 1 + type: Transform + - uid: 4474 + components: + - pos: -13.5,23.5 + parent: 1 + type: Transform + - uid: 4475 + components: + - pos: -13.5,24.5 + parent: 1 + type: Transform + - uid: 4476 + components: + - pos: -14.5,24.5 + parent: 1 + type: Transform + - uid: 4477 + components: + - pos: -15.5,24.5 + parent: 1 + type: Transform + - uid: 4478 + components: + - pos: -16.5,24.5 + parent: 1 + type: Transform + - uid: 4479 + components: + - pos: -19.5,23.5 + parent: 1 + type: Transform + - uid: 4480 + components: + - pos: -19.5,22.5 + parent: 1 + type: Transform + - uid: 4481 + components: + - pos: -19.5,21.5 + parent: 1 + type: Transform + - uid: 4482 + components: + - pos: -19.5,20.5 + parent: 1 + type: Transform + - uid: 4483 + components: + - pos: -19.5,19.5 + parent: 1 + type: Transform + - uid: 4484 + components: + - pos: -19.5,18.5 + parent: 1 + type: Transform + - uid: 4485 + components: + - pos: -20.5,18.5 + parent: 1 + type: Transform + - uid: 4486 + components: + - pos: -21.5,18.5 + parent: 1 + type: Transform + - uid: 4487 + components: + - pos: -22.5,18.5 + parent: 1 + type: Transform + - uid: 4488 + components: + - pos: -23.5,18.5 + parent: 1 + type: Transform + - uid: 4489 + components: + - pos: -24.5,18.5 + parent: 1 + type: Transform + - uid: 4490 + components: + - pos: -25.5,18.5 + parent: 1 + type: Transform + - uid: 4491 + components: + - pos: -26.5,18.5 + parent: 1 + type: Transform + - uid: 4492 + components: + - pos: -27.5,18.5 + parent: 1 + type: Transform + - uid: 4493 + components: + - pos: 10.5,18.5 + parent: 1 + type: Transform + - uid: 4494 + components: + - pos: 11.5,18.5 + parent: 1 + type: Transform + - uid: 4495 + components: + - pos: 12.5,18.5 + parent: 1 + type: Transform + - uid: 4496 + components: + - pos: 13.5,18.5 + parent: 1 + type: Transform + - uid: 4497 + components: + - pos: 14.5,18.5 + parent: 1 + type: Transform + - uid: 4498 + components: + - pos: 15.5,18.5 + parent: 1 + type: Transform + - uid: 4499 + components: + - pos: 16.5,18.5 + parent: 1 + type: Transform + - uid: 4500 + components: + - pos: 17.5,18.5 + parent: 1 + type: Transform + - uid: 4501 + components: + - pos: 18.5,18.5 + parent: 1 + type: Transform + - uid: 4502 + components: + - pos: 19.5,18.5 + parent: 1 + type: Transform + - uid: 4503 + components: + - pos: 20.5,18.5 + parent: 1 + type: Transform + - uid: 4504 + components: + - pos: 21.5,18.5 + parent: 1 + type: Transform + - uid: 4505 + components: + - pos: 22.5,18.5 + parent: 1 + type: Transform + - uid: 4506 + components: + - pos: 23.5,18.5 + parent: 1 + type: Transform + - uid: 4507 + components: + - pos: 24.5,18.5 + parent: 1 + type: Transform + - uid: 4508 + components: + - pos: 25.5,18.5 + parent: 1 + type: Transform + - uid: 4512 + components: + - pos: 22.5,21.5 + parent: 1 + type: Transform + - uid: 4513 + components: + - pos: 25.5,19.5 + parent: 1 + type: Transform + - uid: 4514 + components: + - pos: 25.5,20.5 + parent: 1 + type: Transform + - uid: 4515 + components: + - pos: 26.5,20.5 + parent: 1 + type: Transform + - uid: 4516 + components: + - pos: 27.5,20.5 + parent: 1 + type: Transform + - uid: 4517 + components: + - pos: 28.5,20.5 + parent: 1 + type: Transform + - uid: 4518 + components: + - pos: 29.5,20.5 + parent: 1 + type: Transform + - uid: 4519 + components: + - pos: 30.5,20.5 + parent: 1 + type: Transform + - uid: 4520 + components: + - pos: 31.5,20.5 + parent: 1 + type: Transform + - uid: 4521 + components: + - pos: 32.5,20.5 + parent: 1 + type: Transform + - uid: 4522 + components: + - pos: 33.5,20.5 + parent: 1 + type: Transform + - uid: 4523 + components: + - pos: 34.5,20.5 + parent: 1 + type: Transform + - uid: 4524 + components: + - pos: 35.5,20.5 + parent: 1 + type: Transform + - uid: 4525 + components: + - pos: 36.5,20.5 + parent: 1 + type: Transform + - uid: 4526 + components: + - pos: 36.5,19.5 + parent: 1 + type: Transform + - uid: 4527 + components: + - pos: 36.5,18.5 + parent: 1 + type: Transform + - uid: 4528 + components: + - pos: 36.5,17.5 + parent: 1 + type: Transform + - uid: 4529 + components: + - pos: 36.5,16.5 + parent: 1 + type: Transform + - uid: 4530 + components: + - pos: 37.5,16.5 + parent: 1 + type: Transform + - uid: 4531 + components: + - pos: 38.5,16.5 + parent: 1 + type: Transform + - uid: 4532 + components: + - pos: 39.5,16.5 + parent: 1 + type: Transform + - uid: 4533 + components: + - pos: 39.5,17.5 + parent: 1 + type: Transform + - uid: 4534 + components: + - pos: 39.5,18.5 + parent: 1 + type: Transform + - uid: 4535 + components: + - pos: 39.5,19.5 + parent: 1 + type: Transform + - uid: 4536 + components: + - pos: 40.5,19.5 + parent: 1 + type: Transform + - uid: 4537 + components: + - pos: 40.5,16.5 + parent: 1 + type: Transform + - uid: 4538 + components: + - pos: 41.5,16.5 + parent: 1 + type: Transform + - uid: 4539 + components: + - pos: 41.5,15.5 + parent: 1 + type: Transform + - uid: 4540 + components: + - pos: 41.5,14.5 + parent: 1 + type: Transform + - uid: 4541 + components: + - pos: 41.5,13.5 + parent: 1 + type: Transform + - uid: 4542 + components: + - pos: 41.5,12.5 + parent: 1 + type: Transform + - uid: 4543 + components: + - pos: 41.5,11.5 + parent: 1 + type: Transform + - uid: 4544 + components: + - pos: 41.5,10.5 + parent: 1 + type: Transform + - uid: 4545 + components: + - pos: 41.5,9.5 + parent: 1 + type: Transform + - uid: 4546 + components: + - pos: 41.5,8.5 + parent: 1 + type: Transform + - uid: 4547 + components: + - pos: 41.5,7.5 + parent: 1 + type: Transform + - uid: 4548 + components: + - pos: 40.5,7.5 + parent: 1 + type: Transform + - uid: 4549 + components: + - pos: 39.5,7.5 + parent: 1 + type: Transform + - uid: 4550 + components: + - pos: 38.5,7.5 + parent: 1 + type: Transform + - uid: 4551 + components: + - pos: 37.5,7.5 + parent: 1 + type: Transform + - uid: 4552 + components: + - pos: 36.5,7.5 + parent: 1 + type: Transform + - uid: 4553 + components: + - pos: 35.5,7.5 + parent: 1 + type: Transform + - uid: 4554 + components: + - pos: 35.5,6.5 + parent: 1 + type: Transform + - uid: 4555 + components: + - pos: 31.5,6.5 + parent: 1 + type: Transform + - uid: 4556 + components: + - pos: 32.5,6.5 + parent: 1 + type: Transform + - uid: 4557 + components: + - pos: 33.5,6.5 + parent: 1 + type: Transform + - uid: 4558 + components: + - pos: 34.5,6.5 + parent: 1 + type: Transform + - uid: 4559 + components: + - pos: 31.5,5.5 + parent: 1 + type: Transform + - uid: 4560 + components: + - pos: 31.5,4.5 + parent: 1 + type: Transform + - uid: 4561 + components: + - pos: 31.5,3.5 + parent: 1 + type: Transform + - uid: 4562 + components: + - pos: 31.5,2.5 + parent: 1 + type: Transform + - uid: 4563 + components: + - pos: 30.5,2.5 + parent: 1 + type: Transform + - uid: 4564 + components: + - pos: 29.5,2.5 + parent: 1 + type: Transform + - uid: 4565 + components: + - pos: 28.5,2.5 + parent: 1 + type: Transform + - uid: 4566 + components: + - pos: 27.5,2.5 + parent: 1 + type: Transform + - uid: 4567 + components: + - pos: 26.5,2.5 + parent: 1 + type: Transform + - uid: 4568 + components: + - pos: 25.5,2.5 + parent: 1 + type: Transform + - uid: 4569 + components: + - pos: 24.5,2.5 + parent: 1 + type: Transform + - uid: 4570 + components: + - pos: 23.5,2.5 + parent: 1 + type: Transform + - uid: 4571 + components: + - pos: 22.5,2.5 + parent: 1 + type: Transform + - uid: 4572 + components: + - pos: 21.5,2.5 + parent: 1 + type: Transform + - uid: 4573 + components: + - pos: 20.5,2.5 + parent: 1 + type: Transform + - uid: 4574 + components: + - pos: 19.5,2.5 + parent: 1 + type: Transform + - uid: 4575 + components: + - pos: 18.5,2.5 + parent: 1 + type: Transform + - uid: 4576 + components: + - pos: 17.5,2.5 + parent: 1 + type: Transform + - uid: 4577 + components: + - pos: 16.5,2.5 + parent: 1 + type: Transform + - uid: 4578 + components: + - pos: 15.5,2.5 + parent: 1 + type: Transform + - uid: 4579 + components: + - pos: 14.5,2.5 + parent: 1 + type: Transform + - uid: 4580 + components: + - pos: 13.5,2.5 + parent: 1 + type: Transform + - uid: 4581 + components: + - pos: 12.5,2.5 + parent: 1 + type: Transform + - uid: 4582 + components: + - pos: 11.5,2.5 + parent: 1 + type: Transform + - uid: 4583 + components: + - pos: 10.5,2.5 + parent: 1 + type: Transform + - uid: 4584 + components: + - pos: 9.5,2.5 + parent: 1 + type: Transform + - uid: 4585 + components: + - pos: 30.5,1.5 + parent: 1 + type: Transform + - uid: 4586 + components: + - pos: 30.5,0.5 + parent: 1 + type: Transform + - uid: 4587 + components: + - pos: 30.5,-0.5 + parent: 1 + type: Transform + - uid: 4588 + components: + - pos: 30.5,-1.5 + parent: 1 + type: Transform + - uid: 4589 + components: + - pos: 31.5,-1.5 + parent: 1 + type: Transform + - uid: 4590 + components: + - pos: 31.5,-2.5 + parent: 1 + type: Transform + - uid: 4591 + components: + - pos: 31.5,-3.5 + parent: 1 + type: Transform + - uid: 4592 + components: + - pos: 31.5,-4.5 + parent: 1 + type: Transform + - uid: 4593 + components: + - pos: 31.5,-5.5 + parent: 1 + type: Transform + - uid: 4594 + components: + - pos: 31.5,-6.5 + parent: 1 + type: Transform + - uid: 4595 + components: + - pos: 31.5,-7.5 + parent: 1 + type: Transform + - uid: 4596 + components: + - pos: 31.5,-8.5 + parent: 1 + type: Transform + - uid: 4597 + components: + - pos: 31.5,-9.5 + parent: 1 + type: Transform + - uid: 4598 + components: + - pos: 31.5,-10.5 + parent: 1 + type: Transform + - uid: 4599 + components: + - pos: 31.5,-11.5 + parent: 1 + type: Transform + - uid: 4600 + components: + - pos: 31.5,-12.5 + parent: 1 + type: Transform + - uid: 4601 + components: + - pos: 31.5,-13.5 + parent: 1 + type: Transform + - uid: 4602 + components: + - pos: 30.5,-13.5 + parent: 1 + type: Transform + - uid: 4603 + components: + - pos: 29.5,-13.5 + parent: 1 + type: Transform + - uid: 4604 + components: + - pos: 28.5,-13.5 + parent: 1 + type: Transform + - uid: 4605 + components: + - pos: 28.5,-14.5 + parent: 1 + type: Transform + - uid: 4606 + components: + - pos: 28.5,-15.5 + parent: 1 + type: Transform + - uid: 4607 + components: + - pos: 28.5,-16.5 + parent: 1 + type: Transform + - uid: 4608 + components: + - pos: 28.5,-17.5 + parent: 1 + type: Transform + - uid: 4609 + components: + - pos: 27.5,-17.5 + parent: 1 + type: Transform + - uid: 4610 + components: + - pos: 26.5,-17.5 + parent: 1 + type: Transform + - uid: 4611 + components: + - pos: 25.5,-17.5 + parent: 1 + type: Transform + - uid: 4612 + components: + - pos: 25.5,-18.5 + parent: 1 + type: Transform + - uid: 4613 + components: + - pos: 25.5,-19.5 + parent: 1 + type: Transform + - uid: 4614 + components: + - pos: 25.5,-20.5 + parent: 1 + type: Transform + - uid: 4615 + components: + - pos: 24.5,-20.5 + parent: 1 + type: Transform + - uid: 4616 + components: + - pos: 24.5,-17.5 + parent: 1 + type: Transform + - uid: 4617 + components: + - pos: 23.5,-17.5 + parent: 1 + type: Transform + - uid: 4618 + components: + - pos: 22.5,-17.5 + parent: 1 + type: Transform + - uid: 4619 + components: + - pos: 21.5,-17.5 + parent: 1 + type: Transform + - uid: 4620 + components: + - pos: 20.5,-17.5 + parent: 1 + type: Transform + - uid: 4621 + components: + - pos: 19.5,-17.5 + parent: 1 + type: Transform + - uid: 4622 + components: + - pos: 18.5,-17.5 + parent: 1 + type: Transform + - uid: 4623 + components: + - pos: 17.5,-17.5 + parent: 1 + type: Transform + - uid: 4624 + components: + - pos: 16.5,-17.5 + parent: 1 + type: Transform + - uid: 4625 + components: + - pos: 15.5,-17.5 + parent: 1 + type: Transform + - uid: 4626 + components: + - pos: 14.5,-17.5 + parent: 1 + type: Transform + - uid: 4627 + components: + - pos: 14.5,-16.5 + parent: 1 + type: Transform + - uid: 4628 + components: + - pos: 14.5,-15.5 + parent: 1 + type: Transform + - uid: 4629 + components: + - pos: 14.5,-14.5 + parent: 1 + type: Transform + - uid: 4630 + components: + - pos: 13.5,-14.5 + parent: 1 + type: Transform + - uid: 4631 + components: + - pos: 12.5,-14.5 + parent: 1 + type: Transform + - uid: 4632 + components: + - pos: 11.5,-14.5 + parent: 1 + type: Transform + - uid: 4633 + components: + - pos: 10.5,-14.5 + parent: 1 + type: Transform + - uid: 4634 + components: + - pos: 9.5,-14.5 + parent: 1 + type: Transform + - uid: 4635 + components: + - pos: 9.5,-13.5 + parent: 1 + type: Transform + - uid: 4636 + components: + - pos: 9.5,-12.5 + parent: 1 + type: Transform + - uid: 4637 + components: + - pos: 9.5,-11.5 + parent: 1 + type: Transform + - uid: 4638 + components: + - pos: 8.5,-11.5 + parent: 1 + type: Transform + - uid: 4639 + components: + - pos: 7.5,-11.5 + parent: 1 + type: Transform + - uid: 4640 + components: + - pos: 6.5,-11.5 + parent: 1 + type: Transform + - uid: 4641 + components: + - pos: 5.5,-11.5 + parent: 1 + type: Transform + - uid: 4642 + components: + - pos: 4.5,-11.5 + parent: 1 + type: Transform + - uid: 4643 + components: + - pos: 3.5,-11.5 + parent: 1 + type: Transform + - uid: 4644 + components: + - pos: 2.5,-11.5 + parent: 1 + type: Transform + - uid: 4645 + components: + - pos: 1.5,-11.5 + parent: 1 + type: Transform + - uid: 4646 + components: + - pos: 0.5,-11.5 + parent: 1 + type: Transform + - uid: 4647 + components: + - pos: -0.5,-11.5 + parent: 1 + type: Transform + - uid: 4648 + components: + - pos: -1.5,-11.5 + parent: 1 + type: Transform + - uid: 4649 + components: + - pos: -2.5,-11.5 + parent: 1 + type: Transform + - uid: 4650 + components: + - pos: -2.5,-12.5 + parent: 1 + type: Transform + - uid: 4651 + components: + - pos: -2.5,-13.5 + parent: 1 + type: Transform + - uid: 4652 + components: + - pos: -2.5,-14.5 + parent: 1 + type: Transform + - uid: 4653 + components: + - pos: -2.5,-15.5 + parent: 1 + type: Transform + - uid: 4654 + components: + - pos: -2.5,-16.5 + parent: 1 + type: Transform + - uid: 4655 + components: + - pos: -2.5,-17.5 + parent: 1 + type: Transform + - uid: 4656 + components: + - pos: -3.5,-17.5 + parent: 1 + type: Transform + - uid: 4657 + components: + - pos: -4.5,-17.5 + parent: 1 + type: Transform + - uid: 4658 + components: + - pos: -5.5,-17.5 + parent: 1 + type: Transform + - uid: 4659 + components: + - pos: -6.5,-17.5 + parent: 1 + type: Transform + - uid: 4660 + components: + - pos: -7.5,-17.5 + parent: 1 + type: Transform + - uid: 4661 + components: + - pos: -7.5,-18.5 + parent: 1 + type: Transform + - uid: 4662 + components: + - pos: -7.5,-19.5 + parent: 1 + type: Transform + - uid: 4663 + components: + - pos: -7.5,-20.5 + parent: 1 + type: Transform + - uid: 4664 + components: + - pos: -8.5,-18.5 + parent: 1 + type: Transform + - uid: 4665 + components: + - pos: -9.5,-18.5 + parent: 1 + type: Transform + - uid: 4666 + components: + - pos: -10.5,-18.5 + parent: 1 + type: Transform + - uid: 4667 + components: + - pos: -11.5,-18.5 + parent: 1 + type: Transform + - uid: 4668 + components: + - pos: -11.5,-19.5 + parent: 1 + type: Transform + - uid: 4669 + components: + - pos: -11.5,-20.5 + parent: 1 + type: Transform + - uid: 4670 + components: + - pos: -11.5,-21.5 + parent: 1 + type: Transform + - uid: 4671 + components: + - pos: -12.5,-21.5 + parent: 1 + type: Transform + - uid: 4672 + components: + - pos: -13.5,-21.5 + parent: 1 + type: Transform + - uid: 4673 + components: + - pos: -14.5,-21.5 + parent: 1 + type: Transform + - uid: 4674 + components: + - pos: -15.5,-21.5 + parent: 1 + type: Transform + - uid: 4675 + components: + - pos: -16.5,-21.5 + parent: 1 + type: Transform + - uid: 4676 + components: + - pos: -17.5,-21.5 + parent: 1 + type: Transform + - uid: 4677 + components: + - pos: -18.5,-21.5 + parent: 1 + type: Transform + - uid: 4678 + components: + - pos: -19.5,-21.5 + parent: 1 + type: Transform + - uid: 4679 + components: + - pos: -20.5,-21.5 + parent: 1 + type: Transform + - uid: 4680 + components: + - pos: -21.5,-21.5 + parent: 1 + type: Transform + - uid: 4681 + components: + - pos: -22.5,-21.5 + parent: 1 + type: Transform + - uid: 4682 + components: + - pos: -22.5,-22.5 + parent: 1 + type: Transform + - uid: 4683 + components: + - pos: -23.5,-22.5 + parent: 1 + type: Transform + - uid: 4684 + components: + - pos: -24.5,-22.5 + parent: 1 + type: Transform + - uid: 4685 + components: + - pos: -25.5,-22.5 + parent: 1 + type: Transform + - uid: 4686 + components: + - pos: -26.5,-22.5 + parent: 1 + type: Transform + - uid: 4687 + components: + - pos: -27.5,-22.5 + parent: 1 + type: Transform + - uid: 4688 + components: + - pos: -27.5,-21.5 + parent: 1 + type: Transform + - uid: 4689 + components: + - pos: -27.5,-20.5 + parent: 1 + type: Transform + - uid: 4690 + components: + - pos: -28.5,-20.5 + parent: 1 + type: Transform + - uid: 4691 + components: + - pos: -29.5,-20.5 + parent: 1 + type: Transform + - uid: 4692 + components: + - pos: -30.5,1.5 + parent: 1 + type: Transform + - uid: 4693 + components: + - pos: -30.5,0.5 + parent: 1 + type: Transform + - uid: 4694 + components: + - pos: -30.5,-0.5 + parent: 1 + type: Transform + - uid: 4695 + components: + - pos: -30.5,-1.5 + parent: 1 + type: Transform + - uid: 4696 + components: + - pos: -31.5,-1.5 + parent: 1 + type: Transform + - uid: 4697 + components: + - pos: -32.5,-1.5 + parent: 1 + type: Transform + - uid: 4698 + components: + - pos: -33.5,-1.5 + parent: 1 + type: Transform + - uid: 4699 + components: + - pos: -34.5,-1.5 + parent: 1 + type: Transform + - uid: 4700 + components: + - pos: -34.5,-2.5 + parent: 1 + type: Transform + - uid: 4701 + components: + - pos: -34.5,-3.5 + parent: 1 + type: Transform + - uid: 4702 + components: + - pos: -34.5,-4.5 + parent: 1 + type: Transform + - uid: 4703 + components: + - pos: -34.5,-5.5 + parent: 1 + type: Transform + - uid: 4704 + components: + - pos: -34.5,-6.5 + parent: 1 + type: Transform + - uid: 4705 + components: + - pos: -34.5,-7.5 + parent: 1 + type: Transform + - uid: 4706 + components: + - pos: -34.5,-8.5 + parent: 1 + type: Transform + - uid: 4707 + components: + - pos: -34.5,-9.5 + parent: 1 + type: Transform + - uid: 4708 + components: + - pos: -34.5,-10.5 + parent: 1 + type: Transform + - uid: 4709 + components: + - pos: -34.5,-11.5 + parent: 1 + type: Transform + - uid: 4710 + components: + - pos: -34.5,-12.5 + parent: 1 + type: Transform + - uid: 4711 + components: + - pos: -35.5,-12.5 + parent: 1 + type: Transform + - uid: 4712 + components: + - pos: -36.5,-12.5 + parent: 1 + type: Transform + - uid: 4713 + components: + - pos: -37.5,-12.5 + parent: 1 + type: Transform + - uid: 4714 + components: + - pos: -38.5,-12.5 + parent: 1 + type: Transform + - uid: 4715 + components: + - pos: -38.5,-13.5 + parent: 1 + type: Transform + - uid: 4716 + components: + - pos: -38.5,-14.5 + parent: 1 + type: Transform + - uid: 4717 + components: + - pos: -38.5,-15.5 + parent: 1 + type: Transform + - uid: 4718 + components: + - pos: -38.5,-16.5 + parent: 1 + type: Transform + - uid: 4719 + components: + - pos: -38.5,-17.5 + parent: 1 + type: Transform + - uid: 4720 + components: + - pos: -38.5,-18.5 + parent: 1 + type: Transform + - uid: 4721 + components: + - pos: -38.5,-19.5 + parent: 1 + type: Transform + - uid: 4722 + components: + - pos: -38.5,-20.5 + parent: 1 + type: Transform + - uid: 4723 + components: + - pos: -37.5,-20.5 + parent: 1 + type: Transform + - uid: 4724 + components: + - pos: -36.5,-20.5 + parent: 1 + type: Transform + - uid: 4725 + components: + - pos: -35.5,-20.5 + parent: 1 + type: Transform + - uid: 4726 + components: + - pos: -34.5,-20.5 + parent: 1 + type: Transform + - uid: 4727 + components: + - pos: -33.5,-20.5 + parent: 1 + type: Transform + - uid: 4728 + components: + - pos: -32.5,-20.5 + parent: 1 + type: Transform + - uid: 4729 + components: + - pos: -31.5,-20.5 + parent: 1 + type: Transform + - uid: 4731 + components: + - pos: -38.5,19.5 + parent: 1 + type: Transform + - uid: 4732 + components: + - pos: -39.5,19.5 + parent: 1 + type: Transform + - uid: 4733 + components: + - pos: -40.5,19.5 + parent: 1 + type: Transform + - uid: 4734 + components: + - pos: -11.5,-22.5 + parent: 1 + type: Transform + - uid: 4735 + components: + - pos: -10.5,-22.5 + parent: 1 + type: Transform + - uid: 4736 + components: + - pos: -9.5,-22.5 + parent: 1 + type: Transform + - uid: 4737 + components: + - pos: -8.5,-22.5 + parent: 1 + type: Transform + - uid: 4738 + components: + - pos: -7.5,-22.5 + parent: 1 + type: Transform + - uid: 4739 + components: + - pos: 1.5,-10.5 + parent: 1 + type: Transform + - uid: 4740 + components: + - pos: 1.5,-9.5 + parent: 1 + type: Transform + - uid: 4741 + components: + - pos: 1.5,-8.5 + parent: 1 + type: Transform + - uid: 4742 + components: + - pos: 2.5,-8.5 + parent: 1 + type: Transform + - uid: 4743 + components: + - pos: 3.5,-8.5 + parent: 1 + type: Transform + - uid: 4744 + components: + - pos: 4.5,-8.5 + parent: 1 + type: Transform + - uid: 4745 + components: + - pos: 5.5,-8.5 + parent: 1 + type: Transform + - uid: 4746 + components: + - pos: 6.5,-8.5 + parent: 1 + type: Transform + - uid: 4747 + components: + - pos: 7.5,-8.5 + parent: 1 + type: Transform + - uid: 4748 + components: + - pos: 8.5,-8.5 + parent: 1 + type: Transform + - uid: 4749 + components: + - pos: 8.5,-7.5 + parent: 1 + type: Transform + - uid: 4750 + components: + - pos: 0.5,-8.5 + parent: 1 + type: Transform + - uid: 4751 + components: + - pos: -0.5,-8.5 + parent: 1 + type: Transform + - uid: 4752 + components: + - pos: -1.5,-8.5 + parent: 1 + type: Transform + - uid: 4753 + components: + - pos: -2.5,-8.5 + parent: 1 + type: Transform + - uid: 4754 + components: + - pos: -3.5,-8.5 + parent: 1 + type: Transform + - uid: 4755 + components: + - pos: -4.5,-8.5 + parent: 1 + type: Transform + - uid: 4756 + components: + - pos: -5.5,-8.5 + parent: 1 + type: Transform + - uid: 4757 + components: + - pos: -5.5,-7.5 + parent: 1 + type: Transform + - uid: 4758 + components: + - pos: -5.5,-6.5 + parent: 1 + type: Transform + - uid: 4759 + components: + - pos: -5.5,-5.5 + parent: 1 + type: Transform + - uid: 4760 + components: + - pos: -5.5,-4.5 + parent: 1 + type: Transform + - uid: 4761 + components: + - pos: -5.5,-3.5 + parent: 1 + type: Transform + - uid: 4762 + components: + - pos: -5.5,-2.5 + parent: 1 + type: Transform + - uid: 4763 + components: + - pos: -5.5,-1.5 + parent: 1 + type: Transform + - uid: 4764 + components: + - pos: -5.5,-0.5 + parent: 1 + type: Transform + - uid: 4765 + components: + - pos: -5.5,0.5 + parent: 1 + type: Transform + - uid: 4766 + components: + - pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 4767 + components: + - pos: -13.5,31.5 + parent: 1 + type: Transform + - uid: 4768 + components: + - pos: -13.5,32.5 + parent: 1 + type: Transform + - uid: 4769 + components: + - pos: -11.5,31.5 + parent: 1 + type: Transform + - uid: 4770 + components: + - pos: -11.5,32.5 + parent: 1 + type: Transform + - uid: 4771 + components: + - pos: -10.5,32.5 + parent: 1 + type: Transform + - uid: 4772 + components: + - pos: -9.5,32.5 + parent: 1 + type: Transform + - uid: 4773 + components: + - pos: -8.5,32.5 + parent: 1 + type: Transform + - uid: 4774 + components: + - pos: -7.5,32.5 + parent: 1 + type: Transform + - uid: 4775 + components: + - pos: -7.5,31.5 + parent: 1 + type: Transform + - uid: 4776 + components: + - pos: -5.5,30.5 + parent: 1 + type: Transform + - uid: 4777 + components: + - pos: -5.5,31.5 + parent: 1 + type: Transform + - uid: 4778 + components: + - pos: -5.5,32.5 + parent: 1 + type: Transform + - uid: 4779 + components: + - pos: -6.5,32.5 + parent: 1 + type: Transform + - uid: 4780 + components: + - pos: -4.5,32.5 + parent: 1 + type: Transform + - uid: 4781 + components: + - pos: -4.5,33.5 + parent: 1 + type: Transform + - uid: 4782 + components: + - pos: -3.5,33.5 + parent: 1 + type: Transform + - uid: 4783 + components: + - pos: -2.5,33.5 + parent: 1 + type: Transform + - uid: 4784 + components: + - pos: -1.5,33.5 + parent: 1 + type: Transform + - uid: 4785 + components: + - pos: -0.5,33.5 + parent: 1 + type: Transform + - uid: 4786 + components: + - pos: 0.5,33.5 + parent: 1 + type: Transform + - uid: 4787 + components: + - pos: 0.5,32.5 + parent: 1 + type: Transform + - uid: 4788 + components: + - pos: 1.5,32.5 + parent: 1 + type: Transform + - uid: 4789 + components: + - pos: 1.5,31.5 + parent: 1 + type: Transform + - uid: 4790 + components: + - pos: 1.5,30.5 + parent: 1 + type: Transform + - uid: 4791 + components: + - pos: 2.5,28.5 + parent: 1 + type: Transform + - uid: 4792 + components: + - pos: 3.5,28.5 + parent: 1 + type: Transform + - uid: 4793 + components: + - pos: 4.5,28.5 + parent: 1 + type: Transform + - uid: 4794 + components: + - pos: 4.5,29.5 + parent: 1 + type: Transform + - uid: 4795 + components: + - pos: 4.5,30.5 + parent: 1 + type: Transform + - uid: 4796 + components: + - pos: 4.5,31.5 + parent: 1 + type: Transform + - uid: 4797 + components: + - pos: 4.5,32.5 + parent: 1 + type: Transform + - uid: 4798 + components: + - pos: 3.5,32.5 + parent: 1 + type: Transform + - uid: 4799 + components: + - pos: 5.5,32.5 + parent: 1 + type: Transform + - uid: 4800 + components: + - pos: 2.5,32.5 + parent: 1 + type: Transform + - uid: 4925 + components: + - pos: 19.5,-13.5 + parent: 1 + type: Transform + - uid: 5105 + components: + - pos: 22.5,20.5 + parent: 1 + type: Transform + - uid: 5106 + components: + - pos: 22.5,19.5 + parent: 1 + type: Transform + - uid: 7549 + components: + - pos: -41.5,19.5 + parent: 1 + type: Transform + - uid: 7550 + components: + - pos: -41.5,20.5 + parent: 1 + type: Transform + - uid: 7551 + components: + - pos: -41.5,21.5 + parent: 1 + type: Transform + - uid: 7552 + components: + - pos: -41.5,22.5 + parent: 1 + type: Transform + - uid: 7553 + components: + - pos: -41.5,23.5 + parent: 1 + type: Transform + - uid: 7554 + components: + - pos: -40.5,23.5 + parent: 1 + type: Transform +- proto: CableHVStack + entities: + - uid: 3980 + components: + - pos: -2.6973429,44.73459 + parent: 1 + type: Transform + - uid: 7641 + components: + - pos: -41.50761,19.420443 + parent: 1 + type: Transform + - uid: 8227 + components: + - pos: -5.5320415,-20.244713 + parent: 1 + type: Transform + - uid: 9656 + components: + - pos: 12.8484125,23.642334 + parent: 1 + type: Transform +- proto: CableMV + entities: + - uid: 1944 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 2849 + components: + - pos: -11.5,-50.5 + parent: 1 + type: Transform + - uid: 2850 + components: + - pos: -11.5,-51.5 + parent: 1 + type: Transform + - uid: 2874 + components: + - pos: -11.5,-49.5 + parent: 1 + type: Transform + - uid: 2875 + components: + - pos: -10.5,-49.5 + parent: 1 + type: Transform + - uid: 3358 + components: + - pos: 22.5,15.5 + parent: 1 + type: Transform + - uid: 3681 + components: + - pos: -0.5,44.5 + parent: 1 + type: Transform + - uid: 3682 + components: + - pos: -1.5,44.5 + parent: 1 + type: Transform + - uid: 3683 + components: + - pos: -2.5,44.5 + parent: 1 + type: Transform + - uid: 3684 + components: + - pos: -2.5,43.5 + parent: 1 + type: Transform + - uid: 3688 + components: + - pos: -2.5,45.5 + parent: 1 + type: Transform + - uid: 3689 + components: + - pos: -3.5,45.5 + parent: 1 + type: Transform + - uid: 3690 + components: + - pos: -4.5,45.5 + parent: 1 + type: Transform + - uid: 3691 + components: + - pos: -5.5,45.5 + parent: 1 + type: Transform + - uid: 3692 + components: + - pos: -6.5,45.5 + parent: 1 + type: Transform + - uid: 3693 + components: + - pos: -6.5,46.5 + parent: 1 + type: Transform + - uid: 3694 + components: + - pos: -6.5,47.5 + parent: 1 + type: Transform + - uid: 3695 + components: + - pos: -6.5,48.5 + parent: 1 + type: Transform + - uid: 3696 + components: + - pos: -6.5,49.5 + parent: 1 + type: Transform + - uid: 3697 + components: + - pos: -5.5,49.5 + parent: 1 + type: Transform + - uid: 3698 + components: + - pos: -4.5,49.5 + parent: 1 + type: Transform + - uid: 3699 + components: + - pos: -4.5,50.5 + parent: 1 + type: Transform + - uid: 3700 + components: + - pos: -4.5,51.5 + parent: 1 + type: Transform + - uid: 3701 + components: + - pos: -4.5,52.5 + parent: 1 + type: Transform + - uid: 3702 + components: + - pos: -4.5,53.5 + parent: 1 + type: Transform + - uid: 3703 + components: + - pos: -4.5,54.5 + parent: 1 + type: Transform + - uid: 3704 + components: + - pos: -4.5,55.5 + parent: 1 + type: Transform + - uid: 3705 + components: + - pos: -5.5,55.5 + parent: 1 + type: Transform + - uid: 3706 + components: + - pos: -6.5,55.5 + parent: 1 + type: Transform + - uid: 3707 + components: + - pos: -6.5,56.5 + parent: 1 + type: Transform + - uid: 3708 + components: + - pos: -6.5,57.5 + parent: 1 + type: Transform + - uid: 3709 + components: + - pos: -3.5,52.5 + parent: 1 + type: Transform + - uid: 3710 + components: + - pos: -2.5,52.5 + parent: 1 + type: Transform + - uid: 3711 + components: + - pos: -1.5,52.5 + parent: 1 + type: Transform + - uid: 3712 + components: + - pos: -0.5,52.5 + parent: 1 + type: Transform + - uid: 3713 + components: + - pos: 0.5,52.5 + parent: 1 + type: Transform + - uid: 3714 + components: + - pos: 1.5,52.5 + parent: 1 + type: Transform + - uid: 3715 + components: + - pos: 2.5,52.5 + parent: 1 + type: Transform + - uid: 3716 + components: + - pos: 3.5,52.5 + parent: 1 + type: Transform + - uid: 3717 + components: + - pos: 4.5,52.5 + parent: 1 + type: Transform + - uid: 3767 + components: + - pos: -6.5,44.5 + parent: 1 + type: Transform + - uid: 3768 + components: + - pos: -6.5,43.5 + parent: 1 + type: Transform + - uid: 4138 + components: + - pos: -14.5,31.5 + parent: 1 + type: Transform + - uid: 4139 + components: + - pos: -14.5,30.5 + parent: 1 + type: Transform + - uid: 4140 + components: + - pos: -13.5,30.5 + parent: 1 + type: Transform + - uid: 4141 + components: + - pos: -12.5,30.5 + parent: 1 + type: Transform + - uid: 4142 + components: + - pos: -12.5,29.5 + parent: 1 + type: Transform + - uid: 4143 + components: + - pos: -11.5,30.5 + parent: 1 + type: Transform + - uid: 4144 + components: + - pos: -10.5,30.5 + parent: 1 + type: Transform + - uid: 4145 + components: + - pos: -9.5,30.5 + parent: 1 + type: Transform + - uid: 4146 + components: + - pos: -8.5,30.5 + parent: 1 + type: Transform + - uid: 4147 + components: + - pos: -7.5,30.5 + parent: 1 + type: Transform + - uid: 4148 + components: + - pos: -7.5,29.5 + parent: 1 + type: Transform + - uid: 4149 + components: + - pos: -6.5,29.5 + parent: 1 + type: Transform + - uid: 4150 + components: + - pos: -5.5,29.5 + parent: 1 + type: Transform + - uid: 4151 + components: + - pos: -4.5,29.5 + parent: 1 + type: Transform + - uid: 4152 + components: + - pos: -3.5,29.5 + parent: 1 + type: Transform + - uid: 4153 + components: + - pos: -2.5,29.5 + parent: 1 + type: Transform + - uid: 4154 + components: + - pos: -1.5,29.5 + parent: 1 + type: Transform + - uid: 4155 + components: + - pos: -0.5,29.5 + parent: 1 + type: Transform + - uid: 4156 + components: + - pos: -0.5,28.5 + parent: 1 + type: Transform + - uid: 4157 + components: + - pos: -0.5,27.5 + parent: 1 + type: Transform + - uid: 4158 + components: + - pos: -0.5,26.5 + parent: 1 + type: Transform + - uid: 4159 + components: + - pos: 0.5,29.5 + parent: 1 + type: Transform + - uid: 4160 + components: + - pos: 1.5,29.5 + parent: 1 + type: Transform + - uid: 4161 + components: + - pos: 1.5,28.5 + parent: 1 + type: Transform + - uid: 4162 + components: + - pos: 1.5,27.5 + parent: 1 + type: Transform + - uid: 4163 + components: + - pos: 1.5,26.5 + parent: 1 + type: Transform + - uid: 4164 + components: + - pos: 1.5,25.5 + parent: 1 + type: Transform + - uid: 4165 + components: + - pos: 1.5,24.5 + parent: 1 + type: Transform + - uid: 4166 + components: + - pos: 1.5,23.5 + parent: 1 + type: Transform + - uid: 4167 + components: + - pos: 1.5,22.5 + parent: 1 + type: Transform + - uid: 4509 + components: + - pos: 22.5,21.5 + parent: 1 + type: Transform + - uid: 4511 + components: + - pos: 22.5,19.5 + parent: 1 + type: Transform + - uid: 5101 + components: + - pos: 22.5,21.5 + parent: 1 + type: Transform + - uid: 5102 + components: + - pos: 22.5,18.5 + parent: 1 + type: Transform + - uid: 5103 + components: + - pos: 22.5,20.5 + parent: 1 + type: Transform + - uid: 5104 + components: + - pos: 22.5,16.5 + parent: 1 + type: Transform + - uid: 5107 + components: + - pos: 22.5,17.5 + parent: 1 + type: Transform + - uid: 5108 + components: + - pos: 21.5,15.5 + parent: 1 + type: Transform + - uid: 5109 + components: + - pos: 21.5,14.5 + parent: 1 + type: Transform + - uid: 5110 + components: + - pos: 21.5,13.5 + parent: 1 + type: Transform + - uid: 5111 + components: + - pos: 21.5,12.5 + parent: 1 + type: Transform + - uid: 5112 + components: + - pos: 21.5,11.5 + parent: 1 + type: Transform + - uid: 5113 + components: + - pos: 21.5,10.5 + parent: 1 + type: Transform + - uid: 5114 + components: + - pos: 24.5,9.5 + parent: 1 + type: Transform + - uid: 5115 + components: + - pos: 25.5,9.5 + parent: 1 + type: Transform + - uid: 5116 + components: + - pos: 26.5,9.5 + parent: 1 + type: Transform + - uid: 5117 + components: + - pos: 27.5,9.5 + parent: 1 + type: Transform + - uid: 5118 + components: + - pos: 26.5,10.5 + parent: 1 + type: Transform + - uid: 5119 + components: + - pos: 26.5,11.5 + parent: 1 + type: Transform + - uid: 5120 + components: + - pos: 23.5,9.5 + parent: 1 + type: Transform + - uid: 5121 + components: + - pos: 22.5,9.5 + parent: 1 + type: Transform + - uid: 5122 + components: + - pos: 21.5,9.5 + parent: 1 + type: Transform + - uid: 5123 + components: + - pos: 20.5,9.5 + parent: 1 + type: Transform + - uid: 5124 + components: + - pos: 19.5,9.5 + parent: 1 + type: Transform + - uid: 5125 + components: + - pos: 18.5,9.5 + parent: 1 + type: Transform + - uid: 5126 + components: + - pos: 17.5,9.5 + parent: 1 + type: Transform + - uid: 5127 + components: + - pos: 13.5,10.5 + parent: 1 + type: Transform + - uid: 5128 + components: + - pos: 13.5,11.5 + parent: 1 + type: Transform + - uid: 5129 + components: + - pos: 28.5,9.5 + parent: 1 + type: Transform + - uid: 5130 + components: + - pos: 29.5,9.5 + parent: 1 + type: Transform + - uid: 5131 + components: + - pos: 32.5,10.5 + parent: 1 + type: Transform + - uid: 5132 + components: + - pos: 30.5,9.5 + parent: 1 + type: Transform + - uid: 5133 + components: + - pos: 31.5,9.5 + parent: 1 + type: Transform + - uid: 5134 + components: + - pos: 32.5,9.5 + parent: 1 + type: Transform + - uid: 5135 + components: + - pos: 32.5,11.5 + parent: 1 + type: Transform + - uid: 5136 + components: + - pos: 32.5,12.5 + parent: 1 + type: Transform + - uid: 5137 + components: + - pos: 32.5,13.5 + parent: 1 + type: Transform + - uid: 5138 + components: + - pos: 32.5,14.5 + parent: 1 + type: Transform + - uid: 5139 + components: + - pos: 32.5,15.5 + parent: 1 + type: Transform + - uid: 5140 + components: + - pos: 32.5,16.5 + parent: 1 + type: Transform + - uid: 5141 + components: + - pos: 32.5,17.5 + parent: 1 + type: Transform + - uid: 5142 + components: + - pos: 32.5,18.5 + parent: 1 + type: Transform + - uid: 5143 + components: + - pos: 32.5,19.5 + parent: 1 + type: Transform + - uid: 5144 + components: + - pos: 32.5,20.5 + parent: 1 + type: Transform + - uid: 5145 + components: + - pos: 32.5,21.5 + parent: 1 + type: Transform + - uid: 5146 + components: + - pos: 32.5,22.5 + parent: 1 + type: Transform + - uid: 5147 + components: + - pos: 32.5,23.5 + parent: 1 + type: Transform + - uid: 5148 + components: + - pos: 32.5,24.5 + parent: 1 + type: Transform + - uid: 5149 + components: + - pos: 32.5,25.5 + parent: 1 + type: Transform + - uid: 5150 + components: + - pos: 32.5,26.5 + parent: 1 + type: Transform + - uid: 5151 + components: + - pos: 32.5,27.5 + parent: 1 + type: Transform + - uid: 5152 + components: + - pos: 33.5,27.5 + parent: 1 + type: Transform + - uid: 5153 + components: + - pos: 34.5,27.5 + parent: 1 + type: Transform + - uid: 5154 + components: + - pos: 33.5,17.5 + parent: 1 + type: Transform + - uid: 5155 + components: + - pos: 34.5,17.5 + parent: 1 + type: Transform + - uid: 5297 + components: + - pos: 16.5,9.5 + parent: 1 + type: Transform + - uid: 5298 + components: + - pos: 15.5,9.5 + parent: 1 + type: Transform + - uid: 5299 + components: + - pos: 14.5,9.5 + parent: 1 + type: Transform + - uid: 5300 + components: + - pos: 13.5,9.5 + parent: 1 + type: Transform + - uid: 5703 + components: + - pos: -20.5,26.5 + parent: 1 + type: Transform + - uid: 5704 + components: + - pos: -19.5,26.5 + parent: 1 + type: Transform + - uid: 5705 + components: + - pos: -19.5,25.5 + parent: 1 + type: Transform + - uid: 5706 + components: + - pos: -19.5,24.5 + parent: 1 + type: Transform + - uid: 5707 + components: + - pos: -18.5,24.5 + parent: 1 + type: Transform + - uid: 5708 + components: + - pos: -17.5,24.5 + parent: 1 + type: Transform + - uid: 5709 + components: + - pos: -16.5,24.5 + parent: 1 + type: Transform + - uid: 5710 + components: + - pos: -15.5,24.5 + parent: 1 + type: Transform + - uid: 5711 + components: + - pos: -14.5,24.5 + parent: 1 + type: Transform + - uid: 5712 + components: + - pos: -13.5,24.5 + parent: 1 + type: Transform + - uid: 5713 + components: + - pos: -13.5,23.5 + parent: 1 + type: Transform + - uid: 5714 + components: + - pos: -13.5,22.5 + parent: 1 + type: Transform + - uid: 5715 + components: + - pos: -13.5,21.5 + parent: 1 + type: Transform + - uid: 5716 + components: + - pos: -13.5,20.5 + parent: 1 + type: Transform + - uid: 5717 + components: + - pos: -13.5,19.5 + parent: 1 + type: Transform + - uid: 5718 + components: + - pos: -14.5,19.5 + parent: 1 + type: Transform + - uid: 5719 + components: + - pos: -15.5,19.5 + parent: 1 + type: Transform + - uid: 5720 + components: + - pos: -16.5,19.5 + parent: 1 + type: Transform + - uid: 5721 + components: + - pos: -14.5,18.5 + parent: 1 + type: Transform + - uid: 5722 + components: + - pos: -14.5,17.5 + parent: 1 + type: Transform + - uid: 5723 + components: + - pos: -16.5,18.5 + parent: 1 + type: Transform + - uid: 5724 + components: + - pos: -16.5,17.5 + parent: 1 + type: Transform + - uid: 5725 + components: + - pos: -16.5,16.5 + parent: 1 + type: Transform + - uid: 5726 + components: + - pos: -16.5,15.5 + parent: 1 + type: Transform + - uid: 5727 + components: + - pos: -16.5,14.5 + parent: 1 + type: Transform + - uid: 5728 + components: + - pos: -16.5,13.5 + parent: 1 + type: Transform + - uid: 5729 + components: + - pos: -16.5,12.5 + parent: 1 + type: Transform + - uid: 5730 + components: + - pos: -16.5,11.5 + parent: 1 + type: Transform + - uid: 5731 + components: + - pos: -15.5,13.5 + parent: 1 + type: Transform + - uid: 5732 + components: + - pos: -14.5,13.5 + parent: 1 + type: Transform + - uid: 5733 + components: + - pos: -16.5,10.5 + parent: 1 + type: Transform + - uid: 5734 + components: + - pos: -17.5,10.5 + parent: 1 + type: Transform + - uid: 5735 + components: + - pos: -18.5,10.5 + parent: 1 + type: Transform + - uid: 5736 + components: + - pos: -19.5,10.5 + parent: 1 + type: Transform + - uid: 5737 + components: + - pos: -20.5,10.5 + parent: 1 + type: Transform + - uid: 5738 + components: + - pos: -21.5,10.5 + parent: 1 + type: Transform + - uid: 5739 + components: + - pos: -22.5,10.5 + parent: 1 + type: Transform + - uid: 5740 + components: + - pos: -23.5,10.5 + parent: 1 + type: Transform + - uid: 5741 + components: + - pos: -24.5,10.5 + parent: 1 + type: Transform + - uid: 5742 + components: + - pos: -24.5,11.5 + parent: 1 + type: Transform + - uid: 5743 + components: + - pos: -24.5,12.5 + parent: 1 + type: Transform + - uid: 5752 + components: + - pos: -15.5,10.5 + parent: 1 + type: Transform + - uid: 5753 + components: + - pos: -14.5,10.5 + parent: 1 + type: Transform + - uid: 5754 + components: + - pos: -13.5,10.5 + parent: 1 + type: Transform + - uid: 5755 + components: + - pos: -12.5,10.5 + parent: 1 + type: Transform + - uid: 5756 + components: + - pos: -11.5,10.5 + parent: 1 + type: Transform + - uid: 5757 + components: + - pos: -11.5,9.5 + parent: 1 + type: Transform + - uid: 5758 + components: + - pos: -11.5,8.5 + parent: 1 + type: Transform + - uid: 5759 + components: + - pos: -11.5,7.5 + parent: 1 + type: Transform + - uid: 5760 + components: + - pos: -10.5,7.5 + parent: 1 + type: Transform + - uid: 6180 + components: + - pos: 10.5,21.5 + parent: 1 + type: Transform + - uid: 6181 + components: + - pos: 10.5,20.5 + parent: 1 + type: Transform + - uid: 6182 + components: + - pos: 10.5,19.5 + parent: 1 + type: Transform + - uid: 6183 + components: + - pos: 9.5,19.5 + parent: 1 + type: Transform + - uid: 6184 + components: + - pos: 8.5,19.5 + parent: 1 + type: Transform + - uid: 6185 + components: + - pos: 8.5,18.5 + parent: 1 + type: Transform + - uid: 6186 + components: + - pos: 8.5,17.5 + parent: 1 + type: Transform + - uid: 6187 + components: + - pos: 8.5,16.5 + parent: 1 + type: Transform + - uid: 6188 + components: + - pos: 8.5,15.5 + parent: 1 + type: Transform + - uid: 6189 + components: + - pos: 8.5,14.5 + parent: 1 + type: Transform + - uid: 6190 + components: + - pos: 8.5,13.5 + parent: 1 + type: Transform + - uid: 6191 + components: + - pos: 8.5,12.5 + parent: 1 + type: Transform + - uid: 6192 + components: + - pos: 8.5,11.5 + parent: 1 + type: Transform + - uid: 6193 + components: + - pos: 8.5,10.5 + parent: 1 + type: Transform + - uid: 6194 + components: + - pos: 8.5,9.5 + parent: 1 + type: Transform + - uid: 6195 + components: + - pos: 8.5,8.5 + parent: 1 + type: Transform + - uid: 6196 + components: + - pos: 7.5,8.5 + parent: 1 + type: Transform + - uid: 6197 + components: + - pos: 6.5,8.5 + parent: 1 + type: Transform + - uid: 6198 + components: + - pos: 5.5,8.5 + parent: 1 + type: Transform + - uid: 6199 + components: + - pos: 4.5,8.5 + parent: 1 + type: Transform + - uid: 6205 + components: + - pos: -0.5,7.5 + parent: 1 + type: Transform + - uid: 6209 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 6210 + components: + - pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 6211 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 6212 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 6213 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 6214 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 6215 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 6216 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 6217 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 6218 + components: + - pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 6219 + components: + - pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 6220 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 6221 + components: + - pos: 1.5,-1.5 + parent: 1 + type: Transform + - uid: 6222 + components: + - pos: 0.5,-1.5 + parent: 1 + type: Transform + - uid: 6223 + components: + - pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 6224 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 6225 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 6226 + components: + - pos: 6.5,0.5 + parent: 1 + type: Transform + - uid: 6286 + components: + - pos: 3.5,7.5 + parent: 1 + type: Transform + - uid: 6287 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 6288 + components: + - pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 6289 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 6290 + components: + - pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 6291 + components: + - pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 6340 + components: + - pos: -7.5,-20.5 + parent: 1 + type: Transform + - uid: 6341 + components: + - pos: -7.5,-19.5 + parent: 1 + type: Transform + - uid: 6342 + components: + - pos: -7.5,-18.5 + parent: 1 + type: Transform + - uid: 6343 + components: + - pos: -8.5,-18.5 + parent: 1 + type: Transform + - uid: 6344 + components: + - pos: -9.5,-18.5 + parent: 1 + type: Transform + - uid: 6345 + components: + - pos: -10.5,-18.5 + parent: 1 + type: Transform + - uid: 6346 + components: + - pos: -11.5,-18.5 + parent: 1 + type: Transform + - uid: 6347 + components: + - pos: -11.5,-17.5 + parent: 1 + type: Transform + - uid: 6348 + components: + - pos: -11.5,-16.5 + parent: 1 + type: Transform + - uid: 6349 + components: + - pos: -11.5,-15.5 + parent: 1 + type: Transform + - uid: 6350 + components: + - pos: -11.5,-14.5 + parent: 1 + type: Transform + - uid: 6351 + components: + - pos: -11.5,-13.5 + parent: 1 + type: Transform + - uid: 6352 + components: + - pos: -11.5,-12.5 + parent: 1 + type: Transform + - uid: 6353 + components: + - pos: -11.5,-11.5 + parent: 1 + type: Transform + - uid: 6354 + components: + - pos: -11.5,-10.5 + parent: 1 + type: Transform + - uid: 6355 + components: + - pos: -11.5,-9.5 + parent: 1 + type: Transform + - uid: 6356 + components: + - pos: -11.5,-8.5 + parent: 1 + type: Transform + - uid: 6357 + components: + - pos: -11.5,-7.5 + parent: 1 + type: Transform + - uid: 6358 + components: + - pos: -11.5,-6.5 + parent: 1 + type: Transform + - uid: 6359 + components: + - pos: -10.5,-15.5 + parent: 1 + type: Transform + - uid: 6360 + components: + - pos: -9.5,-15.5 + parent: 1 + type: Transform + - uid: 6361 + components: + - pos: -8.5,-15.5 + parent: 1 + type: Transform + - uid: 6362 + components: + - pos: -8.5,-16.5 + parent: 1 + type: Transform + - uid: 6363 + components: + - pos: -12.5,-6.5 + parent: 1 + type: Transform + - uid: 6364 + components: + - pos: -13.5,-6.5 + parent: 1 + type: Transform + - uid: 6365 + components: + - pos: -14.5,-6.5 + parent: 1 + type: Transform + - uid: 6366 + components: + - pos: -15.5,-6.5 + parent: 1 + type: Transform + - uid: 6367 + components: + - pos: -16.5,-6.5 + parent: 1 + type: Transform + - uid: 6368 + components: + - pos: -17.5,-6.5 + parent: 1 + type: Transform + - uid: 6369 + components: + - pos: -18.5,-6.5 + parent: 1 + type: Transform + - uid: 6370 + components: + - pos: -19.5,-6.5 + parent: 1 + type: Transform + - uid: 6371 + components: + - pos: -20.5,-6.5 + parent: 1 + type: Transform + - uid: 6372 + components: + - pos: -14.5,-5.5 + parent: 1 + type: Transform + - uid: 6373 + components: + - pos: -14.5,-4.5 + parent: 1 + type: Transform + - uid: 6374 + components: + - pos: -14.5,-3.5 + parent: 1 + type: Transform + - uid: 6375 + components: + - pos: -14.5,-2.5 + parent: 1 + type: Transform + - uid: 6376 + components: + - pos: -14.5,-1.5 + parent: 1 + type: Transform + - uid: 6377 + components: + - pos: -14.5,-0.5 + parent: 1 + type: Transform + - uid: 6378 + components: + - pos: -14.5,0.5 + parent: 1 + type: Transform + - uid: 6379 + components: + - pos: -16.5,-7.5 + parent: 1 + type: Transform + - uid: 6380 + components: + - pos: -16.5,-8.5 + parent: 1 + type: Transform + - uid: 6381 + components: + - pos: -16.5,-9.5 + parent: 1 + type: Transform + - uid: 6382 + components: + - pos: -16.5,-10.5 + parent: 1 + type: Transform + - uid: 6383 + components: + - pos: -16.5,-11.5 + parent: 1 + type: Transform + - uid: 6384 + components: + - pos: -16.5,-12.5 + parent: 1 + type: Transform + - uid: 6385 + components: + - pos: -16.5,-13.5 + parent: 1 + type: Transform + - uid: 6386 + components: + - pos: -16.5,-14.5 + parent: 1 + type: Transform + - uid: 6387 + components: + - pos: -16.5,-15.5 + parent: 1 + type: Transform + - uid: 6388 + components: + - pos: -16.5,-16.5 + parent: 1 + type: Transform + - uid: 6389 + components: + - pos: -16.5,-17.5 + parent: 1 + type: Transform + - uid: 6390 + components: + - pos: -16.5,-18.5 + parent: 1 + type: Transform + - uid: 6391 + components: + - pos: -16.5,-19.5 + parent: 1 + type: Transform + - uid: 6392 + components: + - pos: -21.5,-7.5 + parent: 1 + type: Transform + - uid: 6393 + components: + - pos: -21.5,-6.5 + parent: 1 + type: Transform + - uid: 6528 + components: + - pos: 14.5,-12.5 + parent: 1 + type: Transform + - uid: 6529 + components: + - pos: 14.5,-11.5 + parent: 1 + type: Transform + - uid: 6530 + components: + - pos: 14.5,-10.5 + parent: 1 + type: Transform + - uid: 6531 + components: + - pos: 15.5,-10.5 + parent: 1 + type: Transform + - uid: 6532 + components: + - pos: 16.5,-10.5 + parent: 1 + type: Transform + - uid: 6533 + components: + - pos: 17.5,-10.5 + parent: 1 + type: Transform + - uid: 6534 + components: + - pos: 18.5,-10.5 + parent: 1 + type: Transform + - uid: 6535 + components: + - pos: 19.5,-10.5 + parent: 1 + type: Transform + - uid: 6536 + components: + - pos: 20.5,-10.5 + parent: 1 + type: Transform + - uid: 6537 + components: + - pos: 21.5,-10.5 + parent: 1 + type: Transform + - uid: 6538 + components: + - pos: 22.5,-10.5 + parent: 1 + type: Transform + - uid: 6539 + components: + - pos: 23.5,-10.5 + parent: 1 + type: Transform + - uid: 6540 + components: + - pos: 24.5,-10.5 + parent: 1 + type: Transform + - uid: 6541 + components: + - pos: 24.5,-11.5 + parent: 1 + type: Transform + - uid: 6542 + components: + - pos: 24.5,-12.5 + parent: 1 + type: Transform + - uid: 6543 + components: + - pos: 22.5,-9.5 + parent: 1 + type: Transform + - uid: 6544 + components: + - pos: 22.5,-8.5 + parent: 1 + type: Transform + - uid: 6545 + components: + - pos: 22.5,-7.5 + parent: 1 + type: Transform + - uid: 6546 + components: + - pos: 22.5,-6.5 + parent: 1 + type: Transform + - uid: 6547 + components: + - pos: 22.5,-5.5 + parent: 1 + type: Transform + - uid: 6548 + components: + - pos: 22.5,-4.5 + parent: 1 + type: Transform + - uid: 6549 + components: + - pos: 21.5,-4.5 + parent: 1 + type: Transform + - uid: 6550 + components: + - pos: 20.5,-4.5 + parent: 1 + type: Transform + - uid: 6551 + components: + - pos: 19.5,-4.5 + parent: 1 + type: Transform + - uid: 6552 + components: + - pos: 18.5,-4.5 + parent: 1 + type: Transform + - uid: 6553 + components: + - pos: 17.5,-4.5 + parent: 1 + type: Transform + - uid: 6554 + components: + - pos: 16.5,-4.5 + parent: 1 + type: Transform + - uid: 6557 + components: + - pos: 25.5,-10.5 + parent: 1 + type: Transform + - uid: 6558 + components: + - pos: 26.5,-10.5 + parent: 1 + type: Transform + - uid: 6559 + components: + - pos: 27.5,-10.5 + parent: 1 + type: Transform + - uid: 6560 + components: + - pos: 28.5,-10.5 + parent: 1 + type: Transform + - uid: 6561 + components: + - pos: 29.5,-10.5 + parent: 1 + type: Transform + - uid: 6562 + components: + - pos: 30.5,-10.5 + parent: 1 + type: Transform + - uid: 6563 + components: + - pos: 31.5,-10.5 + parent: 1 + type: Transform + - uid: 6564 + components: + - pos: 32.5,-10.5 + parent: 1 + type: Transform + - uid: 6565 + components: + - pos: 33.5,-10.5 + parent: 1 + type: Transform + - uid: 6566 + components: + - pos: 34.5,-10.5 + parent: 1 + type: Transform + - uid: 6567 + components: + - pos: 34.5,-9.5 + parent: 1 + type: Transform + - uid: 6568 + components: + - pos: 34.5,-8.5 + parent: 1 + type: Transform + - uid: 6569 + components: + - pos: 34.5,-7.5 + parent: 1 + type: Transform + - uid: 6570 + components: + - pos: 34.5,-6.5 + parent: 1 + type: Transform + - uid: 6571 + components: + - pos: 34.5,-5.5 + parent: 1 + type: Transform + - uid: 6572 + components: + - pos: 33.5,-5.5 + parent: 1 + type: Transform + - uid: 6573 + components: + - pos: 34.5,-11.5 + parent: 1 + type: Transform + - uid: 6574 + components: + - pos: 34.5,-12.5 + parent: 1 + type: Transform + - uid: 6575 + components: + - pos: 34.5,-13.5 + parent: 1 + type: Transform + - uid: 6576 + components: + - pos: 34.5,-14.5 + parent: 1 + type: Transform + - uid: 6577 + components: + - pos: 33.5,-14.5 + parent: 1 + type: Transform + - uid: 6781 + components: + - pos: 17.5,-2.5 + parent: 1 + type: Transform + - uid: 6782 + components: + - pos: 17.5,-3.5 + parent: 1 + type: Transform + - uid: 7091 + components: + - pos: 24.5,-20.5 + parent: 1 + type: Transform + - uid: 7092 + components: + - pos: 21.5,-19.5 + parent: 1 + type: Transform + - uid: 7094 + components: + - pos: 25.5,-20.5 + parent: 1 + type: Transform + - uid: 7095 + components: + - pos: 25.5,-19.5 + parent: 1 + type: Transform + - uid: 7096 + components: + - pos: 25.5,-18.5 + parent: 1 + type: Transform + - uid: 7097 + components: + - pos: 24.5,-18.5 + parent: 1 + type: Transform + - uid: 7098 + components: + - pos: 23.5,-18.5 + parent: 1 + type: Transform + - uid: 7099 + components: + - pos: 22.5,-18.5 + parent: 1 + type: Transform + - uid: 7100 + components: + - pos: 21.5,-18.5 + parent: 1 + type: Transform + - uid: 7101 + components: + - pos: 20.5,-21.5 + parent: 1 + type: Transform + - uid: 7102 + components: + - pos: 19.5,-21.5 + parent: 1 + type: Transform + - uid: 7103 + components: + - pos: 18.5,-21.5 + parent: 1 + type: Transform + - uid: 7104 + components: + - pos: 17.5,-21.5 + parent: 1 + type: Transform + - uid: 7105 + components: + - pos: 16.5,-21.5 + parent: 1 + type: Transform + - uid: 7109 + components: + - pos: 15.5,-21.5 + parent: 1 + type: Transform + - uid: 7110 + components: + - pos: 14.5,-21.5 + parent: 1 + type: Transform + - uid: 7111 + components: + - pos: 13.5,-21.5 + parent: 1 + type: Transform + - uid: 7112 + components: + - pos: 12.5,-21.5 + parent: 1 + type: Transform + - uid: 7113 + components: + - pos: 11.5,-21.5 + parent: 1 + type: Transform + - uid: 7114 + components: + - pos: 11.5,-20.5 + parent: 1 + type: Transform + - uid: 7115 + components: + - pos: 11.5,-19.5 + parent: 1 + type: Transform + - uid: 7116 + components: + - pos: 12.5,-19.5 + parent: 1 + type: Transform + - uid: 7117 + components: + - pos: 15.5,-22.5 + parent: 1 + type: Transform + - uid: 7118 + components: + - pos: 15.5,-23.5 + parent: 1 + type: Transform + - uid: 7119 + components: + - pos: 15.5,-24.5 + parent: 1 + type: Transform + - uid: 7120 + components: + - pos: 15.5,-25.5 + parent: 1 + type: Transform + - uid: 7121 + components: + - pos: 15.5,-26.5 + parent: 1 + type: Transform + - uid: 7122 + components: + - pos: 15.5,-27.5 + parent: 1 + type: Transform + - uid: 7123 + components: + - pos: 15.5,-28.5 + parent: 1 + type: Transform + - uid: 7124 + components: + - pos: 21.5,-20.5 + parent: 1 + type: Transform + - uid: 7125 + components: + - pos: 21.5,-21.5 + parent: 1 + type: Transform + - uid: 7126 + components: + - pos: 22.5,-21.5 + parent: 1 + type: Transform + - uid: 7127 + components: + - pos: 23.5,-21.5 + parent: 1 + type: Transform + - uid: 7389 + components: + - pos: 18.5,-11.5 + parent: 1 + type: Transform + - uid: 7390 + components: + - pos: 18.5,-12.5 + parent: 1 + type: Transform + - uid: 7391 + components: + - pos: 19.5,-12.5 + parent: 1 + type: Transform + - uid: 7392 + components: + - pos: 20.5,-12.5 + parent: 1 + type: Transform + - uid: 7393 + components: + - pos: 20.5,-11.5 + parent: 1 + type: Transform + - uid: 7559 + components: + - pos: -40.5,23.5 + parent: 1 + type: Transform + - uid: 7560 + components: + - pos: -39.5,23.5 + parent: 1 + type: Transform + - uid: 7561 + components: + - pos: -39.5,24.5 + parent: 1 + type: Transform + - uid: 7581 + components: + - pos: -40.5,22.5 + parent: 1 + type: Transform + - uid: 7582 + components: + - pos: -40.5,21.5 + parent: 1 + type: Transform + - uid: 7583 + components: + - pos: -40.5,20.5 + parent: 1 + type: Transform + - uid: 7584 + components: + - pos: -40.5,19.5 + parent: 1 + type: Transform + - uid: 7585 + components: + - pos: -40.5,18.5 + parent: 1 + type: Transform + - uid: 7586 + components: + - pos: -40.5,17.5 + parent: 1 + type: Transform + - uid: 7587 + components: + - pos: -40.5,16.5 + parent: 1 + type: Transform + - uid: 7588 + components: + - pos: -40.5,15.5 + parent: 1 + type: Transform + - uid: 7589 + components: + - pos: -40.5,14.5 + parent: 1 + type: Transform + - uid: 7590 + components: + - pos: -40.5,13.5 + parent: 1 + type: Transform + - uid: 7591 + components: + - pos: -40.5,12.5 + parent: 1 + type: Transform + - uid: 7592 + components: + - pos: -40.5,11.5 + parent: 1 + type: Transform + - uid: 7593 + components: + - pos: -40.5,10.5 + parent: 1 + type: Transform + - uid: 7594 + components: + - pos: -40.5,9.5 + parent: 1 + type: Transform + - uid: 7595 + components: + - pos: -40.5,8.5 + parent: 1 + type: Transform + - uid: 7596 + components: + - pos: -40.5,7.5 + parent: 1 + type: Transform + - uid: 7597 + components: + - pos: -40.5,6.5 + parent: 1 + type: Transform + - uid: 7598 + components: + - pos: -40.5,5.5 + parent: 1 + type: Transform + - uid: 7599 + components: + - pos: -40.5,4.5 + parent: 1 + type: Transform + - uid: 7600 + components: + - pos: -40.5,3.5 + parent: 1 + type: Transform + - uid: 7601 + components: + - pos: -40.5,2.5 + parent: 1 + type: Transform + - uid: 7602 + components: + - pos: -39.5,14.5 + parent: 1 + type: Transform + - uid: 7603 + components: + - pos: -38.5,14.5 + parent: 1 + type: Transform + - uid: 7604 + components: + - pos: -39.5,2.5 + parent: 1 + type: Transform + - uid: 7605 + components: + - pos: -38.5,2.5 + parent: 1 + type: Transform + - uid: 7606 + components: + - pos: -37.5,2.5 + parent: 1 + type: Transform + - uid: 7607 + components: + - pos: -36.5,2.5 + parent: 1 + type: Transform + - uid: 7608 + components: + - pos: -35.5,2.5 + parent: 1 + type: Transform + - uid: 7609 + components: + - pos: -34.5,2.5 + parent: 1 + type: Transform + - uid: 7610 + components: + - pos: -34.5,3.5 + parent: 1 + type: Transform + - uid: 7611 + components: + - pos: -34.5,4.5 + parent: 1 + type: Transform + - uid: 7612 + components: + - pos: -34.5,5.5 + parent: 1 + type: Transform + - uid: 7613 + components: + - pos: -34.5,6.5 + parent: 1 + type: Transform + - uid: 7614 + components: + - pos: -34.5,7.5 + parent: 1 + type: Transform + - uid: 7615 + components: + - pos: -34.5,8.5 + parent: 1 + type: Transform + - uid: 7616 + components: + - pos: -34.5,9.5 + parent: 1 + type: Transform + - uid: 7617 + components: + - pos: -33.5,9.5 + parent: 1 + type: Transform + - uid: 7618 + components: + - pos: -32.5,9.5 + parent: 1 + type: Transform + - uid: 7619 + components: + - pos: -31.5,9.5 + parent: 1 + type: Transform + - uid: 7620 + components: + - pos: -30.5,9.5 + parent: 1 + type: Transform + - uid: 7621 + components: + - pos: -37.5,1.5 + parent: 1 + type: Transform + - uid: 7622 + components: + - pos: -37.5,0.5 + parent: 1 + type: Transform + - uid: 7623 + components: + - pos: -37.5,-0.5 + parent: 1 + type: Transform + - uid: 7624 + components: + - pos: -37.5,-1.5 + parent: 1 + type: Transform + - uid: 7625 + components: + - pos: -37.5,-2.5 + parent: 1 + type: Transform + - uid: 7626 + components: + - pos: -37.5,-3.5 + parent: 1 + type: Transform + - uid: 7627 + components: + - pos: -37.5,-4.5 + parent: 1 + type: Transform + - uid: 7628 + components: + - pos: -37.5,-5.5 + parent: 1 + type: Transform + - uid: 7629 + components: + - pos: -37.5,-6.5 + parent: 1 + type: Transform + - uid: 7630 + components: + - pos: -38.5,-6.5 + parent: 1 + type: Transform + - uid: 7631 + components: + - pos: -39.5,-6.5 + parent: 1 + type: Transform + - uid: 7632 + components: + - pos: -39.5,-7.5 + parent: 1 + type: Transform + - uid: 7633 + components: + - pos: -39.5,-8.5 + parent: 1 + type: Transform + - uid: 7723 + components: + - pos: -7.5,-22.5 + parent: 1 + type: Transform + - uid: 7724 + components: + - pos: -8.5,-22.5 + parent: 1 + type: Transform + - uid: 7725 + components: + - pos: -9.5,-22.5 + parent: 1 + type: Transform + - uid: 7726 + components: + - pos: -10.5,-22.5 + parent: 1 + type: Transform + - uid: 7727 + components: + - pos: -10.5,-23.5 + parent: 1 + type: Transform + - uid: 7728 + components: + - pos: -10.5,-24.5 + parent: 1 + type: Transform + - uid: 7729 + components: + - pos: -10.5,-25.5 + parent: 1 + type: Transform + - uid: 7730 + components: + - pos: -11.5,-25.5 + parent: 1 + type: Transform + - uid: 7731 + components: + - pos: -12.5,-25.5 + parent: 1 + type: Transform + - uid: 7732 + components: + - pos: -13.5,-25.5 + parent: 1 + type: Transform + - uid: 7733 + components: + - pos: -14.5,-25.5 + parent: 1 + type: Transform + - uid: 7734 + components: + - pos: -15.5,-25.5 + parent: 1 + type: Transform + - uid: 7735 + components: + - pos: -16.5,-25.5 + parent: 1 + type: Transform + - uid: 7736 + components: + - pos: -17.5,-25.5 + parent: 1 + type: Transform + - uid: 7737 + components: + - pos: -18.5,-25.5 + parent: 1 + type: Transform + - uid: 7738 + components: + - pos: -19.5,-25.5 + parent: 1 + type: Transform + - uid: 7739 + components: + - pos: -20.5,-25.5 + parent: 1 + type: Transform + - uid: 7740 + components: + - pos: -9.5,-25.5 + parent: 1 + type: Transform + - uid: 7741 + components: + - pos: -8.5,-25.5 + parent: 1 + type: Transform + - uid: 7742 + components: + - pos: -7.5,-25.5 + parent: 1 + type: Transform + - uid: 7743 + components: + - pos: -6.5,-25.5 + parent: 1 + type: Transform + - uid: 7744 + components: + - pos: -5.5,-25.5 + parent: 1 + type: Transform + - uid: 7745 + components: + - pos: -4.5,-25.5 + parent: 1 + type: Transform + - uid: 7746 + components: + - pos: -3.5,-25.5 + parent: 1 + type: Transform + - uid: 7747 + components: + - pos: -2.5,-25.5 + parent: 1 + type: Transform + - uid: 7748 + components: + - pos: -1.5,-25.5 + parent: 1 + type: Transform + - uid: 7749 + components: + - pos: -0.5,-25.5 + parent: 1 + type: Transform + - uid: 7750 + components: + - pos: 0.5,-25.5 + parent: 1 + type: Transform + - uid: 7751 + components: + - pos: 1.5,-25.5 + parent: 1 + type: Transform + - uid: 7752 + components: + - pos: -4.5,-26.5 + parent: 1 + type: Transform + - uid: 7753 + components: + - pos: -4.5,-27.5 + parent: 1 + type: Transform + - uid: 7754 + components: + - pos: 1.5,-24.5 + parent: 1 + type: Transform + - uid: 7755 + components: + - pos: 1.5,-23.5 + parent: 1 + type: Transform + - uid: 7756 + components: + - pos: 1.5,-22.5 + parent: 1 + type: Transform + - uid: 7757 + components: + - pos: 1.5,-21.5 + parent: 1 + type: Transform + - uid: 7758 + components: + - pos: 1.5,-20.5 + parent: 1 + type: Transform + - uid: 7759 + components: + - pos: 1.5,-19.5 + parent: 1 + type: Transform + - uid: 7760 + components: + - pos: 1.5,-18.5 + parent: 1 + type: Transform + - uid: 7761 + components: + - pos: 1.5,-17.5 + parent: 1 + type: Transform + - uid: 7762 + components: + - pos: 1.5,-16.5 + parent: 1 + type: Transform + - uid: 7763 + components: + - pos: 1.5,-15.5 + parent: 1 + type: Transform + - uid: 7764 + components: + - pos: 0.5,-15.5 + parent: 1 + type: Transform + - uid: 7765 + components: + - pos: -0.5,-15.5 + parent: 1 + type: Transform + - uid: 7767 + components: + - pos: 1.5,-26.5 + parent: 1 + type: Transform + - uid: 7768 + components: + - pos: 1.5,-27.5 + parent: 1 + type: Transform + - uid: 7769 + components: + - pos: 1.5,-28.5 + parent: 1 + type: Transform + - uid: 7770 + components: + - pos: 1.5,-29.5 + parent: 1 + type: Transform + - uid: 7771 + components: + - pos: 1.5,-30.5 + parent: 1 + type: Transform + - uid: 7772 + components: + - pos: 1.5,-31.5 + parent: 1 + type: Transform + - uid: 7773 + components: + - pos: 1.5,-32.5 + parent: 1 + type: Transform + - uid: 7774 + components: + - pos: 0.5,-32.5 + parent: 1 + type: Transform + - uid: 7775 + components: + - pos: -0.5,-32.5 + parent: 1 + type: Transform + - uid: 7776 + components: + - pos: -1.5,-32.5 + parent: 1 + type: Transform + - uid: 7777 + components: + - pos: -2.5,-32.5 + parent: 1 + type: Transform + - uid: 7778 + components: + - pos: -3.5,-32.5 + parent: 1 + type: Transform + - uid: 7779 + components: + - pos: -4.5,-32.5 + parent: 1 + type: Transform + - uid: 7780 + components: + - pos: -5.5,-32.5 + parent: 1 + type: Transform + - uid: 7781 + components: + - pos: -5.5,-33.5 + parent: 1 + type: Transform + - uid: 8024 + components: + - pos: 40.5,19.5 + parent: 1 + type: Transform + - uid: 8025 + components: + - pos: 39.5,19.5 + parent: 1 + type: Transform + - uid: 8026 + components: + - pos: 39.5,18.5 + parent: 1 + type: Transform + - uid: 8027 + components: + - pos: 39.5,17.5 + parent: 1 + type: Transform + - uid: 8028 + components: + - pos: 39.5,16.5 + parent: 1 + type: Transform + - uid: 8029 + components: + - pos: 40.5,16.5 + parent: 1 + type: Transform + - uid: 8030 + components: + - pos: 41.5,16.5 + parent: 1 + type: Transform + - uid: 8031 + components: + - pos: 42.5,16.5 + parent: 1 + type: Transform + - uid: 8032 + components: + - pos: 42.5,15.5 + parent: 1 + type: Transform + - uid: 8033 + components: + - pos: 43.5,15.5 + parent: 1 + type: Transform + - uid: 8034 + components: + - pos: 44.5,15.5 + parent: 1 + type: Transform + - uid: 8035 + components: + - pos: 43.5,14.5 + parent: 1 + type: Transform + - uid: 8036 + components: + - pos: 45.5,15.5 + parent: 1 + type: Transform + - uid: 8037 + components: + - pos: 45.5,16.5 + parent: 1 + type: Transform + - uid: 8038 + components: + - pos: 45.5,17.5 + parent: 1 + type: Transform + - uid: 8039 + components: + - pos: 45.5,18.5 + parent: 1 + type: Transform + - uid: 8040 + components: + - pos: 45.5,19.5 + parent: 1 + type: Transform + - uid: 8041 + components: + - pos: 45.5,20.5 + parent: 1 + type: Transform + - uid: 8042 + components: + - pos: 45.5,21.5 + parent: 1 + type: Transform + - uid: 8043 + components: + - pos: 45.5,22.5 + parent: 1 + type: Transform + - uid: 8044 + components: + - pos: 45.5,23.5 + parent: 1 + type: Transform + - uid: 8045 + components: + - pos: 45.5,24.5 + parent: 1 + type: Transform + - uid: 8046 + components: + - pos: 45.5,25.5 + parent: 1 + type: Transform + - uid: 8047 + components: + - pos: 45.5,26.5 + parent: 1 + type: Transform + - uid: 8048 + components: + - pos: 45.5,27.5 + parent: 1 + type: Transform + - uid: 8050 + components: + - pos: 44.5,28.5 + parent: 1 + type: Transform + - uid: 8051 + components: + - pos: 43.5,28.5 + parent: 1 + type: Transform + - uid: 8052 + components: + - pos: 42.5,28.5 + parent: 1 + type: Transform + - uid: 8053 + components: + - pos: 41.5,28.5 + parent: 1 + type: Transform + - uid: 8054 + components: + - pos: 40.5,28.5 + parent: 1 + type: Transform + - uid: 8055 + components: + - pos: 39.5,28.5 + parent: 1 + type: Transform + - uid: 8056 + components: + - pos: 38.5,28.5 + parent: 1 + type: Transform + - uid: 8057 + components: + - pos: 44.5,22.5 + parent: 1 + type: Transform + - uid: 8058 + components: + - pos: 43.5,22.5 + parent: 1 + type: Transform + - uid: 8059 + components: + - pos: 42.5,22.5 + parent: 1 + type: Transform + - uid: 8060 + components: + - pos: 41.5,22.5 + parent: 1 + type: Transform + - uid: 8061 + components: + - pos: 41.5,23.5 + parent: 1 + type: Transform + - uid: 8062 + components: + - pos: 41.5,24.5 + parent: 1 + type: Transform + - uid: 8063 + components: + - pos: 45.5,14.5 + parent: 1 + type: Transform + - uid: 8064 + components: + - pos: 45.5,13.5 + parent: 1 + type: Transform + - uid: 8065 + components: + - pos: 45.5,12.5 + parent: 1 + type: Transform + - uid: 8066 + components: + - pos: 45.5,11.5 + parent: 1 + type: Transform + - uid: 8067 + components: + - pos: 45.5,10.5 + parent: 1 + type: Transform + - uid: 8068 + components: + - pos: 45.5,9.5 + parent: 1 + type: Transform + - uid: 8069 + components: + - pos: 45.5,8.5 + parent: 1 + type: Transform + - uid: 8070 + components: + - pos: 45.5,7.5 + parent: 1 + type: Transform + - uid: 8071 + components: + - pos: 45.5,6.5 + parent: 1 + type: Transform + - uid: 8072 + components: + - pos: 45.5,5.5 + parent: 1 + type: Transform + - uid: 8073 + components: + - pos: 45.5,4.5 + parent: 1 + type: Transform + - uid: 8074 + components: + - pos: 45.5,3.5 + parent: 1 + type: Transform + - uid: 8075 + components: + - pos: 45.5,2.5 + parent: 1 + type: Transform + - uid: 8076 + components: + - pos: 44.5,2.5 + parent: 1 + type: Transform + - uid: 8077 + components: + - pos: 43.5,2.5 + parent: 1 + type: Transform + - uid: 8078 + components: + - pos: 42.5,2.5 + parent: 1 + type: Transform + - uid: 8079 + components: + - pos: 41.5,2.5 + parent: 1 + type: Transform + - uid: 8080 + components: + - pos: 40.5,2.5 + parent: 1 + type: Transform + - uid: 8081 + components: + - pos: 39.5,2.5 + parent: 1 + type: Transform + - uid: 8082 + components: + - pos: 38.5,2.5 + parent: 1 + type: Transform + - uid: 8083 + components: + - pos: 37.5,2.5 + parent: 1 + type: Transform + - uid: 8084 + components: + - pos: 36.5,2.5 + parent: 1 + type: Transform + - uid: 8085 + components: + - pos: 35.5,2.5 + parent: 1 + type: Transform + - uid: 8086 + components: + - pos: 34.5,2.5 + parent: 1 + type: Transform + - uid: 8087 + components: + - pos: 33.5,2.5 + parent: 1 + type: Transform + - uid: 8088 + components: + - pos: 32.5,2.5 + parent: 1 + type: Transform + - uid: 8089 + components: + - pos: 31.5,2.5 + parent: 1 + type: Transform + - uid: 8090 + components: + - pos: 30.5,2.5 + parent: 1 + type: Transform + - uid: 8091 + components: + - pos: 29.5,2.5 + parent: 1 + type: Transform + - uid: 8092 + components: + - pos: 28.5,2.5 + parent: 1 + type: Transform + - uid: 8093 + components: + - pos: 28.5,1.5 + parent: 1 + type: Transform + - uid: 8094 + components: + - pos: 28.5,0.5 + parent: 1 + type: Transform + - uid: 8182 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 8183 + components: + - pos: 4.5,-3.5 + parent: 1 + type: Transform + - uid: 8184 + components: + - pos: 5.5,-3.5 + parent: 1 + type: Transform + - uid: 8185 + components: + - pos: 6.5,-3.5 + parent: 1 + type: Transform + - uid: 8186 + components: + - pos: 7.5,-3.5 + parent: 1 + type: Transform + - uid: 8187 + components: + - pos: 8.5,-3.5 + parent: 1 + type: Transform + - uid: 8188 + components: + - pos: 8.5,-2.5 + parent: 1 + type: Transform + - uid: 8191 + components: + - pos: 9.5,-2.5 + parent: 1 + type: Transform + - uid: 8192 + components: + - pos: 10.5,-2.5 + parent: 1 + type: Transform + - uid: 8331 + components: + - pos: -29.5,-23.5 + parent: 1 + type: Transform + - uid: 8332 + components: + - pos: -30.5,-23.5 + parent: 1 + type: Transform + - uid: 8333 + components: + - pos: -30.5,-22.5 + parent: 1 + type: Transform + - uid: 8334 + components: + - pos: -30.5,-21.5 + parent: 1 + type: Transform + - uid: 8335 + components: + - pos: -30.5,-20.5 + parent: 1 + type: Transform + - uid: 8336 + components: + - pos: -31.5,-21.5 + parent: 1 + type: Transform + - uid: 8337 + components: + - pos: -30.5,-19.5 + parent: 1 + type: Transform + - uid: 8338 + components: + - pos: -30.5,-18.5 + parent: 1 + type: Transform + - uid: 8339 + components: + - pos: -30.5,-17.5 + parent: 1 + type: Transform + - uid: 8340 + components: + - pos: -30.5,-16.5 + parent: 1 + type: Transform + - uid: 8341 + components: + - pos: -31.5,-16.5 + parent: 1 + type: Transform + - uid: 8342 + components: + - pos: -32.5,-16.5 + parent: 1 + type: Transform + - uid: 8345 + components: + - pos: -31.5,-20.5 + parent: 1 + type: Transform + - uid: 8346 + components: + - pos: -32.5,-20.5 + parent: 1 + type: Transform + - uid: 8347 + components: + - pos: -33.5,-20.5 + parent: 1 + type: Transform + - uid: 8348 + components: + - pos: -34.5,-20.5 + parent: 1 + type: Transform + - uid: 8349 + components: + - pos: -35.5,-20.5 + parent: 1 + type: Transform + - uid: 8350 + components: + - pos: -36.5,-20.5 + parent: 1 + type: Transform + - uid: 8351 + components: + - pos: -37.5,-20.5 + parent: 1 + type: Transform + - uid: 8352 + components: + - pos: -38.5,-20.5 + parent: 1 + type: Transform + - uid: 8353 + components: + - pos: -38.5,-19.5 + parent: 1 + type: Transform + - uid: 8354 + components: + - pos: -38.5,-18.5 + parent: 1 + type: Transform + - uid: 8355 + components: + - pos: -38.5,-17.5 + parent: 1 + type: Transform + - uid: 8356 + components: + - pos: -38.5,-16.5 + parent: 1 + type: Transform + - uid: 8357 + components: + - pos: -38.5,-15.5 + parent: 1 + type: Transform + - uid: 8358 + components: + - pos: -38.5,-14.5 + parent: 1 + type: Transform + - uid: 8359 + components: + - pos: -38.5,-13.5 + parent: 1 + type: Transform + - uid: 8360 + components: + - pos: -38.5,-12.5 + parent: 1 + type: Transform + - uid: 8361 + components: + - pos: -39.5,-12.5 + parent: 1 + type: Transform + - uid: 8362 + components: + - pos: -39.5,-11.5 + parent: 1 + type: Transform + - uid: 8384 + components: + - pos: -39.5,-18.5 + parent: 1 + type: Transform + - uid: 8416 + components: + - pos: 38.5,16.5 + parent: 1 + type: Transform + - uid: 8417 + components: + - pos: 37.5,16.5 + parent: 1 + type: Transform + - uid: 8418 + components: + - pos: 36.5,16.5 + parent: 1 + type: Transform + - uid: 8419 + components: + - pos: 36.5,17.5 + parent: 1 + type: Transform + - uid: 8420 + components: + - pos: 36.5,18.5 + parent: 1 + type: Transform + - uid: 8421 + components: + - pos: 36.5,19.5 + parent: 1 + type: Transform + - uid: 8422 + components: + - pos: 36.5,20.5 + parent: 1 + type: Transform + - uid: 8423 + components: + - pos: 36.5,21.5 + parent: 1 + type: Transform + - uid: 8424 + components: + - pos: 36.5,22.5 + parent: 1 + type: Transform + - uid: 8425 + components: + - pos: 36.5,23.5 + parent: 1 + type: Transform + - uid: 8426 + components: + - pos: 36.5,24.5 + parent: 1 + type: Transform + - uid: 8427 + components: + - pos: 36.5,25.5 + parent: 1 + type: Transform + - uid: 8428 + components: + - pos: 36.5,26.5 + parent: 1 + type: Transform + - uid: 8429 + components: + - pos: 36.5,27.5 + parent: 1 + type: Transform + - uid: 8430 + components: + - pos: 36.5,28.5 + parent: 1 + type: Transform + - uid: 8431 + components: + - pos: 36.5,29.5 + parent: 1 + type: Transform + - uid: 8432 + components: + - pos: 36.5,30.5 + parent: 1 + type: Transform + - uid: 8433 + components: + - pos: 36.5,31.5 + parent: 1 + type: Transform + - uid: 8434 + components: + - pos: 36.5,32.5 + parent: 1 + type: Transform + - uid: 8435 + components: + - pos: 35.5,32.5 + parent: 1 + type: Transform + - uid: 8436 + components: + - pos: 34.5,32.5 + parent: 1 + type: Transform + - uid: 9185 + components: + - pos: -24.5,29.5 + parent: 1 + type: Transform + - uid: 9186 + components: + - pos: -25.5,29.5 + parent: 1 + type: Transform + - uid: 9187 + components: + - pos: -25.5,28.5 + parent: 1 + type: Transform + - uid: 9188 + components: + - pos: -25.5,27.5 + parent: 1 + type: Transform + - uid: 9189 + components: + - pos: -26.5,28.5 + parent: 1 + type: Transform + - uid: 9190 + components: + - pos: -26.5,27.5 + parent: 1 + type: Transform + - uid: 9191 + components: + - pos: -27.5,27.5 + parent: 1 + type: Transform + - uid: 9192 + components: + - pos: -28.5,27.5 + parent: 1 + type: Transform + - uid: 9193 + components: + - pos: -28.5,26.5 + parent: 1 + type: Transform + - uid: 9194 + components: + - pos: -28.5,25.5 + parent: 1 + type: Transform + - uid: 9195 + components: + - pos: -28.5,24.5 + parent: 1 + type: Transform + - uid: 9196 + components: + - pos: -28.5,23.5 + parent: 1 + type: Transform + - uid: 9736 + components: + - pos: -29.5,24.5 + parent: 1 + type: Transform + - uid: 9737 + components: + - pos: -30.5,24.5 + parent: 1 + type: Transform + - uid: 12123 + components: + - pos: 45.5,28.5 + parent: 1 + type: Transform + - uid: 12565 + components: + - pos: -33.5,-16.5 + parent: 1 + type: Transform + - uid: 12566 + components: + - pos: -33.5,-15.5 + parent: 1 + type: Transform + - uid: 12567 + components: + - pos: -33.5,-14.5 + parent: 1 + type: Transform +- proto: CableMVStack + entities: + - uid: 3982 + components: + - pos: -2.5254679,44.593964 + parent: 1 + type: Transform + - uid: 7642 + components: + - pos: -41.491985,19.264193 + parent: 1 + type: Transform + - uid: 8228 + components: + - pos: -5.2976665,-20.338463 + parent: 1 + type: Transform + - uid: 9647 + components: + - pos: 12.6765375,23.532959 + parent: 1 + type: Transform +- proto: CableTerminal + entities: + - uid: 1130 + components: + - pos: 23.5,-13.5 + parent: 1 + type: Transform + - uid: 1131 + components: + - pos: 24.5,-13.5 + parent: 1 + type: Transform + - uid: 1132 + components: + - pos: 25.5,-13.5 + parent: 1 + type: Transform + - uid: 2449 + components: + - pos: -32.5,-22.5 + parent: 1 + type: Transform + - uid: 2552 + components: + - pos: -27.5,30.5 + parent: 1 + type: Transform + - uid: 2848 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-53.5 + parent: 1 + type: Transform + - uid: 3678 + components: + - pos: -0.5,46.5 + parent: 1 + type: Transform + - uid: 7558 + components: + - rot: 3.141592653589793 rad + pos: -41.5,22.5 + parent: 1 + type: Transform +- proto: CannabisSeeds + entities: + - uid: 5466 + components: + - pos: 30.131155,27.66019 + parent: 1 + type: Transform +- proto: CaptainIDCard + entities: + - uid: 4981 + components: + - pos: 4.562398,31.612326 + parent: 1 + type: Transform +- proto: CarbonDioxideCanister + entities: + - uid: 6323 + components: + - pos: -19.5,-18.5 + parent: 1 + type: Transform + - uid: 6809 + components: + - pos: 43.5,-9.5 + parent: 1 + type: Transform +- proto: Carpet + entities: + - uid: 5022 + components: + - pos: 2.5,10.5 + parent: 1 + type: Transform + - uid: 5024 + components: + - pos: 1.5,10.5 + parent: 1 + type: Transform + - uid: 5026 + components: + - pos: 0.5,10.5 + parent: 1 + type: Transform + - uid: 5027 + components: + - pos: 0.5,9.5 + parent: 1 + type: Transform + - uid: 5028 + components: + - pos: 1.5,9.5 + parent: 1 + type: Transform + - uid: 5029 + components: + - pos: 2.5,9.5 + parent: 1 + type: Transform + - uid: 5043 + components: + - rot: 3.141592653589793 rad + pos: 0.5,11.5 + parent: 1 + type: Transform + - uid: 5044 + components: + - rot: 3.141592653589793 rad + pos: 1.5,11.5 + parent: 1 + type: Transform + - uid: 5045 + components: + - rot: 3.141592653589793 rad + pos: 2.5,11.5 + parent: 1 + type: Transform + - uid: 5623 + components: + - rot: 3.141592653589793 rad + pos: 26.5,14.5 + parent: 1 + type: Transform + - uid: 5624 + components: + - rot: 3.141592653589793 rad + pos: 26.5,13.5 + parent: 1 + type: Transform + - uid: 5625 + components: + - rot: 3.141592653589793 rad + pos: 27.5,14.5 + parent: 1 + type: Transform + - uid: 5626 + components: + - rot: 3.141592653589793 rad + pos: 27.5,13.5 + parent: 1 + type: Transform + - uid: 5627 + components: + - rot: 3.141592653589793 rad + pos: 28.5,14.5 + parent: 1 + type: Transform + - uid: 5628 + components: + - rot: 3.141592653589793 rad + pos: 28.5,13.5 + parent: 1 + type: Transform + - uid: 5629 + components: + - rot: 3.141592653589793 rad + pos: 26.5,12.5 + parent: 1 + type: Transform + - uid: 5630 + components: + - rot: 3.141592653589793 rad + pos: 25.5,12.5 + parent: 1 + type: Transform + - uid: 5631 + components: + - rot: 3.141592653589793 rad + pos: 25.5,13.5 + parent: 1 + type: Transform + - uid: 5632 + components: + - rot: 3.141592653589793 rad + pos: 25.5,14.5 + parent: 1 + type: Transform + - uid: 5633 + components: + - rot: 3.141592653589793 rad + pos: 27.5,12.5 + parent: 1 + type: Transform + - uid: 5634 + components: + - rot: 3.141592653589793 rad + pos: 28.5,12.5 + parent: 1 + type: Transform + - uid: 5635 + components: + - rot: 3.141592653589793 rad + pos: 27.5,16.5 + parent: 1 + type: Transform + - uid: 5636 + components: + - rot: 3.141592653589793 rad + pos: 27.5,17.5 + parent: 1 + type: Transform + - uid: 5637 + components: + - rot: 3.141592653589793 rad + pos: 28.5,16.5 + parent: 1 + type: Transform + - uid: 5638 + components: + - rot: 3.141592653589793 rad + pos: 28.5,17.5 + parent: 1 + type: Transform + - uid: 12438 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,6.5 + parent: 1 + type: Transform + - uid: 12439 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,5.5 + parent: 1 + type: Transform + - uid: 12440 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,6.5 + parent: 1 + type: Transform + - uid: 12441 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,5.5 + parent: 1 + type: Transform +- proto: CarpetBlack + entities: + - uid: 2010 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,6.5 + parent: 1 + type: Transform + - uid: 2011 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,7.5 + parent: 1 + type: Transform + - uid: 2012 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,8.5 + parent: 1 + type: Transform + - uid: 2013 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,9.5 + parent: 1 + type: Transform + - uid: 2014 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,10.5 + parent: 1 + type: Transform + - uid: 2015 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,9.5 + parent: 1 + type: Transform + - uid: 2016 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,9.5 + parent: 1 + type: Transform + - uid: 2017 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,9.5 + parent: 1 + type: Transform + - uid: 2018 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,9.5 + parent: 1 + type: Transform +- proto: CarpetBlue + entities: + - uid: 5645 + components: + - rot: 3.141592653589793 rad + pos: -5.5,19.5 + parent: 1 + type: Transform + - uid: 5646 + components: + - rot: 3.141592653589793 rad + pos: -5.5,20.5 + parent: 1 + type: Transform + - uid: 5647 + components: + - rot: 3.141592653589793 rad + pos: -4.5,19.5 + parent: 1 + type: Transform + - uid: 5648 + components: + - rot: 3.141592653589793 rad + pos: -4.5,20.5 + parent: 1 + type: Transform + - uid: 5649 + components: + - rot: 3.141592653589793 rad + pos: -18.5,16.5 + parent: 1 + type: Transform + - uid: 5650 + components: + - rot: 3.141592653589793 rad + pos: -18.5,15.5 + parent: 1 + type: Transform + - uid: 5651 + components: + - rot: 3.141592653589793 rad + pos: -19.5,16.5 + parent: 1 + type: Transform + - uid: 5652 + components: + - rot: 3.141592653589793 rad + pos: -19.5,15.5 + parent: 1 + type: Transform + - uid: 5653 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-2.5 + parent: 1 + type: Transform + - uid: 5654 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-2.5 + parent: 1 + type: Transform + - uid: 5655 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-3.5 + parent: 1 + type: Transform + - uid: 5656 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-2.5 + parent: 1 + type: Transform + - uid: 5657 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-3.5 + parent: 1 + type: Transform +- proto: CarpetGreen + entities: + - uid: 3833 + components: + - pos: -2.5,10.5 + parent: 1 + type: Transform + - uid: 5023 + components: + - pos: -1.5,10.5 + parent: 1 + type: Transform + - uid: 5025 + components: + - pos: -1.5,11.5 + parent: 1 + type: Transform + - uid: 9019 + components: + - pos: -37.5,-2.5 + parent: 1 + type: Transform + - uid: 9020 + components: + - pos: -37.5,-3.5 + parent: 1 + type: Transform + - uid: 9021 + components: + - pos: -40.5,-6.5 + parent: 1 + type: Transform + - uid: 9022 + components: + - pos: -40.5,-5.5 + parent: 1 + type: Transform + - uid: 9023 + components: + - pos: -36.5,-2.5 + parent: 1 + type: Transform + - uid: 9024 + components: + - pos: -36.5,-3.5 + parent: 1 + type: Transform + - uid: 9025 + components: + - pos: -38.5,-5.5 + parent: 1 + type: Transform + - uid: 9026 + components: + - pos: -38.5,-4.5 + parent: 1 + type: Transform + - uid: 9027 + components: + - pos: -38.5,-6.5 + parent: 1 + type: Transform + - uid: 9028 + components: + - pos: -37.5,-5.5 + parent: 1 + type: Transform + - uid: 9029 + components: + - pos: -36.5,-5.5 + parent: 1 + type: Transform + - uid: 9030 + components: + - pos: -39.5,-7.5 + parent: 1 + type: Transform + - uid: 9031 + components: + - pos: -38.5,-7.5 + parent: 1 + type: Transform + - uid: 9032 + components: + - pos: -37.5,-4.5 + parent: 1 + type: Transform + - uid: 9033 + components: + - pos: -36.5,-4.5 + parent: 1 + type: Transform + - uid: 9034 + components: + - pos: -39.5,-6.5 + parent: 1 + type: Transform + - uid: 9035 + components: + - pos: -40.5,-7.5 + parent: 1 + type: Transform + - uid: 9036 + components: + - pos: -39.5,-4.5 + parent: 1 + type: Transform + - uid: 9037 + components: + - pos: -39.5,-5.5 + parent: 1 + type: Transform + - uid: 9038 + components: + - pos: -40.5,-4.5 + parent: 1 + type: Transform + - uid: 9039 + components: + - pos: -41.5,-4.5 + parent: 1 + type: Transform + - uid: 9040 + components: + - pos: -41.5,-5.5 + parent: 1 + type: Transform + - uid: 9041 + components: + - pos: -41.5,-6.5 + parent: 1 + type: Transform + - uid: 9042 + components: + - pos: -41.5,-7.5 + parent: 1 + type: Transform +- proto: CarpetOrange + entities: + - uid: 5658 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-14.5 + parent: 1 + type: Transform + - uid: 5659 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-15.5 + parent: 1 + type: Transform + - uid: 5660 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-14.5 + parent: 1 + type: Transform + - uid: 5661 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-15.5 + parent: 1 + type: Transform + - uid: 12419 + components: + - pos: 4.5,-17.5 + parent: 1 + type: Transform + - uid: 12420 + components: + - pos: 4.5,-16.5 + parent: 1 + type: Transform + - uid: 12421 + components: + - pos: 5.5,-17.5 + parent: 1 + type: Transform + - uid: 12422 + components: + - pos: 5.5,-16.5 + parent: 1 + type: Transform +- proto: CarpetPurple + entities: + - uid: 5018 + components: + - pos: 4.5,11.5 + parent: 1 + type: Transform + - uid: 5019 + components: + - pos: 4.5,10.5 + parent: 1 + type: Transform + - uid: 5020 + components: + - pos: 5.5,10.5 + parent: 1 + type: Transform +- proto: CarpetSBlue + entities: + - uid: 5639 + components: + - rot: 3.141592653589793 rad + pos: 3.5,30.5 + parent: 1 + type: Transform + - uid: 5640 + components: + - rot: 3.141592653589793 rad + pos: 3.5,31.5 + parent: 1 + type: Transform + - uid: 5641 + components: + - rot: 3.141592653589793 rad + pos: 4.5,31.5 + parent: 1 + type: Transform + - uid: 5642 + components: + - rot: 3.141592653589793 rad + pos: 5.5,31.5 + parent: 1 + type: Transform + - uid: 5643 + components: + - rot: 3.141592653589793 rad + pos: 4.5,30.5 + parent: 1 + type: Transform + - uid: 5644 + components: + - rot: 3.141592653589793 rad + pos: 5.5,30.5 + parent: 1 + type: Transform +- proto: Catwalk + entities: + - uid: 1100 + components: + - pos: 22.5,-15.5 + parent: 1 + type: Transform + - uid: 1106 + components: + - pos: 22.5,-14.5 + parent: 1 + type: Transform + - uid: 1115 + components: + - pos: 22.5,-13.5 + parent: 1 + type: Transform + - uid: 1120 + components: + - pos: 23.5,-15.5 + parent: 1 + type: Transform + - uid: 1121 + components: + - pos: 24.5,-15.5 + parent: 1 + type: Transform + - uid: 1122 + components: + - pos: 25.5,-15.5 + parent: 1 + type: Transform + - uid: 1123 + components: + - pos: 26.5,-15.5 + parent: 1 + type: Transform + - uid: 1124 + components: + - pos: 26.5,-14.5 + parent: 1 + type: Transform + - uid: 1125 + components: + - pos: 26.5,-13.5 + parent: 1 + type: Transform + - uid: 1126 + components: + - pos: 25.5,-13.5 + parent: 1 + type: Transform + - uid: 1127 + components: + - pos: 24.5,-13.5 + parent: 1 + type: Transform + - uid: 1128 + components: + - pos: 23.5,-13.5 + parent: 1 + type: Transform + - uid: 1133 + components: + - pos: 27.5,-7.5 + parent: 1 + type: Transform + - uid: 1973 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-58.5 + parent: 1 + type: Transform + - uid: 2446 + components: + - pos: -35.5,-25.5 + parent: 1 + type: Transform + - uid: 2447 + components: + - pos: -34.5,-25.5 + parent: 1 + type: Transform + - uid: 2448 + components: + - pos: -33.5,-25.5 + parent: 1 + type: Transform + - uid: 2450 + components: + - pos: -31.5,-25.5 + parent: 1 + type: Transform + - uid: 2451 + components: + - pos: -31.5,-26.5 + parent: 1 + type: Transform + - uid: 2452 + components: + - pos: -31.5,-27.5 + parent: 1 + type: Transform + - uid: 2453 + components: + - pos: -31.5,-28.5 + parent: 1 + type: Transform + - uid: 2454 + components: + - pos: -31.5,-29.5 + parent: 1 + type: Transform + - uid: 2455 + components: + - pos: -31.5,-30.5 + parent: 1 + type: Transform + - uid: 2456 + components: + - pos: -31.5,-31.5 + parent: 1 + type: Transform + - uid: 2457 + components: + - pos: -31.5,-32.5 + parent: 1 + type: Transform + - uid: 2458 + components: + - pos: -31.5,-33.5 + parent: 1 + type: Transform + - uid: 2459 + components: + - pos: -31.5,-34.5 + parent: 1 + type: Transform + - uid: 2460 + components: + - pos: -32.5,-29.5 + parent: 1 + type: Transform + - uid: 2461 + components: + - pos: -33.5,-29.5 + parent: 1 + type: Transform + - uid: 2462 + components: + - pos: -34.5,-29.5 + parent: 1 + type: Transform + - uid: 2463 + components: + - pos: -30.5,-29.5 + parent: 1 + type: Transform + - uid: 2464 + components: + - pos: -29.5,-29.5 + parent: 1 + type: Transform + - uid: 2465 + components: + - pos: -28.5,-29.5 + parent: 1 + type: Transform + - uid: 2466 + components: + - pos: -32.5,-33.5 + parent: 1 + type: Transform + - uid: 2467 + components: + - pos: -33.5,-33.5 + parent: 1 + type: Transform + - uid: 2468 + components: + - pos: -34.5,-33.5 + parent: 1 + type: Transform + - uid: 2469 + components: + - pos: -30.5,-33.5 + parent: 1 + type: Transform + - uid: 2470 + components: + - pos: -29.5,-33.5 + parent: 1 + type: Transform + - uid: 2471 + components: + - pos: -28.5,-33.5 + parent: 1 + type: Transform + - uid: 2523 + components: + - pos: -31.5,-35.5 + parent: 1 + type: Transform + - uid: 2537 + components: + - pos: -32.5,-25.5 + parent: 1 + type: Transform + - uid: 2591 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,32.5 + parent: 1 + type: Transform + - uid: 2592 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,32.5 + parent: 1 + type: Transform + - uid: 2593 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,32.5 + parent: 1 + type: Transform + - uid: 2594 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,33.5 + parent: 1 + type: Transform + - uid: 2595 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,34.5 + parent: 1 + type: Transform + - uid: 2596 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,35.5 + parent: 1 + type: Transform + - uid: 2597 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,36.5 + parent: 1 + type: Transform + - uid: 2598 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,37.5 + parent: 1 + type: Transform + - uid: 2599 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,38.5 + parent: 1 + type: Transform + - uid: 2600 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,39.5 + parent: 1 + type: Transform + - uid: 2601 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,40.5 + parent: 1 + type: Transform + - uid: 2602 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,41.5 + parent: 1 + type: Transform + - uid: 2603 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,39.5 + parent: 1 + type: Transform + - uid: 2604 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,39.5 + parent: 1 + type: Transform + - uid: 2605 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,39.5 + parent: 1 + type: Transform + - uid: 2606 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,39.5 + parent: 1 + type: Transform + - uid: 2607 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,39.5 + parent: 1 + type: Transform + - uid: 2608 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,39.5 + parent: 1 + type: Transform + - uid: 2609 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,39.5 + parent: 1 + type: Transform + - uid: 2610 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,39.5 + parent: 1 + type: Transform + - uid: 2611 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,35.5 + parent: 1 + type: Transform + - uid: 2612 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,35.5 + parent: 1 + type: Transform + - uid: 2613 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,35.5 + parent: 1 + type: Transform + - uid: 2614 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,35.5 + parent: 1 + type: Transform + - uid: 2615 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,35.5 + parent: 1 + type: Transform + - uid: 2616 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,35.5 + parent: 1 + type: Transform + - uid: 2617 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,35.5 + parent: 1 + type: Transform + - uid: 2618 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,35.5 + parent: 1 + type: Transform + - uid: 2790 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-58.5 + parent: 1 + type: Transform + - uid: 2837 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-58.5 + parent: 1 + type: Transform + - uid: 2840 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-58.5 + parent: 1 + type: Transform + - uid: 2841 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-58.5 + parent: 1 + type: Transform + - uid: 2842 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-57.5 + parent: 1 + type: Transform + - uid: 2843 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-59.5 + parent: 1 + type: Transform + - uid: 2844 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-56.5 + parent: 1 + type: Transform + - uid: 2845 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-55.5 + parent: 1 + type: Transform + - uid: 2980 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-32.5 + parent: 1 + type: Transform + - uid: 3804 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,34.5 + parent: 1 + type: Transform + - uid: 3850 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,42.5 + parent: 1 + type: Transform + - uid: 3851 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,41.5 + parent: 1 + type: Transform + - uid: 3852 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,40.5 + parent: 1 + type: Transform + - uid: 3853 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,40.5 + parent: 1 + type: Transform + - uid: 3854 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,39.5 + parent: 1 + type: Transform + - uid: 3855 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,39.5 + parent: 1 + type: Transform + - uid: 3856 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,38.5 + parent: 1 + type: Transform + - uid: 3857 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,37.5 + parent: 1 + type: Transform + - uid: 3858 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,37.5 + parent: 1 + type: Transform + - uid: 3859 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,36.5 + parent: 1 + type: Transform + - uid: 3860 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,35.5 + parent: 1 + type: Transform + - uid: 3861 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,34.5 + parent: 1 + type: Transform + - uid: 3862 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,34.5 + parent: 1 + type: Transform + - uid: 3863 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,33.5 + parent: 1 + type: Transform + - uid: 3864 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,42.5 + parent: 1 + type: Transform + - uid: 3865 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,41.5 + parent: 1 + type: Transform + - uid: 3866 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,41.5 + parent: 1 + type: Transform + - uid: 3867 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,40.5 + parent: 1 + type: Transform + - uid: 3868 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,39.5 + parent: 1 + type: Transform + - uid: 3869 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,39.5 + parent: 1 + type: Transform + - uid: 3870 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,38.5 + parent: 1 + type: Transform + - uid: 3871 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,37.5 + parent: 1 + type: Transform + - uid: 3872 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,37.5 + parent: 1 + type: Transform + - uid: 3873 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,36.5 + parent: 1 + type: Transform + - uid: 3874 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,35.5 + parent: 1 + type: Transform + - uid: 3875 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,35.5 + parent: 1 + type: Transform + - uid: 3876 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,34.5 + parent: 1 + type: Transform + - uid: 3877 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,34.5 + parent: 1 + type: Transform + - uid: 3878 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,34.5 + parent: 1 + type: Transform + - uid: 3879 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,34.5 + parent: 1 + type: Transform + - uid: 3880 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,35.5 + parent: 1 + type: Transform + - uid: 3881 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,35.5 + parent: 1 + type: Transform + - uid: 3882 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,35.5 + parent: 1 + type: Transform + - uid: 3883 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,35.5 + parent: 1 + type: Transform + - uid: 3884 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,35.5 + parent: 1 + type: Transform + - uid: 3885 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,35.5 + parent: 1 + type: Transform + - uid: 3886 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,41.5 + parent: 1 + type: Transform + - uid: 3887 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,41.5 + parent: 1 + type: Transform + - uid: 3888 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,41.5 + parent: 1 + type: Transform + - uid: 3889 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,41.5 + parent: 1 + type: Transform + - uid: 3890 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,41.5 + parent: 1 + type: Transform + - uid: 3891 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,34.5 + parent: 1 + type: Transform + - uid: 3892 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,34.5 + parent: 1 + type: Transform + - uid: 3893 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,34.5 + parent: 1 + type: Transform + - uid: 3894 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,34.5 + parent: 1 + type: Transform + - uid: 3895 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,34.5 + parent: 1 + type: Transform + - uid: 3896 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,34.5 + parent: 1 + type: Transform + - uid: 3897 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,33.5 + parent: 1 + type: Transform + - uid: 3899 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,34.5 + parent: 1 + type: Transform + - uid: 3900 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,34.5 + parent: 1 + type: Transform + - uid: 3901 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,34.5 + parent: 1 + type: Transform + - uid: 3902 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,34.5 + parent: 1 + type: Transform + - uid: 3903 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,33.5 + parent: 1 + type: Transform + - uid: 3904 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,32.5 + parent: 1 + type: Transform + - uid: 3905 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,32.5 + parent: 1 + type: Transform + - uid: 3906 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,32.5 + parent: 1 + type: Transform + - uid: 3907 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,32.5 + parent: 1 + type: Transform + - uid: 3908 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,32.5 + parent: 1 + type: Transform + - uid: 3909 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,32.5 + parent: 1 + type: Transform + - uid: 3931 + components: + - pos: -13.5,33.5 + parent: 1 + type: Transform + - uid: 3940 + components: + - pos: -6.5,42.5 + parent: 1 + type: Transform + - uid: 5841 + components: + - pos: -16.5,-46.5 + parent: 1 + type: Transform + - uid: 5843 + components: + - pos: -16.5,-45.5 + parent: 1 + type: Transform + - uid: 5844 + components: + - pos: -16.5,-44.5 + parent: 1 + type: Transform + - uid: 5845 + components: + - pos: -16.5,-43.5 + parent: 1 + type: Transform + - uid: 5846 + components: + - pos: -16.5,-42.5 + parent: 1 + type: Transform + - uid: 5847 + components: + - pos: -16.5,-41.5 + parent: 1 + type: Transform + - uid: 5848 + components: + - pos: -16.5,-40.5 + parent: 1 + type: Transform + - uid: 5849 + components: + - pos: -16.5,-39.5 + parent: 1 + type: Transform + - uid: 5850 + components: + - pos: -16.5,-38.5 + parent: 1 + type: Transform + - uid: 5851 + components: + - pos: -16.5,-37.5 + parent: 1 + type: Transform + - uid: 5852 + components: + - pos: -16.5,-36.5 + parent: 1 + type: Transform + - uid: 5853 + components: + - pos: -16.5,-35.5 + parent: 1 + type: Transform + - uid: 5854 + components: + - pos: -16.5,-34.5 + parent: 1 + type: Transform + - uid: 5855 + components: + - pos: -16.5,-33.5 + parent: 1 + type: Transform + - uid: 5857 + components: + - pos: -17.5,-32.5 + parent: 1 + type: Transform + - uid: 7005 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-2.5 + parent: 1 + type: Transform + - uid: 7006 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-3.5 + parent: 1 + type: Transform + - uid: 7007 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-4.5 + parent: 1 + type: Transform + - uid: 7008 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-2.5 + parent: 1 + type: Transform + - uid: 7009 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-3.5 + parent: 1 + type: Transform + - uid: 7010 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-4.5 + parent: 1 + type: Transform + - uid: 7011 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-2.5 + parent: 1 + type: Transform + - uid: 7012 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-3.5 + parent: 1 + type: Transform + - uid: 7013 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-4.5 + parent: 1 + type: Transform + - uid: 7014 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-2.5 + parent: 1 + type: Transform + - uid: 7015 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-3.5 + parent: 1 + type: Transform + - uid: 7016 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-4.5 + parent: 1 + type: Transform + - uid: 7023 + components: + - pos: 31.5,-20.5 + parent: 1 + type: Transform + - uid: 7024 + components: + - pos: 32.5,-20.5 + parent: 1 + type: Transform + - uid: 7025 + components: + - pos: 33.5,-20.5 + parent: 1 + type: Transform + - uid: 7026 + components: + - pos: 34.5,-20.5 + parent: 1 + type: Transform + - uid: 7027 + components: + - pos: 35.5,-20.5 + parent: 1 + type: Transform + - uid: 7028 + components: + - pos: 36.5,-20.5 + parent: 1 + type: Transform + - uid: 7029 + components: + - pos: 37.5,-20.5 + parent: 1 + type: Transform + - uid: 7030 + components: + - pos: 38.5,-20.5 + parent: 1 + type: Transform + - uid: 7031 + components: + - pos: 32.5,-21.5 + parent: 1 + type: Transform + - uid: 7032 + components: + - pos: 32.5,-22.5 + parent: 1 + type: Transform + - uid: 7033 + components: + - pos: 32.5,-23.5 + parent: 1 + type: Transform + - uid: 7034 + components: + - pos: 32.5,-24.5 + parent: 1 + type: Transform + - uid: 7035 + components: + - pos: 32.5,-25.5 + parent: 1 + type: Transform + - uid: 7036 + components: + - pos: 33.5,-25.5 + parent: 1 + type: Transform + - uid: 7037 + components: + - pos: 34.5,-25.5 + parent: 1 + type: Transform + - uid: 7038 + components: + - pos: 35.5,-25.5 + parent: 1 + type: Transform + - uid: 7039 + components: + - pos: 36.5,-25.5 + parent: 1 + type: Transform + - uid: 7040 + components: + - pos: 37.5,-25.5 + parent: 1 + type: Transform + - uid: 7041 + components: + - pos: 38.5,-25.5 + parent: 1 + type: Transform + - uid: 7042 + components: + - pos: 38.5,-24.5 + parent: 1 + type: Transform + - uid: 7043 + components: + - pos: 38.5,-23.5 + parent: 1 + type: Transform + - uid: 7044 + components: + - pos: 38.5,-22.5 + parent: 1 + type: Transform + - uid: 7045 + components: + - pos: 38.5,-21.5 + parent: 1 + type: Transform + - uid: 7046 + components: + - pos: 39.5,-20.5 + parent: 1 + type: Transform + - uid: 7047 + components: + - pos: 40.5,-20.5 + parent: 1 + type: Transform + - uid: 7048 + components: + - pos: 41.5,-20.5 + parent: 1 + type: Transform + - uid: 7049 + components: + - pos: 41.5,-19.5 + parent: 1 + type: Transform + - uid: 7065 + components: + - pos: 41.5,-3.5 + parent: 1 + type: Transform + - uid: 7455 + components: + - pos: 24.5,-26.5 + parent: 1 + type: Transform + - uid: 7456 + components: + - pos: 24.5,-27.5 + parent: 1 + type: Transform + - uid: 7457 + components: + - pos: 25.5,-26.5 + parent: 1 + type: Transform + - uid: 7458 + components: + - pos: 25.5,-27.5 + parent: 1 + type: Transform + - uid: 7459 + components: + - pos: 26.5,-26.5 + parent: 1 + type: Transform + - uid: 7460 + components: + - pos: 26.5,-27.5 + parent: 1 + type: Transform + - uid: 8937 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-12.5 + parent: 1 + type: Transform + - uid: 8938 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-12.5 + parent: 1 + type: Transform + - uid: 8939 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-13.5 + parent: 1 + type: Transform + - uid: 8940 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-15.5 + parent: 1 + type: Transform + - uid: 8941 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-16.5 + parent: 1 + type: Transform + - uid: 8942 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-18.5 + parent: 1 + type: Transform + - uid: 8943 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-19.5 + parent: 1 + type: Transform + - uid: 8944 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-20.5 + parent: 1 + type: Transform + - uid: 8945 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-20.5 + parent: 1 + type: Transform + - uid: 8946 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-19.5 + parent: 1 + type: Transform + - uid: 8947 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-20.5 + parent: 1 + type: Transform + - uid: 8948 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-20.5 + parent: 1 + type: Transform + - uid: 8949 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-19.5 + parent: 1 + type: Transform + - uid: 8950 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-20.5 + parent: 1 + type: Transform + - uid: 8951 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-19.5 + parent: 1 + type: Transform + - uid: 8952 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-21.5 + parent: 1 + type: Transform + - uid: 8953 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-21.5 + parent: 1 + type: Transform + - uid: 8954 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-22.5 + parent: 1 + type: Transform + - uid: 8955 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-22.5 + parent: 1 + type: Transform + - uid: 8956 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-22.5 + parent: 1 + type: Transform + - uid: 8957 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-21.5 + parent: 1 + type: Transform + - uid: 8958 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-17.5 + parent: 1 + type: Transform + - uid: 8959 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-17.5 + parent: 1 + type: Transform + - uid: 8960 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-16.5 + parent: 1 + type: Transform + - uid: 8961 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-15.5 + parent: 1 + type: Transform + - uid: 8962 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-17.5 + parent: 1 + type: Transform + - uid: 8963 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-12.5 + parent: 1 + type: Transform + - uid: 8964 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-13.5 + parent: 1 + type: Transform + - uid: 8965 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-14.5 + parent: 1 + type: Transform + - uid: 8966 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-10.5 + parent: 1 + type: Transform + - uid: 8967 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-10.5 + parent: 1 + type: Transform + - uid: 8968 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-9.5 + parent: 1 + type: Transform + - uid: 8969 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-9.5 + parent: 1 + type: Transform + - uid: 8970 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-10.5 + parent: 1 + type: Transform + - uid: 8971 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-10.5 + parent: 1 + type: Transform + - uid: 8972 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-10.5 + parent: 1 + type: Transform + - uid: 8973 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-11.5 + parent: 1 + type: Transform + - uid: 8974 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-12.5 + parent: 1 + type: Transform + - uid: 8975 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-13.5 + parent: 1 + type: Transform + - uid: 8976 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-12.5 + parent: 1 + type: Transform + - uid: 8977 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-8.5 + parent: 1 + type: Transform + - uid: 8978 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-7.5 + parent: 1 + type: Transform + - uid: 8979 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-5.5 + parent: 1 + type: Transform + - uid: 8980 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-4.5 + parent: 1 + type: Transform + - uid: 8981 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-3.5 + parent: 1 + type: Transform + - uid: 8982 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-1.5 + parent: 1 + type: Transform + - uid: 8983 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-1.5 + parent: 1 + type: Transform + - uid: 8984 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-2.5 + parent: 1 + type: Transform + - uid: 8985 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-9.5 + parent: 1 + type: Transform + - uid: 8986 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-21.5 + parent: 1 + type: Transform + - uid: 8987 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-20.5 + parent: 1 + type: Transform + - uid: 8988 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-22.5 + parent: 1 + type: Transform + - uid: 8989 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-21.5 + parent: 1 + type: Transform + - uid: 8990 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-21.5 + parent: 1 + type: Transform + - uid: 8991 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-20.5 + parent: 1 + type: Transform + - uid: 8992 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-22.5 + parent: 1 + type: Transform + - uid: 8993 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-21.5 + parent: 1 + type: Transform + - uid: 8994 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-22.5 + parent: 1 + type: Transform + - uid: 8995 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-21.5 + parent: 1 + type: Transform + - uid: 8996 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-20.5 + parent: 1 + type: Transform + - uid: 8997 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-18.5 + parent: 1 + type: Transform + - uid: 8998 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-18.5 + parent: 1 + type: Transform + - uid: 8999 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-17.5 + parent: 1 + type: Transform + - uid: 9000 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-18.5 + parent: 1 + type: Transform + - uid: 9001 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-18.5 + parent: 1 + type: Transform + - uid: 9002 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-17.5 + parent: 1 + type: Transform + - uid: 9003 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-18.5 + parent: 1 + type: Transform + - uid: 9004 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-17.5 + parent: 1 + type: Transform + - uid: 9005 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-18.5 + parent: 1 + type: Transform + - uid: 9006 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-25.5 + parent: 1 + type: Transform + - uid: 9007 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-18.5 + parent: 1 + type: Transform + - uid: 9008 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-16.5 + parent: 1 + type: Transform + - uid: 9009 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-14.5 + parent: 1 + type: Transform + - uid: 9010 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-13.5 + parent: 1 + type: Transform + - uid: 9011 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-11.5 + parent: 1 + type: Transform + - uid: 9012 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-25.5 + parent: 1 + type: Transform + - uid: 9013 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-26.5 + parent: 1 + type: Transform + - uid: 9071 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-11.5 + parent: 1 + type: Transform + - uid: 9072 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-11.5 + parent: 1 + type: Transform + - uid: 9073 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-12.5 + parent: 1 + type: Transform + - uid: 9074 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-13.5 + parent: 1 + type: Transform + - uid: 9075 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-14.5 + parent: 1 + type: Transform + - uid: 9076 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-12.5 + parent: 1 + type: Transform + - uid: 9077 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-11.5 + parent: 1 + type: Transform + - uid: 9078 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-15.5 + parent: 1 + type: Transform + - uid: 9079 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-15.5 + parent: 1 + type: Transform + - uid: 9080 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-14.5 + parent: 1 + type: Transform + - uid: 9081 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-16.5 + parent: 1 + type: Transform + - uid: 9082 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-17.5 + parent: 1 + type: Transform + - uid: 9083 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-18.5 + parent: 1 + type: Transform + - uid: 9084 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-17.5 + parent: 1 + type: Transform + - uid: 9085 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-17.5 + parent: 1 + type: Transform + - uid: 9086 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-18.5 + parent: 1 + type: Transform + - uid: 9087 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-17.5 + parent: 1 + type: Transform + - uid: 9088 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-18.5 + parent: 1 + type: Transform + - uid: 9089 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-18.5 + parent: 1 + type: Transform + - uid: 9090 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-17.5 + parent: 1 + type: Transform + - uid: 9091 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-15.5 + parent: 1 + type: Transform + - uid: 9092 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-13.5 + parent: 1 + type: Transform + - uid: 9093 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-14.5 + parent: 1 + type: Transform + - uid: 9094 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-14.5 + parent: 1 + type: Transform + - uid: 9095 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-13.5 + parent: 1 + type: Transform + - uid: 9096 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-14.5 + parent: 1 + type: Transform + - uid: 9097 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-7.5 + parent: 1 + type: Transform + - uid: 9098 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-5.5 + parent: 1 + type: Transform + - uid: 9099 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-6.5 + parent: 1 + type: Transform + - uid: 9100 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-3.5 + parent: 1 + type: Transform + - uid: 9101 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-1.5 + parent: 1 + type: Transform + - uid: 9102 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-0.5 + parent: 1 + type: Transform + - uid: 9103 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-1.5 + parent: 1 + type: Transform + - uid: 9104 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-1.5 + parent: 1 + type: Transform + - uid: 9105 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-1.5 + parent: 1 + type: Transform + - uid: 9106 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-0.5 + parent: 1 + type: Transform + - uid: 9107 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-0.5 + parent: 1 + type: Transform + - uid: 9108 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-0.5 + parent: 1 + type: Transform + - uid: 9109 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-1.5 + parent: 1 + type: Transform + - uid: 9111 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-1.5 + parent: 1 + type: Transform + - uid: 9112 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-0.5 + parent: 1 + type: Transform + - uid: 9113 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-0.5 + parent: 1 + type: Transform + - uid: 9114 + components: + - rot: 3.141592653589793 rad + pos: 37.5,-0.5 + parent: 1 + type: Transform + - uid: 9115 + components: + - rot: 3.141592653589793 rad + pos: 40.5,-0.5 + parent: 1 + type: Transform + - uid: 9116 + components: + - rot: 3.141592653589793 rad + pos: 42.5,-0.5 + parent: 1 + type: Transform + - uid: 9117 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-0.5 + parent: 1 + type: Transform + - uid: 9118 + components: + - rot: 3.141592653589793 rad + pos: 42.5,-1.5 + parent: 1 + type: Transform + - uid: 9119 + components: + - rot: 3.141592653589793 rad + pos: 44.5,-0.5 + parent: 1 + type: Transform + - uid: 9120 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-0.5 + parent: 1 + type: Transform + - uid: 9121 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-0.5 + parent: 1 + type: Transform + - uid: 9122 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-20.5 + parent: 1 + type: Transform + - uid: 9123 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-21.5 + parent: 1 + type: Transform + - uid: 9184 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,15.5 + parent: 1 + type: Transform + - uid: 9332 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,42.5 + parent: 1 + type: Transform + - uid: 9384 + components: + - rot: 3.141592653589793 rad + pos: 23.5,21.5 + parent: 1 + type: Transform + - uid: 9386 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,19.5 + parent: 1 + type: Transform + - uid: 9387 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,21.5 + parent: 1 + type: Transform + - uid: 9388 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,22.5 + parent: 1 + type: Transform + - uid: 9389 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,23.5 + parent: 1 + type: Transform + - uid: 9390 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,24.5 + parent: 1 + type: Transform + - uid: 9391 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,26.5 + parent: 1 + type: Transform + - uid: 9392 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,26.5 + parent: 1 + type: Transform + - uid: 9393 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,28.5 + parent: 1 + type: Transform + - uid: 9394 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,28.5 + parent: 1 + type: Transform + - uid: 9395 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,30.5 + parent: 1 + type: Transform + - uid: 9396 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,29.5 + parent: 1 + type: Transform + - uid: 9397 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,30.5 + parent: 1 + type: Transform + - uid: 9398 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,29.5 + parent: 1 + type: Transform + - uid: 9399 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,29.5 + parent: 1 + type: Transform + - uid: 9400 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,30.5 + parent: 1 + type: Transform + - uid: 9401 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,33.5 + parent: 1 + type: Transform + - uid: 9402 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,33.5 + parent: 1 + type: Transform + - uid: 9403 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,32.5 + parent: 1 + type: Transform + - uid: 9404 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,29.5 + parent: 1 + type: Transform + - uid: 9405 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,32.5 + parent: 1 + type: Transform + - uid: 9406 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,33.5 + parent: 1 + type: Transform + - uid: 9407 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,33.5 + parent: 1 + type: Transform + - uid: 9408 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,33.5 + parent: 1 + type: Transform + - uid: 9409 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,30.5 + parent: 1 + type: Transform + - uid: 9410 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,30.5 + parent: 1 + type: Transform + - uid: 9411 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,28.5 + parent: 1 + type: Transform + - uid: 9412 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,27.5 + parent: 1 + type: Transform + - uid: 9413 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,25.5 + parent: 1 + type: Transform + - uid: 9414 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,24.5 + parent: 1 + type: Transform + - uid: 9415 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,22.5 + parent: 1 + type: Transform + - uid: 9416 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,20.5 + parent: 1 + type: Transform + - uid: 9417 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,19.5 + parent: 1 + type: Transform + - uid: 9418 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,18.5 + parent: 1 + type: Transform + - uid: 9419 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,18.5 + parent: 1 + type: Transform + - uid: 9420 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,18.5 + parent: 1 + type: Transform + - uid: 9421 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,17.5 + parent: 1 + type: Transform + - uid: 9422 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,17.5 + parent: 1 + type: Transform + - uid: 9423 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,18.5 + parent: 1 + type: Transform + - uid: 9424 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,17.5 + parent: 1 + type: Transform + - uid: 9425 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,18.5 + parent: 1 + type: Transform + - uid: 9426 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,18.5 + parent: 1 + type: Transform + - uid: 9427 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,18.5 + parent: 1 + type: Transform + - uid: 9428 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,20.5 + parent: 1 + type: Transform + - uid: 9429 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,21.5 + parent: 1 + type: Transform + - uid: 9430 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,21.5 + parent: 1 + type: Transform + - uid: 9431 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,20.5 + parent: 1 + type: Transform + - uid: 9432 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,21.5 + parent: 1 + type: Transform + - uid: 9433 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,32.5 + parent: 1 + type: Transform + - uid: 9434 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,33.5 + parent: 1 + type: Transform + - uid: 9435 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,35.5 + parent: 1 + type: Transform + - uid: 9436 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,34.5 + parent: 1 + type: Transform + - uid: 9437 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,34.5 + parent: 1 + type: Transform + - uid: 9438 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,34.5 + parent: 1 + type: Transform + - uid: 9439 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,35.5 + parent: 1 + type: Transform + - uid: 9440 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,33.5 + parent: 1 + type: Transform + - uid: 9441 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,33.5 + parent: 1 + type: Transform + - uid: 9442 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,32.5 + parent: 1 + type: Transform + - uid: 9443 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,34.5 + parent: 1 + type: Transform + - uid: 9444 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,29.5 + parent: 1 + type: Transform + - uid: 9445 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,28.5 + parent: 1 + type: Transform + - uid: 9446 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,27.5 + parent: 1 + type: Transform + - uid: 9447 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,25.5 + parent: 1 + type: Transform + - uid: 9448 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,23.5 + parent: 1 + type: Transform + - uid: 9449 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,20.5 + parent: 1 + type: Transform + - uid: 9450 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,19.5 + parent: 1 + type: Transform + - uid: 9451 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,18.5 + parent: 1 + type: Transform + - uid: 9452 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,16.5 + parent: 1 + type: Transform + - uid: 9453 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,17.5 + parent: 1 + type: Transform + - uid: 9454 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,17.5 + parent: 1 + type: Transform + - uid: 9455 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,13.5 + parent: 1 + type: Transform + - uid: 9456 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,11.5 + parent: 1 + type: Transform + - uid: 9457 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,10.5 + parent: 1 + type: Transform + - uid: 9458 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,15.5 + parent: 1 + type: Transform + - uid: 9459 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,8.5 + parent: 1 + type: Transform + - uid: 9460 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,7.5 + parent: 1 + type: Transform + - uid: 9461 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,6.5 + parent: 1 + type: Transform + - uid: 9462 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,6.5 + parent: 1 + type: Transform + - uid: 9463 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,6.5 + parent: 1 + type: Transform + - uid: 9464 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,7.5 + parent: 1 + type: Transform + - uid: 9465 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,5.5 + parent: 1 + type: Transform + - uid: 9466 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,7.5 + parent: 1 + type: Transform + - uid: 9467 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,6.5 + parent: 1 + type: Transform + - uid: 9468 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,6.5 + parent: 1 + type: Transform + - uid: 9469 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,5.5 + parent: 1 + type: Transform + - uid: 9741 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,16.5 + parent: 1 + type: Transform + - uid: 9742 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,18.5 + parent: 1 + type: Transform + - uid: 9743 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,19.5 + parent: 1 + type: Transform + - uid: 9744 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,18.5 + parent: 1 + type: Transform + - uid: 9745 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,19.5 + parent: 1 + type: Transform + - uid: 9746 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,19.5 + parent: 1 + type: Transform + - uid: 9747 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,18.5 + parent: 1 + type: Transform + - uid: 9748 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,19.5 + parent: 1 + type: Transform + - uid: 9749 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,19.5 + parent: 1 + type: Transform + - uid: 9750 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,22.5 + parent: 1 + type: Transform + - uid: 9751 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,23.5 + parent: 1 + type: Transform + - uid: 9752 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,24.5 + parent: 1 + type: Transform + - uid: 9753 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,25.5 + parent: 1 + type: Transform + - uid: 9754 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,22.5 + parent: 1 + type: Transform + - uid: 9755 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,22.5 + parent: 1 + type: Transform + - uid: 9756 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,23.5 + parent: 1 + type: Transform + - uid: 9757 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,25.5 + parent: 1 + type: Transform + - uid: 9758 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,23.5 + parent: 1 + type: Transform + - uid: 9759 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,26.5 + parent: 1 + type: Transform + - uid: 9760 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,27.5 + parent: 1 + type: Transform + - uid: 9761 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,27.5 + parent: 1 + type: Transform + - uid: 9762 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,27.5 + parent: 1 + type: Transform + - uid: 9763 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,26.5 + parent: 1 + type: Transform + - uid: 9764 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,27.5 + parent: 1 + type: Transform + - uid: 9765 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,28.5 + parent: 1 + type: Transform + - uid: 9766 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,28.5 + parent: 1 + type: Transform + - uid: 9767 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,29.5 + parent: 1 + type: Transform + - uid: 9768 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,27.5 + parent: 1 + type: Transform + - uid: 9769 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,27.5 + parent: 1 + type: Transform + - uid: 9770 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,25.5 + parent: 1 + type: Transform + - uid: 9771 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,24.5 + parent: 1 + type: Transform + - uid: 9772 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,24.5 + parent: 1 + type: Transform + - uid: 9773 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,25.5 + parent: 1 + type: Transform + - uid: 9774 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,23.5 + parent: 1 + type: Transform + - uid: 9775 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,25.5 + parent: 1 + type: Transform + - uid: 9776 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,24.5 + parent: 1 + type: Transform + - uid: 9777 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,23.5 + parent: 1 + type: Transform + - uid: 9778 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,24.5 + parent: 1 + type: Transform + - uid: 9779 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,22.5 + parent: 1 + type: Transform + - uid: 9780 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,21.5 + parent: 1 + type: Transform + - uid: 9781 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,20.5 + parent: 1 + type: Transform + - uid: 9782 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,18.5 + parent: 1 + type: Transform + - uid: 9783 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,17.5 + parent: 1 + type: Transform + - uid: 9784 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,17.5 + parent: 1 + type: Transform + - uid: 9785 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,22.5 + parent: 1 + type: Transform + - uid: 9786 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,24.5 + parent: 1 + type: Transform + - uid: 9787 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,23.5 + parent: 1 + type: Transform + - uid: 9788 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,20.5 + parent: 1 + type: Transform + - uid: 9789 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,19.5 + parent: 1 + type: Transform + - uid: 9790 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,18.5 + parent: 1 + type: Transform + - uid: 9791 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,18.5 + parent: 1 + type: Transform + - uid: 9792 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,18.5 + parent: 1 + type: Transform + - uid: 9793 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,18.5 + parent: 1 + type: Transform + - uid: 9794 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,18.5 + parent: 1 + type: Transform + - uid: 9795 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,16.5 + parent: 1 + type: Transform + - uid: 9796 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,15.5 + parent: 1 + type: Transform + - uid: 9797 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,14.5 + parent: 1 + type: Transform + - uid: 9798 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,12.5 + parent: 1 + type: Transform + - uid: 9799 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,11.5 + parent: 1 + type: Transform + - uid: 9800 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,9.5 + parent: 1 + type: Transform + - uid: 9801 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,8.5 + parent: 1 + type: Transform + - uid: 9802 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,7.5 + parent: 1 + type: Transform + - uid: 9803 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,6.5 + parent: 1 + type: Transform + - uid: 9804 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,28.5 + parent: 1 + type: Transform + - uid: 9805 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,27.5 + parent: 1 + type: Transform + - uid: 10090 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-15.5 + parent: 1 + type: Transform + - uid: 12516 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-32.5 + parent: 1 + type: Transform +- proto: Cautery + entities: + - uid: 8244 + components: + - pos: -24.632475,20.505098 + parent: 1 + type: Transform + - uid: 9628 + components: + - pos: 16.576576,27.750107 + parent: 1 + type: Transform +- proto: Chair + entities: + - uid: 664 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-9.5 + parent: 1 + type: Transform + - uid: 665 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-8.5 + parent: 1 + type: Transform + - uid: 666 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-7.5 + parent: 1 + type: Transform + - uid: 1839 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-5.5 + parent: 1 + type: Transform + - uid: 1893 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,14.5 + parent: 1 + type: Transform + - uid: 1894 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,13.5 + parent: 1 + type: Transform + - uid: 1895 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,12.5 + parent: 1 + type: Transform + - uid: 1899 + components: + - rot: 3.141592653589793 rad + pos: -13.5,8.5 + parent: 1 + type: Transform + - uid: 1900 + components: + - rot: 3.141592653589793 rad + pos: -16.5,8.5 + parent: 1 + type: Transform + - uid: 1901 + components: + - rot: 3.141592653589793 rad + pos: -19.5,8.5 + parent: 1 + type: Transform + - uid: 3210 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,1.5 + parent: 1 + type: Transform + - uid: 3211 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,1.5 + parent: 1 + type: Transform + - uid: 3212 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,8.5 + parent: 1 + type: Transform + - uid: 3801 + components: + - pos: -1.5,16.5 + parent: 1 + type: Transform + - uid: 3802 + components: + - pos: -0.5,16.5 + parent: 1 + type: Transform + - uid: 3803 + components: + - pos: 0.5,16.5 + parent: 1 + type: Transform + - uid: 4845 + components: + - rot: 3.141592653589793 rad + pos: 39.5,27.5 + parent: 1 + type: Transform + - uid: 4846 + components: + - rot: 3.141592653589793 rad + pos: 40.5,27.5 + parent: 1 + type: Transform + - uid: 4847 + components: + - rot: 3.141592653589793 rad + pos: 41.5,27.5 + parent: 1 + type: Transform + - uid: 4848 + components: + - rot: 3.141592653589793 rad + pos: 44.5,27.5 + parent: 1 + type: Transform + - uid: 4849 + components: + - rot: 3.141592653589793 rad + pos: 45.5,27.5 + parent: 1 + type: Transform + - uid: 4850 + components: + - rot: 3.141592653589793 rad + pos: 46.5,27.5 + parent: 1 + type: Transform + - uid: 4851 + components: + - rot: 3.141592653589793 rad + pos: 41.5,25.5 + parent: 1 + type: Transform + - uid: 4852 + components: + - rot: 3.141592653589793 rad + pos: 42.5,25.5 + parent: 1 + type: Transform + - uid: 4853 + components: + - rot: 3.141592653589793 rad + pos: 43.5,25.5 + parent: 1 + type: Transform + - uid: 4854 + components: + - rot: 3.141592653589793 rad + pos: 44.5,25.5 + parent: 1 + type: Transform + - uid: 4910 + components: + - pos: 46.5,34.5 + parent: 1 + type: Transform + - uid: 5538 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,7.5 + parent: 1 + type: Transform + - uid: 5539 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,9.5 + parent: 1 + type: Transform + - uid: 5540 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,10.5 + parent: 1 + type: Transform + - uid: 5541 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,17.5 + parent: 1 + type: Transform + - uid: 5542 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,18.5 + parent: 1 + type: Transform + - uid: 5543 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,19.5 + parent: 1 + type: Transform + - uid: 5544 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,16.5 + parent: 1 + type: Transform + - uid: 5545 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,17.5 + parent: 1 + type: Transform + - uid: 5546 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,18.5 + parent: 1 + type: Transform + - uid: 5549 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,3.5 + parent: 1 + type: Transform + - uid: 5550 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,3.5 + parent: 1 + type: Transform + - uid: 5559 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,20.5 + parent: 1 + type: Transform + - uid: 5572 + components: + - pos: -39.5,-4.5 + parent: 1 + type: Transform + - uid: 7501 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-20.5 + parent: 1 + type: Transform + - uid: 7502 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-21.5 + parent: 1 + type: Transform + - uid: 7503 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-22.5 + parent: 1 + type: Transform + - uid: 7505 + components: + - pos: 2.5,-30.5 + parent: 1 + type: Transform + - uid: 7506 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-32.5 + parent: 1 + type: Transform + - uid: 7510 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,3.5 + parent: 1 + type: Transform + - uid: 7511 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,3.5 + parent: 1 + type: Transform + - uid: 7512 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,1.5 + parent: 1 + type: Transform + - uid: 7513 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,1.5 + parent: 1 + type: Transform + - uid: 7514 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,6.5 + parent: 1 + type: Transform + - uid: 7515 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,7.5 + parent: 1 + type: Transform + - uid: 7516 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,8.5 + parent: 1 + type: Transform + - uid: 7517 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,9.5 + parent: 1 + type: Transform + - uid: 7518 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,10.5 + parent: 1 + type: Transform + - uid: 7519 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,1.5 + parent: 1 + type: Transform + - uid: 7520 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,1.5 + parent: 1 + type: Transform + - uid: 7521 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,7.5 + parent: 1 + type: Transform + - uid: 7522 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,8.5 + parent: 1 + type: Transform + - uid: 7523 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,9.5 + parent: 1 + type: Transform + - uid: 8892 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-15.5 + parent: 1 + type: Transform + - uid: 8895 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-16.5 + parent: 1 + type: Transform + - uid: 8898 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-15.5 + parent: 1 + type: Transform + - uid: 8899 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-21.5 + parent: 1 + type: Transform + - uid: 9141 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-12.5 + parent: 1 + type: Transform + - uid: 9165 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-3.5 + parent: 1 + type: Transform + - uid: 9232 + components: + - rot: 3.141592653589793 rad + pos: 24.5,32.5 + parent: 1 + type: Transform + - uid: 9234 + components: + - rot: 3.141592653589793 rad + pos: 23.5,32.5 + parent: 1 + type: Transform + - uid: 9235 + components: + - rot: 3.141592653589793 rad + pos: 22.5,32.5 + parent: 1 + type: Transform + - uid: 9236 + components: + - rot: 3.141592653589793 rad + pos: 25.5,32.5 + parent: 1 + type: Transform + - uid: 9237 + components: + - pos: 27.5,35.5 + parent: 1 + type: Transform + - uid: 9238 + components: + - pos: 28.5,35.5 + parent: 1 + type: Transform + - uid: 9239 + components: + - pos: 29.5,35.5 + parent: 1 + type: Transform + - uid: 9316 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,23.5 + parent: 1 + type: Transform + - uid: 9361 + components: + - rot: 3.141592653589793 rad + pos: 18.5,17.5 + parent: 1 + type: Transform + - uid: 9362 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,22.5 + parent: 1 + type: Transform + - uid: 9367 + components: + - pos: 12.5,30.5 + parent: 1 + type: Transform + - uid: 9383 + components: + - rot: 3.141592653589793 rad + pos: 23.5,20.5 + parent: 1 + type: Transform + - uid: 9528 + components: + - pos: 4.5,-7.5 + parent: 1 + type: Transform + - uid: 9529 + components: + - pos: 5.5,-7.5 + parent: 1 + type: Transform + - uid: 9540 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,7.5 + parent: 1 + type: Transform + - uid: 9701 + components: + - rot: 3.141592653589793 rad + pos: -35.5,18.5 + parent: 1 + type: Transform + - uid: 9705 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,21.5 + parent: 1 + type: Transform + - uid: 9706 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,23.5 + parent: 1 + type: Transform + - uid: 9712 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,11.5 + parent: 1 + type: Transform +- proto: ChairCursed + entities: + - uid: 8763 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-24.5 + parent: 1 + type: Transform +- proto: ChairFolding + entities: + - uid: 1812 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,25.5 + parent: 1 + type: Transform + - uid: 1813 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,27.5 + parent: 1 + type: Transform + - uid: 3449 + components: + - rot: 3.141592653589793 rad + pos: -37.5,5.5 + parent: 1 + type: Transform + - uid: 3450 + components: + - rot: 3.141592653589793 rad + pos: -37.5,6.5 + parent: 1 + type: Transform + - uid: 3451 + components: + - rot: 3.141592653589793 rad + pos: -37.5,7.5 + parent: 1 + type: Transform + - uid: 3452 + components: + - rot: 3.141592653589793 rad + pos: -37.5,8.5 + parent: 1 + type: Transform + - uid: 3453 + components: + - rot: 3.141592653589793 rad + pos: -36.5,5.5 + parent: 1 + type: Transform + - uid: 3454 + components: + - rot: 3.141592653589793 rad + pos: -36.5,6.5 + parent: 1 + type: Transform + - uid: 3455 + components: + - rot: 3.141592653589793 rad + pos: -36.5,7.5 + parent: 1 + type: Transform + - uid: 3456 + components: + - rot: 3.141592653589793 rad + pos: -36.5,8.5 + parent: 1 + type: Transform + - uid: 3457 + components: + - rot: 3.141592653589793 rad + pos: -32.5,8.5 + parent: 1 + type: Transform + - uid: 3458 + components: + - rot: 3.141592653589793 rad + pos: -32.5,7.5 + parent: 1 + type: Transform + - uid: 3459 + components: + - rot: 3.141592653589793 rad + pos: -32.5,6.5 + parent: 1 + type: Transform + - uid: 3460 + components: + - rot: 3.141592653589793 rad + pos: -32.5,5.5 + parent: 1 + type: Transform + - uid: 3461 + components: + - rot: 3.141592653589793 rad + pos: -31.5,8.5 + parent: 1 + type: Transform + - uid: 3462 + components: + - rot: 3.141592653589793 rad + pos: -31.5,7.5 + parent: 1 + type: Transform + - uid: 3463 + components: + - rot: 3.141592653589793 rad + pos: -31.5,6.5 + parent: 1 + type: Transform + - uid: 3464 + components: + - rot: 3.141592653589793 rad + pos: -31.5,5.5 + parent: 1 + type: Transform + - uid: 3465 + components: + - rot: 3.141592653589793 rad + pos: -31.5,10.5 + parent: 1 + type: Transform + - uid: 3466 + components: + - pos: -34.5,10.5 + parent: 1 + type: Transform + - uid: 5570 + components: + - pos: -40.5,-4.5 + parent: 1 + type: Transform + - uid: 5571 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-6.5 + parent: 1 + type: Transform + - uid: 8803 + components: + - pos: -38.5,-22.5 + parent: 1 + type: Transform + - uid: 8804 + components: + - pos: -37.5,-22.5 + parent: 1 + type: Transform + - uid: 8810 + components: + - pos: -42.5,-16.5 + parent: 1 + type: Transform + - uid: 8811 + components: + - pos: -43.5,-14.5 + parent: 1 + type: Transform + - uid: 8812 + components: + - pos: -42.5,-14.5 + parent: 1 + type: Transform + - uid: 8813 + components: + - pos: -41.5,-14.5 + parent: 1 + type: Transform + - uid: 8814 + components: + - pos: -40.5,-14.5 + parent: 1 + type: Transform + - uid: 8893 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-22.5 + parent: 1 + type: Transform + - uid: 8896 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-2.5 + parent: 1 + type: Transform + - uid: 8897 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-8.5 + parent: 1 + type: Transform + - uid: 9142 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-18.5 + parent: 1 + type: Transform + - uid: 9166 + components: + - rot: 3.141592653589793 rad + pos: 42.5,-1.5 + parent: 1 + type: Transform + - uid: 9360 + components: + - rot: 3.141592653589793 rad + pos: 16.5,17.5 + parent: 1 + type: Transform + - uid: 9539 + components: + - pos: 37.5,7.5 + parent: 1 + type: Transform + - uid: 9703 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,20.5 + parent: 1 + type: Transform + - uid: 9708 + components: + - pos: -22.5,29.5 + parent: 1 + type: Transform +- proto: ChairFoldingSpawnFolded + entities: + - uid: 8801 + components: + - pos: -40.497337,-24.45458 + parent: 1 + type: Transform + - uid: 8802 + components: + - pos: -40.481712,-24.251455 + parent: 1 + type: Transform +- proto: ChairOfficeDark + entities: + - uid: 778 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,14.5 + parent: 1 + type: Transform + - uid: 779 + components: + - pos: 14.5,13.5 + parent: 1 + type: Transform + - uid: 1710 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-16.5 + parent: 1 + type: Transform + - uid: 1875 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-2.5 + parent: 1 + type: Transform + - uid: 2868 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-50.5 + parent: 1 + type: Transform + - uid: 3914 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,51.5 + parent: 1 + type: Transform + - uid: 3915 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,53.5 + parent: 1 + type: Transform + - uid: 3916 + components: + - rot: 3.141592653589793 rad + pos: -6.5,55.5 + parent: 1 + type: Transform + - uid: 3917 + components: + - pos: -4.5,49.5 + parent: 1 + type: Transform + - uid: 4053 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,29.5 + parent: 1 + type: Transform + - uid: 4054 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,28.5 + parent: 1 + type: Transform + - uid: 4055 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,27.5 + parent: 1 + type: Transform + - uid: 4056 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,27.5 + parent: 1 + type: Transform + - uid: 4057 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,28.5 + parent: 1 + type: Transform + - uid: 4058 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,29.5 + parent: 1 + type: Transform + - uid: 4078 + components: + - rot: 3.141592653589793 rad + pos: -2.5,31.5 + parent: 1 + type: Transform + - uid: 4079 + components: + - rot: 3.141592653589793 rad + pos: -1.5,31.5 + parent: 1 + type: Transform + - uid: 4080 + components: + - rot: 3.141592653589793 rad + pos: -4.5,30.5 + parent: 1 + type: Transform + - uid: 4081 + components: + - rot: 3.141592653589793 rad + pos: -5.5,30.5 + parent: 1 + type: Transform + - uid: 4082 + components: + - rot: 3.141592653589793 rad + pos: 0.5,30.5 + parent: 1 + type: Transform + - uid: 4083 + components: + - rot: 3.141592653589793 rad + pos: 1.5,30.5 + parent: 1 + type: Transform + - uid: 4096 + components: + - pos: 4.5,28.5 + parent: 1 + type: Transform + - uid: 4902 + components: + - rot: 3.141592653589793 rad + pos: 40.5,30.5 + parent: 1 + type: Transform + - uid: 4903 + components: + - rot: 3.141592653589793 rad + pos: 41.5,30.5 + parent: 1 + type: Transform + - uid: 4904 + components: + - rot: 3.141592653589793 rad + pos: 44.5,30.5 + parent: 1 + type: Transform + - uid: 4905 + components: + - rot: 3.141592653589793 rad + pos: 45.5,30.5 + parent: 1 + type: Transform + - uid: 4912 + components: + - pos: 39.5,34.5 + parent: 1 + type: Transform + - uid: 4966 + components: + - pos: 0.5,19.5 + parent: 1 + type: Transform + - uid: 5332 + components: + - pos: 29.5,9.5 + parent: 1 + type: Transform + - uid: 5364 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,5.5 + parent: 1 + type: Transform + - uid: 5367 + components: + - rot: 3.141592653589793 rad + pos: 28.5,17.5 + parent: 1 + type: Transform + - uid: 5375 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,13.5 + parent: 1 + type: Transform + - uid: 5574 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-7.5 + parent: 1 + type: Transform + - uid: 5575 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-3.5 + parent: 1 + type: Transform + - uid: 5673 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-14.5 + parent: 1 + type: Transform + - uid: 5674 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-14.5 + parent: 1 + type: Transform + - uid: 6394 + components: + - pos: -9.5,-3.5 + parent: 1 + type: Transform + - uid: 6786 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-10.5 + parent: 1 + type: Transform + - uid: 7397 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-20.5 + parent: 1 + type: Transform + - uid: 7398 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-21.5 + parent: 1 + type: Transform + - uid: 7399 + components: + - pos: 12.5,-26.5 + parent: 1 + type: Transform + - uid: 8013 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-12.5 + parent: 1 + type: Transform + - uid: 8894 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-16.5 + parent: 1 + type: Transform + - uid: 9317 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,23.5 + parent: 1 + type: Transform + - uid: 9385 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,17.5 + parent: 1 + type: Transform + - uid: 9633 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,25.5 + parent: 1 + type: Transform + - uid: 11749 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-11.5 + parent: 1 + type: Transform + - uid: 12424 + components: + - pos: -6.5,-14.5 + parent: 1 + type: Transform + - uid: 12455 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + type: Transform +- proto: ChairOfficeLight + entities: + - uid: 1874 + components: + - pos: -19.5,15.5 + parent: 1 + type: Transform + - uid: 5608 + components: + - rot: 3.141592653589793 rad + pos: -12.5,15.5 + parent: 1 + type: Transform + - uid: 5609 + components: + - rot: 3.141592653589793 rad + pos: -9.5,13.5 + parent: 1 + type: Transform + - uid: 5610 + components: + - rot: 3.141592653589793 rad + pos: -8.5,6.5 + parent: 1 + type: Transform + - uid: 5921 + components: + - pos: -12.5,13.5 + parent: 1 + type: Transform + - uid: 9143 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-15.5 + parent: 1 + type: Transform + - uid: 9152 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-21.5 + parent: 1 + type: Transform + - uid: 9162 + components: + - pos: 22.5,-0.5 + parent: 1 + type: Transform + - uid: 9366 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,30.5 + parent: 1 + type: Transform + - uid: 9547 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,23.5 + parent: 1 + type: Transform + - uid: 9702 + components: + - rot: 3.141592653589793 rad + pos: -32.5,21.5 + parent: 1 + type: Transform + - uid: 9704 + components: + - rot: 3.141592653589793 rad + pos: -24.5,26.5 + parent: 1 + type: Transform +- proto: ChairRitual + entities: + - uid: 8761 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-23.5 + parent: 1 + type: Transform + - uid: 8762 + components: + - pos: -41.5,-22.5 + parent: 1 + type: Transform +- proto: ChairWood + entities: + - uid: 2031 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,13.5 + parent: 1 + type: Transform + - uid: 2787 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-50.5 + parent: 1 + type: Transform + - uid: 3448 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,13.5 + parent: 1 + type: Transform + - uid: 5030 + components: + - rot: 3.141592653589793 rad + pos: 0.5,9.5 + parent: 1 + type: Transform + - uid: 5033 + components: + - pos: -1.5,11.5 + parent: 1 + type: Transform + - uid: 5034 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,10.5 + parent: 1 + type: Transform + - uid: 5037 + components: + - pos: 0.5,11.5 + parent: 1 + type: Transform + - uid: 5038 + components: + - pos: 1.5,11.5 + parent: 1 + type: Transform + - uid: 5046 + components: + - rot: 3.141592653589793 rad + pos: 1.5,9.5 + parent: 1 + type: Transform + - uid: 5047 + components: + - rot: 3.141592653589793 rad + pos: 2.5,9.5 + parent: 1 + type: Transform + - uid: 5048 + components: + - pos: 2.5,11.5 + parent: 1 + type: Transform + - uid: 5576 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-5.5 + parent: 1 + type: Transform + - uid: 8301 + components: + - pos: -35.5,-15.5 + parent: 1 + type: Transform + - uid: 8302 + components: + - rot: 3.141592653589793 rad + pos: -35.5,-17.5 + parent: 1 + type: Transform + - uid: 8303 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-17.5 + parent: 1 + type: Transform + - uid: 8304 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-17.5 + parent: 1 + type: Transform + - uid: 8499 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-17.5 + parent: 1 + type: Transform + - uid: 12523 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-29.5 + parent: 1 + type: Transform +- proto: chem_master + entities: + - uid: 5604 + components: + - pos: -8.5,14.5 + parent: 1 + type: Transform + - uid: 5605 + components: + - pos: -11.5,16.5 + parent: 1 + type: Transform +- proto: ChemDispenser + entities: + - uid: 5606 + components: + - pos: -12.5,16.5 + parent: 1 + type: Transform + - uid: 5612 + components: + - pos: -8.5,13.5 + parent: 1 + type: Transform +- proto: ChemistryHotplate + entities: + - uid: 5871 + components: + - pos: -11.5,13.5 + parent: 1 + type: Transform +- proto: ChessBoard + entities: + - uid: 5058 + components: + - rot: -1.5707963267948966 rad + pos: 3.502126,25.59834 + parent: 1 + type: Transform + - uid: 7657 + components: + - pos: 2.5021737,-31.407312 + parent: 1 + type: Transform +- proto: ChurchOrganInstrument + entities: + - uid: 3468 + components: + - rot: 3.141592653589793 rad + pos: -31.5,11.5 + parent: 1 + type: Transform +- proto: CigarGoldCase + entities: + - uid: 4136 + components: + - pos: -3.2445543,23.545168 + parent: 1 + type: Transform +- proto: CircuitImprinter + entities: + - uid: 3807 + components: + - pos: -9.5,-0.5 + parent: 1 + type: Transform +- proto: ClosetBase + entities: + - uid: 12521 + components: + - pos: -23.5,-28.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 12522 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: ClosetChefFilled + entities: + - uid: 5963 + components: + - pos: -2.5,1.5 + parent: 1 + type: Transform +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 3610 + components: + - pos: -9.5,46.5 + parent: 1 + type: Transform + - uid: 4085 + components: + - pos: -4.5,27.5 + parent: 1 + type: Transform + - uid: 5057 + components: + - pos: 3.5,18.5 + parent: 1 + type: Transform + - uid: 5562 + components: + - pos: 44.5,23.5 + parent: 1 + type: Transform + - uid: 5563 + components: + - pos: 46.5,3.5 + parent: 1 + type: Transform + - uid: 5565 + components: + - pos: 42.5,4.5 + parent: 1 + type: Transform + - uid: 6330 + components: + - pos: -20.5,-16.5 + parent: 1 + type: Transform + - uid: 7238 + components: + - pos: 5.5,-27.5 + parent: 1 + type: Transform + - uid: 7526 + components: + - pos: -39.5,13.5 + parent: 1 + type: Transform + - uid: 7647 + components: + - pos: -39.5,4.5 + parent: 1 + type: Transform + - uid: 8836 + components: + - pos: -34.5,-1.5 + parent: 1 + type: Transform + - uid: 8839 + components: + - pos: -24.5,-10.5 + parent: 1 + type: Transform + - uid: 8840 + components: + - pos: -10.5,-17.5 + parent: 1 + type: Transform + - uid: 8841 + components: + - pos: -2.5,-11.5 + parent: 1 + type: Transform + - uid: 8844 + components: + - pos: 6.5,-12.5 + parent: 1 + type: Transform + - uid: 8845 + components: + - pos: 32.5,-13.5 + parent: 1 + type: Transform + - uid: 8849 + components: + - pos: 44.5,-1.5 + parent: 1 + type: Transform + - uid: 8902 + components: + - pos: -41.5,-12.5 + parent: 1 + type: Transform + - uid: 9173 + components: + - pos: 32.5,-7.5 + parent: 1 + type: Transform + - uid: 9247 + components: + - pos: 37.5,35.5 + parent: 1 + type: Transform + - uid: 9248 + components: + - pos: 36.5,35.5 + parent: 1 + type: Transform + - uid: 9345 + components: + - pos: 7.5,19.5 + parent: 1 + type: Transform + - uid: 9346 + components: + - pos: -4.5,17.5 + parent: 1 + type: Transform + - uid: 9347 + components: + - pos: -5.5,17.5 + parent: 1 + type: Transform + - uid: 9356 + components: + - pos: 8.5,33.5 + parent: 1 + type: Transform + - uid: 9379 + components: + - pos: 26.5,21.5 + parent: 1 + type: Transform + - uid: 9531 + components: + - pos: 41.5,17.5 + parent: 1 + type: Transform + - uid: 9534 + components: + - pos: 30.5,5.5 + parent: 1 + type: Transform + - uid: 9665 + components: + - pos: -31.5,25.5 + parent: 1 + type: Transform + - uid: 9668 + components: + - pos: -36.5,16.5 + parent: 1 + type: Transform + - uid: 9669 + components: + - pos: -29.5,6.5 + parent: 1 + type: Transform + - uid: 9672 + components: + - pos: -8.5,17.5 + parent: 1 + type: Transform + - uid: 12536 + components: + - pos: 21.5,-0.5 + parent: 1 + type: Transform +- proto: ClosetFireFilled + entities: + - uid: 4086 + components: + - pos: -5.5,27.5 + parent: 1 + type: Transform + - uid: 5056 + components: + - pos: 3.5,19.5 + parent: 1 + type: Transform + - uid: 5564 + components: + - pos: 46.5,4.5 + parent: 1 + type: Transform + - uid: 6100 + components: + - pos: -26.5,-7.5 + parent: 1 + type: Transform + - uid: 6331 + components: + - pos: -19.5,-16.5 + parent: 1 + type: Transform + - uid: 7239 + components: + - pos: 6.5,-27.5 + parent: 1 + type: Transform + - uid: 7530 + components: + - pos: -39.5,5.5 + parent: 1 + type: Transform + - uid: 8837 + components: + - pos: -33.5,-1.5 + parent: 1 + type: Transform + - uid: 8838 + components: + - pos: -24.5,-9.5 + parent: 1 + type: Transform + - uid: 8842 + components: + - pos: -2.5,-12.5 + parent: 1 + type: Transform + - uid: 8843 + components: + - pos: 5.5,-12.5 + parent: 1 + type: Transform + - uid: 8846 + components: + - pos: 32.5,-14.5 + parent: 1 + type: Transform + - uid: 8850 + components: + - pos: 43.5,-1.5 + parent: 1 + type: Transform + - uid: 9174 + components: + - pos: 32.5,-6.5 + parent: 1 + type: Transform + - uid: 9249 + components: + - pos: 35.5,35.5 + parent: 1 + type: Transform + - uid: 9348 + components: + - pos: 7.5,20.5 + parent: 1 + type: Transform + - uid: 9380 + components: + - pos: 27.5,21.5 + parent: 1 + type: Transform + - uid: 9532 + components: + - pos: 42.5,17.5 + parent: 1 + type: Transform + - uid: 9533 + components: + - pos: 30.5,6.5 + parent: 1 + type: Transform + - uid: 9574 + components: + - pos: 46.5,23.5 + parent: 1 + type: Transform + - uid: 9666 + components: + - pos: -31.5,24.5 + parent: 1 + type: Transform + - uid: 9667 + components: + - pos: -36.5,15.5 + parent: 1 + type: Transform + - uid: 9670 + components: + - pos: -29.5,7.5 + parent: 1 + type: Transform + - uid: 9671 + components: + - pos: -8.5,16.5 + parent: 1 + type: Transform + - uid: 12537 + components: + - pos: 20.5,-0.5 + parent: 1 + type: Transform +- proto: ClosetJanitorFilled + entities: + - uid: 7659 + components: + - pos: 11.5,-2.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14972 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7660 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: ClosetL3JanitorFilled + entities: + - uid: 7662 + components: + - pos: 11.5,-0.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 3057 + - 3056 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: ClosetL3VirologyFilled + entities: + - uid: 5694 + components: + - pos: -17.5,20.5 + parent: 1 + type: Transform + - uid: 5695 + components: + - pos: -17.5,19.5 + parent: 1 + type: Transform +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 8851 + components: + - pos: -24.5,-11.5 + parent: 1 + type: Transform + - uid: 8854 + components: + - pos: -27.5,-22.5 + parent: 1 + type: Transform + - uid: 8855 + components: + - pos: -35.5,-19.5 + parent: 1 + type: Transform + - uid: 8856 + components: + - pos: -17.5,-20.5 + parent: 1 + type: Transform + - uid: 8857 + components: + - pos: -1.5,-18.5 + parent: 1 + type: Transform + - uid: 8861 + components: + - pos: -33.5,-12.5 + parent: 1 + type: Transform + - uid: 8871 + components: + - pos: -36.5,-19.5 + parent: 1 + type: Transform + - uid: 8890 + components: + - pos: -6.5,-17.5 + parent: 1 + type: Transform + - uid: 9131 + components: + - pos: 7.5,-12.5 + parent: 1 + type: Transform + - uid: 9133 + components: + - pos: 14.5,-15.5 + parent: 1 + type: Transform + - uid: 9161 + components: + - pos: 40.5,-1.5 + parent: 1 + type: Transform + - uid: 9172 + components: + - pos: 32.5,-8.5 + parent: 1 + type: Transform + - uid: 9179 + components: + - pos: 23.5,-0.5 + parent: 1 + type: Transform + - uid: 9242 + components: + - pos: 29.5,32.5 + parent: 1 + type: Transform + - uid: 9253 + components: + - pos: 35.5,32.5 + parent: 1 + type: Transform + - uid: 9349 + components: + - pos: 7.5,25.5 + parent: 1 + type: Transform + - uid: 9353 + components: + - pos: 17.5,17.5 + parent: 1 + type: Transform + - uid: 9357 + components: + - pos: 8.5,32.5 + parent: 1 + type: Transform + - uid: 9364 + components: + - pos: 21.5,28.5 + parent: 1 + type: Transform + - uid: 9381 + components: + - pos: 25.5,21.5 + parent: 1 + type: Transform + - uid: 9530 + components: + - pos: 40.5,17.5 + parent: 1 + type: Transform + - uid: 9673 + components: + - pos: -36.5,17.5 + parent: 1 + type: Transform + - uid: 9674 + components: + - pos: -29.5,8.5 + parent: 1 + type: Transform + - uid: 9675 + components: + - pos: -19.5,18.5 + parent: 1 + type: Transform + - uid: 9676 + components: + - pos: -29.5,27.5 + parent: 1 + type: Transform + - uid: 9677 + components: + - pos: -19.5,29.5 + parent: 1 + type: Transform + - uid: 9678 + components: + - pos: -15.5,25.5 + parent: 1 + type: Transform + - uid: 9707 + components: + - pos: -7.5,24.5 + parent: 1 + type: Transform + - uid: 9734 + components: + - pos: -34.5,21.5 + parent: 1 + type: Transform +- proto: ClosetRadiationSuitFilled + entities: + - uid: 6099 + components: + - pos: -27.5,-7.5 + parent: 1 + type: Transform + - uid: 6332 + components: + - pos: -18.5,-16.5 + parent: 1 + type: Transform + - uid: 9679 + components: + - pos: -19.5,19.5 + parent: 1 + type: Transform +- proto: ClosetToolFilled + entities: + - uid: 662 + components: + - pos: -12.5,-14.5 + parent: 1 + type: Transform + - uid: 8852 + components: + - pos: -33.5,-13.5 + parent: 1 + type: Transform + - uid: 9137 + components: + - pos: 28.5,-13.5 + parent: 1 + type: Transform + - uid: 9171 + components: + - pos: 41.5,-1.5 + parent: 1 + type: Transform +- proto: ClothingBackpackClown + entities: + - uid: 7791 + components: + - pos: -9.479882,-29.613472 + parent: 1 + type: Transform +- proto: ClothingBeltChampion + entities: + - uid: 4133 + components: + - pos: -2.0726793,23.701418 + parent: 1 + type: Transform +- proto: ClothingBeltMilitaryWebbing + entities: + - uid: 9624 + components: + - pos: 16.498451,25.579258 + parent: 1 + type: Transform +- proto: ClothingBeltUtilityFilled + entities: + - uid: 6028 + components: + - pos: -17.427578,-2.5386095 + parent: 1 + type: Transform + - uid: 8222 + components: + - pos: -3.2247663,-20.380867 + parent: 1 + type: Transform +- proto: ClothingEyesEyepatch + entities: + - uid: 9493 + components: + - pos: 17.334412,33.640858 + parent: 1 + type: Transform + - uid: 9494 + components: + - pos: 17.537537,33.500233 + parent: 1 + type: Transform +- proto: ClothingEyesGlasses + entities: + - uid: 5887 + components: + - pos: -17.56469,5.4986477 + parent: 1 + type: Transform + - uid: 6051 + components: + - pos: -16.578178,-4.4178576 + parent: 1 + type: Transform + - uid: 6052 + components: + - pos: -16.593803,-4.1209826 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesBoxingBlue + entities: + - uid: 8820 + components: + - pos: -43.5167,-17.531178 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesBoxingGreen + entities: + - uid: 8821 + components: + - pos: -40.42295,-17.562428 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesBoxingRed + entities: + - uid: 8822 + components: + - pos: -43.532326,-20.546803 + parent: 1 + type: Transform + - uid: 8823 + components: + - pos: -40.469826,-20.531178 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesColorBlack + entities: + - uid: 9319 + components: + - pos: 12.551676,20.51373 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesColorPurple + entities: + - uid: 3056 + components: + - flags: InContainer + type: MetaData + - parent: 7662 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 3057 + components: + - flags: InContainer + type: MetaData + - parent: 7662 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 8230 + components: + - pos: -2.3917544,-20.443367 + parent: 1 + type: Transform + - uid: 9521 + components: + - pos: -4.5182076,-31.477982 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesCombat + entities: + - uid: 7138 + components: + - pos: 33.449986,-18.355843 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesLatex + entities: + - uid: 5348 + components: + - pos: 23.541037,5.5013475 + parent: 1 + type: Transform + - uid: 9644 + components: + - pos: -25.418951,24.343168 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesNitrile + entities: + - uid: 5874 + components: + - pos: -22.4964,13.596224 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesPowerglove + entities: + - uid: 12284 + components: + - pos: 46.50932,-1.5721288 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesRobohands + entities: + - uid: 6074 + components: + - pos: -9.486496,-13.051972 + parent: 1 + type: Transform +- proto: ClothingHeadHatAnimalHeadslime + entities: + - uid: 9326 + components: + - pos: -13.503023,28.53958 + parent: 1 + type: Transform +- proto: ClothingHeadHatFedoraBrown + entities: + - uid: 12535 + components: + - pos: -21.389526,-28.408783 + parent: 1 + type: Transform +- proto: ClothingHeadHatHairflower + entities: + - uid: 4135 + components: + - pos: -3.6820545,23.685793 + parent: 1 + type: Transform +- proto: ClothingHeadHatHoodCulthood + entities: + - uid: 8797 + components: + - pos: -39.669212,-24.282705 + parent: 1 + type: Transform + - uid: 8798 + components: + - pos: -39.466087,-24.282705 + parent: 1 + type: Transform +- proto: ClothingHeadHatPirate + entities: + - uid: 9489 + components: + - pos: 16.834412,33.453358 + parent: 1 + type: Transform + - uid: 9490 + components: + - pos: 16.725037,33.656483 + parent: 1 + type: Transform +- proto: ClothingHeadHatRichard + entities: + - uid: 12539 + components: + - pos: -18.568806,-30.46414 + parent: 1 + type: Transform +- proto: ClothingHeadHatWelding + entities: + - uid: 8908 + components: + - pos: -38.506927,-17.413034 + parent: 1 + type: Transform +- proto: ClothingHeadHatWeldingMaskFlame + entities: + - uid: 9328 + components: + - pos: -14.628023,27.492704 + parent: 1 + type: Transform +- proto: ClothingHeadHatWeldingMaskFlameBlue + entities: + - uid: 9327 + components: + - pos: -14.268648,27.648954 + parent: 1 + type: Transform +- proto: ClothingHeadHatWeldingMaskPainted + entities: + - uid: 9718 + components: + - pos: -23.488003,26.56069 + parent: 1 + type: Transform +- proto: ClothingHeadHatWitch1 + entities: + - uid: 7546 + components: + - pos: -35.132103,11.605273 + parent: 1 + type: Transform + - uid: 8280 + components: + - pos: -24.502247,-20.155039 + parent: 1 + type: Transform +- proto: ClothingMaskClown + entities: + - uid: 7790 + components: + - pos: -9.354882,-29.035347 + parent: 1 + type: Transform +- proto: ClothingMaskGasCentcom + entities: + - uid: 9014 + components: + - pos: -22.500423,-8.478397 + parent: 1 + type: Transform +- proto: ClothingMaskGasSecurity + entities: + - uid: 9321 + components: + - pos: 12.497511,21.52373 + parent: 1 + type: Transform +- proto: ClothingMaskSterile + entities: + - uid: 5349 + components: + - pos: 23.509787,5.6575975 + parent: 1 + type: Transform + - uid: 9645 + components: + - pos: -25.575201,24.655668 + parent: 1 + type: Transform +- proto: ClothingNeckMantleCap + entities: + - uid: 6397 + components: + - pos: 4.585783,31.487268 + parent: 1 + type: Transform +- proto: ClothingNeckMantleCE + entities: + - uid: 5675 + components: + - pos: 18.495747,-13.358288 + parent: 1 + type: Transform +- proto: ClothingNeckMantleCMO + entities: + - uid: 1869 + components: + - pos: -20.496048,14.567978 + parent: 1 + type: Transform +- proto: ClothingNeckMantleHOP + entities: + - uid: 5927 + components: + - flags: InContainer + type: MetaData + - parent: 4965 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingNeckMantleRD + entities: + - uid: 1877 + components: + - pos: -22.452333,-1.4018333 + parent: 1 + type: Transform +- proto: ClothingNeckScarfStripedBlue + entities: + - uid: 5883 + components: + - pos: -20.521955,5.5536256 + parent: 1 + type: Transform +- proto: ClothingNeckStethoscope + entities: + - uid: 5889 + components: + - pos: -14.496586,5.5848756 + parent: 1 + type: Transform +- proto: ClothingNeckTieRed + entities: + - uid: 12534 + components: + - pos: -21.717651,-29.127533 + parent: 1 + type: Transform +- proto: ClothingOuterCoatBomber + entities: + - uid: 7807 + components: + - pos: -3.4980807,-28.439547 + parent: 1 + type: Transform +- proto: ClothingOuterCoatInspector + entities: + - uid: 12524 + components: + - pos: -21.321499,-29.42984 + parent: 1 + type: Transform +- proto: ClothingOuterCoatJensen + entities: + - uid: 9322 + components: + - pos: -24.505365,-15.407537 + parent: 1 + type: Transform +- proto: ClothingOuterCoatPirate + entities: + - uid: 9487 + components: + - pos: 14.396911,32.515858 + parent: 1 + type: Transform + - uid: 9488 + components: + - pos: 14.615661,32.578358 + parent: 1 + type: Transform +- proto: ClothingOuterRobesCult + entities: + - uid: 8799 + components: + - pos: -39.591087,-24.532705 + parent: 1 + type: Transform + - uid: 8800 + components: + - pos: -39.356712,-24.532705 + parent: 1 + type: Transform +- proto: ClothingOuterWinterCap + entities: + - uid: 5926 + components: + - flags: InContainer + type: MetaData + - parent: 4090 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingOuterWinterCE + entities: + - uid: 5670 + components: + - flags: InContainer + type: MetaData + - parent: 5669 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingOuterWinterCMO + entities: + - uid: 1868 + components: + - flags: InContainer + type: MetaData + - parent: 1867 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingOuterWinterHoP + entities: + - uid: 5928 + components: + - flags: InContainer + type: MetaData + - parent: 4965 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingOuterWinterHoS + entities: + - uid: 12478 + components: + - flags: InContainer + type: MetaData + - parent: 5374 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingOuterWinterQM + entities: + - uid: 7444 + components: + - flags: InContainer + type: MetaData + - parent: 7443 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingOuterWinterRD + entities: + - uid: 12418 + components: + - flags: InContainer + type: MetaData + - parent: 1845 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingShoesBootsCombat + entities: + - uid: 8275 + components: + - desc: Robust pilot's boots for combat scenarios or combat situations. All combat, all the time. + name: pilot's boots + type: MetaData + - pos: -19.507818,-48.36427 + parent: 1 + type: Transform +- proto: ClothingShoesBootsJack + entities: + - uid: 9320 + components: + - pos: 14.338758,21.725782 + parent: 1 + type: Transform + - uid: 9497 + components: + - pos: 14.573133,21.522657 + parent: 1 + type: Transform +- proto: ClothingShoesBootsMag + entities: + - uid: 4922 + components: + - pos: 39.41031,21.404913 + parent: 1 + type: Transform + - uid: 4928 + components: + - pos: 39.613434,21.529913 + parent: 1 + type: Transform + - uid: 7137 + components: + - pos: 31.59061,-16.652718 + parent: 1 + type: Transform +- proto: ClothingUniformColorRainbow + entities: + - uid: 8279 + components: + - pos: -24.486622,-20.530039 + parent: 1 + type: Transform +- proto: ClothingUniformJumpskirtOperative + entities: + - uid: 9622 + components: + - pos: 15.393528,25.548008 + parent: 1 + type: Transform +- proto: ClothingUniformJumpsuitOperative + entities: + - uid: 9623 + components: + - pos: 15.721653,25.376133 + parent: 1 + type: Transform +- proto: ClothingUniformJumpsuitPirate + entities: + - uid: 9491 + components: + - pos: 14.350036,33.375233 + parent: 1 + type: Transform + - uid: 9492 + components: + - pos: 14.662536,33.531483 + parent: 1 + type: Transform +- proto: ClownRecorder + entities: + - uid: 8274 + components: + - pos: -9.689836,-28.97975 + parent: 1 + type: Transform +- proto: ComfyChair + entities: + - uid: 1711 + components: + - pos: 5.5,-14.5 + parent: 1 + type: Transform + - uid: 1873 + components: + - rot: 3.141592653589793 rad + pos: -19.5,13.5 + parent: 1 + type: Transform + - uid: 1876 + components: + - pos: -21.5,-0.5 + parent: 1 + type: Transform + - uid: 2866 + components: + - pos: -15.5,-53.5 + parent: 1 + type: Transform + - uid: 2867 + components: + - pos: -13.5,-53.5 + parent: 1 + type: Transform + - uid: 4304 + components: + - pos: -9.5,30.5 + parent: 1 + type: Transform + - uid: 4911 + components: + - pos: 42.5,34.5 + parent: 1 + type: Transform + - uid: 5039 + components: + - rot: 3.141592653589793 rad + pos: 4.5,10.5 + parent: 1 + type: Transform + - uid: 5053 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,25.5 + parent: 1 + type: Transform + - uid: 5054 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,25.5 + parent: 1 + type: Transform + - uid: 5377 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,13.5 + parent: 1 + type: Transform + - uid: 5573 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,-6.5 + parent: 1 + type: Transform + - uid: 5953 + components: + - rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 7712 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-29.5 + parent: 1 + type: Transform + - uid: 8232 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-29.5 + parent: 1 + type: Transform +- proto: ComputerAnalysisConsole + entities: + - uid: 6123 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-14.5 + parent: 1 + type: Transform + - linkedPorts: + 6124: + - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver + type: DeviceLinkSource +- proto: ComputerCargoBounty + entities: + - uid: 7247 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-23.5 + parent: 1 + type: Transform +- proto: ComputerCargoOrders + entities: + - uid: 4919 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-22.5 + parent: 1 + type: Transform + - uid: 7395 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-14.5 + parent: 1 + type: Transform +- proto: ComputerCargoShuttle + entities: + - uid: 4918 + components: + - pos: 8.5,-19.5 + parent: 1 + type: Transform +- proto: ComputerComms + entities: + - uid: 4076 + components: + - pos: -1.5,32.5 + parent: 1 + type: Transform + - uid: 4097 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,28.5 + parent: 1 + type: Transform +- proto: ComputerCrewMonitoring + entities: + - uid: 1888 + components: + - rot: 3.141592653589793 rad + pos: -8.5,5.5 + parent: 1 + type: Transform + - uid: 4074 + components: + - pos: -4.5,31.5 + parent: 1 + type: Transform +- proto: ComputerCriminalRecords + entities: + - uid: 776 + components: + - pos: 14.5,15.5 + parent: 1 + type: Transform + - uid: 5366 + components: + - pos: 25.5,14.5 + parent: 1 + type: Transform + - uid: 5370 + components: + - pos: 28.5,18.5 + parent: 1 + type: Transform +- proto: ComputerFrame + entities: + - uid: 2685 + components: + - rot: 3.141592653589793 rad + pos: -4.5,48.5 + parent: 1 + type: Transform + - uid: 2752 + components: + - pos: -6.5,56.5 + parent: 1 + type: Transform + - uid: 2757 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,51.5 + parent: 1 + type: Transform + - uid: 2765 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,53.5 + parent: 1 + type: Transform + - uid: 5904 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,6.5 + parent: 1 + type: Transform +- proto: ComputerId + entities: + - uid: 4070 + components: + - pos: -2.5,32.5 + parent: 1 + type: Transform + - uid: 4955 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,19.5 + parent: 1 + type: Transform +- proto: ComputerMedicalRecords + entities: + - uid: 1871 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,13.5 + parent: 1 + type: Transform +- proto: ComputerPowerMonitoring + entities: + - uid: 4072 + components: + - pos: -5.5,31.5 + parent: 1 + type: Transform + - uid: 5415 + components: + - pos: 19.5,-13.5 + parent: 1 + type: Transform + - uid: 5668 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-10.5 + parent: 1 + type: Transform +- proto: ComputerRadar + entities: + - uid: 7282 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-24.5 + parent: 1 + type: Transform +- proto: ComputerResearchAndDevelopment + entities: + - uid: 3805 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-3.5 + parent: 1 + type: Transform + - uid: 5365 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-0.5 + parent: 1 + type: Transform +- proto: ComputerSalvageExpedition + entities: + - uid: 5667 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-24.5 + parent: 1 + type: Transform +- proto: ComputerShuttleCargo + entities: + - uid: 1723 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-27.5 + parent: 1 + type: Transform +- proto: ComputerSolarControl + entities: + - uid: 2557 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,30.5 + parent: 1 + type: Transform + - uid: 2931 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-51.5 + parent: 1 + type: Transform + - uid: 4807 + components: + - rot: 3.141592653589793 rad + pos: -31.5,-23.5 + parent: 1 + type: Transform + - uid: 6760 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-11.5 + parent: 1 + type: Transform +- proto: ComputerStationRecords + entities: + - uid: 774 + components: + - pos: 15.5,15.5 + parent: 1 + type: Transform + - uid: 4073 + components: + - pos: 0.5,31.5 + parent: 1 + type: Transform + - uid: 4959 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,19.5 + parent: 1 + type: Transform + - uid: 5360 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,5.5 + parent: 1 + type: Transform +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 777 + components: + - rot: 3.141592653589793 rad + pos: 14.5,12.5 + parent: 1 + type: Transform + - uid: 3794 + components: + - pos: 1.5,55.5 + parent: 1 + type: Transform + - uid: 4071 + components: + - pos: 1.5,31.5 + parent: 1 + type: Transform + - uid: 5313 + components: + - rot: 3.141592653589793 rad + pos: 29.5,8.5 + parent: 1 + type: Transform + - uid: 5363 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,6.5 + parent: 1 + type: Transform + - uid: 5369 + components: + - pos: 26.5,14.5 + parent: 1 + type: Transform +- proto: ComputerTechnologyDiskTerminal + entities: + - uid: 3822 + components: + - pos: -14.5,-4.5 + parent: 1 + type: Transform +- proto: ConveyorBelt + entities: + - uid: 1730 + components: + - pos: 10.5,-31.5 + parent: 1 + type: Transform + - links: + - 7429 + type: DeviceLinkSink + - uid: 1731 + components: + - pos: 10.5,-30.5 + parent: 1 + type: Transform + - links: + - 7429 + type: DeviceLinkSink + - uid: 1732 + components: + - pos: 10.5,-29.5 + parent: 1 + type: Transform + - links: + - 7429 + type: DeviceLinkSink + - uid: 1733 + components: + - pos: 10.5,-28.5 + parent: 1 + type: Transform + - links: + - 7429 + type: DeviceLinkSink + - uid: 1734 + components: + - pos: 10.5,-27.5 + parent: 1 + type: Transform + - links: + - 7429 + type: DeviceLinkSink + - uid: 1735 + components: + - pos: 14.5,-31.5 + parent: 1 + type: Transform + - links: + - 7430 + type: DeviceLinkSink + - uid: 1736 + components: + - pos: 14.5,-30.5 + parent: 1 + type: Transform + - links: + - 7430 + type: DeviceLinkSink + - uid: 1737 + components: + - pos: 14.5,-29.5 + parent: 1 + type: Transform + - links: + - 7430 + type: DeviceLinkSink + - uid: 1738 + components: + - pos: 14.5,-28.5 + parent: 1 + type: Transform + - links: + - 7430 + type: DeviceLinkSink + - uid: 1739 + components: + - pos: 14.5,-27.5 + parent: 1 + type: Transform + - links: + - 7430 + type: DeviceLinkSink + - uid: 1740 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-23.5 + parent: 1 + type: Transform + - links: + - 7431 + type: DeviceLinkSink + - uid: 1741 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-23.5 + parent: 1 + type: Transform + - links: + - 7431 + type: DeviceLinkSink + - uid: 1742 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-23.5 + parent: 1 + type: Transform + - links: + - 7431 + type: DeviceLinkSink + - uid: 3563 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,25.5 + parent: 1 + type: Transform + - links: + - 9199 + type: DeviceLinkSink + - uid: 3564 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,25.5 + parent: 1 + type: Transform + - links: + - 9199 + type: DeviceLinkSink + - uid: 3565 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,25.5 + parent: 1 + type: Transform + - links: + - 9199 + type: DeviceLinkSink + - uid: 3566 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,25.5 + parent: 1 + type: Transform + - links: + - 9199 + type: DeviceLinkSink + - uid: 3567 + components: + - rot: 3.141592653589793 rad + pos: -33.5,24.5 + parent: 1 + type: Transform + - links: + - 9199 + type: DeviceLinkSink + - uid: 3568 + components: + - rot: 3.141592653589793 rad + pos: -33.5,23.5 + parent: 1 + type: Transform + - links: + - 9199 + type: DeviceLinkSink + - uid: 3569 + components: + - rot: 3.141592653589793 rad + pos: -33.5,22.5 + parent: 1 + type: Transform + - links: + - 9199 + type: DeviceLinkSink +- proto: CowToolboxFilled + entities: + - uid: 12285 + components: + - pos: 47.516796,-12.569088 + parent: 1 + type: Transform +- proto: CrateArtifactContainer + entities: + - uid: 3823 + components: + - pos: -14.5,-18.5 + parent: 1 + type: Transform + - uid: 6327 + components: + - pos: -15.5,-18.5 + parent: 1 + type: Transform +- proto: CrateEmptySpawner + entities: + - uid: 1529 + components: + - pos: 21.5,-26.5 + parent: 1 + type: Transform + - uid: 7427 + components: + - pos: 16.5,-26.5 + parent: 1 + type: Transform + - uid: 7428 + components: + - pos: 17.5,-27.5 + parent: 1 + type: Transform + - uid: 9365 + components: + - pos: 21.5,29.5 + parent: 1 + type: Transform + - uid: 9374 + components: + - pos: 17.5,32.5 + parent: 1 + type: Transform + - uid: 9548 + components: + - pos: 36.5,5.5 + parent: 1 + type: Transform +- proto: CrateEngineeringAMEJar + entities: + - uid: 6773 + components: + - pos: 29.5,-8.5 + parent: 1 + type: Transform +- proto: CrateEngineeringAMEShielding + entities: + - uid: 6774 + components: + - pos: 29.5,-7.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6775 + - 6776 + - 6777 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: CrateEngineeringCableBulk + entities: + - uid: 1136 + components: + - pos: 18.5,-3.5 + parent: 1 + type: Transform + - uid: 2524 + components: + - pos: -29.5,-22.5 + parent: 1 + type: Transform +- proto: CrateEngineeringCableHV + entities: + - uid: 2556 + components: + - pos: -26.5,29.5 + parent: 1 + type: Transform +- proto: CrateFilledSpawner + entities: + - uid: 1512 + components: + - pos: 18.5,-26.5 + parent: 1 + type: Transform + - uid: 7285 + components: + - pos: 20.5,-27.5 + parent: 1 + type: Transform + - uid: 7296 + components: + - pos: 22.5,-26.5 + parent: 1 + type: Transform + - uid: 8284 + components: + - pos: -23.5,-24.5 + parent: 1 + type: Transform + - uid: 8824 + components: + - pos: -25.5,-25.5 + parent: 1 + type: Transform + - uid: 9245 + components: + - pos: 28.5,32.5 + parent: 1 + type: Transform + - uid: 9685 + components: + - pos: -20.5,29.5 + parent: 1 + type: Transform +- proto: CrateFreezer + entities: + - uid: 5911 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform +- proto: CrateHydroponicsSeedsExotic + entities: + - uid: 6008 + components: + - pos: -2.5,-4.5 + parent: 1 + type: Transform +- proto: CrateMedicalSurgery + entities: + - uid: 5520 + components: + - pos: -22.5,24.5 + parent: 1 + type: Transform +- proto: CrateNPCCow + entities: + - uid: 5971 + components: + - pos: 3.5,3.5 + parent: 1 + type: Transform + - open: True + removedMasks: 28 + type: EntityStorage + - 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 + - MidImpassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 135 + hard: True + restitution: 0 + friction: 0.4 + type: Fixtures + - isPlaceable: True + type: PlaceableSurface +- proto: CrateNPCHamlet + entities: + - uid: 7180 + components: + - pos: -3.5,30.5 + parent: 1 + type: Transform +- proto: CrateSecurityRiot + entities: + - uid: 8344 + components: + - pos: 23.5,14.5 + parent: 1 + type: Transform +- proto: CrateServiceJanitorialSupplies + entities: + - uid: 7661 + components: + - pos: 12.5,-2.5 + parent: 1 + type: Transform +- proto: CrayonBox + entities: + - uid: 6041 + components: + - pos: -9.510162,-31.109522 + parent: 1 + type: Transform +- proto: CrayonMime + entities: + - uid: 7787 + components: + - pos: -13.70612,-29.090147 + parent: 1 + type: Transform + - uid: 7788 + components: + - pos: -13.596745,-29.121397 + parent: 1 + type: Transform +- proto: Crematorium + entities: + - uid: 3477 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,15.5 + parent: 1 + type: Transform +- proto: CrewMonitoringServer + entities: + - uid: 3773 + components: + - pos: 1.5,49.5 + parent: 1 + type: Transform +- proto: CrewMonitoringServerMachineCircuitboard + entities: + - uid: 4007 + components: + - pos: -2.4571166,54.52544 + parent: 1 + type: Transform +- proto: CrowbarRed + entities: + - uid: 5601 + components: + - pos: -23.451687,5.4552503 + parent: 1 + type: Transform + - uid: 6336 + components: + - pos: -14.519168,-9.104249 + parent: 1 + type: Transform + - uid: 9580 + components: + - pos: 46.50183,2.500444 + parent: 1 + type: Transform + - uid: 9581 + components: + - pos: 46.673706,2.406694 + parent: 1 + type: Transform + - uid: 9582 + components: + - pos: 44.47058,20.50442 + parent: 1 + type: Transform + - uid: 9583 + components: + - pos: 44.673706,20.41067 + parent: 1 + type: Transform + - uid: 12526 + components: + - pos: -21.430874,-29.30484 + parent: 1 + type: Transform +- proto: CultAltarSpawner + entities: + - uid: 8760 + components: + - pos: -41.5,-23.5 + parent: 1 + type: Transform +- proto: d20Dice + entities: + - uid: 5591 + components: + - pos: -39.55801,-5.7503414 + parent: 1 + type: Transform +- proto: d8Dice + entities: + - uid: 5592 + components: + - pos: -40.636135,-6.3128414 + parent: 1 + type: Transform +- proto: DawInstrumentMachineCircuitboard + entities: + - uid: 7803 + components: + - pos: -11.479882,-31.566597 + parent: 1 + type: Transform +- proto: DefibrillatorCabinetFilled + entities: + - uid: 328 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,16.5 + parent: 1 + type: Transform + - uid: 8372 + components: + - rot: 3.141592653589793 rad + pos: -12.5,17.5 + parent: 1 + type: Transform + - uid: 8373 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,5.5 + parent: 1 + type: Transform + - uid: 9831 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 12543 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,8.5 + parent: 1 + type: Transform + - uid: 12551 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-17.5 + parent: 1 + type: Transform + - uid: 12552 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-27.5 + parent: 1 + type: Transform + - uid: 12554 + components: + - pos: -21.5,12.5 + parent: 1 + type: Transform + - uid: 12555 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,6.5 + parent: 1 + type: Transform + - uid: 12556 + components: + - pos: 35.5,4.5 + parent: 1 + type: Transform + - uid: 12557 + components: + - pos: 6.5,-6.5 + parent: 1 + type: Transform + - uid: 12558 + components: + - pos: -19.5,4.5 + parent: 1 + type: Transform + - uid: 12559 + components: + - rot: -1.5707963267948966 rad + pos: 47.5,23.5 + parent: 1 + type: Transform + - uid: 12561 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,25.5 + parent: 1 + type: Transform + - uid: 12607 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,23.5 + parent: 1 + type: Transform +- proto: DeployableBarrier + entities: + - uid: 760 + components: + - pos: 22.5,10.5 + parent: 1 + type: Transform + - uid: 761 + components: + - pos: 22.5,12.5 + parent: 1 + type: Transform + - uid: 763 + components: + - pos: 23.5,12.5 + parent: 1 + type: Transform + - uid: 1842 + components: + - pos: 23.5,10.5 + parent: 1 + type: Transform +- proto: DeskBell + entities: + - uid: 5453 + components: + - pos: 13.386117,14.75304 + parent: 1 + type: Transform + - uid: 5454 + components: + - pos: 0.7052691,18.503328 + parent: 1 + type: Transform + - uid: 5455 + components: + - pos: -8.312405,12.452121 + parent: 1 + type: Transform + - uid: 5456 + components: + - pos: -8.23428,7.664645 + parent: 1 + type: Transform + - uid: 5457 + components: + - pos: -8.258537,-4.530675 + parent: 1 + type: Transform + - uid: 5458 + components: + - pos: -12.205997,12.431334 + parent: 1 + type: Transform + - uid: 8486 + components: + - pos: 12.719743,-9.462604 + parent: 1 + type: Transform + - uid: 8487 + components: + - pos: 3.1651187,7.7825413 + parent: 1 + type: Transform + - uid: 8488 + components: + - pos: 7.4230685,-21.500029 + parent: 1 + type: Transform + - uid: 8489 + components: + - pos: -36.9685,-2.2472436 + parent: 1 + type: Transform + - uid: 8494 + components: + - pos: 3.247385,4.510758 + parent: 1 + type: Transform + - uid: 8498 + components: + - pos: 3.278635,-0.52339196 + parent: 1 + type: Transform +- proto: DiceBag + entities: + - uid: 5590 + components: + - pos: -40.011135,-5.1565914 + parent: 1 + type: Transform +- proto: DiseaseDiagnoser + entities: + - uid: 5689 + components: + - pos: -15.5,21.5 + parent: 1 + type: Transform +- proto: DisposalBend + entities: + - uid: 2941 + components: + - pos: -16.5,-32.5 + parent: 1 + type: Transform + - uid: 3941 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,41.5 + parent: 1 + type: Transform + - uid: 3942 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,40.5 + parent: 1 + type: Transform + - uid: 3943 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,39.5 + parent: 1 + type: Transform + - uid: 3944 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,34.5 + parent: 1 + type: Transform + - uid: 3945 + components: + - rot: 3.141592653589793 rad + pos: -10.5,37.5 + parent: 1 + type: Transform + - uid: 3946 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,39.5 + parent: 1 + type: Transform + - uid: 3947 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,40.5 + parent: 1 + type: Transform + - uid: 3948 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,41.5 + parent: 1 + type: Transform + - uid: 3949 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,34.5 + parent: 1 + type: Transform + - uid: 3950 + components: + - pos: -9.5,37.5 + parent: 1 + type: Transform + - uid: 4015 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,29.5 + parent: 1 + type: Transform + - uid: 4016 + components: + - rot: 3.141592653589793 rad + pos: 1.5,24.5 + parent: 1 + type: Transform + - uid: 4018 + components: + - pos: 4.5,24.5 + parent: 1 + type: Transform + - uid: 4032 + components: + - pos: 1.5,29.5 + parent: 1 + type: Transform + - uid: 5856 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-32.5 + parent: 1 + type: Transform + - uid: 6128 + components: + - pos: -16.5,18.5 + parent: 1 + type: Transform + - uid: 6129 + components: + - rot: 3.141592653589793 rad + pos: -16.5,9.5 + parent: 1 + type: Transform + - uid: 6150 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,9.5 + parent: 1 + type: Transform + - uid: 6151 + components: + - rot: 3.141592653589793 rad + pos: 12.5,9.5 + parent: 1 + type: Transform + - uid: 6152 + components: + - pos: 12.5,13.5 + parent: 1 + type: Transform + - uid: 6167 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,8.5 + parent: 1 + type: Transform + - uid: 6174 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 7175 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-5.5 + parent: 1 + type: Transform + - uid: 7176 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-3.5 + parent: 1 + type: Transform + - uid: 7177 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-16.5 + parent: 1 + type: Transform + - uid: 7187 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-4.5 + parent: 1 + type: Transform + - uid: 7188 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-7.5 + parent: 1 + type: Transform + - uid: 7189 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-4.5 + parent: 1 + type: Transform + - uid: 9806 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,16.5 + parent: 1 + type: Transform + - uid: 9807 + components: + - rot: 3.141592653589793 rad + pos: -40.5,2.5 + parent: 1 + type: Transform + - uid: 9859 + components: + - pos: -28.5,22.5 + parent: 1 + type: Transform + - uid: 9894 + components: + - pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 9895 + components: + - rot: 3.141592653589793 rad + pos: -6.5,1.5 + parent: 1 + type: Transform + - uid: 9898 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-8.5 + parent: 1 + type: Transform + - uid: 9911 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 1 + type: Transform + - uid: 9926 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 9984 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,25.5 + parent: 1 + type: Transform + - uid: 9988 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,2.5 + parent: 1 + type: Transform + - uid: 10028 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-21.5 + parent: 1 + type: Transform + - uid: 10029 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-21.5 + parent: 1 + type: Transform + - uid: 10030 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-26.5 + parent: 1 + type: Transform + - uid: 10031 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-26.5 + parent: 1 + type: Transform + - uid: 10032 + components: + - pos: 5.5,-22.5 + parent: 1 + type: Transform + - uid: 10033 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-25.5 + parent: 1 + type: Transform + - uid: 10034 + components: + - pos: -3.5,-22.5 + parent: 1 + type: Transform + - uid: 10053 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-25.5 + parent: 1 + type: Transform + - uid: 10066 + components: + - rot: 3.141592653589793 rad + pos: 8.5,13.5 + parent: 1 + type: Transform + - uid: 10067 + components: + - pos: 8.5,15.5 + parent: 1 + type: Transform + - uid: 10068 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,15.5 + parent: 1 + type: Transform + - uid: 12599 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-2.5 + parent: 1 + type: Transform + - uid: 12600 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-13.5 + parent: 1 + type: Transform + - uid: 12601 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-19.5 + parent: 1 + type: Transform + - uid: 12602 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-19.5 + parent: 1 + type: Transform + - uid: 12603 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-17.5 + parent: 1 + type: Transform + - uid: 12604 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-13.5 + parent: 1 + type: Transform + - uid: 12605 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-2.5 + parent: 1 + type: Transform + - uid: 12606 + components: + - pos: -30.5,-17.5 + parent: 1 + type: Transform +- proto: DisposalJunction + entities: + - uid: 4042 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,24.5 + parent: 1 + type: Transform + - uid: 6130 + components: + - pos: -16.5,11.5 + parent: 1 + type: Transform + - uid: 6131 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,9.5 + parent: 1 + type: Transform + - uid: 6172 + components: + - pos: -5.5,9.5 + parent: 1 + type: Transform + - uid: 9886 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 9908 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 1 + type: Transform + - uid: 9987 + components: + - pos: 45.5,13.5 + parent: 1 + type: Transform + - uid: 9989 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,2.5 + parent: 1 + type: Transform + - uid: 10059 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-26.5 + parent: 1 + type: Transform + - uid: 10061 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-22.5 + parent: 1 + type: Transform + - uid: 10063 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-12.5 + parent: 1 + type: Transform + - uid: 10088 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,15.5 + parent: 1 + type: Transform + - uid: 10089 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,15.5 + parent: 1 + type: Transform + - uid: 12465 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-7.5 + parent: 1 + type: Transform + - uid: 12560 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,2.5 + parent: 1 + type: Transform +- proto: DisposalJunctionFlipped + entities: + - uid: 6173 + components: + - pos: -5.5,8.5 + parent: 1 + type: Transform + - uid: 7179 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-5.5 + parent: 1 + type: Transform + - uid: 9833 + components: + - rot: 3.141592653589793 rad + pos: -28.5,4.5 + parent: 1 + type: Transform + - uid: 9896 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,2.5 + parent: 1 + type: Transform + - uid: 9897 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-5.5 + parent: 1 + type: Transform + - uid: 9907 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 1 + type: Transform + - uid: 9910 + components: + - pos: 8.5,-7.5 + parent: 1 + type: Transform + - uid: 9990 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,2.5 + parent: 1 + type: Transform + - uid: 10060 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-22.5 + parent: 1 + type: Transform + - uid: 10062 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-25.5 + parent: 1 + type: Transform +- proto: DisposalPipe + entities: + - uid: 2203 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-18.5 + parent: 1 + type: Transform + - uid: 2252 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-32.5 + parent: 1 + type: Transform + - uid: 2954 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-47.5 + parent: 1 + type: Transform + - uid: 2955 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-46.5 + parent: 1 + type: Transform + - uid: 2956 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-45.5 + parent: 1 + type: Transform + - uid: 2957 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-44.5 + parent: 1 + type: Transform + - uid: 2958 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-43.5 + parent: 1 + type: Transform + - uid: 2959 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-42.5 + parent: 1 + type: Transform + - uid: 2960 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-41.5 + parent: 1 + type: Transform + - uid: 2961 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-40.5 + parent: 1 + type: Transform + - uid: 2962 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-39.5 + parent: 1 + type: Transform + - uid: 2963 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-38.5 + parent: 1 + type: Transform + - uid: 2964 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-37.5 + parent: 1 + type: Transform + - uid: 2965 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-36.5 + parent: 1 + type: Transform + - uid: 2966 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-35.5 + parent: 1 + type: Transform + - uid: 2967 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-34.5 + parent: 1 + type: Transform + - uid: 2968 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-33.5 + parent: 1 + type: Transform + - uid: 2972 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-32.5 + parent: 1 + type: Transform + - uid: 2974 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-29.5 + parent: 1 + type: Transform + - uid: 2977 + components: + - pos: -26.5,-26.5 + parent: 1 + type: Transform + - uid: 2978 + components: + - pos: -26.5,-27.5 + parent: 1 + type: Transform + - uid: 2979 + components: + - pos: -26.5,-28.5 + parent: 1 + type: Transform + - uid: 2982 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-32.5 + parent: 1 + type: Transform + - uid: 3010 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-32.5 + parent: 1 + type: Transform + - uid: 3011 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-32.5 + parent: 1 + type: Transform + - uid: 3013 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-31.5 + parent: 1 + type: Transform + - uid: 3014 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-30.5 + parent: 1 + type: Transform + - uid: 3930 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,41.5 + parent: 1 + type: Transform + - uid: 3932 + components: + - pos: -13.5,33.5 + parent: 1 + type: Transform + - uid: 3933 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,34.5 + parent: 1 + type: Transform + - uid: 3934 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,34.5 + parent: 1 + type: Transform + - uid: 3935 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,34.5 + parent: 1 + type: Transform + - uid: 3936 + components: + - rot: 3.141592653589793 rad + pos: -9.5,35.5 + parent: 1 + type: Transform + - uid: 3937 + components: + - rot: 3.141592653589793 rad + pos: -9.5,36.5 + parent: 1 + type: Transform + - uid: 3938 + components: + - rot: 3.141592653589793 rad + pos: -10.5,38.5 + parent: 1 + type: Transform + - uid: 3939 + components: + - pos: -6.5,42.5 + parent: 1 + type: Transform + - uid: 3951 + components: + - pos: -6.5,43.5 + parent: 1 + type: Transform + - uid: 3952 + components: + - pos: -13.5,32.5 + parent: 1 + type: Transform + - uid: 4017 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,29.5 + parent: 1 + type: Transform + - uid: 4019 + components: + - pos: -7.5,27.5 + parent: 1 + type: Transform + - uid: 4020 + components: + - pos: -7.5,28.5 + parent: 1 + type: Transform + - uid: 4021 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,29.5 + parent: 1 + type: Transform + - uid: 4022 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,29.5 + parent: 1 + type: Transform + - uid: 4023 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,29.5 + parent: 1 + type: Transform + - uid: 4024 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,29.5 + parent: 1 + type: Transform + - uid: 4025 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,29.5 + parent: 1 + type: Transform + - uid: 4026 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,29.5 + parent: 1 + type: Transform + - uid: 4027 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,29.5 + parent: 1 + type: Transform + - uid: 4028 + components: + - rot: 3.141592653589793 rad + pos: 1.5,28.5 + parent: 1 + type: Transform + - uid: 4029 + components: + - rot: 3.141592653589793 rad + pos: 1.5,27.5 + parent: 1 + type: Transform + - uid: 4030 + components: + - rot: 3.141592653589793 rad + pos: 1.5,26.5 + parent: 1 + type: Transform + - uid: 4031 + components: + - rot: 3.141592653589793 rad + pos: 1.5,25.5 + parent: 1 + type: Transform + - uid: 4033 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,24.5 + parent: 1 + type: Transform + - uid: 4034 + components: + - pos: 4.5,23.5 + parent: 1 + type: Transform + - uid: 4035 + components: + - pos: 4.5,22.5 + parent: 1 + type: Transform + - uid: 4036 + components: + - pos: 4.5,21.5 + parent: 1 + type: Transform + - uid: 4037 + components: + - pos: 4.5,20.5 + parent: 1 + type: Transform + - uid: 4038 + components: + - pos: 4.5,19.5 + parent: 1 + type: Transform + - uid: 4039 + components: + - pos: 4.5,18.5 + parent: 1 + type: Transform + - uid: 4040 + components: + - pos: 4.5,17.5 + parent: 1 + type: Transform + - uid: 4041 + components: + - pos: 4.5,16.5 + parent: 1 + type: Transform + - uid: 5346 + components: + - pos: -32.5,-16.5 + parent: 1 + type: Transform + - uid: 6132 + components: + - pos: -16.5,17.5 + parent: 1 + type: Transform + - uid: 6133 + components: + - pos: -16.5,16.5 + parent: 1 + type: Transform + - uid: 6134 + components: + - pos: -16.5,15.5 + parent: 1 + type: Transform + - uid: 6135 + components: + - pos: -16.5,14.5 + parent: 1 + type: Transform + - uid: 6136 + components: + - pos: -16.5,13.5 + parent: 1 + type: Transform + - uid: 6137 + components: + - pos: -16.5,12.5 + parent: 1 + type: Transform + - uid: 6138 + components: + - pos: -16.5,10.5 + parent: 1 + type: Transform + - uid: 6139 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,9.5 + parent: 1 + type: Transform + - uid: 6140 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,9.5 + parent: 1 + type: Transform + - uid: 6141 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,9.5 + parent: 1 + type: Transform + - uid: 6142 + components: + - rot: 3.141592653589793 rad + pos: -12.5,8.5 + parent: 1 + type: Transform + - uid: 6143 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,9.5 + parent: 1 + type: Transform + - uid: 6144 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,9.5 + parent: 1 + type: Transform + - uid: 6145 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,9.5 + parent: 1 + type: Transform + - uid: 6146 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,9.5 + parent: 1 + type: Transform + - uid: 6147 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,9.5 + parent: 1 + type: Transform + - uid: 6148 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,9.5 + parent: 1 + type: Transform + - uid: 6153 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,9.5 + parent: 1 + type: Transform + - uid: 6154 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,9.5 + parent: 1 + type: Transform + - uid: 6155 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,9.5 + parent: 1 + type: Transform + - uid: 6156 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,9.5 + parent: 1 + type: Transform + - uid: 6157 + components: + - rot: 3.141592653589793 rad + pos: 12.5,10.5 + parent: 1 + type: Transform + - uid: 6158 + components: + - rot: 3.141592653589793 rad + pos: 12.5,11.5 + parent: 1 + type: Transform + - uid: 6159 + components: + - rot: 3.141592653589793 rad + pos: 12.5,12.5 + parent: 1 + type: Transform + - uid: 6160 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,13.5 + parent: 1 + type: Transform + - uid: 6161 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,13.5 + parent: 1 + type: Transform + - uid: 6162 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,13.5 + parent: 1 + type: Transform + - uid: 6164 + components: + - pos: -0.5,11.5 + parent: 1 + type: Transform + - uid: 6165 + components: + - pos: -0.5,10.5 + parent: 1 + type: Transform + - uid: 6166 + components: + - pos: -0.5,9.5 + parent: 1 + type: Transform + - uid: 6168 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 6169 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,8.5 + parent: 1 + type: Transform + - uid: 6170 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1 + type: Transform + - uid: 6171 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,8.5 + parent: 1 + type: Transform + - uid: 6176 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 6177 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 6178 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + type: Transform + - uid: 6179 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 7155 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-16.5 + parent: 1 + type: Transform + - uid: 7156 + components: + - pos: -16.5,-15.5 + parent: 1 + type: Transform + - uid: 7157 + components: + - pos: -16.5,-14.5 + parent: 1 + type: Transform + - uid: 7158 + components: + - pos: -16.5,-13.5 + parent: 1 + type: Transform + - uid: 7159 + components: + - pos: -16.5,-12.5 + parent: 1 + type: Transform + - uid: 7160 + components: + - pos: -16.5,-11.5 + parent: 1 + type: Transform + - uid: 7161 + components: + - pos: -16.5,-10.5 + parent: 1 + type: Transform + - uid: 7162 + components: + - pos: -16.5,-9.5 + parent: 1 + type: Transform + - uid: 7163 + components: + - pos: -16.5,-8.5 + parent: 1 + type: Transform + - uid: 7164 + components: + - pos: -16.5,-7.5 + parent: 1 + type: Transform + - uid: 7165 + components: + - pos: -16.5,-6.5 + parent: 1 + type: Transform + - uid: 7166 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-5.5 + parent: 1 + type: Transform + - uid: 7167 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-5.5 + parent: 1 + type: Transform + - uid: 7168 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-5.5 + parent: 1 + type: Transform + - uid: 7169 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-5.5 + parent: 1 + type: Transform + - uid: 7170 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-5.5 + parent: 1 + type: Transform + - uid: 7171 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-5.5 + parent: 1 + type: Transform + - uid: 7172 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-5.5 + parent: 1 + type: Transform + - uid: 7173 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-5.5 + parent: 1 + type: Transform + - uid: 7174 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-5.5 + parent: 1 + type: Transform + - uid: 7178 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-4.5 + parent: 1 + type: Transform + - uid: 7190 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-7.5 + parent: 1 + type: Transform + - uid: 7191 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-4.5 + parent: 1 + type: Transform + - uid: 7192 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-4.5 + parent: 1 + type: Transform + - uid: 7193 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-4.5 + parent: 1 + type: Transform + - uid: 7194 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-4.5 + parent: 1 + type: Transform + - uid: 7195 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-5.5 + parent: 1 + type: Transform + - uid: 7196 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-6.5 + parent: 1 + type: Transform + - uid: 7197 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-7.5 + parent: 1 + type: Transform + - uid: 7198 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-7.5 + parent: 1 + type: Transform + - uid: 7200 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-7.5 + parent: 1 + type: Transform + - uid: 7201 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-7.5 + parent: 1 + type: Transform + - uid: 7202 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-7.5 + parent: 1 + type: Transform + - uid: 8329 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-17.5 + parent: 1 + type: Transform + - uid: 9809 + components: + - rot: 3.141592653589793 rad + pos: -40.5,3.5 + parent: 1 + type: Transform + - uid: 9810 + components: + - rot: 3.141592653589793 rad + pos: -40.5,4.5 + parent: 1 + type: Transform + - uid: 9811 + components: + - rot: 3.141592653589793 rad + pos: -40.5,5.5 + parent: 1 + type: Transform + - uid: 9812 + components: + - rot: 3.141592653589793 rad + pos: -40.5,6.5 + parent: 1 + type: Transform + - uid: 9813 + components: + - rot: 3.141592653589793 rad + pos: -40.5,7.5 + parent: 1 + type: Transform + - uid: 9814 + components: + - rot: 3.141592653589793 rad + pos: -40.5,8.5 + parent: 1 + type: Transform + - uid: 9815 + components: + - rot: 3.141592653589793 rad + pos: -40.5,9.5 + parent: 1 + type: Transform + - uid: 9816 + components: + - rot: 3.141592653589793 rad + pos: -40.5,10.5 + parent: 1 + type: Transform + - uid: 9817 + components: + - rot: 3.141592653589793 rad + pos: -40.5,11.5 + parent: 1 + type: Transform + - uid: 9818 + components: + - rot: 3.141592653589793 rad + pos: -40.5,12.5 + parent: 1 + type: Transform + - uid: 9819 + components: + - rot: 3.141592653589793 rad + pos: -40.5,13.5 + parent: 1 + type: Transform + - uid: 9820 + components: + - rot: 3.141592653589793 rad + pos: -40.5,14.5 + parent: 1 + type: Transform + - uid: 9821 + components: + - rot: 3.141592653589793 rad + pos: -40.5,15.5 + parent: 1 + type: Transform + - uid: 9822 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,2.5 + parent: 1 + type: Transform + - uid: 9823 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,2.5 + parent: 1 + type: Transform + - uid: 9824 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,2.5 + parent: 1 + type: Transform + - uid: 9825 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,2.5 + parent: 1 + type: Transform + - uid: 9826 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,2.5 + parent: 1 + type: Transform + - uid: 9827 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,2.5 + parent: 1 + type: Transform + - uid: 9828 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,2.5 + parent: 1 + type: Transform + - uid: 9829 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,2.5 + parent: 1 + type: Transform + - uid: 9830 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,2.5 + parent: 1 + type: Transform + - uid: 9832 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,2.5 + parent: 1 + type: Transform + - uid: 9836 + components: + - pos: -28.5,3.5 + parent: 1 + type: Transform + - uid: 9837 + components: + - pos: -28.5,5.5 + parent: 1 + type: Transform + - uid: 9838 + components: + - pos: -28.5,6.5 + parent: 1 + type: Transform + - uid: 9839 + components: + - pos: -28.5,7.5 + parent: 1 + type: Transform + - uid: 9840 + components: + - pos: -28.5,8.5 + parent: 1 + type: Transform + - uid: 9841 + components: + - pos: -28.5,9.5 + parent: 1 + type: Transform + - uid: 9842 + components: + - pos: -28.5,10.5 + parent: 1 + type: Transform + - uid: 9843 + components: + - pos: -28.5,11.5 + parent: 1 + type: Transform + - uid: 9844 + components: + - pos: -28.5,12.5 + parent: 1 + type: Transform + - uid: 9845 + components: + - pos: -28.5,13.5 + parent: 1 + type: Transform + - uid: 9846 + components: + - pos: -28.5,14.5 + parent: 1 + type: Transform + - uid: 9847 + components: + - pos: -28.5,15.5 + parent: 1 + type: Transform + - uid: 9848 + components: + - pos: -28.5,16.5 + parent: 1 + type: Transform + - uid: 9849 + components: + - pos: -28.5,17.5 + parent: 1 + type: Transform + - uid: 9850 + components: + - pos: -28.5,18.5 + parent: 1 + type: Transform + - uid: 9851 + components: + - pos: -28.5,19.5 + parent: 1 + type: Transform + - uid: 9852 + components: + - pos: -28.5,20.5 + parent: 1 + type: Transform + - uid: 9853 + components: + - pos: -28.5,21.5 + parent: 1 + type: Transform + - uid: 9854 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,22.5 + parent: 1 + type: Transform + - uid: 9855 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,22.5 + parent: 1 + type: Transform + - uid: 9856 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,22.5 + parent: 1 + type: Transform + - uid: 9857 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,22.5 + parent: 1 + type: Transform + - uid: 9860 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,2.5 + parent: 1 + type: Transform + - uid: 9861 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,2.5 + parent: 1 + type: Transform + - uid: 9862 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,2.5 + parent: 1 + type: Transform + - uid: 9863 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,2.5 + parent: 1 + type: Transform + - uid: 9864 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,2.5 + parent: 1 + type: Transform + - uid: 9865 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,2.5 + parent: 1 + type: Transform + - uid: 9866 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,2.5 + parent: 1 + type: Transform + - uid: 9867 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,2.5 + parent: 1 + type: Transform + - uid: 9868 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,2.5 + parent: 1 + type: Transform + - uid: 9869 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,2.5 + parent: 1 + type: Transform + - uid: 9870 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,2.5 + parent: 1 + type: Transform + - uid: 9871 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,2.5 + parent: 1 + type: Transform + - uid: 9872 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,2.5 + parent: 1 + type: Transform + - uid: 9873 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,2.5 + parent: 1 + type: Transform + - uid: 9874 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,2.5 + parent: 1 + type: Transform + - uid: 9875 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,2.5 + parent: 1 + type: Transform + - uid: 9876 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,2.5 + parent: 1 + type: Transform + - uid: 9877 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,2.5 + parent: 1 + type: Transform + - uid: 9878 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,2.5 + parent: 1 + type: Transform + - uid: 9879 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,2.5 + parent: 1 + type: Transform + - uid: 9880 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,2.5 + parent: 1 + type: Transform + - uid: 9881 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-4.5 + parent: 1 + type: Transform + - uid: 9882 + components: + - pos: -5.5,7.5 + parent: 1 + type: Transform + - uid: 9883 + components: + - pos: -5.5,6.5 + parent: 1 + type: Transform + - uid: 9884 + components: + - pos: -5.5,5.5 + parent: 1 + type: Transform + - uid: 9885 + components: + - pos: -5.5,4.5 + parent: 1 + type: Transform + - uid: 9887 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 9888 + components: + - rot: 3.141592653589793 rad + pos: -5.5,3.5 + parent: 1 + type: Transform + - uid: 9889 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-3.5 + parent: 1 + type: Transform + - uid: 9890 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-2.5 + parent: 1 + type: Transform + - uid: 9891 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-1.5 + parent: 1 + type: Transform + - uid: 9892 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-0.5 + parent: 1 + type: Transform + - uid: 9893 + components: + - rot: 3.141592653589793 rad + pos: -5.5,0.5 + parent: 1 + type: Transform + - uid: 9899 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-7.5 + parent: 1 + type: Transform + - uid: 9900 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-6.5 + parent: 1 + type: Transform + - uid: 9901 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-8.5 + parent: 1 + type: Transform + - uid: 9902 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-8.5 + parent: 1 + type: Transform + - uid: 9903 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-8.5 + parent: 1 + type: Transform + - uid: 9904 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 1 + type: Transform + - uid: 9905 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 1 + type: Transform + - uid: 9906 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 1 + type: Transform + - uid: 9912 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 1 + type: Transform + - uid: 9913 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 1 + type: Transform + - uid: 9914 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 1 + type: Transform + - uid: 9915 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 1 + type: Transform + - uid: 9916 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-8.5 + parent: 1 + type: Transform + - uid: 9917 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-6.5 + parent: 1 + type: Transform + - uid: 9918 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-5.5 + parent: 1 + type: Transform + - uid: 9919 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-4.5 + parent: 1 + type: Transform + - uid: 9920 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-3.5 + parent: 1 + type: Transform + - uid: 9921 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-2.5 + parent: 1 + type: Transform + - uid: 9922 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-1.5 + parent: 1 + type: Transform + - uid: 9923 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-0.5 + parent: 1 + type: Transform + - uid: 9924 + components: + - rot: 3.141592653589793 rad + pos: 8.5,0.5 + parent: 1 + type: Transform + - uid: 9925 + components: + - rot: 3.141592653589793 rad + pos: 8.5,1.5 + parent: 1 + type: Transform + - uid: 9927 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,2.5 + parent: 1 + type: Transform + - uid: 9928 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,2.5 + parent: 1 + type: Transform + - uid: 9929 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,2.5 + parent: 1 + type: Transform + - uid: 9930 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,2.5 + parent: 1 + type: Transform + - uid: 9931 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,2.5 + parent: 1 + type: Transform + - uid: 9932 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,2.5 + parent: 1 + type: Transform + - uid: 9933 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,2.5 + parent: 1 + type: Transform + - uid: 9934 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,2.5 + parent: 1 + type: Transform + - uid: 9935 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,2.5 + parent: 1 + type: Transform + - uid: 9936 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,2.5 + parent: 1 + type: Transform + - uid: 9937 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,2.5 + parent: 1 + type: Transform + - uid: 9938 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,2.5 + parent: 1 + type: Transform + - uid: 9939 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,2.5 + parent: 1 + type: Transform + - uid: 9940 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,2.5 + parent: 1 + type: Transform + - uid: 9941 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,2.5 + parent: 1 + type: Transform + - uid: 9942 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,2.5 + parent: 1 + type: Transform + - uid: 9943 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,2.5 + parent: 1 + type: Transform + - uid: 9944 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,2.5 + parent: 1 + type: Transform + - uid: 9945 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,2.5 + parent: 1 + type: Transform + - uid: 9946 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,2.5 + parent: 1 + type: Transform + - uid: 9947 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,2.5 + parent: 1 + type: Transform + - uid: 9948 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,2.5 + parent: 1 + type: Transform + - uid: 9949 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,2.5 + parent: 1 + type: Transform + - uid: 9950 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,2.5 + parent: 1 + type: Transform + - uid: 9951 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,2.5 + parent: 1 + type: Transform + - uid: 9952 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,2.5 + parent: 1 + type: Transform + - uid: 9953 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,2.5 + parent: 1 + type: Transform + - uid: 9954 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,2.5 + parent: 1 + type: Transform + - uid: 9955 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,2.5 + parent: 1 + type: Transform + - uid: 9956 + components: + - pos: 38.5,3.5 + parent: 1 + type: Transform + - uid: 9957 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,2.5 + parent: 1 + type: Transform + - uid: 9958 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,2.5 + parent: 1 + type: Transform + - uid: 9959 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,2.5 + parent: 1 + type: Transform + - uid: 9960 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,2.5 + parent: 1 + type: Transform + - uid: 9961 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,2.5 + parent: 1 + type: Transform + - uid: 9962 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,2.5 + parent: 1 + type: Transform + - uid: 9963 + components: + - rot: 3.141592653589793 rad + pos: 45.5,3.5 + parent: 1 + type: Transform + - uid: 9964 + components: + - rot: 3.141592653589793 rad + pos: 45.5,4.5 + parent: 1 + type: Transform + - uid: 9965 + components: + - rot: 3.141592653589793 rad + pos: 45.5,5.5 + parent: 1 + type: Transform + - uid: 9966 + components: + - rot: 3.141592653589793 rad + pos: 45.5,6.5 + parent: 1 + type: Transform + - uid: 9967 + components: + - rot: 3.141592653589793 rad + pos: 45.5,7.5 + parent: 1 + type: Transform + - uid: 9968 + components: + - rot: 3.141592653589793 rad + pos: 45.5,8.5 + parent: 1 + type: Transform + - uid: 9969 + components: + - rot: 3.141592653589793 rad + pos: 45.5,9.5 + parent: 1 + type: Transform + - uid: 9970 + components: + - rot: 3.141592653589793 rad + pos: 45.5,10.5 + parent: 1 + type: Transform + - uid: 9971 + components: + - rot: 3.141592653589793 rad + pos: 45.5,11.5 + parent: 1 + type: Transform + - uid: 9972 + components: + - rot: 3.141592653589793 rad + pos: 45.5,12.5 + parent: 1 + type: Transform + - uid: 9973 + components: + - rot: 3.141592653589793 rad + pos: 45.5,14.5 + parent: 1 + type: Transform + - uid: 9974 + components: + - rot: 3.141592653589793 rad + pos: 45.5,15.5 + parent: 1 + type: Transform + - uid: 9975 + components: + - rot: 3.141592653589793 rad + pos: 45.5,16.5 + parent: 1 + type: Transform + - uid: 9976 + components: + - rot: 3.141592653589793 rad + pos: 45.5,17.5 + parent: 1 + type: Transform + - uid: 9977 + components: + - rot: 3.141592653589793 rad + pos: 45.5,18.5 + parent: 1 + type: Transform + - uid: 9978 + components: + - rot: 3.141592653589793 rad + pos: 45.5,19.5 + parent: 1 + type: Transform + - uid: 9979 + components: + - rot: 3.141592653589793 rad + pos: 45.5,20.5 + parent: 1 + type: Transform + - uid: 9980 + components: + - rot: 3.141592653589793 rad + pos: 45.5,21.5 + parent: 1 + type: Transform + - uid: 9981 + components: + - rot: 3.141592653589793 rad + pos: 45.5,22.5 + parent: 1 + type: Transform + - uid: 9982 + components: + - rot: 3.141592653589793 rad + pos: 45.5,23.5 + parent: 1 + type: Transform + - uid: 9983 + components: + - rot: 3.141592653589793 rad + pos: 45.5,24.5 + parent: 1 + type: Transform + - uid: 9992 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-9.5 + parent: 1 + type: Transform + - uid: 9993 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-10.5 + parent: 1 + type: Transform + - uid: 9994 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-11.5 + parent: 1 + type: Transform + - uid: 9995 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-13.5 + parent: 1 + type: Transform + - uid: 9996 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-14.5 + parent: 1 + type: Transform + - uid: 9997 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-15.5 + parent: 1 + type: Transform + - uid: 9998 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-16.5 + parent: 1 + type: Transform + - uid: 9999 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-17.5 + parent: 1 + type: Transform + - uid: 10000 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-18.5 + parent: 1 + type: Transform + - uid: 10001 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-19.5 + parent: 1 + type: Transform + - uid: 10002 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-20.5 + parent: 1 + type: Transform + - uid: 10003 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-21.5 + parent: 1 + type: Transform + - uid: 10004 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-22.5 + parent: 1 + type: Transform + - uid: 10005 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-22.5 + parent: 1 + type: Transform + - uid: 10006 + components: + - pos: 5.5,-23.5 + parent: 1 + type: Transform + - uid: 10007 + components: + - pos: 5.5,-24.5 + parent: 1 + type: Transform + - uid: 10008 + components: + - pos: 5.5,-25.5 + parent: 1 + type: Transform + - uid: 10009 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-26.5 + parent: 1 + type: Transform + - uid: 10010 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-26.5 + parent: 1 + type: Transform + - uid: 10011 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-26.5 + parent: 1 + type: Transform + - uid: 10012 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-26.5 + parent: 1 + type: Transform + - uid: 10013 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-26.5 + parent: 1 + type: Transform + - uid: 10014 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-26.5 + parent: 1 + type: Transform + - uid: 10015 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-26.5 + parent: 1 + type: Transform + - uid: 10016 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-26.5 + parent: 1 + type: Transform + - uid: 10017 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-26.5 + parent: 1 + type: Transform + - uid: 10018 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-25.5 + parent: 1 + type: Transform + - uid: 10019 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-24.5 + parent: 1 + type: Transform + - uid: 10020 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-23.5 + parent: 1 + type: Transform + - uid: 10021 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-22.5 + parent: 1 + type: Transform + - uid: 10022 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-21.5 + parent: 1 + type: Transform + - uid: 10023 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-21.5 + parent: 1 + type: Transform + - uid: 10024 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-21.5 + parent: 1 + type: Transform + - uid: 10025 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-21.5 + parent: 1 + type: Transform + - uid: 10026 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-21.5 + parent: 1 + type: Transform + - uid: 10027 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-21.5 + parent: 1 + type: Transform + - uid: 10035 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-25.5 + parent: 1 + type: Transform + - uid: 10036 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-25.5 + parent: 1 + type: Transform + - uid: 10037 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-25.5 + parent: 1 + type: Transform + - uid: 10038 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-25.5 + parent: 1 + type: Transform + - uid: 10039 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-25.5 + parent: 1 + type: Transform + - uid: 10040 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-25.5 + parent: 1 + type: Transform + - uid: 10041 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-25.5 + parent: 1 + type: Transform + - uid: 10042 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-25.5 + parent: 1 + type: Transform + - uid: 10043 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-25.5 + parent: 1 + type: Transform + - uid: 10044 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-22.5 + parent: 1 + type: Transform + - uid: 10045 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-25.5 + parent: 1 + type: Transform + - uid: 10046 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-25.5 + parent: 1 + type: Transform + - uid: 10047 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-25.5 + parent: 1 + type: Transform + - uid: 10048 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-25.5 + parent: 1 + type: Transform + - uid: 10049 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-24.5 + parent: 1 + type: Transform + - uid: 10050 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-23.5 + parent: 1 + type: Transform + - uid: 10051 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-23.5 + parent: 1 + type: Transform + - uid: 10052 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-24.5 + parent: 1 + type: Transform + - uid: 10064 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 1 + type: Transform + - uid: 10069 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,15.5 + parent: 1 + type: Transform + - uid: 10070 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,15.5 + parent: 1 + type: Transform + - uid: 10071 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,15.5 + parent: 1 + type: Transform + - uid: 10072 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,15.5 + parent: 1 + type: Transform + - uid: 10073 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,15.5 + parent: 1 + type: Transform + - uid: 10074 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,15.5 + parent: 1 + type: Transform + - uid: 10075 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,15.5 + parent: 1 + type: Transform + - uid: 10076 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,15.5 + parent: 1 + type: Transform + - uid: 10077 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,15.5 + parent: 1 + type: Transform + - uid: 10078 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,15.5 + parent: 1 + type: Transform + - uid: 10079 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,15.5 + parent: 1 + type: Transform + - uid: 10080 + components: + - pos: 8.5,14.5 + parent: 1 + type: Transform + - uid: 10081 + components: + - pos: -5.5,14.5 + parent: 1 + type: Transform + - uid: 10082 + components: + - pos: -5.5,13.5 + parent: 1 + type: Transform + - uid: 10083 + components: + - pos: -5.5,12.5 + parent: 1 + type: Transform + - uid: 10084 + components: + - pos: -5.5,11.5 + parent: 1 + type: Transform + - uid: 10085 + components: + - pos: -5.5,10.5 + parent: 1 + type: Transform + - uid: 10086 + components: + - pos: 7.5,16.5 + parent: 1 + type: Transform + - uid: 12466 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-5.5 + parent: 1 + type: Transform + - uid: 12467 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-6.5 + parent: 1 + type: Transform + - uid: 12512 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-32.5 + parent: 1 + type: Transform + - uid: 12513 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-32.5 + parent: 1 + type: Transform + - uid: 12514 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-32.5 + parent: 1 + type: Transform + - uid: 12515 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-32.5 + parent: 1 + type: Transform + - uid: 12569 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-19.5 + parent: 1 + type: Transform + - uid: 12570 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-19.5 + parent: 1 + type: Transform + - uid: 12571 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-19.5 + parent: 1 + type: Transform + - uid: 12572 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-19.5 + parent: 1 + type: Transform + - uid: 12573 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-19.5 + parent: 1 + type: Transform + - uid: 12574 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-19.5 + parent: 1 + type: Transform + - uid: 12575 + components: + - pos: -37.5,-18.5 + parent: 1 + type: Transform + - uid: 12576 + components: + - pos: -37.5,-17.5 + parent: 1 + type: Transform + - uid: 12577 + components: + - pos: -37.5,-16.5 + parent: 1 + type: Transform + - uid: 12578 + components: + - pos: -37.5,-15.5 + parent: 1 + type: Transform + - uid: 12579 + components: + - pos: -37.5,-14.5 + parent: 1 + type: Transform + - uid: 12580 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-13.5 + parent: 1 + type: Transform + - uid: 12581 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-13.5 + parent: 1 + type: Transform + - uid: 12582 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-13.5 + parent: 1 + type: Transform + - uid: 12583 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-12.5 + parent: 1 + type: Transform + - uid: 12584 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-11.5 + parent: 1 + type: Transform + - uid: 12585 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-10.5 + parent: 1 + type: Transform + - uid: 12586 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-9.5 + parent: 1 + type: Transform + - uid: 12587 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-8.5 + parent: 1 + type: Transform + - uid: 12588 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-7.5 + parent: 1 + type: Transform + - uid: 12589 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-6.5 + parent: 1 + type: Transform + - uid: 12590 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-5.5 + parent: 1 + type: Transform + - uid: 12591 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-4.5 + parent: 1 + type: Transform + - uid: 12592 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-3.5 + parent: 1 + type: Transform + - uid: 12593 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-2.5 + parent: 1 + type: Transform + - uid: 12594 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-2.5 + parent: 1 + type: Transform + - uid: 12595 + components: + - pos: -30.5,-1.5 + parent: 1 + type: Transform + - uid: 12596 + components: + - pos: -30.5,-0.5 + parent: 1 + type: Transform + - uid: 12597 + components: + - pos: -30.5,0.5 + parent: 1 + type: Transform + - uid: 12598 + components: + - pos: -30.5,1.5 + parent: 1 + type: Transform +- proto: DisposalTrunk + entities: + - uid: 2953 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-48.5 + parent: 1 + type: Transform + - uid: 2975 + components: + - pos: -26.5,-25.5 + parent: 1 + type: Transform + - uid: 3929 + components: + - rot: 3.141592653589793 rad + pos: -13.5,31.5 + parent: 1 + type: Transform + - uid: 3953 + components: + - pos: -6.5,44.5 + parent: 1 + type: Transform + - uid: 4043 + components: + - rot: 3.141592653589793 rad + pos: -7.5,26.5 + parent: 1 + type: Transform + - uid: 4044 + components: + - rot: 3.141592653589793 rad + pos: 2.5,23.5 + parent: 1 + type: Transform + - uid: 6098 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-3.5 + parent: 1 + type: Transform + - uid: 6125 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,11.5 + parent: 1 + type: Transform + - uid: 6126 + components: + - rot: 3.141592653589793 rad + pos: -12.5,7.5 + parent: 1 + type: Transform + - uid: 6127 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,18.5 + parent: 1 + type: Transform + - uid: 6149 + components: + - pos: 17.5,10.5 + parent: 1 + type: Transform + - uid: 6163 + components: + - pos: -0.5,12.5 + parent: 1 + type: Transform + - uid: 6175 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 7154 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-16.5 + parent: 1 + type: Transform + - uid: 7185 + components: + - pos: 21.5,-3.5 + parent: 1 + type: Transform + - uid: 9834 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,16.5 + parent: 1 + type: Transform + - uid: 9835 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,4.5 + parent: 1 + type: Transform + - uid: 9858 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,22.5 + parent: 1 + type: Transform + - uid: 9909 + components: + - pos: 2.5,-7.5 + parent: 1 + type: Transform + - uid: 9985 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,25.5 + parent: 1 + type: Transform + - uid: 9986 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,13.5 + parent: 1 + type: Transform + - uid: 9991 + components: + - rot: 3.141592653589793 rad + pos: 23.5,1.5 + parent: 1 + type: Transform + - uid: 10054 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-26.5 + parent: 1 + type: Transform + - uid: 10055 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-22.5 + parent: 1 + type: Transform + - uid: 10056 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-23.5 + parent: 1 + type: Transform + - uid: 10057 + components: + - pos: 22.5,-20.5 + parent: 1 + type: Transform + - uid: 10058 + components: + - pos: 8.5,-25.5 + parent: 1 + type: Transform + - uid: 10065 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 1 + type: Transform + - uid: 10087 + components: + - pos: 7.5,17.5 + parent: 1 + type: Transform + - uid: 12464 + components: + - pos: 13.5,-4.5 + parent: 1 + type: Transform + - uid: 12562 + components: + - pos: -32.5,-15.5 + parent: 1 + type: Transform +- proto: DisposalUnit + entities: + - uid: 1007 + components: + - pos: 2.5,-7.5 + parent: 1 + type: Transform + - uid: 1838 + components: + - pos: 13.5,-4.5 + parent: 1 + type: Transform + - uid: 1892 + components: + - pos: -12.5,7.5 + parent: 1 + type: Transform + - uid: 1903 + components: + - pos: -17.5,11.5 + parent: 1 + type: Transform + - uid: 1995 + components: + - pos: -39.5,16.5 + parent: 1 + type: Transform + - uid: 2952 + components: + - pos: -16.5,-48.5 + parent: 1 + type: Transform + - uid: 3819 + components: + - pos: -14.5,-3.5 + parent: 1 + type: Transform + - uid: 3824 + components: + - pos: 2.5,23.5 + parent: 1 + type: Transform + - uid: 3825 + components: + - pos: -13.5,31.5 + parent: 1 + type: Transform + - uid: 3826 + components: + - pos: -7.5,26.5 + parent: 1 + type: Transform + - uid: 3827 + components: + - pos: 17.5,10.5 + parent: 1 + type: Transform + - uid: 3829 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 3830 + components: + - pos: -17.5,18.5 + parent: 1 + type: Transform + - uid: 3831 + components: + - pos: 7.5,17.5 + parent: 1 + type: Transform + - uid: 3832 + components: + - pos: -29.5,4.5 + parent: 1 + type: Transform + - uid: 3834 + components: + - pos: 38.5,4.5 + parent: 1 + type: Transform + - uid: 3837 + components: + - pos: -5.5,-22.5 + parent: 1 + type: Transform + - uid: 3838 + components: + - pos: 3.5,-12.5 + parent: 1 + type: Transform + - uid: 3839 + components: + - pos: 23.5,1.5 + parent: 1 + type: Transform + - uid: 3841 + components: + - pos: -13.5,-26.5 + parent: 1 + type: Transform + - uid: 3842 + components: + - pos: 3.5,-23.5 + parent: 1 + type: Transform + - uid: 3843 + components: + - pos: 8.5,-25.5 + parent: 1 + type: Transform + - uid: 3844 + components: + - pos: 22.5,-20.5 + parent: 1 + type: Transform + - uid: 3845 + components: + - pos: 44.5,13.5 + parent: 1 + type: Transform + - uid: 3846 + components: + - pos: 19.5,35.5 + parent: 1 + type: Transform + - uid: 3848 + components: + - pos: -6.5,44.5 + parent: 1 + type: Transform + - uid: 4855 + components: + - pos: 46.5,25.5 + parent: 1 + type: Transform + - uid: 5021 + components: + - pos: -0.5,12.5 + parent: 1 + type: Transform + - uid: 6326 + components: + - pos: -14.5,-16.5 + parent: 1 + type: Transform + - uid: 7186 + components: + - pos: 21.5,-3.5 + parent: 1 + type: Transform + - uid: 8343 + components: + - pos: -32.5,-15.5 + parent: 1 + type: Transform +- proto: DisposalYJunction + entities: + - uid: 9808 + components: + - rot: 3.141592653589793 rad + pos: -28.5,2.5 + parent: 1 + type: Transform +- proto: DogBed + entities: + - uid: 4960 + components: + - pos: -1.5,19.5 + parent: 1 + type: Transform + - uid: 4971 + components: + - pos: 5.5,29.5 + parent: 1 + type: Transform +- proto: Drill + entities: + - uid: 9639 + components: + - pos: -26.392878,20.608793 + parent: 1 + type: Transform +- proto: DrinkBottleWine + entities: + - uid: 7543 + components: + - pos: -33.460228,11.714648 + parent: 1 + type: Transform +- proto: DrinkChangelingStingCan + entities: + - uid: 12287 + components: + - pos: -11.69306,-33.29647 + parent: 1 + type: Transform +- proto: DrinkDetFlask + entities: + - uid: 12525 + components: + - pos: -21.680874,-28.320465 + parent: 1 + type: Transform +- proto: DrinkGlass + entities: + - uid: 5976 + components: + - pos: 0.57151127,7.5559425 + parent: 1 + type: Transform + - uid: 5977 + components: + - pos: 0.22776127,7.7278175 + parent: 1 + type: Transform + - uid: 5978 + components: + - pos: 1.4777613,7.7434425 + parent: 1 + type: Transform + - uid: 8267 + components: + - pos: -14.259693,-53.493797 + parent: 1 + type: Transform + - uid: 8268 + components: + - pos: -15.197193,-48.228172 + parent: 1 + type: Transform + - uid: 8269 + components: + - pos: -15.056568,-48.478172 + parent: 1 + type: Transform + - uid: 8277 + components: + - pos: -14.712818,-53.400047 + parent: 1 + type: Transform + - uid: 8309 + components: + - pos: -29.313759,-12.206892 + parent: 1 + type: Transform + - uid: 8310 + components: + - pos: -29.454384,-12.456892 + parent: 1 + type: Transform +- proto: DrinkGlassCoupeShaped + entities: + - uid: 5979 + components: + - pos: 1.8058863,7.6653175 + parent: 1 + type: Transform + - uid: 7544 + components: + - pos: -33.897728,11.652148 + parent: 1 + type: Transform + - uid: 7545 + components: + - pos: -34.319603,11.730273 + parent: 1 + type: Transform +- proto: DrinkGoldenCup + entities: + - uid: 4129 + components: + - pos: -1.434155,24.205725 + parent: 1 + type: Transform +- proto: DrinkMilkCarton + entities: + - uid: 6014 + components: + - pos: 0.5749459,1.7185974 + parent: 1 + type: Transform +- proto: DrinkMugBlack + entities: + - uid: 4913 + components: + - pos: 40.67775,25.53639 + parent: 1 + type: Transform +- proto: DrinkMugBlue + entities: + - uid: 4915 + components: + - pos: 40.318375,25.458265 + parent: 1 + type: Transform +- proto: DrinkMugRed + entities: + - uid: 4914 + components: + - pos: 40.380875,25.75514 + parent: 1 + type: Transform +- proto: DrinkShaker + entities: + - uid: 5975 + components: + - pos: 1.0246363,7.6965675 + parent: 1 + type: Transform + - uid: 8264 + components: + - pos: -15.603443,-48.431297 + parent: 1 + type: Transform + - uid: 8276 + components: + - pos: -14.415943,-53.165672 + parent: 1 + type: Transform + - uid: 8308 + components: + - pos: -29.766884,-12.316267 + parent: 1 + type: Transform +- proto: DrinkVacuumFlask + entities: + - uid: 12354 + components: + - pos: 5.53118,46.361736 + parent: 1 + type: Transform + - solutions: + drink: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 30 + reagents: + - data: null + ReagentId: LongIslandIcedTea + Quantity: 30 + type: SolutionContainerManager +- proto: DrinkWhiskeyBottleFull + entities: + - uid: 5357 + components: + - flags: InContainer + type: MetaData + - parent: 5356 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: Dropper + entities: + - uid: 6088 + components: + - pos: -28.506477,-7.2309704 + parent: 1 + type: Transform + - uid: 6089 + components: + - pos: -28.412727,-7.5278454 + parent: 1 + type: Transform +- proto: ElectricGuitarInstrument + entities: + - uid: 7804 + components: + - pos: -13.014593,-31.488472 + parent: 1 + type: Transform +- proto: EmergencyLight + entities: + - uid: 5524 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,28.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 5525 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,27.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 5526 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 5527 + components: + - rot: 3.141592653589793 rad + pos: -2.5,23.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 5528 + components: + - pos: 2.5,16.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 5529 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,14.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 5530 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,12.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 5531 + components: + - rot: 3.141592653589793 rad + pos: 29.5,8.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 5532 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 5533 + components: + - rot: 3.141592653589793 rad + pos: 30.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 5534 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,7.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 6606 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 6607 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12362 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12363 + components: + - rot: 3.141592653589793 rad + pos: 35.5,1.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12364 + components: + - pos: 23.5,3.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12365 + components: + - rot: 3.141592653589793 rad + pos: 11.5,1.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12366 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,10.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12367 + components: + - rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12369 + components: + - pos: 12.5,-4.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12370 + components: + - pos: 22.5,-3.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12371 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-11.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12372 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-6.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12373 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-14.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12374 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-12.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12375 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-9.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12376 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-9.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12377 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,15.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12378 + components: + - pos: -11.5,16.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12379 + components: + - rot: 3.141592653589793 rad + pos: -12.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12380 + components: + - rot: 3.141592653589793 rad + pos: -13.5,8.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12381 + components: + - pos: -21.5,11.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12382 + components: + - rot: 3.141592653589793 rad + pos: -24.5,13.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12383 + components: + - rot: 3.141592653589793 rad + pos: -18.5,1.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12384 + components: + - pos: -30.5,3.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12385 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,9.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12386 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,9.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12387 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-3.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12388 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12389 + components: + - pos: -16.5,-0.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12390 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-11.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12391 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12392 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-14.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12393 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-28.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12394 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-26.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12395 + components: + - pos: -2.5,-20.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12396 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-27.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12397 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-18.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12398 + components: + - pos: 19.5,-20.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12399 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12400 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,53.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12401 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12454 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight +- proto: EmergencyMedipen + entities: + - uid: 1925 + components: + - pos: -22.134233,11.75826 + parent: 1 + type: Transform + - uid: 7681 + components: + - pos: -22.212358,11.492635 + parent: 1 + type: Transform +- proto: EmergencyRollerBed + entities: + - uid: 5862 + components: + - pos: -14.510358,11.588304 + parent: 1 + type: Transform + - uid: 5863 + components: + - pos: -13.494733,11.588304 + parent: 1 + type: Transform +- proto: EncryptionKeyCargo + entities: + - uid: 3778 + components: + - flags: InContainer + type: MetaData + - parent: 3777 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyCommand + entities: + - uid: 3780 + components: + - flags: InContainer + type: MetaData + - parent: 3779 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyCommon + entities: + - uid: 3783 + components: + - flags: InContainer + type: MetaData + - parent: 3782 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyEngineering + entities: + - uid: 3785 + components: + - flags: InContainer + type: MetaData + - parent: 3784 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyMedical + entities: + - uid: 3772 + components: + - flags: InContainer + type: MetaData + - parent: 3771 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyScience + entities: + - uid: 3790 + components: + - flags: InContainer + type: MetaData + - parent: 3789 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeySecurity + entities: + - uid: 3793 + components: + - flags: InContainer + type: MetaData + - parent: 3792 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyService + entities: + - uid: 3770 + components: + - flags: InContainer + type: MetaData + - parent: 3769 + type: Transform + - canCollide: False + type: Physics +- proto: ExosuitFabricator + entities: + - uid: 663 + components: + - pos: -7.5,-15.5 + parent: 1 + type: Transform +- proto: ExtinguisherCabinetFilled + entities: + - uid: 5490 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,19.5 + parent: 1 + type: Transform + - uid: 5502 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,25.5 + parent: 1 + type: Transform + - uid: 5503 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,26.5 + parent: 1 + type: Transform + - uid: 5505 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,25.5 + parent: 1 + type: Transform + - uid: 5506 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,21.5 + parent: 1 + type: Transform + - uid: 5507 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,16.5 + parent: 1 + type: Transform + - uid: 5509 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,4.5 + parent: 1 + type: Transform + - uid: 5510 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,14.5 + parent: 1 + type: Transform + - uid: 5511 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,16.5 + parent: 1 + type: Transform + - uid: 5512 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,7.5 + parent: 1 + type: Transform + - uid: 5513 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,29.5 + parent: 1 + type: Transform + - uid: 5514 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,29.5 + parent: 1 + type: Transform + - uid: 5515 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,44.5 + parent: 1 + type: Transform + - uid: 5516 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,50.5 + parent: 1 + type: Transform + - uid: 5517 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,50.5 + parent: 1 + type: Transform + - uid: 5518 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,56.5 + parent: 1 + type: Transform + - uid: 5519 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,30.5 + parent: 1 + type: Transform + - uid: 9279 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,17.5 + parent: 1 + type: Transform + - uid: 9280 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,4.5 + parent: 1 + type: Transform + - uid: 9281 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-5.5 + parent: 1 + type: Transform + - uid: 9282 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,8.5 + parent: 1 + type: Transform + - uid: 9283 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,0.5 + parent: 1 + type: Transform + - uid: 9284 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,4.5 + parent: 1 + type: Transform + - uid: 9285 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-19.5 + parent: 1 + type: Transform + - uid: 9286 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-11.5 + parent: 1 + type: Transform + - uid: 9287 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-4.5 + parent: 1 + type: Transform + - uid: 9289 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,13.5 + parent: 1 + type: Transform + - uid: 9290 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,0.5 + parent: 1 + type: Transform + - uid: 9291 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,1.5 + parent: 1 + type: Transform + - uid: 9292 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,4.5 + parent: 1 + type: Transform + - uid: 9293 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,8.5 + parent: 1 + type: Transform + - uid: 9294 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,18.5 + parent: 1 + type: Transform + - uid: 9295 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,27.5 + parent: 1 + type: Transform + - uid: 9296 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,-2.5 + parent: 1 + type: Transform + - uid: 9297 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,-4.5 + parent: 1 + type: Transform + - uid: 9298 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-5.5 + parent: 1 + type: Transform + - uid: 9299 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-10.5 + parent: 1 + type: Transform + - uid: 9300 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-17.5 + parent: 1 + type: Transform + - uid: 9301 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-19.5 + parent: 1 + type: Transform + - uid: 9302 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-25.5 + parent: 1 + type: Transform + - uid: 9303 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-26.5 + parent: 1 + type: Transform + - uid: 9304 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-27.5 + parent: 1 + type: Transform + - uid: 9305 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-24.5 + parent: 1 + type: Transform + - uid: 9306 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-21.5 + parent: 1 + type: Transform + - uid: 11600 + components: + - pos: 17.5,12.5 + parent: 1 + type: Transform + - uid: 12023 + components: + - pos: -1.5,-10.5 + parent: 1 + type: Transform + - uid: 12402 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-31.5 + parent: 1 + type: Transform + - uid: 12403 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-33.5 + parent: 1 + type: Transform +- proto: FaxMachineBase + entities: + - uid: 4111 + components: + - pos: -8.5,31.5 + parent: 1 + type: Transform + - name: Bridge + type: FaxMachine + - uid: 4968 + components: + - pos: -0.5,21.5 + parent: 1 + type: Transform + - name: HoP Office + type: FaxMachine + - uid: 5329 + components: + - pos: 26.5,10.5 + parent: 1 + type: Transform + - name: Security + type: FaxMachine + - uid: 5582 + components: + - pos: -37.5,-4.5 + parent: 1 + type: Transform + - name: Library + type: FaxMachine + - uid: 5882 + components: + - pos: -12.5,6.5 + parent: 1 + type: Transform + - name: Medical + type: FaxMachine + - uid: 5974 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - name: Bar + type: FaxMachine + - uid: 6027 + components: + - pos: -16.5,-3.5 + parent: 1 + type: Transform + - name: Science + type: FaxMachine + - uid: 6785 + components: + - pos: 11.5,-12.5 + parent: 1 + type: Transform + - name: Engineering + type: FaxMachine + - uid: 7242 + components: + - pos: 11.5,-17.5 + parent: 1 + type: Transform + - name: Cargo + type: FaxMachine + - uid: 9129 + components: + - pos: 40.5,33.5 + parent: 1 + type: Transform + - name: Courthouse + type: FaxMachine +- proto: FaxMachineCaptain + entities: + - uid: 4102 + components: + - pos: 5.5,27.5 + parent: 1 + type: Transform +- proto: FireAlarm + entities: + - uid: 5969 + components: + - pos: 16.5,11.5 + parent: 1 + type: Transform + - devices: + - 3200 + - 3201 + - 3202 + - 1766 + - 1765 + - 3209 + - 3208 + - 3206 + - 3207 + - 3203 + - 3204 + - 3205 + type: DeviceList + - uid: 11595 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,26.5 + parent: 1 + type: Transform + - devices: + - 3197 + - 3194 + - 3198 + type: DeviceList + - uid: 11596 + components: + - rot: 3.141592653589793 rad + pos: -1.5,26.5 + parent: 1 + type: Transform + - devices: + - 3193 + - 3192 + - 3196 + - 3194 + - 3195 + type: DeviceList + - uid: 11597 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,21.5 + parent: 1 + type: Transform + - devices: + - 3185 + - 3191 + - 3193 + - 3192 + - 3186 + type: DeviceList + - uid: 11599 + components: + - pos: 6.5,17.5 + parent: 1 + type: Transform + - devices: + - 5009 + - 5010 + - 5011 + - 3190 + - 3199 + - 3191 + - 3134 + - 3133 + - 46 + - 5004 + - 5003 + - 5002 + - 5000 + - 5001 + type: DeviceList + - uid: 11607 + components: + - pos: 30.5,11.5 + parent: 1 + type: Transform + - devices: + - 3203 + - 3204 + - 3205 + - 3219 + - 3327 + - 3217 + - 3213 + - 3214 + - 3215 + type: DeviceList + - uid: 11610 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,26.5 + parent: 1 + type: Transform + - devices: + - 3224 + - 3225 + - 3226 + - 3227 + - 3228 + - 3220 + - 3221 + - 3222 + - 3223 + type: DeviceList + - uid: 11613 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,10.5 + parent: 1 + type: Transform + - devices: + - 3134 + - 3133 + - 46 + - 3135 + - 3136 + - 3138 + - 3137 + - 11622 + - 11621 + - 11620 + - 11619 + - 11618 + - 11617 + - 11616 + - 11615 + - 11614 + type: DeviceList + - uid: 11624 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + type: Transform + - devices: + - 3143 + - 3141 + - 3142 + - 3139 + - 3140 + type: DeviceList + - uid: 11626 + components: + - pos: -1.5,0.5 + parent: 1 + type: Transform + - devices: + - 3145 + - 3146 + - 3143 + - 3142 + type: DeviceList + - uid: 11631 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + type: Transform + - devices: + - 3120 + - 3119 + - 3118 + - 3149 + - 3150 + - 3151 + - 5508 + - 5498 + - 5495 + - 5008 + - 5003 + - 5002 + - 5004 + - 3135 + - 3136 + type: DeviceList + - uid: 11633 + components: + - pos: -18.5,12.5 + parent: 1 + type: Transform + - devices: + - 3183 + - 3184 + - 3171 + - 3170 + - 3169 + - 3168 + - 3167 + - 3166 + - 3165 + - 3189 + - 3164 + - 3173 + - 3172 + type: DeviceList + - uid: 11635 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,6.5 + parent: 1 + type: Transform + - uid: 11639 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,20.5 + parent: 1 + type: Transform + - devices: + - 3187 + - 11637 + - 11643 + type: DeviceList + - uid: 11640 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,15.5 + parent: 1 + type: Transform + - devices: + - 3164 + - 3188 + type: DeviceList + - uid: 11641 + components: + - pos: -8.5,15.5 + parent: 1 + type: Transform + - devices: + - 3178 + - 3179 + - 3180 + - 3181 + type: DeviceList + - uid: 11648 + components: + - pos: -10.5,4.5 + parent: 1 + type: Transform + - devices: + - 3151 + - 3150 + - 3149 + - 3155 + - 3156 + - 3157 + type: DeviceList + - uid: 11650 + components: + - pos: -26.5,4.5 + parent: 1 + type: Transform + - devices: + - 3151 + - 3150 + - 3149 + - 3155 + - 3156 + - 3157 + - 11054 + - 11057 + - 2284 + - 2094 + - 3160 + - 3272 + - 3273 + - 3158 + - 3159 + - 3161 + type: DeviceList + - uid: 11652 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,9.5 + parent: 1 + type: Transform + - devices: + - 3158 + - 3159 + - 3161 + - 11653 + type: DeviceList + - uid: 11654 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,7.5 + parent: 1 + type: Transform + - devices: + - 2284 + - 2094 + - 3160 + - 3162 + - 3163 + type: DeviceList + - uid: 11656 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-4.5 + parent: 1 + type: Transform + - devices: + - 3273 + - 3272 + type: DeviceList + - uid: 11659 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-10.5 + parent: 1 + type: Transform + - devices: + - 3115 + - 3116 + - 3117 + - 3104 + - 3103 + - 3102 + - 3096 + - 3097 + - 3100 + - 3101 + - 3118 + - 3119 + - 3120 + type: DeviceList + - uid: 11663 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-8.5 + parent: 1 + type: Transform + - devices: + - 3094 + - 3095 + - 3102 + - 3103 + - 3104 + - 3105 + type: DeviceList + - uid: 11665 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-16.5 + parent: 1 + type: Transform + - devices: + - 3111 + - 3112 + - 3113 + - 3106 + - 3107 + - 3108 + - 3109 + - 11668 + - 11669 + type: DeviceList + - uid: 11671 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-8.5 + parent: 1 + type: Transform + - devices: + - 1979 + - 2283 + - 996 + type: DeviceList + - uid: 11673 + components: + - pos: -16.5,0.5 + parent: 1 + type: Transform + - devices: + - 3091 + - 3090 + - 3109 + - 3093 + - 3092 + type: DeviceList + - uid: 11675 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-10.5 + parent: 1 + type: Transform + - devices: + - 3117 + - 3116 + - 3115 + - 3145 + - 3121 + - 3122 + - 3123 + - 3266 + - 3265 + - 3264 + type: DeviceList + - uid: 11677 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 1 + type: Transform + - devices: + - 3123 + - 3122 + - 3121 + - 11629 + - 11628 + - 11627 + - 3125 + - 3124 + - 3126 + - 3243 + - 1832 + - 3055 + type: DeviceList + - uid: 11679 + components: + - pos: 19.5,-2.5 + parent: 1 + type: Transform + - devices: + - 3229 + - 3230 + - 3233 + - 3232 + - 11687 + - 11688 + type: DeviceList + - uid: 11681 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-12.5 + parent: 1 + type: Transform + - devices: + - 3231 + - 3232 + - 3233 + - 3241 + - 3242 + type: DeviceList + - uid: 11683 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-12.5 + parent: 1 + type: Transform + - devices: + - 3235 + - 3234 + - 3232 + - 3233 + - 3240 + - 11687 + - 11688 + - 11689 + type: DeviceList + - uid: 11685 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-13.5 + parent: 1 + type: Transform + - devices: + - 3236 + - 3237 + - 1222 + - 11686 + type: DeviceList + - uid: 11691 + components: + - pos: 20.5,4.5 + parent: 1 + type: Transform + - devices: + - 3129 + - 3128 + - 3127 + - 3498 + - 3499 + type: DeviceList + - uid: 11693 + components: + - pos: 33.5,4.5 + parent: 1 + type: Transform + - devices: + - 3499 + - 3498 + - 3501 + - 3502 + - 3503 + type: DeviceList + - uid: 11695 + components: + - rot: 3.141592653589793 rad + pos: 41.5,0.5 + parent: 1 + type: Transform + - devices: + - 3503 + - 3502 + - 3501 + - 3504 + - 3505 + - 3506 + type: DeviceList + - uid: 11696 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,9.5 + parent: 1 + type: Transform + - devices: + - 3506 + - 3505 + - 3504 + - 3507 + - 4898 + type: DeviceList + - uid: 11701 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,31.5 + parent: 1 + type: Transform + - devices: + - 11703 + - 11704 + type: DeviceList + - uid: 11702 + components: + - rot: 3.141592653589793 rad + pos: 42.5,24.5 + parent: 1 + type: Transform + - devices: + - 4898 + - 4897 + - 11703 + - 11704 + type: DeviceList + - uid: 11706 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-14.5 + parent: 1 + type: Transform + - devices: + - 3262 + - 3261 + - 3263 + - 3264 + - 3265 + - 3266 + type: DeviceList + - uid: 11708 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-27.5 + parent: 1 + type: Transform + - devices: + - 3260 + - 3259 + - 3258 + - 3267 + - 3270 + - 3269 + - 3271 + - 3268 + type: DeviceList + - uid: 11710 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-24.5 + parent: 1 + type: Transform + - devices: + - 3584 + - 3585 + - 3586 + - 3587 + - 3263 + - 3262 + - 3261 + - 3260 + - 3259 + - 3258 + - 7083 + - 7084 + - 7085 + type: DeviceList + - uid: 11712 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-29.5 + parent: 1 + type: Transform + - devices: + - 7086 + - 7083 + - 7084 + - 7085 + type: DeviceList + - uid: 11715 + components: + - pos: 8.5,-16.5 + parent: 1 + type: Transform + - devices: + - 3247 + - 3246 + - 3250 + - 3251 + - 3252 + - 3253 + - 2186 + type: DeviceList + - uid: 11716 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-28.5 + parent: 1 + type: Transform + - devices: + - 3248 + - 3249 + type: DeviceList + - uid: 11717 + components: + - pos: 20.5,-19.5 + parent: 1 + type: Transform + - devices: + - 7250 + - 7249 + - 3595 + - 7301 + - 3257 + type: DeviceList +- proto: FireAxeCabinetFilled + entities: + - uid: 4101 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,29.5 + parent: 1 + type: Transform + - uid: 12471 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-9.5 + parent: 1 + type: Transform +- proto: FireExtinguisher + entities: + - uid: 6334 + components: + - pos: -14.675418,-8.401124 + parent: 1 + type: Transform +- proto: Firelock + entities: + - uid: 3508 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,6.5 + parent: 1 + type: Transform + - uid: 3509 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,7.5 + parent: 1 + type: Transform + - uid: 3510 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,16.5 + parent: 1 + type: Transform + - uid: 3511 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,29.5 + parent: 1 + type: Transform + - uid: 3512 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,29.5 + parent: 1 + type: Transform + - uid: 3513 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,19.5 + parent: 1 + type: Transform + - uid: 3514 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,31.5 + parent: 1 + type: Transform + - uid: 3515 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,28.5 + parent: 1 + type: Transform + - uid: 3516 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,28.5 + parent: 1 + type: Transform + - uid: 3517 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,18.5 + parent: 1 + type: Transform + - uid: 3518 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,17.5 + parent: 1 + type: Transform + - uid: 3519 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,23.5 + parent: 1 + type: Transform + - uid: 3520 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,24.5 + parent: 1 + type: Transform + - uid: 3521 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,22.5 + parent: 1 + type: Transform + - uid: 3522 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,22.5 + parent: 1 + type: Transform + - uid: 3523 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,28.5 + parent: 1 + type: Transform + - uid: 3524 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,29.5 + parent: 1 + type: Transform + - uid: 3525 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,19.5 + parent: 1 + type: Transform + - uid: 3526 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,18.5 + parent: 1 + type: Transform + - uid: 3527 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,17.5 + parent: 1 + type: Transform + - uid: 3528 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,17.5 + parent: 1 + type: Transform + - uid: 3529 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-3.5 + parent: 1 + type: Transform + - uid: 3530 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-3.5 + parent: 1 + type: Transform + - uid: 3531 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-14.5 + parent: 1 + type: Transform + - uid: 3532 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-14.5 + parent: 1 + type: Transform + - uid: 3533 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-19.5 + parent: 1 + type: Transform + - uid: 3534 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-20.5 + parent: 1 + type: Transform + - uid: 3535 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-21.5 + parent: 1 + type: Transform + - uid: 3536 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-22.5 + parent: 1 + type: Transform + - uid: 3537 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-9.5 + parent: 1 + type: Transform + - uid: 3538 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-17.5 + parent: 1 + type: Transform + - uid: 3539 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-18.5 + parent: 1 + type: Transform + - uid: 3540 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-2.5 + parent: 1 + type: Transform + - uid: 3541 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-2.5 + parent: 1 + type: Transform + - uid: 12493 + components: + - pos: 33.5,-0.5 + parent: 1 + type: Transform +- proto: FirelockEdge + entities: + - uid: 996 + components: + - pos: -25.5,-7.5 + parent: 1 + type: Transform + - uid: 1222 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-2.5 + parent: 1 + type: Transform + - uid: 1764 + components: + - rot: 3.141592653589793 rad + pos: 18.5,7.5 + parent: 1 + type: Transform + - uid: 1765 + components: + - rot: 3.141592653589793 rad + pos: 15.5,7.5 + parent: 1 + type: Transform + - uid: 1766 + components: + - rot: 3.141592653589793 rad + pos: 12.5,7.5 + parent: 1 + type: Transform + - uid: 1832 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-8.5 + parent: 1 + type: Transform + - uid: 2186 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-17.5 + parent: 1 + type: Transform + - uid: 2864 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-48.5 + parent: 1 + type: Transform + - uid: 3055 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-4.5 + parent: 1 + type: Transform + - uid: 3105 + components: + - pos: -11.5,-15.5 + parent: 1 + type: Transform + - uid: 3114 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-17.5 + parent: 1 + type: Transform + - uid: 3162 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,15.5 + parent: 1 + type: Transform + - uid: 3187 + components: + - rot: 3.141592653589793 rad + pos: -13.5,21.5 + parent: 1 + type: Transform + - uid: 3188 + components: + - rot: 3.141592653589793 rad + pos: -23.5,16.5 + parent: 1 + type: Transform + - uid: 3189 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,10.5 + parent: 1 + type: Transform + - uid: 3197 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,30.5 + parent: 1 + type: Transform + - uid: 3198 + components: + - pos: -9.5,26.5 + parent: 1 + type: Transform + - uid: 3208 + components: + - pos: 21.5,8.5 + parent: 1 + type: Transform + - uid: 3209 + components: + - pos: 22.5,8.5 + parent: 1 + type: Transform + - uid: 3222 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,25.5 + parent: 1 + type: Transform + - uid: 3223 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,27.5 + parent: 1 + type: Transform + - uid: 3224 + components: + - rot: 3.141592653589793 rad + pos: 28.5,29.5 + parent: 1 + type: Transform + - uid: 3225 + components: + - rot: 3.141592653589793 rad + pos: 29.5,29.5 + parent: 1 + type: Transform + - uid: 3226 + components: + - rot: 3.141592653589793 rad + pos: 30.5,29.5 + parent: 1 + type: Transform + - uid: 3227 + components: + - rot: 3.141592653589793 rad + pos: 31.5,29.5 + parent: 1 + type: Transform + - uid: 3228 + components: + - rot: 3.141592653589793 rad + pos: 32.5,29.5 + parent: 1 + type: Transform + - uid: 3238 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-3.5 + parent: 1 + type: Transform + - uid: 3240 + components: + - pos: 25.5,-15.5 + parent: 1 + type: Transform + - uid: 3242 + components: + - pos: 13.5,-12.5 + parent: 1 + type: Transform + - uid: 3256 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-20.5 + parent: 1 + type: Transform + - uid: 3257 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-20.5 + parent: 1 + type: Transform + - uid: 3274 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,22.5 + parent: 1 + type: Transform + - uid: 3507 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,15.5 + parent: 1 + type: Transform + - uid: 3584 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-22.5 + parent: 1 + type: Transform + - uid: 3585 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-21.5 + parent: 1 + type: Transform + - uid: 3586 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-20.5 + parent: 1 + type: Transform + - uid: 3587 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-19.5 + parent: 1 + type: Transform + - uid: 4897 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,26.5 + parent: 1 + type: Transform + - uid: 4898 + components: + - rot: 3.141592653589793 rad + pos: 45.5,23.5 + parent: 1 + type: Transform + - uid: 5000 + components: + - pos: -2.5,17.5 + parent: 1 + type: Transform + - uid: 5001 + components: + - pos: 1.5,17.5 + parent: 1 + type: Transform + - uid: 5002 + components: + - rot: 3.141592653589793 rad + pos: -6.5,11.5 + parent: 1 + type: Transform + - uid: 5003 + components: + - rot: 3.141592653589793 rad + pos: -5.5,11.5 + parent: 1 + type: Transform + - uid: 5004 + components: + - rot: 3.141592653589793 rad + pos: -4.5,11.5 + parent: 1 + type: Transform + - uid: 7148 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-16.5 + parent: 1 + type: Transform + - uid: 7149 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-17.5 + parent: 1 + type: Transform + - uid: 7150 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-18.5 + parent: 1 + type: Transform + - uid: 11627 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-5.5 + parent: 1 + type: Transform + - uid: 11628 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-6.5 + parent: 1 + type: Transform + - uid: 11629 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-7.5 + parent: 1 + type: Transform + - uid: 11668 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-13.5 + parent: 1 + type: Transform + - uid: 11669 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-9.5 + parent: 1 + type: Transform + - uid: 11686 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-17.5 + parent: 1 + type: Transform + - uid: 12112 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,21.5 + parent: 1 + type: Transform +- proto: FirelockGlass + entities: + - uid: 46 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,13.5 + parent: 1 + type: Transform + - uid: 1979 + components: + - pos: -23.5,-6.5 + parent: 1 + type: Transform + - uid: 2094 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,2.5 + parent: 1 + type: Transform + - uid: 2283 + components: + - pos: -23.5,-5.5 + parent: 1 + type: Transform + - uid: 2284 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,3.5 + parent: 1 + type: Transform + - uid: 3075 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-17.5 + parent: 1 + type: Transform + - uid: 3090 + components: + - pos: -19.5,-6.5 + parent: 1 + type: Transform + - uid: 3091 + components: + - pos: -19.5,-5.5 + parent: 1 + type: Transform + - uid: 3092 + components: + - pos: -13.5,-5.5 + parent: 1 + type: Transform + - uid: 3093 + components: + - pos: -13.5,-6.5 + parent: 1 + type: Transform + - uid: 3094 + components: + - pos: -12.5,-7.5 + parent: 1 + type: Transform + - uid: 3095 + components: + - pos: -11.5,-7.5 + parent: 1 + type: Transform + - uid: 3096 + components: + - pos: -10.5,-6.5 + parent: 1 + type: Transform + - uid: 3097 + components: + - pos: -10.5,-5.5 + parent: 1 + type: Transform + - uid: 3098 + components: + - pos: -11.5,-4.5 + parent: 1 + type: Transform + - uid: 3099 + components: + - pos: -12.5,-4.5 + parent: 1 + type: Transform + - uid: 3100 + components: + - pos: -9.5,-4.5 + parent: 1 + type: Transform + - uid: 3101 + components: + - pos: -8.5,-4.5 + parent: 1 + type: Transform + - uid: 3102 + components: + - pos: -8.5,-10.5 + parent: 1 + type: Transform + - uid: 3103 + components: + - pos: -7.5,-10.5 + parent: 1 + type: Transform + - uid: 3104 + components: + - pos: -6.5,-10.5 + parent: 1 + type: Transform + - uid: 3106 + components: + - pos: -17.5,-11.5 + parent: 1 + type: Transform + - uid: 3107 + components: + - pos: -16.5,-11.5 + parent: 1 + type: Transform + - uid: 3108 + components: + - pos: -15.5,-11.5 + parent: 1 + type: Transform + - uid: 3109 + components: + - pos: -16.5,-7.5 + parent: 1 + type: Transform + - uid: 3111 + components: + - pos: -17.5,-15.5 + parent: 1 + type: Transform + - uid: 3112 + components: + - pos: -16.5,-15.5 + parent: 1 + type: Transform + - uid: 3113 + components: + - pos: -15.5,-15.5 + parent: 1 + type: Transform + - uid: 3115 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-7.5 + parent: 1 + type: Transform + - uid: 3116 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-8.5 + parent: 1 + type: Transform + - uid: 3117 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-9.5 + parent: 1 + type: Transform + - uid: 3118 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,0.5 + parent: 1 + type: Transform + - uid: 3119 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + type: Transform + - uid: 3120 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + type: Transform + - uid: 3121 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 1 + type: Transform + - uid: 3122 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 1 + type: Transform + - uid: 3123 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-9.5 + parent: 1 + type: Transform + - uid: 3124 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,0.5 + parent: 1 + type: Transform + - uid: 3125 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,0.5 + parent: 1 + type: Transform + - uid: 3126 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,0.5 + parent: 1 + type: Transform + - uid: 3127 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,1.5 + parent: 1 + type: Transform + - uid: 3128 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,2.5 + parent: 1 + type: Transform + - uid: 3129 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,3.5 + parent: 1 + type: Transform + - uid: 3133 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,13.5 + parent: 1 + type: Transform + - uid: 3134 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,13.5 + parent: 1 + type: Transform + - uid: 3135 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,9.5 + parent: 1 + type: Transform + - uid: 3136 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1 + type: Transform + - uid: 3137 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,9.5 + parent: 1 + type: Transform + - uid: 3138 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,8.5 + parent: 1 + type: Transform + - uid: 3139 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 3140 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 3141 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 3142 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 3143 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 3145 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 1 + type: Transform + - uid: 3146 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 1 + type: Transform + - uid: 3149 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,1.5 + parent: 1 + type: Transform + - uid: 3150 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,2.5 + parent: 1 + type: Transform + - uid: 3151 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,3.5 + parent: 1 + type: Transform + - uid: 3155 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,1.5 + parent: 1 + type: Transform + - uid: 3156 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,2.5 + parent: 1 + type: Transform + - uid: 3157 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,3.5 + parent: 1 + type: Transform + - uid: 3158 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,4.5 + parent: 1 + type: Transform + - uid: 3159 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,4.5 + parent: 1 + type: Transform + - uid: 3160 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,1.5 + parent: 1 + type: Transform + - uid: 3161 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,4.5 + parent: 1 + type: Transform + - uid: 3163 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,17.5 + parent: 1 + type: Transform + - uid: 3164 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,12.5 + parent: 1 + type: Transform + - uid: 3165 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,8.5 + parent: 1 + type: Transform + - uid: 3166 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,7.5 + parent: 1 + type: Transform + - uid: 3167 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,7.5 + parent: 1 + type: Transform + - uid: 3168 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,7.5 + parent: 1 + type: Transform + - uid: 3169 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,7.5 + parent: 1 + type: Transform + - uid: 3170 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,7.5 + parent: 1 + type: Transform + - uid: 3171 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,7.5 + parent: 1 + type: Transform + - uid: 3172 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,9.5 + parent: 1 + type: Transform + - uid: 3173 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,10.5 + parent: 1 + type: Transform + - uid: 3174 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,7.5 + parent: 1 + type: Transform + - uid: 3175 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,7.5 + parent: 1 + type: Transform + - uid: 3176 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,6.5 + parent: 1 + type: Transform + - uid: 3177 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,5.5 + parent: 1 + type: Transform + - uid: 3178 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,12.5 + parent: 1 + type: Transform + - uid: 3179 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,12.5 + parent: 1 + type: Transform + - uid: 3180 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,12.5 + parent: 1 + type: Transform + - uid: 3181 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,15.5 + parent: 1 + type: Transform + - uid: 3182 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,15.5 + parent: 1 + type: Transform + - uid: 3183 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,12.5 + parent: 1 + type: Transform + - uid: 3184 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,12.5 + parent: 1 + type: Transform + - uid: 3185 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,20.5 + parent: 1 + type: Transform + - uid: 3186 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,18.5 + parent: 1 + type: Transform + - uid: 3190 + components: + - pos: 10.5,13.5 + parent: 1 + type: Transform + - uid: 3191 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,17.5 + parent: 1 + type: Transform + - uid: 3192 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,26.5 + parent: 1 + type: Transform + - uid: 3193 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,26.5 + parent: 1 + type: Transform + - uid: 3194 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,29.5 + parent: 1 + type: Transform + - uid: 3195 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,26.5 + parent: 1 + type: Transform + - uid: 3196 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,28.5 + parent: 1 + type: Transform + - uid: 3199 + components: + - pos: 10.5,14.5 + parent: 1 + type: Transform + - uid: 3200 + components: + - pos: 11.5,11.5 + parent: 1 + type: Transform + - uid: 3201 + components: + - pos: 12.5,11.5 + parent: 1 + type: Transform + - uid: 3202 + components: + - pos: 15.5,11.5 + parent: 1 + type: Transform + - uid: 3203 + components: + - pos: 24.5,10.5 + parent: 1 + type: Transform + - uid: 3204 + components: + - pos: 24.5,9.5 + parent: 1 + type: Transform + - uid: 3205 + components: + - pos: 24.5,8.5 + parent: 1 + type: Transform + - uid: 3206 + components: + - pos: 20.5,11.5 + parent: 1 + type: Transform + - uid: 3207 + components: + - pos: 21.5,11.5 + parent: 1 + type: Transform + - uid: 3213 + components: + - pos: 31.5,15.5 + parent: 1 + type: Transform + - uid: 3214 + components: + - pos: 32.5,15.5 + parent: 1 + type: Transform + - uid: 3215 + components: + - pos: 33.5,15.5 + parent: 1 + type: Transform + - uid: 3216 + components: + - pos: 30.5,17.5 + parent: 1 + type: Transform + - uid: 3217 + components: + - pos: 30.5,13.5 + parent: 1 + type: Transform + - uid: 3219 + components: + - pos: 26.5,7.5 + parent: 1 + type: Transform + - uid: 3220 + components: + - pos: 32.5,24.5 + parent: 1 + type: Transform + - uid: 3221 + components: + - pos: 33.5,24.5 + parent: 1 + type: Transform + - uid: 3229 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-6.5 + parent: 1 + type: Transform + - uid: 3230 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-7.5 + parent: 1 + type: Transform + - uid: 3231 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-9.5 + parent: 1 + type: Transform + - uid: 3232 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-10.5 + parent: 1 + type: Transform + - uid: 3233 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-11.5 + parent: 1 + type: Transform + - uid: 3234 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-10.5 + parent: 1 + type: Transform + - uid: 3235 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-11.5 + parent: 1 + type: Transform + - uid: 3236 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-11.5 + parent: 1 + type: Transform + - uid: 3237 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-10.5 + parent: 1 + type: Transform + - uid: 3241 + components: + - pos: 16.5,-12.5 + parent: 1 + type: Transform + - uid: 3243 + components: + - pos: 10.5,-1.5 + parent: 1 + type: Transform + - uid: 3244 + components: + - pos: 14.5,0.5 + parent: 1 + type: Transform + - uid: 3245 + components: + - pos: 15.5,0.5 + parent: 1 + type: Transform + - uid: 3246 + components: + - pos: 7.5,-21.5 + parent: 1 + type: Transform + - uid: 3247 + components: + - pos: 7.5,-20.5 + parent: 1 + type: Transform + - uid: 3248 + components: + - pos: 5.5,-24.5 + parent: 1 + type: Transform + - uid: 3249 + components: + - pos: 7.5,-26.5 + parent: 1 + type: Transform + - uid: 3250 + components: + - pos: 9.5,-24.5 + parent: 1 + type: Transform + - uid: 3251 + components: + - pos: 10.5,-24.5 + parent: 1 + type: Transform + - uid: 3252 + components: + - pos: 12.5,-22.5 + parent: 1 + type: Transform + - uid: 3253 + components: + - pos: 12.5,-21.5 + parent: 1 + type: Transform + - uid: 3258 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-26.5 + parent: 1 + type: Transform + - uid: 3259 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-25.5 + parent: 1 + type: Transform + - uid: 3260 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-24.5 + parent: 1 + type: Transform + - uid: 3261 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-18.5 + parent: 1 + type: Transform + - uid: 3262 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-18.5 + parent: 1 + type: Transform + - uid: 3263 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 1 + type: Transform + - uid: 3264 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 1 + type: Transform + - uid: 3265 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 1 + type: Transform + - uid: 3266 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 1 + type: Transform + - uid: 3267 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-23.5 + parent: 1 + type: Transform + - uid: 3268 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-25.5 + parent: 1 + type: Transform + - uid: 3269 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-27.5 + parent: 1 + type: Transform + - uid: 3270 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-27.5 + parent: 1 + type: Transform + - uid: 3271 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-27.5 + parent: 1 + type: Transform + - uid: 3272 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,0.5 + parent: 1 + type: Transform + - uid: 3273 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,0.5 + parent: 1 + type: Transform + - uid: 3327 + components: + - pos: 35.5,11.5 + parent: 1 + type: Transform + - uid: 3498 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,3.5 + parent: 1 + type: Transform + - uid: 3499 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,2.5 + parent: 1 + type: Transform + - uid: 3501 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,3.5 + parent: 1 + type: Transform + - uid: 3502 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,2.5 + parent: 1 + type: Transform + - uid: 3503 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,1.5 + parent: 1 + type: Transform + - uid: 3504 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,1.5 + parent: 1 + type: Transform + - uid: 3505 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,2.5 + parent: 1 + type: Transform + - uid: 3506 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,3.5 + parent: 1 + type: Transform + - uid: 3595 + components: + - pos: 20.5,-24.5 + parent: 1 + type: Transform + - uid: 5008 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,11.5 + parent: 1 + type: Transform + - uid: 5009 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,11.5 + parent: 1 + type: Transform + - uid: 5010 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,11.5 + parent: 1 + type: Transform + - uid: 5011 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,11.5 + parent: 1 + type: Transform + - uid: 5495 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,10.5 + parent: 1 + type: Transform + - uid: 5498 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,9.5 + parent: 1 + type: Transform + - uid: 5508 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,8.5 + parent: 1 + type: Transform + - uid: 7083 + components: + - pos: 0.5,-27.5 + parent: 1 + type: Transform + - uid: 7084 + components: + - pos: 1.5,-27.5 + parent: 1 + type: Transform + - uid: 7085 + components: + - pos: 2.5,-27.5 + parent: 1 + type: Transform + - uid: 7086 + components: + - pos: -0.5,-32.5 + parent: 1 + type: Transform + - uid: 7087 + components: + - pos: -5.5,-32.5 + parent: 1 + type: Transform + - uid: 7249 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-21.5 + parent: 1 + type: Transform + - uid: 7250 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-22.5 + parent: 1 + type: Transform + - uid: 7301 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-24.5 + parent: 1 + type: Transform + - uid: 11602 + components: + - pos: 13.5,13.5 + parent: 1 + type: Transform + - uid: 11603 + components: + - pos: 13.5,14.5 + parent: 1 + type: Transform + - uid: 11614 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 11615 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 11616 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,7.5 + parent: 1 + type: Transform + - uid: 11617 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 11618 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 11619 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 11620 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,7.5 + parent: 1 + type: Transform + - uid: 11621 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 11622 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,7.5 + parent: 1 + type: Transform + - uid: 11637 + components: + - pos: -16.5,17.5 + parent: 1 + type: Transform + - uid: 11643 + components: + - pos: -15.5,17.5 + parent: 1 + type: Transform + - uid: 11653 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,12.5 + parent: 1 + type: Transform + - uid: 11687 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-9.5 + parent: 1 + type: Transform + - uid: 11688 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-9.5 + parent: 1 + type: Transform + - uid: 11689 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-9.5 + parent: 1 + type: Transform + - uid: 11703 + components: + - rot: 3.141592653589793 rad + pos: 42.5,29.5 + parent: 1 + type: Transform + - uid: 11704 + components: + - rot: 3.141592653589793 rad + pos: 43.5,29.5 + parent: 1 + type: Transform +- proto: Fireplace + entities: + - uid: 4961 + components: + - pos: -5.5,21.5 + parent: 1 + type: Transform + - uid: 12563 + components: + - pos: 3.5,12.5 + parent: 1 + type: Transform +- proto: Flash + entities: + - uid: 5064 + components: + - pos: -0.72998714,31.713612 + parent: 1 + type: Transform +- proto: FlashlightLantern + entities: + - uid: 8929 + components: + - pos: -24.399763,-12.310871 + parent: 1 + type: Transform + - uid: 8930 + components: + - pos: -24.618513,-12.670246 + parent: 1 + type: Transform + - uid: 9550 + components: + - pos: 36.560673,24.84187 + parent: 1 + type: Transform + - uid: 9556 + components: + - pos: 36.357548,24.52937 + parent: 1 + type: Transform + - uid: 9732 + components: + - pos: -33.69252,18.729115 + parent: 1 + type: Transform + - uid: 9733 + components: + - pos: -33.34877,18.49474 + parent: 1 + type: Transform +- proto: FlashlightSeclite + entities: + - uid: 12531 + components: + - pos: -21.477749,-28.757965 + parent: 1 + type: Transform + - uid: 12532 + components: + - pos: 12.504955,21.180922 + parent: 1 + type: Transform + - uid: 12533 + components: + - pos: 12.504955,20.899672 + parent: 1 + type: Transform +- proto: Floodlight + entities: + - uid: 7307 + components: + - pos: 24.51259,-24.494957 + parent: 1 + type: Transform +- proto: FloorDrain + entities: + - uid: 5872 + components: + - pos: -23.5,14.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 5873 + components: + - pos: 12.5,-1.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 9655 + components: + - pos: 12.5,25.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 10117 + components: + - rot: 3.141592653589793 rad + pos: -2.5,3.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 12481 + components: + - pos: -11.5,15.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures +- proto: FloorTileItemArcadeBlue2 + entities: + - uid: 8752 + components: + - pos: -39.510826,-23.477228 + parent: 1 + type: Transform + - count: 30 + type: Stack +- proto: FloorTileItemBoxing + entities: + - uid: 8725 + components: + - pos: -43.51509,-18.484356 + parent: 1 + type: Transform + - uid: 8726 + components: + - pos: -42.51509,-19.46873 + parent: 1 + type: Transform + - uid: 8727 + components: + - pos: -41.499466,-19.49998 + parent: 1 + type: Transform + - uid: 8728 + components: + - pos: -41.468216,-20.53123 + parent: 1 + type: Transform + - uid: 8729 + components: + - pos: -41.48384,-17.49998 + parent: 1 + type: Transform +- proto: FluteInstrument + entities: + - uid: 7805 + components: + - pos: -11.967718,-31.457222 + parent: 1 + type: Transform +- proto: FoamBlade + entities: + - uid: 12286 + components: + - pos: -11.477329,-33.530846 + parent: 1 + type: Transform +- proto: FoamCutlass + entities: + - uid: 9495 + components: + - pos: 16.350037,33.593983 + parent: 1 + type: Transform + - uid: 9496 + components: + - pos: 16.646912,33.578358 + parent: 1 + type: Transform +- proto: FoodBreadPlain + entities: + - uid: 7542 + components: + - pos: -36.085228,11.652148 + parent: 1 + type: Transform +- proto: FoodBurgerMime + entities: + - uid: 7785 + components: + - pos: -13.67487,-28.683897 + parent: 1 + type: Transform +- proto: FoodBurgerRobot + entities: + - uid: 12427 + components: + - pos: -12.540917,-11.312796 + parent: 1 + type: Transform +- proto: FoodCakeClown + entities: + - uid: 7789 + components: + - pos: -9.479882,-28.394722 + parent: 1 + type: Transform +- proto: FoodCakeSuppermatterSlice + entities: + - uid: 12541 + components: + - pos: -31.503586,-35.411694 + parent: 1 + type: Transform +- proto: FoodCartCold + entities: + - uid: 1793 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + type: Transform +- proto: FoodCartHot + entities: + - uid: 1795 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + type: Transform +- proto: FoodContainerEgg + entities: + - uid: 6015 + components: + - pos: 0.6686959,0.7498474 + parent: 1 + type: Transform +- proto: FoodDonutJellySlugcat + entities: + - uid: 12540 + components: + - pos: 17.536278,36.515877 + parent: 1 + type: Transform +- proto: FoodDonutJellySpaceman + entities: + - uid: 12355 + components: + - pos: 47.534332,36.51474 + parent: 1 + type: Transform +- proto: FoodFrozenSandwichStrawberry + entities: + - uid: 12289 + components: + - pos: -13.495724,52.499588 + parent: 1 + type: Transform +- proto: FoodFrozenSnowconeClown + entities: + - uid: 7792 + components: + - pos: -9.261132,-30.191597 + parent: 1 + type: Transform +- proto: FoodFrozenSnowconeMime + entities: + - uid: 7784 + components: + - pos: -13.67487,-29.449522 + parent: 1 + type: Transform +- proto: FoodMeatClown + entities: + - uid: 7793 + components: + - pos: -9.698632,-30.535347 + parent: 1 + type: Transform +- proto: FoodPieBananaCream + entities: + - uid: 7794 + components: + - pos: -9.370507,-31.394722 + parent: 1 + type: Transform + - uid: 7795 + components: + - pos: -9.370507,-31.394722 + parent: 1 + type: Transform + - uid: 7796 + components: + - pos: -9.370507,-31.394722 + parent: 1 + type: Transform + - uid: 7797 + components: + - pos: -9.370507,-31.394722 + parent: 1 + type: Transform + - uid: 7798 + components: + - pos: -9.370507,-31.394722 + parent: 1 + type: Transform +- proto: FoodTartMime + entities: + - uid: 7783 + components: + - pos: -13.20612,-28.277647 + parent: 1 + type: Transform +- proto: Fork + entities: + - uid: 5985 + components: + - pos: 1.2974858,10.5533285 + parent: 1 + type: Transform +- proto: GasAnalyzer + entities: + - uid: 6339 + components: + - pos: -14.47985,-9.759103 + parent: 1 + type: Transform +- proto: GasFilterFlipped + entities: + - uid: 6840 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-17.5 + parent: 1 + type: Transform + - uid: 6841 + components: + - name: plasma filter + type: MetaData + - rot: 3.141592653589793 rad + pos: 38.5,-15.5 + parent: 1 + type: Transform + - uid: 6842 + components: + - name: water vapor filter + type: MetaData + - rot: 3.141592653589793 rad + pos: 38.5,-13.5 + parent: 1 + type: Transform + - uid: 6843 + components: + - name: n2o filter + type: MetaData + - rot: 3.141592653589793 rad + pos: 38.5,-11.5 + parent: 1 + type: Transform + - uid: 6844 + components: + - name: co2 filter + type: MetaData + - rot: 3.141592653589793 rad + pos: 38.5,-9.5 + parent: 1 + type: Transform + - uid: 6845 + components: + - name: o2 filter + type: MetaData + - rot: 3.141592653589793 rad + pos: 38.5,-7.5 + parent: 1 + type: Transform + - uid: 6846 + components: + - name: n2 filter + type: MetaData + - rot: 3.141592653589793 rad + pos: 38.5,-5.5 + parent: 1 + type: Transform +- proto: GasMinerCarbonDioxide + entities: + - uid: 6804 + components: + - pos: 44.5,-9.5 + parent: 1 + type: Transform +- proto: GasMinerNitrogenStation + entities: + - uid: 6808 + components: + - pos: 44.5,-5.5 + parent: 1 + type: Transform +- proto: GasMinerOxygenStation + entities: + - uid: 6807 + components: + - pos: 44.5,-7.5 + parent: 1 + type: Transform +- proto: GasMinerPlasma + entities: + - uid: 6806 + components: + - pos: 44.5,-15.5 + parent: 1 + type: Transform +- proto: GasMinerWaterVapor + entities: + - uid: 6805 + components: + - pos: 44.5,-13.5 + parent: 1 + type: Transform +- proto: GasMixer + entities: + - uid: 6942 + components: + - name: n2 + o2 to mix + type: MetaData + - pos: 37.5,-7.5 + parent: 1 + type: Transform +- proto: GasMixerFlipped + entities: + - uid: 6932 + components: + - name: distro mixer + type: MetaData + - rot: 3.141592653589793 rad + pos: 35.5,-6.5 + parent: 1 + type: Transform + - inletTwoConcentration: 0.22000003 + inletOneConcentration: 0.78 + type: GasMixer + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6943 + components: + - name: co2 to mix + type: MetaData + - rot: 3.141592653589793 rad + pos: 37.5,-8.5 + parent: 1 + type: Transform + - uid: 6944 + components: + - name: n2o to mix + type: MetaData + - rot: 3.141592653589793 rad + pos: 37.5,-10.5 + parent: 1 + type: Transform + - uid: 6945 + components: + - name: water vapor to mix + type: MetaData + - rot: 3.141592653589793 rad + pos: 37.5,-12.5 + parent: 1 + type: Transform + - uid: 6946 + components: + - name: plasma to mix + type: MetaData + - rot: 3.141592653589793 rad + pos: 37.5,-14.5 + parent: 1 + type: Transform + - uid: 6947 + components: + - rot: 3.141592653589793 rad + pos: 37.5,-16.5 + parent: 1 + type: Transform +- proto: GasOutletInjector + entities: + - uid: 1436 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-13.5 + parent: 1 + type: Transform + - uid: 6815 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-17.5 + parent: 1 + type: Transform + - uid: 6816 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-15.5 + parent: 1 + type: Transform + - uid: 6817 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-11.5 + parent: 1 + type: Transform + - uid: 6818 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-9.5 + parent: 1 + type: Transform + - uid: 6819 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-7.5 + parent: 1 + type: Transform + - uid: 6821 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-5.5 + parent: 1 + type: Transform + - uid: 6959 + components: + - rot: 3.141592653589793 rad + pos: 36.5,-22.5 + parent: 1 + type: Transform +- proto: GasPassiveVent + entities: + - uid: 6119 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-8.5 + parent: 1 + type: Transform + - uid: 6120 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-10.5 + parent: 1 + type: Transform + - uid: 6121 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-12.5 + parent: 1 + type: Transform + - uid: 6122 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-14.5 + parent: 1 + type: Transform + - uid: 6839 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-20.5 + parent: 1 + type: Transform + - uid: 6875 + components: + - rot: 3.141592653589793 rad + pos: 45.5,-5.5 + parent: 1 + type: Transform + - uid: 6876 + components: + - rot: 3.141592653589793 rad + pos: 45.5,-7.5 + parent: 1 + type: Transform + - uid: 6877 + components: + - rot: 3.141592653589793 rad + pos: 45.5,-9.5 + parent: 1 + type: Transform + - uid: 6878 + components: + - rot: 3.141592653589793 rad + pos: 45.5,-11.5 + parent: 1 + type: Transform + - uid: 6879 + components: + - rot: 3.141592653589793 rad + pos: 45.5,-13.5 + parent: 1 + type: Transform + - uid: 6880 + components: + - rot: 3.141592653589793 rad + pos: 45.5,-15.5 + parent: 1 + type: Transform + - uid: 6881 + components: + - rot: 3.141592653589793 rad + pos: 45.5,-17.5 + parent: 1 + type: Transform + - uid: 6958 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-22.5 + parent: 1 + type: Transform + - uid: 6992 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-3.5 + parent: 1 + type: Transform +- proto: GasPipeBend + entities: + - uid: 6882 + components: + - pos: 45.5,-4.5 + parent: 1 + type: Transform + - uid: 6883 + components: + - pos: 45.5,-6.5 + parent: 1 + type: Transform + - uid: 6884 + components: + - pos: 45.5,-8.5 + parent: 1 + type: Transform + - uid: 6885 + components: + - pos: 45.5,-10.5 + parent: 1 + type: Transform + - uid: 6886 + components: + - pos: 45.5,-12.5 + parent: 1 + type: Transform + - uid: 6887 + components: + - pos: 45.5,-14.5 + parent: 1 + type: Transform + - uid: 6888 + components: + - pos: 45.5,-16.5 + parent: 1 + type: Transform + - uid: 6931 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6936 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,-4.5 + parent: 1 + type: Transform + - uid: 6941 + components: + - rot: 3.141592653589793 rad + pos: 36.5,-7.5 + parent: 1 + type: Transform + - uid: 6948 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-17.5 + parent: 1 + type: Transform + - uid: 6949 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,-17.5 + parent: 1 + type: Transform + - uid: 6950 + components: + - rot: 3.141592653589793 rad + pos: 35.5,-18.5 + parent: 1 + type: Transform + - uid: 6979 + components: + - pos: 35.5,-16.5 + parent: 1 + type: Transform + - uid: 6982 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-13.5 + parent: 1 + type: Transform + - uid: 10159 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10162 + components: + - pos: 22.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10163 + components: + - pos: 23.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10164 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10165 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10166 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10167 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10186 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10196 + components: + - pos: 12.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10201 + components: + - pos: 13.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10203 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10273 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10274 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10275 + components: + - pos: 25.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10276 + components: + - rot: 3.141592653589793 rad + pos: 25.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10322 + components: + - pos: 38.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10323 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10353 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10354 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10401 + components: + - rot: 3.141592653589793 rad + pos: 45.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10408 + components: + - pos: 46.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10419 + components: + - pos: 45.5,26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10425 + components: + - pos: 44.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10437 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,34.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10440 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,33.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10456 + components: + - pos: 9.5,15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10457 + components: + - rot: 3.141592653589793 rad + pos: 8.5,15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10458 + components: + - pos: 8.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10575 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10580 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10607 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10624 + components: + - pos: 32.5,27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10637 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10646 + components: + - pos: 33.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10682 + components: + - pos: 4.5,21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10686 + components: + - pos: 5.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10687 + components: + - rot: 3.141592653589793 rad + pos: 1.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10688 + components: + - rot: 3.141592653589793 rad + pos: 0.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10699 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10700 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10717 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10719 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10734 + components: + - pos: 1.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10752 + components: + - rot: 3.141592653589793 rad + pos: -5.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10753 + components: + - pos: -5.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10800 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10801 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10802 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10820 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10846 + components: + - rot: 3.141592653589793 rad + pos: -12.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10847 + components: + - rot: 3.141592653589793 rad + pos: -11.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10906 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10907 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10954 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10955 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11070 + components: + - pos: -35.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11071 + components: + - rot: 3.141592653589793 rad + pos: -37.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11072 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11078 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11079 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11109 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11120 + components: + - rot: 3.141592653589793 rad + pos: -41.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11130 + components: + - rot: 3.141592653589793 rad + pos: -39.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11210 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11211 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11226 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11227 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11228 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11318 + components: + - pos: -16.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11319 + components: + - pos: -18.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11420 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11422 + components: + - pos: -13.5,-25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11483 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11484 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11530 + components: + - pos: 10.5,-21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11532 + components: + - pos: 11.5,-20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11533 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11536 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11537 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11544 + components: + - pos: 9.5,-17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11555 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12142 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12143 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-34.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12144 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-34.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12145 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-46.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12146 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-46.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12149 + components: + - pos: -9.5,37.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12152 + components: + - pos: -7.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12153 + components: + - rot: 3.141592653589793 rad + pos: -10.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12160 + components: + - pos: 0.5,35.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12161 + components: + - pos: -0.5,37.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12162 + components: + - pos: -1.5,39.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12163 + components: + - pos: -2.5,41.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12164 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,34.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12165 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,39.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12166 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,40.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12167 + components: + - rot: 3.141592653589793 rad + pos: -6.5,41.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12168 + components: + - rot: 3.141592653589793 rad + pos: -2.5,39.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12169 + components: + - rot: 3.141592653589793 rad + pos: -1.5,37.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12170 + components: + - rot: 3.141592653589793 rad + pos: -0.5,35.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12171 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,39.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12172 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,40.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12173 + components: + - rot: 3.141592653589793 rad + pos: -10.5,37.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12174 + components: + - pos: -8.5,42.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12175 + components: + - rot: 3.141592653589793 rad + pos: -9.5,42.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12177 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,34.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12199 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12229 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,55.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12230 + components: + - pos: -4.5,55.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12231 + components: + - rot: 3.141592653589793 rad + pos: -8.5,49.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12232 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,49.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12240 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12241 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,49.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12242 + components: + - rot: 3.141592653589793 rad + pos: -9.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12243 + components: + - rot: 3.141592653589793 rad + pos: -10.5,49.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12244 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,55.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12245 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,56.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12246 + components: + - pos: -3.5,56.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12247 + components: + - pos: -2.5,55.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12262 + components: + - pos: -9.5,49.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12263 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,55.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12264 + components: + - rot: 3.141592653589793 rad + pos: -3.5,55.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12265 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,49.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPipeFourway + entities: + - uid: 1837 + components: + - pos: 9.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10454 + components: + - pos: 7.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10519 + components: + - pos: 21.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10728 + components: + - pos: 0.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10844 + components: + - pos: -12.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10877 + components: + - pos: -15.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10926 + components: + - pos: -16.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11051 + components: + - pos: -35.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11191 + components: + - pos: -6.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11197 + components: + - pos: -8.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11256 + components: + - pos: -15.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11522 + components: + - pos: 4.5,-21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12196 + components: + - pos: -7.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12249 + components: + - pos: -2.5,52.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 926 + components: + - pos: 33.5,26.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 949 + components: + - pos: 33.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3351 + components: + - pos: 38.5,-4.5 + parent: 1 + type: Transform + - uid: 5007 + components: + - rot: 3.141592653589793 rad + pos: 42.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6103 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-14.5 + parent: 1 + type: Transform + - uid: 6105 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-12.5 + parent: 1 + type: Transform + - uid: 6111 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-8.5 + parent: 1 + type: Transform + - uid: 6112 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-10.5 + parent: 1 + type: Transform + - uid: 6113 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-12.5 + parent: 1 + type: Transform + - uid: 6114 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-14.5 + parent: 1 + type: Transform + - uid: 6115 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-14.5 + parent: 1 + type: Transform + - uid: 6116 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-12.5 + parent: 1 + type: Transform + - uid: 6117 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-10.5 + parent: 1 + type: Transform + - uid: 6118 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-8.5 + parent: 1 + type: Transform + - uid: 6824 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-6.5 + parent: 1 + type: Transform + - uid: 6825 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-8.5 + parent: 1 + type: Transform + - uid: 6826 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-10.5 + parent: 1 + type: Transform + - uid: 6827 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-12.5 + parent: 1 + type: Transform + - uid: 6828 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-14.5 + parent: 1 + type: Transform + - uid: 6829 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-16.5 + parent: 1 + type: Transform + - uid: 6831 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,-17.5 + parent: 1 + type: Transform + - uid: 6832 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,-15.5 + parent: 1 + type: Transform + - uid: 6833 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,-13.5 + parent: 1 + type: Transform + - uid: 6834 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,-11.5 + parent: 1 + type: Transform + - uid: 6835 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,-9.5 + parent: 1 + type: Transform + - uid: 6836 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,-7.5 + parent: 1 + type: Transform + - uid: 6837 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,-5.5 + parent: 1 + type: Transform + - uid: 6838 + components: + - pos: 38.5,-19.5 + parent: 1 + type: Transform + - uid: 6847 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,-5.5 + parent: 1 + type: Transform + - uid: 6848 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,-5.5 + parent: 1 + type: Transform + - uid: 6849 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-5.5 + parent: 1 + type: Transform + - uid: 6850 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,-7.5 + parent: 1 + type: Transform + - uid: 6851 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,-7.5 + parent: 1 + type: Transform + - uid: 6852 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-7.5 + parent: 1 + type: Transform + - uid: 6853 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,-9.5 + parent: 1 + type: Transform + - uid: 6854 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,-9.5 + parent: 1 + type: Transform + - uid: 6855 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-9.5 + parent: 1 + type: Transform + - uid: 6856 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,-11.5 + parent: 1 + type: Transform + - uid: 6857 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,-11.5 + parent: 1 + type: Transform + - uid: 6858 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-11.5 + parent: 1 + type: Transform + - uid: 6859 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,-13.5 + parent: 1 + type: Transform + - uid: 6860 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,-13.5 + parent: 1 + type: Transform + - uid: 6861 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-13.5 + parent: 1 + type: Transform + - uid: 6862 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,-15.5 + parent: 1 + type: Transform + - uid: 6863 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,-15.5 + parent: 1 + type: Transform + - uid: 6864 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-15.5 + parent: 1 + type: Transform + - uid: 6865 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,-17.5 + parent: 1 + type: Transform + - uid: 6866 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,-17.5 + parent: 1 + type: Transform + - uid: 6867 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-17.5 + parent: 1 + type: Transform + - uid: 6889 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-16.5 + parent: 1 + type: Transform + - uid: 6890 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-16.5 + parent: 1 + type: Transform + - uid: 6891 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-16.5 + parent: 1 + type: Transform + - uid: 6892 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-16.5 + parent: 1 + type: Transform + - uid: 6893 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,-16.5 + parent: 1 + type: Transform + - uid: 6894 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-14.5 + parent: 1 + type: Transform + - uid: 6895 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-14.5 + parent: 1 + type: Transform + - uid: 6896 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-14.5 + parent: 1 + type: Transform + - uid: 6897 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-14.5 + parent: 1 + type: Transform + - uid: 6898 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,-14.5 + parent: 1 + type: Transform + - uid: 6899 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-12.5 + parent: 1 + type: Transform + - uid: 6900 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-12.5 + parent: 1 + type: Transform + - uid: 6901 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-12.5 + parent: 1 + type: Transform + - uid: 6902 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-12.5 + parent: 1 + type: Transform + - uid: 6903 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,-12.5 + parent: 1 + type: Transform + - uid: 6904 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-10.5 + parent: 1 + type: Transform + - uid: 6905 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-10.5 + parent: 1 + type: Transform + - uid: 6906 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-10.5 + parent: 1 + type: Transform + - uid: 6907 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-10.5 + parent: 1 + type: Transform + - uid: 6908 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,-10.5 + parent: 1 + type: Transform + - uid: 6909 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-8.5 + parent: 1 + type: Transform + - uid: 6910 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-8.5 + parent: 1 + type: Transform + - uid: 6911 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-8.5 + parent: 1 + type: Transform + - uid: 6912 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-8.5 + parent: 1 + type: Transform + - uid: 6913 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,-8.5 + parent: 1 + type: Transform + - uid: 6914 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-6.5 + parent: 1 + type: Transform + - uid: 6915 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-6.5 + parent: 1 + type: Transform + - uid: 6916 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-6.5 + parent: 1 + type: Transform + - uid: 6917 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-6.5 + parent: 1 + type: Transform + - uid: 6918 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,-6.5 + parent: 1 + type: Transform + - uid: 6919 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-4.5 + parent: 1 + type: Transform + - uid: 6920 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-4.5 + parent: 1 + type: Transform + - uid: 6921 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-4.5 + parent: 1 + type: Transform + - uid: 6922 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-4.5 + parent: 1 + type: Transform + - uid: 6923 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,-4.5 + parent: 1 + type: Transform + - uid: 6924 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-4.5 + parent: 1 + type: Transform + - uid: 6925 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-6.5 + parent: 1 + type: Transform + - uid: 6926 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-8.5 + parent: 1 + type: Transform + - uid: 6927 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-10.5 + parent: 1 + type: Transform + - uid: 6928 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-12.5 + parent: 1 + type: Transform + - uid: 6929 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-14.5 + parent: 1 + type: Transform + - uid: 6930 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-16.5 + parent: 1 + type: Transform + - uid: 6933 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,-4.5 + parent: 1 + type: Transform + - uid: 6934 + components: + - pos: 35.5,-5.5 + parent: 1 + type: Transform + - uid: 6935 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-6.5 + parent: 1 + type: Transform + - uid: 6939 + components: + - pos: 36.5,-5.5 + parent: 1 + type: Transform + - uid: 6940 + components: + - pos: 36.5,-6.5 + parent: 1 + type: Transform + - uid: 6951 + components: + - pos: 36.5,-19.5 + parent: 1 + type: Transform + - uid: 6952 + components: + - pos: 36.5,-20.5 + parent: 1 + type: Transform + - uid: 6953 + components: + - pos: 36.5,-21.5 + parent: 1 + type: Transform + - uid: 6954 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-18.5 + parent: 1 + type: Transform + - uid: 6955 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-21.5 + parent: 1 + type: Transform + - uid: 6956 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-20.5 + parent: 1 + type: Transform + - uid: 6957 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-19.5 + parent: 1 + type: Transform + - uid: 6960 + components: + - rot: 3.141592653589793 rad + pos: 37.5,-15.5 + parent: 1 + type: Transform + - uid: 6961 + components: + - rot: 3.141592653589793 rad + pos: 37.5,-13.5 + parent: 1 + type: Transform + - uid: 6962 + components: + - rot: 3.141592653589793 rad + pos: 37.5,-11.5 + parent: 1 + type: Transform + - uid: 6963 + components: + - rot: 3.141592653589793 rad + pos: 37.5,-9.5 + parent: 1 + type: Transform + - uid: 6965 + components: + - rot: 3.141592653589793 rad + pos: 35.5,-8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6966 + components: + - rot: 3.141592653589793 rad + pos: 35.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6981 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,-18.5 + parent: 1 + type: Transform + - uid: 6991 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-3.5 + parent: 1 + type: Transform + - uid: 8768 + components: + - pos: -16.5,-48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8769 + components: + - pos: -16.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8770 + components: + - pos: -16.5,-27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8771 + components: + - pos: -16.5,-28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8772 + components: + - pos: -16.5,-29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8773 + components: + - pos: -16.5,-30.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8774 + components: + - pos: -16.5,-31.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8775 + components: + - pos: -16.5,-32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8776 + components: + - pos: -16.5,-33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8777 + components: + - pos: -16.5,-34.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8778 + components: + - pos: -16.5,-35.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8779 + components: + - pos: -16.5,-36.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8780 + components: + - pos: -16.5,-37.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8781 + components: + - pos: -16.5,-38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8782 + components: + - pos: -16.5,-39.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8783 + components: + - pos: -16.5,-40.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8784 + components: + - pos: -16.5,-41.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8785 + components: + - pos: -16.5,-42.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8786 + components: + - pos: -16.5,-43.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8787 + components: + - pos: -16.5,-44.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8788 + components: + - pos: -16.5,-45.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8789 + components: + - pos: -16.5,-46.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8790 + components: + - pos: -16.5,-47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8791 + components: + - pos: -15.5,-47.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8792 + components: + - pos: -15.5,-48.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8793 + components: + - pos: -14.5,-45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8794 + components: + - pos: -14.5,-45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10091 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10092 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10093 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10094 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10095 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10096 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10097 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10098 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10099 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10100 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10105 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10106 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10107 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10108 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10109 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10110 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10111 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10118 + components: + - pos: 7.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10119 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10120 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10121 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10122 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10123 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10124 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10125 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10126 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10127 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10128 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10129 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10130 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10131 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10132 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10133 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10134 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10135 + components: + - pos: 16.5,-11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10136 + components: + - pos: 16.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10137 + components: + - pos: 18.5,-12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10146 + components: + - pos: 23.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10147 + components: + - pos: 22.5,-9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10148 + components: + - pos: 23.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10150 + components: + - pos: 23.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10151 + components: + - pos: 23.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10152 + components: + - pos: 23.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10154 + components: + - pos: 22.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10155 + components: + - pos: 22.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10156 + components: + - pos: 22.5,-5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10157 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10158 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10168 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10169 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10170 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10171 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10172 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10173 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10174 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10175 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10176 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10177 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10178 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10179 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10180 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10181 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10182 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10183 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10184 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10185 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10187 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10188 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10189 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10191 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10193 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10195 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10207 + components: + - pos: 9.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10208 + components: + - pos: 9.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10209 + components: + - pos: 7.5,-5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10211 + components: + - pos: 7.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10212 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10213 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10214 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10215 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10216 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10221 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10222 + components: + - rot: 3.141592653589793 rad + pos: 9.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10223 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10224 + components: + - rot: 3.141592653589793 rad + pos: 7.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10228 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10229 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10231 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10232 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10233 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10234 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10235 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10238 + components: + - pos: 9.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10239 + components: + - pos: 9.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10240 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10241 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10242 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10243 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10244 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10245 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10249 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10250 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10251 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10252 + components: + - pos: 7.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10253 + components: + - pos: 9.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10256 + components: + - rot: 3.141592653589793 rad + pos: 7.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10257 + components: + - rot: 3.141592653589793 rad + pos: 7.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10258 + components: + - rot: 3.141592653589793 rad + pos: 7.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10259 + components: + - rot: 3.141592653589793 rad + pos: 9.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10260 + components: + - rot: 3.141592653589793 rad + pos: 9.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10261 + components: + - rot: 3.141592653589793 rad + pos: 9.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10262 + components: + - rot: 3.141592653589793 rad + pos: 7.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10263 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10264 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10266 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10267 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10268 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10269 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10278 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10280 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10281 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10282 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10283 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10284 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10285 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10286 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10287 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10288 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10289 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10290 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10291 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10292 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10293 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10294 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10295 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10296 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10297 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10298 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10299 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10300 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10301 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10302 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10303 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10304 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10305 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10306 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10307 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10308 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10309 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10311 + components: + - pos: 30.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10312 + components: + - pos: 30.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10313 + components: + - pos: 30.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10314 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10315 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10316 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10317 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10318 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10319 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10320 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10321 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10324 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10325 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10326 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10327 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10328 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10329 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10330 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10331 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10332 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10333 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10334 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10335 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10336 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10337 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10338 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10339 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10340 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10341 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10342 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10343 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10344 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10345 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10346 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10347 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10348 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10349 + components: + - pos: 46.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10350 + components: + - pos: 46.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10351 + components: + - pos: 46.5,4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10352 + components: + - pos: 44.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10357 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10366 + components: + - pos: 46.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10367 + components: + - pos: 46.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10368 + components: + - pos: 46.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10369 + components: + - pos: 46.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10370 + components: + - pos: 46.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10371 + components: + - pos: 46.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10372 + components: + - pos: 46.5,12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10373 + components: + - pos: 46.5,13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10374 + components: + - pos: 46.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10375 + components: + - pos: 46.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10376 + components: + - pos: 46.5,16.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10377 + components: + - pos: 44.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10378 + components: + - pos: 44.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10379 + components: + - pos: 44.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10380 + components: + - pos: 44.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10381 + components: + - pos: 44.5,11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10382 + components: + - pos: 44.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10383 + components: + - pos: 44.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10384 + components: + - pos: 44.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10385 + components: + - pos: 44.5,15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10392 + components: + - pos: 44.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10393 + components: + - pos: 46.5,18.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10394 + components: + - pos: 46.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10395 + components: + - pos: 46.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10396 + components: + - pos: 46.5,21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10397 + components: + - pos: 44.5,17.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10398 + components: + - pos: 44.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10399 + components: + - pos: 44.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10400 + components: + - pos: 44.5,20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10404 + components: + - rot: 3.141592653589793 rad + pos: 44.5,22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10405 + components: + - rot: 3.141592653589793 rad + pos: 44.5,23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10406 + components: + - rot: 3.141592653589793 rad + pos: 44.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10407 + components: + - rot: 3.141592653589793 rad + pos: 45.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10409 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10410 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10411 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10412 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10415 + components: + - pos: 44.5,26.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10416 + components: + - rot: 3.141592653589793 rad + pos: 43.5,27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10417 + components: + - rot: 3.141592653589793 rad + pos: 42.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10418 + components: + - rot: 3.141592653589793 rad + pos: 42.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10420 + components: + - rot: 3.141592653589793 rad + pos: 43.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10421 + components: + - rot: 3.141592653589793 rad + pos: 45.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10422 + components: + - rot: 3.141592653589793 rad + pos: 43.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10423 + components: + - pos: 7.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10424 + components: + - pos: 7.5,12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10426 + components: + - rot: 3.141592653589793 rad + pos: 44.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10427 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10429 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10430 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10434 + components: + - pos: 43.5,30.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10435 + components: + - pos: 43.5,31.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10438 + components: + - pos: 43.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10439 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,34.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10441 + components: + - pos: 9.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10443 + components: + - pos: 9.5,11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10444 + components: + - rot: 3.141592653589793 rad + pos: 42.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10445 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,33.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10446 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,33.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10452 + components: + - pos: 9.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10455 + components: + - rot: 3.141592653589793 rad + pos: 9.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10460 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10461 + components: + - rot: 3.141592653589793 rad + pos: 7.5,13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10462 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10463 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10464 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10465 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10466 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10469 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10470 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10471 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10472 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10473 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10476 + components: + - rot: 3.141592653589793 rad + pos: 12.5,13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10477 + components: + - rot: 3.141592653589793 rad + pos: 12.5,12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10478 + components: + - rot: 3.141592653589793 rad + pos: 12.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10480 + components: + - rot: 3.141592653589793 rad + pos: 11.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10481 + components: + - rot: 3.141592653589793 rad + pos: 11.5,11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10482 + components: + - rot: 3.141592653589793 rad + pos: 11.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10483 + components: + - rot: 3.141592653589793 rad + pos: 11.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10485 + components: + - pos: 12.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10486 + components: + - pos: 12.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10487 + components: + - pos: 12.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10488 + components: + - pos: 11.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10489 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10490 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10491 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10496 + components: + - pos: 14.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10497 + components: + - pos: 15.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10498 + components: + - pos: 15.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10499 + components: + - pos: 15.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10500 + components: + - pos: 17.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10501 + components: + - pos: 18.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10502 + components: + - pos: 18.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10503 + components: + - pos: 18.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10504 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10505 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10506 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10508 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10515 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10516 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10517 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10521 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10522 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10523 + components: + - rot: 3.141592653589793 rad + pos: 21.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10524 + components: + - rot: 3.141592653589793 rad + pos: 21.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10525 + components: + - rot: 3.141592653589793 rad + pos: 21.5,11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10526 + components: + - rot: 3.141592653589793 rad + pos: 21.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10527 + components: + - rot: 3.141592653589793 rad + pos: 20.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10528 + components: + - rot: 3.141592653589793 rad + pos: 20.5,12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10529 + components: + - rot: 3.141592653589793 rad + pos: 22.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10530 + components: + - rot: 3.141592653589793 rad + pos: 22.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10531 + components: + - rot: 3.141592653589793 rad + pos: 22.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10532 + components: + - rot: 3.141592653589793 rad + pos: 21.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10533 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10534 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10535 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10536 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10537 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10538 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10539 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10540 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10541 + components: + - pos: 26.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10542 + components: + - pos: 26.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10545 + components: + - pos: 26.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10546 + components: + - pos: 27.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10553 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10554 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10555 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10557 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10558 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10559 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10560 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10563 + components: + - rot: 3.141592653589793 rad + pos: 31.5,12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10564 + components: + - rot: 3.141592653589793 rad + pos: 31.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10565 + components: + - rot: 3.141592653589793 rad + pos: 31.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10566 + components: + - rot: 3.141592653589793 rad + pos: 31.5,16.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10567 + components: + - rot: 3.141592653589793 rad + pos: 33.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10568 + components: + - rot: 3.141592653589793 rad + pos: 33.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10569 + components: + - rot: 3.141592653589793 rad + pos: 33.5,11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10570 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10571 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10572 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10573 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10574 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10577 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10578 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10579 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10583 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10584 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10585 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10586 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10587 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10588 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10589 + components: + - rot: 3.141592653589793 rad + pos: 33.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10590 + components: + - rot: 3.141592653589793 rad + pos: 33.5,15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10591 + components: + - rot: 3.141592653589793 rad + pos: 33.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10592 + components: + - rot: 3.141592653589793 rad + pos: 33.5,17.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10593 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10594 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10595 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10596 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10597 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10598 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10608 + components: + - rot: 3.141592653589793 rad + pos: 32.5,18.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10609 + components: + - rot: 3.141592653589793 rad + pos: 32.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10610 + components: + - rot: 3.141592653589793 rad + pos: 32.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10611 + components: + - rot: 3.141592653589793 rad + pos: 32.5,21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10612 + components: + - rot: 3.141592653589793 rad + pos: 32.5,22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10613 + components: + - rot: 3.141592653589793 rad + pos: 32.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10614 + components: + - rot: 3.141592653589793 rad + pos: 32.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10616 + components: + - rot: 3.141592653589793 rad + pos: 33.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10617 + components: + - rot: 3.141592653589793 rad + pos: 33.5,20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10618 + components: + - rot: 3.141592653589793 rad + pos: 33.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10619 + components: + - rot: 3.141592653589793 rad + pos: 33.5,22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10620 + components: + - rot: 3.141592653589793 rad + pos: 33.5,23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10621 + components: + - rot: 3.141592653589793 rad + pos: 33.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10622 + components: + - rot: 3.141592653589793 rad + pos: 33.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10625 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10626 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10627 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10628 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10629 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10630 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10631 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10632 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10633 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10634 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10635 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10636 + components: + - pos: 32.5,26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10638 + components: + - rot: 3.141592653589793 rad + pos: 28.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10644 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10645 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10648 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10649 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10650 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10652 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10653 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10655 + components: + - pos: 30.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10656 + components: + - pos: 28.5,26.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10657 + components: + - pos: 28.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10666 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10667 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10670 + components: + - pos: 5.5,17.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10671 + components: + - pos: 5.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10672 + components: + - pos: 5.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10673 + components: + - pos: 5.5,20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10674 + components: + - pos: 5.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10676 + components: + - pos: 4.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10677 + components: + - pos: 4.5,16.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10678 + components: + - pos: 4.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10679 + components: + - pos: 4.5,18.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10680 + components: + - pos: 4.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10681 + components: + - pos: 4.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10685 + components: + - rot: 3.141592653589793 rad + pos: 5.5,23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10689 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10690 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10691 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10692 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10693 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10694 + components: + - pos: 0.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10695 + components: + - pos: 3.5,22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10701 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10702 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10703 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10704 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10705 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10708 + components: + - pos: 1.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10709 + components: + - pos: 1.5,26.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10710 + components: + - pos: 0.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10711 + components: + - pos: 0.5,26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10712 + components: + - pos: 0.5,27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10715 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10716 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10718 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10721 + components: + - pos: 4.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10722 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10723 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10730 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10731 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10732 + components: + - rot: 3.141592653589793 rad + pos: 1.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10733 + components: + - rot: 3.141592653589793 rad + pos: 1.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10735 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10737 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10740 + components: + - rot: 3.141592653589793 rad + pos: -2.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10741 + components: + - rot: 3.141592653589793 rad + pos: -2.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10742 + components: + - rot: 3.141592653589793 rad + pos: -2.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10743 + components: + - rot: 3.141592653589793 rad + pos: -2.5,26.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10744 + components: + - rot: 3.141592653589793 rad + pos: -2.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10745 + components: + - rot: 3.141592653589793 rad + pos: -3.5,27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10746 + components: + - rot: 3.141592653589793 rad + pos: -3.5,26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10747 + components: + - rot: 3.141592653589793 rad + pos: -3.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10754 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10755 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10756 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10757 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10759 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10760 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10761 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10766 + components: + - rot: 3.141592653589793 rad + pos: 4.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10767 + components: + - rot: 3.141592653589793 rad + pos: 4.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10768 + components: + - rot: 3.141592653589793 rad + pos: 4.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10769 + components: + - rot: 3.141592653589793 rad + pos: 4.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10770 + components: + - rot: 3.141592653589793 rad + pos: 4.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10771 + components: + - rot: 3.141592653589793 rad + pos: 4.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10774 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10775 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10776 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10777 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10779 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10780 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10781 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10782 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10783 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10787 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10788 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10789 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10790 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10791 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10792 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10793 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10795 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10796 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10797 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10798 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10799 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10804 + components: + - rot: 3.141592653589793 rad + pos: 0.5,17.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10805 + components: + - rot: 3.141592653589793 rad + pos: 0.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10807 + components: + - rot: 3.141592653589793 rad + pos: 0.5,20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10808 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10809 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10810 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10811 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10816 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10817 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10818 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10819 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10822 + components: + - pos: -4.5,13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10823 + components: + - pos: -6.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10824 + components: + - pos: -6.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10825 + components: + - pos: -4.5,12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10826 + components: + - pos: -4.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10827 + components: + - pos: -6.5,11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10830 + components: + - rot: 3.141592653589793 rad + pos: -4.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10831 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10832 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10833 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10834 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10835 + components: + - pos: -6.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10838 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10839 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10840 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10841 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10848 + components: + - rot: 3.141592653589793 rad + pos: -12.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10849 + components: + - rot: 3.141592653589793 rad + pos: -12.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10850 + components: + - rot: 3.141592653589793 rad + pos: -12.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10851 + components: + - rot: 3.141592653589793 rad + pos: -12.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10852 + components: + - rot: 3.141592653589793 rad + pos: -11.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10853 + components: + - rot: 3.141592653589793 rad + pos: -11.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10856 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10857 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10858 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10859 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10860 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10861 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10862 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10865 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10866 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10867 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10868 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10869 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10870 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10871 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10873 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10874 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10881 + components: + - rot: 3.141592653589793 rad + pos: -14.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10882 + components: + - rot: 3.141592653589793 rad + pos: -14.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10883 + components: + - rot: 3.141592653589793 rad + pos: -15.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10884 + components: + - rot: 3.141592653589793 rad + pos: -15.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10885 + components: + - rot: 3.141592653589793 rad + pos: -15.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10886 + components: + - rot: 3.141592653589793 rad + pos: -20.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10887 + components: + - rot: 3.141592653589793 rad + pos: -20.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10888 + components: + - rot: 3.141592653589793 rad + pos: -21.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10889 + components: + - rot: 3.141592653589793 rad + pos: -21.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10890 + components: + - rot: 3.141592653589793 rad + pos: -21.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10891 + components: + - rot: 3.141592653589793 rad + pos: -16.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10892 + components: + - rot: 3.141592653589793 rad + pos: -16.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10893 + components: + - rot: 3.141592653589793 rad + pos: -16.5,12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10894 + components: + - rot: 3.141592653589793 rad + pos: -15.5,11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10895 + components: + - rot: 3.141592653589793 rad + pos: -15.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10896 + components: + - rot: 3.141592653589793 rad + pos: -12.5,11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10897 + components: + - rot: 3.141592653589793 rad + pos: -12.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10898 + components: + - rot: 3.141592653589793 rad + pos: -12.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10904 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10909 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10910 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10911 + components: + - pos: -23.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10912 + components: + - pos: -23.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10913 + components: + - pos: -23.5,12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10914 + components: + - pos: -24.5,11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10915 + components: + - pos: -24.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10916 + components: + - pos: -25.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10917 + components: + - pos: -25.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10918 + components: + - pos: -24.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10919 + components: + - pos: -25.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10920 + components: + - pos: -24.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10927 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10928 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10929 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10930 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10931 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10932 + components: + - rot: 3.141592653589793 rad + pos: -16.5,13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10933 + components: + - rot: 3.141592653589793 rad + pos: -16.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10934 + components: + - rot: 3.141592653589793 rad + pos: -15.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10935 + components: + - rot: 3.141592653589793 rad + pos: -15.5,15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10936 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10937 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10938 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10939 + components: + - pos: -15.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10940 + components: + - pos: -16.5,16.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10941 + components: + - pos: -16.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10942 + components: + - pos: -15.5,17.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10950 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10951 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10952 + components: + - pos: -15.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10953 + components: + - pos: -15.5,20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10956 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10957 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10958 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10959 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10960 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10961 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10962 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10963 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10964 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10965 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10966 + components: + - pos: -16.5,18.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10973 + components: + - pos: -4.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10974 + components: + - pos: -4.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10975 + components: + - pos: -4.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10976 + components: + - pos: -4.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10977 + components: + - pos: -6.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10978 + components: + - pos: -6.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10979 + components: + - pos: -6.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10980 + components: + - pos: -6.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10985 + components: + - rot: 3.141592653589793 rad + pos: -4.5,4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10986 + components: + - rot: 3.141592653589793 rad + pos: -4.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10987 + components: + - rot: 3.141592653589793 rad + pos: -4.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10988 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10989 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10990 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10991 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10993 + components: + - pos: -6.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10996 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10997 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10998 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10999 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11000 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11001 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11002 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11003 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11004 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11005 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11006 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11007 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11008 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11009 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11010 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11011 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11012 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11013 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11014 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11015 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11016 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11017 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11018 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11019 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11020 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11021 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11022 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11023 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11024 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11025 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11026 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11027 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11028 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11029 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11030 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11031 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11032 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11033 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11034 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11035 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11036 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11037 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11038 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11039 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11040 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11041 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11043 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11044 + components: + - pos: -33.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11049 + components: + - pos: -33.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11052 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11053 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11060 + components: + - pos: -35.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11061 + components: + - pos: -35.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11062 + components: + - pos: -35.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11063 + components: + - pos: -33.5,4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11064 + components: + - pos: -33.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11065 + components: + - pos: -33.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11068 + components: + - pos: -35.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11069 + components: + - pos: -35.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11073 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11074 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11075 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11076 + components: + - pos: -33.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11077 + components: + - pos: -33.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11080 + components: + - rot: 3.141592653589793 rad + pos: -32.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11081 + components: + - rot: 3.141592653589793 rad + pos: -32.5,12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11086 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11087 + components: + - rot: 3.141592653589793 rad + pos: -37.5,11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11088 + components: + - rot: 3.141592653589793 rad + pos: -37.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11089 + components: + - pos: -36.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11090 + components: + - pos: -36.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11092 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11093 + components: + - rot: 3.141592653589793 rad + pos: -36.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11095 + components: + - rot: 3.141592653589793 rad + pos: -37.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11096 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11097 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11098 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11099 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11100 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11101 + components: + - pos: -41.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11102 + components: + - pos: -41.5,4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11103 + components: + - pos: -41.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11104 + components: + - pos: -41.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11105 + components: + - pos: -41.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11106 + components: + - pos: -41.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11107 + components: + - pos: -41.5,12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11108 + components: + - pos: -41.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11111 + components: + - rot: 3.141592653589793 rad + pos: -40.5,16.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11112 + components: + - rot: 3.141592653589793 rad + pos: -40.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11113 + components: + - rot: 3.141592653589793 rad + pos: -40.5,18.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11114 + components: + - rot: 3.141592653589793 rad + pos: -40.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11125 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11126 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11127 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11128 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11132 + components: + - rot: 3.141592653589793 rad + pos: -39.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11133 + components: + - rot: 3.141592653589793 rad + pos: -39.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11134 + components: + - rot: 3.141592653589793 rad + pos: -39.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11135 + components: + - rot: 3.141592653589793 rad + pos: -39.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11136 + components: + - rot: 3.141592653589793 rad + pos: -39.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11137 + components: + - rot: 3.141592653589793 rad + pos: -39.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11138 + components: + - rot: 3.141592653589793 rad + pos: -39.5,11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11139 + components: + - rot: 3.141592653589793 rad + pos: -39.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11141 + components: + - rot: 3.141592653589793 rad + pos: -39.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11142 + components: + - rot: 3.141592653589793 rad + pos: -39.5,15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11143 + components: + - rot: 3.141592653589793 rad + pos: -39.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11144 + components: + - rot: 3.141592653589793 rad + pos: -39.5,17.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11145 + components: + - rot: 3.141592653589793 rad + pos: -39.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11146 + components: + - rot: 3.141592653589793 rad + pos: -39.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11152 + components: + - rot: 3.141592653589793 rad + pos: -37.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11153 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11154 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11155 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11156 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11157 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11158 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11159 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11160 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11165 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11166 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11167 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11168 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11169 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11170 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11171 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11172 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11173 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11177 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11178 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11179 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11180 + components: + - rot: 3.141592653589793 rad + pos: -4.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11181 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11182 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11183 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11184 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11185 + components: + - rot: 3.141592653589793 rad + pos: -6.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11186 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11187 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11188 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11189 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11193 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11196 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11200 + components: + - pos: -8.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11201 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11202 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11203 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11204 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11205 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11206 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11207 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11208 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11209 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11212 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11213 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11214 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11215 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11216 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11217 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11218 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11219 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11220 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11221 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11222 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11223 + components: + - pos: -6.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11224 + components: + - pos: -6.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11225 + components: + - pos: -6.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11229 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11231 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11232 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11235 + components: + - pos: -9.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11236 + components: + - pos: -9.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11237 + components: + - pos: -9.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11238 + components: + - pos: -8.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11239 + components: + - pos: -8.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11240 + components: + - pos: -8.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11243 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11244 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11245 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11246 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11247 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11248 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11249 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11250 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11251 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11252 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11253 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11257 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11258 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11262 + components: + - pos: -15.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11263 + components: + - pos: -15.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11264 + components: + - pos: -15.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11265 + components: + - pos: -15.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11266 + components: + - pos: -15.5,-10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11267 + components: + - pos: -15.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11268 + components: + - pos: -15.5,-12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11269 + components: + - pos: -16.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11270 + components: + - pos: -16.5,-8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11271 + components: + - pos: -16.5,-9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11272 + components: + - pos: -16.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11273 + components: + - pos: -16.5,-11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11274 + components: + - pos: -16.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11277 + components: + - pos: -16.5,-14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11278 + components: + - pos: -16.5,-15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11279 + components: + - pos: -16.5,-16.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11280 + components: + - pos: -15.5,-14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11281 + components: + - pos: -15.5,-15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11282 + components: + - pos: -15.5,-16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11288 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11289 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11290 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11291 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11292 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11293 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11294 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11295 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11296 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11297 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11298 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11299 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11300 + components: + - pos: -26.5,-5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11301 + components: + - pos: -26.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11302 + components: + - pos: -26.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11303 + components: + - pos: -26.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11304 + components: + - pos: -24.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11305 + components: + - pos: -24.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11306 + components: + - pos: -24.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11309 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11310 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11311 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11312 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11313 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11314 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11315 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11316 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11317 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11324 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11325 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11326 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11327 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11328 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11329 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11333 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11334 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11335 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11336 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11338 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11339 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11340 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11341 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11342 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11345 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11346 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11348 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11349 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11350 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11351 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11352 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11353 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11354 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11356 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11357 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11358 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11359 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11360 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11361 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11362 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11363 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11364 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11365 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11368 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11369 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11370 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11371 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11372 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11373 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11374 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11375 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11376 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11377 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11378 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-16.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11379 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11380 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-18.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11381 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11382 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11383 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-17.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11384 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11385 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11386 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11393 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11394 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11395 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11396 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11397 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11398 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11399 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11400 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11401 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11404 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11405 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-26.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11406 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11407 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11412 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11413 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11414 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11415 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11417 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11418 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11419 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11421 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11423 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11424 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11425 + components: + - pos: -14.5,-44.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11426 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11427 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11428 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11429 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11430 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11431 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11432 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11434 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11435 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11436 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11437 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11438 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11447 + components: + - pos: -10.5,-25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11448 + components: + - pos: -10.5,-26.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11449 + components: + - pos: -10.5,-27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11450 + components: + - pos: -14.5,-43.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11451 + components: + - pos: -11.5,-27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11452 + components: + - pos: -11.5,-28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11453 + components: + - pos: -6.5,-27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11454 + components: + - pos: -6.5,-28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11455 + components: + - pos: -5.5,-25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11456 + components: + - pos: -5.5,-26.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11457 + components: + - pos: -5.5,-27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11458 + components: + - pos: -5.5,-28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11459 + components: + - pos: -2.5,-27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11460 + components: + - pos: -2.5,-28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11461 + components: + - pos: -1.5,-25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11462 + components: + - pos: -1.5,-26.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11463 + components: + - pos: -1.5,-27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11464 + components: + - pos: -1.5,-28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11465 + components: + - pos: -3.5,-25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11466 + components: + - pos: -3.5,-24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11467 + components: + - pos: -3.5,-23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11468 + components: + - pos: -3.5,-22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11469 + components: + - pos: -2.5,-23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11470 + components: + - pos: -2.5,-22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11487 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11488 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11489 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11490 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11491 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11492 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11493 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-31.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11494 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11495 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11496 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11497 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11498 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11499 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11500 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11501 + components: + - pos: -3.5,-32.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11502 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11503 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11504 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11505 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11506 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11515 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11517 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11518 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11519 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11520 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11521 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11523 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11524 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11525 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11534 + components: + - pos: 4.5,-20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11535 + components: + - pos: 5.5,-18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11540 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11541 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11542 + components: + - pos: 9.5,-18.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11545 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11546 + components: + - pos: 10.5,-23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11547 + components: + - pos: 10.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11548 + components: + - pos: 10.5,-25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11549 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11550 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11551 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11556 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11557 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11558 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11559 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11560 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11561 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11562 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11563 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11564 + components: + - pos: 15.5,-25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11565 + components: + - pos: 15.5,-24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11566 + components: + - pos: 15.5,-23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11567 + components: + - pos: 15.5,-22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11569 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11570 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11571 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11572 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11573 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11574 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11575 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11576 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11577 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11578 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11579 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11580 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11581 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11582 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11583 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11584 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11585 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11586 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11644 + components: + - rot: 3.141592653589793 rad + pos: -18.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12127 + components: + - pos: -14.5,-42.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12128 + components: + - pos: -14.5,-41.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12129 + components: + - pos: -14.5,-40.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12130 + components: + - pos: -14.5,-39.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12131 + components: + - pos: -14.5,-38.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12132 + components: + - pos: -14.5,-37.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12133 + components: + - pos: -14.5,-36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12134 + components: + - pos: -14.5,-35.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12135 + components: + - pos: -13.5,-33.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12136 + components: + - pos: -13.5,-32.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12137 + components: + - pos: -13.5,-31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12138 + components: + - pos: -13.5,-30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12139 + components: + - pos: -13.5,-29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12140 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12141 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12150 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12151 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12154 + components: + - rot: 3.141592653589793 rad + pos: -10.5,32.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12155 + components: + - rot: 3.141592653589793 rad + pos: 0.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12156 + components: + - rot: 3.141592653589793 rad + pos: 0.5,30.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12157 + components: + - rot: 3.141592653589793 rad + pos: 0.5,31.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12158 + components: + - rot: 3.141592653589793 rad + pos: 0.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12159 + components: + - rot: 3.141592653589793 rad + pos: 0.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12176 + components: + - rot: 3.141592653589793 rad + pos: -10.5,33.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12178 + components: + - pos: -9.5,35.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12179 + components: + - pos: -9.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12180 + components: + - pos: -10.5,38.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12181 + components: + - rot: 3.141592653589793 rad + pos: -8.5,41.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12182 + components: + - rot: 3.141592653589793 rad + pos: -6.5,42.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12183 + components: + - rot: 3.141592653589793 rad + pos: -6.5,43.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12184 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,41.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12185 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,41.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12186 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,41.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12187 + components: + - pos: -2.5,40.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12188 + components: + - pos: -1.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12189 + components: + - pos: -0.5,36.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12190 + components: + - pos: 0.5,34.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12191 + components: + - pos: -9.5,43.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12192 + components: + - pos: -9.5,44.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12193 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12194 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12195 + components: + - rot: 3.141592653589793 rad + pos: -6.5,45.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12200 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12201 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12202 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12203 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,44.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12204 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,44.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12205 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,44.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12206 + components: + - pos: -6.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12208 + components: + - pos: -7.5,46.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12209 + components: + - pos: -7.5,47.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12210 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12211 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12212 + components: + - rot: 3.141592653589793 rad + pos: -7.5,48.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12214 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12215 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12216 + components: + - rot: 3.141592653589793 rad + pos: -8.5,50.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12217 + components: + - rot: 3.141592653589793 rad + pos: -8.5,51.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12218 + components: + - rot: 3.141592653589793 rad + pos: -4.5,50.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12220 + components: + - pos: -4.5,52.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12223 + components: + - rot: 3.141592653589793 rad + pos: -8.5,52.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12224 + components: + - rot: 3.141592653589793 rad + pos: -8.5,54.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12225 + components: + - rot: 3.141592653589793 rad + pos: -4.5,54.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12226 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,55.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12227 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,55.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12228 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,55.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12233 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,49.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12234 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,49.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12235 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12236 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12237 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12238 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12239 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12250 + components: + - pos: -2.5,53.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12251 + components: + - pos: -2.5,54.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12252 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,56.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12253 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,56.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12254 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,56.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12255 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,56.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12256 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,56.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12257 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,56.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12258 + components: + - rot: 3.141592653589793 rad + pos: -10.5,54.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12259 + components: + - rot: 3.141592653589793 rad + pos: -10.5,53.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12260 + components: + - rot: 3.141592653589793 rad + pos: -10.5,51.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12261 + components: + - rot: 3.141592653589793 rad + pos: -10.5,50.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12266 + components: + - pos: -2.5,50.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12267 + components: + - pos: -2.5,51.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12273 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,52.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12274 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,52.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12275 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,52.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 6820 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,-3.5 + parent: 1 + type: Transform + - uid: 6830 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-18.5 + parent: 1 + type: Transform + - uid: 6937 + components: + - pos: 36.5,-4.5 + parent: 1 + type: Transform + - uid: 6938 + components: + - pos: 37.5,-6.5 + parent: 1 + type: Transform + - uid: 6974 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-16.5 + parent: 1 + type: Transform + - uid: 6975 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-15.5 + parent: 1 + type: Transform + - uid: 6983 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-14.5 + parent: 1 + type: Transform + - uid: 7022 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8765 + components: + - pos: -16.5,-25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8766 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 9158 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10101 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10102 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10103 + components: + - pos: 26.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10104 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10138 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10139 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10140 + components: + - pos: 18.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10141 + components: + - pos: 16.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10149 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10153 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10194 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10198 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10199 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10200 + components: + - pos: 11.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10202 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10205 + components: + - pos: 10.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10206 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10210 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10217 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10218 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10225 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10226 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10227 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10230 + components: + - pos: 3.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10254 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10255 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10265 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10270 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10271 + components: + - pos: 16.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10272 + components: + - rot: 3.141592653589793 rad + pos: 17.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10277 + components: + - rot: 3.141592653589793 rad + pos: 29.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10279 + components: + - pos: 30.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10310 + components: + - pos: 31.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10355 + components: + - rot: 3.141592653589793 rad + pos: 40.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10356 + components: + - pos: 41.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10364 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10365 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10386 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10387 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10402 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10403 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10428 + components: + - rot: 3.141592653589793 rad + pos: 43.5,26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10431 + components: + - rot: 3.141592653589793 rad + pos: 42.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10436 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10447 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,32.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10453 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10459 + components: + - pos: 6.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10467 + components: + - pos: 12.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10468 + components: + - pos: 11.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10479 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10484 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10492 + components: + - pos: 14.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10493 + components: + - pos: 15.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10494 + components: + - rot: 3.141592653589793 rad + pos: 17.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10495 + components: + - pos: 18.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10507 + components: + - pos: 16.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10518 + components: + - rot: 3.141592653589793 rad + pos: 20.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10520 + components: + - pos: 22.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10543 + components: + - pos: 26.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10544 + components: + - pos: 27.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10556 + components: + - rot: 3.141592653589793 rad + pos: 31.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10561 + components: + - pos: 30.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10562 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10576 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10581 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10582 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10605 + components: + - pos: 31.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10606 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10615 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10623 + components: + - rot: 3.141592653589793 rad + pos: 29.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10651 + components: + - pos: 28.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10654 + components: + - pos: 30.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10668 + components: + - rot: 3.141592653589793 rad + pos: 4.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10669 + components: + - rot: 3.141592653589793 rad + pos: 5.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10675 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10683 + components: + - rot: 3.141592653589793 rad + pos: 3.5,21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10684 + components: + - pos: 3.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10698 + components: + - rot: 3.141592653589793 rad + pos: -0.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10713 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10714 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10720 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10729 + components: + - rot: 3.141592653589793 rad + pos: -1.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10736 + components: + - pos: -0.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10738 + components: + - pos: -2.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10739 + components: + - pos: -3.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10758 + components: + - rot: 3.141592653589793 rad + pos: -7.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10764 + components: + - pos: 4.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10765 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10784 + components: + - pos: 0.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10794 + components: + - rot: 3.141592653589793 rad + pos: 0.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10803 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10806 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10815 + components: + - rot: 3.141592653589793 rad + pos: -3.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10828 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10829 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10836 + components: + - pos: -8.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10837 + components: + - rot: 3.141592653589793 rad + pos: -8.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10845 + components: + - pos: -11.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10863 + components: + - rot: 3.141592653589793 rad + pos: -16.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10864 + components: + - pos: -17.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10872 + components: + - pos: -18.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10875 + components: + - pos: -14.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10876 + components: + - pos: -20.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10878 + components: + - pos: -21.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10905 + components: + - rot: 3.141592653589793 rad + pos: -23.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10908 + components: + - rot: 3.141592653589793 rad + pos: -24.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10925 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10946 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10947 + components: + - rot: 3.141592653589793 rad + pos: -13.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10948 + components: + - pos: -14.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10949 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10981 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10982 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10983 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10984 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10992 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11045 + components: + - rot: 3.141592653589793 rad + pos: -23.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11046 + components: + - rot: 3.141592653589793 rad + pos: -12.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11047 + components: + - pos: -13.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11048 + components: + - pos: -24.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11050 + components: + - rot: 3.141592653589793 rad + pos: -34.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11056 + components: + - rot: 3.141592653589793 rad + pos: -33.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11066 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11067 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11091 + components: + - pos: -37.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11094 + components: + - pos: -36.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11110 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11115 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11116 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11117 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11118 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11119 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11131 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11140 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11161 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11164 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11190 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11192 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11194 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11198 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11199 + components: + - pos: -7.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11254 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11255 + components: + - pos: -16.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11259 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11275 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11276 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11287 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11307 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11308 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11343 + components: + - pos: 0.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11344 + components: + - pos: 2.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11347 + components: + - pos: 4.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11355 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11387 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11388 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11389 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11390 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11391 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11392 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11402 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11403 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11416 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11433 + components: + - pos: -8.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11439 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11440 + components: + - pos: -1.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11441 + components: + - pos: -2.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11442 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11443 + components: + - pos: -5.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11444 + components: + - pos: -6.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11445 + components: + - pos: -10.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11446 + components: + - pos: -11.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11485 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11486 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-30.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11513 + components: + - pos: -3.5,-31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11514 + components: + - pos: -2.5,-32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11516 + components: + - pos: 5.5,-20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11528 + components: + - pos: 9.5,-21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11529 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11531 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11543 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11553 + components: + - pos: 15.5,-21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11554 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11568 + components: + - pos: 14.5,-22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12197 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,44.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12198 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,46.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12207 + components: + - pos: -6.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12213 + components: + - pos: -7.5,49.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12219 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,51.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12221 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12222 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12248 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,52.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 1836 + components: + - pos: 10.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3835 + components: + - pos: 11.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6101 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-12.5 + parent: 1 + type: Transform + - uid: 6102 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-14.5 + parent: 1 + type: Transform + - uid: 6109 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-8.5 + parent: 1 + type: Transform + - uid: 6110 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-10.5 + parent: 1 + type: Transform + - uid: 6984 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-15.5 + parent: 1 + type: Transform + - uid: 6985 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-14.5 + parent: 1 + type: Transform + - uid: 6986 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-13.5 + parent: 1 + type: Transform + - uid: 7199 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-8.5 + parent: 1 + type: Transform + - uid: 7203 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-8.5 + parent: 1 + type: Transform +- proto: GasPressurePump + entities: + - uid: 3239 + components: + - name: waste pump + type: MetaData + - pos: 38.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6104 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-14.5 + parent: 1 + type: Transform + - uid: 6106 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-12.5 + parent: 1 + type: Transform + - uid: 6107 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-10.5 + parent: 1 + type: Transform + - uid: 6108 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-8.5 + parent: 1 + type: Transform + - uid: 6868 + components: + - name: n2 pump + type: MetaData + - rot: -1.5707963267948966 rad + pos: 39.5,-4.5 + parent: 1 + type: Transform + - uid: 6869 + components: + - name: o2 pump + type: MetaData + - rot: -1.5707963267948966 rad + pos: 39.5,-6.5 + parent: 1 + type: Transform + - uid: 6870 + components: + - name: co2 pump + type: MetaData + - rot: -1.5707963267948966 rad + pos: 39.5,-8.5 + parent: 1 + type: Transform + - uid: 6871 + components: + - name: n2o pump + type: MetaData + - rot: -1.5707963267948966 rad + pos: 39.5,-10.5 + parent: 1 + type: Transform + - uid: 6872 + components: + - name: water vapor pump + type: MetaData + - rot: -1.5707963267948966 rad + pos: 39.5,-12.5 + parent: 1 + type: Transform + - uid: 6873 + components: + - name: plasma pump + type: MetaData + - rot: -1.5707963267948966 rad + pos: 39.5,-14.5 + parent: 1 + type: Transform + - uid: 6874 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-16.5 + parent: 1 + type: Transform + - uid: 6964 + components: + - name: distro pump + type: MetaData + - pos: 35.5,-9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6976 + components: + - name: mix to space pump + type: MetaData + - pos: 35.5,-17.5 + parent: 1 + type: Transform + - uid: 6977 + components: + - name: mix pump + type: MetaData + - pos: 36.5,-18.5 + parent: 1 + type: Transform + - uid: 6980 + components: + - name: mix output pump + type: MetaData + - rot: 3.141592653589793 rad + pos: 34.5,-17.5 + parent: 1 + type: Transform + - uid: 10190 + components: + - pos: 10.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10192 + components: + - pos: 11.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasThermoMachineFreezer + entities: + - uid: 7020 + components: + - pos: 34.5,-7.5 + parent: 1 + type: Transform + - uid: 7021 + components: + - pos: 34.5,-8.5 + parent: 1 + type: Transform +- proto: GasThermoMachineHeater + entities: + - uid: 6814 + components: + - pos: 34.5,-6.5 + parent: 1 + type: Transform +- proto: GasValve + entities: + - uid: 6978 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-18.5 + parent: 1 + type: Transform + - open: False + type: GasValve + - uid: 6990 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-3.5 + parent: 1 + type: Transform + - open: False + type: GasValve +- proto: GasVentPump + entities: + - uid: 7151 + components: + - pos: 34.5,-9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 7182 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10112 + components: + - pos: 27.5,-8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10115 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10143 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10144 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10160 + components: + - pos: 20.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10204 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10219 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10236 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10246 + components: + - rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10247 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10248 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10358 + components: + - pos: 17.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10359 + components: + - pos: 29.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10360 + components: + - pos: 40.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10390 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10391 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10413 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10432 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10450 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10451 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,34.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10475 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10512 + components: + - rot: 3.141592653589793 rad + pos: 12.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10513 + components: + - rot: 3.141592653589793 rad + pos: 15.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10514 + components: + - rot: 3.141592653589793 rad + pos: 18.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10547 + components: + - rot: 3.141592653589793 rad + pos: 22.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10548 + components: + - rot: 3.141592653589793 rad + pos: 26.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10552 + components: + - pos: 20.5,13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10600 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10602 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10604 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10661 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10662 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10663 + components: + - pos: 29.5,26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10665 + components: + - pos: 7.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10697 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10706 + components: + - pos: -0.5,21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10707 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10724 + components: + - pos: 3.5,30.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10725 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10748 + components: + - pos: -1.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10749 + components: + - rot: 3.141592653589793 rad + pos: -3.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10762 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10785 + components: + - rot: 3.141592653589793 rad + pos: 0.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10786 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10821 + components: + - pos: -3.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10843 + components: + - rot: 3.141592653589793 rad + pos: -8.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10879 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10902 + components: + - rot: 3.141592653589793 rad + pos: -14.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10903 + components: + - rot: 3.141592653589793 rad + pos: -20.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10923 + components: + - pos: -23.5,13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10924 + components: + - rot: 3.141592653589793 rad + pos: -24.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10943 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10944 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10967 + components: + - rot: 3.141592653589793 rad + pos: -14.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10968 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10969 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10995 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11057 + components: + - pos: -12.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11058 + components: + - pos: -23.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11059 + components: + - pos: -34.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11082 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11083 + components: + - pos: -32.5,13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11121 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11122 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11123 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11124 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11129 + components: + - pos: -40.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11149 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11150 + components: + - rot: 3.141592653589793 rad + pos: -40.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11162 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11163 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11195 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11234 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11242 + components: + - pos: -9.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11261 + components: + - pos: -17.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11285 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11286 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11320 + components: + - pos: -26.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11321 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11330 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11367 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11410 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11411 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11476 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11477 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11478 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11479 + components: + - pos: -3.5,-21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11480 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11482 + components: + - pos: -7.5,-25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11510 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-30.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11511 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11512 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11526 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11539 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11589 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11590 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11591 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11605 + components: + - rot: 3.141592653589793 rad + pos: 16.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11608 + components: + - rot: 3.141592653589793 rad + pos: 30.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11646 + components: + - rot: 3.141592653589793 rad + pos: -17.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11720 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12148 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-49.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12268 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,52.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12269 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,52.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12276 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,52.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12279 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,46.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12280 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,44.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 3828 + components: + - pos: 12.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 7152 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10113 + components: + - pos: 28.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10114 + components: + - pos: 25.5,-10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10142 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10145 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10161 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10197 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10220 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10237 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10361 + components: + - rot: 3.141592653589793 rad + pos: 16.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10362 + components: + - rot: 3.141592653589793 rad + pos: 31.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10363 + components: + - rot: 3.141592653589793 rad + pos: 41.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10388 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10389 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10414 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10433 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10448 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,32.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10449 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,33.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10474 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10509 + components: + - rot: 3.141592653589793 rad + pos: 11.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10510 + components: + - rot: 3.141592653589793 rad + pos: 14.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10511 + components: + - rot: 3.141592653589793 rad + pos: 17.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10549 + components: + - rot: 3.141592653589793 rad + pos: 21.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10550 + components: + - rot: 3.141592653589793 rad + pos: 27.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10551 + components: + - pos: 21.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10599 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10601 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10603 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10658 + components: + - rot: 3.141592653589793 rad + pos: 30.5,26.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10659 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10660 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10664 + components: + - rot: 3.141592653589793 rad + pos: 6.5,15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10696 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10726 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10727 + components: + - pos: 4.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10750 + components: + - rot: 3.141592653589793 rad + pos: -2.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10751 + components: + - rot: 3.141592653589793 rad + pos: -0.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10763 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10772 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10773 + components: + - rot: 3.141592653589793 rad + pos: 4.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10778 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10812 + components: + - pos: 0.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10813 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10814 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10842 + components: + - pos: -8.5,11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10880 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10899 + components: + - pos: -12.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10900 + components: + - rot: 3.141592653589793 rad + pos: -15.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10901 + components: + - rot: 3.141592653589793 rad + pos: -21.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10921 + components: + - rot: 3.141592653589793 rad + pos: -25.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10922 + components: + - pos: -24.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10945 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10970 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10971 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10972 + components: + - pos: -13.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10994 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11042 + components: + - rot: 3.141592653589793 rad + pos: -35.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11054 + components: + - rot: 3.141592653589793 rad + pos: -13.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11055 + components: + - rot: 3.141592653589793 rad + pos: -24.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11084 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11085 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11147 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11148 + components: + - pos: -39.5,20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11151 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11174 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11175 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11176 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11233 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11241 + components: + - pos: -8.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11260 + components: + - pos: -15.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11283 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11284 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-17.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11322 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11323 + components: + - pos: -24.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11331 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11332 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11337 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11366 + components: + - pos: -1.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11408 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11409 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11471 + components: + - pos: -2.5,-21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11472 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11473 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11474 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11475 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11481 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11507 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11508 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-33.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11509 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11527 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11538 + components: + - pos: 5.5,-17.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11552 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-26.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11587 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11588 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11604 + components: + - pos: 17.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11609 + components: + - pos: 31.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11645 + components: + - rot: 3.141592653589793 rad + pos: -18.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11719 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12147 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-49.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12270 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,51.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12271 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12272 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12277 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12278 + components: + - rot: 3.141592653589793 rad + pos: -7.5,44.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GeneratorBasic15kW + entities: + - uid: 3673 + components: + - pos: -1.5,47.5 + parent: 1 + type: Transform + - uid: 3674 + components: + - pos: -0.5,47.5 + parent: 1 + type: Transform +- proto: Girder + entities: + - uid: 1598 + components: + - pos: -10.5,-19.5 + parent: 1 + type: Transform + - uid: 1763 + components: + - pos: -25.5,19.5 + parent: 1 + type: Transform + - uid: 1788 + components: + - pos: -24.5,19.5 + parent: 1 + type: Transform + - uid: 1792 + components: + - pos: -27.5,22.5 + parent: 1 + type: Transform +- proto: GravityGenerator + entities: + - uid: 7548 + components: + - pos: -37.5,22.5 + parent: 1 + type: Transform + - charge: 100 + type: GravityGenerator + - radius: 175.75 + type: PointLight +- proto: Grille + entities: + - uid: 30 + components: + - pos: 2.5,-6.5 + parent: 1 + type: Transform + - uid: 42 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 43 + components: + - pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 53 + components: + - pos: 5.5,-6.5 + parent: 1 + type: Transform + - uid: 56 + components: + - pos: 4.5,-6.5 + parent: 1 + type: Transform + - uid: 58 + components: + - pos: 6.5,-4.5 + parent: 1 + type: Transform + - uid: 59 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 65 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 66 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 67 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 74 + components: + - pos: -1.5,12.5 + parent: 1 + type: Transform + - uid: 76 + components: + - pos: 5.5,11.5 + parent: 1 + type: Transform + - uid: 83 + components: + - pos: 6.5,11.5 + parent: 1 + type: Transform + - uid: 85 + components: + - pos: 5.5,12.5 + parent: 1 + type: Transform + - uid: 87 + components: + - pos: 4.5,13.5 + parent: 1 + type: Transform + - uid: 88 + components: + - pos: -2.5,11.5 + parent: 1 + type: Transform + - uid: 89 + components: + - pos: -1.5,13.5 + parent: 1 + type: Transform + - uid: 90 + components: + - pos: -2.5,12.5 + parent: 1 + type: Transform + - uid: 91 + components: + - pos: 4.5,12.5 + parent: 1 + type: Transform + - uid: 92 + components: + - pos: -3.5,11.5 + parent: 1 + type: Transform + - uid: 99 + components: + - pos: 6.5,5.5 + parent: 1 + type: Transform + - uid: 100 + components: + - pos: 6.5,6.5 + parent: 1 + type: Transform + - uid: 101 + components: + - pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 102 + components: + - pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 104 + components: + - pos: 6.5,1.5 + parent: 1 + type: Transform + - uid: 105 + components: + - pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 113 + components: + - pos: 5.5,17.5 + parent: 1 + type: Transform + - uid: 114 + components: + - pos: 5.5,20.5 + parent: 1 + type: Transform + - uid: 115 + components: + - pos: 3.5,20.5 + parent: 1 + type: Transform + - uid: 116 + components: + - pos: 3.5,17.5 + parent: 1 + type: Transform + - uid: 138 + components: + - pos: -2.5,18.5 + parent: 1 + type: Transform + - uid: 139 + components: + - pos: -1.5,18.5 + parent: 1 + type: Transform + - uid: 140 + components: + - pos: -0.5,18.5 + parent: 1 + type: Transform + - uid: 141 + components: + - pos: 1.5,18.5 + parent: 1 + type: Transform + - uid: 166 + components: + - pos: -7.5,13.5 + parent: 1 + type: Transform + - uid: 167 + components: + - pos: -13.5,12.5 + parent: 1 + type: Transform + - uid: 169 + components: + - pos: -11.5,12.5 + parent: 1 + type: Transform + - uid: 173 + components: + - pos: -10.5,11.5 + parent: 1 + type: Transform + - uid: 176 + components: + - pos: -7.5,14.5 + parent: 1 + type: Transform + - uid: 177 + components: + - pos: -7.5,5.5 + parent: 1 + type: Transform + - uid: 179 + components: + - pos: -7.5,6.5 + parent: 1 + type: Transform + - uid: 181 + components: + - pos: -10.5,8.5 + parent: 1 + type: Transform + - uid: 187 + components: + - pos: -14.5,14.5 + parent: 1 + type: Transform + - uid: 196 + components: + - pos: -14.5,16.5 + parent: 1 + type: Transform + - uid: 197 + components: + - pos: -26.5,8.5 + parent: 1 + type: Transform + - uid: 210 + components: + - pos: -17.5,14.5 + parent: 1 + type: Transform + - uid: 213 + components: + - pos: -9.5,4.5 + parent: 1 + type: Transform + - uid: 214 + components: + - pos: -8.5,4.5 + parent: 1 + type: Transform + - uid: 234 + components: + - pos: -25.5,8.5 + parent: 1 + type: Transform + - uid: 240 + components: + - pos: -13.5,6.5 + parent: 1 + type: Transform + - uid: 241 + components: + - pos: -13.5,5.5 + parent: 1 + type: Transform + - uid: 242 + components: + - pos: -14.5,4.5 + parent: 1 + type: Transform + - uid: 243 + components: + - pos: -15.5,4.5 + parent: 1 + type: Transform + - uid: 244 + components: + - pos: -12.5,4.5 + parent: 1 + type: Transform + - uid: 245 + components: + - pos: -11.5,4.5 + parent: 1 + type: Transform + - uid: 246 + components: + - pos: -16.5,5.5 + parent: 1 + type: Transform + - uid: 247 + components: + - pos: -16.5,6.5 + parent: 1 + type: Transform + - uid: 248 + components: + - pos: -17.5,4.5 + parent: 1 + type: Transform + - uid: 249 + components: + - pos: -18.5,4.5 + parent: 1 + type: Transform + - uid: 250 + components: + - pos: -19.5,5.5 + parent: 1 + type: Transform + - uid: 251 + components: + - pos: -19.5,6.5 + parent: 1 + type: Transform + - uid: 252 + components: + - pos: -20.5,4.5 + parent: 1 + type: Transform + - uid: 253 + components: + - pos: -21.5,4.5 + parent: 1 + type: Transform + - uid: 266 + components: + - pos: -23.5,8.5 + parent: 1 + type: Transform + - uid: 364 + components: + - pos: -4.5,32.5 + parent: 1 + type: Transform + - uid: 365 + components: + - pos: -4.5,33.5 + parent: 1 + type: Transform + - uid: 370 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,32.5 + parent: 1 + type: Transform + - uid: 374 + components: + - pos: -3.5,33.5 + parent: 1 + type: Transform + - uid: 375 + components: + - pos: -2.5,33.5 + parent: 1 + type: Transform + - uid: 377 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,32.5 + parent: 1 + type: Transform + - uid: 383 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,31.5 + parent: 1 + type: Transform + - uid: 384 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,30.5 + parent: 1 + type: Transform + - uid: 385 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,28.5 + parent: 1 + type: Transform + - uid: 386 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,27.5 + parent: 1 + type: Transform + - uid: 405 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,32.5 + parent: 1 + type: Transform + - uid: 406 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,32.5 + parent: 1 + type: Transform + - uid: 408 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,32.5 + parent: 1 + type: Transform + - uid: 409 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,32.5 + parent: 1 + type: Transform + - uid: 416 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,28.5 + parent: 1 + type: Transform + - uid: 422 + components: + - pos: -1.5,33.5 + parent: 1 + type: Transform + - uid: 423 + components: + - pos: -0.5,33.5 + parent: 1 + type: Transform + - uid: 424 + components: + - pos: 0.5,33.5 + parent: 1 + type: Transform + - uid: 425 + components: + - pos: 0.5,32.5 + parent: 1 + type: Transform + - uid: 427 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,32.5 + parent: 1 + type: Transform + - uid: 431 + components: + - pos: -13.5,32.5 + parent: 1 + type: Transform + - uid: 449 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-3.5 + parent: 1 + type: Transform + - uid: 471 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-8.5 + parent: 1 + type: Transform + - uid: 474 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-9.5 + parent: 1 + type: Transform + - uid: 487 + components: + - rot: 3.141592653589793 rad + pos: -12.5,0.5 + parent: 1 + type: Transform + - uid: 488 + components: + - rot: 3.141592653589793 rad + pos: -11.5,0.5 + parent: 1 + type: Transform + - uid: 489 + components: + - rot: 3.141592653589793 rad + pos: -10.5,0.5 + parent: 1 + type: Transform + - uid: 490 + components: + - rot: 3.141592653589793 rad + pos: -9.5,0.5 + parent: 1 + type: Transform + - uid: 491 + components: + - rot: 3.141592653589793 rad + pos: -8.5,0.5 + parent: 1 + type: Transform + - uid: 492 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-0.5 + parent: 1 + type: Transform + - uid: 493 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 1 + type: Transform + - uid: 494 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-2.5 + parent: 1 + type: Transform + - uid: 522 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-3.5 + parent: 1 + type: Transform + - uid: 523 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-2.5 + parent: 1 + type: Transform + - uid: 532 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-1.5 + parent: 1 + type: Transform + - uid: 533 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-0.5 + parent: 1 + type: Transform + - uid: 546 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-1.5 + parent: 1 + type: Transform + - uid: 580 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-7.5 + parent: 1 + type: Transform + - uid: 581 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-7.5 + parent: 1 + type: Transform + - uid: 583 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-10.5 + parent: 1 + type: Transform + - uid: 584 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-12.5 + parent: 1 + type: Transform + - uid: 585 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-14.5 + parent: 1 + type: Transform + - uid: 586 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-8.5 + parent: 1 + type: Transform + - uid: 596 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-11.5 + parent: 1 + type: Transform + - uid: 601 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-11.5 + parent: 1 + type: Transform + - uid: 619 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-14.5 + parent: 1 + type: Transform + - uid: 620 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-13.5 + parent: 1 + type: Transform + - uid: 621 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-12.5 + parent: 1 + type: Transform + - uid: 622 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-11.5 + parent: 1 + type: Transform + - uid: 623 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-4.5 + parent: 1 + type: Transform + - uid: 624 + components: + - rot: 3.141592653589793 rad + pos: -28.5,-4.5 + parent: 1 + type: Transform + - uid: 668 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,12.5 + parent: 1 + type: Transform + - uid: 669 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,15.5 + parent: 1 + type: Transform + - uid: 675 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,12.5 + parent: 1 + type: Transform + - uid: 678 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,15.5 + parent: 1 + type: Transform + - uid: 712 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,10.5 + parent: 1 + type: Transform + - uid: 713 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,9.5 + parent: 1 + type: Transform + - uid: 714 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,8.5 + parent: 1 + type: Transform + - uid: 715 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,4.5 + parent: 1 + type: Transform + - uid: 716 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,4.5 + parent: 1 + type: Transform + - uid: 717 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,4.5 + parent: 1 + type: Transform + - uid: 718 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,4.5 + parent: 1 + type: Transform + - uid: 719 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,4.5 + parent: 1 + type: Transform + - uid: 720 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,4.5 + parent: 1 + type: Transform + - uid: 722 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,7.5 + parent: 1 + type: Transform + - uid: 724 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,7.5 + parent: 1 + type: Transform + - uid: 726 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,7.5 + parent: 1 + type: Transform + - uid: 741 + components: + - rot: 3.141592653589793 rad + pos: 18.5,11.5 + parent: 1 + type: Transform + - uid: 742 + components: + - rot: 3.141592653589793 rad + pos: 19.5,11.5 + parent: 1 + type: Transform + - uid: 743 + components: + - rot: 3.141592653589793 rad + pos: 23.5,11.5 + parent: 1 + type: Transform + - uid: 744 + components: + - rot: 3.141592653589793 rad + pos: 22.5,11.5 + parent: 1 + type: Transform + - uid: 969 + components: + - pos: 28.5,31.5 + parent: 1 + type: Transform + - uid: 970 + components: + - pos: 27.5,31.5 + parent: 1 + type: Transform + - uid: 971 + components: + - pos: 26.5,31.5 + parent: 1 + type: Transform + - uid: 972 + components: + - pos: 25.5,31.5 + parent: 1 + type: Transform + - uid: 973 + components: + - pos: 24.5,31.5 + parent: 1 + type: Transform + - uid: 974 + components: + - pos: 28.5,29.5 + parent: 1 + type: Transform + - uid: 975 + components: + - pos: 29.5,29.5 + parent: 1 + type: Transform + - uid: 976 + components: + - pos: 30.5,29.5 + parent: 1 + type: Transform + - uid: 977 + components: + - pos: 31.5,29.5 + parent: 1 + type: Transform + - uid: 978 + components: + - pos: 32.5,29.5 + parent: 1 + type: Transform + - uid: 1029 + components: + - pos: 13.5,-9.5 + parent: 1 + type: Transform + - uid: 1035 + components: + - pos: 14.5,-4.5 + parent: 1 + type: Transform + - uid: 1047 + components: + - pos: 11.5,-9.5 + parent: 1 + type: Transform + - uid: 1052 + components: + - pos: 17.5,-6.5 + parent: 1 + type: Transform + - uid: 1053 + components: + - pos: 17.5,-7.5 + parent: 1 + type: Transform + - uid: 1080 + components: + - pos: 20.5,-12.5 + parent: 1 + type: Transform + - uid: 1081 + components: + - pos: 19.5,-12.5 + parent: 1 + type: Transform + - uid: 1082 + components: + - pos: 18.5,-12.5 + parent: 1 + type: Transform + - uid: 1087 + components: + - pos: 20.5,-9.5 + parent: 1 + type: Transform + - uid: 1088 + components: + - pos: 19.5,-9.5 + parent: 1 + type: Transform + - uid: 1089 + components: + - pos: 18.5,-9.5 + parent: 1 + type: Transform + - uid: 1101 + components: + - pos: 23.5,-12.5 + parent: 1 + type: Transform + - uid: 1129 + components: + - pos: 21.5,-15.5 + parent: 1 + type: Transform + - uid: 1186 + components: + - pos: 24.5,-8.5 + parent: 1 + type: Transform + - uid: 1187 + components: + - pos: 24.5,-6.5 + parent: 1 + type: Transform + - uid: 1188 + components: + - pos: 24.5,-5.5 + parent: 1 + type: Transform + - uid: 1189 + components: + - pos: 24.5,-4.5 + parent: 1 + type: Transform + - uid: 1190 + components: + - pos: 24.5,-3.5 + parent: 1 + type: Transform + - uid: 1191 + components: + - pos: 25.5,-9.5 + parent: 1 + type: Transform + - uid: 1192 + components: + - pos: 26.5,-9.5 + parent: 1 + type: Transform + - uid: 1193 + components: + - pos: 28.5,-9.5 + parent: 1 + type: Transform + - uid: 1194 + components: + - pos: 29.5,-9.5 + parent: 1 + type: Transform + - uid: 1257 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,3.5 + parent: 1 + type: Transform + - uid: 1260 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,10.5 + parent: 1 + type: Transform + - uid: 1269 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,9.5 + parent: 1 + type: Transform + - uid: 1273 + components: + - pos: 46.5,0.5 + parent: 1 + type: Transform + - uid: 1274 + components: + - pos: 47.5,0.5 + parent: 1 + type: Transform + - uid: 1275 + components: + - pos: 47.5,1.5 + parent: 1 + type: Transform + - uid: 1277 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,2.5 + parent: 1 + type: Transform + - uid: 1280 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,14.5 + parent: 1 + type: Transform + - uid: 1289 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,7.5 + parent: 1 + type: Transform + - uid: 1291 + components: + - pos: 47.5,15.5 + parent: 1 + type: Transform + - uid: 1292 + components: + - pos: 47.5,16.5 + parent: 1 + type: Transform + - uid: 1300 + components: + - pos: 47.5,17.5 + parent: 1 + type: Transform + - uid: 1325 + components: + - pos: 40.5,-3.5 + parent: 1 + type: Transform + - uid: 1326 + components: + - pos: 40.5,-4.5 + parent: 1 + type: Transform + - uid: 1327 + components: + - pos: 40.5,-5.5 + parent: 1 + type: Transform + - uid: 1328 + components: + - pos: 40.5,-6.5 + parent: 1 + type: Transform + - uid: 1329 + components: + - pos: 40.5,-7.5 + parent: 1 + type: Transform + - uid: 1330 + components: + - pos: 40.5,-8.5 + parent: 1 + type: Transform + - uid: 1331 + components: + - pos: 40.5,-9.5 + parent: 1 + type: Transform + - uid: 1332 + components: + - pos: 40.5,-10.5 + parent: 1 + type: Transform + - uid: 1333 + components: + - pos: 40.5,-11.5 + parent: 1 + type: Transform + - uid: 1334 + components: + - pos: 40.5,-12.5 + parent: 1 + type: Transform + - uid: 1335 + components: + - pos: 40.5,-13.5 + parent: 1 + type: Transform + - uid: 1336 + components: + - pos: 40.5,-14.5 + parent: 1 + type: Transform + - uid: 1337 + components: + - pos: 40.5,-15.5 + parent: 1 + type: Transform + - uid: 1338 + components: + - pos: 40.5,-16.5 + parent: 1 + type: Transform + - uid: 1339 + components: + - pos: 40.5,-17.5 + parent: 1 + type: Transform + - uid: 1340 + components: + - pos: 40.5,-18.5 + parent: 1 + type: Transform + - uid: 1341 + components: + - pos: 40.5,-19.5 + parent: 1 + type: Transform + - uid: 1351 + components: + - pos: 31.5,-19.5 + parent: 1 + type: Transform + - uid: 1352 + components: + - pos: 32.5,-19.5 + parent: 1 + type: Transform + - uid: 1354 + components: + - pos: 34.5,-19.5 + parent: 1 + type: Transform + - uid: 1355 + components: + - pos: 35.5,-19.5 + parent: 1 + type: Transform + - uid: 1356 + components: + - pos: 36.5,-19.5 + parent: 1 + type: Transform + - uid: 1357 + components: + - pos: 37.5,-19.5 + parent: 1 + type: Transform + - uid: 1358 + components: + - pos: 38.5,-19.5 + parent: 1 + type: Transform + - uid: 1359 + components: + - pos: 39.5,-19.5 + parent: 1 + type: Transform + - uid: 1373 + components: + - pos: 37.5,-23.5 + parent: 1 + type: Transform + - uid: 1374 + components: + - pos: 37.5,-22.5 + parent: 1 + type: Transform + - uid: 1375 + components: + - pos: 36.5,-21.5 + parent: 1 + type: Transform + - uid: 1376 + components: + - pos: 35.5,-21.5 + parent: 1 + type: Transform + - uid: 1377 + components: + - pos: 34.5,-21.5 + parent: 1 + type: Transform + - uid: 1378 + components: + - pos: 33.5,-22.5 + parent: 1 + type: Transform + - uid: 1379 + components: + - pos: 33.5,-23.5 + parent: 1 + type: Transform + - uid: 1427 + components: + - pos: 42.5,-17.5 + parent: 1 + type: Transform + - uid: 1428 + components: + - pos: 42.5,-15.5 + parent: 1 + type: Transform + - uid: 1429 + components: + - pos: 42.5,-13.5 + parent: 1 + type: Transform + - uid: 1430 + components: + - pos: 42.5,-11.5 + parent: 1 + type: Transform + - uid: 1431 + components: + - pos: 42.5,-9.5 + parent: 1 + type: Transform + - uid: 1432 + components: + - pos: 42.5,-7.5 + parent: 1 + type: Transform + - uid: 1433 + components: + - pos: 42.5,-5.5 + parent: 1 + type: Transform + - uid: 1461 + components: + - pos: 5.5,-18.5 + parent: 1 + type: Transform + - uid: 1475 + components: + - pos: 17.5,-24.5 + parent: 1 + type: Transform + - uid: 1493 + components: + - pos: 7.5,-19.5 + parent: 1 + type: Transform + - uid: 1497 + components: + - pos: 7.5,-22.5 + parent: 1 + type: Transform + - uid: 1501 + components: + - pos: 4.5,-24.5 + parent: 1 + type: Transform + - uid: 1502 + components: + - pos: 6.5,-24.5 + parent: 1 + type: Transform + - uid: 1514 + components: + - pos: 7.5,-25.5 + parent: 1 + type: Transform + - uid: 1515 + components: + - pos: 7.5,-27.5 + parent: 1 + type: Transform + - uid: 1528 + components: + - pos: 17.5,-23.5 + parent: 1 + type: Transform + - uid: 1531 + components: + - pos: 17.5,-20.5 + parent: 1 + type: Transform + - uid: 1534 + components: + - pos: 20.5,-28.5 + parent: 1 + type: Transform + - uid: 1553 + components: + - pos: 9.5,-29.5 + parent: 1 + type: Transform + - uid: 1554 + components: + - pos: 9.5,-30.5 + parent: 1 + type: Transform + - uid: 1555 + components: + - pos: 12.5,-30.5 + parent: 1 + type: Transform + - uid: 1556 + components: + - pos: 12.5,-29.5 + parent: 1 + type: Transform + - uid: 1557 + components: + - pos: 15.5,-29.5 + parent: 1 + type: Transform + - uid: 1558 + components: + - pos: 15.5,-30.5 + parent: 1 + type: Transform + - uid: 1563 + components: + - pos: 24.5,-25.5 + parent: 1 + type: Transform + - uid: 1564 + components: + - pos: 26.5,-25.5 + parent: 1 + type: Transform + - uid: 1565 + components: + - pos: 27.5,-23.5 + parent: 1 + type: Transform + - uid: 1566 + components: + - pos: 27.5,-24.5 + parent: 1 + type: Transform + - uid: 1572 + components: + - pos: 12.5,-23.5 + parent: 1 + type: Transform + - uid: 1573 + components: + - pos: 12.5,-20.5 + parent: 1 + type: Transform + - uid: 1574 + components: + - pos: 11.5,-24.5 + parent: 1 + type: Transform + - uid: 1575 + components: + - pos: 8.5,-24.5 + parent: 1 + type: Transform + - uid: 1617 + components: + - pos: 3.5,-30.5 + parent: 1 + type: Transform + - uid: 1618 + components: + - pos: 3.5,-29.5 + parent: 1 + type: Transform + - uid: 1622 + components: + - pos: -0.5,-22.5 + parent: 1 + type: Transform + - uid: 1623 + components: + - pos: -0.5,-21.5 + parent: 1 + type: Transform + - uid: 1624 + components: + - pos: -0.5,-20.5 + parent: 1 + type: Transform + - uid: 1629 + components: + - pos: -1.5,-23.5 + parent: 1 + type: Transform + - uid: 1630 + components: + - pos: -2.5,-23.5 + parent: 1 + type: Transform + - uid: 1631 + components: + - pos: -4.5,-23.5 + parent: 1 + type: Transform + - uid: 1632 + components: + - pos: -5.5,-23.5 + parent: 1 + type: Transform + - uid: 1686 + components: + - pos: 43.5,23.5 + parent: 1 + type: Transform + - uid: 1724 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-28.5 + parent: 1 + type: Transform + - uid: 1725 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-31.5 + parent: 1 + type: Transform + - uid: 1753 + components: + - pos: 19.5,-28.5 + parent: 1 + type: Transform + - uid: 1754 + components: + - pos: 21.5,-28.5 + parent: 1 + type: Transform + - uid: 1785 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,25.5 + parent: 1 + type: Transform + - uid: 1800 + components: + - pos: 30.5,14.5 + parent: 1 + type: Transform + - uid: 1801 + components: + - pos: -23.5,19.5 + parent: 1 + type: Transform + - uid: 1953 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,8.5 + parent: 1 + type: Transform + - uid: 1958 + components: + - pos: 16.5,-9.5 + parent: 1 + type: Transform + - uid: 1959 + components: + - pos: 15.5,-9.5 + parent: 1 + type: Transform + - uid: 1991 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,4.5 + parent: 1 + type: Transform + - uid: 1992 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,4.5 + parent: 1 + type: Transform + - uid: 1993 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,4.5 + parent: 1 + type: Transform + - uid: 1994 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,4.5 + parent: 1 + type: Transform + - uid: 2001 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,15.5 + parent: 1 + type: Transform + - uid: 2068 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,10.5 + parent: 1 + type: Transform + - uid: 2069 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,12.5 + parent: 1 + type: Transform + - uid: 2070 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,14.5 + parent: 1 + type: Transform + - uid: 2072 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,12.5 + parent: 1 + type: Transform + - uid: 2073 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,2.5 + parent: 1 + type: Transform + - uid: 2074 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,2.5 + parent: 1 + type: Transform + - uid: 2075 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,10.5 + parent: 1 + type: Transform + - uid: 2076 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,36.5 + parent: 1 + type: Transform + - uid: 2078 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,36.5 + parent: 1 + type: Transform + - uid: 2079 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,4.5 + parent: 1 + type: Transform + - uid: 2080 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,8.5 + parent: 1 + type: Transform + - uid: 2093 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,0.5 + parent: 1 + type: Transform + - uid: 2102 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,0.5 + parent: 1 + type: Transform + - uid: 2109 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,0.5 + parent: 1 + type: Transform + - uid: 2114 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,36.5 + parent: 1 + type: Transform + - uid: 2115 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,6.5 + parent: 1 + type: Transform + - uid: 2116 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,4.5 + parent: 1 + type: Transform + - uid: 2117 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,6.5 + parent: 1 + type: Transform + - uid: 2118 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,6.5 + parent: 1 + type: Transform + - uid: 2119 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,9.5 + parent: 1 + type: Transform + - uid: 2120 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,10.5 + parent: 1 + type: Transform + - uid: 2121 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,2.5 + parent: 1 + type: Transform + - uid: 2122 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,1.5 + parent: 1 + type: Transform + - uid: 2128 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,14.5 + parent: 1 + type: Transform + - uid: 2129 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,14.5 + parent: 1 + type: Transform + - uid: 2133 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,12.5 + parent: 1 + type: Transform + - uid: 2152 + components: + - pos: -42.5,-9.5 + parent: 1 + type: Transform + - uid: 2221 + components: + - pos: 43.5,21.5 + parent: 1 + type: Transform + - uid: 2234 + components: + - pos: -42.5,-11.5 + parent: 1 + type: Transform + - uid: 2265 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-24.5 + parent: 1 + type: Transform + - uid: 2266 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-24.5 + parent: 1 + type: Transform + - uid: 2267 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-24.5 + parent: 1 + type: Transform + - uid: 2268 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-24.5 + parent: 1 + type: Transform + - uid: 2270 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-23.5 + parent: 1 + type: Transform + - uid: 2272 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-24.5 + parent: 1 + type: Transform + - uid: 2285 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,26.5 + parent: 1 + type: Transform + - uid: 2286 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,26.5 + parent: 1 + type: Transform + - uid: 2287 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,26.5 + parent: 1 + type: Transform + - uid: 2288 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,26.5 + parent: 1 + type: Transform + - uid: 2293 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,31.5 + parent: 1 + type: Transform + - uid: 2294 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,31.5 + parent: 1 + type: Transform + - uid: 2295 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,31.5 + parent: 1 + type: Transform + - uid: 2296 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,31.5 + parent: 1 + type: Transform + - uid: 2298 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,22.5 + parent: 1 + type: Transform + - uid: 2303 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,30.5 + parent: 1 + type: Transform + - uid: 2304 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,24.5 + parent: 1 + type: Transform + - uid: 2325 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,37.5 + parent: 1 + type: Transform + - uid: 2332 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,36.5 + parent: 1 + type: Transform + - uid: 2339 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,37.5 + parent: 1 + type: Transform + - uid: 2377 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,37.5 + parent: 1 + type: Transform + - uid: 2382 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,38.5 + parent: 1 + type: Transform + - uid: 2383 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,38.5 + parent: 1 + type: Transform + - uid: 2384 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,36.5 + parent: 1 + type: Transform + - uid: 2385 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,36.5 + parent: 1 + type: Transform + - uid: 2386 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,37.5 + parent: 1 + type: Transform + - uid: 2387 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,36.5 + parent: 1 + type: Transform + - uid: 2388 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,36.5 + parent: 1 + type: Transform + - uid: 2389 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,36.5 + parent: 1 + type: Transform + - uid: 2390 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,38.5 + parent: 1 + type: Transform + - uid: 2391 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,36.5 + parent: 1 + type: Transform + - uid: 2392 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,37.5 + parent: 1 + type: Transform + - uid: 2393 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,38.5 + parent: 1 + type: Transform + - uid: 2394 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,36.5 + parent: 1 + type: Transform + - uid: 2395 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,38.5 + parent: 1 + type: Transform + - uid: 2396 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,37.5 + parent: 1 + type: Transform + - uid: 2397 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,38.5 + parent: 1 + type: Transform + - uid: 2405 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,36.5 + parent: 1 + type: Transform + - uid: 2410 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,36.5 + parent: 1 + type: Transform + - uid: 2411 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,36.5 + parent: 1 + type: Transform + - uid: 2412 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,36.5 + parent: 1 + type: Transform + - uid: 2415 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,7.5 + parent: 1 + type: Transform + - uid: 2416 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,4.5 + parent: 1 + type: Transform + - uid: 2417 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,36.5 + parent: 1 + type: Transform + - uid: 2662 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,43.5 + parent: 1 + type: Transform + - uid: 2690 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,50.5 + parent: 1 + type: Transform + - uid: 2691 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,54.5 + parent: 1 + type: Transform + - uid: 2783 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-53.5 + parent: 1 + type: Transform + - uid: 2784 + components: + - pos: -16.5,-47.5 + parent: 1 + type: Transform + - uid: 2795 + components: + - pos: -14.5,-54.5 + parent: 1 + type: Transform + - uid: 2796 + components: + - pos: -15.5,-54.5 + parent: 1 + type: Transform + - uid: 2804 + components: + - pos: -13.5,-54.5 + parent: 1 + type: Transform + - uid: 2807 + components: + - pos: -16.5,-54.5 + parent: 1 + type: Transform + - uid: 2836 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-55.5 + parent: 1 + type: Transform + - uid: 2851 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-52.5 + parent: 1 + type: Transform + - uid: 2852 + components: + - pos: -12.5,-54.5 + parent: 1 + type: Transform + - uid: 2891 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-56.5 + parent: 1 + type: Transform + - uid: 2892 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-57.5 + parent: 1 + type: Transform + - uid: 2893 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-58.5 + parent: 1 + type: Transform + - uid: 2894 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-59.5 + parent: 1 + type: Transform + - uid: 2895 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-60.5 + parent: 1 + type: Transform + - uid: 2896 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-61.5 + parent: 1 + type: Transform + - uid: 2897 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-61.5 + parent: 1 + type: Transform + - uid: 2898 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-61.5 + parent: 1 + type: Transform + - uid: 2899 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-62.5 + parent: 1 + type: Transform + - uid: 2900 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-63.5 + parent: 1 + type: Transform + - uid: 2901 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-63.5 + parent: 1 + type: Transform + - uid: 2902 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-63.5 + parent: 1 + type: Transform + - uid: 2903 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-63.5 + parent: 1 + type: Transform + - uid: 2904 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-63.5 + parent: 1 + type: Transform + - uid: 2905 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-63.5 + parent: 1 + type: Transform + - uid: 2906 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-63.5 + parent: 1 + type: Transform + - uid: 2907 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-62.5 + parent: 1 + type: Transform + - uid: 2908 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-61.5 + parent: 1 + type: Transform + - uid: 2909 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-60.5 + parent: 1 + type: Transform + - uid: 2910 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-59.5 + parent: 1 + type: Transform + - uid: 2911 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-58.5 + parent: 1 + type: Transform + - uid: 2912 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-57.5 + parent: 1 + type: Transform + - uid: 2913 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-56.5 + parent: 1 + type: Transform + - uid: 2914 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-55.5 + parent: 1 + type: Transform + - uid: 2915 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-42.5 + parent: 1 + type: Transform + - uid: 2916 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-54.5 + parent: 1 + type: Transform + - uid: 2918 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-52.5 + parent: 1 + type: Transform + - uid: 2919 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-51.5 + parent: 1 + type: Transform + - uid: 2920 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-50.5 + parent: 1 + type: Transform + - uid: 2921 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-49.5 + parent: 1 + type: Transform + - uid: 2923 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-47.5 + parent: 1 + type: Transform + - uid: 2924 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-46.5 + parent: 1 + type: Transform + - uid: 2925 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-45.5 + parent: 1 + type: Transform + - uid: 2933 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-49.5 + parent: 1 + type: Transform + - uid: 2935 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-41.5 + parent: 1 + type: Transform + - uid: 2937 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-39.5 + parent: 1 + type: Transform + - uid: 2938 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-38.5 + parent: 1 + type: Transform + - uid: 2940 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-36.5 + parent: 1 + type: Transform + - uid: 2942 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-42.5 + parent: 1 + type: Transform + - uid: 2943 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-41.5 + parent: 1 + type: Transform + - uid: 2945 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-39.5 + parent: 1 + type: Transform + - uid: 2946 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-38.5 + parent: 1 + type: Transform + - uid: 2947 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-37.5 + parent: 1 + type: Transform + - uid: 2948 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-36.5 + parent: 1 + type: Transform + - uid: 2949 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-35.5 + parent: 1 + type: Transform + - uid: 2951 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-33.5 + parent: 1 + type: Transform + - uid: 2971 + components: + - pos: -22.5,-30.5 + parent: 1 + type: Transform + - uid: 2983 + components: + - pos: -24.5,-29.5 + parent: 1 + type: Transform + - uid: 2984 + components: + - pos: -21.5,-32.5 + parent: 1 + type: Transform + - uid: 2988 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-34.5 + parent: 1 + type: Transform + - uid: 2989 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-34.5 + parent: 1 + type: Transform + - uid: 2990 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-34.5 + parent: 1 + type: Transform + - uid: 2992 + components: + - pos: -7.5,-34.5 + parent: 1 + type: Transform + - uid: 2993 + components: + - pos: -6.5,-34.5 + parent: 1 + type: Transform + - uid: 3007 + components: + - pos: -20.5,-32.5 + parent: 1 + type: Transform + - uid: 3008 + components: + - pos: -22.5,-32.5 + parent: 1 + type: Transform + - uid: 3009 + components: + - pos: -24.5,-32.5 + parent: 1 + type: Transform + - uid: 3016 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-31.5 + parent: 1 + type: Transform + - uid: 3017 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-32.5 + parent: 1 + type: Transform + - uid: 3019 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-34.5 + parent: 1 + type: Transform + - uid: 3021 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-36.5 + parent: 1 + type: Transform + - uid: 3024 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-37.5 + parent: 1 + type: Transform + - uid: 3025 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-37.5 + parent: 1 + type: Transform + - uid: 3026 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-38.5 + parent: 1 + type: Transform + - uid: 3027 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-38.5 + parent: 1 + type: Transform + - uid: 3029 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-38.5 + parent: 1 + type: Transform + - uid: 3030 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-38.5 + parent: 1 + type: Transform + - uid: 3031 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-38.5 + parent: 1 + type: Transform + - uid: 3033 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-37.5 + parent: 1 + type: Transform + - uid: 3036 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-36.5 + parent: 1 + type: Transform + - uid: 3037 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-35.5 + parent: 1 + type: Transform + - uid: 3038 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-35.5 + parent: 1 + type: Transform + - uid: 3039 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-34.5 + parent: 1 + type: Transform + - uid: 3040 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-33.5 + parent: 1 + type: Transform + - uid: 3043 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-30.5 + parent: 1 + type: Transform + - uid: 3044 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-29.5 + parent: 1 + type: Transform + - uid: 3045 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-28.5 + parent: 1 + type: Transform + - uid: 3089 + components: + - pos: -36.5,13.5 + parent: 1 + type: Transform + - uid: 3254 + components: + - pos: 19.5,-24.5 + parent: 1 + type: Transform + - uid: 3815 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,25.5 + parent: 1 + type: Transform + - uid: 4049 + components: + - rot: 3.141592653589793 rad + pos: 3.5,32.5 + parent: 1 + type: Transform + - uid: 4050 + components: + - rot: 3.141592653589793 rad + pos: 4.5,32.5 + parent: 1 + type: Transform + - uid: 4051 + components: + - rot: 3.141592653589793 rad + pos: 5.5,32.5 + parent: 1 + type: Transform + - uid: 4817 + components: + - pos: 47.5,20.5 + parent: 1 + type: Transform + - uid: 4818 + components: + - pos: 47.5,19.5 + parent: 1 + type: Transform + - uid: 4822 + components: + - pos: 46.5,24.5 + parent: 1 + type: Transform + - uid: 4823 + components: + - pos: 44.5,24.5 + parent: 1 + type: Transform + - uid: 4827 + components: + - pos: 40.5,29.5 + parent: 1 + type: Transform + - uid: 4828 + components: + - pos: 39.5,29.5 + parent: 1 + type: Transform + - uid: 4833 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,28.5 + parent: 1 + type: Transform + - uid: 4838 + components: + - pos: 47.5,27.5 + parent: 1 + type: Transform + - uid: 4839 + components: + - pos: 47.5,26.5 + parent: 1 + type: Transform + - uid: 4841 + components: + - pos: 41.5,29.5 + parent: 1 + type: Transform + - uid: 4843 + components: + - pos: 45.5,29.5 + parent: 1 + type: Transform + - uid: 4844 + components: + - pos: 46.5,29.5 + parent: 1 + type: Transform + - uid: 4873 + components: + - rot: 3.141592653589793 rad + pos: 40.5,35.5 + parent: 1 + type: Transform + - uid: 4874 + components: + - rot: 3.141592653589793 rad + pos: 41.5,35.5 + parent: 1 + type: Transform + - uid: 4875 + components: + - rot: 3.141592653589793 rad + pos: 42.5,35.5 + parent: 1 + type: Transform + - uid: 4876 + components: + - rot: 3.141592653589793 rad + pos: 43.5,35.5 + parent: 1 + type: Transform + - uid: 4877 + components: + - rot: 3.141592653589793 rad + pos: 44.5,35.5 + parent: 1 + type: Transform + - uid: 4878 + components: + - rot: 3.141592653589793 rad + pos: 45.5,35.5 + parent: 1 + type: Transform + - uid: 4881 + components: + - rot: 3.141592653589793 rad + pos: 47.5,33.5 + parent: 1 + type: Transform + - uid: 4882 + components: + - rot: 3.141592653589793 rad + pos: 47.5,32.5 + parent: 1 + type: Transform + - uid: 4883 + components: + - rot: 3.141592653589793 rad + pos: 47.5,31.5 + parent: 1 + type: Transform + - uid: 6328 + components: + - pos: -20.5,-15.5 + parent: 1 + type: Transform + - uid: 6329 + components: + - pos: -19.5,-15.5 + parent: 1 + type: Transform + - uid: 7067 + components: + - pos: 3.5,-31.5 + parent: 1 + type: Transform + - uid: 7068 + components: + - pos: 3.5,-32.5 + parent: 1 + type: Transform + - uid: 7069 + components: + - pos: 3.5,-33.5 + parent: 1 + type: Transform + - uid: 7299 + components: + - pos: 22.5,-24.5 + parent: 1 + type: Transform + - uid: 7303 + components: + - pos: 18.5,-24.5 + parent: 1 + type: Transform + - uid: 7572 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-5.5 + parent: 1 + type: Transform + - uid: 7573 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-6.5 + parent: 1 + type: Transform + - uid: 7576 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-4.5 + parent: 1 + type: Transform + - uid: 7577 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-3.5 + parent: 1 + type: Transform + - uid: 7578 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-2.5 + parent: 1 + type: Transform + - uid: 7579 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-1.5 + parent: 1 + type: Transform + - uid: 8258 + components: + - pos: -44.5,-18.5 + parent: 1 + type: Transform + - uid: 8266 + components: + - pos: -44.5,-17.5 + parent: 1 + type: Transform + - uid: 8271 + components: + - pos: -44.5,-16.5 + parent: 1 + type: Transform + - uid: 8273 + components: + - pos: -44.5,-19.5 + parent: 1 + type: Transform + - uid: 8321 + components: + - pos: 11.5,34.5 + parent: 1 + type: Transform + - uid: 8322 + components: + - pos: 9.5,34.5 + parent: 1 + type: Transform + - uid: 8328 + components: + - pos: 42.5,-21.5 + parent: 1 + type: Transform + - uid: 8491 + components: + - pos: -20.5,-55.5 + parent: 1 + type: Transform + - uid: 8492 + components: + - pos: -20.5,-53.5 + parent: 1 + type: Transform + - uid: 8493 + components: + - pos: -22.5,-51.5 + parent: 1 + type: Transform + - uid: 8497 + components: + - pos: -22.5,-50.5 + parent: 1 + type: Transform + - uid: 8501 + components: + - pos: -22.5,-48.5 + parent: 1 + type: Transform + - uid: 8502 + components: + - pos: -22.5,-47.5 + parent: 1 + type: Transform + - uid: 8503 + components: + - pos: -22.5,-46.5 + parent: 1 + type: Transform + - uid: 8504 + components: + - pos: -22.5,-45.5 + parent: 1 + type: Transform + - uid: 8505 + components: + - pos: -21.5,-45.5 + parent: 1 + type: Transform + - uid: 8507 + components: + - pos: -19.5,-45.5 + parent: 1 + type: Transform + - uid: 8509 + components: + - pos: -8.5,-36.5 + parent: 1 + type: Transform + - uid: 8510 + components: + - pos: -7.5,-36.5 + parent: 1 + type: Transform + - uid: 8511 + components: + - pos: -7.5,-37.5 + parent: 1 + type: Transform + - uid: 8512 + components: + - pos: -6.5,-37.5 + parent: 1 + type: Transform + - uid: 8514 + components: + - pos: -4.5,-37.5 + parent: 1 + type: Transform + - uid: 8515 + components: + - pos: -3.5,-37.5 + parent: 1 + type: Transform + - uid: 8517 + components: + - pos: -1.5,-37.5 + parent: 1 + type: Transform + - uid: 8519 + components: + - pos: 18.5,-31.5 + parent: 1 + type: Transform + - uid: 8520 + components: + - pos: 19.5,-31.5 + parent: 1 + type: Transform + - uid: 8521 + components: + - pos: 20.5,-31.5 + parent: 1 + type: Transform + - uid: 8524 + components: + - pos: 23.5,-31.5 + parent: 1 + type: Transform + - uid: 8526 + components: + - pos: 40.5,-26.5 + parent: 1 + type: Transform + - uid: 8528 + components: + - pos: 32.5,-27.5 + parent: 1 + type: Transform + - uid: 8529 + components: + - pos: 33.5,-27.5 + parent: 1 + type: Transform + - uid: 8530 + components: + - pos: 34.5,-27.5 + parent: 1 + type: Transform + - uid: 8532 + components: + - pos: 36.5,-27.5 + parent: 1 + type: Transform + - uid: 8534 + components: + - pos: 38.5,-27.5 + parent: 1 + type: Transform + - uid: 8536 + components: + - pos: 40.5,-24.5 + parent: 1 + type: Transform + - uid: 8537 + components: + - rot: 3.141592653589793 rad + pos: 40.5,-23.5 + parent: 1 + type: Transform + - uid: 8539 + components: + - pos: 43.5,-21.5 + parent: 1 + type: Transform + - uid: 8541 + components: + - pos: 45.5,-21.5 + parent: 1 + type: Transform + - uid: 8542 + components: + - pos: 46.5,-21.5 + parent: 1 + type: Transform + - uid: 8544 + components: + - pos: -13.5,39.5 + parent: 1 + type: Transform + - uid: 8545 + components: + - pos: 48.5,-21.5 + parent: 1 + type: Transform + - uid: 8546 + components: + - pos: 49.5,-19.5 + parent: 1 + type: Transform + - uid: 8547 + components: + - pos: 49.5,-18.5 + parent: 1 + type: Transform + - uid: 8548 + components: + - pos: 49.5,-17.5 + parent: 1 + type: Transform + - uid: 8550 + components: + - pos: 49.5,-15.5 + parent: 1 + type: Transform + - uid: 8551 + components: + - pos: 49.5,-14.5 + parent: 1 + type: Transform + - uid: 8552 + components: + - pos: 49.5,-13.5 + parent: 1 + type: Transform + - uid: 8553 + components: + - pos: 49.5,-12.5 + parent: 1 + type: Transform + - uid: 8555 + components: + - pos: 49.5,-10.5 + parent: 1 + type: Transform + - uid: 8556 + components: + - pos: 49.5,-9.5 + parent: 1 + type: Transform + - uid: 8557 + components: + - pos: 49.5,-8.5 + parent: 1 + type: Transform + - uid: 8558 + components: + - pos: 49.5,-7.5 + parent: 1 + type: Transform + - uid: 8560 + components: + - pos: 49.5,-5.5 + parent: 1 + type: Transform + - uid: 8561 + components: + - pos: 49.5,-4.5 + parent: 1 + type: Transform + - uid: 8562 + components: + - pos: 49.5,-3.5 + parent: 1 + type: Transform + - uid: 8563 + components: + - pos: 49.5,-2.5 + parent: 1 + type: Transform + - uid: 8566 + components: + - pos: 49.5,27.5 + parent: 1 + type: Transform + - uid: 8567 + components: + - pos: 49.5,28.5 + parent: 1 + type: Transform + - uid: 8568 + components: + - pos: 49.5,29.5 + parent: 1 + type: Transform + - uid: 8569 + components: + - pos: 49.5,30.5 + parent: 1 + type: Transform + - uid: 8571 + components: + - pos: 49.5,32.5 + parent: 1 + type: Transform + - uid: 8572 + components: + - pos: 49.5,33.5 + parent: 1 + type: Transform + - uid: 8574 + components: + - pos: 49.5,35.5 + parent: 1 + type: Transform + - uid: 8576 + components: + - pos: 48.5,37.5 + parent: 1 + type: Transform + - uid: 8577 + components: + - pos: 47.5,37.5 + parent: 1 + type: Transform + - uid: 8579 + components: + - pos: 45.5,37.5 + parent: 1 + type: Transform + - uid: 8580 + components: + - pos: 44.5,37.5 + parent: 1 + type: Transform + - uid: 8581 + components: + - pos: 43.5,37.5 + parent: 1 + type: Transform + - uid: 8583 + components: + - pos: 41.5,37.5 + parent: 1 + type: Transform + - uid: 8584 + components: + - pos: 4.5,34.5 + parent: 1 + type: Transform + - uid: 8585 + components: + - pos: 4.5,35.5 + parent: 1 + type: Transform + - uid: 8587 + components: + - pos: 4.5,45.5 + parent: 1 + type: Transform + - uid: 8589 + components: + - pos: 3.5,39.5 + parent: 1 + type: Transform + - uid: 8590 + components: + - pos: 2.5,41.5 + parent: 1 + type: Transform + - uid: 8591 + components: + - pos: 2.5,42.5 + parent: 1 + type: Transform + - uid: 8593 + components: + - pos: 3.5,45.5 + parent: 1 + type: Transform + - uid: 8594 + components: + - pos: 7.5,51.5 + parent: 1 + type: Transform + - uid: 8595 + components: + - pos: 6.5,45.5 + parent: 1 + type: Transform + - uid: 8598 + components: + - pos: 7.5,48.5 + parent: 1 + type: Transform + - uid: 8599 + components: + - pos: 7.5,49.5 + parent: 1 + type: Transform + - uid: 8602 + components: + - pos: 7.5,52.5 + parent: 1 + type: Transform + - uid: 8603 + components: + - pos: 7.5,53.5 + parent: 1 + type: Transform + - uid: 8606 + components: + - pos: 7.5,56.5 + parent: 1 + type: Transform + - uid: 8607 + components: + - pos: 7.5,57.5 + parent: 1 + type: Transform + - uid: 8608 + components: + - pos: 7.5,58.5 + parent: 1 + type: Transform + - uid: 8611 + components: + - pos: 4.5,59.5 + parent: 1 + type: Transform + - uid: 8612 + components: + - pos: 3.5,59.5 + parent: 1 + type: Transform + - uid: 8613 + components: + - pos: 2.5,59.5 + parent: 1 + type: Transform + - uid: 8615 + components: + - pos: 0.5,59.5 + parent: 1 + type: Transform + - uid: 8617 + components: + - pos: -2.5,60.5 + parent: 1 + type: Transform + - uid: 8618 + components: + - pos: -3.5,60.5 + parent: 1 + type: Transform + - uid: 8619 + components: + - pos: -4.5,60.5 + parent: 1 + type: Transform + - uid: 8620 + components: + - pos: -5.5,60.5 + parent: 1 + type: Transform + - uid: 8622 + components: + - pos: -7.5,60.5 + parent: 1 + type: Transform + - uid: 8624 + components: + - pos: -9.5,60.5 + parent: 1 + type: Transform + - uid: 8625 + components: + - pos: -10.5,60.5 + parent: 1 + type: Transform + - uid: 8627 + components: + - pos: -12.5,60.5 + parent: 1 + type: Transform + - uid: 8629 + components: + - pos: -14.5,58.5 + parent: 1 + type: Transform + - uid: 8630 + components: + - pos: -14.5,57.5 + parent: 1 + type: Transform + - uid: 8631 + components: + - pos: -14.5,56.5 + parent: 1 + type: Transform + - uid: 8633 + components: + - pos: -14.5,54.5 + parent: 1 + type: Transform + - uid: 8634 + components: + - pos: -14.5,53.5 + parent: 1 + type: Transform + - uid: 8635 + components: + - pos: -14.5,52.5 + parent: 1 + type: Transform + - uid: 8636 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,45.5 + parent: 1 + type: Transform + - uid: 8638 + components: + - pos: -14.5,49.5 + parent: 1 + type: Transform + - uid: 8639 + components: + - pos: -14.5,48.5 + parent: 1 + type: Transform + - uid: 8640 + components: + - pos: -14.5,47.5 + parent: 1 + type: Transform + - uid: 8643 + components: + - pos: -12.5,44.5 + parent: 1 + type: Transform + - uid: 8645 + components: + - pos: -12.5,42.5 + parent: 1 + type: Transform + - uid: 8646 + components: + - pos: -12.5,41.5 + parent: 1 + type: Transform + - uid: 8648 + components: + - pos: -14.5,37.5 + parent: 1 + type: Transform + - uid: 8652 + components: + - pos: -17.5,36.5 + parent: 1 + type: Transform + - uid: 8653 + components: + - pos: -18.5,36.5 + parent: 1 + type: Transform + - uid: 8654 + components: + - pos: -19.5,36.5 + parent: 1 + type: Transform + - uid: 8655 + components: + - pos: -21.5,35.5 + parent: 1 + type: Transform + - uid: 8657 + components: + - pos: -21.5,37.5 + parent: 1 + type: Transform + - uid: 8658 + components: + - pos: -21.5,38.5 + parent: 1 + type: Transform + - uid: 8659 + components: + - pos: -21.5,39.5 + parent: 1 + type: Transform + - uid: 8661 + components: + - pos: -21.5,41.5 + parent: 1 + type: Transform + - uid: 8662 + components: + - pos: -21.5,42.5 + parent: 1 + type: Transform + - uid: 8664 + components: + - pos: -23.5,42.5 + parent: 1 + type: Transform + - uid: 8665 + components: + - pos: -24.5,42.5 + parent: 1 + type: Transform + - uid: 8666 + components: + - pos: -24.5,43.5 + parent: 1 + type: Transform + - uid: 8667 + components: + - pos: -24.5,44.5 + parent: 1 + type: Transform + - uid: 8668 + components: + - pos: -25.5,44.5 + parent: 1 + type: Transform + - uid: 8669 + components: + - pos: -26.5,44.5 + parent: 1 + type: Transform + - uid: 8670 + components: + - pos: -27.5,44.5 + parent: 1 + type: Transform + - uid: 8672 + components: + - pos: -29.5,44.5 + parent: 1 + type: Transform + - uid: 8673 + components: + - pos: -30.5,44.5 + parent: 1 + type: Transform + - uid: 8674 + components: + - pos: -30.5,43.5 + parent: 1 + type: Transform + - uid: 8675 + components: + - pos: -30.5,42.5 + parent: 1 + type: Transform + - uid: 8676 + components: + - pos: -31.5,42.5 + parent: 1 + type: Transform + - uid: 8678 + components: + - pos: -33.5,42.5 + parent: 1 + type: Transform + - uid: 8679 + components: + - pos: -33.5,40.5 + parent: 1 + type: Transform + - uid: 8680 + components: + - pos: -33.5,39.5 + parent: 1 + type: Transform + - uid: 8682 + components: + - pos: -33.5,37.5 + parent: 1 + type: Transform + - uid: 8683 + components: + - pos: -33.5,36.5 + parent: 1 + type: Transform + - uid: 8685 + components: + - pos: -33.5,34.5 + parent: 1 + type: Transform + - uid: 8687 + components: + - pos: -34.5,29.5 + parent: 1 + type: Transform + - uid: 8688 + components: + - pos: -32.5,31.5 + parent: 1 + type: Transform + - uid: 8689 + components: + - pos: -32.5,30.5 + parent: 1 + type: Transform + - uid: 8691 + components: + - pos: -32.5,28.5 + parent: 1 + type: Transform + - uid: 8693 + components: + - pos: -36.5,29.5 + parent: 1 + type: Transform + - uid: 8695 + components: + - pos: -38.5,29.5 + parent: 1 + type: Transform + - uid: 8696 + components: + - pos: -39.5,29.5 + parent: 1 + type: Transform + - uid: 8697 + components: + - pos: -40.5,29.5 + parent: 1 + type: Transform + - uid: 8699 + components: + - pos: -40.5,27.5 + parent: 1 + type: Transform + - uid: 8700 + components: + - pos: -40.5,26.5 + parent: 1 + type: Transform + - uid: 8702 + components: + - pos: -42.5,26.5 + parent: 1 + type: Transform + - uid: 8703 + components: + - pos: -44.5,25.5 + parent: 1 + type: Transform + - uid: 8705 + components: + - pos: -44.5,23.5 + parent: 1 + type: Transform + - uid: 8706 + components: + - pos: -44.5,22.5 + parent: 1 + type: Transform + - uid: 8708 + components: + - pos: -44.5,20.5 + parent: 1 + type: Transform + - uid: 8709 + components: + - pos: -44.5,19.5 + parent: 1 + type: Transform + - uid: 8711 + components: + - pos: -44.5,17.5 + parent: 1 + type: Transform + - uid: 8713 + components: + - pos: 13.5,36.5 + parent: 1 + type: Transform + - uid: 8714 + components: + - pos: 14.5,36.5 + parent: 1 + type: Transform + - uid: 8715 + components: + - pos: 15.5,36.5 + parent: 1 + type: Transform + - uid: 8717 + components: + - pos: 17.5,38.5 + parent: 1 + type: Transform + - uid: 8718 + components: + - pos: 18.5,38.5 + parent: 1 + type: Transform + - uid: 8720 + components: + - pos: 20.5,38.5 + parent: 1 + type: Transform + - uid: 8721 + components: + - pos: 36.5,38.5 + parent: 1 + type: Transform + - uid: 8723 + components: + - pos: 38.5,38.5 + parent: 1 + type: Transform + - uid: 8724 + components: + - pos: 39.5,38.5 + parent: 1 + type: Transform + - uid: 8730 + components: + - pos: -46.5,-13.5 + parent: 1 + type: Transform + - uid: 8732 + components: + - pos: -46.5,-15.5 + parent: 1 + type: Transform + - uid: 8733 + components: + - pos: -46.5,-16.5 + parent: 1 + type: Transform + - uid: 8734 + components: + - pos: -46.5,-17.5 + parent: 1 + type: Transform + - uid: 8736 + components: + - pos: -46.5,-19.5 + parent: 1 + type: Transform + - uid: 8738 + components: + - pos: -45.5,-23.5 + parent: 1 + type: Transform + - uid: 8740 + components: + - pos: -45.5,-25.5 + parent: 1 + type: Transform + - uid: 8741 + components: + - pos: -45.5,-26.5 + parent: 1 + type: Transform + - uid: 8742 + components: + - pos: -45.5,-27.5 + parent: 1 + type: Transform + - uid: 8743 + components: + - pos: -44.5,-27.5 + parent: 1 + type: Transform + - uid: 8745 + components: + - pos: -42.5,-27.5 + parent: 1 + type: Transform + - uid: 8746 + components: + - pos: -41.5,-27.5 + parent: 1 + type: Transform + - uid: 8748 + components: + - pos: -39.5,-27.5 + parent: 1 + type: Transform + - uid: 8750 + components: + - pos: -44.5,-6.5 + parent: 1 + type: Transform + - uid: 8751 + components: + - pos: -44.5,-5.5 + parent: 1 + type: Transform + - uid: 8753 + components: + - pos: -44.5,-3.5 + parent: 1 + type: Transform + - uid: 8754 + components: + - pos: -44.5,-2.5 + parent: 1 + type: Transform + - uid: 8755 + components: + - pos: -44.5,-1.5 + parent: 1 + type: Transform + - uid: 8757 + components: + - pos: -44.5,0.5 + parent: 1 + type: Transform + - uid: 10442 + components: + - rot: 3.141592653589793 rad + pos: 44.5,29.5 + parent: 1 + type: Transform + - uid: 12312 + components: + - rot: 3.141592653589793 rad + pos: -1.5,65.5 + parent: 1 + type: Transform + - uid: 12313 + components: + - rot: 3.141592653589793 rad + pos: -0.5,66.5 + parent: 1 + type: Transform + - uid: 12314 + components: + - rot: 3.141592653589793 rad + pos: 0.5,65.5 + parent: 1 + type: Transform + - uid: 12315 + components: + - rot: 3.141592653589793 rad + pos: -0.5,64.5 + parent: 1 + type: Transform + - uid: 12316 + components: + - rot: 3.141592653589793 rad + pos: -4.5,62.5 + parent: 1 + type: Transform + - uid: 12318 + components: + - rot: 3.141592653589793 rad + pos: -4.5,64.5 + parent: 1 + type: Transform + - uid: 12319 + components: + - rot: 3.141592653589793 rad + pos: -4.5,65.5 + parent: 1 + type: Transform + - uid: 12320 + components: + - rot: 3.141592653589793 rad + pos: -4.5,67.5 + parent: 1 + type: Transform + - uid: 12322 + components: + - rot: 3.141592653589793 rad + pos: -4.5,68.5 + parent: 1 + type: Transform + - uid: 12323 + components: + - rot: 3.141592653589793 rad + pos: -2.5,69.5 + parent: 1 + type: Transform + - uid: 12325 + components: + - rot: 3.141592653589793 rad + pos: -0.5,69.5 + parent: 1 + type: Transform + - uid: 12326 + components: + - rot: 3.141592653589793 rad + pos: 0.5,69.5 + parent: 1 + type: Transform + - uid: 12327 + components: + - rot: 3.141592653589793 rad + pos: 1.5,69.5 + parent: 1 + type: Transform + - uid: 12328 + components: + - rot: 3.141592653589793 rad + pos: 3.5,68.5 + parent: 1 + type: Transform + - uid: 12330 + components: + - rot: 3.141592653589793 rad + pos: 3.5,66.5 + parent: 1 + type: Transform + - uid: 12331 + components: + - rot: 3.141592653589793 rad + pos: 3.5,65.5 + parent: 1 + type: Transform + - uid: 12332 + components: + - rot: 3.141592653589793 rad + pos: 3.5,64.5 + parent: 1 + type: Transform + - uid: 12333 + components: + - rot: 3.141592653589793 rad + pos: 3.5,63.5 + parent: 1 + type: Transform + - uid: 12334 + components: + - rot: 3.141592653589793 rad + pos: 0.5,61.5 + parent: 1 + type: Transform + - uid: 12335 + components: + - rot: 3.141592653589793 rad + pos: 1.5,61.5 + parent: 1 + type: Transform + - uid: 12368 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-2.5 + parent: 1 + type: Transform + - uid: 12461 + components: + - pos: 6.5,-5.5 + parent: 1 + type: Transform + - uid: 12527 + components: + - pos: -26.5,-29.5 + parent: 1 + type: Transform + - uid: 12528 + components: + - pos: -26.5,-28.5 + parent: 1 + type: Transform +- proto: GrilleBroken + entities: + - uid: 1786 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,25.5 + parent: 1 + type: Transform + - uid: 1790 + components: + - rot: 3.141592653589793 rad + pos: -27.5,23.5 + parent: 1 + type: Transform + - uid: 2917 + components: + - pos: -8.5,-53.5 + parent: 1 + type: Transform + - uid: 2922 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-48.5 + parent: 1 + type: Transform + - uid: 2936 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-40.5 + parent: 1 + type: Transform + - uid: 2939 + components: + - pos: -12.5,-37.5 + parent: 1 + type: Transform + - uid: 2944 + components: + - pos: -20.5,-40.5 + parent: 1 + type: Transform + - uid: 2950 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-34.5 + parent: 1 + type: Transform + - uid: 2973 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-32.5 + parent: 1 + type: Transform + - uid: 2981 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-32.5 + parent: 1 + type: Transform + - uid: 3012 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-32.5 + parent: 1 + type: Transform + - uid: 3018 + components: + - pos: -36.5,-27.5 + parent: 1 + type: Transform + - uid: 3020 + components: + - pos: -26.5,-35.5 + parent: 1 + type: Transform + - uid: 3022 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-31.5 + parent: 1 + type: Transform + - uid: 3023 + components: + - pos: -36.5,-32.5 + parent: 1 + type: Transform + - uid: 3028 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-36.5 + parent: 1 + type: Transform + - uid: 3032 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-38.5 + parent: 1 + type: Transform + - uid: 3034 + components: + - pos: -34.5,-36.5 + parent: 1 + type: Transform + - uid: 3035 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-38.5 + parent: 1 + type: Transform + - uid: 3041 + components: + - pos: -28.5,-36.5 + parent: 1 + type: Transform + - uid: 3042 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-33.5 + parent: 1 + type: Transform + - uid: 3046 + components: + - pos: -20.5,-54.5 + parent: 1 + type: Transform + - uid: 8485 + components: + - pos: -22.5,-49.5 + parent: 1 + type: Transform + - uid: 8500 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-45.5 + parent: 1 + type: Transform + - uid: 8506 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-36.5 + parent: 1 + type: Transform + - uid: 8508 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-37.5 + parent: 1 + type: Transform + - uid: 8513 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-37.5 + parent: 1 + type: Transform + - uid: 8516 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-31.5 + parent: 1 + type: Transform + - uid: 8518 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-31.5 + parent: 1 + type: Transform + - uid: 8522 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-31.5 + parent: 1 + type: Transform + - uid: 8523 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-27.5 + parent: 1 + type: Transform + - uid: 8525 + components: + - pos: 40.5,-22.5 + parent: 1 + type: Transform + - uid: 8527 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-25.5 + parent: 1 + type: Transform + - uid: 8531 + components: + - rot: 3.141592653589793 rad + pos: 40.5,-27.5 + parent: 1 + type: Transform + - uid: 8533 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-27.5 + parent: 1 + type: Transform + - uid: 8535 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-27.5 + parent: 1 + type: Transform + - uid: 8538 + components: + - rot: 3.141592653589793 rad + pos: 47.5,-21.5 + parent: 1 + type: Transform + - uid: 8540 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,-21.5 + parent: 1 + type: Transform + - uid: 8543 + components: + - rot: -1.5707963267948966 rad + pos: 49.5,-16.5 + parent: 1 + type: Transform + - uid: 8549 + components: + - pos: 49.5,-11.5 + parent: 1 + type: Transform + - uid: 8554 + components: + - rot: 3.141592653589793 rad + pos: 49.5,-6.5 + parent: 1 + type: Transform + - uid: 8559 + components: + - pos: 49.5,-1.5 + parent: 1 + type: Transform + - uid: 8564 + components: + - pos: 49.5,31.5 + parent: 1 + type: Transform + - uid: 8565 + components: + - rot: 3.141592653589793 rad + pos: 49.5,34.5 + parent: 1 + type: Transform + - uid: 8570 + components: + - rot: -1.5707963267948966 rad + pos: 49.5,37.5 + parent: 1 + type: Transform + - uid: 8573 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,37.5 + parent: 1 + type: Transform + - uid: 8575 + components: + - pos: 46.5,37.5 + parent: 1 + type: Transform + - uid: 8578 + components: + - rot: 3.141592653589793 rad + pos: -21.5,36.5 + parent: 1 + type: Transform + - uid: 8582 + components: + - pos: 4.5,36.5 + parent: 1 + type: Transform + - uid: 8586 + components: + - pos: 2.5,43.5 + parent: 1 + type: Transform + - uid: 8588 + components: + - rot: 3.141592653589793 rad + pos: 7.5,55.5 + parent: 1 + type: Transform + - uid: 8592 + components: + - pos: 7.5,54.5 + parent: 1 + type: Transform + - uid: 8597 + components: + - rot: 3.141592653589793 rad + pos: 7.5,47.5 + parent: 1 + type: Transform + - uid: 8600 + components: + - rot: 3.141592653589793 rad + pos: 7.5,50.5 + parent: 1 + type: Transform + - uid: 8601 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,45.5 + parent: 1 + type: Transform + - uid: 8604 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,60.5 + parent: 1 + type: Transform + - uid: 8605 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,59.5 + parent: 1 + type: Transform + - uid: 8610 + components: + - pos: 1.5,59.5 + parent: 1 + type: Transform + - uid: 8614 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,60.5 + parent: 1 + type: Transform + - uid: 8616 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,60.5 + parent: 1 + type: Transform + - uid: 8621 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,60.5 + parent: 1 + type: Transform + - uid: 8623 + components: + - pos: -14.5,59.5 + parent: 1 + type: Transform + - uid: 8626 + components: + - pos: -14.5,55.5 + parent: 1 + type: Transform + - uid: 8628 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,50.5 + parent: 1 + type: Transform + - uid: 8632 + components: + - rot: 3.141592653589793 rad + pos: -14.5,51.5 + parent: 1 + type: Transform + - uid: 8637 + components: + - pos: -14.5,46.5 + parent: 1 + type: Transform + - uid: 8641 + components: + - pos: -12.5,43.5 + parent: 1 + type: Transform + - uid: 8642 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,36.5 + parent: 1 + type: Transform + - uid: 8644 + components: + - rot: 3.141592653589793 rad + pos: -13.5,38.5 + parent: 1 + type: Transform + - uid: 8647 + components: + - rot: 3.141592653589793 rad + pos: -33.5,41.5 + parent: 1 + type: Transform + - uid: 8649 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,36.5 + parent: 1 + type: Transform + - uid: 8650 + components: + - rot: 3.141592653589793 rad + pos: -33.5,33.5 + parent: 1 + type: Transform + - uid: 8651 + components: + - pos: -26.5,-30.5 + parent: 1 + type: Transform + - uid: 8656 + components: + - pos: -33.5,38.5 + parent: 1 + type: Transform + - uid: 8660 + components: + - pos: -21.5,40.5 + parent: 1 + type: Transform + - uid: 8663 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,42.5 + parent: 1 + type: Transform + - uid: 8671 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,44.5 + parent: 1 + type: Transform + - uid: 8677 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,35.5 + parent: 1 + type: Transform + - uid: 8681 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,42.5 + parent: 1 + type: Transform + - uid: 8684 + components: + - pos: -40.5,28.5 + parent: 1 + type: Transform + - uid: 8686 + components: + - pos: -37.5,29.5 + parent: 1 + type: Transform + - uid: 8690 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,29.5 + parent: 1 + type: Transform + - uid: 8692 + components: + - pos: -32.5,29.5 + parent: 1 + type: Transform + - uid: 8694 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,26.5 + parent: 1 + type: Transform + - uid: 8698 + components: + - rot: 3.141592653589793 rad + pos: -44.5,16.5 + parent: 1 + type: Transform + - uid: 8701 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,21.5 + parent: 1 + type: Transform + - uid: 8704 + components: + - rot: 3.141592653589793 rad + pos: -44.5,18.5 + parent: 1 + type: Transform + - uid: 8707 + components: + - pos: -44.5,24.5 + parent: 1 + type: Transform + - uid: 8710 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,36.5 + parent: 1 + type: Transform + - uid: 8712 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,38.5 + parent: 1 + type: Transform + - uid: 8716 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,38.5 + parent: 1 + type: Transform + - uid: 8719 + components: + - pos: -46.5,-14.5 + parent: 1 + type: Transform + - uid: 8722 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-18.5 + parent: 1 + type: Transform + - uid: 8731 + components: + - rot: 3.141592653589793 rad + pos: -46.5,-20.5 + parent: 1 + type: Transform + - uid: 8735 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,-27.5 + parent: 1 + type: Transform + - uid: 8737 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,-24.5 + parent: 1 + type: Transform + - uid: 8739 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,-27.5 + parent: 1 + type: Transform + - uid: 8744 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-7.5 + parent: 1 + type: Transform + - uid: 8747 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-4.5 + parent: 1 + type: Transform + - uid: 8749 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-0.5 + parent: 1 + type: Transform + - uid: 8756 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-34.5 + parent: 1 + type: Transform + - uid: 8767 + components: + - rot: 3.141592653589793 rad + pos: 3.5,38.5 + parent: 1 + type: Transform + - uid: 12317 + components: + - pos: -4.5,66.5 + parent: 1 + type: Transform + - uid: 12321 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,69.5 + parent: 1 + type: Transform + - uid: 12324 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,69.5 + parent: 1 + type: Transform + - uid: 12329 + components: + - pos: 3.5,67.5 + parent: 1 + type: Transform + - uid: 12336 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,61.5 + parent: 1 + type: Transform + - uid: 12337 + components: + - rot: 3.141592653589793 rad + pos: -4.5,63.5 + parent: 1 + type: Transform + - uid: 12338 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,62.5 + parent: 1 + type: Transform + - uid: 12341 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,61.5 + parent: 1 + type: Transform + - uid: 12529 + components: + - pos: -26.5,-27.5 + parent: 1 + type: Transform + - uid: 12530 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-30.5 + parent: 1 + type: Transform +- proto: Handcuffs + entities: + - uid: 5063 + components: + - pos: -0.47162104,32.53128 + parent: 1 + type: Transform +- proto: HandheldGPSBasic + entities: + - uid: 12545 + components: + - pos: 20.351448,-20.427984 + parent: 1 + type: Transform + - uid: 12546 + components: + - pos: 20.632698,-20.552984 + parent: 1 + type: Transform +- proto: HandheldHealthAnalyzer + entities: + - uid: 12428 + components: + - pos: -12.421777,-11.625296 + parent: 1 + type: Transform +- proto: HandLabeler + entities: + - uid: 5093 + components: + - pos: -4.5167303,19.595882 + parent: 1 + type: Transform + - uid: 12544 + components: + - pos: 11.496555,-20.355099 + parent: 1 + type: Transform +- proto: HarpInstrument + entities: + - uid: 2846 + components: + - pos: -18.5,-50.5 + parent: 1 + type: Transform +- proto: HeadSkeleton + entities: + - uid: 8257 + components: + - flags: SessionSpecific + desc: jim :) + name: jim :) + type: MetaData + - pos: 25.50356,16.52645 + parent: 1 + type: Transform +- proto: Hemostat + entities: + - uid: 8243 + components: + - pos: -24.61685,20.770723 + parent: 1 + type: Transform + - uid: 9627 + components: + - pos: 18.467201,27.515732 + parent: 1 + type: Transform +- proto: HighSecArmoryLocked + entities: + - uid: 3326 + components: + - pos: 35.5,11.5 + parent: 1 + type: Transform +- proto: HighSecCommandLocked + entities: + - uid: 3283 + components: + - pos: -3.5,26.5 + parent: 1 + type: Transform + - uid: 3612 + components: + - pos: -6.5,47.5 + parent: 1 + type: Transform + - uid: 3613 + components: + - pos: -1.5,52.5 + parent: 1 + type: Transform + - uid: 3670 + components: + - pos: -40.5,17.5 + parent: 1 + type: Transform + - uid: 7081 + components: + - pos: -5.5,-32.5 + parent: 1 + type: Transform +- proto: HolofanProjector + entities: + - uid: 7144 + components: + - pos: 31.574986,-16.324593 + parent: 1 + type: Transform +- proto: HospitalCurtainsOpen + entities: + - uid: 794 + components: + - pos: 25.5,12.5 + parent: 1 + type: Transform + - uid: 1804 + components: + - pos: 28.5,5.5 + parent: 1 + type: Transform + - uid: 1843 + components: + - pos: -20.5,-3.5 + parent: 1 + type: Transform + - uid: 1852 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,16.5 + parent: 1 + type: Transform + - uid: 1855 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,7.5 + parent: 1 + type: Transform + - uid: 1856 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,7.5 + parent: 1 + type: Transform + - uid: 1857 + components: + - pos: -17.5,7.5 + parent: 1 + type: Transform + - uid: 1858 + components: + - pos: -18.5,7.5 + parent: 1 + type: Transform + - uid: 5371 + components: + - pos: -5.5,19.5 + parent: 1 + type: Transform + - uid: 5372 + components: + - pos: 3.5,31.5 + parent: 1 + type: Transform + - uid: 5376 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,16.5 + parent: 1 + type: Transform + - uid: 5672 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-15.5 + parent: 1 + type: Transform + - uid: 7440 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-17.5 + parent: 1 + type: Transform + - uid: 7718 + components: + - pos: -5.5,-29.5 + parent: 1 + type: Transform + - uid: 7719 + components: + - pos: -1.5,-29.5 + parent: 1 + type: Transform + - uid: 9638 + components: + - pos: 15.5,27.5 + parent: 1 + type: Transform + - uid: 12412 + components: + - pos: -10.5,-28.5 + parent: 1 + type: Transform + - uid: 12413 + components: + - pos: -10.5,-31.5 + parent: 1 + type: Transform + - uid: 12414 + components: + - pos: -13.5,-30.5 + parent: 1 + type: Transform + - uid: 12415 + components: + - pos: -17.5,-53.5 + parent: 1 + type: Transform + - uid: 12416 + components: + - pos: -38.5,-10.5 + parent: 1 + type: Transform + - uid: 12417 + components: + - pos: -31.5,13.5 + parent: 1 + type: Transform +- proto: HydroponicsToolClippers + entities: + - uid: 5462 + components: + - pos: 29.474905,24.50394 + parent: 1 + type: Transform + - uid: 12458 + components: + - pos: -2.512826,-0.5396495 + parent: 1 + type: Transform +- proto: HydroponicsToolHatchet + entities: + - uid: 12460 + components: + - pos: -2.2798755,-0.4458995 + parent: 1 + type: Transform +- proto: HydroponicsToolMiniHoe + entities: + - uid: 5461 + components: + - pos: 29.474905,24.550816 + parent: 1 + type: Transform + - uid: 12457 + components: + - pos: -2.012826,-0.4458995 + parent: 1 + type: Transform +- proto: HydroponicsToolSpade + entities: + - uid: 5463 + components: + - pos: 29.506155,24.550816 + parent: 1 + type: Transform + - uid: 12459 + components: + - pos: -2.465951,-0.3052745 + parent: 1 + type: Transform +- proto: hydroponicsTray + entities: + - uid: 4939 + components: + - pos: 31.5,28.5 + parent: 1 + type: Transform + - uid: 4940 + components: + - pos: 30.5,28.5 + parent: 1 + type: Transform + - uid: 4943 + components: + - pos: 29.5,28.5 + parent: 1 + type: Transform + - uid: 4944 + components: + - pos: 28.5,28.5 + parent: 1 + type: Transform + - uid: 5996 + components: + - pos: 0.5,-2.5 + parent: 1 + type: Transform + - uid: 5997 + components: + - pos: 1.5,-2.5 + parent: 1 + type: Transform + - uid: 5998 + components: + - pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 5999 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 6000 + components: + - pos: 5.5,-2.5 + parent: 1 + type: Transform + - uid: 6001 + components: + - pos: -1.5,-5.5 + parent: 1 + type: Transform + - uid: 6002 + components: + - pos: -1.5,-4.5 + parent: 1 + type: Transform + - uid: 6003 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 6004 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 6005 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform + - uid: 6006 + components: + - pos: 2.5,-4.5 + parent: 1 + type: Transform +- proto: InflatableDoorStack + entities: + - uid: 7147 + components: + - pos: 32.62186,-18.512093 + parent: 1 + type: Transform +- proto: InflatableWallStack + entities: + - uid: 7146 + components: + - pos: 32.40311,-18.355843 + parent: 1 + type: Transform +- proto: IngotGold + entities: + - uid: 4131 + components: + - pos: -1.465405,25.0651 + parent: 1 + type: Transform +- proto: IngotSilver + entities: + - uid: 4137 + components: + - pos: -1.4981794,24.932814 + parent: 1 + type: Transform +- proto: IntercomAll + entities: + - uid: 5491 + components: + - pos: 0.5,22.5 + parent: 1 + type: Transform + - uid: 5492 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,29.5 + parent: 1 + type: Transform +- proto: IntercomCommand + entities: + - uid: 5488 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,27.5 + parent: 1 + type: Transform + - uid: 5489 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,28.5 + parent: 1 + type: Transform + - uid: 5504 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,23.5 + parent: 1 + type: Transform +- proto: IntercomCommon + entities: + - uid: 3910 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,53.5 + parent: 1 + type: Transform + - uid: 3911 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,51.5 + parent: 1 + type: Transform + - uid: 3912 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,53.5 + parent: 1 + type: Transform + - uid: 3913 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,51.5 + parent: 1 + type: Transform +- proto: IntercomEngineering + entities: + - uid: 9272 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-5.5 + parent: 1 + type: Transform + - uid: 9273 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-13.5 + parent: 1 + type: Transform + - uid: 9274 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-12.5 + parent: 1 + type: Transform + - uid: 9275 + components: + - pos: 22.5,-2.5 + parent: 1 + type: Transform + - uid: 9276 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-5.5 + parent: 1 + type: Transform + - uid: 9277 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-15.5 + parent: 1 + type: Transform + - uid: 9278 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-4.5 + parent: 1 + type: Transform +- proto: IntercomMedical + entities: + - uid: 5702 + components: + - rot: 3.141592653589793 rad + pos: -7.5,7.5 + parent: 1 + type: Transform + - uid: 9258 + components: + - rot: 3.141592653589793 rad + pos: -10.5,12.5 + parent: 1 + type: Transform + - uid: 9259 + components: + - pos: -12.5,22.5 + parent: 1 + type: Transform + - uid: 9260 + components: + - rot: 3.141592653589793 rad + pos: -25.5,4.5 + parent: 1 + type: Transform + - uid: 9261 + components: + - pos: -22.5,17.5 + parent: 1 + type: Transform + - uid: 9262 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,21.5 + parent: 1 + type: Transform +- proto: IntercomScience + entities: + - uid: 24 + components: + - pos: -27.5,-4.5 + parent: 1 + type: Transform + - uid: 9263 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-3.5 + parent: 1 + type: Transform + - uid: 9265 + components: + - pos: -14.5,-11.5 + parent: 1 + type: Transform + - uid: 9266 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-16.5 + parent: 1 + type: Transform + - uid: 9267 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-7.5 + parent: 1 + type: Transform +- proto: IntercomSecurity + entities: + - uid: 5302 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,11.5 + parent: 1 + type: Transform + - uid: 5494 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,14.5 + parent: 1 + type: Transform + - uid: 5496 + components: + - pos: 21.5,16.5 + parent: 1 + type: Transform + - uid: 5497 + components: + - rot: 3.141592653589793 rad + pos: 21.5,4.5 + parent: 1 + type: Transform + - uid: 5499 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,14.5 + parent: 1 + type: Transform + - uid: 5500 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,13.5 + parent: 1 + type: Transform + - uid: 5501 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,16.5 + parent: 1 + type: Transform + - uid: 10116 + components: + - pos: 14.5,11.5 + parent: 1 + type: Transform + - uid: 11606 + components: + - pos: 28.5,11.5 + parent: 1 + type: Transform +- proto: IntercomService + entities: + - uid: 9256 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,3.5 + parent: 1 + type: Transform +- proto: IntercomSupply + entities: + - uid: 9268 + components: + - pos: 6.5,-18.5 + parent: 1 + type: Transform + - uid: 9269 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-18.5 + parent: 1 + type: Transform + - uid: 9270 + components: + - pos: 12.5,-24.5 + parent: 1 + type: Transform + - uid: 9271 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-22.5 + parent: 1 + type: Transform +- proto: JanitorialTrolley + entities: + - uid: 12437 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-0.5 + parent: 1 + type: Transform +- proto: JetpackBlueFilled + entities: + - uid: 5005 + components: + - flags: InContainer + type: MetaData + - parent: 4120 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: JetpackMiniFilled + entities: + - uid: 4926 + components: + - pos: 40.56656,21.748663 + parent: 1 + type: Transform + - uid: 4927 + components: + - pos: 40.50406,21.498663 + parent: 1 + type: Transform +- proto: KitchenMicrowave + entities: + - uid: 4942 + components: + - pos: 28.5,24.5 + parent: 1 + type: Transform + - uid: 5968 + components: + - pos: 5.5,1.5 + parent: 1 + type: Transform +- proto: KitchenReagentGrinder + entities: + - uid: 4941 + components: + - pos: 27.5,24.5 + parent: 1 + type: Transform + - uid: 5870 + components: + - pos: -10.5,16.5 + parent: 1 + type: Transform + - uid: 5914 + components: + - pos: -14.5,-1.5 + parent: 1 + type: Transform + - uid: 5967 + components: + - pos: 5.5,3.5 + parent: 1 + type: Transform +- proto: KitchenSpike + entities: + - uid: 5970 + components: + - pos: -1.5,3.5 + parent: 1 + type: Transform +- proto: Lamp + entities: + - uid: 3986 + components: + - pos: -9.510255,48.896393 + parent: 1 + type: Transform + - uid: 3990 + components: + - pos: -8.49463,57.014515 + parent: 1 + type: Transform + - uid: 3991 + components: + - pos: -10.55713,54.97145 + parent: 1 + type: Transform + - uid: 4012 + components: + - pos: -7.5221167,46.845314 + parent: 1 + type: Transform + - uid: 5584 + components: + - pos: -40.604885,-5.037887 + parent: 1 + type: Transform + - uid: 6026 + components: + - pos: -12.614596,-0.4335618 + parent: 1 + type: Transform + - uid: 6048 + components: + - pos: -17.453178,-4.0584826 + parent: 1 + type: Transform + - uid: 7287 + components: + - pos: 16.489933,-23.942678 + parent: 1 + type: Transform + - uid: 8246 + components: + - pos: -9.624902,-11.094046 + parent: 1 + type: Transform + - uid: 9589 + components: + - pos: 40.264347,31.975986 + parent: 1 + type: Transform + - uid: 9590 + components: + - pos: 46.436222,31.944736 + parent: 1 + type: Transform + - uid: 9591 + components: + - pos: 39.451847,33.913486 + parent: 1 + type: Transform + - uid: 9635 + components: + - rot: 1.5707963267948966 rad + pos: 18.518274,26.145664 + parent: 1 + type: Transform +- proto: LampGold + entities: + - uid: 5583 + components: + - pos: -36.27676,-2.084762 + parent: 1 + type: Transform + - uid: 7418 + components: + - pos: 11.72576,-18.556658 + parent: 1 + type: Transform + - uid: 9016 + components: + - pos: -38.493835,-9.175766 + parent: 1 + type: Transform +- proto: LargeBeaker + entities: + - uid: 6087 + components: + - pos: -27.397102,-5.3872204 + parent: 1 + type: Transform +- proto: LightReplacer + entities: + - uid: 7668 + components: + - pos: 12.627049,-0.27726722 + parent: 1 + type: Transform +- proto: LockerAtmosphericsFilled + entities: + - uid: 7128 + components: + - pos: 33.5,-16.5 + parent: 1 + type: Transform + - uid: 7129 + components: + - pos: 32.5,-16.5 + parent: 1 + type: Transform +- proto: LockerBooze + entities: + - uid: 8297 + components: + - pos: -27.5,-13.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerBoozeFilled + entities: + - uid: 5951 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform +- proto: LockerBotanistFilled + entities: + - uid: 3372 + components: + - pos: -0.5,-2.5 + parent: 1 + type: Transform + - uid: 5994 + components: + - pos: -0.5,-1.5 + parent: 1 + type: Transform +- proto: LockerCaptainFilled + entities: + - uid: 4090 + components: + - pos: 3.5,27.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1497 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5926 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerChemistryFilled + entities: + - uid: 5613 + components: + - pos: -13.5,13.5 + parent: 1 + type: Transform +- proto: LockerChiefEngineerFilled + entities: + - uid: 5669 + components: + - pos: 20.5,-15.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5670 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerChiefMedicalOfficerFilled + entities: + - uid: 1867 + components: + - pos: -20.5,16.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 98.0039 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1868 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerDetectiveFilled + entities: + - uid: 5356 + components: + - pos: 27.5,6.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5357 + - 5358 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 3898 + components: + - pos: -2.5,46.5 + parent: 1 + type: Transform + - uid: 6762 + components: + - pos: 18.5,-5.5 + parent: 1 + type: Transform + - uid: 8827 + components: + - pos: -21.5,-24.5 + parent: 1 + type: Transform + - uid: 9138 + components: + - pos: 8.5,-15.5 + parent: 1 + type: Transform + - uid: 9355 + components: + - pos: 8.5,29.5 + parent: 1 + type: Transform + - uid: 9680 + components: + - pos: -28.5,27.5 + parent: 1 + type: Transform +- proto: LockerEngineerFilled + entities: + - uid: 3797 + components: + - pos: 19.5,-3.5 + parent: 1 + type: Transform + - uid: 6770 + components: + - pos: 23.5,-4.5 + parent: 1 + type: Transform + - uid: 6771 + components: + - pos: 23.5,-5.5 + parent: 1 + type: Transform + - uid: 6772 + components: + - pos: 23.5,-6.5 + parent: 1 + type: Transform +- proto: LockerEvidence + entities: + - uid: 12065 + components: + - pos: 13.5,8.5 + parent: 1 + type: Transform + - uid: 12066 + components: + - pos: 16.5,8.5 + parent: 1 + type: Transform + - uid: 12067 + components: + - pos: 19.5,8.5 + parent: 1 + type: Transform +- proto: LockerFreezer + entities: + - uid: 4120 + components: + - pos: -4.5,23.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 4829 + - 4842 + - 5005 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerHeadOfPersonnelFilled + entities: + - uid: 4965 + components: + - pos: -4.5,21.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1497 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5928 + - 5927 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerHeadOfSecurityFilled + entities: + - uid: 5374 + components: + - pos: 29.5,12.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 12478 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerMedicalFilled + entities: + - uid: 1908 + components: + - pos: -26.5,9.5 + parent: 1 + type: Transform + - uid: 1909 + components: + - pos: -25.5,9.5 + parent: 1 + type: Transform + - uid: 5917 + components: + - pos: -23.5,9.5 + parent: 1 + type: Transform + - uid: 12608 + components: + - pos: 21.5,5.5 + parent: 1 + type: Transform +- proto: LockerMedicineFilled + entities: + - uid: 1905 + components: + - pos: -19.5,11.5 + parent: 1 + type: Transform + - uid: 1910 + components: + - pos: -18.5,11.5 + parent: 1 + type: Transform +- proto: LockerQuarterMasterFilled + entities: + - uid: 7443 + components: + - pos: 4.5,-16.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7444 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerResearchDirectorFilled + entities: + - uid: 1845 + components: + - pos: -21.5,-3.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 12418 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerSalvageSpecialistFilled + entities: + - uid: 3594 + components: + - pos: 19.5,-23.5 + parent: 1 + type: Transform + - uid: 7295 + components: + - pos: 18.5,-23.5 + parent: 1 + type: Transform +- proto: LockerScienceFilled + entities: + - uid: 3816 + components: + - pos: -18.5,-0.5 + parent: 1 + type: Transform + - uid: 3817 + components: + - pos: -17.5,-0.5 + parent: 1 + type: Transform + - uid: 3818 + components: + - pos: -16.5,-0.5 + parent: 1 + type: Transform + - uid: 5912 + components: + - pos: -15.5,-0.5 + parent: 1 + type: Transform +- proto: LockerSecurityFilled + entities: + - uid: 764 + components: + - pos: 18.5,14.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 765 + components: + - pos: 18.5,13.5 + parent: 1 + type: Transform + - uid: 766 + components: + - pos: 18.5,12.5 + parent: 1 + type: Transform +- proto: LockerWallMedicalFilled + entities: + - uid: 10854 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,13.5 + parent: 1 + type: Transform + - uid: 10855 + components: + - rot: 3.141592653589793 rad + pos: -13.5,17.5 + parent: 1 + type: Transform +- proto: LockerWardenFilled + entities: + - uid: 5368 + components: + - pos: 27.5,18.5 + parent: 1 + type: Transform +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 6761 + components: + - pos: 18.5,-6.5 + parent: 1 + type: Transform + - uid: 8828 + components: + - pos: -21.5,-25.5 + parent: 1 + type: Transform + - uid: 8831 + components: + - pos: 14.5,-14.5 + parent: 1 + type: Transform + - uid: 9354 + components: + - pos: 8.5,30.5 + parent: 1 + type: Transform + - uid: 9681 + components: + - pos: -27.5,27.5 + parent: 1 + type: Transform +- proto: MachineAnomalyGenerator + entities: + - uid: 6063 + components: + - pos: -26.5,-2.5 + parent: 1 + type: Transform +- proto: MachineAnomalyVessel + entities: + - uid: 6097 + components: + - pos: -31.5,-7.5 + parent: 1 + type: Transform + - uid: 7153 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-6.5 + parent: 1 + type: Transform +- proto: MachineAPE + entities: + - uid: 6093 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-4.5 + parent: 1 + type: Transform + - uid: 6094 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-4.5 + parent: 1 + type: Transform + - uid: 6095 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-5.5 + parent: 1 + type: Transform + - uid: 6096 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-5.5 + parent: 1 + type: Transform +- proto: MachineArtifactAnalyzer + entities: + - uid: 6124 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-13.5 + parent: 1 + type: Transform + - links: + - 6123 + type: DeviceLinkSink +- proto: MagazinePistol + entities: + - uid: 5403 + components: + - pos: 29.556211,16.447828 + parent: 1 + type: Transform +- proto: MagazinePistolSubMachineGunRubber + entities: + - uid: 5311 + components: + - pos: 18.504484,15.628139 + parent: 1 + type: Transform + - uid: 5312 + components: + - pos: 18.77011,15.612514 + parent: 1 + type: Transform +- proto: MagazinePistolSubMachineGunTopMounted + entities: + - uid: 5386 + components: + - pos: 27.431211,14.508017 + parent: 1 + type: Transform + - uid: 5387 + components: + - pos: 27.431211,14.367392 + parent: 1 + type: Transform +- proto: MagazineRifle + entities: + - uid: 5432 + components: + - pos: 38.28125,11.49122 + parent: 1 + type: Transform + - uid: 5433 + components: + - pos: 38.421875,11.506845 + parent: 1 + type: Transform +- proto: MagazineRifleRubber + entities: + - uid: 5434 + components: + - pos: 38.59375,11.506845 + parent: 1 + type: Transform + - uid: 5435 + components: + - pos: 38.75,11.506845 + parent: 1 + type: Transform +- proto: MaintenanceFluffSpawner + entities: + - uid: 8830 + components: + - pos: -25.5,-24.5 + parent: 1 + type: Transform + - uid: 8907 + components: + - pos: -33.5,-5.5 + parent: 1 + type: Transform + - uid: 8914 + components: + - pos: -26.5,-16.5 + parent: 1 + type: Transform + - uid: 8915 + components: + - pos: -33.5,-8.5 + parent: 1 + type: Transform + - uid: 8916 + components: + - pos: -31.5,-2.5 + parent: 1 + type: Transform + - uid: 8920 + components: + - pos: -15.5,-22.5 + parent: 1 + type: Transform + - uid: 8921 + components: + - pos: -5.5,-17.5 + parent: 1 + type: Transform + - uid: 8922 + components: + - pos: -1.5,-17.5 + parent: 1 + type: Transform + - uid: 8923 + components: + - pos: -1.5,-15.5 + parent: 1 + type: Transform + - uid: 8926 + components: + - pos: -27.5,-21.5 + parent: 1 + type: Transform + - uid: 9049 + components: + - pos: -1.5,-7.5 + parent: 1 + type: Transform + - uid: 9146 + components: + - pos: 18.5,-18.5 + parent: 1 + type: Transform + - uid: 9150 + components: + - pos: 9.5,-12.5 + parent: 1 + type: Transform + - uid: 9154 + components: + - pos: 26.5,-20.5 + parent: 1 + type: Transform + - uid: 9167 + components: + - pos: 22.5,-0.5 + parent: 1 + type: Transform + - uid: 9255 + components: + - pos: -36.5,-9.5 + parent: 1 + type: Transform + - uid: 9329 + components: + - pos: -13.5,27.5 + parent: 1 + type: Transform + - uid: 9330 + components: + - pos: 16.5,23.5 + parent: 1 + type: Transform + - uid: 9471 + components: + - pos: 14.5,30.5 + parent: 1 + type: Transform + - uid: 9472 + components: + - pos: 12.5,32.5 + parent: 1 + type: Transform + - uid: 9477 + components: + - pos: 13.5,17.5 + parent: 1 + type: Transform + - uid: 9478 + components: + - pos: 14.5,17.5 + parent: 1 + type: Transform + - uid: 9481 + components: + - pos: 18.5,17.5 + parent: 1 + type: Transform + - uid: 9482 + components: + - pos: 19.5,22.5 + parent: 1 + type: Transform + - uid: 9485 + components: + - pos: 27.5,35.5 + parent: 1 + type: Transform + - uid: 9486 + components: + - pos: 29.5,35.5 + parent: 1 + type: Transform + - uid: 9551 + components: + - pos: 36.5,23.5 + parent: 1 + type: Transform + - uid: 9557 + components: + - pos: 41.5,11.5 + parent: 1 + type: Transform + - uid: 9558 + components: + - pos: 37.5,7.5 + parent: 1 + type: Transform + - uid: 9559 + components: + - pos: 42.5,7.5 + parent: 1 + type: Transform + - uid: 9714 + components: + - pos: -35.5,18.5 + parent: 1 + type: Transform + - uid: 9716 + components: + - pos: -32.5,18.5 + parent: 1 + type: Transform + - uid: 9717 + components: + - pos: -24.5,26.5 + parent: 1 + type: Transform + - uid: 9721 + components: + - pos: -19.5,20.5 + parent: 1 + type: Transform + - uid: 9722 + components: + - pos: -19.5,21.5 + parent: 1 + type: Transform + - uid: 9727 + components: + - pos: -31.5,21.5 + parent: 1 + type: Transform +- proto: MaintenancePlantSpawner + entities: + - uid: 10641 + components: + - pos: -28.5,24.5 + parent: 1 + type: Transform + - uid: 10642 + components: + - pos: 28.5,-18.5 + parent: 1 + type: Transform + - uid: 10643 + components: + - pos: 20.5,35.5 + parent: 1 + type: Transform +- proto: MaintenanceToolSpawner + entities: + - uid: 8832 + components: + - pos: -23.5,-25.5 + parent: 1 + type: Transform + - uid: 8903 + components: + - pos: -41.5,-9.5 + parent: 1 + type: Transform + - uid: 8905 + components: + - pos: -33.5,-6.5 + parent: 1 + type: Transform + - uid: 8906 + components: + - pos: -30.5,-2.5 + parent: 1 + type: Transform + - uid: 8912 + components: + - pos: -24.5,-13.5 + parent: 1 + type: Transform + - uid: 8913 + components: + - pos: -26.5,-15.5 + parent: 1 + type: Transform + - uid: 8918 + components: + - pos: -18.5,-20.5 + parent: 1 + type: Transform + - uid: 8919 + components: + - pos: -14.5,-22.5 + parent: 1 + type: Transform + - uid: 8924 + components: + - pos: -1.5,-16.5 + parent: 1 + type: Transform + - uid: 8925 + components: + - pos: -4.5,-17.5 + parent: 1 + type: Transform + - uid: 9145 + components: + - pos: 19.5,-18.5 + parent: 1 + type: Transform + - uid: 9147 + components: + - pos: 9.5,-11.5 + parent: 1 + type: Transform + - uid: 9148 + components: + - pos: 28.5,-14.5 + parent: 1 + type: Transform + - uid: 9153 + components: + - pos: 26.5,-21.5 + parent: 1 + type: Transform + - uid: 9168 + components: + - pos: 42.5,-1.5 + parent: 1 + type: Transform + - uid: 9169 + components: + - pos: 32.5,-3.5 + parent: 1 + type: Transform + - uid: 9473 + components: + - pos: 12.5,33.5 + parent: 1 + type: Transform + - uid: 9474 + components: + - pos: 12.5,30.5 + parent: 1 + type: Transform + - uid: 9476 + components: + - pos: 12.5,17.5 + parent: 1 + type: Transform + - uid: 9479 + components: + - pos: 16.5,17.5 + parent: 1 + type: Transform + - uid: 9480 + components: + - pos: 23.5,21.5 + parent: 1 + type: Transform + - uid: 9552 + components: + - pos: 36.5,25.5 + parent: 1 + type: Transform + - uid: 9553 + components: + - pos: 41.5,12.5 + parent: 1 + type: Transform + - uid: 9554 + components: + - pos: 38.5,7.5 + parent: 1 + type: Transform + - uid: 9555 + components: + - pos: 42.5,6.5 + parent: 1 + type: Transform + - uid: 9713 + components: + - pos: -34.5,18.5 + parent: 1 + type: Transform + - uid: 9719 + components: + - pos: -22.5,29.5 + parent: 1 + type: Transform + - uid: 9720 + components: + - pos: -7.5,23.5 + parent: 1 + type: Transform + - uid: 9723 + components: + - pos: -28.5,20.5 + parent: 1 + type: Transform + - uid: 9728 + components: + - pos: -32.5,21.5 + parent: 1 + type: Transform + - uid: 9729 + components: + - pos: -28.5,11.5 + parent: 1 + type: Transform +- proto: MaintenanceWeaponSpawner + entities: + - uid: 8834 + components: + - pos: -23.5,-26.5 + parent: 1 + type: Transform + - uid: 8910 + components: + - pos: -31.5,-19.5 + parent: 1 + type: Transform + - uid: 9144 + components: + - pos: 20.5,-18.5 + parent: 1 + type: Transform + - uid: 9170 + components: + - pos: 32.5,-5.5 + parent: 1 + type: Transform + - uid: 9470 + components: + - pos: 21.5,30.5 + parent: 1 + type: Transform + - uid: 9483 + components: + - pos: 19.5,23.5 + parent: 1 + type: Transform + - uid: 9484 + components: + - pos: 23.5,32.5 + parent: 1 + type: Transform + - uid: 9549 + components: + - pos: 36.5,26.5 + parent: 1 + type: Transform + - uid: 9715 + components: + - pos: -22.5,26.5 + parent: 1 + type: Transform + - uid: 9724 + components: + - pos: -28.5,23.5 + parent: 1 + type: Transform +- proto: MaterialCloth + entities: + - uid: 5089 + components: + - pos: 0.3902992,21.580257 + parent: 1 + type: Transform +- proto: MaterialDurathread + entities: + - uid: 5090 + components: + - pos: 0.4215492,21.564632 + parent: 1 + type: Transform +- proto: MaterialReclaimer + entities: + - uid: 7289 + components: + - pos: 21.5,-24.5 + parent: 1 + type: Transform +- proto: MaterialReclaimerMachineCircuitboard + entities: + - uid: 9518 + components: + - pos: -2.569489,-34.556107 + parent: 1 + type: Transform +- proto: MaterialWoodPlank + entities: + - uid: 8495 + components: + - pos: -30.470095,-14.477021 + parent: 1 + type: Transform +- proto: MedicalBed + entities: + - uid: 1853 + components: + - pos: -18.5,5.5 + parent: 1 + type: Transform + - uid: 1854 + components: + - pos: -15.5,5.5 + parent: 1 + type: Transform + - uid: 1862 + components: + - pos: -18.5,16.5 + parent: 1 + type: Transform + - uid: 5339 + components: + - pos: 23.5,6.5 + parent: 1 + type: Transform + - uid: 5607 + components: + - pos: -10.5,18.5 + parent: 1 + type: Transform + - uid: 5618 + components: + - pos: -10.5,21.5 + parent: 1 + type: Transform +- proto: MedicalTechFab + entities: + - uid: 5597 + components: + - pos: -23.5,7.5 + parent: 1 + type: Transform +- proto: MedkitAdvancedFilled + entities: + - uid: 4118 + components: + - pos: -2.430763,27.440598 + parent: 1 + type: Transform + - uid: 5900 + components: + - pos: -26.652166,11.588954 + parent: 1 + type: Transform +- proto: MedkitBruteFilled + entities: + - uid: 5893 + components: + - pos: -24.902317,11.678088 + parent: 1 + type: Transform + - uid: 5897 + components: + - pos: -24.902166,11.526454 + parent: 1 + type: Transform + - uid: 8819 + components: + - pos: -40.48545,-16.453053 + parent: 1 + type: Transform +- proto: MedkitBurnFilled + entities: + - uid: 5891 + components: + - pos: -25.409866,11.671727 + parent: 1 + type: Transform + - uid: 5898 + components: + - pos: -25.402166,11.510829 + parent: 1 + type: Transform +- proto: MedkitCombatFilled + entities: + - uid: 4119 + components: + - pos: -2.4295425,27.687153 + parent: 1 + type: Transform +- proto: MedkitFilled + entities: + - uid: 5059 + components: + - pos: 5.540815,19.460373 + parent: 1 + type: Transform + - uid: 5347 + components: + - pos: 23.535002,7.498471 + parent: 1 + type: Transform + - uid: 5895 + components: + - pos: -24.402317,11.678088 + parent: 1 + type: Transform + - uid: 5896 + components: + - pos: -24.386541,11.526454 + parent: 1 + type: Transform + - uid: 7419 + components: + - pos: 11.436758,-19.113333 + parent: 1 + type: Transform + - uid: 9579 + components: + - pos: 44.521946,6.5499096 + parent: 1 + type: Transform + - uid: 9641 + components: + - pos: -26.512701,21.421293 + parent: 1 + type: Transform +- proto: MedkitO2 + entities: + - uid: 5066 + components: + - pos: -3.487246,31.609404 + parent: 1 + type: Transform +- proto: MedkitOxygenFilled + entities: + - uid: 5352 + components: + - pos: 23.535002,7.373471 + parent: 1 + type: Transform + - uid: 5890 + components: + - pos: -25.909866,11.671727 + parent: 1 + type: Transform + - uid: 5899 + components: + - pos: -25.902166,11.510829 + parent: 1 + type: Transform +- proto: MedkitRadiationFilled + entities: + - uid: 5892 + components: + - pos: -26.402166,11.656432 + parent: 1 + type: Transform +- proto: MedkitToxinFilled + entities: + - uid: 5894 + components: + - pos: -26.394794,11.510829 + parent: 1 + type: Transform +- proto: Mirror + entities: + - uid: 7888 + components: + - pos: -18.5,-23.5 + parent: 1 + type: Transform + - uid: 7889 + components: + - pos: -17.5,-23.5 + parent: 1 + type: Transform + - uid: 7890 + components: + - pos: -16.5,-23.5 + parent: 1 + type: Transform +- proto: MonkeyCube + entities: + - uid: 5990 + components: + - pos: -2.5931392,3.6905057 + parent: 1 + type: Transform +- proto: MonkeyCubeBox + entities: + - uid: 6333 + components: + - pos: -14.498325,-10.477551 + parent: 1 + type: Transform +- proto: MopBucketFull + entities: + - uid: 8847 + components: + - pos: 17.627773,-0.48197973 + parent: 1 + type: Transform + - uid: 9652 + components: + - pos: 13.5359125,24.626709 + parent: 1 + type: Transform + - uid: 11938 + components: + - pos: 13.5359125,25.564209 + parent: 1 + type: Transform +- proto: MopItem + entities: + - uid: 8848 + components: + - pos: 17.455898,-0.46635473 + parent: 1 + type: Transform + - uid: 9654 + components: + - pos: 13.2546625,23.517334 + parent: 1 + type: Transform + - uid: 9657 + components: + - pos: 13.4890375,23.501709 + parent: 1 + type: Transform +- proto: Morgue + entities: + - uid: 1913 + components: + - rot: 3.141592653589793 rad + pos: -25.5,13.5 + parent: 1 + type: Transform + - uid: 1914 + components: + - rot: 3.141592653589793 rad + pos: -26.5,13.5 + parent: 1 + type: Transform + - uid: 1915 + components: + - rot: 3.141592653589793 rad + pos: -24.5,13.5 + parent: 1 + type: Transform + - uid: 1916 + components: + - pos: -26.5,16.5 + parent: 1 + type: Transform + - uid: 1917 + components: + - pos: -25.5,16.5 + parent: 1 + type: Transform + - uid: 1918 + components: + - pos: -24.5,16.5 + parent: 1 + type: Transform + - uid: 3476 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,16.5 + parent: 1 + type: Transform + - uid: 5343 + components: + - rot: 3.141592653589793 rad + pos: 20.5,5.5 + parent: 1 + type: Transform +- proto: MouseTimedSpawner + entities: + - uid: 11909 + components: + - pos: -37.5,-13.5 + parent: 1 + type: Transform + - uid: 11910 + components: + - pos: -28.5,26.5 + parent: 1 + type: Transform + - uid: 11911 + components: + - pos: 18.5,29.5 + parent: 1 + type: Transform + - uid: 11912 + components: + - pos: 18.5,-17.5 + parent: 1 + type: Transform +- proto: Multitool + entities: + - uid: 6072 + components: + - pos: -5.580178,-15.315853 + parent: 1 + type: Transform + - uid: 6335 + components: + - pos: -14.30331,-8.459229 + parent: 1 + type: Transform +- proto: NanoManipulatorStockPart + entities: + - uid: 9501 + components: + - pos: -3.015568,-31.493607 + parent: 1 + type: Transform + - uid: 9502 + components: + - pos: -3.960114,-31.306107 + parent: 1 + type: Transform +- proto: NetworkConfigurator + entities: + - uid: 5602 + components: + - pos: -23.538898,5.5020247 + parent: 1 + type: Transform +- proto: NitrogenCanister + entities: + - uid: 6803 + components: + - pos: 43.5,-5.5 + parent: 1 + type: Transform + - uid: 6996 + components: + - pos: 36.5,-4.5 + parent: 1 + type: Transform + - uid: 6998 + components: + - pos: 35.5,-4.5 + parent: 1 + type: Transform + - uid: 8864 + components: + - pos: -13.5,-20.5 + parent: 1 + type: Transform + - uid: 8865 + components: + - pos: -29.5,-10.5 + parent: 1 + type: Transform + - uid: 8869 + components: + - pos: -32.5,-19.5 + parent: 1 + type: Transform + - uid: 9127 + components: + - pos: 24.5,-18.5 + parent: 1 + type: Transform + - uid: 9182 + components: + - pos: 28.5,-0.5 + parent: 1 + type: Transform + - uid: 9251 + components: + - pos: 31.5,32.5 + parent: 1 + type: Transform + - uid: 9342 + components: + - pos: 35.5,16.5 + parent: 1 + type: Transform + - uid: 9343 + components: + - pos: 21.5,23.5 + parent: 1 + type: Transform + - uid: 9344 + components: + - pos: 7.5,21.5 + parent: 1 + type: Transform + - uid: 9693 + components: + - pos: -15.5,23.5 + parent: 1 + type: Transform + - uid: 9694 + components: + - pos: -7.5,20.5 + parent: 1 + type: Transform +- proto: NitrogenTankFilled + entities: + - uid: 8927 + components: + - pos: -33.671288,-7.446391 + parent: 1 + type: Transform + - uid: 9730 + components: + - pos: -28.673817,12.610113 + parent: 1 + type: Transform +- proto: NitrousOxideCanister + entities: + - uid: 6324 + components: + - pos: -18.5,-18.5 + parent: 1 + type: Transform + - uid: 6810 + components: + - pos: 43.5,-11.5 + parent: 1 + type: Transform + - uid: 7003 + components: + - pos: 36.5,-2.5 + parent: 1 + type: Transform +- proto: NuclearBomb + entities: + - uid: 4128 + components: + - pos: -4.5,25.5 + parent: 1 + type: Transform +- proto: Ointment + entities: + - uid: 9630 + components: + - pos: 18.654701,27.734482 + parent: 1 + type: Transform +- proto: Omnitool + entities: + - uid: 4829 + components: + - flags: InContainer + type: MetaData + - parent: 4120 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: OperatingTable + entities: + - uid: 5521 + components: + - pos: -24.5,22.5 + parent: 1 + type: Transform +- proto: OreProcessor + entities: + - uid: 7286 + components: + - pos: 20.5,-24.5 + parent: 1 + type: Transform +- proto: OreProcessorMachineCircuitboard + entities: + - uid: 9517 + components: + - pos: -2.366364,-34.35298 + parent: 1 + type: Transform +- proto: OrganHumanHeart + entities: + - uid: 12288 + components: + - pos: -11.34931,-33.29647 + parent: 1 + type: Transform +- proto: OxygenCanister + entities: + - uid: 3356 + components: + - pos: 28.5,-20.5 + parent: 1 + type: Transform + - uid: 4924 + components: + - pos: 41.5,21.5 + parent: 1 + type: Transform + - uid: 6802 + components: + - pos: 43.5,-7.5 + parent: 1 + type: Transform + - uid: 6995 + components: + - pos: 36.5,-3.5 + parent: 1 + type: Transform + - uid: 6997 + components: + - pos: 35.5,-3.5 + parent: 1 + type: Transform + - uid: 7283 + components: + - pos: 26.5,-23.5 + parent: 1 + type: Transform + - uid: 8805 + components: + - pos: -34.5,-23.5 + parent: 1 + type: Transform + - uid: 8863 + components: + - pos: -14.5,-20.5 + parent: 1 + type: Transform + - uid: 8866 + components: + - pos: -28.5,-10.5 + parent: 1 + type: Transform + - uid: 8870 + components: + - pos: -33.5,-19.5 + parent: 1 + type: Transform + - uid: 9128 + components: + - pos: 23.5,-18.5 + parent: 1 + type: Transform + - uid: 9181 + components: + - pos: 27.5,-0.5 + parent: 1 + type: Transform + - uid: 9252 + components: + - pos: 32.5,32.5 + parent: 1 + type: Transform + - uid: 9339 + components: + - pos: 7.5,22.5 + parent: 1 + type: Transform + - uid: 9340 + components: + - pos: 21.5,24.5 + parent: 1 + type: Transform + - uid: 9341 + components: + - pos: 35.5,17.5 + parent: 1 + type: Transform + - uid: 9662 + components: + - pos: -29.5,29.5 + parent: 1 + type: Transform + - uid: 9664 + components: + - pos: -18.5,31.5 + parent: 1 + type: Transform + - uid: 9695 + components: + - pos: -16.5,23.5 + parent: 1 + type: Transform + - uid: 9696 + components: + - pos: -7.5,21.5 + parent: 1 + type: Transform +- proto: PaintingMonkey + entities: + - uid: 5040 + components: + - pos: 3.5,13.5 + parent: 1 + type: Transform +- proto: Paper + entities: + - uid: 5585 + components: + - pos: -39.604885,-5.4378414 + parent: 1 + type: Transform + - uid: 5586 + components: + - pos: -40.448635,-5.8909664 + parent: 1 + type: Transform + - uid: 5587 + components: + - pos: -39.55801,-6.2972164 + parent: 1 + type: Transform + - uid: 5588 + components: + - pos: -40.104885,-6.3753414 + parent: 1 + type: Transform + - uid: 5589 + components: + - pos: -40.011135,-5.7034664 + parent: 1 + type: Transform +- proto: PaperBin10 + entities: + - uid: 4110 + components: + - pos: -10.5,31.5 + parent: 1 + type: Transform + - uid: 5073 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,19.5 + parent: 1 + type: Transform + - uid: 5581 + components: + - pos: -37.5,-2.5 + parent: 1 + type: Transform + - uid: 6053 + components: + - pos: -17.5,-3.5 + parent: 1 + type: Transform + - uid: 7400 + components: + - pos: 5.5,-20.5 + parent: 1 + type: Transform + - uid: 7447 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-15.5 + parent: 1 + type: Transform + - uid: 7782 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-28.5 + parent: 1 + type: Transform + - uid: 9588 + components: + - pos: 39.5,31.5 + parent: 1 + type: Transform +- proto: PaperBin5 + entities: + - uid: 3985 + components: + - pos: -10.5,52.5 + parent: 1 + type: Transform + - uid: 3994 + components: + - pos: -4.5,56.5 + parent: 1 + type: Transform + - uid: 4974 + components: + - pos: 5.5,31.5 + parent: 1 + type: Transform + - uid: 5331 + components: + - pos: 27.5,10.5 + parent: 1 + type: Transform + - uid: 7405 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-17.5 + parent: 1 + type: Transform +- proto: PaperCaptainsThoughts + entities: + - uid: 4977 + components: + - pos: 4.359273,27.643576 + parent: 1 + type: Transform + - uid: 4978 + components: + - pos: 4.437398,27.643576 + parent: 1 + type: Transform + - uid: 4979 + components: + - pos: 4.515523,27.643576 + parent: 1 + type: Transform + - uid: 4980 + components: + - pos: 4.593648,27.643576 + parent: 1 + type: Transform +- proto: PaperOffice + entities: + - uid: 3999 + components: + - rot: 3.141592653589793 rad + pos: -8.849914,48.62344 + parent: 1 + type: Transform + - uid: 4000 + components: + - rot: 3.141592653589793 rad + pos: -8.928039,48.62344 + parent: 1 + type: Transform + - uid: 4001 + components: + - rot: 3.141592653589793 rad + pos: -8.943664,48.62344 + parent: 1 + type: Transform + - uid: 4002 + components: + - rot: 3.141592653589793 rad + pos: -3.4749136,48.607815 + parent: 1 + type: Transform + - uid: 4003 + components: + - rot: 3.141592653589793 rad + pos: -3.3967886,48.576565 + parent: 1 + type: Transform + - uid: 4004 + components: + - pos: -7.5999136,56.62344 + parent: 1 + type: Transform + - uid: 4005 + components: + - pos: -7.5061636,56.62344 + parent: 1 + type: Transform + - uid: 4006 + components: + - pos: -7.4592886,56.62344 + parent: 1 + type: Transform + - uid: 4112 + components: + - pos: -9.663862,28.018454 + parent: 1 + type: Transform + - uid: 4113 + components: + - pos: -9.585737,27.940329 + parent: 1 + type: Transform + - uid: 4114 + components: + - pos: -9.304487,29.049704 + parent: 1 + type: Transform + - uid: 4115 + components: + - pos: -9.460737,28.955954 + parent: 1 + type: Transform + - uid: 5074 + components: + - pos: -4.5159507,19.627132 + parent: 1 + type: Transform + - uid: 5075 + components: + - pos: -4.5159507,19.627132 + parent: 1 + type: Transform + - uid: 5076 + components: + - pos: -4.5159507,19.627132 + parent: 1 + type: Transform + - uid: 5077 + components: + - pos: -4.5159507,19.627132 + parent: 1 + type: Transform + - uid: 5078 + components: + - pos: -4.5159507,19.627132 + parent: 1 + type: Transform + - uid: 5079 + components: + - pos: -4.5159507,19.627132 + parent: 1 + type: Transform + - uid: 5080 + components: + - pos: -4.5159507,19.627132 + parent: 1 + type: Transform + - uid: 5081 + components: + - pos: -4.5159507,19.627132 + parent: 1 + type: Transform + - uid: 5082 + components: + - pos: -4.5159507,19.627132 + parent: 1 + type: Transform + - uid: 5083 + components: + - pos: -4.5159507,19.627132 + parent: 1 + type: Transform + - uid: 5084 + components: + - pos: -4.5159507,19.627132 + parent: 1 + type: Transform + - uid: 5085 + components: + - pos: -4.5159507,19.627132 + parent: 1 + type: Transform + - uid: 5086 + components: + - pos: -4.5159507,19.627132 + parent: 1 + type: Transform + - uid: 5087 + components: + - pos: -4.5472007,19.595882 + parent: 1 + type: Transform + - uid: 5088 + components: + - pos: -4.5472007,19.595882 + parent: 1 + type: Transform + - uid: 5391 + components: + - pos: 27.337461,13.773642 + parent: 1 + type: Transform + - uid: 5392 + components: + - pos: 27.368711,13.758017 + parent: 1 + type: Transform + - uid: 5393 + components: + - pos: 27.415586,13.711142 + parent: 1 + type: Transform + - uid: 5394 + components: + - pos: 27.478086,13.679892 + parent: 1 + type: Transform + - uid: 5398 + components: + - pos: 28.493711,16.557203 + parent: 1 + type: Transform + - uid: 5399 + components: + - pos: 28.540586,16.557203 + parent: 1 + type: Transform + - uid: 5400 + components: + - pos: 28.587461,16.557203 + parent: 1 + type: Transform + - uid: 5401 + components: + - pos: 28.618711,16.557203 + parent: 1 + type: Transform + - uid: 5678 + components: + - pos: 18.339497,-14.389538 + parent: 1 + type: Transform + - uid: 5679 + components: + - pos: 18.339497,-14.295788 + parent: 1 + type: Transform + - uid: 5680 + components: + - pos: 18.339497,-14.186413 + parent: 1 + type: Transform + - uid: 5681 + components: + - pos: 18.355122,-14.061413 + parent: 1 + type: Transform + - uid: 5875 + components: + - pos: -22.6214,16.518099 + parent: 1 + type: Transform + - uid: 5876 + components: + - pos: -22.605776,16.455599 + parent: 1 + type: Transform + - uid: 5877 + components: + - pos: -22.59015,16.377474 + parent: 1 + type: Transform + - uid: 5878 + components: + - pos: -22.574526,16.268099 + parent: 1 + type: Transform + - uid: 5884 + components: + - pos: -14.637211,5.5536256 + parent: 1 + type: Transform + - uid: 5885 + components: + - pos: -17.62719,5.5455227 + parent: 1 + type: Transform + - uid: 5886 + components: + - pos: -17.62719,5.5455227 + parent: 1 + type: Transform + - uid: 5888 + components: + - pos: -14.637211,5.5536256 + parent: 1 + type: Transform + - uid: 6058 + components: + - pos: -16.855633,-2.6907523 + parent: 1 + type: Transform + - uid: 6059 + components: + - pos: -16.855633,-2.5970023 + parent: 1 + type: Transform + - uid: 6060 + components: + - pos: -16.855633,-2.5188773 + parent: 1 + type: Transform + - uid: 6061 + components: + - pos: -16.855633,-2.4720023 + parent: 1 + type: Transform + - uid: 6062 + components: + - pos: -16.855633,-2.3938773 + parent: 1 + type: Transform + - uid: 6789 + components: + - pos: 12.221728,-12.274454 + parent: 1 + type: Transform + - uid: 6790 + components: + - pos: 12.221728,-12.352579 + parent: 1 + type: Transform + - uid: 6791 + components: + - pos: 12.221728,-12.415079 + parent: 1 + type: Transform + - uid: 6792 + components: + - pos: 12.221728,-12.493204 + parent: 1 + type: Transform + - uid: 7306 + components: + - pos: 13.624326,-23.419518 + parent: 1 + type: Transform + - uid: 7394 + components: + - pos: 13.561826,-23.419518 + parent: 1 + type: Transform + - uid: 7396 + components: + - pos: 13.499326,-23.419518 + parent: 1 + type: Transform + - uid: 7406 + components: + - pos: 5.516494,-21.287186 + parent: 1 + type: Transform + - uid: 7407 + components: + - pos: 5.516494,-21.287186 + parent: 1 + type: Transform + - uid: 7408 + components: + - pos: 5.516494,-21.287186 + parent: 1 + type: Transform + - uid: 7409 + components: + - pos: 5.516494,-21.287186 + parent: 1 + type: Transform + - uid: 7410 + components: + - pos: 5.516494,-21.287186 + parent: 1 + type: Transform + - uid: 7411 + components: + - pos: 11.453994,-18.162186 + parent: 1 + type: Transform + - uid: 7412 + components: + - pos: 11.453994,-18.162186 + parent: 1 + type: Transform + - uid: 7413 + components: + - pos: 11.453994,-18.162186 + parent: 1 + type: Transform + - uid: 7414 + components: + - pos: 11.453994,-18.162186 + parent: 1 + type: Transform + - uid: 7415 + components: + - pos: 11.453994,-18.162186 + parent: 1 + type: Transform + - uid: 7450 + components: + - pos: 5.1056714,-15.299889 + parent: 1 + type: Transform + - uid: 7451 + components: + - pos: 5.1056714,-15.299889 + parent: 1 + type: Transform + - uid: 7452 + components: + - pos: 5.1056714,-15.299889 + parent: 1 + type: Transform + - uid: 7453 + components: + - pos: 5.1056714,-15.299889 + parent: 1 + type: Transform + - uid: 8247 + components: + - pos: -9.640527,-11.922171 + parent: 1 + type: Transform + - uid: 9592 + components: + - pos: 40.748722,31.554111 + parent: 1 + type: Transform + - uid: 9593 + components: + - pos: 40.826847,31.554111 + parent: 1 + type: Transform + - uid: 9594 + components: + - pos: 40.904972,31.554111 + parent: 1 + type: Transform + - uid: 9595 + components: + - pos: 40.951847,31.554111 + parent: 1 + type: Transform + - uid: 9596 + components: + - pos: 44.951847,31.538486 + parent: 1 + type: Transform + - uid: 9597 + components: + - pos: 45.029972,31.538486 + parent: 1 + type: Transform + - uid: 9598 + components: + - pos: 45.108097,31.538486 + parent: 1 + type: Transform + - uid: 9599 + components: + - pos: 45.170597,31.538486 + parent: 1 + type: Transform + - uid: 9602 + components: + - rot: 3.141592653589793 rad + pos: 43.576847,33.600986 + parent: 1 + type: Transform + - uid: 9603 + components: + - rot: 3.141592653589793 rad + pos: 43.451847,33.600986 + parent: 1 + type: Transform + - uid: 9604 + components: + - rot: 3.141592653589793 rad + pos: 43.279972,33.58536 + parent: 1 + type: Transform + - uid: 9605 + components: + - rot: 3.141592653589793 rad + pos: 43.186222,33.58536 + parent: 1 + type: Transform + - uid: 9612 + components: + - rot: 3.141592653589793 rad + pos: 39.826847,33.632236 + parent: 1 + type: Transform + - uid: 9613 + components: + - rot: 3.141592653589793 rad + pos: 39.795597,33.632236 + parent: 1 + type: Transform + - uid: 9614 + components: + - rot: 3.141592653589793 rad + pos: 39.748722,33.632236 + parent: 1 + type: Transform + - uid: 12431 + components: + - pos: -9.562402,-11.984671 + parent: 1 + type: Transform + - uid: 12432 + components: + - pos: -9.468652,-12.094046 + parent: 1 + type: Transform + - uid: 12433 + components: + - pos: -9.624902,-12.109671 + parent: 1 + type: Transform + - uid: 12434 + components: + - pos: -9.640527,-12.015921 + parent: 1 + type: Transform +- proto: PartRodMetal + entities: + - uid: 6092 + components: + - pos: -24.506477,-0.38722038 + parent: 1 + type: Transform + - uid: 6798 + components: + - pos: 18.539476,-8.350777 + parent: 1 + type: Transform + - uid: 6799 + components: + - pos: 18.539476,-8.350777 + parent: 1 + type: Transform + - uid: 7142 + components: + - pos: 32.46561,-18.402718 + parent: 1 + type: Transform + - uid: 7143 + components: + - pos: 32.46561,-18.402718 + parent: 1 + type: Transform + - uid: 11934 + components: + - pos: 12.1296625,23.642334 + parent: 1 + type: Transform + - uid: 11935 + components: + - pos: 11.9734125,23.657959 + parent: 1 + type: Transform +- proto: Pen + entities: + - uid: 1881 + components: + - pos: -19.882591,14.621025 + parent: 1 + type: Transform + - uid: 1882 + components: + - pos: -21.958109,-1.4018333 + parent: 1 + type: Transform + - uid: 3995 + components: + - pos: -8.015554,56.563858 + parent: 1 + type: Transform + - uid: 3996 + components: + - pos: -10.312429,54.548233 + parent: 1 + type: Transform + - uid: 3997 + components: + - rot: 3.141592653589793 rad + pos: -8.959289,48.52969 + parent: 1 + type: Transform + - uid: 3998 + components: + - rot: 3.141592653589793 rad + pos: -3.2874136,48.56094 + parent: 1 + type: Transform + - uid: 4106 + components: + - pos: -9.741987,27.659079 + parent: 1 + type: Transform + - uid: 4107 + components: + - pos: -9.304487,29.627829 + parent: 1 + type: Transform + - uid: 5354 + components: + - rot: -1.5707963267948966 rad + pos: 25.429817,10.545956 + parent: 1 + type: Transform + - uid: 5355 + components: + - rot: -1.5707963267948966 rad + pos: 25.773567,10.670956 + parent: 1 + type: Transform + - uid: 5395 + components: + - rot: -1.5707963267948966 rad + pos: 27.587461,13.804892 + parent: 1 + type: Transform + - uid: 5402 + components: + - rot: -1.5707963267948966 rad + pos: 28.821836,16.650953 + parent: 1 + type: Transform + - uid: 5593 + components: + - pos: -40.77676,-5.6722164 + parent: 1 + type: Transform + - uid: 5594 + components: + - pos: -39.21426,-6.2659664 + parent: 1 + type: Transform + - uid: 5595 + components: + - pos: -39.229885,-5.2659664 + parent: 1 + type: Transform + - uid: 5682 + components: + - rot: -1.5707963267948966 rad + pos: 18.651997,-14.061413 + parent: 1 + type: Transform + - uid: 5879 + components: + - rot: 3.141592653589793 rad + pos: -22.355776,16.299349 + parent: 1 + type: Transform + - uid: 6047 + components: + - pos: -16.293133,-2.3157523 + parent: 1 + type: Transform + - uid: 6793 + components: + - pos: 12.143603,-12.633829 + parent: 1 + type: Transform + - uid: 7416 + components: + - pos: 11.610244,-18.45906 + parent: 1 + type: Transform + - uid: 7417 + components: + - pos: 5.313369,-21.14656 + parent: 1 + type: Transform + - uid: 7454 + components: + - pos: 5.6369214,-15.503014 + parent: 1 + type: Transform + - uid: 9046 + components: + - pos: 16.646183,-24.473928 + parent: 1 + type: Transform + - uid: 9606 + components: + - pos: 45.826847,31.663486 + parent: 1 + type: Transform + - uid: 9607 + components: + - pos: 45.670597,31.522861 + parent: 1 + type: Transform + - uid: 9608 + components: + - rot: -1.5707963267948966 rad + pos: 41.670597,31.694736 + parent: 1 + type: Transform + - uid: 9609 + components: + - rot: -1.5707963267948966 rad + pos: 41.420597,31.725986 + parent: 1 + type: Transform + - uid: 9610 + components: + - rot: 3.141592653589793 rad + pos: 42.545597,33.58536 + parent: 1 + type: Transform + - uid: 9611 + components: + - rot: 1.5707963267948966 rad + pos: 39.873722,33.600986 + parent: 1 + type: Transform + - uid: 9637 + components: + - pos: 18.330774,25.583164 + parent: 1 + type: Transform + - uid: 10640 + components: + - pos: 16.333683,-24.473928 + parent: 1 + type: Transform + - uid: 12435 + components: + - pos: -9.253772,-11.803861 + parent: 1 + type: Transform + - uid: 12436 + components: + - pos: -13.198837,-28.688225 + parent: 1 + type: Transform +- proto: PenCap + entities: + - uid: 4976 + components: + - pos: 4.328023,27.581076 + parent: 1 + type: Transform +- proto: PersonalAI + entities: + - uid: 7651 + components: + - flags: SessionSpecific + type: MetaData + - pos: -40.503788,1.6275148 + parent: 1 + type: Transform + - uid: 8231 + components: + - flags: SessionSpecific + type: MetaData + - pos: -5.47295,-28.48368 + parent: 1 + type: Transform + - uid: 8253 + components: + - flags: SessionSpecific + type: MetaData + - pos: -2.3764815,-31.488258 + parent: 1 + type: Transform + - uid: 8254 + components: + - flags: SessionSpecific + type: MetaData + - pos: 5.3845835,10.568368 + parent: 1 + type: Transform + - uid: 8255 + components: + - flags: SessionSpecific + type: MetaData + - pos: -0.33936208,31.760487 + parent: 1 + type: Transform + - uid: 12429 + components: + - flags: SessionSpecific + type: MetaData + - pos: -12.687402,-12.500296 + parent: 1 + type: Transform + - uid: 12430 + components: + - flags: SessionSpecific + type: MetaData + - pos: -12.296777,-12.500296 + parent: 1 + type: Transform +- proto: PhoneInstrument + entities: + - uid: 4104 + components: + - pos: -9.523237,28.490625 + parent: 1 + type: Transform +- proto: PianoInstrument + entities: + - uid: 5042 + components: + - rot: 3.141592653589793 rad + pos: 4.5,11.5 + parent: 1 + type: Transform +- proto: Pickaxe + entities: + - uid: 1519 + components: + - pos: 20.414032,-20.475288 + parent: 1 + type: Transform + - uid: 7302 + components: + - pos: 20.648407,-20.490913 + parent: 1 + type: Transform +- proto: PinpointerNuclear + entities: + - uid: 4134 + components: + - pos: -2.6820543,23.560793 + parent: 1 + type: Transform +- proto: PlasmaCanister + entities: + - uid: 6320 + components: + - pos: -20.5,-18.5 + parent: 1 + type: Transform + - uid: 6812 + components: + - pos: 43.5,-15.5 + parent: 1 + type: Transform + - uid: 7002 + components: + - pos: 35.5,-2.5 + parent: 1 + type: Transform +- proto: PlasticFlapsAirtightClear + entities: + - uid: 1743 + components: + - pos: 7.5,-23.5 + parent: 1 + type: Transform + - uid: 1744 + components: + - pos: 10.5,-31.5 + parent: 1 + type: Transform + - uid: 1745 + components: + - pos: 10.5,-28.5 + parent: 1 + type: Transform + - uid: 1746 + components: + - pos: 14.5,-28.5 + parent: 1 + type: Transform + - uid: 1747 + components: + - pos: 14.5,-31.5 + parent: 1 + type: Transform + - uid: 3562 + components: + - pos: -35.5,25.5 + parent: 1 + type: Transform +- proto: PlasticFlapsAirtightOpaque + entities: + - uid: 2046 + components: + - pos: -38.5,19.5 + parent: 1 + type: Transform +- proto: PlushieLamp + entities: + - uid: 5991 + components: + - pos: 5.7439585,10.615243 + parent: 1 + type: Transform + - uid: 7808 + components: + - pos: -7.528466,-28.402908 + parent: 1 + type: Transform + - uid: 8263 + components: + - pos: -17.703978,-52.27695 + parent: 1 + type: Transform +- proto: PlushieRGBee + entities: + - uid: 2201 + components: + - pos: -24.499949,-19.444412 + parent: 1 + type: Transform +- proto: PlushieSpaceLizard + entities: + - uid: 12542 + components: + - pos: -14.489916,-61.54038 + parent: 1 + type: Transform +- proto: PonderingOrb + entities: + - uid: 12340 + components: + - desc: It shines a brilliant irradiating blue. + name: demon core + type: MetaData + - pos: -0.50479734,65.52099 + parent: 1 + type: Transform + - slope: 0.32 + intensity: 2 + type: RadiationSource +- proto: PortableGeneratorJrPacman + entities: + - uid: 5965 + components: + - pos: 25.5,-8.5 + parent: 1 + type: Transform + - uid: 5987 + components: + - pos: 8.5,-14.5 + parent: 1 + type: Transform + - uid: 5988 + components: + - pos: -32.5,-10.5 + parent: 1 + type: Transform + - uid: 5989 + components: + - pos: -29.5,9.5 + parent: 1 + type: Transform + - uid: 6013 + components: + - pos: -7.5,19.5 + parent: 1 + type: Transform + - uid: 6067 + components: + - pos: 35.5,5.5 + parent: 1 + type: Transform +- proto: PortableGeneratorPacman + entities: + - uid: 2857 + components: + - pos: -11.5,-53.5 + parent: 1 + type: Transform + - uid: 5958 + components: + - pos: 25.5,-3.5 + parent: 1 + type: Transform +- proto: PortableGeneratorSuperPacmanMachineCircuitboard + entities: + - uid: 9515 + components: + - pos: -7.3825207,-32.322838 + parent: 1 + type: Transform + - uid: 9516 + components: + - pos: -7.6012707,-32.572838 + parent: 1 + type: Transform +- proto: PortableScrubber + entities: + - uid: 12462 + components: + - pos: 10.5,-4.5 + parent: 1 + type: Transform + - uid: 12463 + components: + - pos: 11.5,-4.5 + parent: 1 + type: Transform +- proto: PosterBroken + entities: + - uid: 1298 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,19.5 + parent: 1 + type: Transform + - uid: 2159 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-28.5 + parent: 1 + type: Transform +- proto: PosterContrabandAtmosiaDeclarationIndependence + entities: + - uid: 11974 + components: + - pos: 32.5,-15.5 + parent: 1 + type: Transform +- proto: PosterContrabandClown + entities: + - uid: 11966 + components: + - pos: -10.5,-27.5 + parent: 1 + type: Transform +- proto: PosterContrabandDonutCorp + entities: + - uid: 11956 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform +- proto: PosterContrabandMissingGloves + entities: + - uid: 11970 + components: + - pos: -3.5,-19.5 + parent: 1 + type: Transform +- proto: PosterContrabandNuclearDeviceInformational + entities: + - uid: 11964 + components: + - pos: -5.5,24.5 + parent: 1 + type: Transform +- proto: PosterContrabandTools + entities: + - uid: 11969 + components: + - pos: 16.5,-2.5 + parent: 1 + type: Transform +- proto: PosterLegitCarbonDioxide + entities: + - uid: 11973 + components: + - pos: 33.5,-8.5 + parent: 1 + type: Transform +- proto: PosterLegitCleanliness + entities: + - uid: 11965 + components: + - pos: -19.5,12.5 + parent: 1 + type: Transform +- proto: PosterLegitIan + entities: + - uid: 11961 + components: + - pos: -4.5,18.5 + parent: 1 + type: Transform +- proto: PosterLegitLoveIan + entities: + - uid: 11960 + components: + - pos: -0.5,22.5 + parent: 1 + type: Transform +- proto: PosterLegitObey + entities: + - uid: 11957 + components: + - pos: 16.5,6.5 + parent: 1 + type: Transform +- proto: PosterLegitReportCrimes + entities: + - uid: 11958 + components: + - pos: 20.5,16.5 + parent: 1 + type: Transform +- proto: PosterLegitSafetyEyeProtection + entities: + - uid: 11972 + components: + - pos: 11.5,-13.5 + parent: 1 + type: Transform +- proto: PosterLegitSafetyInternals + entities: + - uid: 11971 + components: + - pos: 21.5,-9.5 + parent: 1 + type: Transform +- proto: PosterLegitScience + entities: + - uid: 11979 + components: + - pos: -18.5,-7.5 + parent: 1 + type: Transform +- proto: PosterLegitSecWatch + entities: + - uid: 11962 + components: + - pos: 17.5,13.5 + parent: 1 + type: Transform +- proto: PosterLegitSpaceCops + entities: + - uid: 11959 + components: + - pos: 30.5,12.5 + parent: 1 + type: Transform +- proto: PosterLegitStateLaws + entities: + - uid: 11999 + components: + - pos: 10.5,25.5 + parent: 1 + type: Transform + - uid: 12105 + components: + - pos: -4.5,57.5 + parent: 1 + type: Transform +- proto: PottedPlantRandom + entities: + - uid: 1841 + components: + - pos: 13.5,-8.5 + parent: 1 + type: Transform + - uid: 2800 + components: + - pos: -12.5,-48.5 + parent: 1 + type: Transform + - uid: 3957 + components: + - pos: -7.5,48.5 + parent: 1 + type: Transform + - uid: 3958 + components: + - pos: -5.5,48.5 + parent: 1 + type: Transform + - uid: 3959 + components: + - pos: -7.5,44.5 + parent: 1 + type: Transform + - uid: 3960 + components: + - pos: -5.5,44.5 + parent: 1 + type: Transform + - uid: 3961 + components: + - pos: -2.5,51.5 + parent: 1 + type: Transform + - uid: 3962 + components: + - pos: -2.5,53.5 + parent: 1 + type: Transform + - uid: 3963 + components: + - pos: -9.5,56.5 + parent: 1 + type: Transform + - uid: 3964 + components: + - pos: -3.5,56.5 + parent: 1 + type: Transform + - uid: 3965 + components: + - pos: 3.5,54.5 + parent: 1 + type: Transform + - uid: 3966 + components: + - pos: -0.5,54.5 + parent: 1 + type: Transform + - uid: 3967 + components: + - pos: -0.5,50.5 + parent: 1 + type: Transform + - uid: 3968 + components: + - pos: 3.5,50.5 + parent: 1 + type: Transform + - uid: 4060 + components: + - pos: -11.5,31.5 + parent: 1 + type: Transform + - uid: 4061 + components: + - pos: -7.5,31.5 + parent: 1 + type: Transform + - uid: 4947 + components: + - pos: 27.5,28.5 + parent: 1 + type: Transform + - uid: 4950 + components: + - pos: 31.5,25.5 + parent: 1 + type: Transform + - uid: 4996 + components: + - pos: 5.5,25.5 + parent: 1 + type: Transform + - uid: 4997 + components: + - pos: 5.5,21.5 + parent: 1 + type: Transform + - uid: 4998 + components: + - pos: -3.5,16.5 + parent: 1 + type: Transform + - uid: 4999 + components: + - pos: 6.5,16.5 + parent: 1 + type: Transform + - uid: 5378 + components: + - pos: 11.5,9.5 + parent: 1 + type: Transform + - uid: 5379 + components: + - pos: 27.5,8.5 + parent: 1 + type: Transform + - uid: 5380 + components: + - pos: 28.5,10.5 + parent: 1 + type: Transform + - uid: 5381 + components: + - pos: 33.5,10.5 + parent: 1 + type: Transform + - uid: 5384 + components: + - pos: 20.5,8.5 + parent: 1 + type: Transform + - uid: 5558 + components: + - pos: 44.5,21.5 + parent: 1 + type: Transform + - uid: 5560 + components: + - pos: 39.5,30.5 + parent: 1 + type: Transform + - uid: 5561 + components: + - pos: 46.5,30.5 + parent: 1 + type: Transform + - uid: 5664 + components: + - pos: 16.5,-20.5 + parent: 1 + type: Transform + - uid: 7637 + components: + - pos: -39.5,18.5 + parent: 1 + type: Transform + - uid: 7638 + components: + - pos: -39.5,14.5 + parent: 1 + type: Transform + - uid: 7639 + components: + - pos: -41.5,21.5 + parent: 1 + type: Transform + - uid: 7648 + components: + - pos: -41.5,10.5 + parent: 1 + type: Transform + - uid: 7649 + components: + - pos: -41.5,6.5 + parent: 1 + type: Transform + - uid: 7674 + components: + - pos: 7.5,-9.5 + parent: 1 + type: Transform + - uid: 7675 + components: + - pos: -6.5,-4.5 + parent: 1 + type: Transform + - uid: 7676 + components: + - pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 7677 + components: + - pos: 7.5,4.5 + parent: 1 + type: Transform + - uid: 7678 + components: + - pos: 2.5,-13.5 + parent: 1 + type: Transform + - uid: 7679 + components: + - pos: 0.5,-19.5 + parent: 1 + type: Transform + - uid: 7680 + components: + - pos: 8.5,-27.5 + parent: 1 + type: Transform + - uid: 7682 + components: + - pos: 22.5,-25.5 + parent: 1 + type: Transform + - uid: 7683 + components: + - pos: 2.5,-26.5 + parent: 1 + type: Transform + - uid: 7684 + components: + - pos: -6.5,-24.5 + parent: 1 + type: Transform + - uid: 7698 + components: + - pos: -13.5,-24.5 + parent: 1 + type: Transform + - uid: 9524 + components: + - pos: 2.5,-33.5 + parent: 1 + type: Transform + - uid: 9525 + components: + - pos: 0.5,-33.5 + parent: 1 + type: Transform + - uid: 9573 + components: + - pos: 46.5,21.5 + parent: 1 + type: Transform + - uid: 9576 + components: + - pos: 44.5,5.5 + parent: 1 + type: Transform + - uid: 10639 + components: + - pos: 26.5,-11.5 + parent: 1 + type: Transform +- proto: PottedPlantRandomPlastic + entities: + - uid: 5696 + components: + - pos: -10.5,19.5 + parent: 1 + type: Transform + - uid: 5697 + components: + - pos: -10.5,20.5 + parent: 1 + type: Transform +- proto: PottedPlantRD + entities: + - uid: 5414 + components: + - pos: -20.5,-0.5 + parent: 1 + type: Transform +- proto: PowerCellHigh + entities: + - uid: 7145 + components: + - pos: 33.68436,-18.590218 + parent: 1 + type: Transform +- proto: PowerCellRecharger + entities: + - uid: 785 + components: + - pos: 12.5,15.5 + parent: 1 + type: Transform + - uid: 3821 + components: + - pos: -14.5,-2.5 + parent: 1 + type: Transform + - uid: 4117 + components: + - pos: -1.5,27.5 + parent: 1 + type: Transform + - uid: 5353 + components: + - pos: 30.5,8.5 + parent: 1 + type: Transform + - uid: 5901 + components: + - pos: -9.5,7.5 + parent: 1 + type: Transform + - uid: 5902 + components: + - pos: -21.5,11.5 + parent: 1 + type: Transform + - uid: 5972 + components: + - rot: 3.141592653589793 rad + pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 6524 + components: + - pos: 15.5,-8.5 + parent: 1 + type: Transform + - uid: 6555 + components: + - pos: 16.5,-8.5 + parent: 1 + type: Transform + - uid: 7241 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-27.5 + parent: 1 + type: Transform + - uid: 9047 + components: + - pos: -2.5,-7.5 + parent: 1 + type: Transform + - uid: 9048 + components: + - pos: -1.5,-20.5 + parent: 1 + type: Transform +- proto: Poweredlight + entities: + - uid: 26 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-27.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 49 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,20.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3918 + components: + - rot: 3.141592653589793 rad + pos: -5.5,44.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3919 + components: + - rot: 3.141592653589793 rad + pos: -2.5,44.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3920 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,52.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3921 + components: + - pos: -6.5,56.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3923 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,53.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3924 + components: + - rot: 3.141592653589793 rad + pos: -5.5,48.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3926 + components: + - pos: 1.5,55.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3927 + components: + - rot: 3.141592653589793 rad + pos: 1.5,49.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4982 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,29.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4983 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,29.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4984 + components: + - rot: 3.141592653589793 rad + pos: -2.5,27.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4985 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,30.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4986 + components: + - pos: 4.5,25.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4987 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,19.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4988 + components: + - pos: -0.5,21.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4989 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,24.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4990 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,20.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4991 + components: + - pos: -14.5,31.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4993 + components: + - rot: 3.141592653589793 rad + pos: -6.5,33.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4994 + components: + - rot: 3.141592653589793 rad + pos: -14.5,33.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4995 + components: + - rot: 3.141592653589793 rad + pos: 2.5,33.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5468 + components: + - pos: 25.5,28.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5469 + components: + - rot: 3.141592653589793 rad + pos: 25.5,24.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5470 + components: + - rot: 3.141592653589793 rad + pos: 28.5,24.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5471 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,26.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5472 + components: + - rot: 3.141592653589793 rad + pos: 34.5,20.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5473 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,16.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5474 + components: + - rot: 3.141592653589793 rad + pos: 28.5,16.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5475 + components: + - rot: 3.141592653589793 rad + pos: 27.5,12.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5476 + components: + - pos: 30.5,10.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5477 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5478 + components: + - rot: 3.141592653589793 rad + pos: 19.5,8.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5479 + components: + - rot: 3.141592653589793 rad + pos: 26.5,5.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5480 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,13.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5481 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,14.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5482 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,13.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5483 + components: + - pos: 9.5,15.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5484 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,6.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5485 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,6.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5486 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,6.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5522 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,6.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5523 + components: + - rot: 3.141592653589793 rad + pos: 25.5,8.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5929 + components: + - rot: 3.141592653589793 rad + pos: -24.5,5.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5930 + components: + - pos: -22.5,11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5931 + components: + - rot: 3.141592653589793 rad + pos: -16.5,8.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5932 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,7.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5933 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,13.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5934 + components: + - pos: -8.5,14.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5935 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,16.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5936 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,15.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5937 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,6.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5938 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,6.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5939 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,6.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5940 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,15.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5941 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,20.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5942 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,20.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5943 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,19.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5944 + components: + - rot: 3.141592653589793 rad + pos: -7.5,8.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5995 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6406 + components: + - rot: 3.141592653589793 rad + pos: -0.5,14.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6407 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,7.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6408 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,7.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6409 + components: + - rot: 3.141592653589793 rad + pos: -0.5,5.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6410 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6411 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6412 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-5.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6413 + components: + - pos: 5.5,-1.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6414 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6743 + components: + - pos: -26.5,-0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6744 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-7.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6745 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-6.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6746 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-1.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6747 + components: + - pos: -14.5,-0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6748 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-9.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6749 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-13.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6750 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-18.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6751 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-12.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6752 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-10.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6753 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-15.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6754 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-12.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6755 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-13.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6756 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-7.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6757 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-9.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7050 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-15.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7051 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-13.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7052 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7053 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-9.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7054 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-7.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7055 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-5.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7206 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7207 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-8.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7208 + components: + - pos: 21.5,-3.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7209 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7210 + components: + - pos: 27.5,-3.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7211 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-8.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7212 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-15.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7213 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-15.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7214 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7215 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-5.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7216 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-12.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7217 + components: + - pos: 33.5,-16.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7218 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-20.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7219 + components: + - rot: 3.141592653589793 rad + pos: 36.5,-23.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7220 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-18.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7221 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-14.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7222 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-17.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7223 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-4.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7224 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-8.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7462 + components: + - pos: 20.5,-20.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7463 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-27.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7464 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-27.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7465 + components: + - pos: 13.5,-20.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7466 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-30.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7467 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-30.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7468 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-26.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7469 + components: + - pos: 4.5,-19.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7470 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-15.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7471 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-19.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7472 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,7.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7473 + components: + - pos: -0.5,12.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7474 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-8.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7891 + components: + - pos: -10.5,3.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7892 + components: + - rot: 3.141592653589793 rad + pos: -17.5,1.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7893 + components: + - pos: -23.5,3.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7896 + components: + - rot: 3.141592653589793 rad + pos: -29.5,1.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7897 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,5.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7898 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,10.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7899 + components: + - pos: -32.5,16.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7900 + components: + - pos: -35.5,13.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7901 + components: + - pos: -37.5,13.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7902 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-1.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7903 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-7.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7904 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-10.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8001 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,5.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8002 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,13.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8003 + components: + - rot: 3.141592653589793 rad + pos: -43.5,11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8004 + components: + - pos: -43.5,5.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8005 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-3.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8006 + components: + - pos: -3.5,-20.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8007 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-26.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8008 + components: + - pos: -9.5,-24.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8009 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-25.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8010 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-30.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8011 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-27.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8012 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-27.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8014 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-29.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8015 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-29.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8016 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-32.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8017 + components: + - pos: -3.5,-31.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8018 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-31.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8019 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-25.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9043 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-9.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9044 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9052 + components: + - pos: 13.5,-0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9053 + components: + - rot: 3.141592653589793 rad + pos: 17.5,1.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9054 + components: + - pos: 26.5,3.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9055 + components: + - rot: 3.141592653589793 rad + pos: 36.5,1.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9056 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,4.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9057 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9059 + components: + - rot: 3.141592653589793 rad + pos: 41.5,21.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9061 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,28.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9062 + components: + - pos: 39.5,34.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9063 + components: + - rot: 3.141592653589793 rad + pos: 43.5,25.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9064 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,30.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11929 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,20.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11930 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,22.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredlightSodium + entities: + - uid: 7461 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-27.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredSmallLight + entities: + - uid: 28 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-45.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1794 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,22.5 + parent: 1 + type: Transform + - uid: 2781 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-51.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2928 + components: + - pos: -14.5,-48.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2929 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-48.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3928 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,45.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4992 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,30.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6742 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-6.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8316 + components: + - pos: -34.5,-15.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8807 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-17.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8932 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-9.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9060 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,34.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9065 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,34.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9066 + components: + - rot: 3.141592653589793 rad + pos: 9.5,32.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9155 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-21.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9156 + components: + - pos: -31.5,-22.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9157 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-10.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9331 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,22.5 + parent: 1 + type: Transform + - uid: 9649 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,25.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 12126 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 12476 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-12.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 12518 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-28.5 + parent: 1 + type: Transform +- proto: PoweredSmallLightEmpty + entities: + - uid: 8317 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-16.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8806 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-23.5 + parent: 1 + type: Transform +- proto: Protolathe + entities: + - uid: 3806 + components: + - pos: -10.5,-0.5 + parent: 1 + type: Transform +- proto: Rack + entities: + - uid: 559 + components: + - pos: -24.5,-7.5 + parent: 1 + type: Transform + - uid: 657 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-13.5 + parent: 1 + type: Transform + - uid: 775 + components: + - pos: 16.5,15.5 + parent: 1 + type: Transform + - uid: 2761 + components: + - pos: -2.5,50.5 + parent: 1 + type: Transform + - uid: 2762 + components: + - pos: -2.5,54.5 + parent: 1 + type: Transform + - uid: 2934 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-48.5 + parent: 1 + type: Transform + - uid: 4920 + components: + - pos: 39.5,21.5 + parent: 1 + type: Transform + - uid: 4921 + components: + - pos: 40.5,21.5 + parent: 1 + type: Transform + - uid: 5333 + components: + - pos: 28.5,8.5 + parent: 1 + type: Transform + - uid: 5342 + components: + - pos: 23.5,7.5 + parent: 1 + type: Transform + - uid: 5555 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,2.5 + parent: 1 + type: Transform + - uid: 5556 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,20.5 + parent: 1 + type: Transform + - uid: 5598 + components: + - pos: -23.5,5.5 + parent: 1 + type: Transform + - uid: 7074 + components: + - pos: -4.5,-34.5 + parent: 1 + type: Transform + - uid: 7075 + components: + - pos: -3.5,-34.5 + parent: 1 + type: Transform + - uid: 7076 + components: + - pos: -2.5,-34.5 + parent: 1 + type: Transform + - uid: 7077 + components: + - pos: -1.5,-34.5 + parent: 1 + type: Transform + - uid: 7134 + components: + - pos: 31.5,-16.5 + parent: 1 + type: Transform + - uid: 7293 + components: + - pos: 20.5,-20.5 + parent: 1 + type: Transform + - uid: 7713 + components: + - pos: -1.5,-28.5 + parent: 1 + type: Transform + - uid: 7806 + components: + - pos: -5.5,-28.5 + parent: 1 + type: Transform + - uid: 8240 + components: + - pos: -26.5,24.5 + parent: 1 + type: Transform + - uid: 8241 + components: + - pos: -25.5,24.5 + parent: 1 + type: Transform + - uid: 8283 + components: + - pos: -25.5,-24.5 + parent: 1 + type: Transform + - uid: 8287 + components: + - pos: -23.5,-26.5 + parent: 1 + type: Transform + - uid: 8484 + components: + - pos: -7.5,-33.5 + parent: 1 + type: Transform + - uid: 8490 + components: + - pos: -7.5,-32.5 + parent: 1 + type: Transform + - uid: 8496 + components: + - pos: -7.5,-31.5 + parent: 1 + type: Transform + - uid: 8764 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-24.5 + parent: 1 + type: Transform + - uid: 8808 + components: + - pos: -43.5,-16.5 + parent: 1 + type: Transform + - uid: 8880 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-14.5 + parent: 1 + type: Transform + - uid: 8883 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-19.5 + parent: 1 + type: Transform + - uid: 8884 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-7.5 + parent: 1 + type: Transform + - uid: 8885 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-20.5 + parent: 1 + type: Transform + - uid: 8891 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-17.5 + parent: 1 + type: Transform + - uid: 8900 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,-9.5 + parent: 1 + type: Transform + - uid: 8901 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,-9.5 + parent: 1 + type: Transform + - uid: 9130 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-5.5 + parent: 1 + type: Transform + - uid: 9134 + components: + - pos: 20.5,-18.5 + parent: 1 + type: Transform + - uid: 9254 + components: + - pos: -36.5,-9.5 + parent: 1 + type: Transform + - uid: 9314 + components: + - pos: 14.5,21.5 + parent: 1 + type: Transform + - uid: 9323 + components: + - pos: -13.5,28.5 + parent: 1 + type: Transform + - uid: 9351 + components: + - pos: 14.5,17.5 + parent: 1 + type: Transform + - uid: 9358 + components: + - pos: 12.5,33.5 + parent: 1 + type: Transform + - uid: 9359 + components: + - pos: 12.5,32.5 + parent: 1 + type: Transform + - uid: 9368 + components: + - pos: 13.5,30.5 + parent: 1 + type: Transform + - uid: 9369 + components: + - pos: 14.5,32.5 + parent: 1 + type: Transform + - uid: 9371 + components: + - pos: 14.5,33.5 + parent: 1 + type: Transform + - uid: 9543 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,11.5 + parent: 1 + type: Transform + - uid: 9544 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,26.5 + parent: 1 + type: Transform + - uid: 9618 + components: + - rot: 3.141592653589793 rad + pos: 15.5,25.5 + parent: 1 + type: Transform + - uid: 9619 + components: + - rot: 3.141592653589793 rad + pos: 16.5,25.5 + parent: 1 + type: Transform + - uid: 9684 + components: + - pos: -28.5,23.5 + parent: 1 + type: Transform + - uid: 9687 + components: + - pos: -22.5,26.5 + parent: 1 + type: Transform + - uid: 9699 + components: + - pos: -34.5,18.5 + parent: 1 + type: Transform + - uid: 12425 + components: + - pos: -12.5,-12.5 + parent: 1 + type: Transform + - uid: 12426 + components: + - pos: -12.5,-11.5 + parent: 1 + type: Transform +- proto: RadarConsoleCircuitboard + entities: + - uid: 9522 + components: + - pos: -7.3932076,-33.368607 + parent: 1 + type: Transform +- proto: RadioHandheld + entities: + - uid: 12547 + components: + - pos: 20.335823,-20.56861 + parent: 1 + type: Transform + - uid: 12548 + components: + - pos: 20.679573,-20.66236 + parent: 1 + type: Transform +- proto: Railing + entities: + - uid: 437 + components: + - pos: -7.5,20.5 + parent: 1 + type: Transform + - uid: 438 + components: + - rot: 3.141592653589793 rad + pos: -7.5,22.5 + parent: 1 + type: Transform + - uid: 647 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-14.5 + parent: 1 + type: Transform + - uid: 648 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-13.5 + parent: 1 + type: Transform + - uid: 649 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-12.5 + parent: 1 + type: Transform + - uid: 651 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-11.5 + parent: 1 + type: Transform + - uid: 3015 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-10.5 + parent: 1 + type: Transform + - uid: 7017 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,-2.5 + parent: 1 + type: Transform + - uid: 7018 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,-3.5 + parent: 1 + type: Transform + - uid: 7019 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,-4.5 + parent: 1 + type: Transform + - uid: 7664 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 1 + type: Transform + - uid: 8596 + components: + - pos: -43.5,-16.5 + parent: 1 + type: Transform + - uid: 8609 + components: + - pos: -42.5,-16.5 + parent: 1 + type: Transform + - uid: 8758 + components: + - pos: -40.5,-16.5 + parent: 1 + type: Transform + - uid: 8872 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-19.5 + parent: 1 + type: Transform + - uid: 8873 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-19.5 + parent: 1 + type: Transform + - uid: 9124 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-18.5 + parent: 1 + type: Transform + - uid: 9125 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-18.5 + parent: 1 + type: Transform + - uid: 9175 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-0.5 + parent: 1 + type: Transform + - uid: 9176 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-0.5 + parent: 1 + type: Transform + - uid: 9333 + components: + - rot: 3.141592653589793 rad + pos: 21.5,25.5 + parent: 1 + type: Transform + - uid: 9334 + components: + - rot: 3.141592653589793 rad + pos: 7.5,23.5 + parent: 1 + type: Transform + - uid: 9335 + components: + - pos: 7.5,21.5 + parent: 1 + type: Transform + - uid: 12491 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-4.5 + parent: 1 + type: Transform + - uid: 12492 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-8.5 + parent: 1 + type: Transform +- proto: RailingCornerSmall + entities: + - uid: 652 + components: + - pos: -8.5,-14.5 + parent: 1 + type: Transform + - uid: 653 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-10.5 + parent: 1 + type: Transform + - uid: 12489 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 1 + type: Transform + - uid: 12490 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-3.5 + parent: 1 + type: Transform +- proto: RandomArcade + entities: + - uid: 8795 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-23.5 + parent: 1 + type: Transform + - uid: 8796 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-23.5 + parent: 1 + type: Transform +- proto: RandomArtifactSpawner + entities: + - uid: 6321 + components: + - pos: -20.5,-13.5 + parent: 1 + type: Transform + - uid: 6325 + components: + - pos: -20.5,-9.5 + parent: 1 + type: Transform +- proto: RandomArtifactSpawner20 + entities: + - uid: 8233 + components: + - pos: -15.5,-29.5 + parent: 1 + type: Transform + - uid: 8234 + components: + - pos: 42.5,19.5 + parent: 1 + type: Transform + - uid: 8235 + components: + - pos: -25.5,23.5 + parent: 1 + type: Transform +- proto: RandomDrinkBottle + entities: + - uid: 5982 + components: + - pos: 2.5,10.5 + parent: 1 + type: Transform +- proto: RandomDrinkGlass + entities: + - uid: 5980 + components: + - pos: -0.5,7.5 + parent: 1 + type: Transform + - uid: 7653 + components: + - pos: -15.5,1.5 + parent: 1 + type: Transform + - uid: 7654 + components: + - pos: 26.5,1.5 + parent: 1 + type: Transform + - uid: 8311 + components: + - pos: -31.5,-14.5 + parent: 1 + type: Transform + - uid: 8312 + components: + - pos: -32.5,-17.5 + parent: 1 + type: Transform +- proto: RandomFoodBakedWhole + entities: + - uid: 5984 + components: + - pos: -1.5,10.5 + parent: 1 + type: Transform +- proto: RandomFoodMeal + entities: + - uid: 5983 + components: + - pos: 0.5,10.5 + parent: 1 + type: Transform + - uid: 7655 + components: + - pos: 34.5,3.5 + parent: 1 + type: Transform + - uid: 8313 + components: + - pos: -35.5,-16.5 + parent: 1 + type: Transform +- proto: RandomFoodSingle + entities: + - uid: 5981 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 7652 + components: + - pos: -25.5,3.5 + parent: 1 + type: Transform + - uid: 8314 + components: + - pos: -29.5,-14.5 + parent: 1 + type: Transform +- proto: RandomInstruments + entities: + - uid: 4951 + components: + - pos: 24.5,25.5 + parent: 1 + type: Transform + - uid: 4952 + components: + - pos: 24.5,27.5 + parent: 1 + type: Transform + - uid: 6399 + components: + - pos: -15.5,-24.5 + parent: 1 + type: Transform + - uid: 7801 + components: + - pos: -13.5,-31.5 + parent: 1 + type: Transform + - uid: 7802 + components: + - pos: -12.5,-31.5 + parent: 1 + type: Transform +- proto: RandomPosterAny + entities: + - uid: 11981 + components: + - pos: -32.5,-11.5 + parent: 1 + type: Transform + - uid: 11984 + components: + - pos: -23.5,-20.5 + parent: 1 + type: Transform + - uid: 11985 + components: + - pos: -14.5,-23.5 + parent: 1 + type: Transform + - uid: 11986 + components: + - pos: -3.5,-16.5 + parent: 1 + type: Transform + - uid: 11987 + components: + - pos: 10.5,-13.5 + parent: 1 + type: Transform + - uid: 11988 + components: + - pos: 21.5,-16.5 + parent: 1 + type: Transform + - uid: 11989 + components: + - pos: 30.5,-15.5 + parent: 1 + type: Transform + - uid: 11990 + components: + - pos: 33.5,-1.5 + parent: 1 + type: Transform + - uid: 11991 + components: + - pos: 40.5,8.5 + parent: 1 + type: Transform + - uid: 11992 + components: + - pos: 37.5,15.5 + parent: 1 + type: Transform + - uid: 11993 + components: + - pos: 30.5,32.5 + parent: 1 + type: Transform + - uid: 11994 + components: + - pos: 18.5,31.5 + parent: 1 + type: Transform + - uid: 11996 + components: + - pos: 7.5,27.5 + parent: 1 + type: Transform + - uid: 11997 + components: + - pos: 14.5,19.5 + parent: 1 + type: Transform + - uid: 12106 + components: + - pos: -33.5,20.5 + parent: 1 + type: Transform + - uid: 12107 + components: + - pos: -25.5,25.5 + parent: 1 + type: Transform + - uid: 12108 + components: + - pos: -15.5,26.5 + parent: 1 + type: Transform + - uid: 12109 + components: + - pos: -9.5,22.5 + parent: 1 + type: Transform + - uid: 12122 + components: + - pos: -32.5,-21.5 + parent: 1 + type: Transform +- proto: RandomPosterContraband + entities: + - uid: 11983 + components: + - pos: -44.5,-15.5 + parent: 1 + type: Transform + - uid: 11995 + components: + - pos: 19.5,26.5 + parent: 1 + type: Transform +- proto: RandomPosterLegit + entities: + - uid: 29 + components: + - pos: -0.5,-6.5 + parent: 1 + type: Transform + - uid: 11939 + components: + - pos: -5.5,26.5 + parent: 1 + type: Transform + - uid: 11940 + components: + - pos: 2.5,22.5 + parent: 1 + type: Transform + - uid: 11941 + components: + - pos: 6.5,7.5 + parent: 1 + type: Transform + - uid: 11942 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 11943 + components: + - pos: -2.5,-10.5 + parent: 1 + type: Transform + - uid: 11944 + components: + - pos: 9.5,-10.5 + parent: 1 + type: Transform + - uid: 11945 + components: + - pos: 12.5,-3.5 + parent: 1 + type: Transform + - uid: 11946 + components: + - pos: 17.5,0.5 + parent: 1 + type: Transform + - uid: 11947 + components: + - pos: 28.5,4.5 + parent: 1 + type: Transform + - uid: 11948 + components: + - pos: 39.5,0.5 + parent: 1 + type: Transform + - uid: 11949 + components: + - pos: 43.5,7.5 + parent: 1 + type: Transform + - uid: 11951 + components: + - pos: 40.5,24.5 + parent: 1 + type: Transform + - uid: 11952 + components: + - pos: -18.5,0.5 + parent: 1 + type: Transform + - uid: 11953 + components: + - pos: -30.5,4.5 + parent: 1 + type: Transform + - uid: 11954 + components: + - pos: -38.5,11.5 + parent: 1 + type: Transform + - uid: 11955 + components: + - pos: -40.5,-8.5 + parent: 1 + type: Transform + - uid: 11967 + components: + - pos: 16.5,-19.5 + parent: 1 + type: Transform + - uid: 11968 + components: + - pos: 17.5,-28.5 + parent: 1 + type: Transform + - uid: 11975 + components: + - pos: 3.5,-13.5 + parent: 1 + type: Transform + - uid: 11976 + components: + - pos: -0.5,-27.5 + parent: 1 + type: Transform + - uid: 11977 + components: + - pos: -12.5,-23.5 + parent: 1 + type: Transform + - uid: 11978 + components: + - pos: -13.5,-12.5 + parent: 1 + type: Transform + - uid: 11980 + components: + - pos: -29.5,-5.5 + parent: 1 + type: Transform + - uid: 11998 + components: + - pos: 14.5,22.5 + parent: 1 + type: Transform + - uid: 12101 + components: + - pos: -14.5,29.5 + parent: 1 + type: Transform + - uid: 12102 + components: + - pos: -2.5,47.5 + parent: 1 + type: Transform + - uid: 12103 + components: + - pos: -11.5,51.5 + parent: 1 + type: Transform + - uid: 12104 + components: + - pos: 4.5,53.5 + parent: 1 + type: Transform + - uid: 12110 + components: + - pos: -38.5,20.5 + parent: 1 + type: Transform +- proto: RandomSoap + entities: + - uid: 12498 + components: + - pos: -19.5,-27.5 + parent: 1 + type: Transform + - uid: 12499 + components: + - pos: -17.5,-27.5 + parent: 1 + type: Transform + - uid: 12500 + components: + - pos: -15.5,-27.5 + parent: 1 + type: Transform +- proto: RandomSpawner + entities: + - uid: 11734 + components: + - pos: -11.5,27.5 + parent: 1 + type: Transform + - uid: 11735 + components: + - pos: -2.5,29.5 + parent: 1 + type: Transform + - uid: 11736 + components: + - pos: 0.5,25.5 + parent: 1 + type: Transform + - uid: 11737 + components: + - pos: 5.5,23.5 + parent: 1 + type: Transform + - uid: 11738 + components: + - pos: 2.5,14.5 + parent: 1 + type: Transform + - uid: 11739 + components: + - pos: 8.5,16.5 + parent: 1 + type: Transform + - uid: 11740 + components: + - pos: 7.5,12.5 + parent: 1 + type: Transform + - uid: 11741 + components: + - pos: -2.5,16.5 + parent: 1 + type: Transform + - uid: 11742 + components: + - pos: -5.5,13.5 + parent: 1 + type: Transform + - uid: 11743 + components: + - pos: -4.5,7.5 + parent: 1 + type: Transform + - uid: 11744 + components: + - pos: -6.5,1.5 + parent: 1 + type: Transform + - uid: 11745 + components: + - pos: -4.5,-4.5 + parent: 1 + type: Transform + - uid: 11746 + components: + - pos: -8.5,-7.5 + parent: 1 + type: Transform + - uid: 11747 + components: + - pos: -1.5,-9.5 + parent: 1 + type: Transform + - uid: 11748 + components: + - pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 11750 + components: + - pos: 12.5,-8.5 + parent: 1 + type: Transform + - uid: 11751 + components: + - pos: 7.5,-4.5 + parent: 1 + type: Transform + - uid: 11752 + components: + - pos: 9.5,3.5 + parent: 1 + type: Transform + - uid: 11753 + components: + - pos: 7.5,9.5 + parent: 1 + type: Transform + - uid: 11754 + components: + - pos: 3.5,8.5 + parent: 1 + type: Transform + - uid: 11755 + components: + - pos: -1.5,9.5 + parent: 1 + type: Transform + - uid: 11756 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 11757 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 11758 + components: + - pos: 13.5,1.5 + parent: 1 + type: Transform + - uid: 11759 + components: + - pos: 21.5,3.5 + parent: 1 + type: Transform + - uid: 11760 + components: + - pos: 29.5,2.5 + parent: 1 + type: Transform + - uid: 11761 + components: + - pos: 37.5,1.5 + parent: 1 + type: Transform + - uid: 11762 + components: + - pos: 40.5,3.5 + parent: 1 + type: Transform + - uid: 11763 + components: + - pos: 45.5,1.5 + parent: 1 + type: Transform + - uid: 11764 + components: + - pos: 46.5,8.5 + parent: 1 + type: Transform + - uid: 11765 + components: + - pos: 46.5,16.5 + parent: 1 + type: Transform + - uid: 11766 + components: + - pos: 44.5,22.5 + parent: 1 + type: Transform + - uid: 11767 + components: + - pos: 40.5,26.5 + parent: 1 + type: Transform + - uid: 11768 + components: + - pos: 45.5,28.5 + parent: 1 + type: Transform + - uid: 11769 + components: + - pos: 32.5,26.5 + parent: 1 + type: Transform + - uid: 11770 + components: + - pos: 27.5,26.5 + parent: 1 + type: Transform + - uid: 11771 + components: + - pos: 33.5,21.5 + parent: 1 + type: Transform + - uid: 11772 + components: + - pos: 31.5,16.5 + parent: 1 + type: Transform + - uid: 11773 + components: + - pos: 33.5,11.5 + parent: 1 + type: Transform + - uid: 11774 + components: + - pos: 26.5,8.5 + parent: 1 + type: Transform + - uid: 11775 + components: + - pos: 20.5,10.5 + parent: 1 + type: Transform + - uid: 11776 + components: + - pos: 14.5,8.5 + parent: 1 + type: Transform + - uid: 11777 + components: + - pos: 12.5,13.5 + parent: 1 + type: Transform + - uid: 11778 + components: + - pos: 21.5,14.5 + parent: 1 + type: Transform + - uid: 11779 + components: + - pos: 21.5,6.5 + parent: 1 + type: Transform + - uid: 11780 + components: + - pos: 32.5,6.5 + parent: 1 + type: Transform + - uid: 11781 + components: + - pos: 42.5,15.5 + parent: 1 + type: Transform + - uid: 11782 + components: + - pos: 41.5,6.5 + parent: 1 + type: Transform + - uid: 11783 + components: + - pos: 36.5,19.5 + parent: 1 + type: Transform + - uid: 11784 + components: + - pos: 37.5,29.5 + parent: 1 + type: Transform + - uid: 11785 + components: + - pos: 33.5,34.5 + parent: 1 + type: Transform + - uid: 11786 + components: + - pos: 26.5,33.5 + parent: 1 + type: Transform + - uid: 11787 + components: + - pos: 21.5,35.5 + parent: 1 + type: Transform + - uid: 11788 + components: + - pos: 20.5,29.5 + parent: 1 + type: Transform + - uid: 11789 + components: + - pos: 16.5,30.5 + parent: 1 + type: Transform + - uid: 11790 + components: + - pos: 9.5,28.5 + parent: 1 + type: Transform + - uid: 11791 + components: + - pos: 8.5,22.5 + parent: 1 + type: Transform + - uid: 11792 + components: + - pos: 13.5,18.5 + parent: 1 + type: Transform + - uid: 11793 + components: + - pos: 21.5,18.5 + parent: 1 + type: Transform + - uid: 11794 + components: + - pos: 26.5,20.5 + parent: 1 + type: Transform + - uid: 11795 + components: + - pos: 20.5,26.5 + parent: 1 + type: Transform + - uid: 11796 + components: + - pos: 15.5,21.5 + parent: 1 + type: Transform + - uid: 11799 + components: + - pos: 17.5,26.5 + parent: 1 + type: Transform + - uid: 11800 + components: + - pos: -8.5,18.5 + parent: 1 + type: Transform + - uid: 11801 + components: + - pos: -9.5,24.5 + parent: 1 + type: Transform + - uid: 11802 + components: + - pos: -16.5,24.5 + parent: 1 + type: Transform + - uid: 11803 + components: + - pos: -17.5,28.5 + parent: 1 + type: Transform + - uid: 11804 + components: + - pos: -27.5,26.5 + parent: 1 + type: Transform + - uid: 11805 + components: + - pos: -23.5,22.5 + parent: 1 + type: Transform + - uid: 11806 + components: + - pos: -25.5,21.5 + parent: 1 + type: Transform + - uid: 11807 + components: + - pos: -29.5,22.5 + parent: 1 + type: Transform + - uid: 11808 + components: + - pos: -34.5,23.5 + parent: 1 + type: Transform + - uid: 11809 + components: + - pos: -36.5,18.5 + parent: 1 + type: Transform + - uid: 11810 + components: + - pos: -40.5,19.5 + parent: 1 + type: Transform + - uid: 11811 + components: + - pos: -39.5,15.5 + parent: 1 + type: Transform + - uid: 11812 + components: + - pos: -41.5,12.5 + parent: 1 + type: Transform + - uid: 11813 + components: + - pos: -40.5,9.5 + parent: 1 + type: Transform + - uid: 11814 + components: + - pos: -41.5,3.5 + parent: 1 + type: Transform + - uid: 11815 + components: + - pos: -35.5,1.5 + parent: 1 + type: Transform + - uid: 11816 + components: + - pos: -30.5,3.5 + parent: 1 + type: Transform + - uid: 11817 + components: + - pos: -24.5,1.5 + parent: 1 + type: Transform + - uid: 11818 + components: + - pos: -17.5,3.5 + parent: 1 + type: Transform + - uid: 11819 + components: + - pos: -11.5,2.5 + parent: 1 + type: Transform + - uid: 11820 + components: + - pos: -11.5,6.5 + parent: 1 + type: Transform + - uid: 11821 + components: + - pos: -8.5,10.5 + parent: 1 + type: Transform + - uid: 11822 + components: + - pos: -13.5,10.5 + parent: 1 + type: Transform + - uid: 11823 + components: + - pos: -20.5,8.5 + parent: 1 + type: Transform + - uid: 11824 + components: + - pos: -16.5,15.5 + parent: 1 + type: Transform + - uid: 11825 + components: + - pos: -13.5,18.5 + parent: 1 + type: Transform + - uid: 11826 + components: + - pos: -11.5,15.5 + parent: 1 + type: Transform + - uid: 11827 + components: + - pos: -25.5,10.5 + parent: 1 + type: Transform + - uid: 11828 + components: + - pos: -24.5,15.5 + parent: 1 + type: Transform + - uid: 11829 + components: + - pos: -25.5,5.5 + parent: 1 + type: Transform + - uid: 11830 + components: + - pos: -18.5,10.5 + parent: 1 + type: Transform + - uid: 11831 + components: + - pos: -28.5,8.5 + parent: 1 + type: Transform + - uid: 11832 + components: + - pos: -29.5,15.5 + parent: 1 + type: Transform + - uid: 11833 + components: + - pos: -23.5,18.5 + parent: 1 + type: Transform + - uid: 11834 + components: + - pos: -22.5,27.5 + parent: 1 + type: Transform + - uid: 11835 + components: + - pos: -33.5,5.5 + parent: 1 + type: Transform + - uid: 11836 + components: + - pos: -37.5,10.5 + parent: 1 + type: Transform + - uid: 11837 + components: + - pos: -37.5,-1.5 + parent: 1 + type: Transform + - uid: 11838 + components: + - pos: -40.5,-7.5 + parent: 1 + type: Transform + - uid: 11839 + components: + - pos: -40.5,-10.5 + parent: 1 + type: Transform + - uid: 11840 + components: + - pos: -32.5,-2.5 + parent: 1 + type: Transform + - uid: 11841 + components: + - pos: -34.5,-9.5 + parent: 1 + type: Transform + - uid: 11842 + components: + - pos: -28.5,-9.5 + parent: 1 + type: Transform + - uid: 11843 + components: + - pos: -25.5,-13.5 + parent: 1 + type: Transform + - uid: 11844 + components: + - pos: -26.5,-18.5 + parent: 1 + type: Transform + - uid: 11845 + components: + - pos: -22.5,-20.5 + parent: 1 + type: Transform + - uid: 11846 + components: + - pos: -15.5,-21.5 + parent: 1 + type: Transform + - uid: 11847 + components: + - pos: -17.5,-25.5 + parent: 1 + type: Transform + - uid: 11848 + components: + - pos: -9.5,-21.5 + parent: 1 + type: Transform + - uid: 11849 + components: + - pos: -12.5,-17.5 + parent: 1 + type: Transform + - uid: 11850 + components: + - pos: -3.5,-18.5 + parent: 1 + type: Transform + - uid: 11852 + components: + - pos: -1.5,-13.5 + parent: 1 + type: Transform + - uid: 11853 + components: + - pos: -12.5,-10.5 + parent: 1 + type: Transform + - uid: 11854 + components: + - pos: -10.5,-2.5 + parent: 1 + type: Transform + - uid: 11855 + components: + - pos: -15.5,-2.5 + parent: 1 + type: Transform + - uid: 11856 + components: + - pos: -22.5,-6.5 + parent: 1 + type: Transform + - uid: 11857 + components: + - pos: -26.5,-5.5 + parent: 1 + type: Transform + - uid: 11858 + components: + - pos: -28.5,-3.5 + parent: 1 + type: Transform + - uid: 11859 + components: + - pos: -17.5,-10.5 + parent: 1 + type: Transform + - uid: 11860 + components: + - pos: -15.5,-16.5 + parent: 1 + type: Transform + - uid: 11861 + components: + - pos: -20.5,-17.5 + parent: 1 + type: Transform + - uid: 11862 + components: + - pos: -22.5,-25.5 + parent: 1 + type: Transform + - uid: 11863 + components: + - pos: -32.5,-20.5 + parent: 1 + type: Transform + - uid: 11864 + components: + - pos: -37.5,-19.5 + parent: 1 + type: Transform + - uid: 11865 + components: + - pos: -38.5,-15.5 + parent: 1 + type: Transform + - uid: 11866 + components: + - pos: -33.5,-16.5 + parent: 1 + type: Transform + - uid: 11867 + components: + - pos: -29.5,-13.5 + parent: 1 + type: Transform + - uid: 11868 + components: + - pos: -35.5,-12.5 + parent: 1 + type: Transform + - uid: 11869 + components: + - pos: -41.5,-15.5 + parent: 1 + type: Transform + - uid: 11870 + components: + - pos: -42.5,-18.5 + parent: 1 + type: Transform + - uid: 11871 + components: + - pos: -40.5,-23.5 + parent: 1 + type: Transform + - uid: 11872 + components: + - pos: -9.5,-26.5 + parent: 1 + type: Transform + - uid: 11873 + components: + - pos: -2.5,-24.5 + parent: 1 + type: Transform + - uid: 11874 + components: + - pos: -5.5,-25.5 + parent: 1 + type: Transform + - uid: 11875 + components: + - pos: -4.5,-21.5 + parent: 1 + type: Transform + - uid: 11876 + components: + - pos: 0.5,-31.5 + parent: 1 + type: Transform + - uid: 11877 + components: + - pos: 2.5,-23.5 + parent: 1 + type: Transform + - uid: 11878 + components: + - pos: 0.5,-15.5 + parent: 1 + type: Transform + - uid: 11879 + components: + - pos: 1.5,-12.5 + parent: 1 + type: Transform + - uid: 11880 + components: + - pos: 7.5,-11.5 + parent: 1 + type: Transform + - uid: 11881 + components: + - pos: 10.5,-14.5 + parent: 1 + type: Transform + - uid: 11882 + components: + - pos: 16.5,-18.5 + parent: 1 + type: Transform + - uid: 11883 + components: + - pos: 23.5,-17.5 + parent: 1 + type: Transform + - uid: 11884 + components: + - pos: 29.5,-17.5 + parent: 1 + type: Transform + - uid: 11885 + components: + - pos: 30.5,-13.5 + parent: 1 + type: Transform + - uid: 11886 + components: + - pos: 31.5,-11.5 + parent: 1 + type: Transform + - uid: 11887 + components: + - pos: 26.5,-6.5 + parent: 1 + type: Transform + - uid: 11888 + components: + - pos: 28.5,-3.5 + parent: 1 + type: Transform + - uid: 11889 + components: + - pos: 21.5,-6.5 + parent: 1 + type: Transform + - uid: 11890 + components: + - pos: 16.5,-4.5 + parent: 1 + type: Transform + - uid: 11891 + components: + - pos: 11.5,-6.5 + parent: 1 + type: Transform + - uid: 11892 + components: + - pos: 14.5,-11.5 + parent: 1 + type: Transform + - uid: 11893 + components: + - pos: 22.5,-10.5 + parent: 1 + type: Transform + - uid: 11894 + components: + - pos: 18.5,-1.5 + parent: 1 + type: Transform + - uid: 11895 + components: + - pos: 28.5,-1.5 + parent: 1 + type: Transform + - uid: 11896 + components: + - pos: 34.5,-0.5 + parent: 1 + type: Transform + - uid: 11897 + components: + - pos: 43.5,-0.5 + parent: 1 + type: Transform + - uid: 11898 + components: + - pos: 31.5,-6.5 + parent: 1 + type: Transform + - uid: 11899 + components: + - pos: 22.5,-27.5 + parent: 1 + type: Transform + - uid: 11900 + components: + - pos: 13.5,-25.5 + parent: 1 + type: Transform + - uid: 11901 + components: + - pos: 8.5,-26.5 + parent: 1 + type: Transform + - uid: 11902 + components: + - pos: 5.5,-25.5 + parent: 1 + type: Transform + - uid: 11903 + components: + - pos: 10.5,-22.5 + parent: 1 + type: Transform + - uid: 11904 + components: + - pos: 4.5,-20.5 + parent: 1 + type: Transform + - uid: 11905 + components: + - pos: 9.5,-17.5 + parent: 1 + type: Transform + - uid: 11906 + components: + - pos: 15.5,-21.5 + parent: 1 + type: Transform + - uid: 11907 + components: + - pos: 20.5,-21.5 + parent: 1 + type: Transform + - uid: 11908 + components: + - pos: -2.5,-32.5 + parent: 1 + type: Transform + - uid: 12423 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 12538 + components: + - pos: -22.5,-28.5 + parent: 1 + type: Transform +- proto: RandomVending + entities: + - uid: 7525 + components: + - pos: -41.5,16.5 + parent: 1 + type: Transform + - uid: 7534 + components: + - pos: -32.5,0.5 + parent: 1 + type: Transform + - uid: 7541 + components: + - pos: 1.5,-7.5 + parent: 1 + type: Transform + - uid: 7685 + components: + - pos: 8.5,-9.5 + parent: 1 + type: Transform + - uid: 7686 + components: + - pos: 9.5,-9.5 + parent: 1 + type: Transform + - uid: 9241 + components: + - pos: 19.5,34.5 + parent: 1 + type: Transform + - uid: 9565 + components: + - pos: 20.5,1.5 + parent: 1 + type: Transform + - uid: 9570 + components: + - pos: 41.5,4.5 + parent: 1 + type: Transform + - uid: 9572 + components: + - pos: 44.5,14.5 + parent: 1 + type: Transform +- proto: RandomVendingDrinks + entities: + - uid: 5050 + components: + - pos: 1.5,23.5 + parent: 1 + type: Transform + - uid: 7529 + components: + - pos: -41.5,15.5 + parent: 1 + type: Transform + - uid: 7531 + components: + - pos: -0.5,-7.5 + parent: 1 + type: Transform + - uid: 7532 + components: + - pos: -34.5,0.5 + parent: 1 + type: Transform + - uid: 7536 + components: + - pos: -3.5,12.5 + parent: 1 + type: Transform + - uid: 7687 + components: + - pos: -12.5,-24.5 + parent: 1 + type: Transform + - uid: 9240 + components: + - pos: 19.5,33.5 + parent: 1 + type: Transform + - uid: 9527 + components: + - pos: 2.5,-28.5 + parent: 1 + type: Transform + - uid: 9564 + components: + - pos: 22.5,1.5 + parent: 1 + type: Transform + - uid: 9568 + components: + - pos: 39.5,4.5 + parent: 1 + type: Transform + - uid: 9569 + components: + - pos: 44.5,11.5 + parent: 1 + type: Transform +- proto: RandomVendingSnacks + entities: + - uid: 5049 + components: + - pos: 0.5,23.5 + parent: 1 + type: Transform + - uid: 7528 + components: + - pos: -39.5,11.5 + parent: 1 + type: Transform + - uid: 7535 + components: + - pos: -31.5,0.5 + parent: 1 + type: Transform + - uid: 7537 + components: + - pos: 6.5,12.5 + parent: 1 + type: Transform + - uid: 7538 + components: + - pos: -2.5,13.5 + parent: 1 + type: Transform + - uid: 7540 + components: + - pos: 0.5,-7.5 + parent: 1 + type: Transform + - uid: 7688 + components: + - pos: -11.5,-24.5 + parent: 1 + type: Transform + - uid: 9243 + components: + - pos: 19.5,32.5 + parent: 1 + type: Transform + - uid: 9244 + components: + - pos: 26.5,32.5 + parent: 1 + type: Transform + - uid: 9526 + components: + - pos: 2.5,-29.5 + parent: 1 + type: Transform + - uid: 9566 + components: + - pos: 21.5,1.5 + parent: 1 + type: Transform + - uid: 9567 + components: + - pos: 40.5,4.5 + parent: 1 + type: Transform + - uid: 9571 + components: + - pos: 44.5,12.5 + parent: 1 + type: Transform +- proto: RCD + entities: + - uid: 7135 + components: + - pos: 31.574986,-16.418343 + parent: 1 + type: Transform + - uid: 12468 + components: + - pos: 18.51267,-13.338883 + parent: 1 + type: Transform +- proto: RCDAmmo + entities: + - uid: 7136 + components: + - pos: 31.27811,-16.605843 + parent: 1 + type: Transform + - uid: 12469 + components: + - pos: 18.278296,-13.526383 + parent: 1 + type: Transform + - uid: 12470 + components: + - pos: 18.434546,-13.526383 + parent: 1 + type: Transform +- proto: ReagentContainerFlour + entities: + - uid: 6016 + components: + - pos: 0.46557093,1.1092224 + parent: 1 + type: Transform +- proto: ReagentContainerSugar + entities: + - uid: 6017 + components: + - pos: 0.6191431,1.0935974 + parent: 1 + type: Transform +- proto: Recycler + entities: + - uid: 3570 + components: + - rot: 3.141592653589793 rad + pos: -33.5,24.5 + parent: 1 + type: Transform + - links: + - 9199 + type: DeviceLinkSink +- proto: ReinforcedPlasmaWindow + entities: + - uid: 521 + components: + - rot: 3.141592653589793 rad + pos: -28.5,-4.5 + parent: 1 + type: Transform + - uid: 539 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-4.5 + parent: 1 + type: Transform + - uid: 1434 + components: + - pos: 42.5,-5.5 + parent: 1 + type: Transform + - uid: 1435 + components: + - pos: 42.5,-7.5 + parent: 1 + type: Transform + - uid: 1437 + components: + - pos: 42.5,-11.5 + parent: 1 + type: Transform + - uid: 1438 + components: + - pos: 42.5,-13.5 + parent: 1 + type: Transform + - uid: 1439 + components: + - pos: 42.5,-15.5 + parent: 1 + type: Transform + - uid: 1440 + components: + - pos: 42.5,-17.5 + parent: 1 + type: Transform + - uid: 6822 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-9.5 + parent: 1 + type: Transform + - uid: 12308 + components: + - rot: 3.141592653589793 rad + pos: -0.5,64.5 + parent: 1 + type: Transform + - uid: 12309 + components: + - rot: 3.141592653589793 rad + pos: -1.5,65.5 + parent: 1 + type: Transform + - uid: 12310 + components: + - rot: 3.141592653589793 rad + pos: -0.5,66.5 + parent: 1 + type: Transform + - uid: 12311 + components: + - rot: 3.141592653589793 rad + pos: 0.5,65.5 + parent: 1 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 23 + components: + - rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 1 + type: Transform + - uid: 31 + components: + - pos: 2.5,-6.5 + parent: 1 + type: Transform + - uid: 32 + components: + - rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 33 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-6.5 + parent: 1 + type: Transform + - uid: 37 + components: + - rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 39 + components: + - pos: 6.5,-5.5 + parent: 1 + type: Transform + - uid: 45 + components: + - pos: 5.5,-6.5 + parent: 1 + type: Transform + - uid: 61 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-2.5 + parent: 1 + type: Transform + - uid: 62 + components: + - pos: 6.5,-4.5 + parent: 1 + type: Transform + - uid: 63 + components: + - rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 64 + components: + - rot: 3.141592653589793 rad + pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 108 + components: + - pos: 3.5,20.5 + parent: 1 + type: Transform + - uid: 109 + components: + - pos: 3.5,17.5 + parent: 1 + type: Transform + - uid: 110 + components: + - pos: 5.5,17.5 + parent: 1 + type: Transform + - uid: 121 + components: + - pos: 5.5,20.5 + parent: 1 + type: Transform + - uid: 134 + components: + - pos: -2.5,18.5 + parent: 1 + type: Transform + - uid: 135 + components: + - pos: -1.5,18.5 + parent: 1 + type: Transform + - uid: 136 + components: + - pos: -0.5,18.5 + parent: 1 + type: Transform + - uid: 137 + components: + - pos: 1.5,18.5 + parent: 1 + type: Transform + - uid: 159 + components: + - rot: 3.141592653589793 rad + pos: -10.5,8.5 + parent: 1 + type: Transform + - uid: 161 + components: + - pos: -7.5,13.5 + parent: 1 + type: Transform + - uid: 163 + components: + - pos: -7.5,14.5 + parent: 1 + type: Transform + - uid: 164 + components: + - pos: -13.5,12.5 + parent: 1 + type: Transform + - uid: 170 + components: + - pos: -11.5,12.5 + parent: 1 + type: Transform + - uid: 171 + components: + - rot: 3.141592653589793 rad + pos: -10.5,11.5 + parent: 1 + type: Transform + - uid: 174 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,5.5 + parent: 1 + type: Transform + - uid: 178 + components: + - rot: 3.141592653589793 rad + pos: -7.5,6.5 + parent: 1 + type: Transform + - uid: 186 + components: + - pos: -14.5,16.5 + parent: 1 + type: Transform + - uid: 188 + components: + - pos: -14.5,14.5 + parent: 1 + type: Transform + - uid: 209 + components: + - pos: -17.5,14.5 + parent: 1 + type: Transform + - uid: 211 + components: + - rot: 3.141592653589793 rad + pos: -8.5,4.5 + parent: 1 + type: Transform + - uid: 212 + components: + - rot: 3.141592653589793 rad + pos: -9.5,4.5 + parent: 1 + type: Transform + - uid: 215 + components: + - rot: 3.141592653589793 rad + pos: -11.5,4.5 + parent: 1 + type: Transform + - uid: 217 + components: + - rot: 3.141592653589793 rad + pos: -12.5,4.5 + parent: 1 + type: Transform + - uid: 219 + components: + - rot: 3.141592653589793 rad + pos: -14.5,4.5 + parent: 1 + type: Transform + - uid: 220 + components: + - rot: 3.141592653589793 rad + pos: -15.5,4.5 + parent: 1 + type: Transform + - uid: 228 + components: + - rot: 3.141592653589793 rad + pos: -18.5,4.5 + parent: 1 + type: Transform + - uid: 229 + components: + - rot: 3.141592653589793 rad + pos: -17.5,4.5 + parent: 1 + type: Transform + - uid: 231 + components: + - rot: 3.141592653589793 rad + pos: -20.5,4.5 + parent: 1 + type: Transform + - uid: 255 + components: + - rot: 3.141592653589793 rad + pos: -21.5,4.5 + parent: 1 + type: Transform + - uid: 263 + components: + - pos: -26.5,8.5 + parent: 1 + type: Transform + - uid: 264 + components: + - pos: -25.5,8.5 + parent: 1 + type: Transform + - uid: 265 + components: + - pos: -23.5,8.5 + parent: 1 + type: Transform + - uid: 332 + components: + - rot: 3.141592653589793 rad + pos: 3.5,32.5 + parent: 1 + type: Transform + - uid: 333 + components: + - rot: 3.141592653589793 rad + pos: 4.5,32.5 + parent: 1 + type: Transform + - uid: 334 + components: + - rot: 3.141592653589793 rad + pos: 5.5,32.5 + parent: 1 + type: Transform + - uid: 362 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,32.5 + parent: 1 + type: Transform + - uid: 363 + components: + - pos: -4.5,33.5 + parent: 1 + type: Transform + - uid: 366 + components: + - pos: 0.5,32.5 + parent: 1 + type: Transform + - uid: 367 + components: + - pos: 0.5,33.5 + parent: 1 + type: Transform + - uid: 368 + components: + - pos: -2.5,33.5 + parent: 1 + type: Transform + - uid: 369 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,32.5 + parent: 1 + type: Transform + - uid: 371 + components: + - pos: -3.5,33.5 + parent: 1 + type: Transform + - uid: 372 + components: + - pos: -0.5,33.5 + parent: 1 + type: Transform + - uid: 373 + components: + - pos: -1.5,33.5 + parent: 1 + type: Transform + - uid: 376 + components: + - pos: -4.5,32.5 + parent: 1 + type: Transform + - uid: 379 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,27.5 + parent: 1 + type: Transform + - uid: 380 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,28.5 + parent: 1 + type: Transform + - uid: 381 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,30.5 + parent: 1 + type: Transform + - uid: 382 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,31.5 + parent: 1 + type: Transform + - uid: 400 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,32.5 + parent: 1 + type: Transform + - uid: 401 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,32.5 + parent: 1 + type: Transform + - uid: 403 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,32.5 + parent: 1 + type: Transform + - uid: 404 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,32.5 + parent: 1 + type: Transform + - uid: 426 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,32.5 + parent: 1 + type: Transform + - uid: 430 + components: + - pos: -13.5,32.5 + parent: 1 + type: Transform + - uid: 445 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-2.5 + parent: 1 + type: Transform + - uid: 446 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 1 + type: Transform + - uid: 447 + components: + - rot: 3.141592653589793 rad + pos: -9.5,0.5 + parent: 1 + type: Transform + - uid: 448 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-3.5 + parent: 1 + type: Transform + - uid: 450 + components: + - rot: 3.141592653589793 rad + pos: -10.5,0.5 + parent: 1 + type: Transform + - uid: 451 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-0.5 + parent: 1 + type: Transform + - uid: 452 + components: + - rot: 3.141592653589793 rad + pos: -8.5,0.5 + parent: 1 + type: Transform + - uid: 455 + components: + - rot: 3.141592653589793 rad + pos: -12.5,0.5 + parent: 1 + type: Transform + - uid: 457 + components: + - rot: 3.141592653589793 rad + pos: -11.5,0.5 + parent: 1 + type: Transform + - uid: 467 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-8.5 + parent: 1 + type: Transform + - uid: 473 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-9.5 + parent: 1 + type: Transform + - uid: 504 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,15.5 + parent: 1 + type: Transform + - uid: 545 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-1.5 + parent: 1 + type: Transform + - uid: 578 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-7.5 + parent: 1 + type: Transform + - uid: 579 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-7.5 + parent: 1 + type: Transform + - uid: 582 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-10.5 + parent: 1 + type: Transform + - uid: 589 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-11.5 + parent: 1 + type: Transform + - uid: 593 + components: + - pos: -19.5,-15.5 + parent: 1 + type: Transform + - uid: 594 + components: + - pos: -20.5,-15.5 + parent: 1 + type: Transform + - uid: 595 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-12.5 + parent: 1 + type: Transform + - uid: 598 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-11.5 + parent: 1 + type: Transform + - uid: 600 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-14.5 + parent: 1 + type: Transform + - uid: 602 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-8.5 + parent: 1 + type: Transform + - uid: 608 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-14.5 + parent: 1 + type: Transform + - uid: 609 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-13.5 + parent: 1 + type: Transform + - uid: 610 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-11.5 + parent: 1 + type: Transform + - uid: 611 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-12.5 + parent: 1 + type: Transform + - uid: 667 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,12.5 + parent: 1 + type: Transform + - uid: 671 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,15.5 + parent: 1 + type: Transform + - uid: 674 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,12.5 + parent: 1 + type: Transform + - uid: 703 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,4.5 + parent: 1 + type: Transform + - uid: 704 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,4.5 + parent: 1 + type: Transform + - uid: 705 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,4.5 + parent: 1 + type: Transform + - uid: 706 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,4.5 + parent: 1 + type: Transform + - uid: 707 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,4.5 + parent: 1 + type: Transform + - uid: 708 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,4.5 + parent: 1 + type: Transform + - uid: 709 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,8.5 + parent: 1 + type: Transform + - uid: 710 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,9.5 + parent: 1 + type: Transform + - uid: 711 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,10.5 + parent: 1 + type: Transform + - uid: 721 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,7.5 + parent: 1 + type: Transform + - uid: 723 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,7.5 + parent: 1 + type: Transform + - uid: 725 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,7.5 + parent: 1 + type: Transform + - uid: 737 + components: + - rot: 3.141592653589793 rad + pos: 18.5,11.5 + parent: 1 + type: Transform + - uid: 738 + components: + - rot: 3.141592653589793 rad + pos: 19.5,11.5 + parent: 1 + type: Transform + - uid: 739 + components: + - rot: 3.141592653589793 rad + pos: 22.5,11.5 + parent: 1 + type: Transform + - uid: 740 + components: + - rot: 3.141592653589793 rad + pos: 23.5,11.5 + parent: 1 + type: Transform + - uid: 792 + components: + - pos: 30.5,14.5 + parent: 1 + type: Transform + - uid: 960 + components: + - pos: 28.5,31.5 + parent: 1 + type: Transform + - uid: 965 + components: + - pos: 27.5,31.5 + parent: 1 + type: Transform + - uid: 966 + components: + - pos: 26.5,31.5 + parent: 1 + type: Transform + - uid: 967 + components: + - pos: 25.5,31.5 + parent: 1 + type: Transform + - uid: 968 + components: + - pos: 24.5,31.5 + parent: 1 + type: Transform + - uid: 979 + components: + - pos: 32.5,29.5 + parent: 1 + type: Transform + - uid: 980 + components: + - pos: 31.5,29.5 + parent: 1 + type: Transform + - uid: 981 + components: + - pos: 30.5,29.5 + parent: 1 + type: Transform + - uid: 982 + components: + - pos: 29.5,29.5 + parent: 1 + type: Transform + - uid: 983 + components: + - pos: 28.5,29.5 + parent: 1 + type: Transform + - uid: 1030 + components: + - pos: 13.5,-9.5 + parent: 1 + type: Transform + - uid: 1031 + components: + - pos: 11.5,-9.5 + parent: 1 + type: Transform + - uid: 1037 + components: + - pos: 14.5,-4.5 + parent: 1 + type: Transform + - uid: 1048 + components: + - pos: 17.5,-6.5 + parent: 1 + type: Transform + - uid: 1049 + components: + - pos: 17.5,-7.5 + parent: 1 + type: Transform + - uid: 1072 + components: + - pos: 21.5,-15.5 + parent: 1 + type: Transform + - uid: 1077 + components: + - pos: 18.5,-12.5 + parent: 1 + type: Transform + - uid: 1078 + components: + - pos: 19.5,-12.5 + parent: 1 + type: Transform + - uid: 1079 + components: + - pos: 20.5,-12.5 + parent: 1 + type: Transform + - uid: 1084 + components: + - pos: 18.5,-9.5 + parent: 1 + type: Transform + - uid: 1085 + components: + - pos: 19.5,-9.5 + parent: 1 + type: Transform + - uid: 1086 + components: + - pos: 20.5,-9.5 + parent: 1 + type: Transform + - uid: 1099 + components: + - pos: 23.5,-12.5 + parent: 1 + type: Transform + - uid: 1176 + components: + - pos: 24.5,-8.5 + parent: 1 + type: Transform + - uid: 1178 + components: + - pos: 25.5,-9.5 + parent: 1 + type: Transform + - uid: 1179 + components: + - pos: 26.5,-9.5 + parent: 1 + type: Transform + - uid: 1180 + components: + - pos: 24.5,-6.5 + parent: 1 + type: Transform + - uid: 1181 + components: + - pos: 24.5,-5.5 + parent: 1 + type: Transform + - uid: 1182 + components: + - pos: 24.5,-4.5 + parent: 1 + type: Transform + - uid: 1183 + components: + - pos: 24.5,-3.5 + parent: 1 + type: Transform + - uid: 1184 + components: + - pos: 28.5,-9.5 + parent: 1 + type: Transform + - uid: 1185 + components: + - pos: 29.5,-9.5 + parent: 1 + type: Transform + - uid: 1253 + components: + - pos: 46.5,0.5 + parent: 1 + type: Transform + - uid: 1254 + components: + - pos: 47.5,0.5 + parent: 1 + type: Transform + - uid: 1255 + components: + - pos: 47.5,1.5 + parent: 1 + type: Transform + - uid: 1258 + components: + - pos: 47.5,16.5 + parent: 1 + type: Transform + - uid: 1259 + components: + - pos: 47.5,15.5 + parent: 1 + type: Transform + - uid: 1264 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,2.5 + parent: 1 + type: Transform + - uid: 1265 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,3.5 + parent: 1 + type: Transform + - uid: 1266 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,10.5 + parent: 1 + type: Transform + - uid: 1267 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,9.5 + parent: 1 + type: Transform + - uid: 1270 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,14.5 + parent: 1 + type: Transform + - uid: 1284 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,8.5 + parent: 1 + type: Transform + - uid: 1285 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,7.5 + parent: 1 + type: Transform + - uid: 1293 + components: + - pos: 47.5,17.5 + parent: 1 + type: Transform + - uid: 1295 + components: + - pos: 43.5,21.5 + parent: 1 + type: Transform + - uid: 1296 + components: + - pos: 43.5,23.5 + parent: 1 + type: Transform + - uid: 1308 + components: + - pos: 40.5,-19.5 + parent: 1 + type: Transform + - uid: 1309 + components: + - pos: 40.5,-18.5 + parent: 1 + type: Transform + - uid: 1310 + components: + - pos: 40.5,-17.5 + parent: 1 + type: Transform + - uid: 1311 + components: + - pos: 40.5,-16.5 + parent: 1 + type: Transform + - uid: 1312 + components: + - pos: 40.5,-15.5 + parent: 1 + type: Transform + - uid: 1313 + components: + - pos: 40.5,-14.5 + parent: 1 + type: Transform + - uid: 1314 + components: + - pos: 40.5,-13.5 + parent: 1 + type: Transform + - uid: 1315 + components: + - pos: 40.5,-12.5 + parent: 1 + type: Transform + - uid: 1316 + components: + - pos: 40.5,-11.5 + parent: 1 + type: Transform + - uid: 1317 + components: + - pos: 40.5,-10.5 + parent: 1 + type: Transform + - uid: 1318 + components: + - pos: 40.5,-9.5 + parent: 1 + type: Transform + - uid: 1319 + components: + - pos: 40.5,-8.5 + parent: 1 + type: Transform + - uid: 1320 + components: + - pos: 40.5,-7.5 + parent: 1 + type: Transform + - uid: 1321 + components: + - pos: 40.5,-6.5 + parent: 1 + type: Transform + - uid: 1322 + components: + - pos: 40.5,-5.5 + parent: 1 + type: Transform + - uid: 1323 + components: + - pos: 40.5,-4.5 + parent: 1 + type: Transform + - uid: 1324 + components: + - pos: 40.5,-3.5 + parent: 1 + type: Transform + - uid: 1342 + components: + - pos: 39.5,-19.5 + parent: 1 + type: Transform + - uid: 1343 + components: + - pos: 38.5,-19.5 + parent: 1 + type: Transform + - uid: 1344 + components: + - pos: 37.5,-19.5 + parent: 1 + type: Transform + - uid: 1345 + components: + - pos: 36.5,-19.5 + parent: 1 + type: Transform + - uid: 1346 + components: + - pos: 35.5,-19.5 + parent: 1 + type: Transform + - uid: 1347 + components: + - pos: 34.5,-19.5 + parent: 1 + type: Transform + - uid: 1349 + components: + - pos: 32.5,-19.5 + parent: 1 + type: Transform + - uid: 1350 + components: + - pos: 31.5,-19.5 + parent: 1 + type: Transform + - uid: 1363 + components: + - pos: 33.5,-23.5 + parent: 1 + type: Transform + - uid: 1367 + components: + - pos: 33.5,-22.5 + parent: 1 + type: Transform + - uid: 1368 + components: + - pos: 34.5,-21.5 + parent: 1 + type: Transform + - uid: 1369 + components: + - pos: 35.5,-21.5 + parent: 1 + type: Transform + - uid: 1370 + components: + - pos: 36.5,-21.5 + parent: 1 + type: Transform + - uid: 1371 + components: + - pos: 37.5,-22.5 + parent: 1 + type: Transform + - uid: 1372 + components: + - pos: 37.5,-23.5 + parent: 1 + type: Transform + - uid: 1458 + components: + - pos: 5.5,-18.5 + parent: 1 + type: Transform + - uid: 1492 + components: + - pos: 7.5,-19.5 + parent: 1 + type: Transform + - uid: 1494 + components: + - pos: 7.5,-22.5 + parent: 1 + type: Transform + - uid: 1499 + components: + - pos: 6.5,-24.5 + parent: 1 + type: Transform + - uid: 1500 + components: + - pos: 4.5,-24.5 + parent: 1 + type: Transform + - uid: 1508 + components: + - pos: 7.5,-27.5 + parent: 1 + type: Transform + - uid: 1509 + components: + - pos: 7.5,-25.5 + parent: 1 + type: Transform + - uid: 1513 + components: + - pos: 17.5,-20.5 + parent: 1 + type: Transform + - uid: 1517 + components: + - pos: 17.5,-24.5 + parent: 1 + type: Transform + - uid: 1518 + components: + - pos: 17.5,-23.5 + parent: 1 + type: Transform + - uid: 1524 + components: + - pos: 27.5,-23.5 + parent: 1 + type: Transform + - uid: 1535 + components: + - pos: 20.5,-28.5 + parent: 1 + type: Transform + - uid: 1536 + components: + - pos: 19.5,-28.5 + parent: 1 + type: Transform + - uid: 1540 + components: + - pos: 15.5,-30.5 + parent: 1 + type: Transform + - uid: 1541 + components: + - pos: 9.5,-30.5 + parent: 1 + type: Transform + - uid: 1542 + components: + - pos: 9.5,-29.5 + parent: 1 + type: Transform + - uid: 1548 + components: + - pos: 15.5,-29.5 + parent: 1 + type: Transform + - uid: 1549 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-31.5 + parent: 1 + type: Transform + - uid: 1550 + components: + - pos: 12.5,-30.5 + parent: 1 + type: Transform + - uid: 1551 + components: + - pos: 12.5,-29.5 + parent: 1 + type: Transform + - uid: 1552 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-28.5 + parent: 1 + type: Transform + - uid: 1559 + components: + - pos: 27.5,-24.5 + parent: 1 + type: Transform + - uid: 1561 + components: + - pos: 24.5,-25.5 + parent: 1 + type: Transform + - uid: 1562 + components: + - pos: 26.5,-25.5 + parent: 1 + type: Transform + - uid: 1568 + components: + - pos: 8.5,-24.5 + parent: 1 + type: Transform + - uid: 1569 + components: + - pos: 11.5,-24.5 + parent: 1 + type: Transform + - uid: 1570 + components: + - pos: 12.5,-23.5 + parent: 1 + type: Transform + - uid: 1571 + components: + - pos: 12.5,-20.5 + parent: 1 + type: Transform + - uid: 1608 + components: + - pos: 3.5,-29.5 + parent: 1 + type: Transform + - uid: 1614 + components: + - pos: 3.5,-30.5 + parent: 1 + type: Transform + - uid: 1654 + components: + - pos: 3.5,-32.5 + parent: 1 + type: Transform + - uid: 1755 + components: + - pos: 21.5,-28.5 + parent: 1 + type: Transform + - uid: 1956 + components: + - pos: 15.5,-9.5 + parent: 1 + type: Transform + - uid: 1957 + components: + - pos: 16.5,-9.5 + parent: 1 + type: Transform + - uid: 2045 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,22.5 + parent: 1 + type: Transform + - uid: 2057 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,24.5 + parent: 1 + type: Transform + - uid: 2067 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,14.5 + parent: 1 + type: Transform + - uid: 2071 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,12.5 + parent: 1 + type: Transform + - uid: 2081 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,15.5 + parent: 1 + type: Transform + - uid: 2082 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,10.5 + parent: 1 + type: Transform + - uid: 2083 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,1.5 + parent: 1 + type: Transform + - uid: 2084 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,2.5 + parent: 1 + type: Transform + - uid: 2085 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,14.5 + parent: 1 + type: Transform + - uid: 2086 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,14.5 + parent: 1 + type: Transform + - uid: 2087 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,9.5 + parent: 1 + type: Transform + - uid: 2088 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,12.5 + parent: 1 + type: Transform + - uid: 2089 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,10.5 + parent: 1 + type: Transform + - uid: 2103 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-1.5 + parent: 1 + type: Transform + - uid: 2104 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-2.5 + parent: 1 + type: Transform + - uid: 2105 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-3.5 + parent: 1 + type: Transform + - uid: 2106 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-4.5 + parent: 1 + type: Transform + - uid: 2107 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-6.5 + parent: 1 + type: Transform + - uid: 2108 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-5.5 + parent: 1 + type: Transform + - uid: 2123 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,12.5 + parent: 1 + type: Transform + - uid: 2124 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,10.5 + parent: 1 + type: Transform + - uid: 2125 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,6.5 + parent: 1 + type: Transform + - uid: 2126 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,6.5 + parent: 1 + type: Transform + - uid: 2127 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,4.5 + parent: 1 + type: Transform + - uid: 2130 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,2.5 + parent: 1 + type: Transform + - uid: 2131 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,2.5 + parent: 1 + type: Transform + - uid: 2132 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,4.5 + parent: 1 + type: Transform + - uid: 2134 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,6.5 + parent: 1 + type: Transform + - uid: 2135 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,4.5 + parent: 1 + type: Transform + - uid: 2217 + components: + - pos: -44.5,-19.5 + parent: 1 + type: Transform + - uid: 2219 + components: + - pos: -44.5,-18.5 + parent: 1 + type: Transform + - uid: 2233 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-24.5 + parent: 1 + type: Transform + - uid: 2235 + components: + - pos: -42.5,-11.5 + parent: 1 + type: Transform + - uid: 2255 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-24.5 + parent: 1 + type: Transform + - uid: 2262 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-24.5 + parent: 1 + type: Transform + - uid: 2263 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-24.5 + parent: 1 + type: Transform + - uid: 2269 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-23.5 + parent: 1 + type: Transform + - uid: 2277 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-24.5 + parent: 1 + type: Transform + - uid: 2279 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,26.5 + parent: 1 + type: Transform + - uid: 2280 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,26.5 + parent: 1 + type: Transform + - uid: 2281 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,26.5 + parent: 1 + type: Transform + - uid: 2282 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,26.5 + parent: 1 + type: Transform + - uid: 2289 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,31.5 + parent: 1 + type: Transform + - uid: 2290 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,31.5 + parent: 1 + type: Transform + - uid: 2291 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,31.5 + parent: 1 + type: Transform + - uid: 2292 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,31.5 + parent: 1 + type: Transform + - uid: 2302 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,30.5 + parent: 1 + type: Transform + - uid: 2321 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,36.5 + parent: 1 + type: Transform + - uid: 2328 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,36.5 + parent: 1 + type: Transform + - uid: 2331 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,36.5 + parent: 1 + type: Transform + - uid: 2333 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,38.5 + parent: 1 + type: Transform + - uid: 2334 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,38.5 + parent: 1 + type: Transform + - uid: 2335 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,36.5 + parent: 1 + type: Transform + - uid: 2336 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,36.5 + parent: 1 + type: Transform + - uid: 2337 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,38.5 + parent: 1 + type: Transform + - uid: 2338 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,36.5 + parent: 1 + type: Transform + - uid: 2340 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,37.5 + parent: 1 + type: Transform + - uid: 2341 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,36.5 + parent: 1 + type: Transform + - uid: 2342 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,36.5 + parent: 1 + type: Transform + - uid: 2363 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,36.5 + parent: 1 + type: Transform + - uid: 2374 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,36.5 + parent: 1 + type: Transform + - uid: 2375 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,38.5 + parent: 1 + type: Transform + - uid: 2376 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,37.5 + parent: 1 + type: Transform + - uid: 2398 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,36.5 + parent: 1 + type: Transform + - uid: 2399 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,37.5 + parent: 1 + type: Transform + - uid: 2400 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,36.5 + parent: 1 + type: Transform + - uid: 2401 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,36.5 + parent: 1 + type: Transform + - uid: 2402 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,36.5 + parent: 1 + type: Transform + - uid: 2403 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,38.5 + parent: 1 + type: Transform + - uid: 2404 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,38.5 + parent: 1 + type: Transform + - uid: 2406 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,37.5 + parent: 1 + type: Transform + - uid: 2407 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,37.5 + parent: 1 + type: Transform + - uid: 2408 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,36.5 + parent: 1 + type: Transform + - uid: 2409 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,37.5 + parent: 1 + type: Transform + - uid: 2413 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,7.5 + parent: 1 + type: Transform + - uid: 2414 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,8.5 + parent: 1 + type: Transform + - uid: 2438 + components: + - pos: -44.5,-16.5 + parent: 1 + type: Transform + - uid: 2659 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,43.5 + parent: 1 + type: Transform + - uid: 2675 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,54.5 + parent: 1 + type: Transform + - uid: 2689 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,50.5 + parent: 1 + type: Transform + - uid: 2769 + components: + - pos: -14.5,-54.5 + parent: 1 + type: Transform + - uid: 2772 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-53.5 + parent: 1 + type: Transform + - uid: 2778 + components: + - pos: -12.5,-54.5 + parent: 1 + type: Transform + - uid: 2794 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-47.5 + parent: 1 + type: Transform + - uid: 2806 + components: + - pos: -13.5,-54.5 + parent: 1 + type: Transform + - uid: 2847 + components: + - pos: -15.5,-54.5 + parent: 1 + type: Transform + - uid: 2853 + components: + - pos: -16.5,-54.5 + parent: 1 + type: Transform + - uid: 2871 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-52.5 + parent: 1 + type: Transform + - uid: 2927 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-49.5 + parent: 1 + type: Transform + - uid: 2970 + components: + - pos: -22.5,-30.5 + parent: 1 + type: Transform + - uid: 2991 + components: + - pos: -7.5,-34.5 + parent: 1 + type: Transform + - uid: 2995 + components: + - pos: -6.5,-34.5 + parent: 1 + type: Transform + - uid: 2999 + components: + - pos: 3.5,-33.5 + parent: 1 + type: Transform + - uid: 3071 + components: + - pos: -44.5,-17.5 + parent: 1 + type: Transform + - uid: 3073 + components: + - pos: -42.5,-9.5 + parent: 1 + type: Transform + - uid: 3255 + components: + - pos: 19.5,-24.5 + parent: 1 + type: Transform + - uid: 4809 + components: + - pos: 47.5,19.5 + parent: 1 + type: Transform + - uid: 4810 + components: + - pos: 47.5,20.5 + parent: 1 + type: Transform + - uid: 4824 + components: + - pos: 39.5,29.5 + parent: 1 + type: Transform + - uid: 4825 + components: + - pos: 40.5,29.5 + parent: 1 + type: Transform + - uid: 4826 + components: + - pos: 41.5,29.5 + parent: 1 + type: Transform + - uid: 4830 + components: + - pos: 45.5,29.5 + parent: 1 + type: Transform + - uid: 4831 + components: + - pos: 46.5,29.5 + parent: 1 + type: Transform + - uid: 4834 + components: + - pos: 47.5,26.5 + parent: 1 + type: Transform + - uid: 4835 + components: + - pos: 47.5,27.5 + parent: 1 + type: Transform + - uid: 4836 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,28.5 + parent: 1 + type: Transform + - uid: 4837 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,25.5 + parent: 1 + type: Transform + - uid: 4859 + components: + - rot: 3.141592653589793 rad + pos: 47.5,31.5 + parent: 1 + type: Transform + - uid: 4860 + components: + - rot: 3.141592653589793 rad + pos: 47.5,32.5 + parent: 1 + type: Transform + - uid: 4861 + components: + - rot: 3.141592653589793 rad + pos: 47.5,33.5 + parent: 1 + type: Transform + - uid: 4864 + components: + - rot: 3.141592653589793 rad + pos: 40.5,35.5 + parent: 1 + type: Transform + - uid: 4865 + components: + - rot: 3.141592653589793 rad + pos: 41.5,35.5 + parent: 1 + type: Transform + - uid: 4866 + components: + - rot: 3.141592653589793 rad + pos: 42.5,35.5 + parent: 1 + type: Transform + - uid: 4867 + components: + - rot: 3.141592653589793 rad + pos: 43.5,35.5 + parent: 1 + type: Transform + - uid: 4868 + components: + - rot: 3.141592653589793 rad + pos: 44.5,35.5 + parent: 1 + type: Transform + - uid: 4869 + components: + - rot: 3.141592653589793 rad + pos: 45.5,35.5 + parent: 1 + type: Transform + - uid: 5006 + components: + - rot: 3.141592653589793 rad + pos: 44.5,29.5 + parent: 1 + type: Transform + - uid: 5858 + components: + - pos: -24.5,-29.5 + parent: 1 + type: Transform + - uid: 7066 + components: + - pos: 3.5,-31.5 + parent: 1 + type: Transform + - uid: 7294 + components: + - pos: 18.5,-24.5 + parent: 1 + type: Transform + - uid: 7298 + components: + - pos: 22.5,-24.5 + parent: 1 + type: Transform + - uid: 8319 + components: + - pos: 9.5,34.5 + parent: 1 + type: Transform + - uid: 8320 + components: + - pos: 11.5,34.5 + parent: 1 + type: Transform +- proto: ResearchAndDevelopmentServer + entities: + - uid: 1848 + components: + - pos: -22.5,-3.5 + parent: 1 + type: Transform +- proto: RightArmBorg + entities: + - uid: 6070 + components: + - pos: -5.1487813,-15.441898 + parent: 1 + type: Transform +- proto: RubberStampApproved + entities: + - uid: 4013 + components: + - pos: -5.3658667,46.70469 + parent: 1 + type: Transform + - uid: 5091 + components: + - pos: -4.3448553,19.674007 + parent: 1 + type: Transform +- proto: RubberStampDenied + entities: + - uid: 4014 + components: + - pos: -5.6314917,46.532814 + parent: 1 + type: Transform + - uid: 5092 + components: + - pos: -4.7042303,19.424007 + parent: 1 + type: Transform +- proto: RubberStampMime + entities: + - uid: 7786 + components: + - pos: -13.33112,-29.043272 + parent: 1 + type: Transform +- proto: SalvageMagnet + entities: + - uid: 7284 + components: + - pos: 24.5,-26.5 + parent: 1 + type: Transform +- proto: Saw + entities: + - uid: 8245 + components: + - pos: -25.476225,20.817598 + parent: 1 + type: Transform + - uid: 9625 + components: + - pos: 17.482826,27.671982 + parent: 1 + type: Transform +- proto: Scalpel + entities: + - uid: 9640 + components: + - pos: -25.484652,20.468168 + parent: 1 + type: Transform +- proto: ScalpelLaser + entities: + - uid: 9626 + components: + - pos: 16.498451,27.468857 + parent: 1 + type: Transform +- proto: SecurityTechFab + entities: + - uid: 5417 + components: + - pos: 36.5,10.5 + parent: 1 + type: Transform +- proto: SeedExtractor + entities: + - uid: 6012 + components: + - pos: 5.5,-4.5 + parent: 1 + type: Transform +- proto: SheetGlass + entities: + - uid: 5600 + components: + - pos: -23.623562,5.5177503 + parent: 1 + type: Transform + - uid: 6022 + components: + - pos: -12.208346,-0.4335618 + parent: 1 + type: Transform + - uid: 6023 + components: + - pos: -12.208346,-0.4335618 + parent: 1 + type: Transform + - uid: 6091 + components: + - pos: -28.475227,-0.46534538 + parent: 1 + type: Transform + - uid: 6796 + components: + - pos: 19.039476,-8.444527 + parent: 1 + type: Transform + - uid: 6797 + components: + - pos: 19.039476,-8.444527 + parent: 1 + type: Transform + - uid: 7420 + components: + - pos: 11.514883,-19.457083 + parent: 1 + type: Transform + - uid: 8223 + components: + - pos: -4.0320415,-20.432213 + parent: 1 + type: Transform + - uid: 8917 + components: + - pos: -38.36674,-18.403994 + parent: 1 + type: Transform + - uid: 11230 + components: + - pos: -28.604006,22.484268 + parent: 1 + type: Transform +- proto: SheetPaper + entities: + - uid: 8904 + components: + - pos: -40.572815,-9.497994 + parent: 1 + type: Transform + - uid: 9159 + components: + - pos: -40.510315,-9.497994 + parent: 1 + type: Transform + - uid: 9160 + components: + - pos: -40.43219,-9.482369 + parent: 1 + type: Transform +- proto: SheetPlasma + entities: + - uid: 6081 + components: + - pos: -24.49349,-7.4965954 + parent: 1 + type: Transform + - uid: 6082 + components: + - pos: -24.49349,-7.4965954 + parent: 1 + type: Transform + - uid: 12522 + components: + - flags: InContainer + type: MetaData + - parent: 12521 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: SheetPlasteel + entities: + - uid: 1134 + components: + - pos: 19.570726,-8.444527 + parent: 1 + type: Transform + - uid: 1135 + components: + - pos: 19.570726,-8.444527 + parent: 1 + type: Transform + - uid: 3979 + components: + - pos: -3.2598429,44.57834 + parent: 1 + type: Transform + - uid: 7645 + components: + - pos: -41.491985,20.438309 + parent: 1 + type: Transform + - uid: 11936 + components: + - pos: 11.3171625,23.595459 + parent: 1 + type: Transform + - uid: 11937 + components: + - pos: 11.4577875,23.595459 + parent: 1 + type: Transform +- proto: SheetPlastic + entities: + - uid: 5419 + components: + - pos: 38.4375,10.569345 + parent: 1 + type: Transform + - uid: 5599 + components: + - pos: -23.404812,5.5177503 + parent: 1 + type: Transform + - uid: 6020 + components: + - pos: -11.864596,-0.4179368 + parent: 1 + type: Transform + - uid: 6021 + components: + - pos: -11.864596,-0.4179368 + parent: 1 + type: Transform + - uid: 7422 + components: + - pos: 11.514883,-19.660208 + parent: 1 + type: Transform + - uid: 8829 + components: + - pos: -27.411745,-25.34438 + parent: 1 + type: Transform + - uid: 9725 + components: + - pos: -28.37981,22.482435 + parent: 1 + type: Transform +- proto: SheetRGlass + entities: + - uid: 11932 + components: + - pos: 10.3796625,23.595459 + parent: 1 + type: Transform + - uid: 11933 + components: + - pos: 10.6609125,23.595459 + parent: 1 + type: Transform +- proto: SheetSteel + entities: + - uid: 3978 + components: + - pos: -3.5098429,44.57834 + parent: 1 + type: Transform + - uid: 5420 + components: + - pos: 38.59375,10.569345 + parent: 1 + type: Transform + - uid: 6018 + components: + - pos: -11.458346,-0.4179368 + parent: 1 + type: Transform + - uid: 6019 + components: + - pos: -11.458346,-0.4179368 + parent: 1 + type: Transform + - uid: 6066 + components: + - pos: -4.457944,-13.5120735 + parent: 1 + type: Transform + - uid: 6794 + components: + - pos: 19.289476,-8.444527 + parent: 1 + type: Transform + - uid: 6795 + components: + - pos: 19.289476,-8.444527 + parent: 1 + type: Transform + - uid: 7140 + components: + - pos: 32.668736,-18.433968 + parent: 1 + type: Transform + - uid: 7141 + components: + - pos: 32.668736,-18.433968 + parent: 1 + type: Transform + - uid: 7421 + components: + - pos: 11.514883,-19.566458 + parent: 1 + type: Transform + - uid: 7644 + components: + - pos: -41.491985,20.110184 + parent: 1 + type: Transform + - uid: 8224 + components: + - pos: -4.2976665,-20.432213 + parent: 1 + type: Transform + - uid: 8318 + components: + - pos: -38.612484,-18.388916 + parent: 1 + type: Transform + - uid: 8826 + components: + - pos: -27.567995,-25.37563 + parent: 1 + type: Transform + - uid: 9648 + components: + - pos: 10.4109125,24.486084 + parent: 1 + type: Transform + - uid: 11931 + components: + - pos: 10.6452875,24.486084 + parent: 1 + type: Transform +- proto: ShuttersNormal + entities: + - uid: 3430 + components: + - pos: -8.5,-10.5 + parent: 1 + type: Transform + - links: + - 1799 + type: DeviceLinkSink + - uid: 3432 + components: + - pos: -7.5,-10.5 + parent: 1 + type: Transform + - links: + - 1799 + type: DeviceLinkSink + - uid: 3433 + components: + - pos: -6.5,-10.5 + parent: 1 + type: Transform + - links: + - 1799 + type: DeviceLinkSink + - uid: 3436 + components: + - pos: -29.5,-6.5 + parent: 1 + type: Transform + - links: + - 9264 + type: DeviceLinkSink + - uid: 5459 + components: + - pos: 14.5,0.5 + parent: 1 + type: Transform + - links: + - 7670 + type: DeviceLinkSink + - uid: 5460 + components: + - pos: 15.5,0.5 + parent: 1 + type: Transform + - links: + - 7670 + type: DeviceLinkSink +- proto: ShuttersNormalOpen + entities: + - uid: 1796 + components: + - pos: 14.5,4.5 + parent: 1 + type: Transform + - links: + - 5448 + type: DeviceLinkSink + - uid: 1797 + components: + - pos: 15.5,4.5 + parent: 1 + type: Transform + - links: + - 5448 + type: DeviceLinkSink + - uid: 1798 + components: + - pos: 17.5,4.5 + parent: 1 + type: Transform + - links: + - 5449 + type: DeviceLinkSink + - uid: 1824 + components: + - pos: 11.5,4.5 + parent: 1 + type: Transform + - links: + - 5447 + type: DeviceLinkSink + - uid: 1847 + components: + - pos: 12.5,4.5 + parent: 1 + type: Transform + - links: + - 5447 + type: DeviceLinkSink + - uid: 1866 + components: + - pos: 18.5,4.5 + parent: 1 + type: Transform + - links: + - 5449 + type: DeviceLinkSink + - uid: 1936 + components: + - pos: -21.5,4.5 + parent: 1 + type: Transform + - links: + - 1896 + type: DeviceLinkSink + - uid: 1937 + components: + - pos: -20.5,4.5 + parent: 1 + type: Transform + - links: + - 1896 + type: DeviceLinkSink + - uid: 1938 + components: + - pos: -18.5,4.5 + parent: 1 + type: Transform + - links: + - 1897 + type: DeviceLinkSink + - uid: 1939 + components: + - pos: -17.5,4.5 + parent: 1 + type: Transform + - links: + - 1897 + type: DeviceLinkSink + - uid: 1940 + components: + - pos: -15.5,4.5 + parent: 1 + type: Transform + - links: + - 1898 + type: DeviceLinkSink + - uid: 1941 + components: + - pos: -14.5,4.5 + parent: 1 + type: Transform + - links: + - 1898 + type: DeviceLinkSink + - uid: 3618 + components: + - pos: -6.5,50.5 + parent: 1 + type: Transform + - uid: 3619 + components: + - pos: -6.5,54.5 + parent: 1 + type: Transform + - uid: 3620 + components: + - pos: -7.5,52.5 + parent: 1 + type: Transform + - uid: 3621 + components: + - pos: -5.5,52.5 + parent: 1 + type: Transform + - uid: 5067 + components: + - pos: -2.5,18.5 + parent: 1 + type: Transform + - links: + - 5072 + type: DeviceLinkSink + - uid: 5068 + components: + - pos: -1.5,18.5 + parent: 1 + type: Transform + - links: + - 5072 + type: DeviceLinkSink + - uid: 5069 + components: + - pos: -0.5,18.5 + parent: 1 + type: Transform + - links: + - 5072 + type: DeviceLinkSink + - uid: 5070 + components: + - pos: 1.5,18.5 + parent: 1 + type: Transform + - links: + - 5072 + type: DeviceLinkSink + - uid: 5450 + components: + - pos: 11.5,7.5 + parent: 1 + type: Transform + - links: + - 5447 + type: DeviceLinkSink + - uid: 5451 + components: + - pos: 14.5,7.5 + parent: 1 + type: Transform + - links: + - 5448 + type: DeviceLinkSink + - uid: 5452 + components: + - pos: 17.5,7.5 + parent: 1 + type: Transform + - links: + - 5449 + type: DeviceLinkSink + - uid: 5683 + components: + - pos: 18.5,-12.5 + parent: 1 + type: Transform + - links: + - 5671 + type: DeviceLinkSink + - uid: 5684 + components: + - pos: 19.5,-12.5 + parent: 1 + type: Transform + - links: + - 5671 + type: DeviceLinkSink + - uid: 5685 + components: + - pos: 20.5,-12.5 + parent: 1 + type: Transform + - links: + - 5671 + type: DeviceLinkSink + - uid: 5686 + components: + - pos: 16.5,-12.5 + parent: 1 + type: Transform + - links: + - 5671 + type: DeviceLinkSink + - uid: 5687 + components: + - pos: 21.5,-15.5 + parent: 1 + type: Transform + - links: + - 5671 + type: DeviceLinkSink + - uid: 7438 + components: + - pos: 5.5,-18.5 + parent: 1 + type: Transform + - links: + - 7439 + type: DeviceLinkSink + - uid: 7485 + components: + - pos: 10.5,15.5 + parent: 1 + type: Transform + - links: + - 7484 + type: DeviceLinkSink + - uid: 11721 + components: + - pos: -1.5,7.5 + parent: 1 + type: Transform + - links: + - 11713 + type: DeviceLinkSink + - uid: 11722 + components: + - pos: -0.5,7.5 + parent: 1 + type: Transform + - links: + - 11713 + type: DeviceLinkSink + - uid: 11723 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - links: + - 11713 + type: DeviceLinkSink + - uid: 11724 + components: + - pos: 1.5,7.5 + parent: 1 + type: Transform + - links: + - 11713 + type: DeviceLinkSink + - uid: 11725 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - links: + - 11713 + type: DeviceLinkSink + - uid: 11726 + components: + - pos: 3.5,7.5 + parent: 1 + type: Transform + - links: + - 11713 + type: DeviceLinkSink + - uid: 11727 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - links: + - 11713 + type: DeviceLinkSink + - uid: 11730 + components: + - pos: -3.5,6.5 + parent: 1 + type: Transform + - links: + - 11713 + type: DeviceLinkSink + - uid: 11731 + components: + - pos: -3.5,5.5 + parent: 1 + type: Transform + - links: + - 11713 + type: DeviceLinkSink + - uid: 11732 + components: + - pos: 6.5,6.5 + parent: 1 + type: Transform + - links: + - 11713 + type: DeviceLinkSink + - uid: 11733 + components: + - pos: 6.5,5.5 + parent: 1 + type: Transform + - links: + - 11713 + type: DeviceLinkSink + - uid: 12444 + components: + - pos: 10.5,12.5 + parent: 1 + type: Transform + - links: + - 7484 + type: DeviceLinkSink + - uid: 12445 + components: + - pos: 10.5,10.5 + parent: 1 + type: Transform + - links: + - 7484 + type: DeviceLinkSink + - uid: 12446 + components: + - pos: 10.5,9.5 + parent: 1 + type: Transform + - links: + - 7484 + type: DeviceLinkSink + - uid: 12447 + components: + - pos: 10.5,8.5 + parent: 1 + type: Transform + - links: + - 7484 + type: DeviceLinkSink + - uid: 12448 + components: + - pos: 13.5,12.5 + parent: 1 + type: Transform + - links: + - 7484 + type: DeviceLinkSink + - uid: 12449 + components: + - pos: 13.5,15.5 + parent: 1 + type: Transform + - links: + - 7484 + type: DeviceLinkSink +- proto: ShuttersWindowOpen + entities: + - uid: 5071 + components: + - pos: 0.5,18.5 + parent: 1 + type: Transform + - links: + - 5072 + type: DeviceLinkSink + - uid: 11728 + components: + - pos: -2.5,7.5 + parent: 1 + type: Transform + - links: + - 11713 + type: DeviceLinkSink + - uid: 11729 + components: + - pos: 5.5,7.5 + parent: 1 + type: Transform + - links: + - 11713 + type: DeviceLinkSink + - uid: 12450 + components: + - pos: 13.5,14.5 + parent: 1 + type: Transform + - links: + - 7484 + type: DeviceLinkSink + - uid: 12451 + components: + - pos: 13.5,13.5 + parent: 1 + type: Transform + - links: + - 7484 + type: DeviceLinkSink +- proto: ShuttleConsoleCircuitboard + entities: + - uid: 9523 + components: + - pos: -7.5807076,-33.60298 + parent: 1 + type: Transform +- proto: SignAi + entities: + - uid: 3006 + components: + - pos: -12.5,31.5 + parent: 1 + type: Transform + - uid: 3617 + components: + - pos: -8.5,43.5 + parent: 1 + type: Transform + - uid: 4010 + components: + - pos: -7.5,47.5 + parent: 1 + type: Transform + - uid: 4011 + components: + - pos: -5.5,47.5 + parent: 1 + type: Transform +- proto: SignalButton + entities: + - uid: 1799 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-13.5 + parent: 1 + type: Transform + - linkedPorts: + 3430: + - Pressed: Toggle + 3432: + - Pressed: Toggle + 3433: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 1896 + components: + - rot: 3.141592653589793 rad + pos: -19.5,7.5 + parent: 1 + type: Transform + - linkedPorts: + 1937: + - Pressed: Toggle + 1936: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 1897 + components: + - rot: 3.141592653589793 rad + pos: -16.5,7.5 + parent: 1 + type: Transform + - linkedPorts: + 1939: + - Pressed: Toggle + 1938: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 1898 + components: + - rot: 3.141592653589793 rad + pos: -13.5,7.5 + parent: 1 + type: Transform + - linkedPorts: + 1941: + - Pressed: Toggle + 1940: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 1978 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,23.5 + parent: 1 + type: Transform + - linkedPorts: + 3561: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 4100 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,30.5 + parent: 1 + type: Transform + - linkedPorts: + 4064: + - Pressed: Toggle + 4065: + - Pressed: Toggle + 4066: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 5072 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,20.5 + parent: 1 + type: Transform + - linkedPorts: + 5070: + - Pressed: Toggle + 5071: + - Pressed: Toggle + 5069: + - Pressed: Toggle + 5068: + - Pressed: Toggle + 5067: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 5388 + components: + - pos: 28.5,15.5 + parent: 1 + type: Transform + - linkedPorts: + 3218: + - Pressed: Toggle + type: DeviceLinkSource + - type: ItemCooldown + - uid: 5389 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,17.5 + parent: 1 + type: Transform + - state: True + type: SignalSwitch + - linkedPorts: + 3218: + - Pressed: Toggle + type: DeviceLinkSource + - type: ItemCooldown + - uid: 5447 + components: + - rot: 3.141592653589793 rad + pos: 13.5,7.5 + parent: 1 + type: Transform + - linkedPorts: + 5450: + - Pressed: Toggle + 1824: + - Pressed: Toggle + 1847: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 5448 + components: + - rot: 3.141592653589793 rad + pos: 16.5,7.5 + parent: 1 + type: Transform + - linkedPorts: + 5451: + - Pressed: Toggle + 1796: + - Pressed: Toggle + 1797: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 5449 + components: + - rot: 3.141592653589793 rad + pos: 19.5,7.5 + parent: 1 + type: Transform + - linkedPorts: + 5452: + - Pressed: Toggle + 1798: + - Pressed: Toggle + 1866: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 5671 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-14.5 + parent: 1 + type: Transform + - linkedPorts: + 5687: + - Pressed: Toggle + 5685: + - Pressed: Toggle + 5684: + - Pressed: Toggle + 5683: + - Pressed: Toggle + 5686: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 6337 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-15.5 + parent: 1 + type: Transform + - linkedPorts: + 3435: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 6338 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-11.5 + parent: 1 + type: Transform + - linkedPorts: + 3434: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 7436 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-28.5 + parent: 1 + type: Transform + - linkedPorts: + 7432: + - Pressed: Toggle + 7433: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 7437 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-28.5 + parent: 1 + type: Transform + - linkedPorts: + 7435: + - Pressed: Toggle + 7434: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 7439 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-16.5 + parent: 1 + type: Transform + - linkedPorts: + 7438: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 7484 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,13.5 + parent: 1 + type: Transform + - linkedPorts: + 12448: + - Pressed: Toggle + 12451: + - Pressed: Toggle + 12450: + - Pressed: Toggle + 12449: + - Pressed: Toggle + 7485: + - Pressed: Toggle + 12444: + - Pressed: Toggle + 12445: + - Pressed: Toggle + 12446: + - Pressed: Toggle + 12447: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 7670 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-2.5 + parent: 1 + type: Transform + - linkedPorts: + 5459: + - Pressed: Toggle + 5460: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 9264 + components: + - pos: -25.5,-4.5 + parent: 1 + type: Transform + - linkedPorts: + 3436: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 11713 + components: + - rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 1 + type: Transform + - linkedPorts: + 11733: + - Pressed: Toggle + 11732: + - Pressed: Toggle + 11729: + - Pressed: Toggle + 11727: + - Pressed: Toggle + 11726: + - Pressed: Toggle + 11725: + - Pressed: Toggle + 11724: + - Pressed: Toggle + 11723: + - Pressed: Toggle + 11722: + - Pressed: Toggle + 11721: + - Pressed: Toggle + 11728: + - Pressed: Toggle + 11730: + - Pressed: Toggle + 11731: + - Pressed: Toggle + type: DeviceLinkSource +- proto: SignAnomaly + entities: + - uid: 6077 + components: + - pos: -14.5,-7.5 + parent: 1 + type: Transform +- proto: SignAnomaly2 + entities: + - uid: 6076 + components: + - pos: -19.5,-4.5 + parent: 1 + type: Transform +- proto: SignArmory + entities: + - uid: 5305 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,12.5 + parent: 1 + type: Transform + - uid: 5307 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,11.5 + parent: 1 + type: Transform +- proto: SignBridge + entities: + - uid: 4067 + components: + - pos: 2.5,17.5 + parent: 1 + type: Transform +- proto: SignCargoDock + entities: + - uid: 1721 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-28.5 + parent: 1 + type: Transform + - uid: 1722 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-31.5 + parent: 1 + type: Transform +- proto: SignChem + entities: + - uid: 5700 + components: + - pos: -14.5,12.5 + parent: 1 + type: Transform + - uid: 5701 + components: + - pos: -7.5,12.5 + parent: 1 + type: Transform +- proto: SignCloning + entities: + - uid: 1924 + components: + - pos: -22.5,8.5 + parent: 1 + type: Transform +- proto: SignConference + entities: + - uid: 4068 + components: + - pos: -6.5,30.5 + parent: 1 + type: Transform +- proto: SignDirectionalBar + entities: + - uid: 12028 + components: + - rot: 3.141592653589793 rad + pos: -0.48991406,-12.586099 + parent: 1 + type: Transform + - uid: 12030 + components: + - rot: -1.5707963267948966 rad + pos: 43.500732,4.885596 + parent: 1 + type: Transform + - uid: 12041 + components: + - rot: 3.141592653589793 rad + pos: -0.46916193,-19.753078 + parent: 1 + type: Transform +- proto: SignDirectionalBridge + entities: + - uid: 12014 + components: + - rot: 3.141592653589793 rad + pos: 10.548269,5.4918203 + parent: 1 + type: Transform + - uid: 12020 + components: + - rot: 3.141592653589793 rad + pos: -7.4735146,0.6779753 + parent: 1 + type: Transform + - uid: 12027 + components: + - rot: 3.141592653589793 rad + pos: -0.48991406,-12.367349 + parent: 1 + type: Transform + - uid: 12031 + components: + - rot: -1.5707963267948966 rad + pos: 43.500732,4.682471 + parent: 1 + type: Transform + - uid: 12042 + components: + - rot: 3.141592653589793 rad + pos: -0.46916193,-19.546629 + parent: 1 + type: Transform +- proto: SignDirectionalChapel + entities: + - uid: 12035 + components: + - rot: -1.5707963267948966 rad + pos: -13.484905,0.5560063 + parent: 1 + type: Transform +- proto: SignDirectionalDorms + entities: + - uid: 12009 + components: + - pos: 10.501394,0.38287616 + parent: 1 + type: Transform + - uid: 12025 + components: + - pos: -0.4927984,-10.414679 + parent: 1 + type: Transform +- proto: SignDirectionalEng + entities: + - uid: 12007 + components: + - pos: 10.501394,0.78912616 + parent: 1 + type: Transform + - uid: 12022 + components: + - pos: -7.4735146,0.2561003 + parent: 1 + type: Transform + - uid: 12033 + components: + - rot: -1.5707963267948966 rad + pos: 43.500732,4.260596 + parent: 1 + type: Transform + - uid: 12037 + components: + - rot: 3.141592653589793 rad + pos: -0.46722627,-23.206203 + parent: 1 + type: Transform + - uid: 12044 + components: + - rot: 1.5707963267948966 rad + pos: 5.4593363,-10.397989 + parent: 1 + type: Transform +- proto: SignDirectionalEvac + entities: + - uid: 12015 + components: + - rot: 3.141592653589793 rad + pos: 10.548269,5.6793203 + parent: 1 + type: Transform + - uid: 12016 + components: + - pos: -6.456008,15.288413 + parent: 1 + type: Transform + - uid: 12019 + components: + - rot: -1.5707963267948966 rad + pos: -7.4735146,0.8654753 + parent: 1 + type: Transform +- proto: SignDirectionalGravity + entities: + - uid: 12034 + components: + - rot: -1.5707963267948966 rad + pos: -13.488332,0.7605958 + parent: 1 + type: Transform +- proto: SignDirectionalJanitor + entities: + - uid: 12010 + components: + - pos: 13.517019,0.82037616 + parent: 1 + type: Transform +- proto: SignDirectionalLibrary + entities: + - uid: 12036 + components: + - rot: -1.5707963267948966 rad + pos: -13.484905,0.3372563 + parent: 1 + type: Transform +- proto: SignDirectionalMed + entities: + - uid: 12013 + components: + - rot: 3.141592653589793 rad + pos: 10.548269,5.2886953 + parent: 1 + type: Transform + - uid: 12026 + components: + - rot: 3.141592653589793 rad + pos: -0.48820066,-10.617804 + parent: 1 + type: Transform + - uid: 12040 + components: + - rot: 3.141592653589793 rad + pos: -0.46722627,-23.831203 + parent: 1 + type: Transform +- proto: SignDirectionalSci + entities: + - uid: 12011 + components: + - pos: 10.501394,0.19537616 + parent: 1 + type: Transform + - uid: 12017 + components: + - pos: -6.456008,15.507163 + parent: 1 + type: Transform + - uid: 12038 + components: + - rot: 3.141592653589793 rad + pos: -0.46722627,-23.409328 + parent: 1 + type: Transform +- proto: SignDirectionalSec + entities: + - uid: 12012 + components: + - rot: 3.141592653589793 rad + pos: 10.548269,5.1011953 + parent: 1 + type: Transform + - uid: 12021 + components: + - rot: 3.141592653589793 rad + pos: -7.4735146,0.4592253 + parent: 1 + type: Transform + - uid: 12032 + components: + - rot: -1.5707963267948966 rad + pos: 43.500732,4.463721 + parent: 1 + type: Transform + - uid: 12039 + components: + - rot: 3.141592653589793 rad + pos: -0.46722627,-23.628078 + parent: 1 + type: Transform + - uid: 12043 + components: + - rot: 3.141592653589793 rad + pos: 5.4593363,-10.210489 + parent: 1 + type: Transform +- proto: SignDirectionalSolar + entities: + - uid: 11982 + components: + - pos: -29.486988,-21.20969 + parent: 1 + type: Transform + - uid: 12024 + components: + - rot: -1.5707963267948966 rad + pos: -0.4927984,-12.149054 + parent: 1 + type: Transform + - uid: 12113 + components: + - rot: 3.141592653589793 rad + pos: -24.472755,28.702217 + parent: 1 + type: Transform + - uid: 12114 + components: + - rot: 3.141592653589793 rad + pos: -29.444752,5.7120094 + parent: 1 + type: Transform + - uid: 12115 + components: + - rot: 1.5707963267948966 rad + pos: -38.46161,16.234806 + parent: 1 + type: Transform + - uid: 12116 + components: + - rot: 3.141592653589793 rad + pos: -27.46682,17.811657 + parent: 1 + type: Transform + - uid: 12117 + components: + - pos: -31.445858,-0.22823012 + parent: 1 + type: Transform + - uid: 12118 + components: + - rot: -1.5707963267948966 rad + pos: -35.514,-11.739195 + parent: 1 + type: Transform + - uid: 12119 + components: + - rot: 1.5707963267948966 rad + pos: -37.451214,-21.220106 + parent: 1 + type: Transform + - uid: 12120 + components: + - rot: -1.5707963267948966 rad + pos: -10.486212,-20.751356 + parent: 1 + type: Transform + - uid: 12121 + components: + - rot: 3.141592653589793 rad + pos: -9.470587,-23.708044 + parent: 1 + type: Transform +- proto: SignDirectionalSupply + entities: + - uid: 9288 + components: + - pos: -0.4927984,-10.195929 + parent: 1 + type: Transform + - uid: 12008 + components: + - pos: 10.501394,0.58600116 + parent: 1 + type: Transform + - uid: 12018 + components: + - pos: -6.458366,15.721934 + parent: 1 + type: Transform +- proto: SignDirectionalWash + entities: + - uid: 12029 + components: + - rot: -1.5707963267948966 rad + pos: -14.500072,-24.746931 + parent: 1 + type: Transform +- proto: SignDisposalSpace + entities: + - uid: 2976 + components: + - pos: -26.5,-26.5 + parent: 1 + type: Transform +- proto: SignDrones + entities: + - uid: 9653 + components: + - pos: 10.5,27.5 + parent: 1 + type: Transform +- proto: SignEscapePods + entities: + - uid: 25 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,21.5 + parent: 1 + type: Transform + - uid: 34 + components: + - pos: 0.5,-34.5 + parent: 1 + type: Transform + - uid: 51 + components: + - pos: -39.5,-13.5 + parent: 1 + type: Transform + - uid: 6395 + components: + - pos: 9.5,31.5 + parent: 1 + type: Transform +- proto: SignEVA + entities: + - uid: 4908 + components: + - rot: 3.141592653589793 rad + pos: 43.5,20.5 + parent: 1 + type: Transform +- proto: SignGravity + entities: + - uid: 7646 + components: + - pos: -41.5,17.5 + parent: 1 + type: Transform +- proto: SignHead + entities: + - uid: 4069 + components: + - pos: -3.5,17.5 + parent: 1 + type: Transform +- proto: SignInterrogation + entities: + - uid: 9307 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,20.5 + parent: 1 + type: Transform +- proto: SignMedical + entities: + - uid: 5301 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,7.5 + parent: 1 + type: Transform + - uid: 9257 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,4.5 + parent: 1 + type: Transform +- proto: SignMorgue + entities: + - uid: 1923 + components: + - pos: -22.5,12.5 + parent: 1 + type: Transform +- proto: SignPrison + entities: + - uid: 5341 + components: + - pos: 31.5,19.5 + parent: 1 + type: Transform + - uid: 5487 + components: + - pos: 31.5,24.5 + parent: 1 + type: Transform +- proto: SignRadiationMed + entities: + - uid: 12342 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,63.5 + parent: 1 + type: Transform + - uid: 12343 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,65.5 + parent: 1 + type: Transform + - uid: 12344 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,67.5 + parent: 1 + type: Transform + - uid: 12345 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,65.5 + parent: 1 + type: Transform +- proto: SignRobo + entities: + - uid: 6078 + components: + - pos: -13.5,-7.5 + parent: 1 + type: Transform + - uid: 6079 + components: + - pos: -5.5,-10.5 + parent: 1 + type: Transform +- proto: SignScience + entities: + - uid: 6080 + components: + - pos: -7.5,-4.5 + parent: 1 + type: Transform +- proto: SignSecureMed + entities: + - uid: 5304 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,10.5 + parent: 1 + type: Transform +- proto: SignSecureMedRed + entities: + - uid: 12346 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,64.5 + parent: 1 + type: Transform + - uid: 12347 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,66.5 + parent: 1 + type: Transform + - uid: 12348 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,67.5 + parent: 1 + type: Transform + - uid: 12349 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,67.5 + parent: 1 + type: Transform + - uid: 12350 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,66.5 + parent: 1 + type: Transform + - uid: 12351 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,64.5 + parent: 1 + type: Transform + - uid: 12352 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,63.5 + parent: 1 + type: Transform + - uid: 12353 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,63.5 + parent: 1 + type: Transform +- proto: SignSecurity + entities: + - uid: 5493 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,12.5 + parent: 1 + type: Transform +- proto: SignSurgery + entities: + - uid: 4884 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,20.5 + parent: 1 + type: Transform +- proto: SignTelecomms + entities: + - uid: 3969 + components: + - pos: -1.5,53.5 + parent: 1 + type: Transform + - uid: 3971 + components: + - pos: -1.5,51.5 + parent: 1 + type: Transform +- proto: SignVirology + entities: + - uid: 12097 + components: + - pos: -17.5,17.5 + parent: 1 + type: Transform +- proto: Sink + entities: + - uid: 6400 + components: + - pos: -18.5,-24.5 + parent: 1 + type: Transform + - uid: 6401 + components: + - pos: -17.5,-24.5 + parent: 1 + type: Transform + - uid: 6402 + components: + - pos: -16.5,-24.5 + parent: 1 + type: Transform + - uid: 12482 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,14.5 + parent: 1 + type: Transform +- proto: SinkWide + entities: + - uid: 5945 + components: + - rot: 3.141592653589793 rad + pos: -2.5,5.5 + parent: 1 + type: Transform + - uid: 5946 + components: + - rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 8835 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-13.5 + parent: 1 + type: Transform + - uid: 9110 + components: + - pos: 18.5,-0.5 + parent: 1 + type: Transform +- proto: SMESBasic + entities: + - uid: 1097 + components: + - name: SMES Bank 1 + type: MetaData + - pos: 23.5,-14.5 + parent: 1 + type: Transform + - uid: 1118 + components: + - name: SMES Bank 2 + type: MetaData + - pos: 24.5,-14.5 + parent: 1 + type: Transform + - uid: 1119 + components: + - name: SMES Bank 3 + type: MetaData + - pos: 25.5,-14.5 + parent: 1 + type: Transform + - uid: 2445 + components: + - name: South solars SMES + type: MetaData + - pos: -32.5,-23.5 + parent: 1 + type: Transform + - uid: 2553 + components: + - name: North solars SMES + type: MetaData + - pos: -27.5,29.5 + parent: 1 + type: Transform + - uid: 2856 + components: + - name: Annex SMES + type: MetaData + - pos: -11.5,-52.5 + parent: 1 + type: Transform + - uid: 3671 + components: + - pos: -0.5,45.5 + parent: 1 + type: Transform + - uid: 7557 + components: + - name: Gravity SMES + type: MetaData + - pos: -41.5,23.5 + parent: 1 + type: Transform +- proto: SMESMachineCircuitboard + entities: + - uid: 9512 + components: + - pos: -1.3981457,-34.369713 + parent: 1 + type: Transform +- proto: SoapOmega + entities: + - uid: 12356 + components: + - pos: -43.500492,24.479343 + parent: 1 + type: Transform +- proto: soda_dispenser + entities: + - uid: 5954 + components: + - rot: 3.141592653589793 rad + pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 8265 + components: + - pos: -13.5,-48.5 + parent: 1 + type: Transform + - uid: 8296 + components: + - pos: -30.5,-12.5 + parent: 1 + type: Transform +- proto: SolarPanel + entities: + - uid: 2472 + components: + - pos: -34.5,-28.5 + parent: 1 + type: Transform + - uid: 2473 + components: + - pos: -33.5,-28.5 + parent: 1 + type: Transform + - uid: 2474 + components: + - pos: -32.5,-28.5 + parent: 1 + type: Transform + - uid: 2475 + components: + - pos: -34.5,-30.5 + parent: 1 + type: Transform + - uid: 2476 + components: + - pos: -33.5,-30.5 + parent: 1 + type: Transform + - uid: 2477 + components: + - pos: -32.5,-30.5 + parent: 1 + type: Transform + - uid: 2478 + components: + - pos: -30.5,-28.5 + parent: 1 + type: Transform + - uid: 2479 + components: + - pos: -29.5,-28.5 + parent: 1 + type: Transform + - uid: 2480 + components: + - pos: -28.5,-28.5 + parent: 1 + type: Transform + - uid: 2481 + components: + - pos: -30.5,-30.5 + parent: 1 + type: Transform + - uid: 2482 + components: + - pos: -29.5,-30.5 + parent: 1 + type: Transform + - uid: 2483 + components: + - pos: -28.5,-30.5 + parent: 1 + type: Transform + - uid: 2484 + components: + - pos: -28.5,-32.5 + parent: 1 + type: Transform + - uid: 2485 + components: + - pos: -29.5,-32.5 + parent: 1 + type: Transform + - uid: 2486 + components: + - pos: -30.5,-32.5 + parent: 1 + type: Transform + - uid: 2487 + components: + - pos: -32.5,-32.5 + parent: 1 + type: Transform + - uid: 2488 + components: + - pos: -33.5,-32.5 + parent: 1 + type: Transform + - uid: 2489 + components: + - pos: -34.5,-32.5 + parent: 1 + type: Transform + - uid: 2490 + components: + - pos: -34.5,-34.5 + parent: 1 + type: Transform + - uid: 2491 + components: + - pos: -33.5,-34.5 + parent: 1 + type: Transform + - uid: 2492 + components: + - pos: -32.5,-34.5 + parent: 1 + type: Transform + - uid: 2493 + components: + - pos: -30.5,-34.5 + parent: 1 + type: Transform + - uid: 2494 + components: + - pos: -29.5,-34.5 + parent: 1 + type: Transform + - uid: 2495 + components: + - pos: -28.5,-34.5 + parent: 1 + type: Transform + - uid: 2558 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,36.5 + parent: 1 + type: Transform + - uid: 2559 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,36.5 + parent: 1 + type: Transform + - uid: 2560 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,36.5 + parent: 1 + type: Transform + - uid: 2561 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,36.5 + parent: 1 + type: Transform + - uid: 2562 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,40.5 + parent: 1 + type: Transform + - uid: 2563 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,40.5 + parent: 1 + type: Transform + - uid: 2564 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,40.5 + parent: 1 + type: Transform + - uid: 2565 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,40.5 + parent: 1 + type: Transform + - uid: 2566 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,38.5 + parent: 1 + type: Transform + - uid: 2567 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,38.5 + parent: 1 + type: Transform + - uid: 2568 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,38.5 + parent: 1 + type: Transform + - uid: 2569 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,38.5 + parent: 1 + type: Transform + - uid: 2570 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,34.5 + parent: 1 + type: Transform + - uid: 2571 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,34.5 + parent: 1 + type: Transform + - uid: 2572 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,34.5 + parent: 1 + type: Transform + - uid: 2573 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,34.5 + parent: 1 + type: Transform + - uid: 2574 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,34.5 + parent: 1 + type: Transform + - uid: 2575 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,34.5 + parent: 1 + type: Transform + - uid: 2576 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,34.5 + parent: 1 + type: Transform + - uid: 2577 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,34.5 + parent: 1 + type: Transform + - uid: 2578 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,36.5 + parent: 1 + type: Transform + - uid: 2579 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,36.5 + parent: 1 + type: Transform + - uid: 2580 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,36.5 + parent: 1 + type: Transform + - uid: 2581 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,36.5 + parent: 1 + type: Transform + - uid: 2582 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,40.5 + parent: 1 + type: Transform + - uid: 2583 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,40.5 + parent: 1 + type: Transform + - uid: 2584 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,40.5 + parent: 1 + type: Transform + - uid: 2585 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,40.5 + parent: 1 + type: Transform + - uid: 2586 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,38.5 + parent: 1 + type: Transform + - uid: 2587 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,38.5 + parent: 1 + type: Transform + - uid: 2588 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,38.5 + parent: 1 + type: Transform + - uid: 2589 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,38.5 + parent: 1 + type: Transform + - uid: 2816 + components: + - pos: -16.5,-57.5 + parent: 1 + type: Transform + - uid: 2817 + components: + - pos: -15.5,-57.5 + parent: 1 + type: Transform + - uid: 2818 + components: + - pos: -13.5,-57.5 + parent: 1 + type: Transform + - uid: 2819 + components: + - pos: -12.5,-57.5 + parent: 1 + type: Transform + - uid: 2820 + components: + - pos: -12.5,-59.5 + parent: 1 + type: Transform + - uid: 2821 + components: + - pos: -15.5,-59.5 + parent: 1 + type: Transform + - uid: 2823 + components: + - pos: -13.5,-59.5 + parent: 1 + type: Transform + - uid: 2838 + components: + - pos: -16.5,-59.5 + parent: 1 + type: Transform +- proto: SolarTracker + entities: + - uid: 2521 + components: + - pos: -31.5,-36.5 + parent: 1 + type: Transform + - uid: 2653 + components: + - pos: -27.5,42.5 + parent: 1 + type: Transform + - uid: 2815 + components: + - pos: -14.5,-60.5 + parent: 1 + type: Transform +- proto: SpaceCash1000 + entities: + - uid: 4132 + components: + - pos: -1.4122305,23.498293 + parent: 1 + type: Transform + - count: 2000 + type: Stack +- proto: SpaceVillainArcadeFilled + entities: + - uid: 2869 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-50.5 + parent: 1 + type: Transform +- proto: SpawnMobAlexander + entities: + - uid: 11924 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform +- proto: SpawnMobBandito + entities: + - uid: 11925 + components: + - pos: -15.5,-3.5 + parent: 1 + type: Transform +- proto: SpawnMobCatException + entities: + - uid: 5924 + components: + - pos: -19.5,15.5 + parent: 1 + type: Transform +- proto: SpawnMobCatRuntime + entities: + - uid: 11923 + components: + - pos: 20.5,-5.5 + parent: 1 + type: Transform +- proto: SpawnMobCorgi + entities: + - uid: 4967 + components: + - pos: -1.5,19.5 + parent: 1 + type: Transform +- proto: SpawnMobDrone + entities: + - uid: 9658 + components: + - pos: 11.5,27.5 + parent: 1 + type: Transform + - uid: 9659 + components: + - pos: 12.5,27.5 + parent: 1 + type: Transform + - uid: 9661 + components: + - pos: 13.5,27.5 + parent: 1 + type: Transform +- proto: SpawnMobFoxRenault + entities: + - uid: 4084 + components: + - pos: 5.5,29.5 + parent: 1 + type: Transform +- proto: SpawnMobMcGriff + entities: + - uid: 5925 + components: + - pos: 15.5,14.5 + parent: 1 + type: Transform +- proto: SpawnMobMonkeyPunpun + entities: + - uid: 5416 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform +- proto: SpawnMobMouse + entities: + - uid: 11913 + components: + - pos: 8.5,-12.5 + parent: 1 + type: Transform + - uid: 11914 + components: + - pos: 29.5,-14.5 + parent: 1 + type: Transform + - uid: 11915 + components: + - pos: 30.5,-1.5 + parent: 1 + type: Transform + - uid: 11916 + components: + - pos: 41.5,10.5 + parent: 1 + type: Transform + - uid: 11917 + components: + - pos: 30.5,34.5 + parent: 1 + type: Transform + - uid: 11918 + components: + - pos: 8.5,24.5 + parent: 1 + type: Transform + - uid: 11919 + components: + - pos: -9.5,23.5 + parent: 1 + type: Transform + - uid: 11920 + components: + - pos: -32.5,19.5 + parent: 1 + type: Transform + - uid: 11921 + components: + - pos: -34.5,-6.5 + parent: 1 + type: Transform + - uid: 11922 + components: + - pos: -24.5,-17.5 + parent: 1 + type: Transform +- proto: SpawnMobPossumMorty + entities: + - uid: 11926 + components: + - pos: -9.5,-25.5 + parent: 1 + type: Transform +- proto: SpawnMobRaccoonMorticia + entities: + - uid: 11927 + components: + - pos: 9.5,-19.5 + parent: 1 + type: Transform + - uid: 11928 + components: + - pos: -38.5,-3.5 + parent: 1 + type: Transform +- proto: SpawnMobShiva + entities: + - uid: 8256 + components: + - pos: 25.5,13.5 + parent: 1 + type: Transform +- proto: SpawnMobWalter + entities: + - uid: 5922 + components: + - pos: -12.5,13.5 + parent: 1 + type: Transform +- proto: SpawnPointAssistant + entities: + - uid: 7496 + components: + - pos: -3.5,-21.5 + parent: 1 + type: Transform + - uid: 7497 + components: + - pos: -3.5,-25.5 + parent: 1 + type: Transform + - uid: 7498 + components: + - pos: -7.5,-25.5 + parent: 1 + type: Transform + - uid: 7499 + components: + - pos: -11.5,-25.5 + parent: 1 + type: Transform +- proto: SpawnPointAtmos + entities: + - uid: 7130 + components: + - pos: 32.5,-17.5 + parent: 1 + type: Transform + - uid: 7131 + components: + - pos: 33.5,-17.5 + parent: 1 + type: Transform +- proto: SpawnPointBartender + entities: + - uid: 6037 + components: + - pos: 2.5,6.5 + parent: 1 + type: Transform +- proto: SpawnPointBorg + entities: + - uid: 5913 + components: + - pos: -7.5,-12.5 + parent: 1 + type: Transform +- proto: SpawnPointBotanist + entities: + - uid: 6038 + components: + - pos: -0.5,-3.5 + parent: 1 + type: Transform + - uid: 6039 + components: + - pos: 3.5,-3.5 + parent: 1 + type: Transform +- proto: SpawnPointCaptain + entities: + - uid: 6046 + components: + - pos: 4.5,30.5 + parent: 1 + type: Transform +- proto: SpawnPointCargoTechnician + entities: + - uid: 7475 + components: + - pos: 9.5,-20.5 + parent: 1 + type: Transform + - uid: 7476 + components: + - pos: 9.5,-21.5 + parent: 1 + type: Transform +- proto: SpawnPointChaplain + entities: + - uid: 7487 + components: + - pos: -32.5,14.5 + parent: 1 + type: Transform +- proto: SpawnPointChef + entities: + - uid: 6036 + components: + - pos: 3.5,1.5 + parent: 1 + type: Transform +- proto: SpawnPointChemist + entities: + - uid: 6031 + components: + - pos: -11.5,14.5 + parent: 1 + type: Transform +- proto: SpawnPointChiefEngineer + entities: + - uid: 7279 + components: + - pos: 19.5,-14.5 + parent: 1 + type: Transform +- proto: SpawnPointChiefMedicalOfficer + entities: + - uid: 1870 + components: + - pos: -19.5,13.5 + parent: 1 + type: Transform +- proto: SpawnPointClown + entities: + - uid: 7488 + components: + - pos: -10.5,-29.5 + parent: 1 + type: Transform +- proto: SpawnPointDetective + entities: + - uid: 12411 + components: + - pos: 26.5,5.5 + parent: 1 + type: Transform +- proto: SpawnPointHeadOfPersonnel + entities: + - uid: 6045 + components: + - pos: -5.5,20.5 + parent: 1 + type: Transform +- proto: SpawnPointHeadOfSecurity + entities: + - uid: 6044 + components: + - pos: 26.5,13.5 + parent: 1 + type: Transform +- proto: SpawnPointJanitor + entities: + - uid: 7491 + components: + - pos: 12.5,-1.5 + parent: 1 + type: Transform +- proto: SpawnPointLatejoin + entities: + - uid: 7480 + components: + - pos: 45.5,12.5 + parent: 1 + type: Transform + - uid: 7481 + components: + - pos: 45.5,5.5 + parent: 1 + type: Transform + - uid: 7482 + components: + - pos: 45.5,8.5 + parent: 1 + type: Transform + - uid: 7483 + components: + - pos: 45.5,9.5 + parent: 1 + type: Transform +- proto: SpawnPointLawyer + entities: + - uid: 12442 + components: + - pos: 42.5,32.5 + parent: 1 + type: Transform + - uid: 12443 + components: + - pos: 43.5,32.5 + parent: 1 + type: Transform +- proto: SpawnPointLibrarian + entities: + - uid: 7486 + components: + - pos: -37.5,-9.5 + parent: 1 + type: Transform +- proto: SpawnPointMedicalDoctor + entities: + - uid: 6029 + components: + - pos: -22.5,10.5 + parent: 1 + type: Transform +- proto: SpawnPointMedicalIntern + entities: + - uid: 6030 + components: + - pos: -21.5,10.5 + parent: 1 + type: Transform +- proto: SpawnPointMime + entities: + - uid: 7489 + components: + - pos: -12.5,-29.5 + parent: 1 + type: Transform +- proto: SpawnPointMusician + entities: + - uid: 7490 + components: + - pos: -12.5,-30.5 + parent: 1 + type: Transform +- proto: SpawnPointObserver + entities: + - uid: 7492 + components: + - pos: 1.5,15.5 + parent: 1 + type: Transform +- proto: SpawnPointQuartermaster + entities: + - uid: 7477 + components: + - pos: 5.5,-14.5 + parent: 1 + type: Transform +- proto: SpawnPointResearchAssistant + entities: + - uid: 6035 + components: + - pos: -15.5,-5.5 + parent: 1 + type: Transform +- proto: SpawnPointResearchDirector + entities: + - uid: 6034 + components: + - pos: -21.5,-0.5 + parent: 1 + type: Transform +- proto: SpawnPointSalvageSpecialist + entities: + - uid: 7478 + components: + - pos: 20.5,-22.5 + parent: 1 + type: Transform + - uid: 7479 + components: + - pos: 19.5,-22.5 + parent: 1 + type: Transform +- proto: SpawnPointScientist + entities: + - uid: 6032 + components: + - pos: -17.5,-5.5 + parent: 1 + type: Transform + - uid: 6033 + components: + - pos: -16.5,-5.5 + parent: 1 + type: Transform +- proto: SpawnPointSecurityCadet + entities: + - uid: 6042 + components: + - pos: 17.5,9.5 + parent: 1 + type: Transform +- proto: SpawnPointSecurityOfficer + entities: + - uid: 6040 + components: + - pos: 13.5,9.5 + parent: 1 + type: Transform +- proto: SpawnPointSeniorEngineer + entities: + - uid: 5915 + components: + - pos: 19.5,-4.5 + parent: 1 + type: Transform +- proto: SpawnPointSeniorOfficer + entities: + - uid: 5916 + components: + - pos: 15.5,9.5 + parent: 1 + type: Transform +- proto: SpawnPointSeniorPhysician + entities: + - uid: 5923 + components: + - pos: -20.5,10.5 + parent: 1 + type: Transform +- proto: SpawnPointSeniorResearcher + entities: + - uid: 770 + components: + - pos: -16.5,-1.5 + parent: 1 + type: Transform +- proto: SpawnPointServiceWorker + entities: + - uid: 7493 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform + - uid: 7494 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 7495 + components: + - pos: 1.5,-3.5 + parent: 1 + type: Transform +- proto: SpawnPointStationEngineer + entities: + - uid: 7278 + components: + - pos: 22.5,-4.5 + parent: 1 + type: Transform + - uid: 7280 + components: + - pos: 22.5,-5.5 + parent: 1 + type: Transform +- proto: SpawnPointTechnicalAssistant + entities: + - uid: 7281 + components: + - pos: 22.5,-6.5 + parent: 1 + type: Transform +- proto: SpawnPointWarden + entities: + - uid: 6043 + components: + - pos: 28.5,17.5 + parent: 1 + type: Transform +- proto: SpawnVehicleJanicart + entities: + - uid: 7663 + components: + - pos: 14.5,-1.5 + parent: 1 + type: Transform +- proto: SpawnVehicleSecway + entities: + - uid: 5319 + components: + - pos: 18.5,10.5 + parent: 1 + type: Transform + - uid: 5320 + components: + - pos: 19.5,10.5 + parent: 1 + type: Transform +- proto: SpawnVendingMachineRestockDrink + entities: + - uid: 3058 + components: + - pos: 12.5,-0.5 + parent: 1 + type: Transform + - uid: 7673 + components: + - pos: -38.5,-16.5 + parent: 1 + type: Transform +- proto: SpawnVendingMachineRestockFood + entities: + - uid: 3836 + components: + - pos: 12.5,-0.5 + parent: 1 + type: Transform + - uid: 7672 + components: + - pos: -21.5,-26.5 + parent: 1 + type: Transform +- proto: SpawnVendingMachineRestockFoodDrink + entities: + - uid: 7671 + components: + - pos: 12.5,-0.5 + parent: 1 + type: Transform + - uid: 8833 + components: + - pos: 28.5,-15.5 + parent: 1 + type: Transform + - uid: 8909 + components: + - pos: 32.5,-4.5 + parent: 1 + type: Transform + - uid: 9149 + components: + - pos: 13.5,30.5 + parent: 1 + type: Transform + - uid: 9164 + components: + - pos: -28.5,21.5 + parent: 1 + type: Transform + - uid: 9475 + components: + - pos: 12.5,-0.5 + parent: 1 + type: Transform + - uid: 9726 + components: + - pos: 41.5,13.5 + parent: 1 + type: Transform + - uid: 12488 + components: + - pos: 24.5,32.5 + parent: 1 + type: Transform +- proto: SpeedLoaderPistol + entities: + - uid: 5358 + components: + - flags: InContainer + type: MetaData + - parent: 5356 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: Spoon + entities: + - uid: 5986 + components: + - pos: 1.7662358,10.5377035 + parent: 1 + type: Transform +- proto: SprayBottleSpaceCleaner + entities: + - uid: 5350 + components: + - pos: 23.525412,5.6263475 + parent: 1 + type: Transform +- proto: StasisBed + entities: + - uid: 1885 + components: + - pos: -21.5,5.5 + parent: 1 + type: Transform +- proto: StationMap + entities: + - uid: 12501 + components: + - pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 12502 + components: + - pos: -0.5,-28.5 + parent: 1 + type: Transform + - uid: 12503 + components: + - pos: -12.5,-27.5 + parent: 1 + type: Transform + - uid: 12504 + components: + - pos: 3.5,-14.5 + parent: 1 + type: Transform + - uid: 12505 + components: + - pos: -3.5,-5.5 + parent: 1 + type: Transform + - uid: 12506 + components: + - pos: 27.5,4.5 + parent: 1 + type: Transform + - uid: 12507 + components: + - pos: 43.5,5.5 + parent: 1 + type: Transform + - uid: 12508 + components: + - pos: 43.5,18.5 + parent: 1 + type: Transform + - uid: 12509 + components: + - pos: -15.5,0.5 + parent: 1 + type: Transform + - uid: 12510 + components: + - pos: -29.5,0.5 + parent: 1 + type: Transform + - uid: 12511 + components: + - pos: -38.5,5.5 + parent: 1 + type: Transform +- proto: Stool + entities: + - uid: 4946 + components: + - pos: 30.5,25.5 + parent: 1 + type: Transform +- proto: StoolBar + entities: + - uid: 5013 + components: + - pos: -0.5,8.5 + parent: 1 + type: Transform + - uid: 5014 + components: + - pos: 0.5,8.5 + parent: 1 + type: Transform + - uid: 5015 + components: + - pos: 1.5,8.5 + parent: 1 + type: Transform + - uid: 5016 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 5017 + components: + - pos: 3.5,8.5 + parent: 1 + type: Transform + - uid: 8305 + components: + - rot: 3.141592653589793 rad + pos: -31.5,-15.5 + parent: 1 + type: Transform + - uid: 8306 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-15.5 + parent: 1 + type: Transform + - uid: 8307 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-15.5 + parent: 1 + type: Transform +- proto: StorageCanister + entities: + - uid: 6322 + components: + - pos: -17.5,-18.5 + parent: 1 + type: Transform + - uid: 6813 + components: + - pos: 43.5,-17.5 + parent: 1 + type: Transform + - uid: 6993 + components: + - pos: 34.5,-3.5 + parent: 1 + type: Transform + - uid: 7001 + components: + - pos: 34.5,-2.5 + parent: 1 + type: Transform + - uid: 9561 + components: + - pos: 35.5,-13.5 + parent: 1 + type: Transform + - uid: 9562 + components: + - pos: 35.5,-14.5 + parent: 1 + type: Transform + - uid: 9563 + components: + - pos: 35.5,-15.5 + parent: 1 + type: Transform +- proto: Stunbaton + entities: + - uid: 5327 + components: + - pos: 19.341703,15.5968685 + parent: 1 + type: Transform + - uid: 5328 + components: + - pos: 19.622953,15.5812435 + parent: 1 + type: Transform +- proto: SubstationBasic + entities: + - uid: 1469 + components: + - name: Security Substation + type: MetaData + - pos: 22.5,21.5 + parent: 1 + type: Transform + - uid: 1714 + components: + - name: Dorms Substation + type: MetaData + - pos: -7.5,-22.5 + parent: 1 + type: Transform + - uid: 1715 + components: + - name: Supply Substation + type: MetaData + - pos: 24.5,-20.5 + parent: 1 + type: Transform + - uid: 1716 + components: + - name: Engineering Substation + type: MetaData + - pos: 14.5,-12.5 + parent: 1 + type: Transform + - uid: 1718 + components: + - name: Science Substation + type: MetaData + - pos: -7.5,-20.5 + parent: 1 + type: Transform + - uid: 1719 + components: + - name: Bridge Substation + type: MetaData + - pos: -14.5,31.5 + parent: 1 + type: Transform + - uid: 1749 + components: + - name: Service Substation + type: MetaData + - pos: 10.5,21.5 + parent: 1 + type: Transform + - uid: 1951 + components: + - name: Medical Substation + type: MetaData + - pos: -20.5,26.5 + parent: 1 + type: Transform + - uid: 2260 + components: + - name: South solars Substation + type: MetaData + - pos: -29.5,-23.5 + parent: 1 + type: Transform + - uid: 2426 + components: + - name: Arrivals Substation + type: MetaData + - pos: 40.5,19.5 + parent: 1 + type: Transform + - uid: 2555 + components: + - name: North solars Substation + type: MetaData + - pos: -24.5,29.5 + parent: 1 + type: Transform + - uid: 2855 + components: + - name: Annex Substation + type: MetaData + - pos: -11.5,-51.5 + parent: 1 + type: Transform + - uid: 3672 + components: + - pos: -0.5,44.5 + parent: 1 + type: Transform + - uid: 7556 + components: + - name: Gravity Substation + type: MetaData + - pos: -40.5,23.5 + parent: 1 + type: Transform +- proto: SubstationMachineCircuitboard + entities: + - uid: 9510 + components: + - pos: -1.3825207,-34.682213 + parent: 1 + type: Transform + - uid: 9511 + components: + - pos: -1.5075207,-34.557213 + parent: 1 + type: Transform +- proto: SuitStorageAtmos + entities: + - uid: 1849 + components: + - pos: 34.5,-18.5 + parent: 1 + type: Transform + - uid: 4931 + components: + - pos: 35.5,-18.5 + parent: 1 + type: Transform +- proto: SuitStorageCaptain + entities: + - uid: 4934 + components: + - pos: 3.5,29.5 + parent: 1 + type: Transform +- proto: SuitStorageCE + entities: + - uid: 4933 + components: + - pos: 20.5,-13.5 + parent: 1 + type: Transform +- proto: SuitStorageCMO + entities: + - uid: 1865 + components: + - pos: -20.5,15.5 + parent: 1 + type: Transform +- proto: SuitStorageEngi + entities: + - uid: 1510 + components: + - pos: 21.5,-10.5 + parent: 1 + type: Transform + - uid: 1522 + components: + - pos: 20.5,-10.5 + parent: 1 + type: Transform + - uid: 4916 + components: + - pos: 19.5,-10.5 + parent: 1 + type: Transform +- proto: SuitStorageEVA + entities: + - uid: 762 + components: + - pos: 40.5,23.5 + parent: 1 + type: Transform + - uid: 1846 + components: + - pos: 41.5,23.5 + parent: 1 + type: Transform + - uid: 5410 + components: + - pos: 42.5,23.5 + parent: 1 + type: Transform + - uid: 5411 + components: + - pos: 39.5,23.5 + parent: 1 + type: Transform +- proto: SuitStorageEVAPrisoner + entities: + - uid: 4935 + components: + - pos: 31.5,18.5 + parent: 1 + type: Transform + - uid: 5412 + components: + - pos: 34.5,23.5 + parent: 1 + type: Transform +- proto: SuitStorageHOS + entities: + - uid: 4973 + components: + - pos: 29.5,14.5 + parent: 1 + type: Transform +- proto: SuitStorageRD + entities: + - uid: 4929 + components: + - pos: -22.5,-2.5 + parent: 1 + type: Transform +- proto: SuitStorageSalv + entities: + - uid: 5382 + components: + - pos: 22.5,-22.5 + parent: 1 + type: Transform + - uid: 5413 + components: + - pos: 22.5,-21.5 + parent: 1 + type: Transform +- proto: SuitStorageSec + entities: + - uid: 4917 + components: + - pos: 37.5,10.5 + parent: 1 + type: Transform + - uid: 4932 + components: + - pos: 23.5,13.5 + parent: 1 + type: Transform +- proto: SuitStorageWarden + entities: + - uid: 4930 + components: + - pos: 29.5,18.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraCommand + entities: + - uid: 3970 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,52.5 + parent: 1 + type: Transform + - id: Telecomms + type: SurveillanceCamera + - uid: 3972 + components: + - rot: 3.141592653589793 rad + pos: -7.5,56.5 + parent: 1 + type: Transform + - id: AI Room North + type: SurveillanceCamera + - uid: 3973 + components: + - pos: -5.5,48.5 + parent: 1 + type: Transform + - id: AI Room South + type: SurveillanceCamera + - uid: 3974 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,44.5 + parent: 1 + type: Transform + - id: AI Room Entrance + type: SurveillanceCamera + - uid: 3975 + components: + - pos: -2.5,44.5 + parent: 1 + type: Transform + - id: AI Electrical Room + type: SurveillanceCamera + - uid: 5909 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,28.5 + parent: 1 + type: Transform + - id: Meeting Room + type: SurveillanceCamera + - uid: 5910 + components: + - pos: -0.5,27.5 + parent: 1 + type: Transform + - id: Bridge + type: SurveillanceCamera + - uid: 12098 + components: + - pos: -3.5,23.5 + parent: 1 + type: Transform + - id: Vault + type: SurveillanceCamera + - uid: 12099 + components: + - rot: 3.141592653589793 rad + pos: 0.5,21.5 + parent: 1 + type: Transform + - id: HoP Office + type: SurveillanceCamera + - uid: 12100 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,19.5 + parent: 1 + type: Transform + - id: Entrance + type: SurveillanceCamera +- proto: SurveillanceCameraEngineering + entities: + - uid: 12070 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-3.5 + parent: 1 + type: Transform + - id: Equipment Room + type: SurveillanceCamera + - uid: 12071 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-10.5 + parent: 1 + type: Transform + - id: Reception + type: SurveillanceCamera + - uid: 12072 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-6.5 + parent: 1 + type: Transform + - id: Atmospherics North + type: SurveillanceCamera + - uid: 12073 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-15.5 + parent: 1 + type: Transform + - id: Atmospherics South + type: SurveillanceCamera + - uid: 12074 + components: + - pos: 24.5,-15.5 + parent: 1 + type: Transform + - id: SMES Room + type: SurveillanceCamera + - uid: 12077 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-31.5 + parent: 1 + type: Transform + - id: Tech Vault + type: SurveillanceCamera + - uid: 12088 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,21.5 + parent: 1 + type: Transform + - id: Gravity Generator Room + type: SurveillanceCamera +- proto: SurveillanceCameraGeneral + entities: + - uid: 12068 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,32.5 + parent: 1 + type: Transform + - id: Courtroom + type: SurveillanceCamera + - uid: 12069 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,9.5 + parent: 1 + type: Transform + - id: Arrivals + type: SurveillanceCamera + - uid: 12078 + components: + - pos: -4.5,-26.5 + parent: 1 + type: Transform + - id: Dorms + type: SurveillanceCamera + - uid: 12087 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,8.5 + parent: 1 + type: Transform + - id: Evac + type: SurveillanceCamera + - uid: 12089 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,8.5 + parent: 1 + type: Transform + - id: Chapel + type: SurveillanceCamera + - uid: 12090 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-4.5 + parent: 1 + type: Transform + - id: Library + type: SurveillanceCamera +- proto: SurveillanceCameraMedical + entities: + - uid: 12091 + components: + - pos: -25.5,5.5 + parent: 1 + type: Transform + - id: Cloning + type: SurveillanceCamera + - uid: 12092 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,14.5 + parent: 1 + type: Transform + - id: Morgue + type: SurveillanceCamera + - uid: 12093 + components: + - rot: 3.141592653589793 rad + pos: -17.5,11.5 + parent: 1 + type: Transform + - id: Ward + type: SurveillanceCamera + - uid: 12094 + components: + - rot: 3.141592653589793 rad + pos: -7.5,11.5 + parent: 1 + type: Transform + - id: Entrance + type: SurveillanceCamera + - uid: 12095 + components: + - rot: 3.141592653589793 rad + pos: -12.5,16.5 + parent: 1 + type: Transform + - id: Chemistry + type: SurveillanceCamera + - uid: 12096 + components: + - pos: -14.5,18.5 + parent: 1 + type: Transform + - id: Virology + type: SurveillanceCamera + - uid: 12111 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,22.5 + parent: 1 + type: Transform + - id: Surgery Room + type: SurveillanceCamera +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 3776 + components: + - pos: 2.5,49.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 3787 + components: + - pos: 2.5,53.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 3791 + components: + - pos: 2.5,55.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 3774 + components: + - pos: 0.5,49.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraRouterScience + entities: + - uid: 3788 + components: + - pos: 0.5,51.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 3775 + components: + - pos: 2.5,51.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraRouterService + entities: + - uid: 3786 + components: + - pos: 0.5,53.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 3781 + components: + - pos: 0.5,55.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraScience + entities: + - uid: 12082 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-15.5 + parent: 1 + type: Transform + - id: Xenoarchaeology + type: SurveillanceCamera + - uid: 12083 + components: + - pos: -8.5,-15.5 + parent: 1 + type: Transform + - id: Robotics + type: SurveillanceCamera + - uid: 12084 + components: + - pos: -9.5,-9.5 + parent: 1 + type: Transform + - id: Entrance + type: SurveillanceCamera + - uid: 12085 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-3.5 + parent: 1 + type: Transform + - id: Equipment Room + type: SurveillanceCamera + - uid: 12086 + components: + - pos: -27.5,-7.5 + parent: 1 + type: Transform + - id: Anomaly Lab + type: SurveillanceCamera +- proto: SurveillanceCameraSecurity + entities: + - uid: 12059 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,27.5 + parent: 1 + type: Transform + - id: Permabrig + type: SurveillanceCamera + - uid: 12060 + components: + - rot: 3.141592653589793 rad + pos: 37.5,13.5 + parent: 1 + type: Transform + - id: Armory + type: SurveillanceCamera + - uid: 12061 + components: + - pos: 31.5,8.5 + parent: 1 + type: Transform + - id: Hallway + type: SurveillanceCamera + - uid: 12062 + components: + - rot: 3.141592653589793 rad + pos: 20.5,15.5 + parent: 1 + type: Transform + - id: Equipment Room + type: SurveillanceCamera + - uid: 12063 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,14.5 + parent: 1 + type: Transform + - id: Entrance + type: SurveillanceCamera + - uid: 12064 + components: + - rot: 3.141592653589793 rad + pos: 14.5,10.5 + parent: 1 + type: Transform + - id: Brig Area + type: SurveillanceCamera +- proto: SurveillanceCameraService + entities: + - uid: 12079 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 1 + type: Transform + - id: Botany + type: SurveillanceCamera + - uid: 12080 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + type: Transform + - id: Kitchen + type: SurveillanceCamera + - uid: 12081 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - id: Bar + type: SurveillanceCamera +- proto: SurveillanceCameraSupply + entities: + - uid: 12075 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-18.5 + parent: 1 + type: Transform + - id: Reception + type: SurveillanceCamera + - uid: 12076 + components: + - pos: 16.5,-27.5 + parent: 1 + type: Transform + - id: Cargo Bay + type: SurveillanceCamera +- proto: SurvivalKnife + entities: + - uid: 8272 + components: + - desc: Weapon of last resort for a certified pilot. + name: dataknife + type: MetaData + - pos: -19.460943,-48.42677 + parent: 1 + type: Transform +- proto: Table + entities: + - uid: 233 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,11.5 + parent: 1 + type: Transform + - uid: 477 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-4.5 + parent: 1 + type: Transform + - uid: 478 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-4.5 + parent: 1 + type: Transform + - uid: 479 + components: + - rot: 3.141592653589793 rad + pos: -9.5,7.5 + parent: 1 + type: Transform + - uid: 480 + components: + - rot: 3.141592653589793 rad + pos: -8.5,7.5 + parent: 1 + type: Transform + - uid: 481 + components: + - rot: 3.141592653589793 rad + pos: -9.5,12.5 + parent: 1 + type: Transform + - uid: 482 + components: + - rot: 3.141592653589793 rad + pos: -8.5,12.5 + parent: 1 + type: Transform + - uid: 483 + components: + - rot: 3.141592653589793 rad + pos: -17.5,5.5 + parent: 1 + type: Transform + - uid: 484 + components: + - rot: 3.141592653589793 rad + pos: -14.5,5.5 + parent: 1 + type: Transform + - uid: 485 + components: + - rot: 3.141592653589793 rad + pos: -20.5,5.5 + parent: 1 + type: Transform + - uid: 767 + components: + - rot: 3.141592653589793 rad + pos: 18.5,15.5 + parent: 1 + type: Transform + - uid: 768 + components: + - rot: 3.141592653589793 rad + pos: 19.5,15.5 + parent: 1 + type: Transform + - uid: 769 + components: + - rot: 3.141592653589793 rad + pos: 20.5,15.5 + parent: 1 + type: Transform + - uid: 771 + components: + - pos: 16.5,13.5 + parent: 1 + type: Transform + - uid: 772 + components: + - rot: 3.141592653589793 rad + pos: 11.5,15.5 + parent: 1 + type: Transform + - uid: 773 + components: + - rot: 3.141592653589793 rad + pos: 12.5,15.5 + parent: 1 + type: Transform + - uid: 781 + components: + - pos: 13.5,13.5 + parent: 1 + type: Transform + - uid: 782 + components: + - pos: 13.5,14.5 + parent: 1 + type: Transform + - uid: 786 + components: + - pos: 16.5,12.5 + parent: 1 + type: Transform + - uid: 1505 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-26.5 + parent: 1 + type: Transform + - uid: 1701 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-20.5 + parent: 1 + type: Transform + - uid: 1702 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-21.5 + parent: 1 + type: Transform + - uid: 1703 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-20.5 + parent: 1 + type: Transform + - uid: 1704 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-21.5 + parent: 1 + type: Transform + - uid: 1705 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-18.5 + parent: 1 + type: Transform + - uid: 1706 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-19.5 + parent: 1 + type: Transform + - uid: 1707 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-20.5 + parent: 1 + type: Transform + - uid: 1708 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-17.5 + parent: 1 + type: Transform + - uid: 1709 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-17.5 + parent: 1 + type: Transform + - uid: 1756 + components: + - pos: 4.5,-27.5 + parent: 1 + type: Transform + - uid: 1808 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,25.5 + parent: 1 + type: Transform + - uid: 1811 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,27.5 + parent: 1 + type: Transform + - uid: 1890 + components: + - rot: 3.141592653589793 rad + pos: -12.5,6.5 + parent: 1 + type: Transform + - uid: 1902 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,11.5 + parent: 1 + type: Transform + - uid: 1904 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,11.5 + parent: 1 + type: Transform + - uid: 1906 + components: + - rot: 3.141592653589793 rad + pos: -25.5,11.5 + parent: 1 + type: Transform + - uid: 1907 + components: + - rot: 3.141592653589793 rad + pos: -24.5,11.5 + parent: 1 + type: Transform + - uid: 1919 + components: + - pos: -22.5,16.5 + parent: 1 + type: Transform + - uid: 1920 + components: + - pos: -22.5,15.5 + parent: 1 + type: Transform + - uid: 1922 + components: + - pos: -22.5,13.5 + parent: 1 + type: Transform + - uid: 1928 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,12.5 + parent: 1 + type: Transform + - uid: 2369 + components: + - pos: 11.5,23.5 + parent: 1 + type: Transform + - uid: 2748 + components: + - pos: -10.5,52.5 + parent: 1 + type: Transform + - uid: 2749 + components: + - pos: -10.5,54.5 + parent: 1 + type: Transform + - uid: 2751 + components: + - pos: -10.5,50.5 + parent: 1 + type: Transform + - uid: 2755 + components: + - pos: -9.5,48.5 + parent: 1 + type: Transform + - uid: 2756 + components: + - pos: -8.5,48.5 + parent: 1 + type: Transform + - uid: 2758 + components: + - pos: -3.5,48.5 + parent: 1 + type: Transform + - uid: 2763 + components: + - pos: -8.5,56.5 + parent: 1 + type: Transform + - uid: 2764 + components: + - pos: -7.5,56.5 + parent: 1 + type: Transform + - uid: 2766 + components: + - pos: -5.5,56.5 + parent: 1 + type: Transform + - uid: 2767 + components: + - pos: -4.5,56.5 + parent: 1 + type: Transform + - uid: 3662 + components: + - pos: -24.5,-19.5 + parent: 1 + type: Transform + - uid: 3809 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 1 + type: Transform + - uid: 3810 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-0.5 + parent: 1 + type: Transform + - uid: 3811 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-1.5 + parent: 1 + type: Transform + - uid: 3812 + components: + - pos: 21.5,15.5 + parent: 1 + type: Transform + - uid: 3813 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-1.5 + parent: 1 + type: Transform + - uid: 3814 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-2.5 + parent: 1 + type: Transform + - uid: 3922 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,44.5 + parent: 1 + type: Transform + - uid: 3925 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,46.5 + parent: 1 + type: Transform + - uid: 3954 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,44.5 + parent: 1 + type: Transform + - uid: 3955 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,46.5 + parent: 1 + type: Transform + - uid: 3956 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,46.5 + parent: 1 + type: Transform + - uid: 4062 + components: + - pos: -0.5,32.5 + parent: 1 + type: Transform + - uid: 4063 + components: + - pos: -3.5,32.5 + parent: 1 + type: Transform + - uid: 4075 + components: + - pos: -3.5,31.5 + parent: 1 + type: Transform + - uid: 4077 + components: + - pos: -0.5,31.5 + parent: 1 + type: Transform + - uid: 4087 + components: + - rot: 3.141592653589793 rad + pos: -2.5,27.5 + parent: 1 + type: Transform + - uid: 4088 + components: + - rot: 3.141592653589793 rad + pos: -1.5,27.5 + parent: 1 + type: Transform + - uid: 4089 + components: + - rot: 3.141592653589793 rad + pos: -0.5,27.5 + parent: 1 + type: Transform + - uid: 4857 + components: + - rot: 3.141592653589793 rad + pos: 40.5,25.5 + parent: 1 + type: Transform + - uid: 4936 + components: + - pos: 27.5,24.5 + parent: 1 + type: Transform + - uid: 4937 + components: + - pos: 28.5,24.5 + parent: 1 + type: Transform + - uid: 4938 + components: + - pos: 29.5,24.5 + parent: 1 + type: Transform + - uid: 5052 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,19.5 + parent: 1 + type: Transform + - uid: 5055 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,18.5 + parent: 1 + type: Transform + - uid: 5061 + components: + - pos: 0.5,18.5 + parent: 1 + type: Transform + - uid: 5314 + components: + - pos: 30.5,8.5 + parent: 1 + type: Transform + - uid: 5315 + components: + - pos: 11.5,8.5 + parent: 1 + type: Transform + - uid: 5316 + components: + - pos: 25.5,10.5 + parent: 1 + type: Transform + - uid: 5317 + components: + - pos: 26.5,10.5 + parent: 1 + type: Transform + - uid: 5318 + components: + - pos: 27.5,10.5 + parent: 1 + type: Transform + - uid: 5340 + components: + - pos: 23.5,5.5 + parent: 1 + type: Transform + - uid: 5404 + components: + - pos: 36.5,13.5 + parent: 1 + type: Transform + - uid: 5405 + components: + - pos: 37.5,13.5 + parent: 1 + type: Transform + - uid: 5406 + components: + - pos: 38.5,13.5 + parent: 1 + type: Transform + - uid: 5407 + components: + - pos: 38.5,12.5 + parent: 1 + type: Transform + - uid: 5408 + components: + - pos: 38.5,10.5 + parent: 1 + type: Transform + - uid: 5409 + components: + - pos: 38.5,11.5 + parent: 1 + type: Transform + - uid: 5551 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,1.5 + parent: 1 + type: Transform + - uid: 5552 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,3.5 + parent: 1 + type: Transform + - uid: 5554 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,1.5 + parent: 1 + type: Transform + - uid: 5557 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,19.5 + parent: 1 + type: Transform + - uid: 5676 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-23.5 + parent: 1 + type: Transform + - uid: 5690 + components: + - pos: -16.5,21.5 + parent: 1 + type: Transform + - uid: 5692 + components: + - pos: -12.5,19.5 + parent: 1 + type: Transform + - uid: 5693 + components: + - pos: -12.5,20.5 + parent: 1 + type: Transform + - uid: 5864 + components: + - pos: -16.5,-2.5 + parent: 1 + type: Transform + - uid: 5865 + components: + - pos: -16.5,-3.5 + parent: 1 + type: Transform + - uid: 5866 + components: + - pos: -16.5,-4.5 + parent: 1 + type: Transform + - uid: 5867 + components: + - pos: -17.5,-2.5 + parent: 1 + type: Transform + - uid: 5868 + components: + - pos: -17.5,-3.5 + parent: 1 + type: Transform + - uid: 5869 + components: + - pos: -17.5,-4.5 + parent: 1 + type: Transform + - uid: 5955 + components: + - rot: 3.141592653589793 rad + pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 5956 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 5957 + components: + - rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 5959 + components: + - rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 5960 + components: + - rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 1 + type: Transform + - uid: 5966 + components: + - rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 5992 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 5993 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + type: Transform + - uid: 6398 + components: + - pos: -15.5,-24.5 + parent: 1 + type: Transform + - uid: 6617 + components: + - pos: 12.5,-9.5 + parent: 1 + type: Transform + - uid: 6758 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-12.5 + parent: 1 + type: Transform + - uid: 6759 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-12.5 + parent: 1 + type: Transform + - uid: 6763 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-7.5 + parent: 1 + type: Transform + - uid: 6764 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-8.5 + parent: 1 + type: Transform + - uid: 6765 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-8.5 + parent: 1 + type: Transform + - uid: 6768 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-8.5 + parent: 1 + type: Transform + - uid: 6769 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-8.5 + parent: 1 + type: Transform + - uid: 7078 + components: + - pos: -4.5,-31.5 + parent: 1 + type: Transform + - uid: 7079 + components: + - pos: -3.5,-31.5 + parent: 1 + type: Transform + - uid: 7080 + components: + - pos: -2.5,-31.5 + parent: 1 + type: Transform + - uid: 7132 + components: + - pos: 32.5,-18.5 + parent: 1 + type: Transform + - uid: 7133 + components: + - pos: 33.5,-18.5 + parent: 1 + type: Transform + - uid: 7500 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-31.5 + parent: 1 + type: Transform + - uid: 7504 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-7.5 + parent: 1 + type: Transform + - uid: 7507 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-7.5 + parent: 1 + type: Transform + - uid: 7508 + components: + - rot: 3.141592653589793 rad + pos: -15.5,1.5 + parent: 1 + type: Transform + - uid: 7509 + components: + - rot: 3.141592653589793 rad + pos: -25.5,3.5 + parent: 1 + type: Transform + - uid: 7524 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,1.5 + parent: 1 + type: Transform + - uid: 7527 + components: + - pos: -39.5,12.5 + parent: 1 + type: Transform + - uid: 7634 + components: + - rot: 3.141592653589793 rad + pos: -41.5,18.5 + parent: 1 + type: Transform + - uid: 7635 + components: + - rot: 3.141592653589793 rad + pos: -41.5,19.5 + parent: 1 + type: Transform + - uid: 7636 + components: + - rot: 3.141592653589793 rad + pos: -41.5,20.5 + parent: 1 + type: Transform + - uid: 7666 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-0.5 + parent: 1 + type: Transform + - uid: 7689 + components: + - pos: -5.5,-20.5 + parent: 1 + type: Transform + - uid: 7690 + components: + - pos: -4.5,-20.5 + parent: 1 + type: Transform + - uid: 7691 + components: + - pos: -3.5,-20.5 + parent: 1 + type: Transform + - uid: 7692 + components: + - pos: -2.5,-20.5 + parent: 1 + type: Transform + - uid: 7693 + components: + - pos: -1.5,-20.5 + parent: 1 + type: Transform + - uid: 7694 + components: + - pos: -5.5,-21.5 + parent: 1 + type: Transform + - uid: 7700 + components: + - pos: -12.5,-28.5 + parent: 1 + type: Transform + - uid: 7701 + components: + - pos: -13.5,-28.5 + parent: 1 + type: Transform + - uid: 7702 + components: + - pos: -13.5,-29.5 + parent: 1 + type: Transform + - uid: 7703 + components: + - pos: -13.5,-31.5 + parent: 1 + type: Transform + - uid: 7704 + components: + - pos: -12.5,-31.5 + parent: 1 + type: Transform + - uid: 7705 + components: + - pos: -11.5,-31.5 + parent: 1 + type: Transform + - uid: 7706 + components: + - pos: -9.5,-31.5 + parent: 1 + type: Transform + - uid: 7707 + components: + - pos: -9.5,-30.5 + parent: 1 + type: Transform + - uid: 7708 + components: + - pos: -9.5,-29.5 + parent: 1 + type: Transform + - uid: 7709 + components: + - pos: -9.5,-28.5 + parent: 1 + type: Transform + - uid: 8236 + components: + - pos: -26.5,21.5 + parent: 1 + type: Transform + - uid: 8237 + components: + - pos: -26.5,20.5 + parent: 1 + type: Transform + - uid: 8238 + components: + - pos: -25.5,20.5 + parent: 1 + type: Transform + - uid: 8239 + components: + - pos: -24.5,20.5 + parent: 1 + type: Transform + - uid: 8281 + components: + - pos: -27.5,-24.5 + parent: 1 + type: Transform + - uid: 8282 + components: + - pos: -27.5,-25.5 + parent: 1 + type: Transform + - uid: 8285 + components: + - pos: -23.5,-25.5 + parent: 1 + type: Transform + - uid: 8286 + components: + - pos: -21.5,-26.5 + parent: 1 + type: Transform + - uid: 8809 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-16.5 + parent: 1 + type: Transform + - uid: 8874 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-18.5 + parent: 1 + type: Transform + - uid: 8875 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-17.5 + parent: 1 + type: Transform + - uid: 8876 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-2.5 + parent: 1 + type: Transform + - uid: 8877 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-5.5 + parent: 1 + type: Transform + - uid: 8878 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-6.5 + parent: 1 + type: Transform + - uid: 8879 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-15.5 + parent: 1 + type: Transform + - uid: 8881 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-12.5 + parent: 1 + type: Transform + - uid: 8882 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-13.5 + parent: 1 + type: Transform + - uid: 8886 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-22.5 + parent: 1 + type: Transform + - uid: 8887 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-16.5 + parent: 1 + type: Transform + - uid: 8888 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-17.5 + parent: 1 + type: Transform + - uid: 8889 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-17.5 + parent: 1 + type: Transform + - uid: 9045 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-24.5 + parent: 1 + type: Transform + - uid: 9132 + components: + - pos: 9.5,-11.5 + parent: 1 + type: Transform + - uid: 9135 + components: + - pos: 19.5,-18.5 + parent: 1 + type: Transform + - uid: 9136 + components: + - pos: 28.5,-14.5 + parent: 1 + type: Transform + - uid: 9151 + components: + - pos: 26.5,-20.5 + parent: 1 + type: Transform + - uid: 9163 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-4.5 + parent: 1 + type: Transform + - uid: 9311 + components: + - pos: 16.5,23.5 + parent: 1 + type: Transform + - uid: 9312 + components: + - pos: 12.5,21.5 + parent: 1 + type: Transform + - uid: 9313 + components: + - pos: 13.5,21.5 + parent: 1 + type: Transform + - uid: 9315 + components: + - pos: 12.5,20.5 + parent: 1 + type: Transform + - uid: 9324 + components: + - pos: -14.5,27.5 + parent: 1 + type: Transform + - uid: 9325 + components: + - pos: -13.5,27.5 + parent: 1 + type: Transform + - uid: 9350 + components: + - pos: 12.5,17.5 + parent: 1 + type: Transform + - uid: 9352 + components: + - pos: 13.5,17.5 + parent: 1 + type: Transform + - uid: 9363 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,23.5 + parent: 1 + type: Transform + - uid: 9370 + components: + - pos: 14.5,30.5 + parent: 1 + type: Transform + - uid: 9372 + components: + - pos: 16.5,33.5 + parent: 1 + type: Transform + - uid: 9373 + components: + - pos: 17.5,33.5 + parent: 1 + type: Transform + - uid: 9382 + components: + - pos: 23.5,21.5 + parent: 1 + type: Transform + - uid: 9537 + components: + - pos: 38.5,7.5 + parent: 1 + type: Transform + - uid: 9538 + components: + - pos: 42.5,6.5 + parent: 1 + type: Transform + - uid: 9541 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,13.5 + parent: 1 + type: Transform + - uid: 9542 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,12.5 + parent: 1 + type: Transform + - uid: 9545 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,25.5 + parent: 1 + type: Transform + - uid: 9546 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,24.5 + parent: 1 + type: Transform + - uid: 9575 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,6.5 + parent: 1 + type: Transform + - uid: 9646 + components: + - pos: 10.5,24.5 + parent: 1 + type: Transform + - uid: 9650 + components: + - pos: 13.5,23.5 + parent: 1 + type: Transform + - uid: 9660 + components: + - pos: 10.5,23.5 + parent: 1 + type: Transform + - uid: 9682 + components: + - pos: -28.5,22.5 + parent: 1 + type: Transform + - uid: 9683 + components: + - pos: -28.5,21.5 + parent: 1 + type: Transform + - uid: 9686 + components: + - pos: -23.5,26.5 + parent: 1 + type: Transform + - uid: 9688 + components: + - pos: -19.5,20.5 + parent: 1 + type: Transform + - uid: 9697 + components: + - pos: -31.5,21.5 + parent: 1 + type: Transform + - uid: 9698 + components: + - pos: -32.5,18.5 + parent: 1 + type: Transform + - uid: 9700 + components: + - pos: -33.5,18.5 + parent: 1 + type: Transform + - uid: 9711 + components: + - pos: -28.5,12.5 + parent: 1 + type: Transform + - uid: 11797 + components: + - pos: 12.5,23.5 + parent: 1 + type: Transform +- proto: TableCarpet + entities: + - uid: 5041 + components: + - pos: 5.5,10.5 + parent: 1 + type: Transform + - uid: 5566 + components: + - pos: -40.5,-5.5 + parent: 1 + type: Transform + - uid: 5567 + components: + - pos: -40.5,-6.5 + parent: 1 + type: Transform + - uid: 5568 + components: + - pos: -39.5,-5.5 + parent: 1 + type: Transform + - uid: 5569 + components: + - pos: -39.5,-6.5 + parent: 1 + type: Transform +- proto: TableCounterWood + entities: + - uid: 4886 + components: + - rot: 3.141592653589793 rad + pos: 43.5,33.5 + parent: 1 + type: Transform + - uid: 4887 + components: + - rot: 3.141592653589793 rad + pos: 42.5,33.5 + parent: 1 + type: Transform +- proto: TableGlass + entities: + - uid: 5051 + components: + - pos: 3.5,25.5 + parent: 1 + type: Transform + - uid: 5614 + components: + - rot: 3.141592653589793 rad + pos: -10.5,16.5 + parent: 1 + type: Transform + - uid: 5615 + components: + - rot: 3.141592653589793 rad + pos: -10.5,15.5 + parent: 1 + type: Transform + - uid: 5616 + components: + - rot: 3.141592653589793 rad + pos: -11.5,13.5 + parent: 1 + type: Transform + - uid: 9615 + components: + - rot: 3.141592653589793 rad + pos: 16.5,27.5 + parent: 1 + type: Transform + - uid: 9616 + components: + - rot: 3.141592653589793 rad + pos: 17.5,27.5 + parent: 1 + type: Transform + - uid: 9617 + components: + - rot: 3.141592653589793 rad + pos: 18.5,27.5 + parent: 1 + type: Transform +- proto: TablePlasmaGlass + entities: + - uid: 553 + components: + - pos: -28.5,-5.5 + parent: 1 + type: Transform + - uid: 557 + components: + - pos: -27.5,-5.5 + parent: 1 + type: Transform + - uid: 558 + components: + - pos: -28.5,-7.5 + parent: 1 + type: Transform + - uid: 606 + components: + - pos: -28.5,-0.5 + parent: 1 + type: Transform + - uid: 607 + components: + - pos: -24.5,-0.5 + parent: 1 + type: Transform + - uid: 2865 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-53.5 + parent: 1 + type: Transform +- proto: TableReinforced + entities: + - uid: 605 + components: + - pos: -14.5,-8.5 + parent: 1 + type: Transform + - uid: 645 + components: + - pos: -5.5,-15.5 + parent: 1 + type: Transform + - uid: 646 + components: + - pos: -9.5,-11.5 + parent: 1 + type: Transform + - uid: 650 + components: + - pos: -6.5,-15.5 + parent: 1 + type: Transform + - uid: 655 + components: + - pos: -9.5,-13.5 + parent: 1 + type: Transform + - uid: 656 + components: + - pos: -9.5,-12.5 + parent: 1 + type: Transform + - uid: 4121 + components: + - pos: -3.5,23.5 + parent: 1 + type: Transform + - uid: 4122 + components: + - pos: -2.5,23.5 + parent: 1 + type: Transform + - uid: 4123 + components: + - pos: -1.5,23.5 + parent: 1 + type: Transform + - uid: 4124 + components: + - pos: -1.5,24.5 + parent: 1 + type: Transform + - uid: 4125 + components: + - pos: -1.5,25.5 + parent: 1 + type: Transform + - uid: 6064 + components: + - pos: -14.5,-9.5 + parent: 1 + type: Transform + - uid: 6065 + components: + - pos: -14.5,-10.5 + parent: 1 + type: Transform +- proto: TableWood + entities: + - uid: 165 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 798 + components: + - pos: 27.5,13.5 + parent: 1 + type: Transform + - uid: 1256 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-2.5 + parent: 1 + type: Transform + - uid: 1261 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-2.5 + parent: 1 + type: Transform + - uid: 1263 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-3.5 + parent: 1 + type: Transform + - uid: 1281 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-4.5 + parent: 1 + type: Transform + - uid: 1780 + components: + - pos: 27.5,14.5 + parent: 1 + type: Transform + - uid: 1802 + components: + - pos: 29.5,16.5 + parent: 1 + type: Transform + - uid: 1803 + components: + - pos: 28.5,16.5 + parent: 1 + type: Transform + - uid: 1844 + components: + - pos: -21.5,-1.5 + parent: 1 + type: Transform + - uid: 1863 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,14.5 + parent: 1 + type: Transform + - uid: 1864 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,14.5 + parent: 1 + type: Transform + - uid: 2782 + components: + - pos: -14.5,-48.5 + parent: 1 + type: Transform + - uid: 2786 + components: + - pos: -15.5,-48.5 + parent: 1 + type: Transform + - uid: 2799 + components: + - pos: -13.5,-48.5 + parent: 1 + type: Transform + - uid: 2930 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-52.5 + parent: 1 + type: Transform + - uid: 3130 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,7.5 + parent: 1 + type: Transform + - uid: 3131 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 3132 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 3153 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,7.5 + parent: 1 + type: Transform + - uid: 3154 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 3469 + components: + - rot: 3.141592653589793 rad + pos: -36.5,11.5 + parent: 1 + type: Transform + - uid: 3470 + components: + - rot: 3.141592653589793 rad + pos: -35.5,11.5 + parent: 1 + type: Transform + - uid: 3471 + components: + - rot: 3.141592653589793 rad + pos: -34.5,11.5 + parent: 1 + type: Transform + - uid: 3472 + components: + - rot: 3.141592653589793 rad + pos: -33.5,11.5 + parent: 1 + type: Transform + - uid: 3480 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,14.5 + parent: 1 + type: Transform + - uid: 4045 + components: + - rot: 3.141592653589793 rad + pos: -9.5,27.5 + parent: 1 + type: Transform + - uid: 4046 + components: + - rot: 3.141592653589793 rad + pos: -9.5,28.5 + parent: 1 + type: Transform + - uid: 4091 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,31.5 + parent: 1 + type: Transform + - uid: 4092 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,31.5 + parent: 1 + type: Transform + - uid: 4093 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,30.5 + parent: 1 + type: Transform + - uid: 4094 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,27.5 + parent: 1 + type: Transform + - uid: 4095 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,27.5 + parent: 1 + type: Transform + - uid: 4108 + components: + - pos: -10.5,31.5 + parent: 1 + type: Transform + - uid: 4109 + components: + - pos: -8.5,31.5 + parent: 1 + type: Transform + - uid: 4305 + components: + - pos: -9.5,29.5 + parent: 1 + type: Transform + - uid: 4885 + components: + - rot: 3.141592653589793 rad + pos: 40.5,33.5 + parent: 1 + type: Transform + - uid: 4888 + components: + - rot: 3.141592653589793 rad + pos: 39.5,33.5 + parent: 1 + type: Transform + - uid: 4889 + components: + - rot: 3.141592653589793 rad + pos: 39.5,31.5 + parent: 1 + type: Transform + - uid: 4890 + components: + - rot: 3.141592653589793 rad + pos: 40.5,31.5 + parent: 1 + type: Transform + - uid: 4891 + components: + - rot: 3.141592653589793 rad + pos: 41.5,31.5 + parent: 1 + type: Transform + - uid: 4892 + components: + - rot: 3.141592653589793 rad + pos: 44.5,31.5 + parent: 1 + type: Transform + - uid: 4893 + components: + - rot: 3.141592653589793 rad + pos: 45.5,31.5 + parent: 1 + type: Transform + - uid: 4894 + components: + - rot: 3.141592653589793 rad + pos: 46.5,31.5 + parent: 1 + type: Transform + - uid: 4956 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,21.5 + parent: 1 + type: Transform + - uid: 4957 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,21.5 + parent: 1 + type: Transform + - uid: 4958 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,19.5 + parent: 1 + type: Transform + - uid: 4964 + components: + - pos: -4.5,19.5 + parent: 1 + type: Transform + - uid: 5012 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 5031 + components: + - pos: 1.5,10.5 + parent: 1 + type: Transform + - uid: 5032 + components: + - pos: -1.5,10.5 + parent: 1 + type: Transform + - uid: 5035 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,10.5 + parent: 1 + type: Transform + - uid: 5036 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,10.5 + parent: 1 + type: Transform + - uid: 5383 + components: + - pos: -22.5,-1.5 + parent: 1 + type: Transform + - uid: 5665 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-13.5 + parent: 1 + type: Transform + - uid: 5666 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-14.5 + parent: 1 + type: Transform + - uid: 5947 + components: + - rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 5948 + components: + - rot: 3.141592653589793 rad + pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 7445 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-15.5 + parent: 1 + type: Transform + - uid: 7446 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-15.5 + parent: 1 + type: Transform + - uid: 7710 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-28.5 + parent: 1 + type: Transform + - uid: 7711 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-28.5 + parent: 1 + type: Transform + - uid: 8288 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-14.5 + parent: 1 + type: Transform + - uid: 8289 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-12.5 + parent: 1 + type: Transform + - uid: 8290 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-12.5 + parent: 1 + type: Transform + - uid: 8291 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-14.5 + parent: 1 + type: Transform + - uid: 8294 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-12.5 + parent: 1 + type: Transform + - uid: 8295 + components: + - pos: -35.5,-16.5 + parent: 1 + type: Transform + - uid: 8298 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-14.5 + parent: 1 + type: Transform + - uid: 8300 + components: + - pos: -32.5,-17.5 + parent: 1 + type: Transform + - uid: 9015 + components: + - pos: -38.5,-9.5 + parent: 1 + type: Transform + - uid: 9634 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,25.5 + parent: 1 + type: Transform + - uid: 12519 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-29.5 + parent: 1 + type: Transform + - uid: 12520 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-28.5 + parent: 1 + type: Transform +- proto: TelecomServer + entities: + - uid: 3769 + components: + - pos: -0.5,53.5 + parent: 1 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 3770 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 3771 + components: + - pos: -0.5,49.5 + parent: 1 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 3772 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 3777 + components: + - pos: -0.5,55.5 + parent: 1 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 3778 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 3779 + components: + - pos: 3.5,49.5 + parent: 1 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 3780 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 3782 + components: + - pos: 3.5,55.5 + parent: 1 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 3783 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 3784 + components: + - pos: 3.5,53.5 + parent: 1 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 3785 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 3789 + components: + - pos: -0.5,51.5 + parent: 1 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 3790 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 3792 + components: + - pos: 3.5,51.5 + parent: 1 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 3793 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer +- proto: TelecomServerCircuitboard + entities: + - uid: 4008 + components: + - pos: -2.3633666,50.634815 + parent: 1 + type: Transform + - uid: 4009 + components: + - pos: -2.5352416,50.43169 + parent: 1 + type: Transform +- proto: ThermomachineHeaterMachineCircuitBoard + entities: + - uid: 9560 + components: + - pos: -1.4709852,-34.50978 + parent: 1 + type: Transform +- proto: TintedWindow + entities: + - uid: 47 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 232 + components: + - pos: -13.5,6.5 + parent: 1 + type: Transform + - uid: 236 + components: + - pos: -16.5,6.5 + parent: 1 + type: Transform + - uid: 237 + components: + - pos: -16.5,5.5 + parent: 1 + type: Transform + - uid: 238 + components: + - pos: -19.5,5.5 + parent: 1 + type: Transform + - uid: 239 + components: + - pos: -19.5,6.5 + parent: 1 + type: Transform + - uid: 260 + components: + - pos: -13.5,5.5 + parent: 1 + type: Transform + - uid: 453 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-1.5 + parent: 1 + type: Transform + - uid: 454 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-2.5 + parent: 1 + type: Transform + - uid: 458 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-0.5 + parent: 1 + type: Transform + - uid: 524 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-3.5 + parent: 1 + type: Transform + - uid: 3447 + components: + - pos: -36.5,13.5 + parent: 1 + type: Transform +- proto: ToiletEmpty + entities: + - uid: 6403 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-27.5 + parent: 1 + type: Transform + - uid: 6404 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-27.5 + parent: 1 + type: Transform + - uid: 6405 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-27.5 + parent: 1 + type: Transform +- proto: ToolboxArtistic + entities: + - uid: 8226 + components: + - pos: -5.5007915,-20.744713 + parent: 1 + type: Transform +- proto: ToolboxElectricalFilled + entities: + - uid: 3976 + components: + - pos: -3.4942179,46.73459 + parent: 1 + type: Transform + - uid: 6025 + components: + - pos: -12.505221,-1.1054368 + parent: 1 + type: Transform + - uid: 6800 + components: + - pos: 18.476976,-7.3507767 + parent: 1 + type: Transform + - uid: 7640 + components: + - pos: -41.523235,18.607943 + parent: 1 + type: Transform + - uid: 8220 + components: + - pos: -5.49676,-21.465288 + parent: 1 + type: Transform + - uid: 8825 + components: + - pos: -27.52112,-24.46938 + parent: 1 + type: Transform + - uid: 9520 + components: + - pos: -4.515568,-31.274857 + parent: 1 + type: Transform +- proto: ToolboxEmergencyFilled + entities: + - uid: 5062 + components: + - pos: -3.518496,32.609406 + parent: 1 + type: Transform + - uid: 7426 + components: + - pos: 4.483827,-26.624891 + parent: 1 + type: Transform + - uid: 7650 + components: + - pos: -39.493473,12.623091 + parent: 1 + type: Transform + - uid: 8225 + components: + - pos: -5.5007915,-20.963463 + parent: 1 + type: Transform + - uid: 9577 + components: + - pos: 44.490696,19.610844 + parent: 1 + type: Transform + - uid: 9578 + components: + - pos: 46.47507,1.6124096 + parent: 1 + type: Transform +- proto: ToolboxGoldFilled + entities: + - uid: 4130 + components: + - pos: -1.51228,25.6276 + parent: 1 + type: Transform +- proto: ToolboxMechanicalFilled + entities: + - uid: 3977 + components: + - pos: -3.4942179,46.51584 + parent: 1 + type: Transform + - uid: 5065 + components: + - pos: -3.518496,32.421906 + parent: 1 + type: Transform + - uid: 6024 + components: + - pos: -12.505221,-1.4335618 + parent: 1 + type: Transform + - uid: 6801 + components: + - pos: 18.476976,-7.6789017 + parent: 1 + type: Transform + - uid: 7425 + components: + - pos: 4.483827,-26.343641 + parent: 1 + type: Transform + - uid: 8221 + components: + - pos: -5.5007915,-21.244713 + parent: 1 + type: Transform +- proto: ToyAi + entities: + - uid: 3616 + components: + - pos: -6.5061026,52.63185 + parent: 1 + type: Transform +- proto: ToyFireRipley + entities: + - uid: 8259 + components: + - desc: A figure of a well known titan, and perhaps an old friend. + name: bt-7274 figurine + type: MetaData + - pos: -17.266478,-52.27695 + parent: 1 + type: Transform +- proto: ToyIan + entities: + - uid: 12483 + components: + - pos: -1.0943661,19.21257 + parent: 1 + type: Transform +- proto: ToySpawner + entities: + - uid: 7809 + components: + - pos: -1.5,-28.5 + parent: 1 + type: Transform +- proto: TrashBananaPeel + entities: + - uid: 7799 + components: + - pos: -9.558007,-30.972847 + parent: 1 + type: Transform + - uid: 7800 + components: + - pos: -9.354882,-30.879097 + parent: 1 + type: Transform +- proto: TwoWayLever + entities: + - uid: 7429 + components: + - pos: 9.5,-27.5 + parent: 1 + type: Transform + - linkedPorts: + 1734: + - Left: Forward + - Right: Reverse + - Middle: Off + 1733: + - Left: Forward + - Right: Reverse + - Middle: Off + 1732: + - Left: Forward + - Right: Reverse + - Middle: Off + 1731: + - Left: Forward + - Right: Reverse + - Middle: Off + 1730: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource + - uid: 7430 + components: + - pos: 15.5,-27.5 + parent: 1 + type: Transform + - linkedPorts: + 1739: + - Left: Forward + - Right: Reverse + - Middle: Off + 1738: + - Left: Forward + - Right: Reverse + - Middle: Off + 1737: + - Left: Forward + - Right: Reverse + - Middle: Off + 1736: + - Left: Forward + - Right: Reverse + - Middle: Off + 1735: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource + - uid: 7431 + components: + - pos: 9.5,-22.5 + parent: 1 + type: Transform + - linkedPorts: + 1742: + - Left: Forward + - Right: Reverse + - Middle: Off + 1741: + - Left: Forward + - Right: Reverse + - Middle: Off + 1740: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource + - uid: 9199 + components: + - pos: -32.5,23.5 + parent: 1 + type: Transform + - linkedPorts: + 3569: + - Left: Forward + - Right: Reverse + - Middle: Off + 3568: + - Left: Forward + - Right: Reverse + - Middle: Off + 3570: + - Left: Forward + - Right: Reverse + - Middle: Off + 3567: + - Left: Forward + - Right: Reverse + - Middle: Off + 3566: + - Left: Forward + - Right: Reverse + - Middle: Off + 3565: + - Left: Forward + - Right: Reverse + - Middle: Off + 3564: + - Left: Forward + - Right: Reverse + - Middle: Off + 3563: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource +- proto: UnfinishedMachineFrame + entities: + - uid: 1926 + components: + - pos: -26.5,7.5 + parent: 1 + type: Transform + - uid: 1927 + components: + - pos: -26.5,5.5 + parent: 1 + type: Transform +- proto: UniformPrinter + entities: + - uid: 4954 + components: + - pos: -1.5,21.5 + parent: 1 + type: Transform +- proto: UniformShortsRed + entities: + - uid: 8815 + components: + - pos: -43.7042,-16.640553 + parent: 1 + type: Transform + - uid: 8816 + components: + - pos: -43.438576,-16.624928 + parent: 1 + type: Transform +- proto: UniformShortsRedWithTop + entities: + - uid: 8817 + components: + - pos: -43.54795,-16.390553 + parent: 1 + type: Transform + - uid: 8818 + components: + - pos: -43.251076,-16.406178 + parent: 1 + type: Transform +- proto: UprightPianoInstrument + entities: + - uid: 8299 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-17.5 + parent: 1 + type: Transform +- proto: Vaccinator + entities: + - uid: 5688 + components: + - pos: -14.5,21.5 + parent: 1 + type: Transform +- proto: VehicleKeyJanicart + entities: + - uid: 7660 + components: + - flags: InContainer + type: MetaData + - parent: 7659 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: VehicleKeySecway + entities: + - uid: 5321 + components: + - pos: 25.427599,10.5971575 + parent: 1 + type: Transform + - uid: 5322 + components: + - pos: 25.708849,10.6596575 + parent: 1 + type: Transform +- proto: VendingBarDrobe + entities: + - uid: 5952 + components: + - flags: SessionSpecific + type: MetaData + - pos: 5.5,5.5 + parent: 1 + type: Transform +- proto: VendingMachineAtmosDrobe + entities: + - uid: 7093 + components: + - flags: SessionSpecific + type: MetaData + - pos: 31.5,-18.5 + parent: 1 + type: Transform +- proto: VendingMachineBooze + entities: + - uid: 5949 + components: + - flags: SessionSpecific + type: MetaData + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 8293 + components: + - flags: SessionSpecific + type: MetaData + - pos: -27.5,-12.5 + parent: 1 + type: Transform +- proto: VendingMachineCargoDrobe + entities: + - uid: 1712 + components: + - flags: SessionSpecific + type: MetaData + - pos: 11.5,-23.5 + parent: 1 + type: Transform +- proto: VendingMachineCart + entities: + - uid: 4953 + components: + - flags: SessionSpecific + type: MetaData + - pos: -2.5,21.5 + parent: 1 + type: Transform +- proto: VendingMachineChapel + entities: + - uid: 3478 + components: + - flags: SessionSpecific + type: MetaData + - pos: -31.5,16.5 + parent: 1 + type: Transform +- proto: VendingMachineChefDrobe + entities: + - uid: 5961 + components: + - flags: SessionSpecific + type: MetaData + - pos: 5.5,0.5 + parent: 1 + type: Transform +- proto: VendingMachineChefvend + entities: + - uid: 5962 + components: + - flags: SessionSpecific + type: MetaData + - pos: 1.5,3.5 + parent: 1 + type: Transform +- proto: VendingMachineChemDrobe + entities: + - uid: 5611 + components: + - flags: SessionSpecific + type: MetaData + - pos: -13.5,16.5 + parent: 1 + type: Transform +- proto: VendingMachineChemicals + entities: + - uid: 5617 + components: + - flags: SessionSpecific + type: MetaData + - pos: -10.5,13.5 + parent: 1 + type: Transform +- proto: VendingMachineCigs + entities: + - uid: 4048 + components: + - flags: SessionSpecific + type: MetaData + - pos: -11.5,26.5 + parent: 1 + type: Transform + - uid: 7533 + components: + - flags: SessionSpecific + type: MetaData + - pos: -33.5,0.5 + parent: 1 + type: Transform + - uid: 7539 + components: + - flags: SessionSpecific + type: MetaData + - pos: 5.5,13.5 + parent: 1 + type: Transform +- proto: VendingMachineClothing + entities: + - uid: 7697 + components: + - flags: SessionSpecific + type: MetaData + - pos: -7.5,-24.5 + parent: 1 + type: Transform +- proto: VendingMachineDetDrobe + entities: + - uid: 5359 + components: + - flags: SessionSpecific + type: MetaData + - pos: 28.5,6.5 + parent: 1 + type: Transform +- proto: VendingMachineDinnerware + entities: + - uid: 5964 + components: + - flags: SessionSpecific + type: MetaData + - pos: 2.5,3.5 + parent: 1 + type: Transform +- proto: VendingMachineEngiDrobe + entities: + - uid: 7184 + components: + - flags: SessionSpecific + type: MetaData + - pos: 23.5,-3.5 + parent: 1 + type: Transform +- proto: VendingMachineEngivend + entities: + - uid: 6556 + components: + - flags: SessionSpecific + type: MetaData + - pos: 16.5,-3.5 + parent: 1 + type: Transform +- proto: VendingMachineGames + entities: + - uid: 5596 + components: + - flags: SessionSpecific + type: MetaData + - pos: -36.5,-7.5 + parent: 1 + type: Transform +- proto: VendingMachineHydrobe + entities: + - uid: 6011 + components: + - flags: SessionSpecific + type: MetaData + - pos: 5.5,-5.5 + parent: 1 + type: Transform +- proto: VendingMachineJaniDrobe + entities: + - uid: 7658 + components: + - flags: SessionSpecific + type: MetaData + - pos: 13.5,-2.5 + parent: 1 + type: Transform +- proto: VendingMachineLawDrobe + entities: + - uid: 5334 + components: + - flags: SessionSpecific + type: MetaData + - pos: 33.5,8.5 + parent: 1 + type: Transform +- proto: VendingMachineMedical + entities: + - uid: 1911 + components: + - flags: SessionSpecific + type: MetaData + - pos: -20.5,11.5 + parent: 1 + type: Transform + - uid: 5344 + components: + - flags: SessionSpecific + type: MetaData + - pos: 20.5,7.5 + parent: 1 + type: Transform +- proto: VendingMachineMediDrobe + entities: + - uid: 1891 + components: + - flags: SessionSpecific + type: MetaData + - pos: -12.5,5.5 + parent: 1 + type: Transform +- proto: VendingMachineNutri + entities: + - uid: 6010 + components: + - flags: SessionSpecific + type: MetaData + - pos: 1.5,-5.5 + parent: 1 + type: Transform +- proto: VendingMachineRoboDrobe + entities: + - uid: 660 + components: + - flags: SessionSpecific + type: MetaData + - pos: -12.5,-15.5 + parent: 1 + type: Transform +- proto: VendingMachineRobotics + entities: + - uid: 654 + components: + - flags: SessionSpecific + type: MetaData + - pos: -4.5,-15.5 + parent: 1 + type: Transform +- proto: VendingMachineSalvage + entities: + - uid: 7291 + components: + - flags: SessionSpecific + type: MetaData + - pos: 18.5,-20.5 + parent: 1 + type: Transform +- proto: VendingMachineSciDrobe + entities: + - uid: 3820 + components: + - flags: SessionSpecific + type: MetaData + - pos: -14.5,-0.5 + parent: 1 + type: Transform +- proto: VendingMachineSec + entities: + - uid: 759 + components: + - flags: SessionSpecific + type: MetaData + - pos: 23.5,15.5 + parent: 1 + type: Transform +- proto: VendingMachineSecDrobe + entities: + - uid: 5335 + components: + - flags: SessionSpecific + type: MetaData + - pos: 33.5,9.5 + parent: 1 + type: Transform +- proto: VendingMachineSeeds + entities: + - uid: 6007 + components: + - flags: SessionSpecific + type: MetaData + - pos: -0.5,-5.5 + parent: 1 + type: Transform +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 4949 + components: + - flags: SessionSpecific + type: MetaData + - pos: 32.5,28.5 + parent: 1 + type: Transform +- proto: VendingMachineSovietSoda + entities: + - uid: 9246 + components: + - flags: SessionSpecific + type: MetaData + - pos: 27.5,32.5 + parent: 1 + type: Transform +- proto: VendingMachineTankDispenserEngineering + entities: + - uid: 6994 + components: + - flags: SessionSpecific + type: MetaData + - pos: 34.5,-4.5 + parent: 1 + type: Transform +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 4923 + components: + - flags: SessionSpecific + type: MetaData + - pos: 42.5,21.5 + parent: 1 + type: Transform + - uid: 6767 + components: + - flags: SessionSpecific + type: MetaData + - pos: 21.5,-8.5 + parent: 1 + type: Transform + - uid: 7292 + components: + - flags: SessionSpecific + type: MetaData + - pos: 19.5,-20.5 + parent: 1 + type: Transform +- proto: VendingMachineTheater + entities: + - uid: 7699 + components: + - flags: SessionSpecific + type: MetaData + - pos: -8.5,-24.5 + parent: 1 + type: Transform +- proto: VendingMachineVendomat + entities: + - uid: 7695 + components: + - flags: SessionSpecific + type: MetaData + - pos: -1.5,-22.5 + parent: 1 + type: Transform + - uid: 9519 + components: + - flags: SessionSpecific + type: MetaData + - pos: -1.5,-31.5 + parent: 1 + type: Transform +- proto: VendingMachineViroDrobe + entities: + - uid: 5691 + components: + - flags: SessionSpecific + type: MetaData + - pos: -17.5,21.5 + parent: 1 + type: Transform +- proto: VendingMachineWallMedical + entities: + - uid: 1912 + components: + - flags: SessionSpecific + type: MetaData + - rot: 1.5707963267948966 rad + pos: -21.5,15.5 + parent: 1 + type: Transform +- proto: VendingMachineYouTool + entities: + - uid: 6779 + components: + - flags: SessionSpecific + type: MetaData + - pos: 15.5,-3.5 + parent: 1 + type: Transform + - uid: 7696 + components: + - flags: SessionSpecific + type: MetaData + - pos: -1.5,-21.5 + parent: 1 + type: Transform +- proto: WallReinforced + entities: + - uid: 106 + components: + - pos: 2.5,20.5 + parent: 1 + type: Transform + - uid: 107 + components: + - pos: 2.5,19.5 + parent: 1 + type: Transform + - uid: 111 + components: + - pos: 2.5,18.5 + parent: 1 + type: Transform + - uid: 112 + components: + - pos: 6.5,17.5 + parent: 1 + type: Transform + - uid: 117 + components: + - pos: 2.5,17.5 + parent: 1 + type: Transform + - uid: 118 + components: + - pos: 6.5,18.5 + parent: 1 + type: Transform + - uid: 119 + components: + - pos: 6.5,19.5 + parent: 1 + type: Transform + - uid: 120 + components: + - pos: 6.5,20.5 + parent: 1 + type: Transform + - uid: 122 + components: + - pos: -5.5,22.5 + parent: 1 + type: Transform + - uid: 123 + components: + - pos: 2.5,22.5 + parent: 1 + type: Transform + - uid: 124 + components: + - pos: 1.5,22.5 + parent: 1 + type: Transform + - uid: 125 + components: + - pos: 0.5,22.5 + parent: 1 + type: Transform + - uid: 126 + components: + - pos: -0.5,22.5 + parent: 1 + type: Transform + - uid: 127 + components: + - pos: -1.5,22.5 + parent: 1 + type: Transform + - uid: 128 + components: + - pos: -2.5,22.5 + parent: 1 + type: Transform + - uid: 129 + components: + - pos: -3.5,22.5 + parent: 1 + type: Transform + - uid: 130 + components: + - pos: -3.5,21.5 + parent: 1 + type: Transform + - uid: 131 + components: + - pos: -4.5,22.5 + parent: 1 + type: Transform + - uid: 132 + components: + - pos: -3.5,19.5 + parent: 1 + type: Transform + - uid: 133 + components: + - pos: -3.5,18.5 + parent: 1 + type: Transform + - uid: 142 + components: + - pos: -6.5,22.5 + parent: 1 + type: Transform + - uid: 143 + components: + - pos: -6.5,21.5 + parent: 1 + type: Transform + - uid: 144 + components: + - pos: -6.5,20.5 + parent: 1 + type: Transform + - uid: 145 + components: + - pos: -6.5,19.5 + parent: 1 + type: Transform + - uid: 146 + components: + - pos: -6.5,18.5 + parent: 1 + type: Transform + - uid: 147 + components: + - pos: -5.5,18.5 + parent: 1 + type: Transform + - uid: 148 + components: + - pos: -4.5,18.5 + parent: 1 + type: Transform + - uid: 152 + components: + - pos: -7.5,15.5 + parent: 1 + type: Transform + - uid: 153 + components: + - pos: -8.5,15.5 + parent: 1 + type: Transform + - uid: 154 + components: + - pos: -9.5,15.5 + parent: 1 + type: Transform + - uid: 155 + components: + - pos: -9.5,16.5 + parent: 1 + type: Transform + - uid: 156 + components: + - pos: -9.5,17.5 + parent: 1 + type: Transform + - uid: 160 + components: + - pos: -10.5,12.5 + parent: 1 + type: Transform + - uid: 162 + components: + - pos: -7.5,12.5 + parent: 1 + type: Transform + - uid: 168 + components: + - pos: -14.5,12.5 + parent: 1 + type: Transform + - uid: 180 + components: + - pos: -10.5,17.5 + parent: 1 + type: Transform + - uid: 182 + components: + - pos: -11.5,17.5 + parent: 1 + type: Transform + - uid: 183 + components: + - pos: -12.5,17.5 + parent: 1 + type: Transform + - uid: 184 + components: + - pos: -13.5,17.5 + parent: 1 + type: Transform + - uid: 185 + components: + - pos: -14.5,17.5 + parent: 1 + type: Transform + - uid: 189 + components: + - pos: -14.5,13.5 + parent: 1 + type: Transform + - uid: 190 + components: + - pos: -17.5,16.5 + parent: 1 + type: Transform + - uid: 191 + components: + - pos: -18.5,17.5 + parent: 1 + type: Transform + - uid: 193 + components: + - pos: -17.5,17.5 + parent: 1 + type: Transform + - uid: 194 + components: + - pos: -19.5,17.5 + parent: 1 + type: Transform + - uid: 195 + components: + - pos: -20.5,17.5 + parent: 1 + type: Transform + - uid: 198 + components: + - pos: -21.5,17.5 + parent: 1 + type: Transform + - uid: 199 + components: + - pos: -21.5,16.5 + parent: 1 + type: Transform + - uid: 200 + components: + - pos: -21.5,15.5 + parent: 1 + type: Transform + - uid: 201 + components: + - pos: -21.5,14.5 + parent: 1 + type: Transform + - uid: 202 + components: + - pos: -21.5,13.5 + parent: 1 + type: Transform + - uid: 203 + components: + - pos: -21.5,12.5 + parent: 1 + type: Transform + - uid: 204 + components: + - pos: -20.5,12.5 + parent: 1 + type: Transform + - uid: 205 + components: + - pos: -19.5,12.5 + parent: 1 + type: Transform + - uid: 206 + components: + - pos: -18.5,12.5 + parent: 1 + type: Transform + - uid: 207 + components: + - pos: -17.5,12.5 + parent: 1 + type: Transform + - uid: 208 + components: + - pos: -17.5,13.5 + parent: 1 + type: Transform + - uid: 225 + components: + - pos: -22.5,5.5 + parent: 1 + type: Transform + - uid: 226 + components: + - pos: -22.5,7.5 + parent: 1 + type: Transform + - uid: 230 + components: + - rot: 3.141592653589793 rad + pos: -22.5,4.5 + parent: 1 + type: Transform + - uid: 254 + components: + - pos: -22.5,6.5 + parent: 1 + type: Transform + - uid: 261 + components: + - pos: -27.5,5.5 + parent: 1 + type: Transform + - uid: 262 + components: + - pos: -27.5,4.5 + parent: 1 + type: Transform + - uid: 267 + components: + - pos: -27.5,7.5 + parent: 1 + type: Transform + - uid: 268 + components: + - pos: -27.5,6.5 + parent: 1 + type: Transform + - uid: 269 + components: + - pos: -22.5,8.5 + parent: 1 + type: Transform + - uid: 270 + components: + - pos: -27.5,8.5 + parent: 1 + type: Transform + - uid: 273 + components: + - pos: -23.5,4.5 + parent: 1 + type: Transform + - uid: 274 + components: + - pos: -24.5,4.5 + parent: 1 + type: Transform + - uid: 275 + components: + - pos: -25.5,4.5 + parent: 1 + type: Transform + - uid: 276 + components: + - pos: -26.5,4.5 + parent: 1 + type: Transform + - uid: 314 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,25.5 + parent: 1 + type: Transform + - uid: 317 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,24.5 + parent: 1 + type: Transform + - uid: 318 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,23.5 + parent: 1 + type: Transform + - uid: 319 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,26.5 + parent: 1 + type: Transform + - uid: 320 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,26.5 + parent: 1 + type: Transform + - uid: 321 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,25.5 + parent: 1 + type: Transform + - uid: 322 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,24.5 + parent: 1 + type: Transform + - uid: 323 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,23.5 + parent: 1 + type: Transform + - uid: 324 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,26.5 + parent: 1 + type: Transform + - uid: 325 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,26.5 + parent: 1 + type: Transform + - uid: 326 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,26.5 + parent: 1 + type: Transform + - uid: 327 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,26.5 + parent: 1 + type: Transform + - uid: 329 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,24.5 + parent: 1 + type: Transform + - uid: 330 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,23.5 + parent: 1 + type: Transform + - uid: 331 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,32.5 + parent: 1 + type: Transform + - uid: 335 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,32.5 + parent: 1 + type: Transform + - uid: 336 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,32.5 + parent: 1 + type: Transform + - uid: 337 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,31.5 + parent: 1 + type: Transform + - uid: 338 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,30.5 + parent: 1 + type: Transform + - uid: 339 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,29.5 + parent: 1 + type: Transform + - uid: 340 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,28.5 + parent: 1 + type: Transform + - uid: 341 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,27.5 + parent: 1 + type: Transform + - uid: 342 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,26.5 + parent: 1 + type: Transform + - uid: 343 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,31.5 + parent: 1 + type: Transform + - uid: 344 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,30.5 + parent: 1 + type: Transform + - uid: 345 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,29.5 + parent: 1 + type: Transform + - uid: 346 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,28.5 + parent: 1 + type: Transform + - uid: 347 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,27.5 + parent: 1 + type: Transform + - uid: 348 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,26.5 + parent: 1 + type: Transform + - uid: 349 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,26.5 + parent: 1 + type: Transform + - uid: 350 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,26.5 + parent: 1 + type: Transform + - uid: 351 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,26.5 + parent: 1 + type: Transform + - uid: 352 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,26.5 + parent: 1 + type: Transform + - uid: 353 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,27.5 + parent: 1 + type: Transform + - uid: 354 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,29.5 + parent: 1 + type: Transform + - uid: 355 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,30.5 + parent: 1 + type: Transform + - uid: 356 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,31.5 + parent: 1 + type: Transform + - uid: 357 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,21.5 + parent: 1 + type: Transform + - uid: 358 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,22.5 + parent: 1 + type: Transform + - uid: 359 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,23.5 + parent: 1 + type: Transform + - uid: 360 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,29.5 + parent: 1 + type: Transform + - uid: 361 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,25.5 + parent: 1 + type: Transform + - uid: 378 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,32.5 + parent: 1 + type: Transform + - uid: 387 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,25.5 + parent: 1 + type: Transform + - uid: 388 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,25.5 + parent: 1 + type: Transform + - uid: 389 + components: + - pos: -18.5,30.5 + parent: 1 + type: Transform + - uid: 390 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,25.5 + parent: 1 + type: Transform + - uid: 391 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,25.5 + parent: 1 + type: Transform + - uid: 392 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,25.5 + parent: 1 + type: Transform + - uid: 393 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,26.5 + parent: 1 + type: Transform + - uid: 394 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,27.5 + parent: 1 + type: Transform + - uid: 395 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,28.5 + parent: 1 + type: Transform + - uid: 396 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,29.5 + parent: 1 + type: Transform + - uid: 397 + components: + - pos: -15.5,31.5 + parent: 1 + type: Transform + - uid: 398 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,31.5 + parent: 1 + type: Transform + - uid: 399 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,32.5 + parent: 1 + type: Transform + - uid: 402 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,16.5 + parent: 1 + type: Transform + - uid: 410 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,29.5 + parent: 1 + type: Transform + - uid: 411 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,29.5 + parent: 1 + type: Transform + - uid: 412 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,32.5 + parent: 1 + type: Transform + - uid: 413 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,32.5 + parent: 1 + type: Transform + - uid: 414 + components: + - pos: 9.5,21.5 + parent: 1 + type: Transform + - uid: 415 + components: + - pos: -16.5,31.5 + parent: 1 + type: Transform + - uid: 428 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,16.5 + parent: 1 + type: Transform + - uid: 429 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,16.5 + parent: 1 + type: Transform + - uid: 432 + components: + - pos: -16.5,29.5 + parent: 1 + type: Transform + - uid: 433 + components: + - pos: -8.5,-19.5 + parent: 1 + type: Transform + - uid: 434 + components: + - pos: -16.5,32.5 + parent: 1 + type: Transform + - uid: 439 + components: + - pos: 39.5,20.5 + parent: 1 + type: Transform + - uid: 440 + components: + - pos: -8.5,-21.5 + parent: 1 + type: Transform + - uid: 441 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,19.5 + parent: 1 + type: Transform + - uid: 442 + components: + - pos: 40.5,20.5 + parent: 1 + type: Transform + - uid: 460 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-6.5 + parent: 1 + type: Transform + - uid: 503 + components: + - rot: 3.141592653589793 rad + pos: -29.5,0.5 + parent: 1 + type: Transform + - uid: 520 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-8.5 + parent: 1 + type: Transform + - uid: 525 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-8.5 + parent: 1 + type: Transform + - uid: 526 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-1.5 + parent: 1 + type: Transform + - uid: 527 + components: + - rot: 3.141592653589793 rad + pos: -24.5,0.5 + parent: 1 + type: Transform + - uid: 528 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-8.5 + parent: 1 + type: Transform + - uid: 529 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-0.5 + parent: 1 + type: Transform + - uid: 530 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-2.5 + parent: 1 + type: Transform + - uid: 531 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-7.5 + parent: 1 + type: Transform + - uid: 534 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-8.5 + parent: 1 + type: Transform + - uid: 535 + components: + - rot: 3.141592653589793 rad + pos: -31.5,-8.5 + parent: 1 + type: Transform + - uid: 536 + components: + - rot: 3.141592653589793 rad + pos: -27.5,0.5 + parent: 1 + type: Transform + - uid: 537 + components: + - rot: 3.141592653589793 rad + pos: -28.5,-8.5 + parent: 1 + type: Transform + - uid: 538 + components: + - rot: 3.141592653589793 rad + pos: -28.5,0.5 + parent: 1 + type: Transform + - uid: 540 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-3.5 + parent: 1 + type: Transform + - uid: 541 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-4.5 + parent: 1 + type: Transform + - uid: 542 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-4.5 + parent: 1 + type: Transform + - uid: 543 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-3.5 + parent: 1 + type: Transform + - uid: 544 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-0.5 + parent: 1 + type: Transform + - uid: 547 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-4.5 + parent: 1 + type: Transform + - uid: 548 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-4.5 + parent: 1 + type: Transform + - uid: 549 + components: + - rot: 3.141592653589793 rad + pos: -22.5,0.5 + parent: 1 + type: Transform + - uid: 550 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-8.5 + parent: 1 + type: Transform + - uid: 551 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-5.5 + parent: 1 + type: Transform + - uid: 552 + components: + - rot: 3.141592653589793 rad + pos: -26.5,0.5 + parent: 1 + type: Transform + - uid: 554 + components: + - rot: 3.141592653589793 rad + pos: -31.5,-3.5 + parent: 1 + type: Transform + - uid: 555 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-5.5 + parent: 1 + type: Transform + - uid: 556 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-3.5 + parent: 1 + type: Transform + - uid: 560 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-4.5 + parent: 1 + type: Transform + - uid: 561 + components: + - rot: 3.141592653589793 rad + pos: -25.5,0.5 + parent: 1 + type: Transform + - uid: 562 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-3.5 + parent: 1 + type: Transform + - uid: 563 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-7.5 + parent: 1 + type: Transform + - uid: 564 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-8.5 + parent: 1 + type: Transform + - uid: 565 + components: + - rot: 3.141592653589793 rad + pos: -23.5,0.5 + parent: 1 + type: Transform + - uid: 567 + components: + - rot: 3.141592653589793 rad + pos: -19.5,0.5 + parent: 1 + type: Transform + - uid: 568 + components: + - rot: 3.141592653589793 rad + pos: -20.5,0.5 + parent: 1 + type: Transform + - uid: 569 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-4.5 + parent: 1 + type: Transform + - uid: 570 + components: + - rot: 3.141592653589793 rad + pos: -21.5,0.5 + parent: 1 + type: Transform + - uid: 571 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-7.5 + parent: 1 + type: Transform + - uid: 572 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-7.5 + parent: 1 + type: Transform + - uid: 573 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-7.5 + parent: 1 + type: Transform + - uid: 574 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-7.5 + parent: 1 + type: Transform + - uid: 575 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-7.5 + parent: 1 + type: Transform + - uid: 577 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-7.5 + parent: 1 + type: Transform + - uid: 587 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-11.5 + parent: 1 + type: Transform + - uid: 588 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-8.5 + parent: 1 + type: Transform + - uid: 590 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-10.5 + parent: 1 + type: Transform + - uid: 591 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-11.5 + parent: 1 + type: Transform + - uid: 592 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-14.5 + parent: 1 + type: Transform + - uid: 597 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-12.5 + parent: 1 + type: Transform + - uid: 599 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-15.5 + parent: 1 + type: Transform + - uid: 603 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-15.5 + parent: 1 + type: Transform + - uid: 612 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-8.5 + parent: 1 + type: Transform + - uid: 613 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-9.5 + parent: 1 + type: Transform + - uid: 614 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-10.5 + parent: 1 + type: Transform + - uid: 615 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-15.5 + parent: 1 + type: Transform + - uid: 616 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-16.5 + parent: 1 + type: Transform + - uid: 617 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-16.5 + parent: 1 + type: Transform + - uid: 618 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-16.5 + parent: 1 + type: Transform + - uid: 625 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-4.5 + parent: 1 + type: Transform + - uid: 626 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-0.5 + parent: 1 + type: Transform + - uid: 627 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-1.5 + parent: 1 + type: Transform + - uid: 628 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-2.5 + parent: 1 + type: Transform + - uid: 629 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-3.5 + parent: 1 + type: Transform + - uid: 630 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-4.5 + parent: 1 + type: Transform + - uid: 631 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-4.5 + parent: 1 + type: Transform + - uid: 644 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,16.5 + parent: 1 + type: Transform + - uid: 670 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,11.5 + parent: 1 + type: Transform + - uid: 672 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,16.5 + parent: 1 + type: Transform + - uid: 673 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,11.5 + parent: 1 + type: Transform + - uid: 676 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,16.5 + parent: 1 + type: Transform + - uid: 677 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,16.5 + parent: 1 + type: Transform + - uid: 679 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,11.5 + parent: 1 + type: Transform + - uid: 680 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,11.5 + parent: 1 + type: Transform + - uid: 681 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,11.5 + parent: 1 + type: Transform + - uid: 682 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,12.5 + parent: 1 + type: Transform + - uid: 683 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,13.5 + parent: 1 + type: Transform + - uid: 684 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,14.5 + parent: 1 + type: Transform + - uid: 685 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,15.5 + parent: 1 + type: Transform + - uid: 686 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,16.5 + parent: 1 + type: Transform + - uid: 687 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,7.5 + parent: 1 + type: Transform + - uid: 688 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,6.5 + parent: 1 + type: Transform + - uid: 689 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,5.5 + parent: 1 + type: Transform + - uid: 690 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,4.5 + parent: 1 + type: Transform + - uid: 691 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,7.5 + parent: 1 + type: Transform + - uid: 692 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,6.5 + parent: 1 + type: Transform + - uid: 693 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,5.5 + parent: 1 + type: Transform + - uid: 694 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,4.5 + parent: 1 + type: Transform + - uid: 695 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,7.5 + parent: 1 + type: Transform + - uid: 696 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,6.5 + parent: 1 + type: Transform + - uid: 697 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,5.5 + parent: 1 + type: Transform + - uid: 698 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,4.5 + parent: 1 + type: Transform + - uid: 699 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,7.5 + parent: 1 + type: Transform + - uid: 700 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,6.5 + parent: 1 + type: Transform + - uid: 701 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,5.5 + parent: 1 + type: Transform + - uid: 702 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,4.5 + parent: 1 + type: Transform + - uid: 729 + components: + - rot: 3.141592653589793 rad + pos: 24.5,7.5 + parent: 1 + type: Transform + - uid: 730 + components: + - rot: 3.141592653589793 rad + pos: 24.5,6.5 + parent: 1 + type: Transform + - uid: 731 + components: + - rot: 3.141592653589793 rad + pos: 24.5,5.5 + parent: 1 + type: Transform + - uid: 732 + components: + - rot: 3.141592653589793 rad + pos: 24.5,4.5 + parent: 1 + type: Transform + - uid: 733 + components: + - rot: 3.141592653589793 rad + pos: 23.5,4.5 + parent: 1 + type: Transform + - uid: 735 + components: + - rot: 3.141592653589793 rad + pos: 21.5,4.5 + parent: 1 + type: Transform + - uid: 736 + components: + - rot: 3.141592653589793 rad + pos: 20.5,4.5 + parent: 1 + type: Transform + - uid: 748 + components: + - rot: 3.141592653589793 rad + pos: 18.5,16.5 + parent: 1 + type: Transform + - uid: 749 + components: + - rot: 3.141592653589793 rad + pos: 19.5,16.5 + parent: 1 + type: Transform + - uid: 750 + components: + - rot: 3.141592653589793 rad + pos: 20.5,16.5 + parent: 1 + type: Transform + - uid: 751 + components: + - rot: 3.141592653589793 rad + pos: 21.5,16.5 + parent: 1 + type: Transform + - uid: 752 + components: + - rot: 3.141592653589793 rad + pos: 23.5,16.5 + parent: 1 + type: Transform + - uid: 753 + components: + - pos: 24.5,17.5 + parent: 1 + type: Transform + - uid: 754 + components: + - rot: 3.141592653589793 rad + pos: 24.5,15.5 + parent: 1 + type: Transform + - uid: 755 + components: + - rot: 3.141592653589793 rad + pos: 24.5,14.5 + parent: 1 + type: Transform + - uid: 756 + components: + - rot: 3.141592653589793 rad + pos: 24.5,13.5 + parent: 1 + type: Transform + - uid: 757 + components: + - rot: 3.141592653589793 rad + pos: 24.5,12.5 + parent: 1 + type: Transform + - uid: 758 + components: + - rot: 3.141592653589793 rad + pos: 24.5,11.5 + parent: 1 + type: Transform + - uid: 783 + components: + - pos: 25.5,15.5 + parent: 1 + type: Transform + - uid: 787 + components: + - pos: 26.5,15.5 + parent: 1 + type: Transform + - uid: 788 + components: + - pos: 27.5,15.5 + parent: 1 + type: Transform + - uid: 789 + components: + - pos: 28.5,15.5 + parent: 1 + type: Transform + - uid: 790 + components: + - pos: 29.5,15.5 + parent: 1 + type: Transform + - uid: 791 + components: + - pos: 30.5,15.5 + parent: 1 + type: Transform + - uid: 793 + components: + - pos: 30.5,12.5 + parent: 1 + type: Transform + - uid: 795 + components: + - pos: 30.5,11.5 + parent: 1 + type: Transform + - uid: 796 + components: + - pos: 29.5,11.5 + parent: 1 + type: Transform + - uid: 797 + components: + - pos: 28.5,11.5 + parent: 1 + type: Transform + - uid: 799 + components: + - pos: 25.5,11.5 + parent: 1 + type: Transform + - uid: 800 + components: + - pos: 25.5,7.5 + parent: 1 + type: Transform + - uid: 801 + components: + - pos: 27.5,7.5 + parent: 1 + type: Transform + - uid: 802 + components: + - pos: 28.5,7.5 + parent: 1 + type: Transform + - uid: 803 + components: + - pos: 29.5,7.5 + parent: 1 + type: Transform + - uid: 804 + components: + - pos: 29.5,6.5 + parent: 1 + type: Transform + - uid: 805 + components: + - pos: 29.5,5.5 + parent: 1 + type: Transform + - uid: 806 + components: + - pos: 29.5,4.5 + parent: 1 + type: Transform + - uid: 807 + components: + - pos: 28.5,4.5 + parent: 1 + type: Transform + - uid: 808 + components: + - pos: 27.5,4.5 + parent: 1 + type: Transform + - uid: 809 + components: + - pos: 26.5,4.5 + parent: 1 + type: Transform + - uid: 810 + components: + - pos: 25.5,4.5 + parent: 1 + type: Transform + - uid: 811 + components: + - pos: 30.5,7.5 + parent: 1 + type: Transform + - uid: 812 + components: + - pos: 31.5,7.5 + parent: 1 + type: Transform + - uid: 814 + components: + - pos: 33.5,7.5 + parent: 1 + type: Transform + - uid: 819 + components: + - pos: 34.5,7.5 + parent: 1 + type: Transform + - uid: 820 + components: + - pos: 34.5,8.5 + parent: 1 + type: Transform + - uid: 821 + components: + - pos: 34.5,9.5 + parent: 1 + type: Transform + - uid: 822 + components: + - pos: 34.5,10.5 + parent: 1 + type: Transform + - uid: 823 + components: + - pos: 35.5,9.5 + parent: 1 + type: Transform + - uid: 824 + components: + - pos: 34.5,12.5 + parent: 1 + type: Transform + - uid: 825 + components: + - pos: 34.5,13.5 + parent: 1 + type: Transform + - uid: 826 + components: + - pos: 34.5,14.5 + parent: 1 + type: Transform + - uid: 827 + components: + - pos: 34.5,15.5 + parent: 1 + type: Transform + - uid: 828 + components: + - pos: 35.5,8.5 + parent: 1 + type: Transform + - uid: 829 + components: + - pos: 36.5,9.5 + parent: 1 + type: Transform + - uid: 830 + components: + - pos: 36.5,8.5 + parent: 1 + type: Transform + - uid: 831 + components: + - pos: 37.5,9.5 + parent: 1 + type: Transform + - uid: 832 + components: + - pos: 37.5,8.5 + parent: 1 + type: Transform + - uid: 833 + components: + - pos: 38.5,8.5 + parent: 1 + type: Transform + - uid: 834 + components: + - pos: 38.5,9.5 + parent: 1 + type: Transform + - uid: 835 + components: + - pos: 40.5,15.5 + parent: 1 + type: Transform + - uid: 836 + components: + - pos: 40.5,14.5 + parent: 1 + type: Transform + - uid: 837 + components: + - pos: 40.5,13.5 + parent: 1 + type: Transform + - uid: 838 + components: + - pos: 40.5,12.5 + parent: 1 + type: Transform + - uid: 839 + components: + - pos: 38.5,14.5 + parent: 1 + type: Transform + - uid: 840 + components: + - pos: 38.5,15.5 + parent: 1 + type: Transform + - uid: 841 + components: + - pos: 39.5,8.5 + parent: 1 + type: Transform + - uid: 842 + components: + - pos: 39.5,9.5 + parent: 1 + type: Transform + - uid: 843 + components: + - pos: 39.5,10.5 + parent: 1 + type: Transform + - uid: 844 + components: + - pos: 39.5,11.5 + parent: 1 + type: Transform + - uid: 845 + components: + - pos: 39.5,12.5 + parent: 1 + type: Transform + - uid: 846 + components: + - pos: 39.5,13.5 + parent: 1 + type: Transform + - uid: 847 + components: + - pos: 39.5,14.5 + parent: 1 + type: Transform + - uid: 848 + components: + - pos: 39.5,15.5 + parent: 1 + type: Transform + - uid: 849 + components: + - pos: 37.5,14.5 + parent: 1 + type: Transform + - uid: 850 + components: + - pos: 37.5,15.5 + parent: 1 + type: Transform + - uid: 851 + components: + - pos: 36.5,14.5 + parent: 1 + type: Transform + - uid: 852 + components: + - pos: 36.5,15.5 + parent: 1 + type: Transform + - uid: 853 + components: + - pos: 35.5,14.5 + parent: 1 + type: Transform + - uid: 854 + components: + - pos: 35.5,15.5 + parent: 1 + type: Transform + - uid: 855 + components: + - pos: 30.5,16.5 + parent: 1 + type: Transform + - uid: 856 + components: + - pos: 30.5,18.5 + parent: 1 + type: Transform + - uid: 857 + components: + - pos: 30.5,19.5 + parent: 1 + type: Transform + - uid: 858 + components: + - pos: 29.5,19.5 + parent: 1 + type: Transform + - uid: 859 + components: + - pos: 28.5,19.5 + parent: 1 + type: Transform + - uid: 860 + components: + - pos: 27.5,19.5 + parent: 1 + type: Transform + - uid: 861 + components: + - pos: 26.5,19.5 + parent: 1 + type: Transform + - uid: 862 + components: + - pos: 26.5,18.5 + parent: 1 + type: Transform + - uid: 863 + components: + - pos: 26.5,17.5 + parent: 1 + type: Transform + - uid: 864 + components: + - pos: 26.5,16.5 + parent: 1 + type: Transform + - uid: 865 + components: + - pos: 34.5,16.5 + parent: 1 + type: Transform + - uid: 866 + components: + - pos: 34.5,17.5 + parent: 1 + type: Transform + - uid: 867 + components: + - pos: 34.5,18.5 + parent: 1 + type: Transform + - uid: 868 + components: + - pos: 34.5,19.5 + parent: 1 + type: Transform + - uid: 870 + components: + - pos: 24.5,16.5 + parent: 1 + type: Transform + - uid: 872 + components: + - pos: 40.5,11.5 + parent: 1 + type: Transform + - uid: 873 + components: + - pos: 40.5,10.5 + parent: 1 + type: Transform + - uid: 874 + components: + - pos: 40.5,9.5 + parent: 1 + type: Transform + - uid: 875 + components: + - pos: 40.5,8.5 + parent: 1 + type: Transform + - uid: 876 + components: + - pos: 35.5,10.5 + parent: 1 + type: Transform + - uid: 877 + components: + - pos: 35.5,12.5 + parent: 1 + type: Transform + - uid: 878 + components: + - pos: 35.5,13.5 + parent: 1 + type: Transform + - uid: 887 + components: + - pos: 31.5,19.5 + parent: 1 + type: Transform + - uid: 888 + components: + - pos: 34.5,22.5 + parent: 1 + type: Transform + - uid: 889 + components: + - pos: 35.5,19.5 + parent: 1 + type: Transform + - uid: 890 + components: + - pos: 30.5,22.5 + parent: 1 + type: Transform + - uid: 891 + components: + - pos: 30.5,23.5 + parent: 1 + type: Transform + - uid: 892 + components: + - pos: 29.5,22.5 + parent: 1 + type: Transform + - uid: 893 + components: + - pos: 29.5,23.5 + parent: 1 + type: Transform + - uid: 894 + components: + - pos: 28.5,22.5 + parent: 1 + type: Transform + - uid: 895 + components: + - pos: 28.5,23.5 + parent: 1 + type: Transform + - uid: 896 + components: + - pos: 27.5,22.5 + parent: 1 + type: Transform + - uid: 897 + components: + - pos: 27.5,23.5 + parent: 1 + type: Transform + - uid: 898 + components: + - pos: 26.5,22.5 + parent: 1 + type: Transform + - uid: 899 + components: + - pos: 26.5,23.5 + parent: 1 + type: Transform + - uid: 900 + components: + - pos: 25.5,22.5 + parent: 1 + type: Transform + - uid: 901 + components: + - pos: 25.5,23.5 + parent: 1 + type: Transform + - uid: 902 + components: + - pos: 24.5,22.5 + parent: 1 + type: Transform + - uid: 903 + components: + - pos: 24.5,23.5 + parent: 1 + type: Transform + - uid: 904 + components: + - pos: 23.5,22.5 + parent: 1 + type: Transform + - uid: 905 + components: + - pos: 23.5,23.5 + parent: 1 + type: Transform + - uid: 906 + components: + - pos: 23.5,24.5 + parent: 1 + type: Transform + - uid: 907 + components: + - pos: 23.5,25.5 + parent: 1 + type: Transform + - uid: 908 + components: + - pos: 23.5,26.5 + parent: 1 + type: Transform + - uid: 909 + components: + - pos: 23.5,27.5 + parent: 1 + type: Transform + - uid: 910 + components: + - pos: 23.5,28.5 + parent: 1 + type: Transform + - uid: 911 + components: + - pos: 23.5,29.5 + parent: 1 + type: Transform + - uid: 912 + components: + - pos: 22.5,22.5 + parent: 1 + type: Transform + - uid: 913 + components: + - pos: 22.5,23.5 + parent: 1 + type: Transform + - uid: 914 + components: + - pos: 22.5,24.5 + parent: 1 + type: Transform + - uid: 915 + components: + - pos: 22.5,25.5 + parent: 1 + type: Transform + - uid: 916 + components: + - pos: 22.5,26.5 + parent: 1 + type: Transform + - uid: 917 + components: + - pos: 22.5,27.5 + parent: 1 + type: Transform + - uid: 918 + components: + - pos: 22.5,28.5 + parent: 1 + type: Transform + - uid: 919 + components: + - pos: 22.5,29.5 + parent: 1 + type: Transform + - uid: 920 + components: + - pos: 24.5,29.5 + parent: 1 + type: Transform + - uid: 921 + components: + - pos: 25.5,29.5 + parent: 1 + type: Transform + - uid: 922 + components: + - pos: 26.5,29.5 + parent: 1 + type: Transform + - uid: 923 + components: + - pos: 27.5,29.5 + parent: 1 + type: Transform + - uid: 924 + components: + - pos: 33.5,29.5 + parent: 1 + type: Transform + - uid: 925 + components: + - pos: 34.5,29.5 + parent: 1 + type: Transform + - uid: 927 + components: + - pos: 34.5,24.5 + parent: 1 + type: Transform + - uid: 928 + components: + - pos: 34.5,25.5 + parent: 1 + type: Transform + - uid: 929 + components: + - pos: 34.5,26.5 + parent: 1 + type: Transform + - uid: 930 + components: + - pos: 34.5,27.5 + parent: 1 + type: Transform + - uid: 931 + components: + - pos: 34.5,28.5 + parent: 1 + type: Transform + - uid: 932 + components: + - pos: 35.5,23.5 + parent: 1 + type: Transform + - uid: 933 + components: + - pos: 35.5,24.5 + parent: 1 + type: Transform + - uid: 934 + components: + - pos: 35.5,25.5 + parent: 1 + type: Transform + - uid: 935 + components: + - pos: 35.5,26.5 + parent: 1 + type: Transform + - uid: 936 + components: + - pos: 35.5,27.5 + parent: 1 + type: Transform + - uid: 937 + components: + - pos: 35.5,28.5 + parent: 1 + type: Transform + - uid: 938 + components: + - pos: 35.5,29.5 + parent: 1 + type: Transform + - uid: 939 + components: + - pos: 35.5,22.5 + parent: 1 + type: Transform + - uid: 940 + components: + - pos: 21.5,19.5 + parent: 1 + type: Transform + - uid: 941 + components: + - pos: 21.5,20.5 + parent: 1 + type: Transform + - uid: 942 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,19.5 + parent: 1 + type: Transform + - uid: 943 + components: + - pos: 24.5,21.5 + parent: 1 + type: Transform + - uid: 944 + components: + - pos: 24.5,20.5 + parent: 1 + type: Transform + - uid: 945 + components: + - pos: 24.5,26.5 + parent: 1 + type: Transform + - uid: 946 + components: + - pos: 25.5,26.5 + parent: 1 + type: Transform + - uid: 947 + components: + - pos: 26.5,26.5 + parent: 1 + type: Transform + - uid: 948 + components: + - pos: 26.5,24.5 + parent: 1 + type: Transform + - uid: 950 + components: + - pos: 24.5,19.5 + parent: 1 + type: Transform + - uid: 951 + components: + - pos: 21.5,21.5 + parent: 1 + type: Transform + - uid: 952 + components: + - pos: 21.5,22.5 + parent: 1 + type: Transform + - uid: 953 + components: + - pos: 35.5,30.5 + parent: 1 + type: Transform + - uid: 954 + components: + - pos: 35.5,31.5 + parent: 1 + type: Transform + - uid: 955 + components: + - pos: 34.5,31.5 + parent: 1 + type: Transform + - uid: 956 + components: + - pos: 33.5,31.5 + parent: 1 + type: Transform + - uid: 957 + components: + - pos: 32.5,31.5 + parent: 1 + type: Transform + - uid: 958 + components: + - pos: 31.5,31.5 + parent: 1 + type: Transform + - uid: 959 + components: + - pos: 30.5,31.5 + parent: 1 + type: Transform + - uid: 961 + components: + - pos: 29.5,31.5 + parent: 1 + type: Transform + - uid: 962 + components: + - pos: 23.5,31.5 + parent: 1 + type: Transform + - uid: 963 + components: + - pos: 22.5,31.5 + parent: 1 + type: Transform + - uid: 964 + components: + - pos: 22.5,30.5 + parent: 1 + type: Transform + - uid: 984 + components: + - pos: 31.5,22.5 + parent: 1 + type: Transform + - uid: 1059 + components: + - pos: 15.5,-15.5 + parent: 1 + type: Transform + - uid: 1061 + components: + - pos: 15.5,-13.5 + parent: 1 + type: Transform + - uid: 1062 + components: + - pos: 15.5,-14.5 + parent: 1 + type: Transform + - uid: 1063 + components: + - pos: 15.5,-16.5 + parent: 1 + type: Transform + - uid: 1064 + components: + - pos: 15.5,-12.5 + parent: 1 + type: Transform + - uid: 1066 + components: + - pos: 16.5,-16.5 + parent: 1 + type: Transform + - uid: 1067 + components: + - pos: 17.5,-16.5 + parent: 1 + type: Transform + - uid: 1068 + components: + - pos: 18.5,-16.5 + parent: 1 + type: Transform + - uid: 1069 + components: + - pos: 19.5,-16.5 + parent: 1 + type: Transform + - uid: 1070 + components: + - pos: 20.5,-16.5 + parent: 1 + type: Transform + - uid: 1071 + components: + - pos: 21.5,-16.5 + parent: 1 + type: Transform + - uid: 1073 + components: + - pos: 21.5,-14.5 + parent: 1 + type: Transform + - uid: 1074 + components: + - pos: 21.5,-13.5 + parent: 1 + type: Transform + - uid: 1075 + components: + - pos: 21.5,-12.5 + parent: 1 + type: Transform + - uid: 1076 + components: + - pos: 17.5,-12.5 + parent: 1 + type: Transform + - uid: 1093 + components: + - pos: 24.5,-2.5 + parent: 1 + type: Transform + - uid: 1094 + components: + - pos: 29.5,-2.5 + parent: 1 + type: Transform + - uid: 1095 + components: + - pos: 30.5,-2.5 + parent: 1 + type: Transform + - uid: 1096 + components: + - pos: 22.5,-16.5 + parent: 1 + type: Transform + - uid: 1098 + components: + - pos: 27.5,-2.5 + parent: 1 + type: Transform + - uid: 1102 + components: + - pos: 27.5,-13.5 + parent: 1 + type: Transform + - uid: 1103 + components: + - pos: 27.5,-14.5 + parent: 1 + type: Transform + - uid: 1104 + components: + - pos: 26.5,-12.5 + parent: 1 + type: Transform + - uid: 1105 + components: + - pos: 27.5,-12.5 + parent: 1 + type: Transform + - uid: 1107 + components: + - pos: 22.5,-12.5 + parent: 1 + type: Transform + - uid: 1108 + components: + - pos: 27.5,-15.5 + parent: 1 + type: Transform + - uid: 1109 + components: + - pos: 27.5,-16.5 + parent: 1 + type: Transform + - uid: 1110 + components: + - pos: 24.5,-12.5 + parent: 1 + type: Transform + - uid: 1111 + components: + - pos: 28.5,-2.5 + parent: 1 + type: Transform + - uid: 1112 + components: + - pos: 24.5,-16.5 + parent: 1 + type: Transform + - uid: 1113 + components: + - pos: 25.5,-2.5 + parent: 1 + type: Transform + - uid: 1114 + components: + - pos: 26.5,-16.5 + parent: 1 + type: Transform + - uid: 1116 + components: + - pos: 26.5,-2.5 + parent: 1 + type: Transform + - uid: 1117 + components: + - pos: 23.5,-16.5 + parent: 1 + type: Transform + - uid: 1177 + components: + - pos: 24.5,-9.5 + parent: 1 + type: Transform + - uid: 1198 + components: + - pos: 30.5,-3.5 + parent: 1 + type: Transform + - uid: 1199 + components: + - pos: 30.5,-4.5 + parent: 1 + type: Transform + - uid: 1200 + components: + - pos: 30.5,-5.5 + parent: 1 + type: Transform + - uid: 1201 + components: + - pos: 30.5,-6.5 + parent: 1 + type: Transform + - uid: 1202 + components: + - pos: 30.5,-7.5 + parent: 1 + type: Transform + - uid: 1203 + components: + - pos: 30.5,-8.5 + parent: 1 + type: Transform + - uid: 1204 + components: + - pos: 30.5,-9.5 + parent: 1 + type: Transform + - uid: 1205 + components: + - pos: 28.5,-12.5 + parent: 1 + type: Transform + - uid: 1206 + components: + - pos: 29.5,-12.5 + parent: 1 + type: Transform + - uid: 1207 + components: + - pos: 30.5,-12.5 + parent: 1 + type: Transform + - uid: 1208 + components: + - pos: 32.5,-9.5 + parent: 1 + type: Transform + - uid: 1209 + components: + - pos: 33.5,-9.5 + parent: 1 + type: Transform + - uid: 1210 + components: + - pos: 33.5,-8.5 + parent: 1 + type: Transform + - uid: 1211 + components: + - pos: 33.5,-7.5 + parent: 1 + type: Transform + - uid: 1212 + components: + - pos: 33.5,-6.5 + parent: 1 + type: Transform + - uid: 1213 + components: + - pos: 33.5,-5.5 + parent: 1 + type: Transform + - uid: 1214 + components: + - pos: 33.5,-4.5 + parent: 1 + type: Transform + - uid: 1215 + components: + - pos: 33.5,-3.5 + parent: 1 + type: Transform + - uid: 1216 + components: + - pos: 33.5,-2.5 + parent: 1 + type: Transform + - uid: 1217 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-1.5 + parent: 1 + type: Transform + - uid: 1218 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-1.5 + parent: 1 + type: Transform + - uid: 1219 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-1.5 + parent: 1 + type: Transform + - uid: 1220 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-1.5 + parent: 1 + type: Transform + - uid: 1223 + components: + - pos: 40.5,-2.5 + parent: 1 + type: Transform + - uid: 1224 + components: + - pos: 32.5,-12.5 + parent: 1 + type: Transform + - uid: 1225 + components: + - pos: 33.5,-12.5 + parent: 1 + type: Transform + - uid: 1226 + components: + - pos: 33.5,-13.5 + parent: 1 + type: Transform + - uid: 1227 + components: + - pos: 33.5,-14.5 + parent: 1 + type: Transform + - uid: 1228 + components: + - pos: 33.5,-15.5 + parent: 1 + type: Transform + - uid: 1229 + components: + - pos: 41.5,-2.5 + parent: 1 + type: Transform + - uid: 1241 + components: + - pos: 38.5,19.5 + parent: 1 + type: Transform + - uid: 1244 + components: + - pos: 42.5,-2.5 + parent: 1 + type: Transform + - uid: 1245 + components: + - pos: 43.5,-2.5 + parent: 1 + type: Transform + - uid: 1246 + components: + - pos: 44.5,-2.5 + parent: 1 + type: Transform + - uid: 1247 + components: + - pos: 45.5,-2.5 + parent: 1 + type: Transform + - uid: 1250 + components: + - pos: 45.5,0.5 + parent: 1 + type: Transform + - uid: 1251 + components: + - pos: 45.5,-0.5 + parent: 1 + type: Transform + - uid: 1252 + components: + - pos: 45.5,-1.5 + parent: 1 + type: Transform + - uid: 1272 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,11.5 + parent: 1 + type: Transform + - uid: 1276 + components: + - pos: 47.5,4.5 + parent: 1 + type: Transform + - uid: 1279 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,13.5 + parent: 1 + type: Transform + - uid: 1282 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,4.5 + parent: 1 + type: Transform + - uid: 1283 + components: + - pos: 47.5,13.5 + parent: 1 + type: Transform + - uid: 1286 + components: + - pos: 47.5,6.5 + parent: 1 + type: Transform + - uid: 1288 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,6.5 + parent: 1 + type: Transform + - uid: 1290 + components: + - pos: 47.5,11.5 + parent: 1 + type: Transform + - uid: 1294 + components: + - pos: 42.5,20.5 + parent: 1 + type: Transform + - uid: 1297 + components: + - pos: 47.5,18.5 + parent: 1 + type: Transform + - uid: 1299 + components: + - pos: 43.5,20.5 + parent: 1 + type: Transform + - uid: 1301 + components: + - pos: 32.5,-15.5 + parent: 1 + type: Transform + - uid: 1302 + components: + - pos: 31.5,-15.5 + parent: 1 + type: Transform + - uid: 1303 + components: + - pos: 30.5,-15.5 + parent: 1 + type: Transform + - uid: 1304 + components: + - pos: 30.5,-16.5 + parent: 1 + type: Transform + - uid: 1306 + components: + - pos: 30.5,-18.5 + parent: 1 + type: Transform + - uid: 1307 + components: + - pos: 30.5,-19.5 + parent: 1 + type: Transform + - uid: 1353 + components: + - pos: 33.5,-19.5 + parent: 1 + type: Transform + - uid: 1360 + components: + - pos: 33.5,-21.5 + parent: 1 + type: Transform + - uid: 1361 + components: + - pos: 33.5,-24.5 + parent: 1 + type: Transform + - uid: 1362 + components: + - pos: 34.5,-24.5 + parent: 1 + type: Transform + - uid: 1364 + components: + - pos: 36.5,-24.5 + parent: 1 + type: Transform + - uid: 1365 + components: + - pos: 37.5,-24.5 + parent: 1 + type: Transform + - uid: 1366 + components: + - pos: 37.5,-21.5 + parent: 1 + type: Transform + - uid: 1380 + components: + - pos: 42.5,-18.5 + parent: 1 + type: Transform + - uid: 1381 + components: + - pos: 43.5,-18.5 + parent: 1 + type: Transform + - uid: 1382 + components: + - pos: 44.5,-18.5 + parent: 1 + type: Transform + - uid: 1383 + components: + - pos: 45.5,-18.5 + parent: 1 + type: Transform + - uid: 1384 + components: + - pos: 46.5,-18.5 + parent: 1 + type: Transform + - uid: 1385 + components: + - pos: 46.5,-17.5 + parent: 1 + type: Transform + - uid: 1386 + components: + - pos: 46.5,-16.5 + parent: 1 + type: Transform + - uid: 1387 + components: + - pos: 46.5,-15.5 + parent: 1 + type: Transform + - uid: 1388 + components: + - pos: 46.5,-14.5 + parent: 1 + type: Transform + - uid: 1389 + components: + - pos: 46.5,-13.5 + parent: 1 + type: Transform + - uid: 1390 + components: + - pos: 46.5,-12.5 + parent: 1 + type: Transform + - uid: 1391 + components: + - pos: 46.5,-11.5 + parent: 1 + type: Transform + - uid: 1392 + components: + - pos: 46.5,-10.5 + parent: 1 + type: Transform + - uid: 1393 + components: + - pos: 46.5,-9.5 + parent: 1 + type: Transform + - uid: 1394 + components: + - pos: 46.5,-8.5 + parent: 1 + type: Transform + - uid: 1395 + components: + - pos: 46.5,-7.5 + parent: 1 + type: Transform + - uid: 1396 + components: + - pos: 46.5,-6.5 + parent: 1 + type: Transform + - uid: 1397 + components: + - pos: 46.5,-5.5 + parent: 1 + type: Transform + - uid: 1398 + components: + - pos: 46.5,-4.5 + parent: 1 + type: Transform + - uid: 1399 + components: + - pos: 45.5,-4.5 + parent: 1 + type: Transform + - uid: 1400 + components: + - pos: 44.5,-4.5 + parent: 1 + type: Transform + - uid: 1401 + components: + - pos: 43.5,-4.5 + parent: 1 + type: Transform + - uid: 1402 + components: + - pos: 42.5,-4.5 + parent: 1 + type: Transform + - uid: 1403 + components: + - pos: 42.5,-6.5 + parent: 1 + type: Transform + - uid: 1404 + components: + - pos: 43.5,-6.5 + parent: 1 + type: Transform + - uid: 1405 + components: + - pos: 44.5,-6.5 + parent: 1 + type: Transform + - uid: 1406 + components: + - pos: 45.5,-6.5 + parent: 1 + type: Transform + - uid: 1407 + components: + - pos: 45.5,-8.5 + parent: 1 + type: Transform + - uid: 1408 + components: + - pos: 44.5,-8.5 + parent: 1 + type: Transform + - uid: 1409 + components: + - pos: 43.5,-8.5 + parent: 1 + type: Transform + - uid: 1410 + components: + - pos: 42.5,-8.5 + parent: 1 + type: Transform + - uid: 1411 + components: + - pos: 42.5,-10.5 + parent: 1 + type: Transform + - uid: 1412 + components: + - pos: 43.5,-10.5 + parent: 1 + type: Transform + - uid: 1413 + components: + - pos: 44.5,-10.5 + parent: 1 + type: Transform + - uid: 1414 + components: + - pos: 45.5,-10.5 + parent: 1 + type: Transform + - uid: 1415 + components: + - pos: 45.5,-12.5 + parent: 1 + type: Transform + - uid: 1416 + components: + - pos: 44.5,-12.5 + parent: 1 + type: Transform + - uid: 1417 + components: + - pos: 43.5,-12.5 + parent: 1 + type: Transform + - uid: 1418 + components: + - pos: 42.5,-12.5 + parent: 1 + type: Transform + - uid: 1419 + components: + - pos: 42.5,-14.5 + parent: 1 + type: Transform + - uid: 1420 + components: + - pos: 43.5,-14.5 + parent: 1 + type: Transform + - uid: 1421 + components: + - pos: 44.5,-14.5 + parent: 1 + type: Transform + - uid: 1422 + components: + - pos: 45.5,-14.5 + parent: 1 + type: Transform + - uid: 1423 + components: + - pos: 45.5,-16.5 + parent: 1 + type: Transform + - uid: 1424 + components: + - pos: 44.5,-16.5 + parent: 1 + type: Transform + - uid: 1425 + components: + - pos: 43.5,-16.5 + parent: 1 + type: Transform + - uid: 1426 + components: + - pos: 42.5,-16.5 + parent: 1 + type: Transform + - uid: 1441 + components: + - pos: 6.5,-13.5 + parent: 1 + type: Transform + - uid: 1442 + components: + - pos: 5.5,-13.5 + parent: 1 + type: Transform + - uid: 1443 + components: + - pos: 4.5,-13.5 + parent: 1 + type: Transform + - uid: 1444 + components: + - pos: 3.5,-13.5 + parent: 1 + type: Transform + - uid: 1445 + components: + - pos: 3.5,-14.5 + parent: 1 + type: Transform + - uid: 1446 + components: + - pos: 3.5,-15.5 + parent: 1 + type: Transform + - uid: 1447 + components: + - pos: 3.5,-16.5 + parent: 1 + type: Transform + - uid: 1448 + components: + - pos: 3.5,-17.5 + parent: 1 + type: Transform + - uid: 1449 + components: + - pos: 7.5,-13.5 + parent: 1 + type: Transform + - uid: 1450 + components: + - pos: 7.5,-14.5 + parent: 1 + type: Transform + - uid: 1451 + components: + - pos: 7.5,-15.5 + parent: 1 + type: Transform + - uid: 1452 + components: + - pos: 7.5,-16.5 + parent: 1 + type: Transform + - uid: 1456 + components: + - pos: 3.5,-18.5 + parent: 1 + type: Transform + - uid: 1457 + components: + - pos: 4.5,-18.5 + parent: 1 + type: Transform + - uid: 1459 + components: + - pos: 6.5,-18.5 + parent: 1 + type: Transform + - uid: 1460 + components: + - pos: 7.5,-18.5 + parent: 1 + type: Transform + - uid: 1477 + components: + - pos: 27.5,-19.5 + parent: 1 + type: Transform + - uid: 1478 + components: + - pos: 26.5,-19.5 + parent: 1 + type: Transform + - uid: 1479 + components: + - pos: 23.5,-20.5 + parent: 1 + type: Transform + - uid: 1480 + components: + - pos: 24.5,-19.5 + parent: 1 + type: Transform + - uid: 1481 + components: + - pos: 23.5,-19.5 + parent: 1 + type: Transform + - uid: 1482 + components: + - pos: 28.5,-19.5 + parent: 1 + type: Transform + - uid: 1483 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-21.5 + parent: 1 + type: Transform + - uid: 1484 + components: + - pos: 23.5,-21.5 + parent: 1 + type: Transform + - uid: 1485 + components: + - pos: 23.5,-22.5 + parent: 1 + type: Transform + - uid: 1486 + components: + - pos: 24.5,-22.5 + parent: 1 + type: Transform + - uid: 1487 + components: + - pos: 25.5,-22.5 + parent: 1 + type: Transform + - uid: 1488 + components: + - pos: 26.5,-22.5 + parent: 1 + type: Transform + - uid: 1489 + components: + - pos: 27.5,-22.5 + parent: 1 + type: Transform + - uid: 1490 + components: + - pos: 27.5,-21.5 + parent: 1 + type: Transform + - uid: 1491 + components: + - pos: 27.5,-20.5 + parent: 1 + type: Transform + - uid: 1506 + components: + - pos: 5.5,-28.5 + parent: 1 + type: Transform + - uid: 1507 + components: + - pos: 4.5,-28.5 + parent: 1 + type: Transform + - uid: 1511 + components: + - pos: 3.5,-28.5 + parent: 1 + type: Transform + - uid: 1516 + components: + - pos: 7.5,-28.5 + parent: 1 + type: Transform + - uid: 1520 + components: + - pos: 6.5,-28.5 + parent: 1 + type: Transform + - uid: 1525 + components: + - pos: 23.5,-25.5 + parent: 1 + type: Transform + - uid: 1526 + components: + - pos: 23.5,-26.5 + parent: 1 + type: Transform + - uid: 1527 + components: + - pos: 23.5,-27.5 + parent: 1 + type: Transform + - uid: 1532 + components: + - pos: 23.5,-28.5 + parent: 1 + type: Transform + - uid: 1533 + components: + - pos: 22.5,-28.5 + parent: 1 + type: Transform + - uid: 1537 + components: + - pos: 18.5,-28.5 + parent: 1 + type: Transform + - uid: 1538 + components: + - pos: 17.5,-28.5 + parent: 1 + type: Transform + - uid: 1539 + components: + - pos: 16.5,-28.5 + parent: 1 + type: Transform + - uid: 1543 + components: + - pos: 9.5,-31.5 + parent: 1 + type: Transform + - uid: 1544 + components: + - pos: 15.5,-31.5 + parent: 1 + type: Transform + - uid: 1545 + components: + - pos: 9.5,-28.5 + parent: 1 + type: Transform + - uid: 1546 + components: + - pos: 15.5,-28.5 + parent: 1 + type: Transform + - uid: 1547 + components: + - pos: 8.5,-28.5 + parent: 1 + type: Transform + - uid: 1560 + components: + - pos: 27.5,-25.5 + parent: 1 + type: Transform + - uid: 1591 + components: + - pos: -6.5,-19.5 + parent: 1 + type: Transform + - uid: 1592 + components: + - pos: -6.5,-20.5 + parent: 1 + type: Transform + - uid: 1593 + components: + - pos: -6.5,-23.5 + parent: 1 + type: Transform + - uid: 1594 + components: + - pos: -6.5,-21.5 + parent: 1 + type: Transform + - uid: 1595 + components: + - pos: -6.5,-22.5 + parent: 1 + type: Transform + - uid: 1597 + components: + - pos: 9.5,20.5 + parent: 1 + type: Transform + - uid: 1601 + components: + - pos: -8.5,-23.5 + parent: 1 + type: Transform + - uid: 1602 + components: + - pos: -7.5,-23.5 + parent: 1 + type: Transform + - uid: 1603 + components: + - pos: -8.5,-20.5 + parent: 1 + type: Transform + - uid: 1605 + components: + - pos: -0.5,-30.5 + parent: 1 + type: Transform + - uid: 1607 + components: + - pos: -5.5,-31.5 + parent: 1 + type: Transform + - uid: 1609 + components: + - pos: -5.5,-33.5 + parent: 1 + type: Transform + - uid: 1610 + components: + - pos: -0.5,-34.5 + parent: 1 + type: Transform + - uid: 1613 + components: + - pos: -0.5,-33.5 + parent: 1 + type: Transform + - uid: 1615 + components: + - pos: -0.5,-35.5 + parent: 1 + type: Transform + - uid: 1616 + components: + - pos: -1.5,-35.5 + parent: 1 + type: Transform + - uid: 1620 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-28.5 + parent: 1 + type: Transform + - uid: 1634 + components: + - pos: -1.5,-30.5 + parent: 1 + type: Transform + - uid: 1636 + components: + - pos: -3.5,-30.5 + parent: 1 + type: Transform + - uid: 1637 + components: + - pos: -4.5,-30.5 + parent: 1 + type: Transform + - uid: 1638 + components: + - pos: -5.5,-30.5 + parent: 1 + type: Transform + - uid: 1640 + components: + - pos: -7.5,-30.5 + parent: 1 + type: Transform + - uid: 1641 + components: + - pos: -8.5,-30.5 + parent: 1 + type: Transform + - uid: 1642 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-32.5 + parent: 1 + type: Transform + - uid: 1643 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-32.5 + parent: 1 + type: Transform + - uid: 1652 + components: + - pos: -0.5,-31.5 + parent: 1 + type: Transform + - uid: 1653 + components: + - pos: -6.5,-30.5 + parent: 1 + type: Transform + - uid: 1655 + components: + - pos: -2.5,-30.5 + parent: 1 + type: Transform + - uid: 1656 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-32.5 + parent: 1 + type: Transform + - uid: 1657 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-32.5 + parent: 1 + type: Transform + - uid: 1658 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-31.5 + parent: 1 + type: Transform + - uid: 1661 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-32.5 + parent: 1 + type: Transform + - uid: 1662 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-32.5 + parent: 1 + type: Transform + - uid: 1663 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-30.5 + parent: 1 + type: Transform + - uid: 1664 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-32.5 + parent: 1 + type: Transform + - uid: 1665 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-31.5 + parent: 1 + type: Transform + - uid: 1670 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-28.5 + parent: 1 + type: Transform + - uid: 1678 + components: + - pos: 41.5,18.5 + parent: 1 + type: Transform + - uid: 1679 + components: + - pos: 40.5,18.5 + parent: 1 + type: Transform + - uid: 1680 + components: + - pos: -7.5,-21.5 + parent: 1 + type: Transform + - uid: 1681 + components: + - pos: 38.5,18.5 + parent: 1 + type: Transform + - uid: 1683 + components: + - pos: 38.5,20.5 + parent: 1 + type: Transform + - uid: 1684 + components: + - pos: 38.5,21.5 + parent: 1 + type: Transform + - uid: 1685 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,23.5 + parent: 1 + type: Transform + - uid: 1687 + components: + - pos: 38.5,24.5 + parent: 1 + type: Transform + - uid: 1713 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,25.5 + parent: 1 + type: Transform + - uid: 1726 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,30.5 + parent: 1 + type: Transform + - uid: 1727 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,30.5 + parent: 1 + type: Transform + - uid: 1748 + components: + - pos: 11.5,20.5 + parent: 1 + type: Transform + - uid: 1750 + components: + - pos: 11.5,21.5 + parent: 1 + type: Transform + - uid: 1751 + components: + - pos: 23.5,-24.5 + parent: 1 + type: Transform + - uid: 1757 + components: + - pos: 31.5,23.5 + parent: 1 + type: Transform + - uid: 1758 + components: + - pos: 31.5,24.5 + parent: 1 + type: Transform + - uid: 1767 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,26.5 + parent: 1 + type: Transform + - uid: 1768 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,26.5 + parent: 1 + type: Transform + - uid: 1769 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,25.5 + parent: 1 + type: Transform + - uid: 1770 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,25.5 + parent: 1 + type: Transform + - uid: 1771 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,27.5 + parent: 1 + type: Transform + - uid: 1772 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,27.5 + parent: 1 + type: Transform + - uid: 1773 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,27.5 + parent: 1 + type: Transform + - uid: 1779 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,27.5 + parent: 1 + type: Transform + - uid: 1781 + components: + - pos: 27.5,11.5 + parent: 1 + type: Transform + - uid: 1782 + components: + - pos: 26.5,11.5 + parent: 1 + type: Transform + - uid: 1787 + components: + - pos: -18.5,32.5 + parent: 1 + type: Transform + - uid: 1821 + components: + - pos: 9.5,22.5 + parent: 1 + type: Transform + - uid: 1822 + components: + - pos: -18.5,29.5 + parent: 1 + type: Transform + - uid: 1823 + components: + - pos: -19.5,32.5 + parent: 1 + type: Transform + - uid: 1828 + components: + - pos: 11.5,22.5 + parent: 1 + type: Transform + - uid: 1829 + components: + - pos: 10.5,22.5 + parent: 1 + type: Transform + - uid: 1830 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,30.5 + parent: 1 + type: Transform + - uid: 1960 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,28.5 + parent: 1 + type: Transform + - uid: 1963 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,30.5 + parent: 1 + type: Transform + - uid: 1964 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,30.5 + parent: 1 + type: Transform + - uid: 1965 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,29.5 + parent: 1 + type: Transform + - uid: 1966 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,28.5 + parent: 1 + type: Transform + - uid: 1967 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,28.5 + parent: 1 + type: Transform + - uid: 1968 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,28.5 + parent: 1 + type: Transform + - uid: 1969 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,31.5 + parent: 1 + type: Transform + - uid: 1970 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,28.5 + parent: 1 + type: Transform + - uid: 1971 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,28.5 + parent: 1 + type: Transform + - uid: 1972 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,28.5 + parent: 1 + type: Transform + - uid: 1974 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,27.5 + parent: 1 + type: Transform + - uid: 1975 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,26.5 + parent: 1 + type: Transform + - uid: 1976 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,25.5 + parent: 1 + type: Transform + - uid: 1977 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,24.5 + parent: 1 + type: Transform + - uid: 1980 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,21.5 + parent: 1 + type: Transform + - uid: 1981 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,20.5 + parent: 1 + type: Transform + - uid: 1982 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,17.5 + parent: 1 + type: Transform + - uid: 1983 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,17.5 + parent: 1 + type: Transform + - uid: 1986 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,18.5 + parent: 1 + type: Transform + - uid: 2039 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,17.5 + parent: 1 + type: Transform + - uid: 2040 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,18.5 + parent: 1 + type: Transform + - uid: 2041 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,17.5 + parent: 1 + type: Transform + - uid: 2042 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,19.5 + parent: 1 + type: Transform + - uid: 2043 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,20.5 + parent: 1 + type: Transform + - uid: 2044 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,21.5 + parent: 1 + type: Transform + - uid: 2047 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,20.5 + parent: 1 + type: Transform + - uid: 2048 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,20.5 + parent: 1 + type: Transform + - uid: 2049 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,20.5 + parent: 1 + type: Transform + - uid: 2050 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,20.5 + parent: 1 + type: Transform + - uid: 2051 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,21.5 + parent: 1 + type: Transform + - uid: 2052 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,22.5 + parent: 1 + type: Transform + - uid: 2053 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,23.5 + parent: 1 + type: Transform + - uid: 2054 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,23.5 + parent: 1 + type: Transform + - uid: 2055 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,24.5 + parent: 1 + type: Transform + - uid: 2056 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,24.5 + parent: 1 + type: Transform + - uid: 2058 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,24.5 + parent: 1 + type: Transform + - uid: 2059 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,24.5 + parent: 1 + type: Transform + - uid: 2060 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,24.5 + parent: 1 + type: Transform + - uid: 2061 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,24.5 + parent: 1 + type: Transform + - uid: 2062 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,24.5 + parent: 1 + type: Transform + - uid: 2063 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,20.5 + parent: 1 + type: Transform + - uid: 2064 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,20.5 + parent: 1 + type: Transform + - uid: 2065 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,20.5 + parent: 1 + type: Transform + - uid: 2066 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,20.5 + parent: 1 + type: Transform + - uid: 2077 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-8.5 + parent: 1 + type: Transform + - uid: 2090 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,0.5 + parent: 1 + type: Transform + - uid: 2091 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-0.5 + parent: 1 + type: Transform + - uid: 2136 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,16.5 + parent: 1 + type: Transform + - uid: 2138 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-7.5 + parent: 1 + type: Transform + - uid: 2154 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-21.5 + parent: 1 + type: Transform + - uid: 2157 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-28.5 + parent: 1 + type: Transform + - uid: 2161 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-28.5 + parent: 1 + type: Transform + - uid: 2164 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-28.5 + parent: 1 + type: Transform + - uid: 2169 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-29.5 + parent: 1 + type: Transform + - uid: 2173 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-30.5 + parent: 1 + type: Transform + - uid: 2181 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-30.5 + parent: 1 + type: Transform + - uid: 2218 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-13.5 + parent: 1 + type: Transform + - uid: 2220 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-21.5 + parent: 1 + type: Transform + - uid: 2222 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-21.5 + parent: 1 + type: Transform + - uid: 2223 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-21.5 + parent: 1 + type: Transform + - uid: 2224 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-24.5 + parent: 1 + type: Transform + - uid: 2225 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-21.5 + parent: 1 + type: Transform + - uid: 2226 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-21.5 + parent: 1 + type: Transform + - uid: 2227 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-21.5 + parent: 1 + type: Transform + - uid: 2228 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-21.5 + parent: 1 + type: Transform + - uid: 2229 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-21.5 + parent: 1 + type: Transform + - uid: 2230 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-21.5 + parent: 1 + type: Transform + - uid: 2231 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-21.5 + parent: 1 + type: Transform + - uid: 2232 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-21.5 + parent: 1 + type: Transform + - uid: 2236 + components: + - pos: -42.5,-13.5 + parent: 1 + type: Transform + - uid: 2240 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-21.5 + parent: 1 + type: Transform + - uid: 2241 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-22.5 + parent: 1 + type: Transform + - uid: 2242 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-23.5 + parent: 1 + type: Transform + - uid: 2243 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-24.5 + parent: 1 + type: Transform + - uid: 2244 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-25.5 + parent: 1 + type: Transform + - uid: 2245 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-26.5 + parent: 1 + type: Transform + - uid: 2246 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-26.5 + parent: 1 + type: Transform + - uid: 2247 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-26.5 + parent: 1 + type: Transform + - uid: 2248 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-26.5 + parent: 1 + type: Transform + - uid: 2249 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-26.5 + parent: 1 + type: Transform + - uid: 2250 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-27.5 + parent: 1 + type: Transform + - uid: 2264 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-24.5 + parent: 1 + type: Transform + - uid: 2271 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-24.5 + parent: 1 + type: Transform + - uid: 2273 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-22.5 + parent: 1 + type: Transform + - uid: 2274 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-23.5 + parent: 1 + type: Transform + - uid: 2275 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-23.5 + parent: 1 + type: Transform + - uid: 2276 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-22.5 + parent: 1 + type: Transform + - uid: 2278 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,26.5 + parent: 1 + type: Transform + - uid: 2297 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,31.5 + parent: 1 + type: Transform + - uid: 2299 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,29.5 + parent: 1 + type: Transform + - uid: 2300 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,31.5 + parent: 1 + type: Transform + - uid: 2301 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,29.5 + parent: 1 + type: Transform + - uid: 2305 + components: + - pos: 39.5,24.5 + parent: 1 + type: Transform + - uid: 2306 + components: + - pos: 40.5,24.5 + parent: 1 + type: Transform + - uid: 2307 + components: + - pos: 41.5,24.5 + parent: 1 + type: Transform + - uid: 2308 + components: + - pos: 42.5,24.5 + parent: 1 + type: Transform + - uid: 2309 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,20.5 + parent: 1 + type: Transform + - uid: 2311 + components: + - pos: 8.5,34.5 + parent: 1 + type: Transform + - uid: 2312 + components: + - pos: 7.5,34.5 + parent: 1 + type: Transform + - uid: 2313 + components: + - pos: 7.5,33.5 + parent: 1 + type: Transform + - uid: 2316 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,34.5 + parent: 1 + type: Transform + - uid: 2317 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,34.5 + parent: 1 + type: Transform + - uid: 2318 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,34.5 + parent: 1 + type: Transform + - uid: 2319 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,34.5 + parent: 1 + type: Transform + - uid: 2324 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,34.5 + parent: 1 + type: Transform + - uid: 2326 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,35.5 + parent: 1 + type: Transform + - uid: 2327 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,36.5 + parent: 1 + type: Transform + - uid: 2329 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,36.5 + parent: 1 + type: Transform + - uid: 2330 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,35.5 + parent: 1 + type: Transform + - uid: 2360 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,25.5 + parent: 1 + type: Transform + - uid: 2361 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,25.5 + parent: 1 + type: Transform + - uid: 2362 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,24.5 + parent: 1 + type: Transform + - uid: 2368 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,28.5 + parent: 1 + type: Transform + - uid: 2370 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,24.5 + parent: 1 + type: Transform + - uid: 2371 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,23.5 + parent: 1 + type: Transform + - uid: 2372 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,22.5 + parent: 1 + type: Transform + - uid: 2373 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,22.5 + parent: 1 + type: Transform + - uid: 2379 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,22.5 + parent: 1 + type: Transform + - uid: 2381 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,23.5 + parent: 1 + type: Transform + - uid: 2422 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,34.5 + parent: 1 + type: Transform + - uid: 2427 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,26.5 + parent: 1 + type: Transform + - uid: 2428 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,27.5 + parent: 1 + type: Transform + - uid: 2429 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,27.5 + parent: 1 + type: Transform + - uid: 2430 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,28.5 + parent: 1 + type: Transform + - uid: 2434 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,28.5 + parent: 1 + type: Transform + - uid: 2435 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,28.5 + parent: 1 + type: Transform + - uid: 2436 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,28.5 + parent: 1 + type: Transform + - uid: 2437 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-14.5 + parent: 1 + type: Transform + - uid: 2439 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-15.5 + parent: 1 + type: Transform + - uid: 2440 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-21.5 + parent: 1 + type: Transform + - uid: 2443 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-20.5 + parent: 1 + type: Transform + - uid: 2444 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-21.5 + parent: 1 + type: Transform + - uid: 2654 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,44.5 + parent: 1 + type: Transform + - uid: 2655 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,43.5 + parent: 1 + type: Transform + - uid: 2656 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,44.5 + parent: 1 + type: Transform + - uid: 2657 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,45.5 + parent: 1 + type: Transform + - uid: 2658 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,48.5 + parent: 1 + type: Transform + - uid: 2660 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,43.5 + parent: 1 + type: Transform + - uid: 2661 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,47.5 + parent: 1 + type: Transform + - uid: 2663 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,43.5 + parent: 1 + type: Transform + - uid: 2664 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,46.5 + parent: 1 + type: Transform + - uid: 2665 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,48.5 + parent: 1 + type: Transform + - uid: 2666 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,46.5 + parent: 1 + type: Transform + - uid: 2667 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,49.5 + parent: 1 + type: Transform + - uid: 2668 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,47.5 + parent: 1 + type: Transform + - uid: 2669 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,43.5 + parent: 1 + type: Transform + - uid: 2670 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,47.5 + parent: 1 + type: Transform + - uid: 2671 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,47.5 + parent: 1 + type: Transform + - uid: 2672 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,43.5 + parent: 1 + type: Transform + - uid: 2673 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,43.5 + parent: 1 + type: Transform + - uid: 2674 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,44.5 + parent: 1 + type: Transform + - uid: 2676 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,46.5 + parent: 1 + type: Transform + - uid: 2677 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,43.5 + parent: 1 + type: Transform + - uid: 2678 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,43.5 + parent: 1 + type: Transform + - uid: 2679 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,43.5 + parent: 1 + type: Transform + - uid: 2680 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,43.5 + parent: 1 + type: Transform + - uid: 2681 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,44.5 + parent: 1 + type: Transform + - uid: 2682 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,45.5 + parent: 1 + type: Transform + - uid: 2683 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,46.5 + parent: 1 + type: Transform + - uid: 2684 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,47.5 + parent: 1 + type: Transform + - uid: 2686 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,47.5 + parent: 1 + type: Transform + - uid: 2687 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,47.5 + parent: 1 + type: Transform + - uid: 2692 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,51.5 + parent: 1 + type: Transform + - uid: 2693 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,50.5 + parent: 1 + type: Transform + - uid: 2694 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,51.5 + parent: 1 + type: Transform + - uid: 2695 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,50.5 + parent: 1 + type: Transform + - uid: 2696 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,54.5 + parent: 1 + type: Transform + - uid: 2697 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,53.5 + parent: 1 + type: Transform + - uid: 2698 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,54.5 + parent: 1 + type: Transform + - uid: 2699 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,53.5 + parent: 1 + type: Transform + - uid: 2700 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,47.5 + parent: 1 + type: Transform + - uid: 2701 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,47.5 + parent: 1 + type: Transform + - uid: 2702 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,50.5 + parent: 1 + type: Transform + - uid: 2703 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,51.5 + parent: 1 + type: Transform + - uid: 2704 + components: + - pos: -12.5,52.5 + parent: 1 + type: Transform + - uid: 2705 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,53.5 + parent: 1 + type: Transform + - uid: 2706 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,54.5 + parent: 1 + type: Transform + - uid: 2707 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,55.5 + parent: 1 + type: Transform + - uid: 2708 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,56.5 + parent: 1 + type: Transform + - uid: 2709 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,56.5 + parent: 1 + type: Transform + - uid: 2710 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,57.5 + parent: 1 + type: Transform + - uid: 2711 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,57.5 + parent: 1 + type: Transform + - uid: 2712 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,57.5 + parent: 1 + type: Transform + - uid: 2713 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,57.5 + parent: 1 + type: Transform + - uid: 2714 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,57.5 + parent: 1 + type: Transform + - uid: 2715 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,57.5 + parent: 1 + type: Transform + - uid: 2716 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,57.5 + parent: 1 + type: Transform + - uid: 2717 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,57.5 + parent: 1 + type: Transform + - uid: 2718 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,57.5 + parent: 1 + type: Transform + - uid: 2719 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,56.5 + parent: 1 + type: Transform + - uid: 2720 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,56.5 + parent: 1 + type: Transform + - uid: 2721 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,55.5 + parent: 1 + type: Transform + - uid: 2722 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,54.5 + parent: 1 + type: Transform + - uid: 2723 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,53.5 + parent: 1 + type: Transform + - uid: 2724 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,48.5 + parent: 1 + type: Transform + - uid: 2725 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,51.5 + parent: 1 + type: Transform + - uid: 2726 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,50.5 + parent: 1 + type: Transform + - uid: 2727 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,49.5 + parent: 1 + type: Transform + - uid: 2728 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,48.5 + parent: 1 + type: Transform + - uid: 2729 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,48.5 + parent: 1 + type: Transform + - uid: 2730 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,48.5 + parent: 1 + type: Transform + - uid: 2731 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,48.5 + parent: 1 + type: Transform + - uid: 2732 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,56.5 + parent: 1 + type: Transform + - uid: 2733 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,55.5 + parent: 1 + type: Transform + - uid: 2734 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,54.5 + parent: 1 + type: Transform + - uid: 2735 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,53.5 + parent: 1 + type: Transform + - uid: 2736 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,52.5 + parent: 1 + type: Transform + - uid: 2737 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,51.5 + parent: 1 + type: Transform + - uid: 2738 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,50.5 + parent: 1 + type: Transform + - uid: 2739 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,49.5 + parent: 1 + type: Transform + - uid: 2740 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,56.5 + parent: 1 + type: Transform + - uid: 2741 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,56.5 + parent: 1 + type: Transform + - uid: 2742 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,56.5 + parent: 1 + type: Transform + - uid: 2743 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,56.5 + parent: 1 + type: Transform + - uid: 2744 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,56.5 + parent: 1 + type: Transform + - uid: 2745 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,48.5 + parent: 1 + type: Transform + - uid: 2746 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,48.5 + parent: 1 + type: Transform + - uid: 2747 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,48.5 + parent: 1 + type: Transform + - uid: 2969 + components: + - pos: -24.5,-28.5 + parent: 1 + type: Transform + - uid: 2985 + components: + - pos: -21.5,-30.5 + parent: 1 + type: Transform + - uid: 2986 + components: + - pos: -24.5,-30.5 + parent: 1 + type: Transform + - uid: 2987 + components: + - pos: -5.5,-35.5 + parent: 1 + type: Transform + - uid: 2994 + components: + - pos: -5.5,-34.5 + parent: 1 + type: Transform + - uid: 2996 + components: + - pos: -8.5,-34.5 + parent: 1 + type: Transform + - uid: 2997 + components: + - pos: -8.5,-33.5 + parent: 1 + type: Transform + - uid: 3000 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-35.5 + parent: 1 + type: Transform + - uid: 3002 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-34.5 + parent: 1 + type: Transform + - uid: 3003 + components: + - pos: -2.5,-35.5 + parent: 1 + type: Transform + - uid: 3004 + components: + - pos: -3.5,-35.5 + parent: 1 + type: Transform + - uid: 3005 + components: + - pos: -4.5,-35.5 + parent: 1 + type: Transform + - uid: 3072 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-13.5 + parent: 1 + type: Transform + - uid: 3080 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-25.5 + parent: 1 + type: Transform + - uid: 3081 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-25.5 + parent: 1 + type: Transform + - uid: 3082 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-25.5 + parent: 1 + type: Transform + - uid: 3083 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-25.5 + parent: 1 + type: Transform + - uid: 3084 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-25.5 + parent: 1 + type: Transform + - uid: 3085 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-25.5 + parent: 1 + type: Transform + - uid: 3086 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-24.5 + parent: 1 + type: Transform + - uid: 3087 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-24.5 + parent: 1 + type: Transform + - uid: 3352 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-21.5 + parent: 1 + type: Transform + - uid: 3353 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-21.5 + parent: 1 + type: Transform + - uid: 3622 + components: + - pos: 1.5,47.5 + parent: 1 + type: Transform + - uid: 3623 + components: + - pos: 1.5,46.5 + parent: 1 + type: Transform + - uid: 3624 + components: + - pos: 2.5,47.5 + parent: 1 + type: Transform + - uid: 3625 + components: + - pos: 3.5,47.5 + parent: 1 + type: Transform + - uid: 3626 + components: + - pos: 4.5,47.5 + parent: 1 + type: Transform + - uid: 3627 + components: + - pos: 5.5,47.5 + parent: 1 + type: Transform + - uid: 3628 + components: + - pos: 5.5,48.5 + parent: 1 + type: Transform + - uid: 3629 + components: + - pos: 5.5,49.5 + parent: 1 + type: Transform + - uid: 3630 + components: + - pos: 5.5,50.5 + parent: 1 + type: Transform + - uid: 3631 + components: + - pos: 5.5,51.5 + parent: 1 + type: Transform + - uid: 3632 + components: + - pos: 5.5,52.5 + parent: 1 + type: Transform + - uid: 3633 + components: + - pos: 5.5,53.5 + parent: 1 + type: Transform + - uid: 3634 + components: + - pos: 5.5,54.5 + parent: 1 + type: Transform + - uid: 3635 + components: + - pos: 5.5,55.5 + parent: 1 + type: Transform + - uid: 3636 + components: + - pos: 5.5,56.5 + parent: 1 + type: Transform + - uid: 3637 + components: + - pos: 5.5,57.5 + parent: 1 + type: Transform + - uid: 3638 + components: + - pos: 4.5,57.5 + parent: 1 + type: Transform + - uid: 3639 + components: + - pos: 3.5,57.5 + parent: 1 + type: Transform + - uid: 3640 + components: + - pos: 2.5,57.5 + parent: 1 + type: Transform + - uid: 3641 + components: + - pos: 1.5,57.5 + parent: 1 + type: Transform + - uid: 3642 + components: + - pos: 0.5,57.5 + parent: 1 + type: Transform + - uid: 3643 + components: + - pos: -0.5,57.5 + parent: 1 + type: Transform + - uid: 3644 + components: + - pos: -1.5,57.5 + parent: 1 + type: Transform + - uid: 3645 + components: + - pos: -1.5,58.5 + parent: 1 + type: Transform + - uid: 3646 + components: + - pos: -2.5,58.5 + parent: 1 + type: Transform + - uid: 3647 + components: + - pos: -3.5,58.5 + parent: 1 + type: Transform + - uid: 3648 + components: + - pos: -4.5,58.5 + parent: 1 + type: Transform + - uid: 3649 + components: + - pos: -5.5,58.5 + parent: 1 + type: Transform + - uid: 3650 + components: + - pos: -6.5,58.5 + parent: 1 + type: Transform + - uid: 3651 + components: + - pos: -7.5,58.5 + parent: 1 + type: Transform + - uid: 3652 + components: + - pos: -8.5,58.5 + parent: 1 + type: Transform + - uid: 3653 + components: + - pos: -9.5,58.5 + parent: 1 + type: Transform + - uid: 3654 + components: + - pos: -10.5,58.5 + parent: 1 + type: Transform + - uid: 3655 + components: + - pos: -11.5,58.5 + parent: 1 + type: Transform + - uid: 3656 + components: + - pos: -11.5,57.5 + parent: 1 + type: Transform + - uid: 3657 + components: + - pos: -12.5,57.5 + parent: 1 + type: Transform + - uid: 3658 + components: + - pos: -12.5,56.5 + parent: 1 + type: Transform + - uid: 3659 + components: + - pos: -12.5,55.5 + parent: 1 + type: Transform + - uid: 3660 + components: + - pos: -12.5,54.5 + parent: 1 + type: Transform + - uid: 3661 + components: + - pos: -12.5,53.5 + parent: 1 + type: Transform + - uid: 3663 + components: + - pos: -12.5,51.5 + parent: 1 + type: Transform + - uid: 3664 + components: + - pos: -12.5,50.5 + parent: 1 + type: Transform + - uid: 3665 + components: + - pos: -12.5,49.5 + parent: 1 + type: Transform + - uid: 3666 + components: + - pos: -12.5,48.5 + parent: 1 + type: Transform + - uid: 3667 + components: + - pos: -12.5,47.5 + parent: 1 + type: Transform + - uid: 3668 + components: + - pos: -11.5,47.5 + parent: 1 + type: Transform + - uid: 3669 + components: + - pos: -11.5,46.5 + parent: 1 + type: Transform + - uid: 3847 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,32.5 + parent: 1 + type: Transform + - uid: 3849 + components: + - pos: 30.5,32.5 + parent: 1 + type: Transform + - uid: 4808 + components: + - pos: 43.5,24.5 + parent: 1 + type: Transform + - uid: 4811 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,23.5 + parent: 1 + type: Transform + - uid: 4812 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,23.5 + parent: 1 + type: Transform + - uid: 4813 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,21.5 + parent: 1 + type: Transform + - uid: 4814 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,21.5 + parent: 1 + type: Transform + - uid: 4819 + components: + - pos: 47.5,24.5 + parent: 1 + type: Transform + - uid: 4832 + components: + - pos: 47.5,29.5 + parent: 1 + type: Transform + - uid: 4840 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,34.5 + parent: 1 + type: Transform + - uid: 4863 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,35.5 + parent: 1 + type: Transform + - uid: 4871 + components: + - rot: 3.141592653589793 rad + pos: 47.5,35.5 + parent: 1 + type: Transform + - uid: 4872 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,35.5 + parent: 1 + type: Transform + - uid: 4880 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,30.5 + parent: 1 + type: Transform + - uid: 5548 + components: + - pos: -42.5,-12.5 + parent: 1 + type: Transform + - uid: 5859 + components: + - pos: -23.5,-30.5 + parent: 1 + type: Transform + - uid: 5860 + components: + - pos: -20.5,-30.5 + parent: 1 + type: Transform + - uid: 5861 + components: + - pos: -20.5,-29.5 + parent: 1 + type: Transform + - uid: 6823 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,-1.5 + parent: 1 + type: Transform + - uid: 6987 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-2.5 + parent: 1 + type: Transform + - uid: 6989 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,-1.5 + parent: 1 + type: Transform + - uid: 7070 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-34.5 + parent: 1 + type: Transform + - uid: 7071 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-34.5 + parent: 1 + type: Transform + - uid: 7072 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-35.5 + parent: 1 + type: Transform + - uid: 7656 + components: + - pos: 12.5,34.5 + parent: 1 + type: Transform + - uid: 8260 + components: + - pos: -11.5,52.5 + parent: 1 + type: Transform + - uid: 9198 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,23.5 + parent: 1 + type: Transform + - uid: 9663 + components: + - pos: -19.5,31.5 + parent: 1 + type: Transform + - uid: 10647 + components: + - pos: 26.5,28.5 + parent: 1 + type: Transform + - uid: 12292 + components: + - rot: 3.141592653589793 rad + pos: -1.5,63.5 + parent: 1 + type: Transform + - uid: 12293 + components: + - rot: 3.141592653589793 rad + pos: -1.5,64.5 + parent: 1 + type: Transform + - uid: 12294 + components: + - rot: 3.141592653589793 rad + pos: -2.5,64.5 + parent: 1 + type: Transform + - uid: 12295 + components: + - rot: 3.141592653589793 rad + pos: -2.5,65.5 + parent: 1 + type: Transform + - uid: 12296 + components: + - rot: 3.141592653589793 rad + pos: -2.5,66.5 + parent: 1 + type: Transform + - uid: 12297 + components: + - rot: 3.141592653589793 rad + pos: -1.5,67.5 + parent: 1 + type: Transform + - uid: 12298 + components: + - rot: 3.141592653589793 rad + pos: -0.5,67.5 + parent: 1 + type: Transform + - uid: 12299 + components: + - rot: 3.141592653589793 rad + pos: 0.5,67.5 + parent: 1 + type: Transform + - uid: 12300 + components: + - rot: 3.141592653589793 rad + pos: 1.5,66.5 + parent: 1 + type: Transform + - uid: 12301 + components: + - rot: 3.141592653589793 rad + pos: 1.5,65.5 + parent: 1 + type: Transform + - uid: 12302 + components: + - rot: 3.141592653589793 rad + pos: 1.5,64.5 + parent: 1 + type: Transform + - uid: 12303 + components: + - rot: 3.141592653589793 rad + pos: 0.5,64.5 + parent: 1 + type: Transform + - uid: 12304 + components: + - rot: 3.141592653589793 rad + pos: 0.5,63.5 + parent: 1 + type: Transform + - uid: 12305 + components: + - rot: 3.141592653589793 rad + pos: -0.5,63.5 + parent: 1 + type: Transform + - uid: 12306 + components: + - rot: 3.141592653589793 rad + pos: -1.5,66.5 + parent: 1 + type: Transform + - uid: 12307 + components: + - rot: 3.141592653589793 rad + pos: 0.5,66.5 + parent: 1 + type: Transform + - uid: 12553 + components: + - rot: 3.141592653589793 rad + pos: -0.5,25.5 + parent: 1 + type: Transform +- proto: WallSolid + entities: + - uid: 2 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 3 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 4 + components: + - pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 5 + components: + - pos: -2.5,4.5 + parent: 1 + type: Transform + - uid: 6 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 7 + components: + - pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 8 + components: + - pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 9 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 10 + components: + - pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 11 + components: + - pos: -1.5,0.5 + parent: 1 + type: Transform + - uid: 12 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 13 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 14 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform + - uid: 15 + components: + - pos: -3.5,-6.5 + parent: 1 + type: Transform + - uid: 16 + components: + - pos: 6.5,-6.5 + parent: 1 + type: Transform + - uid: 17 + components: + - pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 18 + components: + - pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 19 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 20 + components: + - pos: -1.5,-6.5 + parent: 1 + type: Transform + - uid: 21 + components: + - pos: -2.5,-6.5 + parent: 1 + type: Transform + - uid: 22 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 35 + components: + - pos: -3.5,-5.5 + parent: 1 + type: Transform + - uid: 36 + components: + - pos: -3.5,-1.5 + parent: 1 + type: Transform + - uid: 38 + components: + - pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 44 + components: + - pos: -0.5,-6.5 + parent: 1 + type: Transform + - uid: 48 + components: + - pos: -3.5,-4.5 + parent: 1 + type: Transform + - uid: 52 + components: + - pos: 0.5,-6.5 + parent: 1 + type: Transform + - uid: 54 + components: + - pos: 1.5,-6.5 + parent: 1 + type: Transform + - uid: 55 + components: + - pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 68 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 69 + components: + - pos: -0.5,13.5 + parent: 1 + type: Transform + - uid: 70 + components: + - pos: -3.5,10.5 + parent: 1 + type: Transform + - uid: 71 + components: + - pos: 6.5,10.5 + parent: 1 + type: Transform + - uid: 72 + components: + - pos: 3.5,13.5 + parent: 1 + type: Transform + - uid: 93 + components: + - pos: 6.5,7.5 + parent: 1 + type: Transform + - uid: 94 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 103 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 + type: Transform + - uid: 149 + components: + - pos: -3.5,17.5 + parent: 1 + type: Transform + - uid: 150 + components: + - pos: -6.5,17.5 + parent: 1 + type: Transform + - uid: 151 + components: + - pos: -6.5,15.5 + parent: 1 + type: Transform + - uid: 157 + components: + - pos: -9.5,18.5 + parent: 1 + type: Transform + - uid: 158 + components: + - pos: -9.5,19.5 + parent: 1 + type: Transform + - uid: 172 + components: + - pos: -10.5,7.5 + parent: 1 + type: Transform + - uid: 175 + components: + - pos: -7.5,7.5 + parent: 1 + type: Transform + - uid: 192 + components: + - pos: -27.5,13.5 + parent: 1 + type: Transform + - uid: 216 + components: + - pos: -10.5,4.5 + parent: 1 + type: Transform + - uid: 218 + components: + - pos: -16.5,4.5 + parent: 1 + type: Transform + - uid: 221 + components: + - pos: -13.5,4.5 + parent: 1 + type: Transform + - uid: 222 + components: + - pos: -16.5,7.5 + parent: 1 + type: Transform + - uid: 223 + components: + - pos: -13.5,7.5 + parent: 1 + type: Transform + - uid: 224 + components: + - pos: -19.5,7.5 + parent: 1 + type: Transform + - uid: 227 + components: + - pos: -19.5,4.5 + parent: 1 + type: Transform + - uid: 235 + components: + - pos: -22.5,17.5 + parent: 1 + type: Transform + - uid: 256 + components: + - pos: -24.5,12.5 + parent: 1 + type: Transform + - uid: 257 + components: + - pos: -25.5,12.5 + parent: 1 + type: Transform + - uid: 258 + components: + - pos: -26.5,12.5 + parent: 1 + type: Transform + - uid: 259 + components: + - pos: -27.5,12.5 + parent: 1 + type: Transform + - uid: 271 + components: + - pos: -30.5,5.5 + parent: 1 + type: Transform + - uid: 272 + components: + - pos: -30.5,4.5 + parent: 1 + type: Transform + - uid: 277 + components: + - pos: -30.5,6.5 + parent: 1 + type: Transform + - uid: 278 + components: + - pos: -30.5,7.5 + parent: 1 + type: Transform + - uid: 279 + components: + - pos: -30.5,8.5 + parent: 1 + type: Transform + - uid: 280 + components: + - pos: -30.5,9.5 + parent: 1 + type: Transform + - uid: 281 + components: + - pos: -30.5,10.5 + parent: 1 + type: Transform + - uid: 282 + components: + - pos: -30.5,11.5 + parent: 1 + type: Transform + - uid: 283 + components: + - pos: -30.5,12.5 + parent: 1 + type: Transform + - uid: 284 + components: + - pos: -30.5,13.5 + parent: 1 + type: Transform + - uid: 285 + components: + - pos: -30.5,14.5 + parent: 1 + type: Transform + - uid: 286 + components: + - pos: -24.5,17.5 + parent: 1 + type: Transform + - uid: 287 + components: + - pos: -25.5,17.5 + parent: 1 + type: Transform + - uid: 288 + components: + - pos: -26.5,17.5 + parent: 1 + type: Transform + - uid: 289 + components: + - pos: -27.5,17.5 + parent: 1 + type: Transform + - uid: 290 + components: + - pos: -27.5,16.5 + parent: 1 + type: Transform + - uid: 291 + components: + - pos: -27.5,15.5 + parent: 1 + type: Transform + - uid: 292 + components: + - pos: -27.5,14.5 + parent: 1 + type: Transform + - uid: 293 + components: + - pos: -22.5,12.5 + parent: 1 + type: Transform + - uid: 294 + components: + - pos: -27.5,11.5 + parent: 1 + type: Transform + - uid: 295 + components: + - pos: -27.5,9.5 + parent: 1 + type: Transform + - uid: 296 + components: + - pos: -29.5,5.5 + parent: 1 + type: Transform + - uid: 297 + components: + - pos: -9.5,20.5 + parent: 1 + type: Transform + - uid: 298 + components: + - pos: -9.5,21.5 + parent: 1 + type: Transform + - uid: 299 + components: + - pos: -9.5,22.5 + parent: 1 + type: Transform + - uid: 300 + components: + - pos: -10.5,22.5 + parent: 1 + type: Transform + - uid: 301 + components: + - pos: -11.5,22.5 + parent: 1 + type: Transform + - uid: 302 + components: + - pos: -12.5,22.5 + parent: 1 + type: Transform + - uid: 303 + components: + - pos: -18.5,21.5 + parent: 1 + type: Transform + - uid: 304 + components: + - pos: -14.5,22.5 + parent: 1 + type: Transform + - uid: 305 + components: + - pos: -15.5,22.5 + parent: 1 + type: Transform + - uid: 306 + components: + - pos: -16.5,22.5 + parent: 1 + type: Transform + - uid: 307 + components: + - pos: -17.5,22.5 + parent: 1 + type: Transform + - uid: 308 + components: + - pos: -18.5,22.5 + parent: 1 + type: Transform + - uid: 309 + components: + - pos: -18.5,20.5 + parent: 1 + type: Transform + - uid: 310 + components: + - pos: -18.5,19.5 + parent: 1 + type: Transform + - uid: 311 + components: + - pos: -18.5,18.5 + parent: 1 + type: Transform + - uid: 407 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,16.5 + parent: 1 + type: Transform + - uid: 417 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,27.5 + parent: 1 + type: Transform + - uid: 418 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,26.5 + parent: 1 + type: Transform + - uid: 419 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,26.5 + parent: 1 + type: Transform + - uid: 421 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,26.5 + parent: 1 + type: Transform + - uid: 435 + components: + - pos: -14.5,23.5 + parent: 1 + type: Transform + - uid: 436 + components: + - pos: -18.5,23.5 + parent: 1 + type: Transform + - uid: 443 + components: + - rot: 3.141592653589793 rad + pos: -7.5,0.5 + parent: 1 + type: Transform + - uid: 444 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-4.5 + parent: 1 + type: Transform + - uid: 456 + components: + - rot: 3.141592653589793 rad + pos: -14.5,0.5 + parent: 1 + type: Transform + - uid: 459 + components: + - rot: 3.141592653589793 rad + pos: -15.5,0.5 + parent: 1 + type: Transform + - uid: 461 + components: + - rot: 3.141592653589793 rad + pos: -16.5,0.5 + parent: 1 + type: Transform + - uid: 462 + components: + - rot: 3.141592653589793 rad + pos: -17.5,0.5 + parent: 1 + type: Transform + - uid: 463 + components: + - rot: 3.141592653589793 rad + pos: -13.5,0.5 + parent: 1 + type: Transform + - uid: 464 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-4.5 + parent: 1 + type: Transform + - uid: 465 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-10.5 + parent: 1 + type: Transform + - uid: 466 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-7.5 + parent: 1 + type: Transform + - uid: 468 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-12.5 + parent: 1 + type: Transform + - uid: 469 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-10.5 + parent: 1 + type: Transform + - uid: 470 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-10.5 + parent: 1 + type: Transform + - uid: 472 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-7.5 + parent: 1 + type: Transform + - uid: 475 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-10.5 + parent: 1 + type: Transform + - uid: 476 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-10.5 + parent: 1 + type: Transform + - uid: 486 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-4.5 + parent: 1 + type: Transform + - uid: 495 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-12.5 + parent: 1 + type: Transform + - uid: 496 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-14.5 + parent: 1 + type: Transform + - uid: 497 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-15.5 + parent: 1 + type: Transform + - uid: 498 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-13.5 + parent: 1 + type: Transform + - uid: 499 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-14.5 + parent: 1 + type: Transform + - uid: 500 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-8.5 + parent: 1 + type: Transform + - uid: 501 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-9.5 + parent: 1 + type: Transform + - uid: 502 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-16.5 + parent: 1 + type: Transform + - uid: 505 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-10.5 + parent: 1 + type: Transform + - uid: 506 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-11.5 + parent: 1 + type: Transform + - uid: 507 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-15.5 + parent: 1 + type: Transform + - uid: 508 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-11.5 + parent: 1 + type: Transform + - uid: 509 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-16.5 + parent: 1 + type: Transform + - uid: 510 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-16.5 + parent: 1 + type: Transform + - uid: 511 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-13.5 + parent: 1 + type: Transform + - uid: 512 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-16.5 + parent: 1 + type: Transform + - uid: 513 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-16.5 + parent: 1 + type: Transform + - uid: 514 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-16.5 + parent: 1 + type: Transform + - uid: 515 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-16.5 + parent: 1 + type: Transform + - uid: 516 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-16.5 + parent: 1 + type: Transform + - uid: 517 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-16.5 + parent: 1 + type: Transform + - uid: 518 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-16.5 + parent: 1 + type: Transform + - uid: 519 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-16.5 + parent: 1 + type: Transform + - uid: 566 + components: + - rot: 3.141592653589793 rad + pos: -18.5,0.5 + parent: 1 + type: Transform + - uid: 576 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-7.5 + parent: 1 + type: Transform + - uid: 604 + components: + - pos: -14.5,-11.5 + parent: 1 + type: Transform + - uid: 632 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-17.5 + parent: 1 + type: Transform + - uid: 633 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-18.5 + parent: 1 + type: Transform + - uid: 634 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-19.5 + parent: 1 + type: Transform + - uid: 635 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-19.5 + parent: 1 + type: Transform + - uid: 636 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-19.5 + parent: 1 + type: Transform + - uid: 637 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-19.5 + parent: 1 + type: Transform + - uid: 638 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-19.5 + parent: 1 + type: Transform + - uid: 639 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-19.5 + parent: 1 + type: Transform + - uid: 640 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-19.5 + parent: 1 + type: Transform + - uid: 641 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-19.5 + parent: 1 + type: Transform + - uid: 642 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-19.5 + parent: 1 + type: Transform + - uid: 643 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-18.5 + parent: 1 + type: Transform + - uid: 745 + components: + - rot: 3.141592653589793 rad + pos: 7.5,18.5 + parent: 1 + type: Transform + - uid: 746 + components: + - rot: 3.141592653589793 rad + pos: 9.5,18.5 + parent: 1 + type: Transform + - uid: 747 + components: + - rot: 3.141592653589793 rad + pos: 9.5,17.5 + parent: 1 + type: Transform + - uid: 813 + components: + - pos: 30.5,4.5 + parent: 1 + type: Transform + - uid: 815 + components: + - pos: 32.5,4.5 + parent: 1 + type: Transform + - uid: 816 + components: + - pos: 33.5,4.5 + parent: 1 + type: Transform + - uid: 817 + components: + - pos: 34.5,4.5 + parent: 1 + type: Transform + - uid: 818 + components: + - pos: 35.5,4.5 + parent: 1 + type: Transform + - uid: 869 + components: + - pos: -26.5,25.5 + parent: 1 + type: Transform + - uid: 871 + components: + - pos: 25.5,17.5 + parent: 1 + type: Transform + - uid: 879 + components: + - pos: 36.5,4.5 + parent: 1 + type: Transform + - uid: 880 + components: + - pos: 37.5,4.5 + parent: 1 + type: Transform + - uid: 881 + components: + - pos: 37.5,5.5 + parent: 1 + type: Transform + - uid: 882 + components: + - pos: 38.5,5.5 + parent: 1 + type: Transform + - uid: 883 + components: + - pos: 39.5,5.5 + parent: 1 + type: Transform + - uid: 884 + components: + - pos: 40.5,5.5 + parent: 1 + type: Transform + - uid: 885 + components: + - pos: 41.5,5.5 + parent: 1 + type: Transform + - uid: 886 + components: + - pos: 42.5,5.5 + parent: 1 + type: Transform + - uid: 985 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,0.5 + parent: 1 + type: Transform + - uid: 986 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-18.5 + parent: 1 + type: Transform + - uid: 987 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,0.5 + parent: 1 + type: Transform + - uid: 988 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-18.5 + parent: 1 + type: Transform + - uid: 989 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,0.5 + parent: 1 + type: Transform + - uid: 990 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-0.5 + parent: 1 + type: Transform + - uid: 991 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-18.5 + parent: 1 + type: Transform + - uid: 992 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-18.5 + parent: 1 + type: Transform + - uid: 993 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,0.5 + parent: 1 + type: Transform + - uid: 994 + components: + - pos: 17.5,0.5 + parent: 1 + type: Transform + - uid: 995 + components: + - rot: 3.141592653589793 rad + pos: 18.5,0.5 + parent: 1 + type: Transform + - uid: 997 + components: + - pos: 20.5,0.5 + parent: 1 + type: Transform + - uid: 998 + components: + - pos: 21.5,0.5 + parent: 1 + type: Transform + - uid: 999 + components: + - pos: 22.5,0.5 + parent: 1 + type: Transform + - uid: 1000 + components: + - pos: 23.5,0.5 + parent: 1 + type: Transform + - uid: 1001 + components: + - pos: 24.5,0.5 + parent: 1 + type: Transform + - uid: 1002 + components: + - pos: 25.5,0.5 + parent: 1 + type: Transform + - uid: 1003 + components: + - pos: 26.5,0.5 + parent: 1 + type: Transform + - uid: 1004 + components: + - pos: 27.5,0.5 + parent: 1 + type: Transform + - uid: 1005 + components: + - pos: 28.5,0.5 + parent: 1 + type: Transform + - uid: 1006 + components: + - pos: 29.5,0.5 + parent: 1 + type: Transform + - uid: 1008 + components: + - pos: 31.5,0.5 + parent: 1 + type: Transform + - uid: 1009 + components: + - pos: 32.5,0.5 + parent: 1 + type: Transform + - uid: 1010 + components: + - pos: 33.5,0.5 + parent: 1 + type: Transform + - uid: 1011 + components: + - pos: 34.5,0.5 + parent: 1 + type: Transform + - uid: 1012 + components: + - pos: 35.5,0.5 + parent: 1 + type: Transform + - uid: 1013 + components: + - pos: 36.5,0.5 + parent: 1 + type: Transform + - uid: 1014 + components: + - pos: 37.5,0.5 + parent: 1 + type: Transform + - uid: 1015 + components: + - pos: 38.5,0.5 + parent: 1 + type: Transform + - uid: 1016 + components: + - pos: 39.5,0.5 + parent: 1 + type: Transform + - uid: 1017 + components: + - pos: 40.5,0.5 + parent: 1 + type: Transform + - uid: 1018 + components: + - pos: 41.5,0.5 + parent: 1 + type: Transform + - uid: 1019 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 1 + type: Transform + - uid: 1020 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 1 + type: Transform + - uid: 1022 + components: + - pos: 14.5,-2.5 + parent: 1 + type: Transform + - uid: 1023 + components: + - pos: 15.5,-2.5 + parent: 1 + type: Transform + - uid: 1025 + components: + - pos: 17.5,-2.5 + parent: 1 + type: Transform + - uid: 1026 + components: + - pos: 18.5,-2.5 + parent: 1 + type: Transform + - uid: 1027 + components: + - pos: 19.5,-2.5 + parent: 1 + type: Transform + - uid: 1028 + components: + - pos: 10.5,-9.5 + parent: 1 + type: Transform + - uid: 1032 + components: + - pos: 14.5,-9.5 + parent: 1 + type: Transform + - uid: 1033 + components: + - pos: 14.5,-8.5 + parent: 1 + type: Transform + - uid: 1034 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-3.5 + parent: 1 + type: Transform + - uid: 1036 + components: + - pos: 14.5,-5.5 + parent: 1 + type: Transform + - uid: 1038 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-3.5 + parent: 1 + type: Transform + - uid: 1039 + components: + - pos: 3.5,-10.5 + parent: 1 + type: Transform + - uid: 1040 + components: + - pos: 4.5,-10.5 + parent: 1 + type: Transform + - uid: 1041 + components: + - pos: 5.5,-10.5 + parent: 1 + type: Transform + - uid: 1042 + components: + - pos: 6.5,-10.5 + parent: 1 + type: Transform + - uid: 1043 + components: + - pos: 7.5,-10.5 + parent: 1 + type: Transform + - uid: 1044 + components: + - pos: 8.5,-10.5 + parent: 1 + type: Transform + - uid: 1045 + components: + - pos: 9.5,-10.5 + parent: 1 + type: Transform + - uid: 1046 + components: + - pos: 10.5,-10.5 + parent: 1 + type: Transform + - uid: 1050 + components: + - pos: 17.5,-8.5 + parent: 1 + type: Transform + - uid: 1051 + components: + - pos: 17.5,-5.5 + parent: 1 + type: Transform + - uid: 1054 + components: + - pos: 10.5,-11.5 + parent: 1 + type: Transform + - uid: 1055 + components: + - pos: 10.5,-12.5 + parent: 1 + type: Transform + - uid: 1056 + components: + - pos: 10.5,-13.5 + parent: 1 + type: Transform + - uid: 1057 + components: + - pos: 11.5,-13.5 + parent: 1 + type: Transform + - uid: 1058 + components: + - pos: 12.5,-13.5 + parent: 1 + type: Transform + - uid: 1060 + components: + - pos: 14.5,-13.5 + parent: 1 + type: Transform + - uid: 1065 + components: + - pos: 17.5,-9.5 + parent: 1 + type: Transform + - uid: 1083 + components: + - pos: 21.5,-9.5 + parent: 1 + type: Transform + - uid: 1090 + components: + - pos: 21.5,-2.5 + parent: 1 + type: Transform + - uid: 1091 + components: + - pos: 22.5,-2.5 + parent: 1 + type: Transform + - uid: 1092 + components: + - pos: 23.5,-2.5 + parent: 1 + type: Transform + - uid: 1221 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,18.5 + parent: 1 + type: Transform + - uid: 1230 + components: + - pos: 43.5,4.5 + parent: 1 + type: Transform + - uid: 1231 + components: + - pos: 43.5,5.5 + parent: 1 + type: Transform + - uid: 1232 + components: + - pos: 43.5,6.5 + parent: 1 + type: Transform + - uid: 1233 + components: + - pos: 43.5,7.5 + parent: 1 + type: Transform + - uid: 1234 + components: + - pos: 43.5,8.5 + parent: 1 + type: Transform + - uid: 1235 + components: + - pos: 43.5,9.5 + parent: 1 + type: Transform + - uid: 1236 + components: + - pos: 43.5,10.5 + parent: 1 + type: Transform + - uid: 1237 + components: + - pos: 43.5,11.5 + parent: 1 + type: Transform + - uid: 1238 + components: + - pos: 43.5,12.5 + parent: 1 + type: Transform + - uid: 1239 + components: + - pos: 43.5,13.5 + parent: 1 + type: Transform + - uid: 1240 + components: + - pos: 43.5,14.5 + parent: 1 + type: Transform + - uid: 1242 + components: + - pos: 43.5,16.5 + parent: 1 + type: Transform + - uid: 1243 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,17.5 + parent: 1 + type: Transform + - uid: 1248 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,0.5 + parent: 1 + type: Transform + - uid: 1249 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,0.5 + parent: 1 + type: Transform + - uid: 1453 + components: + - pos: 8.5,-16.5 + parent: 1 + type: Transform + - uid: 1455 + components: + - pos: 10.5,-16.5 + parent: 1 + type: Transform + - uid: 1462 + components: + - pos: 11.5,-16.5 + parent: 1 + type: Transform + - uid: 1463 + components: + - pos: 12.5,-16.5 + parent: 1 + type: Transform + - uid: 1464 + components: + - pos: 12.5,-17.5 + parent: 1 + type: Transform + - uid: 1465 + components: + - pos: 12.5,-18.5 + parent: 1 + type: Transform + - uid: 1466 + components: + - pos: 12.5,-19.5 + parent: 1 + type: Transform + - uid: 1467 + components: + - pos: 13.5,-19.5 + parent: 1 + type: Transform + - uid: 1468 + components: + - pos: 14.5,-19.5 + parent: 1 + type: Transform + - uid: 1470 + components: + - pos: 16.5,-19.5 + parent: 1 + type: Transform + - uid: 1471 + components: + - pos: 17.5,-19.5 + parent: 1 + type: Transform + - uid: 1472 + components: + - pos: 18.5,-19.5 + parent: 1 + type: Transform + - uid: 1473 + components: + - pos: 19.5,-19.5 + parent: 1 + type: Transform + - uid: 1474 + components: + - pos: 20.5,-19.5 + parent: 1 + type: Transform + - uid: 1476 + components: + - pos: 22.5,-19.5 + parent: 1 + type: Transform + - uid: 1495 + components: + - pos: -1.5,-10.5 + parent: 1 + type: Transform + - uid: 1496 + components: + - pos: -2.5,-10.5 + parent: 1 + type: Transform + - uid: 1498 + components: + - pos: 7.5,-24.5 + parent: 1 + type: Transform + - uid: 1503 + components: + - pos: 3.5,-24.5 + parent: 1 + type: Transform + - uid: 1504 + components: + - pos: 3.5,-25.5 + parent: 1 + type: Transform + - uid: 1521 + components: + - pos: 3.5,-27.5 + parent: 1 + type: Transform + - uid: 1567 + components: + - pos: 12.5,-24.5 + parent: 1 + type: Transform + - uid: 1576 + components: + - pos: -0.5,-10.5 + parent: 1 + type: Transform + - uid: 1577 + components: + - pos: 4.5,-12.5 + parent: 1 + type: Transform + - uid: 1578 + components: + - pos: -0.5,-12.5 + parent: 1 + type: Transform + - uid: 1579 + components: + - pos: -0.5,-13.5 + parent: 1 + type: Transform + - uid: 1580 + components: + - pos: -0.5,-14.5 + parent: 1 + type: Transform + - uid: 1581 + components: + - pos: -0.5,-15.5 + parent: 1 + type: Transform + - uid: 1582 + components: + - pos: -0.5,-16.5 + parent: 1 + type: Transform + - uid: 1583 + components: + - pos: -0.5,-17.5 + parent: 1 + type: Transform + - uid: 1584 + components: + - pos: -0.5,-18.5 + parent: 1 + type: Transform + - uid: 1585 + components: + - pos: -0.5,-19.5 + parent: 1 + type: Transform + - uid: 1586 + components: + - pos: -1.5,-19.5 + parent: 1 + type: Transform + - uid: 1587 + components: + - pos: -2.5,-19.5 + parent: 1 + type: Transform + - uid: 1588 + components: + - pos: -3.5,-19.5 + parent: 1 + type: Transform + - uid: 1589 + components: + - pos: -4.5,-19.5 + parent: 1 + type: Transform + - uid: 1590 + components: + - pos: -5.5,-19.5 + parent: 1 + type: Transform + - uid: 1596 + components: + - pos: -9.5,-17.5 + parent: 1 + type: Transform + - uid: 1599 + components: + - pos: -10.5,-20.5 + parent: 1 + type: Transform + - uid: 1600 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-23.5 + parent: 1 + type: Transform + - uid: 1606 + components: + - pos: -0.5,-28.5 + parent: 1 + type: Transform + - uid: 1612 + components: + - pos: -0.5,-29.5 + parent: 1 + type: Transform + - uid: 1621 + components: + - pos: -0.5,-23.5 + parent: 1 + type: Transform + - uid: 1633 + components: + - pos: -0.5,-27.5 + parent: 1 + type: Transform + - uid: 1635 + components: + - pos: -4.5,-28.5 + parent: 1 + type: Transform + - uid: 1639 + components: + - pos: -4.5,-27.5 + parent: 1 + type: Transform + - uid: 1644 + components: + - pos: -4.5,-29.5 + parent: 1 + type: Transform + - uid: 1645 + components: + - pos: -3.5,-27.5 + parent: 1 + type: Transform + - uid: 1646 + components: + - pos: -1.5,-27.5 + parent: 1 + type: Transform + - uid: 1647 + components: + - pos: -5.5,-27.5 + parent: 1 + type: Transform + - uid: 1648 + components: + - pos: -7.5,-27.5 + parent: 1 + type: Transform + - uid: 1649 + components: + - pos: -8.5,-27.5 + parent: 1 + type: Transform + - uid: 1650 + components: + - pos: -8.5,-28.5 + parent: 1 + type: Transform + - uid: 1651 + components: + - pos: -8.5,-29.5 + parent: 1 + type: Transform + - uid: 1659 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-27.5 + parent: 1 + type: Transform + - uid: 1660 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-27.5 + parent: 1 + type: Transform + - uid: 1667 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-23.5 + parent: 1 + type: Transform + - uid: 1668 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-23.5 + parent: 1 + type: Transform + - uid: 1669 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-23.5 + parent: 1 + type: Transform + - uid: 1671 + components: + - pos: -12.5,-19.5 + parent: 1 + type: Transform + - uid: 1672 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-28.5 + parent: 1 + type: Transform + - uid: 1673 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-27.5 + parent: 1 + type: Transform + - uid: 1674 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-27.5 + parent: 1 + type: Transform + - uid: 1675 + components: + - pos: -12.5,-20.5 + parent: 1 + type: Transform + - uid: 1676 + components: + - pos: -16.5,-20.5 + parent: 1 + type: Transform + - uid: 1677 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,18.5 + parent: 1 + type: Transform + - uid: 1682 + components: + - pos: 38.5,17.5 + parent: 1 + type: Transform + - uid: 1689 + components: + - rot: 3.141592653589793 rad + pos: 38.5,25.5 + parent: 1 + type: Transform + - uid: 1690 + components: + - rot: 3.141592653589793 rad + pos: 38.5,27.5 + parent: 1 + type: Transform + - uid: 1691 + components: + - rot: 3.141592653589793 rad + pos: 38.5,28.5 + parent: 1 + type: Transform + - uid: 1692 + components: + - rot: 3.141592653589793 rad + pos: 38.5,29.5 + parent: 1 + type: Transform + - uid: 1693 + components: + - rot: 3.141592653589793 rad + pos: 38.5,30.5 + parent: 1 + type: Transform + - uid: 1694 + components: + - rot: 3.141592653589793 rad + pos: 38.5,34.5 + parent: 1 + type: Transform + - uid: 1695 + components: + - rot: 3.141592653589793 rad + pos: 38.5,33.5 + parent: 1 + type: Transform + - uid: 1696 + components: + - rot: 3.141592653589793 rad + pos: 38.5,32.5 + parent: 1 + type: Transform + - uid: 1759 + components: + - pos: -26.5,25.5 + parent: 1 + type: Transform + - uid: 1760 + components: + - pos: -25.5,25.5 + parent: 1 + type: Transform + - uid: 1761 + components: + - pos: -26.5,19.5 + parent: 1 + type: Transform + - uid: 1762 + components: + - pos: -22.5,25.5 + parent: 1 + type: Transform + - uid: 1774 + components: + - pos: -21.5,22.5 + parent: 1 + type: Transform + - uid: 1777 + components: + - pos: -21.5,24.5 + parent: 1 + type: Transform + - uid: 1778 + components: + - pos: -21.5,23.5 + parent: 1 + type: Transform + - uid: 1783 + components: + - pos: -21.5,25.5 + parent: 1 + type: Transform + - uid: 1784 + components: + - pos: -27.5,20.5 + parent: 1 + type: Transform + - uid: 1789 + components: + - pos: -27.5,19.5 + parent: 1 + type: Transform + - uid: 1791 + components: + - pos: -27.5,21.5 + parent: 1 + type: Transform + - uid: 1809 + components: + - pos: -27.5,25.5 + parent: 1 + type: Transform + - uid: 1819 + components: + - pos: -27.5,24.5 + parent: 1 + type: Transform + - uid: 1820 + components: + - pos: -22.5,19.5 + parent: 1 + type: Transform + - uid: 1826 + components: + - pos: -21.5,19.5 + parent: 1 + type: Transform + - uid: 1827 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-27.5 + parent: 1 + type: Transform + - uid: 1831 + components: + - pos: -21.5,20.5 + parent: 1 + type: Transform + - uid: 1833 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-3.5 + parent: 1 + type: Transform + - uid: 1834 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 1 + type: Transform + - uid: 1835 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,0.5 + parent: 1 + type: Transform + - uid: 1840 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-3.5 + parent: 1 + type: Transform + - uid: 1984 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,17.5 + parent: 1 + type: Transform + - uid: 1985 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,16.5 + parent: 1 + type: Transform + - uid: 1996 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-0.5 + parent: 1 + type: Transform + - uid: 1997 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-0.5 + parent: 1 + type: Transform + - uid: 1998 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-0.5 + parent: 1 + type: Transform + - uid: 1999 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-0.5 + parent: 1 + type: Transform + - uid: 2000 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-0.5 + parent: 1 + type: Transform + - uid: 2002 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,11.5 + parent: 1 + type: Transform + - uid: 2003 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,10.5 + parent: 1 + type: Transform + - uid: 2004 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,9.5 + parent: 1 + type: Transform + - uid: 2005 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,8.5 + parent: 1 + type: Transform + - uid: 2006 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,7.5 + parent: 1 + type: Transform + - uid: 2007 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,6.5 + parent: 1 + type: Transform + - uid: 2008 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,5.5 + parent: 1 + type: Transform + - uid: 2009 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,4.5 + parent: 1 + type: Transform + - uid: 2019 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,12.5 + parent: 1 + type: Transform + - uid: 2020 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,14.5 + parent: 1 + type: Transform + - uid: 2021 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,12.5 + parent: 1 + type: Transform + - uid: 2022 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,12.5 + parent: 1 + type: Transform + - uid: 2023 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,12.5 + parent: 1 + type: Transform + - uid: 2024 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,12.5 + parent: 1 + type: Transform + - uid: 2025 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,14.5 + parent: 1 + type: Transform + - uid: 2026 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,12.5 + parent: 1 + type: Transform + - uid: 2027 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,14.5 + parent: 1 + type: Transform + - uid: 2028 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,13.5 + parent: 1 + type: Transform + - uid: 2029 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,14.5 + parent: 1 + type: Transform + - uid: 2030 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,14.5 + parent: 1 + type: Transform + - uid: 2032 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,17.5 + parent: 1 + type: Transform + - uid: 2033 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,17.5 + parent: 1 + type: Transform + - uid: 2034 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,17.5 + parent: 1 + type: Transform + - uid: 2035 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,17.5 + parent: 1 + type: Transform + - uid: 2036 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,17.5 + parent: 1 + type: Transform + - uid: 2037 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,16.5 + parent: 1 + type: Transform + - uid: 2038 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,15.5 + parent: 1 + type: Transform + - uid: 2095 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-1.5 + parent: 1 + type: Transform + - uid: 2096 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-2.5 + parent: 1 + type: Transform + - uid: 2097 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-3.5 + parent: 1 + type: Transform + - uid: 2098 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-4.5 + parent: 1 + type: Transform + - uid: 2099 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-5.5 + parent: 1 + type: Transform + - uid: 2100 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-9.5 + parent: 1 + type: Transform + - uid: 2101 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-7.5 + parent: 1 + type: Transform + - uid: 2112 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,0.5 + parent: 1 + type: Transform + - uid: 2113 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,0.5 + parent: 1 + type: Transform + - uid: 2137 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,16.5 + parent: 1 + type: Transform + - uid: 2139 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,-8.5 + parent: 1 + type: Transform + - uid: 2140 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,-8.5 + parent: 1 + type: Transform + - uid: 2141 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-10.5 + parent: 1 + type: Transform + - uid: 2142 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-8.5 + parent: 1 + type: Transform + - uid: 2143 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-9.5 + parent: 1 + type: Transform + - uid: 2144 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-8.5 + parent: 1 + type: Transform + - uid: 2145 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-8.5 + parent: 1 + type: Transform + - uid: 2146 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-8.5 + parent: 1 + type: Transform + - uid: 2147 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-11.5 + parent: 1 + type: Transform + - uid: 2148 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-11.5 + parent: 1 + type: Transform + - uid: 2149 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-11.5 + parent: 1 + type: Transform + - uid: 2150 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-11.5 + parent: 1 + type: Transform + - uid: 2151 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-11.5 + parent: 1 + type: Transform + - uid: 2153 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-20.5 + parent: 1 + type: Transform + - uid: 2155 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-27.5 + parent: 1 + type: Transform + - uid: 2156 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-27.5 + parent: 1 + type: Transform + - uid: 2158 + components: + - pos: -20.5,-27.5 + parent: 1 + type: Transform + - uid: 2160 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-29.5 + parent: 1 + type: Transform + - uid: 2162 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-26.5 + parent: 1 + type: Transform + - uid: 2163 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-26.5 + parent: 1 + type: Transform + - uid: 2165 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-23.5 + parent: 1 + type: Transform + - uid: 2166 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-23.5 + parent: 1 + type: Transform + - uid: 2167 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-23.5 + parent: 1 + type: Transform + - uid: 2168 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-23.5 + parent: 1 + type: Transform + - uid: 2170 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-23.5 + parent: 1 + type: Transform + - uid: 2171 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-24.5 + parent: 1 + type: Transform + - uid: 2172 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-26.5 + parent: 1 + type: Transform + - uid: 2174 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-11.5 + parent: 1 + type: Transform + - uid: 2175 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-12.5 + parent: 1 + type: Transform + - uid: 2176 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-23.5 + parent: 1 + type: Transform + - uid: 2177 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-25.5 + parent: 1 + type: Transform + - uid: 2178 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-26.5 + parent: 1 + type: Transform + - uid: 2179 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-13.5 + parent: 1 + type: Transform + - uid: 2180 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-10.5 + parent: 1 + type: Transform + - uid: 2182 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-14.5 + parent: 1 + type: Transform + - uid: 2183 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-11.5 + parent: 1 + type: Transform + - uid: 2184 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-11.5 + parent: 1 + type: Transform + - uid: 2185 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-11.5 + parent: 1 + type: Transform + - uid: 2187 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-11.5 + parent: 1 + type: Transform + - uid: 2188 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-18.5 + parent: 1 + type: Transform + - uid: 2189 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-14.5 + parent: 1 + type: Transform + - uid: 2190 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-14.5 + parent: 1 + type: Transform + - uid: 2191 + components: + - rot: 3.141592653589793 rad + pos: -34.5,-14.5 + parent: 1 + type: Transform + - uid: 2192 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-24.5 + parent: 1 + type: Transform + - uid: 2193 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-18.5 + parent: 1 + type: Transform + - uid: 2194 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-14.5 + parent: 1 + type: Transform + - uid: 2195 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-21.5 + parent: 1 + type: Transform + - uid: 2196 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-19.5 + parent: 1 + type: Transform + - uid: 2197 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-18.5 + parent: 1 + type: Transform + - uid: 2198 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-18.5 + parent: 1 + type: Transform + - uid: 2199 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-19.5 + parent: 1 + type: Transform + - uid: 2200 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-20.5 + parent: 1 + type: Transform + - uid: 2202 + components: + - rot: 3.141592653589793 rad + pos: -35.5,-14.5 + parent: 1 + type: Transform + - uid: 2204 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-13.5 + parent: 1 + type: Transform + - uid: 2205 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-15.5 + parent: 1 + type: Transform + - uid: 2206 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-16.5 + parent: 1 + type: Transform + - uid: 2207 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-16.5 + parent: 1 + type: Transform + - uid: 2208 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-15.5 + parent: 1 + type: Transform + - uid: 2209 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-17.5 + parent: 1 + type: Transform + - uid: 2210 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-11.5 + parent: 1 + type: Transform + - uid: 2211 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-12.5 + parent: 1 + type: Transform + - uid: 2212 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-17.5 + parent: 1 + type: Transform + - uid: 2213 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-18.5 + parent: 1 + type: Transform + - uid: 2214 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-18.5 + parent: 1 + type: Transform + - uid: 2215 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-18.5 + parent: 1 + type: Transform + - uid: 2216 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-18.5 + parent: 1 + type: Transform + - uid: 2237 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-17.5 + parent: 1 + type: Transform + - uid: 2238 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-18.5 + parent: 1 + type: Transform + - uid: 2239 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-19.5 + parent: 1 + type: Transform + - uid: 2251 + components: + - pos: -23.5,-27.5 + parent: 1 + type: Transform + - uid: 2253 + components: + - pos: -21.5,-27.5 + parent: 1 + type: Transform + - uid: 2254 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-23.5 + parent: 1 + type: Transform + - uid: 2256 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-24.5 + parent: 1 + type: Transform + - uid: 2257 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-23.5 + parent: 1 + type: Transform + - uid: 2258 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-23.5 + parent: 1 + type: Transform + - uid: 2259 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-23.5 + parent: 1 + type: Transform + - uid: 2261 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-23.5 + parent: 1 + type: Transform + - uid: 2310 + components: + - pos: 12.5,31.5 + parent: 1 + type: Transform + - uid: 2314 + components: + - pos: 9.5,31.5 + parent: 1 + type: Transform + - uid: 2315 + components: + - pos: 13.5,31.5 + parent: 1 + type: Transform + - uid: 2320 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,31.5 + parent: 1 + type: Transform + - uid: 2322 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,32.5 + parent: 1 + type: Transform + - uid: 2323 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,33.5 + parent: 1 + type: Transform + - uid: 2343 + components: + - rot: 3.141592653589793 rad + pos: 38.5,31.5 + parent: 1 + type: Transform + - uid: 2344 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,19.5 + parent: 1 + type: Transform + - uid: 2345 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,19.5 + parent: 1 + type: Transform + - uid: 2346 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,19.5 + parent: 1 + type: Transform + - uid: 2347 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,19.5 + parent: 1 + type: Transform + - uid: 2348 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,19.5 + parent: 1 + type: Transform + - uid: 2349 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,19.5 + parent: 1 + type: Transform + - uid: 2350 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,20.5 + parent: 1 + type: Transform + - uid: 2352 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,22.5 + parent: 1 + type: Transform + - uid: 2353 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,23.5 + parent: 1 + type: Transform + - uid: 2354 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,24.5 + parent: 1 + type: Transform + - uid: 2355 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,24.5 + parent: 1 + type: Transform + - uid: 2356 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,25.5 + parent: 1 + type: Transform + - uid: 2357 + components: + - rot: 3.141592653589793 rad + pos: 19.5,26.5 + parent: 1 + type: Transform + - uid: 2358 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,27.5 + parent: 1 + type: Transform + - uid: 2359 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,28.5 + parent: 1 + type: Transform + - uid: 2364 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,28.5 + parent: 1 + type: Transform + - uid: 2365 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,28.5 + parent: 1 + type: Transform + - uid: 2366 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,28.5 + parent: 1 + type: Transform + - uid: 2367 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,28.5 + parent: 1 + type: Transform + - uid: 2378 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,19.5 + parent: 1 + type: Transform + - uid: 2380 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,19.5 + parent: 1 + type: Transform + - uid: 2418 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,31.5 + parent: 1 + type: Transform + - uid: 2419 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,31.5 + parent: 1 + type: Transform + - uid: 2420 + components: + - pos: 13.5,32.5 + parent: 1 + type: Transform + - uid: 2421 + components: + - pos: 13.5,33.5 + parent: 1 + type: Transform + - uid: 2423 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,31.5 + parent: 1 + type: Transform + - uid: 2424 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,31.5 + parent: 1 + type: Transform + - uid: 2425 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,31.5 + parent: 1 + type: Transform + - uid: 2431 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,24.5 + parent: 1 + type: Transform + - uid: 2432 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,24.5 + parent: 1 + type: Transform + - uid: 2433 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,24.5 + parent: 1 + type: Transform + - uid: 2441 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-25.5 + parent: 1 + type: Transform + - uid: 3074 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-16.5 + parent: 1 + type: Transform + - uid: 3076 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-14.5 + parent: 1 + type: Transform + - uid: 3077 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-13.5 + parent: 1 + type: Transform + - uid: 3078 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-13.5 + parent: 1 + type: Transform + - uid: 3079 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-13.5 + parent: 1 + type: Transform + - uid: 3110 + components: + - pos: -14.5,-15.5 + parent: 1 + type: Transform + - uid: 3152 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,4.5 + parent: 1 + type: Transform + - uid: 3483 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-21.5 + parent: 1 + type: Transform + - uid: 3484 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-21.5 + parent: 1 + type: Transform + - uid: 3485 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-22.5 + parent: 1 + type: Transform + - uid: 3500 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,1.5 + parent: 1 + type: Transform + - uid: 3549 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-11.5 + parent: 1 + type: Transform + - uid: 5345 + components: + - pos: -32.5,-14.5 + parent: 1 + type: Transform + - uid: 6616 + components: + - pos: 16.5,-2.5 + parent: 1 + type: Transform + - uid: 7237 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-26.5 + parent: 1 + type: Transform + - uid: 8323 + components: + - pos: 11.5,31.5 + parent: 1 + type: Transform + - uid: 8325 + components: + - pos: 8.5,31.5 + parent: 1 + type: Transform +- proto: WallSolidRust + entities: + - uid: 9058 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-28.5 + parent: 1 + type: Transform + - uid: 11950 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,19.5 + parent: 1 + type: Transform +- proto: WallWood + entities: + - uid: 2759 + components: + - pos: -10.5,-54.5 + parent: 1 + type: Transform + - uid: 2760 + components: + - pos: -10.5,-53.5 + parent: 1 + type: Transform + - uid: 2768 + components: + - pos: -10.5,-51.5 + parent: 1 + type: Transform + - uid: 2770 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-47.5 + parent: 1 + type: Transform + - uid: 2771 + components: + - pos: -18.5,-54.5 + parent: 1 + type: Transform + - uid: 2773 + components: + - pos: -11.5,-54.5 + parent: 1 + type: Transform + - uid: 2774 + components: + - pos: -10.5,-48.5 + parent: 1 + type: Transform + - uid: 2775 + components: + - pos: -12.5,-45.5 + parent: 1 + type: Transform + - uid: 2776 + components: + - pos: -10.5,-45.5 + parent: 1 + type: Transform + - uid: 2777 + components: + - pos: -10.5,-46.5 + parent: 1 + type: Transform + - uid: 2779 + components: + - pos: -12.5,-47.5 + parent: 1 + type: Transform + - uid: 2780 + components: + - pos: -11.5,-45.5 + parent: 1 + type: Transform + - uid: 2788 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-51.5 + parent: 1 + type: Transform + - uid: 2789 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-47.5 + parent: 1 + type: Transform + - uid: 2791 + components: + - pos: -15.5,-47.5 + parent: 1 + type: Transform + - uid: 2798 + components: + - pos: -10.5,-52.5 + parent: 1 + type: Transform + - uid: 2801 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-51.5 + parent: 1 + type: Transform + - uid: 2803 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-51.5 + parent: 1 + type: Transform + - uid: 2805 + components: + - pos: -17.5,-54.5 + parent: 1 + type: Transform + - uid: 2808 + components: + - pos: -10.5,-50.5 + parent: 1 + type: Transform + - uid: 2854 + components: + - pos: -10.5,-49.5 + parent: 1 + type: Transform + - uid: 2858 + components: + - pos: -14.5,-47.5 + parent: 1 + type: Transform + - uid: 2859 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-47.5 + parent: 1 + type: Transform + - uid: 2860 + components: + - pos: -13.5,-47.5 + parent: 1 + type: Transform + - uid: 2861 + components: + - pos: -10.5,-47.5 + parent: 1 + type: Transform + - uid: 2872 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-47.5 + parent: 1 + type: Transform + - uid: 2873 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-45.5 + parent: 1 + type: Transform + - uid: 2926 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-50.5 + parent: 1 + type: Transform + - uid: 2932 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-48.5 + parent: 1 + type: Transform +- proto: WardrobeCargoFilled + entities: + - uid: 7240 + components: + - pos: 4.5,-25.5 + parent: 1 + type: Transform +- proto: WardrobeChapelFilled + entities: + - uid: 3479 + components: + - pos: -33.5,14.5 + parent: 1 + type: Transform +- proto: WardrobePrisonFilled + entities: + - uid: 1815 + components: + - pos: 24.5,28.5 + parent: 1 + type: Transform + - uid: 1816 + components: + - pos: 24.5,24.5 + parent: 1 + type: Transform + - uid: 5444 + components: + - pos: 18.5,5.5 + parent: 1 + type: Transform + - uid: 5445 + components: + - pos: 15.5,5.5 + parent: 1 + type: Transform + - uid: 5446 + components: + - pos: 12.5,5.5 + parent: 1 + type: Transform +- proto: WardrobeRobotics + entities: + - uid: 661 + components: + - pos: -12.5,-13.5 + parent: 1 + type: Transform +- proto: WarningCO2 + entities: + - uid: 6969 + components: + - rot: 3.141592653589793 rad + pos: 42.5,-8.5 + parent: 1 + type: Transform +- proto: WarningN2 + entities: + - uid: 6967 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-4.5 + parent: 1 + type: Transform +- proto: WarningN2O + entities: + - uid: 6971 + components: + - rot: 3.141592653589793 rad + pos: 42.5,-10.5 + parent: 1 + type: Transform +- proto: WarningO2 + entities: + - uid: 6968 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-6.5 + parent: 1 + type: Transform +- proto: WarningPlasma + entities: + - uid: 6970 + components: + - rot: 3.141592653589793 rad + pos: 42.5,-14.5 + parent: 1 + type: Transform +- proto: WarningTritium + entities: + - uid: 6972 + components: + - rot: 3.141592653589793 rad + pos: 42.5,-16.5 + parent: 1 + type: Transform +- proto: WarningWaste + entities: + - uid: 6973 + components: + - rot: 3.141592653589793 rad + pos: 42.5,-12.5 + parent: 1 + type: Transform +- proto: WarpPoint + entities: + - uid: 12045 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,10.5 + parent: 1 + type: Transform + - location: bar + type: WarpPoint + - uid: 12046 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,29.5 + parent: 1 + type: Transform + - location: bridge + type: WarpPoint + - uid: 12047 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,52.5 + parent: 1 + type: Transform + - location: ai sat + type: WarpPoint + - uid: 12048 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,10.5 + parent: 1 + type: Transform + - location: med + type: WarpPoint + - uid: 12049 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-3.5 + parent: 1 + type: Transform + - location: sci + type: WarpPoint + - uid: 12050 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-6.5 + parent: 1 + type: Transform + - location: engi + type: WarpPoint + - uid: 12051 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,-10.5 + parent: 1 + type: Transform + - location: atmos + type: WarpPoint + - uid: 12052 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,34.5 + parent: 1 + type: Transform + - location: abandoned evac dock + type: WarpPoint + - uid: 12053 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,13.5 + parent: 1 + type: Transform + - location: sec + type: WarpPoint + - uid: 12054 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,31.5 + parent: 1 + type: Transform + - location: courthouse + type: WarpPoint + - uid: 12055 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,10.5 + parent: 1 + type: Transform + - location: arrivals + type: WarpPoint + - uid: 12056 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-25.5 + parent: 1 + type: Transform + - location: cargo + type: WarpPoint + - uid: 12057 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-25.5 + parent: 1 + type: Transform + - location: dorms + type: WarpPoint + - uid: 12058 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,8.5 + parent: 1 + type: Transform + - location: evac + type: WarpPoint +- proto: WaterCooler + entities: + - uid: 4856 + components: + - pos: 39.5,25.5 + parent: 1 + type: Transform + - uid: 6396 + components: + - pos: -12.5,-18.5 + parent: 1 + type: Transform +- proto: WaterTankFull + entities: + - uid: 4948 + components: + - pos: 33.5,28.5 + parent: 1 + type: Transform + - uid: 7665 + components: + - pos: 13.5,-0.5 + parent: 1 + type: Transform + - uid: 8853 + components: + - pos: -30.5,-10.5 + parent: 1 + type: Transform + - uid: 8859 + components: + - pos: -7.5,-17.5 + parent: 1 + type: Transform + - uid: 9140 + components: + - pos: 14.5,-18.5 + parent: 1 + type: Transform + - uid: 9177 + components: + - pos: 24.5,-0.5 + parent: 1 + type: Transform + - uid: 9377 + components: + - pos: 11.5,17.5 + parent: 1 + type: Transform + - uid: 9378 + components: + - pos: 21.5,26.5 + parent: 1 + type: Transform + - uid: 9536 + components: + - pos: 35.5,7.5 + parent: 1 + type: Transform + - uid: 9690 + components: + - pos: -13.5,25.5 + parent: 1 + type: Transform + - uid: 9710 + components: + - pos: -28.5,14.5 + parent: 1 + type: Transform +- proto: WaterTankHighCapacity + entities: + - uid: 6009 + components: + - pos: -2.5,-5.5 + parent: 1 + type: Transform +- proto: WaterVaporCanister + entities: + - uid: 6811 + components: + - pos: 43.5,-13.5 + parent: 1 + type: Transform +- proto: WeaponCapacitorRecharger + entities: + - uid: 780 + components: + - pos: 16.5,12.5 + parent: 1 + type: Transform + - uid: 784 + components: + - pos: 11.5,15.5 + parent: 1 + type: Transform + - uid: 4116 + components: + - pos: -0.5,27.5 + parent: 1 + type: Transform + - uid: 5060 + components: + - pos: 5.5,18.5 + parent: 1 + type: Transform + - uid: 5330 + components: + - pos: 11.5,8.5 + parent: 1 + type: Transform +- proto: WeaponDisabler + entities: + - uid: 5324 + components: + - pos: 19.372377,15.690639 + parent: 1 + type: Transform + - uid: 5325 + components: + - pos: 19.544252,15.612514 + parent: 1 + type: Transform + - uid: 5326 + components: + - pos: 19.747377,15.550014 + parent: 1 + type: Transform + - uid: 5437 + components: + - pos: 16.478151,15.561477 + parent: 1 + type: Transform +- proto: WeaponLaserCarbine + entities: + - uid: 5424 + components: + - pos: 38.328125,13.694345 + parent: 1 + type: Transform + - uid: 5425 + components: + - pos: 38.375,13.58497 + parent: 1 + type: Transform +- proto: WeaponPistolMk58 + entities: + - uid: 5396 + components: + - pos: 29.446836,16.541578 + parent: 1 + type: Transform + - uid: 5422 + components: + - pos: 37.46875,13.61622 + parent: 1 + type: Transform + - uid: 5436 + components: + - pos: 37.546875,13.55372 + parent: 1 + type: Transform +- proto: WeaponRevolverDeckard + entities: + - uid: 4842 + components: + - flags: InContainer + type: MetaData + - parent: 4120 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: WeaponRifleLecter + entities: + - uid: 5431 + components: + - pos: 38.533405,11.484736 + parent: 1 + type: Transform +- proto: WeaponShotgunKammerer + entities: + - uid: 5426 + components: + - pos: 38.470905,12.377476 + parent: 1 + type: Transform + - uid: 5427 + components: + - pos: 38.54903,12.330601 + parent: 1 + type: Transform +- proto: WeaponSubMachineGunDrozd + entities: + - uid: 5418 + components: + - pos: 36.546875,13.694345 + parent: 1 + type: Transform +- proto: WeaponSubMachineGunDrozdRubber + entities: + - uid: 5310 + components: + - pos: 18.660734,15.690639 + parent: 1 + type: Transform +- proto: WeaponSubMachineGunWt550 + entities: + - uid: 5385 + components: + - pos: 27.524961,14.648642 + parent: 1 + type: Transform +- proto: WeaponTurretSyndicateBroken + entities: + - uid: 2688 + components: + - pos: -10.5,55.5 + parent: 1 + type: Transform + - uid: 2750 + components: + - pos: -2.5,55.5 + parent: 1 + type: Transform + - uid: 2753 + components: + - pos: -2.5,49.5 + parent: 1 + type: Transform + - uid: 2754 + components: + - pos: -10.5,49.5 + parent: 1 + type: Transform +- proto: WelderIndustrialAdvanced + entities: + - uid: 7139 + components: + - pos: 33.606236,-18.496468 + parent: 1 + type: Transform +- proto: WeldingFuelTankFull + entities: + - uid: 6766 + components: + - pos: 20.5,-8.5 + parent: 1 + type: Transform + - uid: 8858 + components: + - pos: -8.5,-17.5 + parent: 1 + type: Transform + - uid: 8860 + components: + - pos: -31.5,-10.5 + parent: 1 + type: Transform + - uid: 9139 + components: + - pos: 13.5,-18.5 + parent: 1 + type: Transform + - uid: 9178 + components: + - pos: 25.5,-0.5 + parent: 1 + type: Transform + - uid: 9375 + components: + - pos: 21.5,27.5 + parent: 1 + type: Transform + - uid: 9376 + components: + - pos: 10.5,17.5 + parent: 1 + type: Transform + - uid: 9535 + components: + - pos: 36.5,7.5 + parent: 1 + type: Transform + - uid: 9689 + components: + - pos: -14.5,25.5 + parent: 1 + type: Transform + - uid: 9709 + components: + - pos: -28.5,13.5 + parent: 1 + type: Transform +- proto: Windoor + entities: + - uid: 8315 + components: + - pos: -28.5,-14.5 + parent: 1 + type: Transform + - uid: 8759 + components: + - pos: -41.5,-16.5 + parent: 1 + type: Transform +- proto: WindoorChapelLocked + entities: + - uid: 3474 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,15.5 + parent: 1 + type: Transform + - uid: 3475 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,16.5 + parent: 1 + type: Transform +- proto: WindoorSecure + entities: + - uid: 3290 + components: + - pos: 0.5,18.5 + parent: 1 + type: Transform + - uid: 3350 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-9.5 + parent: 1 + type: Transform + - uid: 3405 + components: + - pos: -9.5,12.5 + parent: 1 + type: Transform + - uid: 3406 + components: + - pos: -8.5,12.5 + parent: 1 + type: Transform + - uid: 3407 + components: + - rot: 3.141592653589793 rad + pos: -9.5,7.5 + parent: 1 + type: Transform + - uid: 3408 + components: + - rot: 3.141592653589793 rad + pos: -8.5,7.5 + parent: 1 + type: Transform + - uid: 3603 + components: + - pos: -9.5,-4.5 + parent: 1 + type: Transform + - uid: 3604 + components: + - pos: -8.5,-4.5 + parent: 1 + type: Transform + - uid: 5099 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,14.5 + parent: 1 + type: Transform + - uid: 5100 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,13.5 + parent: 1 + type: Transform + - uid: 7245 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-21.5 + parent: 1 + type: Transform + - uid: 7246 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-20.5 + parent: 1 + type: Transform +- proto: WindoorSecureCargoLocked + entities: + - uid: 7243 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-20.5 + parent: 1 + type: Transform + - uid: 7244 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-21.5 + parent: 1 + type: Transform + - uid: 7288 + components: + - pos: 20.5,-24.5 + parent: 1 + type: Transform + - uid: 7290 + components: + - pos: 21.5,-24.5 + parent: 1 + type: Transform +- proto: WindoorSecureChemistryLocked + entities: + - uid: 3401 + components: + - rot: 3.141592653589793 rad + pos: -12.5,12.5 + parent: 1 + type: Transform + - uid: 3402 + components: + - rot: 3.141592653589793 rad + pos: -9.5,12.5 + parent: 1 + type: Transform + - uid: 3403 + components: + - rot: 3.141592653589793 rad + pos: -8.5,12.5 + parent: 1 + type: Transform +- proto: WindoorSecureCommandLocked + entities: + - uid: 3614 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,52.5 + parent: 1 + type: Transform + - uid: 3615 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,52.5 + parent: 1 + type: Transform + - uid: 4127 + components: + - pos: -4.5,25.5 + parent: 1 + type: Transform + - uid: 4730 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,19.5 + parent: 1 + type: Transform + - uid: 4972 + components: + - pos: 4.5,30.5 + parent: 1 + type: Transform +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 3349 + components: + - pos: 12.5,-9.5 + parent: 1 + type: Transform +- proto: WindoorSecureHeadOfPersonnelLocked + entities: + - uid: 3289 + components: + - rot: 3.141592653589793 rad + pos: 0.5,18.5 + parent: 1 + type: Transform +- proto: WindoorSecureMedicalLocked + entities: + - uid: 3404 + components: + - pos: -12.5,12.5 + parent: 1 + type: Transform + - uid: 3409 + components: + - pos: -9.5,7.5 + parent: 1 + type: Transform + - uid: 3410 + components: + - pos: -8.5,7.5 + parent: 1 + type: Transform + - uid: 3558 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,21.5 + parent: 1 + type: Transform + - uid: 3559 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,18.5 + parent: 1 + type: Transform +- proto: WindoorSecureSalvageLocked + entities: + - uid: 7297 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-24.5 + parent: 1 + type: Transform + - uid: 7300 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-24.5 + parent: 1 + type: Transform +- proto: WindoorSecureScienceLocked + entities: + - uid: 3605 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-4.5 + parent: 1 + type: Transform + - uid: 3606 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-4.5 + parent: 1 + type: Transform +- proto: WindoorSecureSecurityLocked + entities: + - uid: 1775 + components: + - rot: 3.141592653589793 rad + pos: 21.5,7.5 + parent: 1 + type: Transform + - uid: 1776 + components: + - rot: 3.141592653589793 rad + pos: 22.5,7.5 + parent: 1 + type: Transform + - uid: 4900 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,34.5 + parent: 1 + type: Transform + - uid: 5097 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,14.5 + parent: 1 + type: Transform + - uid: 5098 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,13.5 + parent: 1 + type: Transform + - uid: 5535 + components: + - pos: 12.5,7.5 + parent: 1 + type: Transform + - links: + - 12485 + type: DeviceLinkSink + - uid: 5536 + components: + - pos: 15.5,7.5 + parent: 1 + type: Transform + - links: + - 12486 + type: DeviceLinkSink + - uid: 5537 + components: + - pos: 18.5,7.5 + parent: 1 + type: Transform + - links: + - 12487 + type: DeviceLinkSink + - uid: 12003 + components: + - pos: 36.5,13.5 + parent: 1 + type: Transform + - uid: 12004 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,12.5 + parent: 1 + type: Transform + - uid: 12005 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,11.5 + parent: 1 + type: Transform +- proto: WindoorServiceLocked + entities: + - uid: 3375 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 3376 + components: + - pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 3377 + components: + - pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 3378 + components: + - rot: 3.141592653589793 rad + pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 3379 + components: + - rot: 3.141592653589793 rad + pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 3380 + components: + - rot: 3.141592653589793 rad + pos: 5.5,7.5 + parent: 1 + type: Transform +- proto: Window + entities: + - uid: 40 + components: + - pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 41 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 73 + components: + - pos: -1.5,13.5 + parent: 1 + type: Transform + - uid: 75 + components: + - pos: -2.5,12.5 + parent: 1 + type: Transform + - uid: 77 + components: + - pos: -3.5,11.5 + parent: 1 + type: Transform + - uid: 78 + components: + - pos: 4.5,13.5 + parent: 1 + type: Transform + - uid: 79 + components: + - pos: -1.5,12.5 + parent: 1 + type: Transform + - uid: 80 + components: + - pos: 5.5,12.5 + parent: 1 + type: Transform + - uid: 81 + components: + - pos: 4.5,12.5 + parent: 1 + type: Transform + - uid: 82 + components: + - pos: 6.5,11.5 + parent: 1 + type: Transform + - uid: 84 + components: + - pos: 5.5,11.5 + parent: 1 + type: Transform + - uid: 86 + components: + - pos: -2.5,11.5 + parent: 1 + type: Transform + - uid: 95 + components: + - pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 96 + components: + - pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 97 + components: + - pos: 6.5,6.5 + parent: 1 + type: Transform + - uid: 98 + components: + - pos: 6.5,5.5 + parent: 1 + type: Transform + - uid: 420 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,28.5 + parent: 1 + type: Transform + - uid: 1604 + components: + - pos: -0.5,-20.5 + parent: 1 + type: Transform + - uid: 1611 + components: + - pos: -0.5,-21.5 + parent: 1 + type: Transform + - uid: 1619 + components: + - pos: -0.5,-22.5 + parent: 1 + type: Transform + - uid: 1625 + components: + - pos: -5.5,-23.5 + parent: 1 + type: Transform + - uid: 1626 + components: + - pos: -4.5,-23.5 + parent: 1 + type: Transform + - uid: 1627 + components: + - pos: -2.5,-23.5 + parent: 1 + type: Transform + - uid: 1628 + components: + - pos: -1.5,-23.5 + parent: 1 + type: Transform + - uid: 1987 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,4.5 + parent: 1 + type: Transform + - uid: 1988 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,4.5 + parent: 1 + type: Transform + - uid: 1989 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,4.5 + parent: 1 + type: Transform + - uid: 1990 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,4.5 + parent: 1 + type: Transform + - uid: 2092 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,0.5 + parent: 1 + type: Transform + - uid: 2110 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,0.5 + parent: 1 + type: Transform + - uid: 2111 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,0.5 + parent: 1 + type: Transform + - uid: 4820 + components: + - pos: 44.5,24.5 + parent: 1 + type: Transform + - uid: 4821 + components: + - pos: 46.5,24.5 + parent: 1 + type: Transform +- proto: WindowDirectional + entities: + - uid: 315 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,19.5 + parent: 1 + type: Transform + - uid: 316 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,20.5 + parent: 1 + type: Transform +- proto: WindowFrostedDirectional + entities: + - uid: 312 + components: + - pos: -10.5,20.5 + parent: 1 + type: Transform + - uid: 313 + components: + - pos: -11.5,20.5 + parent: 1 + type: Transform + - uid: 3473 + components: + - rot: 3.141592653589793 rad + pos: -33.5,14.5 + parent: 1 + type: Transform + - uid: 9631 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,27.5 + parent: 1 + type: Transform + - uid: 9632 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,25.5 + parent: 1 + type: Transform + - uid: 12452 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 12453 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + type: Transform +- proto: WindowReinforcedDirectional + entities: + - uid: 727 + components: + - rot: 3.141592653589793 rad + pos: 20.5,7.5 + parent: 1 + type: Transform + - uid: 728 + components: + - rot: 3.141592653589793 rad + pos: 23.5,7.5 + parent: 1 + type: Transform + - uid: 1688 + components: + - pos: 46.5,33.5 + parent: 1 + type: Transform + - uid: 1697 + components: + - pos: 5.5,-19.5 + parent: 1 + type: Transform + - uid: 1698 + components: + - pos: 4.5,-19.5 + parent: 1 + type: Transform + - uid: 1699 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-20.5 + parent: 1 + type: Transform + - uid: 1700 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-21.5 + parent: 1 + type: Transform + - uid: 3556 + components: + - pos: 45.5,33.5 + parent: 1 + type: Transform + - uid: 3583 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-23.5 + parent: 1 + type: Transform + - uid: 3798 + components: + - pos: -1.5,17.5 + parent: 1 + type: Transform + - uid: 3799 + components: + - pos: -0.5,17.5 + parent: 1 + type: Transform + - uid: 3800 + components: + - pos: 0.5,17.5 + parent: 1 + type: Transform + - uid: 4126 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,25.5 + parent: 1 + type: Transform + - uid: 4895 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,33.5 + parent: 1 + type: Transform + - uid: 4969 + components: + - pos: 3.5,30.5 + parent: 1 + type: Transform + - uid: 4970 + components: + - pos: 5.5,30.5 + parent: 1 + type: Transform + - uid: 11963 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,13.5 + parent: 1 + type: Transform + - uid: 12000 + components: + - pos: 38.5,12.5 + parent: 1 + type: Transform + - uid: 12001 + components: + - pos: 38.5,11.5 + parent: 1 + type: Transform + - uid: 12002 + components: + - rot: 3.141592653589793 rad + pos: 38.5,12.5 + parent: 1 + type: Transform +- proto: Wirecutter + entities: + - uid: 6073 + components: + - pos: -6.449393,-15.322836 + parent: 1 + type: Transform +- proto: WoodDoor + entities: + - uid: 3088 + components: + - pos: -34.5,13.5 + parent: 1 + type: Transform + - uid: 3446 + components: + - pos: -37.5,12.5 + parent: 1 + type: Transform +- proto: Wrench + entities: + - uid: 5603 + components: + - pos: -23.498562,5.5333753 + parent: 1 + type: Transform + - uid: 6090 + components: + - pos: -28.522102,-7.4028454 + parent: 1 + type: Transform +- proto: YellowOxygenTankFilled + entities: + - uid: 8928 + components: + - pos: -33.421288,-7.524516 + parent: 1 + type: Transform + - uid: 9731 + components: + - pos: -28.423817,12.547613 + parent: 1 + type: Transform +... diff --git a/Resources/Maps/edge.yml b/Resources/Maps/edge.yml index 6dfa89136d4..3991bc7d9fb 100644 --- a/Resources/Maps/edge.yml +++ b/Resources/Maps/edge.yml @@ -48695,7 +48695,7 @@ entities: - pos: -35.587036,11.55296 parent: 2 type: Transform -- proto: FoodTinBeansOpen +- proto: FoodTinBeans entities: - uid: 6068 components: diff --git a/Resources/Maps/fland.yml b/Resources/Maps/fland.yml index 1799cc64fc1..e3f491e95fb 100644 --- a/Resources/Maps/fland.yml +++ b/Resources/Maps/fland.yml @@ -30481,8 +30481,6 @@ entities: - pos: -20.5,23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 675 components: - pos: -20.5,22.5 @@ -30663,8 +30661,6 @@ entities: - pos: -11.5,11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 711 components: - pos: -11.5,10.5 @@ -30790,8 +30786,6 @@ entities: - pos: -10.5,23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 736 components: - pos: -10.5,24.5 @@ -30907,8 +30901,6 @@ entities: - pos: -4.5,30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 759 components: - pos: -4.5,29.5 @@ -30939,8 +30931,6 @@ entities: - pos: -6.5,30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 765 components: - pos: -6.5,31.5 @@ -30991,8 +30981,6 @@ entities: - pos: -14.5,27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 775 components: - pos: -14.5,26.5 @@ -31063,8 +31051,6 @@ entities: - pos: -4.5,33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 789 components: - pos: -4.5,34.5 @@ -31305,8 +31291,6 @@ entities: - pos: 4.5,14.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 1509 components: - pos: 4.5,13.5 @@ -31342,8 +31326,6 @@ entities: - pos: -2.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 1914 components: - pos: -2.5,6.5 @@ -31634,8 +31616,6 @@ entities: - pos: -12.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2010 components: - pos: -11.5,1.5 @@ -31681,50 +31661,36 @@ entities: - pos: -7.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2019 components: - pos: -7.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2020 components: - pos: -7.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2021 components: - pos: -10.5,-2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2022 components: - pos: -9.5,-2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2023 components: - pos: -11.5,-2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2024 components: - pos: -15.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2025 components: - pos: -15.5,0.5 @@ -31780,8 +31746,6 @@ entities: - pos: -8.5,-11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2219 components: - pos: -8.5,-10.5 @@ -31882,8 +31846,6 @@ entities: - pos: -16.5,-9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2278 components: - pos: -17.5,-9.5 @@ -31914,8 +31876,6 @@ entities: - pos: -18.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2284 components: - pos: -18.5,-8.5 @@ -31936,36 +31896,26 @@ entities: - pos: -37.5,-9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2933 components: - pos: -37.5,-22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3064 components: - pos: -37.5,-21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3065 components: - pos: -37.5,-23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4193 components: - pos: -32.5,28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4194 components: - pos: -32.5,27.5 @@ -32046,8 +31996,6 @@ entities: - pos: -26.5,36.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4210 components: - pos: -27.5,36.5 @@ -32403,78 +32351,56 @@ entities: - pos: -30.5,25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4281 components: - pos: -29.5,25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4282 components: - pos: -28.5,25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4283 components: - pos: -27.5,25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4284 components: - pos: -27.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4285 components: - pos: -27.5,23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4286 components: - pos: -29.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4287 components: - pos: -29.5,23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4288 components: - pos: -29.5,22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4289 components: - pos: -30.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4477 components: - pos: -26.5,41.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4478 components: - pos: -25.5,41.5 @@ -32520,15 +32446,11 @@ entities: - pos: -22.5,43.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4487 components: - pos: -21.5,43.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4491 components: - pos: -23.5,38.5 @@ -32554,29 +32476,21 @@ entities: - pos: -19.5,38.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4496 components: - pos: -19.5,39.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4497 components: - pos: -19.5,40.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4498 components: - pos: -19.5,41.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4499 components: - pos: -19.5,42.5 @@ -32587,64 +32501,46 @@ entities: - pos: -19.5,37.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4501 components: - pos: -19.5,36.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4502 components: - pos: -19.5,35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4503 components: - pos: -19.5,34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4504 components: - pos: -20.5,34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4505 components: - pos: -21.5,34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4506 components: - pos: -22.5,34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4507 components: - pos: -23.5,34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4649 components: - pos: -36.5,51.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4650 components: - pos: -36.5,50.5 @@ -32715,8 +32611,6 @@ entities: - pos: -18.5,56.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5762 components: - pos: -18.5,55.5 @@ -32872,8 +32766,6 @@ entities: - pos: -22.5,63.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5793 components: - pos: -22.5,62.5 @@ -32904,8 +32796,6 @@ entities: - pos: -26.5,59.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5799 components: - pos: -26.5,58.5 @@ -32961,8 +32851,6 @@ entities: - pos: -11.5,53.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5810 components: - pos: -11.5,54.5 @@ -33088,8 +32976,6 @@ entities: - pos: -14.5,67.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5835 components: - pos: -14.5,66.5 @@ -33260,8 +33146,6 @@ entities: - pos: -12.5,71.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5869 components: - pos: -11.5,71.5 @@ -33327,8 +33211,6 @@ entities: - pos: -20.5,74.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5882 components: - pos: -20.5,73.5 @@ -33474,64 +33356,46 @@ entities: - pos: -23.5,72.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5912 components: - pos: -24.5,72.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5913 components: - pos: -25.5,72.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5914 components: - pos: -25.5,73.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5915 components: - pos: -25.5,71.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5916 components: - pos: -25.5,70.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5917 components: - pos: -25.5,69.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5918 components: - pos: -25.5,68.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5919 components: - pos: -25.5,67.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5920 components: - pos: -27.5,59.5 @@ -33542,36 +33406,26 @@ entities: - pos: -27.5,60.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5922 components: - pos: -27.5,61.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5923 components: - pos: -27.5,62.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5924 components: - pos: -27.5,63.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5925 components: - pos: -27.5,64.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5926 components: - pos: -21.5,65.5 @@ -33587,22 +33441,16 @@ entities: - pos: -23.5,65.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5929 components: - pos: -24.5,65.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5930 components: - pos: -34.5,59.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5931 components: - pos: -34.5,58.5 @@ -33758,141 +33606,101 @@ entities: - pos: -33.5,60.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5962 components: - pos: -33.5,61.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5963 components: - pos: -33.5,62.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5964 components: - pos: -33.5,63.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5965 components: - pos: -33.5,64.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5966 components: - pos: -33.5,65.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5967 components: - pos: -34.5,65.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5968 components: - pos: -34.5,66.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5969 components: - pos: -34.5,67.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5970 components: - pos: -35.5,67.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5971 components: - pos: -36.5,67.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5972 components: - pos: -37.5,67.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5973 components: - pos: -38.5,67.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5974 components: - pos: -32.5,65.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5975 components: - pos: -31.5,65.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5976 components: - pos: -30.5,65.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5977 components: - pos: -29.5,65.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5978 components: - pos: -26.5,73.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5979 components: - pos: -27.5,73.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5980 components: - pos: -28.5,73.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5981 components: - pos: -29.5,73.5 @@ -33903,36 +33711,26 @@ entities: - pos: -30.5,73.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5983 components: - pos: -30.5,72.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5984 components: - pos: -30.5,74.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5985 components: - pos: -30.5,66.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5986 components: - pos: -30.5,67.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5987 components: - pos: -30.5,68.5 @@ -34043,8 +33841,6 @@ entities: - pos: -11.5,43.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6199 components: - pos: -11.5,44.5 @@ -34075,8 +33871,6 @@ entities: - pos: -8.5,43.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6205 components: - pos: -8.5,44.5 @@ -34147,29 +33941,21 @@ entities: - pos: -30.5,64.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6385 components: - pos: -30.5,63.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6386 components: - pos: -30.5,62.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6387 components: - pos: -30.5,61.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6773 components: - pos: -7.5,69.5 @@ -34185,8 +33971,6 @@ entities: - pos: -6.5,69.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6776 components: - pos: -5.5,69.5 @@ -34212,29 +33996,21 @@ entities: - pos: -4.5,72.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6781 components: - pos: -4.5,73.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6782 components: - pos: -4.5,74.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6783 components: - pos: -4.5,75.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6784 components: - pos: -4.5,68.5 @@ -34245,8 +34021,6 @@ entities: - pos: 6.5,31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6826 components: - pos: 6.5,30.5 @@ -34507,8 +34281,6 @@ entities: - pos: -2.5,35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6878 components: - pos: -1.5,35.5 @@ -34589,8 +34361,6 @@ entities: - pos: 36.5,23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8688 components: - pos: 36.5,22.5 @@ -34676,22 +34446,16 @@ entities: - pos: 34.5,19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8705 components: - pos: 34.5,17.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8706 components: - pos: 26.5,20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8707 components: - pos: 27.5,20.5 @@ -34767,8 +34531,6 @@ entities: - pos: 26.5,17.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8722 components: - pos: 26.5,18.5 @@ -34779,8 +34541,6 @@ entities: - pos: 26.5,19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8724 components: - pos: 27.5,16.5 @@ -34791,8 +34551,6 @@ entities: - pos: 27.5,15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8726 components: - pos: 27.5,21.5 @@ -34803,15 +34561,11 @@ entities: - pos: 26.5,21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8728 components: - pos: 26.5,22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8729 components: - pos: 27.5,22.5 @@ -34832,8 +34586,6 @@ entities: - pos: 26.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8733 components: - pos: 26.5,25.5 @@ -34844,8 +34596,6 @@ entities: - pos: 26.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8735 components: - pos: 27.5,26.5 @@ -34946,43 +34696,31 @@ entities: - pos: 32.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8755 components: - pos: 33.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8756 components: - pos: 34.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8757 components: - pos: 35.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8758 components: - pos: 36.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8759 components: - pos: 37.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8760 components: - pos: 38.5,29.5 @@ -35013,8 +34751,6 @@ entities: - pos: 19.5,27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8766 components: - pos: 19.5,26.5 @@ -35065,29 +34801,21 @@ entities: - pos: 24.5,28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8776 components: - pos: 24.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8777 components: - pos: 24.5,30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8778 components: - pos: 24.5,31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8779 components: - pos: 18.5,26.5 @@ -35123,22 +34851,16 @@ entities: - pos: 19.5,22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8786 components: - pos: 19.5,23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8787 components: - pos: 19.5,21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8788 components: - pos: 17.5,22.5 @@ -35189,8 +34911,6 @@ entities: - pos: 21.5,16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8798 components: - pos: 21.5,15.5 @@ -35301,8 +35021,6 @@ entities: - pos: 22.5,12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8820 components: - pos: 21.5,17.5 @@ -35358,8 +35076,6 @@ entities: - pos: 24.5,15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8831 components: - pos: 24.5,14.5 @@ -35395,8 +35111,6 @@ entities: - pos: 32.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8838 components: - pos: 32.5,7.5 @@ -35512,36 +35226,26 @@ entities: - pos: 24.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8861 components: - pos: 24.5,3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8862 components: - pos: 24.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8863 components: - pos: 24.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8864 components: - pos: 24.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8865 components: - pos: 27.5,5.5 @@ -35552,8 +35256,6 @@ entities: - pos: 27.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8867 components: - pos: 27.5,3.5 @@ -35574,15 +35276,11 @@ entities: - pos: 27.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8871 components: - pos: 28.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8872 components: - pos: 30.5,5.5 @@ -35593,8 +35291,6 @@ entities: - pos: 30.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8874 components: - pos: 30.5,3.5 @@ -35615,15 +35311,11 @@ entities: - pos: 30.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8878 components: - pos: 31.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8879 components: - pos: 33.5,6.5 @@ -35639,8 +35331,6 @@ entities: - pos: 33.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8882 components: - pos: 33.5,3.5 @@ -35661,15 +35351,11 @@ entities: - pos: 33.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8886 components: - pos: 34.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8887 components: - pos: 34.5,6.5 @@ -35720,57 +35406,41 @@ entities: - pos: 37.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8897 components: - pos: 36.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8898 components: - pos: 38.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8899 components: - pos: 39.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8900 components: - pos: 38.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8901 components: - pos: 39.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8902 components: - pos: 36.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8903 components: - pos: 30.5,15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8904 components: - pos: 30.5,14.5 @@ -35811,8 +35481,6 @@ entities: - pos: 29.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8912 components: - pos: 28.5,8.5 @@ -35823,8 +35491,6 @@ entities: - pos: 27.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8914 components: - pos: 27.5,9.5 @@ -35835,15 +35501,11 @@ entities: - pos: 26.5,9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8916 components: - pos: 26.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8917 components: - pos: 29.5,13.5 @@ -35864,15 +35526,11 @@ entities: - pos: 26.5,13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8921 components: - pos: 26.5,14.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8922 components: - pos: 31.5,12.5 @@ -35883,22 +35541,16 @@ entities: - pos: 32.5,12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8924 components: - pos: 32.5,11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8926 components: - pos: 34.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8927 components: - pos: 34.5,9.5 @@ -35934,15 +35586,11 @@ entities: - pos: 34.5,15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8934 components: - pos: 36.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8935 components: - pos: 36.5,9.5 @@ -35968,8 +35616,6 @@ entities: - pos: 37.5,12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8940 components: - pos: 37.5,13.5 @@ -35980,15 +35626,11 @@ entities: - pos: 44.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8942 components: - pos: 37.5,14.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8943 components: - pos: 38.5,13.5 @@ -36014,8 +35656,6 @@ entities: - pos: 40.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8948 components: - pos: 40.5,7.5 @@ -36031,8 +35671,6 @@ entities: - pos: 39.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8951 components: - pos: 42.5,5.5 @@ -36173,8 +35811,6 @@ entities: - pos: 48.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8979 components: - pos: 51.5,6.5 @@ -36185,8 +35821,6 @@ entities: - pos: 52.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 8981 components: - pos: 50.5,4.5 @@ -36302,8 +35936,6 @@ entities: - pos: 43.5,16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9004 components: - pos: 43.5,17.5 @@ -36524,8 +36156,6 @@ entities: - pos: 12.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10795 components: - pos: 11.5,0.5 @@ -36576,8 +36206,6 @@ entities: - pos: 12.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10805 components: - pos: 13.5,2.5 @@ -36683,148 +36311,106 @@ entities: - pos: 7.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10924 components: - pos: 8.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10925 components: - pos: 9.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10926 components: - pos: 9.5,11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10927 components: - pos: 9.5,12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10928 components: - pos: 9.5,13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10929 components: - pos: 9.5,14.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10930 components: - pos: 9.5,15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10931 components: - pos: 9.5,16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10932 components: - pos: 10.5,16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10933 components: - pos: 11.5,16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10934 components: - pos: 12.5,16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10935 components: - pos: 4.5,15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10936 components: - pos: 5.5,15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10937 components: - pos: 6.5,15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10938 components: - pos: 7.5,15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10939 components: - pos: 8.5,15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10940 components: - pos: 5.5,16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10941 components: - pos: 5.5,17.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10942 components: - pos: 5.5,18.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10943 components: - pos: 9.5,9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10944 components: - pos: 7.5,22.5 @@ -36835,43 +36421,31 @@ entities: - pos: 8.5,22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10946 components: - pos: 9.5,22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10947 components: - pos: 10.5,22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10948 components: - pos: 11.5,22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10949 components: - pos: 12.5,22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10950 components: - pos: 12.5,23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10951 components: - pos: 7.5,29.5 @@ -36882,29 +36456,21 @@ entities: - pos: 8.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10953 components: - pos: 9.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10954 components: - pos: 10.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10955 components: - pos: 9.5,30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10956 components: - pos: 18.5,27.5 @@ -36920,71 +36486,51 @@ entities: - pos: 18.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10959 components: - pos: 19.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10960 components: - pos: 19.5,30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10961 components: - pos: 17.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10962 components: - pos: 16.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10963 components: - pos: 15.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10964 components: - pos: 14.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10965 components: - pos: 14.5,28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10966 components: - pos: 14.5,27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11156 components: - pos: -6.5,-24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11157 components: - pos: -5.5,-24.5 @@ -37015,29 +36561,21 @@ entities: - pos: -4.5,-28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11163 components: - pos: -3.5,-28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11164 components: - pos: -5.5,-28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11165 components: - pos: -2.5,-23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11166 components: - pos: -1.5,-23.5 @@ -37103,8 +36641,6 @@ entities: - pos: -3.5,-21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11179 components: - pos: -2.5,-21.5 @@ -37160,50 +36696,36 @@ entities: - pos: -4.5,-21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11190 components: - pos: -4.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11191 components: - pos: -5.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11192 components: - pos: -6.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11193 components: - pos: -7.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11194 components: - pos: -8.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11195 components: - pos: -4.5,-15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11196 components: - pos: -3.5,-15.5 @@ -37304,85 +36826,61 @@ entities: - pos: -4.5,-15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11216 components: - pos: -5.5,-15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11217 components: - pos: -5.5,-16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11218 components: - pos: -5.5,-17.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11219 components: - pos: -5.5,-14.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11220 components: - pos: -5.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11221 components: - pos: -5.5,-12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11222 components: - pos: -5.5,-11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11223 components: - pos: -5.5,-10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11224 components: - pos: -5.5,-9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11225 components: - pos: -5.5,-8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11286 components: - pos: 9.5,-19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11287 components: - pos: 9.5,-20.5 @@ -37548,43 +37046,31 @@ entities: - pos: 2.5,-34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11320 components: - pos: 2.5,-33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11321 components: - pos: 3.5,-33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11322 components: - pos: 2.5,-38.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11323 components: - pos: 2.5,-39.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11324 components: - pos: 3.5,-39.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11325 components: - pos: 7.5,-38.5 @@ -37595,29 +37081,21 @@ entities: - pos: 7.5,-39.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11327 components: - pos: 6.5,-39.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11328 components: - pos: 8.5,-39.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11329 components: - pos: 9.5,-39.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11330 components: - pos: 10.5,-36.5 @@ -37628,29 +37106,21 @@ entities: - pos: 11.5,-36.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11332 components: - pos: 11.5,-37.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11333 components: - pos: 11.5,-35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11334 components: - pos: 11.5,-31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11335 components: - pos: 8.5,-27.5 @@ -37661,15 +37131,11 @@ entities: - pos: 11.5,-30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11337 components: - pos: 11.5,-32.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11338 components: - pos: 10.5,-31.5 @@ -37785,8 +37251,6 @@ entities: - pos: 10.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11361 components: - pos: 9.5,-13.5 @@ -37862,8 +37326,6 @@ entities: - pos: 3.5,-14.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11376 components: - pos: 3.5,-13.5 @@ -37939,22 +37401,16 @@ entities: - pos: 6.5,-14.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11391 components: - pos: 9.5,-14.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11392 components: - pos: 14.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11393 components: - pos: 15.5,-13.5 @@ -37995,15 +37451,11 @@ entities: - pos: 22.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11401 components: - pos: 22.5,-14.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11402 components: - pos: 21.5,-12.5 @@ -38019,8 +37471,6 @@ entities: - pos: 22.5,-11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11405 components: - pos: 21.5,-10.5 @@ -38036,8 +37486,6 @@ entities: - pos: 22.5,-9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11408 components: - pos: 20.5,-9.5 @@ -38073,8 +37521,6 @@ entities: - pos: 14.5,-9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11415 components: - pos: 20.5,-11.5 @@ -38110,8 +37556,6 @@ entities: - pos: 14.5,-11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11422 components: - pos: 9.5,-11.5 @@ -38122,8 +37566,6 @@ entities: - pos: 10.5,-11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11424 components: - pos: 9.5,-9.5 @@ -38134,8 +37576,6 @@ entities: - pos: 10.5,-9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11426 components: - pos: 15.5,-14.5 @@ -38181,8 +37621,6 @@ entities: - pos: 16.5,-28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11435 components: - pos: 16.5,-29.5 @@ -38208,22 +37646,16 @@ entities: - pos: 16.5,-33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11440 components: - pos: 16.5,-34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11441 components: - pos: 16.5,-35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11442 components: - pos: 15.5,-30.5 @@ -38254,50 +37686,36 @@ entities: - pos: 13.5,-33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11448 components: - pos: 15.5,-35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11449 components: - pos: 15.5,-34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11450 components: - pos: 17.5,-35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11451 components: - pos: 17.5,-36.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11452 components: - pos: 18.5,-35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11453 components: - pos: 18.5,-34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11454 components: - pos: 17.5,-31.5 @@ -38328,8 +37746,6 @@ entities: - pos: 20.5,-33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11460 components: - pos: 20.5,-30.5 @@ -38375,29 +37791,21 @@ entities: - pos: 20.5,-22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11469 components: - pos: 20.5,-21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11470 components: - pos: 19.5,-21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11471 components: - pos: 19.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11892 components: - pos: 24.5,-0.5 @@ -38568,29 +37976,21 @@ entities: - pos: -18.5,-14.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12006 components: - pos: -18.5,-15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12007 components: - pos: -18.5,-16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12008 components: - pos: -19.5,-16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12009 components: - pos: -20.5,-16.5 @@ -38686,50 +38086,36 @@ entities: - pos: -13.5,-17.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12101 components: - pos: -13.5,-18.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12102 components: - pos: -13.5,-19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12103 components: - pos: -13.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12104 components: - pos: -14.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12105 components: - pos: -15.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12106 components: - pos: -16.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12107 components: - pos: -17.5,-20.5 @@ -38755,8 +38141,6 @@ entities: - pos: -20.5,-21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12112 components: - pos: -18.5,-21.5 @@ -38772,99 +38156,71 @@ entities: - pos: -18.5,-23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12115 components: - pos: -12.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12116 components: - pos: -12.5,-21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12117 components: - pos: -12.5,-22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12118 components: - pos: -11.5,-22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12119 components: - pos: -10.5,-22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12120 components: - pos: -9.5,-22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12121 components: - pos: -9.5,-23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12122 components: - pos: -9.5,-24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12123 components: - pos: -9.5,-25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12124 components: - pos: -10.5,-25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12125 components: - pos: -11.5,-25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12126 components: - pos: -9.5,-21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12922 components: - pos: -41.5,-48.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12923 components: - pos: -41.5,-49.5 @@ -38965,8 +38321,6 @@ entities: - pos: -33.5,-60.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12943 components: - pos: -32.5,-60.5 @@ -38977,22 +38331,16 @@ entities: - pos: -31.5,-60.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12945 components: - pos: -30.5,-60.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12946 components: - pos: -29.5,-60.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12947 components: - pos: -37.5,-61.5 @@ -39003,15 +38351,11 @@ entities: - pos: -37.5,-62.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12949 components: - pos: -37.5,-63.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12950 components: - pos: -32.5,-61.5 @@ -39022,15 +38366,11 @@ entities: - pos: -32.5,-62.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12952 components: - pos: -32.5,-63.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12953 components: - pos: -40.5,-58.5 @@ -39066,22 +38406,16 @@ entities: - pos: -45.5,-59.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12960 components: - pos: -45.5,-60.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12961 components: - pos: -45.5,-61.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12962 components: - pos: -40.5,-55.5 @@ -39097,22 +38431,16 @@ entities: - pos: -42.5,-55.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12965 components: - pos: -43.5,-55.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12966 components: - pos: -44.5,-55.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12967 components: - pos: -40.5,-50.5 @@ -39138,8 +38466,6 @@ entities: - pos: -37.5,-38.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12972 components: - pos: -38.5,-38.5 @@ -39180,8 +38506,6 @@ entities: - pos: -39.5,-44.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12980 components: - pos: -39.5,-45.5 @@ -39222,8 +38546,6 @@ entities: - pos: -33.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12988 components: - pos: -32.5,-46.5 @@ -39239,22 +38561,16 @@ entities: - pos: -31.5,-47.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12991 components: - pos: -30.5,-47.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12992 components: - pos: -29.5,-47.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12993 components: - pos: -38.5,-40.5 @@ -39400,15 +38716,11 @@ entities: - pos: -41.5,-32.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13022 components: - pos: -42.5,-32.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13023 components: - pos: -40.5,-39.5 @@ -39419,15 +38731,11 @@ entities: - pos: -41.5,-39.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13025 components: - pos: -42.5,-39.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13249 components: - pos: -37.5,-24.5 @@ -39443,15 +38751,11 @@ entities: - pos: -37.5,-7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13255 components: - pos: -37.5,-8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13302 components: - pos: 23.5,-1.5 @@ -39597,22 +38901,16 @@ entities: - pos: -30.5,-21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13429 components: - pos: -30.5,-22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13430 components: - pos: -30.5,-23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13431 components: - pos: -30.5,-24.5 @@ -39628,22 +38926,16 @@ entities: - pos: -30.5,-9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13434 components: - pos: -30.5,-8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13435 components: - pos: -30.5,-7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13436 components: - pos: -30.5,-6.5 @@ -39709,8 +39001,6 @@ entities: - pos: -36.5,-3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13452 components: - pos: -29.5,-5.5 @@ -39751,8 +39041,6 @@ entities: - pos: -29.5,-23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13604 components: - pos: 48.5,-27.5 @@ -39773,22 +39061,16 @@ entities: - pos: -22.5,-28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13622 components: - pos: -22.5,-29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13623 components: - pos: -22.5,-30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13624 components: - pos: -20.5,-25.5 @@ -39834,22 +39116,16 @@ entities: - pos: -16.5,-27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13633 components: - pos: -16.5,-28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13634 components: - pos: -16.5,-29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13635 components: - pos: -28.5,-26.5 @@ -39860,22 +39136,16 @@ entities: - pos: -28.5,-27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13637 components: - pos: -28.5,-28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13638 components: - pos: -28.5,-29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13639 components: - pos: -33.5,-26.5 @@ -39886,22 +39156,16 @@ entities: - pos: -33.5,-27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13641 components: - pos: -33.5,-28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13642 components: - pos: -33.5,-29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13648 components: - pos: -35.5,-3.5 @@ -39912,127 +39176,91 @@ entities: - pos: -35.5,-2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13650 components: - pos: -35.5,-1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13651 components: - pos: -35.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13652 components: - pos: -35.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13653 components: - pos: -35.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13654 components: - pos: -36.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13655 components: - pos: -37.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13656 components: - pos: -38.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13657 components: - pos: -39.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13658 components: - pos: -40.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13659 components: - pos: -41.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13660 components: - pos: -42.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13661 components: - pos: -43.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13662 components: - pos: -44.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13663 components: - pos: -45.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13664 components: - pos: -46.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13665 components: - pos: -41.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13666 components: - pos: -41.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13667 components: - pos: -41.5,-1.5 @@ -40053,8 +39281,6 @@ entities: - pos: -45.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13671 components: - pos: -45.5,-0.5 @@ -40075,29 +39301,21 @@ entities: - pos: -47.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13675 components: - pos: -47.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13676 components: - pos: -47.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14923 components: - pos: 26.5,-26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14924 components: - pos: 26.5,-25.5 @@ -40113,8 +39331,6 @@ entities: - pos: 24.5,-25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14927 components: - pos: 24.5,-26.5 @@ -40125,15 +39341,11 @@ entities: - pos: 24.5,-27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14929 components: - pos: 24.5,-28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14930 components: - pos: 24.5,-29.5 @@ -40164,15 +39376,11 @@ entities: - pos: 24.5,-34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14936 components: - pos: 24.5,-35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14937 components: - pos: 24.5,-36.5 @@ -40183,50 +39391,36 @@ entities: - pos: 24.5,-37.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14939 components: - pos: 24.5,-38.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14940 components: - pos: 25.5,-38.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14941 components: - pos: 26.5,-38.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14942 components: - pos: 23.5,-37.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14943 components: - pos: 22.5,-37.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14944 components: - pos: 22.5,-38.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14945 components: - pos: 23.5,-35.5 @@ -40237,15 +39431,11 @@ entities: - pos: 22.5,-35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14947 components: - pos: 22.5,-34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14948 components: - pos: 27.5,-26.5 @@ -40391,8 +39581,6 @@ entities: - pos: 34.5,-18.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14977 components: - pos: 34.5,-19.5 @@ -40438,8 +39626,6 @@ entities: - pos: 33.5,-18.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14986 components: - pos: 35.5,-19.5 @@ -40460,8 +39646,6 @@ entities: - pos: 37.5,-18.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14990 components: - pos: 37.5,-20.5 @@ -40482,8 +39666,6 @@ entities: - pos: 39.5,-14.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14994 components: - pos: 39.5,-15.5 @@ -40574,8 +39756,6 @@ entities: - pos: 32.5,-12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 15012 components: - pos: 37.5,-15.5 @@ -40596,15 +39776,11 @@ entities: - pos: 37.5,-12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 15016 components: - pos: 37.5,-11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 15022 components: - pos: 40.5,-15.5 @@ -40680,8 +39856,6 @@ entities: - pos: 49.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 15037 components: - pos: 50.5,-20.5 @@ -40732,8 +39906,6 @@ entities: - pos: 52.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 15047 components: - pos: 51.5,-16.5 @@ -40749,8 +39921,6 @@ entities: - pos: 49.5,-16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 15050 components: - pos: 53.5,-14.5 @@ -40766,15 +39936,11 @@ entities: - pos: 54.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 15053 components: - pos: 55.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 15054 components: - pos: 53.5,-16.5 @@ -40850,8 +40016,6 @@ entities: - pos: 49.5,-24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 15069 components: - pos: 49.5,-25.5 @@ -40967,8 +40131,6 @@ entities: - pos: 43.5,-19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 15092 components: - pos: 42.5,-20.5 @@ -40984,15 +40146,11 @@ entities: - pos: 41.5,-19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 15095 components: - pos: 44.5,-22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 15096 components: - pos: 42.5,-23.5 @@ -41008,8 +40166,6 @@ entities: - pos: 41.5,-24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 15099 components: - pos: 47.5,-25.5 @@ -41055,8 +40211,6 @@ entities: - pos: 40.5,-34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 15108 components: - pos: 41.5,-34.5 @@ -41087,15 +40241,11 @@ entities: - pos: 41.5,-31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 15114 components: - pos: 41.5,-30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 15115 components: - pos: 42.5,-32.5 @@ -41121,15 +40271,11 @@ entities: - pos: 45.5,-31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 15120 components: - pos: 45.5,-30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 15121 components: - pos: 44.5,-34.5 @@ -41145,8 +40291,6 @@ entities: - pos: 44.5,-36.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 15124 components: - pos: 44.5,-37.5 @@ -41182,8 +40326,6 @@ entities: - pos: 35.5,-32.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 15131 components: - pos: 35.5,-33.5 @@ -41329,8 +40471,6 @@ entities: - pos: 33.5,-31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 15160 components: - pos: 32.5,-31.5 @@ -41401,8 +40541,6 @@ entities: - pos: 46.5,-40.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 15174 components: - pos: 47.5,-40.5 @@ -41478,8 +40616,6 @@ entities: - pos: 53.5,-28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 15189 components: - pos: 53.5,-29.5 @@ -41795,64 +40931,46 @@ entities: - pos: 33.5,-12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 15294 components: - pos: 33.5,-11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 15295 components: - pos: 33.5,-10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 15296 components: - pos: 33.5,-9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 15297 components: - pos: 33.5,-8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 15298 components: - pos: 33.5,-7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 15299 components: - pos: 33.5,-6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 15300 components: - pos: 33.5,-5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 16129 components: - pos: 64.5,61.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 17679 components: - pos: 10.5,65.5 @@ -41868,15 +40986,11 @@ entities: - pos: 21.5,52.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 17798 components: - pos: 9.5,39.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 17799 components: - pos: 10.5,39.5 @@ -41947,8 +41061,6 @@ entities: - pos: 23.5,42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 17813 components: - pos: 23.5,41.5 @@ -42014,8 +41126,6 @@ entities: - pos: 16.5,36.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 17826 components: - pos: 17.5,37.5 @@ -42031,29 +41141,21 @@ entities: - pos: 16.5,38.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 17829 components: - pos: 18.5,35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 17830 components: - pos: 20.5,35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 17831 components: - pos: 22.5,35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 17832 components: - pos: 24.5,36.5 @@ -42064,8 +41166,6 @@ entities: - pos: 24.5,35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 17834 components: - pos: 22.5,41.5 @@ -42086,8 +41186,6 @@ entities: - pos: 20.5,42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 17838 components: - pos: 24.5,41.5 @@ -42103,8 +41201,6 @@ entities: - pos: 25.5,42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 17841 components: - pos: 22.5,39.5 @@ -42115,8 +41211,6 @@ entities: - pos: 4.5,42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 17843 components: - pos: 4.5,41.5 @@ -42187,8 +41281,6 @@ entities: - pos: 3.5,51.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 17857 components: - pos: 3.5,50.5 @@ -42294,8 +41386,6 @@ entities: - pos: 13.5,52.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 17878 components: - pos: 13.5,51.5 @@ -42326,22 +41416,16 @@ entities: - pos: 13.5,46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 17884 components: - pos: 12.5,46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 17885 components: - pos: 11.5,46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 17886 components: - pos: 11.5,47.5 @@ -42377,8 +41461,6 @@ entities: - pos: 8.5,50.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 17894 components: - pos: 10.5,50.5 @@ -42464,8 +41546,6 @@ entities: - pos: 31.5,44.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 17912 components: - pos: 32.5,44.5 @@ -42581,8 +41661,6 @@ entities: - pos: 21.5,46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 17936 components: - pos: 21.5,45.5 @@ -42773,8 +41851,6 @@ entities: - pos: 24.5,61.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 17974 components: - pos: 24.5,60.5 @@ -42815,22 +41891,16 @@ entities: - pos: 20.5,57.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 17982 components: - pos: 20.5,59.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 17983 components: - pos: 20.5,60.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 17984 components: - pos: 22.5,59.5 @@ -42951,8 +42021,6 @@ entities: - pos: 6.5,57.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18008 components: - pos: 6.5,56.5 @@ -43008,8 +42076,6 @@ entities: - pos: 9.5,57.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18019 components: - pos: 9.5,58.5 @@ -43060,29 +42126,21 @@ entities: - pos: 8.5,57.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18029 components: - pos: 7.5,57.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18030 components: - pos: 10.5,57.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18031 components: - pos: 3.5,64.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18032 components: - pos: 3.5,63.5 @@ -43383,8 +42441,6 @@ entities: - pos: -0.5,59.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18092 components: - pos: -0.5,58.5 @@ -43405,50 +42461,36 @@ entities: - pos: -0.5,52.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18096 components: - pos: -0.5,53.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18097 components: - pos: -0.5,54.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18098 components: - pos: -0.5,55.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18099 components: - pos: 0.5,52.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18606 components: - pos: 22.5,52.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19284 components: - pos: 28.5,-45.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19285 components: - pos: 28.5,-46.5 @@ -43509,8 +42551,6 @@ entities: - pos: 26.5,-54.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19297 components: - pos: 26.5,-55.5 @@ -43541,15 +42581,11 @@ entities: - pos: 27.5,-59.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19303 components: - pos: 27.5,-60.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19304 components: - pos: 25.5,-58.5 @@ -43560,15 +42596,11 @@ entities: - pos: 25.5,-59.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19306 components: - pos: 25.5,-60.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19307 components: - pos: 25.5,-56.5 @@ -43619,8 +42651,6 @@ entities: - pos: 26.5,-40.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19320 components: - pos: 26.5,-41.5 @@ -43631,99 +42661,71 @@ entities: - pos: 26.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19322 components: - pos: 25.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19323 components: - pos: 24.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19324 components: - pos: 24.5,-43.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19325 components: - pos: 24.5,-44.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19326 components: - pos: 24.5,-45.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19327 components: - pos: 24.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19328 components: - pos: 24.5,-47.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19329 components: - pos: 24.5,-48.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19330 components: - pos: 24.5,-49.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19331 components: - pos: 24.5,-50.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19332 components: - pos: 24.5,-51.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19333 components: - pos: 24.5,-52.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19334 components: - pos: 24.5,-53.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19335 components: - pos: 23.5,-50.5 @@ -43734,57 +42736,41 @@ entities: - pos: 22.5,-50.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19337 components: - pos: 21.5,-50.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19338 components: - pos: 27.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19339 components: - pos: 28.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19340 components: - pos: 29.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19341 components: - pos: 30.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19342 components: - pos: 31.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19343 components: - pos: 32.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19344 components: - pos: 33.5,-42.5 @@ -43795,127 +42781,91 @@ entities: - pos: 34.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19346 components: - pos: 35.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19347 components: - pos: 36.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19348 components: - pos: 37.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19349 components: - pos: 38.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19350 components: - pos: 39.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19351 components: - pos: 40.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19352 components: - pos: 41.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19353 components: - pos: 42.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19354 components: - pos: 43.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19355 components: - pos: 43.5,-43.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19356 components: - pos: 43.5,-44.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19357 components: - pos: 43.5,-45.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19358 components: - pos: 43.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19362 components: - pos: 44.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19363 components: - pos: 45.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19364 components: - pos: 45.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19859 components: - pos: 51.5,-44.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19860 components: - pos: 51.5,-45.5 @@ -43926,78 +42876,56 @@ entities: - pos: 51.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19862 components: - pos: 51.5,-47.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19863 components: - pos: 51.5,-48.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19864 components: - pos: 51.5,-49.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19865 components: - pos: 51.5,-50.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19866 components: - pos: 52.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19867 components: - pos: 53.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19868 components: - pos: 54.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19869 components: - pos: 55.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19870 components: - pos: 56.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19871 components: - pos: 57.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19872 components: - pos: 56.5,-45.5 @@ -44013,36 +42941,26 @@ entities: - pos: 56.5,-43.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19875 components: - pos: 50.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19876 components: - pos: 49.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19877 components: - pos: 48.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19878 components: - pos: 47.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19879 components: - pos: 47.5,-47.5 @@ -44053,8 +42971,6 @@ entities: - pos: 47.5,-48.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19881 components: - pos: 47.5,-49.5 @@ -44150,8 +43066,6 @@ entities: - pos: 38.5,-43.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19900 components: - pos: 38.5,-44.5 @@ -44262,43 +43176,31 @@ entities: - pos: 109.5,-21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23698 components: - pos: 97.5,-33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23711 components: - pos: 85.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23717 components: - pos: 71.5,-34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23760 components: - pos: 86.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23964 components: - pos: 112.5,-24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23965 components: - pos: 113.5,-24.5 @@ -44349,29 +43251,21 @@ entities: - pos: 117.5,-25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23975 components: - pos: 117.5,-26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23976 components: - pos: 117.5,-23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23977 components: - pos: 117.5,-22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23978 components: - pos: 113.5,-23.5 @@ -44397,8 +43291,6 @@ entities: - pos: 111.5,-23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23983 components: - pos: 115.5,-25.5 @@ -44424,22 +43316,16 @@ entities: - pos: 96.5,-24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24380 components: - pos: 98.5,-24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24452 components: - pos: 78.5,-32.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24453 components: - pos: 78.5,-33.5 @@ -44450,50 +43336,36 @@ entities: - pos: 78.5,-34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24455 components: - pos: 78.5,-35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24456 components: - pos: 79.5,-35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24457 components: - pos: 79.5,-36.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24458 components: - pos: 79.5,-37.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24459 components: - pos: 79.5,-38.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24460 components: - pos: 79.5,-39.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24461 components: - pos: 79.5,-40.5 @@ -44514,8 +43386,6 @@ entities: - pos: 77.5,-41.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24465 components: - pos: 76.5,-41.5 @@ -44536,8 +43406,6 @@ entities: - pos: 73.5,-41.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24469 components: - pos: 72.5,-41.5 @@ -44558,43 +43426,31 @@ entities: - pos: 71.5,-39.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24473 components: - pos: 71.5,-38.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24474 components: - pos: 71.5,-37.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24475 components: - pos: 71.5,-36.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24476 components: - pos: 71.5,-35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24478 components: - pos: 71.5,-33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24479 components: - pos: 72.5,-33.5 @@ -44630,106 +43486,76 @@ entities: - pos: 70.5,-36.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24486 components: - pos: 69.5,-36.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24487 components: - pos: 68.5,-36.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24488 components: - pos: 71.5,-32.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24489 components: - pos: 71.5,-31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24490 components: - pos: 71.5,-30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24491 components: - pos: 71.5,-29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24492 components: - pos: 71.5,-28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24493 components: - pos: 70.5,-30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24494 components: - pos: 69.5,-30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24495 components: - pos: 68.5,-30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24496 components: - pos: 80.5,-38.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24497 components: - pos: 81.5,-38.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24498 components: - pos: 82.5,-38.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24499 components: - pos: 83.5,-38.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24500 components: - pos: 83.5,-39.5 @@ -44760,36 +43586,26 @@ entities: - pos: 86.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24507 components: - pos: 87.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24508 components: - pos: 88.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24509 components: - pos: 89.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24510 components: - pos: 90.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24511 components: - pos: 91.5,-42.5 @@ -44810,8 +43626,6 @@ entities: - pos: 92.5,-40.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24515 components: - pos: 92.5,-39.5 @@ -44832,8 +43646,6 @@ entities: - pos: 92.5,-36.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24519 components: - pos: 92.5,-35.5 @@ -44854,50 +43666,36 @@ entities: - pos: 92.5,-32.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24523 components: - pos: 92.5,-31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24524 components: - pos: 92.5,-30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24525 components: - pos: 92.5,-29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24526 components: - pos: 92.5,-28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24527 components: - pos: 91.5,-28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24528 components: - pos: 93.5,-28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24529 components: - pos: 91.5,-34.5 @@ -44908,22 +43706,16 @@ entities: - pos: 90.5,-34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24531 components: - pos: 90.5,-33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24532 components: - pos: 90.5,-35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24533 components: - pos: 91.5,-38.5 @@ -44934,36 +43726,26 @@ entities: - pos: 90.5,-38.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24535 components: - pos: 90.5,-37.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24536 components: - pos: 90.5,-39.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24537 components: - pos: 80.5,-39.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24538 components: - pos: 78.5,-39.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24539 components: - pos: 75.5,-40.5 @@ -44974,43 +43756,31 @@ entities: - pos: 75.5,-39.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24541 components: - pos: 76.5,-39.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24542 components: - pos: 74.5,-39.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24543 components: - pos: 72.5,-39.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24544 components: - pos: 70.5,-39.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24545 components: - pos: 78.5,-25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24546 components: - pos: 77.5,-25.5 @@ -45041,8 +43811,6 @@ entities: - pos: 72.5,-25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24552 components: - pos: 71.5,-25.5 @@ -45053,8 +43821,6 @@ entities: - pos: 70.5,-25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24554 components: - pos: 69.5,-25.5 @@ -45085,15 +43851,11 @@ entities: - pos: 67.5,-22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24560 components: - pos: 69.5,-22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24561 components: - pos: 76.5,-24.5 @@ -45114,8 +43876,6 @@ entities: - pos: 80.5,-17.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24565 components: - pos: 80.5,-18.5 @@ -45186,43 +43946,31 @@ entities: - pos: 83.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24579 components: - pos: 84.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24580 components: - pos: 85.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24582 components: - pos: 87.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24583 components: - pos: 88.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24584 components: - pos: 89.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24585 components: - pos: 86.5,-21.5 @@ -45233,8 +43981,6 @@ entities: - pos: 91.5,-30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24587 components: - pos: 90.5,-30.5 @@ -45245,253 +43991,181 @@ entities: - pos: 89.5,-30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24589 components: - pos: 88.5,-30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24590 components: - pos: 87.5,-30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24591 components: - pos: 86.5,-30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24592 components: - pos: 85.5,-30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24593 components: - pos: 84.5,-30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24594 components: - pos: 84.5,-29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24595 components: - pos: 98.5,-28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24596 components: - pos: 83.5,-28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24597 components: - pos: 83.5,-27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24598 components: - pos: 83.5,-26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24599 components: - pos: 83.5,-25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24600 components: - pos: 83.5,-24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24601 components: - pos: 89.5,-29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24602 components: - pos: 89.5,-28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24603 components: - pos: 89.5,-27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24604 components: - pos: 89.5,-26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24605 components: - pos: 89.5,-25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24606 components: - pos: 89.5,-24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24607 components: - pos: 83.5,-29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24608 components: - pos: 82.5,-29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24609 components: - pos: 81.5,-29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24610 components: - pos: 80.5,-29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24611 components: - pos: 79.5,-29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24612 components: - pos: 78.5,-29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24613 components: - pos: 77.5,-29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24614 components: - pos: 76.5,-29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24615 components: - pos: 75.5,-29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24616 components: - pos: 74.5,-29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24617 components: - pos: 73.5,-29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24618 components: - pos: 72.5,-29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24619 components: - pos: 70.5,-33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24620 components: - pos: 69.5,-33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24621 components: - pos: 68.5,-33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24622 components: - pos: 67.5,-33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24623 components: - pos: 66.5,-33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24624 components: - pos: 65.5,-33.5 @@ -45502,309 +44176,221 @@ entities: - pos: 64.5,-33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24626 components: - pos: 63.5,-33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24627 components: - pos: 89.5,-34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24628 components: - pos: 88.5,-34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24629 components: - pos: 87.5,-34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24630 components: - pos: 86.5,-34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24631 components: - pos: 85.5,-34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24632 components: - pos: 84.5,-34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24633 components: - pos: 84.5,-35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24634 components: - pos: 84.5,-36.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24635 components: - pos: 99.5,-32.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24636 components: - pos: 99.5,-33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24637 components: - pos: 99.5,-34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24638 components: - pos: 99.5,-35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24639 components: - pos: 99.5,-36.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24640 components: - pos: 99.5,-37.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24641 components: - pos: 99.5,-38.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24642 components: - pos: 100.5,-36.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24643 components: - pos: 101.5,-36.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24644 components: - pos: 102.5,-36.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24645 components: - pos: 103.5,-36.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24646 components: - pos: 104.5,-36.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24647 components: - pos: 105.5,-36.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24648 components: - pos: 106.5,-36.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24649 components: - pos: 106.5,-35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24650 components: - pos: 106.5,-34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24651 components: - pos: 105.5,-34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24652 components: - pos: 107.5,-34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24653 components: - pos: 106.5,-37.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24654 components: - pos: 106.5,-38.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24655 components: - pos: 105.5,-38.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24656 components: - pos: 107.5,-38.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24659 components: - pos: 102.5,-35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24660 components: - pos: 102.5,-34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24661 components: - pos: 102.5,-33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24662 components: - pos: 103.5,-33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24663 components: - pos: 104.5,-33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24664 components: - pos: 102.5,-37.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24665 components: - pos: 102.5,-38.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24666 components: - pos: 102.5,-39.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24667 components: - pos: 103.5,-39.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24668 components: - pos: 104.5,-39.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24669 components: - pos: 98.5,-38.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24670 components: - pos: 97.5,-38.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24671 components: - pos: 97.5,-39.5 @@ -45820,78 +44406,56 @@ entities: - pos: 97.5,-41.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24674 components: - pos: 97.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24675 components: - pos: 98.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24676 components: - pos: 99.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24677 components: - pos: 100.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24678 components: - pos: 101.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24679 components: - pos: 102.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24680 components: - pos: 98.5,-34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24681 components: - pos: 97.5,-34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24682 components: - pos: 96.5,-18.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24683 components: - pos: 96.5,-19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24684 components: - pos: 96.5,-20.5 @@ -45927,29 +44491,21 @@ entities: - pos: 97.5,-25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24691 components: - pos: 97.5,-26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24692 components: - pos: 97.5,-27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24693 components: - pos: 96.5,-28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24694 components: - pos: 97.5,-28.5 @@ -45990,8 +44546,6 @@ entities: - pos: 97.5,-19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24702 components: - pos: 98.5,-19.5 @@ -46037,8 +44591,6 @@ entities: - pos: 104.5,-21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24711 components: - pos: 105.5,-20.5 @@ -46084,8 +44636,6 @@ entities: - pos: 113.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24720 components: - pos: 114.5,-20.5 @@ -46146,50 +44696,36 @@ entities: - pos: 109.5,-22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24732 components: - pos: 109.5,-23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24733 components: - pos: 106.5,-21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24734 components: - pos: 105.5,-21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24735 components: - pos: 103.5,-21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24736 components: - pos: 108.5,-22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24758 components: - pos: 66.5,-17.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24759 components: - pos: 66.5,-18.5 @@ -46290,15 +44826,11 @@ entities: - pos: 63.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24779 components: - pos: 67.5,-17.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24780 components: - pos: 68.5,-17.5 @@ -46309,8 +44841,6 @@ entities: - pos: 69.5,-17.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24782 components: - pos: 64.5,-22.5 @@ -46321,162 +44851,116 @@ entities: - pos: 64.5,-23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24784 components: - pos: 64.5,-24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24785 components: - pos: 63.5,-23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24786 components: - pos: 62.5,-23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24787 components: - pos: 61.5,-23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24788 components: - pos: 60.5,-23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24789 components: - pos: 59.5,-23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24790 components: - pos: 59.5,-22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24791 components: - pos: 59.5,-21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24792 components: - pos: 59.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24793 components: - pos: 59.5,-19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24794 components: - pos: 59.5,-18.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24795 components: - pos: 59.5,-17.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24796 components: - pos: 59.5,-16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24797 components: - pos: 59.5,-15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24798 components: - pos: 59.5,-14.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24799 components: - pos: 65.5,-24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24800 components: - pos: 65.5,-25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24801 components: - pos: 65.5,-26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24802 components: - pos: 65.5,-27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24803 components: - pos: 65.5,-28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24804 components: - pos: 65.5,-29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24805 components: - pos: 62.5,-6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24806 components: - pos: 62.5,-5.5 @@ -46542,8 +45026,6 @@ entities: - pos: 69.5,-7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24819 components: - pos: 69.5,-8.5 @@ -46649,8 +45131,6 @@ entities: - pos: 72.5,-7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24840 components: - pos: 72.5,-8.5 @@ -46776,8 +45256,6 @@ entities: - pos: 53.5,-5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24926 components: - pos: 52.5,-5.5 @@ -47198,43 +45676,31 @@ entities: - pos: 97.5,-31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25042 components: - pos: 98.5,-31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25043 components: - pos: 99.5,-31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25044 components: - pos: 100.5,-31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25045 components: - pos: 101.5,-31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25626 components: - pos: 83.5,-9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25627 components: - pos: 83.5,-10.5 @@ -47265,8 +45731,6 @@ entities: - pos: 88.5,-14.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25633 components: - pos: 84.5,-13.5 @@ -47297,8 +45761,6 @@ entities: - pos: 80.5,-14.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25639 components: - pos: 81.5,-13.5 @@ -47314,8 +45776,6 @@ entities: - pos: 80.5,-12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25642 components: - pos: 93.5,-16.5 @@ -47326,29 +45786,21 @@ entities: - pos: 87.5,-12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25644 components: - pos: 87.5,-11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25645 components: - pos: 75.5,-1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25646 components: - pos: 74.5,-1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25647 components: - pos: 73.5,-1.5 @@ -47394,8 +45846,6 @@ entities: - pos: 80.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25656 components: - pos: 80.5,1.5 @@ -47536,8 +45986,6 @@ entities: - pos: 85.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25684 components: - pos: 85.5,3.5 @@ -47603,8 +46051,6 @@ entities: - pos: 88.5,-2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25697 components: - pos: 89.5,-2.5 @@ -47660,8 +46106,6 @@ entities: - pos: 90.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25708 components: - pos: 90.5,1.5 @@ -47682,29 +46126,21 @@ entities: - pos: 91.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25712 components: - pos: 92.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25713 components: - pos: 93.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25714 components: - pos: 94.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25715 components: - pos: 95.5,0.5 @@ -47720,22 +46156,16 @@ entities: - pos: 97.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25718 components: - pos: 98.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25719 components: - pos: 88.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25720 components: - pos: 88.5,5.5 @@ -47751,8 +46181,6 @@ entities: - pos: 88.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25723 components: - pos: 87.5,6.5 @@ -47783,8 +46211,6 @@ entities: - pos: 96.5,-1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25729 components: - pos: 96.5,-2.5 @@ -47800,22 +46226,16 @@ entities: - pos: 96.5,-4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25732 components: - pos: 96.5,-5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25733 components: - pos: 96.5,-6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25734 components: - pos: 96.5,-7.5 @@ -47831,8 +46251,6 @@ entities: - pos: 97.5,-5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25737 components: - pos: 98.5,-5.5 @@ -47843,36 +46261,26 @@ entities: - pos: 99.5,-5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25739 components: - pos: 99.5,-4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25740 components: - pos: 99.5,-3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25741 components: - pos: 99.5,-6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25742 components: - pos: 99.5,-7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25743 components: - pos: 95.5,-8.5 @@ -47898,8 +46306,6 @@ entities: - pos: 92.5,-9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25748 components: - pos: 92.5,-10.5 @@ -47965,15 +46371,11 @@ entities: - pos: 88.5,-15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25761 components: - pos: 88.5,-16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25762 components: - pos: 93.5,-11.5 @@ -48049,64 +46451,46 @@ entities: - pos: 112.5,-16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25777 components: - pos: 113.5,-16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25778 components: - pos: 113.5,-15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25844 components: - pos: 23.5,-44.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25845 components: - pos: 22.5,-44.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25846 components: - pos: 22.5,-45.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25847 components: - pos: 21.5,-49.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25848 components: - pos: 21.5,-48.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25849 components: - pos: 22.5,-52.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25850 components: - pos: 23.5,-52.5 @@ -48117,43 +46501,31 @@ entities: - pos: 24.5,-60.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25852 components: - pos: 24.5,-59.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25853 components: - pos: 24.5,-61.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25854 components: - pos: 28.5,-60.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25855 components: - pos: 28.5,-59.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25856 components: - pos: 28.5,-61.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25857 components: - pos: 28.5,-58.5 @@ -48174,8 +46546,6 @@ entities: - pos: 30.5,-59.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25861 components: - pos: 23.5,-57.5 @@ -48186,8 +46556,6 @@ entities: - pos: 22.5,-57.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25863 components: - pos: 23.5,-55.5 @@ -48198,22 +46566,16 @@ entities: - pos: 22.5,-55.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25865 components: - pos: 47.5,-55.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26798 components: - pos: 100.5,-44.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26799 components: - pos: 100.5,-45.5 @@ -48224,8 +46586,6 @@ entities: - pos: 100.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26801 components: - pos: 101.5,-46.5 @@ -48236,134 +46596,96 @@ entities: - pos: 103.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26803 components: - pos: 102.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26804 components: - pos: 104.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26805 components: - pos: 105.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26806 components: - pos: 106.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26807 components: - pos: 107.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26808 components: - pos: 103.5,-47.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26809 components: - pos: 103.5,-48.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26810 components: - pos: 103.5,-49.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26811 components: - pos: 103.5,-50.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26812 components: - pos: 103.5,-51.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26813 components: - pos: 103.5,-52.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26814 components: - pos: 103.5,-53.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26815 components: - pos: 103.5,-54.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26816 components: - pos: 102.5,-54.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26817 components: - pos: 102.5,-55.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26818 components: - pos: 102.5,-56.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26819 components: - pos: 102.5,-57.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26820 components: - pos: 102.5,-53.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26821 components: - pos: 101.5,-53.5 @@ -48374,29 +46696,21 @@ entities: - pos: 99.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26823 components: - pos: 98.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26824 components: - pos: 97.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26825 components: - pos: 96.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26826 components: - pos: 95.5,-46.5 @@ -48407,15 +46721,11 @@ entities: - pos: 94.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26828 components: - pos: 93.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26829 components: - pos: 92.5,-46.5 @@ -48436,15 +46746,11 @@ entities: - pos: 89.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26833 components: - pos: 88.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26834 components: - pos: 87.5,-46.5 @@ -48455,8 +46761,6 @@ entities: - pos: 86.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26836 components: - pos: 85.5,-46.5 @@ -48492,8 +46796,6 @@ entities: - pos: 79.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26843 components: - pos: 78.5,-46.5 @@ -48514,8 +46816,6 @@ entities: - pos: 75.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26847 components: - pos: 74.5,-46.5 @@ -48556,15 +46856,11 @@ entities: - pos: 67.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26855 components: - pos: 66.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26881 components: - pos: 119.5,-16.5 @@ -48575,50 +46871,36 @@ entities: - pos: 118.5,-19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26883 components: - pos: 118.5,-18.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26884 components: - pos: 118.5,-17.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26885 components: - pos: 118.5,-16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26886 components: - pos: 118.5,-15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26887 components: - pos: 118.5,-14.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27430 components: - pos: 121.5,-4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27431 components: - pos: 121.5,-5.5 @@ -48634,8 +46916,6 @@ entities: - pos: 123.5,-5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27434 components: - pos: 124.5,-5.5 @@ -48676,8 +46956,6 @@ entities: - pos: 127.5,-3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27442 components: - pos: 124.5,-2.5 @@ -48698,8 +46976,6 @@ entities: - pos: 123.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27446 components: - pos: 122.5,4.5 @@ -48720,29 +46996,21 @@ entities: - pos: 123.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27450 components: - pos: 125.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27451 components: - pos: 125.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27452 components: - pos: 124.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27453 components: - pos: 123.5,2.5 @@ -48778,8 +47046,6 @@ entities: - pos: 122.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27460 components: - pos: 121.5,1.5 @@ -48790,8 +47056,6 @@ entities: - pos: 115.5,13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27462 components: - pos: 115.5,12.5 @@ -48817,29 +47081,21 @@ entities: - pos: 118.5,11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27467 components: - pos: 119.5,11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27468 components: - pos: 120.5,11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27469 components: - pos: 121.5,11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27470 components: - pos: 114.5,11.5 @@ -48875,113 +47131,81 @@ entities: - pos: 113.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27477 components: - pos: 112.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27478 components: - pos: 111.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27479 components: - pos: 110.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27480 components: - pos: 109.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27481 components: - pos: 108.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27482 components: - pos: 107.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27483 components: - pos: 107.5,9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27484 components: - pos: 107.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27485 components: - pos: 107.5,11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27486 components: - pos: 114.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27487 components: - pos: 114.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27488 components: - pos: 114.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27489 components: - pos: 115.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27490 components: - pos: 116.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27491 components: - pos: 117.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27492 components: - pos: 120.5,1.5 @@ -48992,57 +47216,41 @@ entities: - pos: 119.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27494 components: - pos: 119.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27495 components: - pos: 119.5,3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27496 components: - pos: 119.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27497 components: - pos: 119.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27498 components: - pos: 119.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27499 components: - pos: 119.5,-1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27500 components: - pos: 119.5,-2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27501 components: - pos: 121.5,-6.5 @@ -49053,134 +47261,96 @@ entities: - pos: 121.5,-7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27503 components: - pos: 120.5,-7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27504 components: - pos: 119.5,-7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27505 components: - pos: 119.5,-6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27506 components: - pos: 119.5,-5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27507 components: - pos: 118.5,-5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27508 components: - pos: 119.5,-8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27509 components: - pos: 117.5,-5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27510 components: - pos: 117.5,-4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27511 components: - pos: 117.5,-3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27512 components: - pos: 117.5,-6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27513 components: - pos: 117.5,-7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27514 components: - pos: 119.5,-9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27515 components: - pos: 119.5,-10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27516 components: - pos: 119.5,-11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27517 components: - pos: 119.5,-12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27518 components: - pos: 119.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27520 components: - pos: 118.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27555 components: - pos: 91.5,31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27556 components: - pos: 91.5,30.5 @@ -49296,8 +47466,6 @@ entities: - pos: 93.5,34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27579 components: - pos: 97.5,33.5 @@ -49308,29 +47476,21 @@ entities: - pos: 97.5,34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27581 components: - pos: 96.5,34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27582 components: - pos: 98.5,34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27610 components: - pos: 85.5,34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27611 components: - pos: 86.5,34.5 @@ -49411,8 +47571,6 @@ entities: - pos: 94.5,36.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27627 components: - pos: 96.5,36.5 @@ -49438,8 +47596,6 @@ entities: - pos: 120.5,-16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28199 components: - pos: 67.5,-6.5 @@ -49450,106 +47606,76 @@ entities: - pos: 67.5,-5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28201 components: - pos: 66.5,-5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28202 components: - pos: 65.5,-5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28203 components: - pos: 64.5,-5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28204 components: - pos: 64.5,-4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28205 components: - pos: 64.5,-3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28206 components: - pos: 64.5,-2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28207 components: - pos: 64.5,-1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28208 components: - pos: 64.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28209 components: - pos: 65.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28210 components: - pos: 66.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28211 components: - pos: 67.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28212 components: - pos: 64.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28213 components: - pos: 64.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28447 components: - pos: 69.5,17.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28448 components: - pos: 69.5,16.5 @@ -49755,8 +47881,6 @@ entities: - pos: 60.5,19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28489 components: - pos: 61.5,19.5 @@ -49822,50 +47946,36 @@ entities: - pos: 61.5,21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28502 components: - pos: 61.5,22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28503 components: - pos: 61.5,23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28504 components: - pos: 61.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28505 components: - pos: 60.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28506 components: - pos: 59.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28507 components: - pos: 58.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28508 components: - pos: 57.5,24.5 @@ -49951,50 +48061,36 @@ entities: - pos: 62.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28525 components: - pos: 63.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28526 components: - pos: 64.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28527 components: - pos: 65.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28528 components: - pos: 66.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28529 components: - pos: 67.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28530 components: - pos: 60.5,35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28531 components: - pos: 60.5,34.5 @@ -50105,8 +48201,6 @@ entities: - pos: 67.5,30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28553 components: - pos: 66.5,30.5 @@ -50282,8 +48376,6 @@ entities: - pos: 76.5,36.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28588 components: - pos: 76.5,35.5 @@ -50354,106 +48446,76 @@ entities: - pos: 77.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28602 components: - pos: 76.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28603 components: - pos: 75.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28604 components: - pos: 74.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28605 components: - pos: 73.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28606 components: - pos: 74.5,28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28607 components: - pos: 74.5,27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28608 components: - pos: 74.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28609 components: - pos: 74.5,25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28610 components: - pos: 74.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28611 components: - pos: 74.5,23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28612 components: - pos: 74.5,22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28613 components: - pos: 73.5,22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28614 components: - pos: 72.5,22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28615 components: - pos: 80.5,23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28616 components: - pos: 81.5,23.5 @@ -50689,8 +48751,6 @@ entities: - pos: 86.5,17.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28705 components: - pos: 86.5,16.5 @@ -50851,15 +48911,11 @@ entities: - pos: 74.5,18.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28737 components: - pos: 74.5,19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28738 components: - pos: 72.5,16.5 @@ -50915,8 +48971,6 @@ entities: - pos: 92.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28749 components: - pos: 92.5,23.5 @@ -51062,64 +49116,46 @@ entities: - pos: 96.5,14.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28778 components: - pos: 97.5,14.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28779 components: - pos: 98.5,14.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28780 components: - pos: 98.5,13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28781 components: - pos: 98.5,12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28782 components: - pos: 98.5,11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28783 components: - pos: 98.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28784 components: - pos: 99.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28785 components: - pos: 97.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28934 components: - pos: 13.5,35.5 @@ -51225,134 +49261,96 @@ entities: - pos: 92.5,25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29042 components: - pos: 92.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29043 components: - pos: 91.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29044 components: - pos: 90.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29045 components: - pos: 90.5,27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29046 components: - pos: 89.5,27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29047 components: - pos: 88.5,27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29048 components: - pos: 87.5,27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29049 components: - pos: 86.5,27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29050 components: - pos: 93.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29051 components: - pos: 94.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29052 components: - pos: 95.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29053 components: - pos: 96.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29054 components: - pos: 97.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29055 components: - pos: 98.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29056 components: - pos: 99.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29057 components: - pos: 100.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29058 components: - pos: 101.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29059 components: - pos: 102.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29060 components: - pos: 101.5,20.5 @@ -51363,92 +49361,66 @@ entities: - pos: 102.5,20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29062 components: - pos: 102.5,21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29063 components: - pos: 102.5,22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29064 components: - pos: 102.5,23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29065 components: - pos: 102.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29066 components: - pos: 102.5,25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29067 components: - pos: 103.5,19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29068 components: - pos: 102.5,19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29069 components: - pos: 104.5,19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29070 components: - pos: 105.5,19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29071 components: - pos: 106.5,19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29072 components: - pos: 107.5,19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29073 components: - pos: 108.5,19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29087 components: - pos: 24.5,32.5 @@ -51619,8 +49591,6 @@ entities: - pos: 125.5,49.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29961 components: - pos: 126.5,49.5 @@ -51766,8 +49736,6 @@ entities: - pos: 122.5,49.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29990 components: - pos: 123.5,49.5 @@ -51818,8 +49786,6 @@ entities: - pos: 94.5,49.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30000 components: - pos: 95.5,49.5 @@ -51970,8 +49936,6 @@ entities: - pos: 104.5,57.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30030 components: - pos: 104.5,56.5 @@ -52027,8 +49991,6 @@ entities: - pos: 104.5,45.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30041 components: - pos: 104.5,44.5 @@ -52284,113 +50246,81 @@ entities: - pos: 102.5,36.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30106 components: - pos: 102.5,35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30107 components: - pos: 102.5,34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30108 components: - pos: 103.5,35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30109 components: - pos: 104.5,35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30110 components: - pos: 105.5,35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30111 components: - pos: 106.5,35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30112 components: - pos: 107.5,35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30113 components: - pos: 108.5,35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30114 components: - pos: 109.5,35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30115 components: - pos: 110.5,35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30116 components: - pos: 111.5,35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30117 components: - pos: 112.5,35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30118 components: - pos: 112.5,36.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30119 components: - pos: 112.5,37.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30120 components: - pos: 112.5,38.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30121 components: - pos: 112.5,39.5 @@ -52401,36 +50331,26 @@ entities: - pos: 109.5,34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30123 components: - pos: 109.5,33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30124 components: - pos: 109.5,32.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30125 components: - pos: 109.5,31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30126 components: - pos: 110.5,31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30127 components: - pos: 111.5,31.5 @@ -52441,43 +50361,31 @@ entities: - pos: 112.5,31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30129 components: - pos: 113.5,31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30130 components: - pos: 114.5,31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30131 components: - pos: 115.5,31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30132 components: - pos: 116.5,31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30133 components: - pos: 109.5,30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30134 components: - pos: 108.5,30.5 @@ -52488,22 +50396,16 @@ entities: - pos: 107.5,30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30136 components: - pos: 106.5,30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30137 components: - pos: 105.5,30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30138 components: - pos: 104.5,30.5 @@ -52514,43 +50416,31 @@ entities: - pos: 103.5,30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30140 components: - pos: 102.5,30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30141 components: - pos: 102.5,31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30142 components: - pos: 102.5,32.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30143 components: - pos: 102.5,33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30473 components: - pos: 82.5,48.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30474 components: - pos: 82.5,47.5 @@ -52621,8 +50511,6 @@ entities: - pos: 79.5,48.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30488 components: - pos: 79.5,49.5 @@ -52693,22 +50581,16 @@ entities: - pos: 79.5,53.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30502 components: - pos: 78.5,53.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30503 components: - pos: 85.5,57.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30504 components: - pos: 85.5,56.5 @@ -52769,15 +50651,11 @@ entities: - pos: 76.5,58.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30516 components: - pos: 77.5,58.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30517 components: - pos: 79.5,57.5 @@ -52788,15 +50666,11 @@ entities: - pos: 79.5,58.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30519 components: - pos: 80.5,58.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30520 components: - pos: 82.5,57.5 @@ -52807,22 +50681,16 @@ entities: - pos: 75.5,56.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30522 components: - pos: 82.5,58.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30523 components: - pos: 83.5,58.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30524 components: - pos: 86.5,56.5 @@ -52833,22 +50701,16 @@ entities: - pos: 86.5,57.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30526 components: - pos: 87.5,57.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30527 components: - pos: 88.5,57.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30528 components: - pos: 87.5,56.5 @@ -52884,15 +50746,11 @@ entities: - pos: 92.5,57.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30535 components: - pos: 90.5,57.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30536 components: - pos: 95.5,56.5 @@ -52903,22 +50761,16 @@ entities: - pos: 94.5,56.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30538 components: - pos: 96.5,57.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30539 components: - pos: 92.5,48.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30540 components: - pos: 91.5,48.5 @@ -52974,15 +50826,11 @@ entities: - pos: 88.5,42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30551 components: - pos: 90.5,42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30552 components: - pos: 89.5,49.5 @@ -53018,15 +50866,11 @@ entities: - pos: 90.5,41.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30559 components: - pos: 88.5,41.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30560 components: - pos: 90.5,46.5 @@ -53042,29 +50886,21 @@ entities: - pos: 92.5,46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30563 components: - pos: 92.5,45.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30564 components: - pos: 91.5,45.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30565 components: - pos: 92.5,47.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30566 components: - pos: 88.5,46.5 @@ -53080,29 +50916,21 @@ entities: - pos: 86.5,46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30569 components: - pos: 86.5,47.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30570 components: - pos: 86.5,45.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30571 components: - pos: 87.5,45.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30572 components: - pos: 88.5,51.5 @@ -53118,29 +50946,21 @@ entities: - pos: 86.5,51.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30575 components: - pos: 86.5,50.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30576 components: - pos: 86.5,52.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30577 components: - pos: 87.5,52.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30578 components: - pos: 90.5,51.5 @@ -53156,29 +50976,21 @@ entities: - pos: 91.5,52.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30581 components: - pos: 92.5,52.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30582 components: - pos: 92.5,51.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30583 components: - pos: 92.5,50.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30865 components: - pos: 57.5,48.5 @@ -53189,8 +51001,6 @@ entities: - pos: 57.5,49.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30886 components: - pos: 57.5,47.5 @@ -53301,8 +51111,6 @@ entities: - pos: 58.5,43.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30908 components: - pos: 58.5,42.5 @@ -53443,8 +51251,6 @@ entities: - pos: 51.5,41.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30946 components: - pos: 51.5,40.5 @@ -53545,78 +51351,56 @@ entities: - pos: 50.5,46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30966 components: - pos: 51.5,46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30967 components: - pos: 52.5,46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30968 components: - pos: 53.5,46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30969 components: - pos: 54.5,46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30970 components: - pos: 55.5,46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30971 components: - pos: 55.5,47.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30972 components: - pos: 55.5,48.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30973 components: - pos: 55.5,49.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30974 components: - pos: 55.5,50.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30975 components: - pos: 66.5,55.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30976 components: - pos: 65.5,55.5 @@ -53757,43 +51541,31 @@ entities: - pos: 60.5,61.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31005 components: - pos: 61.5,61.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31006 components: - pos: 62.5,61.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31007 components: - pos: 63.5,61.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31008 components: - pos: 66.5,58.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31009 components: - pos: 74.5,58.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31010 components: - pos: 73.5,58.5 @@ -53844,8 +51616,6 @@ entities: - pos: 67.5,61.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31020 components: - pos: 70.5,59.5 @@ -53861,22 +51631,16 @@ entities: - pos: 70.5,61.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31023 components: - pos: 69.5,61.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31024 components: - pos: 71.5,61.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31025 components: - pos: 73.5,59.5 @@ -53892,29 +51656,21 @@ entities: - pos: 73.5,61.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31028 components: - pos: 74.5,61.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31029 components: - pos: 74.5,60.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31030 components: - pos: 75.5,48.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31031 components: - pos: 74.5,48.5 @@ -54045,22 +51801,16 @@ entities: - pos: 68.5,41.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31057 components: - pos: 67.5,41.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31058 components: - pos: 69.5,41.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31059 components: - pos: 71.5,46.5 @@ -54241,64 +51991,46 @@ entities: - pos: 91.5,71.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31385 components: - pos: 91.5,72.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31386 components: - pos: 91.5,73.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31387 components: - pos: 90.5,73.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31388 components: - pos: 90.5,74.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31389 components: - pos: 92.5,73.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31390 components: - pos: 92.5,74.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31391 components: - pos: 92.5,71.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31392 components: - pos: 90.5,71.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31393 components: - pos: 90.5,68.5 @@ -54309,22 +52041,16 @@ entities: - pos: 89.5,68.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31395 components: - pos: 89.5,69.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31396 components: - pos: 89.5,67.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31397 components: - pos: 90.5,62.5 @@ -54335,22 +52061,16 @@ entities: - pos: 89.5,62.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31399 components: - pos: 89.5,63.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31400 components: - pos: 89.5,61.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31401 components: - pos: 92.5,64.5 @@ -54361,15 +52081,11 @@ entities: - pos: 93.5,64.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31403 components: - pos: 93.5,63.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31404 components: - pos: 92.5,61.5 @@ -54380,22 +52096,16 @@ entities: - pos: 93.5,61.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31406 components: - pos: 94.5,61.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31407 components: - pos: 94.5,62.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31408 components: - pos: 92.5,66.5 @@ -54406,22 +52116,16 @@ entities: - pos: 93.5,66.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31410 components: - pos: 94.5,66.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31411 components: - pos: 94.5,65.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31412 components: - pos: 92.5,69.5 @@ -54437,29 +52141,21 @@ entities: - pos: 94.5,69.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31415 components: - pos: 94.5,68.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31416 components: - pos: 94.5,70.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31983 components: - pos: -35.5,11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31984 components: - pos: -35.5,10.5 @@ -54480,15 +52176,11 @@ entities: - pos: -34.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31988 components: - pos: -34.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31989 components: - pos: -34.5,6.5 @@ -54504,22 +52196,16 @@ entities: - pos: -34.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31992 components: - pos: -34.5,3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31993 components: - pos: -33.5,3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31994 components: - pos: -32.5,3.5 @@ -54590,8 +52276,6 @@ entities: - pos: -31.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32008 components: - pos: -35.5,12.5 @@ -54602,8 +52286,6 @@ entities: - pos: -36.5,12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32010 components: - pos: -37.5,12.5 @@ -54624,29 +52306,21 @@ entities: - pos: -38.5,14.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32014 components: - pos: -38.5,15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32015 components: - pos: -34.5,12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32016 components: - pos: -33.5,12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32017 components: - pos: -32.5,12.5 @@ -54672,22 +52346,16 @@ entities: - pos: -28.5,12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32022 components: - pos: -27.5,12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32023 components: - pos: -26.5,12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32024 components: - pos: -25.5,12.5 @@ -54703,8 +52371,6 @@ entities: - pos: -24.5,11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32027 components: - pos: -24.5,10.5 @@ -54740,183 +52406,131 @@ entities: - pos: -17.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32034 components: - pos: -17.5,3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32035 components: - pos: -17.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32036 components: - pos: -17.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32037 components: - pos: -18.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32038 components: - pos: -19.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32039 components: - pos: -20.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32040 components: - pos: -21.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32041 components: - pos: -21.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32042 components: - pos: -21.5,3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32043 components: - pos: -21.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32044 components: - pos: -16.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32045 components: - pos: -15.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32046 components: - pos: -14.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32047 components: - pos: -13.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32048 components: - pos: -12.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32049 components: - pos: -11.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32050 components: - pos: -22.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32051 components: - pos: -23.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32052 components: - pos: -24.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32053 components: - pos: -25.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32054 components: - pos: -25.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32055 components: - pos: -25.5,3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32056 components: - pos: -25.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32057 components: - pos: -25.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32058 components: - pos: -25.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32059 components: - pos: -25.5,-0.5 @@ -54927,43 +52541,31 @@ entities: - pos: -24.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32061 components: - pos: -23.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32062 components: - pos: -22.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32063 components: - pos: -22.5,-1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32064 components: - pos: -21.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32065 components: - pos: -21.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32066 components: - pos: -24.5,13.5 @@ -54979,8 +52581,6 @@ entities: - pos: -24.5,15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32069 components: - pos: -24.5,16.5 @@ -55021,29 +52621,21 @@ entities: - pos: -19.5,33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32195 components: - pos: -19.5,32.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32196 components: - pos: -19.5,31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32197 components: - pos: -19.5,30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32348 components: - pos: 29.5,-10.5 @@ -55059,15 +52651,11 @@ entities: - pos: 31.5,-10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32404 components: - pos: 34.5,-7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32405 components: - pos: 35.5,-7.5 @@ -55093,15 +52681,11 @@ entities: - pos: 99.5,14.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32523 components: - pos: 100.5,14.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32524 components: - pos: 101.5,14.5 @@ -55117,8 +52701,6 @@ entities: - pos: 103.5,23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32576 components: - pos: 104.5,23.5 @@ -55149,8 +52731,6 @@ entities: - pos: 109.5,23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32582 components: - pos: 110.5,23.5 @@ -55176,8 +52756,6 @@ entities: - pos: 111.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32587 components: - pos: 110.5,26.5 @@ -55193,8 +52771,6 @@ entities: - pos: 96.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32805 components: - pos: 96.5,5.5 @@ -55255,8 +52831,6 @@ entities: - pos: 106.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32817 components: - pos: 107.5,5.5 @@ -55287,176 +52861,126 @@ entities: - pos: 2.5,65.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33701 components: - pos: 2.5,66.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33702 components: - pos: 2.5,67.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33703 components: - pos: 2.5,68.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33704 components: - pos: 2.5,69.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33705 components: - pos: 1.5,69.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33706 components: - pos: 0.5,69.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33707 components: - pos: -0.5,69.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33708 components: - pos: -1.5,69.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33709 components: - pos: 2.5,70.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33710 components: - pos: 2.5,71.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33711 components: - pos: 2.5,72.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33712 components: - pos: 2.5,73.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33713 components: - pos: 2.5,74.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33714 components: - pos: 3.5,74.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33715 components: - pos: 4.5,74.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33716 components: - pos: 5.5,74.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33717 components: - pos: 6.5,74.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33718 components: - pos: 7.5,74.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33719 components: - pos: 8.5,74.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33720 components: - pos: 9.5,74.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33721 components: - pos: 9.5,73.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33722 components: - pos: 9.5,72.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33723 components: - pos: 9.5,71.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33724 components: - pos: 9.5,70.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33725 components: - pos: 8.5,71.5 @@ -55477,162 +53001,116 @@ entities: - pos: 10.5,70.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33729 components: - pos: 11.5,70.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33730 components: - pos: 12.5,70.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33731 components: - pos: 13.5,70.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33732 components: - pos: 14.5,70.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33733 components: - pos: 15.5,70.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33734 components: - pos: 16.5,70.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33735 components: - pos: 17.5,70.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33736 components: - pos: 18.5,70.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33737 components: - pos: 19.5,70.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33738 components: - pos: 20.5,70.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33739 components: - pos: 21.5,70.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33740 components: - pos: 22.5,70.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33741 components: - pos: 22.5,69.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33742 components: - pos: 22.5,68.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33743 components: - pos: 22.5,67.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33744 components: - pos: 22.5,66.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33747 components: - pos: 31.5,56.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33748 components: - pos: 32.5,56.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33749 components: - pos: 32.5,57.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33750 components: - pos: 32.5,58.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33751 components: - pos: 32.5,59.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33752 components: - pos: 32.5,60.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33753 components: - pos: 32.5,61.5 @@ -55643,288 +53121,206 @@ entities: - pos: 32.5,62.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33755 components: - pos: 32.5,63.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33756 components: - pos: 32.5,64.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33757 components: - pos: 32.5,65.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33758 components: - pos: 32.5,66.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33759 components: - pos: 31.5,66.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33760 components: - pos: 30.5,66.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33761 components: - pos: 29.5,66.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33762 components: - pos: 28.5,66.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33763 components: - pos: 27.5,66.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33764 components: - pos: 26.5,66.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33765 components: - pos: 32.5,55.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33766 components: - pos: 32.5,54.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33767 components: - pos: 33.5,54.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33768 components: - pos: 34.5,54.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33769 components: - pos: 35.5,54.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33770 components: - pos: 36.5,54.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33771 components: - pos: 37.5,54.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33772 components: - pos: 38.5,54.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33773 components: - pos: 38.5,53.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33774 components: - pos: 38.5,52.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33775 components: - pos: 38.5,51.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33776 components: - pos: 38.5,50.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33777 components: - pos: 38.5,49.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33778 components: - pos: 38.5,48.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33779 components: - pos: 38.5,47.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33780 components: - pos: 38.5,46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33781 components: - pos: 39.5,46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33782 components: - pos: 40.5,46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33783 components: - pos: 41.5,46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33784 components: - pos: 42.5,46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33785 components: - pos: 43.5,46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33786 components: - pos: 44.5,46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33787 components: - pos: 45.5,46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33788 components: - pos: 46.5,46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33789 components: - pos: 47.5,46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33790 components: - pos: 31.5,62.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33791 components: - pos: 30.5,62.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33792 components: - pos: 29.5,62.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33793 components: - pos: 29.5,61.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33794 components: - pos: 29.5,60.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33795 components: - pos: 29.5,59.5 @@ -55935,36 +53331,26 @@ entities: - pos: 29.5,58.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33885 components: - pos: 39.5,54.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33886 components: - pos: 40.5,54.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33887 components: - pos: 41.5,54.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33916 components: - pos: 42.5,45.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33917 components: - pos: 42.5,44.5 @@ -55990,57 +53376,41 @@ entities: - pos: 54.5,65.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34029 components: - pos: 55.5,65.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34030 components: - pos: 55.5,66.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34031 components: - pos: 55.5,67.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34032 components: - pos: 56.5,67.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34033 components: - pos: 57.5,67.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34034 components: - pos: 57.5,68.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34035 components: - pos: 54.5,64.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34036 components: - pos: 53.5,64.5 @@ -56051,57 +53421,41 @@ entities: - pos: 52.5,64.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34038 components: - pos: 52.5,65.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34039 components: - pos: 52.5,66.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34040 components: - pos: 52.5,67.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34041 components: - pos: 52.5,68.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34042 components: - pos: 52.5,69.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34043 components: - pos: 52.5,70.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34044 components: - pos: 54.5,63.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34045 components: - pos: 55.5,63.5 @@ -56112,8 +53466,6 @@ entities: - pos: 55.5,62.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34047 components: - pos: 55.5,61.5 @@ -56124,8 +53476,6 @@ entities: - pos: 55.5,60.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34049 components: - pos: 55.5,59.5 @@ -56141,8 +53491,6 @@ entities: - pos: 55.5,57.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34052 components: - pos: 55.5,56.5 @@ -56153,29 +53501,21 @@ entities: - pos: 55.5,55.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34119 components: - pos: 33.5,64.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34120 components: - pos: 34.5,64.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34121 components: - pos: 35.5,64.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34122 components: - pos: 36.5,64.5 @@ -56186,8 +53526,6 @@ entities: - pos: 37.5,64.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34124 components: - pos: 38.5,64.5 @@ -56228,8 +53566,6 @@ entities: - pos: 52.5,63.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34132 components: - pos: 51.5,63.5 @@ -56270,8 +53606,6 @@ entities: - pos: 44.5,63.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34140 components: - pos: 44.5,62.5 @@ -56282,8 +53616,6 @@ entities: - pos: 44.5,61.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34142 components: - pos: 43.5,63.5 @@ -56319,22 +53651,16 @@ entities: - pos: 60.5,-47.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34496 components: - pos: 60.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34497 components: - pos: 59.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34498 components: - pos: 58.5,-46.5 @@ -56345,22 +53671,16 @@ entities: - pos: 60.5,-48.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34500 components: - pos: 61.5,-48.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34501 components: - pos: 63.5,-48.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34502 components: - pos: 62.5,-48.5 @@ -56371,15 +53691,11 @@ entities: - pos: 64.5,-48.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34504 components: - pos: 65.5,-48.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34505 components: - pos: 65.5,-49.5 @@ -56390,8 +53706,6 @@ entities: - pos: 65.5,-50.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34507 components: - pos: 65.5,-51.5 @@ -56417,36 +53731,26 @@ entities: - pos: 60.5,-49.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34512 components: - pos: 60.5,-50.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34513 components: - pos: 60.5,-52.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34514 components: - pos: 60.5,-53.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34515 components: - pos: 60.5,-51.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34516 components: - pos: 59.5,-53.5 @@ -56492,22 +53796,16 @@ entities: - pos: 57.5,-59.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34525 components: - pos: 56.5,-59.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34526 components: - pos: 58.5,-59.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34622 components: - pos: -34.5,-24.5 @@ -56523,15 +53821,11 @@ entities: - pos: 128.5,-3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34657 components: - pos: 129.5,-3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 35382 components: - pos: 34.5,37.5 @@ -56547,22 +53841,16 @@ entities: - pos: 32.5,37.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 35385 components: - pos: 32.5,38.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 35386 components: - pos: 32.5,39.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 35387 components: - pos: 31.5,37.5 @@ -56719,85 +54007,61 @@ entities: - pos: -21.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2347 components: - pos: -21.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2348 components: - pos: -21.5,3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2349 components: - pos: -21.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2350 components: - pos: -21.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2351 components: - pos: -21.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2416 components: - pos: -21.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2417 components: - pos: -21.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2418 components: - pos: -21.5,9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2419 components: - pos: -21.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2420 components: - pos: -21.5,11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2421 components: - pos: -21.5,12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2422 components: - pos: -22.5,12.5 @@ -56808,8 +54072,6 @@ entities: - pos: -23.5,12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2424 components: - pos: -24.5,12.5 @@ -56830,8 +54092,6 @@ entities: - pos: -24.5,15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2428 components: - pos: -24.5,16.5 @@ -56862,8 +54122,6 @@ entities: - pos: -23.5,20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2434 components: - pos: -23.5,21.5 @@ -56879,232 +54137,166 @@ entities: - pos: -23.5,23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2437 components: - pos: -23.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2438 components: - pos: -22.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2439 components: - pos: -21.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2440 components: - pos: -21.5,25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2441 components: - pos: -21.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2442 components: - pos: -21.5,27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2443 components: - pos: -21.5,28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2444 components: - pos: -20.5,28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2445 components: - pos: -19.5,28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2446 components: - pos: -19.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2447 components: - pos: -19.5,30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2448 components: - pos: -19.5,31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2449 components: - pos: -19.5,32.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2450 components: - pos: -19.5,33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2451 components: - pos: -19.5,34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2452 components: - pos: -20.5,34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2453 components: - pos: -21.5,34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2454 components: - pos: -22.5,34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2455 components: - pos: -23.5,34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2456 components: - pos: -23.5,35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2496 components: - pos: -20.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2497 components: - pos: -19.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2498 components: - pos: -18.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2499 components: - pos: -17.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2500 components: - pos: -16.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2501 components: - pos: -15.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2502 components: - pos: -14.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2503 components: - pos: -13.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2504 components: - pos: -12.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2505 components: - pos: -11.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2506 components: - pos: -10.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2507 components: - pos: -9.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2508 components: - pos: -8.5,5.5 @@ -57195,113 +54387,81 @@ entities: - pos: -5.5,-8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2526 components: - pos: -5.5,-9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2527 components: - pos: -5.5,-10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2528 components: - pos: -5.5,-11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2529 components: - pos: -5.5,-12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2530 components: - pos: -6.5,-12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2531 components: - pos: -7.5,-12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2532 components: - pos: -8.5,-12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2533 components: - pos: -9.5,-12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2534 components: - pos: -10.5,-12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2535 components: - pos: -11.5,-12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2536 components: - pos: -12.5,-12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2537 components: - pos: -12.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2538 components: - pos: -12.5,-14.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2539 components: - pos: -12.5,-15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2540 components: - pos: -12.5,-16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3144 components: - pos: -73.5,1.5 @@ -57312,1296 +54472,926 @@ entities: - pos: -72.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3218 components: - pos: -71.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3219 components: - pos: -70.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3220 components: - pos: -69.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3221 components: - pos: -69.5,-1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3222 components: - pos: -69.5,-2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3223 components: - pos: -69.5,-3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3224 components: - pos: -69.5,-4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3225 components: - pos: -69.5,-5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3226 components: - pos: -69.5,-6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3227 components: - pos: -69.5,-7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3228 components: - pos: -69.5,-8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3229 components: - pos: -67.5,-8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3230 components: - pos: -67.5,-7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3231 components: - pos: -67.5,-6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3232 components: - pos: -67.5,-5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3233 components: - pos: -67.5,-4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3234 components: - pos: -67.5,-3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3235 components: - pos: -67.5,-2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3236 components: - pos: -67.5,-1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3237 components: - pos: -67.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3238 components: - pos: -65.5,-8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3239 components: - pos: -65.5,-7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3240 components: - pos: -65.5,-6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3241 components: - pos: -65.5,-5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3242 components: - pos: -65.5,-4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3243 components: - pos: -65.5,-3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3244 components: - pos: -65.5,-2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3245 components: - pos: -65.5,-1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3246 components: - pos: -65.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3247 components: - pos: -63.5,-8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3248 components: - pos: -63.5,-7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3249 components: - pos: -63.5,-6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3250 components: - pos: -63.5,-5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3251 components: - pos: -63.5,-4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3252 components: - pos: -63.5,-3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3253 components: - pos: -63.5,-2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3254 components: - pos: -63.5,-1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3255 components: - pos: -63.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3257 components: - pos: -61.5,-8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3258 components: - pos: -61.5,-7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3259 components: - pos: -61.5,-6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3260 components: - pos: -61.5,-5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3261 components: - pos: -61.5,-4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3262 components: - pos: -61.5,-3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3263 components: - pos: -61.5,-2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3264 components: - pos: -61.5,-1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3265 components: - pos: -61.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3266 components: - pos: -59.5,-8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3267 components: - pos: -59.5,-7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3268 components: - pos: -59.5,-6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3269 components: - pos: -59.5,-5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3270 components: - pos: -59.5,-4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3271 components: - pos: -59.5,-3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3272 components: - pos: -59.5,-2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3273 components: - pos: -59.5,-1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3274 components: - pos: -59.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3275 components: - pos: -57.5,-8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3276 components: - pos: -57.5,-7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3277 components: - pos: -57.5,-6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3278 components: - pos: -57.5,-5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3279 components: - pos: -57.5,-4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3280 components: - pos: -57.5,-3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3281 components: - pos: -57.5,-2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3282 components: - pos: -57.5,-1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3283 components: - pos: -57.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3284 components: - pos: -55.5,-8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3285 components: - pos: -55.5,-7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3286 components: - pos: -55.5,-6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3287 components: - pos: -55.5,-5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3288 components: - pos: -55.5,-4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3289 components: - pos: -55.5,-3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3290 components: - pos: -55.5,-2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3291 components: - pos: -55.5,-1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3292 components: - pos: -55.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3293 components: - pos: -55.5,3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3294 components: - pos: -55.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3295 components: - pos: -55.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3296 components: - pos: -55.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3297 components: - pos: -55.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3298 components: - pos: -55.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3299 components: - pos: -55.5,9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3300 components: - pos: -55.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3301 components: - pos: -55.5,11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3302 components: - pos: -57.5,11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3303 components: - pos: -57.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3304 components: - pos: -57.5,9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3305 components: - pos: -57.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3306 components: - pos: -57.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3307 components: - pos: -57.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3308 components: - pos: -57.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3309 components: - pos: -57.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3310 components: - pos: -57.5,3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3311 components: - pos: -59.5,3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3312 components: - pos: -59.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3313 components: - pos: -59.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3314 components: - pos: -59.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3315 components: - pos: -59.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3316 components: - pos: -59.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3317 components: - pos: -59.5,9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3318 components: - pos: -59.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3319 components: - pos: -59.5,11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3320 components: - pos: -61.5,11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3321 components: - pos: -61.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3322 components: - pos: -61.5,9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3323 components: - pos: -61.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3324 components: - pos: -61.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3325 components: - pos: -61.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3326 components: - pos: -61.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3327 components: - pos: -61.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3328 components: - pos: -61.5,3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3329 components: - pos: -63.5,3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3330 components: - pos: -63.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3331 components: - pos: -63.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3332 components: - pos: -63.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3333 components: - pos: -63.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3334 components: - pos: -63.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3335 components: - pos: -63.5,9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3336 components: - pos: -63.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3337 components: - pos: -63.5,11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3338 components: - pos: -65.5,11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3339 components: - pos: -65.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3340 components: - pos: -65.5,9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3341 components: - pos: -65.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3342 components: - pos: -65.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3343 components: - pos: -65.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3344 components: - pos: -65.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3345 components: - pos: -65.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3346 components: - pos: -65.5,3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3347 components: - pos: -67.5,3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3348 components: - pos: -67.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3349 components: - pos: -67.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3350 components: - pos: -67.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3351 components: - pos: -67.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3352 components: - pos: -67.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3353 components: - pos: -67.5,9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3354 components: - pos: -67.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3355 components: - pos: -67.5,11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3356 components: - pos: -69.5,11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3357 components: - pos: -69.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3358 components: - pos: -69.5,9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3359 components: - pos: -69.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3360 components: - pos: -69.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3361 components: - pos: -69.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3362 components: - pos: -69.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3363 components: - pos: -69.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3364 components: - pos: -69.5,3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3602 components: - pos: -68.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3603 components: - pos: -68.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3604 components: - pos: -68.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3605 components: - pos: -68.5,3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3606 components: - pos: -64.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3607 components: - pos: -64.5,3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3608 components: - pos: -64.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3609 components: - pos: -64.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3610 components: - pos: -60.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3611 components: - pos: -60.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3612 components: - pos: -60.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3613 components: - pos: -60.5,3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3614 components: - pos: -56.5,3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3615 components: - pos: -56.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3616 components: - pos: -56.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3617 components: - pos: -56.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3618 components: - pos: -53.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3619 components: - pos: -52.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3620 components: - pos: -51.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3621 components: - pos: -50.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3622 components: - pos: -49.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3623 components: - pos: -48.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3624 components: - pos: -47.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3625 components: - pos: -46.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3626 components: - pos: -46.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3627 components: - pos: -45.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3628 components: - pos: -44.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3629 components: - pos: -44.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3630 components: - pos: -43.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 3631 components: - pos: -42.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4158 components: - pos: -23.5,25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4159 components: - pos: -24.5,25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4160 components: - pos: -25.5,25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4161 components: - pos: -26.5,25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4162 components: - pos: -27.5,25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4163 components: - pos: -27.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4164 components: - pos: -27.5,23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4165 components: - pos: -27.5,22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4727 components: - pos: -27.5,21.5 @@ -58612,50 +55402,36 @@ entities: - pos: -19.5,35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6390 components: - pos: -19.5,36.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6391 components: - pos: -19.5,37.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6392 components: - pos: -19.5,38.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6393 components: - pos: -19.5,39.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6394 components: - pos: -19.5,40.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6395 components: - pos: -19.5,41.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6396 components: - pos: -19.5,42.5 @@ -58821,141 +55597,101 @@ entities: - pos: -33.5,60.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6429 components: - pos: -33.5,61.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6430 components: - pos: -33.5,62.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6431 components: - pos: -33.5,63.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6432 components: - pos: -33.5,64.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6433 components: - pos: -32.5,64.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6434 components: - pos: -31.5,64.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6435 components: - pos: -30.5,64.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6436 components: - pos: -30.5,63.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6437 components: - pos: -30.5,62.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6438 components: - pos: -30.5,61.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6439 components: - pos: -30.5,60.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6440 components: - pos: -30.5,65.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6441 components: - pos: -29.5,65.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6442 components: - pos: -28.5,65.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6443 components: - pos: -27.5,65.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6444 components: - pos: -26.5,65.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6445 components: - pos: -25.5,65.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6446 components: - pos: -24.5,65.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6447 components: - pos: -23.5,65.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6448 components: - pos: -22.5,65.5 @@ -59051,8 +55787,6 @@ entities: - pos: -12.5,57.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6467 components: - pos: -12.5,56.5 @@ -59223,106 +55957,76 @@ entities: - pos: -41.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6680 components: - pos: -40.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6681 components: - pos: -39.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6682 components: - pos: -38.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6683 components: - pos: -37.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6684 components: - pos: -36.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6685 components: - pos: -35.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6686 components: - pos: -35.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6687 components: - pos: -35.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6688 components: - pos: -35.5,-1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6689 components: - pos: -36.5,-1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6690 components: - pos: -37.5,-1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6691 components: - pos: -38.5,-1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6692 components: - pos: -39.5,-1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6693 components: - pos: -35.5,-2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6694 components: - pos: -35.5,-3.5 @@ -59488,78 +56192,56 @@ entities: - pos: -13.5,-12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6727 components: - pos: -14.5,-12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6728 components: - pos: -15.5,-12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6729 components: - pos: -15.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6730 components: - pos: -16.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6731 components: - pos: -17.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6732 components: - pos: -18.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6733 components: - pos: -18.5,-14.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6734 components: - pos: -18.5,-15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6735 components: - pos: -18.5,-16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6736 components: - pos: -19.5,-16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6737 components: - pos: -20.5,-16.5 @@ -59665,22 +56347,16 @@ entities: - pos: -17.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6758 components: - pos: -17.5,3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6759 components: - pos: -17.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7610 components: - pos: -5.5,6.5 @@ -59776,57 +56452,41 @@ entities: - pos: 3.5,15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7629 components: - pos: 4.5,15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7630 components: - pos: 5.5,15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7631 components: - pos: 5.5,16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7632 components: - pos: 5.5,17.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7633 components: - pos: 5.5,18.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7634 components: - pos: 5.5,19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7635 components: - pos: 4.5,19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7637 components: - pos: 0.5,16.5 @@ -60037,29 +56697,21 @@ entities: - pos: 24.5,31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7679 components: - pos: 24.5,30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7680 components: - pos: 24.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7681 components: - pos: 24.5,28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7682 components: - pos: 24.5,27.5 @@ -60180,8 +56832,6 @@ entities: - pos: 24.5,15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7706 components: - pos: 24.5,14.5 @@ -60237,36 +56887,26 @@ entities: - pos: 24.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7717 components: - pos: 24.5,3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7718 components: - pos: 24.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7719 components: - pos: 24.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7720 components: - pos: 24.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7721 components: - pos: 24.5,-0.5 @@ -60452,106 +57092,76 @@ entities: - pos: 6.5,15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7807 components: - pos: 7.5,15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7808 components: - pos: 8.5,15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7809 components: - pos: 9.5,15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7810 components: - pos: 9.5,16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7811 components: - pos: 10.5,16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7812 components: - pos: 11.5,16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7813 components: - pos: 12.5,16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7814 components: - pos: 12.5,17.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7815 components: - pos: 12.5,18.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7816 components: - pos: 12.5,19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7817 components: - pos: 12.5,20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7818 components: - pos: 12.5,21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7819 components: - pos: 12.5,22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7820 components: - pos: 12.5,23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7821 components: - pos: 12.5,24.5 @@ -60562,78 +57172,56 @@ entities: - pos: 12.5,25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7823 components: - pos: 13.5,25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7824 components: - pos: 14.5,25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7825 components: - pos: 14.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7826 components: - pos: 14.5,27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7827 components: - pos: 14.5,28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7828 components: - pos: 14.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7829 components: - pos: 15.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7830 components: - pos: 16.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7831 components: - pos: 17.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7832 components: - pos: 18.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7833 components: - pos: 18.5,28.5 @@ -60694,78 +57282,56 @@ entities: - pos: 9.5,30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7845 components: - pos: 9.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7846 components: - pos: 10.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7847 components: - pos: 11.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7848 components: - pos: 12.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7849 components: - pos: 13.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9144 components: - pos: 52.5,20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9145 components: - pos: 52.5,21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9146 components: - pos: 52.5,22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9147 components: - pos: 52.5,23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9148 components: - pos: 52.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9149 components: - pos: 53.5,22.5 @@ -61291,22 +57857,16 @@ entities: - pos: 16.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9490 components: - pos: 16.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9491 components: - pos: 17.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9492 components: - pos: 18.5,6.5 @@ -61342,106 +57902,76 @@ entities: - pos: 16.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9499 components: - pos: 15.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9500 components: - pos: 14.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9501 components: - pos: 13.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9502 components: - pos: 12.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9503 components: - pos: 11.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9504 components: - pos: 10.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9505 components: - pos: 9.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9506 components: - pos: 9.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9507 components: - pos: 9.5,9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9508 components: - pos: 9.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9509 components: - pos: 9.5,11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9510 components: - pos: 9.5,12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9511 components: - pos: 9.5,13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9512 components: - pos: 9.5,14.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9670 components: - pos: 22.5,-21.5 @@ -61457,29 +57987,21 @@ entities: - pos: 27.5,-38.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9796 components: - pos: 26.5,-38.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9797 components: - pos: 25.5,-38.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9798 components: - pos: 24.5,-38.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9799 components: - pos: 24.5,-6.5 @@ -61580,8 +58102,6 @@ entities: - pos: 24.5,-25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9819 components: - pos: 24.5,-26.5 @@ -61592,15 +58112,11 @@ entities: - pos: 24.5,-27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9821 components: - pos: 24.5,-28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9822 components: - pos: 24.5,-29.5 @@ -61631,15 +58147,11 @@ entities: - pos: 24.5,-34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9828 components: - pos: 24.5,-35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9829 components: - pos: 24.5,-36.5 @@ -61650,8 +58162,6 @@ entities: - pos: 24.5,-37.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9835 components: - pos: 21.5,-21.5 @@ -61662,92 +58172,66 @@ entities: - pos: 20.5,-21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9837 components: - pos: 19.5,-21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9838 components: - pos: 19.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9839 components: - pos: 19.5,-19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9840 components: - pos: -5.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9841 components: - pos: -5.5,-14.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9842 components: - pos: -5.5,-15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9843 components: - pos: -5.5,-16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9844 components: - pos: -5.5,-17.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9845 components: - pos: -5.5,-18.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9846 components: - pos: -5.5,-19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9847 components: - pos: -5.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9848 components: - pos: -4.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9849 components: - pos: -3.5,-20.5 @@ -61863,8 +58347,6 @@ entities: - pos: 22.5,12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11012 components: - pos: 16.5,-20.5 @@ -61880,8 +58362,6 @@ entities: - pos: 18.5,-21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12154 components: - pos: -13.5,-14.5 @@ -62112,8 +58592,6 @@ entities: - pos: -39.5,-44.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12892 components: - pos: -39.5,-45.5 @@ -62139,57 +58617,41 @@ entities: - pos: -41.5,-47.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12897 components: - pos: -42.5,-47.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12898 components: - pos: -43.5,-47.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12899 components: - pos: -43.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 16199 components: - pos: 9.5,72.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 16200 components: - pos: 9.5,70.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 16201 components: - pos: 10.5,70.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 16202 components: - pos: 9.5,71.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 16203 components: - pos: -4.5,56.5 @@ -62220,78 +58682,56 @@ entities: - pos: -1.5,69.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 16209 components: - pos: -0.5,69.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 16210 components: - pos: 1.5,69.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 16211 components: - pos: 0.5,69.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 16212 components: - pos: 2.5,69.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 16213 components: - pos: 2.5,70.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 16214 components: - pos: 2.5,71.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 16215 components: - pos: 3.5,74.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 16216 components: - pos: 5.5,74.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 16217 components: - pos: 4.5,74.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 16219 components: - pos: 6.5,74.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 16220 components: - pos: -4.5,61.5 @@ -62307,15 +58747,11 @@ entities: - pos: 7.5,74.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 16223 components: - pos: 8.5,74.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 16224 components: - pos: -4.5,63.5 @@ -62331,15 +58767,11 @@ entities: - pos: 9.5,74.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 16227 components: - pos: 9.5,73.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 16228 components: - pos: -4.5,68.5 @@ -62375,15 +58807,11 @@ entities: - pos: 2.5,72.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 16235 components: - pos: 2.5,73.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 16236 components: - pos: -4.5,60.5 @@ -62394,8 +58822,6 @@ entities: - pos: 2.5,74.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 17164 components: - pos: -3.5,55.5 @@ -62416,295 +58842,211 @@ entities: - pos: -0.5,55.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 17171 components: - pos: 0.5,52.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 17172 components: - pos: 1.5,52.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 17173 components: - pos: 2.5,52.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 17174 components: - pos: 3.5,52.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 17175 components: - pos: 4.5,52.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 17631 components: - pos: -0.5,54.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 17632 components: - pos: -0.5,53.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 17633 components: - pos: -0.5,52.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18971 components: - pos: 29.5,54.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18972 components: - pos: 30.5,54.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18973 components: - pos: 31.5,54.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18974 components: - pos: 32.5,54.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18975 components: - pos: 33.5,54.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18976 components: - pos: 34.5,54.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18977 components: - pos: 35.5,54.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18978 components: - pos: 36.5,54.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18979 components: - pos: 37.5,54.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18980 components: - pos: 38.5,54.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18981 components: - pos: 38.5,53.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18982 components: - pos: 38.5,52.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18983 components: - pos: 38.5,51.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18984 components: - pos: 38.5,50.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18985 components: - pos: 38.5,49.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18986 components: - pos: 38.5,48.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18987 components: - pos: 38.5,47.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18988 components: - pos: 38.5,46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18989 components: - pos: 38.5,45.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18990 components: - pos: 38.5,44.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18991 components: - pos: 38.5,43.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18992 components: - pos: 38.5,42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18993 components: - pos: 38.5,41.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18994 components: - pos: 38.5,40.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18995 components: - pos: 37.5,40.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18996 components: - pos: 36.5,40.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18997 components: - pos: 35.5,40.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18998 components: - pos: 34.5,40.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18999 components: - pos: 33.5,40.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19000 components: - pos: 32.5,40.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19001 components: - pos: 32.5,39.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19002 components: - pos: 32.5,38.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19003 components: - pos: 32.5,37.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19004 components: - pos: 33.5,37.5 @@ -62745,113 +59087,81 @@ entities: - pos: 65.5,-29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19595 components: - pos: 65.5,-28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19596 components: - pos: 65.5,-27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19597 components: - pos: 65.5,-26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19598 components: - pos: 65.5,-25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19599 components: - pos: 64.5,-25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19622 components: - pos: 51.5,-51.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19623 components: - pos: 51.5,-50.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19624 components: - pos: 51.5,-49.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19625 components: - pos: 51.5,-48.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19626 components: - pos: 51.5,-47.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19627 components: - pos: 51.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19628 components: - pos: 50.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19629 components: - pos: 49.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19630 components: - pos: 48.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19631 components: - pos: 47.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19632 components: - pos: 46.5,-46.5 @@ -62862,113 +59172,81 @@ entities: - pos: 45.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19634 components: - pos: 44.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19635 components: - pos: 43.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19636 components: - pos: 43.5,-45.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19637 components: - pos: 43.5,-44.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19638 components: - pos: 43.5,-43.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19639 components: - pos: 43.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19640 components: - pos: 42.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19641 components: - pos: 41.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19642 components: - pos: 40.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19643 components: - pos: 39.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19644 components: - pos: 38.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19645 components: - pos: 37.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19646 components: - pos: 36.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19647 components: - pos: 35.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19648 components: - pos: 34.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19649 components: - pos: 33.5,-42.5 @@ -62979,78 +59257,56 @@ entities: - pos: 32.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19651 components: - pos: 31.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19652 components: - pos: 30.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19653 components: - pos: 29.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19654 components: - pos: 28.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19655 components: - pos: 27.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19656 components: - pos: 26.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19657 components: - pos: 25.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19658 components: - pos: 24.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19659 components: - pos: 24.5,-41.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19660 components: - pos: 24.5,-40.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19661 components: - pos: 24.5,-39.5 @@ -63061,43 +59317,31 @@ entities: - pos: 52.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19663 components: - pos: 53.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19664 components: - pos: 54.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19665 components: - pos: 55.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19666 components: - pos: 56.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19667 components: - pos: 57.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19668 components: - pos: 58.5,-46.5 @@ -63108,85 +59352,61 @@ entities: - pos: 59.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19670 components: - pos: 60.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19671 components: - pos: 61.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19672 components: - pos: 62.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19673 components: - pos: 63.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19674 components: - pos: 64.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19675 components: - pos: 64.5,-45.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19676 components: - pos: 64.5,-44.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19677 components: - pos: 64.5,-43.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19678 components: - pos: 64.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19679 components: - pos: 64.5,-41.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19680 components: - pos: 64.5,-40.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19681 components: - pos: 64.5,-39.5 @@ -63197,176 +59417,126 @@ entities: - pos: 64.5,-38.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19683 components: - pos: 64.5,-37.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19684 components: - pos: 64.5,-36.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19685 components: - pos: 64.5,-35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19686 components: - pos: 64.5,-34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19687 components: - pos: 64.5,-33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19693 components: - pos: 64.5,-32.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19694 components: - pos: 64.5,-31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19695 components: - pos: 65.5,-31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19696 components: - pos: 64.5,-24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19697 components: - pos: 64.5,-23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19698 components: - pos: 63.5,-23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19699 components: - pos: 62.5,-23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19700 components: - pos: 61.5,-23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19701 components: - pos: 60.5,-23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19702 components: - pos: 59.5,-23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19703 components: - pos: 59.5,-22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19704 components: - pos: 59.5,-21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19705 components: - pos: 59.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19706 components: - pos: 59.5,-19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19707 components: - pos: 59.5,-18.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19708 components: - pos: 59.5,-17.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19709 components: - pos: 59.5,-16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19710 components: - pos: 59.5,-15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19711 components: - pos: 59.5,-14.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19712 components: - pos: 59.5,-13.5 @@ -63517,22 +59687,16 @@ entities: - pos: 88.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20333 components: - pos: 87.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20334 components: - pos: 87.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20478 components: - pos: 42.5,-12.5 @@ -63548,22 +59712,16 @@ entities: - pos: 97.5,-27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20649 components: - pos: 97.5,-26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20650 components: - pos: 97.5,-25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20651 components: - pos: 97.5,-24.5 @@ -63589,8 +59747,6 @@ entities: - pos: 97.5,-19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20657 components: - pos: 98.5,-19.5 @@ -63606,183 +59762,131 @@ entities: - pos: 11.5,70.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20784 components: - pos: 12.5,70.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20785 components: - pos: 13.5,70.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20786 components: - pos: 14.5,70.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20787 components: - pos: 15.5,70.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20788 components: - pos: 16.5,70.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20789 components: - pos: 17.5,70.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20790 components: - pos: 18.5,70.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20791 components: - pos: 19.5,70.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20792 components: - pos: 20.5,70.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20793 components: - pos: 21.5,70.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20794 components: - pos: 22.5,70.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20795 components: - pos: 22.5,69.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20796 components: - pos: 22.5,68.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20797 components: - pos: 22.5,67.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20798 components: - pos: 22.5,66.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20799 components: - pos: 23.5,66.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20800 components: - pos: 24.5,66.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20801 components: - pos: 25.5,66.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20802 components: - pos: 26.5,66.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20803 components: - pos: 27.5,66.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20808 components: - pos: 32.5,66.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20809 components: - pos: 32.5,65.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20810 components: - pos: 32.5,64.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20811 components: - pos: 32.5,63.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20812 components: - pos: 32.5,62.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20813 components: - pos: 32.5,61.5 @@ -63793,1072 +59897,766 @@ entities: - pos: 32.5,60.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20815 components: - pos: 32.5,59.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20816 components: - pos: 32.5,58.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20817 components: - pos: 32.5,57.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20818 components: - pos: 32.5,56.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20819 components: - pos: 32.5,55.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21255 components: - pos: 74.5,28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21662 components: - pos: 132.5,16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21664 components: - pos: 120.5,16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21665 components: - pos: 120.5,17.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21666 components: - pos: 120.5,18.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21667 components: - pos: 120.5,19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21668 components: - pos: 120.5,20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21669 components: - pos: 120.5,21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21670 components: - pos: 120.5,22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21671 components: - pos: 122.5,16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21672 components: - pos: 122.5,17.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21673 components: - pos: 122.5,18.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21674 components: - pos: 122.5,19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21675 components: - pos: 122.5,20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21676 components: - pos: 122.5,21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21677 components: - pos: 122.5,22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21678 components: - pos: 124.5,22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21679 components: - pos: 124.5,21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21680 components: - pos: 124.5,20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21681 components: - pos: 124.5,19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21682 components: - pos: 124.5,18.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21683 components: - pos: 124.5,17.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21684 components: - pos: 124.5,16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21685 components: - pos: 126.5,16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21686 components: - pos: 126.5,17.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21687 components: - pos: 126.5,18.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21688 components: - pos: 126.5,19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21689 components: - pos: 126.5,20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21690 components: - pos: 126.5,21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21691 components: - pos: 126.5,22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21692 components: - pos: 128.5,22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21693 components: - pos: 128.5,21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21694 components: - pos: 128.5,20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21695 components: - pos: 128.5,19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21696 components: - pos: 128.5,18.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21697 components: - pos: 128.5,17.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21698 components: - pos: 128.5,16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21699 components: - pos: 130.5,16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21700 components: - pos: 130.5,17.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21701 components: - pos: 130.5,18.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21702 components: - pos: 130.5,19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21703 components: - pos: 130.5,20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21704 components: - pos: 130.5,21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21705 components: - pos: 130.5,22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21706 components: - pos: 129.5,22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21707 components: - pos: 129.5,23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21708 components: - pos: 125.5,22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21709 components: - pos: 125.5,23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21710 components: - pos: 121.5,22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21711 components: - pos: 121.5,23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21712 components: - pos: 132.5,17.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21713 components: - pos: 132.5,18.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21714 components: - pos: 132.5,19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21715 components: - pos: 132.5,20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21716 components: - pos: 132.5,21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21717 components: - pos: 132.5,22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21718 components: - pos: 134.5,16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21719 components: - pos: 134.5,17.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21720 components: - pos: 134.5,18.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21721 components: - pos: 134.5,19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21722 components: - pos: 134.5,20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21723 components: - pos: 134.5,21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21724 components: - pos: 134.5,22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21725 components: - pos: 133.5,22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21726 components: - pos: 133.5,23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21728 components: - pos: 134.5,35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21729 components: - pos: 134.5,34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21730 components: - pos: 134.5,33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21731 components: - pos: 134.5,32.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21732 components: - pos: 134.5,31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21733 components: - pos: 134.5,30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21734 components: - pos: 134.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21735 components: - pos: 134.5,28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21736 components: - pos: 132.5,35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21737 components: - pos: 132.5,34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21738 components: - pos: 132.5,33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21739 components: - pos: 132.5,32.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21740 components: - pos: 132.5,31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21741 components: - pos: 132.5,30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21742 components: - pos: 132.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21743 components: - pos: 132.5,28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21744 components: - pos: 130.5,28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21745 components: - pos: 130.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21746 components: - pos: 130.5,30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21747 components: - pos: 130.5,31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21748 components: - pos: 130.5,32.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21749 components: - pos: 130.5,33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21750 components: - pos: 130.5,34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21751 components: - pos: 130.5,35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21752 components: - pos: 128.5,35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21753 components: - pos: 128.5,34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21754 components: - pos: 128.5,33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21755 components: - pos: 128.5,32.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21756 components: - pos: 128.5,31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21757 components: - pos: 128.5,30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21758 components: - pos: 128.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21759 components: - pos: 128.5,28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21760 components: - pos: 126.5,28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21761 components: - pos: 126.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21762 components: - pos: 126.5,30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21763 components: - pos: 126.5,31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21764 components: - pos: 126.5,32.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21765 components: - pos: 126.5,33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21766 components: - pos: 126.5,34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21767 components: - pos: 126.5,35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21768 components: - pos: 124.5,35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21769 components: - pos: 124.5,34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21770 components: - pos: 124.5,33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21771 components: - pos: 124.5,32.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21772 components: - pos: 124.5,31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21773 components: - pos: 124.5,30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21774 components: - pos: 124.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21775 components: - pos: 124.5,28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21776 components: - pos: 122.5,28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21777 components: - pos: 122.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21778 components: - pos: 122.5,30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21779 components: - pos: 122.5,31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21780 components: - pos: 122.5,32.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21781 components: - pos: 122.5,33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21782 components: - pos: 122.5,34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21783 components: - pos: 122.5,35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21784 components: - pos: 120.5,35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21785 components: - pos: 120.5,34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21786 components: - pos: 120.5,33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21787 components: - pos: 120.5,32.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21788 components: - pos: 120.5,31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21789 components: - pos: 120.5,30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21790 components: - pos: 120.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21791 components: - pos: 120.5,28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21792 components: - pos: 121.5,28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21793 components: - pos: 121.5,27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21794 components: - pos: 125.5,28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21795 components: - pos: 125.5,27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21796 components: - pos: 129.5,28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21797 components: - pos: 129.5,27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21798 components: - pos: 133.5,28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21799 components: - pos: 133.5,27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21800 components: - pos: 121.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21801 components: - pos: 121.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21802 components: - pos: 125.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21803 components: - pos: 125.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21804 components: - pos: 129.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21805 components: - pos: 129.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21806 components: - pos: 133.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21807 components: - pos: 133.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21808 components: - pos: 136.5,25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21809 components: - pos: 135.5,25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 21810 components: - pos: 137.5,25.5 @@ -64869,855 +60667,611 @@ entities: - pos: 96.5,-67.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22042 components: - pos: 97.5,-67.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22043 components: - pos: 98.5,-67.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22044 components: - pos: 99.5,-67.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22045 components: - pos: 100.5,-67.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22046 components: - pos: 101.5,-67.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22047 components: - pos: 102.5,-67.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22048 components: - pos: 103.5,-67.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22049 components: - pos: 104.5,-67.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22050 components: - pos: 104.5,-68.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22051 components: - pos: 105.5,-68.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22052 components: - pos: 104.5,-69.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22053 components: - pos: 103.5,-69.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22054 components: - pos: 102.5,-69.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22055 components: - pos: 101.5,-69.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22056 components: - pos: 100.5,-69.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22057 components: - pos: 99.5,-69.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22058 components: - pos: 98.5,-69.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22059 components: - pos: 97.5,-69.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22060 components: - pos: 96.5,-69.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22061 components: - pos: 96.5,-71.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22062 components: - pos: 97.5,-71.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22063 components: - pos: 98.5,-71.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22064 components: - pos: 99.5,-71.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22065 components: - pos: 100.5,-71.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22066 components: - pos: 101.5,-71.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22067 components: - pos: 102.5,-71.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22068 components: - pos: 103.5,-71.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22069 components: - pos: 104.5,-71.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22070 components: - pos: 96.5,-73.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22071 components: - pos: 97.5,-73.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22072 components: - pos: 98.5,-73.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22073 components: - pos: 99.5,-73.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22074 components: - pos: 100.5,-73.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22075 components: - pos: 101.5,-73.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22076 components: - pos: 102.5,-73.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22077 components: - pos: 103.5,-73.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22078 components: - pos: 104.5,-73.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22079 components: - pos: 96.5,-75.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22080 components: - pos: 97.5,-75.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22081 components: - pos: 98.5,-75.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22082 components: - pos: 99.5,-75.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22083 components: - pos: 100.5,-75.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22084 components: - pos: 101.5,-75.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22085 components: - pos: 102.5,-75.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22086 components: - pos: 103.5,-75.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22087 components: - pos: 104.5,-75.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22088 components: - pos: 96.5,-77.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22089 components: - pos: 97.5,-77.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22090 components: - pos: 98.5,-77.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22091 components: - pos: 99.5,-77.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22092 components: - pos: 100.5,-77.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22093 components: - pos: 101.5,-77.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22094 components: - pos: 102.5,-77.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22095 components: - pos: 103.5,-77.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22096 components: - pos: 104.5,-77.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22097 components: - pos: 104.5,-76.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22098 components: - pos: 105.5,-76.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22099 components: - pos: 104.5,-72.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22100 components: - pos: 105.5,-72.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22101 components: - pos: 116.5,-73.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22102 components: - pos: 115.5,-73.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22103 components: - pos: 114.5,-73.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22104 components: - pos: 113.5,-73.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22105 components: - pos: 112.5,-73.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22106 components: - pos: 111.5,-73.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22107 components: - pos: 110.5,-73.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22108 components: - pos: 109.5,-73.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22109 components: - pos: 108.5,-73.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22110 components: - pos: 108.5,-71.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22111 components: - pos: 109.5,-71.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22112 components: - pos: 110.5,-71.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22113 components: - pos: 111.5,-71.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22114 components: - pos: 112.5,-71.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22115 components: - pos: 113.5,-71.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22116 components: - pos: 114.5,-71.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22117 components: - pos: 115.5,-71.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22118 components: - pos: 116.5,-71.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22119 components: - pos: 116.5,-69.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22120 components: - pos: 115.5,-69.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22121 components: - pos: 114.5,-69.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22122 components: - pos: 113.5,-69.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22123 components: - pos: 112.5,-69.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22124 components: - pos: 111.5,-69.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22125 components: - pos: 110.5,-69.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22126 components: - pos: 109.5,-69.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22127 components: - pos: 108.5,-69.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22128 components: - pos: 108.5,-67.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22129 components: - pos: 109.5,-67.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22130 components: - pos: 110.5,-67.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22131 components: - pos: 111.5,-67.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22132 components: - pos: 112.5,-67.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22133 components: - pos: 113.5,-67.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22134 components: - pos: 114.5,-67.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22135 components: - pos: 115.5,-67.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22136 components: - pos: 116.5,-67.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22137 components: - pos: 116.5,-75.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22138 components: - pos: 115.5,-75.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22139 components: - pos: 114.5,-75.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22140 components: - pos: 113.5,-75.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22141 components: - pos: 112.5,-75.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22142 components: - pos: 111.5,-75.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22143 components: - pos: 110.5,-75.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22144 components: - pos: 109.5,-75.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22145 components: - pos: 108.5,-75.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22146 components: - pos: 108.5,-77.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22147 components: - pos: 109.5,-77.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22148 components: - pos: 110.5,-77.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22149 components: - pos: 111.5,-77.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22150 components: - pos: 112.5,-77.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22151 components: - pos: 113.5,-77.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22152 components: - pos: 114.5,-77.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22153 components: - pos: 115.5,-77.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22154 components: - pos: 116.5,-77.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22155 components: - pos: 108.5,-76.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22156 components: - pos: 107.5,-76.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22157 components: - pos: 108.5,-72.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22158 components: - pos: 107.5,-72.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22159 components: - pos: 108.5,-68.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22160 components: - pos: 107.5,-68.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22161 components: - pos: 106.5,-79.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22162 components: - pos: 106.5,-78.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22163 components: - pos: 106.5,-80.5 @@ -65728,204 +61282,146 @@ entities: - pos: 106.5,-67.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22166 components: - pos: 106.5,-66.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22167 components: - pos: 106.5,-65.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22168 components: - pos: 106.5,-64.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22169 components: - pos: 106.5,-63.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22170 components: - pos: 106.5,-62.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22171 components: - pos: 106.5,-61.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22172 components: - pos: 106.5,-60.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22173 components: - pos: 105.5,-60.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22174 components: - pos: 104.5,-60.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22175 components: - pos: 103.5,-60.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22176 components: - pos: 102.5,-60.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22177 components: - pos: 102.5,-59.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22178 components: - pos: 102.5,-58.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22179 components: - pos: 102.5,-57.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22180 components: - pos: 102.5,-56.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22181 components: - pos: 102.5,-55.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22191 components: - pos: 102.5,-54.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22192 components: - pos: 103.5,-54.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22193 components: - pos: 104.5,-54.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22194 components: - pos: 104.5,-53.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22195 components: - pos: 104.5,-52.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22196 components: - pos: 103.5,-52.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22197 components: - pos: 103.5,-51.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22198 components: - pos: 103.5,-50.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22207 components: - pos: 114.5,32.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22208 components: - pos: 113.5,32.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22209 components: - pos: 112.5,32.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22210 components: - pos: 112.5,31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22211 components: - pos: 111.5,31.5 @@ -65936,99 +61432,71 @@ entities: - pos: 110.5,31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22213 components: - pos: 114.5,31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22214 components: - pos: 115.5,31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22215 components: - pos: 116.5,31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22216 components: - pos: 117.5,31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22217 components: - pos: 118.5,31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22218 components: - pos: 118.5,30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22219 components: - pos: 118.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22220 components: - pos: 118.5,28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22221 components: - pos: 118.5,27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22222 components: - pos: 118.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22223 components: - pos: 118.5,25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22224 components: - pos: 119.5,25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22225 components: - pos: 120.5,25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22527 components: - pos: 100.5,-19.5 @@ -66104,106 +61572,76 @@ entities: - pos: 67.5,-5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22701 components: - pos: 66.5,-5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22702 components: - pos: 65.5,-5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22703 components: - pos: 64.5,-5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22704 components: - pos: 64.5,-4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22705 components: - pos: 64.5,-3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22706 components: - pos: 64.5,-2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22707 components: - pos: 64.5,-1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22708 components: - pos: 64.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22709 components: - pos: 65.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22710 components: - pos: 66.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22711 components: - pos: 67.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22712 components: - pos: 68.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22714 components: - pos: 88.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22724 components: - pos: 88.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22730 components: - pos: 89.5,0.5 @@ -66244,8 +61682,6 @@ entities: - pos: 90.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22777 components: - pos: 90.5,1.5 @@ -66296,8 +61732,6 @@ entities: - pos: 97.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22843 components: - pos: 90.5,4.5 @@ -66318,148 +61752,106 @@ entities: - pos: 90.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22847 components: - pos: 89.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22848 components: - pos: 88.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22849 components: - pos: 87.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22850 components: - pos: 86.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22851 components: - pos: 85.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22852 components: - pos: 84.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22860 components: - pos: 64.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22861 components: - pos: 64.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22862 components: - pos: 64.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22863 components: - pos: 65.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22864 components: - pos: 66.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22865 components: - pos: 67.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22866 components: - pos: 68.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22867 components: - pos: 68.5,3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22868 components: - pos: 69.5,3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22869 components: - pos: 70.5,3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22870 components: - pos: 71.5,3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22871 components: - pos: 72.5,3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22872 components: - pos: 73.5,3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22873 components: - pos: 74.5,3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22874 components: - pos: 75.5,3.5 @@ -66470,22 +61862,16 @@ entities: - pos: 75.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22876 components: - pos: 76.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22877 components: - pos: 77.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22878 components: - pos: 83.5,2.5 @@ -66501,50 +61887,36 @@ entities: - pos: 83.5,3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22881 components: - pos: 82.5,3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22882 components: - pos: 81.5,3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22883 components: - pos: 81.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22884 components: - pos: 80.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22885 components: - pos: 79.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22886 components: - pos: 78.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22887 components: - pos: 64.5,3.5 @@ -66640,330 +62012,236 @@ entities: - pos: 96.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23040 components: - pos: 106.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23080 components: - pos: 107.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23081 components: - pos: 108.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23082 components: - pos: 109.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23083 components: - pos: 116.5,-4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23084 components: - pos: 116.5,-5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23085 components: - pos: 116.5,-6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23086 components: - pos: 107.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23087 components: - pos: 108.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23088 components: - pos: 109.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23089 components: - pos: 110.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23090 components: - pos: 111.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23091 components: - pos: 112.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23092 components: - pos: 113.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23093 components: - pos: 114.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23094 components: - pos: 115.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23095 components: - pos: 116.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23096 components: - pos: 116.5,-12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23097 components: - pos: 116.5,-11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23098 components: - pos: 116.5,-10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23099 components: - pos: 116.5,-9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23100 components: - pos: 116.5,-8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23101 components: - pos: 116.5,-7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23102 components: - pos: 116.5,-3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23103 components: - pos: 116.5,-2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23104 components: - pos: 116.5,-1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23105 components: - pos: 116.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23106 components: - pos: 116.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23107 components: - pos: 116.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23108 components: - pos: 116.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23109 components: - pos: 115.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23110 components: - pos: 114.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23111 components: - pos: 113.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23112 components: - pos: 112.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23113 components: - pos: 111.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23114 components: - pos: 110.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23115 components: - pos: 105.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23116 components: - pos: 104.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23117 components: - pos: 103.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23118 components: - pos: 102.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23119 components: - pos: 101.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23120 components: - pos: 100.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23121 components: - pos: 100.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23123 components: - pos: 100.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23132 components: - pos: 113.5,-26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23133 components: - pos: 114.5,-26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23134 components: - pos: 113.5,-25.5 @@ -67014,36 +62292,26 @@ entities: - pos: 97.5,-29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23144 components: - pos: 97.5,-30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23145 components: - pos: 97.5,-31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23146 components: - pos: 99.5,-36.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23147 components: - pos: 98.5,-36.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23148 components: - pos: 99.5,-16.5 @@ -67099,29 +62367,21 @@ entities: - pos: 112.5,-16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23159 components: - pos: 113.5,-16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23160 components: - pos: 113.5,-15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23161 components: - pos: 113.5,-14.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23162 components: - pos: 98.5,-15.5 @@ -67137,43 +62397,31 @@ entities: - pos: 88.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23165 components: - pos: 87.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23166 components: - pos: 86.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23167 components: - pos: 85.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23168 components: - pos: 84.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23169 components: - pos: 83.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23170 components: - pos: 82.5,-20.5 @@ -67364,8 +62612,6 @@ entities: - pos: 113.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23208 components: - pos: 114.5,-20.5 @@ -67391,330 +62637,236 @@ entities: - pos: 118.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23216 components: - pos: 118.5,-19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23217 components: - pos: 118.5,-17.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23218 components: - pos: 118.5,-14.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23219 components: - pos: 118.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23220 components: - pos: 119.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23221 components: - pos: 119.5,-12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23222 components: - pos: 119.5,-11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23223 components: - pos: 119.5,-10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23224 components: - pos: 119.5,-9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23225 components: - pos: 119.5,-8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23226 components: - pos: 119.5,-7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23227 components: - pos: 119.5,-6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23228 components: - pos: 119.5,-5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23229 components: - pos: 119.5,-4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23230 components: - pos: 119.5,-3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23231 components: - pos: 119.5,-2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23232 components: - pos: 119.5,-1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23233 components: - pos: 119.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23234 components: - pos: 119.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23235 components: - pos: 119.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23236 components: - pos: 119.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23237 components: - pos: 119.5,3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23238 components: - pos: 119.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23239 components: - pos: 119.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23240 components: - pos: 119.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23241 components: - pos: 81.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23242 components: - pos: 81.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23243 components: - pos: 81.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23244 components: - pos: 81.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23245 components: - pos: 81.5,9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23246 components: - pos: 81.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23247 components: - pos: 82.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23248 components: - pos: 83.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23249 components: - pos: 84.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23250 components: - pos: 85.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23251 components: - pos: 86.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23252 components: - pos: 87.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23253 components: - pos: 88.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23254 components: - pos: 89.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23255 components: - pos: 90.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23256 components: - pos: 91.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23257 components: - pos: 92.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23258 components: - pos: 93.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23259 components: - pos: 118.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23260 components: - pos: 117.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23261 components: - pos: 116.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23262 components: - pos: 96.5,0.5 @@ -67730,71 +62882,51 @@ entities: - pos: 97.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23265 components: - pos: 94.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23275 components: - pos: 93.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23281 components: - pos: 96.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23282 components: - pos: 100.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23283 components: - pos: 98.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23286 components: - pos: 99.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23300 components: - pos: 92.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23301 components: - pos: 91.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23418 components: - pos: 96.5,-6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23419 components: - pos: 96.5,-7.5 @@ -67805,8 +62937,6 @@ entities: - pos: 96.5,-4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23421 components: - pos: 96.5,-3.5 @@ -67972,22 +63102,16 @@ entities: - pos: 87.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23468 components: - pos: 87.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23469 components: - pos: 88.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23591 components: - pos: 98.5,-13.5 @@ -68013,8 +63137,6 @@ entities: - pos: 98.5,-9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23609 components: - pos: 98.5,-8.5 @@ -68055,36 +63177,26 @@ entities: - pos: 97.5,-36.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23619 components: - pos: 97.5,-43.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23620 components: - pos: 97.5,-44.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23621 components: - pos: 97.5,-45.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23888 components: - pos: 98.5,-1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23912 components: - pos: 97.5,-20.5 @@ -68105,8 +63217,6 @@ entities: - pos: 37.5,-12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24230 components: - pos: 42.5,-13.5 @@ -68162,71 +63272,51 @@ entities: - pos: 37.5,-11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24247 components: - pos: 101.5,-43.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24248 components: - pos: 101.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24249 components: - pos: 100.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24250 components: - pos: 99.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24251 components: - pos: 98.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24252 components: - pos: 97.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24259 components: - pos: 97.5,-35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24260 components: - pos: 97.5,-34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24261 components: - pos: 97.5,-33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24262 components: - pos: 97.5,-32.5 @@ -68237,57 +63327,41 @@ entities: - pos: 69.5,-31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24292 components: - pos: 69.5,-32.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24293 components: - pos: 69.5,-33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24294 components: - pos: 69.5,-34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24295 components: - pos: 69.5,-35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24296 components: - pos: 69.5,-36.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24297 components: - pos: 68.5,-36.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24298 components: - pos: 67.5,-36.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24299 components: - pos: 66.5,-36.5 @@ -68298,36 +63372,26 @@ entities: - pos: 65.5,-36.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24301 components: - pos: 68.5,-31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24302 components: - pos: 68.5,-30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24303 components: - pos: 68.5,-29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24304 components: - pos: 68.5,-28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24305 components: - pos: 68.5,-27.5 @@ -68493,64 +63557,46 @@ entities: - pos: 32.5,-12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25054 components: - pos: 33.5,-12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25055 components: - pos: 33.5,-11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25056 components: - pos: 33.5,-10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25057 components: - pos: 33.5,-9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25058 components: - pos: 33.5,-8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25059 components: - pos: 33.5,-7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25060 components: - pos: 33.5,-6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25061 components: - pos: 33.5,-5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25062 components: - pos: 33.5,-4.5 @@ -68641,22 +63687,16 @@ entities: - pos: 88.5,-14.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25080 components: - pos: 88.5,-15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25081 components: - pos: 88.5,-16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25082 components: - pos: 88.5,-17.5 @@ -68667,50 +63707,36 @@ entities: - pos: 88.5,-18.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25084 components: - pos: 88.5,-19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25153 components: - pos: 103.5,-49.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25154 components: - pos: 103.5,-48.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25155 components: - pos: 103.5,-47.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25156 components: - pos: 103.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25157 components: - pos: 102.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25158 components: - pos: 101.5,-46.5 @@ -68721,36 +63747,26 @@ entities: - pos: 100.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25160 components: - pos: 99.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25161 components: - pos: 98.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25162 components: - pos: 97.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25166 components: - pos: 96.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25167 components: - pos: 95.5,-46.5 @@ -68761,15 +63777,11 @@ entities: - pos: 94.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25169 components: - pos: 93.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25170 components: - pos: 92.5,-46.5 @@ -68790,15 +63802,11 @@ entities: - pos: 89.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25174 components: - pos: 88.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25175 components: - pos: 87.5,-46.5 @@ -68809,8 +63817,6 @@ entities: - pos: 86.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25177 components: - pos: 85.5,-46.5 @@ -68846,8 +63852,6 @@ entities: - pos: 79.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25184 components: - pos: 78.5,-46.5 @@ -68868,8 +63872,6 @@ entities: - pos: 75.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25188 components: - pos: 74.5,-46.5 @@ -68910,64 +63912,46 @@ entities: - pos: 67.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25196 components: - pos: 66.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25197 components: - pos: 65.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25203 components: - pos: -28.5,25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25204 components: - pos: -29.5,25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25205 components: - pos: -30.5,25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25206 components: - pos: -30.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25207 components: - pos: -30.5,27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25208 components: - pos: -30.5,28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25209 components: - pos: -30.5,29.5 @@ -69113,8 +64097,6 @@ entities: - pos: 87.5,-11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26229 components: - pos: 86.5,-11.5 @@ -69170,316 +64152,226 @@ entities: - pos: 115.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26986 components: - pos: 114.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26987 components: - pos: 114.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26988 components: - pos: 114.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26989 components: - pos: 113.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26990 components: - pos: 112.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26991 components: - pos: 111.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26992 components: - pos: 110.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26993 components: - pos: 109.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26994 components: - pos: 108.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26995 components: - pos: 107.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26996 components: - pos: 106.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26997 components: - pos: 105.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26998 components: - pos: 104.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26999 components: - pos: 103.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27000 components: - pos: 102.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27001 components: - pos: 101.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27002 components: - pos: 100.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27003 components: - pos: 100.5,9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27004 components: - pos: 100.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27005 components: - pos: 99.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27006 components: - pos: 98.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27007 components: - pos: 97.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27008 components: - pos: 96.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27009 components: - pos: 95.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27010 components: - pos: 94.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27149 components: - pos: 102.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27150 components: - pos: 101.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27151 components: - pos: 100.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27152 components: - pos: 99.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27153 components: - pos: 98.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27154 components: - pos: 97.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27155 components: - pos: 96.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27156 components: - pos: 95.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27157 components: - pos: 94.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27158 components: - pos: 93.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27159 components: - pos: 92.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27160 components: - pos: 91.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27161 components: - pos: 90.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27162 components: - pos: 90.5,27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27163 components: - pos: 89.5,27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27164 components: - pos: 88.5,27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27165 components: - pos: 87.5,27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27166 components: - pos: 86.5,27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27167 components: - pos: 85.5,27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27168 components: - pos: 84.5,27.5 @@ -69525,176 +64417,126 @@ entities: - pos: 78.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27177 components: - pos: 77.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27178 components: - pos: 76.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27179 components: - pos: 75.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27180 components: - pos: 74.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27182 components: - pos: 74.5,27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27183 components: - pos: 74.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27184 components: - pos: 74.5,25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27185 components: - pos: 74.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27186 components: - pos: 73.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27187 components: - pos: 72.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27188 components: - pos: 71.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27189 components: - pos: 70.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27190 components: - pos: 69.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27191 components: - pos: 68.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27192 components: - pos: 67.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27193 components: - pos: 66.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27194 components: - pos: 65.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27195 components: - pos: 64.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27196 components: - pos: 63.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27197 components: - pos: 62.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27198 components: - pos: 61.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27199 components: - pos: 60.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27200 components: - pos: 59.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27201 components: - pos: 58.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27202 components: - pos: 57.5,24.5 @@ -69715,141 +64557,101 @@ entities: - pos: 102.5,27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27206 components: - pos: 102.5,28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27207 components: - pos: 102.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27208 components: - pos: 102.5,30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27209 components: - pos: 102.5,31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27210 components: - pos: 102.5,32.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27211 components: - pos: 102.5,33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27212 components: - pos: 102.5,34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27213 components: - pos: 102.5,35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27214 components: - pos: 109.5,31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27215 components: - pos: 109.5,32.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27216 components: - pos: 109.5,33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27217 components: - pos: 109.5,35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27218 components: - pos: 109.5,34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27219 components: - pos: 108.5,35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27220 components: - pos: 107.5,35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27221 components: - pos: 106.5,35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27222 components: - pos: 105.5,35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27223 components: - pos: 104.5,35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27224 components: - pos: 103.5,35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27225 components: - pos: 90.5,29.5 @@ -69875,8 +64677,6 @@ entities: - pos: 90.5,31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27230 components: - pos: 88.5,32.5 @@ -70002,99 +64802,71 @@ entities: - pos: 101.5,35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27278 components: - pos: 102.5,25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27279 components: - pos: 102.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27280 components: - pos: 102.5,23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27281 components: - pos: 102.5,22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27282 components: - pos: 102.5,21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27283 components: - pos: 102.5,20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27284 components: - pos: 102.5,19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27285 components: - pos: 103.5,19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27286 components: - pos: 104.5,19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27287 components: - pos: 105.5,19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27288 components: - pos: 106.5,19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27289 components: - pos: 107.5,19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27290 components: - pos: 108.5,19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27291 components: - pos: 109.5,19.5 @@ -70135,22 +64907,16 @@ entities: - pos: 113.5,16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27299 components: - pos: 113.5,15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27300 components: - pos: 113.5,14.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27301 components: - pos: 113.5,13.5 @@ -70181,43 +64947,31 @@ entities: - pos: 98.5,11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27307 components: - pos: 98.5,12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27308 components: - pos: 98.5,13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27309 components: - pos: 98.5,14.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27310 components: - pos: 97.5,14.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27311 components: - pos: 96.5,14.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27312 components: - pos: 95.5,14.5 @@ -70458,50 +65212,36 @@ entities: - pos: 107.5,9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27371 components: - pos: 107.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27372 components: - pos: 107.5,11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27373 components: - pos: 107.5,12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27519 components: - pos: 118.5,-15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27521 components: - pos: 118.5,-16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27522 components: - pos: 118.5,-18.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27526 components: - pos: 91.5,29.5 @@ -70577,29 +65317,21 @@ entities: - pos: 87.5,37.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27586 components: - pos: 94.5,36.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27587 components: - pos: 88.5,31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27588 components: - pos: 86.5,31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27589 components: - pos: 88.5,30.5 @@ -70610,43 +65342,31 @@ entities: - pos: 89.5,30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28276 components: - pos: 71.5,22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28277 components: - pos: 72.5,22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28278 components: - pos: 73.5,22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28279 components: - pos: 74.5,22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28280 components: - pos: 74.5,23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28281 components: - pos: 74.5,15.5 @@ -70667,15 +65387,11 @@ entities: - pos: 74.5,18.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28285 components: - pos: 74.5,19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28286 components: - pos: 74.5,20.5 @@ -70686,8 +65402,6 @@ entities: - pos: 74.5,21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29374 components: - pos: 82.5,13.5 @@ -70698,43 +65412,31 @@ entities: - pos: 110.5,35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29881 components: - pos: 111.5,35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29882 components: - pos: 112.5,35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29883 components: - pos: 112.5,36.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29884 components: - pos: 112.5,37.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29885 components: - pos: 112.5,38.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29886 components: - pos: 112.5,39.5 @@ -70745,15 +65447,11 @@ entities: - pos: 112.5,40.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29888 components: - pos: 112.5,41.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29889 components: - pos: 112.5,42.5 @@ -70859,176 +65557,126 @@ entities: - pos: 55.5,45.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30269 components: - pos: 55.5,46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30270 components: - pos: 55.5,47.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30271 components: - pos: 55.5,48.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30272 components: - pos: 55.5,49.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30273 components: - pos: 55.5,50.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30274 components: - pos: 56.5,50.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30275 components: - pos: 57.5,50.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30276 components: - pos: 57.5,51.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30277 components: - pos: 54.5,46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30278 components: - pos: 53.5,46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30279 components: - pos: 52.5,46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30280 components: - pos: 51.5,46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30281 components: - pos: 50.5,46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30282 components: - pos: 49.5,46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30283 components: - pos: 48.5,46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30284 components: - pos: 47.5,46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30285 components: - pos: 46.5,46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30286 components: - pos: 45.5,46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30287 components: - pos: 44.5,46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30288 components: - pos: 43.5,46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30289 components: - pos: 42.5,46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30290 components: - pos: 41.5,46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30291 components: - pos: 40.5,46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30292 components: - pos: 39.5,46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30321 components: - pos: 82.5,33.5 @@ -71274,8 +65922,6 @@ entities: - pos: 55.5,51.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30370 components: - pos: 55.5,52.5 @@ -71296,8 +65942,6 @@ entities: - pos: 55.5,55.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30374 components: - pos: 55.5,56.5 @@ -71308,8 +65952,6 @@ entities: - pos: 56.5,56.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30376 components: - pos: 57.5,56.5 @@ -71460,92 +66102,66 @@ entities: - pos: -34.5,-2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31908 components: - pos: -33.5,-2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31909 components: - pos: -32.5,-2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31910 components: - pos: -31.5,-2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31911 components: - pos: -30.5,-2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31912 components: - pos: -29.5,-2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31913 components: - pos: -28.5,-2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31914 components: - pos: -27.5,-2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31915 components: - pos: -26.5,-2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31916 components: - pos: -25.5,-2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31917 components: - pos: -24.5,-2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31918 components: - pos: -23.5,-2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31919 components: - pos: -22.5,-2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31920 components: - pos: -22.5,-3.5 @@ -71561,99 +66177,71 @@ entities: - pos: -24.5,-1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31923 components: - pos: -24.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31924 components: - pos: -24.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31925 components: - pos: -24.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31926 components: - pos: -24.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31927 components: - pos: -24.5,3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31928 components: - pos: -24.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31929 components: - pos: -24.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31930 components: - pos: -23.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31931 components: - pos: -22.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32077 components: - pos: -34.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32078 components: - pos: -34.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32079 components: - pos: -34.5,3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32080 components: - pos: -34.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32081 components: - pos: -34.5,5.5 @@ -71669,15 +66257,11 @@ entities: - pos: -34.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32084 components: - pos: -34.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32085 components: - pos: -34.5,9.5 @@ -71693,22 +66277,16 @@ entities: - pos: -34.5,11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32088 components: - pos: -34.5,12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32089 components: - pos: -33.5,12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32090 components: - pos: -32.5,12.5 @@ -71734,22 +66312,16 @@ entities: - pos: -28.5,12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32095 components: - pos: -27.5,12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32096 components: - pos: -26.5,12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32097 components: - pos: -25.5,12.5 @@ -71765,876 +66337,626 @@ entities: - pos: 28.5,66.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32822 components: - pos: 29.5,66.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32823 components: - pos: 30.5,66.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32824 components: - pos: 31.5,66.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32971 components: - pos: 50.5,75.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32972 components: - pos: 49.5,75.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32973 components: - pos: 48.5,75.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32974 components: - pos: 47.5,75.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32975 components: - pos: 46.5,75.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32976 components: - pos: 45.5,75.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32977 components: - pos: 44.5,75.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32978 components: - pos: 43.5,75.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32979 components: - pos: 42.5,75.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32980 components: - pos: 42.5,77.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32981 components: - pos: 43.5,77.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32982 components: - pos: 44.5,77.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32983 components: - pos: 45.5,77.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32984 components: - pos: 46.5,77.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32985 components: - pos: 47.5,77.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32986 components: - pos: 48.5,77.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32987 components: - pos: 49.5,77.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32988 components: - pos: 50.5,77.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32989 components: - pos: 50.5,79.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32990 components: - pos: 49.5,79.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32991 components: - pos: 48.5,79.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32992 components: - pos: 47.5,79.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32993 components: - pos: 46.5,79.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32994 components: - pos: 45.5,79.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32995 components: - pos: 44.5,79.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32996 components: - pos: 43.5,79.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32997 components: - pos: 42.5,79.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32998 components: - pos: 42.5,81.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32999 components: - pos: 43.5,81.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33000 components: - pos: 44.5,81.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33001 components: - pos: 45.5,81.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33002 components: - pos: 46.5,81.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33003 components: - pos: 47.5,81.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33004 components: - pos: 48.5,81.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33005 components: - pos: 49.5,81.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33006 components: - pos: 50.5,81.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33007 components: - pos: 50.5,83.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33008 components: - pos: 49.5,83.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33009 components: - pos: 48.5,83.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33010 components: - pos: 47.5,83.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33011 components: - pos: 46.5,83.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33012 components: - pos: 45.5,83.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33013 components: - pos: 44.5,83.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33014 components: - pos: 43.5,83.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33015 components: - pos: 42.5,83.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33016 components: - pos: 42.5,85.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33017 components: - pos: 43.5,85.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33018 components: - pos: 44.5,85.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33019 components: - pos: 45.5,85.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33020 components: - pos: 46.5,85.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33021 components: - pos: 47.5,85.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33022 components: - pos: 48.5,85.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33023 components: - pos: 49.5,85.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33024 components: - pos: 50.5,85.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33025 components: - pos: 54.5,85.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33026 components: - pos: 55.5,85.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33027 components: - pos: 56.5,85.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33028 components: - pos: 57.5,85.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33029 components: - pos: 58.5,85.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33030 components: - pos: 59.5,85.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33031 components: - pos: 60.5,85.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33032 components: - pos: 61.5,85.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33033 components: - pos: 62.5,85.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33034 components: - pos: 62.5,83.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33035 components: - pos: 61.5,83.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33036 components: - pos: 60.5,83.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33037 components: - pos: 59.5,83.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33038 components: - pos: 58.5,83.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33039 components: - pos: 57.5,83.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33040 components: - pos: 56.5,83.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33041 components: - pos: 55.5,83.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33042 components: - pos: 54.5,83.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33043 components: - pos: 54.5,81.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33044 components: - pos: 55.5,81.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33045 components: - pos: 56.5,81.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33046 components: - pos: 57.5,81.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33047 components: - pos: 58.5,81.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33048 components: - pos: 59.5,81.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33049 components: - pos: 60.5,81.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33050 components: - pos: 61.5,81.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33051 components: - pos: 62.5,81.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33052 components: - pos: 62.5,79.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33053 components: - pos: 61.5,79.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33054 components: - pos: 60.5,79.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33055 components: - pos: 59.5,79.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33056 components: - pos: 58.5,79.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33057 components: - pos: 57.5,79.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33058 components: - pos: 56.5,79.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33059 components: - pos: 55.5,79.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33060 components: - pos: 54.5,79.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33061 components: - pos: 62.5,77.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33062 components: - pos: 61.5,77.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33063 components: - pos: 60.5,77.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33064 components: - pos: 59.5,77.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33065 components: - pos: 58.5,77.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33066 components: - pos: 57.5,77.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33067 components: - pos: 56.5,77.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33068 components: - pos: 55.5,77.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33069 components: - pos: 54.5,77.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33070 components: - pos: 62.5,75.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33071 components: - pos: 61.5,75.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33072 components: - pos: 60.5,75.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33073 components: - pos: 59.5,75.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33074 components: - pos: 58.5,75.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33075 components: - pos: 57.5,75.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33076 components: - pos: 56.5,75.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33077 components: - pos: 55.5,75.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33078 components: - pos: 54.5,75.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33079 components: - pos: 54.5,76.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33080 components: - pos: 53.5,76.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33081 components: - pos: 51.5,76.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33082 components: - pos: 50.5,76.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33083 components: - pos: 50.5,80.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33084 components: - pos: 51.5,80.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33085 components: - pos: 53.5,80.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33086 components: - pos: 54.5,80.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33087 components: - pos: 54.5,84.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33088 components: - pos: 53.5,84.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33089 components: - pos: 50.5,84.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33090 components: - pos: 51.5,84.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33091 components: - pos: 52.5,87.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33092 components: - pos: 52.5,88.5 @@ -72645,106 +66967,76 @@ entities: - pos: 52.5,86.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33203 components: - pos: 52.5,74.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33204 components: - pos: 52.5,73.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33205 components: - pos: 52.5,72.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33206 components: - pos: 52.5,71.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33207 components: - pos: 52.5,70.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33208 components: - pos: 52.5,69.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33209 components: - pos: 52.5,68.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33210 components: - pos: 51.5,68.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33211 components: - pos: 51.5,67.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33212 components: - pos: 51.5,66.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33213 components: - pos: 52.5,66.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33214 components: - pos: 52.5,65.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33215 components: - pos: 52.5,64.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33216 components: - pos: 55.5,57.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33217 components: - pos: 55.5,58.5 @@ -72760,8 +67052,6 @@ entities: - pos: 55.5,60.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33220 components: - pos: 55.5,61.5 @@ -72772,8 +67062,6 @@ entities: - pos: 55.5,62.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33222 components: - pos: 55.5,63.5 @@ -72784,8 +67072,6 @@ entities: - pos: 54.5,63.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33224 components: - pos: 53.5,63.5 @@ -72796,148 +67082,106 @@ entities: - pos: 52.5,63.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 35304 components: - pos: 98.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 35315 components: - pos: 106.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 35316 components: - pos: 105.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 35317 components: - pos: 104.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 35318 components: - pos: 103.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 35319 components: - pos: 102.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 35320 components: - pos: 101.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 35321 components: - pos: 100.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 35322 components: - pos: 100.5,-12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 35323 components: - pos: 100.5,-11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 35324 components: - pos: 100.5,-10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 35325 components: - pos: 100.5,-9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 35326 components: - pos: 100.5,-8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 35327 components: - pos: 100.5,-7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 35328 components: - pos: 100.5,-6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 35329 components: - pos: 100.5,-5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 35330 components: - pos: 100.5,-4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 35331 components: - pos: 100.5,-3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 35332 components: - pos: 100.5,-2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 35333 components: - pos: 100.5,-1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - proto: CableHVStack entities: - uid: 26657 @@ -72957,8 +67201,6 @@ entities: - pos: -14.5,27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 670 components: - pos: -14.5,26.5 @@ -72969,8 +67211,6 @@ entities: - pos: -20.5,23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 836 components: - pos: -20.5,22.5 @@ -73001,15 +67241,11 @@ entities: - pos: -23.5,20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 842 components: - pos: -11.5,11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 843 components: - pos: -11.5,10.5 @@ -73050,15 +67286,11 @@ entities: - pos: -14.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 851 components: - pos: -10.5,23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 852 components: - pos: -10.5,24.5 @@ -73149,8 +67381,6 @@ entities: - pos: -6.5,30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 872 components: - pos: -5.5,31.5 @@ -73166,8 +67396,6 @@ entities: - pos: -4.5,30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 875 components: - pos: -4.5,32.5 @@ -73178,8 +67406,6 @@ entities: - pos: -4.5,33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 877 components: - pos: -8.5,32.5 @@ -73235,57 +67461,41 @@ entities: - pos: -18.5,32.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 888 components: - pos: -19.5,32.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 1898 components: - pos: -14.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 1899 components: - pos: -13.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 1900 components: - pos: -12.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 1901 components: - pos: -11.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 1902 components: - pos: -10.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 1903 components: - pos: -9.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 1904 components: - pos: -8.5,5.5 @@ -73331,15 +67541,11 @@ entities: - pos: -2.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 1992 components: - pos: -15.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 1993 components: - pos: -15.5,0.5 @@ -73365,50 +67571,36 @@ entities: - pos: -17.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 1998 components: - pos: -17.5,3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 1999 components: - pos: -17.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2000 components: - pos: -17.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2001 components: - pos: -16.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2002 components: - pos: -15.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2003 components: - pos: -12.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2004 components: - pos: -11.5,1.5 @@ -73434,113 +67626,81 @@ entities: - pos: -10.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2338 components: - pos: -21.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2339 components: - pos: -21.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2340 components: - pos: -21.5,3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2341 components: - pos: -21.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2342 components: - pos: -21.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2343 components: - pos: -20.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2344 components: - pos: -19.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2345 components: - pos: -18.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2380 components: - pos: -23.5,35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2381 components: - pos: -23.5,34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2382 components: - pos: -22.5,34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2383 components: - pos: -21.5,34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2384 components: - pos: -20.5,34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2385 components: - pos: -19.5,34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2386 components: - pos: -19.5,33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2387 components: - pos: -23.5,21.5 @@ -73556,92 +67716,66 @@ entities: - pos: -23.5,23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2390 components: - pos: -23.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2391 components: - pos: -22.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2392 components: - pos: -21.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2393 components: - pos: -21.5,25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2394 components: - pos: -21.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2395 components: - pos: -21.5,27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2396 components: - pos: -21.5,28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2397 components: - pos: -20.5,28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2398 components: - pos: -19.5,28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2399 components: - pos: -19.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2400 components: - pos: -19.5,30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2401 components: - pos: -19.5,31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2402 components: - pos: -16.5,25.5 @@ -73667,8 +67801,6 @@ entities: - pos: -18.5,23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2407 components: - pos: -18.5,22.5 @@ -73719,120 +67851,86 @@ entities: - pos: -12.5,-16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2474 components: - pos: -12.5,-15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2475 components: - pos: -12.5,-14.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2476 components: - pos: -12.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2477 components: - pos: -12.5,-12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2478 components: - pos: -11.5,-12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2479 components: - pos: -10.5,-12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2480 components: - pos: -9.5,-12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2481 components: - pos: -8.5,-12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2482 components: - pos: -8.5,-11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2483 components: - pos: -13.5,-12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2484 components: - pos: -14.5,-12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2485 components: - pos: -15.5,-12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2486 components: - pos: -15.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2487 components: - pos: -16.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2488 components: - pos: -17.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2489 components: - pos: -18.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 2490 components: - pos: -18.5,-12.5 @@ -73863,57 +67961,41 @@ entities: - pos: -16.5,-9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4166 components: - pos: -27.5,22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4167 components: - pos: -27.5,23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4168 components: - pos: -27.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4169 components: - pos: -27.5,25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4170 components: - pos: -28.5,25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4171 components: - pos: -29.5,25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4172 components: - pos: -30.5,25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4173 components: - pos: -31.5,25.5 @@ -73939,29 +68021,21 @@ entities: - pos: -32.5,28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4178 components: - pos: -30.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4179 components: - pos: -30.5,27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4180 components: - pos: -30.5,28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4181 components: - pos: -30.5,29.5 @@ -74017,8 +68091,6 @@ entities: - pos: -26.5,36.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4387 components: - pos: -27.5,33.5 @@ -74049,36 +68121,26 @@ entities: - pos: -27.5,41.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4476 components: - pos: -26.5,41.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4488 components: - pos: -26.5,38.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4489 components: - pos: -26.5,39.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4490 components: - pos: -26.5,40.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4619 components: - pos: -28.5,40.5 @@ -74134,15 +68196,11 @@ entities: - pos: -35.5,41.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4630 components: - pos: -37.5,41.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4631 components: - pos: -36.5,42.5 @@ -74193,8 +68251,6 @@ entities: - pos: -36.5,51.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4641 components: - pos: -35.5,43.5 @@ -74205,22 +68261,16 @@ entities: - pos: -34.5,43.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4643 components: - pos: -34.5,42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4644 components: - pos: -34.5,44.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4645 components: - pos: -35.5,48.5 @@ -74236,99 +68286,71 @@ entities: - pos: -34.5,49.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 4648 components: - pos: -34.5,47.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6069 components: - pos: -30.5,60.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6070 components: - pos: -30.5,61.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6071 components: - pos: -30.5,62.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6072 components: - pos: -30.5,63.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6073 components: - pos: -30.5,64.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6074 components: - pos: -31.5,64.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6075 components: - pos: -32.5,64.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6076 components: - pos: -33.5,64.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6077 components: - pos: -33.5,63.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6078 components: - pos: -33.5,62.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6079 components: - pos: -33.5,61.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6080 components: - pos: -33.5,60.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6081 components: - pos: -33.5,59.5 @@ -74339,57 +68361,41 @@ entities: - pos: -34.5,59.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6083 components: - pos: -29.5,64.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6084 components: - pos: -28.5,64.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6085 components: - pos: -27.5,64.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6086 components: - pos: -27.5,63.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6087 components: - pos: -27.5,62.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6088 components: - pos: -27.5,61.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6089 components: - pos: -27.5,60.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6090 components: - pos: -27.5,59.5 @@ -74400,8 +68406,6 @@ entities: - pos: -26.5,59.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6092 components: - pos: -26.5,58.5 @@ -74467,8 +68471,6 @@ entities: - pos: -18.5,56.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6105 components: - pos: -22.5,56.5 @@ -74509,8 +68511,6 @@ entities: - pos: -22.5,63.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6113 components: - pos: -17.5,55.5 @@ -74556,8 +68556,6 @@ entities: - pos: -11.5,53.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6122 components: - pos: -13.5,56.5 @@ -74623,8 +68621,6 @@ entities: - pos: -14.5,67.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6135 components: - pos: -14.5,65.5 @@ -74675,99 +68671,71 @@ entities: - pos: -23.5,65.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6145 components: - pos: -24.5,65.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6146 components: - pos: -25.5,65.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6147 components: - pos: -26.5,65.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6148 components: - pos: -27.5,65.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6149 components: - pos: -25.5,66.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6150 components: - pos: -25.5,67.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6151 components: - pos: -25.5,68.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6152 components: - pos: -25.5,69.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6153 components: - pos: -25.5,70.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6154 components: - pos: -25.5,71.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6155 components: - pos: -25.5,72.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6156 components: - pos: -24.5,72.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6157 components: - pos: -23.5,72.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6158 components: - pos: -22.5,72.5 @@ -74793,8 +68761,6 @@ entities: - pos: -20.5,74.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6163 components: - pos: -19.5,72.5 @@ -74840,8 +68806,6 @@ entities: - pos: -12.5,71.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 6172 components: - pos: -16.5,66.5 @@ -74877,64 +68841,46 @@ entities: - pos: 5.5,19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7751 components: - pos: 4.5,19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7759 components: - pos: 5.5,18.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7760 components: - pos: 5.5,17.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7761 components: - pos: 5.5,16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7762 components: - pos: 5.5,15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7763 components: - pos: 4.5,15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7764 components: - pos: 3.5,15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7765 components: - pos: 4.5,14.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7766 components: - pos: 2.5,15.5 @@ -75060,113 +69006,81 @@ entities: - pos: 6.5,31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7850 components: - pos: 6.5,15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7851 components: - pos: 7.5,15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7852 components: - pos: 8.5,15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7853 components: - pos: 9.5,15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7854 components: - pos: 9.5,16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7855 components: - pos: 10.5,16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7856 components: - pos: 11.5,16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7857 components: - pos: 12.5,16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7858 components: - pos: 12.5,17.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7859 components: - pos: 12.5,18.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7860 components: - pos: 12.5,19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7861 components: - pos: 12.5,20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7862 components: - pos: 12.5,21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7863 components: - pos: 12.5,22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7864 components: - pos: 12.5,23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7865 components: - pos: 12.5,24.5 @@ -75177,92 +69091,66 @@ entities: - pos: 12.5,25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7867 components: - pos: 13.5,25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7868 components: - pos: 14.5,25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7869 components: - pos: 14.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7870 components: - pos: 14.5,27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7871 components: - pos: 14.5,28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7872 components: - pos: 14.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7873 components: - pos: 13.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7874 components: - pos: 12.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7875 components: - pos: 11.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7876 components: - pos: 10.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7877 components: - pos: 9.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7878 components: - pos: 8.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 7879 components: - pos: 7.5,29.5 @@ -75343,8 +69231,6 @@ entities: - pos: 26.5,20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9062 components: - pos: 28.5,20.5 @@ -75385,8 +69271,6 @@ entities: - pos: 30.5,15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9070 components: - pos: 31.5,18.5 @@ -75442,8 +69326,6 @@ entities: - pos: 36.5,23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9081 components: - pos: 30.5,14.5 @@ -75509,8 +69391,6 @@ entities: - pos: 32.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9094 components: - pos: 33.5,6.5 @@ -75551,8 +69431,6 @@ entities: - pos: 40.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9102 components: - pos: 41.5,6.5 @@ -75573,8 +69451,6 @@ entities: - pos: 44.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9106 components: - pos: 42.5,7.5 @@ -75640,15 +69516,11 @@ entities: - pos: 43.5,16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9119 components: - pos: 34.5,15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9120 components: - pos: 34.5,14.5 @@ -75684,8 +69556,6 @@ entities: - pos: 34.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9127 components: - pos: 34.5,7.5 @@ -75696,8 +69566,6 @@ entities: - pos: 21.5,16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9129 components: - pos: 21.5,17.5 @@ -75743,8 +69611,6 @@ entities: - pos: 19.5,27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9138 components: - pos: 18.5,27.5 @@ -75760,127 +69626,91 @@ entities: - pos: 18.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9141 components: - pos: 17.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9142 components: - pos: 16.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9143 components: - pos: 15.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9869 components: - pos: 18.5,-21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9995 components: - pos: -7.5,-12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9996 components: - pos: -6.5,-12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9997 components: - pos: -5.5,-12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9998 components: - pos: -5.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 9999 components: - pos: -5.5,-14.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10000 components: - pos: -5.5,-15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10001 components: - pos: -5.5,-16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10002 components: - pos: -5.5,-17.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10003 components: - pos: -5.5,-18.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10004 components: - pos: -5.5,-19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10005 components: - pos: -5.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10006 components: - pos: -4.5,-15.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10007 components: - pos: -4.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10008 components: - pos: -3.5,-20.5 @@ -75891,85 +69721,61 @@ entities: - pos: -3.5,-21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10010 components: - pos: -7.5,-24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10011 components: - pos: -8.5,-24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10012 components: - pos: -9.5,-24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10013 components: - pos: -9.5,-23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10014 components: - pos: -9.5,-22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10015 components: - pos: -9.5,-21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10016 components: - pos: -9.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10017 components: - pos: -8.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10018 components: - pos: -7.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10019 components: - pos: -6.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10020 components: - pos: -6.5,-24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10021 components: - pos: -5.5,-24.5 @@ -75995,8 +69801,6 @@ entities: - pos: -2.5,-23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10026 components: - pos: -1.5,-23.5 @@ -76012,29 +69816,21 @@ entities: - pos: -0.5,-22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10029 components: - pos: 0.5,-22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10030 components: - pos: 1.5,-22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10031 components: - pos: 2.5,-22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10032 components: - pos: -0.5,-21.5 @@ -76070,22 +69866,16 @@ entities: - pos: -4.5,-28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10039 components: - pos: -5.5,-28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10040 components: - pos: -3.5,-28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10041 components: - pos: -0.5,-24.5 @@ -76111,22 +69901,16 @@ entities: - pos: -0.5,-28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10046 components: - pos: -1.5,-28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10047 components: - pos: 0.5,-28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10048 components: - pos: 0.5,-25.5 @@ -76157,22 +69941,16 @@ entities: - pos: 4.5,-24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10054 components: - pos: 4.5,-26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10055 components: - pos: -2.5,-24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10056 components: - pos: -2.5,-25.5 @@ -76183,15 +69961,11 @@ entities: - pos: -2.5,-26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10286 components: - pos: 37.5,23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10287 components: - pos: 38.5,23.5 @@ -76202,141 +69976,101 @@ entities: - pos: 39.5,23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10289 components: - pos: 22.5,17.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10290 components: - pos: 22.5,19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10823 components: - pos: 9.5,14.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10824 components: - pos: 9.5,13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10825 components: - pos: 9.5,12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10826 components: - pos: 9.5,11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10827 components: - pos: 9.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10828 components: - pos: 9.5,9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10829 components: - pos: 9.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10830 components: - pos: 9.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10831 components: - pos: 10.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10832 components: - pos: 11.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10833 components: - pos: 12.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10834 components: - pos: 13.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10835 components: - pos: 14.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10836 components: - pos: 15.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10837 components: - pos: 16.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10838 components: - pos: 16.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10839 components: - pos: 16.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10840 components: - pos: 16.5,4.5 @@ -76372,8 +70106,6 @@ entities: - pos: 12.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 10847 components: - pos: 16.5,2.5 @@ -76419,22 +70151,16 @@ entities: - pos: 12.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11229 components: - pos: 19.5,-19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11230 components: - pos: 19.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11232 components: - pos: 16.5,-21.5 @@ -76485,8 +70211,6 @@ entities: - pos: 9.5,-19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11242 components: - pos: 12.5,-19.5 @@ -76542,8 +70266,6 @@ entities: - pos: 14.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11253 components: - pos: 11.5,-16.5 @@ -76589,15 +70311,11 @@ entities: - pos: 10.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11262 components: - pos: 16.5,-28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11263 components: - pos: 16.5,-29.5 @@ -76658,22 +70376,16 @@ entities: - pos: 20.5,-22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11275 components: - pos: 20.5,-21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11276 components: - pos: 19.5,-21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11277 components: - pos: 18.5,-26.5 @@ -76724,8 +70436,6 @@ entities: - pos: 48.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11554 components: - pos: 49.5,6.5 @@ -76791,8 +70501,6 @@ entities: - pos: 96.5,-1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 11857 components: - pos: 96.5,-2.5 @@ -76823,8 +70531,6 @@ entities: - pos: -12.5,-16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12094 components: - pos: -13.5,-16.5 @@ -76835,57 +70541,41 @@ entities: - pos: -13.5,-17.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12096 components: - pos: -13.5,-18.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12097 components: - pos: -13.5,-19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12098 components: - pos: -13.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12903 components: - pos: -43.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12904 components: - pos: -43.5,-47.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12905 components: - pos: -42.5,-47.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12906 components: - pos: -41.5,-47.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12907 components: - pos: -40.5,-47.5 @@ -76901,15 +70591,11 @@ entities: - pos: -41.5,-48.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12910 components: - pos: -40.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 12911 components: - pos: -40.5,-45.5 @@ -76965,8 +70651,6 @@ entities: - pos: -37.5,-38.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13400 components: - pos: -24.5,-24.5 @@ -76977,8 +70661,6 @@ entities: - pos: -36.5,-3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13480 components: - pos: -35.5,-3.5 @@ -76989,43 +70671,31 @@ entities: - pos: -35.5,-2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13482 components: - pos: -35.5,-1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13483 components: - pos: -36.5,-1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13484 components: - pos: -37.5,-1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13485 components: - pos: -38.5,-1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13486 components: - pos: -39.5,-1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 13487 components: - pos: -35.5,-4.5 @@ -77231,43 +70901,31 @@ entities: - pos: -29.5,-23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14618 components: - pos: 27.5,-38.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14619 components: - pos: 26.5,-38.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14620 components: - pos: 25.5,-38.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14621 components: - pos: 24.5,-38.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14622 components: - pos: 24.5,-37.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14623 components: - pos: 24.5,-36.5 @@ -77278,15 +70936,11 @@ entities: - pos: 24.5,-35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14625 components: - pos: 24.5,-34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14626 components: - pos: 24.5,-33.5 @@ -77317,15 +70971,11 @@ entities: - pos: 24.5,-28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14632 components: - pos: 24.5,-27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14633 components: - pos: 24.5,-26.5 @@ -77336,8 +70986,6 @@ entities: - pos: 24.5,-25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14635 components: - pos: 25.5,-25.5 @@ -77418,8 +71066,6 @@ entities: - pos: 34.5,-18.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14651 components: - pos: 34.5,-19.5 @@ -77540,43 +71186,31 @@ entities: - pos: 38.5,-41.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14675 components: - pos: 38.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14676 components: - pos: 37.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14677 components: - pos: 36.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14678 components: - pos: 35.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14679 components: - pos: 34.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14680 components: - pos: 33.5,-42.5 @@ -77587,78 +71221,56 @@ entities: - pos: 32.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14682 components: - pos: 31.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14683 components: - pos: 30.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14684 components: - pos: 29.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14685 components: - pos: 28.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14686 components: - pos: 27.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14687 components: - pos: 26.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14688 components: - pos: 25.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14689 components: - pos: 24.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14690 components: - pos: 24.5,-41.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14691 components: - pos: 24.5,-40.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14692 components: - pos: 24.5,-39.5 @@ -77674,8 +71286,6 @@ entities: - pos: 40.5,-34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14695 components: - pos: 37.5,-34.5 @@ -77701,8 +71311,6 @@ entities: - pos: 35.5,-32.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14700 components: - pos: 35.5,-31.5 @@ -77718,8 +71326,6 @@ entities: - pos: 33.5,-31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14703 components: - pos: 35.5,-30.5 @@ -77740,8 +71346,6 @@ entities: - pos: 46.5,-40.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14707 components: - pos: 47.5,-40.5 @@ -77842,8 +71446,6 @@ entities: - pos: 49.5,-24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14735 components: - pos: 50.5,-26.5 @@ -77874,8 +71476,6 @@ entities: - pos: 53.5,-28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14741 components: - pos: 52.5,-25.5 @@ -77911,8 +71511,6 @@ entities: - pos: 39.5,-14.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14748 components: - pos: 51.5,-20.5 @@ -77928,8 +71526,6 @@ entities: - pos: 49.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 14751 components: - pos: 39.5,-16.5 @@ -78030,8 +71626,6 @@ entities: - pos: 26.5,-26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 15017 components: - pos: 34.5,-15.5 @@ -78057,64 +71651,46 @@ entities: - pos: 21.5,52.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 17511 components: - pos: 22.5,52.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 17673 components: - pos: 4.5,52.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18100 components: - pos: 3.5,52.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18101 components: - pos: 3.5,51.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18102 components: - pos: 2.5,52.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18103 components: - pos: 1.5,52.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18104 components: - pos: 0.5,52.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18105 components: - pos: -0.5,52.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18106 components: - pos: -0.5,51.5 @@ -78215,8 +71791,6 @@ entities: - pos: 13.5,52.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18126 components: - pos: 3.5,48.5 @@ -78257,8 +71831,6 @@ entities: - pos: 4.5,42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18134 components: - pos: 3.5,50.5 @@ -78339,8 +71911,6 @@ entities: - pos: 21.5,46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18150 components: - pos: 22.5,44.5 @@ -78356,8 +71926,6 @@ entities: - pos: 23.5,42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18153 components: - pos: 23.5,43.5 @@ -78408,8 +71976,6 @@ entities: - pos: 31.5,44.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18163 components: - pos: 23.5,45.5 @@ -78515,15 +72081,11 @@ entities: - pos: 9.5,39.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18186 components: - pos: 6.5,57.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18187 components: - pos: 6.5,58.5 @@ -78649,106 +72211,76 @@ entities: - pos: 18.5,70.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18212 components: - pos: 19.5,70.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18213 components: - pos: 20.5,70.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18214 components: - pos: 21.5,70.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18215 components: - pos: 22.5,70.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18224 components: - pos: 29.5,54.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18225 components: - pos: 30.5,54.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18226 components: - pos: 31.5,54.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18227 components: - pos: 32.5,54.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18228 components: - pos: 32.5,55.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18229 components: - pos: 32.5,56.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18230 components: - pos: 32.5,57.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18231 components: - pos: 32.5,58.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18232 components: - pos: 32.5,59.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18233 components: - pos: 32.5,60.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18234 components: - pos: 32.5,61.5 @@ -78759,36 +72291,26 @@ entities: - pos: 32.5,62.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18236 components: - pos: 32.5,63.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18237 components: - pos: 32.5,64.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18238 components: - pos: 32.5,65.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18239 components: - pos: 32.5,66.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18245 components: - pos: 15.5,62.5 @@ -78874,8 +72396,6 @@ entities: - pos: 24.5,61.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18262 components: - pos: 8.5,62.5 @@ -78916,22 +72436,16 @@ entities: - pos: 3.5,64.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18591 components: - pos: 24.5,52.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18595 components: - pos: 23.5,52.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18675 components: - pos: 24.5,53.5 @@ -78942,8 +72456,6 @@ entities: - pos: 25.5,53.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18677 components: - pos: 22.5,53.5 @@ -78959,8 +72471,6 @@ entities: - pos: 20.5,53.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 18680 components: - pos: 21.5,54.5 @@ -78976,15 +72486,11 @@ entities: - pos: 20.5,55.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19260 components: - pos: 26.5,-54.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19261 components: - pos: 26.5,-55.5 @@ -79010,78 +72516,56 @@ entities: - pos: 24.5,-53.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19266 components: - pos: 24.5,-52.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19267 components: - pos: 24.5,-51.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19268 components: - pos: 24.5,-50.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19269 components: - pos: 24.5,-49.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19270 components: - pos: 24.5,-48.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19271 components: - pos: 24.5,-47.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19272 components: - pos: 24.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19273 components: - pos: 24.5,-45.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19274 components: - pos: 24.5,-44.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19275 components: - pos: 24.5,-43.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19276 components: - pos: 25.5,-49.5 @@ -79122,99 +72606,71 @@ entities: - pos: 28.5,-45.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19317 components: - pos: 26.5,-39.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19318 components: - pos: 26.5,-40.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19549 components: - pos: 51.5,-51.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19550 components: - pos: 51.5,-50.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19551 components: - pos: 51.5,-49.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19552 components: - pos: 51.5,-48.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19553 components: - pos: 51.5,-47.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19554 components: - pos: 51.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19555 components: - pos: 52.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19556 components: - pos: 53.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19557 components: - pos: 54.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19558 components: - pos: 55.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19559 components: - pos: 56.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19560 components: - pos: 56.5,-45.5 @@ -79230,8 +72686,6 @@ entities: - pos: 56.5,-43.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19563 components: - pos: 56.5,-42.5 @@ -79347,99 +72801,71 @@ entities: - pos: 58.5,-23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19586 components: - pos: 59.5,-23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19587 components: - pos: 60.5,-23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19588 components: - pos: 61.5,-23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19589 components: - pos: 62.5,-23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19590 components: - pos: 63.5,-23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19591 components: - pos: 64.5,-23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19592 components: - pos: 64.5,-24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19601 components: - pos: 64.5,-33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19602 components: - pos: 64.5,-34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19603 components: - pos: 64.5,-35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19604 components: - pos: 64.5,-36.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19605 components: - pos: 64.5,-37.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19606 components: - pos: 64.5,-38.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19607 components: - pos: 64.5,-39.5 @@ -79450,85 +72876,61 @@ entities: - pos: 64.5,-40.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19609 components: - pos: 64.5,-41.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19610 components: - pos: 64.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19611 components: - pos: 64.5,-43.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19612 components: - pos: 64.5,-44.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19613 components: - pos: 64.5,-45.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19614 components: - pos: 64.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19615 components: - pos: 63.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19616 components: - pos: 62.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19617 components: - pos: 61.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19618 components: - pos: 60.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19619 components: - pos: 59.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19620 components: - pos: 58.5,-46.5 @@ -79539,8 +72941,6 @@ entities: - pos: 57.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19857 components: - pos: 51.5,-45.5 @@ -79551,50 +72951,36 @@ entities: - pos: 51.5,-44.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20136 components: - pos: 64.5,-25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20137 components: - pos: 65.5,-25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20138 components: - pos: 65.5,-26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20139 components: - pos: 65.5,-27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20140 components: - pos: 65.5,-28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20141 components: - pos: 65.5,-29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20142 components: - pos: 65.5,-30.5 @@ -79605,463 +72991,331 @@ entities: - pos: 65.5,-31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20144 components: - pos: 64.5,-31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20145 components: - pos: 64.5,-32.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22913 components: - pos: 101.5,-9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22916 components: - pos: 101.5,-1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22917 components: - pos: 101.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22918 components: - pos: 102.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22920 components: - pos: 103.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22921 components: - pos: 103.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22922 components: - pos: 104.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22923 components: - pos: 112.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22924 components: - pos: 113.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22925 components: - pos: 113.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22927 components: - pos: 114.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22928 components: - pos: 115.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22929 components: - pos: 115.5,-1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22930 components: - pos: 101.5,-10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22931 components: - pos: 102.5,-10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22933 components: - pos: 103.5,-11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22934 components: - pos: 103.5,-12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22935 components: - pos: 104.5,-12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22936 components: - pos: 104.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22937 components: - pos: 112.5,-12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22938 components: - pos: 113.5,-12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22939 components: - pos: 113.5,-11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22941 components: - pos: 114.5,-10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22942 components: - pos: 115.5,-10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22943 components: - pos: 115.5,-9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22944 components: - pos: 100.5,-1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22945 components: - pos: 100.5,-2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22946 components: - pos: 100.5,-3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22947 components: - pos: 100.5,-4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22948 components: - pos: 100.5,-5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22949 components: - pos: 100.5,-6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22950 components: - pos: 100.5,-7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22951 components: - pos: 100.5,-8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22952 components: - pos: 100.5,-9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22953 components: - pos: 105.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22954 components: - pos: 106.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22955 components: - pos: 107.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22956 components: - pos: 108.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22957 components: - pos: 109.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22958 components: - pos: 110.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22959 components: - pos: 111.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22960 components: - pos: 112.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22962 components: - pos: 116.5,-9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22963 components: - pos: 116.5,-8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22964 components: - pos: 116.5,-7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22965 components: - pos: 116.5,-6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22966 components: - pos: 116.5,-5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22967 components: - pos: 116.5,-4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22968 components: - pos: 116.5,-3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22969 components: - pos: 116.5,-2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22970 components: - pos: 116.5,-1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22971 components: - pos: 112.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22972 components: - pos: 111.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22973 components: - pos: 110.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22974 components: - pos: 109.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22975 components: - pos: 108.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22976 components: - pos: 107.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22977 components: - pos: 106.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22978 components: - pos: 105.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 22979 components: - pos: 104.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23622 components: - pos: 99.5,-34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23943 components: - pos: 98.5,-34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23944 components: - pos: 97.5,-34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23959 components: - pos: 114.5,-25.5 @@ -80072,8 +73326,6 @@ entities: - pos: 114.5,-26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23961 components: - pos: 114.5,-24.5 @@ -80089,99 +73341,71 @@ entities: - pos: 112.5,-24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24151 components: - pos: 68.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24152 components: - pos: 67.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24153 components: - pos: 66.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24154 components: - pos: 65.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24155 components: - pos: 64.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24156 components: - pos: 64.5,-1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24157 components: - pos: 64.5,-2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24158 components: - pos: 64.5,-3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24159 components: - pos: 64.5,-4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24160 components: - pos: 64.5,-5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24161 components: - pos: 65.5,-5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24162 components: - pos: 66.5,-5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24163 components: - pos: 67.5,-5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24164 components: - pos: 67.5,-6.5 @@ -80212,8 +73436,6 @@ entities: - pos: 69.5,-7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24170 components: - pos: 69.5,-9.5 @@ -80244,22 +73466,16 @@ entities: - pos: 72.5,-7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24176 components: - pos: 70.5,-8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24177 components: - pos: 70.5,-10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24178 components: - pos: 73.5,-9.5 @@ -80270,22 +73486,16 @@ entities: - pos: 74.5,-9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24180 components: - pos: 74.5,-8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24181 components: - pos: 74.5,-10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24182 components: - pos: 67.5,-9.5 @@ -80336,15 +73546,11 @@ entities: - pos: 61.5,-8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24192 components: - pos: 59.5,-8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24193 components: - pos: 60.5,-7.5 @@ -80360,22 +73566,16 @@ entities: - pos: 61.5,-6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24196 components: - pos: 62.5,-6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24197 components: - pos: 59.5,-6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24198 components: - pos: 67.5,-10.5 @@ -80396,15 +73596,11 @@ entities: - pos: 67.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24202 components: - pos: 69.5,-13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24203 components: - pos: 69.5,-12.5 @@ -80425,8 +73621,6 @@ entities: - pos: 66.5,-17.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24210 components: - pos: 66.5,-18.5 @@ -80472,8 +73666,6 @@ entities: - pos: 31.5,-10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24221 components: - pos: 38.5,-15.5 @@ -80499,15 +73691,11 @@ entities: - pos: 37.5,-12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24226 components: - pos: 37.5,-11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24258 components: - pos: 96.5,-38.5 @@ -80518,57 +73706,41 @@ entities: - pos: 101.5,-43.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24331 components: - pos: 101.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24332 components: - pos: 100.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24333 components: - pos: 102.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24334 components: - pos: 99.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24335 components: - pos: 98.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24336 components: - pos: 97.5,-42.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24337 components: - pos: 97.5,-41.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24338 components: - pos: 97.5,-40.5 @@ -80604,8 +73776,6 @@ entities: - pos: 97.5,-33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24346 components: - pos: 97.5,-32.5 @@ -80616,57 +73786,41 @@ entities: - pos: 97.5,-31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24348 components: - pos: 96.5,-30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24349 components: - pos: 96.5,-29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24350 components: - pos: 95.5,-30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24351 components: - pos: 94.5,-30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24352 components: - pos: 93.5,-30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24353 components: - pos: 92.5,-30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24354 components: - pos: 91.5,-30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24355 components: - pos: 90.5,-30.5 @@ -80677,64 +73831,46 @@ entities: - pos: 89.5,-30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24357 components: - pos: 88.5,-30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24358 components: - pos: 87.5,-30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24359 components: - pos: 86.5,-30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24360 components: - pos: 84.5,-31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24361 components: - pos: 83.5,-31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24362 components: - pos: 82.5,-31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24363 components: - pos: 81.5,-31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24364 components: - pos: 80.5,-31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24365 components: - pos: 79.5,-31.5 @@ -80770,43 +73906,31 @@ entities: - pos: 71.5,-28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24373 components: - pos: 72.5,-29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24374 components: - pos: 73.5,-30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24375 components: - pos: 74.5,-30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24376 components: - pos: 75.5,-30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24377 components: - pos: 76.5,-30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24378 components: - pos: 70.5,-27.5 @@ -80817,8 +73941,6 @@ entities: - pos: 70.5,-28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24381 components: - pos: 67.5,-27.5 @@ -80849,8 +73971,6 @@ entities: - pos: 70.5,-25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24387 components: - pos: 71.5,-25.5 @@ -80861,8 +73981,6 @@ entities: - pos: 72.5,-25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24389 components: - pos: 73.5,-25.5 @@ -80893,8 +74011,6 @@ entities: - pos: 78.5,-25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24395 components: - pos: 76.5,-24.5 @@ -80960,43 +74076,31 @@ entities: - pos: 80.5,-17.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24411 components: - pos: 78.5,-32.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24413 components: - pos: 96.5,-18.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24414 components: - pos: 99.5,-33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24415 components: - pos: 99.5,-32.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24416 components: - pos: 96.5,-19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24417 components: - pos: 96.5,-20.5 @@ -81032,22 +74136,16 @@ entities: - pos: 97.5,-25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24424 components: - pos: 97.5,-26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24425 components: - pos: 97.5,-27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24426 components: - pos: 97.5,-28.5 @@ -81058,29 +74156,21 @@ entities: - pos: 97.5,-29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24428 components: - pos: 96.5,-31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24429 components: - pos: 85.5,-30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24430 components: - pos: 84.5,-30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24431 components: - pos: 96.5,-34.5 @@ -81121,8 +74211,6 @@ entities: - pos: 89.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24440 components: - pos: 89.5,-19.5 @@ -81133,8 +74221,6 @@ entities: - pos: 88.5,-19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24442 components: - pos: 87.5,-19.5 @@ -81165,8 +74251,6 @@ entities: - pos: 83.5,-20.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24448 components: - pos: 82.5,-20.5 @@ -81192,8 +74276,6 @@ entities: - pos: 99.5,-5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24505 components: - pos: 98.5,-5.5 @@ -81204,15 +74286,11 @@ entities: - pos: 97.5,-5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24658 components: - pos: 96.5,-5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24894 components: - pos: 60.5,-10.5 @@ -81308,8 +74386,6 @@ entities: - pos: 53.5,-5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24913 components: - pos: 51.5,-4.5 @@ -81320,29 +74396,21 @@ entities: - pos: 51.5,-3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24915 components: - pos: 51.5,-8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24916 components: - pos: 49.5,-8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24917 components: - pos: 48.5,-8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24918 components: - pos: 47.5,-8.5 @@ -81353,8 +74421,6 @@ entities: - pos: 46.5,-8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24920 components: - pos: 50.5,-3.5 @@ -81365,15 +74431,11 @@ entities: - pos: 49.5,-3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24922 components: - pos: 48.5,-3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24923 components: - pos: 47.5,-3.5 @@ -81384,8 +74446,6 @@ entities: - pos: 46.5,-3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24982 components: - pos: 33.5,-15.5 @@ -81446,15 +74506,11 @@ entities: - pos: 73.5,-29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25202 components: - pos: 71.5,-29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25560 components: - pos: 87.5,3.5 @@ -81475,8 +74531,6 @@ entities: - pos: 85.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25564 components: - pos: 85.5,2.5 @@ -81527,8 +74581,6 @@ entities: - pos: 80.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25574 components: - pos: 79.5,0.5 @@ -81579,15 +74631,11 @@ entities: - pos: 74.5,-1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25584 components: - pos: 75.5,-1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25585 components: - pos: 83.5,-0.5 @@ -81643,8 +74691,6 @@ entities: - pos: 88.5,-5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25596 components: - pos: 89.5,-5.5 @@ -81670,8 +74716,6 @@ entities: - pos: 88.5,-2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25601 components: - pos: 90.5,-2.5 @@ -81692,8 +74736,6 @@ entities: - pos: 90.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25605 components: - pos: 90.5,1.5 @@ -81734,8 +74776,6 @@ entities: - pos: 88.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25613 components: - pos: 89.5,-6.5 @@ -81781,8 +74821,6 @@ entities: - pos: 92.5,-9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25622 components: - pos: 83.5,-6.5 @@ -81803,36 +74841,26 @@ entities: - pos: 83.5,-9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25980 components: - pos: 101.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25981 components: - pos: 100.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25982 components: - pos: 99.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25983 components: - pos: 98.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25986 components: - pos: 95.5,0.5 @@ -81843,78 +74871,56 @@ entities: - pos: 94.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25988 components: - pos: 93.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25989 components: - pos: 92.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 25990 components: - pos: 91.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26789 components: - pos: 97.5,-43.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26790 components: - pos: 97.5,-44.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26791 components: - pos: 97.5,-45.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26792 components: - pos: 97.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26793 components: - pos: 98.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26794 components: - pos: 99.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26795 components: - pos: 100.5,-46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 26796 components: - pos: 100.5,-45.5 @@ -81925,85 +74931,61 @@ entities: - pos: 100.5,-44.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27378 components: - pos: 107.5,12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27379 components: - pos: 107.5,11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27380 components: - pos: 107.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27381 components: - pos: 107.5,9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27382 components: - pos: 107.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27383 components: - pos: 108.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27384 components: - pos: 109.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27385 components: - pos: 110.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27386 components: - pos: 111.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27387 components: - pos: 112.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27388 components: - pos: 113.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27389 components: - pos: 113.5,9.5 @@ -82039,120 +75021,86 @@ entities: - pos: 115.5,13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27396 components: - pos: 114.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27397 components: - pos: 114.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27398 components: - pos: 114.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27399 components: - pos: 115.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27400 components: - pos: 116.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27401 components: - pos: 117.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27402 components: - pos: 118.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27403 components: - pos: 119.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27404 components: - pos: 119.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27405 components: - pos: 119.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27406 components: - pos: 119.5,3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27407 components: - pos: 119.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27408 components: - pos: 119.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27409 components: - pos: 119.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27410 components: - pos: 119.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27411 components: - pos: 119.5,-1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27412 components: - pos: 120.5,1.5 @@ -82168,8 +75116,6 @@ entities: - pos: 122.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27415 components: - pos: 123.5,1.5 @@ -82190,64 +75136,46 @@ entities: - pos: 123.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27419 components: - pos: 119.5,-2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27420 components: - pos: 119.5,-3.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27421 components: - pos: 119.5,-4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27422 components: - pos: 119.5,-5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27423 components: - pos: 119.5,-6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27424 components: - pos: 119.5,-7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27425 components: - pos: 120.5,-7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27426 components: - pos: 121.5,-7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27427 components: - pos: 121.5,-6.5 @@ -82263,15 +75191,11 @@ entities: - pos: 121.5,-4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27541 components: - pos: 91.5,31.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27542 components: - pos: 91.5,30.5 @@ -82342,8 +75266,6 @@ entities: - pos: 89.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27593 components: - pos: 90.5,30.5 @@ -82354,8 +75276,6 @@ entities: - pos: 89.5,30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27602 components: - pos: 88.5,30.5 @@ -82396,15 +75316,11 @@ entities: - pos: 85.5,34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28349 components: - pos: 80.5,23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28350 components: - pos: 81.5,23.5 @@ -82465,106 +75381,76 @@ entities: - pos: 78.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28362 components: - pos: 77.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28363 components: - pos: 76.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28364 components: - pos: 75.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28365 components: - pos: 74.5,29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28366 components: - pos: 74.5,28.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28367 components: - pos: 74.5,27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28368 components: - pos: 74.5,26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28369 components: - pos: 74.5,25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28370 components: - pos: 74.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28371 components: - pos: 74.5,23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28372 components: - pos: 74.5,22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28373 components: - pos: 73.5,22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28374 components: - pos: 72.5,22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28375 components: - pos: 71.5,22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28376 components: - pos: 77.5,30.5 @@ -82605,50 +75491,36 @@ entities: - pos: 76.5,36.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28384 components: - pos: 73.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28385 components: - pos: 72.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28386 components: - pos: 71.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28387 components: - pos: 70.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28388 components: - pos: 69.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28389 components: - pos: 68.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28390 components: - pos: 69.5,25.5 @@ -82699,78 +75571,56 @@ entities: - pos: 67.5,30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28400 components: - pos: 67.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28401 components: - pos: 66.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28402 components: - pos: 65.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28403 components: - pos: 64.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28404 components: - pos: 63.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28405 components: - pos: 62.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28406 components: - pos: 61.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28407 components: - pos: 60.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28408 components: - pos: 59.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28409 components: - pos: 58.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28410 components: - pos: 57.5,24.5 @@ -82866,15 +75716,11 @@ entities: - pos: 60.5,35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28429 components: - pos: 60.5,19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28430 components: - pos: 61.5,19.5 @@ -82890,29 +75736,21 @@ entities: - pos: 61.5,21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28433 components: - pos: 61.5,22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28434 components: - pos: 61.5,23.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28435 components: - pos: 69.5,17.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28436 components: - pos: 69.5,16.5 @@ -82953,15 +75791,11 @@ entities: - pos: 74.5,18.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28444 components: - pos: 74.5,19.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28445 components: - pos: 74.5,20.5 @@ -82972,127 +75806,91 @@ entities: - pos: 74.5,21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28664 components: - pos: 106.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28665 components: - pos: 105.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28666 components: - pos: 104.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28667 components: - pos: 103.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28668 components: - pos: 102.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28669 components: - pos: 101.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28670 components: - pos: 100.5,8.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28671 components: - pos: 100.5,9.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28672 components: - pos: 100.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28673 components: - pos: 99.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28674 components: - pos: 98.5,10.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28675 components: - pos: 98.5,11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28676 components: - pos: 98.5,12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28677 components: - pos: 98.5,13.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28678 components: - pos: 98.5,14.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28679 components: - pos: 97.5,14.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28680 components: - pos: 96.5,14.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28681 components: - pos: 95.5,14.5 @@ -83158,8 +75956,6 @@ entities: - pos: 86.5,17.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28694 components: - pos: 92.5,15.5 @@ -83210,8 +76006,6 @@ entities: - pos: 92.5,24.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29891 components: - pos: 113.5,43.5 @@ -83277,8 +76071,6 @@ entities: - pos: 104.5,45.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29906 components: - pos: 103.5,44.5 @@ -83374,8 +76166,6 @@ entities: - pos: 104.5,57.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29925 components: - pos: 100.5,49.5 @@ -83411,8 +76201,6 @@ entities: - pos: 94.5,49.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29932 components: - pos: 102.5,49.5 @@ -83518,8 +76306,6 @@ entities: - pos: 122.5,49.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 29953 components: - pos: 123.5,49.5 @@ -83535,8 +76321,6 @@ entities: - pos: 125.5,49.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30397 components: - pos: 91.5,49.5 @@ -83552,8 +76336,6 @@ entities: - pos: 92.5,48.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30400 components: - pos: 90.5,49.5 @@ -83624,8 +76406,6 @@ entities: - pos: 85.5,57.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30414 components: - pos: 85.5,55.5 @@ -83676,15 +76456,11 @@ entities: - pos: 78.5,53.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30424 components: - pos: 79.5,53.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30425 components: - pos: 79.5,52.5 @@ -83710,8 +76486,6 @@ entities: - pos: 79.5,48.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30430 components: - pos: 80.5,48.5 @@ -83737,8 +76511,6 @@ entities: - pos: 82.5,48.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30435 components: - pos: 89.5,48.5 @@ -83924,8 +76696,6 @@ entities: - pos: 74.5,41.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30585 components: - pos: 72.5,44.5 @@ -83936,15 +76706,11 @@ entities: - pos: 74.5,44.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30587 components: - pos: 71.5,44.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30588 components: - pos: 72.5,41.5 @@ -83955,29 +76721,21 @@ entities: - pos: 71.5,41.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30790 components: - pos: 57.5,51.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30791 components: - pos: 57.5,50.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30792 components: - pos: 57.5,49.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30793 components: - pos: 57.5,48.5 @@ -84093,8 +76851,6 @@ entities: - pos: 75.5,48.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30816 components: - pos: 73.5,48.5 @@ -84155,8 +76911,6 @@ entities: - pos: 74.5,58.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30828 components: - pos: 72.5,56.5 @@ -84207,8 +76961,6 @@ entities: - pos: 66.5,55.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30838 components: - pos: 64.5,56.5 @@ -84254,8 +77006,6 @@ entities: - pos: 56.5,56.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30847 components: - pos: 55.5,56.5 @@ -84266,8 +77016,6 @@ entities: - pos: 55.5,55.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30849 components: - pos: 55.5,54.5 @@ -84288,57 +77036,41 @@ entities: - pos: 55.5,51.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30853 components: - pos: 55.5,50.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30854 components: - pos: 56.5,50.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30855 components: - pos: 55.5,49.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30856 components: - pos: 55.5,48.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30857 components: - pos: 55.5,47.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30858 components: - pos: 55.5,46.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30859 components: - pos: 55.5,45.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30860 components: - pos: 55.5,44.5 @@ -84369,15 +77101,11 @@ entities: - pos: 58.5,43.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30867 components: - pos: 58.5,43.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30868 components: - pos: 58.5,44.5 @@ -84403,22 +77131,16 @@ entities: - pos: 59.5,41.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30873 components: - pos: 59.5,43.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30874 components: - pos: 60.5,43.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30876 components: - pos: 60.5,42.5 @@ -84444,22 +77166,16 @@ entities: - pos: 64.5,43.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30881 components: - pos: 63.5,43.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30882 components: - pos: 62.5,43.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30883 components: - pos: 63.5,41.5 @@ -84475,15 +77191,11 @@ entities: - pos: 61.5,41.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30936 components: - pos: 51.5,41.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 30937 components: - pos: 51.5,40.5 @@ -84534,29 +77246,21 @@ entities: - pos: -35.5,-0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31971 components: - pos: -35.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31972 components: - pos: -35.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31973 components: - pos: -35.5,2.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31974 components: - pos: -35.5,3.5 @@ -84567,29 +77271,21 @@ entities: - pos: -35.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31976 components: - pos: -35.5,5.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31977 components: - pos: -35.5,6.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31978 components: - pos: -35.5,7.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 31979 components: - pos: -35.5,8.5 @@ -84610,8 +77306,6 @@ entities: - pos: -35.5,11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32799 components: - pos: 95.5,1.5 @@ -84637,113 +77331,81 @@ entities: - pos: 96.5,4.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32825 components: - pos: 31.5,66.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32826 components: - pos: 30.5,66.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32827 components: - pos: 29.5,66.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32828 components: - pos: 28.5,66.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32829 components: - pos: 27.5,66.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32830 components: - pos: 26.5,66.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32831 components: - pos: 25.5,66.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32832 components: - pos: 24.5,66.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32833 components: - pos: 23.5,66.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32834 components: - pos: 22.5,66.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32835 components: - pos: 22.5,67.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32836 components: - pos: 22.5,68.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 32837 components: - pos: 22.5,69.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 33746 components: - pos: 31.5,56.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34018 components: - pos: 55.5,57.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34019 components: - pos: 55.5,58.5 @@ -84759,8 +77421,6 @@ entities: - pos: 55.5,60.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34022 components: - pos: 55.5,61.5 @@ -84771,8 +77431,6 @@ entities: - pos: 55.5,62.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34024 components: - pos: 55.5,63.5 @@ -84783,106 +77441,76 @@ entities: - pos: 54.5,63.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34026 components: - pos: 54.5,64.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 34027 components: - pos: 54.5,65.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 35305 components: - pos: 98.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 35391 components: - pos: 102.5,-11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 35392 components: - pos: 114.5,-11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 35393 components: - pos: 114.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 35394 components: - pos: 102.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 35395 components: - pos: 102.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 35396 components: - pos: 114.5,1.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 35397 components: - pos: 115.5,0.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 35398 components: - pos: 115.5,-11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 35399 components: - pos: 114.5,-12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 35400 components: - pos: 102.5,-12.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 35401 components: - pos: 101.5,-11.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - proto: CableMVStack entities: - uid: 26655 @@ -116048,8 +108676,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 11014 components: @@ -116059,8 +108685,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 11015 components: @@ -116069,8 +108693,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 11016 components: @@ -116080,8 +108702,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 11017 components: @@ -116090,8 +108710,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 11018 components: @@ -116101,8 +108719,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 11019 components: @@ -116111,8 +108727,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 11020 components: @@ -116122,8 +108736,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - proto: EmergencyMedipen entities: @@ -122378,8 +114990,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2305 components: - rot: 1.5707963267948966 rad @@ -122388,8 +114998,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2306 components: - rot: 3.141592653589793 rad @@ -122398,8 +115006,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2543 components: - rot: 1.5707963267948966 rad @@ -122408,8 +115014,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4061 components: - pos: 0.5,46.5 @@ -122486,8 +115090,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4455 components: - rot: 1.5707963267948966 rad @@ -122496,8 +115098,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4456 components: - rot: -1.5707963267948966 rad @@ -122506,16 +115106,12 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4696 components: - rot: -1.5707963267948966 rad pos: -29.5,21.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5501 components: - pos: -21.5,58.5 @@ -122592,8 +115188,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5573 components: - rot: -1.5707963267948966 rad @@ -122602,8 +115196,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5621 components: - rot: 1.5707963267948966 rad @@ -122612,8 +115204,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5623 components: - rot: -1.5707963267948966 rad @@ -122622,8 +115212,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5624 components: - pos: -25.5,73.5 @@ -122631,8 +115219,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5645 components: - rot: 3.141592653589793 rad @@ -122793,8 +115379,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8030 components: - rot: 3.141592653589793 rad @@ -122803,8 +115387,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8106 components: - rot: -1.5707963267948966 rad @@ -122935,8 +115517,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9263 components: - rot: 3.141592653589793 rad @@ -122945,8 +115525,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9264 components: - pos: 16.5,7.5 @@ -122954,8 +115532,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9292 components: - rot: 1.5707963267948966 rad @@ -123055,8 +115631,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9924 components: - rot: 3.141592653589793 rad @@ -123356,8 +115930,6 @@ entities: pos: 64.5,-36.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 15415 components: - rot: 1.5707963267948966 rad @@ -123409,8 +115981,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16864 components: - rot: 1.5707963267948966 rad @@ -123574,8 +116144,6 @@ entities: pos: 55.5,-49.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 19814 components: - pos: 44.5,-41.5 @@ -123583,8 +116151,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19815 components: - rot: 3.141592653589793 rad @@ -123607,8 +116173,6 @@ entities: pos: 97.5,-33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 20980 components: - pos: 43.5,-42.5 @@ -123616,8 +116180,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22648 components: - rot: -1.5707963267948966 rad @@ -123626,8 +116188,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23633 components: - rot: 1.5707963267948966 rad @@ -123636,8 +116196,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23634 components: - pos: 111.5,-38.5 @@ -123645,8 +116203,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23650 components: - rot: -1.5707963267948966 rad @@ -123655,8 +116211,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23651 components: - rot: 3.141592653589793 rad @@ -123665,8 +116219,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23659 components: - rot: 3.141592653589793 rad @@ -123675,16 +116227,12 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23667 components: - rot: 1.5707963267948966 rad pos: 72.5,-35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23678 components: - pos: 78.5,-35.5 @@ -123692,16 +116240,12 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23680 components: - rot: -1.5707963267948966 rad pos: 77.5,-38.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23696 components: - rot: -1.5707963267948966 rad @@ -123710,8 +116254,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23697 components: - rot: 3.141592653589793 rad @@ -123720,8 +116262,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23702 components: - rot: 1.5707963267948966 rad @@ -123730,8 +116270,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23719 components: - rot: -1.5707963267948966 rad @@ -123740,8 +116278,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23736 components: - rot: -1.5707963267948966 rad @@ -123750,8 +116286,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23737 components: - rot: 1.5707963267948966 rad @@ -123760,8 +116294,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23738 components: - rot: 1.5707963267948966 rad @@ -123786,8 +116318,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23754 components: - rot: 3.141592653589793 rad @@ -123796,8 +116326,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23755 components: - pos: 68.5,-28.5 @@ -123805,16 +116333,12 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23822 components: - rot: -1.5707963267948966 rad pos: 79.5,-29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23833 components: - pos: 101.5,-35.5 @@ -123822,8 +116346,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23837 components: - rot: 3.141592653589793 rad @@ -123832,8 +116354,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23841 components: - rot: 1.5707963267948966 rad @@ -123842,8 +116362,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23853 components: - rot: 3.141592653589793 rad @@ -123852,8 +116370,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23854 components: - rot: -1.5707963267948966 rad @@ -123862,8 +116378,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23889 components: - pos: 98.5,-35.5 @@ -123871,8 +116385,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23898 components: - pos: 110.5,-33.5 @@ -123880,8 +116392,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23907 components: - rot: 3.141592653589793 rad @@ -123890,8 +116400,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23910 components: - rot: -1.5707963267948966 rad @@ -123900,8 +116408,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23930 components: - rot: 3.141592653589793 rad @@ -123910,8 +116416,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23931 components: - rot: -1.5707963267948966 rad @@ -123920,8 +116424,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23940 components: - rot: 3.141592653589793 rad @@ -123930,8 +116432,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23942 components: - pos: 109.5,-36.5 @@ -123939,8 +116439,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23948 components: - pos: 107.5,-35.5 @@ -123948,8 +116446,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24029 components: - rot: -1.5707963267948966 rad @@ -123996,8 +116492,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25239 components: - rot: -1.5707963267948966 rad @@ -124160,8 +116654,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 27635 components: - pos: 102.5,40.5 @@ -124177,8 +116669,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 27839 components: - rot: 3.141592653589793 rad @@ -124230,8 +116720,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28096 components: - rot: -1.5707963267948966 rad @@ -124248,8 +116736,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28111 components: - rot: 1.5707963267948966 rad @@ -124266,8 +116752,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28123 components: - rot: 1.5707963267948966 rad @@ -124276,8 +116760,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28144 components: - rot: -1.5707963267948966 rad @@ -124286,8 +116768,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28862 components: - rot: -1.5707963267948966 rad @@ -124433,8 +116913,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 31157 components: - pos: 61.5,54.5 @@ -124755,8 +117233,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23759 components: - pos: 76.5,-15.5 @@ -124778,8 +117254,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24889 components: - pos: 75.5,-12.5 @@ -125076,8 +117550,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 366 components: - rot: -1.5707963267948966 rad @@ -125086,8 +117558,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 367 components: - rot: -1.5707963267948966 rad @@ -125096,8 +117566,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 368 components: - rot: -1.5707963267948966 rad @@ -125106,8 +117574,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 370 components: - rot: 3.141592653589793 rad @@ -125116,8 +117582,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 371 components: - rot: 3.141592653589793 rad @@ -125301,8 +117765,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 407 components: - rot: 3.141592653589793 rad @@ -125422,8 +117884,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 433 components: - rot: -1.5707963267948966 rad @@ -125769,8 +118229,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 493 components: - pos: -10.5,28.5 @@ -125848,8 +118306,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 506 components: - rot: 3.141592653589793 rad @@ -126188,8 +118644,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 577 components: - rot: 3.141592653589793 rad @@ -126679,8 +119133,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1612 components: - rot: 3.141592653589793 rad @@ -126696,8 +119148,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1614 components: - pos: -10.5,3.5 @@ -127223,8 +119673,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2131 components: - pos: -5.5,-7.5 @@ -127536,8 +119984,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2185 components: - rot: 3.141592653589793 rad @@ -127578,8 +120024,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2286 components: - rot: 3.141592653589793 rad @@ -127588,8 +120032,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2288 components: - rot: 1.5707963267948966 rad @@ -127598,8 +120040,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2289 components: - rot: 1.5707963267948966 rad @@ -127608,8 +120048,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2290 components: - rot: 1.5707963267948966 rad @@ -127618,8 +120056,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2291 components: - rot: 1.5707963267948966 rad @@ -127628,8 +120064,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2292 components: - rot: 1.5707963267948966 rad @@ -127638,8 +120072,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2293 components: - rot: 1.5707963267948966 rad @@ -127648,8 +120080,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2294 components: - rot: 1.5707963267948966 rad @@ -127658,8 +120088,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2295 components: - rot: 1.5707963267948966 rad @@ -127668,8 +120096,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2296 components: - rot: 1.5707963267948966 rad @@ -127678,8 +120104,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2297 components: - rot: 1.5707963267948966 rad @@ -127688,8 +120112,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2298 components: - rot: 1.5707963267948966 rad @@ -127698,8 +120120,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2299 components: - pos: -18.5,-12.5 @@ -127736,8 +120156,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2542 components: - rot: 1.5707963267948966 rad @@ -127746,8 +120164,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2544 components: - pos: -17.5,4.5 @@ -127755,8 +120171,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2545 components: - pos: -17.5,3.5 @@ -127764,8 +120178,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2546 components: - pos: -17.5,2.5 @@ -127773,8 +120185,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2547 components: - pos: -17.5,1.5 @@ -128939,8 +121349,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4426 components: - pos: -19.5,40.5 @@ -128948,8 +121356,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4427 components: - pos: -19.5,39.5 @@ -128957,8 +121363,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4429 components: - pos: -19.5,37.5 @@ -128966,8 +121370,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4430 components: - pos: -19.5,36.5 @@ -128975,8 +121377,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4431 components: - pos: -19.5,35.5 @@ -128984,8 +121384,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4432 components: - pos: -19.5,34.5 @@ -128993,8 +121391,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4433 components: - pos: -19.5,33.5 @@ -129002,8 +121398,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4434 components: - pos: -19.5,32.5 @@ -129011,8 +121405,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4435 components: - pos: -19.5,31.5 @@ -129020,8 +121412,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4436 components: - pos: -19.5,30.5 @@ -129029,8 +121419,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4437 components: - pos: -19.5,29.5 @@ -129038,8 +121426,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4438 components: - rot: -1.5707963267948966 rad @@ -129048,8 +121434,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4439 components: - rot: 3.141592653589793 rad @@ -129058,8 +121442,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4440 components: - rot: 3.141592653589793 rad @@ -129068,8 +121450,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4441 components: - rot: 1.5707963267948966 rad @@ -129078,8 +121458,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4442 components: - rot: 1.5707963267948966 rad @@ -129088,8 +121466,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4443 components: - rot: 1.5707963267948966 rad @@ -129098,8 +121474,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4444 components: - rot: 1.5707963267948966 rad @@ -129108,8 +121482,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4445 components: - rot: 1.5707963267948966 rad @@ -129118,8 +121490,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4446 components: - rot: 1.5707963267948966 rad @@ -129128,8 +121498,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4447 components: - rot: 1.5707963267948966 rad @@ -129138,8 +121506,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4449 components: - pos: -30.5,26.5 @@ -129147,8 +121513,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4450 components: - pos: -30.5,27.5 @@ -129156,8 +121520,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4451 components: - pos: -30.5,28.5 @@ -129165,8 +121527,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4452 components: - pos: -30.5,29.5 @@ -129248,8 +121608,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4752 components: - rot: 1.5707963267948966 rad @@ -129998,8 +122356,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5564 components: - pos: -27.5,61.5 @@ -130007,8 +122363,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5565 components: - pos: -27.5,62.5 @@ -130016,8 +122370,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5566 components: - pos: -27.5,63.5 @@ -130025,8 +122377,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5567 components: - pos: -33.5,59.5 @@ -130041,8 +122391,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5569 components: - pos: -33.5,61.5 @@ -130050,8 +122398,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5570 components: - pos: -33.5,62.5 @@ -130059,8 +122405,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5571 components: - pos: -33.5,63.5 @@ -130068,8 +122412,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5575 components: - rot: 1.5707963267948966 rad @@ -130078,8 +122420,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5576 components: - rot: 1.5707963267948966 rad @@ -130088,8 +122428,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5577 components: - rot: 1.5707963267948966 rad @@ -130098,8 +122436,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5578 components: - rot: 1.5707963267948966 rad @@ -130108,8 +122444,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5579 components: - pos: -27.5,64.5 @@ -130117,8 +122451,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5580 components: - rot: 1.5707963267948966 rad @@ -130127,8 +122459,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5582 components: - rot: -1.5707963267948966 rad @@ -130137,8 +122467,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5583 components: - rot: -1.5707963267948966 rad @@ -130147,8 +122475,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5584 components: - rot: -1.5707963267948966 rad @@ -130204,8 +122530,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5613 components: - pos: -25.5,67.5 @@ -130213,8 +122537,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5614 components: - pos: -25.5,68.5 @@ -130222,8 +122544,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5615 components: - pos: -25.5,69.5 @@ -130231,8 +122551,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5616 components: - pos: -25.5,70.5 @@ -130240,8 +122558,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5617 components: - pos: -25.5,71.5 @@ -130249,8 +122565,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5619 components: - rot: -1.5707963267948966 rad @@ -130259,8 +122573,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5620 components: - rot: -1.5707963267948966 rad @@ -130269,16 +122581,12 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5622 components: - rot: 1.5707963267948966 rad pos: -30.5,72.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5626 components: - rot: 1.5707963267948966 rad @@ -130291,8 +122599,6 @@ entities: pos: -30.5,74.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5630 components: - rot: -1.5707963267948966 rad @@ -130306,8 +122612,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5641 components: - pos: -30.5,67.5 @@ -130315,8 +122619,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5646 components: - rot: 3.141592653589793 rad @@ -130538,8 +122840,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5692 components: - rot: -1.5707963267948966 rad @@ -130548,8 +122848,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5693 components: - rot: -1.5707963267948966 rad @@ -131971,8 +124269,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8032 components: - rot: 3.141592653589793 rad @@ -131989,8 +124285,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8034 components: - rot: 1.5707963267948966 rad @@ -131999,8 +124293,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8035 components: - rot: 1.5707963267948966 rad @@ -132009,8 +124301,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8036 components: - rot: 1.5707963267948966 rad @@ -132019,8 +124309,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8037 components: - rot: 1.5707963267948966 rad @@ -132029,8 +124317,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8038 components: - rot: 1.5707963267948966 rad @@ -132039,8 +124325,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8039 components: - rot: 1.5707963267948966 rad @@ -132049,8 +124333,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8040 components: - rot: 1.5707963267948966 rad @@ -132059,8 +124341,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8041 components: - pos: 18.5,28.5 @@ -134004,8 +126284,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8425 components: - pos: 27.5,3.5 @@ -134034,8 +126312,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8429 components: - pos: 30.5,3.5 @@ -134064,8 +126340,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8433 components: - pos: 33.5,3.5 @@ -134171,8 +126445,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8448 components: - rot: 3.141592653589793 rad @@ -134204,8 +126476,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8455 components: - pos: 38.5,3.5 @@ -134679,8 +126949,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8544 components: - rot: -1.5707963267948966 rad @@ -134721,8 +126989,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8549 components: - rot: 3.141592653589793 rad @@ -134771,8 +127037,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8561 components: - rot: -1.5707963267948966 rad @@ -134813,8 +127077,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8569 components: - rot: -1.5707963267948966 rad @@ -135002,8 +127264,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8610 components: - rot: 1.5707963267948966 rad @@ -135044,8 +127304,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9257 components: - rot: 1.5707963267948966 rad @@ -135054,8 +127312,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9258 components: - rot: 1.5707963267948966 rad @@ -135064,8 +127320,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9259 components: - rot: 1.5707963267948966 rad @@ -135074,8 +127328,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9260 components: - rot: 1.5707963267948966 rad @@ -135084,8 +127336,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9261 components: - rot: 1.5707963267948966 rad @@ -135094,8 +127344,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9266 components: - rot: 1.5707963267948966 rad @@ -135104,8 +127352,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9267 components: - rot: 1.5707963267948966 rad @@ -135114,8 +127360,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9268 components: - rot: 1.5707963267948966 rad @@ -135124,8 +127368,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9269 components: - rot: 1.5707963267948966 rad @@ -135134,8 +127376,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9270 components: - rot: 1.5707963267948966 rad @@ -135144,8 +127384,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9271 components: - rot: 1.5707963267948966 rad @@ -135154,8 +127392,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9272 components: - rot: 1.5707963267948966 rad @@ -135164,8 +127400,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9273 components: - rot: 1.5707963267948966 rad @@ -135182,8 +127416,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9275 components: - rot: 3.141592653589793 rad @@ -135192,8 +127424,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9276 components: - rot: 3.141592653589793 rad @@ -135202,8 +127432,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9277 components: - rot: 3.141592653589793 rad @@ -135212,8 +127440,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9278 components: - rot: 3.141592653589793 rad @@ -135222,8 +127448,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9279 components: - rot: 3.141592653589793 rad @@ -135232,8 +127456,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9280 components: - rot: 3.141592653589793 rad @@ -135242,8 +127464,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9281 components: - rot: 3.141592653589793 rad @@ -135308,8 +127528,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9291 components: - rot: -1.5707963267948966 rad @@ -135671,8 +127889,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9905 components: - rot: 1.5707963267948966 rad @@ -135752,8 +127968,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9916 components: - pos: -5.5,-18.5 @@ -135761,8 +127975,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9917 components: - pos: -5.5,-17.5 @@ -135770,8 +127982,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9918 components: - pos: -5.5,-16.5 @@ -135779,8 +127989,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9919 components: - pos: -5.5,-15.5 @@ -135788,8 +127996,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9920 components: - pos: -5.5,-14.5 @@ -135797,8 +128003,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9921 components: - pos: -5.5,-13.5 @@ -135806,8 +128010,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9922 components: - pos: -3.5,-7.5 @@ -136256,8 +128458,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10064 components: - rot: -1.5707963267948966 rad @@ -136298,8 +128498,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10069 components: - rot: -1.5707963267948966 rad @@ -136348,8 +128546,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10075 components: - rot: -1.5707963267948966 rad @@ -136390,8 +128586,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10080 components: - rot: -1.5707963267948966 rad @@ -136649,8 +128843,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11070 components: - rot: 1.5707963267948966 rad @@ -137031,8 +129223,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11152 components: - rot: -1.5707963267948966 rad @@ -137041,8 +129231,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11153 components: - rot: -1.5707963267948966 rad @@ -137051,8 +129239,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11866 components: - rot: -1.5707963267948966 rad @@ -137727,8 +129913,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12695 components: - pos: -38.5,-45.5 @@ -138113,8 +130297,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12754 components: - pos: -38.5,-53.5 @@ -138180,8 +130362,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13097 components: - rot: 1.5707963267948966 rad @@ -138206,8 +130386,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13100 components: - rot: 1.5707963267948966 rad @@ -139270,8 +131448,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14154 components: - pos: 50.5,-20.5 @@ -139315,8 +131491,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14160 components: - rot: -1.5707963267948966 rad @@ -139357,8 +131531,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14165 components: - rot: -1.5707963267948966 rad @@ -139616,8 +131788,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14203 components: - pos: 47.5,-37.5 @@ -139660,8 +131830,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14211 components: - pos: 39.5,-23.5 @@ -139690,8 +131858,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14215 components: - pos: 37.5,-23.5 @@ -139739,8 +131905,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14223 components: - rot: -1.5707963267948966 rad @@ -139829,8 +131993,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14235 components: - rot: -1.5707963267948966 rad @@ -140085,8 +132247,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14278 components: - pos: 49.5,-37.5 @@ -140157,8 +132317,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14291 components: - rot: -1.5707963267948966 rad @@ -140214,8 +132372,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14302 components: - rot: 3.141592653589793 rad @@ -140308,8 +132464,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14335 components: - pos: 44.5,-36.5 @@ -140317,8 +132471,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14336 components: - pos: 44.5,-37.5 @@ -140342,8 +132494,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14339 components: - rot: 1.5707963267948966 rad @@ -140352,8 +132502,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14340 components: - rot: 1.5707963267948966 rad @@ -140394,8 +132542,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14350 components: - rot: -1.5707963267948966 rad @@ -140412,8 +132558,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14352 components: - rot: -1.5707963267948966 rad @@ -140462,8 +132606,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14358 components: - rot: 1.5707963267948966 rad @@ -140472,8 +132614,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14481 components: - rot: 3.141592653589793 rad @@ -140780,8 +132920,6 @@ entities: pos: 59.5,-29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 15390 components: - rot: 1.5707963267948966 rad @@ -140794,8 +132932,6 @@ entities: pos: 59.5,-30.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 15393 components: - rot: 3.141592653589793 rad @@ -140814,30 +132950,22 @@ entities: pos: 62.5,-33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 15402 components: - rot: 1.5707963267948966 rad pos: 63.5,-33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 15404 components: - pos: 64.5,-34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 15405 components: - pos: 64.5,-35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 15406 components: - rot: -1.5707963267948966 rad @@ -140946,8 +133074,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16687 components: - rot: -1.5707963267948966 rad @@ -141020,8 +133146,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16696 components: - rot: 3.141592653589793 rad @@ -141697,8 +133821,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16801 components: - rot: 3.141592653589793 rad @@ -142642,8 +134764,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17194 components: - rot: 1.5707963267948966 rad @@ -142692,8 +134812,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17200 components: - rot: 1.5707963267948966 rad @@ -143628,8 +135746,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17371 components: - rot: 1.5707963267948966 rad @@ -143646,8 +135762,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17373 components: - rot: 1.5707963267948966 rad @@ -143664,8 +135778,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17375 components: - rot: 1.5707963267948966 rad @@ -143698,8 +135810,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17379 components: - rot: 1.5707963267948966 rad @@ -143740,8 +135850,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17384 components: - rot: -1.5707963267948966 rad @@ -143758,8 +135866,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17386 components: - rot: -1.5707963267948966 rad @@ -143940,8 +136046,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17435 components: - pos: 36.5,48.5 @@ -144012,8 +136116,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17445 components: - pos: 32.5,48.5 @@ -144045,8 +136147,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17455 components: - rot: 3.141592653589793 rad @@ -144055,8 +136155,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17462 components: - pos: 14.5,44.5 @@ -144085,8 +136183,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17468 components: - pos: 10.5,60.5 @@ -144094,8 +136190,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17469 components: - pos: 10.5,59.5 @@ -144125,8 +136219,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17475 components: - pos: 4.5,60.5 @@ -144134,8 +136226,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17476 components: - pos: 4.5,59.5 @@ -144171,8 +136261,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17481 components: - pos: 2.5,59.5 @@ -144234,8 +136322,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17493 components: - rot: 1.5707963267948966 rad @@ -144333,8 +136419,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17604 components: - pos: 21.5,41.5 @@ -144386,8 +136470,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17723 components: - rot: 3.141592653589793 rad @@ -144428,8 +136510,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17728 components: - rot: 1.5707963267948966 rad @@ -144446,8 +136526,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17730 components: - rot: 1.5707963267948966 rad @@ -144496,8 +136574,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17742 components: - rot: 3.141592653589793 rad @@ -144514,8 +136590,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17744 components: - rot: 3.141592653589793 rad @@ -144540,8 +136614,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17751 components: - rot: 3.141592653589793 rad @@ -144588,8 +136660,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19433 components: - pos: 24.5,-26.5 @@ -144604,8 +136674,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19435 components: - pos: 24.5,-28.5 @@ -144613,8 +136681,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19436 components: - pos: 24.5,-29.5 @@ -144657,8 +136723,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19442 components: - pos: 24.5,-35.5 @@ -144666,8 +136730,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19443 components: - pos: 24.5,-36.5 @@ -144682,8 +136744,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19445 components: - pos: 24.5,-38.5 @@ -144691,8 +136751,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19446 components: - pos: 24.5,-39.5 @@ -144707,8 +136765,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19448 components: - pos: 24.5,-41.5 @@ -144716,8 +136772,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19450 components: - pos: 24.5,-43.5 @@ -144725,8 +136779,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19451 components: - pos: 24.5,-44.5 @@ -144734,8 +136786,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19452 components: - pos: 24.5,-45.5 @@ -144743,8 +136793,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19453 components: - pos: 24.5,-46.5 @@ -144752,8 +136800,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19454 components: - pos: 24.5,-47.5 @@ -144761,8 +136807,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19455 components: - pos: 24.5,-48.5 @@ -144770,8 +136814,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19457 components: - rot: 1.5707963267948966 rad @@ -144811,8 +136853,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19462 components: - pos: 24.5,-51.5 @@ -144820,8 +136860,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19464 components: - pos: 24.5,-53.5 @@ -144829,8 +136867,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19465 components: - pos: 24.5,-54.5 @@ -144853,8 +136889,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19471 components: - rot: 1.5707963267948966 rad @@ -144863,8 +136897,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19472 components: - rot: 1.5707963267948966 rad @@ -144873,8 +136905,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19473 components: - rot: 1.5707963267948966 rad @@ -144883,8 +136913,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19474 components: - rot: 1.5707963267948966 rad @@ -144893,8 +136921,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19475 components: - rot: 1.5707963267948966 rad @@ -144903,8 +136929,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19476 components: - rot: 1.5707963267948966 rad @@ -144913,8 +136937,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19477 components: - rot: 1.5707963267948966 rad @@ -144923,8 +136945,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19478 components: - rot: 1.5707963267948966 rad @@ -144941,8 +136961,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19480 components: - rot: 1.5707963267948966 rad @@ -144951,8 +136969,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19481 components: - rot: 1.5707963267948966 rad @@ -144961,8 +136977,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19483 components: - rot: 1.5707963267948966 rad @@ -144971,8 +136985,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19484 components: - rot: 1.5707963267948966 rad @@ -144981,8 +136993,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19485 components: - rot: 1.5707963267948966 rad @@ -144991,8 +137001,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19486 components: - rot: 1.5707963267948966 rad @@ -145001,8 +137009,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19487 components: - rot: 1.5707963267948966 rad @@ -145011,8 +137017,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19488 components: - pos: 43.5,-43.5 @@ -145020,8 +137024,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19489 components: - pos: 43.5,-44.5 @@ -145029,8 +137031,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19490 components: - pos: 43.5,-45.5 @@ -145038,8 +137038,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19492 components: - rot: 1.5707963267948966 rad @@ -145048,8 +137046,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19493 components: - rot: 1.5707963267948966 rad @@ -145058,8 +137054,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19494 components: - rot: 1.5707963267948966 rad @@ -145140,8 +137134,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19508 components: - rot: 1.5707963267948966 rad @@ -145165,8 +137157,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19512 components: - pos: 25.5,-43.5 @@ -145244,8 +137234,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19524 components: - pos: 25.5,-55.5 @@ -145261,8 +137249,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19526 components: - rot: 1.5707963267948966 rad @@ -145286,8 +137272,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19532 components: - pos: 36.5,-42.5 @@ -145295,8 +137279,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19534 components: - pos: 39.5,-42.5 @@ -145304,8 +137286,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19535 components: - pos: 39.5,-43.5 @@ -145320,8 +137300,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19537 components: - pos: 39.5,-45.5 @@ -145350,8 +137328,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19541 components: - pos: 37.5,-45.5 @@ -145398,8 +137374,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19820 components: - pos: 44.5,-42.5 @@ -145429,8 +137403,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19824 components: - rot: -1.5707963267948966 rad @@ -145502,8 +137474,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19835 components: - rot: 1.5707963267948966 rad @@ -145526,8 +137496,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19838 components: - pos: 56.5,-42.5 @@ -145599,8 +137567,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19848 components: - rot: -1.5707963267948966 rad @@ -145609,8 +137575,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19849 components: - rot: -1.5707963267948966 rad @@ -145619,8 +137583,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19850 components: - rot: -1.5707963267948966 rad @@ -145629,8 +137591,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19851 components: - rot: -1.5707963267948966 rad @@ -145639,8 +137599,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19854 components: - rot: -1.5707963267948966 rad @@ -145649,8 +137607,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 20655 components: - rot: 3.141592653589793 rad @@ -145673,8 +137629,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22627 components: - pos: 67.5,-14.5 @@ -145703,8 +137657,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22631 components: - pos: 67.5,-18.5 @@ -145720,8 +137672,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22633 components: - pos: 67.5,-20.5 @@ -145743,8 +137693,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22636 components: - pos: 67.5,-23.5 @@ -145808,8 +137756,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22647 components: - pos: 69.5,-21.5 @@ -145838,8 +137784,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22652 components: - pos: 69.5,-16.5 @@ -145861,8 +137805,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22656 components: - pos: 69.5,-12.5 @@ -145940,8 +137882,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22674 components: - rot: 3.141592653589793 rad @@ -145958,8 +137898,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22676 components: - rot: 3.141592653589793 rad @@ -145984,8 +137922,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22679 components: - rot: 3.141592653589793 rad @@ -146002,8 +137938,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22681 components: - rot: 3.141592653589793 rad @@ -146025,36 +137959,26 @@ entities: - pos: 70.5,-39.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23586 components: - pos: 72.5,-39.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23587 components: - pos: 74.5,-39.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23588 components: - pos: 76.5,-39.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23589 components: - pos: 78.5,-39.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23590 components: - pos: 80.5,-39.5 @@ -146062,40 +137986,30 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23608 components: - rot: -1.5707963267948966 rad pos: 90.5,-35.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23610 components: - rot: -1.5707963267948966 rad pos: 90.5,-39.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23612 components: - rot: -1.5707963267948966 rad pos: 90.5,-43.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23625 components: - rot: -1.5707963267948966 rad pos: 100.5,-33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23628 components: - rot: 1.5707963267948966 rad @@ -146104,8 +138018,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23630 components: - rot: 1.5707963267948966 rad @@ -146114,8 +138026,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23636 components: - rot: 1.5707963267948966 rad @@ -146124,8 +138034,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23637 components: - rot: 1.5707963267948966 rad @@ -146134,8 +138042,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23638 components: - rot: -1.5707963267948966 rad @@ -146144,8 +138050,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23643 components: - rot: -1.5707963267948966 rad @@ -146160,16 +138064,12 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23646 components: - rot: -1.5707963267948966 rad pos: 66.5,-33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23653 components: - pos: 68.5,-36.5 @@ -146177,8 +138077,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23656 components: - rot: -1.5707963267948966 rad @@ -146187,8 +138085,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23657 components: - rot: -1.5707963267948966 rad @@ -146197,8 +138093,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23658 components: - rot: -1.5707963267948966 rad @@ -146207,16 +138101,12 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23662 components: - rot: 3.141592653589793 rad pos: 72.5,-38.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23663 components: - rot: 3.141592653589793 rad @@ -146225,8 +138115,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23671 components: - rot: 1.5707963267948966 rad @@ -146235,8 +138123,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23672 components: - rot: 1.5707963267948966 rad @@ -146245,15 +138131,11 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23673 components: - pos: 76.5,-36.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23674 components: - rot: -1.5707963267948966 rad @@ -146262,8 +138144,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23675 components: - rot: 3.141592653589793 rad @@ -146272,8 +138152,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23676 components: - rot: 3.141592653589793 rad @@ -146282,8 +138160,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23682 components: - rot: 1.5707963267948966 rad @@ -146292,8 +138168,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23692 components: - rot: 1.5707963267948966 rad @@ -146302,8 +138176,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23694 components: - rot: -1.5707963267948966 rad @@ -146312,16 +138184,12 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23699 components: - rot: 1.5707963267948966 rad pos: 90.5,-41.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23720 components: - rot: 3.141592653589793 rad @@ -146330,8 +138198,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23721 components: - rot: 3.141592653589793 rad @@ -146340,8 +138206,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23722 components: - rot: 1.5707963267948966 rad @@ -146365,8 +138229,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23725 components: - pos: 83.5,-25.5 @@ -146374,8 +138236,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23726 components: - pos: 83.5,-26.5 @@ -146383,8 +138243,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23727 components: - pos: 83.5,-27.5 @@ -146392,8 +138250,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23729 components: - pos: 83.5,-29.5 @@ -146401,8 +138257,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23730 components: - pos: 83.5,-30.5 @@ -146410,8 +138264,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23731 components: - pos: 83.5,-31.5 @@ -146419,8 +138271,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23733 components: - pos: 83.5,-33.5 @@ -146428,8 +138278,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23734 components: - pos: 83.5,-34.5 @@ -146437,8 +138285,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23743 components: - rot: -1.5707963267948966 rad @@ -146447,8 +138293,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23744 components: - rot: -1.5707963267948966 rad @@ -146457,8 +138301,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23745 components: - rot: -1.5707963267948966 rad @@ -146467,8 +138309,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23746 components: - rot: -1.5707963267948966 rad @@ -146477,8 +138317,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23747 components: - rot: -1.5707963267948966 rad @@ -146487,8 +138325,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23748 components: - rot: -1.5707963267948966 rad @@ -146497,8 +138333,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23749 components: - rot: -1.5707963267948966 rad @@ -146507,8 +138341,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23750 components: - rot: -1.5707963267948966 rad @@ -146517,8 +138349,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23751 components: - rot: -1.5707963267948966 rad @@ -146527,8 +138357,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23752 components: - rot: -1.5707963267948966 rad @@ -146537,8 +138365,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23753 components: - rot: -1.5707963267948966 rad @@ -146547,8 +138373,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23756 components: - pos: 68.5,-31.5 @@ -146556,8 +138380,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23761 components: - pos: 86.5,-21.5 @@ -146580,8 +138402,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23764 components: - rot: -1.5707963267948966 rad @@ -146590,8 +138410,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23765 components: - rot: -1.5707963267948966 rad @@ -146600,8 +138418,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23766 components: - rot: -1.5707963267948966 rad @@ -146719,8 +138535,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23783 components: - rot: -1.5707963267948966 rad @@ -146737,8 +138551,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23785 components: - rot: -1.5707963267948966 rad @@ -146763,8 +138575,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23790 components: - rot: -1.5707963267948966 rad @@ -146773,8 +138583,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23791 components: - rot: -1.5707963267948966 rad @@ -146783,8 +138591,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23821 components: - rot: 1.5707963267948966 rad @@ -146793,16 +138599,12 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23826 components: - rot: 1.5707963267948966 rad pos: 90.5,-27.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23830 components: - rot: 1.5707963267948966 rad @@ -146811,8 +138613,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23831 components: - rot: 1.5707963267948966 rad @@ -146821,8 +138621,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23832 components: - rot: 1.5707963267948966 rad @@ -146831,16 +138629,12 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23835 components: - rot: -1.5707963267948966 rad pos: 101.5,-29.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23843 components: - rot: -1.5707963267948966 rad @@ -146857,8 +138651,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23845 components: - rot: -1.5707963267948966 rad @@ -146867,8 +138659,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23846 components: - rot: -1.5707963267948966 rad @@ -146877,8 +138667,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23847 components: - rot: -1.5707963267948966 rad @@ -146887,8 +138675,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23848 components: - rot: -1.5707963267948966 rad @@ -146897,8 +138683,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23850 components: - rot: -1.5707963267948966 rad @@ -146907,8 +138691,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23852 components: - rot: -1.5707963267948966 rad @@ -146917,40 +138699,30 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23858 components: - rot: -1.5707963267948966 rad pos: 90.5,-33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23859 components: - rot: -1.5707963267948966 rad pos: 90.5,-37.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23860 components: - rot: -1.5707963267948966 rad pos: 90.5,-25.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23878 components: - rot: 1.5707963267948966 rad pos: 90.5,-26.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23885 components: - rot: -1.5707963267948966 rad @@ -146959,8 +138731,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23886 components: - rot: -1.5707963267948966 rad @@ -146969,8 +138739,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23887 components: - rot: -1.5707963267948966 rad @@ -146979,8 +138747,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23891 components: - rot: 1.5707963267948966 rad @@ -146997,8 +138763,6 @@ entities: type: Transform - color: '#22BA29FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23893 components: - rot: 1.5707963267948966 rad @@ -147007,8 +138771,6 @@ entities: type: Transform - color: '#22BA29FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23894 components: - rot: 1.5707963267948966 rad @@ -147017,8 +138779,6 @@ entities: type: Transform - color: '#22BA29FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23895 components: - rot: 1.5707963267948966 rad @@ -147027,8 +138787,6 @@ entities: type: Transform - color: '#22BA29FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23896 components: - rot: 1.5707963267948966 rad @@ -147037,8 +138795,6 @@ entities: type: Transform - color: '#22BA29FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23897 components: - rot: 1.5707963267948966 rad @@ -147047,8 +138803,6 @@ entities: type: Transform - color: '#22BA29FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23905 components: - rot: 1.5707963267948966 rad @@ -147057,8 +138811,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23906 components: - rot: 1.5707963267948966 rad @@ -147067,8 +138819,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23908 components: - rot: -1.5707963267948966 rad @@ -147077,8 +138827,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23909 components: - rot: -1.5707963267948966 rad @@ -147087,8 +138835,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23911 components: - rot: -1.5707963267948966 rad @@ -147097,8 +138843,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23913 components: - rot: 3.141592653589793 rad @@ -147107,8 +138851,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23914 components: - rot: 3.141592653589793 rad @@ -147117,8 +138859,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23915 components: - rot: 3.141592653589793 rad @@ -147127,8 +138867,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23916 components: - rot: 3.141592653589793 rad @@ -147137,8 +138875,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23918 components: - rot: -1.5707963267948966 rad @@ -147147,8 +138883,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23921 components: - rot: -1.5707963267948966 rad @@ -147157,8 +138891,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23922 components: - rot: -1.5707963267948966 rad @@ -147167,8 +138899,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23923 components: - rot: -1.5707963267948966 rad @@ -147177,8 +138907,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23924 components: - rot: -1.5707963267948966 rad @@ -147187,8 +138915,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23925 components: - rot: -1.5707963267948966 rad @@ -147197,8 +138923,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23926 components: - rot: -1.5707963267948966 rad @@ -147207,8 +138931,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23927 components: - rot: -1.5707963267948966 rad @@ -147217,8 +138939,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23928 components: - rot: -1.5707963267948966 rad @@ -147227,8 +138947,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23929 components: - rot: -1.5707963267948966 rad @@ -147237,8 +138955,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23932 components: - rot: -1.5707963267948966 rad @@ -147247,8 +138963,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23933 components: - rot: -1.5707963267948966 rad @@ -147257,8 +138971,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23934 components: - rot: 1.5707963267948966 rad @@ -147267,8 +138979,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23935 components: - rot: 1.5707963267948966 rad @@ -147277,8 +138987,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23937 components: - rot: -1.5707963267948966 rad @@ -147287,8 +138995,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23938 components: - rot: -1.5707963267948966 rad @@ -147297,8 +139003,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23939 components: - rot: -1.5707963267948966 rad @@ -147307,8 +139011,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23947 components: - rot: -1.5707963267948966 rad @@ -147317,24 +139019,18 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23949 components: - rot: -1.5707963267948966 rad pos: 98.5,-33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23953 components: - rot: -1.5707963267948966 rad pos: 99.5,-33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 24024 components: - rot: 1.5707963267948966 rad @@ -147429,8 +139125,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24874 components: - pos: 75.5,-22.5 @@ -147477,8 +139171,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24880 components: - rot: -1.5707963267948966 rad @@ -147519,8 +139211,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24885 components: - rot: 3.141592653589793 rad @@ -147577,8 +139267,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25086 components: - rot: -1.5707963267948966 rad @@ -147587,8 +139275,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25088 components: - rot: -1.5707963267948966 rad @@ -147627,8 +139313,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25095 components: - pos: 97.5,-42.5 @@ -147636,8 +139320,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25096 components: - pos: 97.5,-43.5 @@ -147645,8 +139327,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25097 components: - pos: 97.5,-44.5 @@ -147654,8 +139334,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25098 components: - pos: 97.5,-45.5 @@ -147663,8 +139341,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25100 components: - rot: -1.5707963267948966 rad @@ -147673,8 +139349,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25101 components: - rot: -1.5707963267948966 rad @@ -147691,8 +139365,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25103 components: - rot: -1.5707963267948966 rad @@ -147701,8 +139373,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25104 components: - rot: -1.5707963267948966 rad @@ -147735,8 +139405,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25108 components: - rot: -1.5707963267948966 rad @@ -147745,8 +139413,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25109 components: - rot: -1.5707963267948966 rad @@ -147763,8 +139429,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25111 components: - rot: -1.5707963267948966 rad @@ -147821,8 +139485,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25118 components: - rot: -1.5707963267948966 rad @@ -147855,8 +139517,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25122 components: - rot: -1.5707963267948966 rad @@ -147921,8 +139581,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25130 components: - rot: -1.5707963267948966 rad @@ -147931,8 +139589,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25140 components: - rot: -1.5707963267948966 rad @@ -147941,8 +139597,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25141 components: - rot: -1.5707963267948966 rad @@ -147951,8 +139605,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25142 components: - rot: -1.5707963267948966 rad @@ -147961,8 +139613,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25143 components: - rot: -1.5707963267948966 rad @@ -147971,8 +139621,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25144 components: - rot: -1.5707963267948966 rad @@ -147989,8 +139637,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25146 components: - rot: -1.5707963267948966 rad @@ -147999,8 +139645,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25147 components: - rot: -1.5707963267948966 rad @@ -148009,8 +139653,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25148 components: - rot: -1.5707963267948966 rad @@ -148019,8 +139661,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25149 components: - rot: -1.5707963267948966 rad @@ -148029,8 +139669,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25150 components: - rot: -1.5707963267948966 rad @@ -148039,8 +139677,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25151 components: - rot: -1.5707963267948966 rad @@ -148049,8 +139685,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25234 components: - rot: 3.141592653589793 rad @@ -148115,8 +139749,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25245 components: - rot: 1.5707963267948966 rad @@ -148206,8 +139838,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25258 components: - rot: -1.5707963267948966 rad @@ -148256,8 +139886,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25266 components: - rot: 3.141592653589793 rad @@ -148290,8 +139918,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25271 components: - rot: 3.141592653589793 rad @@ -148711,8 +140337,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25349 components: - rot: -1.5707963267948966 rad @@ -148809,8 +140433,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25371 components: - rot: 1.5707963267948966 rad @@ -148859,8 +140481,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25378 components: - rot: 1.5707963267948966 rad @@ -148869,8 +140489,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25379 components: - rot: 1.5707963267948966 rad @@ -149029,8 +140647,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25411 components: - pos: 88.5,-15.5 @@ -149038,8 +140654,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25412 components: - pos: 88.5,-16.5 @@ -149047,8 +140661,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25413 components: - pos: 88.5,-17.5 @@ -149063,8 +140675,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25416 components: - rot: 1.5707963267948966 rad @@ -149331,8 +140941,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25473 components: - rot: 3.141592653589793 rad @@ -149349,8 +140957,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25868 components: - rot: 3.141592653589793 rad @@ -149359,8 +140965,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25869 components: - rot: 3.141592653589793 rad @@ -149409,8 +141013,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25880 components: - pos: 109.5,-21.5 @@ -149418,8 +141020,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25881 components: - pos: 109.5,-20.5 @@ -149435,8 +141035,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25883 components: - rot: -1.5707963267948966 rad @@ -149533,8 +141131,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 27638 components: - rot: 3.141592653589793 rad @@ -149567,8 +141163,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 27642 components: - rot: 1.5707963267948966 rad @@ -149646,8 +141240,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 27653 components: - pos: 87.5,36.5 @@ -149795,8 +141387,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 27832 components: - pos: 93.5,35.5 @@ -149812,15 +141402,11 @@ entities: - pos: 97.5,34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27835 components: - pos: 93.5,34.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 27836 components: - pos: 93.5,33.5 @@ -149865,8 +141451,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 27846 components: - rot: -1.5707963267948966 rad @@ -149875,8 +141459,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 27847 components: - rot: -1.5707963267948966 rad @@ -149885,8 +141467,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 27850 components: - rot: 3.141592653589793 rad @@ -150046,8 +141626,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28077 components: - rot: 1.5707963267948966 rad @@ -150088,8 +141666,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28082 components: - rot: 1.5707963267948966 rad @@ -150106,8 +141682,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28084 components: - rot: 1.5707963267948966 rad @@ -150116,8 +141690,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28085 components: - rot: 1.5707963267948966 rad @@ -150126,8 +141698,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28086 components: - rot: 1.5707963267948966 rad @@ -150136,8 +141706,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28087 components: - rot: 1.5707963267948966 rad @@ -150146,8 +141714,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28088 components: - rot: 1.5707963267948966 rad @@ -150156,8 +141722,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28091 components: - rot: 1.5707963267948966 rad @@ -150182,8 +141746,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28094 components: - rot: 1.5707963267948966 rad @@ -150207,8 +141769,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28099 components: - pos: 119.5,3.5 @@ -150216,8 +141776,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28100 components: - pos: 119.5,2.5 @@ -150225,8 +141783,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28101 components: - pos: 119.5,0.5 @@ -150234,8 +141790,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28102 components: - pos: 119.5,-0.5 @@ -150243,8 +141797,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28103 components: - pos: 119.5,-1.5 @@ -150252,8 +141804,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28104 components: - pos: 119.5,-2.5 @@ -150261,8 +141811,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28105 components: - pos: 119.5,-3.5 @@ -150270,8 +141818,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28106 components: - pos: 119.5,-4.5 @@ -150279,8 +141825,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28107 components: - pos: 119.5,-5.5 @@ -150288,8 +141832,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28108 components: - pos: 119.5,-6.5 @@ -150297,8 +141839,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28112 components: - rot: 1.5707963267948966 rad @@ -150315,8 +141855,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28114 components: - pos: 121.5,-6.5 @@ -150332,8 +141870,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28117 components: - rot: 3.141592653589793 rad @@ -150342,8 +141878,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28118 components: - rot: 3.141592653589793 rad @@ -150352,8 +141886,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28119 components: - rot: 3.141592653589793 rad @@ -150362,8 +141894,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28120 components: - rot: 3.141592653589793 rad @@ -150372,8 +141902,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28121 components: - rot: 3.141592653589793 rad @@ -150382,8 +141910,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28124 components: - pos: 118.5,-14.5 @@ -150391,8 +141917,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28125 components: - pos: 118.5,-15.5 @@ -150400,8 +141924,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28127 components: - rot: 1.5707963267948966 rad @@ -150450,8 +141972,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28133 components: - rot: 1.5707963267948966 rad @@ -150460,8 +141980,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28134 components: - pos: 121.5,-19.5 @@ -150469,8 +141987,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28135 components: - pos: 121.5,-18.5 @@ -150493,8 +142009,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28142 components: - pos: 118.5,-18.5 @@ -150502,8 +142016,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28143 components: - pos: 118.5,-17.5 @@ -150511,8 +142023,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28181 components: - rot: 3.141592653589793 rad @@ -150815,8 +142325,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28293 components: - rot: -1.5707963267948966 rad @@ -150881,8 +142389,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28301 components: - rot: -1.5707963267948966 rad @@ -150939,8 +142445,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28309 components: - rot: -1.5707963267948966 rad @@ -150981,8 +142485,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28314 components: - rot: -1.5707963267948966 rad @@ -151031,8 +142533,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28788 components: - pos: 77.5,37.5 @@ -151055,8 +142555,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28791 components: - rot: -1.5707963267948966 rad @@ -151081,8 +142579,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28848 components: - rot: 1.5707963267948966 rad @@ -151115,8 +142611,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28852 components: - rot: 1.5707963267948966 rad @@ -151443,8 +142937,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 29658 components: - rot: 1.5707963267948966 rad @@ -151581,8 +143073,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 29677 components: - pos: 95.5,55.5 @@ -151646,8 +143136,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 29688 components: - pos: 95.5,44.5 @@ -151725,8 +143213,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 29699 components: - pos: 97.5,46.5 @@ -152040,8 +143526,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 29756 components: - rot: 1.5707963267948966 rad @@ -152074,8 +143558,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 29761 components: - rot: 1.5707963267948966 rad @@ -152132,8 +143614,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 29769 components: - rot: 1.5707963267948966 rad @@ -152174,8 +143654,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 29775 components: - rot: 1.5707963267948966 rad @@ -152200,8 +143678,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 29783 components: - rot: 1.5707963267948966 rad @@ -152242,8 +143718,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 29790 components: - rot: 1.5707963267948966 rad @@ -152300,8 +143774,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 29797 components: - rot: 1.5707963267948966 rad @@ -152334,8 +143806,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 29804 components: - pos: 101.5,50.5 @@ -152392,8 +143862,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 29812 components: - pos: 100.5,54.5 @@ -152548,8 +144016,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 29836 components: - pos: 100.5,44.5 @@ -152717,8 +144183,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 30300 components: - pos: 79.5,47.5 @@ -152941,8 +144405,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 31156 components: - rot: 3.141592653589793 rad @@ -153051,8 +144513,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 31175 components: - rot: 3.141592653589793 rad @@ -153061,8 +144521,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 31176 components: - rot: 3.141592653589793 rad @@ -153071,8 +144529,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 31177 components: - rot: 3.141592653589793 rad @@ -153081,8 +144537,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 31178 components: - rot: 3.141592653589793 rad @@ -153091,8 +144545,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 31179 components: - rot: 3.141592653589793 rad @@ -153101,8 +144553,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 31180 components: - rot: 3.141592653589793 rad @@ -153111,8 +144561,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 31181 components: - rot: 3.141592653589793 rad @@ -153145,8 +144593,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 31185 components: - rot: 1.5707963267948966 rad @@ -153155,8 +144601,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 31186 components: - rot: 1.5707963267948966 rad @@ -153338,8 +144782,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 369 components: - rot: 3.141592653589793 rad @@ -153348,8 +144790,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 380 components: - rot: -1.5707963267948966 rad @@ -153690,8 +145130,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1737 components: - rot: -1.5707963267948966 rad @@ -153782,8 +145220,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4038 components: - pos: 25.5,34.5 @@ -153821,8 +145257,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4092 components: - rot: 3.141592653589793 rad @@ -153986,8 +145420,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4454 components: - rot: 3.141592653589793 rad @@ -153996,16 +145428,12 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4695 components: - rot: -1.5707963267948966 rad pos: -29.5,22.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 5118 components: - pos: -4.5,54.5 @@ -154075,8 +145503,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5581 components: - rot: 3.141592653589793 rad @@ -154085,8 +145511,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5590 components: - pos: -27.5,65.5 @@ -154094,8 +145518,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5618 components: - rot: 1.5707963267948966 rad @@ -154104,8 +145526,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5657 components: - pos: -15.5,54.5 @@ -154741,8 +146161,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9289 components: - rot: -1.5707963267948966 rad @@ -155517,8 +146935,6 @@ entities: - pos: 64.5,-33.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 15413 components: - pos: 60.5,-41.5 @@ -156159,8 +147575,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19456 components: - rot: 1.5707963267948966 rad @@ -156169,8 +147583,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19463 components: - rot: -1.5707963267948966 rad @@ -156179,8 +147591,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19482 components: - pos: 39.5,-41.5 @@ -156196,8 +147606,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19496 components: - rot: 3.141592653589793 rad @@ -156206,8 +147614,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19499 components: - pos: 36.5,-41.5 @@ -156237,8 +147643,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19832 components: - pos: 54.5,-45.5 @@ -156246,8 +147650,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19853 components: - pos: 53.5,-46.5 @@ -156255,8 +147657,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22637 components: - rot: 1.5707963267948966 rad @@ -156317,8 +147717,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23627 components: - pos: 105.5,-35.5 @@ -156326,8 +147724,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23631 components: - rot: -1.5707963267948966 rad @@ -156336,8 +147732,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23639 components: - rot: 1.5707963267948966 rad @@ -156346,8 +147740,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23640 components: - rot: -1.5707963267948966 rad @@ -156356,8 +147748,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23641 components: - rot: -1.5707963267948966 rad @@ -156366,8 +147756,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23647 components: - rot: -1.5707963267948966 rad @@ -156376,8 +147764,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23648 components: - rot: 1.5707963267948966 rad @@ -156386,8 +147772,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23649 components: - rot: 1.5707963267948966 rad @@ -156396,8 +147780,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23652 components: - rot: 1.5707963267948966 rad @@ -156406,8 +147788,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23654 components: - rot: -1.5707963267948966 rad @@ -156416,24 +147796,18 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23666 components: - rot: 1.5707963267948966 rad pos: 72.5,-36.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23679 components: - rot: 1.5707963267948966 rad pos: 76.5,-38.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 23681 components: - rot: 1.5707963267948966 rad @@ -156442,8 +147816,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23685 components: - rot: 1.5707963267948966 rad @@ -156452,8 +147824,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23701 components: - rot: 3.141592653589793 rad @@ -156462,8 +147832,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23728 components: - rot: -1.5707963267948966 rad @@ -156472,8 +147840,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23732 components: - rot: -1.5707963267948966 rad @@ -156482,8 +147848,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23741 components: - rot: 3.141592653589793 rad @@ -156492,8 +147856,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23742 components: - rot: 3.141592653589793 rad @@ -156502,8 +147864,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23757 components: - rot: 1.5707963267948966 rad @@ -156512,8 +147872,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23758 components: - rot: 1.5707963267948966 rad @@ -156522,8 +147880,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23771 components: - rot: 3.141592653589793 rad @@ -156548,8 +147904,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23839 components: - rot: -1.5707963267948966 rad @@ -156558,8 +147912,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23849 components: - pos: 98.5,-29.5 @@ -156567,8 +147919,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23851 components: - pos: 96.5,-29.5 @@ -156576,8 +147926,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23883 components: - rot: -1.5707963267948966 rad @@ -156586,8 +147934,6 @@ entities: type: Transform - color: '#22BA29FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 23950 components: - pos: 103.5,-36.5 @@ -156595,8 +147941,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24002 components: - rot: 1.5707963267948966 rad @@ -156605,8 +147949,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24023 components: - rot: -1.5707963267948966 rad @@ -156662,8 +148004,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24254 components: - pos: 102.5,-33.5 @@ -156671,8 +148011,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24871 components: - rot: 1.5707963267948966 rad @@ -156689,8 +148027,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25243 components: - rot: 1.5707963267948966 rad @@ -156799,8 +148135,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 25344 components: - pos: 76.5,-12.5 @@ -156972,8 +148306,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28109 components: - rot: 1.5707963267948966 rad @@ -156982,8 +148314,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28126 components: - rot: 3.141592653589793 rad @@ -156992,8 +148322,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28140 components: - rot: 1.5707963267948966 rad @@ -157002,16 +148330,12 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 28145 components: - rot: -1.5707963267948966 rad pos: 121.5,-16.5 parent: 13329 type: Transform - - enabled: True - type: AmbientSound - uid: 28191 components: - pos: 59.5,10.5 @@ -157912,8 +149236,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - uid: 15388 components: - rot: -1.5707963267948966 rad @@ -157922,8 +149244,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - uid: 23644 components: - name: Wastenet Spacing Valve @@ -157934,8 +149254,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 23834 @@ -157948,8 +149266,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24255 @@ -157960,8 +149276,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24256 @@ -157972,8 +149286,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - proto: GasVentPump @@ -157984,8 +149296,6 @@ entities: pos: -5.5,11.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 451 @@ -157994,8 +149304,6 @@ entities: pos: -6.5,21.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 452 @@ -158004,8 +149312,6 @@ entities: pos: -20.5,14.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 453 @@ -158013,8 +149319,6 @@ entities: - pos: -10.5,22.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 461 @@ -158023,8 +149327,6 @@ entities: pos: -18.5,9.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 552 @@ -158033,8 +149335,6 @@ entities: pos: -4.5,26.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 565 @@ -158043,8 +149343,6 @@ entities: pos: -15.5,28.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 567 @@ -158053,8 +149351,6 @@ entities: pos: -18.5,25.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 568 @@ -158063,8 +149359,6 @@ entities: pos: -9.5,28.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 569 @@ -158073,8 +149367,6 @@ entities: pos: -14.5,35.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 571 @@ -158082,8 +149374,6 @@ entities: - pos: -11.5,41.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 572 @@ -158092,8 +149382,6 @@ entities: pos: -4.5,35.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 610 @@ -158101,8 +149389,6 @@ entities: - pos: -15.5,40.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 624 @@ -158110,8 +149396,6 @@ entities: - pos: -13.5,10.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 1541 @@ -158120,8 +149404,6 @@ entities: pos: 3.5,12.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 1552 @@ -158130,8 +149412,6 @@ entities: pos: 1.5,5.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 1554 @@ -158139,8 +149419,6 @@ entities: - pos: -0.5,15.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 1616 @@ -158148,8 +149426,6 @@ entities: - pos: -10.5,-0.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2077 @@ -158158,8 +149434,6 @@ entities: pos: -5.5,-5.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2191 @@ -158168,8 +149442,6 @@ entities: pos: -14.5,-8.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2192 @@ -158178,8 +149450,6 @@ entities: pos: -10.5,-9.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2193 @@ -158188,8 +149458,6 @@ entities: pos: -11.5,-5.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2300 @@ -158198,8 +149466,6 @@ entities: pos: -18.5,-8.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2550 @@ -158207,8 +149473,6 @@ entities: - pos: -17.5,-2.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4459 @@ -158217,8 +149481,6 @@ entities: pos: -33.5,25.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4468 @@ -158227,8 +149489,6 @@ entities: pos: -22.5,38.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4585 @@ -158237,8 +149497,6 @@ entities: pos: -23.5,45.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4666 @@ -158247,8 +149505,6 @@ entities: pos: -36.5,37.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4667 @@ -158257,8 +149513,6 @@ entities: pos: -28.5,33.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5524 @@ -158267,8 +149521,6 @@ entities: pos: -4.5,55.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5550 @@ -158277,8 +149529,6 @@ entities: pos: -31.5,57.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5642 @@ -158286,8 +149536,6 @@ entities: - pos: -30.5,68.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5643 @@ -158296,8 +149544,6 @@ entities: pos: -28.5,58.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5658 @@ -158305,8 +149551,6 @@ entities: - pos: -22.5,61.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5659 @@ -158315,8 +149559,6 @@ entities: pos: -21.5,50.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5668 @@ -158325,8 +149567,6 @@ entities: pos: -10.5,51.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5704 @@ -158335,8 +149575,6 @@ entities: pos: -11.5,71.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5705 @@ -158345,8 +149583,6 @@ entities: pos: -16.5,71.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5720 @@ -158355,8 +149591,6 @@ entities: pos: -21.5,70.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5723 @@ -158365,8 +149599,6 @@ entities: pos: -16.5,61.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6223 @@ -158375,8 +149607,6 @@ entities: pos: -12.5,45.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6228 @@ -158385,8 +149615,6 @@ entities: pos: -33.5,47.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6904 @@ -158395,8 +149623,6 @@ entities: pos: 5.5,29.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6907 @@ -158405,8 +149631,6 @@ entities: pos: -0.5,31.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8136 @@ -158415,8 +149639,6 @@ entities: pos: 43.5,10.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8140 @@ -158425,8 +149647,6 @@ entities: pos: 43.5,17.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8165 @@ -158435,8 +149655,6 @@ entities: pos: 44.5,24.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8256 @@ -158445,8 +149663,6 @@ entities: pos: 11.5,33.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8421 @@ -158455,8 +149671,6 @@ entities: pos: 42.5,2.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8452 @@ -158465,8 +149679,6 @@ entities: pos: 33.5,10.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8471 @@ -158475,8 +149687,6 @@ entities: pos: 27.5,2.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8472 @@ -158485,8 +149695,6 @@ entities: pos: 30.5,2.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8473 @@ -158495,8 +149703,6 @@ entities: pos: 33.5,2.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8474 @@ -158505,8 +149711,6 @@ entities: pos: 37.5,2.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8531 @@ -158514,8 +149718,6 @@ entities: - pos: 30.5,30.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8532 @@ -158524,8 +149726,6 @@ entities: pos: 37.5,18.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8542 @@ -158533,8 +149733,6 @@ entities: - pos: 31.5,19.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8552 @@ -158543,8 +149741,6 @@ entities: pos: 24.5,23.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8556 @@ -158553,8 +149749,6 @@ entities: pos: 20.5,18.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8557 @@ -158563,8 +149757,6 @@ entities: pos: 28.5,10.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8572 @@ -158573,8 +149765,6 @@ entities: pos: 19.5,2.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8593 @@ -158583,8 +149773,6 @@ entities: pos: 20.5,14.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8595 @@ -158593,8 +149781,6 @@ entities: pos: 24.5,14.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8597 @@ -158603,8 +149789,6 @@ entities: pos: 22.5,6.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8599 @@ -158612,8 +149796,6 @@ entities: - pos: 24.5,19.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8603 @@ -158622,8 +149804,6 @@ entities: pos: 18.5,22.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 9294 @@ -158631,8 +149811,6 @@ entities: - pos: 14.5,4.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 9295 @@ -158640,8 +149818,6 @@ entities: - pos: 8.5,4.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 9297 @@ -158650,8 +149826,6 @@ entities: pos: 8.5,-1.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 9298 @@ -158660,8 +149834,6 @@ entities: pos: 14.5,-1.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 9948 @@ -158670,8 +149842,6 @@ entities: pos: 0.5,-14.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 9950 @@ -158680,8 +149850,6 @@ entities: pos: 9.5,-11.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10058 @@ -158690,8 +149858,6 @@ entities: pos: 9.5,-26.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10083 @@ -158700,8 +149866,6 @@ entities: pos: -4.5,-26.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10084 @@ -158710,8 +149874,6 @@ entities: pos: 1.5,-27.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11041 @@ -158720,8 +149882,6 @@ entities: pos: 7.5,-32.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11045 @@ -158729,8 +149889,6 @@ entities: - pos: -0.5,-19.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11047 @@ -158739,8 +149897,6 @@ entities: pos: 9.5,-23.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11095 @@ -158749,8 +149905,6 @@ entities: pos: 12.5,-9.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11098 @@ -158759,8 +149913,6 @@ entities: pos: 12.5,-17.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11109 @@ -158768,8 +149920,6 @@ entities: - pos: 18.5,-14.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11128 @@ -158778,8 +149928,6 @@ entities: pos: 17.5,-30.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11129 @@ -158788,8 +149936,6 @@ entities: pos: 19.5,-27.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11154 @@ -158798,8 +149944,6 @@ entities: pos: 7.5,-17.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12761 @@ -158808,8 +149952,6 @@ entities: pos: -34.5,-47.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12762 @@ -158818,8 +149960,6 @@ entities: pos: -34.5,-60.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12766 @@ -158828,8 +149968,6 @@ entities: pos: -39.5,-51.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 13102 @@ -158838,8 +149976,6 @@ entities: pos: -34.5,-39.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 13106 @@ -158848,8 +149984,6 @@ entities: pos: -39.5,-40.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 13108 @@ -158858,8 +149992,6 @@ entities: pos: -39.5,-30.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 13542 @@ -158868,8 +150000,6 @@ entities: pos: -35.5,-25.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 13556 @@ -158878,8 +150008,6 @@ entities: pos: -35.5,-5.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 13560 @@ -158888,8 +150016,6 @@ entities: pos: -22.5,-19.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 13561 @@ -158898,8 +150024,6 @@ entities: pos: -22.5,-11.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 13564 @@ -158908,8 +150032,6 @@ entities: pos: -17.5,-24.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 14281 @@ -158918,8 +150040,6 @@ entities: pos: 48.5,-33.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 14295 @@ -158928,8 +150048,6 @@ entities: pos: 55.5,-33.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 14312 @@ -158938,8 +150056,6 @@ entities: pos: 42.5,-26.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 14313 @@ -158947,8 +150063,6 @@ entities: - pos: 41.5,-22.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 14316 @@ -158957,8 +150071,6 @@ entities: pos: 46.5,-21.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 14321 @@ -158967,8 +150079,6 @@ entities: pos: 32.5,-30.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 14322 @@ -158977,8 +150087,6 @@ entities: pos: 35.5,-31.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 14330 @@ -158987,8 +150095,6 @@ entities: pos: 38.5,-31.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 14333 @@ -158997,8 +150103,6 @@ entities: pos: 42.5,-38.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 14342 @@ -159006,8 +150110,6 @@ entities: - pos: 42.5,-34.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 14359 @@ -159016,8 +150118,6 @@ entities: pos: 35.5,-33.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 14360 @@ -159026,8 +150126,6 @@ entities: pos: 34.5,-37.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 14452 @@ -159036,8 +150134,6 @@ entities: pos: 51.5,-15.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 14486 @@ -159046,8 +150142,6 @@ entities: pos: 28.5,-25.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 14489 @@ -159056,8 +150150,6 @@ entities: pos: 38.5,-21.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 14490 @@ -159066,8 +150158,6 @@ entities: pos: 48.5,-39.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 14522 @@ -159076,8 +150166,6 @@ entities: pos: 46.5,-16.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 14524 @@ -159086,8 +150174,6 @@ entities: pos: 29.5,-16.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 14526 @@ -159096,8 +150182,6 @@ entities: pos: 24.5,-16.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 14545 @@ -159106,8 +150190,6 @@ entities: pos: 46.5,-6.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 14562 @@ -159116,8 +150198,6 @@ entities: pos: 42.5,-7.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 14563 @@ -159126,8 +150206,6 @@ entities: pos: 55.5,-4.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 14584 @@ -159136,8 +150214,6 @@ entities: pos: 13.5,-5.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 14590 @@ -159146,8 +150222,6 @@ entities: pos: 29.5,-1.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 16672 @@ -159156,8 +150230,6 @@ entities: pos: 49.5,38.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 16673 @@ -159165,8 +150237,6 @@ entities: - pos: 49.5,43.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 16742 @@ -159175,8 +150245,6 @@ entities: pos: 71.5,39.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 16752 @@ -159185,8 +150253,6 @@ entities: pos: 71.5,42.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 17291 @@ -159195,8 +150261,6 @@ entities: pos: -4.5,65.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 17297 @@ -159204,8 +150268,6 @@ entities: - pos: 10.5,50.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 17387 @@ -159213,8 +150275,6 @@ entities: - pos: 12.5,37.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 17388 @@ -159223,8 +150283,6 @@ entities: pos: 3.5,40.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 17392 @@ -159233,8 +150291,6 @@ entities: pos: 5.5,44.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 17393 @@ -159243,8 +150299,6 @@ entities: pos: 18.5,54.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 17401 @@ -159253,8 +150307,6 @@ entities: pos: 23.5,49.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 17403 @@ -159263,8 +150315,6 @@ entities: pos: 14.5,59.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 17404 @@ -159273,8 +150323,6 @@ entities: pos: 23.5,55.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 17406 @@ -159283,8 +150331,6 @@ entities: pos: 5.5,48.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 17451 @@ -159292,8 +150338,6 @@ entities: - pos: 32.5,49.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 17452 @@ -159301,8 +150345,6 @@ entities: - pos: 35.5,49.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 17453 @@ -159311,8 +150353,6 @@ entities: pos: 36.5,45.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 17456 @@ -159320,8 +150360,6 @@ entities: - pos: 28.5,46.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 17457 @@ -159330,8 +150368,6 @@ entities: pos: 28.5,43.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 17460 @@ -159340,8 +150376,6 @@ entities: pos: 16.5,44.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 17466 @@ -159350,8 +150384,6 @@ entities: pos: 14.5,41.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 17473 @@ -159360,8 +150392,6 @@ entities: pos: 8.5,59.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 17501 @@ -159370,8 +150400,6 @@ entities: pos: 3.5,56.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 17502 @@ -159380,8 +150408,6 @@ entities: pos: 8.5,54.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 17543 @@ -159390,8 +150416,6 @@ entities: pos: 7.5,62.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 17607 @@ -159400,8 +150424,6 @@ entities: pos: 21.5,38.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 17721 @@ -159410,8 +150432,6 @@ entities: pos: 16.5,62.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 17737 @@ -159420,8 +150440,6 @@ entities: pos: 23.5,59.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 17738 @@ -159430,8 +150448,6 @@ entities: pos: 23.5,62.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 17746 @@ -159439,8 +150455,6 @@ entities: - pos: 8.5,66.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 17747 @@ -159449,8 +150463,6 @@ entities: pos: -0.5,62.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 17752 @@ -159458,8 +150470,6 @@ entities: - pos: 15.5,66.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 18796 @@ -159468,8 +150478,6 @@ entities: pos: 14.5,55.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 19467 @@ -159478,8 +150486,6 @@ entities: pos: 23.5,-52.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 19468 @@ -159488,8 +150494,6 @@ entities: pos: 24.5,-56.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 19469 @@ -159498,8 +150502,6 @@ entities: pos: 29.5,-49.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 19495 @@ -159508,8 +150510,6 @@ entities: pos: 42.5,-46.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 19544 @@ -159518,8 +150518,6 @@ entities: pos: 37.5,-47.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 19852 @@ -159528,8 +150526,6 @@ entities: pos: 53.5,-47.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 20227 @@ -159537,8 +150533,6 @@ entities: - pos: 76.5,-14.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 22669 @@ -159547,8 +150541,6 @@ entities: pos: 68.5,-10.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 22683 @@ -159556,8 +150548,6 @@ entities: - pos: 59.5,-3.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 22685 @@ -159566,8 +150556,6 @@ entities: pos: 59.5,-10.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 23792 @@ -159576,8 +150564,6 @@ entities: pos: 79.5,-32.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 23801 @@ -159586,8 +150572,6 @@ entities: pos: 76.5,-24.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24035 @@ -159596,8 +150580,6 @@ entities: pos: 68.5,-20.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 24893 @@ -159605,8 +150587,6 @@ entities: - pos: 77.5,-19.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25091 @@ -159614,8 +150594,6 @@ entities: - pos: 86.5,-19.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25330 @@ -159623,8 +150601,6 @@ entities: - pos: 93.5,-11.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25331 @@ -159633,8 +150609,6 @@ entities: pos: 93.5,-16.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25332 @@ -159643,8 +150617,6 @@ entities: pos: 104.5,-17.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25333 @@ -159653,8 +150625,6 @@ entities: pos: 108.5,-16.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25335 @@ -159663,8 +150633,6 @@ entities: pos: 115.5,-24.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25336 @@ -159673,8 +150641,6 @@ entities: pos: 82.5,-14.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25343 @@ -159683,8 +150649,6 @@ entities: pos: 71.5,-9.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25362 @@ -159693,8 +150657,6 @@ entities: pos: 82.5,-5.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25401 @@ -159703,8 +150665,6 @@ entities: pos: 72.5,0.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25402 @@ -159712,8 +150672,6 @@ entities: - pos: 82.5,1.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25403 @@ -159721,8 +150679,6 @@ entities: - pos: 86.5,-5.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25426 @@ -159730,8 +150686,6 @@ entities: - pos: 94.5,-8.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25455 @@ -159740,8 +150694,6 @@ entities: pos: 98.5,-14.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25458 @@ -159750,8 +150702,6 @@ entities: pos: 91.5,-7.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25875 @@ -159759,8 +150709,6 @@ entities: - pos: 89.5,6.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25900 @@ -159769,8 +150717,6 @@ entities: pos: 97.5,-21.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25954 @@ -159779,8 +150725,6 @@ entities: pos: 96.5,-39.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 27649 @@ -159789,8 +150733,6 @@ entities: pos: 98.5,35.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 27659 @@ -159799,8 +150741,6 @@ entities: pos: 86.5,33.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 27660 @@ -159809,8 +150749,6 @@ entities: pos: 87.5,30.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 27858 @@ -159819,8 +150757,6 @@ entities: pos: 98.5,29.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 28097 @@ -159828,8 +150764,6 @@ entities: - pos: 125.5,2.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 28116 @@ -159838,8 +150772,6 @@ entities: pos: 124.5,-5.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 28139 @@ -159847,8 +150779,6 @@ entities: - pos: 113.5,-19.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 28189 @@ -159856,8 +150786,6 @@ entities: - pos: 61.5,17.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 28196 @@ -159865,8 +150793,6 @@ entities: - pos: 55.5,7.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 28214 @@ -159875,8 +150801,6 @@ entities: pos: 97.5,5.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 28264 @@ -159885,8 +150809,6 @@ entities: pos: 93.5,15.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 28265 @@ -159894,8 +150816,6 @@ entities: - pos: 91.5,20.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 28268 @@ -159904,8 +150824,6 @@ entities: pos: 55.5,19.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 28320 @@ -159914,8 +150832,6 @@ entities: pos: 82.5,20.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 28321 @@ -159924,8 +150840,6 @@ entities: pos: 78.5,18.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 28322 @@ -159934,8 +150848,6 @@ entities: pos: 78.5,21.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 28323 @@ -159944,8 +150856,6 @@ entities: pos: 78.5,24.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 28324 @@ -159954,8 +150864,6 @@ entities: pos: 86.5,24.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 28325 @@ -159964,8 +150872,6 @@ entities: pos: 86.5,21.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 28326 @@ -159974,8 +150880,6 @@ entities: pos: 86.5,18.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 28787 @@ -159984,8 +150888,6 @@ entities: pos: 82.5,33.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 28792 @@ -159994,8 +150896,6 @@ entities: pos: 78.5,35.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 28794 @@ -160004,8 +150904,6 @@ entities: pos: 77.5,14.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 28830 @@ -160014,8 +150912,6 @@ entities: pos: 63.5,11.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 28831 @@ -160023,8 +150919,6 @@ entities: - pos: 71.5,16.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 28842 @@ -160033,8 +150927,6 @@ entities: pos: 55.5,29.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 28879 @@ -160043,8 +150935,6 @@ entities: pos: 69.5,28.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 28880 @@ -160052,8 +150942,6 @@ entities: - pos: 64.5,29.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 28881 @@ -160061,8 +150949,6 @@ entities: - pos: 59.5,29.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 28887 @@ -160071,8 +150957,6 @@ entities: pos: 70.5,34.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 28888 @@ -160080,8 +150964,6 @@ entities: - pos: 30.5,33.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 28891 @@ -160089,8 +150971,6 @@ entities: - pos: 46.5,33.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 29745 @@ -160099,8 +150979,6 @@ entities: pos: 94.5,39.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 29749 @@ -160109,8 +150987,6 @@ entities: pos: 60.5,39.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 29751 @@ -160119,8 +150995,6 @@ entities: pos: 96.5,47.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 29841 @@ -160129,8 +151003,6 @@ entities: pos: 107.5,42.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 29842 @@ -160138,8 +151010,6 @@ entities: - pos: 107.5,56.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 29843 @@ -160148,8 +151018,6 @@ entities: pos: 102.5,49.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 29844 @@ -160158,8 +151026,6 @@ entities: pos: 110.5,47.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 29847 @@ -160167,8 +151033,6 @@ entities: - pos: 116.5,49.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 29865 @@ -160177,8 +151041,6 @@ entities: pos: 119.5,45.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 29866 @@ -160187,8 +151049,6 @@ entities: pos: 126.5,45.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 30302 @@ -160197,8 +151057,6 @@ entities: pos: 79.5,46.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 30303 @@ -160207,8 +151065,6 @@ entities: pos: 80.5,50.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 31134 @@ -160217,8 +151073,6 @@ entities: pos: 73.5,54.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 31136 @@ -160226,8 +151080,6 @@ entities: - pos: 79.5,57.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 31148 @@ -160236,8 +151088,6 @@ entities: pos: 61.5,44.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 31164 @@ -160245,8 +151095,6 @@ entities: - pos: 59.5,59.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 34610 @@ -160255,8 +151103,6 @@ entities: pos: 91.5,2.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - proto: GasVentScrubber @@ -160266,8 +151112,6 @@ entities: - pos: -10.5,9.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 378 @@ -160276,8 +151120,6 @@ entities: pos: -6.5,9.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 387 @@ -160286,8 +151128,6 @@ entities: pos: -16.5,12.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 388 @@ -160296,8 +151136,6 @@ entities: pos: -12.5,13.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 389 @@ -160306,8 +151144,6 @@ entities: pos: -20.5,20.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 420 @@ -160316,8 +151152,6 @@ entities: pos: -4.5,24.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 421 @@ -160326,8 +151160,6 @@ entities: pos: -13.5,25.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 422 @@ -160335,8 +151167,6 @@ entities: - pos: -6.5,26.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 423 @@ -160345,8 +151175,6 @@ entities: pos: -8.5,19.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 530 @@ -160355,8 +151183,6 @@ entities: pos: -9.5,30.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 537 @@ -160364,8 +151190,6 @@ entities: - pos: -16.5,35.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 538 @@ -160374,8 +151198,6 @@ entities: pos: -15.5,30.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 587 @@ -160384,8 +151206,6 @@ entities: pos: -11.5,35.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 588 @@ -160394,8 +151214,6 @@ entities: pos: -4.5,39.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 1544 @@ -160403,8 +151221,6 @@ entities: - pos: 4.5,8.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 1553 @@ -160413,8 +151229,6 @@ entities: pos: -2.5,5.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 1555 @@ -160423,8 +151237,6 @@ entities: pos: -0.5,13.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 1617 @@ -160433,8 +151245,6 @@ entities: pos: -10.5,1.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2075 @@ -160443,8 +151253,6 @@ entities: pos: 4.5,-5.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2189 @@ -160452,8 +151260,6 @@ entities: - pos: -8.5,-9.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2190 @@ -160462,8 +151268,6 @@ entities: pos: -14.5,-10.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2194 @@ -160471,8 +151275,6 @@ entities: - pos: -12.5,-5.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2307 @@ -160480,8 +151282,6 @@ entities: - pos: -18.5,-11.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2549 @@ -160490,8 +151290,6 @@ entities: pos: -17.5,0.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4463 @@ -160500,8 +151298,6 @@ entities: pos: -34.5,27.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4469 @@ -160510,8 +151306,6 @@ entities: pos: -24.5,41.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4586 @@ -160519,8 +151313,6 @@ entities: - pos: -22.5,45.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4668 @@ -160529,8 +151321,6 @@ entities: pos: -37.5,33.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4669 @@ -160539,8 +151329,6 @@ entities: pos: -27.5,37.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4759 @@ -160549,8 +151337,6 @@ entities: pos: -23.5,32.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4760 @@ -160559,8 +151345,6 @@ entities: pos: -23.5,30.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5525 @@ -160569,8 +151353,6 @@ entities: pos: -4.5,53.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 5533 @@ -160578,8 +151360,6 @@ entities: - pos: -31.5,53.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 5644 @@ -160588,8 +151368,6 @@ entities: pos: -28.5,52.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 5660 @@ -160598,8 +151376,6 @@ entities: pos: -15.5,50.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 5669 @@ -160608,8 +151384,6 @@ entities: pos: -7.5,51.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 5721 @@ -160618,8 +151392,6 @@ entities: pos: -21.5,67.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 5722 @@ -160628,8 +151400,6 @@ entities: pos: -8.5,61.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 5753 @@ -160637,8 +151407,6 @@ entities: - pos: -7.5,71.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6224 @@ -160646,8 +151414,6 @@ entities: - pos: -11.5,45.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6229 @@ -160656,8 +151422,6 @@ entities: pos: -30.5,47.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6905 @@ -160666,8 +151430,6 @@ entities: pos: 5.5,22.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6908 @@ -160676,8 +151438,6 @@ entities: pos: -0.5,30.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8137 @@ -160686,8 +151446,6 @@ entities: pos: 49.5,10.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8141 @@ -160696,8 +151454,6 @@ entities: pos: 49.5,17.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8166 @@ -160706,8 +151462,6 @@ entities: pos: 47.5,24.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8263 @@ -160716,8 +151470,6 @@ entities: pos: 15.5,33.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8416 @@ -160725,8 +151477,6 @@ entities: - pos: 51.5,6.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8453 @@ -160735,8 +151485,6 @@ entities: pos: 33.5,13.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8475 @@ -160745,8 +151493,6 @@ entities: pos: 28.5,1.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8476 @@ -160755,8 +151501,6 @@ entities: pos: 31.5,1.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8477 @@ -160765,8 +151509,6 @@ entities: pos: 34.5,1.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8478 @@ -160775,8 +151517,6 @@ entities: pos: 38.5,1.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8533 @@ -160784,8 +151524,6 @@ entities: - pos: 35.5,18.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8541 @@ -160794,8 +151532,6 @@ entities: pos: 29.5,25.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8551 @@ -160803,8 +151539,6 @@ entities: - pos: 31.5,30.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8553 @@ -160813,8 +151547,6 @@ entities: pos: 24.5,24.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8565 @@ -160822,8 +151554,6 @@ entities: - pos: 18.5,18.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8567 @@ -160832,8 +151562,6 @@ entities: pos: 30.5,13.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8571 @@ -160842,8 +151570,6 @@ entities: pos: 21.5,2.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8594 @@ -160852,8 +151578,6 @@ entities: pos: 20.5,10.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8596 @@ -160862,8 +151586,6 @@ entities: pos: 24.5,9.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8598 @@ -160871,8 +151593,6 @@ entities: - pos: 32.5,6.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8600 @@ -160881,8 +151601,6 @@ entities: pos: 24.5,16.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8613 @@ -160891,8 +151609,6 @@ entities: pos: 15.5,22.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 9329 @@ -160901,8 +151617,6 @@ entities: pos: 10.5,3.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 9330 @@ -160911,8 +151625,6 @@ entities: pos: 13.5,-1.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 9331 @@ -160921,8 +151633,6 @@ entities: pos: 11.5,-1.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 9332 @@ -160930,8 +151640,6 @@ entities: - pos: 13.5,4.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 9949 @@ -160940,8 +151648,6 @@ entities: pos: -0.5,-9.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 9951 @@ -160950,8 +151656,6 @@ entities: pos: 3.5,-11.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10081 @@ -160959,8 +151663,6 @@ entities: - pos: 1.5,-23.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10082 @@ -160969,8 +151671,6 @@ entities: pos: -4.5,-24.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11040 @@ -160979,8 +151679,6 @@ entities: pos: 7.5,-36.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11046 @@ -160988,8 +151686,6 @@ entities: - pos: -1.5,-19.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11048 @@ -160998,8 +151694,6 @@ entities: pos: 11.5,-23.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11096 @@ -161007,8 +151701,6 @@ entities: - pos: 12.5,-11.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11097 @@ -161017,8 +151709,6 @@ entities: pos: 12.5,-15.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11108 @@ -161027,8 +151717,6 @@ entities: pos: 17.5,-10.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11126 @@ -161036,8 +151724,6 @@ entities: - pos: 19.5,-25.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11127 @@ -161046,8 +151732,6 @@ entities: pos: 15.5,-31.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11130 @@ -161056,8 +151740,6 @@ entities: pos: 11.5,-26.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11155 @@ -161066,8 +151748,6 @@ entities: pos: 5.5,-16.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12763 @@ -161076,8 +151756,6 @@ entities: pos: -33.5,-59.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12764 @@ -161086,8 +151764,6 @@ entities: pos: -33.5,-46.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12765 @@ -161096,8 +151772,6 @@ entities: pos: -39.5,-55.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 13103 @@ -161106,8 +151780,6 @@ entities: pos: -34.5,-41.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 13107 @@ -161116,8 +151788,6 @@ entities: pos: -39.5,-41.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 13109 @@ -161126,8 +151796,6 @@ entities: pos: -39.5,-31.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 13543 @@ -161135,8 +151803,6 @@ entities: - pos: -33.5,-25.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 13559 @@ -161144,8 +151810,6 @@ entities: - pos: -33.5,-5.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 13562 @@ -161154,8 +151818,6 @@ entities: pos: -22.5,-18.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 13563 @@ -161164,8 +151826,6 @@ entities: pos: -22.5,-12.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 13565 @@ -161174,8 +151834,6 @@ entities: pos: -17.5,-26.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 14283 @@ -161183,8 +151841,6 @@ entities: - pos: 48.5,-31.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 14299 @@ -161192,8 +151848,6 @@ entities: - pos: 56.5,-31.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 14314 @@ -161202,8 +151856,6 @@ entities: pos: 43.5,-22.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 14315 @@ -161212,8 +151864,6 @@ entities: pos: 44.5,-26.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 14317 @@ -161222,8 +151872,6 @@ entities: pos: 46.5,-23.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 14329 @@ -161232,8 +151880,6 @@ entities: pos: 35.5,-29.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 14331 @@ -161242,8 +151888,6 @@ entities: pos: 38.5,-30.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 14343 @@ -161251,8 +151895,6 @@ entities: - pos: 44.5,-34.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 14345 @@ -161261,8 +151903,6 @@ entities: pos: 44.5,-38.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 14361 @@ -161271,8 +151911,6 @@ entities: pos: 35.5,-35.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 14362 @@ -161281,8 +151919,6 @@ entities: pos: 34.5,-39.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 14453 @@ -161291,8 +151927,6 @@ entities: pos: 53.5,-17.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 14487 @@ -161300,8 +151934,6 @@ entities: - pos: 30.5,-19.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 14488 @@ -161310,8 +151942,6 @@ entities: pos: 32.5,-21.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 14498 @@ -161320,8 +151950,6 @@ entities: pos: 52.5,-42.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 14523 @@ -161329,8 +151957,6 @@ entities: - pos: 42.5,-16.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 14525 @@ -161338,8 +151964,6 @@ entities: - pos: 32.5,-16.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 14527 @@ -161348,8 +151972,6 @@ entities: pos: 24.5,-17.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 14544 @@ -161358,8 +151980,6 @@ entities: pos: 51.5,-5.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 14564 @@ -161368,8 +151988,6 @@ entities: pos: 42.5,-4.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 14565 @@ -161378,8 +151996,6 @@ entities: pos: 55.5,-7.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 14585 @@ -161387,8 +152003,6 @@ entities: - pos: 15.5,-5.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 14591 @@ -161396,8 +152010,6 @@ entities: - pos: 35.5,-1.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 16674 @@ -161405,8 +152017,6 @@ entities: - pos: 50.5,43.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 16675 @@ -161415,8 +152025,6 @@ entities: pos: 49.5,37.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 16753 @@ -161425,8 +152033,6 @@ entities: pos: 74.5,42.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 17290 @@ -161435,8 +152041,6 @@ entities: pos: -4.5,64.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 17360 @@ -161445,8 +152049,6 @@ entities: pos: 27.5,48.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 17389 @@ -161455,8 +152057,6 @@ entities: pos: 13.5,37.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 17390 @@ -161464,8 +152064,6 @@ entities: - pos: 3.5,37.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 17391 @@ -161474,8 +152072,6 @@ entities: pos: 5.5,43.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 17394 @@ -161484,8 +152080,6 @@ entities: pos: 18.5,52.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 17395 @@ -161494,8 +152088,6 @@ entities: pos: 14.5,53.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 17396 @@ -161504,8 +152096,6 @@ entities: pos: 23.5,53.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 17397 @@ -161514,8 +152104,6 @@ entities: pos: 14.5,57.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 17398 @@ -161524,8 +152112,6 @@ entities: pos: 23.5,48.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 17399 @@ -161534,8 +152120,6 @@ entities: pos: 14.5,47.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 17405 @@ -161544,8 +152128,6 @@ entities: pos: 4.5,48.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 17448 @@ -161554,8 +152136,6 @@ entities: pos: 34.5,44.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 17449 @@ -161563,8 +152143,6 @@ entities: - pos: 33.5,49.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 17450 @@ -161572,8 +152150,6 @@ entities: - pos: 36.5,49.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 17458 @@ -161581,8 +152157,6 @@ entities: - pos: 29.5,45.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 17459 @@ -161591,8 +152165,6 @@ entities: pos: 29.5,42.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 17461 @@ -161601,8 +152173,6 @@ entities: pos: 20.5,44.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 17467 @@ -161611,8 +152181,6 @@ entities: pos: 18.5,41.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 17474 @@ -161621,8 +152189,6 @@ entities: pos: 10.5,58.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 17499 @@ -161631,8 +152197,6 @@ entities: pos: 3.5,57.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 17500 @@ -161641,8 +152205,6 @@ entities: pos: 9.5,55.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 17544 @@ -161650,8 +152212,6 @@ entities: - pos: 11.5,62.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 17608 @@ -161660,8 +152220,6 @@ entities: pos: 24.5,38.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 17720 @@ -161670,8 +152228,6 @@ entities: pos: 18.5,60.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 17735 @@ -161680,8 +152236,6 @@ entities: pos: 21.5,62.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 17736 @@ -161690,8 +152244,6 @@ entities: pos: 23.5,57.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 17745 @@ -161699,8 +152251,6 @@ entities: - pos: 6.5,66.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 17748 @@ -161709,8 +152259,6 @@ entities: pos: -0.5,60.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 17753 @@ -161718,8 +152266,6 @@ entities: - pos: 13.5,66.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 19529 @@ -161728,8 +152274,6 @@ entities: pos: 25.5,-56.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 19530 @@ -161738,8 +152282,6 @@ entities: pos: 29.5,-47.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 19531 @@ -161748,8 +152290,6 @@ entities: pos: 30.5,-43.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 19533 @@ -161758,8 +152298,6 @@ entities: pos: 36.5,-43.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 19545 @@ -161768,8 +152306,6 @@ entities: pos: 39.5,-47.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 19855 @@ -161778,8 +152314,6 @@ entities: pos: 54.5,-47.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 22670 @@ -161788,8 +152322,6 @@ entities: pos: 68.5,-11.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 22684 @@ -161797,8 +152329,6 @@ entities: - pos: 61.5,-3.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 22686 @@ -161806,8 +152336,6 @@ entities: - pos: 60.5,-10.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 23661 @@ -161816,8 +152344,6 @@ entities: pos: 72.5,-32.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 23802 @@ -161826,8 +152352,6 @@ entities: pos: 75.5,-25.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24027 @@ -161836,8 +152360,6 @@ entities: pos: 64.5,-20.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24892 @@ -161846,8 +152368,6 @@ entities: pos: 76.5,-19.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25342 @@ -161855,8 +152375,6 @@ entities: - pos: 72.5,-10.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25350 @@ -161865,8 +152383,6 @@ entities: pos: 82.5,-12.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25361 @@ -161875,8 +152391,6 @@ entities: pos: 78.5,-5.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25380 @@ -161885,8 +152399,6 @@ entities: pos: 72.5,-4.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25384 @@ -161894,8 +152406,6 @@ entities: - pos: 77.5,-0.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25404 @@ -161903,8 +152413,6 @@ entities: - pos: 86.5,-3.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25415 @@ -161913,8 +152421,6 @@ entities: pos: 88.5,-19.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25427 @@ -161923,8 +152429,6 @@ entities: pos: 94.5,-2.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25456 @@ -161933,8 +152437,6 @@ entities: pos: 98.5,-12.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25459 @@ -161943,8 +152445,6 @@ entities: pos: 91.5,-3.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25498 @@ -161953,8 +152453,6 @@ entities: pos: 89.5,-11.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25505 @@ -161963,8 +152461,6 @@ entities: pos: 76.5,-13.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25876 @@ -161972,8 +152468,6 @@ entities: - pos: 91.5,6.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25877 @@ -161981,8 +152475,6 @@ entities: - pos: 93.5,2.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25897 @@ -161990,8 +152482,6 @@ entities: - pos: 104.5,-18.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25898 @@ -162000,8 +152490,6 @@ entities: pos: 112.5,-19.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25899 @@ -162010,8 +152498,6 @@ entities: pos: 97.5,-19.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 27676 @@ -162020,8 +152506,6 @@ entities: pos: 96.5,35.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 27677 @@ -162029,8 +152513,6 @@ entities: - pos: 88.5,36.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 27679 @@ -162039,8 +152521,6 @@ entities: pos: 88.5,30.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 28060 @@ -162048,8 +152528,6 @@ entities: - pos: 95.5,5.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 28190 @@ -162057,8 +152535,6 @@ entities: - pos: 66.5,18.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 28197 @@ -162067,8 +152543,6 @@ entities: pos: 59.5,6.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 28198 @@ -162077,8 +152551,6 @@ entities: pos: 55.5,3.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 28266 @@ -162086,8 +152558,6 @@ entities: - pos: 92.5,20.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 28267 @@ -162096,8 +152566,6 @@ entities: pos: 93.5,13.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 28269 @@ -162106,8 +152574,6 @@ entities: pos: 55.5,15.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 28327 @@ -162116,8 +152582,6 @@ entities: pos: 86.5,19.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 28328 @@ -162126,8 +152590,6 @@ entities: pos: 86.5,22.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 28329 @@ -162136,8 +152598,6 @@ entities: pos: 86.5,25.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 28330 @@ -162146,8 +152606,6 @@ entities: pos: 78.5,19.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 28331 @@ -162156,8 +152614,6 @@ entities: pos: 78.5,22.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 28332 @@ -162166,8 +152622,6 @@ entities: pos: 78.5,25.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 28333 @@ -162175,8 +152629,6 @@ entities: - pos: 82.5,23.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 28786 @@ -162185,8 +152637,6 @@ entities: pos: 82.5,32.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 28793 @@ -162195,8 +152645,6 @@ entities: pos: 77.5,35.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 28795 @@ -162204,8 +152652,6 @@ entities: - pos: 87.5,14.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 28843 @@ -162214,8 +152660,6 @@ entities: pos: 55.5,31.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 28875 @@ -162224,8 +152668,6 @@ entities: pos: 59.5,31.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 28876 @@ -162234,8 +152676,6 @@ entities: pos: 64.5,31.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 28877 @@ -162243,8 +152683,6 @@ entities: - pos: 69.5,34.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 28878 @@ -162253,8 +152691,6 @@ entities: pos: 69.5,29.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 28889 @@ -162263,8 +152699,6 @@ entities: pos: 28.5,33.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 28890 @@ -162273,8 +152707,6 @@ entities: pos: 44.5,33.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 29280 @@ -162283,8 +152715,6 @@ entities: pos: 65.5,9.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 29746 @@ -162292,8 +152722,6 @@ entities: - pos: 98.5,39.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 29748 @@ -162302,8 +152730,6 @@ entities: pos: 74.5,39.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 29750 @@ -162311,8 +152737,6 @@ entities: - pos: 59.5,39.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 29752 @@ -162321,8 +152745,6 @@ entities: pos: 96.5,51.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 29838 @@ -162331,8 +152753,6 @@ entities: pos: 99.5,49.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 29839 @@ -162340,8 +152760,6 @@ entities: - pos: 100.5,56.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 29840 @@ -162350,8 +152768,6 @@ entities: pos: 100.5,42.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 29845 @@ -162359,8 +152775,6 @@ entities: - pos: 110.5,51.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 29846 @@ -162369,8 +152783,6 @@ entities: pos: 112.5,49.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 29863 @@ -162378,8 +152790,6 @@ entities: - pos: 119.5,53.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 29864 @@ -162387,8 +152797,6 @@ entities: - pos: 126.5,53.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 30315 @@ -162396,8 +152804,6 @@ entities: - pos: 80.5,49.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 30316 @@ -162406,8 +152812,6 @@ entities: pos: 81.5,45.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 31132 @@ -162415,8 +152819,6 @@ entities: - pos: 80.5,57.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 31135 @@ -162425,8 +152827,6 @@ entities: pos: 72.5,46.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 31165 @@ -162434,8 +152834,6 @@ entities: - pos: 65.5,59.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 31166 @@ -162444,8 +152842,6 @@ entities: pos: 58.5,46.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - proto: GasVolumePump @@ -172560,8 +162956,6 @@ entities: - pos: 43.5,-31.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - proto: MachineAnomalyVessel entities: - uid: 19983 @@ -176938,8 +167332,6 @@ entities: - pos: 21.5,45.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 1880 components: - rot: -1.5707963267948966 rad @@ -177000,16 +167392,12 @@ entities: - pos: 15.5,45.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 4525 components: - rot: -1.5707963267948966 rad pos: -4.5,2.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 4679 components: - pos: -36.5,50.5 @@ -177031,40 +167419,30 @@ entities: pos: -30.5,33.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 4682 components: - rot: -1.5707963267948966 rad pos: -27.5,37.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 4683 components: - rot: -1.5707963267948966 rad pos: -30.5,37.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 4684 components: - rot: 3.141592653589793 rad pos: -27.5,30.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 4685 components: - rot: 1.5707963267948966 rad pos: -34.5,37.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 4709 components: - rot: 3.141592653589793 rad @@ -177110,8 +167488,6 @@ entities: pos: 57.5,45.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 6239 components: - rot: -1.5707963267948966 rad @@ -177573,8 +167949,6 @@ entities: pos: -37.5,37.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 10910 components: - rot: 3.141592653589793 rad @@ -177808,221 +168182,163 @@ entities: - pos: 10.5,45.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 13348 components: - rot: 3.141592653589793 rad pos: 6.5,47.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 13349 components: - pos: 3.5,50.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 13354 components: - rot: -1.5707963267948966 rad pos: 25.5,16.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 13355 components: - rot: -1.5707963267948966 rad pos: 25.5,-23.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 13356 components: - pos: 14.5,-4.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 13357 components: - pos: 31.5,34.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 13358 components: - rot: -1.5707963267948966 rad pos: 65.5,46.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 13359 components: - pos: -17.5,46.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 13360 components: - rot: 1.5707963267948966 rad pos: -34.5,33.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 13361 components: - rot: 3.141592653589793 rad pos: -36.5,30.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 13362 components: - pos: -22.5,46.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 13363 components: - rot: 1.5707963267948966 rad pos: 45.5,-18.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 13369 components: - pos: 26.5,34.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 13370 components: - rot: 3.141592653589793 rad pos: 13.5,31.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 13372 components: - pos: 8.5,-4.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 13373 components: - pos: -3.5,-3.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 13374 components: - rot: 1.5707963267948966 rad pos: 3.5,2.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 13375 components: - pos: 18.5,-0.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 13377 components: - pos: 27.5,46.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 13378 components: - rot: 3.141592653589793 rad pos: 36.5,42.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 13379 components: - rot: -1.5707963267948966 rad pos: 25.5,-18.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 13380 components: - rot: -1.5707963267948966 rad pos: 18.5,-15.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 13381 components: - rot: -1.5707963267948966 rad pos: -21.5,-17.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 13382 components: - rot: -1.5707963267948966 rad pos: -21.5,-12.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 13384 components: - rot: -1.5707963267948966 rad pos: 93.5,42.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 13385 components: - rot: 1.5707963267948966 rad pos: 85.5,42.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 13386 components: - rot: -1.5707963267948966 rad pos: 97.5,55.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 13387 components: - pos: 48.5,-0.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 13589 components: - rot: -1.5707963267948966 rad @@ -178756,24 +169072,18 @@ entities: pos: 68.5,-38.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 23941 components: - rot: 1.5707963267948966 rad pos: 105.5,-36.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 25979 components: - rot: 1.5707963267948966 rad pos: 45.5,-4.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 26017 components: - rot: 1.5707963267948966 rad @@ -178851,8 +169161,6 @@ entities: pos: 52.5,-7.5 parent: 13329 type: Transform - - enabled: False - type: AmbientSound - uid: 26154 components: - rot: 1.5707963267948966 rad @@ -193426,66 +183734,92 @@ entities: entities: - uid: 3711 components: + - name: West Solars SMES + type: MetaData - pos: -45.5,2.5 parent: 13329 type: Transform - uid: 20332 components: + - name: SMES Bank 2 + type: MetaData - pos: 87.5,0.5 parent: 13329 type: Transform - uid: 22190 components: + - name: South Solars SMES + type: MetaData - pos: 104.5,-54.5 parent: 13329 type: Transform - uid: 22206 components: + - name: East Solars SMES + type: MetaData - pos: 114.5,32.5 parent: 13329 type: Transform - uid: 22713 components: + - name: SMES Bank 1 + type: MetaData - pos: 87.5,-0.5 parent: 13329 type: Transform - uid: 22727 components: + - name: SMES Bank 4 + type: MetaData - pos: 87.5,2.5 parent: 13329 type: Transform - uid: 22735 components: + - name: SMES Bank 3 + type: MetaData - pos: 87.5,1.5 parent: 13329 type: Transform - uid: 23129 components: + - name: Grav Gen SMES + type: MetaData - pos: 113.5,-26.5 parent: 13329 type: Transform - uid: 25985 components: + - name: Singulo SMES + type: MetaData - pos: 97.5,1.5 parent: 13329 type: Transform - uid: 27538 components: + - name: Telecomms SMES + type: MetaData - pos: 90.5,29.5 parent: 13329 type: Transform - uid: 29878 components: + - name: AI SMES + type: MetaData - pos: 112.5,42.5 parent: 13329 type: Transform - uid: 30209 components: + - name: SMES + type: MetaData - pos: 128.5,49.5 parent: 13329 type: Transform - uid: 33227 components: + - name: North Solars SMES + type: MetaData - pos: 51.5,68.5 parent: 13329 type: Transform @@ -197974,6 +188308,8 @@ entities: type: Transform - uid: 29894 components: + - name: AI Substation + type: MetaData - pos: 113.5,42.5 parent: 13329 type: Transform diff --git a/Resources/Maps/kettle.yml b/Resources/Maps/kettle.yml index 9bea1311dfc..c8194474d0b 100644 --- a/Resources/Maps/kettle.yml +++ b/Resources/Maps/kettle.yml @@ -2314,6 +2314,16 @@ entities: 4793: 72,0 4794: 73,0 4795: 73,-1 + - node: + color: '#0E7F1BFF' + id: Delivery + decals: + 4993: 37,-12 + - node: + color: '#1861D5FF' + id: Delivery + decals: + 4991: 34,-13 - node: color: '#334E6DC8' id: Delivery @@ -2331,6 +2341,16 @@ entities: 3302: 75,16 3303: 76,16 3304: 77,16 + - node: + color: '#951710FF' + id: Delivery + decals: + 4992: 34,-12 + - node: + color: '#D58C18FF' + id: Delivery + decals: + 4994: 38,-12 - node: color: '#EFB34196' id: Delivery @@ -3203,7 +3223,6 @@ entities: 2411: 62,-21 2412: 61,-22 2413: 60,-19 - 2414: 43,-16 2415: 41,-16 2416: 38,-16 2417: 37,-16 @@ -3910,7 +3929,6 @@ entities: 3040: 80,6 3041: 53,-2 3042: 46,-16 - 3043: 38,-12 3044: 35,-6 3045: 32,-4 3046: 26,-5 @@ -4526,6 +4544,16 @@ entities: 609: -12,45 610: -11,45 611: -10,45 + - node: + color: '#0E7F1BFF' + id: HalfTileOverlayGreyscale180 + decals: + 4983: 43,-17 + - node: + color: '#1861D5FF' + id: HalfTileOverlayGreyscale180 + decals: + 4981: 37,-17 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale180 @@ -4567,6 +4595,11 @@ entities: 4883: -33,-45 4884: -34,-45 4885: -35,-45 + - node: + color: '#951710FF' + id: HalfTileOverlayGreyscale180 + decals: + 4982: 40,-17 - node: color: '#A4610696' id: HalfTileOverlayGreyscale180 @@ -4740,6 +4773,11 @@ entities: 935: 67,2 936: 68,2 937: 69,2 + - node: + color: '#D58C18FF' + id: HalfTileOverlayGreyscale180 + decals: + 4984: 46,-17 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 @@ -4750,16 +4788,11 @@ entities: 333: 44,-1 334: 45,-1 335: 46,-1 - 377: 46,-17 378: 45,-17 - 379: 44,-17 - 380: 43,-17 381: 42,-17 382: 41,-17 - 383: 40,-17 384: 39,-17 385: 38,-17 - 386: 37,-17 510: -32,25 511: -31,25 512: -30,25 @@ -4774,6 +4807,8 @@ entities: 1605: 60,-23 1606: 61,-23 1607: 62,-23 + 4980: 44,-17 + 4986: 34,-13 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale180 @@ -4944,8 +4979,6 @@ entities: 354: 34,-9 355: 34,-10 356: 34,-11 - 357: 34,-12 - 358: 34,-13 359: 35,-14 360: 35,-15 361: 36,-16 @@ -4955,6 +4988,8 @@ entities: 1217: -64,50 1461: 35,49 1462: 35,50 + 4987: 34,-13 + 4988: 34,-12 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale270 @@ -5147,6 +5182,11 @@ entities: 896: 29,-1 897: 29,0 898: 29,1 + - node: + color: '#D58C18FF' + id: HalfTileOverlayGreyscale90 + decals: + 4985: 46,-17 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 @@ -5695,7 +5735,6 @@ entities: decals: 238: -27,-40 336: 43,-1 - 371: 34,-13 372: 35,-15 373: 36,-17 374: 33,-8 @@ -6029,8 +6068,6 @@ entities: 415: 41,-12 416: 40,-12 417: 39,-12 - 418: 38,-12 - 419: 37,-12 435: 56,-3 436: 56,-2 437: 56,-1 @@ -6050,7 +6087,8 @@ entities: 461: 58,0 521: -26,25 522: -30,26 - 1611: 46,-17 + 4989: 37,-12 + 4990: 38,-12 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 @@ -18762,9 +18800,14 @@ entities: - pos: 34.5,12.5 parent: 82 type: Transform - - SecondsUntilStateChange: -507010.16 - state: Opening + - state: Open type: Door + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight - links: - 11588 type: DeviceLinkSink @@ -18773,9 +18816,14 @@ entities: - pos: 34.5,14.5 parent: 82 type: Transform - - SecondsUntilStateChange: -507010.16 - state: Opening + - state: Open type: Door + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight - links: - 11588 type: DeviceLinkSink @@ -18800,9 +18848,14 @@ entities: - pos: 34.5,13.5 parent: 82 type: Transform - - SecondsUntilStateChange: -507010.16 - state: Opening + - state: Open type: Door + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight - links: - 11588 type: DeviceLinkSink @@ -18827,9 +18880,14 @@ entities: - pos: 53.5,-25.5 parent: 82 type: Transform - - SecondsUntilStateChange: -505275.1 - state: Opening + - state: Open type: Door + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight - links: - 8852 type: DeviceLinkSink @@ -18838,9 +18896,14 @@ entities: - pos: 53.5,-26.5 parent: 82 type: Transform - - SecondsUntilStateChange: -505275.1 - state: Opening + - state: Open type: Door + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight - links: - 8852 type: DeviceLinkSink @@ -18849,9 +18912,14 @@ entities: - pos: 53.5,-27.5 parent: 82 type: Transform - - SecondsUntilStateChange: -505275.1 - state: Opening + - state: Open type: Door + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight - links: - 8852 type: DeviceLinkSink @@ -18860,9 +18928,14 @@ entities: - pos: 53.5,-28.5 parent: 82 type: Transform - - SecondsUntilStateChange: -505275.1 - state: Opening + - state: Open type: Door + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight - links: - 8852 type: DeviceLinkSink @@ -18871,9 +18944,14 @@ entities: - pos: 53.5,-29.5 parent: 82 type: Transform - - SecondsUntilStateChange: -505275.1 - state: Opening + - state: Open type: Door + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight - links: - 8852 type: DeviceLinkSink @@ -18882,9 +18960,14 @@ entities: - pos: 53.5,-30.5 parent: 82 type: Transform - - SecondsUntilStateChange: -505275.1 - state: Opening + - state: Open type: Door + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight - links: - 8852 type: DeviceLinkSink @@ -18893,9 +18976,14 @@ entities: - pos: 56.5,-25.5 parent: 82 type: Transform - - SecondsUntilStateChange: -505275.1 - state: Opening + - state: Open type: Door + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight - links: - 8852 type: DeviceLinkSink @@ -18904,9 +18992,14 @@ entities: - pos: 56.5,-26.5 parent: 82 type: Transform - - SecondsUntilStateChange: -505275.1 - state: Opening + - state: Open type: Door + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight - links: - 8852 type: DeviceLinkSink @@ -18915,9 +19008,14 @@ entities: - pos: 56.5,-27.5 parent: 82 type: Transform - - SecondsUntilStateChange: -505275.1 - state: Opening + - state: Open type: Door + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight - links: - 8852 type: DeviceLinkSink @@ -18926,9 +19024,14 @@ entities: - pos: 56.5,-28.5 parent: 82 type: Transform - - SecondsUntilStateChange: -505275.1 - state: Opening + - state: Open type: Door + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight - links: - 8852 type: DeviceLinkSink @@ -18937,9 +19040,14 @@ entities: - pos: 56.5,-29.5 parent: 82 type: Transform - - SecondsUntilStateChange: -505275.1 - state: Opening + - state: Open type: Door + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight - links: - 8852 type: DeviceLinkSink @@ -18948,9 +19056,14 @@ entities: - pos: 56.5,-30.5 parent: 82 type: Transform - - SecondsUntilStateChange: -505275.1 - state: Opening + - state: Open type: Door + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight - links: - 8852 type: DeviceLinkSink @@ -18959,9 +19072,14 @@ entities: - pos: -21.5,50.5 parent: 82 type: Transform - - SecondsUntilStateChange: -445930.03 - state: Opening + - state: Open type: Door + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight - links: - 23015 type: DeviceLinkSink @@ -18970,9 +19088,14 @@ entities: - pos: -21.5,48.5 parent: 82 type: Transform - - SecondsUntilStateChange: -445930.03 - state: Opening + - state: Open type: Door + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight - links: - 23015 type: DeviceLinkSink @@ -18981,9 +19104,14 @@ entities: - pos: -21.5,49.5 parent: 82 type: Transform - - SecondsUntilStateChange: -445930.03 - state: Opening + - state: Open type: Door + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight - links: - 23015 type: DeviceLinkSink @@ -18992,9 +19120,14 @@ entities: - pos: -21.5,47.5 parent: 82 type: Transform - - SecondsUntilStateChange: -445930.03 - state: Opening + - state: Open type: Door + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight - links: - 23015 type: DeviceLinkSink @@ -19057,9 +19190,14 @@ entities: - pos: 23.5,14.5 parent: 82 type: Transform - - SecondsUntilStateChange: -507071.4 - state: Closing + - state: Closed type: Door + - enabled: True + type: Occluder + - canCollide: True + type: Physics + - airBlocked: True + type: Airtight - links: - 22394 type: DeviceLinkSink @@ -19068,9 +19206,14 @@ entities: - pos: 23.5,13.5 parent: 82 type: Transform - - SecondsUntilStateChange: -507071.4 - state: Closing + - state: Closed type: Door + - enabled: True + type: Occluder + - canCollide: True + type: Physics + - airBlocked: True + type: Airtight - links: - 22394 type: DeviceLinkSink @@ -19079,9 +19222,14 @@ entities: - pos: 23.5,12.5 parent: 82 type: Transform - - SecondsUntilStateChange: -507071.4 - state: Closing + - state: Closed type: Door + - enabled: True + type: Occluder + - canCollide: True + type: Physics + - airBlocked: True + type: Airtight - links: - 22394 type: DeviceLinkSink @@ -19912,8 +20060,6 @@ entities: - pos: 16.5,-14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 1128 components: - pos: 16.5,-15.5 @@ -19924,22 +20070,16 @@ entities: - pos: 26.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 1412 components: - pos: 16.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 1493 components: - pos: 14.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 1646 components: - pos: 72.5,-8.5 @@ -19950,15 +20090,11 @@ entities: - pos: 15.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 2039 components: - pos: 14.5,-21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 2172 components: - pos: 13.5,-18.5 @@ -20044,8 +20180,6 @@ entities: - pos: 16.5,-17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3181 components: - pos: 27.5,24.5 @@ -20091,127 +20225,91 @@ entities: - pos: 31.5,71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3775 components: - pos: 16.5,17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3823 components: - pos: 16.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3824 components: - pos: 16.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3825 components: - pos: 16.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3826 components: - pos: 16.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3827 components: - pos: 16.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3828 components: - pos: 16.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3829 components: - pos: 16.5,24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3830 components: - pos: 16.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3832 components: - pos: 8.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3833 components: - pos: 9.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3834 components: - pos: 10.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3835 components: - pos: 11.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3836 components: - pos: 12.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3838 components: - pos: 13.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3839 components: - pos: 14.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3840 components: - pos: 15.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5517 components: - pos: -43.5,-35.5 @@ -20242,50 +20340,36 @@ entities: - pos: -22.5,61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6283 components: - pos: -27.5,61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6319 components: - pos: 16.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6320 components: - pos: 16.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6662 components: - pos: 31.5,66.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6663 components: - pos: 31.5,67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6751 components: - pos: -22.5,57.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6752 components: - pos: -23.5,57.5 @@ -20366,85 +20450,61 @@ entities: - pos: -27.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6768 components: - pos: -26.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6769 components: - pos: -25.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6770 components: - pos: -24.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6771 components: - pos: -23.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6775 components: - pos: -20.5,61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6776 components: - pos: -19.5,61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6777 components: - pos: -21.5,61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6778 components: - pos: -23.5,61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6779 components: - pos: -28.5,61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6925 components: - pos: 19.5,-88.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6926 components: - pos: 21.5,-88.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6927 components: - pos: 22.5,-90.5 @@ -20460,8 +20520,6 @@ entities: - pos: 22.5,-88.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6930 components: - pos: 22.5,-87.5 @@ -20487,8 +20545,6 @@ entities: - pos: 18.5,-88.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6935 components: - pos: 18.5,-87.5 @@ -20559,8 +20615,6 @@ entities: - pos: 13.5,71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 7271 components: - pos: 13.5,72.5 @@ -20596,43 +20650,31 @@ entities: - pos: -63.5,-39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 7398 components: - pos: 17.5,70.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 7399 components: - pos: 16.5,70.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 7400 components: - pos: 15.5,70.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 7405 components: - pos: 14.5,70.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 7406 components: - pos: 13.5,70.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 7573 components: - pos: 86.5,-3.5 @@ -20693,8 +20735,6 @@ entities: - pos: 32.5,71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 7799 components: - pos: 72.5,0.5 @@ -20785,36 +20825,26 @@ entities: - pos: 10.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 8347 components: - pos: 10.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 8388 components: - pos: 9.5,-51.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 8713 components: - pos: -46.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 8768 components: - pos: -46.5,-48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 8769 components: - pos: -46.5,-49.5 @@ -20835,8 +20865,6 @@ entities: - pos: -10.5,-9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10460 components: - pos: -10.5,-8.5 @@ -20912,8 +20940,6 @@ entities: - pos: 28.5,-24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11987 components: - pos: 28.5,-25.5 @@ -21174,8 +21200,6 @@ entities: - pos: 5.5,-43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12103 components: - pos: 5.5,-42.5 @@ -21211,8 +21235,6 @@ entities: - pos: 4.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12110 components: - pos: 3.5,-44.5 @@ -21223,8 +21245,6 @@ entities: - pos: 3.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12112 components: - pos: 2.5,-45.5 @@ -21260,8 +21280,6 @@ entities: - pos: 3.5,-43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12119 components: - pos: 2.5,-43.5 @@ -21297,15 +21315,11 @@ entities: - pos: 3.5,-42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12126 components: - pos: 3.5,-41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12127 components: - pos: 3.5,-40.5 @@ -21436,8 +21450,6 @@ entities: - pos: 12.5,-40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12153 components: - pos: 12.5,-41.5 @@ -21448,15 +21460,11 @@ entities: - pos: 11.5,-41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12155 components: - pos: 11.5,-42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12156 components: - pos: 11.5,-43.5 @@ -21582,8 +21590,6 @@ entities: - pos: 16.5,-40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12181 components: - pos: 16.5,-41.5 @@ -21639,50 +21645,36 @@ entities: - pos: 31.5,56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12507 components: - pos: 31.5,58.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12508 components: - pos: 31.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12737 components: - pos: 31.5,61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12738 components: - pos: 31.5,59.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12739 components: - pos: 31.5,57.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12740 components: - pos: 31.5,55.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12881 components: - pos: 21.5,71.5 @@ -21693,8 +21685,6 @@ entities: - pos: -34.5,-25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14024 components: - pos: 31.5,-35.5 @@ -21775,15 +21765,11 @@ entities: - pos: 1.5,-12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14060 components: - pos: 2.5,-12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14061 components: - pos: 1.5,-13.5 @@ -21924,8 +21910,6 @@ entities: - pos: 9.5,-14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14089 components: - pos: 9.5,-15.5 @@ -22071,99 +22055,71 @@ entities: - pos: 29.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14118 components: - pos: 29.5,-12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14119 components: - pos: 28.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14120 components: - pos: 27.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14121 components: - pos: 26.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14122 components: - pos: 25.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14123 components: - pos: 24.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14124 components: - pos: 23.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14125 components: - pos: 22.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14126 components: - pos: 22.5,-12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14127 components: - pos: 30.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14128 components: - pos: 31.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14129 components: - pos: 31.5,-10.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14130 components: - pos: 31.5,-9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14131 components: - pos: 28.5,27.5 @@ -22179,36 +22135,26 @@ entities: - pos: 31.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14141 components: - pos: 31.5,-7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14142 components: - pos: 31.5,-6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14143 components: - pos: 31.5,-5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14144 components: - pos: 31.5,-4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14146 components: - pos: 29.5,-10.5 @@ -22299,15 +22245,11 @@ entities: - pos: 25.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14296 components: - pos: 24.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14299 components: - pos: 21.5,72.5 @@ -22328,8 +22270,6 @@ entities: - pos: 20.5,-98.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14322 components: - pos: 20.5,-99.5 @@ -22530,8 +22470,6 @@ entities: - pos: 20.5,-101.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14362 components: - pos: 20.5,-102.5 @@ -22597,8 +22535,6 @@ entities: - pos: 29.5,-92.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14422 components: - pos: 30.5,-92.5 @@ -22824,8 +22760,6 @@ entities: - pos: 11.5,-92.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14467 components: - pos: 12.5,-92.5 @@ -22876,8 +22810,6 @@ entities: - pos: 15.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14479 components: - pos: 15.5,-47.5 @@ -22978,8 +22910,6 @@ entities: - pos: 20.5,-58.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14499 components: - pos: 20.5,-59.5 @@ -23025,15 +22955,11 @@ entities: - pos: 19.5,-63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14508 components: - pos: 19.5,-64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14509 components: - pos: 21.5,-62.5 @@ -23044,29 +22970,21 @@ entities: - pos: 21.5,-63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14511 components: - pos: 21.5,-64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14512 components: - pos: 21.5,-65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14513 components: - pos: 19.5,-65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14514 components: - pos: 14.5,-47.5 @@ -23077,15 +22995,11 @@ entities: - pos: 11.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14516 components: - pos: 11.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14517 components: - pos: 10.5,-45.5 @@ -23101,43 +23015,31 @@ entities: - pos: 20.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14569 components: - pos: 21.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14570 components: - pos: 23.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14571 components: - pos: 22.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14572 components: - pos: 23.5,31.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14573 components: - pos: 23.5,32.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14899 components: - pos: -41.5,-40.5 @@ -23198,148 +23100,106 @@ entities: - pos: 20.5,29.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15014 components: - pos: 20.5,28.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15015 components: - pos: 20.5,27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15016 components: - pos: 20.5,26.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15017 components: - pos: 20.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15018 components: - pos: 20.5,24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15019 components: - pos: 20.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15020 components: - pos: 20.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15021 components: - pos: 21.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15022 components: - pos: 22.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15023 components: - pos: 23.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15024 components: - pos: 23.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15025 components: - pos: 23.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15026 components: - pos: 24.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15027 components: - pos: 25.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15028 components: - pos: 26.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15029 components: - pos: 27.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15030 components: - pos: 28.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15031 components: - pos: 27.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15032 components: - pos: 28.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15033 components: - pos: 26.5,31.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15034 components: - pos: 26.5,32.5 @@ -23350,8 +23210,6 @@ entities: - pos: 26.5,33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15036 components: - pos: 26.5,34.5 @@ -23417,36 +23275,26 @@ entities: - pos: 20.5,31.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15049 components: - pos: 20.5,32.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15050 components: - pos: 20.5,33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15051 components: - pos: 20.5,34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15052 components: - pos: 20.5,35.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15053 components: - pos: 20.5,36.5 @@ -23457,8 +23305,6 @@ entities: - pos: 20.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15055 components: - pos: 20.5,38.5 @@ -23469,29 +23315,21 @@ entities: - pos: 20.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15057 components: - pos: 20.5,40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15058 components: - pos: 21.5,40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15060 components: - pos: 23.5,40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15061 components: - pos: 24.5,40.5 @@ -23502,15 +23340,11 @@ entities: - pos: 25.5,40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15063 components: - pos: 26.5,40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15064 components: - pos: 27.5,40.5 @@ -23521,15 +23355,11 @@ entities: - pos: 27.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15067 components: - pos: 27.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15068 components: - pos: 27.5,46.5 @@ -23555,22 +23385,16 @@ entities: - pos: 20.5,41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15074 components: - pos: 20.5,42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15075 components: - pos: 20.5,43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15076 components: - pos: 21.5,43.5 @@ -23581,29 +23405,21 @@ entities: - pos: 44.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15133 components: - pos: 44.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15134 components: - pos: 44.5,13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15135 components: - pos: 44.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15136 components: - pos: 45.5,12.5 @@ -23624,22 +23440,16 @@ entities: - pos: 48.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15140 components: - pos: 48.5,13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15141 components: - pos: 48.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15142 components: - pos: 47.5,14.5 @@ -23690,8 +23500,6 @@ entities: - pos: 46.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15152 components: - pos: 43.5,18.5 @@ -23882,22 +23690,16 @@ entities: - pos: 48.5,29.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15191 components: - pos: 48.5,28.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15192 components: - pos: 48.5,27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15193 components: - pos: 45.5,22.5 @@ -23908,15 +23710,11 @@ entities: - pos: 47.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15195 components: - pos: 48.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15196 components: - pos: 48.5,23.5 @@ -23932,8 +23730,6 @@ entities: - pos: 37.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15199 components: - pos: 37.5,23.5 @@ -23989,8 +23785,6 @@ entities: - pos: 34.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15210 components: - pos: 34.5,29.5 @@ -24006,15 +23800,11 @@ entities: - pos: 34.5,27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15213 components: - pos: 34.5,26.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15214 components: - pos: 34.5,25.5 @@ -24030,8 +23820,6 @@ entities: - pos: 34.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15217 components: - pos: 35.5,23.5 @@ -24217,8 +24005,6 @@ entities: - pos: 41.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15254 components: - pos: 42.5,30.5 @@ -24229,8 +24015,6 @@ entities: - pos: 41.5,29.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15256 components: - pos: 41.5,28.5 @@ -24241,22 +24025,16 @@ entities: - pos: 41.5,27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15258 components: - pos: 41.5,26.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15259 components: - pos: 41.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15260 components: - pos: 41.5,23.5 @@ -24297,8 +24075,6 @@ entities: - pos: -6.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15564 components: - pos: -6.5,2.5 @@ -24709,127 +24485,91 @@ entities: - pos: -6.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15646 components: - pos: -7.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15647 components: - pos: -8.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15648 components: - pos: -9.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15649 components: - pos: -10.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15650 components: - pos: -11.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15651 components: - pos: -12.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15652 components: - pos: -13.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15653 components: - pos: -14.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15654 components: - pos: -15.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15655 components: - pos: -16.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15656 components: - pos: -16.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15657 components: - pos: -16.5,2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15658 components: - pos: -16.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15659 components: - pos: -16.5,0.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15660 components: - pos: -16.5,-0.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15661 components: - pos: -15.5,-0.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15662 components: - pos: -14.5,-0.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15663 components: - pos: -14.5,-1.5 @@ -24895,57 +24635,41 @@ entities: - pos: -10.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15676 components: - pos: -10.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15677 components: - pos: -10.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15678 components: - pos: -10.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15679 components: - pos: -10.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15680 components: - pos: -10.5,10.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15681 components: - pos: -10.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15719 components: - pos: -6.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15720 components: - pos: -7.5,14.5 @@ -24956,71 +24680,51 @@ entities: - pos: -8.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15722 components: - pos: -9.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15723 components: - pos: -8.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15724 components: - pos: -8.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15725 components: - pos: -8.5,17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15726 components: - pos: -8.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15727 components: - pos: -8.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15728 components: - pos: -7.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15729 components: - pos: -6.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15730 components: - pos: -5.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15731 components: - pos: -5.5,18.5 @@ -25091,869 +24795,621 @@ entities: - pos: -5.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15745 components: - pos: -4.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15746 components: - pos: -3.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15747 components: - pos: -2.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15748 components: - pos: -1.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15749 components: - pos: -0.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15750 components: - pos: 0.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15751 components: - pos: 1.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15752 components: - pos: 2.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15753 components: - pos: 3.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15754 components: - pos: 4.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15755 components: - pos: 5.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15756 components: - pos: -4.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15757 components: - pos: -1.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15758 components: - pos: -1.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15759 components: - pos: -1.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15760 components: - pos: -1.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15761 components: - pos: -1.5,2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15762 components: - pos: -1.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15763 components: - pos: -0.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15764 components: - pos: 0.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15765 components: - pos: 1.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15766 components: - pos: 2.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15767 components: - pos: 3.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15768 components: - pos: 4.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15769 components: - pos: 5.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15770 components: - pos: 6.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15771 components: - pos: 4.5,2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15772 components: - pos: 4.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15773 components: - pos: 4.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15774 components: - pos: 4.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15775 components: - pos: 4.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15776 components: - pos: 1.5,2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15777 components: - pos: 7.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15778 components: - pos: 7.5,2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15779 components: - pos: -3.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15780 components: - pos: -2.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15781 components: - pos: -1.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15782 components: - pos: -0.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15783 components: - pos: 0.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15784 components: - pos: 1.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15785 components: - pos: 2.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15786 components: - pos: 3.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15787 components: - pos: 4.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15788 components: - pos: 5.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15789 components: - pos: 6.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15790 components: - pos: -4.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15791 components: - pos: -3.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15792 components: - pos: -2.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15793 components: - pos: -1.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15794 components: - pos: -0.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15795 components: - pos: 0.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15796 components: - pos: 1.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15797 components: - pos: 2.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15798 components: - pos: 3.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15799 components: - pos: 4.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15800 components: - pos: 5.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15801 components: - pos: 6.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15802 components: - pos: -1.5,17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15803 components: - pos: -1.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15804 components: - pos: -0.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15805 components: - pos: 0.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15806 components: - pos: 1.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15807 components: - pos: 2.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15808 components: - pos: 3.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15809 components: - pos: 4.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15810 components: - pos: 5.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15811 components: - pos: 6.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15812 components: - pos: -1.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15813 components: - pos: -1.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15814 components: - pos: -1.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15815 components: - pos: -1.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15816 components: - pos: -1.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15817 components: - pos: -1.5,24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15818 components: - pos: -1.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15819 components: - pos: -0.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15820 components: - pos: 0.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15821 components: - pos: 1.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15822 components: - pos: 2.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15823 components: - pos: 3.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15824 components: - pos: 4.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15825 components: - pos: 5.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15826 components: - pos: 6.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15827 components: - pos: -0.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15828 components: - pos: 0.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15829 components: - pos: 1.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15830 components: - pos: 2.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15831 components: - pos: 3.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15832 components: - pos: 4.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15833 components: - pos: 5.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15834 components: - pos: 6.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15835 components: - pos: 8.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15836 components: - pos: 9.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15837 components: - pos: 10.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15838 components: - pos: 11.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15839 components: - pos: 12.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15840 components: - pos: 13.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15841 components: - pos: 14.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15842 components: - pos: 15.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15843 components: - pos: 16.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15844 components: - pos: 16.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15845 components: - pos: 16.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15846 components: - pos: 16.5,24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15847 components: - pos: 16.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15848 components: - pos: 15.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15849 components: - pos: 14.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15850 components: - pos: 13.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15851 components: - pos: 12.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15852 components: - pos: 11.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15853 components: - pos: 10.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15854 components: - pos: 9.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15855 components: - pos: 8.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15856 components: - pos: 8.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15857 components: - pos: 9.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15858 components: - pos: 10.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15859 components: - pos: 11.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15860 components: - pos: 12.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15861 components: - pos: 13.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15862 components: - pos: 14.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15863 components: - pos: 15.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15864 components: - pos: 16.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15865 components: - pos: 17.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15866 components: - pos: 18.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15867 components: - pos: 19.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15868 components: - pos: 20.5,12.5 @@ -25974,85 +25430,61 @@ entities: - pos: 8.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15872 components: - pos: 9.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15873 components: - pos: 10.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15874 components: - pos: 11.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15875 components: - pos: 12.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15876 components: - pos: 13.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15877 components: - pos: 14.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15878 components: - pos: 15.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15879 components: - pos: 16.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15880 components: - pos: 17.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15881 components: - pos: 18.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15882 components: - pos: 19.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15883 components: - pos: 20.5,16.5 @@ -26093,57 +25525,41 @@ entities: - pos: -5.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15891 components: - pos: -5.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15892 components: - pos: -5.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15893 components: - pos: -5.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15894 components: - pos: -5.5,24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15895 components: - pos: -5.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15896 components: - pos: -5.5,26.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15897 components: - pos: -5.5,27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15898 components: - pos: -6.5,22.5 @@ -26154,22 +25570,16 @@ entities: - pos: -7.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15900 components: - pos: -8.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15904 components: - pos: 23.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15905 components: - pos: 24.5,15.5 @@ -26275,8 +25685,6 @@ entities: - pos: 28.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15929 components: - pos: 28.5,4.5 @@ -26302,15 +25710,11 @@ entities: - pos: 25.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15934 components: - pos: 24.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15935 components: - pos: 24.5,2.5 @@ -26406,64 +25810,46 @@ entities: - pos: 23.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15954 components: - pos: 22.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15955 components: - pos: 21.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15956 components: - pos: 20.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15957 components: - pos: 19.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15958 components: - pos: 19.5,2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15959 components: - pos: 19.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15960 components: - pos: 19.5,0.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15961 components: - pos: 19.5,-0.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15962 components: - pos: 19.5,-1.5 @@ -26719,22 +26105,16 @@ entities: - pos: 20.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16053 components: - pos: 20.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16055 components: - pos: 0.5,40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16056 components: - pos: 0.5,39.5 @@ -26785,8 +26165,6 @@ entities: - pos: -2.5,35.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16066 components: - pos: -3.5,35.5 @@ -26887,8 +26265,6 @@ entities: - pos: 2.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16087 components: - pos: -3.5,33.5 @@ -26964,64 +26340,46 @@ entities: - pos: 6.5,33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16102 components: - pos: 6.5,34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16103 components: - pos: 6.5,35.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16104 components: - pos: 6.5,36.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16105 components: - pos: 6.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16106 components: - pos: 6.5,38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16107 components: - pos: 6.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16108 components: - pos: 6.5,40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16109 components: - pos: 6.5,41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16110 components: - pos: 5.5,34.5 @@ -27037,15 +26395,11 @@ entities: - pos: 3.5,34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16113 components: - pos: 5.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16114 components: - pos: 4.5,39.5 @@ -27071,43 +26425,31 @@ entities: - pos: 5.5,41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16119 components: - pos: 5.5,42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16120 components: - pos: 5.5,43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16121 components: - pos: 5.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16122 components: - pos: 5.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16123 components: - pos: 5.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16124 components: - pos: 4.5,46.5 @@ -27118,8 +26460,6 @@ entities: - pos: 3.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16126 components: - pos: 6.5,46.5 @@ -27140,78 +26480,56 @@ entities: - pos: 7.5,41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16130 components: - pos: 8.5,41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16131 components: - pos: 9.5,41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16132 components: - pos: 10.5,41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16133 components: - pos: 11.5,41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16134 components: - pos: 11.5,42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16135 components: - pos: 11.5,43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16136 components: - pos: 11.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16137 components: - pos: 11.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16138 components: - pos: 10.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16139 components: - pos: 9.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16140 components: - pos: 9.5,40.5 @@ -27322,43 +26640,31 @@ entities: - pos: 12.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16162 components: - pos: 13.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16163 components: - pos: 14.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16164 components: - pos: 15.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16165 components: - pos: 16.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16188 components: - pos: -8.5,48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16189 components: - pos: -9.5,48.5 @@ -27889,8 +27195,6 @@ entities: - pos: -22.5,40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16316 components: - pos: -22.5,39.5 @@ -27981,22 +27285,16 @@ entities: - pos: -22.5,42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16334 components: - pos: -22.5,43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16335 components: - pos: -22.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16336 components: - pos: -22.5,45.5 @@ -28037,22 +27335,16 @@ entities: - pos: -28.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16344 components: - pos: -28.5,43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16345 components: - pos: -28.5,42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16346 components: - pos: -28.5,41.5 @@ -28238,155 +27530,111 @@ entities: - pos: -29.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16383 components: - pos: -30.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16384 components: - pos: -30.5,38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16385 components: - pos: -30.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16386 components: - pos: -30.5,40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16387 components: - pos: -30.5,41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16388 components: - pos: -30.5,42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16389 components: - pos: -30.5,43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16390 components: - pos: -30.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16391 components: - pos: -30.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16392 components: - pos: -30.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16393 components: - pos: -30.5,47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16394 components: - pos: -30.5,48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16395 components: - pos: -30.5,49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16396 components: - pos: -30.5,50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16397 components: - pos: -31.5,50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16398 components: - pos: -31.5,42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16399 components: - pos: -30.5,36.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16400 components: - pos: -30.5,35.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16401 components: - pos: -30.5,34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16402 components: - pos: -31.5,34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16403 components: - pos: -31.5,33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16404 components: - pos: -31.5,32.5 @@ -28517,36 +27765,26 @@ entities: - pos: -29.5,34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16431 components: - pos: -28.5,34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16432 components: - pos: -27.5,34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16503 components: - pos: -35.5,26.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16504 components: - pos: -34.5,26.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16505 components: - pos: -33.5,26.5 @@ -28557,8 +27795,6 @@ entities: - pos: -32.5,26.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16507 components: - pos: -31.5,26.5 @@ -28714,8 +27950,6 @@ entities: - pos: -34.5,27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16538 components: - pos: -34.5,28.5 @@ -28726,260 +27960,186 @@ entities: - pos: -34.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16540 components: - pos: -34.5,24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16541 components: - pos: -34.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16542 components: - pos: -35.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16543 components: - pos: -36.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16544 components: - pos: -37.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16545 components: - pos: -38.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16546 components: - pos: -39.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16547 components: - pos: -40.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16548 components: - pos: -41.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16549 components: - pos: -42.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16550 components: - pos: -43.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16551 components: - pos: -44.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16552 components: - pos: -45.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16553 components: - pos: -46.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16554 components: - pos: -47.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16555 components: - pos: -47.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16556 components: - pos: -47.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16557 components: - pos: -47.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16558 components: - pos: -47.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16559 components: - pos: -47.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16560 components: - pos: -47.5,17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16561 components: - pos: -47.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16562 components: - pos: -47.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16563 components: - pos: -47.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16564 components: - pos: -48.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16565 components: - pos: -48.5,13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16566 components: - pos: -48.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16567 components: - pos: -48.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16568 components: - pos: -48.5,10.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16569 components: - pos: -48.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16570 components: - pos: -48.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16571 components: - pos: -48.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16572 components: - pos: -46.5,24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16573 components: - pos: -46.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16574 components: - pos: -46.5,26.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16575 components: - pos: -46.5,27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16576 components: - pos: -46.5,28.5 @@ -29440,8 +28600,6 @@ entities: - pos: -11.5,13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16674 components: - pos: -13.5,13.5 @@ -29507,22 +28665,16 @@ entities: - pos: -18.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16687 components: - pos: -17.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16688 components: - pos: -16.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16689 components: - pos: -17.5,14.5 @@ -29723,8 +28875,6 @@ entities: - pos: -19.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16733 components: - pos: -21.5,5.5 @@ -29920,169 +29070,121 @@ entities: - pos: -25.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16772 components: - pos: -26.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16773 components: - pos: -27.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16774 components: - pos: -28.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16775 components: - pos: -29.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16776 components: - pos: -30.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16777 components: - pos: -31.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16778 components: - pos: -31.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16779 components: - pos: -32.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16780 components: - pos: -33.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16781 components: - pos: -34.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16782 components: - pos: -35.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16783 components: - pos: -36.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16784 components: - pos: -37.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16785 components: - pos: -38.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16786 components: - pos: -39.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16787 components: - pos: -40.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16788 components: - pos: -41.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16789 components: - pos: -42.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16790 components: - pos: -43.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16791 components: - pos: -44.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16792 components: - pos: -45.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16793 components: - pos: -45.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16794 components: - pos: -45.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16795 components: - pos: -45.5,5.5 @@ -30283,8 +29385,6 @@ entities: - pos: -2.5,56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16836 components: - pos: -1.5,56.5 @@ -30495,8 +29595,6 @@ entities: - pos: 21.5,68.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16925 components: - pos: 21.5,69.5 @@ -30647,8 +29745,6 @@ entities: - pos: 31.5,68.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17006 components: - pos: 31.5,69.5 @@ -30659,8 +29755,6 @@ entities: - pos: 31.5,70.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17008 components: - pos: 20.5,67.5 @@ -30751,8 +29845,6 @@ entities: - pos: 17.5,57.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17026 components: - pos: 16.5,57.5 @@ -31183,50 +30275,36 @@ entities: - pos: 31.5,52.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17115 components: - pos: 31.5,53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17116 components: - pos: 31.5,54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17124 components: - pos: 31.5,62.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17125 components: - pos: 31.5,63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17126 components: - pos: 31.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17127 components: - pos: 31.5,65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17134 components: - pos: 41.5,34.5 @@ -31432,148 +30510,106 @@ entities: - pos: 34.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17175 components: - pos: 35.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17176 components: - pos: 36.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17177 components: - pos: 37.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17178 components: - pos: 38.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17179 components: - pos: 39.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17180 components: - pos: 39.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17181 components: - pos: 39.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17182 components: - pos: 39.5,43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17183 components: - pos: 39.5,42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17184 components: - pos: 39.5,41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17185 components: - pos: 39.5,40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17186 components: - pos: 39.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17187 components: - pos: 39.5,38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17188 components: - pos: 39.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17189 components: - pos: 40.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17190 components: - pos: 41.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17191 components: - pos: 42.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17192 components: - pos: 43.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17193 components: - pos: 44.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17194 components: - pos: 45.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17195 components: - pos: 45.5,38.5 @@ -31614,8 +30650,6 @@ entities: - pos: 41.5,35.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17203 components: - pos: 45.5,34.5 @@ -31776,358 +30810,256 @@ entities: - pos: 48.5,33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17235 components: - pos: 49.5,33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17236 components: - pos: 50.5,33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17237 components: - pos: 50.5,34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17238 components: - pos: 50.5,35.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17239 components: - pos: 50.5,36.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17240 components: - pos: 50.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17241 components: - pos: 51.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17242 components: - pos: 52.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17243 components: - pos: 53.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17244 components: - pos: 54.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17245 components: - pos: 55.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17246 components: - pos: 56.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17247 components: - pos: 46.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17248 components: - pos: 47.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17249 components: - pos: 47.5,40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17250 components: - pos: 47.5,41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17251 components: - pos: 47.5,42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17252 components: - pos: 47.5,43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17253 components: - pos: 47.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17254 components: - pos: 47.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17255 components: - pos: 47.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17256 components: - pos: 47.5,47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17257 components: - pos: 47.5,48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17258 components: - pos: 47.5,49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17259 components: - pos: 47.5,50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17260 components: - pos: 46.5,50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17261 components: - pos: 45.5,50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17262 components: - pos: 44.5,50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17263 components: - pos: 43.5,50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17264 components: - pos: 42.5,50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17265 components: - pos: 41.5,50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17266 components: - pos: 40.5,50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17267 components: - pos: 40.5,49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17268 components: - pos: 40.5,48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17269 components: - pos: 40.5,47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17270 components: - pos: 40.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17271 components: - pos: 45.5,51.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17272 components: - pos: 45.5,52.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17273 components: - pos: 45.5,53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17274 components: - pos: 45.5,54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17275 components: - pos: 43.5,51.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17276 components: - pos: 43.5,52.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17277 components: - pos: 43.5,53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17278 components: - pos: 43.5,54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17279 components: - pos: 43.5,55.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17280 components: - pos: 40.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17282 components: - pos: 42.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17283 components: - pos: 43.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17284 components: - pos: 43.5,43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17285 components: - pos: 43.5,42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17286 components: - pos: 42.5,11.5 @@ -32138,183 +31070,131 @@ entities: - pos: 42.5,10.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17288 components: - pos: 42.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17289 components: - pos: 41.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17290 components: - pos: 41.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17291 components: - pos: 40.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17292 components: - pos: 39.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17293 components: - pos: 38.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17294 components: - pos: 37.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17295 components: - pos: 36.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17298 components: - pos: 43.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17299 components: - pos: 44.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17300 components: - pos: 45.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17301 components: - pos: 46.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17302 components: - pos: 47.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17303 components: - pos: 48.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17304 components: - pos: 49.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17305 components: - pos: 50.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17306 components: - pos: 51.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17307 components: - pos: 52.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17308 components: - pos: 53.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17309 components: - pos: 54.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17310 components: - pos: 54.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17311 components: - pos: 54.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17312 components: - pos: 55.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17313 components: - pos: 56.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17372 components: - pos: 79.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17373 components: - pos: 79.5,2.5 @@ -32775,8 +31655,6 @@ entities: - pos: 52.5,-50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17568 components: - pos: 53.5,-48.5 @@ -32787,8 +31665,6 @@ entities: - pos: 54.5,-48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17570 components: - pos: 52.5,-45.5 @@ -32804,8 +31680,6 @@ entities: - pos: 54.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17573 components: - pos: 52.5,-41.5 @@ -32851,15 +31725,11 @@ entities: - pos: 60.5,-41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17582 components: - pos: 60.5,-40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17583 components: - pos: 57.5,-42.5 @@ -32870,22 +31740,16 @@ entities: - pos: 57.5,-43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17585 components: - pos: 56.5,-43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17586 components: - pos: 58.5,-43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17587 components: - pos: 58.5,-40.5 @@ -32926,8 +31790,6 @@ entities: - pos: 53.5,-35.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17595 components: - pos: 55.5,-35.5 @@ -32938,71 +31800,51 @@ entities: - pos: 55.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17597 components: - pos: 55.5,-33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17598 components: - pos: 55.5,-32.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17599 components: - pos: 55.5,-31.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17600 components: - pos: 55.5,-30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17601 components: - pos: 55.5,-25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17602 components: - pos: 55.5,-24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17603 components: - pos: 55.5,-23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17604 components: - pos: 55.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17605 components: - pos: 55.5,-21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17606 components: - pos: 55.5,-20.5 @@ -33028,8 +31870,6 @@ entities: - pos: 57.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17715 components: - pos: 54.5,-37.5 @@ -33085,8 +31925,6 @@ entities: - pos: 44.5,-40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17726 components: - pos: 43.5,-42.5 @@ -33097,8 +31935,6 @@ entities: - pos: 42.5,-42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17728 components: - pos: 46.5,-41.5 @@ -33109,22 +31945,16 @@ entities: - pos: 46.5,-40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17730 components: - pos: 47.5,-40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17731 components: - pos: 48.5,-40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17732 components: - pos: 48.5,-41.5 @@ -33170,15 +32000,11 @@ entities: - pos: 42.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17741 components: - pos: 42.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17742 components: - pos: 44.5,-47.5 @@ -33199,8 +32025,6 @@ entities: - pos: 44.5,-50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17746 components: - pos: 43.5,-48.5 @@ -33211,8 +32035,6 @@ entities: - pos: 42.5,-48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17748 components: - pos: 47.5,-46.5 @@ -33243,8 +32065,6 @@ entities: - pos: 48.5,-50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17754 components: - pos: 49.5,-46.5 @@ -33400,15 +32220,11 @@ entities: - pos: 59.5,-14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17816 components: - pos: 59.5,-15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17817 components: - pos: 60.5,-14.5 @@ -33449,22 +32265,16 @@ entities: - pos: 57.5,-7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17826 components: - pos: 57.5,-6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17828 components: - pos: 57.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17829 components: - pos: 57.5,-9.5 @@ -33475,106 +32285,76 @@ entities: - pos: 57.5,-10.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17831 components: - pos: 57.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17832 components: - pos: 58.5,-6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17833 components: - pos: 59.5,-6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17834 components: - pos: 60.5,-6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17835 components: - pos: 61.5,-6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17836 components: - pos: 62.5,-6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17837 components: - pos: 63.5,-6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17838 components: - pos: 63.5,-7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17839 components: - pos: 63.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17840 components: - pos: 63.5,-9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17841 components: - pos: 63.5,-10.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17842 components: - pos: 63.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17843 components: - pos: 63.5,-12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17844 components: - pos: 62.5,-12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17845 components: - pos: 57.5,-5.5 @@ -33625,22 +32405,16 @@ entities: - pos: 59.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17855 components: - pos: 60.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17856 components: - pos: 61.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17857 components: - pos: 61.5,0.5 @@ -33906,8 +32680,6 @@ entities: - pos: 34.5,-5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17918 components: - pos: 35.5,-5.5 @@ -34123,8 +32895,6 @@ entities: - pos: 40.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17961 components: - pos: 40.5,0.5 @@ -34175,15 +32945,11 @@ entities: - pos: 43.5,-1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17971 components: - pos: 47.5,-1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17972 components: - pos: 40.5,-0.5 @@ -34194,8 +32960,6 @@ entities: - pos: 40.5,-1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17974 components: - pos: 40.5,-2.5 @@ -34516,8 +33280,6 @@ entities: - pos: 38.5,-10.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18041 components: - pos: 38.5,-9.5 @@ -34538,29 +33300,21 @@ entities: - pos: 38.5,-6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18045 components: - pos: 43.5,-9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18046 components: - pos: 43.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18047 components: - pos: 43.5,-7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18048 components: - pos: 42.5,-8.5 @@ -35226,15 +33980,11 @@ entities: - pos: -13.5,-31.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18232 components: - pos: -12.5,-31.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18233 components: - pos: -11.5,-31.5 @@ -35680,134 +34430,96 @@ entities: - pos: 3.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18328 components: - pos: 3.5,-48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18329 components: - pos: 3.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18330 components: - pos: 2.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18331 components: - pos: 1.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18332 components: - pos: 0.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18333 components: - pos: -0.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18334 components: - pos: -1.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18335 components: - pos: -2.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18336 components: - pos: -2.5,-50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18337 components: - pos: 3.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18338 components: - pos: 4.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18339 components: - pos: 5.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18340 components: - pos: 6.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18341 components: - pos: 6.5,-48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18342 components: - pos: 6.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18343 components: - pos: 7.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18344 components: - pos: 8.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18345 components: - pos: 9.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18346 components: - pos: -7.5,-45.5 @@ -35818,85 +34530,61 @@ entities: - pos: -8.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18348 components: - pos: -9.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18349 components: - pos: -10.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18350 components: - pos: -11.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18351 components: - pos: -12.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18352 components: - pos: -13.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18353 components: - pos: -14.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18354 components: - pos: -15.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18355 components: - pos: -16.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18356 components: - pos: -16.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18357 components: - pos: -17.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18358 components: - pos: -18.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18359 components: - pos: -18.5,-45.5 @@ -36207,8 +34895,6 @@ entities: - pos: -28.5,-33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18459 components: - pos: -24.5,-36.5 @@ -36274,64 +34960,46 @@ entities: - pos: -23.5,-41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18472 components: - pos: -23.5,-42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18473 components: - pos: -23.5,-43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18474 components: - pos: -23.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18475 components: - pos: -22.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18476 components: - pos: -21.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18477 components: - pos: -22.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18478 components: - pos: -22.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18479 components: - pos: -23.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18495 components: - pos: -33.5,-25.5 @@ -36492,8 +35160,6 @@ entities: - pos: -40.5,-36.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18540 components: - pos: -39.5,-36.5 @@ -36724,141 +35390,101 @@ entities: - pos: -27.5,-43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18601 components: - pos: -26.5,-43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18602 components: - pos: -27.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18603 components: - pos: -27.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18604 components: - pos: -27.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18605 components: - pos: -28.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18606 components: - pos: -29.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18607 components: - pos: -30.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18608 components: - pos: -31.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18609 components: - pos: -32.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18610 components: - pos: -33.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18611 components: - pos: -34.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18612 components: - pos: -35.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18613 components: - pos: -36.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18614 components: - pos: -37.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18619 components: - pos: -38.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18620 components: - pos: -39.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18621 components: - pos: -40.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18622 components: - pos: -41.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18623 components: - pos: -41.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18624 components: - pos: -41.5,-48.5 @@ -36869,155 +35495,111 @@ entities: - pos: -41.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18626 components: - pos: -41.5,-50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18627 components: - pos: -41.5,-51.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18628 components: - pos: -41.5,-52.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18629 components: - pos: -42.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18630 components: - pos: -43.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18631 components: - pos: -44.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18632 components: - pos: -45.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18633 components: - pos: -45.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18634 components: - pos: -45.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18635 components: - pos: -45.5,-43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18636 components: - pos: -45.5,-42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18637 components: - pos: -45.5,-41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18638 components: - pos: -45.5,-40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18639 components: - pos: -46.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18640 components: - pos: -47.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18641 components: - pos: -48.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18642 components: - pos: -49.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18643 components: - pos: -50.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18644 components: - pos: -51.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18645 components: - pos: -52.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18663 components: - pos: -43.5,-23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18664 components: - pos: -43.5,-24.5 @@ -37213,29 +35795,21 @@ entities: - pos: -55.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18717 components: - pos: -54.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18718 components: - pos: -53.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18719 components: - pos: -52.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18720 components: - pos: -51.5,-22.5 @@ -37271,8 +35845,6 @@ entities: - pos: -53.5,-32.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18727 components: - pos: -50.5,-33.5 @@ -37328,50 +35900,36 @@ entities: - pos: -53.5,-38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18745 components: - pos: -54.5,-38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18746 components: - pos: -54.5,-37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18747 components: - pos: -54.5,-36.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18748 components: - pos: -54.5,-35.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18749 components: - pos: -54.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18750 components: - pos: -55.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18751 components: - pos: -55.5,-33.5 @@ -37382,43 +35940,31 @@ entities: - pos: -56.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18753 components: - pos: -57.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18754 components: - pos: -58.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18755 components: - pos: -59.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18756 components: - pos: -60.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18757 components: - pos: -60.5,-35.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18758 components: - pos: -61.5,-35.5 @@ -37444,71 +35990,51 @@ entities: - pos: -59.5,-33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18763 components: - pos: -59.5,-32.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18764 components: - pos: -59.5,-31.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18765 components: - pos: -59.5,-30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18766 components: - pos: -59.5,-29.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18767 components: - pos: -59.5,-28.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18768 components: - pos: -59.5,-27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18769 components: - pos: -59.5,-26.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18770 components: - pos: -59.5,-25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18771 components: - pos: -60.5,-25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18772 components: - pos: -61.5,-25.5 @@ -37519,71 +36045,51 @@ entities: - pos: -62.5,-25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18774 components: - pos: -63.5,-25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18775 components: - pos: -64.5,-25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18776 components: - pos: -65.5,-25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18777 components: - pos: -56.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18778 components: - pos: -57.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18779 components: - pos: -58.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18780 components: - pos: -59.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18781 components: - pos: -59.5,-23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18782 components: - pos: -59.5,-24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18783 components: - pos: -49.5,11.5 @@ -37594,43 +36100,31 @@ entities: - pos: -50.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18785 components: - pos: -51.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18786 components: - pos: -51.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18787 components: - pos: -52.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18788 components: - pos: -53.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18789 components: - pos: -54.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18796 components: - pos: -48.5,-31.5 @@ -37681,225 +36175,161 @@ entities: - pos: 40.5,53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19026 components: - pos: 39.5,53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19027 components: - pos: 38.5,53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19028 components: - pos: 37.5,53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19029 components: - pos: 36.5,53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19030 components: - pos: 36.5,54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19031 components: - pos: 36.5,55.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19032 components: - pos: 36.5,56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19033 components: - pos: 40.5,54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19034 components: - pos: 40.5,55.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19035 components: - pos: 40.5,56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19344 components: - pos: 9.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19345 components: - pos: 10.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19346 components: - pos: 10.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19347 components: - pos: 10.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19348 components: - pos: 10.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19349 components: - pos: 10.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19350 components: - pos: 10.5,2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19351 components: - pos: 10.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19352 components: - pos: 8.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19353 components: - pos: 7.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19354 components: - pos: 7.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19355 components: - pos: 11.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19356 components: - pos: 12.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19357 components: - pos: 13.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19358 components: - pos: 14.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19359 components: - pos: 15.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19360 components: - pos: 16.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19361 components: - pos: 17.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19362 components: - pos: 18.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19363 components: - pos: 19.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19364 components: - pos: 20.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19365 components: - pos: 21.5,7.5 @@ -37995,22 +36425,16 @@ entities: - pos: -20.5,57.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19384 components: - pos: -20.5,58.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19385 components: - pos: -20.5,59.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19413 components: - pos: 23.5,-35.5 @@ -38021,8 +36445,6 @@ entities: - pos: -15.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19456 components: - pos: -16.5,-16.5 @@ -38123,8 +36545,6 @@ entities: - pos: -26.5,-15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19476 components: - pos: -26.5,-14.5 @@ -38140,8 +36560,6 @@ entities: - pos: -26.5,-12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19479 components: - pos: -26.5,-11.5 @@ -38397,78 +36815,56 @@ entities: - pos: -14.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19531 components: - pos: -14.5,-15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19532 components: - pos: -14.5,-14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19533 components: - pos: -14.5,-13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19534 components: - pos: -14.5,-17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19535 components: - pos: -14.5,-18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19536 components: - pos: -14.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19537 components: - pos: -13.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19538 components: - pos: -12.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19539 components: - pos: -11.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19540 components: - pos: -10.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19541 components: - pos: -13.5,-17.5 @@ -38489,50 +36885,36 @@ entities: - pos: -10.5,-17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19545 components: - pos: -10.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19546 components: - pos: -9.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19547 components: - pos: -8.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19548 components: - pos: -8.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19549 components: - pos: -7.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19550 components: - pos: -6.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19551 components: - pos: -5.5,-16.5 @@ -38708,71 +37090,51 @@ entities: - pos: -10.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19586 components: - pos: -10.5,-21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19587 components: - pos: -10.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19588 components: - pos: -11.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19589 components: - pos: -12.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19590 components: - pos: -13.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19591 components: - pos: -14.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19592 components: - pos: -15.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19593 components: - pos: -16.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19594 components: - pos: -17.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19595 components: - pos: -20.5,-5.5 @@ -38828,15 +37190,11 @@ entities: - pos: -24.5,-5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19608 components: - pos: -34.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19609 components: - pos: -34.5,-17.5 @@ -38932,8 +37290,6 @@ entities: - pos: -34.5,-24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19628 components: - pos: -34.5,-23.5 @@ -38979,8 +37335,6 @@ entities: - pos: -32.5,-9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19637 components: - pos: -32.5,-10.5 @@ -39036,8 +37390,6 @@ entities: - pos: -39.5,-12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19648 components: - pos: -40.5,-12.5 @@ -39073,141 +37425,101 @@ entities: - pos: -44.5,-13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19655 components: - pos: -44.5,-12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19656 components: - pos: -44.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19657 components: - pos: -45.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19658 components: - pos: -46.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19659 components: - pos: -47.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19660 components: - pos: -47.5,-10.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19661 components: - pos: -47.5,-9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19662 components: - pos: -47.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19663 components: - pos: -47.5,-7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19664 components: - pos: -47.5,-6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19665 components: - pos: -47.5,-5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19666 components: - pos: -47.5,-4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19667 components: - pos: -47.5,-3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19668 components: - pos: -47.5,-2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19669 components: - pos: -48.5,-2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19670 components: - pos: -48.5,-1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19671 components: - pos: -48.5,-0.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19672 components: - pos: -48.5,0.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19673 components: - pos: -48.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19674 components: - pos: -49.5,1.5 @@ -39253,260 +37565,186 @@ entities: - pos: -48.5,-5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19683 components: - pos: -49.5,-5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19684 components: - pos: -50.5,-5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19685 components: - pos: -51.5,-5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19686 components: - pos: -52.5,-5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19687 components: - pos: -53.5,-5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19688 components: - pos: -54.5,-5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19689 components: - pos: -54.5,-6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19690 components: - pos: -54.5,-7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19691 components: - pos: -54.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19692 components: - pos: -54.5,-9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19693 components: - pos: -54.5,-10.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19694 components: - pos: -54.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19695 components: - pos: -54.5,-12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19696 components: - pos: -54.5,-13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19697 components: - pos: -54.5,-14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19698 components: - pos: -54.5,-15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19699 components: - pos: -54.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19700 components: - pos: -54.5,-17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19701 components: - pos: -54.5,-18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19702 components: - pos: -54.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19703 components: - pos: -53.5,-18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19704 components: - pos: -52.5,-18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19705 components: - pos: -52.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19706 components: - pos: -51.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19707 components: - pos: -50.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19708 components: - pos: -49.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19709 components: - pos: -48.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19710 components: - pos: -47.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19711 components: - pos: -46.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19712 components: - pos: -45.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19713 components: - pos: -44.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19714 components: - pos: -44.5,-18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19715 components: - pos: -44.5,-17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19716 components: - pos: -44.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19717 components: - pos: -44.5,-15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19718 components: - pos: -44.5,-14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19719 components: - pos: -42.5,-11.5 @@ -39547,36 +37785,26 @@ entities: - pos: -45.5,-10.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19727 components: - pos: -45.5,-9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19728 components: - pos: -45.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19729 components: - pos: -45.5,-7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19730 components: - pos: -45.5,-6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19731 components: - pos: -33.5,-8.5 @@ -39597,8 +37825,6 @@ entities: - pos: -33.5,-5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19735 components: - pos: -33.5,-4.5 @@ -39674,15 +37900,11 @@ entities: - pos: -34.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19750 components: - pos: -35.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19751 components: - pos: -36.5,-8.5 @@ -39693,8 +37915,6 @@ entities: - pos: -37.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19753 components: - pos: -38.5,-8.5 @@ -39705,8 +37925,6 @@ entities: - pos: -39.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19755 components: - pos: -40.5,-8.5 @@ -39847,8 +38065,6 @@ entities: - pos: -54.5,38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20273 components: - pos: -56.5,47.5 @@ -39864,8 +38080,6 @@ entities: - pos: -54.5,47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20669 components: - pos: 21.5,-83.5 @@ -39876,22 +38090,16 @@ entities: - pos: -43.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21498 components: - pos: -46.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21499 components: - pos: -45.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21718 components: - pos: 14.5,50.5 @@ -39907,8 +38115,6 @@ entities: - pos: 1.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21942 components: - pos: 10.5,38.5 @@ -39929,8 +38135,6 @@ entities: - pos: 16.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22007 components: - pos: -64.5,-35.5 @@ -39941,169 +38145,121 @@ entities: - pos: -65.5,-35.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22009 components: - pos: -65.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22010 components: - pos: -65.5,-33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22013 components: - pos: -59.5,-40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22014 components: - pos: -58.5,-40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22015 components: - pos: -57.5,-40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22021 components: - pos: -62.5,-40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22022 components: - pos: -62.5,-41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22023 components: - pos: -62.5,-42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22063 components: - pos: 16.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22064 components: - pos: 16.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22065 components: - pos: 16.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22066 components: - pos: 16.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22067 components: - pos: 16.5,2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22068 components: - pos: 16.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22069 components: - pos: 15.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22070 components: - pos: 14.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22071 components: - pos: 13.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22072 components: - pos: 12.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22073 components: - pos: 11.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22074 components: - pos: 10.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22075 components: - pos: 13.5,2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22363 components: - pos: 10.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22364 components: - pos: -14.5,-31.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22365 components: - pos: -14.5,-32.5 @@ -40124,57 +38280,41 @@ entities: - pos: 15.5,-18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22704 components: - pos: 16.5,-18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22740 components: - pos: -36.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22822 components: - pos: -31.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22823 components: - pos: -32.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22824 components: - pos: -33.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22825 components: - pos: -34.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22826 components: - pos: -35.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22887 components: - pos: 66.5,-20.5 @@ -40295,8 +38435,6 @@ entities: - pos: -4.5,-63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 23033 components: - pos: 24.5,79.5 @@ -40327,15 +38465,11 @@ entities: - pos: -6.5,-63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 23042 components: - pos: -6.5,-64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 23043 components: - pos: -4.5,-61.5 @@ -40346,8 +38480,6 @@ entities: - pos: -4.5,-64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 23487 components: - pos: 0.5,-15.5 @@ -40358,78 +38490,56 @@ entities: - pos: -0.5,-15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 23489 components: - pos: -1.5,-15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 23490 components: - pos: -1.5,-14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 23491 components: - pos: -1.5,-13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 23492 components: - pos: -1.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 23728 components: - pos: -1.5,-17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 23734 components: - pos: -1.5,-18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 24127 components: - pos: -56.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 24128 components: - pos: -55.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 24130 components: - pos: -1.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 24212 components: - pos: -1.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 24482 components: - pos: -54.5,-2.5 @@ -40460,22 +38570,16 @@ entities: - pos: -0.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 24798 components: - pos: 0.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 24804 components: - pos: 0.5,-21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25113 components: - pos: 13.5,53.5 @@ -40496,15 +38600,11 @@ entities: - pos: 21.5,-82.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25253 components: - pos: -64.5,-39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25311 components: - pos: 34.5,32.5 @@ -40515,8 +38615,6 @@ entities: - pos: 21.5,-81.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25313 components: - pos: 19.5,-86.5 @@ -40542,15 +38640,11 @@ entities: - pos: 19.5,-82.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25318 components: - pos: 19.5,-81.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25339 components: - pos: -12.5,-7.5 @@ -40586,120 +38680,86 @@ entities: - pos: 55.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25388 components: - pos: 56.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25389 components: - pos: 57.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25390 components: - pos: 58.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25391 components: - pos: 59.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25392 components: - pos: 60.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25393 components: - pos: 61.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25394 components: - pos: 62.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25395 components: - pos: 63.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25396 components: - pos: 64.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25397 components: - pos: 65.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25398 components: - pos: 66.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25399 components: - pos: 67.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25400 components: - pos: 68.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25401 components: - pos: 69.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25402 components: - pos: 70.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25403 components: - pos: 71.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25404 components: - pos: 72.5,5.5 @@ -40710,15 +38770,11 @@ entities: - pos: 72.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25406 components: - pos: 72.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25407 components: - pos: 73.5,7.5 @@ -40744,8 +38800,6 @@ entities: - pos: -37.5,-5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25544 components: - pos: -36.5,45.5 @@ -40761,99 +38815,71 @@ entities: - pos: -34.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25547 components: - pos: -33.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25548 components: - pos: -33.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25549 components: - pos: -37.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25550 components: - pos: -33.5,47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25551 components: - pos: -33.5,48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25552 components: - pos: -37.5,47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25553 components: - pos: -37.5,48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25554 components: - pos: -37.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25555 components: - pos: -37.5,49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25556 components: - pos: -33.5,49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25557 components: - pos: -34.5,49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25558 components: - pos: -35.5,49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25559 components: - pos: -36.5,49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25718 components: - pos: 30.5,74.5 @@ -40869,8 +38895,6 @@ entities: - pos: 30.5,76.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25721 components: - pos: 30.5,77.5 @@ -40891,43 +38915,31 @@ entities: - pos: 30.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25837 components: - pos: 29.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25838 components: - pos: 28.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25839 components: - pos: 27.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25840 components: - pos: 26.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25841 components: - pos: 31.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25842 components: - pos: 31.5,73.5 @@ -40938,22 +38950,16 @@ entities: - pos: 32.5,73.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25844 components: - pos: 32.5,74.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25845 components: - pos: 32.5,75.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25963 components: - pos: 50.5,-19.5 @@ -40989,127 +38995,91 @@ entities: - pos: -54.5,52.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26015 components: - pos: -54.5,53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26016 components: - pos: -53.5,53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26017 components: - pos: -52.5,53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26018 components: - pos: -51.5,53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26019 components: - pos: -50.5,53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26020 components: - pos: -49.5,53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26021 components: - pos: -48.5,53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26022 components: - pos: -47.5,53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26023 components: - pos: -47.5,54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26024 components: - pos: -46.5,54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26025 components: - pos: -45.5,54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26026 components: - pos: -44.5,54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26027 components: - pos: -43.5,54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26028 components: - pos: -42.5,54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26029 components: - pos: -41.5,54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26030 components: - pos: -40.5,54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26126 components: - pos: -45.5,-39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26127 components: - pos: -46.5,-39.5 @@ -41125,8 +39095,6 @@ entities: - pos: -26.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26216 components: - pos: -26.5,18.5 @@ -41222,29 +39190,21 @@ entities: - pos: -34.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26235 components: - pos: -34.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26236 components: - pos: -34.5,17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26237 components: - pos: -34.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - proto: CableApcStack entities: - uid: 4173 @@ -41380,36 +39340,26 @@ entities: - pos: 16.5,-18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 361 components: - pos: 16.5,-17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 1081 components: - pos: 14.5,-21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 2220 components: - pos: 16.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 2225 components: - pos: 16.5,-13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 2230 components: - pos: 16.5,-15.5 @@ -41420,29 +39370,21 @@ entities: - pos: 15.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3777 components: - pos: 15.5,-13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3778 components: - pos: 16.5,-14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4164 components: - pos: -19.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4487 components: - pos: -22.5,45.5 @@ -41453,15 +39395,11 @@ entities: - pos: -28.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4532 components: - pos: -22.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4533 components: - pos: -28.5,45.5 @@ -42692,71 +40630,51 @@ entities: - pos: 29.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4784 components: - pos: 28.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4785 components: - pos: 27.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4786 components: - pos: 26.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4787 components: - pos: 25.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4788 components: - pos: 24.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4789 components: - pos: 23.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4790 components: - pos: 22.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4791 components: - pos: 21.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4792 components: - pos: 20.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4793 components: - pos: 19.5,30.5 @@ -42977,295 +40895,211 @@ entities: - pos: -5.5,27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4837 components: - pos: -5.5,26.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4838 components: - pos: -5.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4839 components: - pos: -5.5,24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4840 components: - pos: -5.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4841 components: - pos: -5.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4842 components: - pos: -5.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4843 components: - pos: -5.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4844 components: - pos: -5.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4845 components: - pos: -6.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4846 components: - pos: -7.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4847 components: - pos: -8.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4848 components: - pos: -8.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4849 components: - pos: -8.5,17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4850 components: - pos: -8.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4851 components: - pos: -8.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4852 components: - pos: -8.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4853 components: - pos: -8.5,13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4854 components: - pos: -8.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4855 components: - pos: -9.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4856 components: - pos: -10.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4857 components: - pos: -10.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4858 components: - pos: -10.5,10.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4859 components: - pos: -10.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4860 components: - pos: -10.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4861 components: - pos: -10.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4862 components: - pos: -10.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4863 components: - pos: -10.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4864 components: - pos: -10.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4865 components: - pos: -11.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4866 components: - pos: -12.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4867 components: - pos: -13.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4868 components: - pos: -14.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4869 components: - pos: -15.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4870 components: - pos: -16.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4871 components: - pos: -16.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4872 components: - pos: -16.5,2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4873 components: - pos: -16.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4874 components: - pos: -16.5,0.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4875 components: - pos: -16.5,-0.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4876 components: - pos: -15.5,-0.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4877 components: - pos: -14.5,-0.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4878 components: - pos: -14.5,-1.5 @@ -43281,141 +41115,101 @@ entities: - pos: -7.5,-13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4881 components: - pos: -8.5,-13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4882 components: - pos: -9.5,-13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4883 components: - pos: -10.5,-13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4884 components: - pos: -11.5,-13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4885 components: - pos: -12.5,-13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4886 components: - pos: -13.5,-13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4887 components: - pos: -14.5,-13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4888 components: - pos: -14.5,-14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4889 components: - pos: -14.5,-15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4890 components: - pos: -14.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4891 components: - pos: -14.5,-17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4892 components: - pos: -14.5,-18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4893 components: - pos: -14.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4894 components: - pos: -13.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4895 components: - pos: -12.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4896 components: - pos: -11.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4897 components: - pos: -10.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4898 components: - pos: -10.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4899 components: - pos: -10.5,-21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4904 components: - pos: -6.5,-45.5 @@ -43431,8 +41225,6 @@ entities: - pos: -12.5,-15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4907 components: - pos: -7.5,-45.5 @@ -43443,421 +41235,301 @@ entities: - pos: -8.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4909 components: - pos: -9.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4910 components: - pos: -10.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4911 components: - pos: -11.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4912 components: - pos: -12.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4913 components: - pos: -13.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4914 components: - pos: -14.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4915 components: - pos: -15.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4916 components: - pos: -16.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4922 components: - pos: -22.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4923 components: - pos: -22.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4924 components: - pos: -23.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4925 components: - pos: -24.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4926 components: - pos: -25.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4927 components: - pos: -26.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4928 components: - pos: -27.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4929 components: - pos: -27.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4930 components: - pos: -27.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4931 components: - pos: -28.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4932 components: - pos: -29.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4933 components: - pos: -30.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4934 components: - pos: -31.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4935 components: - pos: -32.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4936 components: - pos: -33.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4937 components: - pos: -34.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4938 components: - pos: -35.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4939 components: - pos: -36.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4940 components: - pos: -37.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4941 components: - pos: -38.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4942 components: - pos: -39.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4943 components: - pos: -40.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4944 components: - pos: -41.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4945 components: - pos: -42.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4946 components: - pos: -43.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4947 components: - pos: -44.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4948 components: - pos: -45.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4949 components: - pos: -46.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4950 components: - pos: -47.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4951 components: - pos: -48.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4952 components: - pos: -49.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4953 components: - pos: -50.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4954 components: - pos: -51.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4955 components: - pos: -52.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4956 components: - pos: -53.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4957 components: - pos: -54.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4958 components: - pos: -54.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4959 components: - pos: -54.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4960 components: - pos: -54.5,-43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4961 components: - pos: -54.5,-42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4962 components: - pos: -54.5,-41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4963 components: - pos: -54.5,-40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4964 components: - pos: -54.5,-39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4965 components: - pos: -54.5,-38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4966 components: - pos: -54.5,-37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4967 components: - pos: -54.5,-36.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4968 components: - pos: -54.5,-35.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4969 components: - pos: -54.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4970 components: - pos: -55.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4971 components: - pos: -56.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4972 components: - pos: -57.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4973 components: - pos: -4.5,-51.5 @@ -43873,134 +41545,96 @@ entities: - pos: -2.5,-51.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4976 components: - pos: -2.5,-50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4977 components: - pos: -2.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4978 components: - pos: -1.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4979 components: - pos: -0.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4980 components: - pos: 0.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4981 components: - pos: 1.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4982 components: - pos: 2.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4983 components: - pos: 3.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4984 components: - pos: 4.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4985 components: - pos: 5.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4986 components: - pos: 6.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4995 components: - pos: 6.5,-48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4996 components: - pos: 6.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4997 components: - pos: 7.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4998 components: - pos: 8.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4999 components: - pos: 9.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5000 components: - pos: 10.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5001 components: - pos: 11.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5002 components: - pos: 12.5,-47.5 @@ -44161,176 +41795,126 @@ entities: - pos: 54.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5034 components: - pos: 54.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5035 components: - pos: 54.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5036 components: - pos: 54.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5037 components: - pos: 53.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5038 components: - pos: 52.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5039 components: - pos: 51.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5040 components: - pos: 50.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5041 components: - pos: 49.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5042 components: - pos: 48.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5043 components: - pos: 47.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5044 components: - pos: 46.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5045 components: - pos: 45.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5046 components: - pos: 44.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5047 components: - pos: 43.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5048 components: - pos: 42.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5049 components: - pos: 41.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5050 components: - pos: 41.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5051 components: - pos: 40.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5052 components: - pos: 39.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5053 components: - pos: 38.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5054 components: - pos: 37.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5055 components: - pos: 36.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5056 components: - pos: 35.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5057 components: - pos: 35.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5058 components: - pos: 34.5,7.5 @@ -44376,127 +41960,91 @@ entities: - pos: 31.5,-4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5067 components: - pos: 31.5,-5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5068 components: - pos: 31.5,-6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5069 components: - pos: 31.5,-7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5070 components: - pos: 31.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5071 components: - pos: 31.5,-9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5072 components: - pos: 31.5,-10.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5073 components: - pos: 31.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5074 components: - pos: 30.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5075 components: - pos: 29.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5076 components: - pos: 28.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5077 components: - pos: 27.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5078 components: - pos: 26.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5079 components: - pos: 25.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5080 components: - pos: 24.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5081 components: - pos: 23.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5082 components: - pos: 22.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5083 components: - pos: 22.5,-12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5084 components: - pos: 21.5,-12.5 @@ -44807,239 +42355,171 @@ entities: - pos: 34.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5146 components: - pos: 35.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5147 components: - pos: 36.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5148 components: - pos: 37.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5149 components: - pos: 38.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5150 components: - pos: 39.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5151 components: - pos: 39.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5152 components: - pos: 39.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5153 components: - pos: 39.5,43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5154 components: - pos: 39.5,42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5155 components: - pos: 39.5,41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5156 components: - pos: 39.5,40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5157 components: - pos: 39.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5158 components: - pos: 39.5,38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5159 components: - pos: 39.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5160 components: - pos: 40.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5161 components: - pos: 41.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5162 components: - pos: 42.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5163 components: - pos: 43.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5164 components: - pos: 44.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5165 components: - pos: 45.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5166 components: - pos: 46.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5167 components: - pos: 47.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5168 components: - pos: 47.5,40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5169 components: - pos: 47.5,41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5170 components: - pos: 47.5,42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5171 components: - pos: 47.5,43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5172 components: - pos: 47.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5173 components: - pos: 47.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5174 components: - pos: 47.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5175 components: - pos: 47.5,47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5176 components: - pos: 11.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5177 components: - pos: 11.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5178 components: - pos: 11.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5179 components: - pos: 11.5,-43.5 @@ -45050,15 +42530,11 @@ entities: - pos: 11.5,-42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5181 components: - pos: 11.5,-41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5182 components: - pos: 12.5,-41.5 @@ -45074,22 +42550,16 @@ entities: - pos: 55.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5201 components: - pos: 56.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5202 components: - pos: 57.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5203 components: - pos: 57.5,6.5 @@ -45105,92 +42575,66 @@ entities: - pos: 25.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5206 components: - pos: 24.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5207 components: - pos: 23.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5208 components: - pos: 22.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5209 components: - pos: 21.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5210 components: - pos: 20.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5211 components: - pos: 19.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5212 components: - pos: 19.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5213 components: - pos: 19.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5214 components: - pos: 19.5,2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5215 components: - pos: 19.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5216 components: - pos: 19.5,0.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5217 components: - pos: 19.5,-0.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5218 components: - pos: 19.5,-1.5 @@ -45201,8 +42645,6 @@ entities: - pos: -25.5,43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5226 components: - pos: -23.5,44.5 @@ -45218,29 +42660,21 @@ entities: - pos: -21.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5229 components: - pos: -22.5,43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5230 components: - pos: -22.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5231 components: - pos: -28.5,43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5232 components: - pos: -16.5,39.5 @@ -45281,50 +42715,36 @@ entities: - pos: -28.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5241 components: - pos: -27.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5242 components: - pos: -26.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5243 components: - pos: -25.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5244 components: - pos: -24.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5245 components: - pos: -23.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5246 components: - pos: -25.5,42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5247 components: - pos: -18.5,44.5 @@ -45390,8 +42810,6 @@ entities: - pos: -29.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5296 components: - pos: -12.5,40.5 @@ -45462,57 +42880,41 @@ entities: - pos: -13.5,49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5421 components: - pos: -13.5,50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5422 components: - pos: -15.5,51.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5423 components: - pos: -14.5,51.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5424 components: - pos: -13.5,51.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5425 components: - pos: -12.5,51.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5426 components: - pos: -11.5,51.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5427 components: - pos: -10.5,51.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5499 components: - pos: -20.5,45.5 @@ -45578,8 +42980,6 @@ entities: - pos: -33.5,72.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5612 components: - pos: -20.5,55.5 @@ -45595,771 +42995,551 @@ entities: - pos: -20.5,57.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5615 components: - pos: -20.5,58.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5616 components: - pos: -20.5,59.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5617 components: - pos: -20.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5627 components: - pos: -37.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5628 components: - pos: -30.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5629 components: - pos: -21.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5630 components: - pos: -20.5,61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5631 components: - pos: -20.5,62.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5632 components: - pos: -20.5,63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5633 components: - pos: -20.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5634 components: - pos: -21.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5635 components: - pos: -22.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5636 components: - pos: -23.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5637 components: - pos: -24.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5638 components: - pos: -25.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5639 components: - pos: -26.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5640 components: - pos: -27.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5641 components: - pos: -28.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5642 components: - pos: -29.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5643 components: - pos: -30.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5679 components: - pos: -22.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5680 components: - pos: -12.5,83.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5689 components: - pos: -20.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5701 components: - pos: -14.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5702 components: - pos: -25.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5703 components: - pos: -32.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5704 components: - pos: -38.5,83.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5730 components: - pos: -33.5,73.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5789 components: - pos: -26.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5799 components: - pos: -24.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5856 components: - pos: -38.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5869 components: - pos: -31.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5870 components: - pos: -13.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5922 components: - pos: -33.5,75.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5927 components: - pos: -38.5,82.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5928 components: - pos: -33.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5929 components: - pos: -15.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5984 components: - pos: -12.5,81.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5985 components: - pos: -17.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5986 components: - pos: -28.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5987 components: - pos: -35.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5988 components: - pos: -38.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5993 components: - pos: -33.5,69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6102 components: - pos: -12.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6103 components: - pos: -16.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6169 components: - pos: -27.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6170 components: - pos: -34.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6171 components: - pos: -38.5,81.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6176 components: - pos: -33.5,74.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6178 components: - pos: -15.5,73.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6179 components: - pos: -14.5,73.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6180 components: - pos: -13.5,73.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6181 components: - pos: -12.5,73.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6182 components: - pos: -35.5,73.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6183 components: - pos: -36.5,73.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6184 components: - pos: -37.5,73.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6185 components: - pos: -38.5,73.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6186 components: - pos: -38.5,73.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6187 components: - pos: -38.5,74.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6188 components: - pos: -38.5,75.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6189 components: - pos: -38.5,76.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6190 components: - pos: -38.5,77.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6191 components: - pos: -38.5,78.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6192 components: - pos: -38.5,79.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6218 components: - pos: -23.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6219 components: - pos: -12.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6232 components: - pos: -12.5,79.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6233 components: - pos: -12.5,78.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6234 components: - pos: -12.5,77.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6235 components: - pos: -12.5,76.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6236 components: - pos: -12.5,75.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6237 components: - pos: -12.5,74.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6238 components: - pos: -12.5,72.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6239 components: - pos: -12.5,71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6240 components: - pos: -12.5,70.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6241 components: - pos: -12.5,69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6242 components: - pos: -12.5,68.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6243 components: - pos: -12.5,67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6244 components: - pos: -12.5,66.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6245 components: - pos: -12.5,65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6246 components: - pos: -12.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6247 components: - pos: -12.5,63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6248 components: - pos: -12.5,62.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6249 components: - pos: -12.5,61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6250 components: - pos: -12.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6251 components: - pos: -13.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6252 components: - pos: -14.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6253 components: - pos: -15.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6254 components: - pos: -16.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6255 components: - pos: -38.5,72.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6256 components: - pos: -38.5,71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6257 components: - pos: -38.5,70.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6258 components: - pos: -38.5,69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6259 components: - pos: -38.5,68.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6260 components: - pos: -38.5,67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6261 components: - pos: -38.5,66.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6262 components: - pos: -38.5,65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6263 components: - pos: -38.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6264 components: - pos: -38.5,63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6265 components: - pos: -38.5,62.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6266 components: - pos: -38.5,61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6267 components: - pos: -38.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6268 components: - pos: -37.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6269 components: - pos: -36.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6270 components: - pos: -35.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6271 components: - pos: -34.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6272 components: - pos: -33.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6273 components: - pos: -32.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6274 components: - pos: -31.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6936 components: - pos: -28.5,15.5 @@ -46405,43 +43585,31 @@ entities: - pos: -41.5,-51.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10176 components: - pos: -41.5,-52.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10177 components: - pos: -40.5,-51.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10178 components: - pos: -40.5,-50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10179 components: - pos: -40.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10180 components: - pos: -41.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10181 components: - pos: -41.5,-48.5 @@ -46452,99 +43620,71 @@ entities: - pos: -42.5,-51.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10194 components: - pos: -41.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10195 components: - pos: -58.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10196 components: - pos: -59.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10197 components: - pos: -59.5,-33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10198 components: - pos: -59.5,-32.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10199 components: - pos: -59.5,-31.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10200 components: - pos: -59.5,-30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10201 components: - pos: -59.5,-29.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10202 components: - pos: -59.5,-28.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10203 components: - pos: -59.5,-27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10204 components: - pos: -59.5,-26.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10205 components: - pos: -59.5,-25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10206 components: - pos: -60.5,-25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10207 components: - pos: -61.5,-25.5 @@ -46555,960 +43695,686 @@ entities: - pos: -62.5,-25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10209 components: - pos: -62.5,-26.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10211 components: - pos: -63.5,-26.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10212 components: - pos: -64.5,-26.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10213 components: - pos: -65.5,-26.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10215 components: - pos: -62.5,-24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10216 components: - pos: -65.5,-25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10217 components: - pos: -66.5,-25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10226 components: - pos: -65.5,-24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10340 components: - pos: -16.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11436 components: - pos: -33.5,71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11505 components: - pos: -36.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11506 components: - pos: -29.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11507 components: - pos: -18.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11508 components: - pos: -12.5,82.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11752 components: - pos: -75.5,2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11753 components: - pos: -75.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11754 components: - pos: -75.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11755 components: - pos: -75.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11756 components: - pos: -75.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11757 components: - pos: -75.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11758 components: - pos: -75.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11759 components: - pos: -75.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11760 components: - pos: -73.5,2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11761 components: - pos: -73.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11762 components: - pos: -73.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11763 components: - pos: -73.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11764 components: - pos: -73.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11765 components: - pos: -73.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11766 components: - pos: -73.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11767 components: - pos: -73.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11768 components: - pos: -74.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11769 components: - pos: -74.5,10.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11770 components: - pos: -74.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11771 components: - pos: -74.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11772 components: - pos: -74.5,13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11773 components: - pos: -75.5,13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11774 components: - pos: -75.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11775 components: - pos: -75.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11776 components: - pos: -75.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11777 components: - pos: -75.5,17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11778 components: - pos: -75.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11779 components: - pos: -75.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11780 components: - pos: -75.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11781 components: - pos: -73.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11782 components: - pos: -73.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11783 components: - pos: -73.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11784 components: - pos: -73.5,17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11785 components: - pos: -73.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11786 components: - pos: -73.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11787 components: - pos: -73.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11788 components: - pos: -73.5,13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11789 components: - pos: -71.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11790 components: - pos: -71.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11791 components: - pos: -71.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11792 components: - pos: -71.5,17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11793 components: - pos: -71.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11794 components: - pos: -71.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11795 components: - pos: -71.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11796 components: - pos: -71.5,13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11797 components: - pos: -70.5,13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11798 components: - pos: -69.5,13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11799 components: - pos: -69.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11800 components: - pos: -69.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11801 components: - pos: -69.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11802 components: - pos: -69.5,17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11803 components: - pos: -69.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11804 components: - pos: -69.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11805 components: - pos: -69.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11806 components: - pos: -67.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11807 components: - pos: -67.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11808 components: - pos: -67.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11809 components: - pos: -67.5,17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11810 components: - pos: -67.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11811 components: - pos: -67.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11812 components: - pos: -67.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11813 components: - pos: -67.5,13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11814 components: - pos: -65.5,13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11815 components: - pos: -65.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11816 components: - pos: -65.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11817 components: - pos: -65.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11818 components: - pos: -65.5,17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11819 components: - pos: -65.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11820 components: - pos: -65.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11821 components: - pos: -65.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11822 components: - pos: -66.5,13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11823 components: - pos: -70.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11824 components: - pos: -70.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11825 components: - pos: -70.5,10.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11826 components: - pos: -70.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11827 components: - pos: -71.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11828 components: - pos: -71.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11829 components: - pos: -71.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11830 components: - pos: -71.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11831 components: - pos: -71.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11832 components: - pos: -71.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11833 components: - pos: -71.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11834 components: - pos: -71.5,2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11835 components: - pos: -69.5,2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11836 components: - pos: -69.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11837 components: - pos: -69.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11838 components: - pos: -69.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11839 components: - pos: -69.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11840 components: - pos: -69.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11841 components: - pos: -69.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11842 components: - pos: -69.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11843 components: - pos: -70.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11844 components: - pos: -67.5,2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11845 components: - pos: -67.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11846 components: - pos: -67.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11847 components: - pos: -67.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11848 components: - pos: -67.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11849 components: - pos: -67.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11850 components: - pos: -67.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11851 components: - pos: -67.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11852 components: - pos: -65.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11853 components: - pos: -65.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11854 components: - pos: -65.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11855 components: - pos: -65.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11856 components: - pos: -65.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11857 components: - pos: -65.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11858 components: - pos: -65.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11859 components: - pos: -65.5,2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11860 components: - pos: -66.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11862 components: - pos: -53.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11863 components: - pos: -54.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11864 components: - pos: -55.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11865 components: - pos: -56.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11866 components: - pos: -57.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11867 components: - pos: -58.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11868 components: - pos: -59.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11875 components: - pos: -53.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11876 components: - pos: -52.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11877 components: - pos: -51.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11878 components: - pos: -51.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11879 components: - pos: -50.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12714 components: - pos: 14.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12715 components: - pos: 14.5,-22.5 @@ -47524,57 +44390,41 @@ entities: - pos: 15.5,-18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12724 components: - pos: 16.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 13011 components: - pos: -23.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 13149 components: - pos: -22.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 13240 components: - pos: -24.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 13270 components: - pos: -25.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 13378 components: - pos: -17.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 13379 components: - pos: -18.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 13957 components: - pos: 17.5,-11.5 @@ -47805,8 +44655,6 @@ entities: - pos: 19.5,-58.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14269 components: - pos: 19.5,-59.5 @@ -47832,141 +44680,101 @@ entities: - pos: 19.5,-63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14274 components: - pos: 19.5,-64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14275 components: - pos: 19.5,-65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14276 components: - pos: 19.5,-66.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14277 components: - pos: 19.5,-67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14278 components: - pos: 19.5,-68.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14279 components: - pos: 19.5,-69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14280 components: - pos: 19.5,-70.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14281 components: - pos: 19.5,-71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14282 components: - pos: 19.5,-72.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14283 components: - pos: 19.5,-73.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14284 components: - pos: 19.5,-74.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14285 components: - pos: 19.5,-75.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14286 components: - pos: 19.5,-76.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14287 components: - pos: 19.5,-77.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14288 components: - pos: 19.5,-78.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14289 components: - pos: 19.5,-79.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14290 components: - pos: 19.5,-80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14291 components: - pos: 19.5,-81.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14292 components: - pos: 19.5,-82.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14293 components: - pos: 19.5,-83.5 @@ -48017,8 +44825,6 @@ entities: - pos: 29.5,-91.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14313 components: - pos: 13.5,-91.5 @@ -48034,8 +44840,6 @@ entities: - pos: 11.5,-91.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15170 components: - pos: -22.5,56.5 @@ -48046,162 +44850,116 @@ entities: - pos: -21.5,43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16303 components: - pos: -21.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16435 components: - pos: -30.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16436 components: - pos: -30.5,36.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16437 components: - pos: -30.5,35.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16438 components: - pos: -30.5,34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16439 components: - pos: -31.5,34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16440 components: - pos: -31.5,33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16441 components: - pos: -30.5,38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16442 components: - pos: -30.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16443 components: - pos: -30.5,40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16444 components: - pos: -30.5,41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16445 components: - pos: -30.5,42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16446 components: - pos: -30.5,43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16447 components: - pos: -30.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16448 components: - pos: -30.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16449 components: - pos: -30.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16450 components: - pos: -30.5,47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16451 components: - pos: -30.5,48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16452 components: - pos: -30.5,49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16453 components: - pos: -30.5,50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16454 components: - pos: -31.5,50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16455 components: - pos: -31.5,42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16456 components: - pos: -31.5,32.5 @@ -48252,162 +45010,116 @@ entities: - pos: 40.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17296 components: - pos: 47.5,48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17297 components: - pos: 47.5,49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17314 components: - pos: 47.5,50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17315 components: - pos: 46.5,50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17317 components: - pos: 45.5,50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17318 components: - pos: 44.5,50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17319 components: - pos: 43.5,50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17320 components: - pos: 42.5,50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17321 components: - pos: 41.5,50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17322 components: - pos: 40.5,50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17323 components: - pos: 40.5,49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17324 components: - pos: 40.5,48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17325 components: - pos: 40.5,47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17326 components: - pos: 40.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17327 components: - pos: 45.5,51.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17328 components: - pos: 45.5,52.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17329 components: - pos: 45.5,53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17330 components: - pos: 45.5,54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18371 components: - pos: -21.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18372 components: - pos: -20.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18373 components: - pos: -19.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18835 components: - pos: -9.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19054 components: - pos: 20.5,50.5 @@ -48428,22 +45140,16 @@ entities: - pos: 20.5,47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19058 components: - pos: 20.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19059 components: - pos: 20.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19060 components: - pos: 19.5,45.5 @@ -48454,92 +45160,66 @@ entities: - pos: 18.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19062 components: - pos: 17.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19063 components: - pos: 16.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19064 components: - pos: 15.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19065 components: - pos: 14.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19066 components: - pos: 13.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19067 components: - pos: 12.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19068 components: - pos: 11.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19069 components: - pos: 11.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19070 components: - pos: 10.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19071 components: - pos: 9.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19072 components: - pos: 8.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19073 components: - pos: 7.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19074 components: - pos: -5.5,32.5 @@ -48725,15 +45405,11 @@ entities: - pos: -16.5,72.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20537 components: - pos: -8.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20538 components: - pos: -8.5,36.5 @@ -48744,1576 +45420,1126 @@ entities: - pos: -67.5,-25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20917 components: - pos: -68.5,-25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20918 components: - pos: -83.5,-23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20919 components: - pos: -83.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20920 components: - pos: -83.5,-21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20921 components: - pos: -83.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20922 components: - pos: -83.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20923 components: - pos: -83.5,-18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20924 components: - pos: -83.5,-17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20925 components: - pos: -83.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20926 components: - pos: -81.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20927 components: - pos: -81.5,-17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20928 components: - pos: -81.5,-18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20929 components: - pos: -81.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20930 components: - pos: -81.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20931 components: - pos: -81.5,-21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20932 components: - pos: -81.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20933 components: - pos: -81.5,-23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20934 components: - pos: -79.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20935 components: - pos: -79.5,-17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20936 components: - pos: -79.5,-18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20937 components: - pos: -79.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20938 components: - pos: -79.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20939 components: - pos: -79.5,-21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20940 components: - pos: -79.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20941 components: - pos: -79.5,-23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20942 components: - pos: -77.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20943 components: - pos: -77.5,-17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20944 components: - pos: -77.5,-18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20945 components: - pos: -77.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20946 components: - pos: -77.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20947 components: - pos: -77.5,-21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20948 components: - pos: -77.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20949 components: - pos: -77.5,-23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20950 components: - pos: -75.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20951 components: - pos: -75.5,-17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20952 components: - pos: -75.5,-18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20953 components: - pos: -75.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20954 components: - pos: -75.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20955 components: - pos: -75.5,-21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20956 components: - pos: -75.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20957 components: - pos: -75.5,-23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20958 components: - pos: -85.5,-25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20959 components: - pos: -84.5,-25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20960 components: - pos: -83.5,-25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20961 components: - pos: -82.5,-25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20962 components: - pos: -82.5,-24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20963 components: - pos: -82.5,-26.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20964 components: - pos: -82.5,-23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20965 components: - pos: -82.5,-27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20966 components: - pos: -83.5,-27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20967 components: - pos: -83.5,-28.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20968 components: - pos: -83.5,-29.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20969 components: - pos: -83.5,-30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20970 components: - pos: -83.5,-31.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20971 components: - pos: -83.5,-32.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20972 components: - pos: -83.5,-33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20973 components: - pos: -83.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20974 components: - pos: -81.5,-27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20975 components: - pos: -81.5,-28.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20976 components: - pos: -81.5,-29.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20977 components: - pos: -81.5,-30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20978 components: - pos: -81.5,-31.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20979 components: - pos: -81.5,-32.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20980 components: - pos: -81.5,-33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20981 components: - pos: -81.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20982 components: - pos: -79.5,-27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20983 components: - pos: -79.5,-28.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20984 components: - pos: -79.5,-29.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20985 components: - pos: -79.5,-30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20986 components: - pos: -79.5,-31.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20987 components: - pos: -79.5,-32.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20988 components: - pos: -79.5,-33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20989 components: - pos: -79.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20990 components: - pos: -77.5,-27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20991 components: - pos: -77.5,-28.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20992 components: - pos: -77.5,-29.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20993 components: - pos: -77.5,-30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20994 components: - pos: -77.5,-31.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20995 components: - pos: -77.5,-32.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20996 components: - pos: -77.5,-33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20997 components: - pos: -77.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20998 components: - pos: -78.5,-27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20999 components: - pos: -75.5,-27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21000 components: - pos: -75.5,-28.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21001 components: - pos: -75.5,-29.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21002 components: - pos: -75.5,-30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21003 components: - pos: -75.5,-31.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21004 components: - pos: -75.5,-32.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21005 components: - pos: -75.5,-33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21006 components: - pos: -75.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21007 components: - pos: -73.5,-27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21008 components: - pos: -73.5,-28.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21009 components: - pos: -73.5,-29.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21010 components: - pos: -73.5,-30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21011 components: - pos: -73.5,-31.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21012 components: - pos: -73.5,-32.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21013 components: - pos: -73.5,-33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21014 components: - pos: -73.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21015 components: - pos: -74.5,-27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21016 components: - pos: -73.5,-23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21017 components: - pos: -73.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21018 components: - pos: -73.5,-21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21019 components: - pos: -73.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21020 components: - pos: -73.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21021 components: - pos: -73.5,-18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21022 components: - pos: -73.5,-17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21023 components: - pos: -73.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21024 components: - pos: -74.5,-23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21025 components: - pos: -78.5,-23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21252 components: - pos: -41.5,-53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21253 components: - pos: -41.5,-54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21254 components: - pos: -41.5,-55.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21255 components: - pos: -32.5,-61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21256 components: - pos: -33.5,-61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21257 components: - pos: -34.5,-61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21258 components: - pos: -35.5,-61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21259 components: - pos: -36.5,-61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21260 components: - pos: -37.5,-61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21261 components: - pos: -38.5,-61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21262 components: - pos: -39.5,-61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21263 components: - pos: -32.5,-63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21264 components: - pos: -33.5,-63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21265 components: - pos: -34.5,-63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21266 components: - pos: -35.5,-63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21267 components: - pos: -36.5,-63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21268 components: - pos: -37.5,-63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21269 components: - pos: -38.5,-63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21270 components: - pos: -39.5,-63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21271 components: - pos: -32.5,-65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21272 components: - pos: -33.5,-65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21273 components: - pos: -34.5,-65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21274 components: - pos: -35.5,-65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21275 components: - pos: -36.5,-65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21276 components: - pos: -37.5,-65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21277 components: - pos: -38.5,-65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21278 components: - pos: -39.5,-65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21279 components: - pos: -32.5,-67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21280 components: - pos: -33.5,-67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21281 components: - pos: -34.5,-67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21282 components: - pos: -35.5,-67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21283 components: - pos: -36.5,-67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21284 components: - pos: -37.5,-67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21285 components: - pos: -38.5,-67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21286 components: - pos: -39.5,-67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21287 components: - pos: -32.5,-69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21288 components: - pos: -33.5,-69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21289 components: - pos: -34.5,-69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21290 components: - pos: -35.5,-69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21291 components: - pos: -36.5,-69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21292 components: - pos: -37.5,-69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21293 components: - pos: -38.5,-69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21294 components: - pos: -39.5,-69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21295 components: - pos: -32.5,-71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21296 components: - pos: -33.5,-71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21297 components: - pos: -34.5,-71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21298 components: - pos: -35.5,-71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21299 components: - pos: -36.5,-71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21300 components: - pos: -37.5,-71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21301 components: - pos: -38.5,-71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21302 components: - pos: -39.5,-71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21303 components: - pos: -39.5,-70.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21304 components: - pos: -40.5,-70.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21305 components: - pos: -41.5,-70.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21306 components: - pos: -41.5,-71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21307 components: - pos: -41.5,-72.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21308 components: - pos: -41.5,-73.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21309 components: - pos: -50.5,-71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21310 components: - pos: -49.5,-71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21311 components: - pos: -48.5,-71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21312 components: - pos: -47.5,-71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21313 components: - pos: -46.5,-71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21314 components: - pos: -45.5,-71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21315 components: - pos: -44.5,-71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21316 components: - pos: -43.5,-71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21317 components: - pos: -50.5,-69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21318 components: - pos: -49.5,-69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21319 components: - pos: -48.5,-69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21320 components: - pos: -47.5,-69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21321 components: - pos: -46.5,-69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21322 components: - pos: -45.5,-69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21323 components: - pos: -44.5,-69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21324 components: - pos: -43.5,-69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21325 components: - pos: -43.5,-70.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21326 components: - pos: -50.5,-67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21327 components: - pos: -49.5,-67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21328 components: - pos: -48.5,-67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21329 components: - pos: -47.5,-67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21330 components: - pos: -46.5,-67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21331 components: - pos: -45.5,-67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21332 components: - pos: -44.5,-67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21333 components: - pos: -43.5,-67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21334 components: - pos: -50.5,-65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21335 components: - pos: -49.5,-65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21336 components: - pos: -48.5,-65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21337 components: - pos: -47.5,-65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21338 components: - pos: -46.5,-65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21339 components: - pos: -45.5,-65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21340 components: - pos: -44.5,-65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21341 components: - pos: -43.5,-65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21342 components: - pos: -43.5,-66.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21343 components: - pos: -39.5,-66.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21344 components: - pos: -39.5,-62.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21345 components: - pos: -43.5,-62.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21346 components: - pos: -43.5,-61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21347 components: - pos: -44.5,-61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21348 components: - pos: -45.5,-61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21349 components: - pos: -46.5,-61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21350 components: - pos: -47.5,-61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21351 components: - pos: -48.5,-61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21352 components: - pos: -49.5,-61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21353 components: - pos: -50.5,-61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21354 components: - pos: -50.5,-63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21355 components: - pos: -49.5,-63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21356 components: - pos: -48.5,-63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21357 components: - pos: -47.5,-63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21358 components: - pos: -46.5,-63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21359 components: - pos: -45.5,-63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21360 components: - pos: -44.5,-63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21361 components: - pos: -43.5,-63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21362 components: - pos: -42.5,-70.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21581 components: - pos: -6.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21583 components: - pos: -7.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21584 components: - pos: -8.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21586 components: - pos: -6.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21587 components: - pos: -5.5,5.5 @@ -50324,190 +46550,136 @@ entities: - pos: -4.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21646 components: - pos: -17.5,73.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22413 components: - pos: -48.5,10.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22414 components: - pos: -48.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22415 components: - pos: -48.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22416 components: - pos: -47.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22417 components: - pos: -46.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22418 components: - pos: -45.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22419 components: - pos: -44.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22420 components: - pos: -43.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22421 components: - pos: -42.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22422 components: - pos: -41.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22423 components: - pos: -40.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22424 components: - pos: -39.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22425 components: - pos: -38.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22426 components: - pos: -37.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22427 components: - pos: -36.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22428 components: - pos: -35.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22429 components: - pos: -34.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22430 components: - pos: -31.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22431 components: - pos: -31.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22432 components: - pos: -30.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22433 components: - pos: -29.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22434 components: - pos: -28.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22435 components: - pos: -27.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22436 components: - pos: -26.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22437 components: - pos: -25.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22438 components: - pos: -24.5,9.5 @@ -50518,8 +46690,6 @@ entities: - pos: -48.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22440 components: - pos: -49.5,11.5 @@ -50530,57 +46700,41 @@ entities: - pos: -32.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22580 components: - pos: -33.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22709 components: - pos: -17.5,75.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22711 components: - pos: -17.5,72.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22715 components: - pos: 16.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22719 components: - pos: -33.5,70.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22727 components: - pos: -17.5,74.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22728 components: - pos: -17.5,71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22832 components: - pos: -1.5,55.5 @@ -50616,43 +46770,31 @@ entities: - pos: 19.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22839 components: - pos: 20.5,31.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22840 components: - pos: 20.5,32.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22841 components: - pos: 20.5,33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22842 components: - pos: 20.5,34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22843 components: - pos: 20.5,35.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22844 components: - pos: 20.5,36.5 @@ -50663,8 +46805,6 @@ entities: - pos: 20.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22846 components: - pos: 20.5,38.5 @@ -50675,36 +46815,26 @@ entities: - pos: 20.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22848 components: - pos: 20.5,40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22849 components: - pos: 20.5,41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22850 components: - pos: 20.5,42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22851 components: - pos: 20.5,43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22852 components: - pos: 20.5,44.5 @@ -50715,155 +46845,111 @@ entities: - pos: 20.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22854 components: - pos: 20.5,29.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22855 components: - pos: 20.5,28.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22856 components: - pos: 20.5,27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22857 components: - pos: 20.5,26.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22858 components: - pos: 20.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22859 components: - pos: 20.5,24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22860 components: - pos: 20.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22861 components: - pos: 20.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22862 components: - pos: 21.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22863 components: - pos: 22.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22864 components: - pos: 25.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22865 components: - pos: 24.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22866 components: - pos: 23.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22867 components: - pos: 23.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22868 components: - pos: 23.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22869 components: - pos: 24.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22870 components: - pos: 25.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22871 components: - pos: 26.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22872 components: - pos: 27.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22873 components: - pos: 28.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22874 components: - pos: 29.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22875 components: - pos: 30.5,20.5 @@ -50889,78 +46975,56 @@ entities: - pos: -1.5,-13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 23045 components: - pos: -1.5,-14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 23477 components: - pos: -1.5,-15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 23478 components: - pos: -1.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 23479 components: - pos: -1.5,-17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 23480 components: - pos: -1.5,-18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 23481 components: - pos: -1.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 23482 components: - pos: -1.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 23483 components: - pos: -0.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 23484 components: - pos: 0.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 23485 components: - pos: 0.5,-21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 23486 components: - pos: 0.5,-22.5 @@ -51016,36 +47080,26 @@ entities: - pos: -15.5,72.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25298 components: - pos: -34.5,72.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25299 components: - pos: -35.5,72.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25473 components: - pos: -17.5,70.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25474 components: - pos: -17.5,69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25494 components: - pos: -29.5,16.5 @@ -51066,8 +47120,6 @@ entities: - pos: 20.5,53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25760 components: - pos: 20.5,54.5 @@ -51233,8 +47285,6 @@ entities: - pos: 30.5,76.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25793 components: - pos: 30.5,77.5 @@ -51304,106 +47354,76 @@ entities: - pos: 15.5,-13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 1190 components: - pos: -34.5,-25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3869 components: - pos: -11.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3870 components: - pos: -12.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3871 components: - pos: -13.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3872 components: - pos: -14.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3873 components: - pos: -15.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3874 components: - pos: -16.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3875 components: - pos: -16.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3876 components: - pos: -16.5,2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3877 components: - pos: -16.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3878 components: - pos: -16.5,0.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3879 components: - pos: -16.5,-0.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3880 components: - pos: -15.5,-0.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3881 components: - pos: -14.5,-0.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3882 components: - pos: -14.5,-1.5 @@ -51439,43 +47459,31 @@ entities: - pos: -29.5,65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4347 components: - pos: -31.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4348 components: - pos: -33.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4349 components: - pos: -35.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4919 components: - pos: -23.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4921 components: - pos: -15.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5383 components: - pos: -11.5,-4.5 @@ -51491,365 +47499,261 @@ entities: - pos: -34.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5645 components: - pos: -33.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5646 components: - pos: -32.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5647 components: - pos: -31.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5648 components: - pos: -30.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5649 components: - pos: -29.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5650 components: - pos: -28.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5651 components: - pos: -27.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5652 components: - pos: -26.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5653 components: - pos: -25.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5654 components: - pos: -24.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5655 components: - pos: -23.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5656 components: - pos: -22.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5657 components: - pos: -21.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5658 components: - pos: -20.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5659 components: - pos: -19.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5660 components: - pos: -18.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5661 components: - pos: -17.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5662 components: - pos: -16.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5663 components: - pos: -15.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5664 components: - pos: -15.5,65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5665 components: - pos: -15.5,66.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5666 components: - pos: -15.5,67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5667 components: - pos: -15.5,68.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5668 components: - pos: -15.5,69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5669 components: - pos: -15.5,70.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5670 components: - pos: -15.5,71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5671 components: - pos: -15.5,72.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5672 components: - pos: -15.5,73.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5673 components: - pos: -15.5,74.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5674 components: - pos: -15.5,75.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5675 components: - pos: -15.5,76.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5676 components: - pos: -15.5,77.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5677 components: - pos: -15.5,78.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5678 components: - pos: -15.5,79.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5688 components: - pos: -21.5,65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5708 components: - pos: -35.5,79.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5709 components: - pos: -35.5,78.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5710 components: - pos: -35.5,77.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5711 components: - pos: -35.5,76.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5712 components: - pos: -35.5,75.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5713 components: - pos: -35.5,74.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5714 components: - pos: -35.5,73.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5715 components: - pos: -35.5,72.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5716 components: - pos: -35.5,71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5717 components: - pos: -35.5,70.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5718 components: - pos: -35.5,69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5719 components: - pos: -35.5,68.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5720 components: - pos: -35.5,67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5721 components: - pos: -35.5,66.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5722 components: - pos: -35.5,65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5723 components: - pos: -35.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5732 components: - pos: -22.5,56.5 @@ -51890,169 +47794,121 @@ entities: - pos: -20.5,57.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5740 components: - pos: -20.5,58.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5741 components: - pos: -20.5,59.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5776 components: - pos: -17.5,68.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5777 components: - pos: -18.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5778 components: - pos: -26.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5807 components: - pos: -25.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5808 components: - pos: -17.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5833 components: - pos: -16.5,68.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5916 components: - pos: -27.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5917 components: - pos: -19.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5918 components: - pos: -34.5,68.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5923 components: - pos: -29.5,79.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6063 components: - pos: -34.5,76.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6064 components: - pos: -21.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6065 components: - pos: -29.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6196 components: - pos: -33.5,68.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6197 components: - pos: -20.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6198 components: - pos: -28.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6209 components: - pos: -32.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6210 components: - pos: -34.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6213 components: - pos: -24.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6214 components: - pos: -16.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6215 components: - pos: -21.5,79.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6738 components: - pos: -23.5,55.5 @@ -52088,43 +47944,31 @@ entities: - pos: -23.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6745 components: - pos: -24.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6746 components: - pos: -25.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6747 components: - pos: -26.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6748 components: - pos: -27.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6749 components: - pos: -22.5,57.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6911 components: - pos: -1.5,55.5 @@ -52140,8 +47984,6 @@ entities: - pos: -2.5,56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6914 components: - pos: -0.5,56.5 @@ -52152,22 +47994,16 @@ entities: - pos: -3.5,56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6943 components: - pos: 4.5,56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6944 components: - pos: 3.5,56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6945 components: - pos: 2.5,56.5 @@ -52208,36 +48044,26 @@ entities: - pos: -10.5,-9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10941 components: - pos: -25.5,65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10942 components: - pos: -34.5,72.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11218 components: - pos: -30.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11220 components: - pos: -22.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12039 components: - pos: 13.5,-41.5 @@ -52253,15 +48079,11 @@ entities: - pos: 11.5,-41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12042 components: - pos: 11.5,-42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12043 components: - pos: 11.5,-43.5 @@ -52272,22 +48094,16 @@ entities: - pos: 11.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12045 components: - pos: 11.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12046 components: - pos: 11.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12047 components: - pos: 19.5,-46.5 @@ -52338,8 +48154,6 @@ entities: - pos: 11.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12057 components: - pos: 19.5,-45.5 @@ -52495,15 +48309,11 @@ entities: - pos: 28.5,-24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12089 components: - pos: 5.5,-43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12090 components: - pos: 5.5,-44.5 @@ -52524,99 +48334,71 @@ entities: - pos: 5.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12094 components: - pos: 6.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12095 components: - pos: 7.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12096 components: - pos: 8.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12097 components: - pos: 9.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12098 components: - pos: 10.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12099 components: - pos: 11.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12101 components: - pos: 12.5,-40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 13978 components: - pos: 7.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 13979 components: - pos: 6.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 13980 components: - pos: 5.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 13981 components: - pos: 4.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 13982 components: - pos: 3.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 13983 components: - pos: 2.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 13985 components: - pos: -33.5,-25.5 @@ -52627,15 +48409,11 @@ entities: - pos: 0.5,-12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 13993 components: - pos: -0.5,-12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 13994 components: - pos: -0.5,-11.5 @@ -52656,127 +48434,91 @@ entities: - pos: -0.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 13998 components: - pos: 0.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 13999 components: - pos: 1.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14000 components: - pos: 2.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14001 components: - pos: 3.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14002 components: - pos: 4.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14003 components: - pos: 5.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14004 components: - pos: 6.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14005 components: - pos: 7.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14006 components: - pos: 8.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14007 components: - pos: 9.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14008 components: - pos: 10.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14009 components: - pos: 11.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14010 components: - pos: 12.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14011 components: - pos: 13.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14012 components: - pos: 14.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14013 components: - pos: 15.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14014 components: - pos: 15.5,-9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14015 components: - pos: 15.5,-10.5 @@ -52792,50 +48534,36 @@ entities: - pos: 15.5,-12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14018 components: - pos: 14.5,-12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14027 components: - pos: 12.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14028 components: - pos: 11.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14029 components: - pos: 10.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14030 components: - pos: 9.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14031 components: - pos: 8.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14034 components: - pos: 9.5,-18.5 @@ -52861,8 +48589,6 @@ entities: - pos: 9.5,-14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14039 components: - pos: 9.5,-13.5 @@ -52898,36 +48624,26 @@ entities: - pos: 11.5,-91.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14317 components: - pos: 11.5,-92.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14318 components: - pos: 29.5,-91.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14319 components: - pos: 29.5,-92.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14372 components: - pos: 20.5,-98.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14373 components: - pos: 20.5,-99.5 @@ -53048,8 +48764,6 @@ entities: - pos: 11.5,-91.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14397 components: - pos: 30.5,-91.5 @@ -53165,197 +48879,141 @@ entities: - pos: 15.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15079 components: - pos: 25.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15080 components: - pos: 24.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15081 components: - pos: 23.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15082 components: - pos: 21.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15083 components: - pos: 22.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15084 components: - pos: 20.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15085 components: - pos: 20.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15086 components: - pos: 20.5,24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15087 components: - pos: 20.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15088 components: - pos: 20.5,26.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15089 components: - pos: 20.5,27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15090 components: - pos: 20.5,28.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15091 components: - pos: 20.5,29.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15092 components: - pos: 20.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15093 components: - pos: 21.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15094 components: - pos: 22.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15095 components: - pos: 23.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15096 components: - pos: 23.5,31.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15097 components: - pos: 23.5,32.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15098 components: - pos: 23.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15099 components: - pos: 23.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15100 components: - pos: 24.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15101 components: - pos: 25.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15102 components: - pos: 26.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15103 components: - pos: 27.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15104 components: - pos: 28.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15105 components: - pos: 29.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15106 components: - pos: 30.5,20.5 @@ -53411,8 +49069,6 @@ entities: - pos: 37.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15118 components: - pos: 38.5,20.5 @@ -53473,8 +49129,6 @@ entities: - pos: 44.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15554 components: - pos: 20.5,62.5 @@ -53495,8 +49149,6 @@ entities: - pos: -4.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15684 components: - pos: -5.5,5.5 @@ -53507,190 +49159,136 @@ entities: - pos: -6.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15686 components: - pos: -6.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15687 components: - pos: -6.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15688 components: - pos: -7.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15689 components: - pos: -8.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15690 components: - pos: -9.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15691 components: - pos: -10.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15692 components: - pos: -10.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15693 components: - pos: -10.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15694 components: - pos: -10.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15695 components: - pos: -10.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15696 components: - pos: -10.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15697 components: - pos: -10.5,10.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15698 components: - pos: -10.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15699 components: - pos: -10.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15700 components: - pos: -9.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15701 components: - pos: -8.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15702 components: - pos: -8.5,13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15703 components: - pos: -8.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15704 components: - pos: -8.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15705 components: - pos: -8.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15706 components: - pos: -8.5,17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15707 components: - pos: -8.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15708 components: - pos: -8.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15709 components: - pos: -7.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15710 components: - pos: -6.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15711 components: - pos: -5.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15712 components: - pos: -5.5,18.5 @@ -53721,15 +49319,11 @@ entities: - pos: -6.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15992 components: - pos: 25.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15997 components: - pos: 30.5,30.5 @@ -53740,85 +49334,61 @@ entities: - pos: 29.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15999 components: - pos: 28.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16000 components: - pos: 27.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16020 components: - pos: 19.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16021 components: - pos: 19.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16022 components: - pos: 19.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16023 components: - pos: 20.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16024 components: - pos: 21.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16025 components: - pos: 22.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16026 components: - pos: 23.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16027 components: - pos: 24.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16028 components: - pos: 25.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16029 components: - pos: 26.5,3.5 @@ -53844,8 +49414,6 @@ entities: - pos: 28.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16034 components: - pos: 28.5,6.5 @@ -53931,8 +49499,6 @@ entities: - pos: 23.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16168 components: - pos: -8.5,38.5 @@ -54028,8 +49594,6 @@ entities: - pos: -8.5,48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16294 components: - pos: -13.5,40.5 @@ -54095,29 +49659,21 @@ entities: - pos: -21.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16309 components: - pos: -22.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16310 components: - pos: -22.5,43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16311 components: - pos: -22.5,42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16312 components: - pos: -22.5,41.5 @@ -54128,8 +49684,6 @@ entities: - pos: -22.5,40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16465 components: - pos: -23.5,41.5 @@ -54185,50 +49739,36 @@ entities: - pos: -29.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16476 components: - pos: -30.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16477 components: - pos: -30.5,36.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16478 components: - pos: -30.5,35.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16479 components: - pos: -30.5,34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16480 components: - pos: -31.5,34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16481 components: - pos: -31.5,33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16482 components: - pos: -31.5,32.5 @@ -54329,113 +49869,81 @@ entities: - pos: -35.5,26.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16670 components: - pos: -10.5,13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16671 components: - pos: -11.5,13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16881 components: - pos: 7.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16882 components: - pos: 8.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16883 components: - pos: 9.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16884 components: - pos: 10.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16885 components: - pos: 11.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16886 components: - pos: 11.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16887 components: - pos: 12.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16888 components: - pos: 13.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16889 components: - pos: 14.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16890 components: - pos: 15.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16891 components: - pos: 16.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16892 components: - pos: 17.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16893 components: - pos: 18.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16894 components: - pos: 19.5,45.5 @@ -54446,22 +49954,16 @@ entities: - pos: 20.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16896 components: - pos: 20.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16897 components: - pos: 20.5,47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16898 components: - pos: 20.5,48.5 @@ -54492,8 +49994,6 @@ entities: - pos: 20.5,53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16904 components: - pos: 20.5,54.5 @@ -54529,8 +50029,6 @@ entities: - pos: 17.5,57.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16911 components: - pos: 20.5,58.5 @@ -54581,36 +50079,16 @@ entities: - pos: 21.5,68.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - - uid: 17130 - components: - - pos: 41.5,37.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound - - uid: 17131 - components: - - pos: 41.5,36.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound - uid: 17132 components: - pos: 41.5,35.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17133 components: - pos: 40.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17335 components: - pos: 57.5,6.5 @@ -54621,36 +50099,26 @@ entities: - pos: 57.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17337 components: - pos: 56.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17338 components: - pos: 55.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17339 components: - pos: 54.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17340 components: - pos: 54.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17341 components: - pos: 54.5,5.5 @@ -54801,8 +50269,6 @@ entities: - pos: 79.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17475 components: - pos: 53.5,4.5 @@ -55073,8 +50539,6 @@ entities: - pos: 57.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17530 components: - pos: 55.5,-19.5 @@ -55095,99 +50559,71 @@ entities: - pos: 54.5,-21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17534 components: - pos: 54.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17535 components: - pos: 54.5,-23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17536 components: - pos: 54.5,-24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17537 components: - pos: 54.5,-25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17538 components: - pos: 54.5,-26.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17539 components: - pos: 54.5,-27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17540 components: - pos: 54.5,-28.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17541 components: - pos: 54.5,-29.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17542 components: - pos: 54.5,-30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17543 components: - pos: 54.5,-31.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17544 components: - pos: 54.5,-32.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17545 components: - pos: 54.5,-33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17546 components: - pos: 54.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17547 components: - pos: 54.5,-35.5 @@ -55198,715 +50634,511 @@ entities: - pos: 53.5,-35.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17611 components: - pos: 53.5,-33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17612 components: - pos: 53.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17614 components: - pos: 56.5,-33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17615 components: - pos: 56.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17617 components: - pos: 52.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17618 components: - pos: 51.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17619 components: - pos: 50.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17620 components: - pos: 49.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17621 components: - pos: 48.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17622 components: - pos: 47.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17623 components: - pos: 47.5,-35.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17624 components: - pos: 47.5,-36.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17625 components: - pos: 47.5,-37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17626 components: - pos: 47.5,-38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17627 components: - pos: 46.5,-38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17628 components: - pos: 45.5,-38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17629 components: - pos: 44.5,-38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17630 components: - pos: 43.5,-38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17631 components: - pos: 42.5,-38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17632 components: - pos: 41.5,-38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17633 components: - pos: 40.5,-38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17634 components: - pos: 39.5,-38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17636 components: - pos: 37.5,-38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17637 components: - pos: 36.5,-38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17638 components: - pos: 36.5,-39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17639 components: - pos: 36.5,-40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17640 components: - pos: 36.5,-41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17641 components: - pos: 36.5,-42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17642 components: - pos: 36.5,-43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17643 components: - pos: 36.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17644 components: - pos: 36.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17645 components: - pos: 36.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17646 components: - pos: 36.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17647 components: - pos: 36.5,-48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17648 components: - pos: 36.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17649 components: - pos: 36.5,-50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17650 components: - pos: 36.5,-51.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17651 components: - pos: 36.5,-52.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17652 components: - pos: 36.5,-53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17653 components: - pos: 36.5,-54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17654 components: - pos: 36.5,-55.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17655 components: - pos: 36.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17656 components: - pos: 37.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17657 components: - pos: 38.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17658 components: - pos: 39.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17659 components: - pos: 40.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17660 components: - pos: 41.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17661 components: - pos: 42.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17662 components: - pos: 43.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17663 components: - pos: 44.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17664 components: - pos: 45.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17665 components: - pos: 46.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17666 components: - pos: 47.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17667 components: - pos: 48.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17668 components: - pos: 49.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17669 components: - pos: 50.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17670 components: - pos: 51.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17671 components: - pos: 52.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17672 components: - pos: 53.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17673 components: - pos: 54.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17674 components: - pos: 55.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17675 components: - pos: 56.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17676 components: - pos: 57.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17677 components: - pos: 58.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17678 components: - pos: 59.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17679 components: - pos: 60.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17680 components: - pos: 60.5,-55.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17681 components: - pos: 60.5,-54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17682 components: - pos: 60.5,-53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17683 components: - pos: 60.5,-52.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17684 components: - pos: 60.5,-51.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17685 components: - pos: 60.5,-50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17686 components: - pos: 60.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17687 components: - pos: 60.5,-48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17688 components: - pos: 61.5,-48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17689 components: - pos: 62.5,-48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17690 components: - pos: 63.5,-48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17691 components: - pos: 64.5,-48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17692 components: - pos: 65.5,-48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17693 components: - pos: 65.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17694 components: - pos: 65.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17695 components: - pos: 65.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17696 components: - pos: 65.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17697 components: - pos: 65.5,-43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17698 components: - pos: 65.5,-42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17699 components: - pos: 65.5,-41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17700 components: - pos: 65.5,-40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17701 components: - pos: 65.5,-39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17702 components: - pos: 65.5,-38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17703 components: - pos: 65.5,-37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17704 components: - pos: 65.5,-36.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17705 components: - pos: 65.5,-35.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17706 components: - pos: 64.5,-35.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17708 components: - pos: 62.5,-35.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17709 components: - pos: 62.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17710 components: - pos: 61.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17711 components: - pos: 60.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17712 components: - pos: 59.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17713 components: - pos: 58.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17714 components: - pos: 57.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17827 components: - pos: 57.5,-6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17910 components: - pos: 40.5,-5.5 @@ -55942,15 +51174,11 @@ entities: - pos: 34.5,-5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18187 components: - pos: -14.5,-31.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18188 components: - pos: -14.5,-32.5 @@ -56096,43 +51324,31 @@ entities: - pos: -6.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18217 components: - pos: -7.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18218 components: - pos: -8.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18219 components: - pos: -9.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18220 components: - pos: -10.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18221 components: - pos: -10.5,-17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18222 components: - pos: -11.5,-17.5 @@ -56153,22 +51369,16 @@ entities: - pos: -14.5,-17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18226 components: - pos: -14.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18227 components: - pos: -14.5,-15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18228 components: - pos: -13.5,-15.5 @@ -56179,8 +51389,6 @@ entities: - pos: -12.5,-15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18362 components: - pos: 41.5,34.5 @@ -56191,130 +51399,86 @@ entities: - pos: 39.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18364 components: - pos: 39.5,38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18365 components: - pos: 39.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - - uid: 18366 - components: - - pos: 39.5,36.5 - parent: 82 - type: Transform - - uid: 18367 - components: - - pos: 40.5,36.5 - parent: 82 - type: Transform - uid: 18368 components: - pos: 40.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18369 components: - pos: 41.5,35.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18374 components: - pos: -25.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18375 components: - pos: -24.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18376 components: - pos: -23.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18377 components: - pos: -22.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18378 components: - pos: -22.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18379 components: - pos: -22.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18380 components: - pos: -23.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18381 components: - pos: -24.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18382 components: - pos: -25.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18383 components: - pos: -23.5,-43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18384 components: - pos: -23.5,-42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18385 components: - pos: -23.5,-41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18386 components: - pos: -23.5,-40.5 @@ -56380,8 +51544,6 @@ entities: - pos: -28.5,-33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18481 components: - pos: -27.5,-32.5 @@ -56507,8 +51669,6 @@ entities: - pos: -40.5,-36.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18648 components: - pos: -38.5,-32.5 @@ -56584,8 +51744,6 @@ entities: - pos: -43.5,-23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18688 components: - pos: -41.5,-32.5 @@ -56651,15 +51809,11 @@ entities: - pos: -53.5,-32.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18790 components: - pos: 26.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18806 components: - pos: 39.5,34.5 @@ -56670,50 +51824,36 @@ entities: - pos: 24.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18847 components: - pos: 40.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18848 components: - pos: 44.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18849 components: - pos: 42.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18850 components: - pos: 41.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18851 components: - pos: 43.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18852 components: - pos: 45.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18853 components: - pos: 45.5,38.5 @@ -56759,29 +51899,21 @@ entities: - pos: -16.5,76.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19454 components: - pos: -15.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20619 components: - pos: -17.5,76.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21843 components: - pos: 0.5,40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21844 components: - pos: 0.5,39.5 @@ -56812,120 +51944,86 @@ entities: - pos: 5.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21850 components: - pos: 6.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21851 components: - pos: 6.5,40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21852 components: - pos: 6.5,41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21853 components: - pos: 7.5,41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21854 components: - pos: 8.5,41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21855 components: - pos: 9.5,41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21856 components: - pos: 10.5,41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21857 components: - pos: 11.5,41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21858 components: - pos: 11.5,42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21859 components: - pos: 11.5,43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21860 components: - pos: 11.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21861 components: - pos: 10.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21862 components: - pos: 9.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21863 components: - pos: 8.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21864 components: - pos: 7.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21866 components: - pos: -32.5,-9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21867 components: - pos: -32.5,-10.5 @@ -56961,8 +52059,6 @@ entities: - pos: -34.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21874 components: - pos: -33.5,-16.5 @@ -57023,8 +52119,6 @@ entities: - pos: -26.5,-12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21886 components: - pos: -25.5,-12.5 @@ -57100,8 +52194,6 @@ entities: - pos: -33.5,76.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22217 components: - pos: -24.5,57.5 @@ -57117,148 +52209,106 @@ entities: - pos: 4.5,57.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22659 components: - pos: -3.5,57.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22660 components: - pos: -3.5,59.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22661 components: - pos: -3.5,61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22662 components: - pos: -3.5,63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22663 components: - pos: -1.5,63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22664 components: - pos: 0.5,63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22665 components: - pos: 2.5,63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22666 components: - pos: 4.5,63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22667 components: - pos: 4.5,61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22668 components: - pos: 4.5,59.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22684 components: - pos: -3.5,62.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22685 components: - pos: 3.5,63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22686 components: - pos: 4.5,62.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22687 components: - pos: 4.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22688 components: - pos: 4.5,58.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22783 components: - pos: -3.5,58.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22784 components: - pos: -3.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22785 components: - pos: -2.5,63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22786 components: - pos: -0.5,63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22787 components: - pos: 1.5,63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 24163 components: - pos: -13.5,48.5 @@ -57314,50 +52364,36 @@ entities: - pos: -15.5,54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 24174 components: - pos: -14.5,54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 24175 components: - pos: -13.5,54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 24176 components: - pos: -12.5,54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 24177 components: - pos: -11.5,54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 24178 components: - pos: -10.5,54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 24179 components: - pos: -9.5,54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 24180 components: - pos: -9.5,53.5 @@ -57388,29 +52424,21 @@ entities: - pos: -25.5,79.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25294 components: - pos: -33.5,72.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25295 components: - pos: -16.5,72.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25296 components: - pos: -17.5,72.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25624 components: - pos: -28.5,15.5 @@ -57421,22 +52449,16 @@ entities: - pos: -28.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25650 components: - pos: -29.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25668 components: - pos: -27.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25686 components: - pos: -28.5,16.5 @@ -57537,8 +52559,6 @@ entities: - pos: 30.5,76.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25756 components: - pos: 30.5,77.5 @@ -57569,22 +52589,16 @@ entities: - pos: -28.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25869 components: - pos: -29.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25870 components: - pos: -27.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25871 components: - pos: -27.5,18.5 @@ -57600,8 +52614,6 @@ entities: - pos: -26.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - proto: CableMVStack entities: - uid: 4174 @@ -72920,6 +67932,13 @@ entities: occludes: True ent: null type: ContainerContainer +- proto: CrateMindShieldImplants + entities: + - uid: 18366 + components: + - pos: 58.5,-7.5 + parent: 82 + type: Transform - proto: CrateNPCBee entities: - uid: 22551 @@ -73166,7 +68185,7 @@ entities: type: Transform - uid: 8707 components: - - pos: 60.495476,-8.848388 + - pos: 60.47793,-8.497251 parent: 82 type: Transform - uid: 10774 @@ -81441,8 +76460,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 8098 components: @@ -81452,8 +76469,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20494 components: @@ -81462,8 +76477,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20503 components: @@ -81472,8 +76485,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20506 components: @@ -81482,8 +76493,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20507 components: @@ -81492,8 +76501,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20508 components: @@ -81503,8 +76510,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20509 components: @@ -81514,8 +76519,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20510 components: @@ -81525,8 +76528,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20511 components: @@ -81536,8 +76537,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20512 components: @@ -81547,8 +76546,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20513 components: @@ -81557,8 +76554,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20514 components: @@ -81568,8 +76563,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20515 components: @@ -81579,8 +76572,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20516 components: @@ -81590,8 +76581,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20518 components: @@ -81601,8 +76590,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20519 components: @@ -81612,8 +76599,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20520 components: @@ -81622,8 +76607,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20521 components: @@ -81632,8 +76615,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20522 components: @@ -81643,8 +76624,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20523 components: @@ -81653,8 +76632,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20524 components: @@ -81663,8 +76640,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20525 components: @@ -81674,8 +76649,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20526 components: @@ -81685,8 +76658,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20527 components: @@ -81696,8 +76667,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20528 components: @@ -81706,8 +76675,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20529 components: @@ -81717,8 +76684,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20541 components: @@ -81727,8 +76692,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20543 components: @@ -81738,8 +76701,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20544 components: @@ -81749,8 +76710,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20545 components: @@ -81760,8 +76719,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20546 components: @@ -81770,8 +76727,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20548 components: @@ -81781,8 +76736,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20550 components: @@ -81792,8 +76745,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20551 components: @@ -81802,8 +76753,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20552 components: @@ -81813,8 +76762,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20553 components: @@ -81824,8 +76771,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20554 components: @@ -81834,8 +76779,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20555 components: @@ -81845,8 +76788,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20556 components: @@ -81856,8 +76797,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20557 components: @@ -81866,8 +76805,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20558 components: @@ -81877,8 +76814,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20559 components: @@ -81888,8 +76823,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20560 components: @@ -81899,8 +76832,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20561 components: @@ -81909,8 +76840,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20562 components: @@ -81919,8 +76848,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20563 components: @@ -81929,8 +76856,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20565 components: @@ -81940,8 +76865,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20566 components: @@ -81951,8 +76874,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20567 components: @@ -81962,8 +76883,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20568 components: @@ -81972,8 +76891,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20569 components: @@ -81983,8 +76900,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20570 components: @@ -81994,8 +76909,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20571 components: @@ -82005,8 +76918,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20572 components: @@ -82015,8 +76926,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21572 components: @@ -82026,8 +76935,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21658 components: @@ -82037,8 +76944,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21660 components: @@ -82048,8 +76953,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21661 components: @@ -82059,8 +76962,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21663 components: @@ -82069,8 +76970,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21946 components: @@ -82080,8 +76979,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 22098 components: @@ -82091,8 +76988,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 25239 components: @@ -82102,8 +76997,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - proto: EmergencyRollerBed entities: @@ -86538,7 +81431,7 @@ entities: type: Transform - uid: 10058 components: - - pos: 25.742336,6.8001347 + - pos: 25.684183,6.7961903 parent: 82 type: Transform - uid: 10059 @@ -86976,50 +81869,36 @@ entities: - pos: 0.5,24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 660 components: - pos: 2.5,24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 661 components: - pos: 4.5,24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 662 components: - pos: 6.5,24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 663 components: - pos: 8.5,24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 664 components: - pos: 10.5,24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 665 components: - pos: 12.5,24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 666 components: - pos: 16.5,24.5 @@ -87027,8 +81906,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 713 components: - rot: 3.141592653589793 rad @@ -87037,15 +81914,11 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 753 components: - pos: 12.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 758 components: - rot: -1.5707963267948966 rad @@ -87054,8 +81927,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 815 components: - rot: 1.5707963267948966 rad @@ -87064,8 +81935,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 818 components: - rot: 3.141592653589793 rad @@ -87074,8 +81943,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 822 components: - rot: -1.5707963267948966 rad @@ -87084,8 +81951,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 900 components: - rot: 3.141592653589793 rad @@ -87102,8 +81967,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1140 components: - rot: 3.141592653589793 rad @@ -87130,8 +81993,6 @@ entities: pos: 2.5,34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 2255 components: - pos: 6.5,34.5 @@ -87139,8 +82000,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2734 components: - rot: -1.5707963267948966 rad @@ -87185,8 +82044,6 @@ entities: pos: 9.5,71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 8127 components: - rot: 3.141592653589793 rad @@ -87209,145 +82066,191 @@ entities: pos: 22.5,-93.5 parent: 82 type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor - uid: 9704 components: - rot: 1.5707963267948966 rad pos: 23.5,-92.5 parent: 82 type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor - uid: 9705 components: - pos: 17.5,-92.5 parent: 82 type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor - uid: 9706 components: - rot: -1.5707963267948966 rad pos: 18.5,-93.5 parent: 82 type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor - uid: 9711 components: - rot: 1.5707963267948966 rad pos: 18.5,-90.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9712 components: - pos: 22.5,-90.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9753 components: - rot: 1.5707963267948966 rad pos: 16.5,-87.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9754 components: - rot: -1.5707963267948966 rad pos: 16.5,-88.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9755 components: - pos: 24.5,-87.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9756 components: - rot: 3.141592653589793 rad pos: 24.5,-88.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9764 components: - rot: 1.5707963267948966 rad pos: 8.5,-88.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9776 components: - rot: 3.141592653589793 rad pos: 8.5,-100.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9791 components: - pos: 23.5,-100.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9803 components: - pos: 32.5,-88.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9814 components: - rot: -1.5707963267948966 rad pos: 32.5,-98.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9830 components: - rot: 1.5707963267948966 rad pos: 15.5,-86.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9831 components: - pos: 25.5,-86.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9834 components: - rot: -1.5707963267948966 rad pos: 15.5,-89.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9835 components: - rot: 3.141592653589793 rad pos: 25.5,-89.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9844 components: - rot: 1.5707963267948966 rad pos: 21.5,-78.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 9872 components: - rot: -1.5707963267948966 rad pos: 31.5,-100.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9874 components: - rot: -1.5707963267948966 rad pos: 9.5,-97.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9883 components: - pos: 24.5,-99.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9884 components: - rot: 1.5707963267948966 rad pos: 20.5,-99.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9885 components: - rot: -1.5707963267948966 rad pos: 24.5,-105.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 10083 components: - rot: 1.5707963267948966 rad @@ -87573,8 +82476,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13212 components: - pos: 10.5,36.5 @@ -87855,8 +82756,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15270 components: - pos: -40.5,-26.5 @@ -87880,8 +82779,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15438 components: - pos: -50.5,-22.5 @@ -87912,8 +82809,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15455 components: - rot: -1.5707963267948966 rad @@ -87922,8 +82817,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15458 components: - rot: 1.5707963267948966 rad @@ -87932,8 +82825,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15467 components: - rot: 3.141592653589793 rad @@ -88056,8 +82947,6 @@ entities: pos: 55.5,-30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20055 components: - rot: -1.5707963267948966 rad @@ -88120,8 +83009,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1858 components: - pos: 18.5,16.5 @@ -88129,8 +83016,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9510 components: - pos: 21.5,16.5 @@ -88141,11 +83026,15 @@ entities: - pos: 20.5,-90.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9717 components: - pos: 20.5,-87.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 10257 components: - pos: -21.5,18.5 @@ -88339,395 +83228,285 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 382 components: - pos: 0.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 383 components: - pos: 0.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 384 components: - pos: 2.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 385 components: - pos: 2.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 386 components: - pos: 1.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 387 components: - pos: 1.5,2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 388 components: - pos: 7.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 389 components: - pos: 7.5,2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 390 components: - pos: 13.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 391 components: - pos: 13.5,2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 398 components: - pos: 6.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 399 components: - pos: 6.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 400 components: - pos: 8.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 401 components: - pos: 8.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 402 components: - pos: 12.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 403 components: - pos: 12.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 404 components: - pos: 14.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 405 components: - pos: 14.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 406 components: - pos: 14.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 407 components: - pos: 12.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 408 components: - pos: 8.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 409 components: - pos: 6.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 410 components: - pos: 2.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 411 components: - pos: 0.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 422 components: - rot: 3.141592653589793 rad pos: 0.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 423 components: - rot: 3.141592653589793 rad pos: 2.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 424 components: - rot: 3.141592653589793 rad pos: 6.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 425 components: - rot: 3.141592653589793 rad pos: 8.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 426 components: - rot: 3.141592653589793 rad pos: 12.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 427 components: - rot: 3.141592653589793 rad pos: 14.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 428 components: - rot: 3.141592653589793 rad pos: -0.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 429 components: - rot: 3.141592653589793 rad pos: 1.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 430 components: - rot: 3.141592653589793 rad pos: 1.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 593 components: - pos: 0.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 594 components: - pos: 0.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 595 components: - pos: 0.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 596 components: - pos: 2.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 597 components: - pos: 2.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 598 components: - pos: 2.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 599 components: - pos: 4.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 600 components: - pos: 4.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 601 components: - pos: 4.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 602 components: - pos: 6.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 603 components: - pos: 6.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 604 components: - pos: 6.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 605 components: - pos: 8.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 606 components: - pos: 8.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 607 components: - pos: 8.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 608 components: - pos: 10.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 609 components: - pos: 10.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 610 components: - pos: 10.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 611 components: - pos: 12.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 612 components: - pos: 12.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 613 components: - pos: 12.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 614 components: - pos: 16.5,23.5 @@ -88735,8 +83514,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 615 components: - pos: 16.5,22.5 @@ -88744,8 +83521,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 616 components: - pos: 16.5,21.5 @@ -88753,8 +83528,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 617 components: - pos: 15.5,21.5 @@ -88762,246 +83535,176 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 618 components: - pos: 11.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 619 components: - pos: 9.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 620 components: - pos: 7.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 621 components: - pos: 5.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 622 components: - pos: 3.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 623 components: - pos: 1.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 624 components: - pos: -0.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 626 components: - pos: -0.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 627 components: - pos: -0.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 628 components: - pos: 0.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 629 components: - pos: 1.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 630 components: - pos: 1.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 631 components: - pos: 2.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 632 components: - pos: 2.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 633 components: - pos: 3.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 634 components: - pos: 3.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 635 components: - pos: 4.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 636 components: - pos: 4.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 637 components: - pos: 5.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 638 components: - pos: 5.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 639 components: - pos: 6.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 640 components: - pos: 6.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 641 components: - pos: 7.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 642 components: - pos: 7.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 643 components: - pos: 8.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 644 components: - pos: 8.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 645 components: - pos: 9.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 646 components: - pos: 9.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 647 components: - pos: 10.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 648 components: - pos: 10.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 649 components: - pos: 11.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 650 components: - pos: 11.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 651 components: - pos: 12.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 652 components: - pos: 12.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 653 components: - pos: 15.5,20.5 @@ -89009,8 +83712,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 654 components: - pos: 15.5,19.5 @@ -89018,8 +83719,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 655 components: - pos: 16.5,20.5 @@ -89027,8 +83726,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 656 components: - pos: 16.5,19.5 @@ -89036,8 +83733,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 657 components: - pos: 16.5,18.5 @@ -89045,8 +83740,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 658 components: - pos: 15.5,18.5 @@ -89054,72 +83747,54 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 667 components: - rot: 3.141592653589793 rad pos: 0.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 668 components: - rot: 3.141592653589793 rad pos: -0.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 669 components: - rot: 3.141592653589793 rad pos: 0.5,17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 670 components: - rot: 3.141592653589793 rad pos: 2.5,17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 671 components: - rot: 3.141592653589793 rad pos: 4.5,17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 672 components: - rot: 3.141592653589793 rad pos: 6.5,17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 673 components: - rot: 3.141592653589793 rad pos: 8.5,17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 674 components: - rot: 3.141592653589793 rad pos: 10.5,17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 675 components: - rot: 3.141592653589793 rad @@ -89128,119 +83803,89 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 677 components: - rot: 3.141592653589793 rad pos: 12.5,17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 679 components: - pos: -1.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 684 components: - rot: 3.141592653589793 rad pos: 1.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 685 components: - rot: 3.141592653589793 rad pos: 2.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 686 components: - rot: 3.141592653589793 rad pos: 3.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 687 components: - rot: 3.141592653589793 rad pos: 4.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 688 components: - rot: 3.141592653589793 rad pos: 5.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 689 components: - rot: 3.141592653589793 rad pos: 6.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 690 components: - rot: 3.141592653589793 rad pos: 7.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 691 components: - rot: 3.141592653589793 rad pos: 8.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 692 components: - rot: 3.141592653589793 rad pos: 9.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 693 components: - rot: 3.141592653589793 rad pos: 10.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 694 components: - rot: 3.141592653589793 rad pos: 11.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 695 components: - rot: 3.141592653589793 rad pos: 12.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 714 components: - pos: 16.5,16.5 @@ -89248,8 +83893,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 720 components: - pos: 18.5,12.5 @@ -89257,8 +83900,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 722 components: - pos: 18.5,10.5 @@ -89266,112 +83907,84 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 723 components: - rot: 3.141592653589793 rad pos: 11.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 739 components: - rot: 3.141592653589793 rad pos: -0.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 740 components: - rot: 3.141592653589793 rad pos: 3.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 741 components: - rot: 3.141592653589793 rad pos: 3.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 742 components: - rot: 3.141592653589793 rad pos: 5.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 743 components: - rot: 3.141592653589793 rad pos: 5.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 744 components: - rot: 3.141592653589793 rad pos: 7.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 745 components: - rot: 3.141592653589793 rad pos: 7.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 746 components: - rot: 3.141592653589793 rad pos: 9.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 748 components: - rot: 3.141592653589793 rad pos: 11.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 750 components: - rot: 1.5707963267948966 rad pos: 10.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 751 components: - rot: 1.5707963267948966 rad pos: 10.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 752 components: - rot: 1.5707963267948966 rad pos: 11.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 755 components: - rot: -1.5707963267948966 rad @@ -89380,8 +83993,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 759 components: - rot: 3.141592653589793 rad @@ -89390,8 +84001,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 765 components: - rot: 3.141592653589793 rad @@ -89400,8 +84009,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 788 components: - pos: -5.5,18.5 @@ -89415,24 +84022,18 @@ entities: pos: 0.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 791 components: - rot: 1.5707963267948966 rad pos: 2.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 792 components: - rot: 1.5707963267948966 rad pos: 1.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 793 components: - rot: 1.5707963267948966 rad @@ -89441,48 +84042,36 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 794 components: - rot: 1.5707963267948966 rad pos: 3.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 795 components: - rot: 1.5707963267948966 rad pos: 5.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 796 components: - rot: 1.5707963267948966 rad pos: 7.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 797 components: - rot: 1.5707963267948966 rad pos: 9.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 798 components: - rot: 1.5707963267948966 rad pos: 11.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 816 components: - pos: -1.5,13.5 @@ -89490,8 +84079,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 817 components: - pos: -1.5,12.5 @@ -89499,8 +84086,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 826 components: - rot: 1.5707963267948966 rad @@ -89509,8 +84094,6 @@ entities: type: Transform - color: '#680285FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 827 components: - pos: 13.5,14.5 @@ -89518,32 +84101,24 @@ entities: type: Transform - color: '#680285FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 828 components: - rot: -1.5707963267948966 rad pos: 4.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 829 components: - rot: -1.5707963267948966 rad pos: 6.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 830 components: - rot: -1.5707963267948966 rad pos: 8.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 878 components: - rot: -1.5707963267948966 rad @@ -89552,8 +84127,6 @@ entities: type: Transform - color: '#680285FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 879 components: - rot: -1.5707963267948966 rad @@ -89562,8 +84135,6 @@ entities: type: Transform - color: '#680285FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 880 components: - rot: -1.5707963267948966 rad @@ -89572,8 +84143,6 @@ entities: type: Transform - color: '#680285FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 881 components: - rot: -1.5707963267948966 rad @@ -89582,8 +84151,6 @@ entities: type: Transform - color: '#680285FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 882 components: - rot: -1.5707963267948966 rad @@ -89592,8 +84159,6 @@ entities: type: Transform - color: '#680285FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 883 components: - rot: -1.5707963267948966 rad @@ -89602,8 +84167,6 @@ entities: type: Transform - color: '#680285FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 884 components: - rot: -1.5707963267948966 rad @@ -89612,8 +84175,6 @@ entities: type: Transform - color: '#680285FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 885 components: - rot: -1.5707963267948966 rad @@ -89622,8 +84183,6 @@ entities: type: Transform - color: '#680285FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 886 components: - rot: -1.5707963267948966 rad @@ -89632,8 +84191,6 @@ entities: type: Transform - color: '#680285FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 897 components: - rot: -1.5707963267948966 rad @@ -89642,8 +84199,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 898 components: - rot: -1.5707963267948966 rad @@ -89652,8 +84207,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 909 components: - rot: -1.5707963267948966 rad @@ -89662,8 +84215,6 @@ entities: type: Transform - color: '#680285FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 910 components: - rot: -1.5707963267948966 rad @@ -89672,8 +84223,6 @@ entities: type: Transform - color: '#680285FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 915 components: - pos: -4.5,12.5 @@ -89681,8 +84230,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 930 components: - rot: -1.5707963267948966 rad @@ -89691,8 +84238,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 948 components: - rot: -1.5707963267948966 rad @@ -89701,8 +84246,6 @@ entities: type: Transform - color: '#680285FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 952 components: - rot: 1.5707963267948966 rad @@ -89711,8 +84254,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 953 components: - rot: 1.5707963267948966 rad @@ -90036,8 +84577,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1861 components: - rot: -1.5707963267948966 rad @@ -90046,8 +84585,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1965 components: - rot: 1.5707963267948966 rad @@ -90134,8 +84671,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2261 components: - rot: -1.5707963267948966 rad @@ -90213,8 +84748,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3032 components: - pos: -36.5,-37.5 @@ -90330,28 +84863,28 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6923 components: - rot: 1.5707963267948966 rad pos: 21.5,-90.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 6924 components: - rot: 1.5707963267948966 rad pos: 19.5,-90.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 7070 components: - rot: 3.141592653589793 rad pos: 2.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 7277 components: - rot: 3.141592653589793 rad @@ -90648,66 +85181,82 @@ entities: - pos: 18.5,-91.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9714 components: - pos: 22.5,-91.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9715 components: - pos: 20.5,-89.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9716 components: - pos: 20.5,-88.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9719 components: - rot: 3.141592653589793 rad pos: 19.5,-86.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9720 components: - rot: 3.141592653589793 rad pos: 19.5,-85.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9721 components: - rot: 3.141592653589793 rad pos: 19.5,-84.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9722 components: - rot: 3.141592653589793 rad pos: 19.5,-83.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9724 components: - pos: 19.5,-80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9725 components: - pos: 19.5,-81.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9726 components: - pos: 19.5,-82.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9727 components: - pos: 19.5,-78.5 @@ -90715,8 +85264,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9728 components: - pos: 19.5,-77.5 @@ -90724,8 +85271,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9729 components: - pos: 19.5,-76.5 @@ -90733,8 +85278,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9730 components: - pos: 19.5,-75.5 @@ -90742,8 +85285,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9731 components: - pos: 19.5,-74.5 @@ -90751,8 +85292,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9732 components: - pos: 19.5,-73.5 @@ -90760,8 +85299,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9733 components: - pos: 19.5,-72.5 @@ -90769,8 +85306,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9734 components: - pos: 19.5,-71.5 @@ -90778,8 +85313,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9735 components: - pos: 19.5,-70.5 @@ -90787,8 +85320,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9736 components: - pos: 19.5,-69.5 @@ -90796,8 +85327,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9737 components: - pos: 19.5,-68.5 @@ -90805,8 +85334,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9738 components: - pos: 19.5,-67.5 @@ -90814,8 +85341,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9739 components: - pos: 19.5,-66.5 @@ -90823,8 +85348,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9740 components: - pos: 19.5,-65.5 @@ -90832,8 +85355,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9741 components: - pos: 19.5,-64.5 @@ -90841,8 +85362,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9742 components: - pos: 19.5,-63.5 @@ -90850,8 +85369,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9743 components: - pos: 19.5,-62.5 @@ -90880,649 +85397,863 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9748 components: - rot: -1.5707963267948966 rad pos: 18.5,-87.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9749 components: - rot: -1.5707963267948966 rad pos: 17.5,-87.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9750 components: - rot: -1.5707963267948966 rad pos: 21.5,-87.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9751 components: - rot: -1.5707963267948966 rad pos: 22.5,-87.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9752 components: - rot: -1.5707963267948966 rad pos: 23.5,-87.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9757 components: - rot: 1.5707963267948966 rad pos: 15.5,-88.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9758 components: - rot: 1.5707963267948966 rad pos: 14.5,-88.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9759 components: - rot: 1.5707963267948966 rad pos: 13.5,-88.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9760 components: - rot: 1.5707963267948966 rad pos: 12.5,-88.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9761 components: - rot: 1.5707963267948966 rad pos: 11.5,-88.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9762 components: - rot: 1.5707963267948966 rad pos: 10.5,-88.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9763 components: - rot: 1.5707963267948966 rad pos: 9.5,-88.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9766 components: - pos: 8.5,-90.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9767 components: - pos: 8.5,-91.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9768 components: - pos: 8.5,-92.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9769 components: - pos: 8.5,-93.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9770 components: - pos: 8.5,-94.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9771 components: - pos: 8.5,-95.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9772 components: - pos: 8.5,-96.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9773 components: - pos: 8.5,-97.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9775 components: - pos: 8.5,-99.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9777 components: - rot: 1.5707963267948966 rad pos: 9.5,-100.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9778 components: - rot: 1.5707963267948966 rad pos: 10.5,-100.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9779 components: - rot: 1.5707963267948966 rad pos: 12.5,-100.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9780 components: - rot: 1.5707963267948966 rad pos: 11.5,-100.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9781 components: - rot: 1.5707963267948966 rad pos: 13.5,-100.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9782 components: - rot: 1.5707963267948966 rad pos: 14.5,-100.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9783 components: - rot: 1.5707963267948966 rad pos: 15.5,-100.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9784 components: - rot: 1.5707963267948966 rad pos: 16.5,-100.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9786 components: - rot: -1.5707963267948966 rad pos: 18.5,-100.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9787 components: - rot: -1.5707963267948966 rad pos: 19.5,-100.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9788 components: - rot: -1.5707963267948966 rad pos: 20.5,-100.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9789 components: - rot: -1.5707963267948966 rad pos: 21.5,-100.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9790 components: - rot: -1.5707963267948966 rad pos: 22.5,-100.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9792 components: - pos: 17.5,-101.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9793 components: - pos: 17.5,-102.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9794 components: - pos: 23.5,-101.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9795 components: - pos: 23.5,-102.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9796 components: - rot: -1.5707963267948966 rad pos: 25.5,-88.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9797 components: - rot: -1.5707963267948966 rad pos: 26.5,-88.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9798 components: - rot: -1.5707963267948966 rad pos: 27.5,-88.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9799 components: - rot: -1.5707963267948966 rad pos: 28.5,-88.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9800 components: - rot: -1.5707963267948966 rad pos: 29.5,-88.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9801 components: - rot: -1.5707963267948966 rad pos: 30.5,-88.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9802 components: - rot: -1.5707963267948966 rad pos: 31.5,-88.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9806 components: - rot: 3.141592653589793 rad pos: 32.5,-90.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9807 components: - rot: 3.141592653589793 rad pos: 32.5,-91.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9808 components: - rot: 3.141592653589793 rad pos: 32.5,-92.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9809 components: - rot: 3.141592653589793 rad pos: 32.5,-93.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9810 components: - rot: 3.141592653589793 rad pos: 32.5,-94.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9811 components: - rot: 3.141592653589793 rad pos: 32.5,-95.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9812 components: - rot: 3.141592653589793 rad pos: 32.5,-96.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9813 components: - rot: 3.141592653589793 rad pos: 32.5,-97.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9815 components: - rot: -1.5707963267948966 rad pos: 17.5,-86.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9816 components: - rot: -1.5707963267948966 rad pos: 22.5,-86.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9825 components: - rot: -1.5707963267948966 rad pos: 18.5,-86.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9826 components: - rot: -1.5707963267948966 rad pos: 19.5,-86.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9827 components: - rot: -1.5707963267948966 rad pos: 20.5,-86.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9828 components: - rot: -1.5707963267948966 rad pos: 23.5,-86.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9832 components: - pos: 15.5,-87.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9833 components: - pos: 15.5,-88.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9836 components: - pos: 25.5,-87.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9837 components: - pos: 25.5,-88.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9838 components: - pos: 21.5,-85.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9839 components: - pos: 21.5,-84.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9840 components: - pos: 21.5,-83.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9841 components: - pos: 21.5,-82.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor - uid: 9842 components: - pos: 21.5,-81.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor - uid: 9843 components: - pos: 21.5,-80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor - uid: 9845 components: - rot: 1.5707963267948966 rad pos: 26.5,-89.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9846 components: - rot: 1.5707963267948966 rad pos: 14.5,-89.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9847 components: - rot: 1.5707963267948966 rad pos: 13.5,-89.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9848 components: - rot: 1.5707963267948966 rad pos: 12.5,-89.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9849 components: - rot: 1.5707963267948966 rad pos: 11.5,-89.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9850 components: - rot: 1.5707963267948966 rad pos: 10.5,-89.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9853 components: - rot: -1.5707963267948966 rad pos: 27.5,-89.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9854 components: - rot: -1.5707963267948966 rad pos: 28.5,-89.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9855 components: - rot: -1.5707963267948966 rad pos: 29.5,-89.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9856 components: - rot: -1.5707963267948966 rad pos: 30.5,-89.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9857 components: - rot: 3.141592653589793 rad pos: 31.5,-90.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9858 components: - rot: 3.141592653589793 rad pos: 31.5,-91.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9859 components: - rot: 3.141592653589793 rad pos: 31.5,-92.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9860 components: - rot: 3.141592653589793 rad pos: 31.5,-93.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9861 components: - rot: 3.141592653589793 rad pos: 31.5,-94.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9862 components: - rot: 3.141592653589793 rad pos: 31.5,-95.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9863 components: - rot: 3.141592653589793 rad pos: 31.5,-96.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9865 components: - pos: 9.5,-90.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9866 components: - pos: 9.5,-91.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9867 components: - pos: 9.5,-92.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9868 components: - pos: 9.5,-93.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9869 components: - pos: 9.5,-94.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9870 components: - pos: 9.5,-95.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9871 components: - pos: 9.5,-96.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9873 components: - pos: 31.5,-98.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9875 components: - rot: 3.141592653589793 rad pos: 31.5,-99.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9876 components: - rot: 1.5707963267948966 rad pos: 30.5,-100.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9877 components: - rot: 1.5707963267948966 rad pos: 29.5,-100.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9878 components: - rot: 1.5707963267948966 rad pos: 28.5,-100.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9879 components: - rot: 1.5707963267948966 rad pos: 27.5,-100.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9880 components: - rot: 1.5707963267948966 rad pos: 26.5,-100.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9881 components: - rot: 1.5707963267948966 rad pos: 25.5,-100.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9886 components: - rot: 3.141592653589793 rad pos: 24.5,-101.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9887 components: - rot: 3.141592653589793 rad pos: 24.5,-102.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9888 components: - rot: 3.141592653589793 rad pos: 24.5,-103.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9889 components: - rot: 3.141592653589793 rad pos: 24.5,-104.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9890 components: - rot: 1.5707963267948966 rad pos: 23.5,-105.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9891 components: - rot: 1.5707963267948966 rad pos: 22.5,-105.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9892 components: - rot: 1.5707963267948966 rad pos: 21.5,-105.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9893 components: - rot: 1.5707963267948966 rad pos: 23.5,-99.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9894 components: - rot: 1.5707963267948966 rad pos: 22.5,-99.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9895 components: - rot: 1.5707963267948966 rad pos: 21.5,-99.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 10018 components: - pos: 28.5,9.5 @@ -91538,8 +86269,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10074 components: - rot: 3.141592653589793 rad @@ -91548,8 +86277,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10075 components: - rot: 3.141592653589793 rad @@ -91558,8 +86285,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10076 components: - rot: 3.141592653589793 rad @@ -91568,8 +86293,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10077 components: - rot: 3.141592653589793 rad @@ -91578,8 +86301,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10078 components: - rot: 3.141592653589793 rad @@ -91588,8 +86309,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10079 components: - rot: 3.141592653589793 rad @@ -91598,8 +86317,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10080 components: - rot: 3.141592653589793 rad @@ -91608,8 +86325,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10081 components: - rot: 3.141592653589793 rad @@ -91794,8 +86509,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10110 components: - rot: 1.5707963267948966 rad @@ -91804,8 +86517,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10111 components: - rot: 1.5707963267948966 rad @@ -91814,8 +86525,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10112 components: - rot: 1.5707963267948966 rad @@ -91824,8 +86533,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10113 components: - rot: 1.5707963267948966 rad @@ -91834,8 +86541,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10114 components: - rot: 1.5707963267948966 rad @@ -91844,8 +86549,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10115 components: - rot: 1.5707963267948966 rad @@ -91854,8 +86557,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10116 components: - rot: 1.5707963267948966 rad @@ -91864,8 +86565,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10117 components: - rot: 1.5707963267948966 rad @@ -91874,8 +86573,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10118 components: - rot: 1.5707963267948966 rad @@ -91884,8 +86581,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10119 components: - rot: 1.5707963267948966 rad @@ -92247,8 +86942,6 @@ entities: - pos: 0.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10838 components: - rot: 3.141592653589793 rad @@ -92325,8 +87018,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11539 components: - rot: 1.5707963267948966 rad @@ -92723,8 +87414,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12609 components: - rot: -1.5707963267948966 rad @@ -93289,8 +87978,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12742 components: - rot: 1.5707963267948966 rad @@ -94421,8 +89108,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12946 components: - rot: -1.5707963267948966 rad @@ -95236,8 +89921,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13087 components: - rot: -1.5707963267948966 rad @@ -95246,8 +89929,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13088 components: - rot: -1.5707963267948966 rad @@ -95256,8 +89937,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13089 components: - rot: -1.5707963267948966 rad @@ -95266,8 +89945,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13092 components: - rot: 1.5707963267948966 rad @@ -95894,8 +90571,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13196 components: - rot: 1.5707963267948966 rad @@ -96035,8 +90710,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13221 components: - rot: -1.5707963267948966 rad @@ -96782,8 +91455,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13352 components: - rot: 3.141592653589793 rad @@ -97820,8 +92491,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13531 components: - rot: -1.5707963267948966 rad @@ -98255,8 +92924,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13602 components: - rot: 3.141592653589793 rad @@ -98289,8 +92956,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13607 components: - pos: -33.5,-15.5 @@ -98496,8 +93161,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13640 components: - rot: 3.141592653589793 rad @@ -98530,8 +93193,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13644 components: - rot: 3.141592653589793 rad @@ -99155,8 +93816,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13747 components: - pos: 2.5,-13.5 @@ -99356,8 +94015,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13779 components: - rot: 1.5707963267948966 rad @@ -100303,8 +94960,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13938 components: - rot: 1.5707963267948966 rad @@ -100360,8 +95015,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13953 components: - rot: -1.5707963267948966 rad @@ -100526,8 +95179,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14184 components: - pos: 21.5,-59.5 @@ -101809,8 +96460,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14683 components: - pos: 3.5,-36.5 @@ -101881,8 +96530,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14702 components: - rot: 3.141592653589793 rad @@ -102040,8 +96687,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14730 components: - pos: -10.5,-32.5 @@ -103180,8 +97825,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14960 components: - rot: -1.5707963267948966 rad @@ -103263,8 +97906,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14979 components: - pos: -39.5,-30.5 @@ -103464,8 +98105,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15429 components: - rot: 3.141592653589793 rad @@ -103482,8 +98121,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15431 components: - rot: 3.141592653589793 rad @@ -103524,8 +98161,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15439 components: - rot: -1.5707963267948966 rad @@ -103534,8 +98169,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15440 components: - rot: -1.5707963267948966 rad @@ -103544,8 +98177,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15441 components: - rot: -1.5707963267948966 rad @@ -103593,8 +98224,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15452 components: - rot: -1.5707963267948966 rad @@ -103603,8 +98232,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15453 components: - rot: -1.5707963267948966 rad @@ -103613,8 +98240,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15460 components: - pos: -56.5,-23.5 @@ -103622,8 +98247,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15461 components: - pos: -56.5,-24.5 @@ -103659,8 +98282,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15468 components: - rot: 1.5707963267948966 rad @@ -103685,8 +98306,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15471 components: - rot: 1.5707963267948966 rad @@ -103790,8 +98409,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18571 components: - rot: 1.5707963267948966 rad @@ -105000,8 +99617,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19319 components: - rot: 3.141592653589793 rad @@ -105010,8 +99625,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19320 components: - rot: 3.141592653589793 rad @@ -105020,8 +99633,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19321 components: - rot: 3.141592653589793 rad @@ -105030,8 +99641,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19322 components: - rot: 3.141592653589793 rad @@ -105040,8 +99649,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19323 components: - rot: 3.141592653589793 rad @@ -105050,8 +99657,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19324 components: - rot: 3.141592653589793 rad @@ -105060,8 +99665,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19325 components: - rot: 3.141592653589793 rad @@ -105070,8 +99673,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19326 components: - rot: 3.141592653589793 rad @@ -105080,8 +99681,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19327 components: - rot: 3.141592653589793 rad @@ -105090,8 +99689,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19328 components: - rot: 3.141592653589793 rad @@ -105100,8 +99697,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19329 components: - rot: 3.141592653589793 rad @@ -105110,8 +99705,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19802 components: - pos: 72.5,3.5 @@ -105688,8 +100281,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 20013 components: - pos: 54.5,-22.5 @@ -105697,8 +100288,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 20014 components: - pos: 54.5,-23.5 @@ -105706,8 +100295,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 20015 components: - pos: 54.5,-24.5 @@ -105715,8 +100302,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 20016 components: - pos: 54.5,-25.5 @@ -105724,8 +100309,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 20017 components: - pos: 54.5,-26.5 @@ -105733,8 +100316,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 20018 components: - pos: 54.5,-27.5 @@ -105742,8 +100323,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 20019 components: - pos: 54.5,-28.5 @@ -105751,8 +100330,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 20020 components: - pos: 54.5,-29.5 @@ -105760,8 +100337,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 20021 components: - pos: 54.5,-30.5 @@ -105769,8 +100344,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 20022 components: - pos: 54.5,-31.5 @@ -105778,8 +100351,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 20023 components: - pos: 54.5,-32.5 @@ -105787,8 +100358,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 20026 components: - pos: 54.5,-35.5 @@ -105904,32 +100473,24 @@ entities: pos: 56.5,-30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20049 components: - rot: 3.141592653589793 rad pos: 55.5,-31.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20050 components: - rot: 3.141592653589793 rad pos: 55.5,-32.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20051 components: - rot: 3.141592653589793 rad pos: 55.5,-33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20053 components: - rot: 3.141592653589793 rad @@ -106177,8 +100738,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24549 components: - rot: 1.5707963267948966 rad @@ -106234,15 +100793,11 @@ entities: - pos: 29.5,76.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25803 components: - pos: 31.5,76.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25804 components: - pos: 29.5,74.5 @@ -106375,8 +100930,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 736 components: - rot: -1.5707963267948966 rad @@ -106385,24 +100938,18 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 747 components: - rot: 3.141592653589793 rad pos: 11.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 749 components: - rot: 1.5707963267948966 rad pos: 9.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 766 components: - rot: -1.5707963267948966 rad @@ -106411,8 +100958,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 799 components: - pos: 8.5,11.5 @@ -106420,8 +100965,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 800 components: - pos: 6.5,11.5 @@ -106429,8 +100972,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 801 components: - pos: 0.5,11.5 @@ -106438,8 +100979,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 802 components: - pos: 2.5,11.5 @@ -106447,8 +100986,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 809 components: - pos: 12.5,11.5 @@ -106456,8 +100993,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 810 components: - pos: 14.5,11.5 @@ -106465,8 +101000,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 811 components: - rot: 3.141592653589793 rad @@ -106475,8 +101008,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 812 components: - rot: 3.141592653589793 rad @@ -106485,8 +101016,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 813 components: - rot: 3.141592653589793 rad @@ -106495,8 +101024,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 814 components: - rot: 3.141592653589793 rad @@ -106505,8 +101032,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 819 components: - pos: -0.5,13.5 @@ -106514,8 +101039,6 @@ entities: type: Transform - color: '#680285FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 820 components: - rot: 3.141592653589793 rad @@ -106524,8 +101047,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 824 components: - pos: 15.5,13.5 @@ -106533,8 +101054,6 @@ entities: type: Transform - color: '#680285FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 873 components: - rot: 3.141592653589793 rad @@ -106543,8 +101062,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 874 components: - pos: 3.5,13.5 @@ -106552,8 +101069,6 @@ entities: type: Transform - color: '#680285FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 875 components: - pos: 5.5,13.5 @@ -106561,8 +101076,6 @@ entities: type: Transform - color: '#680285FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 876 components: - pos: 11.5,13.5 @@ -106570,8 +101083,6 @@ entities: type: Transform - color: '#680285FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 877 components: - pos: 9.5,13.5 @@ -106579,8 +101090,6 @@ entities: type: Transform - color: '#680285FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 887 components: - rot: 3.141592653589793 rad @@ -106589,8 +101098,6 @@ entities: type: Transform - color: '#680285FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 899 components: - pos: -4.5,16.5 @@ -106598,8 +101105,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 902 components: - rot: -1.5707963267948966 rad @@ -106608,8 +101113,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 903 components: - rot: -1.5707963267948966 rad @@ -106618,8 +101121,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1163 components: - pos: 37.5,20.5 @@ -106736,8 +101237,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1867 components: - rot: 3.141592653589793 rad @@ -106746,8 +101245,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1879 components: - rot: 3.141592653589793 rad @@ -106756,8 +101253,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2540 components: - rot: 1.5707963267948966 rad @@ -106846,81 +101341,109 @@ entities: pos: 17.5,-93.5 parent: 82 type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor - uid: 9702 components: - rot: 3.141592653589793 rad pos: 23.5,-93.5 parent: 82 type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor - uid: 9718 components: - rot: 3.141592653589793 rad pos: 19.5,-87.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9765 components: - rot: 1.5707963267948966 rad pos: 8.5,-89.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9774 components: - rot: 1.5707963267948966 rad pos: 8.5,-98.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9785 components: - pos: 17.5,-100.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9804 components: - rot: -1.5707963267948966 rad pos: 32.5,-89.5 parent: 82 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9805 components: - pos: 16.5,-86.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9824 components: - pos: 24.5,-86.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9829 components: - rot: 3.141592653589793 rad pos: 21.5,-86.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9851 components: - rot: -1.5707963267948966 rad pos: 31.5,-89.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9852 components: - rot: 1.5707963267948966 rad pos: 9.5,-89.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9864 components: - rot: 1.5707963267948966 rad pos: 31.5,-97.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9882 components: - rot: 1.5707963267948966 rad pos: 24.5,-100.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 10072 components: - rot: -1.5707963267948966 rad @@ -106929,8 +101452,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10082 components: - rot: -1.5707963267948966 rad @@ -108594,8 +103115,6 @@ entities: pos: 54.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19842 components: - pos: 61.5,4.5 @@ -108828,24 +103347,32 @@ entities: pos: 16.5,-92.5 parent: 82 type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor - uid: 9698 components: - rot: 1.5707963267948966 rad pos: 16.5,-93.5 parent: 82 type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor - uid: 9699 components: - rot: -1.5707963267948966 rad pos: 24.5,-92.5 parent: 82 type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor - uid: 9700 components: - rot: -1.5707963267948966 rad pos: 24.5,-93.5 parent: 82 type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor - uid: 13224 components: - rot: 3.141592653589793 rad @@ -109048,6 +103575,8 @@ entities: pos: 21.5,-79.5 parent: 82 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 9509 components: - rot: 1.5707963267948966 rad @@ -109062,12 +103591,16 @@ entities: pos: 18.5,-92.5 parent: 82 type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor - uid: 9708 components: - rot: 3.141592653589793 rad pos: 22.5,-92.5 parent: 82 type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor - uid: 9723 components: - pos: 19.5,-79.5 @@ -109179,8 +103712,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - uid: 377 components: - pos: 2.5,8.5 @@ -109188,8 +103719,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - uid: 378 components: - pos: 6.5,8.5 @@ -109197,8 +103726,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - uid: 379 components: - pos: 8.5,8.5 @@ -109206,8 +103733,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - uid: 380 components: - pos: 12.5,8.5 @@ -109215,8 +103740,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - uid: 381 components: - pos: 14.5,8.5 @@ -109224,8 +103747,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - uid: 678 components: - pos: -1.5,17.5 @@ -109233,8 +103754,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 763 @@ -109269,8 +103788,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#947507FF' type: AtmosPipeColor - uid: 1869 @@ -109281,8 +103798,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#947507FF' type: AtmosPipeColor - uid: 1878 @@ -109293,8 +103808,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#947507FF' type: AtmosPipeColor - proto: GasVentPump @@ -109305,8 +103818,6 @@ entities: pos: 20.5,11.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1259 @@ -109315,8 +103826,6 @@ entities: pos: 28.5,3.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1262 @@ -109325,8 +103834,6 @@ entities: pos: 32.5,12.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1263 @@ -109335,8 +103842,6 @@ entities: pos: 26.5,8.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 2821 @@ -109348,8 +103853,6 @@ entities: - ShutdownSubscribers: - 24530 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 5525 @@ -109358,8 +103861,6 @@ entities: pos: 27.5,-31.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 7278 @@ -109367,8 +103868,6 @@ entities: - pos: 18.5,72.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 7735 @@ -109377,8 +103876,6 @@ entities: pos: 72.5,-6.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 7736 @@ -109387,8 +103884,6 @@ entities: pos: 85.5,-6.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 7883 @@ -109400,8 +103895,6 @@ entities: - ShutdownSubscribers: - 24525 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 9709 @@ -109410,71 +103903,69 @@ entities: pos: 20.5,-91.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9817 components: - rot: 1.5707963267948966 rad pos: 31.5,-89.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9818 components: - pos: 20.5,-86.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9819 components: - rot: -1.5707963267948966 rad pos: 9.5,-89.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9820 components: - rot: -1.5707963267948966 rad pos: 9.5,-98.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9821 components: - rot: 1.5707963267948966 rad pos: 31.5,-98.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9822 components: - rot: 3.141592653589793 rad pos: 17.5,-103.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 9823 components: - rot: 3.141592653589793 rad pos: 23.5,-103.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 12592 components: - rot: 3.141592653589793 rad pos: 37.5,19.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12610 @@ -109483,8 +103974,6 @@ entities: pos: 40.5,27.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12611 @@ -109493,8 +103982,6 @@ entities: pos: 44.5,27.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12617 @@ -109503,8 +103990,6 @@ entities: pos: 32.5,26.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12623 @@ -109513,8 +103998,6 @@ entities: pos: 12.5,56.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12637 @@ -109523,8 +104006,6 @@ entities: pos: 36.5,28.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12657 @@ -109533,8 +104014,6 @@ entities: pos: 39.5,33.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12671 @@ -109542,8 +104021,6 @@ entities: - pos: 44.5,35.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12685 @@ -109552,8 +104029,6 @@ entities: pos: 32.5,44.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12754 @@ -109561,8 +104036,6 @@ entities: - pos: 28.5,55.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12755 @@ -109570,8 +104043,6 @@ entities: - pos: 23.5,55.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12785 @@ -109579,8 +104050,6 @@ entities: - pos: 27.5,64.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12786 @@ -109589,8 +104058,6 @@ entities: pos: 25.5,59.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12787 @@ -109599,8 +104066,6 @@ entities: pos: 19.5,59.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12818 @@ -109608,8 +104073,6 @@ entities: - pos: 22.5,65.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12853 @@ -109618,8 +104081,6 @@ entities: pos: 28.5,69.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12859 @@ -109628,8 +104089,6 @@ entities: pos: 14.5,64.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12879 @@ -109638,8 +104097,6 @@ entities: pos: 23.5,50.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12902 @@ -109648,8 +104105,6 @@ entities: pos: 7.5,50.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12968 @@ -109658,8 +104113,6 @@ entities: pos: -3.5,50.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12969 @@ -109668,8 +104121,6 @@ entities: pos: 0.5,43.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13006 @@ -109677,8 +104128,6 @@ entities: - pos: -13.5,48.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13008 @@ -109687,8 +104136,6 @@ entities: pos: -11.5,44.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13009 @@ -109697,8 +104144,6 @@ entities: pos: -13.5,38.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13041 @@ -109707,8 +104152,6 @@ entities: pos: -19.5,50.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13044 @@ -109717,8 +104160,6 @@ entities: pos: -25.5,54.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13058 @@ -109727,8 +104168,6 @@ entities: pos: -24.5,48.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13091 @@ -109737,8 +104176,6 @@ entities: pos: -26.5,41.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13105 @@ -109747,8 +104184,6 @@ entities: pos: -24.5,38.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13117 @@ -109757,8 +104192,6 @@ entities: pos: -19.5,38.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13142 @@ -109767,8 +104200,6 @@ entities: pos: -20.5,30.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13177 @@ -109777,8 +104208,6 @@ entities: pos: 5.5,30.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13197 @@ -109787,8 +104216,6 @@ entities: pos: -0.5,35.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13198 @@ -109797,8 +104224,6 @@ entities: pos: -4.5,36.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13214 @@ -109806,8 +104231,6 @@ entities: - pos: 9.5,37.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13257 @@ -109816,8 +104239,6 @@ entities: pos: -41.5,30.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13265 @@ -109826,8 +104247,6 @@ entities: pos: -40.5,26.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13316 @@ -109835,8 +104254,6 @@ entities: - pos: -57.5,54.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13359 @@ -109845,8 +104262,6 @@ entities: pos: -24.5,-3.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13376 @@ -109855,8 +104270,6 @@ entities: pos: -58.5,45.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13377 @@ -109865,8 +104278,6 @@ entities: pos: -60.5,36.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13405 @@ -109875,8 +104286,6 @@ entities: pos: -22.5,20.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13423 @@ -109885,8 +104294,6 @@ entities: pos: -15.5,19.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13456 @@ -109895,8 +104302,6 @@ entities: pos: -22.5,2.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13466 @@ -109905,8 +104310,6 @@ entities: pos: -24.5,-11.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13526 @@ -109914,8 +104317,6 @@ entities: - pos: -36.5,-10.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13546 @@ -109924,8 +104325,6 @@ entities: pos: -18.5,-12.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13553 @@ -109934,8 +104333,6 @@ entities: pos: -31.5,-12.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13595 @@ -109944,8 +104341,6 @@ entities: pos: -42.5,-16.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13599 @@ -109954,8 +104349,6 @@ entities: pos: -37.5,-7.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13606 @@ -109964,8 +104357,6 @@ entities: pos: -41.5,-3.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13618 @@ -109974,8 +104365,6 @@ entities: pos: -27.5,4.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13646 @@ -109983,8 +104372,6 @@ entities: - pos: -8.5,1.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13647 @@ -109993,8 +104380,6 @@ entities: pos: -7.5,-3.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13725 @@ -110003,8 +104388,6 @@ entities: pos: 19.5,-3.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13767 @@ -110013,8 +104396,6 @@ entities: pos: 4.5,-11.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13768 @@ -110023,8 +104404,6 @@ entities: pos: 10.5,-11.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13849 @@ -110032,8 +104411,6 @@ entities: - pos: 24.5,-18.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13868 @@ -110042,8 +104419,6 @@ entities: pos: 34.5,-19.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13885 @@ -110052,8 +104427,6 @@ entities: pos: 19.5,-18.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13943 @@ -110061,8 +104434,6 @@ entities: - pos: 27.5,-27.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13947 @@ -110071,8 +104442,6 @@ entities: pos: 12.5,-14.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13948 @@ -110081,8 +104450,6 @@ entities: pos: 3.5,-15.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13954 @@ -110091,8 +104458,6 @@ entities: pos: 9.5,-17.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14217 @@ -110101,8 +104466,6 @@ entities: pos: 20.5,-46.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14218 @@ -110111,8 +104474,6 @@ entities: pos: 15.5,-48.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14237 @@ -110121,8 +104482,6 @@ entities: pos: 20.5,-61.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14519 @@ -110131,8 +104490,6 @@ entities: pos: 23.5,-7.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14576 @@ -110141,8 +104498,6 @@ entities: pos: 6.5,-24.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14600 @@ -110151,8 +104506,6 @@ entities: pos: -5.5,-25.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14636 @@ -110161,8 +104514,6 @@ entities: pos: -4.5,-13.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14691 @@ -110171,8 +104522,6 @@ entities: pos: 3.5,-35.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14692 @@ -110181,8 +104530,6 @@ entities: pos: 11.5,-35.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14693 @@ -110191,8 +104538,6 @@ entities: pos: 6.5,-40.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14724 @@ -110201,8 +104546,6 @@ entities: pos: -13.5,-33.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14725 @@ -110210,8 +104553,6 @@ entities: - pos: -11.5,-30.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14783 @@ -110220,8 +104561,6 @@ entities: pos: -5.5,-38.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14793 @@ -110230,8 +104569,6 @@ entities: pos: -10.5,-52.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14811 @@ -110240,8 +104577,6 @@ entities: pos: -5.5,-60.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14822 @@ -110250,8 +104585,6 @@ entities: pos: -17.5,-25.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14836 @@ -110260,8 +104593,6 @@ entities: pos: -25.5,-27.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14837 @@ -110273,8 +104604,6 @@ entities: - ShutdownSubscribers: - 24530 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14854 @@ -110282,8 +104611,6 @@ entities: - pos: -17.5,-29.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14907 @@ -110295,8 +104622,6 @@ entities: - ShutdownSubscribers: - 24525 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14940 @@ -110305,8 +104630,6 @@ entities: pos: -35.5,-23.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14941 @@ -110315,8 +104638,6 @@ entities: pos: -23.5,-17.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 15273 @@ -110328,8 +104649,6 @@ entities: - ShutdownSubscribers: - 24530 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 15410 @@ -110341,8 +104660,6 @@ entities: - ShutdownSubscribers: - 24530 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 15419 @@ -110350,8 +104667,6 @@ entities: - pos: -49.5,-28.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 15474 @@ -110360,8 +104675,6 @@ entities: pos: -55.5,-28.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 18838 @@ -110370,8 +104683,6 @@ entities: pos: -13.5,26.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 18843 @@ -110380,8 +104691,6 @@ entities: pos: -26.5,26.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 19206 @@ -110390,8 +104699,6 @@ entities: pos: 44.5,1.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 19228 @@ -110399,8 +104706,6 @@ entities: - pos: 38.5,-3.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 19229 @@ -110409,8 +104714,6 @@ entities: pos: 40.5,0.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 19279 @@ -110419,8 +104722,6 @@ entities: pos: 37.5,-12.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 19286 @@ -110428,8 +104729,6 @@ entities: - pos: 50.5,-1.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 19287 @@ -110438,8 +104737,6 @@ entities: pos: 55.5,-5.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 19290 @@ -110447,8 +104744,6 @@ entities: - pos: 59.5,-1.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 19386 @@ -110457,8 +104752,6 @@ entities: pos: 42.5,16.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 19841 @@ -110467,8 +104760,6 @@ entities: pos: 61.5,3.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 19843 @@ -110477,8 +104768,6 @@ entities: pos: 74.5,3.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 19888 @@ -110487,8 +104776,6 @@ entities: pos: 79.5,9.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 19889 @@ -110496,8 +104783,6 @@ entities: - pos: 75.5,14.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 19890 @@ -110505,8 +104790,6 @@ entities: - pos: 82.5,14.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 19915 @@ -110515,8 +104798,6 @@ entities: pos: 55.5,-15.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 19916 @@ -110525,8 +104806,6 @@ entities: pos: 61.5,-18.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 20032 @@ -110535,8 +104814,6 @@ entities: pos: 54.5,-37.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 20045 @@ -110545,8 +104822,6 @@ entities: pos: 46.5,-45.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 20547 @@ -110555,8 +104830,6 @@ entities: pos: 11.5,-3.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 20638 @@ -110568,8 +104841,6 @@ entities: - ShutdownSubscribers: - 24525 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 22404 @@ -110578,8 +104849,6 @@ entities: pos: -57.5,30.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 22780 @@ -110588,8 +104857,6 @@ entities: pos: 13.5,30.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 24481 @@ -110598,8 +104865,6 @@ entities: pos: 28.5,24.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 25723 @@ -110607,8 +104872,6 @@ entities: - pos: 23.5,74.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 26241 @@ -110617,8 +104880,6 @@ entities: pos: -29.5,16.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - proto: GasVentScrubber @@ -110628,30 +104889,22 @@ entities: - pos: 1.5,4.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 396 components: - pos: 7.5,4.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 397 components: - pos: 13.5,4.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 1000 components: - rot: 3.141592653589793 rad pos: -4.5,11.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 1260 @@ -110659,8 +104912,6 @@ entities: - pos: 32.5,3.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 1261 @@ -110669,8 +104920,6 @@ entities: pos: 27.5,8.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 2852 @@ -110682,8 +104931,6 @@ entities: - ShutdownSubscribers: - 24525 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 2868 @@ -110694,8 +104941,6 @@ entities: - ShutdownSubscribers: - 24525 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 3278 @@ -110707,8 +104952,6 @@ entities: - ShutdownSubscribers: - 24530 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 4455 @@ -110717,8 +104960,6 @@ entities: pos: -40.5,-27.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 7337 @@ -110726,8 +104967,6 @@ entities: - pos: 19.5,72.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 7738 @@ -110736,8 +104975,6 @@ entities: pos: 73.5,-7.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 7739 @@ -110746,8 +104983,6 @@ entities: pos: 86.5,-7.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 9896 @@ -110756,70 +104991,68 @@ entities: pos: 8.5,-97.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor - uid: 9897 components: - pos: 9.5,-88.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor - uid: 9898 components: - rot: 3.141592653589793 rad pos: 16.5,-87.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor - uid: 9899 components: - rot: 3.141592653589793 rad pos: 24.5,-87.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor - uid: 9900 components: - pos: 31.5,-88.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor - uid: 9901 components: - rot: -1.5707963267948966 rad pos: 32.5,-97.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor - uid: 9902 components: - rot: 3.141592653589793 rad pos: 20.5,-100.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor - uid: 9903 components: - rot: 1.5707963267948966 rad pos: 20.5,-105.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound + - color: '#990000FF' + type: AtmosPipeColor - uid: 10271 components: - rot: 1.5707963267948966 rad pos: 32.5,14.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 10982 @@ -110828,8 +105061,6 @@ entities: pos: -58.5,36.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 10985 @@ -110837,8 +105068,6 @@ entities: - pos: 26.5,59.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 10989 @@ -110847,8 +105076,6 @@ entities: pos: 42.5,15.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 10993 @@ -110856,8 +105083,6 @@ entities: - pos: -4.5,-24.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12519 @@ -110866,8 +105091,6 @@ entities: pos: 27.5,54.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12558 @@ -110876,8 +105099,6 @@ entities: pos: 46.5,14.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12581 @@ -110886,8 +105107,6 @@ entities: pos: 44.5,28.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12585 @@ -110896,8 +105115,6 @@ entities: pos: 39.5,28.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12591 @@ -110905,8 +105122,6 @@ entities: - pos: 36.5,20.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12625 @@ -110915,8 +105130,6 @@ entities: pos: 19.5,58.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12630 @@ -110925,8 +105138,6 @@ entities: pos: 32.5,25.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12631 @@ -110935,8 +105146,6 @@ entities: pos: 36.5,25.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12665 @@ -110944,8 +105153,6 @@ entities: - pos: 40.5,33.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12678 @@ -110953,8 +105160,6 @@ entities: - pos: 45.5,34.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12684 @@ -110963,8 +105168,6 @@ entities: pos: 32.5,42.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12757 @@ -110973,8 +105176,6 @@ entities: pos: 24.5,54.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12768 @@ -110983,8 +105184,6 @@ entities: pos: 12.5,55.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12817 @@ -110993,8 +105192,6 @@ entities: pos: 21.5,64.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12862 @@ -111002,8 +105199,6 @@ entities: - pos: 36.5,49.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12903 @@ -111011,8 +105206,6 @@ entities: - pos: 6.5,50.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12970 @@ -111020,8 +105213,6 @@ entities: - pos: 1.5,44.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12971 @@ -111030,8 +105221,6 @@ entities: pos: -4.5,49.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12991 @@ -111040,8 +105229,6 @@ entities: pos: -12.5,38.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13005 @@ -111049,8 +105236,6 @@ entities: - pos: -12.5,48.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13007 @@ -111058,8 +105243,6 @@ entities: - pos: -14.5,44.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13042 @@ -111067,8 +105250,6 @@ entities: - pos: -19.5,48.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13043 @@ -111077,8 +105258,6 @@ entities: pos: -25.5,53.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13057 @@ -111086,8 +105265,6 @@ entities: - pos: -26.5,48.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13103 @@ -111096,8 +105273,6 @@ entities: pos: -23.5,41.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13104 @@ -111106,8 +105281,6 @@ entities: pos: -24.5,37.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13116 @@ -111116,8 +105289,6 @@ entities: pos: -19.5,36.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13134 @@ -111126,8 +105297,6 @@ entities: pos: -18.5,26.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13141 @@ -111136,8 +105305,6 @@ entities: pos: -19.5,30.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13178 @@ -111145,8 +105312,6 @@ entities: - pos: 4.5,31.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13213 @@ -111155,8 +105320,6 @@ entities: pos: 9.5,36.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13258 @@ -111164,8 +105327,6 @@ entities: - pos: -39.5,30.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13266 @@ -111174,8 +105335,6 @@ entities: pos: -39.5,26.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13302 @@ -111184,8 +105343,6 @@ entities: pos: -56.5,30.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13318 @@ -111193,8 +105350,6 @@ entities: - pos: -61.5,54.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13324 @@ -111203,8 +105358,6 @@ entities: pos: -62.5,49.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13358 @@ -111212,8 +105365,6 @@ entities: - pos: -20.5,-3.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13375 @@ -111222,8 +105373,6 @@ entities: pos: -60.5,45.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13404 @@ -111232,8 +105381,6 @@ entities: pos: -22.5,17.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13422 @@ -111242,8 +105389,6 @@ entities: pos: -15.5,14.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13455 @@ -111252,8 +105397,6 @@ entities: pos: -22.5,3.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13504 @@ -111262,8 +105405,6 @@ entities: pos: -21.5,-11.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13513 @@ -111272,8 +105413,6 @@ entities: pos: -18.5,-16.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13545 @@ -111281,8 +105420,6 @@ entities: - pos: -31.5,-13.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13559 @@ -111291,8 +105428,6 @@ entities: pos: -36.5,-15.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13596 @@ -111301,8 +105436,6 @@ entities: pos: -40.5,-16.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13597 @@ -111310,8 +105443,6 @@ entities: - pos: -40.5,-3.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13598 @@ -111320,8 +105451,6 @@ entities: pos: -33.5,-7.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13610 @@ -111330,8 +105459,6 @@ entities: pos: -33.5,-18.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13617 @@ -111340,8 +105467,6 @@ entities: pos: -28.5,1.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13645 @@ -111349,8 +105474,6 @@ entities: - pos: -4.5,2.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13648 @@ -111359,8 +105482,6 @@ entities: pos: -5.5,-3.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13724 @@ -111369,8 +105490,6 @@ entities: pos: 19.5,-5.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13769 @@ -111378,8 +105497,6 @@ entities: - pos: 2.5,-10.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13770 @@ -111387,8 +105504,6 @@ entities: - pos: 12.5,-10.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13848 @@ -111397,8 +105512,6 @@ entities: pos: 24.5,-21.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13869 @@ -111407,8 +105520,6 @@ entities: pos: 34.5,-20.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13884 @@ -111417,8 +105528,6 @@ entities: pos: 19.5,-21.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13934 @@ -111426,8 +105535,6 @@ entities: - pos: 27.5,-34.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13942 @@ -111436,8 +105543,6 @@ entities: pos: 26.5,-27.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13946 @@ -111446,8 +105551,6 @@ entities: pos: 11.5,-15.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13949 @@ -111456,8 +105559,6 @@ entities: pos: 2.5,-15.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13955 @@ -111466,8 +105567,6 @@ entities: pos: 12.5,-17.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14223 @@ -111476,8 +105575,6 @@ entities: pos: 16.5,-43.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14224 @@ -111485,8 +105582,6 @@ entities: - pos: 15.5,-49.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14225 @@ -111495,8 +105590,6 @@ entities: pos: 20.5,-45.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14236 @@ -111505,8 +105598,6 @@ entities: pos: 20.5,-60.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14520 @@ -111515,8 +105606,6 @@ entities: pos: 28.5,-7.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14567 @@ -111524,8 +105613,6 @@ entities: - pos: 8.5,-24.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14677 @@ -111533,8 +105620,6 @@ entities: - pos: 1.5,-32.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14678 @@ -111542,8 +105627,6 @@ entities: - pos: 7.5,-32.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14679 @@ -111551,8 +105634,6 @@ entities: - pos: 13.5,-32.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14685 @@ -111561,8 +105642,6 @@ entities: pos: -1.5,-37.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14686 @@ -111571,8 +105650,6 @@ entities: pos: 3.5,-37.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14687 @@ -111581,8 +105658,6 @@ entities: pos: 11.5,-37.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14688 @@ -111591,8 +105666,6 @@ entities: pos: 16.5,-37.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14689 @@ -111600,8 +105673,6 @@ entities: - pos: 0.5,-34.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14690 @@ -111609,8 +105680,6 @@ entities: - pos: 14.5,-34.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14694 @@ -111619,8 +105688,6 @@ entities: pos: 8.5,-40.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14726 @@ -111628,8 +105695,6 @@ entities: - pos: -10.5,-30.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14744 @@ -111638,8 +105703,6 @@ entities: pos: -13.5,-42.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14755 @@ -111648,8 +105711,6 @@ entities: pos: -5.5,-37.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14792 @@ -111657,8 +105718,6 @@ entities: - pos: -10.5,-48.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14810 @@ -111667,8 +105726,6 @@ entities: pos: -5.5,-61.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14823 @@ -111676,8 +105733,6 @@ entities: - pos: -14.5,-25.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14868 @@ -111686,8 +105741,6 @@ entities: pos: -25.5,-31.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14880 @@ -111698,8 +105751,6 @@ entities: - ShutdownSubscribers: - 24530 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14886 @@ -111711,8 +105762,6 @@ entities: - ShutdownSubscribers: - 24525 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14942 @@ -111721,8 +105770,6 @@ entities: pos: -21.5,-17.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 15400 @@ -111733,8 +105780,6 @@ entities: - ShutdownSubscribers: - 24530 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 15401 @@ -111743,8 +105788,6 @@ entities: pos: -44.5,-27.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 15411 @@ -111755,8 +105798,6 @@ entities: - ShutdownSubscribers: - 24530 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 15475 @@ -111765,8 +105806,6 @@ entities: pos: -55.5,-31.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 15476 @@ -111775,8 +105814,6 @@ entities: pos: -55.5,-27.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 15503 @@ -111785,8 +105822,6 @@ entities: pos: -43.5,-34.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 18842 @@ -111795,8 +105830,6 @@ entities: pos: -25.5,26.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 19167 @@ -111804,8 +105837,6 @@ entities: - pos: 41.5,3.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 19168 @@ -111814,8 +105845,6 @@ entities: pos: 46.5,1.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 19226 @@ -111824,8 +105853,6 @@ entities: pos: 40.5,-0.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 19227 @@ -111833,8 +105860,6 @@ entities: - pos: 42.5,-4.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 19264 @@ -111843,8 +105868,6 @@ entities: pos: 45.5,-11.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 19265 @@ -111853,8 +105876,6 @@ entities: pos: 48.5,-8.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 19285 @@ -111862,8 +105883,6 @@ entities: - pos: 53.5,-1.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 19289 @@ -111871,8 +105890,6 @@ entities: - pos: 61.5,-1.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 19840 @@ -111880,8 +105897,6 @@ entities: - pos: 59.5,3.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 19844 @@ -111889,8 +105904,6 @@ entities: - pos: 77.5,3.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 19885 @@ -111899,8 +105912,6 @@ entities: pos: 79.5,6.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 19891 @@ -111908,8 +105919,6 @@ entities: - pos: 76.5,13.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 19892 @@ -111917,8 +105926,6 @@ entities: - pos: 83.5,13.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 19917 @@ -111927,8 +105934,6 @@ entities: pos: 61.5,-20.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 20062 @@ -111937,31 +105942,23 @@ entities: pos: 59.5,-37.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 20068 components: - rot: 1.5707963267948966 rad pos: 52.5,-42.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 20069 components: - rot: -1.5707963267948966 rad pos: 58.5,-41.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 20671 components: - pos: 3.5,-3.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 22441 @@ -111970,8 +105967,6 @@ entities: pos: 55.5,-16.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 22494 @@ -111979,8 +105974,6 @@ entities: - pos: 14.5,31.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 22572 @@ -111988,8 +105981,6 @@ entities: - pos: 56.5,-4.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 22593 @@ -111998,8 +105989,6 @@ entities: pos: -4.5,34.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 22656 @@ -112008,8 +105997,6 @@ entities: pos: -4.5,-12.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 24548 @@ -112017,8 +106004,6 @@ entities: - pos: 22.5,50.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 25724 @@ -112026,8 +106011,6 @@ entities: - pos: 24.5,74.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 26240 @@ -112035,8 +106018,6 @@ entities: - pos: -29.5,19.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - proto: GasVolumePump @@ -124165,73 +118146,19 @@ entities: type: EntityStorage - uid: 3658 components: - - pos: 38.5,-16.5 + - pos: 46.5,-7.5 parent: 82 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 3659 components: - - pos: 41.5,-16.5 + - pos: 46.5,-6.5 parent: 82 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 3660 components: - - pos: 44.5,-16.5 + - pos: 38.5,-11.5 parent: 82 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 8370 components: - pos: -63.5,51.5 @@ -124301,6 +118228,11 @@ entities: - 0 - 0 type: EntityStorage + - uid: 17130 + components: + - pos: 37.5,-11.5 + parent: 82 + type: Transform - uid: 17785 components: - pos: 34.5,-11.5 @@ -125099,8 +119031,6 @@ entities: - pos: 15.5,74.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - proto: MachineAnomalyVessel entities: - uid: 3194 @@ -128199,13 +122129,6 @@ entities: - pos: 29.5,33.5 parent: 82 type: Transform -- proto: PosterContrabandVoteWeh - entities: - - uid: 22463 - components: - - pos: 33.5,-11.5 - parent: 82 - type: Transform - proto: PosterContrabandWehWatches entities: - uid: 22340 @@ -128974,8 +122897,6 @@ entities: pos: -29.5,-36.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 3407 components: - rot: 3.141592653589793 rad @@ -129042,8 +122963,6 @@ entities: - pos: 2.5,20.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 7245 components: - rot: 3.141592653589793 rad @@ -129143,8 +123062,6 @@ entities: - pos: 12.5,20.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 11188 components: - rot: 1.5707963267948966 rad @@ -129174,8 +123091,6 @@ entities: pos: -33.5,-44.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 11500 components: - pos: 66.5,-18.5 @@ -129212,24 +123127,18 @@ entities: pos: -42.5,-44.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 15520 components: - rot: -1.5707963267948966 rad pos: -36.5,-40.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 15912 components: - rot: 1.5707963267948966 rad pos: -37.5,-43.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 16944 components: - rot: 1.5707963267948966 rad @@ -130713,8 +124622,6 @@ entities: pos: -39.5,-37.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 22634 components: - rot: -1.5707963267948966 rad @@ -140981,6 +134888,11 @@ entities: - pos: 3.6323419,-16.35247 parent: 82 type: Transform + - uid: 17131 + components: + - pos: 60.709972,-8.613329 + parent: 82 + type: Transform - uid: 19393 components: - pos: 40.646282,29.698788 @@ -141014,7 +134926,7 @@ entities: type: Transform - uid: 22192 components: - - pos: 60.38359,-8.403477 + - pos: 60.40058,-8.604193 parent: 82 type: Transform - proto: RubberStampHop @@ -141024,13 +134936,6 @@ entities: - pos: -6.5865464,1.3825479 parent: 82 type: Transform -- proto: RubberStampHos - entities: - - uid: 22194 - components: - - pos: 60.647476,-8.593557 - parent: 82 - type: Transform - proto: RubberStampSyndicate entities: - uid: 8619 @@ -141336,9 +135241,14 @@ entities: - pos: 58.5,-6.5 parent: 82 type: Transform - - SecondsUntilStateChange: -390107.34 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 3190 type: DeviceLinkSink @@ -141347,9 +135257,14 @@ entities: - pos: 59.5,-6.5 parent: 82 type: Transform - - SecondsUntilStateChange: -390107.34 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 3190 type: DeviceLinkSink @@ -141359,9 +135274,14 @@ entities: pos: 3.5,-19.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141371,9 +135291,14 @@ entities: pos: 2.5,-19.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141382,9 +135307,14 @@ entities: - pos: 1.5,-8.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141393,9 +135323,14 @@ entities: - pos: 2.5,-8.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141404,9 +135339,14 @@ entities: - pos: 3.5,-8.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141415,9 +135355,14 @@ entities: - pos: 5.5,-8.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141426,9 +135371,14 @@ entities: - pos: 6.5,-8.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141437,9 +135387,14 @@ entities: - pos: 7.5,-8.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141448,9 +135403,14 @@ entities: - pos: 8.5,-8.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141459,9 +135419,14 @@ entities: - pos: 9.5,-8.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141470,9 +135435,14 @@ entities: - pos: 11.5,-8.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141481,9 +135451,14 @@ entities: - pos: 12.5,-8.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141492,9 +135467,14 @@ entities: - pos: 13.5,-8.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141503,9 +135483,14 @@ entities: - pos: 14.5,-8.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141515,9 +135500,14 @@ entities: pos: 16.5,-11.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141527,9 +135517,14 @@ entities: pos: 16.5,-10.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141539,9 +135534,14 @@ entities: pos: -1.5,-11.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141551,9 +135551,14 @@ entities: pos: -1.5,-10.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141563,9 +135568,14 @@ entities: pos: 25.5,64.5 parent: 82 type: Transform - - SecondsUntilStateChange: -401259.6 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25178 type: DeviceLinkSink @@ -141598,9 +135608,14 @@ entities: - pos: 62.5,-6.5 parent: 82 type: Transform - - SecondsUntilStateChange: -390107.34 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 3190 type: DeviceLinkSink @@ -141609,9 +135624,14 @@ entities: - pos: -8.5,32.5 parent: 82 type: Transform - - SecondsUntilStateChange: -399951.5 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25181 type: DeviceLinkSink @@ -141620,9 +135640,14 @@ entities: - pos: -9.5,32.5 parent: 82 type: Transform - - SecondsUntilStateChange: -399951.5 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25181 type: DeviceLinkSink @@ -141631,9 +135656,14 @@ entities: - pos: -7.5,32.5 parent: 82 type: Transform - - SecondsUntilStateChange: -399951.5 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25181 type: DeviceLinkSink @@ -141643,9 +135673,14 @@ entities: pos: -6.5,34.5 parent: 82 type: Transform - - SecondsUntilStateChange: -399951.5 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25181 type: DeviceLinkSink @@ -141655,9 +135690,14 @@ entities: pos: -6.5,35.5 parent: 82 type: Transform - - SecondsUntilStateChange: -399951.5 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25181 type: DeviceLinkSink @@ -141666,9 +135706,14 @@ entities: - pos: 60.5,-6.5 parent: 82 type: Transform - - SecondsUntilStateChange: -390107.34 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 3190 type: DeviceLinkSink @@ -141678,9 +135723,14 @@ entities: pos: 44.5,12.5 parent: 82 type: Transform - - SecondsUntilStateChange: -89448.695 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 14025 type: DeviceLinkSink @@ -141690,9 +135740,14 @@ entities: pos: 44.5,13.5 parent: 82 type: Transform - - SecondsUntilStateChange: -89448.695 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 14025 type: DeviceLinkSink @@ -141702,9 +135757,14 @@ entities: pos: -46.5,-34.5 parent: 82 type: Transform - - SecondsUntilStateChange: -392892.66 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25230 type: DeviceLinkSink @@ -141714,9 +135774,14 @@ entities: pos: 12.5,-19.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141726,9 +135791,14 @@ entities: pos: 11.5,-19.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141738,9 +135808,14 @@ entities: pos: 10.5,-19.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141750,9 +135825,14 @@ entities: pos: 4.5,-19.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141761,9 +135841,14 @@ entities: - pos: 0.5,-8.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141773,9 +135858,14 @@ entities: pos: 44.5,14.5 parent: 82 type: Transform - - SecondsUntilStateChange: -89448.695 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 14025 type: DeviceLinkSink @@ -141785,9 +135875,14 @@ entities: pos: -6.5,33.5 parent: 82 type: Transform - - SecondsUntilStateChange: -399951.5 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25181 type: DeviceLinkSink @@ -141796,9 +135891,14 @@ entities: - pos: -10.5,32.5 parent: 82 type: Transform - - SecondsUntilStateChange: -399951.5 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25181 type: DeviceLinkSink @@ -141808,9 +135908,14 @@ entities: pos: 25.5,65.5 parent: 82 type: Transform - - SecondsUntilStateChange: -401259.6 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25178 type: DeviceLinkSink @@ -141819,9 +135924,14 @@ entities: - pos: 28.5,67.5 parent: 82 type: Transform - - SecondsUntilStateChange: -401259.6 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25178 type: DeviceLinkSink @@ -141830,9 +135940,14 @@ entities: - pos: 27.5,67.5 parent: 82 type: Transform - - SecondsUntilStateChange: -401259.6 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25178 type: DeviceLinkSink @@ -141841,9 +135956,14 @@ entities: - pos: 28.5,62.5 parent: 82 type: Transform - - SecondsUntilStateChange: -401259.6 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25178 type: DeviceLinkSink @@ -141852,9 +135972,14 @@ entities: - pos: 26.5,62.5 parent: 82 type: Transform - - SecondsUntilStateChange: -401259.6 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25178 type: DeviceLinkSink @@ -141863,9 +135988,14 @@ entities: - pos: 27.5,62.5 parent: 82 type: Transform - - SecondsUntilStateChange: -401259.6 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25178 type: DeviceLinkSink @@ -141875,9 +136005,14 @@ entities: pos: -6.5,36.5 parent: 82 type: Transform - - SecondsUntilStateChange: -399951.5 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25181 type: DeviceLinkSink @@ -141887,9 +136022,14 @@ entities: pos: -46.5,-35.5 parent: 82 type: Transform - - SecondsUntilStateChange: -392892.66 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25230 type: DeviceLinkSink @@ -141898,9 +136038,14 @@ entities: - pos: -45.5,-33.5 parent: 82 type: Transform - - SecondsUntilStateChange: -392892.66 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25230 type: DeviceLinkSink @@ -141909,9 +136054,14 @@ entities: - pos: -44.5,-33.5 parent: 82 type: Transform - - SecondsUntilStateChange: -392892.66 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25230 type: DeviceLinkSink @@ -141920,9 +136070,14 @@ entities: - pos: -42.5,-33.5 parent: 82 type: Transform - - SecondsUntilStateChange: -392892.66 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25230 type: DeviceLinkSink @@ -141931,9 +136086,14 @@ entities: - pos: -41.5,-33.5 parent: 82 type: Transform - - SecondsUntilStateChange: -392892.66 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25230 type: DeviceLinkSink @@ -141942,9 +136102,14 @@ entities: - pos: 61.5,-6.5 parent: 82 type: Transform - - SecondsUntilStateChange: -390107.34 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 3190 type: DeviceLinkSink @@ -141954,9 +136119,14 @@ entities: pos: 57.5,-7.5 parent: 82 type: Transform - - SecondsUntilStateChange: -390107.34 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 3190 type: DeviceLinkSink @@ -141966,9 +136136,14 @@ entities: pos: 57.5,-8.5 parent: 82 type: Transform - - SecondsUntilStateChange: -390107.34 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 3190 type: DeviceLinkSink @@ -141978,9 +136153,14 @@ entities: pos: 57.5,-10.5 parent: 82 type: Transform - - SecondsUntilStateChange: -390107.34 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 3190 type: DeviceLinkSink @@ -141990,9 +136170,14 @@ entities: pos: 57.5,-11.5 parent: 82 type: Transform - - SecondsUntilStateChange: -390107.34 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 3190 type: DeviceLinkSink @@ -142002,9 +136187,14 @@ entities: pos: 57.5,-9.5 parent: 82 type: Transform - - SecondsUntilStateChange: -390107.34 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 3190 type: DeviceLinkSink @@ -142014,9 +136204,14 @@ entities: pos: 59.5,-14.5 parent: 82 type: Transform - - SecondsUntilStateChange: -390107.34 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 3190 type: DeviceLinkSink @@ -142026,9 +136221,14 @@ entities: pos: 59.5,-15.5 parent: 82 type: Transform - - SecondsUntilStateChange: -390107.34 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 3190 type: DeviceLinkSink @@ -142205,9 +136405,14 @@ entities: - pos: -26.5,60.5 parent: 82 type: Transform - - SecondsUntilStateChange: -445943.38 - state: Closing + - state: Closed type: Door + - enabled: True + type: Occluder + - canCollide: True + type: Physics + - airBlocked: True + type: Airtight - links: - 24531 type: DeviceLinkSink @@ -142216,9 +136421,14 @@ entities: - pos: -24.5,60.5 parent: 82 type: Transform - - SecondsUntilStateChange: -445943.38 - state: Closing + - state: Closed type: Door + - enabled: True + type: Occluder + - canCollide: True + type: Physics + - airBlocked: True + type: Airtight - links: - 24531 type: DeviceLinkSink @@ -142227,9 +136437,14 @@ entities: - pos: -25.5,60.5 parent: 82 type: Transform - - SecondsUntilStateChange: -445943.38 - state: Closing + - state: Closed type: Door + - enabled: True + type: Occluder + - canCollide: True + type: Physics + - airBlocked: True + type: Airtight - links: - 24531 type: DeviceLinkSink @@ -142238,9 +136453,14 @@ entities: - pos: -23.5,60.5 parent: 82 type: Transform - - SecondsUntilStateChange: -445943.38 - state: Closing + - state: Closed type: Door + - enabled: True + type: Occluder + - canCollide: True + type: Physics + - airBlocked: True + type: Airtight - links: - 24531 type: DeviceLinkSink @@ -142249,9 +136469,14 @@ entities: - pos: -27.5,60.5 parent: 82 type: Transform - - SecondsUntilStateChange: -445943.38 - state: Closing + - state: Closed type: Door + - enabled: True + type: Occluder + - canCollide: True + type: Physics + - airBlocked: True + type: Airtight - links: - 24531 type: DeviceLinkSink @@ -144505,51 +138730,71 @@ entities: entities: - uid: 4488 components: + - name: SMES Bank 2 + type: MetaData - pos: -27.5,43.5 parent: 82 type: Transform - uid: 4520 components: + - name: SMES Bank 4 + type: MetaData - pos: -23.5,43.5 parent: 82 type: Transform - uid: 4526 components: + - name: SMES Bank 3 + type: MetaData - pos: -23.5,44.5 parent: 82 type: Transform - uid: 4528 components: + - name: SMES Bank 1 + type: MetaData - pos: -27.5,44.5 parent: 82 type: Transform - uid: 7366 components: + - name: South Solars SMES + type: MetaData - pos: -40.5,-51.5 parent: 82 type: Transform - uid: 8060 components: + - name: Telecomms SMES + type: MetaData - pos: -27.5,20.5 parent: 82 type: Transform - uid: 9361 components: + - name: AI Core West SMES + type: MetaData - pos: 13.5,-91.5 parent: 82 type: Transform - uid: 9362 components: + - name: AI Core East SMES + type: MetaData - pos: 27.5,-91.5 parent: 82 type: Transform - uid: 10210 components: + - name: Southwest Solars SMES + type: MetaData - pos: -65.5,-26.5 parent: 82 type: Transform - uid: 11869 components: + - name: Northwest Solars SMES + type: MetaData - pos: -53.5,12.5 parent: 82 type: Transform @@ -144557,6 +138802,8 @@ entities: entities: - uid: 6736 components: + - name: PA SMES + type: MetaData - pos: -22.5,55.5 parent: 82 type: Transform @@ -146403,6 +140650,18 @@ entities: - pos: -16.5,-8.5 parent: 82 type: Transform +- proto: SpawnPointBorg + entities: + - uid: 18367 + components: + - pos: 12.5,57.5 + parent: 82 + type: Transform + - uid: 22194 + components: + - pos: 13.5,56.5 + parent: 82 + type: Transform - proto: SpawnPointBotanist entities: - uid: 22261 @@ -147228,76 +141487,106 @@ entities: entities: - uid: 1264 components: + - name: Atmos Substation + type: MetaData - pos: 19.5,5.5 parent: 82 type: Transform - uid: 6737 components: + - name: PA Substation + type: MetaData - pos: -22.5,56.5 parent: 82 type: Transform - uid: 6802 components: + - name: Grav Substation + type: MetaData - pos: -1.5,55.5 parent: 82 type: Transform - uid: 7942 components: + - name: Telecomms Substation + type: MetaData - pos: -28.5,15.5 parent: 82 type: Transform - uid: 12038 components: + - name: Dorms Substation + type: MetaData - pos: 13.5,-41.5 parent: 82 type: Transform - uid: 12716 components: + - name: Bridge Substation + type: MetaData - pos: 15.5,-13.5 parent: 82 type: Transform - uid: 14574 components: + - name: Supply Substation + type: MetaData - pos: 25.5,22.5 parent: 82 type: Transform - uid: 15682 components: + - name: HoP Substation + type: MetaData - pos: -4.5,5.5 parent: 82 type: Transform - uid: 16166 components: + - name: Engineering Substation 1 + type: MetaData - pos: -8.5,39.5 parent: 82 type: Transform - uid: 16167 components: + - name: Engineering Substation 2 + type: MetaData - pos: -8.5,38.5 parent: 82 type: Transform - uid: 16880 components: + - name: Science Substation + type: MetaData - pos: 7.5,44.5 parent: 82 type: Transform - uid: 17128 components: + - name: Salvage Substation + type: MetaData - pos: 40.5,37.5 parent: 82 type: Transform - uid: 17334 components: + - name: Security Substation + type: MetaData - pos: 57.5,6.5 parent: 82 type: Transform - uid: 18230 components: + - name: Service Substation + type: MetaData - pos: -12.5,-15.5 parent: 82 type: Transform - uid: 18370 components: + - name: Medical Substation + type: MetaData - pos: -25.5,-46.5 parent: 82 type: Transform @@ -147322,12 +141611,16 @@ entities: entities: - uid: 8423 components: + - name: AI Core West Substation + type: MetaData - rot: 1.5707963267948966 rad pos: 11.5,-91.5 parent: 82 type: Transform - uid: 8431 components: + - name: AI Core East Substation + type: MetaData - rot: -1.5707963267948966 rad pos: 29.5,-91.5 parent: 82 @@ -170814,6 +165107,11 @@ entities: type: Transform - proto: WindoorSecureMedicalLocked entities: + - uid: 2867 + components: + - pos: -29.5,-36.5 + parent: 82 + type: Transform - uid: 2980 components: - rot: 3.141592653589793 rad @@ -170832,13 +165130,6 @@ entities: pos: -23.5,-30.5 parent: 82 type: Transform -- proto: WindoorSecureParamedicLocked - entities: - - uid: 2867 - components: - - pos: -29.5,-36.5 - parent: 82 - type: Transform - proto: WindoorSecureSalvageLocked entities: - uid: 6849 @@ -172523,17 +166814,27 @@ entities: - pos: -11.5,17.5 parent: 82 type: Transform - - SecondsUntilStateChange: -571050.75 - state: Opening + - state: Open type: Door + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight + - enabled: False + type: Occluder - uid: 4246 components: - pos: -11.5,19.5 parent: 82 type: Transform - - SecondsUntilStateChange: -571049 - state: Opening + - state: Open type: Door + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight + - enabled: False + type: Occluder - uid: 8013 components: - pos: -53.5,-2.5 diff --git a/Resources/Maps/marathon.yml b/Resources/Maps/marathon.yml index 11c3025aa70..dc3e2b47079 100644 --- a/Resources/Maps/marathon.yml +++ b/Resources/Maps/marathon.yml @@ -1,64 +1,64 @@ meta: - format: 5 + format: 6 postmapinit: false tilemap: 0: Space 3: FloorArcadeRed - 6: FloorAsteroidSand - 8: FloorAsteroidSandRed - 10: FloorAsteroidTile - 11: FloorBar - 13: FloorBlue - 14: FloorBlueCircuit - 21: FloorClown - 22: FloorDark - 25: FloorDarkHerringbone - 27: FloorDarkMono - 29: FloorDarkPavement - 30: FloorDarkPavementVertical - 31: FloorDarkPlastic - 34: FloorEighties - 37: FloorFreezer - 38: FloorGlass - 39: FloorGold - 40: FloorGrass - 41: FloorGrassDark - 42: FloorGrassJungle - 43: FloorGrassLight - 44: FloorGreenCircuit - 48: FloorHydro - 49: FloorKitchen - 50: FloorLaundry - 51: FloorLino - 54: FloorMime - 55: FloorMono - 57: FloorPlanetGrass - 58: FloorPlastic - 59: FloorRGlass - 60: FloorReinforced - 62: FloorRockVault - 63: FloorShowroom - 70: FloorSnow - 71: FloorSteel - 72: FloorSteelCheckerDark - 73: FloorSteelCheckerLight - 74: FloorSteelDiagonal - 76: FloorSteelDirty - 77: FloorSteelHerringbone - 78: FloorSteelMini - 81: FloorSteelPavement - 82: FloorSteelPavementVertical - 83: FloorTechMaint - 84: FloorTechMaint2 - 87: FloorWhite - 90: FloorWhiteHerringbone - 91: FloorWhiteMini - 92: FloorWhiteMono - 96: FloorWhitePlastic - 97: FloorWood - 99: Lattice - 100: Plating - 101: PlatingAsteroid + 7: FloorAsteroidSand + 9: FloorAsteroidSandRed + 11: FloorAsteroidTile + 12: FloorBar + 14: FloorBlue + 15: FloorBlueCircuit + 22: FloorClown + 26: FloorDark + 29: FloorDarkHerringbone + 31: FloorDarkMono + 33: FloorDarkPavement + 34: FloorDarkPavementVertical + 35: FloorDarkPlastic + 38: FloorEighties + 41: FloorFreezer + 42: FloorGlass + 43: FloorGold + 44: FloorGrass + 45: FloorGrassDark + 46: FloorGrassJungle + 47: FloorGrassLight + 51: FloorGreenCircuit + 55: FloorHydro + 57: FloorKitchen + 58: FloorLaundry + 59: FloorLino + 62: FloorMime + 63: FloorMono + 68: FloorPlanetGrass + 69: FloorPlastic + 70: FloorRGlass + 71: FloorReinforced + 73: FloorRockVault + 74: FloorShowroom + 81: FloorSnow + 83: FloorSteel + 84: FloorSteelCheckerDark + 85: FloorSteelCheckerLight + 86: FloorSteelDiagonal + 88: FloorSteelDirty + 89: FloorSteelHerringbone + 90: FloorSteelMini + 93: FloorSteelPavement + 94: FloorSteelPavementVertical + 95: FloorTechMaint + 96: FloorTechMaint2 + 99: FloorWhite + 102: FloorWhiteHerringbone + 103: FloorWhiteMini + 104: FloorWhiteMono + 108: FloorWhitePlastic + 109: FloorWood + 111: Lattice + 112: Plating + 113: PlatingAsteroid entities: - proto: "" entities: @@ -71,268 +71,356 @@ entities: - chunks: -1,0: ind: -1,0 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAUcAAABkAAAARwAAAEcAAAJHAAAARwAAA0cAAAFHAAABRwAAA0cAAAJHAAADRwAAAkcAAAJHAAACRwAAAkcAAAJHAAACRwAAA0cAAAFHAAADRwAAAEcAAABHAAACRwAAAUcAAAFHAAADRwAAA0cAAAJHAAACRwAAAUcAAAFHAAABRwAAAkcAAAJHAAACRwAAAEcAAAJHAAADRwAAA0cAAANHAAAARwAAA0cAAABHAAACRwAAA0cAAANHAAABRwAAAUcAAANHAAADRwAAA0cAAANHAAACRwAAAUcAAANHAAACRwAAAmQAAABkAAAAZAAAAGQAAABHAAADRwAAAkcAAAJHAAAARwAAA0cAAAFHAAABZAAAAEcAAAJHAAABRwAAA2QAAABJAAACSQAAA0kAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAAARwAAAxYAAAFkAAAASQAAAUkAAABJAAAASQAAAEkAAAJkAAAARwAAABYAAAFHAAABFgAAAkcAAAMWAAAARwAAAhYAAANHAAABFgAAAkkAAAFJAAACSQAAAkkAAAJJAAADZAAAABYAAANHAAABFgAAA0cAAAEWAAABRwAAAxYAAANHAAADFgAAAEcAAAFJAAADSQAAA0kAAABJAAAASQAAAWQAAABHAAACFgAAAUcAAAAWAAACRwAAAxYAAAFHAAAAFgAAAkcAAAIWAAADSQAAA0kAAAJJAAABSQAAAUkAAAFkAAAAFgAAAUcAAAMWAAAARwAAAxYAAABHAAAAFgAAA0cAAAMWAAADRwAAAkkAAANJAAACSQAAAkkAAABJAAABZAAAAEcAAAIWAAABRwAAAxYAAANHAAACFgAAAkcAAAIWAAABRwAAARYAAAFJAAAASQAAA0kAAAJJAAADSQAAAWQAAAAWAAADRwAAARYAAAFHAAABFgAAAUcAAAIWAAAARwAAAxYAAAFHAAACZAAAAGQAAAAWAAACZAAAAGQAAABkAAAAZAAAAGQAAAAWAAACZAAAABYAAAEWAAACFgAAABYAAAIWAAACFgAAAiUAAABkAAAAFgAAARYAAAEWAAADFgAAABYAAAIWAAAAFgAAAGQAAABhAAACYQAAAmEAAAJhAAACYQAAAGEAAAIlAAAAZAAAABYAAAEWAAACFgAAARYAAAAWAAADFgAAABYAAAAWAAADYQAAAmEAAABhAAACYQAAA2EAAAFhAAACJQAAAGQAAABHAAABZAAAAGQAAAAWAAABZAAAAGQAAABkAAAAZAAAABYAAAIWAAABFgAAAhYAAAMWAAACFgAAAg== + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAADUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAABcAAAAAAAUwAAAAACUwAAAAABUwAAAAADcAAAAAAAVQAAAAACVQAAAAADVQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAUwAAAAADGgAAAAABcAAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACcAAAAAAAUwAAAAAAGgAAAAABUwAAAAABGgAAAAACUwAAAAADGgAAAAAAUwAAAAACGgAAAAADUwAAAAABGgAAAAACVQAAAAABVQAAAAACVQAAAAACVQAAAAACVQAAAAADcAAAAAAAGgAAAAADUwAAAAABGgAAAAADUwAAAAABGgAAAAABUwAAAAADGgAAAAADUwAAAAADGgAAAAAAUwAAAAABVQAAAAADVQAAAAADVQAAAAAAVQAAAAAAVQAAAAABcAAAAAAAUwAAAAACGgAAAAABUwAAAAAAGgAAAAACUwAAAAADGgAAAAABUwAAAAAAGgAAAAACUwAAAAACGgAAAAADVQAAAAADVQAAAAACVQAAAAABVQAAAAABVQAAAAABcAAAAAAAGgAAAAABUwAAAAADGgAAAAAAUwAAAAADGgAAAAAAUwAAAAAAGgAAAAADUwAAAAADGgAAAAADUwAAAAACVQAAAAADVQAAAAACVQAAAAACVQAAAAAAVQAAAAABcAAAAAAAUwAAAAACGgAAAAABUwAAAAADGgAAAAADUwAAAAACGgAAAAACUwAAAAACGgAAAAABUwAAAAABGgAAAAABVQAAAAAAVQAAAAADVQAAAAACVQAAAAADVQAAAAABcAAAAAAAGgAAAAADUwAAAAABGgAAAAABUwAAAAABGgAAAAABUwAAAAACGgAAAAAAUwAAAAADGgAAAAABUwAAAAACcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAGgAAAAABGgAAAAACGgAAAAAAGgAAAAACGgAAAAACGgAAAAACKQAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAADGgAAAAAAGgAAAAACGgAAAAAAGgAAAAAAcAAAAAAAbQAAAAACbQAAAAACbQAAAAACbQAAAAACbQAAAAAAbQAAAAACKQAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAABGgAAAAAAGgAAAAADGgAAAAAAGgAAAAAAGgAAAAADbQAAAAACbQAAAAAAbQAAAAACbQAAAAADbQAAAAABbQAAAAACKQAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAACGgAAAAADGgAAAAACGgAAAAAC + version: 6 0,0: ind: 0,0 - tiles: RwAAA0cAAAFkAAAARwAAA0cAAABHAAACZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAEcAAABkAAAARwAAAUcAAABHAAADRwAAA0cAAABHAAAARwAAAkcAAABHAAAARwAAAkcAAAFHAAACRwAAAUcAAAFHAAAARwAAAEcAAABHAAADRwAAAEcAAAJHAAABRwAAAkcAAABHAAAARwAAA0cAAANHAAAARwAAA0cAAAJHAAADRwAAA2QAAABHAAABRwAAAUcAAABHAAACRwAAAEcAAAFHAAABRwAAA0cAAAFHAAADRwAAAkcAAABHAAACRwAAAEcAAAFkAAAAZAAAAEcAAANHAAACRwAAAUcAAAJHAAABRwAAA0cAAAJkAAAARwAAA0cAAANHAAADRwAAAEcAAAJHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAAJkAAAAZAAAAEcAAAFHAAABRwAAAWQAAABUAAAAZAAAAGQAAABkAAAARwAAARYAAANHAAAAFgAAA0cAAAIWAAABRwAAA2QAAABHAAADRwAAA0cAAAFkAAAAZAAAAGQAAABkAAAAZAAAABYAAAFHAAACFgAAAEcAAAAWAAADRwAAAhYAAAJHAAACRwAAAEcAAANHAAADZAAAAGQAAABkAAAAZAAAAGQAAABHAAABFgAAAUcAAAMWAAAARwAAARYAAAJHAAABRwAAAkcAAANHAAADRwAAAWQAAABTAAAAUwAAAFMAAABTAAAAFgAAAkcAAAMWAAAAZAAAABYAAAFHAAABFgAAAGQAAABHAAADRwAAAkcAAANkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAEWAAACRwAAA2QAAABHAAACFgAAAkcAAAJkAAAARwAAA0cAAANHAAACZAAAABYAAAIWAAACFgAAAhYAAAIWAAADRwAAARYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAADRwAAAmQAAAAWAAADFgAAAxYAAAIWAAAAFgAAAGQAAAAWAAABZAAAABYAAAIWAAABFgAAA2QAAABHAAAARwAAAUcAAAJkAAAAFgAAAhYAAAAWAAAAFgAAAGEAAAFkAAAAFQAAABUAAAA2AAAANgAAADYAAABkAAAARwAAAkcAAAFHAAACZAAAAGQAAABkAAAAZAAAAGQAAABhAAADZAAAABUAAAAVAAAAFQAAADYAAAA2AAAAZAAAAEcAAABHAAABRwAAA2QAAAAWAAAAFgAAAxYAAAMWAAACFgAAAWQAAAAWAAACFgAAARYAAABkAAAAVAAAAGQAAABHAAAARwAAAEcAAABHAAABRwAAA0cAAAJHAAAAFgAAAA== + tiles: UwAAAAADUwAAAAABcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAADcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAACcAAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABGgAAAAADUwAAAAAAGgAAAAADUwAAAAACGgAAAAABUwAAAAADcAAAAAAAUwAAAAADUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABUwAAAAACGgAAAAAAUwAAAAAAGgAAAAADUwAAAAACGgAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABGgAAAAABUwAAAAADGgAAAAAAUwAAAAABGgAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAADUwAAAAABcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAGgAAAAACUwAAAAADGgAAAAAAcAAAAAAAGgAAAAABUwAAAAABGgAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABGgAAAAACUwAAAAADcAAAAAAAUwAAAAACGgAAAAACUwAAAAACcAAAAAAAUwAAAAADUwAAAAADUwAAAAACcAAAAAAAGgAAAAACGgAAAAACGgAAAAACGgAAAAACGgAAAAADUwAAAAABGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAACcAAAAAAAGgAAAAADGgAAAAADGgAAAAACGgAAAAAAGgAAAAAAcAAAAAAAGgAAAAABcAAAAAAAGgAAAAACGgAAAAABGgAAAAADcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAGgAAAAACGgAAAAAAGgAAAAAAGgAAAAAAbQAAAAABcAAAAAAAFgAAAAAAFgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADcAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAPgAAAAAAPgAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAGgAAAAAAGgAAAAADGgAAAAADGgAAAAACGgAAAAABcAAAAAAAGgAAAAACGgAAAAABGgAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAAAGgAAAAAA + version: 6 -1,-1: ind: -1,-1 - tiles: VwAAAVcAAABXAAABVwAAA1cAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAUwAAAFcAAAFXAAABVwAAAFcAAANXAAACVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAACVwAAAlcAAABXAAAAVwAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAFcAAANXAAACVwAAAlcAAANkAAAAVwAAAVcAAAFXAAAAVwAAADwAAAA8AAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFcAAANXAAAAVwAAAFcAAAI8AAAAPAAAAGQAAABkAAAAZAAAAGQAAABXAAADVwAAA1cAAAJXAAADVwAAAWQAAABXAAAAVwAAA1cAAAFXAAABVwAAA1cAAANkAAAAZAAAAGQAAABkAAAAVwAAAFcAAAJXAAACVwAAAFcAAAJXAAABVwAAA1cAAAJXAAADVwAAAlcAAAFXAAADZAAAAGQAAABkAAAAFgAAA1cAAABXAAACVwAAAFcAAAJXAAADZAAAAFcAAAJXAAACVwAAAFcAAAFXAAADVwAAAWQAAABkAAAAZAAAABYAAANkAAAAZAAAAGQAAABXAAABVwAAAmQAAABXAAABVwAAAFcAAABXAAACVwAAAGQAAABkAAAAZAAAAGQAAAAWAAAAVwAAA1cAAAJkAAAAVwAAAVcAAANkAAAAVwAAAFcAAANXAAAAVwAAAlcAAABkAAAAUwAAAGQAAABkAAAAFgAAAFcAAAFXAAAAVwAAA1cAAANXAAACZAAAAGQAAABXAAACZAAAAFcAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABXAAAAVwAAAlcAAANXAAABVwAAAlcAAAFXAAADVwAAAFcAAAJXAAACVwAAA2QAAABHAAABRwAAAkcAAAFkAAAAZAAAAFcAAABXAAAAVwAAAlcAAAJXAAABVwAAA1cAAANXAAABVwAAAVcAAAFHAAADRwAAAUcAAAFHAAABRwAAAGQAAABXAAADVwAAAlcAAANXAAADVwAAA1cAAABXAAAAVwAAAVcAAANXAAADRwAAAEcAAANHAAADRwAAAkcAAAFkAAAAVwAAA1cAAAJXAAABVwAAAFcAAABXAAADVwAAA1cAAAFXAAACVwAAAmQAAABHAAABRwAAA0cAAABkAAAAZAAAAFcAAABXAAABVwAAAFcAAAJXAAAAVwAAAFcAAAJkAAAAZAAAAGQAAABkAAAARwAAAUcAAAJHAAADZAAAAA== + tiles: YwAAAAABYwAAAAAAYwAAAAABYwAAAAADYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAYwAAAAABYwAAAAABYwAAAAAAYwAAAAADYwAAAAACYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAACYwAAAAAAYwAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAADYwAAAAACYwAAAAACYwAAAAADcAAAAAAAYwAAAAABYwAAAAABYwAAAAAAYwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAAAYwAAAAAAYwAAAAACRwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAADYwAAAAACYwAAAAADYwAAAAABcAAAAAAAYwAAAAAAYwAAAAADYwAAAAABYwAAAAABYwAAAAADYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAACYwAAAAACYwAAAAAAYwAAAAACYwAAAAABYwAAAAADYwAAAAACYwAAAAADYwAAAAACYwAAAAABYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADYwAAAAAAYwAAAAACYwAAAAAAYwAAAAACYwAAAAADcAAAAAAAYwAAAAACYwAAAAACYwAAAAAAYwAAAAABYwAAAAADYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAACcAAAAAAAYwAAAAABYwAAAAAAYwAAAAAAYwAAAAACYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAYwAAAAADYwAAAAACcAAAAAAAYwAAAAABYwAAAAADcAAAAAAAYwAAAAAAYwAAAAADYwAAAAAAYwAAAAACYwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAYwAAAAABYwAAAAAAYwAAAAADYwAAAAADYwAAAAACcAAAAAAAcAAAAAAAYwAAAAACcAAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAACYwAAAAADYwAAAAABYwAAAAACYwAAAAABYwAAAAADYwAAAAAAYwAAAAACYwAAAAACYwAAAAADcAAAAAAAUwAAAAABUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAACYwAAAAACYwAAAAABYwAAAAADYwAAAAADYwAAAAABYwAAAAABYwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAYwAAAAADYwAAAAACYwAAAAADYwAAAAADYwAAAAADYwAAAAAAYwAAAAAAYwAAAAABYwAAAAADYwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAABcAAAAAAAYwAAAAADYwAAAAACYwAAAAABYwAAAAAAYwAAAAAAYwAAAAADYwAAAAADYwAAAAABYwAAAAACYwAAAAACcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAABYwAAAAAAYwAAAAACYwAAAAAAYwAAAAAAYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAADcAAAAAAA + version: 6 0,-1: ind: 0,-1 - tiles: ZAAAAGQAAABTAAAAMwAAADMAAAAzAAAAZAAAAGEAAANhAAABYQAAAGQAAABHAAACRwAAAUcAAAEWAAAAZAAAAGQAAABkAAAAZAAAADMAAAAzAAAAMwAAAGQAAABhAAADYQAAAWEAAABkAAAARwAAAkcAAANHAAADFgAAAWQAAABkAAAAZAAAAFMAAAAzAAAAMwAAADMAAABkAAAAYQAAAmEAAABhAAACZAAAAEcAAAFHAAACRwAAARYAAAJkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAEcAAANkAAAAZAAAAGQAAAAWAAACZAAAAGEAAANhAAADYQAAAioAAABHAAAARwAAAEcAAABHAAAARwAAA0cAAABHAAAAFgAAAWQAAABkAAAAFgAAABYAAABhAAAAYQAAAGEAAAIdAAACRwAAAEcAAANHAAADRwAAAUcAAAFHAAAARwAAABYAAABHAAADFgAAARYAAAMWAAABYQAAA2EAAAJhAAADHQAAA0cAAABHAAACRwAAA0cAAAJHAAAARwAAAkcAAAMWAAAAZAAAABYAAAMWAAADFgAAAWEAAABhAAACYQAAAh0AAANHAAABRwAAAEcAAAFkAAAARwAAAkcAAABHAAABZAAAAGQAAAAWAAACFgAAAWQAAABhAAAAYQAAA2EAAAAqAAAARwAAAUcAAABHAAACZAAAAEcAAAJHAAABRwAAA0cAAANHAAABFgAAAxYAAANkAAAAYQAAAmEAAABhAAABKgAAAEcAAAFHAAACRwAAAWQAAABHAAAARwAAA0cAAAJHAAADRwAAAxYAAABkAAAAZAAAAGEAAABhAAABYQAAAWQAAABHAAACRwAAAkcAAAFkAAAARwAAAkcAAABHAAACRwAAA0cAAAMLAAACCwAAAwsAAAMqAAAAHQAAASoAAAAqAAAARwAAA0cAAANHAAADZAAAAEcAAABHAAAARwAAAEcAAAFHAAABRwAAAUcAAAFHAAABRwAAA0cAAAFHAAACRwAAAkcAAANHAAADRwAAAmQAAABHAAADRwAAAUcAAAJHAAAARwAAAkcAAAJHAAABRwAAA0cAAANHAAABRwAAA0cAAAFHAAABRwAAAEcAAABkAAAARwAAAkcAAABHAAADRwAAA0cAAABHAAABRwAAAUcAAANHAAAARwAAAUcAAABHAAABRwAAAkcAAABHAAABZAAAAEcAAABHAAABRwAAAUcAAANHAAABZAAAAGQAAABkAAAARwAAAkcAAAJHAAACRwAAARYAAAMWAAABFgAAA2QAAABHAAABRwAAAkcAAANkAAAAZAAAAA== + tiles: cAAAAAAAcAAAAAAAXwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAbQAAAAADbQAAAAABbQAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAbQAAAAADbQAAAAABbQAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAbQAAAAACbQAAAAAAbQAAAAACcAAAAAAAUwAAAAABUwAAAAACUwAAAAABGgAAAAACcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAbQAAAAADbQAAAAADbQAAAAACLgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAGgAAAAABcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAbQAAAAAAbQAAAAAAbQAAAAACIQAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAGgAAAAAAUwAAAAADGgAAAAABGgAAAAADGgAAAAABbQAAAAADbQAAAAACbQAAAAADIQAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAADGgAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAABbQAAAAAAbQAAAAACbQAAAAACIQAAAAADUwAAAAABUwAAAAAAUwAAAAABcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABcAAAAAAAbQAAAAAAbQAAAAADbQAAAAAALgAAAAAAUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAABGgAAAAADGgAAAAADcAAAAAAAbQAAAAACbQAAAAAAbQAAAAABLgAAAAAAUwAAAAABUwAAAAACUwAAAAABcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAADGgAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAABbQAAAAABcAAAAAAAUwAAAAACUwAAAAACUwAAAAABcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAADDAAAAAACDAAAAAADDAAAAAADLgAAAAAAIQAAAAABLgAAAAAALgAAAAAAUwAAAAADUwAAAAADUwAAAAADcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAACcAAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAABGgAAAAADGgAAAAABGgAAAAADcAAAAAAAUwAAAAABUwAAAAACUwAAAAADcAAAAAAAcAAAAAAA + version: 6 -2,0: ind: -2,0 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAGQAAABkAAAAZAAAAEcAAANkAAAAZAAAAEcAAAFHAAAARwAAA0cAAAJHAAADRwAAAEcAAAJHAAACRwAAAkcAAANHAAACRwAAAkcAAANHAAACRwAAAUcAAAFHAAADRwAAAkcAAAFHAAACRwAAAUcAAAJHAAABRwAAAEcAAANHAAADRwAAA0cAAABHAAACRwAAAkcAAAFHAAACRwAAAkcAAABHAAAARwAAAUcAAABHAAACRwAAAEcAAAJHAAACRwAAAkcAAAJHAAABRwAAAEcAAAJHAAADRwAAAUcAAAJHAAABZAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAGQAAABHAAACRwAAA0cAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAwAAAAMAAAADAAAAAwAAAAMAAAADAAAABkAAAARwAAAEcAAAFHAAAAZAAAAEkAAAJJAAADFgAAARYAAAJkAAAAOgAAAjoAAAE6AAAAOgAAAToAAAA6AAAARwAAAUcAAANHAAAARwAAAkcAAANJAAABSQAAABsAAAAWAAACZAAAADAAAAA6AAAAUQAAA1EAAANRAAADOgAAAmQAAABHAAAARwAAAEcAAAJkAAAASQAAAkkAAAEbAAAAFgAAAGQAAAAwAAAAOgAAAVEAAANRAAACUQAAAjoAAANkAAAAZAAAAGQAAABkAAAAZAAAAEkAAAFJAAABGwAAARYAAANkAAAAMAAAADoAAANRAAACUQAAAVEAAAM6AAACOgAAAEcAAANHAAAARwAAA2QAAABJAAAASQAAABYAAAEWAAADZAAAADAAAAA6AAABUQAAAVEAAAFRAAACOgAAADoAAAFHAAABRwAAAEcAAABHAAABSQAAAUkAAAAWAAADZAAAAGQAAAAwAAAAOgAAA1EAAAFRAAACUQAAADoAAAM6AAACRwAAAEcAAANHAAACZAAAAEkAAANJAAAAFgAAARYAAANkAAAAOgAAADoAAAA6AAAAOgAAAToAAAI6AAAAMAAAADAAAAAwAAAAMAAAAGQAAABkAAAAFgAAARYAAAAWAAADZAAAADAAAAAwAAAAMAAAADAAAAA6AAAAMAAAADAAAABkAAAAZAAAAGQAAABkAAAAJQAAACUAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAHQAAAWQAAABkAAAAZAAAACUAAAAlAAAAJQAAACUAAAAlAAAAZAAAAFMAAABkAAAAMAAAADAAAAAwAAAAMAAAAB0AAAIwAAAAMAAAAGQAAAAlAAAAJQAAACUAAAAlAAAAJQAAAA== + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAABcAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAVQAAAAACVQAAAAADGgAAAAABGgAAAAACcAAAAAAARQAAAAACRQAAAAABRQAAAAAARQAAAAABRQAAAAAARQAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAADVQAAAAABVQAAAAAAHwAAAAAAGgAAAAACcAAAAAAANwAAAAAARQAAAAAAXQAAAAADXQAAAAADXQAAAAADRQAAAAACcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAVQAAAAACVQAAAAABHwAAAAAAGgAAAAAAcAAAAAAANwAAAAAARQAAAAABXQAAAAADXQAAAAACXQAAAAACRQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVQAAAAABVQAAAAABHwAAAAABGgAAAAADcAAAAAAANwAAAAAARQAAAAADXQAAAAACXQAAAAABXQAAAAADRQAAAAACRQAAAAAAUwAAAAADUwAAAAAAUwAAAAADcAAAAAAAVQAAAAAAVQAAAAAAGgAAAAABGgAAAAADcAAAAAAANwAAAAAARQAAAAABXQAAAAABXQAAAAABXQAAAAACRQAAAAAARQAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABVQAAAAABVQAAAAAAGgAAAAADcAAAAAAAcAAAAAAANwAAAAAARQAAAAADXQAAAAABXQAAAAACXQAAAAAARQAAAAADRQAAAAACUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAVQAAAAADVQAAAAAAGgAAAAABGgAAAAADcAAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAABRQAAAAACRQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAADcAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAARQAAAAAANwAAAAAANwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAIQAAAAACNwAAAAAANwAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAA + version: 6 0,1: ind: 0,1 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAAkcAAANHAAABRwAAA0cAAAJHAAAAFgAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAARwAAAUcAAABHAAAARwAAA0cAAABHAAAARwAAAxYAAANkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAZAAAAEcAAAFHAAACRwAAA2QAAABHAAADRwAAAkcAAAEWAAAAFgAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAEcAAANkAAAAZAAAAEcAAANkAAAAZAAAABYAAAFkAAAARwAAA0cAAAIWAAABRwAAA0cAAABkAAAARwAAAUcAAAFHAAAAZAAAAEcAAANHAAADRwAAAmQAAAAWAAADZAAAAEcAAAIWAAACFgAAAxYAAANHAAACZAAAAEcAAANHAAACRwAAAGQAAABHAAACHwAAAEcAAAJHAAAAFgAAAxYAAAEWAAAAFgAAAhYAAAIWAAABFgAAAGQAAABHAAACRwAAAUcAAAJkAAAARwAAAB8AAAJHAAABZAAAABYAAAJkAAAARwAAAEcAAAMWAAADRwAAAkcAAANkAAAARwAAAkcAAAFHAAACZAAAAEcAAAFHAAAARwAAAWQAAABkAAAAZAAAAGQAAABkAAAARwAAAGQAAABkAAAAZAAAAEcAAAFHAAACRwAAAWQAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAANHAAAARwAAAkcAAANHAAADRwAAA0cAAAJHAAACRwAAA0cAAAFHAAAARwAAAEcAAAJHAAADRwAAA0cAAAJHAAACRwAAAEcAAANHAAABRwAAA0cAAAJHAAADRwAAADoAAAFHAAACRwAAAkcAAABHAAAARwAAAkcAAABHAAADRwAAA0cAAANHAAABRwAAAkcAAAFHAAACRwAAAEcAAABHAAADRwAAAUcAAAJHAAAARwAAA0cAAABHAAABZAAAAGQAAABkAAAAZAAAADoAAAJkAAAAZAAAAGQAAABHAAADRwAAAUcAAAFkAAAAZAAAAGQAAABkAAAAZAAAADoAAAA6AAABOgAAAjoAAAE6AAAAOgAAAGQAAABHAAADRwAAAkcAAAJHAAACRwAAA2QAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAAFHAAAARwAAAEcAAABkAAAAAAAAAGMAAABkAAAAYQAAAWEAAANhAAADYQAAA2EAAAJhAAACZAAAAGQAAABHAAAARwAAAUcAAAJHAAAAZAAAAAAAAABjAAAAZAAAAA== + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAADcAAAAAAAUwAAAAADUwAAAAACUwAAAAABGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAUwAAAAADUwAAAAACGgAAAAABUwAAAAADUwAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAACcAAAAAAAGgAAAAADcAAAAAAAUwAAAAACGgAAAAACGgAAAAADGgAAAAADUwAAAAACcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAUwAAAAACIwAAAAAAUwAAAAACUwAAAAAAGgAAAAADGgAAAAABGgAAAAAAGgAAAAACGgAAAAACGgAAAAABGgAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAACcAAAAAAAUwAAAAAAIwAAAAACUwAAAAABcAAAAAAAGgAAAAACcAAAAAAAUwAAAAAAUwAAAAADGgAAAAADUwAAAAACUwAAAAADcAAAAAAAUwAAAAACUwAAAAABUwAAAAACcAAAAAAAUwAAAAABUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAAARQAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARQAAAAAARQAAAAABRQAAAAACRQAAAAABRQAAAAAARQAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAADcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbQAAAAABbQAAAAADbQAAAAADbQAAAAADbQAAAAACbQAAAAACcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAA + version: 6 -1,1: ind: -1,1 - tiles: JQAAAGQAAABHAAACZAAAABYAAAFhAAAAYQAAAWQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAACUAAABHAAABRwAAAGQAAAAWAAABYQAAA2EAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJkAAAAFgAAAGEAAABhAAAAYQAAAWEAAANTAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAUwAAAFMAAABTAAAAZAAAABYAAAAWAAADFgAAARYAAAJkAAAAUwAAAGQAAABkAAAAFgAAAUcAAAJHAAABRwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAANHAAAARwAAAEcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAACRwAAAEcAAAJHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAkcAAABHAAACRwAAAWQAAABkAAAAZAAAACoAAAApAAAAKwAAAyoAAAAqAAAAKwAAAykAAAFkAAAAZAAAABYAAABHAAABRwAAAUcAAAJkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAmQAAABHAAAARwAAAUcAAAJHAAABRwAAAEcAAABHAAACRwAAAUcAAAJHAAABRwAAAEcAAAJHAAABRwAAAkcAAANHAAABRwAAAEcAAABHAAABOgAAAUcAAAE6AAADOgAAAzoAAAM6AAADOgAAAEcAAAE6AAADRwAAA0cAAAFHAAAARwAAAkcAAAJHAAACRwAAAkcAAABHAAAARwAAAUcAAAJHAAAARwAAAUcAAAJHAAACRwAAAEcAAAFHAAADRwAAAEcAAAJHAAAAFgAAARYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAADFgAAAmQAAABkAAAAOgAAABYAAAMWAAADZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAHwAAAxYAAANkAAAAOgAAAToAAAIWAAACFgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAEWAAAAZAAAAGQAAABkAAAAFgAAABYAAAJkAAAAFgAAABYAAAEWAAADFgAAARYAAAEWAAABFgAAAGQAAAAWAAADFgAAA2QAAAAWAAAAYQAAAw== + tiles: KQAAAAAAcAAAAAAAUwAAAAACcAAAAAAAGgAAAAABbQAAAAAAbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAUwAAAAABUwAAAAAAcAAAAAAAGgAAAAABbQAAAAADbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAGgAAAAAAbQAAAAAAbQAAAAAAbQAAAAABbQAAAAADXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAABGgAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAABUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAALgAAAAAALQAAAAAALwAAAAADLgAAAAAALgAAAAAALwAAAAADLQAAAAABcAAAAAAAcAAAAAAAGgAAAAAAUwAAAAABUwAAAAABUwAAAAACcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABRQAAAAABUwAAAAABRQAAAAADRQAAAAADRQAAAAADRQAAAAADRQAAAAAAUwAAAAABRQAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAACcAAAAAAAcAAAAAAARQAAAAAAGgAAAAADGgAAAAADcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAIwAAAAADGgAAAAADcAAAAAAARQAAAAABRQAAAAACGgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACcAAAAAAAGgAAAAAAGgAAAAABGgAAAAADGgAAAAABGgAAAAABGgAAAAABGgAAAAAAcAAAAAAAGgAAAAADGgAAAAADcAAAAAAAGgAAAAAAbQAAAAAD + version: 6 -2,1: ind: -2,1 - tiles: ZAAAAFMAAABkAAAAMAAAAB0AAAIdAAADHQAAAh0AAAAdAAAAMAAAAGQAAAAlAAAAJQAAACUAAAAlAAAAJQAAAGQAAABTAAAAZAAAADAAAAAwAAAAMAAAADAAAAAwAAAAMAAAADAAAABkAAAAZAAAAFQAAABkAAAAJQAAACUAAABkAAAAUwAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAZAAAAFMAAABTAAAAUwAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABhAAADYQAAAWQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAAmEAAAJkAAAASgAAA0oAAANKAAACSgAAAmQAAAAlAAAAJQAAACUAAABkAAAAZAAAAGQAAABkAAAAZAAAAGEAAAFhAAACZAAAAEoAAANKAAABSgAAAEoAAABkAAAAJQAAACUAAAAlAAAAZAAAAGQAAABkAAAAZAAAAGQAAAALAAAAZAAAAGQAAABkAAAAZAAAAEcAAANkAAAAZAAAAGQAAAAlAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAAFHAAAARwAAAkcAAAJHAAACRwAAAUcAAANHAAABRwAAA0cAAABHAAAARwAAAEcAAABHAAADRwAAAzoAAAJHAAABRwAAA0cAAABHAAADRwAAAzoAAAJHAAAARwAAAUcAAABHAAACRwAAAEcAAAJHAAACRwAAAUcAAABHAAAARwAAA0cAAAJHAAABRwAAAUcAAAJHAAADRwAAAUcAAABHAAABRwAAAEcAAANHAAAARwAAA0cAAABHAAABRwAAAmQAAABkAAAAZAAAAGQAAABkAAAARwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAABRwAAAkcAAAFHAAADRwAAAUcAAAJHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAkcAAABHAAADRwAAAEcAAAFHAAADRwAAAmQAAABkAAAAYQAAAWEAAAFhAAAAYQAAAmEAAAFkAAAARwAAAEcAAAJHAAACRwAAAEcAAAJHAAACRwAAA0cAAAFkAAAAZAAAAGEAAABhAAABYQAAAGEAAAFhAAADZAAAAA== + tiles: cAAAAAAAXwAAAAAAcAAAAAAANwAAAAAAIQAAAAACIQAAAAADIQAAAAACIQAAAAAAIQAAAAAANwAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAABcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAACcAAAAAAAVgAAAAADVgAAAAADVgAAAAACVgAAAAACcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAACcAAAAAAAVgAAAAADVgAAAAABVgAAAAAAVgAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADRQAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAADRQAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAbQAAAAABbQAAAAABbQAAAAAAbQAAAAACbQAAAAABcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAABbQAAAAAAbQAAAAABbQAAAAADcAAAAAAA + version: 6 -3,0: ind: -3,0 - tiles: AAAAAGQAAABHAAACRwAAAmQAAAAzAAAAMwAAADMAAAAzAAAAMwAAAGQAAAAWAAADFgAAARYAAAAWAAABZAAAAAAAAABkAAAARwAAA0cAAAFkAAAAMwAAADMAAAAzAAAAMwAAADMAAABkAAAARwAAAUcAAABHAAADRwAAA0cAAAAAAAAAZAAAAEcAAABHAAACZAAAADMAAAAzAAAAMwAAADMAAAAzAAAAZAAAAEcAAANHAAAARwAAA0cAAABHAAADAAAAAGQAAABHAAACRwAAA2QAAAAzAAAAMwAAADMAAAAzAAAAMwAAAGQAAABHAAACRwAAAUcAAAJHAAABRwAAAwAAAABkAAAARwAAAEcAAAJkAAAAZAAAAGQAAABHAAABZAAAAGQAAABkAAAARwAAAUcAAAJHAAAARwAAAkcAAAAAAAAAZAAAAEcAAAJHAAADRwAAAUcAAABHAAABRwAAAUcAAABHAAACRwAAAkcAAAJHAAAARwAAAWQAAAAWAAAAZAAAAGQAAABHAAABRwAAAkcAAAJHAAACRwAAAEcAAANHAAABRwAAA0cAAABHAAADRwAAAUcAAANkAAAAFgAAA0cAAABHAAADRwAAA0cAAAFHAAABRwAAAkcAAAJHAAABRwAAAEcAAANHAAABRwAAAUcAAANHAAAAFgAAARYAAAJHAAADRwAAA0cAAAJHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAADRwAAABYAAAAWAAABRwAAAWQAAABkAAAAZAAAAGQAAABHAAADRwAAAkcAAABHAAACRwAAAmQAAABHAAADRwAAAUcAAABkAAAAFgAAA0cAAABUAAAAZAAAAEcAAANkAAAARwAAAEcAAABHAAACRwAAAUcAAAJHAAAARwAAAEcAAAJHAAABZAAAABYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAADRwAAA0cAAAFHAAAAZAAAAEcAAAJHAAABRwAAAWQAAABkAAAAZAAAABYAAAIWAAADFgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAAkcAAAFkAAAAFgAAAEcAAAFHAAADRwAAAUcAAAFHAAACRwAAAEcAAAJHAAABRwAAAkcAAANHAAAARwAAAEcAAABHAAADZAAAABYAAABHAAACRwAAAkcAAAFHAAADRwAAAUcAAAJHAAACRwAAAUcAAAFHAAAARwAAA0cAAANHAAACRwAAA2QAAABkAAAARwAAAUcAAABHAAACRwAAA0cAAANHAAADRwAAAEcAAAJHAAACRwAAAkcAAAFHAAACRwAAAUcAAANUAAAAZAAAAA== + tiles: AAAAAAAAcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAAAGgAAAAABcAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADAAAAAAAAcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAADAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAABUwAAAAADcAAAAAAAGgAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAAAGgAAAAABGgAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAGgAAAAAAGgAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAGgAAAAADUwAAAAAAYAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABcAAAAAAAGgAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAGgAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAADYAAAAAAAcAAAAAAA + version: 6 -3,1: ind: -3,1 - tiles: ZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFkAAAAZAAAAGQAAABHAAACRwAAAUcAAAJkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABHAAAARwAAAUcAAAJHAAADRwAAA2QAAAAWAAAARwAAAkcAAABHAAACFgAAAWQAAABkAAAAZAAAAFMAAABHAAACRwAAA0cAAANHAAAARwAAAkcAAANkAAAAFgAAAUcAAAJHAAACRwAAAxYAAANkAAAAZAAAAGQAAABTAAAAZAAAAEcAAANHAAADRwAAA0cAAABHAAACZAAAABYAAAFHAAABRwAAAEcAAAMWAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAABHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAA2EAAANhAAADYQAAAmEAAAJhAAADZAAAAEcAAAFHAAADRwAAAmQAAABhAAADZAAAAGQAAABkAAAAZAAAAGQAAABhAAAAYQAAAGEAAAFhAAADYQAAAGQAAABHAAADRwAAA0cAAABkAAAAYQAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAANHAAAAZAAAAGEAAANkAAAAZAAAAGQAAABTAAAAZAAAADcAAAA3AAAANwAAADcAAAA3AAAAZAAAAEcAAABHAAACRwAAAWQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAABHAAAARwAAAEcAAABHAAAARwAAA2QAAABkAAAAZAAAAFMAAABkAAAANwAAADcAAAA3AAAANwAAADcAAABkAAAARwAAAEcAAABHAAABRwAAAUcAAAJkAAAAZAAAAGQAAABTAAAAZAAAADcAAAA3AAAANwAAADcAAAA3AAAAZAAAAEcAAAJHAAABRwAAAEcAAAJHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAA0cAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGEAAABhAAAAYQAAAGEAAABkAAAAKAAAACgAAABkAAAARwAAAEcAAAFHAAAAZAAAAEcAAABkAAAAZAAAAFQAAABhAAABYQAAAmEAAAFhAAADZAAAACgAAAAoAAAAZAAAAEcAAABHAAABRwAAAWQAAABHAAABZAAAAGQAAABkAAAAYQAAAWEAAAJhAAAAYQAAAGQAAAAoAAAAKAAAAGQAAABHAAABRwAAA0cAAANkAAAARwAAAg== + tiles: cAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAADcAAAAAAAGgAAAAAAUwAAAAACUwAAAAAAUwAAAAACGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAADcAAAAAAAGgAAAAABUwAAAAACUwAAAAACUwAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAGgAAAAABUwAAAAABUwAAAAAAUwAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAADbQAAAAADbQAAAAACbQAAAAACbQAAAAADcAAAAAAAUwAAAAABUwAAAAADUwAAAAACcAAAAAAAbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAABbQAAAAADbQAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAAAcAAAAAAAbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAALAAAAAAALAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAbQAAAAABbQAAAAACbQAAAAABbQAAAAADcAAAAAAALAAAAAAALAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAACbQAAAAAAbQAAAAAAcAAAAAAALAAAAAAALAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADcAAAAAAAUwAAAAAC + version: 6 -4,0: ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAGQAAABHAAADRwAAAkcAAABHAAAARwAAAkcAAABHAAADRwAAAUcAAANHAAADRwAAAUcAAAMAAAAAYwAAAAAAAABkAAAARwAAAUcAAANHAAADRwAAAUcAAAJHAAAARwAAAkcAAABHAAACRwAAAEcAAABHAAACAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAARwAAAUcAAAFHAAABRwAAA0cAAAJHAAACRwAAAUcAAAJHAAABRwAAAwAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAEcAAAFHAAADRwAAAkcAAAFHAAAARwAAAkcAAANHAAAARwAAAUcAAAEAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAANHAAAARwAAAkcAAAJHAAABRwAAAkcAAAFHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAADoAAAJHAAADRwAAAEcAAAFHAAABRwAAAEcAAABHAAADRwAAAUcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAA6AAAARwAAAEcAAAApAAABRwAAASsAAABHAAAARwAAAEcAAABHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAOgAAAEcAAAJHAAABRwAAAEcAAANHAAACRwAAAEcAAABHAAABRwAAAQ== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAADAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAADAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAABAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARQAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARQAAAAAAUwAAAAAAUwAAAAAALQAAAAABUwAAAAABLwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARQAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAB + version: 6 -3,-1: ind: -3,-1 - tiles: ZAAAABYAAAIWAAACFgAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAACgAAAAoAAAAKAAAAGQAAAAWAAAAJgAAABYAAANkAAAAWgAAA1oAAANkAAAAYAAAAjoAAAM6AAACOgAAA2AAAAAoAAAAKAAAACgAAABkAAAAFgAAABYAAAIWAAACZAAAAFoAAABaAAAAYAAAAWAAAAE6AAABOgAAADoAAAJgAAACKAAAACgAAAAoAAAAZAAAABYAAAMmAAAAFgAAA2QAAABkAAAAZAAAAGQAAABgAAAAYAAAAGAAAAJgAAAAYAAAAWQAAABkAAAAZAAAAGQAAAAWAAABFgAAAxYAAABkAAAAWgAAAVoAAANkAAAAYAAAA2AAAABgAAACYAAAA2AAAABkAAAAOgAAAToAAABkAAAAZAAAABYAAAMWAAACZAAAAFoAAABaAAABYAAAA2AAAABgAAACYAAAAmAAAANgAAACOgAAAjoAAAE6AAAAZAAAAGQAAABHAAADRwAAAWQAAABkAAAAZAAAAGQAAABgAAAAYAAAAGAAAAJgAAADYAAAAWQAAAA6AAAAOgAAAGQAAABkAAAARwAAAEcAAAJUAAAAZAAAAGQAAABkAAAAYAAAAmAAAABgAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAACZAAAAFMAAABkAAAAZAAAAGAAAABgAAACYAAAAmQAAAAzAAAAMwAAADMAAAAzAAAARwAAAUcAAABHAAADRwAAAmQAAABkAAAAZAAAAGQAAABgAAADYAAAAGAAAAJkAAAAMwAAADMAAAAzAAAAMwAAAEcAAABHAAADRwAAA0cAAAJHAAACZAAAAGQAAABkAAAAYQAAAGEAAAFhAAAAZAAAADMAAAAzAAAAMwAAADMAAABHAAABRwAAA0cAAANHAAACRwAAAmQAAABkAAAAZAAAAGEAAABhAAACYQAAA2QAAAAzAAAAMwAAADMAAAAzAAAAZAAAAGQAAABHAAACRwAAAUcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFkAAAAZAAAAAAAAABkAAAARwAAA0cAAANHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAACUAAAAlAAAAJQAAAGQAAAAAAAAAZAAAAEcAAABHAAADFgAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAlAAAAJQAAACUAAABXAAADAAAAAGQAAABHAAABRwAAAmQAAABkAAAAMwAAADMAAAAzAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJkAAAAZAAAAA== + tiles: cAAAAAAAGgAAAAACGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAGgAAAAAAKgAAAAAAGgAAAAADcAAAAAAAZgAAAAADZgAAAAADcAAAAAAAbAAAAAACRQAAAAADRQAAAAACRQAAAAADbAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAACcAAAAAAAZgAAAAAAZgAAAAAAbAAAAAABbAAAAAABRQAAAAABRQAAAAAARQAAAAACbAAAAAACLAAAAAAALAAAAAAALAAAAAAAcAAAAAAAGgAAAAADKgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbAAAAAAAbAAAAAAAbAAAAAACbAAAAAAAbAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAAAcAAAAAAAZgAAAAABZgAAAAADcAAAAAAAbAAAAAADbAAAAAAAbAAAAAACbAAAAAADbAAAAAAAcAAAAAAARQAAAAABRQAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAACcAAAAAAAZgAAAAAAZgAAAAABbAAAAAADbAAAAAAAbAAAAAACbAAAAAACbAAAAAADbAAAAAACRQAAAAACRQAAAAABRQAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbAAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAABcAAAAAAARQAAAAAARQAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbAAAAAACbAAAAAAAbAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbAAAAAAAbAAAAAACbAAAAAACcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbAAAAAADbAAAAAAAbAAAAAACcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAABbQAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbQAAAAADcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAYwAAAAADAAAAAAAAcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAA + version: 6 -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAGQAAABHAAADRwAAAkcAAAJHAAABRwAAA0cAAANHAAABRwAAAkcAAAFHAAABRwAAAkcAAAIAAAAAYwAAAAAAAABkAAAARwAAAkcAAANHAAADRwAAAkcAAAJHAAADRwAAAEcAAAFHAAADRwAAAEcAAANHAAADAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAACAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAADAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -2,-1: ind: -2,-1 - tiles: KAAAAGQAAABTAAAAVwAAA1cAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAVwAAAJXAAADZAAAACgAAABkAAAAUwAAAFcAAABXAAAAZAAAAEcAAANXAAAAVwAAAlcAAANXAAACZAAAAFcAAANgAAADVwAAAFcAAAEoAAAAZAAAAGQAAABXAAAAZAAAAGQAAABHAAADXAAAAVwAAAJXAAACVwAAA1cAAANXAAAAYAAAA1cAAANkAAAAZAAAAGQAAABXAAADVwAAA1cAAAJkAAAARwAAAVcAAAJcAAADVwAAAlcAAANkAAAAVwAAAFcAAABXAAACZAAAADoAAANkAAAAVwAAAFwAAAFXAAAAZAAAAGQAAABXAAACVwAAAWQAAABkAAAAZAAAAFcAAAFXAAACVwAAAWQAAAA6AAABOgAAA1cAAANXAAADVwAAA2QAAABXAAABVwAAA1cAAANXAAAAVwAAAWQAAABXAAACXAAAA1cAAAJXAAADOgAAAGQAAABXAAABVwAAAVcAAANXAAACYAAAAmAAAAJgAAACYAAAAGAAAAFXAAABVwAAAlcAAANXAAABVwAAA2QAAABkAAAAVwAAA1cAAABXAAACVwAAAWAAAANgAAABYAAAAGAAAAJgAAADVwAAAlcAAAFcAAACVwAAA1cAAAAzAAAAZAAAAFcAAAJcAAADVwAAAGQAAABHAAADRwAAAUcAAAFHAAADRwAAA2QAAABXAAAAVwAAAlcAAABkAAAAMwAAAEcAAABXAAAAXAAAAlcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAlcAAABXAAACZAAAADMAAABkAAAAVwAAA1cAAABXAAACFgAAARYAAAEWAAACFgAAARYAAAIWAAACFgAAAlcAAABXAAABVwAAAVcAAAEzAAAAZAAAAGQAAABgAAABZAAAAGQAAAAWAAAAFgAAAxYAAAIWAAADFgAAA2QAAABXAAADVwAAAVcAAANkAAAAZAAAAGQAAABhAAADYQAAA2EAAANkAAAAFgAAAhYAAAIWAAACFgAAAhYAAAFkAAAAZAAAAEcAAANkAAAAZAAAAEgAAAJIAAADYQAAA2EAAAFhAAACZAAAABYAAAIWAAACFgAAAxYAAAMWAAADZAAAAEcAAANHAAACRwAAA0cAAABIAAADSAAAAGEAAANhAAADYQAAAmQAAAAWAAADFgAAARYAAAAWAAACFgAAAmQAAABHAAADRwAAA0cAAABHAAADSAAAA0gAAAJhAAACYQAAAmEAAAIWAAABFgAAARYAAAMWAAABFgAAABYAAAFkAAAARwAAAEcAAANHAAADRwAAAg== + tiles: LAAAAAAAcAAAAAAAXwAAAAAAYwAAAAADYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABaAAAAAACYwAAAAADcAAAAAAALAAAAAAAcAAAAAAAXwAAAAAAYwAAAAAAYwAAAAAAcAAAAAAAUwAAAAADYwAAAAAAYwAAAAACYwAAAAADYwAAAAACcAAAAAAAYwAAAAADbAAAAAADYwAAAAAAYwAAAAABLAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADaAAAAAABaAAAAAACYwAAAAACYwAAAAADYwAAAAADYwAAAAAAbAAAAAADYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAADYwAAAAACcAAAAAAAUwAAAAABYwAAAAACaAAAAAADYwAAAAACYwAAAAADcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAACcAAAAAAARQAAAAADcAAAAAAAYwAAAAAAaAAAAAABYwAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAACYwAAAAABcAAAAAAARQAAAAABRQAAAAADYwAAAAADYwAAAAADYwAAAAADcAAAAAAAYwAAAAABYwAAAAADYwAAAAADYwAAAAAAYwAAAAABcAAAAAAAYwAAAAACaAAAAAADYwAAAAACYwAAAAADRQAAAAAAcAAAAAAAYwAAAAABYwAAAAABYwAAAAADYwAAAAACbAAAAAACbAAAAAACbAAAAAACbAAAAAAAbAAAAAABYwAAAAABYwAAAAACYwAAAAADYwAAAAABYwAAAAADcAAAAAAAcAAAAAAAYwAAAAADYwAAAAAAYwAAAAACYwAAAAABbAAAAAADbAAAAAABbAAAAAAAbAAAAAACbAAAAAADYwAAAAACYwAAAAABaAAAAAACYwAAAAADYwAAAAAAOwAAAAAAcAAAAAAAYwAAAAACaAAAAAADYwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAADcAAAAAAAYwAAAAAAYwAAAAACYwAAAAAAcAAAAAAAOwAAAAAAUwAAAAAAYwAAAAAAaAAAAAACYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAAAYwAAAAACcAAAAAAAOwAAAAAAcAAAAAAAYwAAAAADYwAAAAAAYwAAAAACGgAAAAABGgAAAAABGgAAAAACGgAAAAABGgAAAAACGgAAAAACGgAAAAACYwAAAAAAYwAAAAABYwAAAAABYwAAAAABOwAAAAAAcAAAAAAAcAAAAAAAbAAAAAABcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAACGgAAAAADGgAAAAADcAAAAAAAYwAAAAADYwAAAAABYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAADbQAAAAADcAAAAAAAGgAAAAACGgAAAAACGgAAAAACGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAVAAAAAACVAAAAAADbQAAAAADbQAAAAABbQAAAAACcAAAAAAAGgAAAAACGgAAAAACGgAAAAADGgAAAAADGgAAAAADcAAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAAAVAAAAAADVAAAAAAAbQAAAAADbQAAAAADbQAAAAACcAAAAAAAGgAAAAADGgAAAAABGgAAAAAAGgAAAAACGgAAAAACcAAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAADVAAAAAADVAAAAAACbQAAAAACbQAAAAACbQAAAAACGgAAAAABGgAAAAABGgAAAAADGgAAAAABGgAAAAAAGgAAAAABcAAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAAC + version: 6 -2,2: ind: -2,2 - tiles: RwAAA0cAAAJHAAADRwAAAkcAAABHAAAARwAAA0cAAABkAAAAZAAAAGEAAANhAAACYQAAAR0AAAJhAAADZAAAAEcAAAJHAAABRwAAA0cAAANHAAAARwAAAEcAAAFHAAADZAAAAGQAAABkAAAAHwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABhAAAAYQAAAWEAAANhAAADYQAAA2EAAABkAAAARwAAAkcAAAJHAAAAZAAAADMAAAAzAAAAMwAAADMAAABkAAAAYQAAAmEAAAFhAAAAYQAAAGEAAABhAAACZAAAAEcAAANHAAABRwAAAmQAAAAzAAAAMwAAADMAAAAzAAAAZAAAAGEAAAJhAAAAYQAAAmEAAANhAAADYQAAA2QAAABHAAADRwAAA0cAAABkAAAAFgAAAhYAAAAWAAACFgAAABYAAAMWAAADFgAAAxYAAAAWAAAAFgAAABYAAAEWAAADFgAAARYAAAJkAAAAZAAAAGQAAAAfAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAMWAAACZAAAAFsAAAFaAAACWwAAAFsAAANkAAAAUwAAAGQAAABUAAAAFgAAAxYAAAIWAAACFgAAABsAAAEWAAABFgAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAEWAAAAFgAAAmQAAAAbAAAAFgAAAGQAAABkAAAAFgAAARYAAAIWAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA2QAAABkAAAAZAAAAEcAAAFHAAADZAAAABYAAAIWAAADFgAAAmQAAABkAAAAZAAAAGQAAABkAAAAOgAAADoAAAA6AAACYwAAAGQAAABHAAABRwAAAxYAAAIWAAABFgAAARYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAARwAAAUcAAAFkAAAAFgAAARYAAAIWAAADZAAAAFMAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABHAAADRwAAAEcAAAJUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAARwAAAUcAAABHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAA== + tiles: UwAAAAADUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAACbQAAAAABIQAAAAACbQAAAAADcAAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAIwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAABbQAAAAADbQAAAAADbQAAAAADbQAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAbQAAAAACbQAAAAABbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAACcAAAAAAAUwAAAAADUwAAAAABUwAAAAACcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAbQAAAAACbQAAAAAAbQAAAAACbQAAAAADbQAAAAADbQAAAAADcAAAAAAAUwAAAAADUwAAAAADUwAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAACGgAAAAAAGgAAAAADGgAAAAADGgAAAAADGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAABGgAAAAADGgAAAAABGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAIwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAACcAAAAAAAZwAAAAABZgAAAAACZwAAAAAAZwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAYAAAAAAAGgAAAAADGgAAAAACGgAAAAACGgAAAAAAHwAAAAABGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAACcAAAAAAAHwAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAGgAAAAACGgAAAAADGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARQAAAAAARQAAAAAARQAAAAACbwAAAAAAcAAAAAAAUwAAAAABUwAAAAADGgAAAAACGgAAAAABGgAAAAABGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAUwAAAAABUwAAAAABcAAAAAAAGgAAAAABGgAAAAACGgAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAUwAAAAADUwAAAAAAUwAAAAACYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAUwAAAAABUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAA + version: 6 -3,2: ind: -3,2 - tiles: ZAAAAGQAAABkAAAAMwAAADMAAAAzAAAAMwAAAGQAAAAoAAAAKAAAAGQAAABHAAABRwAAAEcAAAFkAAAARwAAA2QAAABkAAAAZAAAADMAAAAzAAAAMwAAADMAAABkAAAAKAAAACgAAABkAAAARwAAA0cAAABHAAABZAAAAEcAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAAAzAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAAARwAAAGQAAABkAAAARwAAA0cAAABHAAADRwAAA0cAAANHAAACRwAAAEcAAAJHAAACRwAAA0cAAABHAAABRwAAAEcAAANHAAABRwAAAkcAAAFHAAAARwAAAkcAAABHAAACRwAAAEcAAANHAAABRwAAAUcAAAJHAAAARwAAAEcAAAFHAAACRwAAA0cAAAFHAAAARwAAA0cAAABHAAAARwAAA0cAAAJHAAAARwAAAUcAAAFHAAACRwAAAUcAAANHAAABRwAAAUcAAAFHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAADZAAAABYAAAJkAAAAFgAAA0cAAABHAAACZAAAAEcAAABHAAADRwAAA2QAAABHAAABRwAAA0cAAANkAAAAFgAAAkcAAAIWAAADFgAAAxYAAANHAAADRwAAAGQAAABHAAABRwAAAEcAAANkAAAARwAAAUcAAABHAAADZAAAABYAAANHAAAAFgAAAhYAAAAWAAABRwAAA2QAAABkAAAAZAAAAEcAAAJkAAAAZAAAAGQAAABHAAADZAAAAGQAAAAWAAAAZAAAABYAAAFkAAAAZAAAAEcAAANHAAADRwAAAUcAAABHAAABRwAAAEcAAAJHAAACRwAAAEcAAAJHAAAARwAAA0cAAAFHAAADRwAAAUcAAAJHAAACRwAAAEcAAAJHAAADRwAAA0cAAAFHAAACRwAAAEcAAAJHAAABRwAAAEcAAAFHAAAARwAAA0cAAAFHAAACRwAAAEcAAANHAAAARwAAAkcAAANHAAACRwAAAkcAAAJHAAAARwAAAEcAAAJHAAACRwAAA0cAAANHAAABRwAAAEcAAAFHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAPwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAAARwAAAmQAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAGQAAABHAAAARwAAA0cAAAFHAAAARwAAAEcAAAFkAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAARwAAAEcAAANHAAABRwAAAw== + tiles: cAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAALAAAAAAALAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAABcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAALAAAAAAALAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAUwAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAGgAAAAACcAAAAAAAGgAAAAADUwAAAAAAUwAAAAACcAAAAAAAUwAAAAAAUwAAAAADUwAAAAADcAAAAAAAUwAAAAABUwAAAAADUwAAAAADcAAAAAAAGgAAAAACUwAAAAACGgAAAAADGgAAAAADGgAAAAADUwAAAAADUwAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADcAAAAAAAGgAAAAADUwAAAAAAGgAAAAACGgAAAAAAGgAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAAD + version: 6 -4,1: ind: -4,1 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAAJHAAABRwAAAkcAAAJHAAABRwAAAEcAAAFHAAADZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAEcAAABHAAADRwAAASgAAAAoAAAAKAAAAEcAAANHAAACRwAAAxYAAAFjAAAAAAAAAGMAAAAAAAAAYwAAAGQAAABHAAABRwAAAkcAAAMoAAAAKAAAACgAAABHAAABRwAAAUcAAAMWAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAARwAAAkcAAANHAAADKAAAACgAAAAoAAAARwAAAkcAAANHAAAAFgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAABRwAAAEcAAAFHAAABRwAAAUcAAAJHAAACRwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAA6AAAARwAAAUcAAAJHAAABRwAAAkcAAAJHAAAARwAAAEcAAAAWAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAOgAAAEcAAAFHAAACKwAAAEcAAAIoAAAARwAAAUcAAABHAAABFgAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAADoAAAJHAAAARwAAAUcAAAFHAAAARwAAAUcAAAFHAAADRwAAABYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAEcAAANHAAACRwAAA0cAAAFHAAADRwAAA0cAAABkAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAFgAAAxYAAAIWAAACFgAAAxYAAAAWAAADFgAAARYAAAAWAAABZAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABhAAADYQAAAWEAAABhAAAAYQAAA2EAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAYQAAAGEAAAFhAAACYQAAAmEAAAFhAAACAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGEAAAJhAAABYQAAAGEAAABhAAABYQAAAA== + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABLAAAAAAALAAAAAAALAAAAAAAUwAAAAADUwAAAAACUwAAAAADGgAAAAABbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAADLAAAAAAALAAAAAAALAAAAAAAUwAAAAABUwAAAAABUwAAAAADGgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAADLAAAAAAALAAAAAAALAAAAAAAUwAAAAACUwAAAAADUwAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARQAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARQAAAAAAUwAAAAABUwAAAAACLwAAAAAAUwAAAAACLAAAAAAAUwAAAAABUwAAAAAAUwAAAAABGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARQAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAACGgAAAAADGgAAAAAAGgAAAAADGgAAAAABGgAAAAAAGgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAADbQAAAAABbQAAAAAAbQAAAAAAbQAAAAADbQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAAAbQAAAAABbQAAAAACbQAAAAACbQAAAAABbQAAAAACAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAACbQAAAAABbQAAAAAAbQAAAAAAbQAAAAABbQAAAAAA + version: 6 -4,2: ind: -4,2 - tiles: AAAAAGMAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABTAAAAVAAAAGEAAAFhAAAAYQAAA2EAAANhAAABYQAAAgAAAAAAAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAUwAAAGQAAAAWAAACFgAAABYAAAEWAAABFgAAARYAAAIAAAAAYwAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAANkAAAAAAAAAGMAAABkAAAAZAAAAFMAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAEcAAANHAAABRwAAAgAAAAAAAAAAZAAAAGQAAABTAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAACRwAAA0cAAAMAAAAAAAAAAGQAAABkAAAAUwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAVAAAAGQAAABHAAABAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAZAAAAGQAAABTAAAAZAAAAEwAAABMAAAAZAAAAGQAAABkAAAATAAAAGQAAABkAAAAZAAAAEcAAAMAAAAAAAAAAGQAAABkAAAAUwAAAGQAAABkAAAATAAAAGQAAABMAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABAAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAATAAAAEwAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAUwAAAGQAAABkAAAARwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABMAAAATAAAAGQAAABTAAAAZAAAAFMAAABkAAAAZAAAAEcAAAJjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADAAAAAAAAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABjAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAARwAAAw== + tiles: AAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAYAAAAAAAbQAAAAABbQAAAAAAbQAAAAADbQAAAAADbQAAAAABbQAAAAACAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAABGgAAAAABGgAAAAABGgAAAAACAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAACAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAADAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAUwAAAAABAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAD + version: 6 -4,3: ind: -4,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAARwAAAQAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAEcAAAIAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAANXAAAAVwAAA1cAAAJHAAABYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAADVwAAA1cAAAJXAAAARwAAAwAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAlcAAAFXAAADVwAAAEcAAAEAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFcAAABXAAABVwAAA1cAAANHAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAwAAAAAAAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAFgAAABYAAAMWAAAAZAAAAEcAAAEAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAZAAAAEcAAAJHAAABRwAAAEcAAABHAAAAYwAAAGQAAABkAAAAJwAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGQAAABHAAABRwAAAkcAAAFHAAACRwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAABkAAAARwAAAUcAAAJHAAABRwAAAkcAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAARwAAA2QAAABkAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAARwAAAEcAAABHAAAAZAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAEcAAAJHAAACRwAAA2QAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABkAAAARwAAAmQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABHAAABRwAAA0cAAANHAAACRwAAAg== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADYwAAAAAAYwAAAAADYwAAAAACUwAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADYwAAAAADYwAAAAACYwAAAAAAUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAABYwAAAAADYwAAAAAAUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAABYwAAAAADYwAAAAADUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAAAcAAAAAAAUwAAAAABAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAKwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAAC + version: 6 -3,3: ind: -3,3 - tiles: RwAAAEcAAAFkAAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAABkAAAARwAAAUcAAABHAAACRwAAAEcAAANHAAACZAAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAZAAAAEcAAAFHAAADRwAAAUcAAABHAAADRwAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAA2QAAAAWAAACZAAAAGQAAABHAAACRwAAA0cAAANHAAACRwAAA0cAAAEWAAABFgAAAWQAAABkAAAAFgAAABYAAAIWAAAAFgAAABYAAABkAAAARwAAA0cAAABHAAABRwAAA0cAAAJHAAADFgAAAxYAAABkAAAAZAAAAGQAAABkAAAAPAAAAGQAAABkAAAAZAAAAEcAAAJHAAADRwAAA0cAAAJHAAACRwAAAxYAAAMWAAACZAAAAGQAAAA8AAAAPAAAADwAAAA8AAAAPAAAAGQAAABHAAADRwAAAUcAAAFHAAACRwAAAEcAAAMWAAADFgAAAWQAAABkAAAAPAAAADwAAAA8AAAAPAAAADwAAABkAAAARwAAAEcAAANHAAADRwAAAEcAAAJHAAAAZAAAAGQAAABkAAAAZAAAADwAAAA8AAAAPAAAADwAAAA8AAAAZAAAAD8AAABkAAAAZAAAAGQAAABHAAABRwAAA0cAAANHAAADZAAAAGQAAAA8AAAAPAAAADwAAAA8AAAAPAAAAGQAAAA/AAAAPwAAAD8AAAA/AAAARwAAAUcAAABHAAABRwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAPwAAAD8AAAA/AAAAPwAAAEcAAAFHAAACRwAAAUcAAAJkAAAAZAAAAEcAAANkAAAARwAAAD8AAAA/AAAAZAAAAD8AAAA/AAAAPwAAAD8AAABkAAAARwAAAmQAAABkAAAAZAAAAGQAAABkAAAARwAAAmQAAAA/AAAAPwAAACUAAAA/AAAAPwAAAD8AAAA/AAAARwAAAEcAAANHAAACZAAAACUAAABkAAAARwAAAWQAAABHAAACPwAAAD8AAABkAAAAPwAAAD8AAAA/AAAAPwAAAEcAAAJHAAADRwAAAWQAAAAlAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAWQAAABkAAAAJQAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAARwAAAkcAAAFHAAACJQAAACUAAABkAAAAAAAAAAAAAABjAAAAYwAAAAAAAABjAAAAZAAAAGMAAABjAAAAYwAAAA== + tiles: UwAAAAAAUwAAAAABcAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAACcAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAABGgAAAAABGgAAAAABcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAADGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAADGgAAAAADGgAAAAACcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAADGgAAAAADGgAAAAABcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAADcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAUwAAAAAASgAAAAAASgAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAASgAAAAAASgAAAAAAKQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAKQAAAAAAcAAAAAAAUwAAAAABcAAAAAAAUwAAAAACSgAAAAAASgAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAUwAAAAACUwAAAAADUwAAAAABcAAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAABUwAAAAACKQAAAAAAKQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA + version: 6 -2,3: ind: -2,3 - tiles: RwAAAUcAAABHAAACFgAAAGQAAAAWAAABFgAAAhYAAAMWAAAAFgAAAhYAAAFkAAAAYwAAAAAAAAAAAAAAAAAAAEcAAAFHAAABRwAAAhYAAAFkAAAAFgAAABYAAAIWAAABFgAAAhYAAAEWAAACZAAAAGMAAAAAAAAAAAAAAAAAAABHAAACRwAAAkcAAAIWAAABFgAAARYAAAIWAAACFgAAAxYAAAIWAAAAFgAAA2QAAABjAAAAAAAAAAAAAAAAAAAARwAAA0cAAABHAAABFgAAAmQAAAAWAAADFgAAAxYAAAIWAAACFgAAAxYAAAFkAAAAYwAAAAAAAAAAAAAAAAAAAEcAAABHAAABRwAAAhYAAABkAAAAFgAAAhYAAAEWAAABFgAAABYAAAAWAAAAZAAAAGMAAAAAAAAAAAAAAAAAAABHAAACRwAAAUcAAANkAAAAZAAAAGQAAABhAAACYQAAAmEAAANhAAABYQAAAmQAAABkAAAAAAAAAAAAAAAAAAAARwAAAkcAAABHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAPwAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAD8AAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAPwAAAD8AAAA/AAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/AAAAPwAAAD8AAAA/AAAAPwAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAD8AAAA/AAAAPwAAAD8AAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: UwAAAAABUwAAAAAAUwAAAAACGgAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAADGgAAAAAAGgAAAAACGgAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAABUwAAAAACGgAAAAABcAAAAAAAGgAAAAAAGgAAAAACGgAAAAABGgAAAAACGgAAAAABGgAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAACUwAAAAACGgAAAAABGgAAAAABGgAAAAACGgAAAAACGgAAAAADGgAAAAACGgAAAAAAGgAAAAADcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAAAUwAAAAABGgAAAAACcAAAAAAAGgAAAAADGgAAAAADGgAAAAACGgAAAAACGgAAAAADGgAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAABUwAAAAACGgAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAABGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAACbQAAAAADbQAAAAABbQAAAAACcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -3,4: ind: -3,4 - tiles: RwAAAUcAAAFHAAAAJQAAACUAAABkAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAACRwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAUcAAAAyAAAAMgAAAGQAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAABHAAABMgAAADIAAABkAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAADAAAAAwAAAAMAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAwAAAAMAAAADAAAABkAAAAAAAAAAAAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: UwAAAAABUwAAAAABUwAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAABOgAAAAAAOgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -4,4: ind: -4,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABHAAABRwAAAUcAAAFHAAAARwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABkAAAARwAAA0cAAANHAAADRwAAAEcAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAEcAAANHAAABRwAAA0cAAANHAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABHAAAARwAAA0cAAABHAAACRwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAZAAAADAAAAAwAAAAMAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAGQAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -1,2: ind: -1,2 - tiles: FgAAARYAAAMWAAABMwAAADMAAAAzAAAAMwAAADMAAAAzAAAAMwAAABYAAAAWAAABFgAAABsAAAIWAAADYQAAABYAAAMWAAABZAAAADMAAABhAAADYQAAA2EAAAFhAAAAYQAAAjMAAABkAAAAFgAAABYAAANkAAAAFgAAA2EAAAAWAAAAFgAAAWQAAAAzAAAAYQAAASYAAAImAAACJgAAA2EAAAEzAAAAZAAAABYAAAEWAAACZAAAAGQAAAAWAAABFgAAAxYAAAFkAAAAMwAAAGEAAAJhAAACYQAAAmEAAABhAAAAMwAAAGQAAAAWAAAAFgAAAWQAAABhAAABYQAAAxYAAAIWAAABZAAAADMAAAAzAAAAMwAAADMAAAAzAAAAMwAAADMAAABkAAAAFgAAAxYAAANkAAAAZAAAAGQAAAAWAAADFgAAAmQAAABkAAAAZAAAABYAAAIWAAACFgAAAGQAAABkAAAAZAAAABYAAAEWAAADFgAAA1MAAABkAAAAFgAAABYAAAAWAAACFgAAA2QAAABkAAAAFgAAAWQAAABkAAAAFgAAABYAAAMWAAAAFgAAA2QAAABTAAAAZAAAABYAAAMWAAADFgAAAxYAAAAWAAADFgAAARYAAAAWAAADFgAAARYAAAMWAAADFgAAAxYAAAJkAAAAZAAAAGQAAAAWAAACFgAAABsAAAMWAAAAFgAAAhYAAAMWAAAAFgAAAhYAAAAWAAADGwAAARYAAAEWAAAAZAAAAGQAAABkAAAAFgAAAhYAAAMWAAAAFgAAAhYAAAAoAAAAKAAAACgAAAAWAAADFgAAAxYAAAIWAAABFgAAA2QAAABkAAAAZAAAAGQAAAAWAAABFgAAARYAAAIWAAACFgAAABYAAAEWAAACFgAAABYAAAIWAAACFgAAAGQAAABkAAAAYwAAAGMAAABkAAAAFgAAABYAAAIWAAAAFgAAAhYAAAEbAAADFgAAAxYAAAIWAAACFgAAAhYAAAJkAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAFgAAARYAAAIWAAADFgAAAhYAAAEWAAADFgAAAWQAAABkAAAAZAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAZAAAABYAAAEWAAACFgAAAxYAAAEWAAACFgAAAxYAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAAAWAAACFgAAARYAAAMWAAADFgAAAxYAAAIWAAADZAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAYwAAAA== + tiles: GgAAAAABGgAAAAADGgAAAAABOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAGgAAAAAAGgAAAAABGgAAAAAAHwAAAAACGgAAAAADbQAAAAAAGgAAAAADGgAAAAABcAAAAAAAOwAAAAAAbQAAAAADbQAAAAADbQAAAAABbQAAAAAAbQAAAAACOwAAAAAAcAAAAAAAGgAAAAAAGgAAAAADcAAAAAAAGgAAAAADbQAAAAAAGgAAAAAAGgAAAAABcAAAAAAAOwAAAAAAbQAAAAABKgAAAAACKgAAAAACKgAAAAADbQAAAAABOwAAAAAAcAAAAAAAGgAAAAABGgAAAAACcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAABcAAAAAAAOwAAAAAAbQAAAAACbQAAAAACbQAAAAACbQAAAAAAbQAAAAAAOwAAAAAAcAAAAAAAGgAAAAAAGgAAAAABcAAAAAAAbQAAAAABbQAAAAADGgAAAAACGgAAAAABcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAADXwAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAAAGgAAAAADcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAADGgAAAAAAGgAAAAADGgAAAAABGgAAAAAAGgAAAAADGgAAAAABGgAAAAADGgAAAAADGgAAAAADGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAHwAAAAADGgAAAAAAGgAAAAACGgAAAAADGgAAAAAAGgAAAAACGgAAAAAAGgAAAAADHwAAAAABGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAAAGgAAAAACGgAAAAAALAAAAAAALAAAAAAALAAAAAAAGgAAAAADGgAAAAADGgAAAAACGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAACGgAAAAACGgAAAAAAGgAAAAABGgAAAAACGgAAAAAAGgAAAAACGgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAAAGgAAAAACGgAAAAABHwAAAAADGgAAAAADGgAAAAACGgAAAAACGgAAAAACGgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAADGgAAAAACGgAAAAABGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAADGgAAAAABGgAAAAACGgAAAAADGgAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAADGgAAAAADGgAAAAADGgAAAAACGgAAAAADcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAA + version: 6 0,2: ind: 0,2 - tiles: YQAAAWEAAABhAAADYQAAAmEAAANhAAAAZAAAAEcAAANHAAACRwAAAEcAAAJHAAAAZAAAAAAAAABjAAAAZAAAAGEAAABhAAABYQAAAmEAAAJhAAACYQAAAR8AAABHAAADRwAAAkcAAABHAAAARwAAA2QAAAAAAAAAYwAAAGQAAABkAAAAZAAAABYAAAIWAAADFgAAARYAAABkAAAARwAAAkcAAANHAAACRwAAA0cAAABkAAAAAAAAAGMAAABkAAAAYQAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAADRwAAAUcAAABHAAABZAAAAGMAAABjAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAEcAAAJkAAAAZAAAAGQAAAAAAAAAYwAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABHAAABZAAAAGMAAABjAAAAAAAAAGMAAABkAAAAZAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAmQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAAAAAAAAAAAAAGQAAABHAAADRwAAAEcAAANHAAADRwAAA0cAAABHAAAARwAAA0cAAAJkAAAAYwAAAGQAAABkAAAAAAAAAGQAAABkAAAAZAAAABYAAAFkAAAAZAAAAGQAAABHAAABZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGMAAABkAAAAFgAAARYAAAMWAAABFgAAAhYAAANkAAAARwAAAUcAAABHAAAAZAAAAGQAAABjAAAAZAAAAGMAAAAAAAAAZAAAABYAAAIsAAAALAAAACwAAAAWAAAAZAAAAEcAAABHAAAARwAAAGQAAABkAAAAYwAAAGQAAAAAAAAAAAAAAGQAAAAWAAACLAAAABYAAAAsAAAAFgAAAWQAAABTAAAAUwAAAFMAAABkAAAAZAAAAGMAAABkAAAAAAAAAAAAAABkAAAAFgAAACwAAAAsAAAALAAAABYAAAFkAAAAUwAAAFMAAABTAAAAZAAAAAAAAABjAAAAZAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAGQAAAAAAAAAYwAAAGQAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAABkAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAA== + tiles: bQAAAAABbQAAAAAAbQAAAAADbQAAAAACbQAAAAADbQAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbQAAAAAAbQAAAAABbQAAAAACbQAAAAACbQAAAAACbQAAAAABIwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAABGgAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAADUwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAABcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAABcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAABGgAAAAACGgAAAAADcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAGgAAAAACMwAAAAAAMwAAAAAAMwAAAAAAGgAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAACMwAAAAAAGgAAAAAAMwAAAAAAGgAAAAABcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAGgAAAAABcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAA + version: 6 -1,3: ind: -1,3 - tiles: AAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGQAAABkAAAAFgAAAWQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAIWAAAAFgAAAg== + tiles: AAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAAC + version: 6 1,1: ind: 1,1 - tiles: ZAAAAGAAAABgAAACZAAAABYAAAAWAAADFgAAAhYAAANkAAAAYQAAAWEAAAJhAAAAYQAAA2EAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAhYAAAMWAAADZAAAAGQAAABkAAAAZAAAABYAAANkAAAAZAAAAEcAAABkAAAAYAAAAmAAAAJgAAADYAAAAkcAAAFHAAADRwAAAUcAAABHAAABFgAAAxYAAAMWAAACFgAAAhYAAAMWAAADZAAAAGAAAAJgAAAAYAAAAWAAAABHAAADRwAAAEcAAANHAAACRwAAARYAAAEWAAABFgAAABYAAAAWAAADFgAAAhYAAAMWAAABFgAAAUcAAANHAAABRwAAA0cAAAJHAAADRwAAA0cAAAIWAAABFgAAAhYAAAMWAAAAFgAAABYAAAMWAAACFgAAARYAAAFHAAABRwAAAEcAAAJHAAACRwAAAEcAAAFHAAABVwAAARsAAAMbAAAAGwAAAzoAAAI6AAABFgAAARYAAAIWAAAARwAAA0cAAABHAAAARwAAAUcAAAFHAAADRwAAA2QAAAAbAAABGwAAABsAAAA6AAABOgAAARYAAAEWAAACFgAAAUcAAAFHAAADRwAAA0cAAAFHAAADRwAAA0cAAANkAAAAGwAAARsAAAAbAAABOgAAAjoAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAARwAAA0cAAAJHAAABRwAAAEcAAAFHAAACRwAAAEcAAAFHAAABZAAAAFcAAAJaAAADDQAAAA0AAABkAAAAUwAAAEcAAAJHAAAARwAAA0cAAAJHAAAARwAAAEcAAAFHAAACRwAAAlcAAAJXAAABWwAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAkcAAAJHAAAARwAAA0cAAABHAAADRwAAAkcAAANkAAAAVwAAAVsAAAFkAAAADQAAAGQAAAANAAAAZAAAAGQAAABUAAAAZAAAAGQAAABHAAAARwAAAUcAAAFkAAAAZAAAAFcAAANaAAACZAAAAA0AAABkAAAADQAAAGQAAABkAAAAUwAAAGQAAABkAAAARwAAA0cAAAJHAAABZAAAAFcAAANXAAADWwAAAFoAAAJbAAAAWwAAAFoAAAFkAAAAZAAAAFMAAABkAAAAVAAAAEcAAAFHAAABRwAAAmQAAABXAAADVwAAAloAAABbAAABWgAAA1oAAANbAAACZAAAAGQAAABTAAAAZAAAAGQAAABHAAACRwAAAUcAAAFkAAAAVwAAAFcAAANXAAABZAAAAFcAAABXAAABVwAAAQ== + tiles: cAAAAAAAbAAAAAAAbAAAAAACcAAAAAAAGgAAAAAAGgAAAAADGgAAAAACGgAAAAADcAAAAAAAbQAAAAABbQAAAAACbQAAAAAAbQAAAAADbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAbAAAAAACbAAAAAACbAAAAAADbAAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAABGgAAAAADGgAAAAADGgAAAAACGgAAAAACGgAAAAADGgAAAAADcAAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAABGgAAAAABGgAAAAABGgAAAAAAGgAAAAAAGgAAAAADGgAAAAACGgAAAAADGgAAAAABGgAAAAABUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAACGgAAAAABGgAAAAACGgAAAAADGgAAAAAAGgAAAAAAGgAAAAADGgAAAAACGgAAAAABGgAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAABYwAAAAABHwAAAAADHwAAAAAAHwAAAAADRQAAAAACRQAAAAABGgAAAAABGgAAAAACGgAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAADcAAAAAAAHwAAAAABHwAAAAAAHwAAAAAARQAAAAABRQAAAAABGgAAAAABGgAAAAACGgAAAAABUwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAADcAAAAAAAHwAAAAABHwAAAAAAHwAAAAABRQAAAAACRQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAYwAAAAACZgAAAAADDgAAAAAADgAAAAAAcAAAAAAAXwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAACYwAAAAACYwAAAAABZwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAADcAAAAAAAYwAAAAABZwAAAAABcAAAAAAADgAAAAAAcAAAAAAADgAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAYwAAAAADZgAAAAACcAAAAAAADgAAAAAAcAAAAAAADgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABcAAAAAAAYwAAAAADYwAAAAADZwAAAAAAZgAAAAACZwAAAAAAZwAAAAAAZgAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYAAAAAAAUwAAAAABUwAAAAABUwAAAAACcAAAAAAAYwAAAAADYwAAAAACZgAAAAAAZwAAAAABZgAAAAADZgAAAAADZwAAAAACcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAABcAAAAAAAYwAAAAAAYwAAAAADYwAAAAABcAAAAAAAYwAAAAAAYwAAAAABYwAAAAAB + version: 6 1,2: ind: 1,2 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAA0cAAAFkAAAAZAAAAFcAAANkAAAAZAAAAGQAAABkAAAAZAAAADMAAAAzAAAAMwAAADMAAABHAAAARwAAA0cAAANHAAADRwAAA0cAAAJHAAACRwAAAWQAAABOAAACTgAAAU4AAAMzAAAAMwAAADMAAABkAAAARwAAAUcAAAJHAAACRwAAAkcAAAFHAAACRwAAA0cAAAJkAAAATgAAAU4AAAFOAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAAARwAAAkcAAAFHAAACRwAAAUcAAABHAAACZAAAAEcAAAFHAAACRwAAAGEAAABhAAABYQAAAmEAAABHAAADRwAAAkcAAANHAAABRwAAAEcAAABHAAAARwAAAUcAAAFHAAABRwAAAkcAAAFhAAACYQAAA2EAAAFkAAAARwAAAkcAAABHAAABRwAAAEcAAANHAAABRwAAAkcAAAJHAAABRwAAAUcAAAJHAAADZAAAAGQAAABkAAAAZAAAAEcAAABHAAAARwAAAUcAAAFHAAABRwAAAUcAAABHAAAAZAAAAEcAAANHAAAARwAAA2EAAAFhAAABYQAAAWEAAANHAAAARwAAAkcAAANHAAADRwAAAEcAAAFHAAAARwAAAWQAAABOAAAATgAAA04AAABhAAACYQAAAmEAAAFkAAAARwAAAkcAAAFHAAABRwAAAkcAAAJHAAABRwAAA0cAAAFkAAAAZAAAACUAAABkAAAAZAAAAGQAAABkAAAAZAAAADIAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAACUAAAAlAAAAJQAAAFMAAABkAAAAMgAAADIAAAAyAAAAMgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAlAAAAJQAAACUAAABkAAAAVAAAADIAAAAyAAAAMgAAADIAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAyAAAAMgAAADIAAAAyAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAUwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAFMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAA== + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAABcAAAAAAAWgAAAAACWgAAAAABWgAAAAADOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAACcAAAAAAAWgAAAAABWgAAAAABWgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAUwAAAAABUwAAAAACUwAAAAAAbQAAAAAAbQAAAAABbQAAAAACbQAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAABbQAAAAACbQAAAAADbQAAAAABcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADbQAAAAABbQAAAAABbQAAAAABbQAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABcAAAAAAAWgAAAAAAWgAAAAADWgAAAAAAbQAAAAACbQAAAAACbQAAAAABcAAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAXwAAAAAAcAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAYAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 2,2: ind: 2,2 - tiles: ZAAAADwAAABkAAAAFgAAAh0AAAIdAAAAHQAAAB0AAAIdAAAAHQAAAx0AAAIWAAACZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAB0AAAAdAAADFgAAABYAAAEWAAABFgAAARYAAAIdAAACHQAAAGQAAABHAAAAFgAAA2QAAABOAAAATgAAAmQAAAAdAAABFgAAAhYAAAIWAAADFgAAABYAAAIWAAADFgAAAB0AAAEWAAABFgAAAUcAAANkAAAARwAAAEcAAAJHAAACHQAAABYAAAAWAAABFgAAAxYAAAIWAAADFgAAAhYAAAIdAAABZAAAAEcAAAAWAAACZAAAAEcAAAFHAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAACRwAAAWQAAABHAAACRwAAAmQAAAAWAAABYQAAAWEAAANhAAABYQAAA2EAAANhAAABYQAAA2EAAAJkAAAARwAAABYAAANkAAAARwAAAkcAAAAWAAABFgAAAWEAAABhAAACYQAAAmEAAANhAAAAYQAAAWEAAAJhAAABFgAAAhYAAAJHAAADZAAAAE4AAAJOAAAAZAAAABYAAABhAAABYQAAAWEAAAJhAAAAYQAAA2EAAABhAAABYQAAAGQAAABHAAACFgAAA2QAAABkAAAAZAAAAGQAAAAWAAADYQAAAWEAAABhAAABYQAAAGEAAAFhAAAAYQAAAWEAAAFkAAAAZAAAAEcAAABkAAAAZAAAAGQAAABkAAAAFgAAAWEAAABhAAAAYQAAAmEAAAJhAAABYQAAA2EAAAMWAAACRwAAAUcAAABHAAABZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAAGQAAABkAAAAYQAAAmQAAABhAAADYQAAAmEAAANkAAAAYQAAAGQAAABhAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAAmQAAABkAAAAYQAAAmEAAANkAAAAZAAAAGEAAAFhAAACZAAAAGQAAABkAAAAZAAAAGEAAAFhAAADYQAAAGQAAABhAAABZAAAAGQAAABhAAABYQAAAWQAAABhAAABZAAAAGEAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAA== + tiles: cAAAAAAARwAAAAAAcAAAAAAAGgAAAAACIQAAAAACIQAAAAAAIQAAAAAAIQAAAAACIQAAAAAAIQAAAAADIQAAAAACGgAAAAACcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIQAAAAAAIQAAAAADGgAAAAAAGgAAAAABGgAAAAABGgAAAAABGgAAAAACIQAAAAACIQAAAAAAcAAAAAAAUwAAAAAAGgAAAAADcAAAAAAAWgAAAAAAWgAAAAACcAAAAAAAIQAAAAABGgAAAAACGgAAAAACGgAAAAADGgAAAAAAGgAAAAACGgAAAAADGgAAAAAAIQAAAAABGgAAAAABGgAAAAABUwAAAAADcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACIQAAAAAAGgAAAAAAGgAAAAABGgAAAAADGgAAAAACGgAAAAADGgAAAAACGgAAAAACIQAAAAABcAAAAAAAUwAAAAAAGgAAAAACcAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACUwAAAAABcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAGgAAAAABbQAAAAABbQAAAAADbQAAAAABbQAAAAADbQAAAAADbQAAAAABbQAAAAADbQAAAAACcAAAAAAAUwAAAAAAGgAAAAADcAAAAAAAUwAAAAACUwAAAAAAGgAAAAABGgAAAAABbQAAAAAAbQAAAAACbQAAAAACbQAAAAADbQAAAAAAbQAAAAABbQAAAAACbQAAAAABGgAAAAACGgAAAAACUwAAAAADcAAAAAAAWgAAAAACWgAAAAAAcAAAAAAAGgAAAAAAbQAAAAABbQAAAAABbQAAAAACbQAAAAAAbQAAAAADbQAAAAAAbQAAAAABbQAAAAAAcAAAAAAAUwAAAAACGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADbQAAAAABbQAAAAAAbQAAAAABbQAAAAAAbQAAAAABbQAAAAAAbQAAAAABbQAAAAABcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABbQAAAAAAbQAAAAAAbQAAAAACbQAAAAACbQAAAAABbQAAAAADbQAAAAADGgAAAAACUwAAAAABUwAAAAAAUwAAAAABcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAbQAAAAACcAAAAAAAbQAAAAADbQAAAAACbQAAAAADcAAAAAAAbQAAAAAAcAAAAAAAbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACcAAAAAAAcAAAAAAAbQAAAAACbQAAAAADcAAAAAAAcAAAAAAAbQAAAAABbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAADbQAAAAAAcAAAAAAAbQAAAAABcAAAAAAAcAAAAAAAbQAAAAABbQAAAAABcAAAAAAAbQAAAAABcAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA + version: 6 2,1: ind: 2,1 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAZAAAAGQAAAAWAAAAFgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAABYAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAABYAAAMWAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAGQAAABMAAAATAAAAGQAAAA6AAADZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAFMAAABTAAAATAAAAEwAAABkAAAAOgAAAmQAAABTAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABTAAAAUwAAAEwAAABTAAAAZAAAADoAAANkAAAAUwAAAGQAAABkAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAATAAAAFMAAABTAAAAUwAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAwAAAAMAAAADAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAMAAAADAAAAAwAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAADAAAAAwAAAAMAAABkAAAAZAAAAFoAAANbAAADZAAAACIAAAAiAAAAIgAAACIAAAAiAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFcAAANbAAAAWgAAAmQAAAAiAAAAIgAAACIAAAAiAAAAIgAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAFMAAABkAAAAWwAAAVsAAAFkAAAAIgAAACIAAAAiAAAAIgAAACIAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAARQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAWAAAAAAAWAAAAAAAcAAAAAAARQAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAWAAAAAAAXwAAAAAAcAAAAAAARQAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAcAAAAAAAcAAAAAAAZgAAAAADZwAAAAADcAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADZwAAAAAAZgAAAAACcAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAZwAAAAABZwAAAAABcAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 1,0: ind: 1,0 - tiles: RwAAAkcAAANHAAAARwAAAEcAAAFHAAACZAAAAGEAAABhAAACYQAAAWEAAAJHAAABZAAAAEcAAAFHAAABRwAAA0cAAAJHAAACRwAAAkcAAAJHAAACRwAAA2QAAABhAAADYQAAAmEAAAFhAAACRwAAAkcAAAFHAAAARwAAAUcAAAFHAAACRwAAAkcAAAFHAAABRwAAAkcAAAJkAAAAYQAAAWEAAANhAAAAYQAAA0cAAAJkAAAARwAAAkcAAABHAAABZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAUwAAAGQAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAABYAAAAWAAABVwAAAlcAAANXAAABVwAAA1cAAANXAAAAFgAAAhYAAANTAAAAUwAAAGQAAABkAAAAZAAAABYAAAAWAAACFgAAA1cAAAFXAAABVwAAAlcAAABXAAABVwAAAhYAAAAWAAACZAAAAGQAAABkAAAAZAAAAGQAAAAWAAABFgAAARYAAAJXAAADVwAAAkcAAABHAAAARwAAAlcAAABkAAAAFgAAARYAAAAWAAACFgAAAxYAAAAWAAAAFgAAAhYAAAAWAAAAVwAAAFcAAAJHAAAARwAAA0cAAAFXAAABZAAAAGQAAAAWAAABFgAAAxYAAAMWAAAAFgAAABYAAAMWAAAAFgAAAVcAAAFXAAACVwAAAlcAAAFXAAAAVwAAAWQAAAAWAAADFgAAARYAAAMWAAACFgAAABYAAAAWAAADFgAAABYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAmQAAABkAAAAZAAAAGQAAABkAAAAFgAAAhYAAAIWAAACZAAAAGEAAAFhAAACYQAAAGEAAANhAAADZAAAAGQAAABkAAAAYAAAAVMAAABkAAAAFgAAAhYAAAIWAAACFgAAA2QAAABhAAABYQAAAWEAAABhAAACYQAAAWQAAAAOAAAAFgAAAhYAAAIWAAABFgAAAhYAAAAWAAACFgAAAxYAAAJkAAAAYQAAA2EAAAJhAAACYQAAA2EAAAJkAAAADgAAAA== + tiles: UwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAbQAAAAAAbQAAAAACbQAAAAABbQAAAAACUwAAAAABcAAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAADcAAAAAAAbQAAAAADbQAAAAACbQAAAAABbQAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAACcAAAAAAAbQAAAAABbQAAAAADbQAAAAAAbQAAAAADUwAAAAACcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAABYwAAAAACYwAAAAADYwAAAAABYwAAAAADYwAAAAADYwAAAAAAGgAAAAACGgAAAAADXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAADYwAAAAABYwAAAAABYwAAAAACYwAAAAAAYwAAAAABYwAAAAACGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAACYwAAAAADYwAAAAACUwAAAAAAUwAAAAAAUwAAAAACYwAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAACGgAAAAADGgAAAAAAGgAAAAAAGgAAAAACGgAAAAAAGgAAAAAAYwAAAAAAYwAAAAACUwAAAAAAUwAAAAADUwAAAAABYwAAAAABcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAADGgAAAAAAGgAAAAAAGgAAAAADGgAAAAAAGgAAAAABYwAAAAABYwAAAAACYwAAAAACYwAAAAABYwAAAAAAYwAAAAABcAAAAAAAGgAAAAADGgAAAAABGgAAAAADGgAAAAACGgAAAAAAGgAAAAAAGgAAAAADGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAACcAAAAAAAbQAAAAABbQAAAAACbQAAAAAAbQAAAAADbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAbAAAAAABXwAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAACGgAAAAADcAAAAAAAbQAAAAABbQAAAAABbQAAAAAAbQAAAAACbQAAAAABcAAAAAAADwAAAAAAGgAAAAACGgAAAAACGgAAAAABGgAAAAACGgAAAAAAGgAAAAACGgAAAAADGgAAAAACcAAAAAAAbQAAAAADbQAAAAACbQAAAAACbQAAAAADbQAAAAACcAAAAAAADwAAAAAA + version: 6 1,-1: ind: 1,-1 - tiles: YwAAAGQAAAAWAAAAFgAAARYAAAEWAAACFgAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAPAAAADwAAAA8AAAAPAAAADwAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAADwAAAA8AAAAPAAAADwAAAA8AAAAZAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAADZAAAAEcAAABHAAACRwAAA2QAAABHAAABRwAAAEcAAANHAAADRwAAAUcAAANHAAADRwAAA0cAAAFHAAAARwAAAkcAAANHAAABRwAAA0cAAABHAAABRwAAAUcAAAFHAAADRwAAAUcAAAJHAAACRwAAAkcAAAJHAAAAUwAAAFMAAABkAAAARwAAAEcAAAFHAAABZAAAAEcAAABHAAACRwAAAEcAAAJHAAAARwAAAUcAAAJHAAACRwAAAGQAAABkAAAAZAAAAEcAAAFHAAABRwAAAGQAAABkAAAARwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAAARwAAA2QAAABHAAACRwAAAEcAAABHAAACRwAAA0cAAABHAAABRwAAAEcAAAFHAAADRwAAAEcAAAFHAAACRwAAAEcAAAJHAAACRwAAA0cAAANHAAADRwAAAkcAAABHAAACRwAAAEcAAAFHAAACRwAAAEcAAAFHAAABRwAAAUcAAANHAAACZAAAAEcAAAJHAAACRwAAA2QAAABHAAACRwAAAUcAAABHAAACRwAAAUcAAAJHAAAARwAAAEcAAAJHAAACRwAAAGQAAABHAAADRwAAAUcAAAJkAAAARwAAAUcAAANHAAAARwAAAUcAAAFHAAACRwAAA0cAAAJHAAACRwAAAUcAAAJkAAAARwAAA0cAAAJHAAACZAAAAEcAAABHAAABRwAAAkcAAAFHAAADRwAAA0cAAAJHAAAARwAAAkcAAABHAAABZAAAAEcAAAJHAAABRwAAAkcAAAJHAAAARwAAAkcAAABHAAAARwAAAkcAAABHAAAARwAAAkcAAAFHAAACRwAAAGQAAABHAAADRwAAAEcAAAJHAAACRwAAA0cAAAFHAAACRwAAAkcAAAFHAAAARwAAAEcAAAFHAAACZAAAAGQAAABkAAAAZAAAAEcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAAZAAAAA== + tiles: bwAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAABGgAAAAACGgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAACcAAAAAAAUwAAAAACUwAAAAACUwAAAAADcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAACcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAACcAAAAAAAUwAAAAADUwAAAAACUwAAAAACcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAA + version: 6 -1,-2: ind: -1,-2 - tiles: FgAAA2QAAABHAAADRwAAA0cAAANHAAAARwAAAEcAAANHAAADRwAAAkcAAABkAAAAZAAAAEcAAAFkAAAAZAAAABYAAANkAAAARwAAAkcAAAFHAAACRwAAA0cAAAJHAAABRwAAAEcAAAJHAAACZAAAAEcAAAFHAAACRwAAAkcAAAAWAAADFgAAA0cAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAAJHAAABRwAAAUcAAABHAAACFgAAA2QAAABHAAACRwAAA0cAAAFHAAACRwAAAUcAAANHAAACRwAAAEcAAAJkAAAARwAAA0cAAANHAAADRwAAAmQAAABkAAAARwAAAEcAAAFHAAABRwAAAkcAAAFHAAABRwAAAEcAAABHAAAAZAAAAEcAAAFHAAACRwAAA0cAAABTAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAEcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAAJHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAEcAAANHAAADRwAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAlcAAANXAAADVwAAAlcAAANkAAAAZAAAAGQAAABHAAACRwAAAUcAAAJkAAAAJQAAACUAAAAlAAAAZAAAAGAAAABgAAAAVwAAAWAAAANgAAADZAAAAGQAAABkAAAARwAAAUcAAAJHAAABZAAAACUAAAAlAAAAJQAAAGQAAABXAAABVwAAAVcAAAJXAAABVwAAAGQAAABkAAAAZAAAAEcAAANHAAACRwAAAmQAAAAlAAAAJQAAACUAAAAWAAABFgAAAhYAAAAWAAADFgAAABYAAABUAAAAZAAAAGQAAABHAAAARwAAAUcAAAJHAAACJQAAACUAAAAlAAAAZAAAABYAAAMWAAABFgAAAxYAAAEWAAADZAAAAGQAAABkAAAARwAAA0cAAAJHAAAARwAAASUAAAAlAAAAJQAAAGQAAAAWAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAADRwAAAkcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAABFgAAAxYAAAFkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAVwAAAlcAAABXAAADVwAAAFcAAAMWAAADFgAAAhYAAAMWAAADZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAUwAAAA== + tiles: GgAAAAADcAAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAAAGgAAAAADGgAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAACGgAAAAADcAAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAADUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAADYwAAAAADYwAAAAACYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAACcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAbAAAAAAAbAAAAAAAYwAAAAABbAAAAAADbAAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAYwAAAAABYwAAAAABYwAAAAACYwAAAAABYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAGgAAAAABGgAAAAACGgAAAAAAGgAAAAADGgAAAAAAGgAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAACKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAADGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAABKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAAAYwAAAAADYwAAAAAAYwAAAAADGgAAAAADGgAAAAACGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAA + version: 6 -2,-2: ind: -2,-2 - tiles: ZAAAAGQAAABkAAAAZAAAAGEAAAFhAAADZAAAAGQAAABkAAAAZAAAAGEAAABkAAAAZAAAAGQAAAAWAAADFgAAAmQAAABkAAAAZAAAAGQAAABkAAAAYQAAAmQAAABhAAACYQAAAWEAAAFkAAAAZAAAAGQAAABkAAAAFgAAAxYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAEWAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAACFgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFcAAAJXAAABZAAAAFcAAANXAAAAVwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABXAAAAVwAAA2QAAABXAAABVwAAAlcAAAJXAAACZAAAAGQAAABkAAAAZAAAAGQAAABXAAABVwAAAlcAAAJkAAAAVwAAAFcAAAJkAAAAVwAAA1cAAABXAAAAVwAAAWQAAABhAAACYQAAAWEAAAFgAAACVwAAA2AAAAFXAAACZAAAAFcAAAJkAAAAZAAAAFcAAAJXAAACVwAAAVcAAANkAAAAYQAAAmEAAABhAAABZAAAAFcAAAFXAAAAVwAAAGQAAABXAAADVwAAA1cAAAJXAAADVwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAAAYAAAAlcAAAIlAAAAVwAAAlcAAAFXAAADVwAAA1cAAAJkAAAAVwAAAVcAAAJXAAADVwAAAVcAAABkAAAAVwAAAVcAAAJXAAACZAAAACUAAABkAAAAVwAAA1cAAAJXAAAAZAAAAFcAAANXAAADVwAAAlcAAAJXAAADVwAAAlcAAAFgAAAAVwAAA2QAAAA/AAAAZAAAAGQAAABXAAACZAAAAGQAAABXAAACVwAAA1cAAABXAAACVwAAAFcAAABXAAACYAAAAFcAAAJkAAAAZAAAAGQAAABTAAAAVwAAAlcAAAFkAAAAVwAAAFcAAABXAAACVwAAAlcAAAJkAAAAVwAAAlcAAABXAAADZAAAAA== + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACcAAAAAAAbQAAAAACbQAAAAABbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAABcAAAAAAAYwAAAAADYwAAAAAAYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAADcAAAAAAAYwAAAAABYwAAAAACYwAAAAACYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAACYwAAAAACcAAAAAAAYwAAAAAAYwAAAAACcAAAAAAAYwAAAAADYwAAAAAAYwAAAAAAYwAAAAABcAAAAAAAbQAAAAACbQAAAAABbQAAAAABbAAAAAACYwAAAAADbAAAAAABYwAAAAACcAAAAAAAYwAAAAACcAAAAAAAcAAAAAAAYwAAAAACYwAAAAACYwAAAAABYwAAAAADcAAAAAAAbQAAAAACbQAAAAAAbQAAAAABcAAAAAAAYwAAAAABYwAAAAAAYwAAAAAAcAAAAAAAYwAAAAADYwAAAAADYwAAAAACYwAAAAADYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAbAAAAAACYwAAAAACKQAAAAAAYwAAAAACYwAAAAABYwAAAAADYwAAAAADYwAAAAACcAAAAAAAYwAAAAABYwAAAAACYwAAAAADYwAAAAABYwAAAAAAcAAAAAAAYwAAAAABYwAAAAACYwAAAAACcAAAAAAAKQAAAAAAcAAAAAAAYwAAAAADYwAAAAACYwAAAAAAcAAAAAAAYwAAAAADYwAAAAADYwAAAAACYwAAAAACYwAAAAADYwAAAAACYwAAAAABbAAAAAAAYwAAAAADcAAAAAAASgAAAAAAcAAAAAAAcAAAAAAAYwAAAAACcAAAAAAAcAAAAAAAYwAAAAACYwAAAAADYwAAAAAAYwAAAAACYwAAAAAAYwAAAAAAYwAAAAACbAAAAAAAYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAYwAAAAACYwAAAAABcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAACYwAAAAACYwAAAAACcAAAAAAAYwAAAAACYwAAAAAAYwAAAAADcAAAAAAA + version: 6 -3,-2: ind: -3,-2 - tiles: YwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAFgAAAhYAAAEWAAACFgAAAxYAAAIWAAABFgAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAWAAABZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAUwAAAGQAAABkAAAAAAAAAAAAAABjAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAADFgAAAxYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAAAVwAAA2QAAAAWAAADFgAAABYAAAMWAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAFcAAANkAAAAZAAAABYAAAEWAAACFgAAAmQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFcAAABXAAACZAAAAGQAAAAWAAACFgAAAhYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAGQAAABkAAAAFgAAASYAAAAWAAADZAAAAGEAAAFkAAAARgAAAmQAAABhAAACZAAAAGQAAABkAAAAVwAAAlcAAANXAAACZAAAABYAAAIWAAADFgAAAGQAAABGAAACZAAAAEYAAARGAAAKZAAAAGQAAABkAAAAZAAAAFcAAABXAAADVwAAAGQAAAAWAAADJgAAABYAAAJkAAAAYQAAAUYAAABGAAAIRgAAAWQAAABkAAAAZAAAAGQAAAAlAAAAJQAAAD8AAABkAAAAFgAAAhYAAAEWAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAPwAAACUAAAAlAAAAZAAAABYAAAAmAAADFgAAA1QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: bwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAACGgAAAAADGgAAAAACGgAAAAABGgAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAADcAAAAAAAGgAAAAADGgAAAAAAGgAAAAADGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAADcAAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAACcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAGgAAAAABKgAAAAAAGgAAAAADcAAAAAAAbQAAAAABcAAAAAAAUQAAAAACcAAAAAAAbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAADYwAAAAACcAAAAAAAGgAAAAACGgAAAAADGgAAAAAAcAAAAAAAUQAAAAACcAAAAAAAUQAAAAAEUQAAAAAKcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAADYwAAAAAAcAAAAAAAGgAAAAADKgAAAAAAGgAAAAACcAAAAAAAbQAAAAABUQAAAAAAUQAAAAAIUQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAASgAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAGgAAAAAAKgAAAAADGgAAAAADYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 0,-2: ind: 0,-2 - tiles: ZAAAAEcAAAFkAAAAZAAAAGQAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAZAAAAEcAAAJHAAABRwAAAkcAAAFkAAAAZAAAAEcAAABkAAAAZAAAAGQAAABHAAADRwAAAWQAAABkAAAAZAAAAGQAAABHAAACRwAAAEcAAAJHAAAARwAAAUcAAANHAAADRwAAA2QAAABHAAAARwAAA0cAAABHAAACZAAAAGQAAABkAAAARwAAA0cAAABHAAADRwAAAGQAAABHAAADRwAAAkcAAABkAAAARwAAAEcAAAFHAAAARwAAAWQAAABkAAAAZAAAAEcAAANHAAAARwAAAkcAAABkAAAARwAAAkcAAAJHAAADZAAAAEcAAAJHAAACRwAAAUcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJkAAAAZAAAAEcAAABHAAACRwAAA2QAAABkAAAARwAAAEcAAABkAAAAZAAAAGQAAABkAAAAKAAAACgAAAAoAAAACgAAAGQAAABHAAAARwAAAEcAAAFkAAAARwAAAEcAAAJHAAACRwAAAEcAAAJTAAAAZAAAACgAAAAoAAAAKAAAAAoAAABkAAAARwAAAkcAAAFHAAABRwAAAEcAAABHAAABRwAAAEcAAABHAAAAUwAAAGQAAAAoAAAAKAAAACgAAAAKAAAAZAAAAEcAAANHAAACRwAAA0cAAAFHAAADRwAAAkcAAAJHAAADRwAAAFMAAABkAAAAKAAAACgAAAAoAAAACgAAAGQAAABkAAAARwAAAmQAAABkAAAARwAAA0cAAAJHAAAARwAAAkcAAAJTAAAAZAAAAGQAAABkAAAARwAAAWQAAABkAAAAFgAAABYAAAEWAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAAEcAAANHAAABRwAAAUcAAABHAAACRwAAA0cAAANHAAADRwAAAEcAAAFHAAACRwAAAmQAAABkAAAARwAAAEcAAABHAAACRwAAAUcAAABHAAADRwAAAEcAAAJHAAACRwAAA0cAAAFHAAAARwAAAUcAAAEWAAACZAAAAEcAAAFHAAADRwAAAkcAAAJHAAADRwAAA0cAAABHAAADRwAAAEcAAAFHAAABRwAAA0cAAAJHAAACFgAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAB8AAAFkAAAAZAAAAEcAAANHAAABRwAAABYAAANkAAAAZAAAAGQAAABkAAAAMwAAADMAAAAzAAAAZAAAAGEAAABhAAAAYQAAAGQAAABHAAABRwAAA0cAAAEWAAACZAAAAA== + tiles: cAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAADcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADcAAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALAAAAAAALAAAAAAALAAAAAAACwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAACXwAAAAAAcAAAAAAALAAAAAAALAAAAAAALAAAAAAACwAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAXwAAAAAAcAAAAAAALAAAAAAALAAAAAAALAAAAAAACwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAAAXwAAAAAAcAAAAAAALAAAAAAALAAAAAAALAAAAAAACwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAACXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAABGgAAAAACcAAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAACGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIwAAAAABcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAABGgAAAAACcAAAAAAA + version: 6 1,-2: ind: 1,-2 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAADwAAAA8AAAAPAAAAGQAAABkAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAPAAAADwAAAA8AAAAZAAAAGQAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAAA8AAAAPAAAADwAAABkAAAAZAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAADwAAAA8AAAAPAAAAGQAAABkAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAPAAAADwAAAA8AAAAZAAAAGQAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAWAAAAFgAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAAA8AAAAFgAAAxYAAAA8AAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAAAAAAAAAAAAAGMAAABkAAAAFgAAABYAAAIWAAAAFgAAAhYAAANkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAADwAAAA8AAAAPAAAABYAAAEWAAADZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGQAAAA8AAAAPAAAADwAAAAWAAADFgAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAAGgAAAAADGgAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAAAGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAGgAAAAADGgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 2,-1: ind: 2,-1 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEcAAABHAAADRwAAAEcAAAJkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABHAAABRwAAA0cAAAFHAAADZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAUcAAANHAAAARwAAAmQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEcAAABHAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABHAAAARwAAAEcAAAJHAAACZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAA0cAAANHAAAARwAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEcAAANHAAADRwAAAkcAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABHAAADRwAAA0cAAAFHAAABZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAA0cAAABHAAACRwAAA2QAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEcAAANHAAADRwAAAkcAAAJkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABHAAAARwAAAUcAAAJHAAACZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAADcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,-3: ind: 0,-3 - tiles: ZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAARYAAAEWAAADFgAAAGQAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAIWAAACFgAAAhYAAAJkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAABFgAAAxYAAAMWAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAARwAAAEcAAABHAAADRwAAAWQAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAEcAAANHAAAARwAAAUcAAANkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABHAAADRwAAAEcAAAJHAAAAZAAAAGMAAABjAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAARwAAAkcAAANHAAACRwAAA2QAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAEcAAANHAAACRwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAPAAAADwAAAA8AAAAZAAAAGMAAABkAAAARwAAAmQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABjAAAAZAAAADwAAAA8AAAAPAAAAGQAAABjAAAARwAAAkcAAANHAAACZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAEcAAAFHAAABRwAAAEcAAAFkAAAAUwAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABHAAACRwAAAEcAAAJHAAAARwAAAVMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAAJHAAABRwAAA2QAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: cAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGgAAAAABGgAAAAADGgAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAACGgAAAAACGgAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGgAAAAADGgAAAAADGgAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAADcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAUwAAAAADUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAUwAAAAACUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 1,-3: ind: 1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAADwAAAA8AAAAPAAAAGQAAABkAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAPAAAADwAAAA8AAAAZAAAAGQAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -1,-3: ind: -1,-3 - tiles: ZAAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAEWAAABFgAAAxYAAAIWAAADFgAAARYAAAMWAAABFgAAABYAAAEWAAACFgAAABYAAABkAAAARwAAAGQAAABHAAABRwAAA0cAAAJHAAACRwAAAUcAAAJHAAADRwAAAkcAAAJHAAAARwAAAUcAAAJHAAACZAAAAEcAAAJkAAAARwAAAUcAAAFHAAADRwAAAEcAAABHAAADRwAAAUcAAAJHAAADRwAAAEcAAANHAAABRwAAAWQAAABHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAANHAAACRwAAAEcAAAFHAAAARwAAAEcAAAJHAAADRwAAAkcAAAJHAAAARwAAA0cAAANHAAAARwAAA0cAAANHAAABRwAAAkcAAABHAAABRwAAATsAAAI7AAABOwAAADsAAAA7AAAARwAAAkcAAANHAAACRwAAA0cAAANHAAACRwAAAUcAAABHAAACRwAAAkcAAANHAAADRwAAAkcAAANHAAADRwAAA0cAAAJHAAABRwAAA0cAAABHAAABRwAAAmQAAABHAAABRwAAA0cAAABHAAADRwAAAkcAAABHAAACRwAAA0cAAABHAAACRwAAA0cAAAJHAAABRwAAAmQAAABkAAAAFgAAAxYAAAAWAAAAZAAAAGQAAABkAAAAFgAAAmQAAABkAAAAZAAAABYAAAMWAAADFgAAAWQAAAAWAAADZAAAAGQAAAAWAAACZAAAAGQAAAAWAAADFgAAABYAAAAWAAAAFgAAA2QAAABkAAAARwAAAWQAAABkAAAAFgAAAmQAAAAWAAADFgAAAxYAAABkAAAAFgAAAxYAAAMWAAADFgAAARYAAAFkAAAARwAAA0cAAAJHAAAAZAAAABYAAAJkAAAAFgAAAhYAAAMWAAABZAAAABYAAANkAAAAZAAAAGQAAAAWAAAAZAAAAEcAAAE6AAABRwAAAWQAAABkAAAAZAAAABYAAAMWAAACFgAAAxYAAAEWAAAAFgAAARYAAAMWAAAAFgAAAWQAAABHAAACOgAAA0cAAAJHAAADFgAAA2QAAAAWAAABFgAAAhYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAABHAAAAZAAAAA== + tiles: cAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAADGgAAAAACGgAAAAADGgAAAAABGgAAAAADGgAAAAABGgAAAAAAGgAAAAABGgAAAAACGgAAAAAAGgAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAACcAAAAAAAUwAAAAACcAAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAADUwAAAAABUwAAAAABcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAABRgAAAAACRgAAAAABRgAAAAAARgAAAAAARgAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAABcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAGgAAAAADGgAAAAADGgAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAADGgAAAAABGgAAAAABcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAGgAAAAACcAAAAAAAGgAAAAACGgAAAAADGgAAAAABcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAUwAAAAABRQAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAADGgAAAAABGgAAAAAAGgAAAAABGgAAAAADGgAAAAAAGgAAAAABcAAAAAAAUwAAAAACRQAAAAADUwAAAAACUwAAAAADGgAAAAADcAAAAAAAGgAAAAABGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAA + version: 6 -2,-3: ind: -2,-3 - tiles: ZAAAAGQAAABkAAAARwAAA2QAAABkAAAAPAAAADwAAAA8AAAAPAAAAGQAAABjAAAAZAAAABYAAAEWAAACFgAAA2QAAABkAAAARwAAAGQAAABHAAADZAAAADwAAAA8AAAAPAAAAGQAAABkAAAAYwAAAGQAAAAWAAAAFgAAABYAAAFkAAAAZAAAAGQAAABkAAAARwAAAmQAAABkAAAARwAAAEcAAANkAAAAZAAAAGQAAABkAAAAZAAAABYAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAkcAAAFHAAAARwAAAUcAAAFkAAAARwAAAUcAAAFHAAACRwAAAmQAAABkAAAAZAAAAFMAAABTAAAAZAAAABYAAANHAAACRwAAAUcAAABHAAACZAAAAEcAAANHAAAARwAAA0cAAAJkAAAAZAAAAGQAAABTAAAAUwAAAGQAAAAWAAACRwAAAkcAAAJHAAADRwAAAUcAAAFHAAACRwAAAEcAAANHAAABZAAAAGQAAABkAAAAUwAAAFMAAABUAAAARwAAAkcAAAJHAAAARwAAA0cAAABHAAACRwAAAEcAAAJHAAACRwAAA2QAAABTAAAAUwAAAFMAAABTAAAAZAAAAEcAAANHAAADRwAAAkcAAANHAAABZAAAAEcAAANHAAAARwAAA0cAAAJkAAAAZAAAAGQAAABTAAAAUwAAAGQAAAAWAAAAFgAAARYAAAAWAAABFgAAAWQAAABHAAACRwAAAkcAAANHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAANHAAADRwAAAmQAAABkAAAAZAAAAGQAAABMAAAAZAAAAGQAAABMAAAAZAAAAEwAAABMAAAAZAAAAGQAAAAWAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABMAAAAZAAAAEwAAABkAAAATAAAAGQAAAAWAAADFgAAARYAAAMWAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAEwAAABMAAAAZAAAAGQAAABkAAAAFgAAAxYAAAEWAAADFgAAA2QAAABkAAAAZAAAAGQAAABhAAABZAAAAGQAAABkAAAAZAAAAGQAAABhAAADZAAAABYAAAEWAAABFgAAARYAAAEWAAACZAAAAGQAAABkAAAAYQAAAWEAAANkAAAAYQAAAGEAAABkAAAAYQAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABhAAADYQAAAGEAAAJkAAAAYQAAAGQAAABkAAAAZAAAAGQAAAAWAAAAFgAAAA== + tiles: cAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAUwAAAAADcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAYAAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAADcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAABcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAAAGgAAAAABGgAAAAABcAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADcAAAAAAAGgAAAAABGgAAAAABGgAAAAABGgAAAAABGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAADcAAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAAAbQAAAAACcAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAA + version: 6 -2,-4: ind: -2,-4 - tiles: RwAAA0cAAANHAAABZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAYwAAAEcAAAJHAAACRwAAAGQAAABkAAAAPgAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGMAAABkAAAAZAAAAEcAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABjAAAAFgAAA0cAAANHAAABZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAYwAAAGQAAABHAAADRwAAA2QAAABHAAAARwAAA0cAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABHAAAARwAAA0cAAAFHAAADRwAAAEcAAAJHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAARwAAAkcAAABHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAZAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAABjAAAAYwAAAGQAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAYwAAAGMAAABjAAAAZAAAAGMAAAAAAAAAAAAAAGMAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABjAAAAAAAAAAAAAABjAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAAAAAAAAAAAAAAAAAABkAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAADwAAAA8AAAAPAAAADwAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAAA8AAAAPAAAADwAAAA8AAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAPAAAADwAAAA8AAAAPAAAAGQAAABjAAAAZAAAABYAAAEWAAACFgAAAQ== + tiles: UwAAAAADUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAUwAAAAACUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAASQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAGgAAAAADUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAAB + version: 6 -1,-4: ind: -1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAAA8AAAAPAAAADwAAABkAAAAPAAAADwAAAA8AAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAZAAAADwAAAA8AAAAPAAAADwAAABkAAAAZAAAAGQAAAA8AAAAPAAAADwAAAA8AAAAZAAAAAAAAAAAAAAAYwAAAGQAAAA8AAAAPAAAADwAAAA8AAAAZAAAAGQAAABkAAAAPAAAADwAAAA8AAAAPAAAAGQAAABjAAAAAAAAAGMAAABkAAAAPAAAADwAAAA8AAAAPAAAAGQAAABkAAAAZAAAADwAAAA8AAAAPAAAADwAAABkAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAFkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAABZAAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 0,-4: ind: 0,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAARYAAAFkAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAEWAAAAZAAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAACFgAAA2QAAABjAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAARYAAANkAAAAYwAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAMWAAADZAAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAADFgAAAmQAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAARYAAAJkAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGgAAAAABcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGgAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAADcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGgAAAAADcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADGgAAAAADcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADGgAAAAACcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGgAAAAACcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -2,-5: ind: -2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAYwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAA + version: 6 -1,-5: ind: -1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -2,4: ind: -2,4 - tiles: ZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -3,-5: ind: -3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 2,0: ind: 2,0 - tiles: ZAAAAGEAAAJhAAADYQAAAWEAAAJkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAABkAAAAYQAAAWEAAAFkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABhAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABhAAACZAAAAGEAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABkAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAZAAAAGMAAABjAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAAAAAAAAYwAAABYAAAMWAAABZAAAAFcAAABXAAAAVwAAAFcAAANXAAAAVwAAAmQAAABkAAAAZAAAAFMAAABkAAAAAAAAAGMAAAAWAAACFgAAAFcAAAFXAAADVwAAAlcAAAFXAAACVwAAAVcAAAJkAAAAZAAAAFMAAABTAAAAZAAAAGMAAABjAAAAFgAAAxYAAABkAAAAZAAAAGQAAABkAAAAZAAAAFcAAANXAAACZAAAAGQAAABkAAAAUwAAAGQAAAAAAAAAYwAAABYAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAACVwAAAGQAAABkAAAAZAAAAFMAAABkAAAAAAAAAGMAAAAWAAAAFgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAADoAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAFgAAABYAAAFkAAAAPAAAADwAAAA8AAAAPAAAAGQAAAA6AAACOgAAA2QAAABkAAAAZAAAAGQAAAAAAAAAYwAAABYAAANkAAAAZAAAADwAAAA8AAAAPAAAADwAAAA6AAACOgAAADoAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAWAAABDgAAAGQAAAA8AAAAPAAAADwAAAA8AAAAZAAAADoAAAI6AAABZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAFgAAAg4AAABkAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: cAAAAAAAbQAAAAACbQAAAAADbQAAAAABbQAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcAAAAAAAbQAAAAABbQAAAAABcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACcAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAGgAAAAADGgAAAAABcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAADYwAAAAAAYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAGgAAAAACGgAAAAAAYwAAAAABYwAAAAADYwAAAAACYwAAAAABYwAAAAACYwAAAAABYwAAAAACcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAGgAAAAAAGgAAAAABcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAARQAAAAACRQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAGgAAAAADcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARQAAAAACRQAAAAAARQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAGgAAAAABDwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAARQAAAAACRQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAGgAAAAACDwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 2,-3: ind: 2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 2,-2: ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 2,-4: ind: 2,-4 - tiles: BgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAIGAAAACAAABwgAAAYIAAAHBgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAgAAAYGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAAAAAABgAAAAYAAAAGAAAABgAAAAgAAAQIAAAHBgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAAAAAAAYAAAAGAAAABgAAAAYAAAAIAAAEBgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAACAAABgYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAAAAAABgAAAAYAAAAGAAAABgAAAAYAAAAIAAABCAAABAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAABkAAAABgAAAAYAAABlAAAABgAAAAYAAABkAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABlAAAAZQAAAGUAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAACQAAAAAHCQAAAAAGCQAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAECQAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAABCQAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcAAAAAAABwAAAAAABwAAAAAAcQAAAAAABwAAAAAABwAAAAAAcAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 1,3: ind: 1,3 - tiles: ZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABMAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAmEAAANkAAAATAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGEAAANhAAACZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABhAAACYQAAAGQAAABMAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAABYAAAFkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAACbQAAAAADcAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAADbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAACbQAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,3: ind: 0,3 - tiles: YwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAFMAAABTAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAFMAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGEAAABhAAAAYQAAA2QAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABhAAACYQAAAmEAAANkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGEAAAJhAAABZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAYQAAAGEAAAFhAAADYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABhAAAAYQAAAmEAAAJhAAADYQAAAQAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAYQAAAmEAAABhAAAAYQAAAWEAAAJjAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGEAAAJhAAAAYQAAAGQAAABhAAADZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABhAAADYQAAAWQAAAAWAAACFgAAAmQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAGMAAABjAAAAAAAAAGMAAABkAAAAYQAAAWEAAAFkAAAAFgAAABYAAABkAAAAFgAAAWQAAABkAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAxYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAA== + tiles: bwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAADcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbQAAAAACbQAAAAACbQAAAAADcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAABbQAAAAADbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbQAAAAACbQAAAAADbQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbQAAAAACbQAAAAAAbQAAAAAAbQAAAAABbQAAAAACbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbQAAAAACbQAAAAAAbQAAAAAAcAAAAAAAbQAAAAADcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbQAAAAADbQAAAAABcAAAAAAAGgAAAAACGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbQAAAAABbQAAAAABcAAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 3,2: ind: 3,2 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 3,1: ind: 3,1 - tiles: ZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAYwAAAGMAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABMAAAAUwAAAFMAAABTAAAAZAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAUwAAAFMAAABMAAAATAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAEwAAABkAAAAAAAAAGMAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAZAAAAEwAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAA== + tiles: cAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAA + version: 6 4,1: ind: 4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAACYAAANjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAKgAAAAADbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAA + version: 6 4,2: ind: 4,2 - tiles: ZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: cAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -5,2: ind: -5,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAA + version: 6 -5,3: ind: -5,3 - tiles: AAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -6,2: ind: -6,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAmAAACYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAKgAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAA + version: 6 -6,3: ind: -6,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA + version: 6 -4,-2: ind: -4,-2 - tiles: BgAAAAoAAAAKAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAZAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAYAAAAKAAAACgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAGAAAACgAAAAoAAAAGAAAABgAAAAYAAAAGAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAABgAAAAoAAAAKAAAACgAAAAoAAAAGAAAABgAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAYAAAAKAAAACgAAAAYAAAAKAAAABgAAAAYAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAFgAAAhYAAABkAAAACgAAAAYAAAAGAAAAZAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAEcAAAFHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAEWAAAAFgAAA0cAAAFkAAAAFgAAARYAAAEWAAABZAAAADsAAAE7AAABOwAAATsAAAE7AAADOwAAAjsAAABHAAAAFgAAABYAAANHAAAAZAAAABYAAAIWAAABFgAAARYAAAEWAAADFgAAAhYAAAAWAAABFgAAABYAAAEWAAADFgAAAEcAAANHAAABFgAAARYAAAEWAAAAFgAAABYAAANkAAAAOwAAAjsAAAE7AAABOwAAAzsAAAE7AAABOwAAARYAAAEWAAADFgAAAhYAAAJkAAAAFgAAAhYAAAIWAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAEWAAADZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAA== + tiles: BwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAACGgAAAAAAcAAAAAAACwAAAAAABwAAAAAABwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABGgAAAAAAGgAAAAADUwAAAAABcAAAAAAAGgAAAAABGgAAAAABGgAAAAABcAAAAAAARgAAAAABRgAAAAABRgAAAAABRgAAAAABRgAAAAADRgAAAAACRgAAAAAAUwAAAAAAGgAAAAAAGgAAAAADUwAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAABGgAAAAABGgAAAAADGgAAAAACGgAAAAAAGgAAAAABGgAAAAAAGgAAAAABGgAAAAADGgAAAAAAUwAAAAADUwAAAAABGgAAAAABGgAAAAABGgAAAAAAGgAAAAAAGgAAAAADcAAAAAAARgAAAAACRgAAAAABRgAAAAABRgAAAAADRgAAAAABRgAAAAABRgAAAAABGgAAAAABGgAAAAADGgAAAAACGgAAAAACcAAAAAAAGgAAAAACGgAAAAACGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAA + version: 6 -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGQAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABkAAAAZAAAAAYAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAABgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABkAAAABgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGQAAAAGAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -5,-3: ind: -5,-3 - tiles: FgAAAhYAAAIWAAADFgAAAhYAAANkAAAABgAAAAYAAAAGAAAABgAAAGQAAABkAAAAFgAAA2QAAABkAAAAZAAAABYAAAMWAAABFgAAAhYAAAIWAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAxYAAANkAAAAZAAAABYAAAIWAAAAFgAAAxYAAAIWAAABFgAAAxYAAAIKAAAACgAAAAoAAAAKAAAAFgAAABYAAAEWAAABFgAAAxYAAAAWAAADFgAAAhYAAAEWAAACFgAAARYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAACFgAAA2QAAAAWAAAAFgAAAhYAAAMWAAADFgAAAxYAAAAWAAACZAAAAAYAAAAGAAAABgAAAAYAAABkAAAAFgAAAGQAAABkAAAAFgAAARYAAAAWAAAAFgAAABYAAABkAAAAZAAAAGQAAABlAAAABgAAAAYAAAAGAAAAZAAAABYAAAIWAAAAZAAAABYAAAMWAAADZAAAABYAAANkAAAAZAAAAGQAAABkAAAAZQAAAAYAAAAGAAAABgAAAGQAAABkAAAAFgAAABYAAAMWAAAAFgAAAzMAAAAzAAAAMwAAAGQAAABkAAAAZAAAAGUAAAAGAAAABgAAAAYAAAAGAAAAZAAAABYAAAMWAAAAFgAAARYAAAAzAAAAMwAAABYAAANkAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAGQAAABkAAAAZAAAABYAAAIWAAAAMwAAADMAAAAWAAAAZAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAGQAAAAWAAADFgAAA2QAAABkAAAAZAAAAGQAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAABkAAAAZAAAAGQAAAAAAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAABkAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAAZAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGQAAAAGAAAABgAAAAYAAAAGAAAABgAAAA== + tiles: GgAAAAACGgAAAAACGgAAAAADGgAAAAACGgAAAAADcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAACGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAADGgAAAAACGgAAAAABGgAAAAADGgAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAAGgAAAAAAGgAAAAABGgAAAAABGgAAAAADGgAAAAAAGgAAAAADGgAAAAACGgAAAAABGgAAAAACGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADcAAAAAAAGgAAAAAAGgAAAAACGgAAAAADGgAAAAADGgAAAAADGgAAAAAAGgAAAAACcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAGgAAAAACGgAAAAAAcAAAAAAAGgAAAAADGgAAAAADcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAAAGgAAAAADOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAABGgAAAAAAOwAAAAAAOwAAAAAAGgAAAAADcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAOwAAAAAAOwAAAAAAGgAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 -4,-3: ind: -4,-3 - tiles: ZAAAABYAAAEWAAADZAAAAGQAAABkAAAAZAAAABYAAABkAAAAZAAAAGQAAABkAAAABgAAAAoAAAAGAAAAZAAAABYAAAEWAAAAFgAAARYAAAMWAAAAFgAAAmQAAAAWAAAAFgAAAhYAAAIWAAABZAAAAAYAAAAKAAAABgAAAGQAAAAWAAAAFgAAARYAAAMWAAABFgAAAxYAAAIWAAAAFgAAABYAAAMWAAADFgAAAmQAAAAGAAAACgAAAAYAAABkAAAAFgAAABYAAAEWAAAAFgAAAxYAAAIWAAACZAAAAGQAAAAWAAACFgAAAWQAAABkAAAABgAAAAoAAAAGAAAAZAAAABYAAAEWAAADFgAAABYAAAEWAAACFgAAAhYAAAFkAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAABgAAAGQAAAAWAAABFgAAABYAAAIWAAACFgAAARYAAAEWAAABZAAAAAYAAAAKAAAABgAAAAYAAAAGAAAABgAAAAYAAABkAAAAFgAAARYAAAAWAAACFgAAAxYAAAAWAAABZAAAAGQAAAAGAAAACgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAZAAAABYAAAAWAAABFgAAAhYAAAIWAAAAFgAAABYAAANkAAAABgAAAAoAAAAKAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAABFgAAAhYAAAEWAAAAFgAAABYAAAMWAAACZAAAAAYAAAAKAAAACgAAAGQAAABkAAAAZAAAAGMAAABjAAAAFgAAABYAAAEWAAABFgAAABYAAAIWAAAAZAAAAGQAAAAGAAAACgAAAAoAAABkAAAAZAAAAGQAAABjAAAAYwAAABYAAAIWAAADFgAAARYAAANkAAAAZAAAAGQAAAAGAAAABgAAAAoAAAAGAAAABgAAAGQAAABjAAAAAAAAAAAAAABkAAAAFgAAABYAAABkAAAAZAAAAAYAAAAGAAAABgAAAAYAAAAKAAAABgAAAAYAAABkAAAAYwAAAAAAAAAAAAAABgAAAAoAAAAKAAAABgAAAAYAAAAGAAAABgAAAAoAAAAKAAAACgAAAAYAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAYAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAABgAAAAYAAAAGAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAGAAAACgAAAAoAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAZAAAAGQAAABjAAAAYwAAAAAAAAAAAAAABgAAAAoAAAAKAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAZAAAAGQAAABjAAAAYwAAAGMAAAAAAAAAAAAAAA== + tiles: cAAAAAAAGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAACwAAAAAABwAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAABGgAAAAADGgAAAAAAGgAAAAACcAAAAAAAGgAAAAAAGgAAAAACGgAAAAACGgAAAAABcAAAAAAABwAAAAAACwAAAAAABwAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAADGgAAAAABGgAAAAADGgAAAAACGgAAAAAAGgAAAAAAGgAAAAADGgAAAAADGgAAAAACcAAAAAAABwAAAAAACwAAAAAABwAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAAAGgAAAAADGgAAAAACGgAAAAACcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABcAAAAAAAcAAAAAAABwAAAAAACwAAAAAABwAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAAAGgAAAAABGgAAAAACGgAAAAACGgAAAAABcAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAACGgAAAAACGgAAAAABGgAAAAABGgAAAAABcAAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAACGgAAAAADGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAACGgAAAAACGgAAAAAAGgAAAAAAGgAAAAADcAAAAAAABwAAAAAACwAAAAAACwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAABGgAAAAAAGgAAAAAAGgAAAAADGgAAAAACcAAAAAAABwAAAAAACwAAAAAACwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAGgAAAAAAGgAAAAABGgAAAAABGgAAAAAAGgAAAAACGgAAAAAAcAAAAAAAcAAAAAAABwAAAAAACwAAAAAACwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAGgAAAAACGgAAAAADGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAA + version: 6 -4,-4: ind: -4,-4 - tiles: UwAAAFMAAABkAAAAFgAAAhYAAAMWAAABFgAAAhYAAAAWAAAAFgAAAmQAAAAGAAAABgAAAAYAAAAGAAAAAAAAAFMAAABTAAAAZAAAABYAAAEWAAACFgAAABYAAAFkAAAAZAAAAGQAAABkAAAABgAAAAYAAAAGAAAABgAAAAAAAABkAAAAZAAAAGQAAABkAAAAFgAAARYAAAFkAAAAZAAAAGQAAABkAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAHQAAAR0AAAMdAAADHQAAAh0AAAAdAAADHQAAAx0AAAMZAAADZAAAAGQAAABkAAAAZAAAAAYAAAAGAAAABgAAAFEAAAFRAAADUQAAAlEAAANRAAADUQAAA1EAAANNAAABHgAAARYAAANkAAAAZAAAAGQAAAAGAAAABgAAAAYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUgAAAx4AAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAOQAAATkAAAI5AAABOQAAAzkAAAA5AAABZAAAAFIAAAIeAAAAZAAAADMAAAAzAAAAMwAAAGQAAAAlAAAAZAAAADkAAAA5AAABOQAAAzkAAAA5AAACOQAAAmQAAABSAAAAHgAAAjMAAAAzAAAAMwAAADMAAAAlAAAAJQAAAGQAAAA5AAADOQAAADkAAAI5AAABOQAAAzkAAAJkAAAAUgAAAB4AAANkAAAAMwAAADMAAAAzAAAAZAAAACUAAABkAAAAOQAAATkAAAE5AAAAOQAAAjkAAAI5AAABFgAAAVIAAAIeAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAADkAAAM5AAABOQAAAjkAAAE5AAAAOQAAA2QAAABSAAABHgAAAmQAAAAzAAAAMwAAADMAAABkAAAAJQAAAGQAAAA5AAACOQAAAzkAAAM5AAABOQAAAzkAAAFkAAAAUgAAAx4AAAIzAAAAMwAAADMAAAAzAAAAJQAAACUAAABkAAAAOQAAATkAAAA5AAADOQAAAjkAAAI5AAAAZAAAAFIAAAIeAAACZAAAADMAAAAzAAAAMwAAAGQAAAAlAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABSAAACHgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABRAAACUQAAAVEAAABRAAAAUQAAAlEAAANRAAACTQAAAh4AAABkAAAAZAAAAGQAAAAKAAAACgAAAAoAAABkAAAAHQAAAh0AAAEdAAACHQAAAx0AAAIdAAADHQAAAx0AAAEZAAABZAAAAGQAAABkAAAABgAAAAoAAAAGAAAAZAAAAA== + tiles: XwAAAAAAXwAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAABGgAAAAACGgAAAAAAGgAAAAAAGgAAAAACcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAIQAAAAABIQAAAAADIQAAAAADIQAAAAACIQAAAAAAIQAAAAADIQAAAAADIQAAAAADHQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAADWQAAAAABIgAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXgAAAAADIgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARAAAAAABRAAAAAACRAAAAAABRAAAAAADRAAAAAAARAAAAAABcAAAAAAAXgAAAAACIgAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAKQAAAAAAcAAAAAAARAAAAAAARAAAAAABRAAAAAADRAAAAAAARAAAAAACRAAAAAACcAAAAAAAXgAAAAAAIgAAAAACOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAKQAAAAAAKQAAAAAAcAAAAAAARAAAAAADRAAAAAAARAAAAAACRAAAAAABRAAAAAADRAAAAAACcAAAAAAAXgAAAAAAIgAAAAADcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAKQAAAAAAcAAAAAAARAAAAAABRAAAAAABRAAAAAAARAAAAAACRAAAAAACRAAAAAABGgAAAAABXgAAAAACIgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARAAAAAADRAAAAAABRAAAAAACRAAAAAABRAAAAAAARAAAAAADcAAAAAAAXgAAAAABIgAAAAACcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAKQAAAAAAcAAAAAAARAAAAAACRAAAAAADRAAAAAADRAAAAAABRAAAAAADRAAAAAABcAAAAAAAXgAAAAADIgAAAAACOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAKQAAAAAAKQAAAAAAcAAAAAAARAAAAAABRAAAAAAARAAAAAADRAAAAAACRAAAAAACRAAAAAAAcAAAAAAAXgAAAAACIgAAAAACcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXgAAAAACIgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACWQAAAAACIgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAACwAAAAAACwAAAAAACwAAAAAAcAAAAAAAIQAAAAACIQAAAAABIQAAAAACIQAAAAADIQAAAAACIQAAAAADIQAAAAADIQAAAAABHQAAAAABcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAACwAAAAAABwAAAAAAcAAAAAAA + version: 6 -3,-3: ind: -3,-3 - tiles: YwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABTAAAAUwAAAFMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAhYAAAEWAAADYwAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABkAAAAPAAAADwAAAA8AAAAPAAAABYAAAEWAAAAFgAAAWMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAADwAAAA8AAAAPAAAADwAAAAWAAADFgAAABYAAAFjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAAA8AAAAPAAAADwAAAA8AAAAFgAAAxYAAAEWAAADYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAPAAAADwAAAA8AAAAPAAAABYAAAMWAAABFgAAAQ== + tiles: bwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAADbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAGgAAAAABGgAAAAAAGgAAAAABbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAGgAAAAADGgAAAAAAGgAAAAABbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAGgAAAAADGgAAAAABGgAAAAADbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAGgAAAAADGgAAAAABGgAAAAAB + version: 6 -5,-4: ind: -5,-4 - tiles: ZAAAABYAAAIWAAACFgAAAhYAAAIWAAABFgAAAxYAAAAWAAAAZAAAAFMAAABTAAAAUwAAAFMAAABTAAAAZAAAAGQAAAAWAAACFgAAAxYAAAAWAAAAFgAAAxYAAAIWAAADFgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAIWAAABFgAAARYAAAIWAAACFgAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAACFgAAAxYAAAIWAAADFgAAAhYAAAEWAAAAFgAAAhYAAAIWAAACFgAAAWQAAAAZAAABHQAAAR0AAAEdAAAAHQAAARYAAABkAAAAFgAAABYAAAAWAAACFgAAABYAAAAWAAABZAAAABYAAAJkAAAAHgAAAU0AAANRAAAAUQAAA1EAAAIWAAABZAAAABYAAAMWAAACFgAAARYAAAMWAAABFgAAAWQAAAAWAAACFgAAAh4AAABSAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAeAAACUgAAAGQAAAA5AAADOQAAADEAAAAxAAAAMQAAADEAAAAxAAAAZAAAAGEAAAFhAAAAYQAAAmEAAAFkAAAAHgAAAVIAAABkAAAAOQAAADkAAAIxAAAARwAAAEcAAAJHAAACRwAAAmQAAABhAAACYQAAA2EAAANhAAADZAAAAB4AAAFSAAAAZAAAADkAAAM5AAADZAAAAEcAAABHAAABRwAAAEcAAAMWAAAAYQAAAmEAAAJhAAABYQAAABYAAAEeAAAAUgAAARYAAAM5AAABOQAAATAAAABHAAACRwAAAEcAAABHAAADZAAAAGEAAABhAAAAYQAAAGEAAAJkAAAAHgAAAVIAAAJkAAAAOQAAAzkAAAAwAAAARwAAA0cAAAJHAAABRwAAAmQAAABhAAAAYQAAAGEAAAFhAAADZAAAAB4AAAFSAAACZAAAADkAAAA5AAADMAAAADAAAAAwAAAAMAAAADAAAABkAAAAYQAAAmEAAANhAAADYQAAAmQAAAAeAAACUgAAAWQAAAA5AAAAOQAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAHgAAAFIAAAFkAAAAZAAAAGQAAAAWAAABFgAAAGQAAABkAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAZAAAAB4AAAJNAAABUQAAA1EAAABRAAADFgAAAhYAAAIWAAABZAAAAGQAAABkAAAABgAAAAYAAAAGAAAABgAAAGQAAAAZAAAAHQAAAh0AAAIdAAACHQAAAw== + tiles: cAAAAAAAGgAAAAACGgAAAAACGgAAAAACGgAAAAACGgAAAAABGgAAAAADGgAAAAAAGgAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAAAGgAAAAAAGgAAAAADGgAAAAACGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAABGgAAAAACGgAAAAACGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAACGgAAAAADGgAAAAACGgAAAAABGgAAAAAAGgAAAAACGgAAAAACGgAAAAACGgAAAAABcAAAAAAAHQAAAAABIQAAAAABIQAAAAABIQAAAAAAIQAAAAABGgAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAACGgAAAAAAGgAAAAAAGgAAAAABcAAAAAAAGgAAAAACcAAAAAAAIgAAAAABWQAAAAADXQAAAAAAXQAAAAADXQAAAAACGgAAAAABcAAAAAAAGgAAAAADGgAAAAACGgAAAAABGgAAAAADGgAAAAABGgAAAAABcAAAAAAAGgAAAAACGgAAAAACIgAAAAAAXgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIgAAAAACXgAAAAAAcAAAAAAARAAAAAADRAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcAAAAAAAbQAAAAABbQAAAAAAbQAAAAACbQAAAAABcAAAAAAAIgAAAAABXgAAAAAAcAAAAAAARAAAAAAARAAAAAACOQAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAACcAAAAAAAbQAAAAACbQAAAAADbQAAAAADbQAAAAADcAAAAAAAIgAAAAABXgAAAAAAcAAAAAAARAAAAAADRAAAAAADcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADGgAAAAAAbQAAAAACbQAAAAACbQAAAAABbQAAAAAAGgAAAAABIgAAAAAAXgAAAAABGgAAAAADRAAAAAABRAAAAAABNwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAACcAAAAAAAIgAAAAABXgAAAAACcAAAAAAARAAAAAADRAAAAAAANwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAACcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAABbQAAAAADcAAAAAAAIgAAAAABXgAAAAACcAAAAAAARAAAAAAARAAAAAADNwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAAbQAAAAACbQAAAAADbQAAAAADbQAAAAACcAAAAAAAIgAAAAACXgAAAAABcAAAAAAARAAAAAAARAAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIgAAAAAAXgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAIgAAAAACWQAAAAABXQAAAAADXQAAAAAAXQAAAAADGgAAAAACGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAHQAAAAAAIQAAAAACIQAAAAACIQAAAAACIQAAAAAD + version: 6 -6,-4: ind: -6,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAABYAAAIWAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAAAWAAADFgAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAFgAAABYAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAAAZAAAABYAAAMWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAABgAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAAABgAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAABgAAAAYAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAAABgAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAWAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAWAAACFgAAAg== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAGgAAAAADGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAAC + version: 6 -6,-3: ind: -6,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAFgAAARYAAAIWAAADFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAFgAAABYAAAEWAAADFgAAABYAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAABYAAAMWAAABFgAAAxYAAAIWAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAWAAADFgAAABYAAAIWAAAAFgAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAABYAAAAWAAACFgAAAhYAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAABYAAAMWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAZAAAADMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAGQAAAAzAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAADGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAADGgAAAAAAGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAADGgAAAAACGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAACGgAAAAAAGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAACGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcAAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcAAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -5,-5: ind: -5,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAABkAAAAZAAAAGQAAAAWAAAAFgAAAmQAAABkAAAAZAAAAAYAAAAGAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAGAAAAZAAAABYAAAIWAAAAFgAAABYAAAEWAAABFgAAAGQAAAAGAAAABgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAABFgAAAhYAAAAWAAABFgAAABYAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAAAGgAAAAABGgAAAAABGgAAAAAAcAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAAAGgAAAAABGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 -4,-5: ind: -4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAGQAAABkAAAAZAAAAGQAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAGQAAABkAAAAFgAAABYAAANkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAABkAAAAFgAAABYAAAAWAAAAFgAAAhYAAAMWAAAAFgAAAWQAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAABYAAAEWAAAAFgAAAhYAAAAWAAACFgAAARYAAABkAAAABgAAAAYAAAAGAAAAAAAAAAAAAABTAAAAUwAAAGQAAAAWAAAAFgAAAxYAAAEWAAADFgAAARYAAAMWAAABZAAAAAYAAAAGAAAABgAAAAAAAAAAAAAAUwAAAFMAAABkAAAAFgAAARYAAAAWAAACFgAAAhYAAAIWAAABFgAAA2QAAAAGAAAABgAAAAYAAAAGAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAACGgAAAAADGgAAAAAAGgAAAAABcAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAACGgAAAAAAGgAAAAACGgAAAAABGgAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAABGgAAAAADGgAAAAABGgAAAAADGgAAAAABcAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAACGgAAAAACGgAAAAACGgAAAAABGgAAAAADcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAA + version: 6 -6,-5: ind: -6,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAABgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 -3,-4: ind: -3,-4 - tiles: AAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAFgAAAw4AAAAWAAAADgAAAA4AAAAWAAABDgAAABYAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAABYAAAIOAAAAFgAAAA4AAAAOAAAAFgAAAQ4AAAAWAAACDgAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAAAWAAACDgAAABYAAAEWAAABFgAAABYAAAEOAAAAFgAAA2QAAABkAAAAAAAAAAAAAABjAAAAYwAAAGMAAABkAAAAFgAAAhYAAAEWAAABDgAAAA4AAAAWAAACFgAAARYAAAIWAAABFgAAAmMAAAAAAAAAAAAAAGMAAAAAAAAAZAAAABYAAAIOAAAAFgAAARYAAAMWAAADFgAAAQ4AAAAWAAACZAAAAGQAAABjAAAAAAAAAAAAAABjAAAAAAAAAGQAAAAWAAABDgAAABYAAAEOAAAADgAAABYAAAAOAAAAFgAAAQ4AAABkAAAAYwAAAAAAAAAAAAAAYwAAAAAAAABkAAAAFgAAAQ4AAAAWAAADDgAAAA4AAAAWAAABDgAAABYAAANkAAAAZAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAZAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAGgAAAAADDwAAAAAAGgAAAAAADwAAAAAADwAAAAAAGgAAAAABDwAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAGgAAAAACDwAAAAAAGgAAAAAADwAAAAAADwAAAAAAGgAAAAABDwAAAAAAGgAAAAACDwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAGgAAAAACDwAAAAAAGgAAAAABGgAAAAABGgAAAAAAGgAAAAABDwAAAAAAGgAAAAADcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAABDwAAAAAADwAAAAAAGgAAAAACGgAAAAABGgAAAAACGgAAAAABGgAAAAACbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAGgAAAAACDwAAAAAAGgAAAAABGgAAAAADGgAAAAADGgAAAAABDwAAAAAAGgAAAAACcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAGgAAAAABDwAAAAAAGgAAAAABDwAAAAAADwAAAAAAGgAAAAAADwAAAAAAGgAAAAABDwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAGgAAAAABDwAAAAAAGgAAAAADDwAAAAAADwAAAAAAGgAAAAABDwAAAAAAGgAAAAADcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAA + version: 6 0,4: ind: 0,4 - tiles: FgAAAxYAAAFkAAAAZAAAAFMAAABTAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAABYAAAEWAAAAZAAAAGQAAABTAAAAUwAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAWAAACFgAAAVMAAABTAAAAUwAAAFMAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAYwAAAAAAAABkAAAAUwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAGQAAAAAAAAAZAAAAFMAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAABjAAAAAAAAAGQAAABTAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAZAAAAAAAAABkAAAAUwAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAGMAAAAAAAAAZAAAAFMAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADMAAAAzAAAAUwAAAFMAAABTAAAAUwAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAzAAAAMwAAAGQAAABTAAAAUwAAAFMAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAACFgAAABYAAAMWAAACFgAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAA4AAAAOAAAAPAAAABYAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: GgAAAAADGgAAAAABcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAACGgAAAAABXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAOwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAAAGgAAAAADGgAAAAACGgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAARwAAAAAAGgAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -1,4: ind: -1,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAEWAAACFgAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAADFgAAAxYAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAFMAAABTAAAAUwAAAFMAAABTAAAAFgAAAhYAAAIWAAACAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAFMAAABkAAAAAAAAAGMAAAAAAAAAZAAAABYAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABTAAAAZAAAAAAAAABkAAAAAAAAAGQAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAUwAAAGQAAAAAAAAAYwAAAAAAAABkAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAFMAAABkAAAAAAAAAGQAAAAAAAAAZAAAABYAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABTAAAAZAAAAAAAAABjAAAAAAAAAGQAAAAWAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAFMAAABTAAAAUwAAAFMAAAAzAAAAMwAAADMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABTAAAAUwAAAFMAAABkAAAAMwAAADMAAAAzAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABkAAAAUwAAAFMAAABTAAAAZAAAAGQAAABkAAAAFgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAhYAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAFgAAABYAAAEWAAACFgAAARYAAAEWAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAABYAAAA8AAAADgAAAA4AAAAOAAAADgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAGgAAAAACGgAAAAACGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAACGgAAAAABGgAAAAABGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAAARwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAA + version: 6 -1,5: ind: -1,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAABYAAAMOAAAADgAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAAAWAAAADgAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAFgAAAA4AAABkAAAAZAAAAGQAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAADwAAAAOAAAAFgAAAxYAAAAWAAADFgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAAAWAAAADgAAAGQAAABkAAAADgAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAFgAAAg4AAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAABYAAAMOAAAADgAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAAAWAAAAPAAAAA4AAAAOAAAADgAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAFgAAAxYAAAEWAAAAFgAAAxYAAAIWAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAGgAAAAADDwAAAAAADwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAGgAAAAAADwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAGgAAAAAADwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAARwAAAAAADwAAAAAAGgAAAAADGgAAAAAAGgAAAAADGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAAADwAAAAAAcAAAAAAAcAAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAGgAAAAACDwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAGgAAAAADDwAAAAAADwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAGgAAAAAARwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAAAGgAAAAADGgAAAAACGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,5: ind: 0,5 - tiles: ZAAAAGQAAAAOAAAADgAAABYAAAFkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAA4AAAAWAAABZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAOAAAAFgAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAhYAAAEWAAADDgAAADwAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAABkAAAAZAAAAA4AAAAWAAADZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAOAAAAFgAAA2QAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAOAAAADgAAABYAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAOAAAADgAAADwAAAAWAAACZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAFgAAABYAAAAWAAABFgAAAWQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAFgAAARYAAANkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: cAAAAAAAcAAAAAAADwAAAAAADwAAAAAAGgAAAAABcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADwAAAAAAGgAAAAABcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADwAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAABGgAAAAADDwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAcAAAAAAAcAAAAAAADwAAAAAAGgAAAAADcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADwAAAAAAGgAAAAADcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAADwAAAAAADwAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAARwAAAAAAGgAAAAACcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAABGgAAAAABcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 2,3: ind: 2,3 - tiles: AAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 2,-5: ind: 2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAgAAAMGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAIAAAEBgAAAAYAAAAGAAAABgAAAAYAAAIGAAACBgAAAAYAAAAGAAAABgAAAAAAAAAAAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAABlAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAIAAADBgAAAAYAAAAGAAAAZQAAAAYAAAAGAAAABgAAAAYAAAMGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAACAAAAggAAAZlAAAAZQAAAGUAAABlAAAAZQAAAAYAAAAGAAADBgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAIAAAHBgAAAAYAAABlAAAABgAAAAYAAAAGAAABBgAAAwYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAZQAAAAYAAAAIAAAEBgAAAwgAAAcGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAgAAAcIAAAFCAAABQYAAAAIAAAEBgAAAAYAAAAGAAAABgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAACQAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAADBwAAAAAABwAAAAAABwAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAACCQAAAAAGcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAHBwAAAAAABwAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAABwAAAAAACQAAAAAEBwAAAAADCQAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAHCQAAAAAFCQAAAAAFBwAAAAAACQAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 1,-5: ind: 1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAA + version: 6 1,-4: ind: 1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 3,0: ind: 3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 1,4: ind: 1,4 - tiles: AAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -5,0: ind: -5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAA + version: 6 -5,1: ind: -5,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 type: MapGrid - type: Broadphase - bodyStatus: InAir @@ -7500,12 +7588,16 @@ entities: 5: 6 -17,3: 0: 34952 + 5: 17476 -17,4: 0: 8 + 5: 4 -17,5: 0: 34952 + 5: 17476 -17,6: 0: 8 + 5: 4 -9,16: 5: 32767 -9,17: @@ -14663,8 +14755,6 @@ entities: - pos: 16.5,-37.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 48 components: - pos: 27.5,20.5 @@ -14680,8 +14770,6 @@ entities: - pos: -14.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 828 components: - pos: 30.5,-6.5 @@ -14692,8 +14780,6 @@ entities: - pos: -12.5,-55.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 908 components: - pos: -47.5,-4.5 @@ -14714,15 +14800,11 @@ entities: - pos: -43.5,-0.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 1393 components: - pos: 32.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 1909 components: - pos: -37.5,59.5 @@ -14738,8 +14820,6 @@ entities: - pos: -39.5,59.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 1913 components: - pos: -40.5,59.5 @@ -14755,8 +14835,6 @@ entities: - pos: -37.5,61.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3175 components: - pos: -49.5,-4.5 @@ -14847,8 +14925,6 @@ entities: - pos: -50.5,11.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3628 components: - pos: -50.5,10.5 @@ -15129,15 +15205,11 @@ entities: - pos: -46.5,-8.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3693 components: - pos: -47.5,-8.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3694 components: - pos: -45.5,-4.5 @@ -15153,8 +15225,6 @@ entities: - pos: -48.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3714 components: - pos: -49.5,20.5 @@ -15420,113 +15490,81 @@ entities: - pos: -58.5,13.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3767 components: - pos: -59.5,13.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3768 components: - pos: -60.5,13.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3769 components: - pos: -61.5,13.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3770 components: - pos: -58.5,15.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3771 components: - pos: -59.5,15.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3772 components: - pos: -60.5,15.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3773 components: - pos: -61.5,15.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3774 components: - pos: -58.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3775 components: - pos: -59.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3776 components: - pos: -60.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3777 components: - pos: -61.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3778 components: - pos: -58.5,23.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3779 components: - pos: -59.5,23.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3780 components: - pos: -60.5,23.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3781 components: - pos: -61.5,23.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3782 components: - pos: -48.5,14.5 @@ -15567,8 +15605,6 @@ entities: - pos: -37.5,16.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3820 components: - pos: -37.5,15.5 @@ -15694,8 +15730,6 @@ entities: - pos: -30.5,11.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3845 components: - pos: -30.5,10.5 @@ -15931,8 +15965,6 @@ entities: - pos: -33.5,32.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3892 components: - pos: -32.5,32.5 @@ -16168,8 +16200,6 @@ entities: - pos: -45.5,32.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3945 components: - pos: -49.5,34.5 @@ -16215,15 +16245,11 @@ entities: - pos: -46.5,33.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3954 components: - pos: -46.5,32.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3955 components: - pos: -43.5,30.5 @@ -16334,43 +16360,31 @@ entities: - pos: -46.5,31.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3992 components: - pos: -46.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3993 components: - pos: -46.5,29.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3994 components: - pos: -46.5,28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3995 components: - pos: -46.5,27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3996 components: - pos: -46.5,26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3997 components: - pos: -53.5,25.5 @@ -16391,64 +16405,46 @@ entities: - pos: -32.5,15.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4001 components: - pos: -31.5,15.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4002 components: - pos: -31.5,16.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4003 components: - pos: -31.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4004 components: - pos: -31.5,18.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4005 components: - pos: -31.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4006 components: - pos: -30.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4007 components: - pos: -29.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4008 components: - pos: -28.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4009 components: - pos: -41.5,35.5 @@ -16509,8 +16505,6 @@ entities: - pos: -26.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4035 components: - pos: -26.5,22.5 @@ -16556,64 +16550,46 @@ entities: - pos: -25.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4044 components: - pos: -26.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4045 components: - pos: -26.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4046 components: - pos: -24.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4047 components: - pos: -23.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4048 components: - pos: -22.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4049 components: - pos: -21.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4050 components: - pos: -20.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4051 components: - pos: -19.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4052 components: - pos: -22.5,21.5 @@ -16634,155 +16610,111 @@ entities: - pos: -19.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4056 components: - pos: -19.5,18.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4057 components: - pos: -18.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4058 components: - pos: -17.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4059 components: - pos: -16.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4060 components: - pos: -15.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4061 components: - pos: -14.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4062 components: - pos: -14.5,22.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4063 components: - pos: -14.5,23.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4064 components: - pos: -13.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4065 components: - pos: -12.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4066 components: - pos: -11.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4067 components: - pos: -10.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4068 components: - pos: -9.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4069 components: - pos: -8.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4070 components: - pos: -7.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4071 components: - pos: -6.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4072 components: - pos: -5.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4073 components: - pos: -5.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4074 components: - pos: -5.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4075 components: - pos: -5.5,18.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4110 components: - pos: -26.5,14.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4111 components: - pos: -26.5,15.5 @@ -17228,8 +17160,6 @@ entities: - pos: -6.5,13.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4244 components: - pos: -5.5,13.5 @@ -17275,8 +17205,6 @@ entities: - pos: -2.5,18.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4253 components: - pos: -2.5,19.5 @@ -17337,92 +17265,66 @@ entities: - pos: -2.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4265 components: - pos: -3.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4266 components: - pos: -4.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4267 components: - pos: -1.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4268 components: - pos: -0.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4269 components: - pos: 0.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4270 components: - pos: 0.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4271 components: - pos: 1.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4272 components: - pos: 2.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4273 components: - pos: 3.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4274 components: - pos: 4.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4275 components: - pos: 5.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4276 components: - pos: 6.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4278 components: - pos: 2.5,14.5 @@ -17763,22 +17665,16 @@ entities: - pos: 15.5,-28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4383 components: - pos: 19.5,-22.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4569 components: - pos: -45.5,49.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4570 components: - pos: -46.5,49.5 @@ -17919,8 +17815,6 @@ entities: - pos: -39.5,50.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4598 components: - pos: -39.5,51.5 @@ -18216,8 +18110,6 @@ entities: - pos: -47.5,59.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4657 components: - pos: -47.5,58.5 @@ -18463,8 +18355,6 @@ entities: - pos: -36.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4706 components: - pos: -35.5,53.5 @@ -18845,8 +18735,6 @@ entities: - pos: -7.5,-55.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4829 components: - pos: -41.5,31.5 @@ -18867,134 +18755,96 @@ entities: - pos: -9.5,-55.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4894 components: - pos: -8.5,-55.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5188 components: - pos: -23.5,40.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5189 components: - pos: -22.5,40.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5190 components: - pos: -22.5,41.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5191 components: - pos: -22.5,42.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5192 components: - pos: -22.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5193 components: - pos: -22.5,44.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5194 components: - pos: -22.5,45.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5195 components: - pos: -22.5,46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5196 components: - pos: -23.5,46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5197 components: - pos: -24.5,46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5198 components: - pos: -25.5,46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5199 components: - pos: -26.5,46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5200 components: - pos: -27.5,46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5201 components: - pos: -21.5,46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5202 components: - pos: -20.5,46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5203 components: - pos: -19.5,46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5204 components: - pos: -22.5,39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5205 components: - pos: -22.5,38.5 @@ -19165,8 +19015,6 @@ entities: - pos: 8.5,42.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5568 components: - pos: 9.5,42.5 @@ -19322,8 +19170,6 @@ entities: - pos: 4.5,35.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5911 components: - pos: 4.5,34.5 @@ -19479,36 +19325,26 @@ entities: - pos: -0.5,37.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5942 components: - pos: -0.5,38.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5943 components: - pos: -0.5,39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5944 components: - pos: -0.5,40.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5945 components: - pos: -13.5,45.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5946 components: - pos: -12.5,45.5 @@ -20194,22 +20030,16 @@ entities: - pos: -3.5,-55.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 6466 components: - pos: -4.5,-55.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 6467 components: - pos: -5.5,-55.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 6606 components: - pos: 20.5,44.5 @@ -20220,8 +20050,6 @@ entities: - pos: 33.5,45.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7016 components: - pos: -41.5,-10.5 @@ -20232,8 +20060,6 @@ entities: - pos: -36.5,-6.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7242 components: - pos: -32.5,-5.5 @@ -20259,8 +20085,6 @@ entities: - pos: -35.5,-8.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7251 components: - pos: -37.5,-6.5 @@ -20331,22 +20155,16 @@ entities: - pos: -39.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7482 components: - pos: -32.5,-8.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7487 components: - pos: -40.5,-16.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7518 components: - pos: -27.5,-19.5 @@ -20357,15 +20175,11 @@ entities: - pos: -41.5,-16.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7659 components: - pos: -38.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7660 components: - pos: -38.5,-28.5 @@ -20401,8 +20215,6 @@ entities: - pos: -35.5,-3.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7893 components: - pos: -35.5,-2.5 @@ -20428,99 +20240,71 @@ entities: - pos: -37.5,-2.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7898 components: - pos: -38.5,-2.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7899 components: - pos: -39.5,-2.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7900 components: - pos: -40.5,-2.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7901 components: - pos: -41.5,-2.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7902 components: - pos: -41.5,-3.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7903 components: - pos: -41.5,-4.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7904 components: - pos: -41.5,-4.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7905 components: - pos: -41.5,-5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7906 components: - pos: -41.5,-6.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7907 components: - pos: -41.5,-7.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7908 components: - pos: -41.5,-8.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7909 components: - pos: -42.5,-8.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7910 components: - pos: -33.5,-3.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7928 components: - pos: -32.5,-9.5 @@ -20651,8 +20435,6 @@ entities: - pos: -27.5,-17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7964 components: - pos: -27.5,-18.5 @@ -20713,8 +20495,6 @@ entities: - pos: -30.5,-21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7979 components: - pos: -30.5,-20.5 @@ -20825,8 +20605,6 @@ entities: - pos: -20.5,-20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8001 components: - pos: -19.5,-20.5 @@ -20967,8 +20745,6 @@ entities: - pos: -20.5,-21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8029 components: - pos: -19.5,-21.5 @@ -21224,57 +21000,41 @@ entities: - pos: -9.5,-14.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8080 components: - pos: -7.5,-14.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8081 components: - pos: -8.5,-14.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8082 components: - pos: -6.5,-14.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8083 components: - pos: -5.5,-14.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8084 components: - pos: -4.5,-14.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8085 components: - pos: -5.5,-15.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8086 components: - pos: -5.5,-16.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8087 components: - pos: -11.5,-15.5 @@ -21350,8 +21110,6 @@ entities: - pos: -15.5,-3.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8102 components: - pos: -15.5,-4.5 @@ -21717,8 +21475,6 @@ entities: - pos: -0.5,-0.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8175 components: - pos: -1.5,-0.5 @@ -21764,50 +21520,36 @@ entities: - pos: -2.5,-6.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8184 components: - pos: -2.5,-7.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8185 components: - pos: -2.5,-8.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8186 components: - pos: -2.5,-9.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8187 components: - pos: -2.5,-10.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8188 components: - pos: -2.5,-11.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8189 components: - pos: -2.5,-12.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8190 components: - pos: -2.5,0.5 @@ -21933,29 +21675,21 @@ entities: - pos: 28.5,-21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8642 components: - pos: 25.5,-21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8643 components: - pos: 26.5,-21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8644 components: - pos: 27.5,-21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8819 components: - pos: -9.5,-58.5 @@ -21996,8 +21730,6 @@ entities: - pos: -6.5,-58.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 9654 components: - pos: -4.5,-58.5 @@ -22013,36 +21745,26 @@ entities: - pos: -7.5,-58.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 9677 components: - pos: -2.5,-55.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 9678 components: - pos: -6.5,-55.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 9679 components: - pos: -11.5,-55.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 9690 components: - pos: -10.5,-55.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 9821 components: - pos: -3.5,-58.5 @@ -22053,22 +21775,16 @@ entities: - pos: -8.5,-58.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 9823 components: - pos: -7.5,-56.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 9824 components: - pos: -7.5,-57.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 9951 components: - pos: -37.5,-10.5 @@ -22079,8 +21795,6 @@ entities: - pos: -7.5,-52.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10536 components: - pos: 3.5,-38.5 @@ -22091,8 +21805,6 @@ entities: - pos: -20.5,-38.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10583 components: - pos: -19.5,-38.5 @@ -22298,43 +22010,31 @@ entities: - pos: -17.5,-49.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10624 components: - pos: -17.5,-50.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10625 components: - pos: -17.5,-51.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10626 components: - pos: -17.5,-52.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10627 components: - pos: -17.5,-53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10628 components: - pos: -17.5,-54.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10629 components: - pos: -17.5,-40.5 @@ -22505,120 +22205,86 @@ entities: - pos: -62.5,13.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10663 components: - pos: -63.5,13.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10664 components: - pos: -62.5,15.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10665 components: - pos: -63.5,15.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10666 components: - pos: -62.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10667 components: - pos: -63.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10668 components: - pos: -62.5,23.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10669 components: - pos: -63.5,23.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10679 components: - pos: -1.5,-55.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10680 components: - pos: -1.5,-53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10681 components: - pos: -1.5,-52.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10682 components: - pos: -1.5,-54.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10683 components: - pos: -1.5,-51.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10684 components: - pos: -1.5,-50.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10685 components: - pos: -1.5,-49.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10686 components: - pos: -1.5,-48.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10687 components: - pos: -1.5,-47.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10689 components: - pos: -1.5,-45.5 @@ -22659,8 +22325,6 @@ entities: - pos: 0.5,-31.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10718 components: - pos: 0.5,-32.5 @@ -22831,50 +22495,36 @@ entities: - pos: -6.5,-29.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10755 components: - pos: -7.5,-29.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10756 components: - pos: -8.5,-29.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10757 components: - pos: -9.5,-29.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10758 components: - pos: -10.5,-29.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10759 components: - pos: -11.5,-29.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10760 components: - pos: -12.5,-29.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10761 components: - pos: -13.5,-29.5 @@ -22925,106 +22575,76 @@ entities: - pos: -12.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10771 components: - pos: -10.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10772 components: - pos: -11.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10773 components: - pos: -9.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10774 components: - pos: -8.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10775 components: - pos: -7.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10776 components: - pos: -13.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10777 components: - pos: -14.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10778 components: - pos: -15.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10779 components: - pos: -16.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10780 components: - pos: -17.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10781 components: - pos: -18.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10782 components: - pos: -19.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10783 components: - pos: -20.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10784 components: - pos: -21.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10785 components: - pos: -12.5,-30.5 @@ -23180,15 +22800,11 @@ entities: - pos: -5.5,-23.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10816 components: - pos: -5.5,-22.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10817 components: - pos: 2.5,-19.5 @@ -23199,15 +22815,11 @@ entities: - pos: -5.5,-21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10819 components: - pos: -5.5,-20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10820 components: - pos: 3.5,-19.5 @@ -23233,8 +22845,6 @@ entities: - pos: 9.5,-30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10825 components: - pos: 9.5,-31.5 @@ -23355,99 +22965,71 @@ entities: - pos: 15.5,-31.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10849 components: - pos: 15.5,-30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10851 components: - pos: 15.5,-29.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10852 components: - pos: 15.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10853 components: - pos: 15.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10854 components: - pos: 15.5,-26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10855 components: - pos: 15.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10856 components: - pos: 15.5,-24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10857 components: - pos: 15.5,-23.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10858 components: - pos: 15.5,-22.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10859 components: - pos: 16.5,-22.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10860 components: - pos: 17.5,-22.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10861 components: - pos: 18.5,-22.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10864 components: - pos: 19.5,-21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10865 components: - pos: 19.5,-20.5 @@ -23508,22 +23090,16 @@ entities: - pos: 23.5,-18.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10877 components: - pos: 24.5,-18.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10878 components: - pos: 25.5,-18.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10879 components: - pos: 21.5,-17.5 @@ -23619,456 +23195,326 @@ entities: - pos: 5.5,-37.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10898 components: - pos: 6.5,-37.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10899 components: - pos: 8.5,-37.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10900 components: - pos: 6.5,-37.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10901 components: - pos: 7.5,-37.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10902 components: - pos: 8.5,-36.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10903 components: - pos: 8.5,-35.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10904 components: - pos: 8.5,-34.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10905 components: - pos: 8.5,-33.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10906 components: - pos: 9.5,-33.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10907 components: - pos: 10.5,-33.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10908 components: - pos: 11.5,-33.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10909 components: - pos: 12.5,-33.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10910 components: - pos: 13.5,-33.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10911 components: - pos: 14.5,-33.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10912 components: - pos: 15.5,-33.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10913 components: - pos: 16.5,-33.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10914 components: - pos: 16.5,-34.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10915 components: - pos: 16.5,-35.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10916 components: - pos: 16.5,-36.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10917 components: - pos: 16.5,-37.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10918 components: - pos: 22.5,-36.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10919 components: - pos: 22.5,-35.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10920 components: - pos: 22.5,-34.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10921 components: - pos: 22.5,-33.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10922 components: - pos: 22.5,-32.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10923 components: - pos: 22.5,-31.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10924 components: - pos: 22.5,-30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10925 components: - pos: 22.5,-29.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10926 components: - pos: 22.5,-28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10927 components: - pos: 22.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10928 components: - pos: 22.5,-26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10929 components: - pos: 22.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10930 components: - pos: 22.5,-24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10931 components: - pos: 22.5,-23.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10932 components: - pos: 22.5,-22.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10933 components: - pos: 22.5,-21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10934 components: - pos: 23.5,-21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10935 components: - pos: 27.5,-35.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10936 components: - pos: 26.5,-35.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10937 components: - pos: 25.5,-35.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10938 components: - pos: 24.5,-35.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10939 components: - pos: 23.5,-35.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10940 components: - pos: 24.5,-21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10941 components: - pos: 28.5,-22.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10942 components: - pos: 28.5,-23.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10943 components: - pos: 28.5,-24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10948 components: - pos: 28.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10949 components: - pos: 28.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10950 components: - pos: 28.5,-26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10951 components: - pos: 28.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10952 components: - pos: 28.5,-28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10953 components: - pos: 28.5,-29.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10954 components: - pos: 28.5,-30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10955 components: - pos: 28.5,-29.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10956 components: - pos: 28.5,-31.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10957 components: - pos: 28.5,-32.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10958 components: - pos: 28.5,-32.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10959 components: - pos: 28.5,-33.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10960 components: - pos: 28.5,-34.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10961 components: - pos: 28.5,-35.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10962 components: - pos: 27.5,-35.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10963 components: - pos: 26.5,-35.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10964 components: - pos: 25.5,-35.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10965 components: - pos: 24.5,-35.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11039 components: - pos: -9.5,-34.5 @@ -24239,50 +23685,36 @@ entities: - pos: 41.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11239 components: - pos: 17.5,-37.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11240 components: - pos: 18.5,-37.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11241 components: - pos: 19.5,-37.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11242 components: - pos: 20.5,-37.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11243 components: - pos: 21.5,-37.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11244 components: - pos: 22.5,-37.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11332 components: - pos: 1.5,-9.5 @@ -24293,8 +23725,6 @@ entities: - pos: 40.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11351 components: - pos: 3.5,-8.5 @@ -24310,15 +23740,11 @@ entities: - pos: 39.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11474 components: - pos: 10.5,-16.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11475 components: - pos: 11.5,-16.5 @@ -24614,15 +24040,11 @@ entities: - pos: 38.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11578 components: - pos: 37.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11642 components: - pos: 30.5,-10.5 @@ -24633,22 +24055,16 @@ entities: - pos: 34.5,-15.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11661 components: - pos: 34.5,-16.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11667 components: - pos: 34.5,-12.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11669 components: - pos: 23.5,-2.5 @@ -24674,22 +24090,16 @@ entities: - pos: 36.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11683 components: - pos: 34.5,-14.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11684 components: - pos: 34.5,-13.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11687 components: - pos: 34.5,-10.5 @@ -24705,8 +24115,6 @@ entities: - pos: 35.5,-18.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11695 components: - pos: 33.5,-10.5 @@ -24717,8 +24125,6 @@ entities: - pos: 34.5,-18.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11706 components: - pos: 23.5,-3.5 @@ -24734,8 +24140,6 @@ entities: - pos: 37.5,-3.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11758 components: - pos: 33.5,-6.5 @@ -24746,8 +24150,6 @@ entities: - pos: 36.5,-6.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11765 components: - pos: 33.5,-5.5 @@ -24768,8 +24170,6 @@ entities: - pos: 37.5,-6.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11798 components: - pos: 29.5,-10.5 @@ -24785,43 +24185,31 @@ entities: - pos: 23.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11832 components: - pos: 21.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11833 components: - pos: 20.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11834 components: - pos: 19.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11841 components: - pos: 30.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11842 components: - pos: 18.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11967 components: - pos: 28.5,-1.5 @@ -24852,8 +24240,6 @@ entities: - pos: 21.5,-12.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12050 components: - pos: 21.5,-11.5 @@ -24939,8 +24325,6 @@ entities: - pos: 33.5,-0.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12088 components: - pos: 33.5,-1.5 @@ -24991,43 +24375,31 @@ entities: - pos: 33.5,1.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12114 components: - pos: 33.5,2.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12115 components: - pos: 33.5,3.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12116 components: - pos: 33.5,4.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12117 components: - pos: 32.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12118 components: - pos: 22.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12119 components: - pos: 29.5,1.5 @@ -25063,8 +24435,6 @@ entities: - pos: 34.5,-17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12133 components: - pos: 23.5,-5.5 @@ -25270,78 +24640,56 @@ entities: - pos: 17.5,4.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12175 components: - pos: 17.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12176 components: - pos: 17.5,6.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12177 components: - pos: 17.5,7.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12178 components: - pos: 15.5,7.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12179 components: - pos: 16.5,7.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12180 components: - pos: 14.5,7.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12181 components: - pos: 13.5,7.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12182 components: - pos: 12.5,7.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12183 components: - pos: 12.5,6.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12184 components: - pos: 31.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12190 components: - pos: 11.5,2.5 @@ -25432,8 +24780,6 @@ entities: - pos: 36.5,-18.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12239 components: - pos: 31.5,-10.5 @@ -25484,8 +24830,6 @@ entities: - pos: -7.5,-54.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12307 components: - pos: 34.5,-3.5 @@ -25496,22 +24840,16 @@ entities: - pos: 19.5,28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12322 components: - pos: 19.5,29.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12323 components: - pos: 19.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12324 components: - pos: 18.5,30.5 @@ -25522,15 +24860,11 @@ entities: - pos: 17.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12326 components: - pos: 16.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12327 components: - pos: 19.5,27.5 @@ -25971,8 +25305,6 @@ entities: - pos: 16.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12415 components: - pos: 16.5,42.5 @@ -25983,15 +25315,11 @@ entities: - pos: 16.5,44.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12417 components: - pos: 16.5,45.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12418 components: - pos: 23.5,39.5 @@ -26027,36 +25355,26 @@ entities: - pos: 25.5,41.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12425 components: - pos: 25.5,42.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12426 components: - pos: 24.5,42.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12427 components: - pos: 25.5,42.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12428 components: - pos: 26.5,42.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12429 components: - pos: 23.5,36.5 @@ -26147,8 +25465,6 @@ entities: - pos: -7.5,-53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12832 components: - pos: 26.5,20.5 @@ -26164,8 +25480,6 @@ entities: - pos: 18.5,13.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12973 components: - pos: 18.5,12.5 @@ -26176,8 +25490,6 @@ entities: - pos: 32.5,16.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13170 components: - pos: 32.5,15.5 @@ -26343,15 +25655,11 @@ entities: - pos: 37.5,9.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13206 components: - pos: 37.5,10.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13207 components: - pos: 40.5,7.5 @@ -26682,8 +25990,6 @@ entities: - pos: 24.5,15.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13275 components: - pos: 22.5,16.5 @@ -26699,8 +26005,6 @@ entities: - pos: 24.5,15.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13278 components: - pos: 25.5,15.5 @@ -26731,8 +26035,6 @@ entities: - pos: 20.5,24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13285 components: - pos: 20.5,23.5 @@ -26903,36 +26205,26 @@ entities: - pos: 33.5,26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13320 components: - pos: 35.5,25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13321 components: - pos: 35.5,24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13322 components: - pos: 35.5,23.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13323 components: - pos: 35.5,22.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13324 components: - pos: 29.5,20.5 @@ -26988,8 +26280,6 @@ entities: - pos: 19.5,60.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13429 components: - pos: 19.5,59.5 @@ -27010,29 +26300,21 @@ entities: - pos: 16.5,56.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13447 components: - pos: 15.5,54.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13715 components: - pos: 19.5,58.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13716 components: - pos: 18.5,57.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13717 components: - pos: 16.5,57.5 @@ -27043,22 +26325,16 @@ entities: - pos: 15.5,55.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13845 components: - pos: 43.5,11.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13846 components: - pos: 41.5,10.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13869 components: - pos: 24.5,-10.5 @@ -27069,15 +26345,11 @@ entities: - pos: 48.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14556 components: - pos: 48.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14557 components: - pos: 47.5,19.5 @@ -27088,57 +26360,41 @@ entities: - pos: 46.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14559 components: - pos: 45.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14560 components: - pos: 44.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14561 components: - pos: 43.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14562 components: - pos: 42.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14563 components: - pos: 42.5,18.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14564 components: - pos: 42.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14565 components: - pos: 49.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14566 components: - pos: 50.5,19.5 @@ -27164,99 +26420,71 @@ entities: - pos: 52.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14571 components: - pos: 51.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14572 components: - pos: 50.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14573 components: - pos: 49.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14574 components: - pos: 48.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14575 components: - pos: 48.5,22.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14576 components: - pos: 48.5,23.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14577 components: - pos: 48.5,24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14578 components: - pos: 48.5,25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14579 components: - pos: 51.5,22.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14580 components: - pos: 51.5,23.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14581 components: - pos: 51.5,24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14582 components: - pos: 52.5,24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14583 components: - pos: 53.5,24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14584 components: - pos: 32.5,29.5 @@ -27287,190 +26515,136 @@ entities: - pos: 34.5,26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14590 components: - pos: 35.5,26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14591 components: - pos: 36.5,26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14592 components: - pos: 37.5,26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14593 components: - pos: 38.5,26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14594 components: - pos: 39.5,26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14595 components: - pos: 40.5,26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14596 components: - pos: 41.5,26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14597 components: - pos: 42.5,26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14598 components: - pos: 42.5,25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14599 components: - pos: 42.5,24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14600 components: - pos: 42.5,23.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14601 components: - pos: 42.5,22.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14602 components: - pos: 42.5,27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14603 components: - pos: 42.5,28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14604 components: - pos: 42.5,29.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14605 components: - pos: 42.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14606 components: - pos: 43.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14607 components: - pos: 44.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14608 components: - pos: 16.5,46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14647 components: - pos: 43.5,12.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14772 components: - pos: 16.5,50.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14773 components: - pos: 16.5,51.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14774 components: - pos: 16.5,52.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14775 components: - pos: 16.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14776 components: - pos: 16.5,54.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14777 components: - pos: 16.5,55.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14786 components: - pos: 12.5,60.5 @@ -27486,8 +26660,6 @@ entities: - pos: 12.5,56.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14789 components: - pos: 14.5,57.5 @@ -27508,8 +26680,6 @@ entities: - pos: 17.5,61.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14793 components: - pos: 12.5,59.5 @@ -27535,36 +26705,26 @@ entities: - pos: 16.5,49.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14803 components: - pos: 16.5,48.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14804 components: - pos: 17.5,48.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14805 components: - pos: 18.5,48.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14806 components: - pos: 19.5,48.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14807 components: - pos: 19.5,47.5 @@ -27580,36 +26740,26 @@ entities: - pos: 19.5,49.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14810 components: - pos: 19.5,50.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14812 components: - pos: 19.5,51.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14813 components: - pos: 19.5,52.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14814 components: - pos: 19.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14815 components: - pos: 19.5,54.5 @@ -27620,183 +26770,131 @@ entities: - pos: 19.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14817 components: - pos: 20.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14818 components: - pos: 18.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14819 components: - pos: 21.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14820 components: - pos: 22.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14821 components: - pos: 23.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14822 components: - pos: 24.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14823 components: - pos: 25.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14824 components: - pos: 26.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14825 components: - pos: 27.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14826 components: - pos: 28.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14827 components: - pos: 29.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14828 components: - pos: 30.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14829 components: - pos: 30.5,52.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14831 components: - pos: 33.5,44.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14832 components: - pos: 40.5,44.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14833 components: - pos: 32.5,45.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14834 components: - pos: 31.5,45.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14835 components: - pos: 30.5,45.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14836 components: - pos: 30.5,46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14837 components: - pos: 30.5,48.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14838 components: - pos: 30.5,47.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14839 components: - pos: 30.5,49.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14840 components: - pos: 30.5,50.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14841 components: - pos: 33.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14842 components: - pos: 33.5,42.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14843 components: - pos: 32.5,42.5 @@ -27832,29 +26930,21 @@ entities: - pos: 34.5,44.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14850 components: - pos: 36.5,44.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14851 components: - pos: 35.5,44.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14852 components: - pos: 37.5,44.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14853 components: - pos: 38.5,44.5 @@ -27865,8 +26955,6 @@ entities: - pos: 39.5,44.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14855 components: - pos: 41.5,44.5 @@ -27882,15 +26970,11 @@ entities: - pos: 43.5,44.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14858 components: - pos: 44.5,44.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14859 components: - pos: 45.5,44.5 @@ -27906,8 +26990,6 @@ entities: - pos: 46.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14862 components: - pos: 46.5,42.5 @@ -27928,113 +27010,81 @@ entities: - pos: 45.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14866 components: - pos: 46.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14867 components: - pos: 47.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14868 components: - pos: 46.5,31.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14870 components: - pos: 33.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14871 components: - pos: 35.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14872 components: - pos: 34.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14873 components: - pos: 36.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14874 components: - pos: 37.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14875 components: - pos: 38.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14876 components: - pos: 39.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14877 components: - pos: 40.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14878 components: - pos: 41.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14879 components: - pos: 42.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14880 components: - pos: 42.5,6.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14881 components: - pos: 42.5,7.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14882 components: - pos: 27.5,38.5 @@ -28185,8 +27235,6 @@ entities: - pos: 44.5,35.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14912 components: - pos: 45.5,35.5 @@ -28372,8 +27420,6 @@ entities: - pos: 38.5,-18.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14986 components: - pos: 12.5,61.5 @@ -28389,8 +27435,6 @@ entities: - pos: 16.5,61.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14992 components: - pos: 12.5,55.5 @@ -28401,29 +27445,21 @@ entities: - pos: 44.5,-18.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15034 components: - pos: 43.5,15.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15035 components: - pos: 43.5,14.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15169 components: - pos: 36.5,-3.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15201 components: - pos: 29.5,-6.5 @@ -28434,197 +27470,141 @@ entities: - pos: 19.5,61.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15222 components: - pos: 18.5,61.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15270 components: - pos: 42.5,-18.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15341 components: - pos: 48.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15342 components: - pos: 49.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15343 components: - pos: 50.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15344 components: - pos: 51.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15345 components: - pos: 52.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15346 components: - pos: 53.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15432 components: - pos: 40.5,-19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15434 components: - pos: 43.5,16.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15435 components: - pos: 45.5,16.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15436 components: - pos: 47.5,16.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15440 components: - pos: 42.5,8.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15463 components: - pos: 37.5,-18.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15542 components: - pos: 39.5,-18.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15543 components: - pos: 43.5,-18.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15544 components: - pos: 41.5,-18.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15545 components: - pos: 40.5,-18.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15550 components: - pos: 46.5,16.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15551 components: - pos: 44.5,16.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15616 components: - pos: 42.5,16.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15626 components: - pos: 40.5,-17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15640 components: - pos: 42.5,9.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15647 components: - pos: 40.5,-16.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15715 components: - pos: 43.5,13.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15736 components: - pos: 43.5,10.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16018 components: - pos: 29.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16097 components: - pos: 29.5,-1.5 @@ -28640,15 +27620,11 @@ entities: - pos: -2.5,-13.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16109 components: - pos: -2.5,-14.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16110 components: - pos: -2.5,-15.5 @@ -28674,36 +27650,26 @@ entities: - pos: -50.5,39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16823 components: - pos: -50.5,38.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16824 components: - pos: -50.5,40.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16825 components: - pos: -50.5,41.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16826 components: - pos: -50.5,42.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16827 components: - pos: -52.5,50.5 @@ -28719,155 +27685,111 @@ entities: - pos: -52.5,48.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16830 components: - pos: -52.5,47.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16831 components: - pos: -52.5,46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16832 components: - pos: -52.5,45.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16833 components: - pos: -52.5,44.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16834 components: - pos: -52.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16835 components: - pos: -53.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16836 components: - pos: -54.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16837 components: - pos: -51.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16838 components: - pos: -55.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16839 components: - pos: -56.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16840 components: - pos: -58.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16841 components: - pos: -57.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16842 components: - pos: -59.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16843 components: - pos: -60.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16844 components: - pos: -61.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16845 components: - pos: -62.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16846 components: - pos: -63.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16847 components: - pos: -64.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16848 components: - pos: -65.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16849 components: - pos: -66.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16850 components: - pos: -67.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16851 components: - pos: -54.5,32.5 @@ -28883,204 +27805,146 @@ entities: - pos: -56.5,32.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16854 components: - pos: -56.5,31.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16855 components: - pos: -56.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16856 components: - pos: -56.5,29.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16857 components: - pos: -56.5,28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16858 components: - pos: -56.5,27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16859 components: - pos: -55.5,27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16860 components: - pos: -54.5,27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16861 components: - pos: -53.5,27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16862 components: - pos: -52.5,27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16863 components: - pos: -51.5,27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16864 components: - pos: -50.5,27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16865 components: - pos: -49.5,27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16866 components: - pos: -46.5,25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16867 components: - pos: -46.5,24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16868 components: - pos: -60.5,42.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16869 components: - pos: -60.5,41.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16870 components: - pos: -60.5,40.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16871 components: - pos: -60.5,39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16872 components: - pos: -60.5,38.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16873 components: - pos: -60.5,37.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16874 components: - pos: -60.5,36.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16875 components: - pos: -60.5,35.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16876 components: - pos: -60.5,34.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16877 components: - pos: -57.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16878 components: - pos: -58.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16879 components: - pos: -59.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 17041 components: - pos: -57.5,44.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 17585 components: - pos: 23.5,-0.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 17811 components: - pos: 28.5,-6.5 @@ -29161,15 +28025,11 @@ entities: - pos: -79.5,-57.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18970 components: - pos: -43.5,-22.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18971 components: - pos: -44.5,-22.5 @@ -29280,288 +28140,206 @@ entities: - pos: -41.5,-22.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18993 components: - pos: -40.5,-22.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18994 components: - pos: -39.5,-22.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18995 components: - pos: -38.5,-22.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18996 components: - pos: -38.5,-23.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18997 components: - pos: -38.5,-24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18998 components: - pos: -37.5,-24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18999 components: - pos: -36.5,-24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19000 components: - pos: -36.5,-23.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19001 components: - pos: -36.5,-22.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19002 components: - pos: -36.5,-21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19003 components: - pos: -36.5,-20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19004 components: - pos: -36.5,-19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19005 components: - pos: -36.5,-18.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19006 components: - pos: -36.5,-17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19007 components: - pos: -36.5,-16.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19008 components: - pos: -37.5,-16.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19009 components: - pos: -38.5,-16.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19010 components: - pos: -39.5,-16.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19011 components: - pos: -36.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19012 components: - pos: -36.5,-26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19013 components: - pos: -36.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19014 components: - pos: -36.5,-28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19015 components: - pos: -35.5,-28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19016 components: - pos: -34.5,-28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19017 components: - pos: -33.5,-28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19018 components: - pos: -32.5,-28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19019 components: - pos: -31.5,-28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19020 components: - pos: -30.5,-28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19021 components: - pos: -29.5,-28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19022 components: - pos: -29.5,-29.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19023 components: - pos: -29.5,-30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19024 components: - pos: -29.5,-31.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19025 components: - pos: -28.5,-28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19026 components: - pos: -27.5,-28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19027 components: - pos: -26.5,-28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19028 components: - pos: -25.5,-28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19029 components: - pos: -24.5,-28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19030 components: - pos: -24.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19031 components: - pos: -24.5,-26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19032 components: - pos: -59.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19035 components: - pos: -59.5,-27.5 @@ -29617,15 +28395,11 @@ entities: - pos: -63.5,-20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19046 components: - pos: -63.5,-19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19047 components: - pos: -63.5,-23.5 @@ -29701,8 +28475,6 @@ entities: - pos: -52.5,-40.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19063 components: - pos: -60.5,-34.5 @@ -29713,15 +28485,11 @@ entities: - pos: -51.5,-40.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19065 components: - pos: -74.5,-41.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19070 components: - pos: -61.5,-35.5 @@ -29867,162 +28635,116 @@ entities: - pos: -59.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19103 components: - pos: -50.5,-40.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19104 components: - pos: -48.5,-43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19105 components: - pos: -48.5,-44.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19106 components: - pos: -48.5,-46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19107 components: - pos: -48.5,-45.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19108 components: - pos: -48.5,-47.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19109 components: - pos: -48.5,-48.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19110 components: - pos: -48.5,-49.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19111 components: - pos: -52.5,-38.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19112 components: - pos: -51.5,-38.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19113 components: - pos: -49.5,-40.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19114 components: - pos: -48.5,-40.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19115 components: - pos: -48.5,-41.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19116 components: - pos: -48.5,-42.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19117 components: - pos: -50.5,-38.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19118 components: - pos: -51.5,-37.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19119 components: - pos: -51.5,-36.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19120 components: - pos: -51.5,-35.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19121 components: - pos: -52.5,-35.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19122 components: - pos: -52.5,-33.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19123 components: - pos: -54.5,-32.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19124 components: - pos: -54.5,-31.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19125 components: - pos: -67.5,-41.5 @@ -30043,162 +28765,116 @@ entities: - pos: -65.5,-24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19129 components: - pos: -64.5,-24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19130 components: - pos: -66.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19131 components: - pos: -66.5,-24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19132 components: - pos: -67.5,-29.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19133 components: - pos: -67.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19134 components: - pos: -67.5,-28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19135 components: - pos: -67.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19136 components: - pos: -67.5,-26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19137 components: - pos: -52.5,-34.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19138 components: - pos: -53.5,-33.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19139 components: - pos: -53.5,-32.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19140 components: - pos: -55.5,-29.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19141 components: - pos: -56.5,-29.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19142 components: - pos: -56.5,-28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19143 components: - pos: -56.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19144 components: - pos: -56.5,-26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19145 components: - pos: -69.5,-40.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19146 components: - pos: -54.5,-30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19147 components: - pos: -55.5,-30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19148 components: - pos: -68.5,-29.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19150 components: - pos: -73.5,-41.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19151 components: - pos: -65.5,-47.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19152 components: - pos: -65.5,-48.5 @@ -30529,15 +29205,11 @@ entities: - pos: -54.5,-49.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19218 components: - pos: -53.5,-49.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19219 components: - pos: -52.5,-52.5 @@ -30618,29 +29290,21 @@ entities: - pos: -64.5,-62.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19235 components: - pos: -64.5,-63.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19236 components: - pos: -64.5,-64.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19237 components: - pos: -64.5,-65.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19238 components: - pos: -63.5,-64.5 @@ -31051,8 +29715,6 @@ entities: - pos: -76.5,-42.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19320 components: - pos: -76.5,-43.5 @@ -31228,15 +29890,11 @@ entities: - pos: -75.5,-42.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19355 components: - pos: -75.5,-41.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19356 components: - pos: -79.5,-58.5 @@ -31267,22 +29925,16 @@ entities: - pos: -82.5,-60.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19362 components: - pos: -83.5,-60.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19363 components: - pos: -84.5,-60.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19364 components: - pos: -78.5,-60.5 @@ -31423,8 +30075,6 @@ entities: - pos: -50.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19597 components: - pos: -25.5,-41.5 @@ -31460,92 +30110,66 @@ entities: - pos: -29.5,-39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19604 components: - pos: -30.5,-39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19605 components: - pos: -31.5,-39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19606 components: - pos: -32.5,-39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19607 components: - pos: -33.5,-39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19608 components: - pos: -34.5,-39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19609 components: - pos: -36.5,-39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19610 components: - pos: -35.5,-39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19611 components: - pos: -29.5,-38.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19612 components: - pos: -29.5,-37.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19613 components: - pos: -29.5,-36.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19614 components: - pos: -29.5,-35.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19615 components: - pos: -29.5,-34.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19709 components: - pos: -19.5,-34.5 @@ -31561,15 +30185,11 @@ entities: - pos: -38.5,62.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 20163 components: - pos: 0.5,85.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 20164 components: - pos: 0.5,84.5 @@ -31860,22 +30480,16 @@ entities: - pos: -0.5,62.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 20222 components: - pos: -0.5,60.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 20223 components: - pos: -0.5,61.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 20224 components: - pos: -1.5,66.5 @@ -32181,36 +30795,26 @@ entities: - pos: -20.5,52.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21008 components: - pos: -20.5,51.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21009 components: - pos: -20.5,50.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21010 components: - pos: -20.5,49.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21011 components: - pos: -20.5,48.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21012 components: - pos: -27.5,58.5 @@ -32221,22 +30825,16 @@ entities: - pos: -26.5,58.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21014 components: - pos: -26.5,59.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21015 components: - pos: -26.5,60.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21016 components: - pos: -29.5,60.5 @@ -32247,22 +30845,16 @@ entities: - pos: -28.5,61.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21018 components: - pos: -29.5,61.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21019 components: - pos: -30.5,61.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21020 components: - pos: -35.5,60.5 @@ -32278,22 +30870,16 @@ entities: - pos: -34.5,61.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21024 components: - pos: -33.5,61.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21025 components: - pos: -32.5,61.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21026 components: - pos: -34.5,60.5 @@ -32304,148 +30890,106 @@ entities: - pos: -36.5,61.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21100 components: - pos: -31.5,-40.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21101 components: - pos: -31.5,-41.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21102 components: - pos: -31.5,-42.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21103 components: - pos: -31.5,-43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21104 components: - pos: -31.5,-44.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21105 components: - pos: -31.5,-45.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21106 components: - pos: -31.5,-46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21107 components: - pos: -32.5,-46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21108 components: - pos: -33.5,-46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21109 components: - pos: -34.5,-46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21110 components: - pos: -35.5,-46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21111 components: - pos: -36.5,-46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21138 components: - pos: -57.5,45.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21139 components: - pos: -57.5,46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21140 components: - pos: -57.5,47.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21141 components: - pos: -57.5,48.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21142 components: - pos: -57.5,49.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21143 components: - pos: -57.5,50.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21144 components: - pos: -57.5,51.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21145 components: - pos: -56.5,51.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21263 components: - pos: -61.5,-30.5 @@ -32481,15 +31025,11 @@ entities: - pos: -1.5,-14.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21465 components: - pos: -0.5,-14.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21475 components: - pos: -79.5,-43.5 @@ -32530,50 +31070,36 @@ entities: - pos: -45.5,-26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21596 components: - pos: -45.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21597 components: - pos: -44.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21598 components: - pos: -43.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21599 components: - pos: -42.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21600 components: - pos: -41.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21601 components: - pos: -40.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21655 components: - pos: -61.5,-32.5 @@ -32589,225 +31115,161 @@ entities: - pos: -68.5,-30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21658 components: - pos: -69.5,-30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21659 components: - pos: -69.5,-31.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21660 components: - pos: -69.5,-32.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21661 components: - pos: -70.5,-32.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21662 components: - pos: -70.5,-33.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21663 components: - pos: -71.5,-33.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21664 components: - pos: -71.5,-34.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21665 components: - pos: -72.5,-34.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21666 components: - pos: -73.5,-34.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21667 components: - pos: -73.5,-35.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21668 components: - pos: -74.5,-34.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21669 components: - pos: -75.5,-34.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21730 components: - pos: -37.5,62.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21951 components: - pos: -0.5,59.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21952 components: - pos: -0.5,58.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21953 components: - pos: -0.5,57.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21954 components: - pos: -0.5,56.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21955 components: - pos: -0.5,55.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21956 components: - pos: -0.5,54.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21957 components: - pos: -0.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21958 components: - pos: -0.5,52.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21959 components: - pos: -0.5,51.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21960 components: - pos: -0.5,50.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21961 components: - pos: -0.5,49.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21962 components: - pos: -0.5,48.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21963 components: - pos: -0.5,47.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21964 components: - pos: -0.5,46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21965 components: - pos: -0.5,45.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21966 components: - pos: -0.5,44.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21968 components: - pos: -0.5,42.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21969 components: - pos: -0.5,41.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 22101 components: - pos: 2.5,-21.5 @@ -32823,36 +31285,26 @@ entities: - pos: -36.5,62.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 22228 components: - pos: -39.5,62.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 22229 components: - pos: -40.5,62.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 22230 components: - pos: -41.5,62.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 22258 components: - pos: 3.5,10.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 22260 components: - pos: 1.5,10.5 @@ -32863,8 +31315,6 @@ entities: - pos: -33.5,-57.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 22707 components: - pos: -34.5,-57.5 @@ -33010,8 +31460,6 @@ entities: - pos: -28.5,-60.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 22736 components: - pos: -29.5,-60.5 @@ -33102,8 +31550,6 @@ entities: - pos: -26.5,-60.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 22754 components: - pos: -26.5,-62.5 @@ -33114,36 +31560,26 @@ entities: - pos: -26.5,-61.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 22756 components: - pos: -24.5,-58.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 22757 components: - pos: -23.5,-58.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 22758 components: - pos: -22.5,-58.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 22759 components: - pos: -21.5,-58.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - proto: CableApcStack entities: - uid: 1637 @@ -33198,15 +31634,11 @@ entities: - pos: -20.5,-56.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 833 components: - pos: -20.5,-57.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 933 components: - pos: -46.5,10.5 @@ -33232,8 +31664,6 @@ entities: - pos: -45.5,10.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3197 components: - pos: -47.5,9.5 @@ -33384,8 +31814,6 @@ entities: - pos: -42.5,16.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3561 components: - pos: -42.5,17.5 @@ -33426,8 +31854,6 @@ entities: - pos: -20.5,-58.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4456 components: - pos: -45.5,18.5 @@ -33438,393 +31864,281 @@ entities: - pos: -46.5,18.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4458 components: - pos: -46.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4459 components: - pos: -46.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4460 components: - pos: -46.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4461 components: - pos: -46.5,22.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4462 components: - pos: -46.5,23.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4463 components: - pos: -46.5,24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4464 components: - pos: -46.5,25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4465 components: - pos: -46.5,26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4466 components: - pos: -46.5,27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4467 components: - pos: -47.5,27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4468 components: - pos: -48.5,27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4469 components: - pos: -49.5,27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4470 components: - pos: -50.5,27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4471 components: - pos: -51.5,27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4472 components: - pos: -52.5,27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4473 components: - pos: -53.5,27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4474 components: - pos: -54.5,27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4475 components: - pos: -55.5,27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4476 components: - pos: -56.5,27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4477 components: - pos: -56.5,28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4478 components: - pos: -56.5,29.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4479 components: - pos: -56.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4480 components: - pos: -57.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4481 components: - pos: -58.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4482 components: - pos: -59.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4483 components: - pos: -60.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4484 components: - pos: -60.5,31.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4485 components: - pos: -60.5,32.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4486 components: - pos: -60.5,33.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4487 components: - pos: -60.5,34.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4488 components: - pos: -50.5,48.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4489 components: - pos: -50.5,47.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4490 components: - pos: -50.5,46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4491 components: - pos: -50.5,45.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4492 components: - pos: -50.5,44.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4493 components: - pos: -50.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4494 components: - pos: -51.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4495 components: - pos: -52.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4496 components: - pos: -53.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4497 components: - pos: -54.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4498 components: - pos: -55.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4499 components: - pos: -56.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4500 components: - pos: -57.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4501 components: - pos: -58.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4502 components: - pos: -59.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4503 components: - pos: -60.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4504 components: - pos: -60.5,42.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4505 components: - pos: -60.5,41.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4506 components: - pos: -60.5,40.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4507 components: - pos: -60.5,39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4508 components: - pos: -60.5,35.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4509 components: - pos: -60.5,36.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4510 components: - pos: -60.5,37.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4511 components: - pos: -60.5,38.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5085 components: - pos: -24.5,41.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5089 components: - pos: -35.5,15.5 @@ -33845,190 +32159,136 @@ entities: - pos: -32.5,15.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5093 components: - pos: -31.5,15.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5094 components: - pos: -31.5,16.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5095 components: - pos: -31.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5096 components: - pos: -31.5,18.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5097 components: - pos: -31.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5098 components: - pos: -30.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5099 components: - pos: -29.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5100 components: - pos: -28.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5101 components: - pos: -27.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5102 components: - pos: -26.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5103 components: - pos: -25.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5104 components: - pos: -24.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5105 components: - pos: -23.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5106 components: - pos: -23.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5107 components: - pos: -22.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5108 components: - pos: -21.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5109 components: - pos: -20.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5110 components: - pos: -19.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5111 components: - pos: -18.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5112 components: - pos: -17.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5113 components: - pos: -16.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5114 components: - pos: -15.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5115 components: - pos: -14.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5116 components: - pos: -14.5,22.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5117 components: - pos: -14.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5118 components: - pos: -14.5,23.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5119 components: - pos: -14.5,24.5 @@ -34149,43 +32409,31 @@ entities: - pos: -22.5,39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5143 components: - pos: -22.5,40.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5144 components: - pos: -22.5,41.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5145 components: - pos: -22.5,42.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5146 components: - pos: -23.5,42.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5147 components: - pos: -24.5,42.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5148 components: - pos: -49.5,43.5 @@ -34316,71 +32564,51 @@ entities: - pos: -27.5,46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5174 components: - pos: -26.5,46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5175 components: - pos: -25.5,46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5176 components: - pos: -24.5,46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5177 components: - pos: -23.5,46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5178 components: - pos: -22.5,46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5179 components: - pos: -22.5,45.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5180 components: - pos: -22.5,44.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5181 components: - pos: -22.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5240 components: - pos: -24.5,-58.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5507 components: - pos: -14.5,38.5 @@ -34616,43 +32844,31 @@ entities: - pos: 12.5,40.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5554 components: - pos: 12.5,41.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5555 components: - pos: 12.5,42.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5635 components: - pos: -23.5,-58.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5722 components: - pos: -22.5,-58.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 6095 components: - pos: -21.5,-58.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 6387 components: - pos: 10.5,33.5 @@ -34743,22 +32959,16 @@ entities: - pos: 19.5,29.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 6405 components: - pos: 19.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 6406 components: - pos: 19.5,31.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7106 components: - pos: -7.5,-45.5 @@ -34854,92 +33064,66 @@ entities: - pos: -42.5,-8.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7633 components: - pos: -41.5,-8.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7634 components: - pos: -41.5,-7.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7635 components: - pos: -41.5,-6.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7636 components: - pos: -41.5,-5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7637 components: - pos: -41.5,-4.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7638 components: - pos: -41.5,-3.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7639 components: - pos: -41.5,-2.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7640 components: - pos: -40.5,-2.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7641 components: - pos: -39.5,-2.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7642 components: - pos: -38.5,-2.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7643 components: - pos: -37.5,-2.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7644 components: - pos: -37.5,-1.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7645 components: - pos: -36.5,6.5 @@ -35015,449 +33199,321 @@ entities: - pos: -36.5,-24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7680 components: - pos: -36.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7681 components: - pos: -36.5,-26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7682 components: - pos: -36.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7683 components: - pos: -36.5,-28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7684 components: - pos: -35.5,-28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7685 components: - pos: -34.5,-28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7686 components: - pos: -33.5,-28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7687 components: - pos: -32.5,-28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7688 components: - pos: -31.5,-28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7689 components: - pos: -30.5,-28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7690 components: - pos: -29.5,-28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7691 components: - pos: -28.5,-28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7692 components: - pos: -27.5,-28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7693 components: - pos: -26.5,-28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7694 components: - pos: -25.5,-28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7695 components: - pos: -22.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7696 components: - pos: -23.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7697 components: - pos: -24.5,-28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7698 components: - pos: -24.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7699 components: - pos: -24.5,-26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7700 components: - pos: -24.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7701 components: - pos: -21.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7702 components: - pos: -20.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7703 components: - pos: -19.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7704 components: - pos: -18.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7705 components: - pos: -17.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7706 components: - pos: -16.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7707 components: - pos: -15.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7708 components: - pos: -14.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7775 components: - pos: -13.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7776 components: - pos: -12.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7777 components: - pos: -11.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7778 components: - pos: -10.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7779 components: - pos: -9.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7780 components: - pos: -8.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7781 components: - pos: -7.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7782 components: - pos: -6.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7783 components: - pos: -5.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7784 components: - pos: -5.5,-24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7785 components: - pos: -5.5,-23.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7786 components: - pos: -5.5,-22.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7787 components: - pos: -5.5,-21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7788 components: - pos: -5.5,-20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7789 components: - pos: -5.5,-19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7790 components: - pos: -5.5,-19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7791 components: - pos: -5.5,-18.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7792 components: - pos: -5.5,-17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7793 components: - pos: -5.5,-16.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7794 components: - pos: -5.5,-15.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7795 components: - pos: -5.5,-14.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7796 components: - pos: -4.5,-14.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7797 components: - pos: -3.5,-14.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7798 components: - pos: -2.5,-14.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7799 components: - pos: -1.5,-14.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7800 components: - pos: -0.5,-14.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7801 components: - pos: -0.5,-13.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7802 components: - pos: -0.5,-12.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7803 components: - pos: -0.5,-11.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7965 components: - pos: -7.5,-46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8225 components: - pos: -7.5,-47.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8230 components: - pos: -7.5,-48.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8231 components: - pos: -7.5,-49.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8232 components: - pos: -7.5,-50.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8402 components: - pos: 3.5,-13.5 @@ -35468,8 +33524,6 @@ entities: - pos: 3.5,-37.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 9484 components: - pos: -8.5,-33.5 @@ -35505,22 +33559,16 @@ entities: - pos: -8.5,-34.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 9494 components: - pos: -6.5,-34.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 9495 components: - pos: -7.5,-34.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 9499 components: - pos: -9.5,-33.5 @@ -35631,50 +33679,36 @@ entities: - pos: -12.5,-29.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 9521 components: - pos: -11.5,-29.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 9522 components: - pos: -9.5,-29.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 9523 components: - pos: -10.5,-29.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 9524 components: - pos: -8.5,-29.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 9525 components: - pos: -7.5,-29.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 9526 components: - pos: -6.5,-29.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 9527 components: - pos: -5.5,-29.5 @@ -35880,8 +33914,6 @@ entities: - pos: -12.5,-42.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 9795 components: - pos: -17.5,-41.5 @@ -35997,169 +34029,121 @@ entities: - pos: -17.5,-49.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10171 components: - pos: -17.5,-50.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10172 components: - pos: -17.5,-51.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10173 components: - pos: -17.5,-52.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10174 components: - pos: -17.5,-53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10175 components: - pos: -17.5,-54.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10176 components: - pos: -17.5,-55.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10177 components: - pos: -17.5,-56.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10178 components: - pos: -17.5,-57.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10179 components: - pos: -17.5,-58.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10180 components: - pos: -17.5,-59.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10181 components: - pos: -17.5,-60.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10182 components: - pos: -17.5,-61.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10183 components: - pos: -17.5,-62.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10184 components: - pos: -17.5,-63.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10185 components: - pos: -17.5,-64.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10535 components: - pos: -16.5,-51.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10670 components: - pos: -20.5,-55.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10671 components: - pos: -21.5,-55.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10672 components: - pos: -22.5,-55.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10673 components: - pos: -22.5,-54.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10674 components: - pos: -22.5,-53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10675 components: - pos: -22.5,-52.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10676 components: - pos: -22.5,-51.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10677 components: - pos: -22.5,-50.5 @@ -36185,57 +34169,41 @@ entities: - pos: 15.5,4.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11379 components: - pos: 15.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11380 components: - pos: 15.5,6.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11381 components: - pos: 15.5,7.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11382 components: - pos: 14.5,7.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11383 components: - pos: 13.5,7.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11384 components: - pos: 12.5,7.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11385 components: - pos: 12.5,6.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11386 components: - pos: 12.5,5.5 @@ -36371,351 +34339,251 @@ entities: - pos: 2.5,-14.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11417 components: - pos: 1.5,-14.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11418 components: - pos: 0.5,-14.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11434 components: - pos: 3.5,-12.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13842 components: - pos: 43.5,14.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13843 components: - pos: 42.5,10.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13844 components: - pos: 43.5,12.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14609 components: - pos: 16.5,7.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14610 components: - pos: 17.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14611 components: - pos: 17.5,7.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14612 components: - pos: 17.5,6.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14613 components: - pos: 18.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14614 components: - pos: 19.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14615 components: - pos: 20.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14616 components: - pos: 21.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14617 components: - pos: 22.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14618 components: - pos: 23.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14619 components: - pos: 24.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14620 components: - pos: 25.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14621 components: - pos: 26.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14622 components: - pos: 27.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14623 components: - pos: 28.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14624 components: - pos: 29.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14625 components: - pos: 30.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14626 components: - pos: 31.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14627 components: - pos: 32.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14628 components: - pos: 33.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14629 components: - pos: 34.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14630 components: - pos: 35.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14631 components: - pos: 36.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14632 components: - pos: 37.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14633 components: - pos: 38.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14634 components: - pos: 39.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14635 components: - pos: 40.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14636 components: - pos: 41.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14637 components: - pos: 42.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14638 components: - pos: 42.5,6.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14639 components: - pos: 42.5,7.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14640 components: - pos: 42.5,8.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14641 components: - pos: 42.5,9.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14644 components: - pos: 43.5,15.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14645 components: - pos: 43.5,11.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14649 components: - pos: 42.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14650 components: - pos: 41.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14651 components: - pos: 40.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14652 components: - pos: 39.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14653 components: - pos: 38.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14654 components: - pos: 37.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14655 components: - pos: 36.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14656 components: - pos: 35.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14657 components: - pos: 20.5,30.5 @@ -36841,92 +34709,66 @@ entities: - pos: 34.5,26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14682 components: - pos: 42.5,27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14683 components: - pos: 35.5,25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14684 components: - pos: 35.5,24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14685 components: - pos: 35.5,23.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14686 components: - pos: 35.5,22.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14687 components: - pos: 35.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14688 components: - pos: 35.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14689 components: - pos: 35.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14690 components: - pos: 36.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14691 components: - pos: 37.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14692 components: - pos: 38.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14693 components: - pos: 38.5,18.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14694 components: - pos: 22.5,31.5 @@ -37022,1289 +34864,921 @@ entities: - pos: 16.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14713 components: - pos: 16.5,44.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14714 components: - pos: 16.5,45.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14715 components: - pos: 16.5,46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14716 components: - pos: 16.5,47.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14717 components: - pos: 16.5,48.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14718 components: - pos: 16.5,49.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14719 components: - pos: 16.5,50.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14720 components: - pos: 16.5,51.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14721 components: - pos: 16.5,52.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14722 components: - pos: 16.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15008 components: - pos: 14.5,50.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15009 components: - pos: 15.5,50.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15011 components: - pos: 13.5,50.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15012 components: - pos: 12.5,50.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15036 components: - pos: 43.5,13.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15048 components: - pos: 12.5,51.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15294 components: - pos: 49.5,31.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15295 components: - pos: 50.5,31.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15297 components: - pos: 51.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15298 components: - pos: 52.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15300 components: - pos: 51.5,31.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15301 components: - pos: 49.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15302 components: - pos: 48.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15303 components: - pos: 47.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15304 components: - pos: 46.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15305 components: - pos: 45.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15306 components: - pos: 44.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15307 components: - pos: 43.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15308 components: - pos: 42.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15309 components: - pos: 42.5,28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15310 components: - pos: 42.5,28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15311 components: - pos: 42.5,29.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15312 components: - pos: 42.5,26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15313 components: - pos: 41.5,26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15314 components: - pos: 40.5,26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15315 components: - pos: 39.5,26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15316 components: - pos: 38.5,26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15317 components: - pos: 37.5,26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15318 components: - pos: 36.5,26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15319 components: - pos: 35.5,26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15320 components: - pos: 42.5,18.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15321 components: - pos: 42.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15322 components: - pos: 42.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15323 components: - pos: 42.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15324 components: - pos: 42.5,22.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15325 components: - pos: 42.5,23.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15326 components: - pos: 42.5,24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15327 components: - pos: 42.5,25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15358 components: - pos: 53.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15359 components: - pos: 54.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15360 components: - pos: 55.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15361 components: - pos: 56.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15362 components: - pos: 57.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15365 components: - pos: 58.5,32.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15366 components: - pos: 58.5,33.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15367 components: - pos: 58.5,34.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15368 components: - pos: 58.5,35.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15369 components: - pos: 58.5,36.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15370 components: - pos: 58.5,37.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15371 components: - pos: 58.5,38.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15372 components: - pos: 58.5,39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15373 components: - pos: 60.5,32.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15374 components: - pos: 60.5,33.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15375 components: - pos: 60.5,34.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15376 components: - pos: 60.5,35.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15377 components: - pos: 60.5,36.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15378 components: - pos: 60.5,37.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15379 components: - pos: 60.5,37.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15380 components: - pos: 60.5,38.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15381 components: - pos: 60.5,39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15384 components: - pos: 62.5,32.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15385 components: - pos: 62.5,33.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15386 components: - pos: 62.5,34.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15387 components: - pos: 62.5,35.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15388 components: - pos: 62.5,36.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15389 components: - pos: 62.5,37.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15390 components: - pos: 62.5,38.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15391 components: - pos: 62.5,39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15392 components: - pos: 64.5,32.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15393 components: - pos: 64.5,33.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15394 components: - pos: 64.5,34.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15395 components: - pos: 64.5,35.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15396 components: - pos: 64.5,36.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15397 components: - pos: 64.5,37.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15398 components: - pos: 64.5,38.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15399 components: - pos: 64.5,39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15400 components: - pos: 66.5,32.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15401 components: - pos: 66.5,33.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15402 components: - pos: 66.5,34.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15403 components: - pos: 66.5,35.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15404 components: - pos: 66.5,36.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15405 components: - pos: 66.5,37.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15406 components: - pos: 66.5,38.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15407 components: - pos: 66.5,39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15408 components: - pos: 68.5,32.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15409 components: - pos: 68.5,33.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15410 components: - pos: 68.5,34.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15411 components: - pos: 68.5,35.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15412 components: - pos: 68.5,36.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15413 components: - pos: 68.5,37.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15414 components: - pos: 68.5,38.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15415 components: - pos: 68.5,39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15416 components: - pos: 70.5,32.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15417 components: - pos: 70.5,33.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15418 components: - pos: 70.5,34.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15419 components: - pos: 70.5,35.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15420 components: - pos: 70.5,36.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15421 components: - pos: 70.5,37.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15422 components: - pos: 70.5,38.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15423 components: - pos: 70.5,39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15424 components: - pos: 72.5,32.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15425 components: - pos: 72.5,33.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15426 components: - pos: 72.5,34.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15427 components: - pos: 72.5,35.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15428 components: - pos: 72.5,36.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15429 components: - pos: 72.5,37.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15430 components: - pos: 72.5,38.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15431 components: - pos: 72.5,39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15442 components: - pos: 43.5,10.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15464 components: - pos: 72.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15465 components: - pos: 72.5,22.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15466 components: - pos: 72.5,23.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15467 components: - pos: 72.5,24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15468 components: - pos: 72.5,25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15469 components: - pos: 72.5,26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15470 components: - pos: 72.5,27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15471 components: - pos: 72.5,28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15472 components: - pos: 70.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15473 components: - pos: 70.5,22.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15474 components: - pos: 70.5,23.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15475 components: - pos: 70.5,24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15476 components: - pos: 70.5,25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15477 components: - pos: 70.5,26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15478 components: - pos: 70.5,27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15479 components: - pos: 70.5,28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15480 components: - pos: 66.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15481 components: - pos: 66.5,22.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15482 components: - pos: 66.5,23.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15483 components: - pos: 66.5,24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15484 components: - pos: 66.5,25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15485 components: - pos: 66.5,26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15486 components: - pos: 66.5,27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15487 components: - pos: 66.5,28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15488 components: - pos: 68.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15489 components: - pos: 68.5,22.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15490 components: - pos: 68.5,23.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15491 components: - pos: 68.5,24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15492 components: - pos: 68.5,25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15493 components: - pos: 68.5,26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15494 components: - pos: 68.5,27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15495 components: - pos: 68.5,28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15496 components: - pos: 62.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15497 components: - pos: 62.5,22.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15498 components: - pos: 62.5,23.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15499 components: - pos: 62.5,24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15500 components: - pos: 62.5,25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15501 components: - pos: 62.5,26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15502 components: - pos: 62.5,27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15503 components: - pos: 62.5,28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15504 components: - pos: 64.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15505 components: - pos: 64.5,22.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15506 components: - pos: 64.5,23.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15507 components: - pos: 64.5,24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15508 components: - pos: 64.5,25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15509 components: - pos: 64.5,26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15510 components: - pos: 64.5,27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15511 components: - pos: 64.5,28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15512 components: - pos: 58.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15513 components: - pos: 58.5,22.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15514 components: - pos: 58.5,23.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15515 components: - pos: 58.5,24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15516 components: - pos: 58.5,25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15517 components: - pos: 58.5,26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15518 components: - pos: 58.5,27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15519 components: - pos: 58.5,28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15520 components: - pos: 60.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15521 components: - pos: 60.5,22.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15522 components: - pos: 60.5,23.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15523 components: - pos: 60.5,24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15524 components: - pos: 60.5,25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15525 components: - pos: 60.5,26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15526 components: - pos: 60.5,27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15527 components: - pos: 60.5,28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15637 components: - pos: 75.5,30.5 @@ -38315,260 +35789,186 @@ entities: - pos: 43.5,16.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15739 components: - pos: 42.5,16.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15896 components: - pos: 17.5,48.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15897 components: - pos: 18.5,48.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15898 components: - pos: 19.5,48.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15899 components: - pos: 19.5,49.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15900 components: - pos: 19.5,50.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15901 components: - pos: 19.5,51.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15902 components: - pos: 19.5,52.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15903 components: - pos: 19.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15904 components: - pos: 20.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15905 components: - pos: 21.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15906 components: - pos: 22.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15907 components: - pos: 23.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15908 components: - pos: 24.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15909 components: - pos: 25.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15910 components: - pos: 26.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15911 components: - pos: 27.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15912 components: - pos: 28.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15913 components: - pos: 29.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15914 components: - pos: 30.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15915 components: - pos: 30.5,52.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15916 components: - pos: 30.5,51.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15917 components: - pos: 30.5,50.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15918 components: - pos: 30.5,49.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15919 components: - pos: 30.5,48.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15920 components: - pos: 30.5,47.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15921 components: - pos: 30.5,46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15922 components: - pos: 30.5,45.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15923 components: - pos: 31.5,45.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15924 components: - pos: 32.5,45.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15925 components: - pos: 33.5,45.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15926 components: - pos: 33.5,44.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15927 components: - pos: 34.5,44.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15928 components: - pos: 35.5,44.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15929 components: - pos: 36.5,44.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15930 components: - pos: 37.5,44.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15931 components: - pos: 38.5,44.5 @@ -38579,15 +35979,11 @@ entities: - pos: 39.5,44.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15933 components: - pos: 40.5,44.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15934 components: - pos: 41.5,44.5 @@ -38603,15 +35999,11 @@ entities: - pos: 43.5,44.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15937 components: - pos: 44.5,44.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15938 components: - pos: 45.5,44.5 @@ -38627,8 +36019,6 @@ entities: - pos: 46.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 15941 components: - pos: 46.5,42.5 @@ -38689,687 +36079,491 @@ entities: - pos: 46.5,31.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16265 components: - pos: -65.5,44.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16266 components: - pos: -64.5,44.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16267 components: - pos: -63.5,44.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16268 components: - pos: -63.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16269 components: - pos: -62.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16270 components: - pos: -61.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16271 components: - pos: -65.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16272 components: - pos: -66.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16273 components: - pos: -67.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16274 components: - pos: -68.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16275 components: - pos: -69.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16283 components: - pos: -70.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16284 components: - pos: -71.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16285 components: - pos: -72.5,45.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16286 components: - pos: -72.5,46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16287 components: - pos: -72.5,47.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16288 components: - pos: -72.5,48.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16289 components: - pos: -72.5,49.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16290 components: - pos: -72.5,50.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16291 components: - pos: -72.5,51.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16292 components: - pos: -72.5,52.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16293 components: - pos: -74.5,52.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16294 components: - pos: -74.5,51.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16295 components: - pos: -74.5,50.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16296 components: - pos: -74.5,49.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16297 components: - pos: -74.5,48.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16298 components: - pos: -74.5,47.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16299 components: - pos: -74.5,46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16300 components: - pos: -74.5,45.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16301 components: - pos: -76.5,45.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16302 components: - pos: -76.5,46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16303 components: - pos: -76.5,47.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16304 components: - pos: -76.5,48.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16305 components: - pos: -76.5,49.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16306 components: - pos: -76.5,50.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16307 components: - pos: -76.5,51.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16308 components: - pos: -76.5,52.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16309 components: - pos: -78.5,52.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16310 components: - pos: -78.5,51.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16311 components: - pos: -78.5,50.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16312 components: - pos: -78.5,49.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16313 components: - pos: -78.5,48.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16314 components: - pos: -78.5,47.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16315 components: - pos: -78.5,46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16316 components: - pos: -78.5,45.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16317 components: - pos: -80.5,45.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16318 components: - pos: -80.5,46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16319 components: - pos: -80.5,47.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16320 components: - pos: -80.5,48.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16321 components: - pos: -80.5,49.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16322 components: - pos: -80.5,50.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16323 components: - pos: -80.5,51.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16324 components: - pos: -80.5,52.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16325 components: - pos: -82.5,45.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16326 components: - pos: -82.5,46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16327 components: - pos: -82.5,47.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16328 components: - pos: -82.5,48.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16329 components: - pos: -82.5,49.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16330 components: - pos: -82.5,50.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16331 components: - pos: -82.5,51.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16332 components: - pos: -82.5,52.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16333 components: - pos: -84.5,45.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16334 components: - pos: -84.5,46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16335 components: - pos: -84.5,47.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16336 components: - pos: -84.5,48.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16337 components: - pos: -84.5,49.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16338 components: - pos: -84.5,50.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16339 components: - pos: -84.5,51.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16340 components: - pos: -84.5,52.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16341 components: - pos: -86.5,52.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16342 components: - pos: -86.5,51.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16343 components: - pos: -86.5,50.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16344 components: - pos: -86.5,49.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16345 components: - pos: -86.5,48.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16346 components: - pos: -86.5,47.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16347 components: - pos: -86.5,46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16348 components: - pos: -86.5,45.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16349 components: - pos: -84.5,59.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16350 components: - pos: -84.5,58.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16351 components: - pos: -84.5,57.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16352 components: - pos: -84.5,56.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16357 components: - pos: -86.5,56.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16358 components: - pos: -86.5,57.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16362 components: - pos: -82.5,55.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16363 components: - pos: -82.5,56.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16364 components: - pos: -82.5,57.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16365 components: - pos: -86.5,58.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16366 components: - pos: -86.5,60.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16379 components: - pos: -86.5,61.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16380 components: - pos: -84.5,61.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16387 components: - pos: -86.5,54.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16388 components: - pos: -86.5,55.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16411 components: - pos: -72.5,61.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16413 components: - pos: -84.5,60.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16429 components: - pos: -86.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16430 components: - pos: -87.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16431 components: - pos: -88.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16432 components: - pos: -89.5,43.5 @@ -39380,330 +36574,236 @@ entities: - pos: -76.5,60.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16521 components: - pos: -76.5,59.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16522 components: - pos: -76.5,58.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16523 components: - pos: -76.5,57.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16524 components: - pos: -76.5,56.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16525 components: - pos: -76.5,55.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16526 components: - pos: -76.5,54.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16527 components: - pos: -74.5,54.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16528 components: - pos: -72.5,59.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16529 components: - pos: -72.5,58.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16530 components: - pos: -72.5,55.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16531 components: - pos: -72.5,54.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16628 components: - pos: -84.5,55.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16629 components: - pos: -84.5,54.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16630 components: - pos: -82.5,54.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16631 components: - pos: -82.5,58.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16636 components: - pos: -80.5,61.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16637 components: - pos: -80.5,60.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16641 components: - pos: -86.5,59.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16646 components: - pos: -82.5,59.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16647 components: - pos: -82.5,60.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16648 components: - pos: -82.5,61.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16660 components: - pos: -80.5,54.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16661 components: - pos: -78.5,54.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16662 components: - pos: -78.5,55.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16663 components: - pos: -78.5,56.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16664 components: - pos: -78.5,57.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16665 components: - pos: -78.5,58.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16666 components: - pos: -78.5,59.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16667 components: - pos: -78.5,60.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16670 components: - pos: -78.5,61.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16671 components: - pos: -76.5,61.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16672 components: - pos: -74.5,55.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16673 components: - pos: -80.5,59.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16674 components: - pos: -74.5,56.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16675 components: - pos: -74.5,57.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16676 components: - pos: -74.5,58.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16677 components: - pos: -74.5,59.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16678 components: - pos: -74.5,60.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16679 components: - pos: -74.5,61.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16680 components: - pos: -72.5,60.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16699 components: - pos: -80.5,57.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16700 components: - pos: -80.5,56.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16704 components: - pos: -80.5,55.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16711 components: - pos: -80.5,58.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16716 components: - pos: -72.5,57.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16717 components: - pos: -72.5,56.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 17095 components: - pos: 75.5,30.5 @@ -40059,15 +37159,11 @@ entities: - pos: -52.5,-59.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 17885 components: - pos: -53.5,-59.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 17886 components: - pos: -54.5,-59.5 @@ -40133,22 +37229,16 @@ entities: - pos: -54.5,-49.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 17914 components: - pos: -53.5,-49.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 17915 components: - pos: -52.5,-49.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 17916 components: - pos: -51.5,-49.5 @@ -40194,8 +37284,6 @@ entities: - pos: -52.5,-39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 17925 components: - pos: -50.5,-43.5 @@ -40206,232 +37294,166 @@ entities: - pos: -51.5,-39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 17927 components: - pos: -50.5,-39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 17928 components: - pos: -49.5,-39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 17929 components: - pos: -48.5,-39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 17930 components: - pos: -47.5,-39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 17931 components: - pos: -46.5,-39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 17932 components: - pos: -45.5,-39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 17933 components: - pos: -44.5,-39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 17934 components: - pos: -43.5,-39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 17935 components: - pos: -42.5,-39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 17936 components: - pos: -41.5,-39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 17937 components: - pos: -40.5,-39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18024 components: - pos: -39.5,-39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18025 components: - pos: -38.5,-39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18026 components: - pos: -37.5,-39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18027 components: - pos: -36.5,-39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18028 components: - pos: -35.5,-39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18029 components: - pos: -34.5,-39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18030 components: - pos: -33.5,-39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18031 components: - pos: -32.5,-39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18032 components: - pos: -29.5,-29.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18033 components: - pos: -29.5,-30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18034 components: - pos: -29.5,-31.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18035 components: - pos: -29.5,-32.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18036 components: - pos: -29.5,-33.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18037 components: - pos: -29.5,-34.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18038 components: - pos: -29.5,-35.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18039 components: - pos: -29.5,-36.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18040 components: - pos: -29.5,-37.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18041 components: - pos: -29.5,-38.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18042 components: - pos: -29.5,-39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18043 components: - pos: -30.5,-39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18044 components: - pos: -31.5,-39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18342 components: - pos: -52.5,-43.5 @@ -40447,36 +37469,26 @@ entities: - pos: -68.5,-62.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18798 components: - pos: -69.5,-62.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18799 components: - pos: -67.5,-62.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18800 components: - pos: -65.5,-62.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18801 components: - pos: -64.5,-62.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18802 components: - pos: -64.5,-61.5 @@ -40537,50 +37549,36 @@ entities: - pos: -43.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18928 components: - pos: -37.5,-24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18929 components: - pos: -38.5,-24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18930 components: - pos: -39.5,-24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18931 components: - pos: -40.5,-24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18932 components: - pos: -41.5,-24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18933 components: - pos: -45.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18934 components: - pos: -45.5,-25.5 @@ -40591,15 +37589,11 @@ entities: - pos: -44.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18938 components: - pos: -45.5,-26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18939 components: - pos: -45.5,-24.5 @@ -40630,8 +37624,6 @@ entities: - pos: -42.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 20155 components: - pos: -0.5,84.5 @@ -40647,15 +37639,11 @@ entities: - pos: -2.5,36.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 20340 components: - pos: 30.5,6.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 20404 components: - pos: -29.5,-40.5 @@ -40726,8 +37714,6 @@ entities: - pos: -22.5,-46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21289 components: - pos: -6.5,40.5 @@ -40753,43 +37739,31 @@ entities: - pos: -41.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21619 components: - pos: -40.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21620 components: - pos: -39.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21621 components: - pos: -38.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21622 components: - pos: -37.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21644 components: - pos: -42.5,-24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21950 components: - pos: 0.5,84.5 @@ -40815,57 +37789,41 @@ entities: - pos: -26.5,-60.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 22664 components: - pos: -26.5,-61.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 22665 components: - pos: -25.5,-61.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 22666 components: - pos: -25.5,-62.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 22667 components: - pos: -25.5,-63.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 22668 components: - pos: -26.5,-63.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 22669 components: - pos: -27.5,-63.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 22670 components: - pos: -27.5,-62.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - proto: CableHVStack entities: - uid: 1639 @@ -40910,8 +37868,6 @@ entities: - pos: -45.5,10.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3564 components: - pos: -42.5,19.5 @@ -40932,8 +37888,6 @@ entities: - pos: -42.5,16.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3568 components: - pos: -42.5,15.5 @@ -41004,8 +37958,6 @@ entities: - pos: -48.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3582 components: - pos: -44.5,10.5 @@ -41071,8 +38023,6 @@ entities: - pos: -43.5,-0.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3599 components: - pos: -43.5,7.5 @@ -41163,8 +38113,6 @@ entities: - pos: -30.5,11.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3618 components: - pos: -45.5,8.5 @@ -41205,8 +38153,6 @@ entities: - pos: -50.5,11.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3639 components: - pos: -47.5,8.5 @@ -41262,15 +38208,11 @@ entities: - pos: -37.5,16.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3798 components: - pos: -33.5,32.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3799 components: - pos: -34.5,32.5 @@ -41376,29 +38318,21 @@ entities: - pos: -46.5,24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3939 components: - pos: -46.5,23.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3940 components: - pos: -46.5,22.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3941 components: - pos: -46.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3958 components: - pos: -43.5,18.5 @@ -41409,15 +38343,11 @@ entities: - pos: -46.5,26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3961 components: - pos: -46.5,25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3962 components: - pos: -45.5,18.5 @@ -41428,29 +38358,21 @@ entities: - pos: -46.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3964 components: - pos: -46.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3965 components: - pos: -46.5,18.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3966 components: - pos: -46.5,27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3967 components: - pos: -44.5,18.5 @@ -41461,43 +38383,31 @@ entities: - pos: -46.5,28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3974 components: - pos: -46.5,29.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3975 components: - pos: -46.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3976 components: - pos: -46.5,31.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3977 components: - pos: -46.5,32.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 3978 components: - pos: -45.5,32.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4020 components: - pos: -33.5,15.5 @@ -41508,92 +38418,66 @@ entities: - pos: -32.5,15.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4022 components: - pos: -31.5,15.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4023 components: - pos: -31.5,16.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4024 components: - pos: -31.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4025 components: - pos: -31.5,18.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4026 components: - pos: -31.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4027 components: - pos: -30.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4028 components: - pos: -29.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4029 components: - pos: -28.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4030 components: - pos: -27.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4031 components: - pos: -26.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4032 components: - pos: -26.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4033 components: - pos: -26.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4076 components: - pos: -34.5,6.5 @@ -41764,232 +38648,166 @@ entities: - pos: -26.5,14.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4199 components: - pos: -25.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4200 components: - pos: -24.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4201 components: - pos: -23.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4202 components: - pos: -22.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4203 components: - pos: -21.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4204 components: - pos: -20.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4205 components: - pos: -19.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4206 components: - pos: -18.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4207 components: - pos: -17.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4208 components: - pos: -16.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4209 components: - pos: -15.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4210 components: - pos: -14.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4211 components: - pos: -13.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4212 components: - pos: -13.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4213 components: - pos: -12.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4214 components: - pos: -11.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4215 components: - pos: -9.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4216 components: - pos: -10.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4217 components: - pos: -8.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4218 components: - pos: -7.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4219 components: - pos: -6.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4220 components: - pos: -5.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4221 components: - pos: -5.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4222 components: - pos: -5.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4223 components: - pos: -5.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4224 components: - pos: -5.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4225 components: - pos: -5.5,18.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4226 components: - pos: -4.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4227 components: - pos: -2.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4228 components: - pos: -2.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4229 components: - pos: -2.5,18.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4230 components: - pos: -3.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4231 components: - pos: -5.5,16.5 @@ -42015,8 +38833,6 @@ entities: - pos: -6.5,13.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4310 components: - pos: -5.5,11.5 @@ -42032,50 +38848,36 @@ entities: - pos: -50.5,48.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4513 components: - pos: -50.5,47.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4514 components: - pos: -50.5,46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4515 components: - pos: -50.5,45.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4516 components: - pos: -50.5,44.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4517 components: - pos: -50.5,44.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4518 components: - pos: -50.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4519 components: - pos: -49.5,43.5 @@ -42131,15 +38933,11 @@ entities: - pos: -45.5,49.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4530 components: - pos: -47.5,59.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4531 components: - pos: -47.5,58.5 @@ -42195,8 +38993,6 @@ entities: - pos: -36.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 4542 components: - pos: -35.5,53.5 @@ -42337,57 +39133,41 @@ entities: - pos: -24.5,41.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5182 components: - pos: -24.5,42.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5183 components: - pos: -23.5,42.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5184 components: - pos: -22.5,42.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5185 components: - pos: -22.5,41.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5186 components: - pos: -22.5,40.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5187 components: - pos: -23.5,40.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5562 components: - pos: 12.5,42.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5563 components: - pos: 11.5,42.5 @@ -42408,15 +39188,11 @@ entities: - pos: 8.5,42.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5863 components: - pos: -22.5,39.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5864 components: - pos: -21.5,39.5 @@ -42512,8 +39288,6 @@ entities: - pos: -13.5,45.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 5883 components: - pos: -10.5,39.5 @@ -42644,8 +39418,6 @@ entities: - pos: 4.5,35.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 6225 components: - pos: -3.5,37.5 @@ -42666,92 +39438,66 @@ entities: - pos: -0.5,-11.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7805 components: - pos: -0.5,-12.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7806 components: - pos: -0.5,-13.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7807 components: - pos: -0.5,-14.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7808 components: - pos: -1.5,-14.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7809 components: - pos: -2.5,-14.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7810 components: - pos: -3.5,-14.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7811 components: - pos: -4.5,-14.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7812 components: - pos: -5.5,-14.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7813 components: - pos: -6.5,-14.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7814 components: - pos: -7.5,-14.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7815 components: - pos: -8.5,-14.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7816 components: - pos: -9.5,-14.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7817 components: - pos: -10.5,-14.5 @@ -42837,8 +39583,6 @@ entities: - pos: -20.5,-20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7834 components: - pos: -18.5,-13.5 @@ -42909,64 +39653,46 @@ entities: - pos: -15.5,-3.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7848 components: - pos: -2.5,-13.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7849 components: - pos: -2.5,-12.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7850 components: - pos: -2.5,-11.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7851 components: - pos: -2.5,-10.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7852 components: - pos: -2.5,-9.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7853 components: - pos: -2.5,-8.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7854 components: - pos: -2.5,-7.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7855 components: - pos: -2.5,-6.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7856 components: - pos: -2.5,-5.5 @@ -43007,22 +39733,16 @@ entities: - pos: -0.5,-0.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7864 components: - pos: -37.5,-1.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7865 components: - pos: -37.5,-2.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7866 components: - pos: -36.5,-2.5 @@ -43038,8 +39758,6 @@ entities: - pos: -35.5,-3.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7876 components: - pos: -31.5,-6.5 @@ -43120,8 +39838,6 @@ entities: - pos: -27.5,-17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7927 components: - pos: -33.5,-6.5 @@ -43147,120 +39863,86 @@ entities: - pos: 3.5,-37.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 9626 components: - pos: 32.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10269 components: - pos: -17.5,-51.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10270 components: - pos: -17.5,-52.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10271 components: - pos: -17.5,-53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10272 components: - pos: -17.5,-54.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10273 components: - pos: -17.5,-55.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10274 components: - pos: -17.5,-56.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10275 components: - pos: -17.5,-57.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10276 components: - pos: -17.5,-58.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10277 components: - pos: -17.5,-59.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10278 components: - pos: -17.5,-60.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10279 components: - pos: -17.5,-61.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10280 components: - pos: -17.5,-62.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10281 components: - pos: -17.5,-63.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10282 components: - pos: -17.5,-64.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10534 components: - pos: -16.5,-51.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10537 components: - pos: 3.5,-38.5 @@ -43316,8 +39998,6 @@ entities: - pos: -20.5,-38.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10548 components: - pos: -19.5,-38.5 @@ -43348,8 +40028,6 @@ entities: - pos: -14.5,-38.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10554 components: - pos: -13.5,-38.5 @@ -43435,8 +40113,6 @@ entities: - pos: 0.5,-31.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 10571 components: - pos: 2.5,-33.5 @@ -43492,8 +40168,6 @@ entities: - pos: 9.5,-30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11238 components: - pos: -29.5,-6.5 @@ -43504,8 +40178,6 @@ entities: - pos: 10.5,-16.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11535 components: - pos: 11.5,-16.5 @@ -43631,57 +40303,41 @@ entities: - pos: 12.5,6.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11560 components: - pos: 12.5,7.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11561 components: - pos: 13.5,7.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11562 components: - pos: 14.5,7.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11563 components: - pos: 15.5,7.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11564 components: - pos: 15.5,6.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11565 components: - pos: 15.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11566 components: - pos: 15.5,4.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11712 components: - pos: 23.5,-1.5 @@ -43742,8 +40398,6 @@ entities: - pos: 33.5,-0.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11826 components: - pos: 33.5,0.5 @@ -43754,134 +40408,96 @@ entities: - pos: 33.5,1.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11828 components: - pos: 33.5,2.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11829 components: - pos: 33.5,3.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11830 components: - pos: 33.5,4.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11835 components: - pos: 19.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11836 components: - pos: 16.5,7.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11837 components: - pos: 17.5,7.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11838 components: - pos: 17.5,6.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11839 components: - pos: 17.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11840 components: - pos: 18.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11843 components: - pos: 32.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11844 components: - pos: 30.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11845 components: - pos: 29.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11846 components: - pos: 27.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11847 components: - pos: 25.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11848 components: - pos: 23.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11849 components: - pos: 22.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11850 components: - pos: 21.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11851 components: - pos: 20.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11852 components: - pos: 21.5,-7.5 @@ -43912,8 +40528,6 @@ entities: - pos: 21.5,-12.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 11940 components: - pos: 23.5,-2.5 @@ -43929,50 +40543,36 @@ entities: - pos: 23.5,-0.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12185 components: - pos: 33.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12186 components: - pos: 31.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12187 components: - pos: 28.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12188 components: - pos: 26.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12189 components: - pos: 24.5,5.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12315 components: - pos: 12.5,42.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12316 components: - pos: 11.5,42.5 @@ -43983,29 +40583,21 @@ entities: - pos: 19.5,31.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12318 components: - pos: 19.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12319 components: - pos: 19.5,29.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12320 components: - pos: 19.5,28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12860 components: - pos: 21.5,12.5 @@ -44021,106 +40613,76 @@ entities: - pos: 35.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13100 components: - pos: 36.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13101 components: - pos: 37.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13102 components: - pos: 38.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13103 components: - pos: 38.5,18.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13104 components: - pos: 38.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13105 components: - pos: 37.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13106 components: - pos: 36.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13107 components: - pos: 35.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13108 components: - pos: 35.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13109 components: - pos: 35.5,21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13110 components: - pos: 35.5,22.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13111 components: - pos: 35.5,23.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13112 components: - pos: 35.5,24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13113 components: - pos: 35.5,25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13114 components: - pos: 34.5,25.5 @@ -44231,8 +40793,6 @@ entities: - pos: 20.5,24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13136 components: - pos: 22.5,20.5 @@ -44393,8 +40953,6 @@ entities: - pos: 32.5,16.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13211 components: - pos: 19.5,12.5 @@ -44405,8 +40963,6 @@ entities: - pos: 18.5,13.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13307 components: - pos: 26.5,20.5 @@ -44427,99 +40983,71 @@ entities: - pos: 15.5,50.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13448 components: - pos: 15.5,54.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13724 components: - pos: 16.5,54.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 13727 components: - pos: 15.5,55.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14542 components: - pos: 39.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14543 components: - pos: 40.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14544 components: - pos: 41.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14545 components: - pos: 42.5,17.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14546 components: - pos: 42.5,18.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14547 components: - pos: 42.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14548 components: - pos: 43.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14549 components: - pos: 44.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14550 components: - pos: 45.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14551 components: - pos: 46.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14552 components: - pos: 47.5,19.5 @@ -44530,267 +41058,191 @@ entities: - pos: 48.5,19.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14554 components: - pos: 48.5,20.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14731 components: - pos: 16.5,50.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14732 components: - pos: 16.5,51.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14733 components: - pos: 16.5,52.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14734 components: - pos: 16.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14739 components: - pos: 16.5,49.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14740 components: - pos: 16.5,48.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14741 components: - pos: 17.5,48.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14742 components: - pos: 18.5,48.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14743 components: - pos: 19.5,48.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14744 components: - pos: 19.5,49.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14745 components: - pos: 19.5,50.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14746 components: - pos: 19.5,51.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14747 components: - pos: 19.5,52.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14748 components: - pos: 19.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14749 components: - pos: 20.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14750 components: - pos: 21.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14751 components: - pos: 22.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14752 components: - pos: 23.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14753 components: - pos: 24.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14754 components: - pos: 25.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14755 components: - pos: 26.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14756 components: - pos: 27.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14757 components: - pos: 28.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14758 components: - pos: 29.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14759 components: - pos: 30.5,53.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14760 components: - pos: 30.5,52.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14761 components: - pos: 30.5,51.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14762 components: - pos: 30.5,50.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14763 components: - pos: 30.5,48.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14764 components: - pos: 30.5,49.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14765 components: - pos: 30.5,47.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14766 components: - pos: 30.5,46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14767 components: - pos: 30.5,45.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14768 components: - pos: 31.5,45.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14769 components: - pos: 32.5,45.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 14770 components: - pos: 32.5,44.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 16128 components: - pos: 23.5,-4.5 @@ -44811,22 +41263,16 @@ entities: - pos: -79.5,-57.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18859 components: - pos: -52.5,-59.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18860 components: - pos: -53.5,-59.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18861 components: - pos: -54.5,-59.5 @@ -45057,8 +41503,6 @@ entities: - pos: -65.5,-47.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18907 components: - pos: -67.5,-47.5 @@ -45134,15 +41578,11 @@ entities: - pos: -76.5,-42.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18936 components: - pos: -41.5,-24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18940 components: - pos: -44.5,-23.5 @@ -45158,8 +41598,6 @@ entities: - pos: -43.5,-22.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18943 components: - pos: -45.5,-23.5 @@ -45280,8 +41718,6 @@ entities: - pos: -59.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18967 components: - pos: -59.5,-27.5 @@ -45297,8 +41733,6 @@ entities: - pos: -59.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 19033 components: - pos: -61.5,-28.5 @@ -45344,29 +41778,21 @@ entities: - pos: 0.5,85.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 20338 components: - pos: -2.5,36.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 20341 components: - pos: 30.5,6.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 20418 components: - pos: -22.5,-46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 20419 components: - pos: -23.5,-46.5 @@ -45457,22 +41883,16 @@ entities: - pos: -47.5,38.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 20898 components: - pos: -46.5,38.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 20899 components: - pos: -48.5,38.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 20900 components: - pos: -43.5,43.5 @@ -45503,22 +41923,16 @@ entities: - pos: -43.5,38.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 20906 components: - pos: -44.5,38.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 20907 components: - pos: -42.5,38.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 20908 components: - pos: -39.5,44.5 @@ -45554,22 +41968,16 @@ entities: - pos: -39.5,38.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 20915 components: - pos: -40.5,38.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 20916 components: - pos: -38.5,38.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 20917 components: - pos: -35.5,43.5 @@ -45585,8 +41993,6 @@ entities: - pos: -35.5,41.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 20920 components: - pos: -35.5,40.5 @@ -45602,85 +42008,61 @@ entities: - pos: -35.5,38.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 20923 components: - pos: -13.5,46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 20924 components: - pos: -13.5,47.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 20925 components: - pos: -12.5,47.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 20926 components: - pos: -11.5,47.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 20927 components: - pos: -10.5,47.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 20928 components: - pos: -9.5,47.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 20929 components: - pos: -8.5,47.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 20930 components: - pos: -7.5,47.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 20931 components: - pos: -6.5,47.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 20932 components: - pos: -5.5,47.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 20933 components: - pos: -5.5,46.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 20934 components: - pos: -14.5,40.5 @@ -45706,15 +42088,11 @@ entities: - pos: -14.5,44.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 20939 components: - pos: -15.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 20940 components: - pos: -4.5,40.5 @@ -45740,15 +42118,11 @@ entities: - pos: -4.5,44.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 20945 components: - pos: -3.5,43.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 20946 components: - pos: 0.5,31.5 @@ -45759,8 +42133,6 @@ entities: - pos: 0.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 20948 components: - pos: 3.5,32.5 @@ -45771,8 +42143,6 @@ entities: - pos: 3.5,30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 20950 components: - pos: 3.5,31.5 @@ -45783,162 +42153,116 @@ entities: - pos: 14.5,50.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21036 components: - pos: 13.5,50.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21037 components: - pos: 12.5,50.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21038 components: - pos: 12.5,51.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21623 components: - pos: -42.5,-24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21624 components: - pos: -40.5,-24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21625 components: - pos: -39.5,-24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21626 components: - pos: -38.5,-24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21627 components: - pos: -37.5,-24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21628 components: - pos: -36.5,-24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21629 components: - pos: -36.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21630 components: - pos: -36.5,-26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21631 components: - pos: -36.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21632 components: - pos: -37.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21633 components: - pos: -38.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21634 components: - pos: -39.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21635 components: - pos: -40.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21636 components: - pos: -41.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21637 components: - pos: -42.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21638 components: - pos: -43.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21639 components: - pos: -44.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21640 components: - pos: -45.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21641 components: - pos: -45.5,-26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21642 components: - pos: -45.5,-25.5 @@ -46004,8 +42328,6 @@ entities: - pos: 41.5,10.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 22248 components: - pos: -5.5,10.5 @@ -46056,36 +42378,26 @@ entities: - pos: 3.5,10.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 22674 components: - pos: -27.5,-62.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 22675 components: - pos: -27.5,-61.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 22676 components: - pos: -26.5,-61.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 22677 components: - pos: -26.5,-60.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 22678 components: - pos: -26.5,-59.5 @@ -46126,8 +42438,6 @@ entities: - pos: -28.5,-60.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 22686 components: - pos: -30.5,-60.5 @@ -46173,85 +42483,61 @@ entities: - pos: -33.5,-57.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 22695 components: - pos: -32.5,-59.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 22696 components: - pos: -32.5,-58.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 22697 components: - pos: -32.5,-57.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 22698 components: - pos: -32.5,-61.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 22699 components: - pos: -32.5,-62.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 22700 components: - pos: -32.5,-63.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 22701 components: - pos: -31.5,-59.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 22702 components: - pos: -33.5,-59.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 22703 components: - pos: -33.5,-61.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 22704 components: - pos: -31.5,-61.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 22705 components: - pos: -30.5,-61.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - proto: CableMVStack entities: - uid: 1638 @@ -58325,14 +54611,12 @@ entities: entities: - uid: 6584 components: - - anchored: False - pos: -39.5,49.5 + - pos: -39.5,49.5 parent: 30 type: Transform - uid: 6585 components: - - anchored: False - pos: -30.5,58.5 + - pos: -30.5,58.5 parent: 30 type: Transform - proto: DeskBell @@ -64253,8 +60537,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 19637 components: @@ -64263,8 +60545,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 19638 components: @@ -64273,8 +60553,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 19639 components: @@ -64284,8 +60562,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 19640 components: @@ -64295,8 +60571,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 19654 components: @@ -64306,8 +60580,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 19657 components: @@ -64317,8 +60589,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 19661 components: @@ -64328,8 +60598,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 19678 components: @@ -64339,8 +60607,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 19679 components: @@ -64349,8 +60615,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 19681 components: @@ -64360,8 +60624,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 19682 components: @@ -64371,8 +60633,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 19769 components: @@ -64382,8 +60642,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 19836 components: @@ -64393,8 +60651,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 19840 components: @@ -64404,8 +60660,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 19841 components: @@ -64414,8 +60668,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 19843 components: @@ -64425,8 +60677,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20372 components: @@ -64436,8 +60686,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20373 components: @@ -64447,8 +60695,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20374 components: @@ -64458,8 +60704,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20375 components: @@ -64468,8 +60712,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21006 components: @@ -64479,8 +60721,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21049 components: @@ -64489,8 +60729,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21202 components: @@ -64500,8 +60738,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21203 components: @@ -64510,8 +60746,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21204 components: @@ -64521,8 +60755,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21205 components: @@ -64531,8 +60763,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21215 components: @@ -64542,8 +60772,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21261 components: @@ -64553,8 +60781,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21331 components: @@ -64564,8 +60790,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21332 components: @@ -64575,8 +60799,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21375 components: @@ -64585,8 +60807,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21377 components: @@ -64595,8 +60815,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21378 components: @@ -64606,8 +60824,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21379 components: @@ -64617,8 +60833,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21380 components: @@ -64628,8 +60842,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21382 components: @@ -64639,8 +60851,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21385 components: @@ -64650,8 +60860,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21386 components: @@ -64661,8 +60869,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21387 components: @@ -64672,8 +60878,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21388 components: @@ -64682,8 +60886,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21389 components: @@ -64693,8 +60895,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21390 components: @@ -64703,8 +60903,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21391 components: @@ -64713,8 +60911,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21437 components: @@ -64724,8 +60920,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21438 components: @@ -64734,8 +60928,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - proto: EmergencyMedipen entities: @@ -69014,8 +65206,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6867 components: - rot: 1.5707963267948966 rad @@ -69103,8 +65293,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7224 components: - rot: 3.141592653589793 rad @@ -69113,8 +65301,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7225 components: - pos: -4.5,-48.5 @@ -69122,8 +65308,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7230 components: - pos: -9.5,-53.5 @@ -69131,8 +65315,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7294 components: - rot: 1.5707963267948966 rad @@ -69216,8 +65398,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7672 components: - rot: 3.141592653589793 rad @@ -69226,8 +65406,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7870 components: - rot: -1.5707963267948966 rad @@ -69258,8 +65436,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8253 components: - pos: -5.5,-49.5 @@ -69267,8 +65443,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8264 components: - rot: 3.141592653589793 rad @@ -69277,72 +65451,54 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8576 components: - rot: 3.141592653589793 rad pos: 21.5,-38.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8707 components: - rot: -1.5707963267948966 rad pos: 27.5,-23.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8708 components: - rot: -1.5707963267948966 rad pos: 27.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8709 components: - rot: -1.5707963267948966 rad pos: 27.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8710 components: - rot: -1.5707963267948966 rad pos: 27.5,-29.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8711 components: - rot: -1.5707963267948966 rad pos: 27.5,-31.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8712 components: - rot: -1.5707963267948966 rad pos: 27.5,-33.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8713 components: - rot: -1.5707963267948966 rad pos: 27.5,-35.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8784 components: - rot: -1.5707963267948966 rad @@ -69351,8 +65507,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8786 components: - rot: 1.5707963267948966 rad @@ -69361,8 +65515,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8868 components: - pos: 7.5,-3.5 @@ -69423,8 +65575,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9067 components: - rot: -1.5707963267948966 rad @@ -69433,8 +65583,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9262 components: - pos: 21.5,-16.5 @@ -69457,8 +65605,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9683 components: - rot: 3.141592653589793 rad @@ -69467,8 +65613,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9750 components: - rot: 3.141592653589793 rad @@ -69508,8 +65652,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9870 components: - pos: 3.5,-49.5 @@ -69517,8 +65659,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9883 components: - rot: -1.5707963267948966 rad @@ -69527,8 +65667,6 @@ entities: type: Transform - color: '#EB9834FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9898 components: - rot: 1.5707963267948966 rad @@ -69537,8 +65675,6 @@ entities: type: Transform - color: '#EB9834FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9899 components: - rot: -1.5707963267948966 rad @@ -69547,8 +65683,6 @@ entities: type: Transform - color: '#EB9834FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9900 components: - rot: 1.5707963267948966 rad @@ -69557,8 +65691,6 @@ entities: type: Transform - color: '#EB9834FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9901 components: - rot: -1.5707963267948966 rad @@ -69567,8 +65699,6 @@ entities: type: Transform - color: '#EB9834FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9983 components: - rot: -1.5707963267948966 rad @@ -69776,8 +65906,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12909 components: - rot: 1.5707963267948966 rad @@ -69786,16 +65914,12 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12926 components: - rot: 3.141592653589793 rad pos: 35.5,9.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12956 components: - rot: 3.141592653589793 rad @@ -69897,8 +66021,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15452 components: - rot: -1.5707963267948966 rad @@ -69915,8 +66037,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15890 components: - rot: 3.141592653589793 rad @@ -69925,8 +66045,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15963 components: - rot: -1.5707963267948966 rad @@ -69935,8 +66053,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16099 components: - rot: -1.5707963267948966 rad @@ -70101,8 +66217,6 @@ entities: pos: -66.5,-64.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 21262 components: - rot: -1.5707963267948966 rad @@ -70118,8 +66232,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21270 components: - rot: -1.5707963267948966 rad @@ -70128,8 +66240,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21986 components: - rot: -1.5707963267948966 rad @@ -70138,8 +66248,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22264 components: - rot: 3.141592653589793 rad @@ -70148,8 +66256,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22266 components: - pos: 43.5,16.5 @@ -70157,8 +66263,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22795 components: - rot: -1.5707963267948966 rad @@ -70175,8 +66279,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - proto: GasPipeFourway entities: - uid: 948 @@ -70429,8 +66531,6 @@ entities: - pos: -9.5,-56.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 880 components: - rot: -1.5707963267948966 rad @@ -70779,8 +66879,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2476 components: - pos: -49.5,34.5 @@ -70816,8 +66914,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2481 components: - pos: -50.5,33.5 @@ -70860,8 +66956,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2489 components: - pos: -42.5,33.5 @@ -70979,8 +67073,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2518 components: - rot: 3.141592653589793 rad @@ -70989,8 +67081,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2522 components: - rot: 3.141592653589793 rad @@ -71079,8 +67169,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2539 components: - rot: -1.5707963267948966 rad @@ -71243,8 +67331,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2567 components: - rot: -1.5707963267948966 rad @@ -71285,8 +67371,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2572 components: - rot: -1.5707963267948966 rad @@ -71374,8 +67458,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2603 components: - pos: -48.5,43.5 @@ -71397,8 +67479,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2606 components: - pos: -44.5,43.5 @@ -71420,8 +67500,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2609 components: - pos: -42.5,41.5 @@ -71429,8 +67507,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2610 components: - pos: -40.5,43.5 @@ -71452,8 +67528,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2613 components: - pos: -38.5,41.5 @@ -71461,8 +67535,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2614 components: - rot: -1.5707963267948966 rad @@ -71972,8 +68044,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2716 components: - pos: -51.5,59.5 @@ -71981,8 +68051,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2719 components: - pos: -47.5,61.5 @@ -72004,8 +68072,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2722 components: - pos: -51.5,63.5 @@ -72020,8 +68086,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2724 components: - pos: -47.5,63.5 @@ -72077,8 +68141,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2739 components: - rot: 1.5707963267948966 rad @@ -72095,8 +68157,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2747 components: - pos: -36.5,30.5 @@ -73917,8 +69977,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3044 components: - pos: -30.5,23.5 @@ -73982,8 +70040,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3057 components: - pos: -22.5,24.5 @@ -74012,8 +70068,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3061 components: - pos: -21.5,23.5 @@ -74045,8 +70099,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3073 components: - rot: -1.5707963267948966 rad @@ -74207,8 +70259,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3104 components: - rot: 3.141592653589793 rad @@ -74241,8 +70291,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3108 components: - rot: 3.141592653589793 rad @@ -74694,8 +70742,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3222 components: - rot: 1.5707963267948966 rad @@ -74864,8 +70910,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3250 components: - rot: 3.141592653589793 rad @@ -74874,8 +70918,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3251 components: - rot: 3.141592653589793 rad @@ -75057,8 +71099,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3288 components: - rot: -1.5707963267948966 rad @@ -75067,8 +71107,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3289 components: - rot: -1.5707963267948966 rad @@ -75077,8 +71115,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3290 components: - rot: -1.5707963267948966 rad @@ -75087,8 +71123,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3291 components: - rot: 3.141592653589793 rad @@ -75137,8 +71171,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3298 components: - rot: 1.5707963267948966 rad @@ -75147,8 +71179,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3299 components: - rot: 1.5707963267948966 rad @@ -75157,8 +71187,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3300 components: - rot: 1.5707963267948966 rad @@ -75167,8 +71195,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3301 components: - pos: -57.5,22.5 @@ -75437,8 +71463,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3355 components: - rot: 3.141592653589793 rad @@ -75515,8 +71539,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3370 components: - rot: 3.141592653589793 rad @@ -75565,8 +71587,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3382 components: - rot: 1.5707963267948966 rad @@ -75668,8 +71688,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3402 components: - rot: -1.5707963267948966 rad @@ -75870,8 +71888,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3441 components: - rot: 1.5707963267948966 rad @@ -75896,8 +71912,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3445 components: - rot: 1.5707963267948966 rad @@ -75970,8 +71984,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3455 components: - rot: 1.5707963267948966 rad @@ -76044,8 +72056,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3468 components: - rot: 1.5707963267948966 rad @@ -76070,8 +72080,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3472 components: - rot: 1.5707963267948966 rad @@ -76108,8 +72116,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3477 components: - pos: -9.5,16.5 @@ -76195,8 +72201,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5014 components: - pos: -19.5,34.5 @@ -76760,8 +72764,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6208 components: - pos: -11.5,37.5 @@ -76769,8 +72771,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6209 components: - pos: -7.5,40.5 @@ -76792,8 +72792,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6212 components: - pos: -7.5,37.5 @@ -76801,8 +72799,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6215 components: - rot: 1.5707963267948966 rad @@ -76843,8 +72839,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6220 components: - rot: 1.5707963267948966 rad @@ -76993,8 +72987,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6249 components: - rot: -1.5707963267948966 rad @@ -77027,8 +73019,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6258 components: - rot: -1.5707963267948966 rad @@ -77181,15 +73171,11 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7103 components: - pos: -11.5,-56.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7216 components: - pos: -27.5,-8.5 @@ -77205,8 +73191,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7226 components: - rot: -1.5707963267948966 rad @@ -77215,8 +73199,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7227 components: - rot: -1.5707963267948966 rad @@ -77225,8 +73207,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7229 components: - rot: -1.5707963267948966 rad @@ -77235,8 +73215,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7292 components: - rot: 1.5707963267948966 rad @@ -77538,8 +73516,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7358 components: - rot: 1.5707963267948966 rad @@ -77734,8 +73710,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7401 components: - pos: -19.5,-2.5 @@ -77764,8 +73738,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7409 components: - pos: -34.5,0.5 @@ -77814,8 +73786,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7435 components: - rot: 1.5707963267948966 rad @@ -77838,8 +73808,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7459 components: - pos: -28.5,-10.5 @@ -77875,8 +73843,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7492 components: - pos: -28.5,-17.5 @@ -77915,8 +73881,6 @@ entities: - pos: -30.5,-21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7502 components: - pos: -30.5,-22.5 @@ -77945,8 +73909,6 @@ entities: pos: -34.5,-21.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7509 components: - rot: 3.141592653589793 rad @@ -77975,8 +73937,6 @@ entities: - pos: -27.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 7528 components: - rot: 3.141592653589793 rad @@ -78081,8 +74041,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7547 components: - rot: 1.5707963267948966 rad @@ -78107,8 +74065,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7551 components: - rot: 1.5707963267948966 rad @@ -78276,8 +74232,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7590 components: - rot: -1.5707963267948966 rad @@ -78286,8 +74240,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7591 components: - rot: -1.5707963267948966 rad @@ -78328,8 +74280,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7596 components: - rot: -1.5707963267948966 rad @@ -78394,8 +74344,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7607 components: - rot: -1.5707963267948966 rad @@ -78426,8 +74374,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7670 components: - rot: 3.141592653589793 rad @@ -78436,8 +74382,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7671 components: - rot: 3.141592653589793 rad @@ -78446,8 +74390,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7755 components: - rot: 3.141592653589793 rad @@ -78489,8 +74431,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7926 components: - rot: 1.5707963267948966 rad @@ -78586,8 +74526,6 @@ entities: pos: -36.5,-7.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8362 components: - rot: 1.5707963267948966 rad @@ -78606,8 +74544,6 @@ entities: pos: 21.5,-37.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8544 components: - rot: -1.5707963267948966 rad @@ -78622,456 +74558,342 @@ entities: pos: 22.5,-38.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8714 components: - rot: -1.5707963267948966 rad pos: 26.5,-35.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8715 components: - rot: -1.5707963267948966 rad pos: 25.5,-35.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8716 components: - rot: -1.5707963267948966 rad pos: 24.5,-35.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8717 components: - rot: -1.5707963267948966 rad pos: 23.5,-35.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8718 components: - rot: -1.5707963267948966 rad pos: 22.5,-35.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8719 components: - rot: -1.5707963267948966 rad pos: 26.5,-33.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8720 components: - rot: -1.5707963267948966 rad pos: 25.5,-33.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8721 components: - rot: -1.5707963267948966 rad pos: 24.5,-33.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8722 components: - rot: -1.5707963267948966 rad pos: 23.5,-33.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8723 components: - rot: -1.5707963267948966 rad pos: 22.5,-33.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8724 components: - rot: -1.5707963267948966 rad pos: 26.5,-31.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8725 components: - rot: -1.5707963267948966 rad pos: 25.5,-31.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8726 components: - rot: -1.5707963267948966 rad pos: 24.5,-31.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8727 components: - rot: -1.5707963267948966 rad pos: 23.5,-31.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8728 components: - rot: -1.5707963267948966 rad pos: 22.5,-31.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8729 components: - rot: -1.5707963267948966 rad pos: 26.5,-29.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8730 components: - rot: -1.5707963267948966 rad pos: 25.5,-29.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8731 components: - rot: -1.5707963267948966 rad pos: 24.5,-29.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8732 components: - rot: -1.5707963267948966 rad pos: 23.5,-29.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8733 components: - rot: -1.5707963267948966 rad pos: 22.5,-29.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8734 components: - rot: -1.5707963267948966 rad pos: 26.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8735 components: - rot: -1.5707963267948966 rad pos: 25.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8736 components: - rot: -1.5707963267948966 rad pos: 24.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8737 components: - rot: -1.5707963267948966 rad pos: 23.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8738 components: - rot: -1.5707963267948966 rad pos: 22.5,-27.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8739 components: - rot: -1.5707963267948966 rad pos: 26.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8740 components: - rot: -1.5707963267948966 rad pos: 25.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8741 components: - rot: -1.5707963267948966 rad pos: 24.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8742 components: - rot: -1.5707963267948966 rad pos: 23.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8743 components: - rot: -1.5707963267948966 rad pos: 22.5,-25.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8744 components: - rot: -1.5707963267948966 rad pos: 26.5,-23.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8745 components: - rot: -1.5707963267948966 rad pos: 25.5,-23.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8746 components: - rot: -1.5707963267948966 rad pos: 24.5,-23.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8747 components: - rot: -1.5707963267948966 rad pos: 23.5,-23.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8748 components: - rot: -1.5707963267948966 rad pos: 22.5,-23.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8749 components: - rot: -1.5707963267948966 rad pos: 24.5,-22.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8750 components: - rot: -1.5707963267948966 rad pos: 23.5,-22.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8751 components: - rot: -1.5707963267948966 rad pos: 22.5,-22.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8752 components: - rot: -1.5707963267948966 rad pos: 24.5,-24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8753 components: - rot: -1.5707963267948966 rad pos: 23.5,-24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8754 components: - rot: -1.5707963267948966 rad pos: 22.5,-24.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8755 components: - rot: -1.5707963267948966 rad pos: 24.5,-26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8756 components: - rot: -1.5707963267948966 rad pos: 23.5,-26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8757 components: - rot: -1.5707963267948966 rad pos: 22.5,-26.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8758 components: - rot: -1.5707963267948966 rad pos: 24.5,-28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8759 components: - rot: -1.5707963267948966 rad pos: 23.5,-28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8760 components: - rot: -1.5707963267948966 rad pos: 22.5,-28.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8761 components: - rot: -1.5707963267948966 rad pos: 24.5,-30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8762 components: - rot: -1.5707963267948966 rad pos: 23.5,-30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8763 components: - rot: -1.5707963267948966 rad pos: 22.5,-30.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8764 components: - rot: -1.5707963267948966 rad pos: 24.5,-32.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8765 components: - rot: -1.5707963267948966 rad pos: 23.5,-32.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8766 components: - rot: -1.5707963267948966 rad pos: 22.5,-32.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8767 components: - rot: -1.5707963267948966 rad pos: 24.5,-34.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8768 components: - rot: -1.5707963267948966 rad pos: 23.5,-34.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8769 components: - rot: -1.5707963267948966 rad pos: 22.5,-34.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 8777 components: - rot: -1.5707963267948966 rad @@ -79112,8 +74934,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8785 components: - rot: 3.141592653589793 rad @@ -79122,8 +74942,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8787 components: - rot: 1.5707963267948966 rad @@ -79132,8 +74950,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8788 components: - rot: 1.5707963267948966 rad @@ -79142,8 +74958,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8789 components: - rot: 1.5707963267948966 rad @@ -79152,8 +74966,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8794 components: - rot: -1.5707963267948966 rad @@ -79178,8 +74990,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8799 components: - rot: -1.5707963267948966 rad @@ -79188,8 +74998,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8805 components: - rot: 1.5707963267948966 rad @@ -79203,8 +75011,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8839 components: - rot: -1.5707963267948966 rad @@ -79237,8 +75043,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8843 components: - rot: -1.5707963267948966 rad @@ -79380,8 +75184,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8878 components: - rot: 1.5707963267948966 rad @@ -79729,8 +75531,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8930 components: - pos: 7.5,-26.5 @@ -79754,8 +75554,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8933 components: - pos: 7.5,-22.5 @@ -79763,8 +75561,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8934 components: - pos: 7.5,-23.5 @@ -80042,24 +75838,18 @@ entities: pos: 16.5,-36.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 9016 components: - rot: -1.5707963267948966 rad pos: 15.5,-36.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 9017 components: - rot: -1.5707963267948966 rad pos: 14.5,-36.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 9020 components: - rot: -1.5707963267948966 rad @@ -80068,8 +75858,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9021 components: - rot: -1.5707963267948966 rad @@ -80078,8 +75866,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9022 components: - rot: -1.5707963267948966 rad @@ -80088,8 +75874,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9062 components: - rot: -1.5707963267948966 rad @@ -80098,8 +75882,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9065 components: - rot: -1.5707963267948966 rad @@ -80108,8 +75890,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9075 components: - pos: 6.5,-37.5 @@ -80117,8 +75897,6 @@ entities: type: Transform - color: '#EB9834FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9261 components: - pos: 7.5,-21.5 @@ -80142,8 +75920,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9660 components: - rot: 1.5707963267948966 rad @@ -80152,8 +75928,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9702 components: - rot: 3.141592653589793 rad @@ -80162,8 +75936,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9729 components: - rot: 1.5707963267948966 rad @@ -80439,8 +76211,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9776 components: - pos: 0.5,-31.5 @@ -80448,8 +76218,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9777 components: - pos: 0.5,-32.5 @@ -80478,8 +76246,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9782 components: - pos: 0.5,-37.5 @@ -80522,8 +76288,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9788 components: - pos: 2.5,-37.5 @@ -80561,8 +76325,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9871 components: - rot: -1.5707963267948966 rad @@ -80571,8 +76333,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9872 components: - rot: -1.5707963267948966 rad @@ -80605,8 +76365,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9877 components: - rot: 3.141592653589793 rad @@ -80615,8 +76373,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9878 components: - rot: 1.5707963267948966 rad @@ -80625,8 +76381,6 @@ entities: type: Transform - color: '#EB9834FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9879 components: - rot: 1.5707963267948966 rad @@ -80651,8 +76405,6 @@ entities: type: Transform - color: '#EB9834FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9882 components: - rot: 1.5707963267948966 rad @@ -80661,8 +76413,6 @@ entities: type: Transform - color: '#EB9834FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9884 components: - rot: 3.141592653589793 rad @@ -80671,8 +76421,6 @@ entities: type: Transform - color: '#EB9834FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9885 components: - rot: 3.141592653589793 rad @@ -80681,8 +76429,6 @@ entities: type: Transform - color: '#EB9834FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9886 components: - rot: 3.141592653589793 rad @@ -80691,8 +76437,6 @@ entities: type: Transform - color: '#EB9834FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9887 components: - rot: 3.141592653589793 rad @@ -80701,8 +76445,6 @@ entities: type: Transform - color: '#EB9834FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9888 components: - rot: 3.141592653589793 rad @@ -80711,8 +76453,6 @@ entities: type: Transform - color: '#EB9834FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9889 components: - rot: 3.141592653589793 rad @@ -80721,8 +76461,6 @@ entities: type: Transform - color: '#EB9834FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9890 components: - rot: 3.141592653589793 rad @@ -80731,8 +76469,6 @@ entities: type: Transform - color: '#EB9834FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9891 components: - rot: 3.141592653589793 rad @@ -80741,8 +76477,6 @@ entities: type: Transform - color: '#EB9834FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9892 components: - rot: 3.141592653589793 rad @@ -80751,8 +76485,6 @@ entities: type: Transform - color: '#EB9834FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9893 components: - rot: 3.141592653589793 rad @@ -80761,8 +76493,6 @@ entities: type: Transform - color: '#EB9834FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9894 components: - rot: 3.141592653589793 rad @@ -80771,8 +76501,6 @@ entities: type: Transform - color: '#EB9834FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9895 components: - rot: 3.141592653589793 rad @@ -80781,8 +76509,6 @@ entities: type: Transform - color: '#EB9834FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9896 components: - rot: 3.141592653589793 rad @@ -80791,8 +76517,6 @@ entities: type: Transform - color: '#EB9834FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9897 components: - rot: 3.141592653589793 rad @@ -80801,8 +76525,6 @@ entities: type: Transform - color: '#EB9834FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9955 components: - rot: 1.5707963267948966 rad @@ -80816,8 +76538,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9982 components: - pos: 5.5,-21.5 @@ -80980,8 +76700,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11100 components: - rot: -1.5707963267948966 rad @@ -81036,8 +76754,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11110 components: - pos: -8.5,-36.5 @@ -81066,8 +76782,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11116 components: - pos: 2.5,-40.5 @@ -81290,8 +77004,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11156 components: - pos: -6.5,-42.5 @@ -81299,8 +77011,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11157 components: - pos: -6.5,-40.5 @@ -81329,8 +77039,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11161 components: - pos: -6.5,-36.5 @@ -81362,8 +77070,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11171 components: - rot: -1.5707963267948966 rad @@ -81484,8 +77190,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11205 components: - rot: 3.141592653589793 rad @@ -81502,8 +77206,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11207 components: - rot: 3.141592653589793 rad @@ -81708,8 +77410,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11902 components: - rot: -1.5707963267948966 rad @@ -81726,8 +77426,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11905 components: - rot: -1.5707963267948966 rad @@ -81752,8 +77450,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11908 components: - rot: -1.5707963267948966 rad @@ -81778,8 +77474,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11911 components: - rot: -1.5707963267948966 rad @@ -81812,8 +77506,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11915 components: - rot: -1.5707963267948966 rad @@ -81869,8 +77561,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11928 components: - rot: -1.5707963267948966 rad @@ -81954,8 +77644,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11956 components: - rot: -1.5707963267948966 rad @@ -82064,8 +77752,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11973 components: - pos: 21.5,0.5 @@ -82220,8 +77906,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12016 components: - rot: -1.5707963267948966 rad @@ -82261,8 +77945,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12036 components: - rot: 3.141592653589793 rad @@ -82279,8 +77961,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12040 components: - rot: 3.141592653589793 rad @@ -82297,8 +77977,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12042 components: - rot: 3.141592653589793 rad @@ -82331,8 +78009,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12082 components: - rot: 1.5707963267948966 rad @@ -82365,8 +78041,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12236 components: - rot: -1.5707963267948966 rad @@ -82487,8 +78161,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12481 components: - rot: 3.141592653589793 rad @@ -82497,8 +78169,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12482 components: - rot: 3.141592653589793 rad @@ -82507,8 +78177,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12483 components: - rot: 3.141592653589793 rad @@ -82533,8 +78201,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12486 components: - rot: 3.141592653589793 rad @@ -82543,8 +78209,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12487 components: - rot: 3.141592653589793 rad @@ -82553,8 +78217,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12494 components: - rot: 3.141592653589793 rad @@ -82899,8 +78561,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12554 components: - rot: 3.141592653589793 rad @@ -82980,8 +78640,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12565 components: - rot: -1.5707963267948966 rad @@ -83046,8 +78704,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12573 components: - rot: -1.5707963267948966 rad @@ -83072,8 +78728,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12585 components: - rot: 1.5707963267948966 rad @@ -83089,8 +78743,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12590 components: - rot: 3.141592653589793 rad @@ -83290,8 +78942,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12752 components: - rot: 3.141592653589793 rad @@ -83367,8 +79017,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12887 components: - rot: -1.5707963267948966 rad @@ -83390,8 +79038,6 @@ entities: - pos: 38.5,11.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12923 components: - rot: -1.5707963267948966 rad @@ -83405,8 +79051,6 @@ entities: - pos: 35.5,11.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 12938 components: - rot: 1.5707963267948966 rad @@ -83691,8 +79335,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12992 components: - rot: 1.5707963267948966 rad @@ -83701,8 +79343,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12993 components: - rot: 1.5707963267948966 rad @@ -83791,8 +79431,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13014 components: - rot: 3.141592653589793 rad @@ -83825,8 +79463,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13020 components: - rot: -1.5707963267948966 rad @@ -83882,8 +79518,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13029 components: - rot: 1.5707963267948966 rad @@ -83900,8 +79534,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13032 components: - rot: 1.5707963267948966 rad @@ -84129,8 +79761,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13069 components: - rot: -1.5707963267948966 rad @@ -84241,8 +79871,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13635 components: - rot: -1.5707963267948966 rad @@ -84259,8 +79887,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13637 components: - rot: -1.5707963267948966 rad @@ -84277,8 +79903,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13639 components: - rot: -1.5707963267948966 rad @@ -84287,8 +79911,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13640 components: - rot: -1.5707963267948966 rad @@ -84297,8 +79919,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13641 components: - rot: -1.5707963267948966 rad @@ -84307,8 +79927,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13754 components: - rot: 1.5707963267948966 rad @@ -84397,8 +80015,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13769 components: - rot: 1.5707963267948966 rad @@ -84548,8 +80164,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13797 components: - rot: 3.141592653589793 rad @@ -84565,8 +80179,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14975 components: - pos: 16.5,47.5 @@ -84574,8 +80186,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14977 components: - pos: 16.5,44.5 @@ -84583,8 +80193,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14980 components: - rot: -1.5707963267948966 rad @@ -84608,8 +80216,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14990 components: - pos: 16.5,53.5 @@ -84617,8 +80223,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15018 components: - pos: 16.5,49.5 @@ -84626,8 +80230,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15049 components: - pos: 16.5,51.5 @@ -84635,8 +80237,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15053 components: - pos: 16.5,50.5 @@ -84644,8 +80244,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15054 components: - pos: 16.5,46.5 @@ -84653,8 +80251,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15055 components: - pos: 16.5,54.5 @@ -84662,8 +80258,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15061 components: - pos: 16.5,48.5 @@ -84671,8 +80265,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15453 components: - rot: -1.5707963267948966 rad @@ -84689,8 +80281,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15455 components: - rot: -1.5707963267948966 rad @@ -84699,8 +80289,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15456 components: - rot: -1.5707963267948966 rad @@ -84709,8 +80297,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15457 components: - rot: -1.5707963267948966 rad @@ -84719,8 +80305,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15458 components: - rot: -1.5707963267948966 rad @@ -84729,8 +80313,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15459 components: - rot: -1.5707963267948966 rad @@ -84739,8 +80321,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15618 components: - rot: 3.141592653589793 rad @@ -84749,8 +80329,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15624 components: - rot: -1.5707963267948966 rad @@ -84759,8 +80337,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15734 components: - pos: 42.5,18.5 @@ -84768,8 +80344,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15735 components: - pos: 42.5,17.5 @@ -84777,8 +80351,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15740 components: - rot: -1.5707963267948966 rad @@ -84787,8 +80359,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15741 components: - rot: -1.5707963267948966 rad @@ -84797,8 +80367,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15743 components: - rot: -1.5707963267948966 rad @@ -84807,8 +80375,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15744 components: - pos: 42.5,6.5 @@ -84816,8 +80382,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15745 components: - pos: 42.5,7.5 @@ -84825,8 +80389,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15746 components: - pos: 42.5,8.5 @@ -84834,8 +80396,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15747 components: - pos: 42.5,9.5 @@ -84843,8 +80403,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15748 components: - rot: 3.141592653589793 rad @@ -84853,8 +80411,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15994 components: - pos: 32.5,6.5 @@ -84870,8 +80426,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16102 components: - rot: -1.5707963267948966 rad @@ -84985,8 +80539,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18394 components: - rot: 1.5707963267948966 rad @@ -85043,8 +80595,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18402 components: - rot: 1.5707963267948966 rad @@ -85153,8 +80703,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18422 components: - rot: -1.5707963267948966 rad @@ -85179,8 +80727,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18425 components: - rot: -1.5707963267948966 rad @@ -85229,8 +80775,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18433 components: - rot: -1.5707963267948966 rad @@ -85277,8 +80821,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18452 components: - pos: -62.5,-25.5 @@ -86338,8 +81880,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18635 components: - rot: -1.5707963267948966 rad @@ -86348,8 +81888,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18638 components: - rot: -1.5707963267948966 rad @@ -86358,8 +81896,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18639 components: - rot: -1.5707963267948966 rad @@ -86368,8 +81904,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18640 components: - rot: -1.5707963267948966 rad @@ -86378,8 +81912,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18641 components: - rot: -1.5707963267948966 rad @@ -86388,8 +81920,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18642 components: - rot: -1.5707963267948966 rad @@ -86398,8 +81928,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18643 components: - rot: -1.5707963267948966 rad @@ -86408,8 +81936,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18645 components: - rot: -1.5707963267948966 rad @@ -86474,8 +82000,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18654 components: - rot: 3.141592653589793 rad @@ -86505,8 +82029,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18660 components: - rot: -1.5707963267948966 rad @@ -86539,8 +82061,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18669 components: - rot: 3.141592653589793 rad @@ -86573,8 +82093,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18673 components: - rot: 3.141592653589793 rad @@ -86615,8 +82133,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18684 components: - rot: 1.5707963267948966 rad @@ -86649,8 +82165,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18688 components: - rot: 1.5707963267948966 rad @@ -86683,8 +82197,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18702 components: - rot: 1.5707963267948966 rad @@ -86717,8 +82229,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18707 components: - rot: 1.5707963267948966 rad @@ -86735,8 +82245,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18709 components: - rot: 1.5707963267948966 rad @@ -86809,8 +82317,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18721 components: - rot: -1.5707963267948966 rad @@ -86859,8 +82365,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18727 components: - rot: -1.5707963267948966 rad @@ -86941,8 +82445,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18747 components: - rot: -1.5707963267948966 rad @@ -86975,8 +82477,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18752 components: - rot: -1.5707963267948966 rad @@ -87061,8 +82561,6 @@ entities: - pos: -64.5,-63.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 20329 components: - pos: 4.5,-3.5 @@ -87114,8 +82612,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21266 components: - rot: 1.5707963267948966 rad @@ -87124,8 +82620,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21267 components: - rot: 1.5707963267948966 rad @@ -87134,8 +82628,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21268 components: - rot: 1.5707963267948966 rad @@ -87144,8 +82636,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21271 components: - rot: 3.141592653589793 rad @@ -87154,8 +82644,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21272 components: - rot: 1.5707963267948966 rad @@ -87164,8 +82652,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21273 components: - rot: 1.5707963267948966 rad @@ -87174,8 +82660,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21546 components: - pos: 39.5,37.5 @@ -87205,8 +82689,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21551 components: - rot: 3.141592653589793 rad @@ -87230,8 +82712,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21987 components: - rot: 3.141592653589793 rad @@ -87240,8 +82720,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21988 components: - rot: 3.141592653589793 rad @@ -87250,8 +82728,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21989 components: - rot: 3.141592653589793 rad @@ -87260,8 +82736,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21990 components: - rot: 3.141592653589793 rad @@ -87270,8 +82744,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21991 components: - rot: 3.141592653589793 rad @@ -87280,8 +82752,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21992 components: - rot: 3.141592653589793 rad @@ -87290,8 +82760,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21993 components: - rot: 3.141592653589793 rad @@ -87300,8 +82768,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21994 components: - rot: 3.141592653589793 rad @@ -87310,8 +82776,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21995 components: - rot: 3.141592653589793 rad @@ -87320,8 +82784,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21996 components: - rot: 3.141592653589793 rad @@ -87330,8 +82792,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21997 components: - rot: 3.141592653589793 rad @@ -87340,8 +82800,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21998 components: - rot: 3.141592653589793 rad @@ -87350,8 +82808,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21999 components: - rot: 3.141592653589793 rad @@ -87360,8 +82816,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22000 components: - rot: 3.141592653589793 rad @@ -87370,8 +82824,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22001 components: - rot: 3.141592653589793 rad @@ -87380,8 +82832,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22002 components: - rot: 3.141592653589793 rad @@ -87390,8 +82840,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22003 components: - rot: 3.141592653589793 rad @@ -87400,8 +82848,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22004 components: - rot: 3.141592653589793 rad @@ -87410,8 +82856,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22005 components: - rot: 3.141592653589793 rad @@ -87420,8 +82864,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22006 components: - rot: 3.141592653589793 rad @@ -87430,8 +82872,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22007 components: - rot: 3.141592653589793 rad @@ -87440,8 +82880,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22008 components: - rot: 3.141592653589793 rad @@ -87450,8 +82888,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22009 components: - rot: 3.141592653589793 rad @@ -87460,8 +82896,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22010 components: - rot: 3.141592653589793 rad @@ -87470,8 +82904,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22011 components: - rot: 3.141592653589793 rad @@ -87480,8 +82912,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22012 components: - rot: 3.141592653589793 rad @@ -87561,8 +82991,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22268 components: - pos: 43.5,12.5 @@ -87570,8 +82998,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22269 components: - pos: 43.5,13.5 @@ -87579,8 +83005,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22270 components: - pos: 43.5,14.5 @@ -87588,8 +83012,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22271 components: - pos: 43.5,15.5 @@ -87597,8 +83019,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22769 components: - rot: 3.141592653589793 rad @@ -87615,8 +83035,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22771 components: - rot: 3.141592653589793 rad @@ -87625,8 +83043,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22772 components: - rot: 3.141592653589793 rad @@ -87635,8 +83051,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22773 components: - rot: 3.141592653589793 rad @@ -87645,8 +83059,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22774 components: - rot: 3.141592653589793 rad @@ -87655,8 +83067,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22775 components: - rot: 3.141592653589793 rad @@ -87665,8 +83075,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22776 components: - rot: 3.141592653589793 rad @@ -87675,8 +83083,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22777 components: - rot: 3.141592653589793 rad @@ -87685,8 +83091,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22778 components: - rot: 3.141592653589793 rad @@ -87695,8 +83099,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22779 components: - rot: 1.5707963267948966 rad @@ -87705,8 +83107,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22780 components: - rot: 1.5707963267948966 rad @@ -87715,8 +83115,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22781 components: - rot: 1.5707963267948966 rad @@ -87725,8 +83123,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22782 components: - rot: 1.5707963267948966 rad @@ -87735,8 +83131,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22783 components: - rot: 1.5707963267948966 rad @@ -87745,8 +83139,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22784 components: - rot: 1.5707963267948966 rad @@ -87755,8 +83147,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22785 components: - rot: 1.5707963267948966 rad @@ -87765,8 +83155,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 22786 components: - rot: 1.5707963267948966 rad @@ -89038,8 +84426,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6601 components: - rot: 3.141592653589793 rad @@ -89048,8 +84434,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6872 components: - rot: 1.5707963267948966 rad @@ -89118,8 +84502,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7310 components: - rot: 3.141592653589793 rad @@ -89367,8 +84749,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8235 components: - rot: 1.5707963267948966 rad @@ -89377,8 +84757,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8237 components: - pos: -9.5,-49.5 @@ -89386,8 +84764,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8239 components: - rot: -1.5707963267948966 rad @@ -89396,8 +84772,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8269 components: - rot: 1.5707963267948966 rad @@ -89436,8 +84810,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8853 components: - pos: -2.5,-3.5 @@ -89600,8 +84972,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9728 components: - rot: 3.141592653589793 rad @@ -90611,16 +85981,12 @@ entities: - pos: -65.5,-64.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 18781 components: - rot: -1.5707963267948966 rad pos: -64.5,-64.5 parent: 30 type: Transform - - enabled: True - type: AmbientSound - uid: 22014 components: - rot: 1.5707963267948966 rad @@ -90959,8 +86325,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7222 @@ -90971,8 +86335,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#03FCD3FF' type: AtmosPipeColor - uid: 9657 @@ -90982,8 +86344,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 21274 @@ -90996,8 +86356,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - proto: GasVentPump @@ -91008,8 +86366,6 @@ entities: pos: -35.5,31.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2454 @@ -91018,8 +86374,6 @@ entities: pos: -35.5,36.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2482 @@ -91028,8 +86382,6 @@ entities: pos: -49.5,32.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2491 @@ -91038,8 +86390,6 @@ entities: pos: -41.5,32.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2493 @@ -91047,8 +86397,6 @@ entities: - pos: -45.5,36.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2503 @@ -91057,8 +86405,6 @@ entities: pos: -35.5,39.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2523 @@ -91066,8 +86412,6 @@ entities: - pos: -33.5,43.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2524 @@ -91076,8 +86420,6 @@ entities: pos: -30.5,46.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2544 @@ -91086,8 +86428,6 @@ entities: pos: -41.5,48.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2551 @@ -91095,8 +86435,6 @@ entities: - pos: -40.5,51.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2573 @@ -91105,8 +86443,6 @@ entities: pos: -25.5,49.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2592 @@ -91115,8 +86451,6 @@ entities: pos: -31.5,57.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2594 @@ -91125,8 +86459,6 @@ entities: pos: -30.5,52.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2638 @@ -91135,8 +86467,6 @@ entities: pos: -38.5,40.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2639 @@ -91145,8 +86475,6 @@ entities: pos: -42.5,40.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2640 @@ -91155,8 +86483,6 @@ entities: pos: -46.5,40.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2644 @@ -91164,8 +86490,6 @@ entities: - pos: -41.5,43.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2669 @@ -91174,8 +86498,6 @@ entities: pos: -47.5,49.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2676 @@ -91184,8 +86506,6 @@ entities: pos: -50.5,52.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2705 @@ -91193,8 +86513,6 @@ entities: - pos: -48.5,68.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2706 @@ -91203,8 +86521,6 @@ entities: pos: -48.5,66.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2707 @@ -91213,8 +86529,6 @@ entities: pos: -49.5,61.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2708 @@ -91223,8 +86537,6 @@ entities: pos: -45.5,61.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2734 @@ -91233,8 +86545,6 @@ entities: pos: -47.5,56.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2743 @@ -91243,8 +86553,6 @@ entities: pos: -28.5,42.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2862 @@ -91252,8 +86560,6 @@ entities: - pos: -8.5,26.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3042 @@ -91262,8 +86568,6 @@ entities: pos: -26.5,31.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3050 @@ -91272,8 +86576,6 @@ entities: pos: -30.5,22.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3056 @@ -91282,8 +86584,6 @@ entities: pos: -26.5,23.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3062 @@ -91292,8 +86592,6 @@ entities: pos: -22.5,23.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3064 @@ -91302,8 +86600,6 @@ entities: pos: -35.5,26.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3066 @@ -91312,8 +86608,6 @@ entities: pos: -35.5,19.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3069 @@ -91322,8 +86616,6 @@ entities: pos: -35.5,8.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3077 @@ -91331,8 +86623,6 @@ entities: - pos: -40.5,10.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3099 @@ -91340,8 +86630,6 @@ entities: - pos: -42.5,6.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3111 @@ -91350,8 +86638,6 @@ entities: pos: -39.5,0.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3131 @@ -91360,8 +86646,6 @@ entities: pos: -54.5,-4.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3135 @@ -91370,8 +86654,6 @@ entities: pos: -53.5,9.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3148 @@ -91380,8 +86662,6 @@ entities: pos: -45.5,4.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3171 @@ -91390,8 +86670,6 @@ entities: pos: -45.5,-2.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3221 @@ -91400,8 +86678,6 @@ entities: pos: -47.5,-8.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3228 @@ -91410,8 +86686,6 @@ entities: pos: -31.5,8.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3230 @@ -91419,8 +86693,6 @@ entities: - pos: -32.5,2.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3253 @@ -91428,8 +86700,6 @@ entities: - pos: -43.5,18.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3266 @@ -91437,8 +86707,6 @@ entities: - pos: -44.5,14.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3302 @@ -91447,8 +86715,6 @@ entities: pos: -60.5,13.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3303 @@ -91457,8 +86723,6 @@ entities: pos: -60.5,15.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3304 @@ -91467,8 +86731,6 @@ entities: pos: -60.5,21.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3305 @@ -91477,8 +86739,6 @@ entities: pos: -60.5,23.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3323 @@ -91487,8 +86747,6 @@ entities: pos: -56.5,18.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3324 @@ -91496,8 +86754,6 @@ entities: - pos: -50.5,18.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3325 @@ -91505,8 +86761,6 @@ entities: - pos: -27.5,2.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3327 @@ -91514,8 +86768,6 @@ entities: - pos: -17.5,2.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3357 @@ -91524,8 +86776,6 @@ entities: pos: -26.5,10.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3376 @@ -91533,8 +86783,6 @@ entities: - pos: -26.5,16.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3401 @@ -91543,8 +86791,6 @@ entities: pos: -13.5,10.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3407 @@ -91552,8 +86798,6 @@ entities: - pos: -10.5,2.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3410 @@ -91561,8 +86805,6 @@ entities: - pos: 5.5,2.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3422 @@ -91571,8 +86813,6 @@ entities: pos: -0.5,7.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3469 @@ -91580,8 +86820,6 @@ entities: - pos: -16.5,15.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3479 @@ -91590,8 +86828,6 @@ entities: pos: -8.5,13.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3480 @@ -91599,8 +86835,6 @@ entities: - pos: -9.5,18.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3481 @@ -91609,8 +86843,6 @@ entities: pos: 3.5,14.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3485 @@ -91619,8 +86851,6 @@ entities: pos: -0.5,13.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6109 @@ -91628,8 +86858,6 @@ entities: - pos: -23.5,26.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6113 @@ -91637,8 +86865,6 @@ entities: - pos: 3.5,26.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6123 @@ -91647,8 +86873,6 @@ entities: pos: -0.5,21.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6205 @@ -91656,8 +86880,6 @@ entities: - pos: -9.5,43.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6214 @@ -91666,8 +86888,6 @@ entities: pos: -7.5,36.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6223 @@ -91676,8 +86896,6 @@ entities: pos: 0.5,31.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6229 @@ -91686,8 +86904,6 @@ entities: pos: -19.5,39.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6239 @@ -91696,8 +86912,6 @@ entities: pos: -25.5,37.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6245 @@ -91706,8 +86920,6 @@ entities: pos: -20.5,31.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6246 @@ -91716,8 +86928,6 @@ entities: pos: -19.5,36.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6900 @@ -91726,8 +86936,6 @@ entities: pos: -28.5,-1.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7340 @@ -91735,8 +86943,6 @@ entities: - pos: -12.5,-1.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7372 @@ -91744,8 +86950,6 @@ entities: - pos: -13.5,-8.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7373 @@ -91754,8 +86958,6 @@ entities: pos: -7.5,-9.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7381 @@ -91764,8 +86966,6 @@ entities: pos: -18.5,-10.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7406 @@ -91773,8 +86973,6 @@ entities: - pos: -17.5,-2.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7424 @@ -91783,8 +86981,6 @@ entities: pos: -35.5,-1.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7463 @@ -91793,8 +86989,6 @@ entities: pos: -28.5,-14.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7465 @@ -91803,8 +86997,6 @@ entities: pos: -28.5,-7.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7513 @@ -91812,40 +87004,30 @@ entities: - pos: -33.5,-18.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - uid: 7514 components: - rot: 3.141592653589793 rad pos: -33.5,-23.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - uid: 7515 components: - rot: 3.141592653589793 rad pos: -30.5,-23.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - uid: 7516 components: - rot: 3.141592653589793 rad pos: -27.5,-20.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - uid: 7555 components: - rot: 3.141592653589793 rad pos: -14.5,-20.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7556 @@ -91854,8 +87036,6 @@ entities: pos: -8.5,-20.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7578 @@ -91864,8 +87044,6 @@ entities: pos: -23.5,-17.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7586 @@ -91874,8 +87052,6 @@ entities: pos: -21.5,-21.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7588 @@ -91884,8 +87060,6 @@ entities: pos: -17.5,-22.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7599 @@ -91894,8 +87068,6 @@ entities: pos: -13.5,-15.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7609 @@ -91904,8 +87076,6 @@ entities: pos: -23.5,-12.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8224 @@ -91913,8 +87083,6 @@ entities: - pos: -22.5,-3.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 9687 @@ -91923,24 +87091,18 @@ entities: pos: -32.5,-11.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - uid: 9716 components: - rot: 1.5707963267948966 rad pos: -37.5,-7.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - uid: 11153 components: - rot: 1.5707963267948966 rad pos: -22.5,-42.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11154 @@ -91948,8 +87110,6 @@ entities: - pos: -12.5,-40.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11155 @@ -91957,8 +87117,6 @@ entities: - pos: -2.5,-40.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11162 @@ -91966,8 +87124,6 @@ entities: - pos: -6.5,-35.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11163 @@ -91976,8 +87132,6 @@ entities: pos: -6.5,-43.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11165 @@ -91986,8 +87140,6 @@ entities: pos: 1.5,-32.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11176 @@ -91996,8 +87148,6 @@ entities: pos: -10.5,-28.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11178 @@ -92006,8 +87156,6 @@ entities: pos: -2.5,-26.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11180 @@ -92015,8 +87163,6 @@ entities: - pos: 10.5,-23.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11188 @@ -92025,8 +87171,6 @@ entities: pos: 10.5,-28.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11200 @@ -92034,8 +87178,6 @@ entities: - pos: 2.5,-19.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11208 @@ -92043,8 +87185,6 @@ entities: - pos: 9.5,-15.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11211 @@ -92053,8 +87193,6 @@ entities: pos: 12.5,-17.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11216 @@ -92062,8 +87200,6 @@ entities: - pos: -2.5,-1.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11217 @@ -92072,8 +87208,6 @@ entities: pos: 5.5,-3.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11220 @@ -92082,8 +87216,6 @@ entities: pos: 8.5,-9.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11222 @@ -92092,8 +87224,6 @@ entities: pos: 14.5,-4.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11224 @@ -92101,8 +87231,6 @@ entities: - pos: 12.5,2.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11227 @@ -92110,8 +87238,6 @@ entities: - pos: -19.5,-36.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11664 @@ -92120,8 +87246,6 @@ entities: pos: 33.5,-10.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11868 @@ -92130,8 +87254,6 @@ entities: pos: 24.5,-10.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11872 @@ -92140,8 +87262,6 @@ entities: pos: 24.5,-3.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11922 @@ -92150,8 +87270,6 @@ entities: pos: 37.5,-5.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11938 @@ -92160,8 +87278,6 @@ entities: pos: 17.5,-10.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11939 @@ -92170,8 +87286,6 @@ entities: pos: 20.5,-10.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11981 @@ -92179,8 +87293,6 @@ entities: - pos: 20.5,0.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11991 @@ -92189,8 +87301,6 @@ entities: pos: 19.5,-1.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12007 @@ -92198,8 +87308,6 @@ entities: - pos: 30.5,1.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12010 @@ -92207,8 +87315,6 @@ entities: - pos: 25.5,0.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12060 @@ -92217,8 +87323,6 @@ entities: pos: 37.5,-3.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12081 @@ -92227,8 +87331,6 @@ entities: pos: 30.5,-3.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12230 @@ -92237,8 +87339,6 @@ entities: pos: 34.5,-14.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12491 @@ -92247,8 +87347,6 @@ entities: pos: 9.5,33.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12492 @@ -92257,8 +87355,6 @@ entities: pos: 11.5,39.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12495 @@ -92266,8 +87362,6 @@ entities: - pos: 9.5,41.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12537 @@ -92276,8 +87370,6 @@ entities: pos: 9.5,24.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12538 @@ -92285,8 +87377,6 @@ entities: - pos: 18.5,26.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12579 @@ -92295,8 +87385,6 @@ entities: pos: 18.5,40.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12580 @@ -92305,8 +87393,6 @@ entities: pos: 18.5,37.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12581 @@ -92315,8 +87401,6 @@ entities: pos: 18.5,34.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12587 @@ -92324,8 +87408,6 @@ entities: - pos: 25.5,42.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12605 @@ -92334,8 +87416,6 @@ entities: pos: 24.5,38.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12611 @@ -92343,8 +87423,6 @@ entities: - pos: 27.5,27.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12756 @@ -92353,15 +87431,11 @@ entities: pos: 33.5,14.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - uid: 12796 components: - pos: 32.5,11.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12959 @@ -92370,8 +87444,6 @@ entities: pos: 27.5,18.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12976 @@ -92380,8 +87452,6 @@ entities: pos: 37.5,8.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12983 @@ -92390,8 +87460,6 @@ entities: pos: 16.5,10.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 13002 @@ -92400,8 +87468,6 @@ entities: pos: 22.5,13.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 13003 @@ -92410,8 +87476,6 @@ entities: pos: 28.5,7.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 13004 @@ -92420,8 +87484,6 @@ entities: pos: 24.5,19.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 13005 @@ -92429,8 +87491,6 @@ entities: - pos: 14.5,21.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 13006 @@ -92439,8 +87499,6 @@ entities: pos: 13.5,18.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 13081 @@ -92448,8 +87506,6 @@ entities: - pos: 18.5,16.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 13335 @@ -92458,8 +87514,6 @@ entities: pos: 9.5,14.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 13360 @@ -92468,8 +87522,6 @@ entities: pos: 26.5,15.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 13469 @@ -92477,8 +87529,6 @@ entities: - pos: 16.5,57.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 13470 @@ -92486,8 +87536,6 @@ entities: - pos: 20.5,44.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 13593 @@ -92495,8 +87543,6 @@ entities: - pos: 35.5,39.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 13783 @@ -92505,8 +87551,6 @@ entities: pos: 45.5,38.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 13788 @@ -92515,8 +87559,6 @@ entities: pos: 30.5,37.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 13789 @@ -92524,8 +87566,6 @@ entities: - pos: 30.5,42.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 15441 @@ -92534,8 +87574,6 @@ entities: pos: 51.5,20.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 15619 @@ -92543,8 +87581,6 @@ entities: - pos: 52.5,23.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 16096 @@ -92553,8 +87589,6 @@ entities: pos: 6.5,-28.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 18436 @@ -92563,8 +87597,6 @@ entities: pos: -45.5,-13.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 18437 @@ -92573,8 +87605,6 @@ entities: pos: -45.5,-21.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 18438 @@ -92582,8 +87612,6 @@ entities: - pos: -58.5,-23.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 18439 @@ -92591,8 +87619,6 @@ entities: - pos: -49.5,-23.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 18440 @@ -92600,8 +87626,6 @@ entities: - pos: -53.5,-23.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 18449 @@ -92609,8 +87633,6 @@ entities: - pos: -63.5,-19.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 18450 @@ -92619,8 +87641,6 @@ entities: pos: -62.5,-21.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 18629 @@ -92629,8 +87649,6 @@ entities: pos: -59.5,-44.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 18655 @@ -92638,8 +87656,6 @@ entities: - pos: -79.5,-39.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 18662 @@ -92647,8 +87663,6 @@ entities: - pos: -77.5,-42.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 18663 @@ -92656,8 +87670,6 @@ entities: - pos: -75.5,-41.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 18667 @@ -92665,8 +87677,6 @@ entities: - pos: -68.5,-45.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 18668 @@ -92674,8 +87684,6 @@ entities: - pos: -67.5,-42.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 18674 @@ -92683,8 +87691,6 @@ entities: - pos: -55.5,-45.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 18678 @@ -92693,8 +87699,6 @@ entities: pos: -52.5,-56.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 18679 @@ -92703,8 +87707,6 @@ entities: pos: -52.5,-52.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 18720 @@ -92713,8 +87715,6 @@ entities: pos: -83.5,-60.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 18731 @@ -92723,8 +87723,6 @@ entities: pos: -80.5,-61.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 18732 @@ -92733,8 +87731,6 @@ entities: pos: -74.5,-61.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 18753 @@ -92743,8 +87739,6 @@ entities: pos: -76.5,-55.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 18754 @@ -92752,8 +87746,6 @@ entities: - pos: -71.5,-53.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 18757 @@ -92761,8 +87753,6 @@ entities: - pos: -60.5,-59.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 18758 @@ -92771,8 +87761,6 @@ entities: pos: -60.5,-49.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 18769 @@ -92781,8 +87769,6 @@ entities: pos: -59.5,-64.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 20335 @@ -92791,8 +87777,6 @@ entities: pos: 4.5,-8.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 21549 @@ -92801,8 +87785,6 @@ entities: pos: 39.5,34.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 22023 @@ -92810,8 +87792,6 @@ entities: - pos: -0.5,74.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 22024 @@ -92820,8 +87800,6 @@ entities: pos: 0.5,65.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 22025 @@ -92829,8 +87807,6 @@ entities: - pos: -1.5,38.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 22532 @@ -92841,8 +87817,6 @@ entities: - ShutdownSubscribers: - 9039 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 22768 @@ -92851,8 +87825,6 @@ entities: pos: -16.5,-47.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 22799 @@ -92861,8 +87833,6 @@ entities: pos: -26.5,-59.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 22800 @@ -92871,8 +87841,6 @@ entities: pos: -31.5,-58.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 22801 @@ -92881,8 +87849,6 @@ entities: pos: -36.5,-60.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - proto: GasVentScrubber @@ -92892,16 +87858,12 @@ entities: - pos: -43.5,64.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - uid: 2452 components: - rot: -1.5707963267948966 rad pos: -35.5,32.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2453 @@ -92910,8 +87872,6 @@ entities: pos: -35.5,37.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2483 @@ -92920,8 +87880,6 @@ entities: pos: -50.5,32.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2490 @@ -92930,8 +87888,6 @@ entities: pos: -42.5,32.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2492 @@ -92940,8 +87896,6 @@ entities: pos: -41.5,36.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2504 @@ -92950,8 +87904,6 @@ entities: pos: -35.5,40.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2525 @@ -92960,8 +87912,6 @@ entities: pos: -35.5,43.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2526 @@ -92970,8 +87920,6 @@ entities: pos: -34.5,46.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2545 @@ -92980,8 +87928,6 @@ entities: pos: -41.5,47.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2552 @@ -92989,8 +87935,6 @@ entities: - pos: -38.5,51.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2574 @@ -92999,8 +87943,6 @@ entities: pos: -25.5,51.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2593 @@ -93009,8 +87951,6 @@ entities: pos: -33.5,57.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2595 @@ -93019,8 +87959,6 @@ entities: pos: -34.5,52.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2641 @@ -93029,8 +87967,6 @@ entities: pos: -48.5,40.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2642 @@ -93039,8 +87975,6 @@ entities: pos: -44.5,40.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2643 @@ -93049,8 +87983,6 @@ entities: pos: -40.5,40.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2645 @@ -93059,8 +87991,6 @@ entities: pos: -43.5,43.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2670 @@ -93069,8 +87999,6 @@ entities: pos: -47.5,50.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2675 @@ -93079,8 +88007,6 @@ entities: pos: -50.5,51.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2730 @@ -93089,8 +88015,6 @@ entities: pos: -48.5,63.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2731 @@ -93099,8 +88023,6 @@ entities: pos: -50.5,60.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2732 @@ -93109,8 +88031,6 @@ entities: pos: -46.5,60.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2733 @@ -93119,8 +88039,6 @@ entities: pos: -49.5,56.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2742 @@ -93129,8 +88047,6 @@ entities: pos: -28.5,43.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3006 @@ -93139,8 +88055,6 @@ entities: pos: -10.5,26.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3041 @@ -93149,8 +88063,6 @@ entities: pos: -30.5,31.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3049 @@ -93159,8 +88071,6 @@ entities: pos: -31.5,22.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3055 @@ -93169,8 +88079,6 @@ entities: pos: -27.5,23.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3063 @@ -93179,8 +88087,6 @@ entities: pos: -21.5,22.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3065 @@ -93189,8 +88095,6 @@ entities: pos: -35.5,24.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3067 @@ -93199,8 +88103,6 @@ entities: pos: -35.5,17.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3068 @@ -93209,8 +88111,6 @@ entities: pos: -35.5,10.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3076 @@ -93219,8 +88119,6 @@ entities: pos: -39.5,10.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3100 @@ -93229,8 +88127,6 @@ entities: pos: -39.5,6.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3112 @@ -93239,8 +88135,6 @@ entities: pos: -41.5,0.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3136 @@ -93249,8 +88143,6 @@ entities: pos: -52.5,9.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3147 @@ -93259,8 +88151,6 @@ entities: pos: -44.5,6.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3167 @@ -93269,8 +88159,6 @@ entities: pos: -55.5,-5.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3170 @@ -93279,8 +88167,6 @@ entities: pos: -44.5,-5.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3229 @@ -93289,8 +88175,6 @@ entities: pos: -31.5,7.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3231 @@ -93299,8 +88183,6 @@ entities: pos: -31.5,2.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3254 @@ -93308,8 +88190,6 @@ entities: - pos: -42.5,18.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3267 @@ -93318,8 +88198,6 @@ entities: pos: -41.5,14.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3317 @@ -93328,8 +88206,6 @@ entities: pos: -53.5,16.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3318 @@ -93338,8 +88214,6 @@ entities: pos: -53.5,20.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3326 @@ -93348,8 +88222,6 @@ entities: pos: -24.5,2.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3328 @@ -93358,8 +88230,6 @@ entities: pos: -14.5,2.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3358 @@ -93368,8 +88238,6 @@ entities: pos: -24.5,9.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3377 @@ -93378,8 +88246,6 @@ entities: pos: -24.5,16.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3398 @@ -93387,8 +88253,6 @@ entities: - pos: -17.5,14.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3400 @@ -93397,8 +88261,6 @@ entities: pos: -13.5,7.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3408 @@ -93407,8 +88269,6 @@ entities: pos: -6.5,2.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3409 @@ -93417,8 +88277,6 @@ entities: pos: 1.5,2.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3421 @@ -93427,8 +88285,6 @@ entities: pos: -4.5,7.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3482 @@ -93436,8 +88292,6 @@ entities: - pos: -12.5,14.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3483 @@ -93445,8 +88299,6 @@ entities: - pos: -10.5,17.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3484 @@ -93455,8 +88307,6 @@ entities: pos: 3.5,13.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3486 @@ -93464,8 +88314,6 @@ entities: - pos: -4.5,14.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 5029 @@ -93474,8 +88322,6 @@ entities: pos: -28.5,39.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6108 @@ -93484,8 +88330,6 @@ entities: pos: -19.5,26.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6112 @@ -93494,8 +88338,6 @@ entities: pos: 0.5,26.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6122 @@ -93504,8 +88346,6 @@ entities: pos: -2.5,21.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6204 @@ -93514,8 +88354,6 @@ entities: pos: -9.5,39.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6213 @@ -93524,8 +88362,6 @@ entities: pos: -11.5,36.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6222 @@ -93534,8 +88370,6 @@ entities: pos: 0.5,32.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6265 @@ -93544,8 +88378,6 @@ entities: pos: -27.5,37.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6266 @@ -93554,8 +88386,6 @@ entities: pos: -21.5,34.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6268 @@ -93564,8 +88394,6 @@ entities: pos: -19.5,31.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6911 @@ -93573,8 +88401,6 @@ entities: - pos: -28.5,-3.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7204 @@ -93582,8 +88408,6 @@ entities: - pos: -27.5,-22.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - uid: 7260 components: - rot: 3.141592653589793 rad @@ -93593,8 +88417,6 @@ entities: - ShutdownSubscribers: - 9039 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7339 @@ -93602,8 +88424,6 @@ entities: - pos: -11.5,-2.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7371 @@ -93611,8 +88431,6 @@ entities: - pos: -14.5,-9.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7377 @@ -93621,8 +88439,6 @@ entities: pos: -7.5,-11.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7378 @@ -93631,8 +88447,6 @@ entities: pos: -5.5,-11.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7387 @@ -93641,8 +88455,6 @@ entities: pos: -18.5,-8.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7407 @@ -93651,8 +88463,6 @@ entities: pos: -18.5,-1.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7464 @@ -93661,8 +88471,6 @@ entities: pos: -28.5,-6.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7491 @@ -93670,39 +88478,29 @@ entities: - pos: -28.5,-16.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - uid: 7504 components: - rot: 3.141592653589793 rad pos: -34.5,-23.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - uid: 7505 components: - rot: 3.141592653589793 rad pos: -31.5,-23.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - uid: 7511 components: - pos: -31.5,-18.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - uid: 7568 components: - rot: 3.141592653589793 rad pos: -14.5,-22.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7569 @@ -93711,8 +88509,6 @@ entities: pos: -10.5,-20.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7579 @@ -93721,8 +88517,6 @@ entities: pos: -23.5,-18.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7589 @@ -93731,8 +88525,6 @@ entities: pos: -19.5,-22.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7598 @@ -93741,8 +88533,6 @@ entities: pos: -13.5,-13.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7603 @@ -93751,8 +88541,6 @@ entities: pos: -23.5,-13.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8223 @@ -93760,8 +88548,6 @@ entities: - pos: -24.5,-3.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8804 @@ -93770,24 +88556,18 @@ entities: pos: -33.5,-11.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - uid: 9727 components: - rot: 1.5707963267948966 rad pos: -37.5,-10.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - uid: 11094 components: - rot: 1.5707963267948966 rad pos: -22.5,-41.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11097 @@ -93795,8 +88575,6 @@ entities: - pos: -17.5,-36.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11098 @@ -93805,8 +88583,6 @@ entities: pos: -3.5,-40.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11099 @@ -93815,8 +88591,6 @@ entities: pos: -11.5,-40.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11107 @@ -93825,8 +88599,6 @@ entities: pos: -10.5,-30.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11114 @@ -93835,8 +88607,6 @@ entities: pos: -8.5,-43.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11115 @@ -93844,8 +88614,6 @@ entities: - pos: -8.5,-35.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11166 @@ -93854,8 +88622,6 @@ entities: pos: 1.5,-34.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11179 @@ -93864,8 +88630,6 @@ entities: pos: -2.5,-27.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11189 @@ -93874,8 +88638,6 @@ entities: pos: 11.5,-28.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11192 @@ -93884,8 +88646,6 @@ entities: pos: 12.5,-23.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11201 @@ -93894,8 +88654,6 @@ entities: pos: 4.5,-19.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11209 @@ -93903,8 +88661,6 @@ entities: - pos: 7.5,-15.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11210 @@ -93913,8 +88669,6 @@ entities: pos: 12.5,-15.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11214 @@ -93922,8 +88676,6 @@ entities: - pos: 20.5,-18.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11215 @@ -93932,8 +88684,6 @@ entities: pos: -2.5,-4.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11218 @@ -93941,8 +88691,6 @@ entities: - pos: 6.5,-2.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11219 @@ -93951,8 +88699,6 @@ entities: pos: 8.5,-8.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11221 @@ -93961,8 +88707,6 @@ entities: pos: 12.5,-4.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11223 @@ -93971,8 +88715,6 @@ entities: pos: 9.5,2.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11681 @@ -93980,8 +88722,6 @@ entities: - pos: 25.5,-10.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11714 @@ -93990,8 +88730,6 @@ entities: pos: 6.5,-26.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11764 @@ -93999,8 +88737,6 @@ entities: - pos: 24.5,-5.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11797 @@ -94008,8 +88744,6 @@ entities: - pos: 32.5,-10.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11944 @@ -94017,8 +88751,6 @@ entities: - pos: 19.5,-10.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11945 @@ -94026,8 +88758,6 @@ entities: - pos: 16.5,-10.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11985 @@ -94036,8 +88766,6 @@ entities: pos: 18.5,1.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12043 @@ -94045,8 +88773,6 @@ entities: - pos: 29.5,1.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12044 @@ -94054,8 +88780,6 @@ entities: - pos: 26.5,0.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12489 @@ -94063,8 +88787,6 @@ entities: - pos: 8.5,39.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12490 @@ -94073,8 +88795,6 @@ entities: pos: 9.5,31.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12536 @@ -94083,8 +88803,6 @@ entities: pos: 9.5,26.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12539 @@ -94093,8 +88811,6 @@ entities: pos: 16.5,26.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12576 @@ -94103,8 +88819,6 @@ entities: pos: 18.5,33.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12577 @@ -94113,8 +88827,6 @@ entities: pos: 18.5,36.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12578 @@ -94123,8 +88835,6 @@ entities: pos: 18.5,39.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12583 @@ -94132,8 +88842,6 @@ entities: - pos: 21.5,43.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12606 @@ -94141,8 +88849,6 @@ entities: - pos: 24.5,37.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12619 @@ -94151,8 +88857,6 @@ entities: pos: 27.5,29.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12755 @@ -94161,16 +88865,12 @@ entities: pos: 31.5,14.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - uid: 12813 components: - rot: -1.5707963267948966 rad pos: 29.5,20.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12824 @@ -94179,8 +88879,6 @@ entities: pos: 28.5,15.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 13078 @@ -94189,8 +88887,6 @@ entities: pos: 16.5,11.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 13079 @@ -94199,8 +88895,6 @@ entities: pos: 13.5,21.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 13080 @@ -94209,8 +88903,6 @@ entities: pos: 13.5,16.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 13082 @@ -94218,8 +88910,6 @@ entities: - pos: 18.5,15.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 13084 @@ -94228,8 +88918,6 @@ entities: pos: 22.5,18.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 13085 @@ -94238,8 +88926,6 @@ entities: pos: 22.5,11.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 13086 @@ -94247,8 +88933,6 @@ entities: - pos: 25.5,8.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 13336 @@ -94257,8 +88941,6 @@ entities: pos: 9.5,15.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 13353 @@ -94266,8 +88948,6 @@ entities: - pos: 40.5,13.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 13355 @@ -94275,8 +88955,6 @@ entities: - pos: 38.5,8.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 13782 @@ -94285,8 +88963,6 @@ entities: pos: 45.5,35.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 13798 @@ -94294,8 +88970,6 @@ entities: - pos: 29.5,42.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 13799 @@ -94303,8 +88977,6 @@ entities: - pos: 30.5,36.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 14540 @@ -94313,8 +88985,6 @@ entities: pos: 20.5,-5.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 18060 @@ -94322,8 +88992,6 @@ entities: - pos: 30.5,-5.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 18435 @@ -94332,8 +89000,6 @@ entities: pos: -44.5,-17.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 18441 @@ -94342,8 +89008,6 @@ entities: pos: -57.5,-23.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 18442 @@ -94352,8 +89016,6 @@ entities: pos: -51.5,-23.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 18451 @@ -94361,8 +89023,6 @@ entities: - pos: -61.5,-21.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 18519 @@ -94371,8 +89031,6 @@ entities: pos: -77.5,-48.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 18520 @@ -94380,8 +89038,6 @@ entities: - pos: -78.5,-39.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 18523 @@ -94389,8 +89045,6 @@ entities: - pos: -68.5,-42.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 18524 @@ -94398,8 +89052,6 @@ entities: - pos: -64.5,-44.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 18630 @@ -94408,8 +89060,6 @@ entities: pos: -67.5,-44.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 18675 @@ -94417,8 +89067,6 @@ entities: - pos: -56.5,-45.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 18676 @@ -94427,8 +89075,6 @@ entities: pos: -52.5,-53.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 18677 @@ -94437,8 +89083,6 @@ entities: pos: -52.5,-57.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 18729 @@ -94447,8 +89091,6 @@ entities: pos: -80.5,-59.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 18730 @@ -94457,8 +89099,6 @@ entities: pos: -75.5,-61.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 18744 @@ -94466,8 +89106,6 @@ entities: - pos: -76.5,-53.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 18745 @@ -94475,8 +89113,6 @@ entities: - pos: -72.5,-53.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 18756 @@ -94485,8 +89121,6 @@ entities: pos: -63.5,-60.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 18759 @@ -94494,8 +89128,6 @@ entities: - pos: -63.5,-48.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 18770 @@ -94504,8 +89136,6 @@ entities: pos: -59.5,-65.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 21545 @@ -94514,8 +89144,6 @@ entities: pos: 35.5,34.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 21553 @@ -94523,8 +89151,6 @@ entities: - pos: 43.5,39.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - proto: GasVolumePump @@ -94544,13 +89170,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor -- proto: GeneratorPlasma - entities: - - uid: 9408 - components: - - pos: -25.5,-46.5 - parent: 30 - type: Transform - proto: GeneratorRTG entities: - uid: 22223 @@ -94558,18 +89177,6 @@ entities: - pos: -67.5,-64.5 parent: 30 type: Transform -- proto: GeneratorUranium - entities: - - uid: 9389 - components: - - pos: -25.5,-47.5 - parent: 30 - type: Transform - - uid: 21948 - components: - - pos: 0.5,84.5 - parent: 30 - type: Transform - proto: Girder entities: - uid: 685 @@ -101437,9 +96044,12 @@ entities: - pos: -23.5,-11.5 parent: 30 type: Transform - - SecondsUntilStateChange: -6245.4434 - state: Closing + - state: Closed type: Door + - enabled: True + type: Occluder + - canCollide: True + type: Physics - uid: 21248 components: - pos: -24.5,-11.5 @@ -105135,8 +99745,6 @@ entities: - pos: 28.5,21.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - proto: MachineAnomalyVessel entities: - uid: 21709 @@ -107288,6 +101896,25 @@ entities: - pos: -37.5,51.5 parent: 30 type: Transform +- proto: PortableGeneratorPacman + entities: + - uid: 9408 + components: + - pos: -25.5,-46.5 + parent: 30 + type: Transform +- proto: PortableGeneratorSuperPacman + entities: + - uid: 9389 + components: + - pos: -25.5,-47.5 + parent: 30 + type: Transform + - uid: 21948 + components: + - pos: 0.5,84.5 + parent: 30 + type: Transform - proto: PortableScrubber entities: - uid: 8285 @@ -109526,32 +104153,24 @@ entities: pos: -42.5,-10.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - uid: 7018 components: - rot: 1.5707963267948966 rad pos: -42.5,-13.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - uid: 7394 components: - rot: -1.5707963267948966 rad pos: -35.5,-12.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - uid: 7430 components: - rot: -1.5707963267948966 rad pos: -27.5,-2.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - uid: 8227 components: - pos: -22.5,-16.5 @@ -109764,40 +104383,30 @@ entities: - pos: -32.5,-4.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - uid: 9055 components: - rot: 1.5707963267948966 rad pos: -11.5,-22.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - uid: 9056 components: - rot: -1.5707963267948966 rad pos: -7.5,-22.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - uid: 9057 components: - rot: 1.5707963267948966 rad pos: -9.5,-11.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - uid: 9103 components: - rot: -1.5707963267948966 rad pos: -1.5,-47.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - uid: 9250 components: - rot: 3.141592653589793 rad @@ -109820,8 +104429,6 @@ entities: pos: -6.5,-55.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - uid: 9447 components: - rot: 1.5707963267948966 rad @@ -109836,24 +104443,18 @@ entities: pos: 1.5,-51.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - uid: 9705 components: - rot: -1.5707963267948966 rad pos: -1.5,-55.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - uid: 9971 components: - rot: 1.5707963267948966 rad pos: -39.5,-6.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - uid: 9979 components: - rot: 1.5707963267948966 rad @@ -109868,45 +104469,33 @@ entities: pos: -32.5,-11.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - uid: 10007 components: - pos: -32.5,-13.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - uid: 10072 components: - pos: -58.5,-4.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - uid: 10073 components: - pos: -51.5,-4.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - uid: 10074 components: - rot: 3.141592653589793 rad pos: -58.5,7.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - uid: 10075 components: - rot: 3.141592653589793 rad pos: -51.5,7.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - uid: 10092 components: - rot: 1.5707963267948966 rad @@ -111030,8 +105619,6 @@ entities: - pos: -40.5,27.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - uid: 22026 components: - rot: 3.141592653589793 rad @@ -111127,8 +105714,6 @@ entities: pos: -35.5,62.5 parent: 30 type: Transform - - enabled: False - type: AmbientSound - uid: 11690 components: - pos: 32.5,-16.5 @@ -120739,46 +115324,64 @@ entities: entities: - uid: 5472 components: + - name: Gravity Generator SMES + type: MetaData - pos: 12.5,41.5 parent: 30 type: Transform - uid: 9496 components: + - name: SMES Bank 3 + type: MetaData - pos: -6.5,-34.5 parent: 30 type: Transform - uid: 9497 components: + - name: SMES Bank 2 + type: MetaData - pos: -7.5,-34.5 parent: 30 type: Transform - uid: 9498 components: + - name: SMES Bank 1 + type: MetaData - pos: -8.5,-34.5 parent: 30 type: Transform - uid: 15299 components: + - name: East Solars SMES + type: MetaData - pos: 51.5,31.5 parent: 30 type: Transform - uid: 16277 components: + - name: West Solars SMES + type: MetaData - pos: -65.5,44.5 parent: 30 type: Transform - uid: 18774 components: + - name: Chapelroid SMES 2 + type: MetaData - pos: -69.5,-63.5 parent: 30 type: Transform - uid: 18775 components: + - name: Chapelroid SMES 1 + type: MetaData - pos: -69.5,-62.5 parent: 30 type: Transform - uid: 20046 components: + - name: AI SMES + type: MetaData - pos: -0.5,84.5 parent: 30 type: Transform @@ -123455,6 +118058,8 @@ entities: type: Transform - uid: 5471 components: + - name: Gravity Generator Substation + type: MetaData - pos: 12.5,42.5 parent: 30 type: Transform @@ -123488,6 +118093,8 @@ entities: type: Transform - uid: 9570 components: + - name: East Engineering Substation + type: MetaData - pos: 3.5,-37.5 parent: 30 type: Transform @@ -123535,6 +118142,8 @@ entities: type: Transform - uid: 20154 components: + - name: AI Substation + type: MetaData - pos: -1.5,84.5 parent: 30 type: Transform @@ -123568,6 +118177,8 @@ entities: entities: - uid: 20336 components: + - name: Bridge Wallmount Substation + type: MetaData - pos: -2.5,36.5 parent: 30 type: Transform diff --git a/Resources/Maps/meta.yml b/Resources/Maps/meta.yml index 5b2afd3d71a..8fe9832d108 100644 --- a/Resources/Maps/meta.yml +++ b/Resources/Maps/meta.yml @@ -1,49 +1,49 @@ meta: - format: 5 + format: 6 postmapinit: false tilemap: 0: Space 2: FloorArcadeBlue2 3: FloorArcadeRed - 6: FloorAsteroidSand - 10: FloorAsteroidTile - 11: FloorBar - 14: FloorBlueCircuit - 17: FloorCarpetClown - 19: FloorCave - 21: FloorClown - 22: FloorDark - 34: FloorEighties - 37: FloorFreezer - 40: FloorGrass - 41: FloorGrassDark - 42: FloorGrassJungle - 44: FloorGreenCircuit - 48: FloorHydro - 50: FloorLaundry - 51: FloorLino - 53: FloorMetalDiamond - 54: FloorMime - 55: FloorMono - 58: FloorPlastic - 59: FloorRGlass - 60: FloorReinforced - 61: FloorReinforcedHardened - 63: FloorShowroom - 66: FloorShuttlePurple - 70: FloorSnow - 71: FloorSteel - 73: FloorSteelCheckerLight - 76: FloorSteelDirty - 79: FloorSteelMono - 81: FloorSteelPavement - 83: FloorTechMaint - 84: FloorTechMaint2 - 87: FloorWhite - 96: FloorWhitePlastic - 97: FloorWood - 99: Lattice - 100: Plating + 7: FloorAsteroidSand + 11: FloorAsteroidTile + 12: FloorBar + 15: FloorBlueCircuit + 18: FloorCarpetClown + 20: FloorCave + 22: FloorClown + 26: FloorDark + 38: FloorEighties + 41: FloorFreezer + 44: FloorGrass + 45: FloorGrassDark + 46: FloorGrassJungle + 51: FloorGreenCircuit + 55: FloorHydro + 58: FloorLaundry + 59: FloorLino + 61: FloorMetalDiamond + 62: FloorMime + 63: FloorMono + 69: FloorPlastic + 70: FloorRGlass + 71: FloorReinforced + 72: FloorReinforcedHardened + 74: FloorShowroom + 77: FloorShuttlePurple + 81: FloorSnow + 83: FloorSteel + 85: FloorSteelCheckerLight + 88: FloorSteelDirty + 91: FloorSteelMono + 93: FloorSteelPavement + 95: FloorTechMaint + 96: FloorTechMaint2 + 99: FloorWhite + 108: FloorWhitePlastic + 109: FloorWood + 111: Lattice + 112: Plating entities: - proto: "" entities: @@ -67,289 +67,384 @@ entities: - chunks: -1,0: ind: -1,0 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAARYAAAIWAAACFgAAAxYAAAIWAAABFgAAAxYAAAIWAAACFgAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAABYAAAEWAAAAFgAAAhYAAAEWAAADFgAAARYAAAEWAAAAFgAAAhYAAAFkAAAAZAAAAFMAAABkAAAAZAAAAGQAAAAWAAABFgAAABYAAAMWAAAAFgAAAhYAAAEWAAAAFgAAARYAAAIWAAACRwAAAWQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAADFgAAARYAAAAWAAABFgAAABYAAAEWAAAAFgAAA0cAAANkAAAAUwAAAGQAAABkAAAAYwAAAGMAAABkAAAAFgAAAhYAAAMWAAADFgAAARYAAAIWAAADFgAAAxYAAABHAAADVAAAAGQAAABkAAAAZAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAWQAAABTAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAA0cAAAFHAAABRwAAAUcAAAFHAAACRwAAAUcAAAFHAAACRwAAAkcAAANHAAABRwAAAUcAAAJHAAABRwAAA0cAAAJHAAABRwAAAkcAAANHAAADRwAAAkcAAANHAAABRwAAAEcAAANHAAAARwAAAkcAAANHAAABRwAAAUcAAABHAAADRwAAAUcAAANHAAABRwAAAEcAAAFHAAAARwAAA0cAAABHAAADRwAAAUcAAANHAAADRwAAAUcAAAAWAAABFgAAABYAAAFkAAAAZAAAABYAAANkAAAAZAAAAEcAAAFHAAABRwAAAUcAAABHAAABRwAAAkcAAANHAAACZAAAAGQAAABkAAAAZAAAABYAAAIWAAACFgAAAWQAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAAFHAAABZAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAFgAAAWQAAABkAAAAAAAAAAAAAAAAAAAAZAAAAEcAAABHAAACRwAAAmQAAABjAAAAZAAAAGQAAABkAAAAFgAAARYAAAIWAAADZAAAAGQAAABkAAAAYwAAAGQAAABHAAAARwAAAEcAAAAWAAAAAAAAAGQAAAAWAAABDgAAAA4AAAAWAAAADgAAAA4AAAAWAAADZAAAAAAAAABkAAAARwAAA0cAAAJHAAABZAAAAA== + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAACGgAAAAADGgAAAAACGgAAAAABGgAAAAADGgAAAAACGgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAGgAAAAABGgAAAAAAGgAAAAACGgAAAAABGgAAAAADGgAAAAABGgAAAAABGgAAAAAAGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAADGgAAAAAAGgAAAAACGgAAAAABGgAAAAAAGgAAAAABGgAAAAACGgAAAAACUwAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAAAGgAAAAABGgAAAAAAGgAAAAABGgAAAAAAGgAAAAADUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAADGgAAAAABGgAAAAACGgAAAAADGgAAAAADGgAAAAAAUwAAAAADYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAAAGgAAAAABGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAGgAAAAAAAAAAAAAAcAAAAAAAGgAAAAABDwAAAAAADwAAAAAAGgAAAAAADwAAAAAADwAAAAAAGgAAAAADcAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABcAAAAAAA + version: 6 0,0: ind: 0,0 - tiles: FgAAABYAAAIWAAAAFgAAARYAAAIWAAABZAAAABYAAAMWAAAAFgAAAhYAAAAWAAABZAAAAGQAAABkAAAARwAAAxYAAAMWAAACFgAAAhYAAAIWAAACZAAAAGQAAABkAAAAZAAAAGQAAAAWAAAAZAAAAGQAAABkAAAAZAAAAEcAAAMWAAACFgAAAxYAAAIWAAABFgAAAGQAAAAlAAAAJQAAACUAAAAWAAAAFgAAAxYAAAAWAAACFgAAAGQAAABHAAABFgAAAhYAAAMWAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGEAAABhAAABKgAAACoAAABkAAAARwAAAxYAAAIWAAABFgAAAGQAAABjAAAAYwAAAGQAAABhAAADYQAAAWEAAAJhAAADYQAAAmEAAABhAAAAZAAAAEcAAAFkAAAAZAAAAGQAAABkAAAAYwAAAAAAAABkAAAAYQAAAWEAAAJhAAAAYQAAAmEAAANhAAABYQAAAGQAAABHAAABYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAABYAAAEWAAACFgAAAhYAAAAWAAAAFgAAAhYAAABkAAAARwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAABRwAAAEcAAAFHAAAARwAAAkcAAAFHAAAARwAAAUcAAAFHAAADRwAAAUcAAABHAAADRwAAAUcAAANHAAAARwAAA0cAAAJHAAADRwAAAkcAAABHAAACRwAAAEcAAANHAAABRwAAAUcAAANHAAAARwAAAUcAAAJHAAACRwAAAUcAAABHAAACRwAAA0cAAAFHAAACRwAAAEcAAAJHAAACRwAAA0cAAANHAAABRwAAAkcAAANHAAAARwAAAEcAAAJHAAADRwAAAkcAAABkAAAAZAAAAGQAAAAWAAADZAAAAGQAAABkAAAAZAAAAEcAAABHAAAAZAAAAGQAAAAWAAACZAAAAGQAAABkAAAAZAAAABYAAAIWAAABFgAAAxYAAAIWAAACZAAAAEcAAAFHAAAARwAAAEcAAANkAAAAZAAAABYAAAIWAAABFgAAAhYAAAIWAAACFgAAAxYAAAMWAAACFgAAAmQAAABHAAADRwAAA0cAAAFHAAABRwAAAEcAAAIWAAADFgAAARYAAAMWAAACFgAAABYAAAMWAAAAFgAAAhYAAAAWAAABRwAAA0cAAANHAAAARwAAAkcAAAFkAAAAFgAAAxYAAAAWAAACFgAAABYAAAMWAAAAFgAAAhYAAAIWAAABZAAAAEcAAAJHAAACRwAAAUcAAAJHAAABRwAAAA== + tiles: GgAAAAAAGgAAAAACGgAAAAAAGgAAAAABGgAAAAACGgAAAAABcAAAAAAAGgAAAAADGgAAAAAAGgAAAAACGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADGgAAAAADGgAAAAACGgAAAAACGgAAAAACGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADGgAAAAACGgAAAAADGgAAAAACGgAAAAABGgAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAGgAAAAAAGgAAAAADGgAAAAAAGgAAAAACGgAAAAAAcAAAAAAAUwAAAAABGgAAAAACGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAABLgAAAAAALgAAAAAAcAAAAAAAUwAAAAADGgAAAAACGgAAAAABGgAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbQAAAAADbQAAAAABbQAAAAACbQAAAAADbQAAAAACbQAAAAAAbQAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbQAAAAABbQAAAAACbQAAAAAAbQAAAAACbQAAAAADbQAAAAABbQAAAAAAcAAAAAAAUwAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAACGgAAAAAAGgAAAAAAGgAAAAACGgAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAADGgAAAAACGgAAAAACcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAACGgAAAAACGgAAAAACGgAAAAADGgAAAAADGgAAAAACGgAAAAACcAAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAACGgAAAAADGgAAAAABGgAAAAADGgAAAAACGgAAAAAAGgAAAAADGgAAAAAAGgAAAAACGgAAAAAAGgAAAAABUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAGgAAAAADGgAAAAAAGgAAAAACGgAAAAAAGgAAAAADGgAAAAAAGgAAAAACGgAAAAACGgAAAAABcAAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAAA + version: 6 0,-1: ind: 0,-1 - tiles: YQAAAmEAAAFhAAACZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAAAWAAACRwAAAWEAAABhAAAAYQAAAWQAAAAAAAAAZAAAADwAAAAsAAAALAAAACwAAAA8AAAAZAAAAAAAAABkAAAAFgAAAUcAAAFhAAABYQAAAWEAAABkAAAAAAAAAGQAAAA8AAAAPAAAADwAAAA8AAAAPAAAAGQAAAAAAAAAZAAAABYAAABHAAABZAAAAGQAAABkAAAAZAAAAAAAAABkAAAAPAAAADwAAAA8AAAAPAAAADwAAABkAAAAAAAAAGQAAAAWAAACRwAAAUcAAAFkAAAAYwAAAGQAAABjAAAAZAAAAGQAAABkAAAAFgAAAGQAAABkAAAAZAAAAGMAAABkAAAAFgAAAEcAAAFHAAACZAAAAGMAAABkAAAAAAAAAAAAAABjAAAAZAAAABYAAABkAAAAYwAAAAAAAAAAAAAAZAAAABYAAANHAAADRwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAANHAAABRwAAAkcAAAJHAAABRwAAAkcAAAFHAAACRwAAAUcAAAFHAAABRwAAA0cAAANHAAADRwAAAkcAAAJHAAADRwAAAUcAAAJHAAACRwAAAUcAAAJHAAAARwAAAEcAAABHAAAARwAAAkcAAABHAAABRwAAAEcAAAJHAAACZAAAAGQAAABkAAAAFgAAAhYAAAJkAAAAZAAAABYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAARwAAAjMAAAAWAAAAZAAAABYAAAIWAAACZAAAABYAAABhAAADYQAAAmEAAANhAAADYQAAAGQAAABkAAAAZAAAAEcAAAEzAAAAFgAAABYAAAEWAAAAFgAAABYAAAMWAAABYQAAA2EAAAJhAAACYQAAAmEAAAJkAAAAZAAAAGQAAABHAAAAMwAAABYAAABkAAAAFgAAAhYAAANkAAAAFgAAAGEAAAJhAAACYQAAA2EAAANhAAACVAAAAGQAAABkAAAARwAAAWQAAAAWAAACZAAAABYAAAMWAAABZAAAABYAAAFhAAAAYQAAA2EAAANhAAABYQAAAWQAAABkAAAAZAAAAEcAAAFkAAAAZAAAAGQAAAAWAAABFgAAA2QAAABkAAAAYQAAAGEAAAFhAAAAYQAAA2EAAAJkAAAAZAAAAFQAAABHAAABFgAAAhYAAAAWAAAAFgAAAhYAAAEWAAADZAAAAGEAAABhAAACYQAAAmEAAAJhAAACZAAAAGQAAABkAAAARwAAAg== + tiles: bQAAAAACbQAAAAABbQAAAAACcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAACUwAAAAABbQAAAAAAbQAAAAAAbQAAAAABcAAAAAAAAAAAAAAAcAAAAAAARwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGgAAAAABUwAAAAABbQAAAAABbQAAAAABbQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGgAAAAACUwAAAAABUwAAAAABcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAAAUwAAAAABUwAAAAACcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAUwAAAAACOwAAAAAAGgAAAAAAcAAAAAAAGgAAAAACGgAAAAACcAAAAAAAGgAAAAAAbQAAAAADbQAAAAACbQAAAAADbQAAAAADbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABOwAAAAAAGgAAAAAAGgAAAAABGgAAAAAAGgAAAAAAGgAAAAADGgAAAAABbQAAAAADbQAAAAACbQAAAAACbQAAAAACbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAOwAAAAAAGgAAAAAAcAAAAAAAGgAAAAACGgAAAAADcAAAAAAAGgAAAAAAbQAAAAACbQAAAAACbQAAAAADbQAAAAADbQAAAAACYAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAGgAAAAACcAAAAAAAGgAAAAADGgAAAAABcAAAAAAAGgAAAAABbQAAAAAAbQAAAAADbQAAAAADbQAAAAABbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAABbQAAAAAAbQAAAAADbQAAAAACcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAABGgAAAAACGgAAAAAAGgAAAAAAGgAAAAACGgAAAAABGgAAAAADcAAAAAAAbQAAAAAAbQAAAAACbQAAAAACbQAAAAACbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAC + version: 6 -1,-1: ind: -1,-1 - tiles: RwAAAxYAAANkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABhAAADYQAAA2EAAAFhAAADYQAAAmEAAABhAAABYQAAAUcAAAMWAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAYQAAAGEAAABhAAADYQAAAGEAAAJhAAADYQAAAWEAAABHAAABZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGEAAAFhAAABYQAAAGEAAABhAAABYQAAAmEAAABhAAAARwAAABYAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGEAAAJkAAAAZAAAAEcAAAAWAAACZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAYwAAAGQAAABHAAACRwAAAUcAAAJHAAADRwAAA0cAAAFHAAABFgAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGMAAABkAAAARwAAAkcAAAJHAAACRwAAAUcAAAFHAAAARwAAA2QAAABkAAAAVAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAABRwAAAUcAAAJHAAAARwAAAEcAAABHAAABRwAAAUcAAAFHAAADRwAAA0cAAAFHAAADRwAAAkcAAAJHAAADRwAAA0cAAANHAAABRwAAA0cAAABHAAACRwAAAUcAAANHAAAARwAAAUcAAABHAAACRwAAA0cAAAFHAAAARwAAA0cAAAJHAAADRwAAAEcAAANHAAABKAAAACgAAAAoAAAARwAAAGQAAABkAAAAFgAAABYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAADRwAAAkcAAAMWAAACZAAAABYAAAIWAAABZAAAABYAAAAzAAAAMwAAADMAAAAzAAAAMwAAADMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAACFgAAABYAAAEWAAAAMwAAADMAAAAzAAAAMwAAADMAAAAzAAAAFgAAAGEAAAJhAAACYQAAAWEAAAFkAAAAFgAAAxYAAAJkAAAAFgAAADMAAAAzAAAAMwAAADMAAAAzAAAAMwAAABYAAANhAAACYQAAAmEAAANhAAABFgAAABYAAAIWAAACZAAAABYAAABkAAAAZAAAAGQAAAAWAAADZAAAAGQAAAAWAAABYQAAAGEAAAFhAAABYQAAAmQAAAAWAAABFgAAA2QAAABkAAAAZAAAABYAAAEWAAADFgAAAxYAAAMWAAADZAAAABYAAAMWAAACFgAAAxYAAABkAAAAFgAAARYAAAEWAAACFgAAAhYAAAEWAAADFgAAARYAAAIWAAABFgAAAg== + tiles: UwAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAbQAAAAADbQAAAAADbQAAAAABbQAAAAADbQAAAAACbQAAAAAAbQAAAAABbQAAAAABUwAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAADbQAAAAAAbQAAAAACbQAAAAADbQAAAAABbQAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAABbQAAAAABbQAAAAAAbQAAAAAAbQAAAAABbQAAAAACbQAAAAAAbQAAAAAAUwAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACcAAAAAAAcAAAAAAAUwAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAAAUwAAAAADUwAAAAABLAAAAAAALAAAAAAALAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAADGgAAAAACcAAAAAAAGgAAAAACGgAAAAABcAAAAAAAGgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAABGgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAGgAAAAAAbQAAAAACbQAAAAACbQAAAAABbQAAAAABcAAAAAAAGgAAAAADGgAAAAACcAAAAAAAGgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAGgAAAAADbQAAAAACbQAAAAACbQAAAAADbQAAAAABGgAAAAAAGgAAAAACGgAAAAACcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAGgAAAAABbQAAAAAAbQAAAAABbQAAAAABbQAAAAACcAAAAAAAGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAADGgAAAAADGgAAAAADcAAAAAAAGgAAAAADGgAAAAACGgAAAAADGgAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAACGgAAAAACGgAAAAABGgAAAAADGgAAAAABGgAAAAACGgAAAAABGgAAAAAC + version: 6 -2,-1: ind: -2,-1 - tiles: FgAAAhYAAAMWAAADFgAAAGQAAAAWAAADFgAAAhYAAAJkAAAARwAAAkcAAANHAAACZAAAABYAAAJHAAADRwAAAGQAAAAWAAACZAAAAGQAAABkAAAAZAAAABYAAANkAAAAZAAAAEcAAAFHAAACRwAAAmQAAAAWAAAARwAAAEcAAANhAAABYQAAA2EAAAJhAAACYQAAAmEAAAJhAAAAZAAAABYAAANHAAAARwAAAEcAAABkAAAAFgAAAEcAAANHAAACYQAAAmEAAABhAAAAYQAAAGEAAAJhAAAAYQAAAWQAAAAWAAADRwAAAUcAAAJHAAABZAAAABYAAABHAAABRwAAAmEAAANhAAACYQAAAmEAAAFhAAABYQAAAWEAAABkAAAAFgAAAUcAAAFHAAAARwAAAmQAAAAWAAAARwAAAkcAAABhAAABYQAAAWEAAAJhAAACYQAAA2EAAABhAAABZAAAAGQAAABHAAACRwAAAEcAAAFkAAAAFgAAAUcAAANHAAAAYQAAAWEAAAFhAAACYQAAAWEAAANhAAABYQAAAmEAAAJkAAAARwAAAEcAAAJHAAABZAAAAGQAAABHAAABZAAAAGEAAANhAAABYQAAAGEAAANhAAABYQAAAWEAAAJhAAAAYQAAAUcAAANHAAAARwAAAkcAAABHAAACRwAAA0cAAABhAAABYQAAA2EAAABhAAACYQAAAmEAAABhAAAAYQAAA2EAAAJHAAABRwAAA0cAAAFHAAADRwAAAkcAAAFHAAADYQAAA2EAAAFhAAADYQAAAWEAAANhAAADYQAAA2EAAABkAAAARwAAAUcAAAFHAAADZAAAAGQAAABHAAADKAAAAGEAAANkAAAAZAAAABYAAANkAAAAZAAAABYAAAFkAAAAZAAAAEcAAAFHAAACRwAAAGQAAAAWAAAARwAAAUcAAANhAAABYQAAAmQAAAAWAAACFgAAAmQAAAAWAAACFgAAAGQAAABHAAADRwAAAUcAAAJkAAAAZAAAAGQAAABkAAAAYQAAA2EAAANkAAAAFgAAAxYAAAJkAAAAFgAAAhYAAANkAAAARwAAA0cAAAFHAAAAZAAAAGEAAABhAAACYQAAAWEAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAADRwAAABYAAABhAAABYQAAAmEAAABHAAACRwAAAkcAAAFHAAABRwAAAUcAAAJHAAADRwAAAkcAAAFHAAAARwAAA0cAAAJkAAAAYQAAA2EAAABhAAACRwAAAUcAAAFHAAACRwAAAkcAAAJHAAACRwAAAEcAAABHAAADRwAAAEcAAAFHAAABZAAAAGEAAABhAAAAYQAAAg== + tiles: GgAAAAACGgAAAAADGgAAAAADGgAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAACcAAAAAAAUwAAAAACUwAAAAADUwAAAAACcAAAAAAAGgAAAAACUwAAAAADUwAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAACcAAAAAAAGgAAAAAAUwAAAAAAUwAAAAADbQAAAAABbQAAAAADbQAAAAACbQAAAAACbQAAAAACbQAAAAACbQAAAAAAcAAAAAAAGgAAAAADUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAGgAAAAAAUwAAAAADUwAAAAACbQAAAAACbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAACbQAAAAAAbQAAAAABcAAAAAAAGgAAAAADUwAAAAABUwAAAAACUwAAAAABcAAAAAAAGgAAAAAAUwAAAAABUwAAAAACbQAAAAADbQAAAAACbQAAAAACbQAAAAABbQAAAAABbQAAAAABbQAAAAAAcAAAAAAAGgAAAAABUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAGgAAAAAAUwAAAAACUwAAAAAAbQAAAAABbQAAAAABbQAAAAACbQAAAAACbQAAAAADbQAAAAAAbQAAAAABcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAGgAAAAABUwAAAAADUwAAAAAAbQAAAAABbQAAAAABbQAAAAACbQAAAAABbQAAAAADbQAAAAABbQAAAAACbQAAAAACcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAbQAAAAADbQAAAAABbQAAAAAAbQAAAAADbQAAAAABbQAAAAABbQAAAAACbQAAAAAAbQAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAbQAAAAABbQAAAAADbQAAAAAAbQAAAAACbQAAAAACbQAAAAAAbQAAAAAAbQAAAAADbQAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAADbQAAAAADbQAAAAABbQAAAAADbQAAAAABbQAAAAADbQAAAAADbQAAAAADbQAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAUwAAAAADLAAAAAAAbQAAAAADcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAAAcAAAAAAAGgAAAAAAUwAAAAABUwAAAAADbQAAAAABbQAAAAACcAAAAAAAGgAAAAACGgAAAAACcAAAAAAAGgAAAAACGgAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAADcAAAAAAAGgAAAAADGgAAAAACcAAAAAAAGgAAAAACGgAAAAADcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbQAAAAABbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAAAGgAAAAAAbQAAAAABbQAAAAACbQAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAbQAAAAADbQAAAAAAbQAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAC + version: 6 -2,0: ind: -2,0 - tiles: RwAAAUcAAAFHAAABRwAAAkcAAANHAAAARwAAAkcAAAFHAAABRwAAAEcAAANHAAACZAAAAGEAAANhAAADYQAAAWQAAABkAAAAZAAAAGQAAABHAAABRwAAAmQAAABkAAAAZAAAAEcAAAJHAAAARwAAAGQAAAAWAAAAFgAAAhYAAAFHAAABRwAAAWQAAABHAAAARwAAAEcAAAFHAAACRwAAA2QAAABHAAACRwAAAUcAAANkAAAAZAAAAGQAAABkAAAARwAAAEcAAANHAAAARwAAAkcAAABHAAABRwAAAEcAAAFkAAAARwAAAkcAAANHAAADRwAAAGQAAABHAAACZAAAAEcAAANHAAACRwAAAUcAAAJHAAADRwAAAEcAAABHAAAARwAAAkcAAABHAAAARwAAAUcAAANHAAACRwAAA0cAAAFHAAAARwAAAWQAAABHAAABRwAAAUcAAANHAAADRwAAAEcAAAFHAAACRwAAA0cAAANHAAACRwAAAGQAAABHAAABRwAAA0cAAAFkAAAARwAAAEcAAAJHAAACRwAAAkcAAANkAAAARwAAAUcAAANHAAADRwAAAGQAAABHAAABRwAAAEcAAABHAAAAZAAAAEcAAAJHAAACRwAAAUcAAABHAAAAZAAAAEcAAANHAAAARwAAAWQAAABkAAAAZAAAAGQAAABHAAAARwAAAGQAAABHAAADRwAAAkcAAABHAAACRwAAAGQAAABHAAABRwAAAUcAAANHAAADRwAAA0cAAAJHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAARwAAAkcAAABHAAAARwAAAEcAAANHAAABRwAAA0cAAAFHAAACRwAAAkcAAANkAAAAZAAAAGQAAABkAAAAVAAAAEcAAANHAAABRwAAAUcAAAFHAAAARwAAAkcAAAFHAAACRwAAA0cAAABHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAAFkAAAARwAAA0cAAABHAAABRwAAA2QAAABkAAAAZAAAAEcAAAJHAAABRwAAA0cAAAFHAAAARwAAAUcAAANHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABHAAACRwAAAEcAAAFHAAAARwAAA0cAAABHAAAARwAAA2QAAABHAAABRwAAA2EAAANhAAACZAAAAGQAAABkAAAARwAAAEcAAAFHAAACRwAAA0cAAANHAAAARwAAA0cAAAFkAAAARwAAA0cAAAJhAAADYQAAA2QAAABkAAAAZAAAAEcAAAFHAAACRwAAAkcAAAFHAAABRwAAAUcAAAFHAAABZAAAAA== + tiles: UwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAbQAAAAADbQAAAAADbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAABUwAAAAABUwAAAAABcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAADcAAAAAAAUwAAAAACUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABcAAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAAAcAAAAAAAUwAAAAACcAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAABcAAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAABcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAADcAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAUwAAAAABUwAAAAADbQAAAAADbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAUwAAAAADUwAAAAACbQAAAAADbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAABcAAAAAAA + version: 6 1,0: ind: 1,0 - tiles: RwAAAEcAAANkAAAAFgAAARYAAAAWAAACCwAAAgsAAAELAAACCwAAAgsAAAELAAAACwAAAgsAAAAWAAABFgAAAkcAAANHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAACwAAAwsAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAAUcAAAJHAAADRwAAAUcAAAJHAAACRwAAA0cAAABHAAACRwAAAkcAAABHAAACRwAAAEcAAAFHAAAARwAAA0cAAANHAAABRwAAA0cAAAJHAAAARwAAA0cAAANHAAAARwAAA0cAAAJHAAABRwAAAEcAAAJHAAACRwAAAEcAAANHAAACRwAAAUcAAABHAAADRwAAAkcAAANHAAADRwAAAUcAAABHAAADRwAAAEcAAANHAAADRwAAAkcAAANHAAACRwAAAGQAAABkAAAAZAAAAEcAAABkAAAAZAAAAGQAAAAWAAACFgAAAWQAAABUAAAAZAAAAGQAAABkAAAARwAAA0cAAAFkAAAARwAAAEcAAANHAAAARwAAAEcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAZAAAAEcAAABHAAABZAAAAEcAAABHAAABRwAAA0cAAAFHAAACZAAAAFMAAABTAAAAUwAAAGQAAABkAAAAAAAAAGQAAABHAAAARwAAAGQAAABHAAADRwAAAUcAAABHAAACRwAAAmQAAABTAAAAUwAAAGQAAABkAAAAZAAAAAAAAABkAAAARwAAAUcAAAJkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAABFgAAAVQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAADFgAAA2QAAABHAAADRwAAAxYAAAAWAAADFgAAARYAAABkAAAAZAAAAEcAAANHAAAARwAAAkcAAABHAAAARwAAAUcAAANHAAABRwAAA0cAAAFHAAABRwAAAUcAAAJHAAABZAAAAGQAAABHAAAARwAAAUcAAAJHAAAARwAAAUcAAANHAAADRwAAAkcAAANHAAADRwAAAEcAAAJHAAABRwAAA2QAAAARAAAARwAAAEcAAAFHAAABRwAAAUcAAAFHAAABRwAAAUcAAAJHAAAARwAAAUcAAABHAAADRwAAAEcAAABkAAAAEQAAAA== + tiles: UwAAAAAAUwAAAAADcAAAAAAAGgAAAAABGgAAAAAAGgAAAAACDAAAAAACDAAAAAABDAAAAAACDAAAAAACDAAAAAABDAAAAAAADAAAAAACDAAAAAAAGgAAAAABGgAAAAACUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADAAAAAADDAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAABYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADcAAAAAAAUwAAAAADUwAAAAADGgAAAAAAGgAAAAADGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAADcAAAAAAAEgAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAEgAAAAAA + version: 6 1,-1: ind: 1,-1 - tiles: RwAAAUcAAABHAAABMAAAAGQAAAAwAAAAMAAAADAAAAAwAAAAMAAAADAAAABRAAADMAAAADAAAAAwAAAAMAAAAEcAAAJHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAAmQAAAAWAAACYQAAA2EAAAJhAAABYQAAAGEAAABkAAAASQAAAEkAAABJAAAASQAAAEkAAABJAAAARwAAA0cAAANkAAAAFgAAAWEAAAJhAAABYQAAA2EAAAFhAAADZAAAAEkAAABJAAAASQAAAEkAAABJAAAASQAAAEcAAANHAAACZAAAAGQAAABhAAABZAAAAGQAAABkAAAAZAAAAGQAAABJAAAASQAAAEkAAABJAAAASQAAAEkAAABHAAADRwAAAWQAAAAWAAACFgAAARYAAAEWAAAAFgAAAxYAAABkAAAASQAAAEkAAABJAAAASQAAAEkAAABJAAAARwAAAEcAAAFkAAAAFgAAAxYAAAMWAAABFgAAABYAAAAWAAACRwAAAEkAAABJAAAASQAAAEkAAABJAAAASQAAAEcAAABHAAABZAAAABYAAAAWAAACFgAAAhYAAAEWAAACFgAAAmQAAABHAAAAFgAAARYAAAIWAAAAFgAAAxYAAAJHAAADRwAAA2QAAAAWAAAAFgAAARYAAAAWAAACFgAAAxYAAAEWAAADCwAAAxYAAAAWAAACFgAAAhYAAAEWAAADRwAAAkcAAAJkAAAAFgAAAxYAAAEWAAAAFgAAABYAAAIWAAABFgAAAwsAAAMLAAABCwAAAwsAAAILAAABCwAAA0cAAABHAAAAZAAAABYAAAEWAAADFgAAAhYAAAMWAAABFgAAAhYAAAELAAABCwAAAQsAAAMLAAAACwAAAQsAAABHAAADRwAAAGQAAAALAAACCwAAAgsAAAELAAABCwAAAgsAAAALAAADCwAAAQsAAAELAAADCwAAAQsAAAMLAAACRwAAAUcAAAELAAADCwAAAgsAAAMLAAAACwAAAQsAAAALAAACCwAAAgsAAAMLAAAACwAAAQsAAAILAAACCwAAAUcAAABHAAAACwAAAwsAAAILAAADCwAAAgsAAAILAAAACwAAAwsAAAILAAABCwAAAwsAAAMLAAABCwAAAwsAAABHAAAARwAAA2QAAAALAAACCwAAAAsAAAMLAAABCwAAAAsAAAMLAAAACwAAAQsAAAILAAAACwAAAwsAAAALAAADRwAAAEcAAAJkAAAAFgAAAhYAAAIWAAAACwAAAwsAAAMLAAABCwAAAwsAAAMLAAABCwAAAwsAAAEWAAAAFgAAAg== + tiles: UwAAAAABUwAAAAAAUwAAAAABNwAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAXQAAAAADNwAAAAAANwAAAAAANwAAAAAANwAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAGgAAAAACbQAAAAADbQAAAAACbQAAAAABbQAAAAAAbQAAAAAAcAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAUwAAAAADUwAAAAADcAAAAAAAGgAAAAABbQAAAAACbQAAAAABbQAAAAADbQAAAAABbQAAAAADcAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAUwAAAAADUwAAAAABcAAAAAAAGgAAAAACGgAAAAABGgAAAAABGgAAAAAAGgAAAAADGgAAAAAAcAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAUwAAAAAAUwAAAAABcAAAAAAAGgAAAAADGgAAAAADGgAAAAABGgAAAAAAGgAAAAAAGgAAAAACUwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAUwAAAAAAUwAAAAABcAAAAAAAGgAAAAAAGgAAAAACGgAAAAACGgAAAAABGgAAAAACGgAAAAACcAAAAAAAUwAAAAAAGgAAAAABGgAAAAACGgAAAAAAGgAAAAADGgAAAAACUwAAAAADUwAAAAADcAAAAAAAGgAAAAAAGgAAAAABGgAAAAAAGgAAAAACGgAAAAADGgAAAAABGgAAAAADDAAAAAADGgAAAAAAGgAAAAACGgAAAAACGgAAAAABGgAAAAADUwAAAAACUwAAAAACcAAAAAAAGgAAAAADGgAAAAABGgAAAAAAGgAAAAAAGgAAAAACGgAAAAABGgAAAAADDAAAAAADDAAAAAABDAAAAAADDAAAAAACDAAAAAABDAAAAAADUwAAAAAAUwAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAACGgAAAAADGgAAAAABGgAAAAACGgAAAAABDAAAAAABDAAAAAABDAAAAAADDAAAAAAADAAAAAABDAAAAAAAUwAAAAADUwAAAAAAcAAAAAAADAAAAAACDAAAAAACDAAAAAABDAAAAAABDAAAAAACDAAAAAAADAAAAAADDAAAAAABDAAAAAABDAAAAAADDAAAAAABDAAAAAADDAAAAAACUwAAAAABUwAAAAABDAAAAAADDAAAAAACDAAAAAADDAAAAAAADAAAAAABDAAAAAAADAAAAAACDAAAAAACDAAAAAADDAAAAAAADAAAAAABDAAAAAACDAAAAAACDAAAAAABUwAAAAAAUwAAAAAADAAAAAADDAAAAAACDAAAAAADDAAAAAACDAAAAAACDAAAAAAADAAAAAADDAAAAAACDAAAAAABDAAAAAADDAAAAAADDAAAAAABDAAAAAADDAAAAAAAUwAAAAAAUwAAAAADcAAAAAAADAAAAAACDAAAAAAADAAAAAADDAAAAAABDAAAAAAADAAAAAADDAAAAAAADAAAAAABDAAAAAACDAAAAAAADAAAAAADDAAAAAAADAAAAAADUwAAAAAAUwAAAAACcAAAAAAAGgAAAAACGgAAAAACGgAAAAAADAAAAAADDAAAAAADDAAAAAABDAAAAAADDAAAAAADDAAAAAABDAAAAAADDAAAAAABGgAAAAAAGgAAAAAC + version: 6 -1,-2: ind: -1,-2 - tiles: VwAAAVcAAAFXAAADVwAAAlcAAABXAAACVwAAAlcAAABXAAACVwAAA1cAAAFkAAAARwAAAUcAAAFHAAADZAAAAFcAAAJXAAADVwAAAVcAAABXAAAAZAAAAGQAAABkAAAAYAAAAmQAAABkAAAAZAAAAEcAAANHAAABRwAAAUcAAAFXAAAAVwAAA1cAAANXAAADVwAAA1cAAAFXAAADVwAAA1cAAAFXAAABVwAAAmQAAABHAAAARwAAAEcAAABkAAAAVwAAA1cAAAFXAAACVwAAAFcAAABkAAAAVwAAA1cAAAFXAAACVwAAAlcAAABkAAAARwAAA0cAAANHAAAAZAAAAGQAAABkAAAAZAAAAFcAAABXAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAAARwAAAWQAAABXAAADVwAAAmQAAABXAAADVwAAAVcAAAFXAAADVwAAAlcAAAFXAAACVwAAAGQAAABHAAADRwAAAUcAAABkAAAAVwAAAlcAAAFkAAAAVwAAA1cAAAFXAAABVwAAAFcAAABXAAABVwAAAVcAAANXAAADRwAAAUcAAAFHAAAAVwAAAVcAAAFXAAABZAAAAFcAAAFXAAABVwAAA1cAAAFXAAAAVwAAAFcAAAJXAAAAVwAAAkcAAAJHAAADRwAAAFcAAAJXAAAAVwAAAmQAAABXAAABVwAAAVcAAAFXAAABVwAAAlcAAANXAAACVwAAAmQAAABHAAACRwAAA0cAAAFkAAAAVwAAAVcAAANkAAAAZAAAAGQAAABkAAAAVwAAAVcAAAJkAAAAZAAAAGQAAABkAAAARwAAAkcAAANHAAADZAAAAGQAAABkAAAAZAAAAEcAAAFHAAADRwAAAEcAAAFHAAAARwAAAkcAAAFHAAAARwAAAkcAAANHAAADRwAAAUcAAABHAAABRwAAAEcAAABHAAAARwAAAEcAAAJHAAADRwAAAkcAAABHAAABRwAAA0cAAANHAAAARwAAAUcAAAFHAAAARwAAA0cAAANHAAABRwAAAEcAAANHAAAARwAAA0cAAAFHAAABRwAAA0cAAAJHAAAARwAAAEcAAANHAAADRwAAAUcAAAJHAAAARwAAAEcAAABHAAADRwAAAEcAAAFHAAAARwAAAEcAAAFHAAAARwAAAkcAAABHAAABRwAAAkcAAANkAAAAZAAAAGQAAABUAAAAZAAAABYAAAIWAAADZAAAAGQAAABkAAAAYQAAA2QAAABkAAAAZAAAAGQAAABkAAAARwAAABYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABhAAACYQAAA2EAAANhAAACYQAAAmEAAAFhAAABYQAAAQ== + tiles: YwAAAAABYwAAAAABYwAAAAADYwAAAAACYwAAAAAAYwAAAAACYwAAAAACYwAAAAAAYwAAAAACYwAAAAADYwAAAAABcAAAAAAAUwAAAAABUwAAAAABUwAAAAADcAAAAAAAYwAAAAACYwAAAAADYwAAAAABYwAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbAAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAABYwAAAAAAYwAAAAADYwAAAAADYwAAAAADYwAAAAADYwAAAAABYwAAAAADYwAAAAADYwAAAAABYwAAAAABYwAAAAACcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAYwAAAAADYwAAAAABYwAAAAACYwAAAAAAYwAAAAAAcAAAAAAAYwAAAAADYwAAAAABYwAAAAACYwAAAAACYwAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAYwAAAAADYwAAAAACcAAAAAAAYwAAAAADYwAAAAABYwAAAAABYwAAAAADYwAAAAACYwAAAAABYwAAAAACYwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAYwAAAAACYwAAAAABcAAAAAAAYwAAAAADYwAAAAABYwAAAAABYwAAAAAAYwAAAAAAYwAAAAABYwAAAAABYwAAAAADYwAAAAADUwAAAAABUwAAAAABUwAAAAAAYwAAAAABYwAAAAABYwAAAAABcAAAAAAAYwAAAAABYwAAAAABYwAAAAADYwAAAAABYwAAAAAAYwAAAAAAYwAAAAACYwAAAAAAYwAAAAACUwAAAAACUwAAAAADUwAAAAAAYwAAAAACYwAAAAAAYwAAAAACcAAAAAAAYwAAAAABYwAAAAABYwAAAAABYwAAAAABYwAAAAACYwAAAAADYwAAAAACYwAAAAACcAAAAAAAUwAAAAACUwAAAAADUwAAAAABcAAAAAAAYwAAAAABYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAADbQAAAAADbQAAAAACbQAAAAACbQAAAAABbQAAAAABbQAAAAAB + version: 6 0,-2: ind: 0,-2 - tiles: RwAAACwAAAAsAAAALAAAAEcAAANkAAAAVwAAAlcAAAEWAAAAZAAAAFcAAANXAAAARwAAARYAAANHAAABRwAAAEcAAAEsAAAALAAAACwAAABHAAABZAAAAFcAAABXAAACVwAAA2QAAABXAAAAVwAAAUcAAAIWAAAARwAAAEcAAANHAAADLAAAACwAAAAsAAAARwAAAWQAAABXAAABVwAAAhYAAAJkAAAAVwAAAVcAAAFXAAACVwAAAFcAAABXAAACRwAAAUcAAABHAAACRwAAAEcAAAFkAAAAVwAAA1cAAAMWAAACZAAAAFcAAANXAAAAVwAAAVcAAAFXAAABVwAAA2QAAABHAAAARwAAAEcAAANkAAAAZAAAAFMAAABTAAAAZAAAAGQAAABHAAAARwAAAUcAAABkAAAAZAAAAGQAAABXAAAAVwAAAFcAAANXAAADVwAAA1cAAANXAAAAVwAAAVcAAAFkAAAARwAAAEcAAAJHAAADZAAAAGQAAABkAAAAVwAAAEcAAAFHAAADRwAAAUcAAABHAAABRwAAAlcAAAJXAAADZAAAAEcAAAJHAAABRwAAAWQAAAA1AAAAZAAAAFcAAAJHAAACRwAAAkcAAAFHAAADRwAAA0cAAAJXAAAAVwAAAWQAAABHAAACRwAAAkcAAANkAAAANQAAAGQAAABXAAACVwAAAlcAAAFXAAACVwAAA1cAAABXAAAAVwAAAVcAAAFkAAAARwAAAEcAAAFHAAABZAAAADUAAABkAAAAZAAAAGQAAABkAAAAVwAAA1cAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAADRwAAAkcAAAJHAAACRwAAA0cAAAJHAAADRwAAAWQAAAAWAAABFgAAAxYAAAIWAAABZAAAAGQAAABHAAADRwAAAkcAAAJHAAADRwAAAEcAAAFHAAABRwAAAUcAAANHAAABRwAAAEcAAAFHAAAARwAAAkcAAABHAAACRwAAA0cAAAJHAAAARwAAA0cAAAFHAAADRwAAAUcAAAJHAAABRwAAAEcAAAFHAAABRwAAAUcAAANHAAADRwAAAkcAAANHAAABRwAAAUcAAABHAAAARwAAAkcAAAFHAAACRwAAAEcAAANHAAACRwAAAkcAAAJHAAABRwAAAEcAAAJhAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABYQAAA2EAAAJhAAADZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAAAWAAADRwAAAA== + tiles: UwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAUwAAAAADcAAAAAAAYwAAAAACYwAAAAABGgAAAAAAcAAAAAAAYwAAAAADYwAAAAAAUwAAAAABGgAAAAADUwAAAAABUwAAAAAAUwAAAAABMwAAAAAAMwAAAAAAMwAAAAAAUwAAAAABcAAAAAAAYwAAAAAAYwAAAAACYwAAAAADcAAAAAAAYwAAAAAAYwAAAAABUwAAAAACGgAAAAAAUwAAAAAAUwAAAAADUwAAAAADMwAAAAAAMwAAAAAAMwAAAAAAUwAAAAABcAAAAAAAYwAAAAABYwAAAAACGgAAAAACcAAAAAAAYwAAAAABYwAAAAABYwAAAAACYwAAAAAAYwAAAAAAYwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAYwAAAAADYwAAAAADGgAAAAACcAAAAAAAYwAAAAADYwAAAAAAYwAAAAABYwAAAAABYwAAAAABYwAAAAADcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAADYwAAAAADYwAAAAADYwAAAAADYwAAAAAAYwAAAAABYwAAAAABcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAACYwAAAAACYwAAAAADcAAAAAAAUwAAAAACUwAAAAABUwAAAAABcAAAAAAAPQAAAAAAcAAAAAAAYwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAACYwAAAAAAYwAAAAABcAAAAAAAUwAAAAACUwAAAAACUwAAAAADcAAAAAAAPQAAAAAAcAAAAAAAYwAAAAACYwAAAAACYwAAAAABYwAAAAACYwAAAAADYwAAAAAAYwAAAAAAYwAAAAABYwAAAAABcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAADUwAAAAABcAAAAAAAGgAAAAABGgAAAAADGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAACbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABbQAAAAADbQAAAAACbQAAAAADcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADUwAAAAAA + version: 6 -2,-2: ind: -2,-2 - tiles: VwAAA1cAAABXAAADVwAAAVcAAAFXAAACVwAAAlcAAAJXAAABZAAAAFcAAABXAAACVwAAA1cAAABkAAAAVwAAAVcAAAFXAAAAVwAAAVcAAAFXAAABVwAAA1cAAABXAAABVwAAA2QAAABXAAADVwAAA1cAAAFXAAADFgAAAlcAAAJXAAADVwAAAlcAAABXAAAAVwAAAFcAAAFXAAABVwAAAFcAAAFkAAAAVwAAAFcAAANXAAADVwAAARYAAABXAAAAZAAAAGQAAABkAAAAZAAAAFcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAABZAAAAGQAAABkAAAAVwAAA2QAAABkAAAAVwAAAFcAAAFXAAADVwAAAFcAAANkAAAAVwAAAFcAAABXAAABVwAAAFcAAAJXAAAAZAAAAGQAAABTAAAAZAAAAFcAAAJXAAAAVwAAAlcAAAJXAAACZAAAAFcAAAFXAAADVwAAAFcAAABXAAAAVwAAA1cAAAFXAAACZAAAAGQAAABHAAADRwAAAEcAAAJHAAADVwAAAmQAAABXAAAAVwAAA1cAAAJXAAABVwAAA1cAAAJXAAADVwAAATIAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAlcAAANXAAABVwAAAlcAAANXAAAAVwAAAVcAAAJkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAZAAAAFcAAABXAAADVwAAAVcAAABXAAACVwAAAVcAAAFXAAAAMgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAAAVwAAAVcAAAJXAAABVwAAAlcAAAJXAAACVwAAAGQAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAABYAAANHAAACRwAAA0cAAANHAAAARwAAAEcAAAJHAAABZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAACRwAAAkcAAAFHAAAARwAAAUcAAAFHAAACRwAAARYAAAMWAAABFgAAARYAAANkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAAARwAAAEcAAAJHAAADRwAAA0cAAAEWAAABFgAAAxYAAAAWAAAAZAAAABYAAAEWAAACFgAAAWQAAABHAAACRwAAAEcAAANkAAAAZAAAAGQAAABHAAACFgAAAxYAAAIWAAABFgAAAmQAAAAWAAADFgAAARYAAABkAAAARwAAA0cAAAJHAAACZAAAABYAAANHAAAARwAAAQ== + tiles: YwAAAAADYwAAAAAAYwAAAAADYwAAAAABYwAAAAABYwAAAAACYwAAAAACYwAAAAACYwAAAAABcAAAAAAAYwAAAAAAYwAAAAACYwAAAAADYwAAAAAAcAAAAAAAYwAAAAABYwAAAAABYwAAAAAAYwAAAAABYwAAAAABYwAAAAABYwAAAAADYwAAAAAAYwAAAAABYwAAAAADcAAAAAAAYwAAAAADYwAAAAADYwAAAAABYwAAAAADGgAAAAACYwAAAAACYwAAAAADYwAAAAACYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAABYwAAAAABYwAAAAAAYwAAAAABcAAAAAAAYwAAAAAAYwAAAAADYwAAAAADYwAAAAABGgAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAABYwAAAAADYwAAAAAAYwAAAAADcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAABYwAAAAAAYwAAAAACYwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYwAAAAACYwAAAAAAYwAAAAACYwAAAAACYwAAAAACcAAAAAAAYwAAAAABYwAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAADYwAAAAABYwAAAAACcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAADYwAAAAACcAAAAAAAYwAAAAAAYwAAAAADYwAAAAACYwAAAAABYwAAAAADYwAAAAACYwAAAAADYwAAAAABOgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAADYwAAAAABYwAAAAACYwAAAAADYwAAAAAAYwAAAAABYwAAAAACcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAYwAAAAAAYwAAAAADYwAAAAABYwAAAAAAYwAAAAACYwAAAAABYwAAAAABYwAAAAAAOgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAABYwAAAAACYwAAAAABYwAAAAACYwAAAAACYwAAAAACYwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAGgAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAABGgAAAAADGgAAAAABGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAABGgAAAAABGgAAAAADGgAAAAAAGgAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAABcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACGgAAAAADGgAAAAACGgAAAAABGgAAAAACcAAAAAAAGgAAAAADGgAAAAABGgAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACcAAAAAAAGgAAAAADUwAAAAAAUwAAAAAB + version: 6 1,-2: ind: 1,-2 - tiles: FgAAA2QAAABHAAABRwAAAVcAAAFXAAACVwAAAjwAAAA8AAAAPAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAANkAAAARwAAAEcAAANXAAACVwAAAVcAAAI8AAAAPAAAADwAAABkAAAANQAAADUAAABTAAAAZAAAAGQAAABXAAABVwAAAlcAAANXAAABVwAAAVcAAAFXAAABPAAAADwAAAA8AAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAVwAAA2QAAABXAAADVwAAAlcAAANXAAABVwAAATwAAAA8AAAAPAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAEcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAwAAAAMAAAADAAAABkAAAAMAAAAFEAAAAwAAAAMAAAADAAAAAwAAAAMAAAADAAAAAwAAAAMAAAADAAAABkAAAAMAAAAFEAAAFRAAADUQAAAVEAAAFRAAAAUQAAAVEAAAFRAAABUQAAA1EAAANRAAADUQAAAVEAAABRAAACZAAAADAAAABRAAACMAAAAGQAAAAwAAAAMAAAAFEAAAAwAAAAMAAAAFEAAAIwAAAAMAAAAFEAAAIwAAAAMAAAAGQAAAAoAAAARwAAASgAAABkAAAAMAAAADAAAABRAAADUQAAAVEAAAJRAAADUQAAAFEAAANRAAACMAAAACkAAAJHAAAARwAAAEcAAAIwAAAAMAAAADAAAAAwAAAAUQAAATAAAAAoAAAAKAAAACgAAAAwAAAAUQAAAjAAAAApAAABRwAAAEcAAAFHAAAAMAAAADAAAAAwAAAAMAAAAFEAAAAwAAAAKAAAACgAAAAoAAAAMAAAAFEAAAAwAAAAMAAAAEcAAABHAAADRwAAADAAAAAoAAAAMAAAAFEAAAFRAAACUQAAAlEAAABRAAAAUQAAAVEAAANRAAAAUQAAA1EAAABHAAAARwAAAEcAAAMwAAAAKAAAADAAAAAwAAAAMAAAAFEAAANRAAABUQAAA1EAAABRAAADMAAAADAAAAAwAAAARwAAAEcAAAJHAAADMAAAACgAAAAwAAAAUQAAAVEAAAJRAAACUQAAAlEAAAFRAAAAUQAAA1EAAABRAAACMAAAAA== + tiles: GgAAAAADcAAAAAAAUwAAAAABUwAAAAABYwAAAAABYwAAAAACYwAAAAACRwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAUwAAAAAAUwAAAAADYwAAAAACYwAAAAABYwAAAAACRwAAAAAARwAAAAAARwAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAACYwAAAAADYwAAAAABYwAAAAABYwAAAAABYwAAAAABRwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAYwAAAAADcAAAAAAAYwAAAAADYwAAAAACYwAAAAADYwAAAAABYwAAAAABRwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAANwAAAAAAXQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAANwAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAACcAAAAAAANwAAAAAAXQAAAAACNwAAAAAAcAAAAAAANwAAAAAANwAAAAAAXQAAAAAANwAAAAAANwAAAAAAXQAAAAACNwAAAAAANwAAAAAAXQAAAAACNwAAAAAANwAAAAAAcAAAAAAALAAAAAAAUwAAAAABLAAAAAAAcAAAAAAANwAAAAAANwAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAACNwAAAAAALQAAAAACUwAAAAAAUwAAAAAAUwAAAAACNwAAAAAANwAAAAAANwAAAAAANwAAAAAAXQAAAAABNwAAAAAALAAAAAAALAAAAAAALAAAAAAANwAAAAAAXQAAAAACNwAAAAAALQAAAAABUwAAAAAAUwAAAAABUwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAXQAAAAAANwAAAAAALAAAAAAALAAAAAAALAAAAAAANwAAAAAAXQAAAAAANwAAAAAANwAAAAAAUwAAAAAAUwAAAAADUwAAAAAANwAAAAAALAAAAAAANwAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAUwAAAAAAUwAAAAAAUwAAAAADNwAAAAAALAAAAAAANwAAAAAANwAAAAAANwAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAADNwAAAAAANwAAAAAANwAAAAAAUwAAAAAAUwAAAAACUwAAAAADNwAAAAAALAAAAAAANwAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACNwAAAAAA + version: 6 2,-1: ind: 2,-1 - tiles: ZAAAACUAAAAlAAAAJQAAACUAAAAlAAAAJQAAAFQAAABMAAAAZAAAAGQAAABkAAAAZAAAAGQAAABMAAAAZAAAAGQAAAAlAAAAJQAAACUAAABkAAAAZAAAAGQAAABkAAAAZAAAAEwAAABMAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAAFHAAACZAAAAGEAAABhAAADZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAAZAAAAGQAAAAVAAAAFQAAADYAAAA2AAAANgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEkAAABJAAAASQAAAEkAAABkAAAAFQAAABUAAAA2AAAANgAAADYAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAAFJAAAASQAAAEkAAABJAAAAZAAAABUAAAAVAAAAFQAAADYAAAA2AAAAZAAAAGQAAABMAAAAZAAAAEcAAAFHAAACSQAAAEkAAABJAAAASQAAAGQAAAAVAAAAFQAAABUAAAA2AAAANgAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAABYAAANkAAAAZAAAAGQAAABkAAAAFQAAAGQAAABkAAAAYQAAA2EAAABkAAAAZAAAAGQAAABHAAABRwAAAEcAAAMWAAACCwAAAAsAAANhAAAAYQAAA2EAAANhAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAAFHAAACCwAAAAsAAAILAAADYQAAAWEAAAFhAAADYQAAAVQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAADRwAAAQsAAAELAAAACwAAAGEAAABhAAABYQAAAmEAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAAkcAAAMLAAADCwAAAAsAAANhAAAAYQAAA2EAAAFhAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACCwAAAgsAAAMLAAADYQAAAGEAAAJhAAAAYQAAAmQAAABkAAAAZAAAAFMAAABTAAAAZAAAAEcAAAJHAAABRwAAAgsAAAELAAACCwAAAmEAAABhAAADYQAAA2EAAABkAAAAZAAAAGQAAAA3AAAANwAAAGQAAABHAAABRwAAAEcAAAMLAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAANwAAADcAAAAWAAACRwAAAkcAAABHAAABFgAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAADcAAAA3AAAAZAAAAEcAAABHAAABRwAAAw== + tiles: cAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAYAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAACcAAAAAAAbQAAAAAAbQAAAAADcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAFgAAAAAAFgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcAAAAAAAFgAAAAAAFgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAPgAAAAAAPgAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAUwAAAAABUwAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAPgAAAAAAPgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAFgAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADGgAAAAACDAAAAAAADAAAAAADbQAAAAAAbQAAAAADbQAAAAADbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAACDAAAAAAADAAAAAACDAAAAAADbQAAAAABbQAAAAABbQAAAAADbQAAAAABYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABDAAAAAABDAAAAAAADAAAAAAAbQAAAAAAbQAAAAABbQAAAAACbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAADDAAAAAADDAAAAAAADAAAAAADbQAAAAAAbQAAAAADbQAAAAABbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACDAAAAAACDAAAAAADDAAAAAADbQAAAAAAbQAAAAACbQAAAAAAbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAACDAAAAAABDAAAAAACDAAAAAACbQAAAAAAbQAAAAADbQAAAAADbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPwAAAAAAPwAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADDAAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPwAAAAAAPwAAAAAAGgAAAAACUwAAAAACUwAAAAAAUwAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPwAAAAAAPwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAD + version: 6 2,0: ind: 2,0 - tiles: FgAAAGQAAABTAAAAUwAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAZAAAAEcAAABHAAABRwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAkcAAANHAAADRwAAAEcAAABHAAABRwAAAEcAAAJHAAABRwAAAEcAAANHAAADRwAAAEcAAAJHAAAARwAAAUcAAANHAAAARwAAAEcAAAJHAAACRwAAAUcAAANHAAACRwAAAUcAAAJHAAADRwAAAkcAAAJHAAADRwAAAkcAAABHAAADRwAAAEcAAAFHAAACRwAAAUcAAANHAAAARwAAAUcAAAFHAAACRwAAAkcAAANHAAABRwAAAEcAAAFHAAADRwAAAEcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAhYAAANkAAAAFgAAARYAAAAWAAADFgAAAxYAAAAWAAAAZAAAABYAAAAWAAAAFgAAARYAAAIWAAADFgAAABYAAAAWAAABFgAAAxYAAAMWAAACFgAAAxYAAAAWAAABFgAAAGQAAAAWAAAARwAAAEcAAAFHAAADRwAAAxYAAAEWAAABFgAAAGQAAAAWAAAAFgAAAxYAAAMWAAAAFgAAAhYAAANkAAAAFgAAA0cAAANHAAADRwAAAkcAAAAWAAAAZAAAAGQAAABkAAAAFgAAAhYAAAEWAAAAFgAAARYAAAEWAAADZAAAABYAAAFHAAACRwAAAkcAAANHAAABFgAAAmQAAABkAAAAZAAAABYAAAMWAAADFgAAABYAAAIWAAABFgAAA2QAAAAWAAABFgAAAxYAAAIWAAABFgAAAxYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAhYAAAMWAAACZAAAAGQAAAAWAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAA2QAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAAkcAAANkAAAARwAAA0cAAAARAAAAYQAAAUcAAAJHAAADYQAAAGEAAANhAAABZAAAAGQAAABkAAAARwAAA0cAAAJHAAAAZAAAAEcAAABHAAADEQAAAGQAAABHAAACRwAAAGQAAABhAAABYQAAAWQAAABkAAAAZAAAAEcAAANHAAABRwAAAkcAAABHAAADRwAAAw== + tiles: GgAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADcAAAAAAAGgAAAAABGgAAAAAAGgAAAAADGgAAAAADGgAAAAAAGgAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAABGgAAAAACGgAAAAADGgAAAAAAGgAAAAAAGgAAAAABGgAAAAADGgAAAAADGgAAAAACGgAAAAADGgAAAAAAGgAAAAABGgAAAAAAcAAAAAAAGgAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAADGgAAAAABGgAAAAABGgAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAADGgAAAAAAGgAAAAACGgAAAAADcAAAAAAAGgAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAAAGgAAAAABGgAAAAABGgAAAAADcAAAAAAAGgAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAABGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAAAGgAAAAACGgAAAAABGgAAAAADcAAAAAAAGgAAAAABGgAAAAADGgAAAAACGgAAAAABGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAACcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAADcAAAAAAAUwAAAAADUwAAAAAAEgAAAAAAbQAAAAABUwAAAAACUwAAAAADbQAAAAAAbQAAAAADbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADEgAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAbQAAAAABbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAAD + version: 6 2,-2: ind: 2,-2 - tiles: ZAAAAGEAAAFkAAAAZAAAAGQAAAAlAAAAZAAAAGQAAAAlAAAAJQAAAGQAAABjAAAAZAAAAGQAAAA8AAAAZAAAAGQAAABkAAAAYQAAAWQAAABkAAAAJQAAAGQAAAAlAAAAZAAAACUAAABkAAAAYwAAAGQAAAA8AAAAPAAAADwAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAADwAAABkAAAAZAAAAGQAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAZAAAAEcAAAFTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAGQAAABHAAADUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAVMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABTAAAAUwAAAFMAAABTAAAAUwAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAA0cAAAFHAAAARwAAAEcAAAFRAAADUQAAAzAAAAAwAAAAZAAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAABHAAABZAAAAFEAAAFRAAAAUQAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAwAAAAMAAAADAAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAEwAAAAoAAAAKAAAACgAAAAoAAAAZAAAAGQAAABkAAAAZAAAAEwAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAKAAAACgAAAAoAAAAKAAAAFQAAABkAAAAZAAAAGQAAABMAAAAZAAAAEwAAABkAAAATAAAAGQAAABkAAAAZAAAACgAAAAoAAAAKAAAACgAAABkAAAAZAAAAEwAAABMAAAAZAAAAGQAAABMAAAAZAAAAGQAAABkAAAATAAAAGQAAABkAAAAZAAAAE8AAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABMAAAAZAAAAGQAAABkAAAATAAAAGQAAABkAAAAZAAAACUAAAAlAAAAJQAAACUAAAAlAAAAJQAAAGQAAABkAAAATAAAAGQAAABkAAAAZAAAAEwAAABkAAAAZAAAAA== + tiles: cAAAAAAAbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABcAAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAABXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAADXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABXQAAAAADXQAAAAADNwAAAAAANwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAXQAAAAABXQAAAAAAXQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAA + version: 6 -1,1: ind: -1,1 - tiles: AAAAAGQAAAAWAAACDgAAABYAAAMWAAACFgAAAQ4AAAAWAAAAZAAAAAAAAABkAAAARwAAA0cAAAFHAAABZAAAAAAAAABkAAAAFgAAAg4AAAAWAAAAFgAAAxYAAAEOAAAAFgAAAGQAAAAAAAAAZAAAAEcAAABHAAAARwAAAWQAAAAAAAAAZAAAABYAAAEOAAAADgAAAA4AAAAOAAAADgAAABYAAABkAAAAAAAAAGQAAABHAAABRwAAAkcAAAFkAAAAYwAAAGQAAABkAAAAFgAAAxYAAAMWAAADFgAAABYAAABkAAAAZAAAAGMAAABkAAAARwAAA0cAAAJHAAACFgAAAgAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAZAAAAEcAAABHAAADRwAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABHAAACRwAAA0cAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAAJHAAABZAAAAEcAAANHAAABRwAAAkcAAABHAAADRwAAAkcAAABHAAABRwAAA0cAAAFHAAADRwAAAEcAAAFHAAADRwAAA0cAAABHAAADRwAAAkcAAANHAAABRwAAA0cAAABHAAACRwAAA0cAAANHAAADRwAAAEcAAAFHAAAARwAAAkcAAANHAAADRwAAAUcAAAJHAAABRwAAA0cAAAFHAAABRwAAA0cAAAJHAAADRwAAAUcAAAFHAAAARwAAAkcAAAFHAAAARwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABhAAAAZAAAAEcAAAFHAAABZAAAAEcAAABHAAADZAAAAEcAAAJHAAABZAAAAD8AAAA/AAAAPwAAAD8AAABkAAAAYQAAA2QAAABHAAAARwAAAWQAAABHAAAARwAAAWQAAABHAAAARwAAA2QAAAA/AAAAPwAAAD8AAAA/AAAAZAAAAGEAAAFkAAAAZAAAAEcAAAFkAAAAZAAAAEcAAAJkAAAAZAAAAEcAAAFkAAAAPwAAAD8AAAA/AAAAPwAAAGQAAABhAAACZAAAAEcAAANHAAADRwAAAUcAAAFHAAADRwAAAkcAAABHAAACZAAAAD8AAAA/AAAAPwAAAD8AAABkAAAAFgAAAxYAAAFHAAACRwAAA0cAAAJHAAACRwAAA0cAAAFHAAACRwAAAGQAAAA/AAAAPwAAAD8AAAA/AAAAZAAAAA== + tiles: AAAAAAAAcAAAAAAAGgAAAAACDwAAAAAAGgAAAAADGgAAAAACGgAAAAABDwAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAABcAAAAAAAAAAAAAAAcAAAAAAAGgAAAAACDwAAAAAAGgAAAAAAGgAAAAADGgAAAAABDwAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAAAAAAAAAcAAAAAAAGgAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAADGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACGgAAAAACAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABcAAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAUwAAAAACUwAAAAABcAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAbQAAAAADcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAbQAAAAABcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAbQAAAAACcAAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAACcAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAGgAAAAADGgAAAAABUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAA + version: 6 -2,1: ind: -2,1 - tiles: RwAAAEcAAANhAAAAYQAAAmQAAABkAAAARwAAAkcAAANHAAACRwAAAEcAAAFHAAABRwAAAUcAAANHAAAAZAAAAEcAAABHAAAAYQAAAWEAAAFkAAAAZAAAAGQAAABHAAADRwAAAkcAAAFHAAACRwAAAUcAAAFHAAABRwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAANHAAAARwAAAkcAAAJHAAAARwAAA0cAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAAARwAAA0cAAAFHAAAARwAAA0cAAABHAAACZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAARwAAA0cAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAmQAAABHAAACRwAAAUcAAABHAAACRwAAA0cAAANHAAABRwAAA0cAAAFHAAABRwAAA0cAAAJkAAAARwAAAkcAAABHAAACRwAAAUcAAAFHAAACRwAAAkcAAAJHAAACRwAAAEcAAAJHAAAARwAAAkcAAANHAAAAZAAAAEcAAABHAAAAZAAAAEcAAAFHAAACRwAAAkcAAANHAAACRwAAAkcAAABHAAAARwAAA0cAAABHAAADRwAAAkcAAANUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAA0cAAABkAAAAVAAAAGQAAABHAAAARwAAAUcAAAJHAAABZAAAAFMAAABkAAAAFgAAARYAAANkAAAAZAAAAEcAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAANHAAAARwAAA2QAAABTAAAAZAAAABYAAAJHAAADRwAAAUcAAABHAAADRwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGEAAANkAAAAZAAAAGQAAAAWAAADRwAAAUcAAANHAAADRwAAAkcAAABkAAAAZAAAAGQAAABkAAAAYQAAAGEAAABhAAACZAAAAFMAAABkAAAAFgAAAxYAAAIWAAADFgAAABYAAAMWAAAAZAAAAGQAAABkAAAAZAAAAGEAAAJhAAAAYQAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABhAAABYQAAAmEAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAAGEAAAFhAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAAWAAABFgAAAA== + tiles: UwAAAAAAUwAAAAADbQAAAAAAbQAAAAACcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAbQAAAAABbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAACcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAADYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAABcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAACcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAADGgAAAAAAGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAAAbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAACbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAABbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAAA + version: 6 -3,1: ind: -3,1 - tiles: AAAAAAAAAABkAAAAZAAAAGQAAABHAAABRwAAA0cAAANHAAADRwAAAEcAAAFHAAABRwAAAEcAAANHAAACRwAAAAAAAAAAAAAAZAAAAGQAAABkAAAARwAAAEcAAAFHAAABRwAAAUcAAAJHAAACRwAAA0cAAABHAAABRwAAA2QAAAAAAAAAAAAAAGQAAABkAAAAZAAAAEcAAABHAAACRwAAA0cAAANHAAABRwAAA0cAAABHAAADRwAAAkcAAAFkAAAAAAAAAAAAAABkAAAAZAAAAGQAAABHAAAARwAAA0cAAAFHAAABRwAAAUcAAAJHAAACRwAAAUcAAANHAAADVAAAAAAAAAAAAAAAZAAAAGQAAABkAAAARwAAA0cAAABHAAAARwAAAkcAAABHAAACRwAAAUcAAABHAAACRwAAAmQAAAAAAAAAAAAAAAAAAABjAAAAZAAAAEcAAANHAAADRwAAAkcAAAFHAAADRwAAAUcAAANHAAADRwAAAkcAAAJkAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAARwAAAEcAAABkAAAAZAAAAEcAAABHAAADRwAAAkcAAAJHAAADRwAAAAAAAAAAAAAAAAAAAGQAAABHAAAARwAAAkcAAAFHAAAARwAAAWQAAABHAAABRwAAAkcAAABHAAAARwAAAmQAAAAAAAAAAAAAAAAAAABkAAAARwAAAUcAAANHAAAARwAAAUcAAANkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAZAAAAEcAAANHAAAARwAAAkcAAAJHAAACZAAAAFMAAABkAAAAZAAAAFMAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABHAAADRwAAA0cAAANHAAABRwAAAGQAAABTAAAAZAAAAGQAAABTAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABkAAAARwAAA0cAAAJHAAADRwAAAUcAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAZAAAAEcAAAJHAAAARwAAAUcAAANHAAADZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABUAAAAVAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: AAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAADYAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAABcAAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 -3,0: ind: -3,0 - tiles: BgAAABYAAAJHAAAARwAAA0cAAAFHAAADRwAAAEcAAANHAAACRwAAAUcAAAFHAAACRwAAA0cAAANHAAABRwAAAGQAAAAWAAADRwAAAkcAAAFkAAAARwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAAkcAAAJHAAAAZAAAAEcAAAJHAAADRwAAAEcAAAFHAAACRwAAAkcAAAJkAAAARwAAAkcAAABHAAAARwAAAkcAAAFHAAABRwAAA2QAAABHAAACRwAAAEcAAAJHAAADRwAAAkcAAABHAAADZAAAAEcAAAJHAAAARwAAA2QAAABUAAAAZAAAAGQAAABkAAAARwAAAkcAAAJHAAADRwAAAUcAAANHAAADRwAAAEcAAANHAAADRwAAAEcAAABkAAAAZAAAAFMAAABkAAAARwAAAkcAAAJHAAAARwAAAEcAAAJHAAACRwAAAEcAAANHAAACRwAAA0cAAABHAAAAUwAAAGQAAABTAAAAVAAAAEcAAANHAAACRwAAA0cAAABHAAACRwAAAUcAAAJHAAAAZAAAAEcAAANHAAAARwAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAEcAAAJkAAAAZAAAAEcAAAJkAAAAZAAAAGQAAABHAAAARwAAAEcAAAJkAAAAZAAAAGQAAABUAAAARwAAA0cAAANHAAADRwAAAUcAAAJHAAAARwAAAkcAAANkAAAARwAAA0cAAANkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAABRwAAA0cAAAFHAAADRwAAA0cAAAFHAAACRwAAAUcAAAJHAAABZAAAAAAAAAAAAAAAAAAAAGQAAABHAAACRwAAA0cAAAJHAAAARwAAAEcAAANHAAABRwAAAkcAAANHAAACRwAAA2QAAAAAAAAAAAAAAAAAAABkAAAAZAAAAEcAAANHAAABRwAAAkcAAABHAAACRwAAAUcAAANHAAACRwAAAUcAAAJHAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABHAAABRwAAAEcAAAFHAAACRwAAAkcAAANHAAABRwAAAEcAAAFHAAAAZAAAAAAAAAAAAAAAAAAAAGMAAABkAAAARwAAAEcAAABHAAACRwAAAkcAAANHAAADRwAAAEcAAAJHAAACRwAAAmQAAAAAAAAAAAAAAGQAAABkAAAAZAAAAEcAAABHAAACRwAAAUcAAAJHAAADRwAAA0cAAANHAAADRwAAAUcAAAJkAAAAAAAAAAAAAABkAAAAZAAAAGQAAABHAAAARwAAAUcAAAFHAAAARwAAAUcAAANHAAACRwAAAEcAAANHAAADZAAAAA== + tiles: BwAAAAAAGgAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAGgAAAAADUwAAAAACUwAAAAABcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAACcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAADcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAYAAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAADcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAADUwAAAAACUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAADcAAAAAAA + version: 6 -3,-1: ind: -3,-1 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAABYAAAAWAAACFgAAAmQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAACFgAAA2QAAABhAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAABYAAAEWAAADYQAAAmEAAAJhAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGEAAABhAAADYQAAAWQAAABMAAAAZAAAAGQAAABkAAAATAAAAGQAAABkAAAAZAAAAGQAAAAWAAAAFgAAAhYAAANhAAAAYQAAAmEAAABkAAAATAAAAEwAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAhYAAAFkAAAAYQAAAmEAAABhAAABZAAAAGQAAABMAAAAZAAAAEwAAABMAAAATAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGEAAAJhAAADYQAAAGQAAABkAAAATAAAAEwAAABMAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAA2EAAANhAAABYQAAAmEAAANkAAAATAAAAGQAAABMAAAATAAAAEwAAABMAAAAZAAAAGQAAABTAAAAZAAAAGEAAAFhAAAAYQAAA2QAAABkAAAAZAAAAGQAAABkAAAATAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABhAAAAYQAAA2EAAANHAAAARwAAA0cAAAJHAAABTAAAAEwAAABkAAAAZAAAAGQAAABTAAAAZAAAAFMAAABkAAAAYQAAAmEAAABhAAABRwAAAEcAAAFHAAABRwAAAWQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABTAAAAZAAAAGEAAAFhAAACYQAAAGQAAAAWAAABRwAAA0cAAABkAAAAFgAAARYAAAEWAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGEAAAMGAAAAFgAAAkcAAANHAAAARwAAAEcAAAJHAAABRwAAAUcAAAFHAAACRwAAAEcAAAFHAAADRwAAA0cAAAFHAAABBgAAABYAAAJHAAABRwAAAEcAAAJHAAACRwAAAUcAAANHAAABRwAAA0cAAAJHAAACRwAAA0cAAAFHAAACRwAAAw== + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADcAAAAAAAbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAADbQAAAAACbQAAAAACbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAABcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAADbQAAAAAAbQAAAAACbQAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABcAAAAAAAbQAAAAACbQAAAAAAbQAAAAABcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAADbQAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAADbQAAAAABbQAAAAACbQAAAAADcAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAABbQAAAAAAbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAABWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAACbQAAAAAAbQAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAABbQAAAAACbQAAAAAAcAAAAAAAGgAAAAABUwAAAAADUwAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADBwAAAAAAGgAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAABBwAAAAAAGgAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAAD + version: 6 0,1: ind: 0,1 - tiles: ZAAAAGQAAABkAAAAZAAAABYAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAGQAAABkAAAAZAAAABYAAABhAAABYQAAA2EAAANhAAAAYQAAAmEAAABhAAABFgAAA2QAAAAWAAAAFgAAABYAAAAWAAACFgAAAmQAAAAWAAADYQAAAWEAAAJhAAABYQAAA2EAAAJhAAAAYQAAABYAAAMWAAADYQAAAWEAAABhAAAAYQAAA2EAAABkAAAAFgAAA2EAAABhAAAAYQAAAGEAAABhAAAAYQAAAGEAAAAWAAABZAAAAGEAAANhAAABYQAAAmEAAANhAAABZAAAABYAAAJhAAAAYQAAAWEAAABhAAABYQAAAWEAAAIWAAABFgAAAGQAAABhAAACYQAAAWEAAAFhAAABYQAAAGQAAAAWAAABYQAAA2EAAAJhAAACYQAAAmEAAABhAAAAFgAAAxYAAAFkAAAAYQAAAGEAAANhAAACYQAAAGEAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAEcAAABHAAAARwAAAmQAAAAWAAAAFgAAARYAAAMWAAADZAAAADMAAAAzAAAAMwAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAEcAAAJkAAAAFgAAABYAAAMWAAABFgAAAGQAAAAzAAAAMwAAADMAAABkAAAAVAAAAGQAAABkAAAARwAAAEcAAAJHAAACZAAAAGQAAABkAAAAFgAAAGQAAABkAAAAMwAAADMAAAAzAAAAMwAAADMAAAAzAAAAZAAAABYAAABkAAAAFgAAAWQAAABHAAAARwAAAkcAAAFHAAAAZAAAAGQAAAAzAAAAMwAAADMAAAAzAAAAMwAAAGQAAAAWAAADFgAAAxYAAABkAAAARwAAAkcAAANHAAADRwAAAkcAAAJkAAAAMwAAADMAAAAzAAAAMwAAADMAAABkAAAAFgAAAxYAAAEWAAAAZAAAAEcAAABHAAACRwAAAEcAAAJHAAAAZAAAADMAAAAzAAAAMwAAADMAAAAzAAAAZAAAABYAAABkAAAAFgAAAWQAAABkAAAAZAAAAEcAAAJkAAAAZAAAAGQAAABkAAAAMwAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAUcAAAFHAAACRwAAAUcAAABHAAACRwAAAkcAAABHAAACRwAAAUcAAAJHAAADRwAAA2QAAAAWAAAARwAAAkcAAAJHAAADRwAAAEcAAAJHAAADRwAAAUcAAAJHAAADRwAAA0cAAANHAAAARwAAAkcAAAMWAAABFgAAAA== + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAbQAAAAABbQAAAAADbQAAAAADbQAAAAAAbQAAAAACbQAAAAAAbQAAAAABGgAAAAADcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAACGgAAAAACcAAAAAAAGgAAAAADbQAAAAABbQAAAAACbQAAAAABbQAAAAADbQAAAAACbQAAAAAAbQAAAAAAGgAAAAADGgAAAAADbQAAAAABbQAAAAAAbQAAAAAAbQAAAAADbQAAAAAAcAAAAAAAGgAAAAADbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAGgAAAAABcAAAAAAAbQAAAAADbQAAAAABbQAAAAACbQAAAAADbQAAAAABcAAAAAAAGgAAAAACbQAAAAAAbQAAAAABbQAAAAAAbQAAAAABbQAAAAABbQAAAAACGgAAAAABGgAAAAAAcAAAAAAAbQAAAAACbQAAAAABbQAAAAABbQAAAAABbQAAAAAAcAAAAAAAGgAAAAABbQAAAAADbQAAAAACbQAAAAACbQAAAAACbQAAAAAAbQAAAAAAGgAAAAADGgAAAAABcAAAAAAAbQAAAAAAbQAAAAADbQAAAAACbQAAAAAAbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAGgAAAAAAGgAAAAABGgAAAAADGgAAAAADcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAGgAAAAAAGgAAAAADGgAAAAABGgAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAGgAAAAABcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAACcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAADcAAAAAAAGgAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAADGgAAAAABGgAAAAAA + version: 6 -4,-1: ind: -4,-1 - tiles: ZAAAAEcAAAJHAAAARwAAAmQAAABTAAAAUwAAAGQAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAACZAAAAFMAAABTAAAAZAAAAFMAAABTAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAZAAAAGQAAABHAAAARwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAkcAAAFkAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABhAAAAYQAAAGEAAABkAAAAZAAAAEcAAABHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAA2EAAANhAAAARwAAA0cAAAJHAAADRwAAA0cAAAFHAAACRwAAAkcAAAFHAAACRwAAAGQAAABkAAAAZAAAAGEAAANhAAACYQAAAkcAAAFHAAABRwAAAEcAAAFHAAABRwAAAkcAAANHAAAARwAAAUcAAANkAAAAZAAAAGQAAABhAAADYQAAAGEAAANkAAAAZAAAAEcAAANHAAABRwAAA0cAAAFHAAADRwAAA0cAAABHAAAAZAAAAGQAAABkAAAAYQAAAmEAAAJhAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAABRwAAAmQAAABkAAAAZAAAAGEAAAJhAAADYQAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAACRwAAAUcAAAFkAAAAVAAAAGQAAABkAAAAYQAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAARwAAAkcAAABHAAACRwAAA0cAAAJHAAAARwAAA0cAAABHAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEcAAANHAAAARwAAA0cAAANHAAAARwAAA0cAAAJHAAABRwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAAARwAAAkcAAAFkAAAAMwAAADMAAAAzAAAAMwAAADMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAARwAAAUcAAAJHAAADBgAAADMAAAAzAAAAMwAAADMAAAAzAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEcAAABHAAADRwAAAgYAAAAzAAAAMwAAADMAAAAzAAAAMwAAAA== + tiles: cAAAAAAAUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAADbQAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAACbQAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAAAbQAAAAADcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAACbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAADbQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAABcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAADBwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACBwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAA + version: 6 -4,0: ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEcAAAJHAAACRwAAAgYAAAAzAAAAMwAAADMAAAAzAAAAMwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAAARwAAAEcAAANkAAAAMwAAADMAAAAzAAAAMwAAADMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAARwAAAUcAAAFHAAACRwAAA0cAAABHAAABRwAAAkcAAABHAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEcAAANHAAAARwAAAkcAAABHAAAARwAAAkcAAAJHAAACRwAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAABRwAAA0cAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAAJHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAAkcAAABHAAACRwAAAUcAAAJHAAADRwAAAWQAAABTAAAAUwAAAFMAAABkAAAAUwAAAEcAAANHAAAARwAAAkcAAABHAAADRwAAA0cAAANHAAACRwAAAEcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAUcAAAFHAAADRwAAAkcAAABHAAAARwAAAEcAAABHAAADVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAACBwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAABcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -5,-1: ind: -5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAZAAAAEcAAAFHAAABRwAAAUcAAAJHAAABRwAAAUcAAABHAAADRwAAAkcAAABHAAAARwAAAAAAAABjAAAAAAAAAGQAAABHAAACRwAAAEcAAAFHAAAARwAAA0cAAAFHAAADRwAAA0cAAANHAAACRwAAAUcAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAACRwAAAUcAAANkAAAAAAAAAGMAAABjAAAAZAAAAGMAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAABHAAADRwAAAUcAAANHAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAADcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -5,0: ind: -5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAABkAAAAYwAAAAAAAABjAAAAAAAAAGQAAABkAAAAZAAAAEcAAAFHAAACRwAAAkcAAAJkAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAEcAAAFHAAABZAAAAAAAAABkAAAAZAAAAGQAAABHAAAARwAAAEcAAABHAAADRwAAAEcAAAJHAAADRwAAAEcAAAFHAAABRwAAAUcAAAEAAAAAZAAAAGQAAABkAAAARwAAAkcAAANHAAADRwAAAUcAAAFHAAACRwAAAUcAAABHAAABRwAAAUcAAAFHAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAACcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAABAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 3,-2: ind: 3,-2 - tiles: ZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABjAAAAZAAAAD0AAAA9AAAAPQAAAGQAAAA9AAAAPQAAAD0AAABkAAAAPQAAAD0AAAA9AAAAZAAAAGMAAABkAAAAYwAAAGQAAAA9AAAAPQAAAD0AAABkAAAAPQAAAD0AAAA9AAAAZAAAAD0AAAA9AAAAPQAAAGQAAABjAAAAZAAAAGMAAABkAAAAPQAAAD0AAAA9AAAAZAAAAD0AAAA9AAAAPQAAAGQAAAA9AAAAPQAAAD0AAABkAAAAYwAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABMAAAAZAAAAGQAAABkAAAARwAAAEcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAAFHAAADRwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: cAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 3,-1: ind: 3,-1 - tiles: ZAAAAGQAAABkAAAARwAAAEcAAABHAAACRwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAACRwAAAkcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAGQAAABHAAADRwAAAkcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAABHAAAARwAAA0cAAANTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAABZAAAAGQAAABHAAACRwAAAEcAAANHAAABUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAAmQAAABHAAABRwAAAEcAAABHAAABRwAAA1MAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAABkAAAAZAAAAGQAAABkAAAARwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAACRwAAAEcAAANHAAADRwAAAkcAAANHAAACUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAkcAAABHAAAARwAAAkcAAANHAAADRwAAAlMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAA0cAAABHAAAARwAAAUcAAAJHAAABRwAAA0cAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAABZAAAAEcAAANkAAAARwAAAkcAAABHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAADRwAAA0cAAABHAAADZAAAAEcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAA0cAAAFHAAACRwAAA2QAAABHAAADRwAAA0cAAAJkAAAAFgAAABYAAAFkAAAAZAAAAGQAAABkAAAARwAAAkcAAAFHAAAARwAAAEcAAAFkAAAARwAAAkcAAAJHAAACZAAAABYAAAAWAAADZAAAAGQAAABkAAAAZAAAAEcAAAFHAAABRwAAAUcAAAJHAAACZAAAAEcAAANHAAABRwAAAmQAAAAWAAACFgAAAxYAAAMWAAADYwAAAA== + tiles: cAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAABXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAACXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAACXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAUwAAAAADcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAADcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAADcAAAAAAAUwAAAAADUwAAAAADUwAAAAACcAAAAAAAGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAUwAAAAACUwAAAAACUwAAAAACcAAAAAAAGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAACcAAAAAAAUwAAAAADUwAAAAABUwAAAAACcAAAAAAAGgAAAAACGgAAAAADGgAAAAADGgAAAAADbwAAAAAA + version: 6 3,0: ind: 3,0 - tiles: ZAAAAEcAAAFHAAAARwAAAEcAAAFHAAAAZAAAAEcAAAJHAAADRwAAA2QAAAAWAAACFgAAAxYAAAAWAAAAZAAAAGQAAABHAAACRwAAAEcAAANHAAACRwAAAGQAAABkAAAARwAAAmQAAABkAAAAFgAAARYAAAEWAAABFgAAAWMAAABkAAAARwAAAkcAAABHAAADRwAAAEcAAAFHAAAARwAAAkcAAAJHAAACZAAAABYAAAFkAAAAZAAAAGQAAABkAAAARwAAAEcAAAFHAAADRwAAA0cAAAJHAAABRwAAAEcAAABHAAABRwAAA0cAAAJHAAABRwAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAA0cAAAFHAAAARwAAA0cAAABHAAACRwAAAUcAAABHAAAARwAAA0cAAABkAAAAZAAAAGQAAABkAAAAFgAAAhYAAAIWAAABZAAAAEcAAANHAAADRwAAAEcAAAJHAAACRwAAAEcAAAJHAAABZAAAAGQAAABkAAAAZAAAAGQAAABHAAAAZAAAAGQAAABkAAAARwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAUcAAABkAAAARwAAA0cAAANHAAABRwAAAWQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABkAAAARwAAA0cAAAJHAAAAZAAAAEcAAABHAAAARwAAAEcAAAJkAAAAZAAAAFMAAABkAAAAZAAAAAAAAAAAAAAAZAAAAEcAAAJHAAAARwAAAGQAAABHAAABRwAAAUcAAANHAAADZAAAAFMAAABTAAAAZAAAAGQAAAAAAAAAAAAAAGQAAABHAAADRwAAA0cAAAJkAAAARwAAAEcAAAJHAAAARwAAAWQAAABTAAAAUwAAAGQAAABjAAAAYwAAAGMAAABkAAAAZAAAAEcAAAJkAAAAZAAAAEcAAABHAAACRwAAAEcAAAJkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAACRwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAACRwAAAkcAAAJHAAABRwAAADAAAABHAAAARwAAARYAAAAWAAABFgAAAmQAAABkAAAAAAAAAGMAAABHAAACRwAAA0cAAAFHAAABRwAAA0cAAAIwAAAARwAAAEcAAABkAAAAFgAAAmQAAABkAAAAYwAAAGMAAABjAAAARwAAA0cAAANHAAADRwAAAkcAAABHAAABMAAAAEcAAAFHAAADZAAAABYAAABkAAAAZAAAAGQAAABjAAAAZAAAAA== + tiles: cAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAADcAAAAAAAGgAAAAACGgAAAAADGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAABGgAAAAABbwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAACcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAABcAAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAADcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAACcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAAANwAAAAAAUwAAAAAAUwAAAAABGgAAAAAAGgAAAAABGgAAAAACcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAACNwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAABNwAAAAAAUwAAAAABUwAAAAADcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAA + version: 6 -3,-2: ind: -3,-2 - tiles: RwAAAmQAAABkAAAAZAAAAEcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANXAAABVwAAA1cAAAJXAAAAZAAAAEcAAAFHAAAAZAAAAGQAAABHAAAARwAAAEcAAANkAAAAZAAAAGQAAABHAAADRwAAA0cAAAJHAAADRwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAZAAAAFMAAABkAAAAUwAAAGQAAABTAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAMgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAADIAAAAyAAAAZAAAAGQAAABkAAAADgAAAA4AAAAOAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAMgAAAGQAAABkAAAAZAAAADcAAAA3AAAADgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAAAFgAAABYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAFgAAARYAAAIWAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAABYAAAMWAAABFgAAAQ== + tiles: UwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADYwAAAAABYwAAAAADYwAAAAACYwAAAAAAcAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADwAAAAAADwAAAAAADwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPwAAAAAAPwAAAAAADwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAAB + version: 6 -4,-2: ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYQAAAGEAAAJkAAAAYQAAAmEAAAJhAAADYQAAA2EAAAFkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGEAAAFhAAABYQAAA2EAAAFhAAACYQAAAmEAAAJhAAABZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAYQAAAGEAAANhAAADYQAAAWQAAABhAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYQAAAWEAAANhAAABYQAAAmQAAABkAAAAZAAAAGEAAAJhAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGEAAANhAAACYQAAAmEAAAJhAAACZAAAAGEAAAFhAAAAYQAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABhAAAAYQAAAmEAAAFhAAACYQAAAGEAAABhAAAAYQAAAWQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAYQAAAmEAAABhAAAAYQAAAmEAAAJkAAAAYQAAAGEAAAFhAAACZAAAAAAAAABkAAAAZAAAAGQAAABjAAAAZAAAAGEAAABhAAABYQAAAGEAAAJhAAADYQAAAGEAAANhAAABZAAAAGQAAAAAAAAAZAAAAGQAAABkAAAAYwAAAGQAAABhAAACYQAAA2EAAANhAAAAYQAAA2EAAABkAAAAYQAAA2QAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAIgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAiAAAAIgAAACIAAAAiAAAAIgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAADRwAAAkcAAABkAAAAIgAAACIAAAAiAAAAIgAAACIAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAA0cAAAJHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAAAbQAAAAACcAAAAAAAbQAAAAACbQAAAAACbQAAAAADbQAAAAADbQAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAABbQAAAAABbQAAAAADbQAAAAABbQAAAAACbQAAAAACbQAAAAACbQAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAADbQAAAAABcAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAABbQAAAAADbQAAAAABbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAADbQAAAAACbQAAAAACbQAAAAACbQAAAAACcAAAAAAAbQAAAAABbQAAAAAAbQAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbQAAAAABbQAAAAACbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbQAAAAACbQAAAAAAbQAAAAAAbQAAAAACbQAAAAACcAAAAAAAbQAAAAAAbQAAAAABbQAAAAACcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbQAAAAAAbQAAAAABbQAAAAAAbQAAAAACbQAAAAADbQAAAAAAbQAAAAADbQAAAAABcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbQAAAAACbQAAAAADbQAAAAADbQAAAAAAbQAAAAADbQAAAAAAcAAAAAAAbQAAAAADcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAEcAAAFHAAABRwAAA0cAAABHAAAARwAAA0cAAAJHAAACRwAAAUcAAAMAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABHAAABRwAAAEcAAABHAAACRwAAA0cAAANHAAACRwAAA0cAAABHAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 0,2: ind: 0,2 - tiles: RwAAAUcAAAFHAAADRwAAAEcAAANHAAAARwAAAkcAAAFHAAACRwAAAUcAAAJHAAADRwAAAUcAAANkAAAAFgAAAkcAAAFHAAADRwAAAWQAAABkAAAAZAAAABYAAAAWAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAkcAAANkAAAAFgAAABYAAAAWAAADFgAAAxYAAANkAAAAFgAAABYAAAFkAAAAFgAAARYAAANkAAAAZAAAAD8AAABkAAAAZAAAAGQAAABHAAAARwAAAEcAAAJHAAADRwAAA0cAAABHAAABRwAAAkcAAAJHAAACMwAAAD8AAAA/AAAAPwAAAGQAAABHAAADRwAAAkcAAANHAAACRwAAA0cAAAFHAAABRwAAAkcAAAFHAAACRwAAAmQAAAA/AAAAPwAAAD8AAABkAAAARwAAAUcAAAAWAAACFgAAABYAAAAWAAABFgAAAhYAAAEWAAAARwAAA0cAAABUAAAAPwAAAD8AAAA/AAAAZAAAAEcAAABHAAACFgAAARYAAAAWAAAAFgAAAxYAAAAWAAAAFgAAAEcAAABHAAABZAAAAD8AAAA/AAAAPwAAAD8AAABHAAAARwAAAhYAAAIWAAAAFgAAARYAAAEWAAADFgAAARYAAAFHAAAARwAAAEcAAAM/AAAAPwAAAD8AAABkAAAARwAAAEcAAAJHAAAAFgAAARYAAAIWAAADFgAAAhYAAABHAAADRwAAAUcAAANkAAAAZAAAAD8AAABkAAAAZAAAAEcAAANHAAACRwAAAUcAAAFHAAACRwAAAkcAAAFHAAACRwAAAUcAAAJHAAACZAAAABYAAAAWAAADFgAAAmQAAAAWAAABFgAAAmQAAAAWAAADFgAAAhYAAAEWAAABFgAAAmQAAAAWAAAAFgAAAGQAAAAWAAADFgAAABYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAARYAAAMWAAAAZAAAAGMAAABkAAAAEwAABBYAAAMWAAACFgAAARYAAAIWAAAAEwAABmQAAABjAAAAZAAAABYAAAIWAAACFgAAAmQAAABjAAAAZAAAABMAAAMTAAAAFgAAARYAAAAWAAAAEwAABRMAAARkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAAAWAAAAFgAAABYAAAIWAAAAFgAAABYAAAMWAAADZAAAAGMAAABkAAAARwAAAkcAAAJkAAAAAAAAAGMAAABkAAAAEwAAARMAAAAWAAADFgAAARYAAAMTAAADEwAAAGQAAABjAAAAZAAAAA== + tiles: UwAAAAABUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAADcAAAAAAAGgAAAAACUwAAAAABUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAADGgAAAAADGgAAAAADcAAAAAAAGgAAAAAAGgAAAAABcAAAAAAAGgAAAAABGgAAAAADcAAAAAAAcAAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAACOwAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAACcAAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAUwAAAAABUwAAAAAAGgAAAAACGgAAAAAAGgAAAAAAGgAAAAABGgAAAAACGgAAAAABGgAAAAAAUwAAAAADUwAAAAAAYAAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAUwAAAAAAUwAAAAACGgAAAAABGgAAAAAAGgAAAAAAGgAAAAADGgAAAAAAGgAAAAAAGgAAAAAAUwAAAAAAUwAAAAABcAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAUwAAAAAAUwAAAAACGgAAAAACGgAAAAAAGgAAAAABGgAAAAABGgAAAAADGgAAAAABGgAAAAABUwAAAAAAUwAAAAAAUwAAAAADSgAAAAAASgAAAAAASgAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAGgAAAAABGgAAAAACGgAAAAADGgAAAAACGgAAAAAAUwAAAAADUwAAAAABUwAAAAADcAAAAAAAcAAAAAAASgAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAACcAAAAAAAGgAAAAAAGgAAAAADGgAAAAACcAAAAAAAGgAAAAABGgAAAAACcAAAAAAAGgAAAAADGgAAAAACGgAAAAABGgAAAAABGgAAAAACcAAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAFAAAAAAEGgAAAAADGgAAAAACGgAAAAABGgAAAAACGgAAAAAAFAAAAAAGcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAACcAAAAAAAbwAAAAAAcAAAAAAAFAAAAAADFAAAAAAAGgAAAAABGgAAAAAAGgAAAAAAFAAAAAAFFAAAAAAEcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAACGgAAAAAAGgAAAAAAGgAAAAADGgAAAAADcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAFAAAAAABFAAAAAAAGgAAAAADGgAAAAABGgAAAAADFAAAAAADFAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAA + version: 6 -1,2: ind: -1,2 - tiles: ZAAAAGQAAABHAAAARwAAAEcAAAJHAAAAZAAAAGQAAABHAAAARwAAAmQAAABkAAAAZAAAAD8AAABkAAAAZAAAAGQAAABUAAAARwAAAUcAAAFHAAADRwAAA0cAAAFHAAAARwAAA0cAAANHAAACRwAAAUcAAABHAAACRwAAAEcAAABkAAAAZAAAAGQAAABHAAAARwAAAUcAAANHAAADRwAAA0cAAANHAAADRwAAA0cAAAJHAAAARwAAAEcAAAFHAAADZAAAAFMAAABkAAAARwAAAEcAAAJHAAAARwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAACRwAAAEcAAAFkAAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAAUcAAAFHAAAAZAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAABkAAAAZAAAAGQAAABkAAAARwAAAUcAAAFHAAADZAAAAGQAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAACRwAAAkcAAAJkAAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAAEcAAABHAAABZAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAABkAAAAZAAAAFMAAABkAAAARwAAAEcAAAFHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAZAAAAEcAAAJHAAACRwAAAmQAAAAWAAACFgAAABYAAABkAAAAFgAAAxYAAAMWAAACFgAAARYAAAFkAAAAZAAAAGQAAABHAAADZAAAAEcAAAFkAAAAFgAAARYAAAAWAAAAFgAAARYAAAIWAAADFgAAABYAAAEWAAADFgAAAhYAAAMWAAAARwAAAUcAAANHAAACZAAAABYAAAIWAAACFgAAAGQAAAAWAAAAFgAAAhYAAAIWAAADFgAAAxYAAAMWAAADZAAAAEcAAAJHAAABRwAAA2QAAABkAAAAZAAAAGQAAABkAAAAFgAAABYAAAIWAAACFgAAARYAAANkAAAAZAAAAGQAAABHAAADZAAAAEcAAAFkAAAAFgAAABYAAAMWAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAAJHAAACRwAAAkcAAAFHAAABRwAAA0cAAABHAAADRwAAAUcAAANHAAADRwAAAEcAAABHAAADRwAAAA== + tiles: cAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAABcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAADcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAACcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAACcAAAAAAAGgAAAAACGgAAAAAAGgAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAACGgAAAAABGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAUwAAAAABcAAAAAAAGgAAAAABGgAAAAAAGgAAAAAAGgAAAAABGgAAAAACGgAAAAADGgAAAAAAGgAAAAABGgAAAAADGgAAAAACGgAAAAADGgAAAAAAUwAAAAABUwAAAAADUwAAAAACcAAAAAAAGgAAAAACGgAAAAACGgAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAACGgAAAAADGgAAAAADGgAAAAADGgAAAAADcAAAAAAAUwAAAAACUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAACGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAUwAAAAABcAAAAAAAGgAAAAAAGgAAAAADGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAA + version: 6 1,1: ind: 1,1 - tiles: RwAAAUcAAAFHAAABRwAAAEcAAANHAAAARwAAAEcAAANHAAADRwAAAEcAAAJHAAABRwAAAEcAAABkAAAAZAAAAEcAAAFHAAACRwAAAkcAAANHAAAARwAAAUcAAAFHAAAARwAAAUcAAABHAAACRwAAA0cAAABHAAAARwAAAUcAAABHAAADRwAAAEcAAABHAAAARwAAA0cAAAJHAAACRwAAAEcAAAJHAAACRwAAAkcAAABHAAADRwAAAmQAAABHAAADRwAAARYAAAEWAAAAFgAAAhYAAAJHAAADFgAAAhYAAAEWAAADFgAAAxYAAABHAAAARwAAAEcAAAJHAAAARwAAA1QAAABkAAAAZAAAAGQAAABkAAAAFgAAA2QAAABkAAAAZAAAAGQAAABkAAAAMgAAAGQAAAAyAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAFgAAARYAAANkAAAAYwAAAGMAAABjAAAAZAAAADIAAAAyAAAAMgAAAGQAAAAlAAAAZAAAAGQAAABjAAAAZAAAABYAAAMWAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAyAAAAMgAAADIAAABkAAAAJQAAAGQAAABkAAAAYwAAAGQAAAAWAAAAFgAAAhYAAAIWAAABFgAAAxYAAAAWAAADMgAAADIAAAAyAAAAZAAAAGEAAAFkAAAAZAAAAGMAAABkAAAAFgAAAxYAAAEWAAAAFgAAAhYAAAIWAAADZAAAADIAAAAyAAAAMgAAAGQAAABhAAAAZAAAAGQAAABjAAAAZAAAABYAAAIWAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAyAAAAMgAAADIAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAAAWAAAAFgAAAGQAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGEAAANkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAYwAAAGMAAABjAAAAZAAAAGEAAABhAAABYQAAAmEAAANhAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABhAAAAYQAAAmEAAABhAAACYQAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAgAAAAIAAABkAAAAJQAAAGQAAABkAAAAZAAAAGEAAAMWAAADFgAAARYAAAMWAAADZAAAAGQAAABkAAAAZAAAAAIAAAACAAAAZAAAACUAAAAlAAAAJQAAAGQAAABkAAAAFgAAAhYAAAEWAAACFgAAAGQAAABkAAAAZAAAAGQAAAACAAAAAgAAAGQAAABkAAAAZAAAAGQAAABkAAAAJQAAAA== + tiles: UwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAUwAAAAADUwAAAAABGgAAAAABGgAAAAAAGgAAAAACGgAAAAACUwAAAAADGgAAAAACGgAAAAABGgAAAAADGgAAAAADGgAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOgAAAAAAcAAAAAAAOgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAABGgAAAAADcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAACGgAAAAABGgAAAAADGgAAAAAAGgAAAAADOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAbQAAAAABcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAAAGgAAAAACGgAAAAACGgAAAAADcAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbQAAAAAAbQAAAAABbQAAAAACbQAAAAADbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbQAAAAAAbQAAAAACbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAgAAAAAAAgAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADGgAAAAADGgAAAAABGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAgAAAAAAAgAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAgAAAAAAAgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKQAAAAAA + version: 6 1,2: ind: 1,2 - tiles: FgAAABYAAAEWAAABFgAAA2QAAABkAAAAZAAAAGQAAAACAAAAAgAAAGQAAAAlAAAAJQAAACUAAAAlAAAAJQAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAACAAAAAgAAAAIAAABkAAAAZAAAACUAAABkAAAAJQAAACUAAAAzAAAAMwAAADMAAAAzAAAAZAAAAGQAAABkAAAAAgAAAAIAAAACAAAAZAAAACUAAAAlAAAAZAAAACUAAABkAAAAMwAAADMAAAAzAAAAMwAAAGQAAABkAAAAZAAAAGQAAAACAAAAAgAAAGQAAAAlAAAAJQAAAGQAAAAlAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAEcAAABHAAACRwAAAkcAAAJHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAAEcAAABHAAABRwAAAxYAAAAWAAAAFgAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAADRwAAAUcAAABHAAACFgAAARYAAAEWAAADFgAAAxYAAANkAAAAZAAAAFMAAABTAAAAZAAAAGQAAABkAAAARwAAAkcAAANHAAABRwAAAxYAAAEWAAADFgAAARYAAAEWAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAAkcAAAEWAAAAFgAAAUcAAABHAAACRwAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAABHAAAAFgAAABYAAABHAAABRwAAAUcAAAJkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFHAAABRwAAAhYAAAMWAAAARwAAAUcAAAFHAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAAUcAAAJHAAABRwAAAUcAAANHAAAARwAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAARwAAAkcAAAJHAAAARwAAAkcAAANHAAACRwAAA0cAAAFkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAEcAAAJHAAAARwAAAUcAAAJHAAAARwAAAkcAAAJHAAACZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJkAAAAZAAAAA== + tiles: GgAAAAAAGgAAAAABGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAgAAAAAAAgAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAgAAAAAAAgAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAACGgAAAAABGgAAAAABGgAAAAADGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAADGgAAAAABGgAAAAADGgAAAAABGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABGgAAAAAAGgAAAAABUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAGgAAAAAAGgAAAAAAUwAAAAABUwAAAAABUwAAAAACcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACGgAAAAADGgAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAADUwAAAAABcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAACcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAA + version: 6 -2,2: ind: -2,2 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAzAAAAZAAAADMAAAAzAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAMwAAADMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAMwAAAGQAAABkAAAAQgAAAEIAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAMwAAAGQAAABkAAAAZAAAAEIAAABCAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAUwAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAFMAAABTAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAUwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAFgAAA2QAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAABYAAAJkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAAARwAAAQ== + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAcAAAAAAATQAAAAAATQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAATQAAAAAATQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAB + version: 6 -1,3: ind: -1,3 - tiles: RwAAA0cAAABHAAABRwAAA0cAAANHAAACRwAAA0cAAANHAAACRwAAA0cAAAJHAAADRwAAAUcAAABHAAACRwAAABYAAAAWAAABZAAAAGQAAAALAAABZAAAAGQAAABkAAAACwAAAmQAAABkAAAAZAAAAAsAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAALAAADCwAAAwsAAAFkAAAACwAAAgsAAAALAAAAZAAAAAsAAAMLAAAACwAAAGQAAABXAAABZAAAAGQAAABkAAAACwAAAAsAAAALAAADZAAAAAsAAAILAAADCwAAAWQAAAALAAABCwAAAgsAAANkAAAAVwAAA2QAAABkAAAAZAAAAGQAAAALAAABZAAAAGQAAABkAAAACwAAAGQAAABkAAAAZAAAAAsAAAFkAAAAZAAAAFcAAAFkAAAAZAAAAGQAAABHAAABRwAAA0cAAAFHAAAARwAAAkcAAAJHAAAARwAAAUcAAAFHAAABRwAAA2QAAABXAAACZAAAACUAAABkAAAARwAAAEcAAAFHAAADRwAAAUcAAAJHAAABRwAAAUcAAABHAAAARwAAA0cAAANkAAAAZAAAAGQAAAAlAAAAZAAAAEcAAABHAAABRwAAA0cAAAJHAAABRwAAAkcAAAJHAAADRwAAAUcAAANHAAABZAAAAGMAAABkAAAAJQAAACUAAABHAAADRwAAA0cAAABHAAADRwAAAEcAAANHAAADRwAAAkcAAAAyAAAAMgAAAGQAAAAAAAAAZAAAACUAAAAlAAAARwAAAkcAAAFHAAADRwAAA0cAAAJHAAABRwAAAkcAAANHAAADMgAAADIAAABkAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAABkAAAAMAAAAEcAAAFHAAADRwAAATAAAABkAAAAYwAAAGQAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAADAAAABHAAAARwAAAkcAAAIwAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABHAAADRwAAAEcAAAJHAAADRwAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAA== + tiles: UwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAADAAAAAABcAAAAAAAcAAAAAAAcAAAAAAADAAAAAACcAAAAAAAcAAAAAAAcAAAAAAADAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADAAAAAADDAAAAAADDAAAAAABcAAAAAAADAAAAAACDAAAAAAADAAAAAAAcAAAAAAADAAAAAADDAAAAAAADAAAAAAAcAAAAAAAYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAADAAAAAAADAAAAAAADAAAAAADcAAAAAAADAAAAAACDAAAAAADDAAAAAABcAAAAAAADAAAAAABDAAAAAACDAAAAAADcAAAAAAAYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADAAAAAABcAAAAAAAcAAAAAAAcAAAAAAADAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADAAAAAABcAAAAAAAcAAAAAAAYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAADcAAAAAAAYwAAAAACcAAAAAAAKQAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAABcAAAAAAAbwAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAADOgAAAAAAOgAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAANwAAAAAAUwAAAAABUwAAAAADUwAAAAABNwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAANwAAAAAAUwAAAAAAUwAAAAACUwAAAAACNwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAA + version: 6 -2,3: ind: -2,3 - tiles: AAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABHAAACRwAAAwAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAFgAAAhYAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAADAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -3,3: ind: -3,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAA + version: 6 1,3: ind: 1,3 - tiles: ZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABHAAABRwAAAkcAAAFHAAAARwAAAwAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAARwAAAkcAAAIWAAADFgAAA0cAAAEAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAEcAAAFHAAABRwAAAUcAAAFHAAADYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABHAAADRwAAAygAAAAoAAAAKAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABkAAAARwAAAEcAAAIoAAAAKAAAACgAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAZAAAAEcAAABHAAACKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGQAAABHAAACRwAAAigAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAADAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAACGgAAAAADGgAAAAADUwAAAAABAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAADbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAADLAAAAAAALAAAAAAALAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACLAAAAAAALAAAAAAALAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACLAAAAAAALAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAACLAAAAAAALAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -1,4: ind: -1,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,3: ind: 0,3 - tiles: RwAAAkcAAABkAAAAAAAAAGMAAABkAAAAZAAAABMAAAIWAAACFgAAARYAAAITAAABZAAAAGQAAABjAAAAZAAAAFcAAANkAAAAZAAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABXAAACVwAAAmQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAFcAAANkAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAFcAAAFXAAABZAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABXAAAAVwAAAWQAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: UwAAAAACUwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAFAAAAAACGgAAAAACGgAAAAABGgAAAAACFAAAAAABcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAYwAAAAADcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAACYwAAAAACcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAADcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAYwAAAAABYwAAAAABcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAABcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 2,1: ind: 2,1 - tiles: ZAAAAGQAAABHAAAARwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAACRwAAA2QAAABHAAABRwAAAkcAAAJHAAABRwAAAUcAAAJkAAAAMwAAADMAAABkAAAAZAAAAGQAAABHAAAARwAAAkcAAAJkAAAARwAAAkcAAABHAAACRwAAA0cAAABHAAACYQAAAzMAAAAzAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAANHAAACRwAAA2QAAAAzAAAAMwAAAGQAAABkAAAAZAAAAEcAAAJHAAAARwAAAkcAAAFHAAABZAAAAGQAAABkAAAARwAAA0cAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAmQAAABHAAABRwAAA0cAAAIlAAAAZAAAAEcAAABHAAABRwAAABYAAAFkAAAAZAAAAGQAAABkAAAARwAAA0cAAABkAAAARwAAAkcAAANkAAAAZAAAAGQAAABHAAAARwAAA0cAAAAWAAADZAAAAGQAAABkAAAAZAAAAEcAAANHAAABZAAAAEcAAAFHAAAAZAAAAGEAAAJhAAACRwAAAUcAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAAARwAAAWQAAABHAAAARwAAAWQAAABhAAABZAAAAEcAAAJHAAACZAAAAGEAAANhAAAAVAAAAGQAAABkAAAARwAAAUcAAAFkAAAARwAAAUcAAABkAAAAZAAAAGQAAABHAAADRwAAAmEAAAFhAAADYQAAA2QAAABkAAAAZAAAAEcAAAJHAAABZAAAAEcAAAFHAAACZAAAAGEAAANkAAAARwAAA0cAAANkAAAAYQAAAmEAAAFkAAAAZAAAAGQAAABHAAACRwAAAEcAAAJHAAACRwAAA2QAAABhAAADYQAAAkcAAABHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYQAAA2QAAABHAAADRwAAAVQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAUwAAAGQAAABkAAAAZAAAAGEAAANkAAAARwAAAEcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAFMAAABkAAAAVAAAAGQAAABkAAAAZAAAAEcAAANHAAACFgAAABYAAAIWAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAJQAAAGQAAABHAAAARwAAAmQAAAAWAAADFgAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: cAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAADcAAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAACcAAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAACbQAAAAADOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAADcAAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAUwAAAAABUwAAAAADUwAAAAACKQAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAbQAAAAACbQAAAAACUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAbQAAAAABcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAbQAAAAADbQAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACbQAAAAABbQAAAAADbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAbQAAAAADcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAbQAAAAACbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAADcAAAAAAAbQAAAAADbQAAAAACUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADcAAAAAAAUwAAAAADUwAAAAABYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACGgAAAAAAGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 3,1: ind: 3,1 - tiles: RwAAAkcAAAFHAAABRwAAAUcAAAJHAAACMAAAAEcAAABHAAAAZAAAABYAAABkAAAAZAAAAGQAAABjAAAAZAAAAEcAAAFHAAADRwAAAEcAAAFHAAADRwAAAmQAAABkAAAAFgAAA2QAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABHAAABRwAAAEcAAABHAAAARwAAAUcAAAFkAAAAFgAAARYAAAIWAAAAFgAAARYAAAMWAAADZAAAAGMAAABkAAAARwAAAkcAAANHAAABRwAAA0cAAANHAAAAFgAAAhYAAANTAAAAUwAAAFMAAABTAAAAFgAAAWQAAABjAAAAZAAAAEcAAAFHAAACRwAAAUcAAABHAAADRwAAAhYAAAMWAAABUwAAAGQAAABkAAAAUwAAABYAAABkAAAAYwAAAGQAAABHAAABRwAAAEcAAAJHAAADRwAAAEcAAAMWAAACFgAAAlMAAABTAAAAUwAAAFMAAAAWAAABZAAAAGMAAABkAAAARwAAAkcAAAFHAAACRwAAAEcAAANHAAAAZAAAABYAAAIWAAAAFgAAABYAAAMWAAABFgAAA2QAAABjAAAAZAAAAGQAAABkAAAARwAAAUcAAANkAAAAZAAAAGQAAABkAAAAFgAAAmQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABHAAAARwAAAUcAAABHAAADRwAAAkcAAAJHAAADRwAAA0cAAANkAAAAFgAAAmQAAABkAAAAZAAAAGMAAABkAAAARwAAA0cAAAJHAAAARwAAA0cAAAJHAAADRwAAA0cAAAFHAAABZAAAABYAAANkAAAAZAAAAGQAAABjAAAAZAAAAEcAAAJHAAACRwAAA0cAAAFHAAACRwAAAkcAAABHAAAARwAAAmQAAAAWAAACZAAAAGQAAABjAAAAYwAAAGMAAABkAAAAZAAAADwAAAA8AAAAZAAAAGQAAABHAAACRwAAAkcAAAAWAAACFgAAARYAAANkAAAAZAAAAAAAAABjAAAAPAAAADwAAAA8AAAAPAAAADwAAABkAAAARwAAAkcAAABHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAADwAAAA8AAAAPAAAADwAAAA8AAAAZAAAAEcAAANHAAAARwAAA0cAAAAWAAABZAAAAGQAAABkAAAAZAAAAGQAAAA8AAAAPAAAADwAAAA8AAAAPAAAAGQAAABHAAABRwAAAkcAAAJHAAABFgAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: UwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAACNwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAGgAAAAABGgAAAAACGgAAAAAAGgAAAAABGgAAAAADGgAAAAADcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAAAGgAAAAACGgAAAAADXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAGgAAAAABcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAACGgAAAAADGgAAAAABXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAGgAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAADGgAAAAACGgAAAAACXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAGgAAAAABcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAAAGgAAAAADGgAAAAABGgAAAAADcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAADcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAABcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAGgAAAAACGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAABGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 2,2: ind: 2,2 - tiles: JQAAACUAAABHAAADRwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAACUAAAAlAAAARwAAAUcAAAAWAAAAFgAAA2QAAAAGAAAABgAAAAoAAAAKAAAABgAAAGQAAABkAAAAZAAAAGQAAAAlAAAAZAAAAEcAAABHAAAAFgAAAhYAAAJkAAAABgAAAAoAAAAKAAAACgAAAAoAAABkAAAAZAAAAFQAAABkAAAAJQAAAGQAAABHAAAARwAAAhYAAAAWAAADZAAAAAoAAAAKAAAACgAAAAoAAAAKAAAAZAAAAEcAAABHAAACZAAAAGQAAABkAAAARwAAA0cAAAJHAAABRwAAAkcAAAAKAAAACgAAAAoAAAAKAAAACgAAAEcAAANHAAAARwAAAGQAAABHAAACRwAAAEcAAAJHAAAARwAAA0cAAAJkAAAACgAAAAoAAAAKAAAABgAAAAYAAABkAAAARwAAAkcAAABkAAAARwAAAEcAAAFHAAACRwAAAUcAAANHAAADZAAAAAYAAAAKAAAACgAAAAoAAAAKAAAAZAAAAEcAAAJHAAABZAAAABYAAAEWAAAAFgAAAUcAAAFHAAADRwAAAkcAAAAKAAAACgAAAAoAAAAKAAAACgAAAEcAAAJHAAACRwAAAGQAAAAWAAABFgAAABYAAAFHAAAARwAAAkcAAAFkAAAACgAAAAoAAAAKAAAACgAAAAYAAABkAAAARwAAAEcAAAJkAAAAFgAAAxYAAAAWAAADRwAAAkcAAABHAAABZAAAAAoAAAAKAAAACgAAAAYAAAAGAAAAZAAAAEcAAANHAAAAZAAAABYAAAIWAAACFgAAAEcAAANHAAAARwAAA2QAAAAGAAAACgAAAAYAAAAGAAAACgAAAGQAAABkAAAAZAAAAGQAAAAWAAADFgAAABYAAAFHAAAARwAAA0cAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAARwAAAUcAAAFHAAABRwAAAkcAAABHAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEcAAAJHAAAARwAAAUcAAABHAAABRwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAAAAAAAAAAABHAAACRwAAAEcAAABHAAADRwAAAEcAAAJkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAABYAAAAWAAACZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: KQAAAAAAKQAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAUwAAAAABUwAAAAAAGgAAAAAAGgAAAAADcAAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAGgAAAAACGgAAAAACcAAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAUwAAAAAAUwAAAAACGgAAAAAAGgAAAAADcAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAACcAAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAADcAAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAGgAAAAABGgAAAAAAGgAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAUwAAAAACUwAAAAACUwAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAABUwAAAAAAUwAAAAACUwAAAAABcAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAAcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAGgAAAAADGgAAAAAAGgAAAAADUwAAAAACUwAAAAAAUwAAAAABcAAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAAAUwAAAAADUwAAAAAAUwAAAAADcAAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAACwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAABUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 2,3: ind: 2,3 - tiles: RwAAAkcAAANHAAADZAAAABYAAAAWAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAABYAAAAWAAACRwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABHAAADRwAAAEcAAABkAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAACgAAAAoAAAAKAAAAGQAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAABkAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: UwAAAAACUwAAAAADUwAAAAADcAAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAGgAAAAAAGgAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 4,0: ind: 4,0 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 -3,2: ind: -3,2 - tiles: AAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAUwAAAGQAAABTAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAUwAAAGQAAABkAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAGQAAABkAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAZAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAA + version: 6 -1,-3: ind: -1,-3 - tiles: FgAAAxYAAAMWAAABFgAAABYAAAIWAAAAFgAAARYAAABkAAAAZAAAAFMAAABkAAAARwAAAkcAAAJHAAADZAAAABYAAAEWAAAAFgAAABYAAAMWAAABFgAAAhYAAAAWAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAAARwAAA2QAAABkAAAAFgAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFQAAABHAAADRwAAAEcAAANUAAAAFgAAAlcAAAJXAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAARwAAA0cAAABHAAABZAAAAFcAAABXAAAAVwAAA2QAAAA1AAAANQAAADUAAABkAAAAZAAAAGQAAABTAAAAZAAAAEcAAAJHAAAARwAAA2QAAABXAAABVwAAAVcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABHAAACRwAAAUcAAANkAAAAVwAAAVcAAAJXAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAARwAAAUcAAANHAAADZAAAABYAAAMWAAADFgAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAABHAAACRwAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAABRwAAA0cAAANkAAAAVwAAAVcAAANHAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAkcAAABHAAACZAAAAFcAAANXAAADRwAAAGQAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAVAAAAEcAAAJHAAAARwAAAmQAAABXAAACVwAAAEcAAAJkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABHAAACRwAAAEcAAAFHAAABVwAAAFcAAAJXAAADVAAAAFMAAABkAAAAVwAAAVcAAAFXAAAAVwAAA1cAAABHAAABRwAAAEcAAABHAAAARwAAA1cAAABXAAAARwAAAmQAAABTAAAAZAAAAFcAAANXAAABVwAAAlcAAANXAAABRwAAA0cAAANHAAAARwAAAUcAAAFXAAADVwAAA0cAAABkAAAAVAAAAGQAAABXAAADVwAAA1cAAABXAAAAVwAAAkcAAAFHAAABRwAAA0cAAAFkAAAAZAAAAGQAAABkAAAAZAAAAFcAAABkAAAAVwAAA1cAAAJXAAACVwAAAVcAAAFkAAAARwAAAkcAAAJHAAAAZAAAAA== + tiles: GgAAAAADGgAAAAADGgAAAAABGgAAAAAAGgAAAAACGgAAAAAAGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADcAAAAAAAGgAAAAABGgAAAAAAGgAAAAAAGgAAAAADGgAAAAABGgAAAAACGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAYAAAAAAAUwAAAAADUwAAAAAAUwAAAAADYAAAAAAAGgAAAAACYwAAAAACYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAADcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAYwAAAAABYwAAAAABYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAADcAAAAAAAYwAAAAABYwAAAAACYwAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADcAAAAAAAGgAAAAADGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADcAAAAAAAYwAAAAABYwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAYwAAAAADYwAAAAADUwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAYAAAAAAAUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAYwAAAAACYwAAAAAAUwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAABYwAAAAAAYwAAAAACYwAAAAADYAAAAAAAXwAAAAAAcAAAAAAAYwAAAAABYwAAAAABYwAAAAAAYwAAAAADYwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADYwAAAAAAYwAAAAAAUwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAYwAAAAADYwAAAAABYwAAAAACYwAAAAADYwAAAAABUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAABYwAAAAADYwAAAAADUwAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAYwAAAAADYwAAAAADYwAAAAAAYwAAAAAAYwAAAAACUwAAAAABUwAAAAABUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAcAAAAAAAYwAAAAADYwAAAAACYwAAAAACYwAAAAABYwAAAAABcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAcAAAAAAA + version: 6 0,-3: ind: 0,-3 - tiles: VAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAFcAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAVcAAABXAAADVwAAAVcAAAFXAAABVwAAA1cAAAFXAAADVwAAAFcAAAJXAAAAVwAAAVcAAANkAAAAZAAAAFcAAANXAAABOwAAADsAAAI7AAABOwAAAzsAAAE7AAADOwAAAlcAAABXAAACVwAAA1cAAAFXAAADZAAAAGQAAABXAAAAVwAAAVcAAAJXAAABVwAAAFcAAABXAAACVwAAAFcAAAJXAAAAKAAAACgAAABXAAABVwAAA1QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAABVwAAACgAAAAoAAAAVwAAA1cAAABHAAADFgAAABYAAAAWAAADFgAAAxYAAABXAAADVwAAA1cAAAFkAAAAVwAAA1cAAAJXAAAAVwAAAlcAAAFXAAADRwAAAxYAAAEWAAADFgAAAxYAAAEWAAADVwAAA1cAAANXAAABZAAAAFcAAABXAAABVwAAAFcAAANXAAABVwAAAUcAAAAWAAACFgAAAxYAAAIWAAABFgAAAlcAAABXAAACVwAAAGQAAABHAAABRwAAA0cAAANkAAAAVwAAAlcAAAJHAAAAFgAAAhYAAAAWAAAAFgAAABYAAANXAAAAVwAAA1cAAABkAAAAVwAAAVcAAANXAAABZAAAAGQAAABkAAAARwAAAxYAAAMWAAACFgAAAhYAAAEWAAAAVwAAAFcAAANXAAACZAAAAFcAAAM7AAABVwAAAmQAAABHAAABRwAAA2QAAABHAAABRwAAAEcAAANHAAAAZAAAAFcAAABkAAAAZAAAAGQAAABXAAABOwAAAVcAAAJkAAAARwAAAEcAAABkAAAARwAAA0cAAAJHAAADRwAAAWQAAABXAAABVwAAAVcAAAFXAAACVwAAADsAAANXAAAAZAAAAEcAAAFHAAAAZAAAAEcAAANHAAACRwAAAUcAAABkAAAAVwAAATsAAAM7AAADOwAAATsAAAA7AAAAVwAAAEcAAAJHAAABRwAAAmQAAABHAAABRwAAAUcAAAFHAAADZAAAAFcAAANXAAABVwAAAFcAAAFXAAADVwAAAFcAAAJkAAAARwAAA0cAAANkAAAAZAAAAEcAAABkAAAAZAAAAGQAAABTAAAAUwAAAGQAAABkAAAAZAAAAFcAAAFkAAAAZAAAAGQAAABkAAAARwAAAEcAAAJHAAAARwAAA0cAAAFkAAAAVwAAAlcAAAMWAAACZAAAAFcAAABXAAADRwAAARYAAAJHAAADRwAAAw== + tiles: YAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAAAYwAAAAADYwAAAAABYwAAAAABYwAAAAABYwAAAAADYwAAAAABYwAAAAADYwAAAAAAYwAAAAACYwAAAAAAYwAAAAABYwAAAAADcAAAAAAAcAAAAAAAYwAAAAADYwAAAAABRgAAAAAARgAAAAACRgAAAAABRgAAAAADRgAAAAABRgAAAAADRgAAAAACYwAAAAAAYwAAAAACYwAAAAADYwAAAAABYwAAAAADcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAABYwAAAAACYwAAAAABYwAAAAAAYwAAAAAAYwAAAAACYwAAAAAAYwAAAAACYwAAAAAALAAAAAAALAAAAAAAYwAAAAABYwAAAAADYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAAALAAAAAAALAAAAAAAYwAAAAADYwAAAAAAUwAAAAADGgAAAAAAGgAAAAAAGgAAAAADGgAAAAADGgAAAAAAYwAAAAADYwAAAAADYwAAAAABcAAAAAAAYwAAAAADYwAAAAACYwAAAAAAYwAAAAACYwAAAAABYwAAAAADUwAAAAADGgAAAAABGgAAAAADGgAAAAADGgAAAAABGgAAAAADYwAAAAADYwAAAAADYwAAAAABcAAAAAAAYwAAAAAAYwAAAAABYwAAAAAAYwAAAAADYwAAAAABYwAAAAABUwAAAAAAGgAAAAACGgAAAAADGgAAAAACGgAAAAABGgAAAAACYwAAAAAAYwAAAAACYwAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADcAAAAAAAYwAAAAACYwAAAAACUwAAAAAAGgAAAAACGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAADYwAAAAAAYwAAAAADYwAAAAAAcAAAAAAAYwAAAAABYwAAAAADYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADGgAAAAADGgAAAAACGgAAAAACGgAAAAABGgAAAAAAYwAAAAAAYwAAAAADYwAAAAACcAAAAAAAYwAAAAADRgAAAAABYwAAAAACcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABRgAAAAABYwAAAAACcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAABcAAAAAAAYwAAAAABYwAAAAABYwAAAAABYwAAAAACYwAAAAAARgAAAAADYwAAAAAAcAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAYwAAAAABRgAAAAADRgAAAAADRgAAAAABRgAAAAAARgAAAAAAYwAAAAAAUwAAAAACUwAAAAABUwAAAAACcAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAADcAAAAAAAYwAAAAADYwAAAAABYwAAAAAAYwAAAAABYwAAAAADYwAAAAAAYwAAAAACcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAYwAAAAACYwAAAAADGgAAAAACcAAAAAAAYwAAAAAAYwAAAAADUwAAAAABGgAAAAACUwAAAAADUwAAAAAD + version: 6 1,-3: ind: 1,-3 - tiles: ZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABTAAAAZAAAAFMAAABTAAAAZAAAAFMAAABTAAAAUwAAAFMAAABkAAAAUwAAAFMAAABkAAAAUwAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAEcAAANXAAAAVwAAA1cAAAJXAAAAVwAAAVcAAAJXAAAAVwAAAVcAAAFXAAABVwAAAlcAAANXAAADZAAAAEcAAAFHAAADVwAAATsAAAI7AAACOwAAAjsAAAI7AAAAOwAAAzsAAAA7AAACOwAAAzsAAAE7AAADVwAAAToAAANHAAACRwAAA1cAAAFXAAAAVwAAAFcAAABXAAAAVwAAA1cAAABXAAAAVwAAAFcAAANXAAABVwAAAlcAAANkAAAARwAAAmQAAABXAAABZAAAAGQAAABkAAAAFgAAAmQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAJkAAAAZAAAAFQAAABkAAAAZAAAAGQAAAAWAAADFgAAAxYAAAEWAAADYQAAAGEAAANhAAABZAAAABYAAAEWAAACFgAAAWQAAABkAAAARwAAAEcAAABkAAAAFgAAABYAAAEWAAACFgAAAmEAAAJhAAADYQAAAGQAAAAWAAABFgAAAxYAAANkAAAAZAAAAEcAAAJHAAAAZAAAABYAAAMWAAACFgAAAhYAAANhAAADYQAAAGEAAAJkAAAAZAAAABYAAAFkAAAAZAAAAGQAAABHAAADRwAAAmQAAAAWAAAAFgAAARYAAAMWAAABVwAAAVcAAANXAAACZAAAAA4AAAAWAAADDgAAAGQAAABkAAAARwAAAEcAAAFkAAAAFgAAAhYAAAMWAAAAFgAAA1cAAANXAAADVwAAAmQAAAAOAAAAFgAAAQ4AAABkAAAAZAAAAEcAAAFHAAAAZAAAABYAAAAWAAAAFgAAAhYAAAJXAAAAVwAAAVcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAGQAAABHAAACRwAAAVcAAAFXAAACVwAAATwAAAA8AAAAPAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAA== + tiles: cAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAADYwAAAAAAYwAAAAADYwAAAAACYwAAAAAAYwAAAAABYwAAAAACYwAAAAAAYwAAAAABYwAAAAABYwAAAAABYwAAAAACYwAAAAADYwAAAAADcAAAAAAAUwAAAAABUwAAAAADYwAAAAABRgAAAAACRgAAAAACRgAAAAACRgAAAAACRgAAAAAARgAAAAADRgAAAAAARgAAAAACRgAAAAADRgAAAAABRgAAAAADYwAAAAABRQAAAAADUwAAAAACUwAAAAADYwAAAAABYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAADYwAAAAABYwAAAAACYwAAAAADcAAAAAAAUwAAAAACcAAAAAAAYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAABGgAAAAADbQAAAAAAbQAAAAADbQAAAAABcAAAAAAAGgAAAAABGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAACGgAAAAACbQAAAAACbQAAAAADbQAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAACGgAAAAADbQAAAAADbQAAAAAAbQAAAAACcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAGgAAAAAAGgAAAAABGgAAAAADGgAAAAABYwAAAAABYwAAAAADYwAAAAACcAAAAAAADwAAAAAAGgAAAAADDwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAGgAAAAACGgAAAAADGgAAAAAAGgAAAAADYwAAAAADYwAAAAADYwAAAAACcAAAAAAADwAAAAAAGgAAAAABDwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAACGgAAAAACYwAAAAAAYwAAAAABYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAUwAAAAACUwAAAAABYwAAAAABYwAAAAACYwAAAAABRwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 -3,4: ind: -3,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -2,4: ind: -2,4 - tiles: AAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 4,-1: ind: 4,-1 - tiles: ZAAAAGMAAABkAAAAPQAAAD0AAAA9AAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAD0AAAA9AAAAPQAAAGQAAABkAAAAAAAAAGMAAAAAAAAAZAAAAAAAAABjAAAAAAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAZAAAAGMAAABkAAAAPQAAAD0AAAA9AAAAZAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAGQAAABjAAAAZAAAAD0AAAA9AAAAPQAAAGQAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABkAAAAYwAAAGQAAAA9AAAAPQAAAD0AAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABjAAAAZAAAADwAAAA8AAAAPAAAAGQAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABkAAAAYwAAAGQAAAA8AAAAPAAAADwAAABkAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGMAAABkAAAAPAAAADwAAAA8AAAAZAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABkAAAAYwAAAGMAAABjAAAAYwAAAGQAAABjAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAA== + tiles: cAAAAAAAbwAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 4,-2: ind: 4,-2 - tiles: YwAAAGMAAAAAAAAAZAAAADwAAAA8AAAAPAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAAA8AAAAPAAAADwAAABkAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAABkAAAAZAAAADwAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAYwAAAGMAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGQAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABjAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGMAAABjAAAAYwAAAGMAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABkAAAAYwAAAGQAAAA9AAAAPQAAAD0AAABkAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGMAAABkAAAAPQAAAD0AAAA9AAAAZAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABjAAAAZAAAAD0AAAA9AAAAPQAAAGQAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAZAAAAGMAAABkAAAAPQAAAD0AAAA9AAAAZAAAAGQAAAAAAAAAYwAAAAAAAABkAAAAAAAAAGMAAAAAAAAAZAAAAA== + tiles: bwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAA + version: 6 3,-3: ind: 3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAPAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAARwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA + version: 6 5,0: ind: 5,0 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAACFgAAAhYAAAMWAAAAFgAAAwAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAFgAAARYAAAAWAAADFgAAAhYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAABkAAAAYwAAABYAAAFjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAACYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAFgAAAWMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAABYAAAJjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGMAAABjAAAAZAAAAGMAAAAWAAACFgAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAABYAAANjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAWAAACAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAFgAAA2MAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAABYAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAWAAACAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABjAAAAFgAAAwAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAYwAAABYAAAMAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAADGgAAAAAAGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAGgAAAAABGgAAAAAAGgAAAAADGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAGgAAAAABbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAGgAAAAACGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAADbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAGgAAAAADbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAGgAAAAACAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAGgAAAAADAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAGgAAAAADAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 4,-3: ind: 4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAADwAAAA8AAAAPAAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 2,-3: ind: 2,-3 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAUwAAAFMAAABTAAAAUwAAAFMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEcAAABkAAAAVwAAAlcAAABXAAAAVwAAAlcAAAFXAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABHAAADOgAAADoAAAA6AAADOgAAADoAAAA6AAAAOgAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAmQAAABXAAADVwAAAFcAAAFXAAABVwAAA1cAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAOgAAAToAAAA6AAAATwAAAU8AAAFPAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAADoAAAI6AAABOgAAAk8AAABPAAAATwAAA2QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAGQAAAA6AAABOgAAAjoAAAFPAAACTwAAAU8AAANkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAACUAAAAlAAAAZAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAYQAAAGQAAAAlAAAAZAAAAGQAAABkAAAAJQAAAGQAAABjAAAAYwAAAGQAAAA8AAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAACUAAABkAAAAYwAAAGQAAABkAAAAPAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAADwAAABkAAAAZAAAAGQAAABkAAAAYQAAAGQAAAAlAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAADwAAAA8AAAAPAAAAA== + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAcAAAAAAAYwAAAAACYwAAAAAAYwAAAAAAYwAAAAACYwAAAAABYwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADRQAAAAAARQAAAAAARQAAAAADRQAAAAAARQAAAAAARQAAAAAARQAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACcAAAAAAAYwAAAAADYwAAAAAAYwAAAAABYwAAAAABYwAAAAADYwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAARQAAAAABRQAAAAAARQAAAAAAWwAAAAABWwAAAAABWwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAARQAAAAACRQAAAAABRQAAAAACWwAAAAAAWwAAAAAAWwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAcAAAAAAARQAAAAABRQAAAAACRQAAAAABWwAAAAACWwAAAAABWwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAA + version: 6 3,2: ind: 3,2 - tiles: ZAAAAGQAAABkAAAAZAAAAFQAAABHAAADRwAAAEcAAAJUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAARwAAAEcAAANHAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAZAAAAGQAAABMAAAATAAAAGQAAABkAAAAZAAAAGQAAABHAAACZAAAAGQAAABHAAAARwAAA2QAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAGQAAABkAAAARwAAAUcAAAFHAAACRwAAAEcAAABkAAAAZAAAAGQAAABTAAAAZAAAAEwAAABkAAAAZAAAAGQAAABMAAAAZAAAAEcAAANHAAAARwAAAEcAAAJHAAABZAAAAGMAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABMAAAATAAAAGQAAABkAAAAZAAAABYAAANkAAAAZAAAAGQAAABjAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAxYAAAAWAAADFgAAABYAAANkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAZAAAABYAAAAWAAADFgAAAxYAAAMWAAACZAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAGQAAAAWAAACFgAAAxYAAAEWAAABFgAAA2QAAABjAAAAAAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAFgAAAhYAAAEWAAACFgAAARYAAAJkAAAAYwAAAAAAAAAAAAAAZAAAAGMAAABjAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGQAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAA== + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAADUwAAAAAAUwAAAAACYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAADGgAAAAAAGgAAAAADcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAADGgAAAAADGgAAAAACcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAABGgAAAAABGgAAAAADcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAACGgAAAAABGgAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAA + version: 6 4,2: ind: 4,2 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAFMAAABkAAAAUwAAAFMAAABTAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABjAAAAAAAAAGMAAAAAAAAAAAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAYwAAAAAAAABjAAAAAAAAAA== + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAA + version: 6 4,1: ind: 4,1 - tiles: ZAAAAGMAAABjAAAAYwAAAGQAAABjAAAAYwAAAGMAAABkAAAAZAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABjAAAAAAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABkAAAAYwAAAGMAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAAAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGMAAABjAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABjAAAAAAAAAGQAAABkAAAAZAAAAAAAAABkAAAAYwAAAGMAAABjAAAAZAAAAGMAAABjAAAAYwAAAGQAAABkAAAAYwAAAAAAAABkAAAAZAAAAGQAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: cAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 3,3: ind: 3,3 - tiles: YwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: bwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -2,-3: ind: -2,-3 - tiles: FgAAABYAAAEWAAADFgAAAhYAAAAWAAADFgAAABYAAAEWAAABZAAAAFcAAANXAAAAVwAAAGQAAAAWAAADFgAAAxYAAAAWAAAAFgAAAxYAAAEWAAADFgAAABYAAAMWAAADFgAAAhYAAABXAAADVwAAAVcAAAJkAAAAFgAAABYAAAMWAAABFgAAABYAAAEWAAAAFgAAAxYAAAIWAAADFgAAABYAAAAWAAABVwAAAVcAAAJXAAAAZAAAAGQAAABkAAAAZAAAABYAAABkAAAAFgAAAxYAAABkAAAAFgAAAWQAAABkAAAAZAAAAFcAAAFXAAACVwAAAmQAAAAWAAADFgAAA1cAAANXAAADZAAAABYAAAAWAAAAZAAAAFcAAANXAAAAZAAAAFcAAABXAAACVwAAAlcAAAJkAAAAVwAAAlcAAAJXAAACVwAAAmQAAAAWAAAAFgAAAGQAAABXAAADVwAAAmQAAABXAAACVwAAA1cAAAJXAAADVwAAA1cAAANXAAADZAAAAFcAAABkAAAAFgAAABYAAABkAAAAVwAAAGQAAABkAAAAVwAAAFcAAABXAAABVwAAAlcAAAJXAAACVwAAAFcAAANXAAABVwAAAFcAAANXAAAAVwAAA1cAAANXAAABVwAAAVcAAANXAAADVwAAAVcAAABkAAAAFgAAABYAAAFXAAACVwAAAlcAAANXAAADVwAAAVcAAAFXAAADVwAAAGQAAABXAAAAVwAAAVcAAABXAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAWQAAABXAAAAZAAAAGQAAABkAAAAZAAAAFcAAANXAAADVwAAA2QAAABXAAABVwAAAlcAAABXAAADVwAAAVcAAAJXAAABVwAAAVcAAAFXAAABVwAAAmQAAAAWAAAAFgAAABYAAABkAAAAVwAAA1cAAANXAAAAVwAAAVcAAANXAAABVwAAA1cAAANXAAABVwAAA1cAAANkAAAAVwAAAlcAAANXAAADZAAAAFcAAAJXAAADVwAAA1cAAAJXAAAAVwAAA1cAAANXAAABVwAAAFcAAANXAAADZAAAAFcAAAFXAAAAVwAAA2QAAABXAAAAVwAAAVcAAAFXAAABVwAAAVcAAAFXAAADVwAAA1cAAAJXAAACVwAAAlcAAABXAAACVwAAA1cAAAFXAAABVwAAAVcAAABXAAADVwAAAFcAAAFXAAACKAAAAFcAAANXAAADVwAAAFcAAAFkAAAAVwAAA1cAAABXAAAAZAAAAFcAAABXAAABVwAAAVcAAABXAAABVwAAAVcAAAFXAAABVwAAAlcAAANXAAADVwAAA1cAAAJXAAACVwAAA2QAAABkAAAAZAAAAA== + tiles: GgAAAAAAGgAAAAABGgAAAAADGgAAAAACGgAAAAAAGgAAAAADGgAAAAAAGgAAAAABGgAAAAABcAAAAAAAYwAAAAADYwAAAAAAYwAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAAAGgAAAAAAGgAAAAADGgAAAAABGgAAAAADGgAAAAAAGgAAAAADGgAAAAADGgAAAAACGgAAAAAAYwAAAAADYwAAAAABYwAAAAACcAAAAAAAGgAAAAAAGgAAAAADGgAAAAABGgAAAAAAGgAAAAABGgAAAAAAGgAAAAADGgAAAAACGgAAAAADGgAAAAAAGgAAAAAAGgAAAAABYwAAAAABYwAAAAACYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAGgAAAAADGgAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAACYwAAAAACcAAAAAAAGgAAAAADGgAAAAADYwAAAAADYwAAAAADcAAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAYwAAAAADYwAAAAAAcAAAAAAAYwAAAAAAYwAAAAACYwAAAAACYwAAAAACcAAAAAAAYwAAAAACYwAAAAACYwAAAAACYwAAAAACcAAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAYwAAAAADYwAAAAACcAAAAAAAYwAAAAACYwAAAAADYwAAAAACYwAAAAADYwAAAAADYwAAAAADYwAAAAADcAAAAAAAYwAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAABYwAAAAACYwAAAAACYwAAAAACYwAAAAAAYwAAAAADYwAAAAABYwAAAAAAYwAAAAADYwAAAAAAYwAAAAADYwAAAAADYwAAAAABYwAAAAABYwAAAAADYwAAAAADYwAAAAABYwAAAAAAcAAAAAAAGgAAAAAAGgAAAAABYwAAAAACYwAAAAACYwAAAAADYwAAAAADYwAAAAABYwAAAAABYwAAAAADYwAAAAAAcAAAAAAAYwAAAAAAYwAAAAABYwAAAAAAYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABcAAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAADYwAAAAADcAAAAAAAYwAAAAABYwAAAAACYwAAAAAAYwAAAAADYwAAAAABYwAAAAACYwAAAAABYwAAAAABYwAAAAABYwAAAAABYwAAAAACcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAYwAAAAADYwAAAAADYwAAAAAAYwAAAAABYwAAAAADYwAAAAABYwAAAAADYwAAAAADYwAAAAABYwAAAAADYwAAAAADcAAAAAAAYwAAAAACYwAAAAADYwAAAAADcAAAAAAAYwAAAAACYwAAAAADYwAAAAADYwAAAAACYwAAAAAAYwAAAAADYwAAAAADYwAAAAABYwAAAAAAYwAAAAADYwAAAAADcAAAAAAAYwAAAAABYwAAAAAAYwAAAAADcAAAAAAAYwAAAAAAYwAAAAABYwAAAAABYwAAAAABYwAAAAABYwAAAAABYwAAAAADYwAAAAADYwAAAAACYwAAAAACYwAAAAACYwAAAAAAYwAAAAACYwAAAAADYwAAAAABYwAAAAABYwAAAAABYwAAAAAAYwAAAAADYwAAAAAAYwAAAAABYwAAAAACLAAAAAAAYwAAAAADYwAAAAADYwAAAAAAYwAAAAABcAAAAAAAYwAAAAADYwAAAAAAYwAAAAAAcAAAAAAAYwAAAAAAYwAAAAABYwAAAAABYwAAAAAAYwAAAAABYwAAAAABYwAAAAABYwAAAAABYwAAAAACYwAAAAADYwAAAAADYwAAAAADYwAAAAACYwAAAAACYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 -3,-3: ind: -3,-3 - tiles: ZAAAAGQAAABkAAAAZAAAAFcAAAJXAAABVwAAAWQAAABHAAACRwAAAGQAAAAWAAACFgAAABYAAAAWAAADFgAAAlcAAANXAAADVwAAAVcAAAFXAAACVwAAA1cAAAJXAAACRwAAA0cAAAAWAAABFgAAAxYAAAAWAAABFgAAARYAAAJkAAAAZAAAAGQAAABkAAAAVwAAAVcAAAFXAAACZAAAAEcAAAJHAAACZAAAABYAAAMWAAACFgAAABYAAAEWAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABGAAAARgAAA0YAAAVkAAAAZAAAAGQAAABTAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAUwAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAFMAAABTAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAFMAAABkAAAARwAAA0cAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAACRwAAAWQAAABkAAAAZAAAAGQAAABTAAAAUwAAAFMAAABTAAAAZAAAAEcAAANHAAACZAAAAEcAAANkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAAFkAAAAZAAAAEcAAANHAAADZAAAAGQAAABkAAAARwAAAkcAAABHAAACRwAAAEcAAAJkAAAAZAAAAGQAAABHAAADRwAAAUcAAAFkAAAARwAAA2QAAABkAAAAVAAAAEcAAANXAAABVwAAAVcAAAJXAAADZAAAAEcAAAJkAAAAZAAAAEcAAAJHAAACZAAAAGQAAABkAAAAZAAAAGQAAABHAAADVwAAAFcAAAFXAAAAVwAAA1cAAABHAAABRwAAAkcAAABkAAAARwAAAmQAAABHAAABZAAAAGQAAABkAAAARwAAAlcAAANXAAADVwAAAVcAAANkAAAAZAAAAGQAAABHAAABZAAAAGQAAABkAAAARwAAAmQAAABkAAAAZAAAAEcAAAFXAAACVwAAAVcAAANXAAADVwAAAA== + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAABYwAAAAABcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAAAGgAAAAADGgAAAAACYwAAAAADYwAAAAADYwAAAAABYwAAAAABYwAAAAACYwAAAAADYwAAAAACYwAAAAACUwAAAAADUwAAAAAAGgAAAAABGgAAAAADGgAAAAAAGgAAAAABGgAAAAABGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAABYwAAAAACcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAGgAAAAADGgAAAAACGgAAAAAAGgAAAAABGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUQAAAAAAUQAAAAADUQAAAAAFcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAABcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAADYwAAAAABYwAAAAABYwAAAAACYwAAAAADcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADYwAAAAAAYwAAAAABYwAAAAAAYwAAAAADYwAAAAAAUwAAAAABUwAAAAACUwAAAAAAcAAAAAAAUwAAAAACcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACYwAAAAADYwAAAAADYwAAAAABYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABYwAAAAACYwAAAAABYwAAAAADYwAAAAADYwAAAAAA + version: 6 0,-4: ind: 0,-4 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAGMAAABTAAAAUwAAAGQAAABTAAAAUwAAAGQAAABkAAAAUwAAAGQAAABTAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAUwAAAFMAAABkAAAAZAAAAFMAAABkAAAAUwAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAUwAAAFMAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAqAAAAKgAAACoAAABkAAAATAAAAGQAAABHAAADRwAAAEcAAAFHAAADRwAAAWMAAABkAAAAPAAAADwAAAA8AAAAKgAAACoAAAAqAAAAKgAAACoAAABkAAAAZAAAAEcAAAJHAAAARwAAAkcAAAFjAAAAZAAAADwAAAA8AAAAPAAAAGQAAABkAAAAKgAAACoAAAAqAAAAZAAAAEcAAAFHAAACRwAAAEcAAAJHAAAAZAAAAGQAAAA8AAAAPAAAADwAAABkAAAAZAAAAGQAAAAqAAAAKgAAAGQAAABHAAABRwAAA0cAAANHAAABRwAAAEcAAAJkAAAAZAAAABYAAABkAAAARwAAA0wAAAAWAAACFgAAASoAAABkAAAARwAAA0cAAAFHAAADRwAAAEcAAANHAAAAZAAAAEcAAANHAAACRwAAAGQAAABMAAAAZAAAAGQAAAAWAAABZAAAAEcAAAJXAAABVwAAAVcAAABXAAADVwAAAkcAAABHAAABRwAAAkcAAABkAAAAZAAAABYAAANkAAAAZAAAAGQAAABXAAACVwAAAFcAAAJXAAAAVwAAAVcAAANHAAABRwAAA0cAAAFHAAAAZAAAAGQAAAAWAAABZAAAAEwAAABkAAAAVwAAAVcAAABXAAABVwAAAlcAAABXAAABZAAAAEcAAAJHAAADRwAAAA== + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALgAAAAAALgAAAAAALgAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAABbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAABbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAALgAAAAAALgAAAAAALgAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALgAAAAAALgAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAUwAAAAADWAAAAAAAGgAAAAACGgAAAAABLgAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAUwAAAAACYwAAAAABYwAAAAABYwAAAAAAYwAAAAADYwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAAAYwAAAAACYwAAAAAAYwAAAAABYwAAAAADUwAAAAABUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAWAAAAAAAcAAAAAAAYwAAAAABYwAAAAAAYwAAAAABYwAAAAACYwAAAAAAYwAAAAABcAAAAAAAUwAAAAACUwAAAAADUwAAAAAA + version: 6 -1,-4: ind: -1,-4 - tiles: ZAAAAGQAAABkAAAAZAAAAEcAAABHAAABRwAAAEcAAANHAAABRwAAAkcAAAFHAAACRwAAAUcAAAJHAAAAZAAAAGQAAABkAAAAZAAAAFQAAABHAAABRwAAAUcAAABHAAADRwAAAEcAAABHAAADRwAAAEcAAABHAAACRwAAAGQAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAABHAAADRwAAAEcAAAJHAAABRwAAA0cAAAJHAAADRwAAAUcAAABkAAAARwAAAGQAAABkAAAAZAAAABYAAAMWAAAAFgAAAWQAAAAWAAAAFgAAAxYAAAJkAAAARwAAAUcAAANHAAAAZAAAAEcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAADRwAAA2QAAABHAAACZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABHAAADRwAAAUcAAABkAAAARwAAAGQAAABTAAAAUwAAAFMAAABTAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAARwAAAEcAAAFHAAABZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAADRwAAAGQAAABXAAABVwAAAGQAAAATAAACEwAABBMAAANkAAAAUwAAAGQAAABkAAAAZAAAABYAAANHAAAARwAAA0cAAAJkAAAAVwAAAFcAAABkAAAAEwAABBMAAAQTAAAGZAAAAFMAAABkAAAAZAAAAGQAAAAWAAAARwAAAEcAAAJHAAABZAAAAFcAAABXAAABZAAAABMAAAYTAAAGEwAABWQAAABTAAAAZAAAAGQAAABkAAAAZAAAAEcAAANHAAADRwAAAWQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABHAAABRwAAAkcAAAJkAAAAFgAAARYAAAIWAAACFgAAAhYAAAIWAAAAFgAAAhYAAABkAAAAZAAAAFMAAABkAAAARwAAA0cAAAJHAAAARwAAAxYAAAIWAAADFgAAAhYAAAEWAAABFgAAARYAAAIWAAACVAAAAGQAAABTAAAAZAAAAEcAAANHAAAARwAAAEcAAAAWAAAAFgAAAxYAAAEWAAACFgAAABYAAAIWAAABFgAAAGQAAABkAAAAUwAAAGQAAABHAAAARwAAAEcAAAJkAAAAFgAAAhYAAAAWAAADFgAAAxYAAAAWAAABFgAAABYAAANkAAAAZAAAAGQAAABkAAAARwAAAkcAAABHAAACZAAAAA== + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAABcAAAAAAAGgAAAAAAGgAAAAADGgAAAAACcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAADcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAAAcAAAAAAAYwAAAAABYwAAAAAAcAAAAAAAFAAAAAACFAAAAAAEFAAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAYwAAAAAAYwAAAAAAcAAAAAAAFAAAAAAEFAAAAAAEFAAAAAAGcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAYwAAAAAAYwAAAAABcAAAAAAAFAAAAAAGFAAAAAAGFAAAAAAFcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAACcAAAAAAAGgAAAAABGgAAAAACGgAAAAACGgAAAAACGgAAAAACGgAAAAAAGgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAADGgAAAAACGgAAAAADGgAAAAACGgAAAAABGgAAAAABGgAAAAABGgAAAAACGgAAAAACYAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAGgAAAAAAGgAAAAADGgAAAAABGgAAAAACGgAAAAAAGgAAAAACGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAGgAAAAACGgAAAAAAGgAAAAADGgAAAAADGgAAAAAAGgAAAAABGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACcAAAAAAA + version: 6 -2,-4: ind: -2,-4 - tiles: ZAAAABYAAAAWAAABZAAAADMAAAAzAAAAMwAAADMAAAAWAAACFgAAA2QAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABHAAACRwAAAVMAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAFMAAABkAAAARwAAAEcAAANkAAAAZAAAAGQAAABkAAAAFgAAAEcAAAAWAAAARwAAAhYAAAJkAAAAZAAAAFQAAABkAAAAZAAAAEcAAAFHAAADZAAAAEwAAABkAAAAVAAAAEcAAAIWAAAARwAAAhYAAAFHAAADZAAAAFcAAABXAAADVwAAAmQAAABHAAAARwAAA2QAAABkAAAAZAAAAGQAAAAWAAADRwAAARYAAANHAAADFgAAAUcAAAJXAAAAVwAAA1cAAANkAAAAZAAAAEcAAABkAAAAZAAAAGQAAABkAAAARwAAARYAAANHAAACFgAAAEcAAAJkAAAAVwAAAlcAAAFXAAACVwAAAVcAAANXAAABTAAAAEwAAABkAAAAZAAAABYAAANHAAACFgAAAkcAAAMWAAACZAAAAFcAAAFXAAADVwAAAFcAAANXAAACVwAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAACVwAAAFcAAANXAAADVwAAAVcAAAEWAAABFgAAAmQAAAAWAAADFgAAA1cAAAJXAAACVwAAA1cAAABkAAAAVwAAA1cAAAJXAAAAZAAAAGQAAABkAAAAFgAAABYAAANkAAAAFgAAAxYAAANXAAAAVwAAAVcAAAJXAAABZAAAABYAAAAWAAAAFgAAAWQAAAAWAAABFgAAAxYAAAEWAAAAZAAAABYAAAMWAAAAVwAAA1cAAAJXAAAAVwAAA2QAAABXAAADVwAAAFcAAAFkAAAAFgAAAhYAAAAWAAADZAAAAGQAAABkAAAAFgAAAhYAAAMWAAADFgAAARYAAANkAAAAVwAAAlcAAAFXAAAAZAAAABYAAAAWAAADFgAAAmQAAAAWAAAAZAAAABYAAAFkAAAAZAAAAGQAAABkAAAAZAAAAFcAAAFXAAACVwAAAxYAAAEWAAACFgAAAQ== + tiles: cAAAAAAAGgAAAAAAGgAAAAABcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAACUwAAAAABXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAUwAAAAAAGgAAAAAAUwAAAAACGgAAAAACcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAWAAAAAAAcAAAAAAAYAAAAAAAUwAAAAACGgAAAAAAUwAAAAACGgAAAAABUwAAAAADcAAAAAAAYwAAAAAAYwAAAAADYwAAAAACcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADUwAAAAABGgAAAAADUwAAAAADGgAAAAABUwAAAAACYwAAAAAAYwAAAAADYwAAAAADcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABGgAAAAADUwAAAAACGgAAAAAAUwAAAAACcAAAAAAAYwAAAAACYwAAAAABYwAAAAACYwAAAAABYwAAAAADYwAAAAABWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADUwAAAAACGgAAAAACUwAAAAADGgAAAAACcAAAAAAAYwAAAAABYwAAAAADYwAAAAAAYwAAAAADYwAAAAACYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAAAYwAAAAADYwAAAAADYwAAAAABYwAAAAABGgAAAAABGgAAAAACcAAAAAAAGgAAAAADGgAAAAADYwAAAAACYwAAAAACYwAAAAADYwAAAAAAcAAAAAAAYwAAAAADYwAAAAACYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAADcAAAAAAAGgAAAAADGgAAAAADYwAAAAAAYwAAAAABYwAAAAACYwAAAAABcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAABcAAAAAAAGgAAAAABGgAAAAADGgAAAAABGgAAAAAAcAAAAAAAGgAAAAADGgAAAAAAYwAAAAADYwAAAAACYwAAAAAAYwAAAAADcAAAAAAAYwAAAAADYwAAAAAAYwAAAAABcAAAAAAAGgAAAAACGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAADGgAAAAABGgAAAAADcAAAAAAAYwAAAAACYwAAAAABYwAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAACcAAAAAAAGgAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAACYwAAAAADGgAAAAABGgAAAAACGgAAAAAB + version: 6 -3,-4: ind: -3,-4 - tiles: YwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAGQAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAFMAAABkAAAATAAAAEwAAABMAAAATAAAACoAAAAqAAAAKgAAAGQAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAEwAAABMAAAAZAAAAGQAAAAqAAAAKgAAACoAAABkAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAKgAAACoAAAAqAAAAZAAAAAAAAABjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAEwAAABMAAAATAAAACoAAAAqAAAAKgAAAGQAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAqAAAAKgAAACoAAABkAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAACVwAAAFcAAAJXAAABKgAAACoAAAAqAAAAZAAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAVwAAAFcAAAFXAAACVwAAA2QAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAFcAAAJXAAADVwAAAVcAAAEAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAAAWAAAAFgAAAxYAAAMWAAACAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: bwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAALgAAAAAALgAAAAAALgAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAALgAAAAAALgAAAAAALgAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALgAAAAAALgAAAAAALgAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAALgAAAAAALgAAAAAALgAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALgAAAAAALgAAAAAALgAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAAAYwAAAAACYwAAAAABLgAAAAAALgAAAAAALgAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAABYwAAAAACYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAADYwAAAAABYwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAADGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 -4,-3: ind: -4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAVwAAA1cAAANXAAADVwAAA1cAAAFXAAABZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAFcAAABXAAABVwAAAVcAAANXAAAAVwAAAVcAAANjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABXAAACVwAAA1cAAABXAAADVwAAA1cAAAFkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAATAAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAFMAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAYQAAA2EAAANhAAACZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAYQAAA2EAAANhAAACZAAAAGEAAABhAAADYQAAAmQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYQAAAGEAAABkAAAAZAAAAGEAAAFhAAABYQAAAmEAAAFkAAAAZAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAYwAAAAADYwAAAAADYwAAAAADYwAAAAADYwAAAAABYwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAYwAAAAAAYwAAAAABYwAAAAABYwAAAAADYwAAAAAAYwAAAAABYwAAAAADbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAYwAAAAACYwAAAAADYwAAAAAAYwAAAAADYwAAAAADYwAAAAABcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAADbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAADbQAAAAACcAAAAAAAbQAAAAAAbQAAAAADbQAAAAACcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAABbQAAAAACbQAAAAABcAAAAAAAcAAAAAAA + version: 6 -4,-4: ind: -4,-4 - tiles: YwAAAAAAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAYwAAAGMAAABjAAAAZAAAAGMAAABjAAAAYwAAAGQAAABjAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAFcAAAFXAAADVwAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABXAAACVwAAAmQAAABXAAACVwAAAlcAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAVwAAAVcAAANXAAADVwAAAFcAAAJXAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAFcAAABXAAABVwAAAlcAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABXAAADVwAAAlcAAAFXAAACVwAAAlcAAAJkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAVwAAAlcAAABkAAAAVwAAAVcAAAFXAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABXAAABZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGQAAABXAAABVwAAAlcAAAFXAAADVwAAAlcAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABkAAAAVwAAAFcAAAJXAAABVwAAA1cAAANXAAABZAAAAA== + tiles: bwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAADYwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAYwAAAAACYwAAAAACcAAAAAAAYwAAAAACYwAAAAACYwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAYwAAAAABYwAAAAADYwAAAAADYwAAAAAAYwAAAAACYwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAABYwAAAAACYwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAYwAAAAADYwAAAAACYwAAAAABYwAAAAACYwAAAAACYwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAYwAAAAACYwAAAAAAcAAAAAAAYwAAAAABYwAAAAABYwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAYwAAAAABYwAAAAACYwAAAAABYwAAAAADYwAAAAACYwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAYwAAAAAAYwAAAAACYwAAAAABYwAAAAADYwAAAAADYwAAAAABcAAAAAAA + version: 6 -5,-3: ind: -5,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAEwAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABMAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -3,-5: ind: -3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAYwAAAGMAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAAAAAAAAYwAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYwAAAGQAAABjAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 -2,-5: ind: -2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAABYAAAEWAAAAFgAAAhYAAAEWAAACFgAAAxYAAABkAAAAFgAAAhYAAAMWAAADFgAAARYAAAAWAAABFgAAA2QAAABkAAAAFgAAARYAAAMWAAADFgAAAWQAAABkAAAAZAAAAGQAAAAWAAACFgAAAhYAAAEWAAACFgAAABYAAAJkAAAAZAAAABYAAAMWAAACFgAAAhYAAAEWAAACFgAAAxYAAANkAAAAFgAAAhYAAAEWAAADFgAAAxYAAAEWAAADZAAAAGQAAAAWAAACFgAAABYAAAEWAAADFgAAAhYAAAMWAAAAFgAAARYAAAIWAAACFgAAARYAAAAWAAACFgAAA2QAAABkAAAAZAAAABYAAAMWAAACFgAAAGQAAAAWAAAAFgAAA2QAAAAWAAABFgAAABYAAAIWAAADFgAAAxYAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAGQAAABkAAAAZAAAABYAAAMWAAAAFgAAAxYAAAIWAAADZAAAABYAAAIWAAAAZAAAADMAAAAzAAAAMwAAADMAAAAWAAACFgAAAWQAAAAWAAABFgAAAhYAAAAWAAABFgAAAGQAAAAWAAADFgAAAhYAAAIzAAAAMwAAADMAAAAzAAAAZAAAAGQAAABkAAAAFgAAAxYAAAIWAAABFgAAAhYAAANkAAAAFgAAAhYAAAJkAAAAMwAAADMAAAAzAAAAMwAAAGQAAAAWAAAAFgAAABYAAAAWAAADFgAAAhYAAAAWAAACZAAAABYAAAMWAAAAZAAAADMAAAAzAAAAMwAAADMAAABkAAAAZAAAAGQAAAAWAAABFgAAABYAAAIWAAABFgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAAAGgAAAAACGgAAAAABGgAAAAACGgAAAAADGgAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAADGgAAAAABGgAAAAAAGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAABGgAAAAACGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAACGgAAAAABGgAAAAACGgAAAAADGgAAAAADcAAAAAAAGgAAAAACGgAAAAABGgAAAAADGgAAAAADGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAABGgAAAAADGgAAAAACGgAAAAADGgAAAAAAGgAAAAABGgAAAAACGgAAAAACGgAAAAABGgAAAAAAGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAAAcAAAAAAAGgAAAAAAGgAAAAADcAAAAAAAGgAAAAABGgAAAAAAGgAAAAACGgAAAAADGgAAAAADGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAADGgAAAAACGgAAAAADcAAAAAAAGgAAAAACGgAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAGgAAAAACGgAAAAABcAAAAAAAGgAAAAABGgAAAAACGgAAAAAAGgAAAAABGgAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAACOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAABGgAAAAACGgAAAAADcAAAAAAAGgAAAAACGgAAAAACcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAADGgAAAAACGgAAAAAAGgAAAAACcAAAAAAAGgAAAAADGgAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAACGgAAAAABGgAAAAAA + version: 6 -4,-5: ind: -4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABkAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABjAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAYwAAAAAAAABjAAAAZAAAAGMAAAAAAAAAYwAAAGQAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYwAAAGQAAABjAAAAZAAAAGMAAABkAAAAYwAAAGQAAABjAAAAZAAAAGMAAABjAAAAYwAAAAAAAABjAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAABjAAAAYwAAAAAAAAAAAAAAYwAAAGQAAABjAAAAZAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYwAAAGQAAAAAAAAAZAAAAGMAAABkAAAAAAAAAGQAAABjAAAAZAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAA + version: 6 4,3: ind: 4,3 - tiles: YwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAABkAAAAZAAAAGMAAABkAAAAZAAAAGMAAABkAAAAZAAAAGMAAABkAAAAZAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABjAAAAZAAAAGQAAABjAAAAZAAAAGQAAABjAAAAZAAAAGQAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAABkAAAAZAAAAGMAAABkAAAAZAAAAGMAAABkAAAAZAAAAGMAAABkAAAAZAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABjAAAAZAAAAGQAAABjAAAAZAAAAGQAAABjAAAAZAAAAGQAAABjAAAAAAAAAGMAAAAAAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAABkAAAAZAAAAGMAAABkAAAAZAAAAGMAAABkAAAAZAAAAGMAAABkAAAAZAAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGQAAABjAAAAZAAAAGQAAABjAAAAZAAAAGQAAABjAAAAZAAAAGQAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: bwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 1,-4: ind: 1,-4 - tiles: YwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAFgAAAVMAAABkAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAFMAAABTAAAAUwAAAEcAAAJkAAAAUwAAABYAAABTAAAAZAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAUwAAAFMAAABHAAABZAAAAFMAAAAWAAACUwAAAGQAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABTAAAAUwAAAFMAAABTAAAARwAAA2QAAAAWAAACFgAAABYAAAJkAAAAKAAAAGQAAABkAAAAZAAAAGQAAABUAAAARwAAAkcAAANHAAABRwAAAEcAAANHAAABRwAAAEcAAAJHAAACZAAAACgAAABkAAAAYwAAAGQAAABTAAAAZAAAAEcAAABHAAABRwAAAkcAAABHAAADRwAAA0cAAAJHAAABRwAAAmQAAAAoAAAAZAAAAGMAAABkAAAAUwAAAGQAAABHAAAARwAAA0cAAAFHAAAARwAAAEcAAABHAAABRwAAAEcAAAFkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAABHAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAFcAAABXAAACVwAAARYAAAEWAAABFgAAAhYAAAJkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABXAAAAVwAAAVcAAAIWAAADFgAAAxYAAAMWAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAAARwAAAEcAAANHAAABVwAAAFcAAAJXAAAAFgAAAhYAAAMWAAACFgAAAWQAAABkAAAAZAAAAGQAAABHAAAARwAAAUcAAABHAAACRwAAAVcAAAJXAAAAVwAAARYAAAAWAAACFgAAAhYAAANUAAAAZAAAAGQAAABkAAAAZAAAAEcAAAJHAAABRwAAAWQAAAAWAAAAFgAAAhYAAAAWAAADFgAAARYAAAMWAAADZAAAAGQAAABkAAAAZAAAAA== + tiles: bwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAGgAAAAABXwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAUwAAAAACcAAAAAAAXwAAAAAAGgAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAUwAAAAABcAAAAAAAXwAAAAAAGgAAAAACXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAUwAAAAADcAAAAAAAGgAAAAACGgAAAAAAGgAAAAACcAAAAAAALAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAACcAAAAAAALAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAACcAAAAAAALAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYwAAAAAAYwAAAAACYwAAAAABGgAAAAABGgAAAAABGgAAAAACGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAABYwAAAAACGgAAAAADGgAAAAADGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABYwAAAAAAYwAAAAACYwAAAAAAGgAAAAACGgAAAAADGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAABYwAAAAACYwAAAAAAYwAAAAABGgAAAAAAGgAAAAACGgAAAAACGgAAAAADYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAABcAAAAAAAGgAAAAAAGgAAAAACGgAAAAAAGgAAAAADGgAAAAABGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 -1,-5: ind: -1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAhYAAAAWAAADZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAAMWAAADFgAAA2QAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAADFgAAAxYAAAFkAAAARwAAAEcAAABHAAACRwAAA0cAAANHAAACRwAAAUcAAAJHAAADRwAAAEcAAANkAAAAFgAAAhYAAAIWAAADZAAAAEcAAAJHAAACRwAAAkcAAABHAAAARwAAAkcAAAFHAAABRwAAAkcAAABHAAACZAAAABYAAAEWAAABFgAAAGQAAABHAAABRwAAAUcAAAJHAAABRwAAAkcAAAFHAAAARwAAAkcAAAJHAAACRwAAAUcAAAAWAAADFgAAA2QAAABkAAAARwAAAkcAAANHAAABRwAAAEcAAANkAAAARwAAAEcAAAJHAAACRwAAAEcAAABkAAAAFgAAAhYAAAFkAAAARwAAAkcAAAJHAAAARwAAAkcAAABHAAABKAAAAEcAAAJHAAACRwAAAEcAAABHAAAAZAAAABYAAAEWAAADFgAAAUcAAAFHAAAARwAAAUcAAABHAAAARwAAAGQAAABHAAAARwAAA0cAAAJHAAACRwAAA2QAAAAWAAADFgAAARYAAABHAAADRwAAA0cAAAJHAAACRwAAAEcAAAMoAAAARwAAAUcAAAFHAAAARwAAAkcAAANkAAAAFgAAABYAAAJkAAAARwAAAEcAAABHAAADRwAAAUcAAANHAAAAZAAAAEcAAAFHAAADRwAAAkcAAAJHAAADZAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAABcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAADcAAAAAAAGgAAAAACGgAAAAACGgAAAAADcAAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAGgAAAAABGgAAAAABGgAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAAAGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAADcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAGgAAAAACGgAAAAABcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABLAAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAADcAAAAAAAGgAAAAADGgAAAAABGgAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAADLAAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAADcAAAAAAAGgAAAAAAGgAAAAACcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAADcAAAAAAA + version: 6 0,-5: ind: 0,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAUcAAABHAAACZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEcAAANHAAAARwAAAUcAAAJkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABHAAADRwAAAkcAAAFHAAACZAAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAARwAAA0cAAAJHAAACRwAAAmQAAABjAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAEcAAAJHAAABRwAAAUcAAABkAAAAYwAAAGMAAABjAAAAZAAAAGMAAABjAAAAYwAAAGQAAABjAAAAYwAAAGMAAABHAAABRwAAAkcAAABHAAACZAAAAGMAAABjAAAAYwAAAGQAAABjAAAAYwAAAGMAAABkAAAAYwAAAGMAAABjAAAARwAAAEcAAABHAAAARwAAAGQAAABkAAAAZAAAAGMAAABkAAAAYwAAAGMAAABjAAAAZAAAAGMAAABjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAADAAAAAwAAAAMAAAADAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAGQAAABkAAAAUwAAAFMAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 2,-4: ind: 2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABTAAAAZAAAAGQAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAUwAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAKAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAACgAAABkAAAAUwAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAKAAAAGQAAAAoAAAAZAAAAFMAAABkAAAAZAAAAGQAAABkAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAACgAAABkAAAAKAAAAGQAAABTAAAAZAAAAGQAAABkAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAACgAAABkAAAAUwAAAGQAAABkAAAAZAAAAGQAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAFMAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAFMAAABTAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABTAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAUwAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAALAAAAAAAcAAAAAAALAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAALAAAAAAAcAAAAAAALAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 2,-5: ind: 2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABkAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAA + version: 6 2,-6: ind: 2,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAA + version: 6 1,-5: ind: 1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGQAAABjAAAAYwAAAGMAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABkAAAAYwAAAGMAAABjAAAAZAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAZAAAAGMAAABjAAAAYwAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAA + version: 6 1,-6: ind: 1,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 5,-1: ind: 5,-1 - tiles: ZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAABYAAAEWAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAWAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAGMAAABjAAAAFgAAAGMAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAABYAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAWAAACFgAAABYAAAIWAAAAFgAAAw== + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAGgAAAAABGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAGgAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAGgAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAGgAAAAACGgAAAAAAGgAAAAACGgAAAAAAGgAAAAAD + version: 6 6,0: ind: 6,0 - tiles: FgAAAhYAAAIWAAADFgAAABYAAAEWAAADFgAAARYAAAMWAAAAFgAAABYAAAAWAAACFgAAAhYAAAIWAAADFgAAAhYAAANkAAAAFgAAARYAAAIWAAADZAAAABYAAAAWAAAAFgAAAhYAAAIWAAABZAAAABYAAAIWAAACFgAAAxYAAANjAAAAZAAAABYAAAEWAAACFgAAAmQAAAAWAAACFgAAABYAAAAWAAAAFgAAAmQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAADZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAFgAAARYAAAEWAAAAFgAAABYAAAAWAAADFgAAA2QAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAABYAAAEWAAACDgAAAA4AAAAOAAAAFgAAAxYAAAJkAAAAZAAAAGQAAAAAAAAAYwAAAGMAAABkAAAAZAAAAGQAAAAWAAACDgAAAA4AAAAWAAAADgAAAA4AAAAWAAACZAAAAGQAAABkAAAAYwAAAGMAAAAAAAAAZAAAAGQAAABkAAAADgAAAA4AAABkAAAAZAAAAGQAAAAOAAAADgAAAGQAAABkAAAAZAAAAAAAAABjAAAAAAAAAGQAAABkAAAAZAAAABYAAAIOAAAAZAAAACwAAABkAAAADgAAABYAAANkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAABkAAAAZAAAACwAAAAWAAACDgAAABYAAAEWAAABFgAAAA4AAAAWAAACLAAAAGQAAABkAAAAAAAAAGMAAAAAAAAAZAAAAGQAAABkAAAAFgAAAQ4AAABkAAAAZAAAAGQAAAAOAAAAFgAAAWQAAABkAAAAZAAAAAAAAABjAAAAAAAAAGQAAABkAAAAZAAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAABkAAAAZAAAAGQAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAGQAAAAWAAADFgAAABYAAAAWAAACFgAAARYAAAMWAAACZAAAAGQAAAAAAAAAAAAAABYAAANjAAAAYwAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAA2QAAABkAAAAZAAAAGQAAABkAAAAYwAAAGMAAAAWAAADYwAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAABjAAAAFgAAAWQAAABkAAAAZAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAA== + tiles: GgAAAAACGgAAAAACGgAAAAADGgAAAAAAGgAAAAABGgAAAAADGgAAAAABGgAAAAADGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAACGgAAAAACGgAAAAACGgAAAAADGgAAAAACGgAAAAADcAAAAAAAGgAAAAABGgAAAAACGgAAAAADcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAACGgAAAAACGgAAAAABcAAAAAAAGgAAAAACGgAAAAACGgAAAAADGgAAAAADbwAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAACcAAAAAAAGgAAAAACGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAACDwAAAAAADwAAAAAADwAAAAAAGgAAAAADGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACDwAAAAAADwAAAAAAGgAAAAAADwAAAAAADwAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADwAAAAAADwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADwAAAAAADwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACDwAAAAAAcAAAAAAAMwAAAAAAcAAAAAAADwAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAGgAAAAACDwAAAAAAGgAAAAABGgAAAAABGgAAAAAADwAAAAAAGgAAAAACMwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABDwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADwAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAAAGgAAAAACGgAAAAABGgAAAAADGgAAAAACcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAGgAAAAADbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAA + version: 6 6,-1: ind: 6,-1 - tiles: FgAAAGQAAABkAAAAZAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAYwAAABYAAAJjAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAGMAAAAWAAADYwAAAAAAAABkAAAAZAAAAA4AAAAOAAAADgAAABYAAAEOAAAADgAAAA4AAABkAAAAZAAAAAAAAABjAAAAFgAAAWMAAAAAAAAAZAAAAGQAAAAWAAACFgAAABYAAAIWAAABFgAAAxYAAAIWAAADZAAAAGQAAAAAAAAAYwAAABYAAANjAAAAYwAAAGQAAABkAAAADgAAAA4AAAAWAAABLAAAABYAAAMOAAAADgAAAGQAAABkAAAAYwAAAGMAAAAWAAABYwAAAAAAAABkAAAADgAAAA4AAAAOAAAAFgAAAiwAAAAWAAAADgAAAA4AAAAOAAAAZAAAAAAAAABjAAAAFgAAAmMAAAAAAAAAZAAAABYAAAIWAAABFgAAAhYAAAAWAAABFgAAAxYAAAAWAAAAFgAAAWQAAAAAAAAAYwAAABYAAABjAAAAAAAAAGQAAAAsAAAAFgAAAywAAABkAAAAFgAAAWQAAAAsAAAAFgAAAiwAAABkAAAAAAAAAGMAAAAWAAACYwAAAAAAAABkAAAALAAAABYAAAIsAAAAZAAAABYAAAFkAAAALAAAABYAAAIsAAAAZAAAAAAAAABjAAAAFgAAA2MAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAWAAABZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAYwAAABYAAAFjAAAAZAAAAGQAAABkAAAAMwAAADMAAAAzAAAAMwAAADMAAAAzAAAAMwAAAGQAAABkAAAAZAAAAGMAAAAWAAADFgAAABYAAAEWAAABFgAAATMAAAAzAAAAMwAAADMAAAAzAAAAMwAAADMAAABkAAAAZAAAAGQAAABjAAAAYwAAAGMAAABkAAAAFgAAAGQAAAAzAAAAMwAAADMAAAAzAAAAMwAAADMAAAAzAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAZAAAABYAAAJkAAAAMwAAADMAAAAzAAAAMwAAADMAAAAzAAAAMwAAAGQAAABkAAAAZAAAAAAAAABjAAAAZAAAAGQAAAAWAAAAZAAAAGQAAABkAAAAZAAAABYAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAFgAAAmQAAAAWAAACFgAAAhYAAAFkAAAAFgAAARYAAAIWAAABFgAAARYAAAFkAAAAFgAAARYAAAAWAAAAFgAAAQ== + tiles: GgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAGgAAAAACbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAGgAAAAADbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAADwAAAAAADwAAAAAADwAAAAAAGgAAAAABDwAAAAAADwAAAAAADwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAGgAAAAABbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAACGgAAAAABGgAAAAADGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAGgAAAAADbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAADwAAAAAADwAAAAAAGgAAAAABMwAAAAAAGgAAAAADDwAAAAAADwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAGgAAAAABbwAAAAAAAAAAAAAAcAAAAAAADwAAAAAADwAAAAAADwAAAAAAGgAAAAACMwAAAAAAGgAAAAAADwAAAAAADwAAAAAADwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAGgAAAAACbwAAAAAAAAAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAACGgAAAAAAGgAAAAABGgAAAAADGgAAAAAAGgAAAAAAGgAAAAABcAAAAAAAAAAAAAAAbwAAAAAAGgAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAMwAAAAAAGgAAAAADMwAAAAAAcAAAAAAAGgAAAAABcAAAAAAAMwAAAAAAGgAAAAACMwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAGgAAAAACbwAAAAAAAAAAAAAAcAAAAAAAMwAAAAAAGgAAAAACMwAAAAAAcAAAAAAAGgAAAAABcAAAAAAAMwAAAAAAGgAAAAACMwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAGgAAAAADbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAGgAAAAABbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAGgAAAAADGgAAAAAAGgAAAAABGgAAAAABGgAAAAABOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAGgAAAAACGgAAAAACGgAAAAABcAAAAAAAGgAAAAABGgAAAAACGgAAAAABGgAAAAABGgAAAAABcAAAAAAAGgAAAAABGgAAAAAAGgAAAAAAGgAAAAAB + version: 6 6,1: ind: 6,1 - tiles: FgAAAWMAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAABYAAABjAAAAYwAAAGQAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAWAAAAFgAAAxYAAAAWAAAAFgAAABYAAAIWAAABFgAAAhYAAAAWAAABFgAAABYAAAEWAAABFgAAAxYAAAIWAAACYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAFgAAABYAAAMWAAAAFgAAAxYAAAJjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAABYAAAMWAAABFgAAAxYAAAMWAAACYwAAAGMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: GgAAAAABbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAGgAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAAAGgAAAAADGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAACGgAAAAABGgAAAAACGgAAAAAAGgAAAAABGgAAAAAAGgAAAAABGgAAAAABGgAAAAADGgAAAAACGgAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAAAGgAAAAADGgAAAAAAGgAAAAADGgAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAADGgAAAAABGgAAAAADGgAAAAADGgAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 7,1: ind: 7,1 - tiles: FgAAAmMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAJjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: GgAAAAACbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 7,0: ind: 7,0 - tiles: FgAAABYAAAIWAAACFgAAAWMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABjAAAAYwAAABYAAANjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAGMAAAAWAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAABjAAAAFgAAAmMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAABYAAAJjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAWAAABYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAABYAAAEWAAACFgAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAWAAABYwAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAFgAAAWMAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAABYAAAFjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAWAAACYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAFgAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAABYAAAFjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAMWAAACYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAADYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAmMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: GgAAAAAAGgAAAAACGgAAAAACGgAAAAABbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAGgAAAAADbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAGgAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAGgAAAAACbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAGgAAAAACbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAGgAAAAABbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAGgAAAAABGgAAAAACGgAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAGgAAAAABbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAGgAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAGgAAAAABbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAGgAAAAACbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAGgAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAGgAAAAABbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADGgAAAAACbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 7,-1: ind: 7,-1 - tiles: FgAAAmMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAANjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAACYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAmMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAFjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAADYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAmMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAA2MAAABjAAAAYwAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABjAAAAYwAAAGMAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAADFgAAAxYAAAMWAAADYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAABjAAAAFgAAAmMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAABYAAAJjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAGMAAAAWAAADYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGMAAABjAAAAFgAAAWMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: GgAAAAACbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADGgAAAAADGgAAAAADGgAAAAADbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAACbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAGgAAAAACbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAGgAAAAADbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAGgAAAAABbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 7,-2: ind: 7,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAABYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAWMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 6,-2: ind: 6,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAGMAAABjAAAAYwAAAGMAAABjAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAAAWAAABFgAAARYAAAAWAAADFgAAAmMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAFgAAABYAAAEWAAADFgAAARYAAABjAAAAYwAAAGMAAABjAAAAYwAAABYAAAEWAAADFgAAABYAAAMWAAACFgAAAxYAAAEWAAACFgAAAxYAAAEWAAACFgAAABYAAAEWAAABFgAAABYAAAAWAAACYwAAAGMAAABkAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAYwAAAGMAAABjAAAAFgAAAWMAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAABGgAAAAABGgAAAAAAGgAAAAADGgAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAAAGgAAAAABGgAAAAADGgAAAAABGgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAABGgAAAAADGgAAAAAAGgAAAAADGgAAAAACGgAAAAADGgAAAAABGgAAAAACGgAAAAADGgAAAAABGgAAAAACGgAAAAAAGgAAAAABGgAAAAABGgAAAAAAGgAAAAAAGgAAAAACbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAABbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAA + version: 6 5,1: ind: 5,1 - tiles: AAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAABjAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 5,-2: ind: 5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAGMAAAAAAAAAAAAAAAAAAABjAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGMAAABjAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABjAAAAYwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAA + version: 6 type: MapGrid - type: Broadphase - bodyStatus: InAir @@ -15453,8 +15548,6 @@ entities: - pos: -18.5,2.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 843 components: - pos: -18.5,1.5 @@ -15525,8 +15618,6 @@ entities: - pos: -12.5,-4.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 857 components: - pos: -12.5,-5.5 @@ -15582,8 +15673,6 @@ entities: - pos: -8.5,3.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 868 components: - pos: -8.5,2.5 @@ -15744,8 +15833,6 @@ entities: - pos: -0.5,-2.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 900 components: - pos: -0.5,-3.5 @@ -15846,8 +15933,6 @@ entities: - pos: 7.5,1.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 920 components: - pos: 7.5,0.5 @@ -15908,8 +15993,6 @@ entities: - pos: -18.5,3.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 932 components: - pos: 10.5,-3.5 @@ -16015,36 +16098,26 @@ entities: - pos: 13.5,-3.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 954 components: - pos: 13.5,-2.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 955 components: - pos: 13.5,-1.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 956 components: - pos: 13.5,-5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 957 components: - pos: 13.5,-4.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 958 components: - pos: -17.5,3.5 @@ -16055,8 +16128,6 @@ entities: - pos: -16.5,3.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 960 components: - pos: -16.5,4.5 @@ -16087,50 +16158,36 @@ entities: - pos: -11.5,1.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 966 components: - pos: -12.5,1.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 967 components: - pos: -12.5,2.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 968 components: - pos: -12.5,3.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 969 components: - pos: -12.5,4.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 970 components: - pos: -12.5,5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 971 components: - pos: -12.5,6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 972 components: - pos: -15.5,5.5 @@ -16141,8 +16198,6 @@ entities: - pos: -17.5,5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 974 components: - pos: -18.5,5.5 @@ -16168,8 +16223,6 @@ entities: - pos: -15.5,-17.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1720 components: - pos: -15.5,-15.5 @@ -16350,43 +16403,31 @@ entities: - pos: -12.5,-16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1757 components: - pos: -12.5,-15.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1758 components: - pos: -12.5,-14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1759 components: - pos: -12.5,-13.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1760 components: - pos: -12.5,-12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1761 components: - pos: -12.5,-11.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1762 components: - pos: -11.5,-19.5 @@ -16422,8 +16463,6 @@ entities: - pos: -0.5,-12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1769 components: - pos: -0.5,-11.5 @@ -16499,8 +16538,6 @@ entities: - pos: 9.5,-11.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1786 components: - pos: 7.5,-8.5 @@ -16656,8 +16693,6 @@ entities: - pos: 24.5,-11.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2876 components: - pos: 24.5,-10.5 @@ -16828,8 +16863,6 @@ entities: - pos: 34.5,-1.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2910 components: - pos: 34.5,-2.5 @@ -16840,29 +16873,21 @@ entities: - pos: 34.5,-0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2912 components: - pos: 35.5,-0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2913 components: - pos: 36.5,-0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2914 components: - pos: 37.5,-0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2915 components: - pos: 33.5,-2.5 @@ -17058,50 +17083,36 @@ entities: - pos: 40.5,-6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2954 components: - pos: 40.5,-5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2955 components: - pos: 40.5,-4.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2956 components: - pos: 40.5,-3.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2957 components: - pos: 40.5,-2.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2958 components: - pos: 40.5,-1.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2959 components: - pos: 40.5,-0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2960 components: - pos: 40.5,-13.5 @@ -17112,8 +17123,6 @@ entities: - pos: 40.5,-14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2962 components: - pos: 40.5,-15.5 @@ -17124,8 +17133,6 @@ entities: - pos: 40.5,-16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2964 components: - pos: 31.5,-13.5 @@ -17566,8 +17573,6 @@ entities: - pos: -42.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 3495 components: - pos: -14.5,-24.5 @@ -17593,8 +17598,6 @@ entities: - pos: -42.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 3675 components: - pos: -18.5,12.5 @@ -17710,8 +17713,6 @@ entities: - pos: -42.5,31.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4458 components: - pos: -42.5,28.5 @@ -17727,8 +17728,6 @@ entities: - pos: -13.5,-24.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4523 components: - pos: -25.5,9.5 @@ -17869,8 +17868,6 @@ entities: - pos: -43.5,7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4608 components: - pos: -43.5,6.5 @@ -17966,15 +17963,11 @@ entities: - pos: -46.5,6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4628 components: - pos: -46.5,5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4629 components: - pos: -46.5,4.5 @@ -17985,57 +17978,41 @@ entities: - pos: -46.5,7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4632 components: - pos: -46.5,8.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4633 components: - pos: -47.5,8.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4634 components: - pos: -48.5,8.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4635 components: - pos: -49.5,8.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4636 components: - pos: -50.5,8.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4637 components: - pos: -51.5,8.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4638 components: - pos: -52.5,8.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4639 components: - pos: -53.5,8.5 @@ -18046,8 +18023,6 @@ entities: - pos: -38.5,22.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4641 components: - pos: -38.5,21.5 @@ -18143,22 +18118,16 @@ entities: - pos: -43.5,15.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4660 components: - pos: -44.5,15.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4661 components: - pos: -45.5,15.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4662 components: - pos: -39.5,19.5 @@ -18184,22 +18153,16 @@ entities: - pos: -43.5,19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4667 components: - pos: -44.5,19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4668 components: - pos: -45.5,19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4669 components: - pos: -40.5,20.5 @@ -18455,113 +18418,81 @@ entities: - pos: -26.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4724 components: - pos: -26.5,11.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4725 components: - pos: -26.5,12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4726 components: - pos: -26.5,13.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4727 components: - pos: -26.5,14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4728 components: - pos: -26.5,15.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4729 components: - pos: -26.5,16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4730 components: - pos: -26.5,17.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4731 components: - pos: -26.5,18.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4732 components: - pos: -26.5,19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4733 components: - pos: -27.5,19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4734 components: - pos: -28.5,19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4735 components: - pos: -29.5,19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4736 components: - pos: -30.5,19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4737 components: - pos: -25.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4738 components: - pos: -24.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4739 components: - pos: -23.5,10.5 @@ -18587,22 +18518,16 @@ entities: - pos: 35.5,52.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5220 components: - pos: 35.5,51.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5246 components: - pos: 35.5,50.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5247 components: - pos: 34.5,50.5 @@ -18613,8 +18538,6 @@ entities: - pos: -48.5,-54.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5664 components: - pos: -19.5,-26.5 @@ -18625,8 +18548,6 @@ entities: - pos: -60.5,-6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5920 components: - pos: -60.5,-7.5 @@ -18717,15 +18638,11 @@ entities: - pos: -70.5,-7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5938 components: - pos: -63.5,-7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5939 components: - pos: -60.5,-10.5 @@ -18841,15 +18758,11 @@ entities: - pos: -74.5,-17.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5962 components: - pos: -75.5,-17.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5963 components: - pos: -72.5,-18.5 @@ -18860,22 +18773,16 @@ entities: - pos: -72.5,-19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5965 components: - pos: -72.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5966 components: - pos: -72.5,-21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5967 components: - pos: -61.5,-13.5 @@ -18886,15 +18793,11 @@ entities: - pos: -62.5,-13.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5969 components: - pos: -63.5,-13.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5970 components: - pos: -59.5,-8.5 @@ -18970,8 +18873,6 @@ entities: - pos: -52.5,4.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5985 components: - pos: -52.5,3.5 @@ -19227,29 +19128,21 @@ entities: - pos: -76.5,8.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 6036 components: - pos: -77.5,8.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 6037 components: - pos: -70.5,6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 6038 components: - pos: -63.5,6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 6039 components: - pos: -67.5,6.5 @@ -19305,8 +19198,6 @@ entities: - pos: 31.5,-14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 6355 components: - pos: 9.5,44.5 @@ -19332,8 +19223,6 @@ entities: - pos: -17.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 6467 components: - pos: -17.5,29.5 @@ -19354,15 +19243,11 @@ entities: - pos: -17.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 6472 components: - pos: -15.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 6500 components: - pos: -10.5,13.5 @@ -19403,8 +19288,6 @@ entities: - pos: -6.5,16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 6575 components: - pos: -11.5,15.5 @@ -19425,8 +19308,6 @@ entities: - pos: 3.5,44.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 6625 components: - pos: -9.5,17.5 @@ -19452,8 +19333,6 @@ entities: - pos: 12.5,42.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 6659 components: - pos: 12.5,41.5 @@ -19489,8 +19368,6 @@ entities: - pos: -6.5,17.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7018 components: - pos: -10.5,15.5 @@ -19506,8 +19383,6 @@ entities: - pos: 17.5,48.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7133 components: - pos: -3.5,53.5 @@ -19603,8 +19478,6 @@ entities: - pos: -9.5,49.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7178 components: - pos: -10.5,48.5 @@ -19620,8 +19493,6 @@ entities: - pos: -14.5,16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7208 components: - pos: -10.5,12.5 @@ -19637,8 +19508,6 @@ entities: - pos: -14.5,17.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7220 components: - pos: -7.5,17.5 @@ -19649,8 +19518,6 @@ entities: - pos: -11.5,11.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7225 components: - pos: -17.5,28.5 @@ -19746,8 +19613,6 @@ entities: - pos: 3.5,45.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7278 components: - pos: 17.5,47.5 @@ -19833,8 +19698,6 @@ entities: - pos: 8.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7357 components: - pos: 7.5,26.5 @@ -19845,8 +19708,6 @@ entities: - pos: -6.5,35.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7537 components: - pos: -6.5,36.5 @@ -20077,8 +19938,6 @@ entities: - pos: 9.5,33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7583 components: - pos: 9.5,32.5 @@ -20194,8 +20053,6 @@ entities: - pos: -18.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7606 components: - pos: 11.5,29.5 @@ -20286,15 +20143,11 @@ entities: - pos: 3.5,41.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7625 components: - pos: 2.5,41.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7626 components: - pos: 1.5,41.5 @@ -20700,8 +20553,6 @@ entities: - pos: 15.5,46.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7799 components: - pos: -7.5,47.5 @@ -20902,8 +20753,6 @@ entities: - pos: -14.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 8091 components: - pos: -16.5,27.5 @@ -20914,15 +20763,11 @@ entities: - pos: 40.5,0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9539 components: - pos: -31.5,41.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9540 components: - pos: -31.5,42.5 @@ -20938,57 +20783,41 @@ entities: - pos: -32.5,43.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9543 components: - pos: -32.5,44.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9544 components: - pos: -32.5,45.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9545 components: - pos: -32.5,46.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9546 components: - pos: -32.5,47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9547 components: - pos: -31.5,40.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9548 components: - pos: -32.5,40.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9549 components: - pos: -33.5,40.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9550 components: - pos: -34.5,40.5 @@ -21009,71 +20838,51 @@ entities: - pos: -37.5,40.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9554 components: - pos: -38.5,40.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9555 components: - pos: -38.5,39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9556 components: - pos: -38.5,38.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9557 components: - pos: -39.5,40.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9558 components: - pos: -40.5,40.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9559 components: - pos: -40.5,41.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9560 components: - pos: -40.5,42.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9561 components: - pos: -37.5,41.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9562 components: - pos: -37.5,42.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9563 components: - pos: -35.5,39.5 @@ -21089,8 +20898,6 @@ entities: - pos: -26.5,29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9566 components: - pos: -26.5,28.5 @@ -21146,8 +20953,6 @@ entities: - pos: -24.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9578 components: - pos: -24.5,26.5 @@ -21173,8 +20978,6 @@ entities: - pos: -20.5,25.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9583 components: - pos: -19.5,25.5 @@ -21365,8 +21168,6 @@ entities: - pos: 0.5,12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9817 components: - pos: 0.5,11.5 @@ -21697,8 +21498,6 @@ entities: - pos: 14.5,-3.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9900 components: - pos: 16.5,-3.5 @@ -21849,8 +21648,6 @@ entities: - pos: 9.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9965 components: - pos: 6.5,20.5 @@ -21861,8 +21658,6 @@ entities: - pos: 6.5,22.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9967 components: - pos: 6.5,19.5 @@ -21888,85 +21683,61 @@ entities: - pos: -14.5,37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10014 components: - pos: -14.5,38.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10015 components: - pos: -15.5,38.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10016 components: - pos: -15.5,39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10017 components: - pos: -15.5,40.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10018 components: - pos: -15.5,41.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10019 components: - pos: -14.5,36.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10020 components: - pos: -15.5,36.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10021 components: - pos: -15.5,35.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10022 components: - pos: -15.5,34.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10023 components: - pos: -16.5,34.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10024 components: - pos: -17.5,34.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10057 components: - pos: 4.5,19.5 @@ -22027,8 +21798,6 @@ entities: - pos: 13.5,22.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10107 components: - pos: 13.5,21.5 @@ -22104,8 +21873,6 @@ entities: - pos: -34.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10686 components: - pos: -34.5,33.5 @@ -22116,295 +21883,211 @@ entities: - pos: -35.5,33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10688 components: - pos: -35.5,34.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10689 components: - pos: -34.5,31.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10690 components: - pos: -35.5,31.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10691 components: - pos: -36.5,31.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10692 components: - pos: -37.5,31.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10693 components: - pos: -38.5,31.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10694 components: - pos: -38.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10695 components: - pos: -38.5,33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10696 components: - pos: -38.5,34.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10697 components: - pos: -38.5,35.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10698 components: - pos: -39.5,35.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10699 components: - pos: -40.5,35.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10700 components: - pos: -41.5,35.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10701 components: - pos: -42.5,35.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10702 components: - pos: -43.5,35.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10703 components: - pos: -33.5,31.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10704 components: - pos: -32.5,31.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10705 components: - pos: -32.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10706 components: - pos: -32.5,33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10707 components: - pos: -32.5,34.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10708 components: - pos: -32.5,35.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10709 components: - pos: -32.5,36.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10710 components: - pos: -32.5,37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10711 components: - pos: -34.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10712 components: - pos: -34.5,29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10713 components: - pos: -34.5,28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10714 components: - pos: -35.5,28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10715 components: - pos: -36.5,28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10716 components: - pos: -36.5,27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10717 components: - pos: -36.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10718 components: - pos: -36.5,25.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10719 components: - pos: -31.5,31.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10720 components: - pos: -31.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10721 components: - pos: -31.5,29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10722 components: - pos: -31.5,28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10723 components: - pos: -31.5,27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10724 components: - pos: -31.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10725 components: - pos: -32.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10726 components: - pos: -33.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10727 components: - pos: -30.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10728 components: - pos: -29.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11360 components: - pos: -30.5,-41.5 @@ -22415,8 +22098,6 @@ entities: - pos: 52.5,-9.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11647 components: - pos: 52.5,-10.5 @@ -22467,218 +22148,156 @@ entities: - pos: 52.5,-19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11657 components: - pos: 51.5,-19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11658 components: - pos: 52.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11659 components: - pos: 52.5,-21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11660 components: - pos: 52.5,-22.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11661 components: - pos: 52.5,-23.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11662 components: - pos: 52.5,-24.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11663 components: - pos: 52.5,-25.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11664 components: - pos: 51.5,-25.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11665 components: - pos: 50.5,-25.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11666 components: - pos: 53.5,-25.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11667 components: - pos: 54.5,-25.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11668 components: - pos: 55.5,-25.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11669 components: - pos: 56.5,-25.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11670 components: - pos: 57.5,-25.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11671 components: - pos: 58.5,-25.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11672 components: - pos: 59.5,-25.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11673 components: - pos: 60.5,-25.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11674 components: - pos: 61.5,-25.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11675 components: - pos: 52.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11676 components: - pos: 51.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11677 components: - pos: 52.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11678 components: - pos: 53.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11679 components: - pos: 56.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11680 components: - pos: 55.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11681 components: - pos: 56.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11682 components: - pos: 57.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11683 components: - pos: 60.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11684 components: - pos: 59.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11685 components: - pos: 60.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11686 components: - pos: 61.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11687 components: - pos: 60.5,-28.5 @@ -22714,288 +22333,206 @@ entities: - pos: 61.5,-24.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11694 components: - pos: 62.5,-24.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11695 components: - pos: 63.5,-24.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11696 components: - pos: 63.5,-23.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11697 components: - pos: 64.5,-24.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11698 components: - pos: 65.5,-24.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11699 components: - pos: 66.5,-24.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11700 components: - pos: 63.5,-22.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11701 components: - pos: 63.5,-21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11702 components: - pos: 63.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11703 components: - pos: 64.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11704 components: - pos: 64.5,-19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11705 components: - pos: 64.5,-18.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11706 components: - pos: 64.5,-17.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11707 components: - pos: 64.5,-16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11708 components: - pos: 64.5,-15.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11709 components: - pos: 64.5,-14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11710 components: - pos: 64.5,-13.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11711 components: - pos: 64.5,-12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11712 components: - pos: 64.5,-11.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11713 components: - pos: 64.5,-10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11714 components: - pos: 64.5,-9.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11715 components: - pos: 64.5,-8.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11716 components: - pos: 64.5,-7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11717 components: - pos: 64.5,-6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11718 components: - pos: 65.5,-7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11719 components: - pos: 66.5,-7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11720 components: - pos: 66.5,-8.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11721 components: - pos: 66.5,-6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11722 components: - pos: 65.5,-11.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11723 components: - pos: 66.5,-11.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11724 components: - pos: 66.5,-12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11725 components: - pos: 66.5,-10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11726 components: - pos: 65.5,-15.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11727 components: - pos: 66.5,-15.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11728 components: - pos: 66.5,-14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11729 components: - pos: 66.5,-16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11730 components: - pos: 65.5,-19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11731 components: - pos: 66.5,-19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11732 components: - pos: 66.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11733 components: - pos: 66.5,-18.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11734 components: - pos: 67.5,-19.5 @@ -23061,134 +22598,96 @@ entities: - pos: 44.5,-23.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11747 components: - pos: 58.5,-10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11748 components: - pos: 59.5,-10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11749 components: - pos: 60.5,-10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11750 components: - pos: 60.5,-11.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11751 components: - pos: 61.5,-11.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11752 components: - pos: 62.5,-11.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11753 components: - pos: 63.5,-11.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11754 components: - pos: 63.5,-7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11755 components: - pos: 62.5,-7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11756 components: - pos: 61.5,-7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11757 components: - pos: 60.5,-7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11758 components: - pos: 59.5,-7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11759 components: - pos: 58.5,-7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11760 components: - pos: 57.5,-7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11761 components: - pos: 58.5,-6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11762 components: - pos: 58.5,-5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11763 components: - pos: 61.5,-6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11764 components: - pos: 61.5,-5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11765 components: - pos: 53.5,-12.5 @@ -23219,113 +22718,81 @@ entities: - pos: 58.5,-12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11771 components: - pos: 58.5,-13.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11772 components: - pos: 58.5,-14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11773 components: - pos: 58.5,-15.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11774 components: - pos: 58.5,-16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11775 components: - pos: 58.5,-17.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11776 components: - pos: 58.5,-18.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11777 components: - pos: 58.5,-19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11778 components: - pos: 58.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11779 components: - pos: 58.5,-21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11780 components: - pos: 57.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11781 components: - pos: 56.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11782 components: - pos: 55.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11783 components: - pos: 54.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11784 components: - pos: 63.5,-17.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11785 components: - pos: 62.5,-17.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11953 components: - pos: 52.5,-8.5 @@ -23396,57 +22863,41 @@ entities: - pos: 50.5,-19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11969 components: - pos: 50.5,-18.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11971 components: - pos: 44.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11972 components: - pos: 44.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11973 components: - pos: 44.5,-28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11974 components: - pos: 45.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11975 components: - pos: 46.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11976 components: - pos: 46.5,-28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11977 components: - pos: 46.5,-29.5 @@ -23482,8 +22933,6 @@ entities: - pos: 46.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11984 components: - pos: 46.5,-25.5 @@ -23499,99 +22948,71 @@ entities: - pos: 43.5,-18.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11987 components: - pos: 43.5,-19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11988 components: - pos: 43.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11989 components: - pos: 43.5,-21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11990 components: - pos: 42.5,-21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11991 components: - pos: 41.5,-21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11992 components: - pos: 41.5,-22.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11993 components: - pos: 40.5,-22.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11994 components: - pos: 39.5,-22.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11995 components: - pos: 38.5,-22.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11996 components: - pos: 44.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11997 components: - pos: 45.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11998 components: - pos: 46.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11999 components: - pos: 46.5,-19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12000 components: - pos: 46.5,-18.5 @@ -23602,15 +23023,11 @@ entities: - pos: 46.5,-17.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12002 components: - pos: 46.5,-16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12003 components: - pos: 46.5,-15.5 @@ -23621,113 +23038,81 @@ entities: - pos: 46.5,-14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12005 components: - pos: 47.5,-16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12006 components: - pos: 48.5,-16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12007 components: - pos: 47.5,-14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12008 components: - pos: 48.5,-14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12009 components: - pos: 43.5,-17.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12010 components: - pos: 43.5,-16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12011 components: - pos: 43.5,-15.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12012 components: - pos: 43.5,-14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12013 components: - pos: 43.5,-13.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12014 components: - pos: 43.5,-12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12015 components: - pos: 43.5,-11.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12016 components: - pos: 40.5,-23.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12017 components: - pos: 40.5,-24.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12018 components: - pos: 40.5,-25.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12019 components: - pos: 40.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12282 components: - pos: 21.5,4.5 @@ -23758,8 +23143,6 @@ entities: - pos: 52.5,7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12470 components: - pos: 53.5,7.5 @@ -23795,8 +23178,6 @@ entities: - pos: 58.5,2.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12477 components: - pos: 58.5,3.5 @@ -23912,8 +23293,6 @@ entities: - pos: 54.5,-0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12500 components: - pos: 55.5,-0.5 @@ -23974,15 +23353,11 @@ entities: - pos: 61.5,-2.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12512 components: - pos: 62.5,-2.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12513 components: - pos: 60.5,1.5 @@ -24008,71 +23383,51 @@ entities: - pos: 61.5,4.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12518 components: - pos: 62.5,4.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12519 components: - pos: 63.5,4.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12520 components: - pos: 64.5,4.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12521 components: - pos: 65.5,4.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12522 components: - pos: 66.5,4.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12523 components: - pos: 67.5,4.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12524 components: - pos: 58.5,6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12525 components: - pos: 58.5,7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12526 components: - pos: 58.5,8.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12527 components: - pos: 58.5,9.5 @@ -24123,8 +23478,6 @@ entities: - pos: 48.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12545 components: - pos: 47.5,10.5 @@ -24200,8 +23553,6 @@ entities: - pos: 37.5,11.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12591 components: - pos: 37.5,10.5 @@ -24392,8 +23743,6 @@ entities: - pos: 48.5,-1.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12629 components: - pos: 47.5,-1.5 @@ -24459,8 +23808,6 @@ entities: - pos: 35.5,49.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13230 components: - pos: 34.5,49.5 @@ -24531,8 +23878,6 @@ entities: - pos: -44.5,-51.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13247 components: - pos: 27.5,49.5 @@ -24543,8 +23888,6 @@ entities: - pos: 34.5,47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13249 components: - pos: 34.5,46.5 @@ -24585,22 +23928,16 @@ entities: - pos: 38.5,47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13257 components: - pos: 39.5,47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13258 components: - pos: 40.5,47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13259 components: - pos: 33.5,45.5 @@ -24876,99 +24213,71 @@ entities: - pos: 25.5,37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13314 components: - pos: 24.5,37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13315 components: - pos: 23.5,37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13316 components: - pos: 22.5,37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13317 components: - pos: 21.5,37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13318 components: - pos: 20.5,37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13319 components: - pos: 20.5,38.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13320 components: - pos: 20.5,39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13321 components: - pos: 24.5,38.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13322 components: - pos: 24.5,39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13323 components: - pos: 24.5,40.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13324 components: - pos: 22.5,36.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13325 components: - pos: 22.5,35.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13326 components: - pos: 19.5,20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13327 components: - pos: 19.5,19.5 @@ -25049,57 +24358,41 @@ entities: - pos: 16.5,21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13343 components: - pos: 16.5,22.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13344 components: - pos: 16.5,23.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13345 components: - pos: 16.5,24.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13346 components: - pos: 16.5,25.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13347 components: - pos: 16.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13348 components: - pos: 16.5,27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13349 components: - pos: 16.5,28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13351 components: - pos: 21.5,19.5 @@ -25210,36 +24503,26 @@ entities: - pos: 24.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13373 components: - pos: 23.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13374 components: - pos: 22.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13375 components: - pos: 21.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13376 components: - pos: 33.5,20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13377 components: - pos: 33.5,19.5 @@ -25515,22 +24798,16 @@ entities: - pos: 34.5,12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13432 components: - pos: 33.5,12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13433 components: - pos: 32.5,12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13434 components: - pos: 20.5,18.5 @@ -25626,64 +24903,46 @@ entities: - pos: 24.5,41.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13471 components: - pos: 24.5,42.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13472 components: - pos: 24.5,43.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13473 components: - pos: 24.5,44.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13474 components: - pos: 24.5,45.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13475 components: - pos: 23.5,43.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13476 components: - pos: 22.5,43.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13477 components: - pos: 22.5,44.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13478 components: - pos: 22.5,34.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13771 components: - pos: 16.5,44.5 @@ -25694,8 +24953,6 @@ entities: - pos: 15.5,44.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13773 components: - pos: 16.5,42.5 @@ -25706,8 +24963,6 @@ entities: - pos: 15.5,42.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13775 components: - pos: 18.5,42.5 @@ -25718,8 +24973,6 @@ entities: - pos: 19.5,42.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13777 components: - pos: 18.5,44.5 @@ -25730,8 +24983,6 @@ entities: - pos: 19.5,44.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13779 components: - pos: 18.5,46.5 @@ -25742,8 +24993,6 @@ entities: - pos: 19.5,46.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13920 components: - pos: -18.5,-24.5 @@ -25754,8 +25003,6 @@ entities: - pos: 53.5,36.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14019 components: - pos: 54.5,36.5 @@ -25826,8 +25073,6 @@ entities: - pos: 62.5,34.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14033 components: - pos: 62.5,35.5 @@ -25838,288 +25083,206 @@ entities: - pos: 63.5,35.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14035 components: - pos: 63.5,36.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14036 components: - pos: 63.5,37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14037 components: - pos: 63.5,38.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14038 components: - pos: 63.5,39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14039 components: - pos: 62.5,33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14040 components: - pos: 62.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14041 components: - pos: 63.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14042 components: - pos: 64.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14043 components: - pos: 65.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14044 components: - pos: 66.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14045 components: - pos: 67.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14046 components: - pos: 68.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14047 components: - pos: 69.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14048 components: - pos: 70.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14049 components: - pos: 61.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14050 components: - pos: 60.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14051 components: - pos: 59.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14052 components: - pos: 58.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14069 components: - pos: -75.5,9.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14070 components: - pos: -76.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14071 components: - pos: -75.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14072 components: - pos: -74.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14073 components: - pos: -73.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14074 components: - pos: -72.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14075 components: - pos: -71.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14076 components: - pos: -70.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14077 components: - pos: -69.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14078 components: - pos: -68.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14079 components: - pos: -67.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14080 components: - pos: -66.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14081 components: - pos: -65.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14082 components: - pos: -64.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14083 components: - pos: -63.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14084 components: - pos: -62.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14085 components: - pos: -61.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14086 components: - pos: -60.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14087 components: - pos: -59.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14093 components: - pos: -49.5,9.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14094 components: - pos: -50.5,9.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14095 components: - pos: -48.5,9.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14104 components: - pos: -16.5,-22.5 @@ -26140,155 +25303,111 @@ entities: - pos: -76.5,-8.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14108 components: - pos: -76.5,-7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14109 components: - pos: -75.5,-7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14110 components: - pos: -76.5,-6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14111 components: - pos: -76.5,-9.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14112 components: - pos: -76.5,-10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14113 components: - pos: -75.5,-10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14114 components: - pos: -76.5,7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14115 components: - pos: -76.5,6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14116 components: - pos: -76.5,5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14117 components: - pos: -75.5,6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14118 components: - pos: -77.5,7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14119 components: - pos: -78.5,7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14120 components: - pos: -78.5,8.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14121 components: - pos: -78.5,9.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14122 components: - pos: -73.5,6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14123 components: - pos: -71.5,6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14124 components: - pos: -71.5,5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14125 components: - pos: -71.5,4.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14126 components: - pos: -71.5,-7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14127 components: - pos: -71.5,-6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14128 components: - pos: -71.5,-5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14129 components: - pos: -73.5,-9.5 @@ -26299,8 +25418,6 @@ entities: - pos: -73.5,-10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14131 components: - pos: -71.5,-9.5 @@ -26311,8 +25428,6 @@ entities: - pos: -71.5,-10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14133 components: - pos: -68.5,-9.5 @@ -26323,22 +25438,16 @@ entities: - pos: -68.5,-10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14135 components: - pos: -69.5,-10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14136 components: - pos: -67.5,-10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14137 components: - pos: -65.5,-9.5 @@ -26349,15 +25458,11 @@ entities: - pos: -65.5,-10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14150 components: - pos: -44.5,-54.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14156 components: - pos: -11.5,-30.5 @@ -26408,8 +25513,6 @@ entities: - pos: -18.5,-21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14262 components: - pos: -16.5,-24.5 @@ -26420,8 +25523,6 @@ entities: - pos: -16.5,-21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14305 components: - pos: -14.5,-26.5 @@ -26437,8 +25538,6 @@ entities: - pos: -14.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14568 components: - pos: -17.5,-26.5 @@ -26459,15 +25558,11 @@ entities: - pos: -13.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14629 components: - pos: -15.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14632 components: - pos: -23.5,-24.5 @@ -26488,8 +25583,6 @@ entities: - pos: -10.5,-30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14693 components: - pos: -11.5,-29.5 @@ -26525,8 +25618,6 @@ entities: - pos: -21.5,-28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14877 components: - pos: -22.5,-26.5 @@ -26542,8 +25633,6 @@ entities: - pos: -24.5,-24.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15666 components: - pos: -21.5,-24.5 @@ -26554,8 +25643,6 @@ entities: - pos: -37.5,-47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15758 components: - pos: -38.5,-47.5 @@ -26736,85 +25823,61 @@ entities: - pos: -33.5,-43.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15794 components: - pos: -33.5,-42.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15795 components: - pos: -33.5,-41.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15796 components: - pos: -33.5,-40.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15797 components: - pos: -33.5,-39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15798 components: - pos: -34.5,-39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15799 components: - pos: -35.5,-39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15800 components: - pos: -36.5,-39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15801 components: - pos: -36.5,-40.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15802 components: - pos: -36.5,-41.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15803 components: - pos: -36.5,-42.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15804 components: - pos: -22.5,-38.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15805 components: - pos: -22.5,-39.5 @@ -27005,8 +26068,6 @@ entities: - pos: -8.5,-45.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15844 components: - pos: -8.5,-46.5 @@ -27112,8 +26173,6 @@ entities: - pos: -22.5,-54.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15865 components: - pos: -21.5,-54.5 @@ -27234,8 +26293,6 @@ entities: - pos: -29.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15889 components: - pos: -30.5,-57.5 @@ -27246,29 +26303,21 @@ entities: - pos: -31.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15891 components: - pos: -31.5,-56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15892 components: - pos: -32.5,-56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15893 components: - pos: -33.5,-56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15894 components: - pos: -34.5,-56.5 @@ -27279,43 +26328,31 @@ entities: - pos: -31.5,-55.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15896 components: - pos: -34.5,-55.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15897 components: - pos: -35.5,-55.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15898 components: - pos: -36.5,-55.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15899 components: - pos: -37.5,-55.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15900 components: - pos: -38.5,-55.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15901 components: - pos: -20.5,-57.5 @@ -27346,8 +26383,6 @@ entities: - pos: -24.5,-28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15994 components: - pos: -24.5,-29.5 @@ -27473,8 +26508,6 @@ entities: - pos: -34.5,-29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16021 components: - pos: -34.5,-30.5 @@ -27530,106 +26563,76 @@ entities: - pos: -39.5,-35.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16032 components: - pos: -39.5,-34.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16033 components: - pos: -39.5,-33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16034 components: - pos: -39.5,-32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16035 components: - pos: -39.5,-31.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16036 components: - pos: -39.5,-30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16037 components: - pos: -39.5,-29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16038 components: - pos: -39.5,-28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16039 components: - pos: -39.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16040 components: - pos: -38.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16041 components: - pos: -37.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16042 components: - pos: -36.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16043 components: - pos: -35.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16044 components: - pos: -34.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16045 components: - pos: -33.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16046 components: - pos: -35.5,-31.5 @@ -27660,8 +26663,6 @@ entities: - pos: -13.5,-32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16052 components: - pos: -13.5,-33.5 @@ -27937,8 +26938,6 @@ entities: - pos: -7.5,-36.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16135 components: - pos: -21.5,-26.5 @@ -27959,43 +26958,31 @@ entities: - pos: -8.5,-38.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16144 components: - pos: -8.5,-39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16145 components: - pos: -8.5,-40.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16146 components: - pos: -8.5,-41.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16147 components: - pos: -8.5,-42.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16148 components: - pos: -8.5,-43.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16216 components: - pos: -9.5,-43.5 @@ -28021,92 +27008,66 @@ entities: - pos: -48.5,-55.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16382 components: - pos: -44.5,-53.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16395 components: - pos: -48.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16402 components: - pos: -48.5,-56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16404 components: - pos: -47.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16410 components: - pos: -46.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16411 components: - pos: -45.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16432 components: - pos: -44.5,-50.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16433 components: - pos: -44.5,-52.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16577 components: - pos: -44.5,-55.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16578 components: - pos: -44.5,-56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16579 components: - pos: -44.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16597 components: - pos: -50.5,-44.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16598 components: - pos: -50.5,-45.5 @@ -28172,8 +27133,6 @@ entities: - pos: -46.5,-52.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16616 components: - pos: -51.5,-54.5 @@ -28269,106 +27228,76 @@ entities: - pos: 53.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17186 components: - pos: -36.5,-61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17187 components: - pos: -36.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17188 components: - pos: -36.5,-63.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17189 components: - pos: -37.5,-63.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17190 components: - pos: -38.5,-63.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17191 components: - pos: -39.5,-63.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17192 components: - pos: -40.5,-63.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17193 components: - pos: -41.5,-63.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17194 components: - pos: -36.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17195 components: - pos: -37.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17196 components: - pos: -38.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17197 components: - pos: -38.5,-59.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17198 components: - pos: -38.5,-58.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17199 components: - pos: -38.5,-56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17200 components: - pos: -38.5,-48.5 @@ -28379,183 +27308,131 @@ entities: - pos: -38.5,-49.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17202 components: - pos: -38.5,-50.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17203 components: - pos: -38.5,-51.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17361 components: - pos: -39.5,-36.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17362 components: - pos: -39.5,-37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17363 components: - pos: -39.5,-38.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17364 components: - pos: -39.5,-39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17365 components: - pos: -39.5,-40.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17366 components: - pos: -39.5,-41.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17367 components: - pos: -39.5,-42.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17368 components: - pos: -40.5,-41.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17369 components: - pos: -41.5,-41.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17370 components: - pos: -42.5,-41.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17371 components: - pos: -43.5,-41.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17372 components: - pos: -44.5,-41.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17373 components: - pos: -45.5,-41.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17374 components: - pos: -46.5,-41.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17375 components: - pos: -47.5,-41.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17376 components: - pos: -48.5,-41.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17377 components: - pos: -49.5,-41.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17378 components: - pos: -49.5,-40.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17379 components: - pos: -49.5,-39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17380 components: - pos: -49.5,-38.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17381 components: - pos: -49.5,-37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17382 components: - pos: -50.5,-40.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17383 components: - pos: -42.5,-40.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17384 components: - pos: -42.5,-39.5 @@ -28571,8 +27448,6 @@ entities: - pos: -42.5,-37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17387 components: - pos: -42.5,-36.5 @@ -28583,15 +27458,11 @@ entities: - pos: -42.5,-35.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17389 components: - pos: -43.5,-37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17390 components: - pos: -44.5,-37.5 @@ -28602,64 +27473,46 @@ entities: - pos: -40.5,-28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17392 components: - pos: -41.5,-28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17393 components: - pos: -42.5,-28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17394 components: - pos: -43.5,-28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17395 components: - pos: -44.5,-28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17396 components: - pos: -45.5,-28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17397 components: - pos: -46.5,-28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17398 components: - pos: -47.5,-28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17399 components: - pos: -48.5,-28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17400 components: - pos: -49.5,-28.5 @@ -28675,22 +27528,16 @@ entities: - pos: -51.5,-28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17403 components: - pos: -52.5,-28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17404 components: - pos: -53.5,-28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17405 components: - pos: -54.5,-28.5 @@ -28711,8 +27558,6 @@ entities: - pos: -52.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17409 components: - pos: -52.5,-26.5 @@ -28723,8 +27568,6 @@ entities: - pos: -52.5,-25.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17411 components: - pos: -52.5,-24.5 @@ -28790,15 +27633,11 @@ entities: - pos: -55.5,-31.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17424 components: - pos: -55.5,-32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17425 components: - pos: -55.5,-33.5 @@ -28809,8 +27648,6 @@ entities: - pos: -43.5,-29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17427 components: - pos: -43.5,-30.5 @@ -28826,8 +27663,6 @@ entities: - pos: -43.5,-32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17430 components: - pos: -43.5,-33.5 @@ -28843,15 +27678,11 @@ entities: - pos: -42.5,-34.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17433 components: - pos: -44.5,-32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17434 components: - pos: -45.5,-32.5 @@ -28862,22 +27693,16 @@ entities: - pos: -46.5,-32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17436 components: - pos: -47.5,-32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17437 components: - pos: -46.5,-31.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17438 components: - pos: -46.5,-33.5 @@ -28888,22 +27713,16 @@ entities: - pos: -46.5,-34.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17440 components: - pos: -46.5,-35.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17441 components: - pos: -46.5,-36.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17583 components: - pos: -8.5,-29.5 @@ -28914,22 +27733,16 @@ entities: - pos: -41.5,-3.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17831 components: - pos: -41.5,-4.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17832 components: - pos: -41.5,-5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17833 components: - pos: -41.5,-6.5 @@ -28950,15 +27763,11 @@ entities: - pos: -41.5,-9.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17837 components: - pos: -41.5,-10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17838 components: - pos: -42.5,-7.5 @@ -28974,8 +27783,6 @@ entities: - pos: -30.5,-5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17841 components: - pos: -30.5,-6.5 @@ -29386,218 +28193,156 @@ entities: - pos: -35.5,-7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17943 components: - pos: -36.5,-7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17944 components: - pos: -37.5,-7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17945 components: - pos: -37.5,-6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17946 components: - pos: -37.5,-5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17947 components: - pos: -37.5,-4.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17948 components: - pos: -37.5,-3.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17949 components: - pos: -37.5,-8.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17950 components: - pos: -37.5,-9.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17951 components: - pos: -37.5,-10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17952 components: - pos: -37.5,-11.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17953 components: - pos: -37.5,-12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17954 components: - pos: -37.5,-13.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17955 components: - pos: -37.5,-14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17956 components: - pos: -37.5,-15.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17957 components: - pos: -37.5,-16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17958 components: - pos: -37.5,-17.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17959 components: - pos: -38.5,-16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17960 components: - pos: -39.5,-16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17961 components: - pos: -40.5,-16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17962 components: - pos: -41.5,-16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17963 components: - pos: -42.5,-16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17964 components: - pos: -43.5,-16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17965 components: - pos: -44.5,-16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17966 components: - pos: -40.5,-15.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17967 components: - pos: -40.5,-14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17968 components: - pos: -40.5,-13.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17969 components: - pos: -41.5,-13.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17970 components: - pos: -42.5,-13.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17971 components: - pos: -43.5,-13.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18230 components: - pos: -58.5,-16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18232 components: - pos: -59.5,-16.5 @@ -29623,8 +28368,6 @@ entities: - pos: -52.5,-10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18239 components: - pos: -49.5,-9.5 @@ -29635,22 +28378,16 @@ entities: - pos: -52.5,-6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18241 components: - pos: -52.5,-8.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18242 components: - pos: -52.5,-11.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18243 components: - pos: -52.5,-5.5 @@ -29661,15 +28398,11 @@ entities: - pos: -52.5,-7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18245 components: - pos: -52.5,-9.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18246 components: - pos: -49.5,-8.5 @@ -29700,29 +28433,21 @@ entities: - pos: -57.5,-16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18265 components: - pos: -56.5,-16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18266 components: - pos: -55.5,-16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18267 components: - pos: -54.5,-16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18278 components: - pos: -30.5,-19.5 @@ -29733,92 +28458,66 @@ entities: - pos: -30.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18280 components: - pos: -31.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18281 components: - pos: -32.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18282 components: - pos: -33.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18283 components: - pos: -34.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18284 components: - pos: -35.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18285 components: - pos: -36.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18286 components: - pos: -36.5,-19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18287 components: - pos: -36.5,-18.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18288 components: - pos: -36.5,-21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18289 components: - pos: -36.5,-22.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18290 components: - pos: -36.5,-23.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18291 components: - pos: -36.5,-24.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18292 components: - pos: -21.5,-20.5 @@ -29844,148 +28543,106 @@ entities: - pos: -25.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18297 components: - pos: -26.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18298 components: - pos: -53.5,-16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18299 components: - pos: -52.5,-16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18300 components: - pos: -52.5,-17.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18301 components: - pos: -52.5,-18.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18302 components: - pos: -52.5,-19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18303 components: - pos: -52.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18304 components: - pos: -52.5,-21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18305 components: - pos: -51.5,-21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18306 components: - pos: -50.5,-21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18307 components: - pos: -49.5,-21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18308 components: - pos: -48.5,-21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18309 components: - pos: -47.5,-21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18310 components: - pos: -46.5,-21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18311 components: - pos: -48.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18312 components: - pos: -48.5,-19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18313 components: - pos: -48.5,-18.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18314 components: - pos: -48.5,-17.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18315 components: - pos: -46.5,-22.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18316 components: - pos: -46.5,-23.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18317 components: - pos: -46.5,-24.5 @@ -29996,169 +28653,121 @@ entities: - pos: -45.5,-24.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18319 components: - pos: -44.5,-24.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18320 components: - pos: -43.5,-24.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18321 components: - pos: -42.5,-24.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18322 components: - pos: -41.5,-24.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18323 components: - pos: -40.5,-24.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18324 components: - pos: -41.5,-17.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18325 components: - pos: -41.5,-18.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18326 components: - pos: -52.5,-15.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18327 components: - pos: -52.5,-14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18328 components: - pos: -59.5,-21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18329 components: - pos: -58.5,-21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18330 components: - pos: -57.5,-21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18331 components: - pos: -56.5,-21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18332 components: - pos: -55.5,-21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18415 components: - pos: -61.5,-21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18419 components: - pos: -61.5,-22.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18426 components: - pos: -54.5,-21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18427 components: - pos: -53.5,-21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18429 components: - pos: -60.5,-21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18515 components: - pos: -56.5,-15.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18516 components: - pos: -56.5,-14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18517 components: - pos: -56.5,-13.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18518 components: - pos: -56.5,-12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18605 components: - pos: 29.5,3.5 @@ -30184,22 +28793,16 @@ entities: - pos: 28.5,6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18610 components: - pos: 28.5,7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18611 components: - pos: 28.5,8.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18949 components: - pos: 53.5,32.5 @@ -30215,43 +28818,31 @@ entities: - pos: 51.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18952 components: - pos: 50.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18953 components: - pos: 49.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18954 components: - pos: 48.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18955 components: - pos: 47.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18956 components: - pos: 46.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18957 components: - pos: 50.5,33.5 @@ -30262,36 +28853,26 @@ entities: - pos: 50.5,34.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18959 components: - pos: 50.5,35.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18960 components: - pos: 50.5,36.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18961 components: - pos: 50.5,37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18962 components: - pos: 49.5,36.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18963 components: - pos: 48.5,36.5 @@ -30302,29 +28883,21 @@ entities: - pos: 48.5,37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18965 components: - pos: 48.5,38.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18966 components: - pos: 48.5,39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20288 components: - pos: 8.5,-47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20289 components: - pos: 8.5,-48.5 @@ -30510,113 +29083,81 @@ entities: - pos: 6.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20327 components: - pos: 7.5,-58.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20328 components: - pos: 8.5,-58.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20329 components: - pos: 9.5,-58.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20330 components: - pos: 10.5,-58.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20331 components: - pos: 11.5,-58.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20332 components: - pos: 10.5,-59.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20333 components: - pos: 10.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20334 components: - pos: 5.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20335 components: - pos: 4.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20336 components: - pos: 3.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20337 components: - pos: 3.5,-56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20338 components: - pos: 3.5,-55.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20339 components: - pos: 3.5,-54.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20340 components: - pos: 3.5,-53.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20341 components: - pos: 3.5,-52.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20342 components: - pos: 3.5,-51.5 @@ -30627,15 +29168,11 @@ entities: - pos: 3.5,-50.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20344 components: - pos: 3.5,-49.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20345 components: - pos: 2.5,-49.5 @@ -30646,22 +29183,16 @@ entities: - pos: 1.5,-49.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20347 components: - pos: 1.5,-48.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20348 components: - pos: 0.5,-48.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20349 components: - pos: 0.5,-47.5 @@ -30672,29 +29203,21 @@ entities: - pos: 0.5,-46.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20351 components: - pos: 0.5,-45.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20352 components: - pos: 2.5,-54.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20353 components: - pos: 13.5,-40.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20354 components: - pos: 13.5,-41.5 @@ -30965,8 +29488,6 @@ entities: - pos: 5.5,-37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20408 components: - pos: 6.5,-40.5 @@ -31257,8 +29778,6 @@ entities: - pos: 13.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20466 components: - pos: 13.5,-28.5 @@ -31364,162 +29883,116 @@ entities: - pos: 20.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20489 components: - pos: 20.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20490 components: - pos: 19.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20491 components: - pos: 18.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20493 components: - pos: 16.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20494 components: - pos: 15.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20495 components: - pos: 15.5,-25.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20496 components: - pos: 15.5,-24.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20497 components: - pos: 15.5,-23.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20498 components: - pos: 14.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20499 components: - pos: 14.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20500 components: - pos: 21.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20501 components: - pos: 22.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20502 components: - pos: 23.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20503 components: - pos: 24.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20504 components: - pos: 25.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20505 components: - pos: 26.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20506 components: - pos: 27.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20507 components: - pos: 28.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20508 components: - pos: 29.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20509 components: - pos: 30.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20510 components: - pos: 30.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20511 components: - pos: 32.5,-40.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20512 components: - pos: 32.5,-41.5 @@ -31530,85 +30003,61 @@ entities: - pos: 32.5,-39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20514 components: - pos: 31.5,-39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20515 components: - pos: 31.5,-38.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20516 components: - pos: 31.5,-37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20517 components: - pos: 31.5,-36.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20518 components: - pos: 31.5,-35.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20519 components: - pos: 31.5,-34.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20520 components: - pos: 31.5,-33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20521 components: - pos: 31.5,-32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20522 components: - pos: 31.5,-31.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20523 components: - pos: 30.5,-33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20524 components: - pos: 32.5,-31.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20525 components: - pos: 33.5,-31.5 @@ -31619,15 +30068,11 @@ entities: - pos: 34.5,-31.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20527 components: - pos: 35.5,-31.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20528 components: - pos: 35.5,-32.5 @@ -31638,15 +30083,11 @@ entities: - pos: 35.5,-33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20530 components: - pos: 35.5,-34.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20531 components: - pos: 35.5,-35.5 @@ -31657,57 +30098,41 @@ entities: - pos: 36.5,-34.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20533 components: - pos: 37.5,-34.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20534 components: - pos: 38.5,-34.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20535 components: - pos: 39.5,-34.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20536 components: - pos: 40.5,-34.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20537 components: - pos: 39.5,-33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20538 components: - pos: 39.5,-32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20539 components: - pos: 39.5,-31.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20540 components: - pos: 32.5,-42.5 @@ -31778,15 +30203,11 @@ entities: - pos: 30.5,-47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20554 components: - pos: 31.5,-45.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20555 components: - pos: 31.5,-44.5 @@ -31802,78 +30223,56 @@ entities: - pos: 31.5,-47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20560 components: - pos: 30.5,-45.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20561 components: - pos: 29.5,-45.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20562 components: - pos: 28.5,-45.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20563 components: - pos: 27.5,-45.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20564 components: - pos: 26.5,-45.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20565 components: - pos: 25.5,-45.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20566 components: - pos: 24.5,-45.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20567 components: - pos: 23.5,-45.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20568 components: - pos: 22.5,-45.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20569 components: - pos: 21.5,-45.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20570 components: - pos: 12.5,-29.5 @@ -32179,22 +30578,16 @@ entities: - pos: 29.5,-33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20634 components: - pos: 31.5,-30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20635 components: - pos: 31.5,-29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20710 components: - pos: 12.5,-35.5 @@ -32270,176 +30663,126 @@ entities: - pos: 10.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20901 components: - pos: 10.5,-56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20902 components: - pos: 7.5,-59.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20903 components: - pos: 6.5,-59.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20904 components: - pos: 5.5,-59.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20905 components: - pos: 5.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20906 components: - pos: 5.5,-61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20907 components: - pos: 5.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20908 components: - pos: 5.5,-63.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20909 components: - pos: 5.5,-64.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20910 components: - pos: 5.5,-65.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20911 components: - pos: 5.5,-66.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20912 components: - pos: 12.5,-58.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20913 components: - pos: 12.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20914 components: - pos: 13.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20915 components: - pos: 14.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20916 components: - pos: 15.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20917 components: - pos: 16.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20918 components: - pos: 17.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20919 components: - pos: 18.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20920 components: - pos: 18.5,-58.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20921 components: - pos: 18.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20922 components: - pos: 18.5,-59.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20923 components: - pos: 18.5,-56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20924 components: - pos: 19.5,-56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20925 components: - pos: 20.5,-56.5 @@ -32535,22 +30878,16 @@ entities: - pos: 18.5,-55.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20944 components: - pos: 18.5,-54.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20945 components: - pos: 18.5,-53.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20946 components: - pos: 14.5,-51.5 @@ -32596,22 +30933,16 @@ entities: - pos: 22.5,-40.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21456 components: - pos: 20.5,-40.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21457 components: - pos: 19.5,-40.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21458 components: - pos: 21.5,-34.5 @@ -32622,15 +30953,11 @@ entities: - pos: 21.5,-33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21460 components: - pos: 22.5,-33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21461 components: - pos: 20.5,-35.5 @@ -32651,8 +30978,6 @@ entities: - pos: 19.5,-33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21465 components: - pos: 25.5,-35.5 @@ -32663,29 +30988,21 @@ entities: - pos: 26.5,-35.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21467 components: - pos: 26.5,-36.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21468 components: - pos: 27.5,-37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21469 components: - pos: 29.5,-37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21470 components: - pos: 14.5,-48.5 @@ -32696,22 +31013,16 @@ entities: - pos: 15.5,-47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21472 components: - pos: 14.5,-47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21473 components: - pos: 13.5,-47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21474 components: - pos: 10.5,-49.5 @@ -32727,29 +31038,21 @@ entities: - pos: 9.5,-47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21477 components: - pos: 10.5,-47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21478 components: - pos: 11.5,-47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21825 components: - pos: -19.5,-63.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21826 components: - pos: -19.5,-64.5 @@ -33005,43 +31308,31 @@ entities: - pos: -25.5,-61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21877 components: - pos: -24.5,-61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21878 components: - pos: -23.5,-61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21879 components: - pos: -22.5,-61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21880 components: - pos: -21.5,-61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21881 components: - pos: -20.5,-61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21882 components: - pos: -19.5,-61.5 @@ -33052,120 +31343,86 @@ entities: - pos: -19.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21884 components: - pos: -18.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21885 components: - pos: -17.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21886 components: - pos: -16.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21887 components: - pos: -15.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21888 components: - pos: -14.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21889 components: - pos: -13.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21890 components: - pos: -25.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21891 components: - pos: -26.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21892 components: - pos: -27.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21893 components: - pos: -28.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21894 components: - pos: -29.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21895 components: - pos: -30.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21896 components: - pos: -31.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21897 components: - pos: -32.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21898 components: - pos: -33.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21899 components: - pos: -0.5,-65.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21900 components: - pos: -1.5,-65.5 @@ -33331,8 +31588,6 @@ entities: - pos: -9.5,-72.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21933 components: - pos: -10.5,-70.5 @@ -33353,8 +31608,6 @@ entities: - pos: -11.5,-72.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21937 components: - pos: -3.5,-71.5 @@ -33365,8 +31618,6 @@ entities: - pos: -3.5,-72.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21939 components: - pos: -1.5,-69.5 @@ -33422,15 +31673,11 @@ entities: - pos: -0.5,-73.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21950 components: - pos: -1.5,-73.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21951 components: - pos: -3.5,-66.5 @@ -33451,29 +31698,21 @@ entities: - pos: -0.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21955 components: - pos: 0.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21956 components: - pos: 1.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21957 components: - pos: 2.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21958 components: - pos: -2.5,-61.5 @@ -33499,120 +31738,86 @@ entities: - pos: -6.5,-50.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21963 components: - pos: -6.5,-51.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21964 components: - pos: -6.5,-52.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21965 components: - pos: -6.5,-53.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21966 components: - pos: -6.5,-54.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21967 components: - pos: -6.5,-55.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21968 components: - pos: -6.5,-56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21969 components: - pos: -6.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21970 components: - pos: -6.5,-49.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21971 components: - pos: -6.5,-48.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21972 components: - pos: -6.5,-47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21973 components: - pos: -6.5,-46.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21974 components: - pos: -6.5,-45.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21975 components: - pos: -6.5,-44.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22088 components: - pos: 1.5,-74.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22089 components: - pos: 0.5,-74.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22090 components: - pos: 2.5,-74.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22091 components: - pos: 2.5,-71.5 @@ -33628,78 +31833,56 @@ entities: - pos: 4.5,-71.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22094 components: - pos: 4.5,-72.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22095 components: - pos: 4.5,-70.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22096 components: - pos: -2.5,-73.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22097 components: - pos: -2.5,-74.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22098 components: - pos: -2.5,-72.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22099 components: - pos: -1.5,-72.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22445 components: - pos: 38.5,-48.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22446 components: - pos: 37.5,-48.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22447 components: - pos: 37.5,-49.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22448 components: - pos: 37.5,-50.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22449 components: - pos: 37.5,-51.5 @@ -33735,379 +31918,271 @@ entities: - pos: 38.5,-54.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22456 components: - pos: 39.5,-54.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22457 components: - pos: 40.5,-54.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22458 components: - pos: 38.5,-56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22459 components: - pos: 38.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22460 components: - pos: 38.5,-58.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22461 components: - pos: 38.5,-59.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22462 components: - pos: 38.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22463 components: - pos: 38.5,-61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22464 components: - pos: 38.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22465 components: - pos: 38.5,-63.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22466 components: - pos: 37.5,-47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22467 components: - pos: 36.5,-47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22468 components: - pos: 35.5,-47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22469 components: - pos: 34.5,-47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22470 components: - pos: 33.5,-47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22471 components: - pos: 32.5,-47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22472 components: - pos: 30.5,-48.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22473 components: - pos: 30.5,-49.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22474 components: - pos: 32.5,-48.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22475 components: - pos: 32.5,-49.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22476 components: - pos: 32.5,-50.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22477 components: - pos: 33.5,-50.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22478 components: - pos: 34.5,-50.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22479 components: - pos: 34.5,-51.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22480 components: - pos: 34.5,-52.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22481 components: - pos: 34.5,-53.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22482 components: - pos: 34.5,-54.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22483 components: - pos: 34.5,-55.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22484 components: - pos: 34.5,-56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22485 components: - pos: 34.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22486 components: - pos: 33.5,-53.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22487 components: - pos: 32.5,-53.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22488 components: - pos: 33.5,-56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22489 components: - pos: 32.5,-56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23046 components: - pos: -32.5,39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23047 components: - pos: -31.5,39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23048 components: - pos: -30.5,39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23049 components: - pos: -29.5,39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23050 components: - pos: -28.5,39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23051 components: - pos: -27.5,39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23052 components: - pos: -28.5,40.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23053 components: - pos: -28.5,38.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23054 components: - pos: -28.5,37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23055 components: - pos: -28.5,36.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23056 components: - pos: -28.5,35.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23057 components: - pos: -18.5,34.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23058 components: - pos: -19.5,34.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23059 components: - pos: -20.5,34.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23060 components: - pos: -21.5,34.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23061 components: - pos: -22.5,34.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23062 components: - pos: -23.5,34.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23063 components: - pos: -23.5,35.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23064 components: - pos: -23.5,36.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23065 components: - pos: -23.5,37.5 @@ -34118,8 +32193,6 @@ entities: - pos: -23.5,38.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23237 components: - pos: 43.5,14.5 @@ -34140,8 +32213,6 @@ entities: - pos: 47.5,18.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23326 components: - pos: 47.5,17.5 @@ -34187,8 +32258,6 @@ entities: - pos: 45.5,14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23338 components: - pos: 50.5,18.5 @@ -34304,8 +32373,6 @@ entities: - pos: 44.5,20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23361 components: - pos: 43.5,20.5 @@ -34356,15 +32423,11 @@ entities: - pos: 28.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23498 components: - pos: 28.5,-61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23671 components: - pos: 51.5,15.5 @@ -34490,8 +32553,6 @@ entities: - pos: 59.5,11.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23696 components: - pos: 55.5,14.5 @@ -34542,22 +32603,16 @@ entities: - pos: 59.5,29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23706 components: - pos: 60.5,29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23707 components: - pos: 61.5,29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23708 components: - pos: 54.5,29.5 @@ -34578,127 +32633,91 @@ entities: - pos: 44.5,18.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23719 components: - pos: 59.5,17.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23720 components: - pos: 60.5,17.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23721 components: - pos: 60.5,16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23722 components: - pos: 60.5,15.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23723 components: - pos: 60.5,14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23724 components: - pos: 61.5,17.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23725 components: - pos: 61.5,18.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23726 components: - pos: 61.5,19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23727 components: - pos: 61.5,20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23728 components: - pos: 61.5,21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23729 components: - pos: 61.5,22.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23730 components: - pos: 61.5,23.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23731 components: - pos: 60.5,23.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23732 components: - pos: 59.5,23.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23733 components: - pos: 60.5,24.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23734 components: - pos: 60.5,25.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23735 components: - pos: 60.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23951 components: - pos: 51.5,29.5 @@ -34794,15 +32813,11 @@ entities: - pos: 35.5,53.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 24638 components: - pos: 35.5,54.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 25681 components: - pos: 111.5,-18.5 @@ -34813,8 +32828,6 @@ entities: - pos: 100.5,-1.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 25995 components: - pos: 108.5,-0.5 @@ -34825,8 +32838,6 @@ entities: - pos: 108.5,-1.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 25997 components: - pos: 99.5,0.5 @@ -35277,8 +33288,6 @@ entities: - pos: 92.5,-1.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 26090 components: - pos: 94.5,1.5 @@ -35314,22 +33323,16 @@ entities: - pos: 93.5,4.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 26097 components: - pos: 92.5,4.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 26098 components: - pos: 91.5,4.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 26099 components: - pos: 95.5,6.5 @@ -35515,8 +33518,6 @@ entities: - pos: 103.5,-1.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 26147 components: - pos: 103.5,-2.5 @@ -35537,8 +33538,6 @@ entities: - pos: 103.5,3.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 26151 components: - pos: 102.5,-4.5 @@ -35574,8 +33573,6 @@ entities: - pos: 107.5,-6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 26158 components: - pos: 107.5,-7.5 @@ -35686,43 +33683,31 @@ entities: - pos: 105.5,-8.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 26180 components: - pos: 105.5,-7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 26181 components: - pos: 105.5,-6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 26182 components: - pos: 103.5,-8.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 26183 components: - pos: 103.5,-7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 26184 components: - pos: 103.5,-6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 26185 components: - pos: 103.5,2.5 @@ -35758,8 +33743,6 @@ entities: - pos: 105.5,7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 26192 components: - pos: 105.5,6.5 @@ -35875,8 +33858,6 @@ entities: - pos: 104.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 26529 components: - pos: -32.5,7.5 @@ -35887,22 +33868,16 @@ entities: - pos: -32.5,8.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 26577 components: - pos: 8.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 26602 components: - pos: 13.5,-34.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 26603 components: - pos: 18.5,-28.5 @@ -35913,8 +33888,6 @@ entities: - pos: 18.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - proto: CableApcStack entities: - uid: 1550 @@ -35986,29 +33959,21 @@ entities: - pos: -14.5,1.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1226 components: - pos: -13.5,1.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1227 components: - pos: -12.5,1.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1228 components: - pos: -11.5,1.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1229 components: - pos: -10.5,1.5 @@ -36169,36 +34134,26 @@ entities: - pos: 13.5,-3.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1261 components: - pos: 13.5,-2.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1262 components: - pos: 13.5,-1.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1263 components: - pos: 13.5,-0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1264 components: - pos: 13.5,0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1640 components: - pos: -10.5,-8.5 @@ -36209,15 +34164,11 @@ entities: - pos: -10.5,-11.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1644 components: - pos: -10.5,-10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1645 components: - pos: -10.5,-9.5 @@ -36278,36 +34229,26 @@ entities: - pos: -12.5,2.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4476 components: - pos: -12.5,3.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4477 components: - pos: -12.5,4.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4478 components: - pos: -12.5,5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4479 components: - pos: -12.5,6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4480 components: - pos: -12.5,7.5 @@ -36388,120 +34329,86 @@ entities: - pos: -24.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4496 components: - pos: -25.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4497 components: - pos: -26.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4498 components: - pos: -26.5,11.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4499 components: - pos: -26.5,12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4500 components: - pos: -26.5,13.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4501 components: - pos: -26.5,14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4502 components: - pos: -26.5,15.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4503 components: - pos: -26.5,16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4504 components: - pos: -26.5,17.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4505 components: - pos: -26.5,18.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4506 components: - pos: -26.5,19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4507 components: - pos: -27.5,19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4508 components: - pos: -28.5,19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4509 components: - pos: -29.5,19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4510 components: - pos: -30.5,19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4511 components: - pos: -31.5,19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4512 components: - pos: -31.5,20.5 @@ -36532,36 +34439,26 @@ entities: - pos: -31.5,25.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4518 components: - pos: -31.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4519 components: - pos: -32.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4520 components: - pos: -33.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4521 components: - pos: -33.5,25.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5090 components: - pos: 94.5,1.5 @@ -36607,197 +34504,141 @@ entities: - pos: 63.5,0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5099 components: - pos: 64.5,0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5101 components: - pos: 65.5,0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5102 components: - pos: 66.5,0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5103 components: - pos: 67.5,0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5104 components: - pos: 68.5,0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5105 components: - pos: 69.5,0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5106 components: - pos: 70.5,0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5107 components: - pos: 71.5,0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5108 components: - pos: 72.5,0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5109 components: - pos: 73.5,0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5110 components: - pos: 74.5,0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5111 components: - pos: 75.5,0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5112 components: - pos: 76.5,0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5121 components: - pos: 77.5,0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5122 components: - pos: 78.5,0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5123 components: - pos: 79.5,0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5124 components: - pos: 80.5,0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5125 components: - pos: 81.5,0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5130 components: - pos: 82.5,0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5131 components: - pos: 83.5,0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5132 components: - pos: 84.5,0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5133 components: - pos: 85.5,0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5134 components: - pos: 86.5,0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5135 components: - pos: 87.5,0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5136 components: - pos: 88.5,0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5137 components: - pos: 89.5,0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5138 components: - pos: 90.5,0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5139 components: - pos: 91.5,0.5 @@ -37683,78 +35524,56 @@ entities: - pos: -46.5,5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 6101 components: - pos: -47.5,5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 6102 components: - pos: -48.5,5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 6103 components: - pos: -49.5,5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 6104 components: - pos: -50.5,5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 6105 components: - pos: -51.5,5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 6106 components: - pos: -52.5,5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 6107 components: - pos: -46.5,6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 6108 components: - pos: -46.5,7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 6109 components: - pos: -46.5,8.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 6110 components: - pos: -45.5,8.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 6111 components: - pos: -44.5,8.5 @@ -37965,512 +35784,366 @@ entities: - pos: -27.5,52.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 8077 components: - pos: -25.5,52.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 8089 components: - pos: -26.5,54.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 8175 components: - pos: -26.5,52.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 8176 components: - pos: -25.5,54.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 8621 components: - pos: -27.5,54.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9478 components: - pos: -33.5,65.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9521 components: - pos: -32.5,44.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9522 components: - pos: -32.5,45.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9523 components: - pos: -32.5,46.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9524 components: - pos: -32.5,47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9525 components: - pos: -32.5,48.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9526 components: - pos: -33.5,44.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9527 components: - pos: -33.5,43.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9528 components: - pos: -33.5,42.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9529 components: - pos: -32.5,42.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9530 components: - pos: -32.5,41.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9531 components: - pos: -32.5,40.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9532 components: - pos: -32.5,39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9533 components: - pos: -32.5,38.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9642 components: - pos: -32.5,37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9643 components: - pos: -32.5,36.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9644 components: - pos: -33.5,36.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9645 components: - pos: -34.5,36.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9646 components: - pos: -35.5,36.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9647 components: - pos: -36.5,36.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9648 components: - pos: -37.5,36.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9649 components: - pos: -38.5,36.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9650 components: - pos: -39.5,36.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9651 components: - pos: -39.5,35.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9652 components: - pos: -39.5,34.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9653 components: - pos: -39.5,33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9654 components: - pos: -39.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9655 components: - pos: -39.5,31.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9656 components: - pos: -39.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9657 components: - pos: -38.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9658 components: - pos: -37.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9659 components: - pos: -36.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9660 components: - pos: -35.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9661 components: - pos: -34.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9662 components: - pos: -33.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9663 components: - pos: -32.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9664 components: - pos: -31.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9665 components: - pos: -31.5,29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9666 components: - pos: -31.5,28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9667 components: - pos: -31.5,27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9668 components: - pos: -30.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9669 components: - pos: -29.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9670 components: - pos: -28.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9671 components: - pos: -27.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9672 components: - pos: -26.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9673 components: - pos: -25.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9674 components: - pos: -24.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9675 components: - pos: -23.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9676 components: - pos: -22.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9677 components: - pos: -21.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9678 components: - pos: -21.5,31.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9679 components: - pos: -21.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9680 components: - pos: -21.5,33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9681 components: - pos: -20.5,33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9682 components: - pos: -19.5,33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9683 components: - pos: -18.5,33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9684 components: - pos: -17.5,33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9685 components: - pos: -16.5,33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9686 components: - pos: -15.5,33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9687 components: - pos: -15.5,34.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9688 components: - pos: -15.5,35.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9689 components: - pos: -15.5,36.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9690 components: - pos: -15.5,37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9691 components: - pos: -15.5,38.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9692 components: - pos: -15.5,39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9693 components: - pos: -15.5,40.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9694 components: - pos: -14.5,40.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9695 components: - pos: -30.5,22.5 @@ -38536,995 +36209,711 @@ entities: - pos: -21.5,25.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9708 components: - pos: -21.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9709 components: - pos: -21.5,27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9710 components: - pos: -21.5,28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9711 components: - pos: -21.5,29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10010 components: - pos: -14.5,39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10137 components: - pos: -28.5,52.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10256 components: - pos: -29.5,52.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10268 components: - pos: -30.5,52.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10269 components: - pos: -34.5,54.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10270 components: - pos: -35.5,54.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10271 components: - pos: -36.5,54.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10272 components: - pos: -37.5,54.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10273 components: - pos: -38.5,54.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10274 components: - pos: -39.5,54.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10275 components: - pos: -34.5,52.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10276 components: - pos: -35.5,52.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10277 components: - pos: -36.5,52.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10278 components: - pos: -37.5,52.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10279 components: - pos: -38.5,52.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10280 components: - pos: -39.5,52.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10550 components: - pos: -28.5,54.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10551 components: - pos: -29.5,54.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10552 components: - pos: -30.5,54.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10553 components: - pos: -30.5,56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10554 components: - pos: -29.5,56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10555 components: - pos: -28.5,56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10556 components: - pos: -27.5,56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10557 components: - pos: -26.5,56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10558 components: - pos: -25.5,56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10559 components: - pos: -25.5,58.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10560 components: - pos: -26.5,58.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10561 components: - pos: -27.5,58.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10562 components: - pos: -28.5,58.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10563 components: - pos: -29.5,58.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10564 components: - pos: -30.5,58.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10565 components: - pos: -34.5,58.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10566 components: - pos: -35.5,58.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10567 components: - pos: -36.5,58.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10568 components: - pos: -37.5,58.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10569 components: - pos: -38.5,58.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10570 components: - pos: -39.5,58.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10571 components: - pos: -39.5,56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10572 components: - pos: -38.5,56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10573 components: - pos: -37.5,56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10574 components: - pos: -36.5,56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10575 components: - pos: -35.5,56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10576 components: - pos: -34.5,56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10577 components: - pos: -39.5,60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10578 components: - pos: -38.5,60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10579 components: - pos: -37.5,60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10580 components: - pos: -36.5,60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10581 components: - pos: -35.5,60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10582 components: - pos: -34.5,60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10583 components: - pos: -39.5,62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10584 components: - pos: -38.5,62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10585 components: - pos: -37.5,62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10586 components: - pos: -36.5,62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10587 components: - pos: -35.5,62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10588 components: - pos: -34.5,62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10589 components: - pos: -39.5,64.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10590 components: - pos: -38.5,64.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10591 components: - pos: -37.5,64.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10592 components: - pos: -36.5,64.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10593 components: - pos: -35.5,64.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10594 components: - pos: -34.5,64.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10595 components: - pos: -39.5,66.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10596 components: - pos: -38.5,66.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10597 components: - pos: -37.5,66.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10598 components: - pos: -36.5,66.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10599 components: - pos: -35.5,66.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10600 components: - pos: -34.5,66.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10601 components: - pos: -32.5,70.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10602 components: - pos: -32.5,69.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10603 components: - pos: -32.5,68.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10604 components: - pos: -32.5,67.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10605 components: - pos: -32.5,66.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10606 components: - pos: -30.5,66.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10607 components: - pos: -29.5,66.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10608 components: - pos: -28.5,66.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10609 components: - pos: -27.5,66.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10610 components: - pos: -26.5,66.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10611 components: - pos: -25.5,66.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10612 components: - pos: -25.5,64.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10613 components: - pos: -26.5,64.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10614 components: - pos: -27.5,64.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10615 components: - pos: -28.5,64.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10616 components: - pos: -29.5,64.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10617 components: - pos: -30.5,64.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10618 components: - pos: -30.5,65.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10619 components: - pos: -31.5,65.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10620 components: - pos: -34.5,65.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10622 components: - pos: -34.5,61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10623 components: - pos: -33.5,61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10624 components: - pos: -31.5,61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10625 components: - pos: -30.5,61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10626 components: - pos: -30.5,57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10627 components: - pos: -31.5,57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10628 components: - pos: -34.5,57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10629 components: - pos: -33.5,57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10630 components: - pos: -34.5,53.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10631 components: - pos: -33.5,53.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10632 components: - pos: -30.5,53.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10633 components: - pos: -31.5,53.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10634 components: - pos: -32.5,49.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11877 components: - pos: 37.5,-21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11878 components: - pos: 37.5,-22.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11879 components: - pos: 38.5,-22.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11880 components: - pos: 39.5,-22.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11881 components: - pos: 40.5,-22.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11882 components: - pos: 34.5,-0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11883 components: - pos: 35.5,-0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11884 components: - pos: 36.5,-0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11885 components: - pos: 37.5,-0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11886 components: - pos: 38.5,-0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11887 components: - pos: 39.5,-0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11888 components: - pos: 40.5,-0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11889 components: - pos: 40.5,-1.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11890 components: - pos: 40.5,-2.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11891 components: - pos: 40.5,-3.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11892 components: - pos: 40.5,-4.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11893 components: - pos: 40.5,-5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11894 components: - pos: 40.5,-6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11895 components: - pos: 41.5,-6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11896 components: - pos: 42.5,-6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11897 components: - pos: 43.5,-6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11898 components: - pos: 43.5,-7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11899 components: - pos: 43.5,-8.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11900 components: - pos: 43.5,-9.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11901 components: - pos: 43.5,-10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11902 components: - pos: 43.5,-11.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11903 components: - pos: 43.5,-12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11904 components: - pos: 43.5,-13.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11905 components: - pos: 43.5,-14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11906 components: - pos: 43.5,-15.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11907 components: - pos: 43.5,-16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11908 components: - pos: 43.5,-17.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11909 components: - pos: 41.5,-22.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11910 components: - pos: 41.5,-21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11911 components: - pos: 41.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11912 components: - pos: 41.5,-19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11913 components: - pos: 41.5,-18.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11914 components: - pos: 41.5,-17.5 @@ -39535,15 +36924,11 @@ entities: - pos: 42.5,-17.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12385 components: - pos: 40.5,0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12386 components: - pos: 40.5,1.5 @@ -39664,29 +37049,21 @@ entities: - pos: 58.5,6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12410 components: - pos: 58.5,7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12411 components: - pos: 59.5,7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12412 components: - pos: 60.5,7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12413 components: - pos: 51.5,2.5 @@ -39827,29 +37204,21 @@ entities: - pos: 52.5,-19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12441 components: - pos: 52.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12442 components: - pos: 51.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12443 components: - pos: 50.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12444 components: - pos: 49.5,-20.5 @@ -39860,57 +37229,41 @@ entities: - pos: 48.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12446 components: - pos: 47.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12447 components: - pos: 46.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12448 components: - pos: 45.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12449 components: - pos: 44.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12450 components: - pos: 43.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12451 components: - pos: 42.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13111 components: - pos: 20.5,40.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13112 components: - pos: 21.5,40.5 @@ -39926,232 +37279,166 @@ entities: - pos: 20.5,39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13115 components: - pos: 20.5,38.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13116 components: - pos: 20.5,37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13117 components: - pos: 21.5,37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13118 components: - pos: 22.5,37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13119 components: - pos: 23.5,37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13120 components: - pos: 24.5,37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13121 components: - pos: 24.5,38.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13122 components: - pos: 24.5,39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13123 components: - pos: 23.5,39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13124 components: - pos: 22.5,39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13125 components: - pos: 22.5,36.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13126 components: - pos: 22.5,35.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13127 components: - pos: 22.5,34.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13128 components: - pos: 22.5,33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13129 components: - pos: 22.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13130 components: - pos: 22.5,31.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13131 components: - pos: 22.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13132 components: - pos: 22.5,29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13133 components: - pos: 21.5,29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13134 components: - pos: 21.5,28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13135 components: - pos: 20.5,28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13136 components: - pos: 19.5,28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13137 components: - pos: 18.5,28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13138 components: - pos: 17.5,28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13139 components: - pos: 16.5,28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13140 components: - pos: 16.5,27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13141 components: - pos: 16.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13142 components: - pos: 16.5,25.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13143 components: - pos: 16.5,24.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13144 components: - pos: 16.5,23.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13145 components: - pos: 16.5,22.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13146 components: - pos: 16.5,21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13147 components: - pos: 16.5,20.5 @@ -40247,64 +37534,46 @@ entities: - pos: 24.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13166 components: - pos: 25.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13167 components: - pos: 26.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13168 components: - pos: 27.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13169 components: - pos: 28.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13170 components: - pos: 28.5,9.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13171 components: - pos: 28.5,8.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13172 components: - pos: 28.5,7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13173 components: - pos: 28.5,6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13174 components: - pos: 28.5,5.5 @@ -40380,106 +37649,76 @@ entities: - pos: 40.5,12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13189 components: - pos: 39.5,12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13190 components: - pos: 38.5,12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13191 components: - pos: 37.5,12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13192 components: - pos: 36.5,12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13193 components: - pos: 35.5,12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13194 components: - pos: 34.5,12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13195 components: - pos: 33.5,12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13196 components: - pos: 32.5,12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13197 components: - pos: 31.5,12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13198 components: - pos: 31.5,11.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13199 components: - pos: 31.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13200 components: - pos: 30.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13201 components: - pos: 29.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13202 components: - pos: 25.5,37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13203 components: - pos: 26.5,37.5 @@ -40585,134 +37824,96 @@ entities: - pos: 37.5,28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13224 components: - pos: 38.5,28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13225 components: - pos: 39.5,28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13672 components: - pos: 40.5,13.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13673 components: - pos: 40.5,14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13674 components: - pos: 40.5,15.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13675 components: - pos: 40.5,16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13676 components: - pos: 40.5,17.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13677 components: - pos: 40.5,18.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13678 components: - pos: 40.5,19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13679 components: - pos: 40.5,20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13680 components: - pos: 40.5,21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13681 components: - pos: 40.5,22.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13682 components: - pos: 40.5,23.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13683 components: - pos: 40.5,24.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13684 components: - pos: 40.5,25.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13685 components: - pos: 40.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13686 components: - pos: 40.5,27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13687 components: - pos: 40.5,28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13688 components: - pos: -14.5,33.5 @@ -40903,134 +38104,96 @@ entities: - pos: 16.5,37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13726 components: - pos: 17.5,37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13727 components: - pos: 18.5,37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13728 components: - pos: 19.5,37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13932 components: - pos: 40.5,29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13933 components: - pos: 40.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13934 components: - pos: 41.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13935 components: - pos: 42.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13936 components: - pos: 43.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13937 components: - pos: 44.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13938 components: - pos: 45.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13939 components: - pos: 46.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13940 components: - pos: 46.5,31.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13941 components: - pos: 46.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13942 components: - pos: 47.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13943 components: - pos: 48.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13944 components: - pos: 49.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13945 components: - pos: 50.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13946 components: - pos: 51.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13947 components: - pos: 52.5,32.5 @@ -41061,120 +38224,86 @@ entities: - pos: 57.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13953 components: - pos: 58.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13954 components: - pos: 59.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13955 components: - pos: 60.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13956 components: - pos: 61.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13957 components: - pos: 62.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13958 components: - pos: 63.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13959 components: - pos: 63.5,33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13960 components: - pos: 63.5,34.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13961 components: - pos: 63.5,35.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13962 components: - pos: 64.5,35.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13963 components: - pos: 64.5,36.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13964 components: - pos: 64.5,37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13965 components: - pos: 63.5,37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13966 components: - pos: 63.5,38.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13967 components: - pos: 63.5,39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13968 components: - pos: 63.5,40.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13969 components: - pos: 54.5,33.5 @@ -41245,253 +38374,181 @@ entities: - pos: -10.5,-44.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16151 components: - pos: -36.5,-43.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16152 components: - pos: -36.5,-42.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16153 components: - pos: -36.5,-41.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16154 components: - pos: -36.5,-40.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16155 components: - pos: -36.5,-39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16156 components: - pos: -38.5,-39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16157 components: - pos: -37.5,-39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16159 components: - pos: -39.5,-38.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16160 components: - pos: -39.5,-37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16161 components: - pos: -39.5,-36.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16162 components: - pos: -39.5,-35.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16163 components: - pos: -39.5,-34.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16164 components: - pos: -39.5,-33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16165 components: - pos: -39.5,-32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16166 components: - pos: -39.5,-31.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16167 components: - pos: -39.5,-30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16168 components: - pos: -39.5,-29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16169 components: - pos: -39.5,-28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16170 components: - pos: -39.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16171 components: - pos: -38.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16172 components: - pos: -37.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16173 components: - pos: -36.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16174 components: - pos: -35.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16175 components: - pos: -34.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16176 components: - pos: -33.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16177 components: - pos: -32.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16178 components: - pos: -31.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16179 components: - pos: -9.5,-44.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16180 components: - pos: -8.5,-44.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16181 components: - pos: -8.5,-43.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16182 components: - pos: -8.5,-42.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16183 components: - pos: -8.5,-41.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16184 components: - pos: -9.5,-41.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16185 components: - pos: -10.5,-41.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16186 components: - pos: -11.5,-41.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16187 components: - pos: -12.5,-41.5 @@ -41612,701 +38669,501 @@ entities: - pos: -33.5,-39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16211 components: - pos: -34.5,-39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16212 components: - pos: -35.5,-39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16213 components: - pos: -11.5,-44.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16958 components: - pos: -58.5,-70.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16959 components: - pos: -58.5,-69.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16960 components: - pos: -58.5,-68.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16961 components: - pos: -58.5,-67.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16962 components: - pos: -58.5,-66.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16963 components: - pos: -58.5,-65.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16964 components: - pos: -58.5,-64.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16965 components: - pos: -56.5,-70.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16966 components: - pos: -56.5,-69.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16967 components: - pos: -56.5,-68.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16968 components: - pos: -56.5,-67.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16969 components: - pos: -56.5,-66.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16970 components: - pos: -56.5,-65.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16971 components: - pos: -56.5,-64.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16972 components: - pos: -57.5,-71.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16973 components: - pos: -53.5,-71.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16974 components: - pos: -54.5,-70.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16975 components: - pos: -54.5,-69.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16976 components: - pos: -54.5,-68.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16977 components: - pos: -54.5,-67.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16978 components: - pos: -54.5,-66.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16979 components: - pos: -54.5,-65.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16980 components: - pos: -54.5,-64.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16981 components: - pos: -52.5,-70.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16982 components: - pos: -52.5,-69.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16983 components: - pos: -52.5,-68.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16984 components: - pos: -52.5,-67.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16985 components: - pos: -52.5,-66.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16986 components: - pos: -52.5,-65.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16987 components: - pos: -52.5,-64.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16988 components: - pos: -50.5,-70.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16989 components: - pos: -50.5,-69.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16990 components: - pos: -50.5,-68.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16991 components: - pos: -50.5,-67.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16992 components: - pos: -50.5,-66.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16993 components: - pos: -50.5,-65.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16994 components: - pos: -50.5,-64.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16995 components: - pos: -49.5,-71.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16996 components: - pos: -48.5,-70.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16997 components: - pos: -48.5,-69.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16998 components: - pos: -48.5,-68.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16999 components: - pos: -48.5,-67.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17000 components: - pos: -48.5,-66.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17001 components: - pos: -48.5,-65.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17002 components: - pos: -48.5,-64.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17003 components: - pos: -46.5,-70.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17004 components: - pos: -46.5,-69.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17005 components: - pos: -46.5,-68.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17006 components: - pos: -46.5,-67.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17007 components: - pos: -46.5,-66.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17008 components: - pos: -46.5,-65.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17009 components: - pos: -46.5,-64.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17010 components: - pos: -44.5,-70.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17011 components: - pos: -44.5,-69.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17012 components: - pos: -44.5,-68.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17013 components: - pos: -44.5,-67.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17014 components: - pos: -44.5,-66.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17015 components: - pos: -44.5,-65.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17016 components: - pos: -44.5,-64.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17017 components: - pos: -45.5,-71.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17018 components: - pos: -46.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17019 components: - pos: -45.5,-61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17020 components: - pos: -44.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17021 components: - pos: -45.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17022 components: - pos: -48.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17023 components: - pos: -49.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17024 components: - pos: -50.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17025 components: - pos: -49.5,-61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17026 components: - pos: -52.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17027 components: - pos: -53.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17028 components: - pos: -54.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17029 components: - pos: -53.5,-61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17030 components: - pos: -56.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17031 components: - pos: -57.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17032 components: - pos: -58.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17033 components: - pos: -57.5,-61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17034 components: - pos: -57.5,-70.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17035 components: - pos: -53.5,-70.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17036 components: - pos: -49.5,-70.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17037 components: - pos: -45.5,-70.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17038 components: - pos: -57.5,-64.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17039 components: - pos: -53.5,-64.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17040 components: - pos: -49.5,-64.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17041 components: - pos: -45.5,-64.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17042 components: - pos: -60.5,-63.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17043 components: - pos: -61.5,-63.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17173 components: - pos: -42.5,-63.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17174 components: - pos: -41.5,-63.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17175 components: - pos: -40.5,-63.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17176 components: - pos: -39.5,-63.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17177 components: - pos: -38.5,-63.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17178 components: - pos: -38.5,-64.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17179 components: - pos: -37.5,-64.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17180 components: - pos: -36.5,-64.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17206 components: - pos: -43.5,-63.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17347 components: - pos: -39.5,-39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17352 components: - pos: -35.5,-41.5 @@ -42327,260 +39184,186 @@ entities: - pos: -37.5,-2.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18081 components: - pos: -37.5,-3.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18082 components: - pos: -37.5,-4.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18083 components: - pos: -37.5,-5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18084 components: - pos: -37.5,-6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18085 components: - pos: -37.5,-7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18086 components: - pos: -37.5,-8.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18087 components: - pos: -37.5,-9.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18088 components: - pos: -37.5,-10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18089 components: - pos: -37.5,-11.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18090 components: - pos: -37.5,-12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18091 components: - pos: -37.5,-13.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18092 components: - pos: -37.5,-14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18093 components: - pos: -37.5,-15.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18094 components: - pos: -37.5,-16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18095 components: - pos: -37.5,-17.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18096 components: - pos: -37.5,-18.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18097 components: - pos: -37.5,-19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18098 components: - pos: -36.5,-19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18099 components: - pos: -36.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18100 components: - pos: -36.5,-21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18101 components: - pos: -36.5,-22.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18102 components: - pos: -36.5,-23.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18103 components: - pos: -36.5,-24.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18104 components: - pos: -36.5,-25.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18105 components: - pos: -36.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18106 components: - pos: -35.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18107 components: - pos: -34.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18108 components: - pos: -33.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18109 components: - pos: -32.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18110 components: - pos: -31.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18111 components: - pos: -30.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18112 components: - pos: -29.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18113 components: - pos: -28.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18114 components: - pos: -27.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18115 components: - pos: -26.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18116 components: - pos: -25.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18117 components: - pos: -24.5,-20.5 @@ -42666,50 +39449,36 @@ entities: - pos: -12.5,-16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18134 components: - pos: -12.5,-15.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18135 components: - pos: -12.5,-14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18136 components: - pos: -12.5,-13.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18137 components: - pos: -12.5,-12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18138 components: - pos: -12.5,-11.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18139 components: - pos: -12.5,-10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18140 components: - pos: -12.5,-9.5 @@ -42725,43 +39494,31 @@ entities: - pos: -47.5,8.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18143 components: - pos: -48.5,8.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18144 components: - pos: -49.5,8.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18145 components: - pos: -50.5,8.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18146 components: - pos: -51.5,8.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18147 components: - pos: -52.5,8.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18148 components: - pos: -53.5,8.5 @@ -42937,1394 +39694,996 @@ entities: - pos: -58.5,-16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18183 components: - pos: -57.5,-16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18184 components: - pos: -56.5,-16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18185 components: - pos: -55.5,-16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18186 components: - pos: -54.5,-16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18187 components: - pos: -53.5,-16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18188 components: - pos: -52.5,-16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18189 components: - pos: -52.5,-17.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18190 components: - pos: -52.5,-18.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18191 components: - pos: -52.5,-19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18192 components: - pos: -52.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18193 components: - pos: -52.5,-21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18194 components: - pos: -40.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18195 components: - pos: -41.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18196 components: - pos: -42.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18197 components: - pos: -43.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18198 components: - pos: -44.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18199 components: - pos: -45.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18200 components: - pos: -46.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18201 components: - pos: -47.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18202 components: - pos: -47.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18203 components: - pos: -47.5,-25.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18204 components: - pos: -47.5,-24.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18205 components: - pos: -47.5,-23.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18206 components: - pos: -46.5,-23.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18207 components: - pos: -46.5,-22.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18208 components: - pos: -46.5,-21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18209 components: - pos: -47.5,-21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18210 components: - pos: -48.5,-21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18211 components: - pos: -49.5,-21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18212 components: - pos: -50.5,-21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18213 components: - pos: -51.5,-21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18788 components: - pos: 65.5,56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18789 components: - pos: 65.5,55.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18790 components: - pos: 66.5,56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18791 components: - pos: 66.5,55.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18792 components: - pos: 65.5,53.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18793 components: - pos: 65.5,52.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18794 components: - pos: 66.5,53.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18795 components: - pos: 66.5,52.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18796 components: - pos: 68.5,53.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18797 components: - pos: 68.5,52.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18798 components: - pos: 69.5,53.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18799 components: - pos: 69.5,52.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18800 components: - pos: 68.5,56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18801 components: - pos: 68.5,55.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18802 components: - pos: 69.5,56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18803 components: - pos: 69.5,55.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18804 components: - pos: 71.5,56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18805 components: - pos: 71.5,55.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18806 components: - pos: 72.5,56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18807 components: - pos: 72.5,55.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18808 components: - pos: 71.5,53.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18809 components: - pos: 71.5,52.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18810 components: - pos: 72.5,53.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18811 components: - pos: 72.5,52.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18812 components: - pos: 74.5,53.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18813 components: - pos: 74.5,52.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18814 components: - pos: 75.5,53.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18815 components: - pos: 75.5,52.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18816 components: - pos: 74.5,56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18817 components: - pos: 74.5,55.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18818 components: - pos: 75.5,56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18819 components: - pos: 75.5,55.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18820 components: - pos: 74.5,50.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18821 components: - pos: 74.5,49.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18822 components: - pos: 75.5,50.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18823 components: - pos: 75.5,49.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18824 components: - pos: 71.5,50.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18825 components: - pos: 71.5,49.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18826 components: - pos: 72.5,50.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18827 components: - pos: 72.5,49.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18828 components: - pos: 74.5,47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18829 components: - pos: 74.5,46.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18830 components: - pos: 75.5,47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18831 components: - pos: 75.5,46.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18832 components: - pos: 71.5,47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18833 components: - pos: 71.5,46.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18834 components: - pos: 72.5,47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18835 components: - pos: 72.5,46.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18836 components: - pos: 68.5,47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18837 components: - pos: 68.5,46.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18838 components: - pos: 69.5,47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18839 components: - pos: 69.5,46.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18840 components: - pos: 68.5,50.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18841 components: - pos: 68.5,49.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18842 components: - pos: 69.5,50.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18843 components: - pos: 69.5,49.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18844 components: - pos: 65.5,50.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18845 components: - pos: 65.5,49.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18846 components: - pos: 66.5,50.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18847 components: - pos: 66.5,49.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18848 components: - pos: 65.5,47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18849 components: - pos: 65.5,46.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18850 components: - pos: 66.5,47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18851 components: - pos: 66.5,46.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18852 components: - pos: 63.5,41.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18853 components: - pos: 63.5,42.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18854 components: - pos: 63.5,43.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18855 components: - pos: 63.5,44.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18856 components: - pos: 63.5,45.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18857 components: - pos: 63.5,46.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18858 components: - pos: 63.5,47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18859 components: - pos: 63.5,48.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18860 components: - pos: 63.5,49.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18861 components: - pos: 63.5,50.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18862 components: - pos: 63.5,51.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18863 components: - pos: 63.5,52.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18865 components: - pos: 63.5,54.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18867 components: - pos: 63.5,56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18868 components: - pos: 63.5,57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18869 components: - pos: 63.5,58.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18870 components: - pos: 63.5,59.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19887 components: - pos: 36.5,-69.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19888 components: - pos: 35.5,-69.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19889 components: - pos: 34.5,-69.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19890 components: - pos: 33.5,-68.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19891 components: - pos: 34.5,-67.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19892 components: - pos: 35.5,-67.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19893 components: - pos: 36.5,-67.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19894 components: - pos: 40.5,-69.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19895 components: - pos: 41.5,-69.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19896 components: - pos: 42.5,-69.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19897 components: - pos: 43.5,-68.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19898 components: - pos: 42.5,-67.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19899 components: - pos: 41.5,-67.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19900 components: - pos: 40.5,-67.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19901 components: - pos: 42.5,-68.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19902 components: - pos: 34.5,-68.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19903 components: - pos: 36.5,-68.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19904 components: - pos: 37.5,-68.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19905 components: - pos: 39.5,-68.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19906 components: - pos: 40.5,-68.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19907 components: - pos: 40.5,-73.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19908 components: - pos: 41.5,-73.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19909 components: - pos: 42.5,-73.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19910 components: - pos: 42.5,-72.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19911 components: - pos: 43.5,-72.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19912 components: - pos: 42.5,-71.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19913 components: - pos: 41.5,-71.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19914 components: - pos: 40.5,-71.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19915 components: - pos: 40.5,-72.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19916 components: - pos: 39.5,-72.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19917 components: - pos: 37.5,-72.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19918 components: - pos: 36.5,-72.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19919 components: - pos: 36.5,-73.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19920 components: - pos: 35.5,-73.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19921 components: - pos: 34.5,-73.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19922 components: - pos: 34.5,-72.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19923 components: - pos: 33.5,-72.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19924 components: - pos: 34.5,-71.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19925 components: - pos: 35.5,-71.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19926 components: - pos: 36.5,-71.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19927 components: - pos: 37.5,-76.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19928 components: - pos: 36.5,-76.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19929 components: - pos: 36.5,-77.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19930 components: - pos: 35.5,-77.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19931 components: - pos: 34.5,-77.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19932 components: - pos: 34.5,-76.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19933 components: - pos: 33.5,-76.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19934 components: - pos: 34.5,-75.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19935 components: - pos: 35.5,-75.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19936 components: - pos: 36.5,-75.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19937 components: - pos: 39.5,-76.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19938 components: - pos: 40.5,-76.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19939 components: - pos: 40.5,-75.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19940 components: - pos: 41.5,-75.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19941 components: - pos: 42.5,-75.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19942 components: - pos: 42.5,-76.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19943 components: - pos: 43.5,-76.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19944 components: - pos: 42.5,-77.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19945 components: - pos: 40.5,-77.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19946 components: - pos: 41.5,-77.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19947 components: - pos: 38.5,-79.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19948 components: - pos: 38.5,-78.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19949 components: - pos: 38.5,-65.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19950 components: - pos: 38.5,-64.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19951 components: - pos: 38.5,-63.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19952 components: - pos: 38.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19953 components: - pos: 38.5,-61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19954 components: - pos: 38.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19955 components: - pos: 39.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19956 components: - pos: 39.5,-59.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19957 components: - pos: 39.5,-58.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19958 components: - pos: 38.5,-58.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19959 components: - pos: 38.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19960 components: - pos: 38.5,-56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20050 components: - pos: 11.5,-61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20051 components: - pos: 10.5,-61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20052 components: - pos: 10.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20053 components: - pos: 10.5,-59.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20054 components: - pos: 10.5,-58.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20186 components: - pos: 27.5,-32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20187 components: - pos: 27.5,-33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20188 components: - pos: 28.5,-33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20189 components: - pos: 30.5,-33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20191 components: - pos: 29.5,-33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21277 components: - pos: -36.5,-63.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21278 components: - pos: -36.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21279 components: - pos: -37.5,-62.5 @@ -44335,197 +40694,141 @@ entities: - pos: -37.5,-61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21281 components: - pos: -37.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21282 components: - pos: -36.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21283 components: - pos: -35.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21284 components: - pos: -34.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21285 components: - pos: -33.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21286 components: - pos: -32.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21287 components: - pos: -31.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21288 components: - pos: -30.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21289 components: - pos: -29.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21290 components: - pos: -28.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21291 components: - pos: -27.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21292 components: - pos: -26.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21293 components: - pos: -25.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21294 components: - pos: -24.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21295 components: - pos: -23.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21296 components: - pos: -22.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21297 components: - pos: -21.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21298 components: - pos: -20.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21299 components: - pos: -20.5,-61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21300 components: - pos: -20.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21301 components: - pos: -19.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21302 components: - pos: -18.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21303 components: - pos: -17.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21304 components: - pos: -16.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21305 components: - pos: -15.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21306 components: - pos: -14.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21307 components: - pos: -13.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21308 components: - pos: -12.5,-62.5 @@ -44591,204 +40894,146 @@ entities: - pos: -0.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21321 components: - pos: 0.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21322 components: - pos: 1.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21323 components: - pos: 2.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21324 components: - pos: 3.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21325 components: - pos: 4.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21326 components: - pos: 5.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21327 components: - pos: 6.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21328 components: - pos: 6.5,-61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21329 components: - pos: 6.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21330 components: - pos: 6.5,-59.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21331 components: - pos: 6.5,-58.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21332 components: - pos: 7.5,-58.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21333 components: - pos: 8.5,-58.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21334 components: - pos: 9.5,-58.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21335 components: - pos: 10.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21336 components: - pos: 11.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21337 components: - pos: 12.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21338 components: - pos: 13.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21339 components: - pos: 14.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21340 components: - pos: 15.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21341 components: - pos: 16.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21342 components: - pos: 17.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21343 components: - pos: 18.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21344 components: - pos: 18.5,-56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21345 components: - pos: 18.5,-55.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21346 components: - pos: 18.5,-54.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21347 components: - pos: 18.5,-53.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21348 components: - pos: 18.5,-52.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21349 components: - pos: 18.5,-51.5 @@ -44819,106 +41064,76 @@ entities: - pos: 18.5,-46.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21355 components: - pos: 18.5,-45.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21356 components: - pos: 19.5,-45.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21357 components: - pos: 20.5,-45.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21358 components: - pos: 21.5,-45.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21359 components: - pos: 22.5,-45.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21360 components: - pos: 23.5,-45.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21361 components: - pos: 24.5,-45.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21362 components: - pos: 25.5,-45.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21363 components: - pos: 26.5,-45.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21364 components: - pos: 27.5,-45.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21365 components: - pos: 28.5,-45.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21366 components: - pos: 29.5,-45.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21367 components: - pos: 30.5,-45.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21368 components: - pos: 31.5,-45.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21369 components: - pos: 31.5,-44.5 @@ -44949,211 +41164,151 @@ entities: - pos: 31.5,-39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21375 components: - pos: 31.5,-38.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21376 components: - pos: 31.5,-37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21377 components: - pos: 31.5,-36.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21378 components: - pos: 31.5,-35.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21379 components: - pos: 31.5,-34.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21380 components: - pos: 31.5,-33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21381 components: - pos: 40.5,-23.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21382 components: - pos: 40.5,-24.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21383 components: - pos: 40.5,-25.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21384 components: - pos: 40.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21385 components: - pos: 39.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21386 components: - pos: 38.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21387 components: - pos: 37.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21388 components: - pos: 36.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21389 components: - pos: 35.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21390 components: - pos: 34.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21391 components: - pos: 33.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21392 components: - pos: 32.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21393 components: - pos: 31.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21394 components: - pos: 31.5,-32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21395 components: - pos: 31.5,-31.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21396 components: - pos: 31.5,-30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21397 components: - pos: 31.5,-29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21398 components: - pos: 31.5,-28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21399 components: - pos: 31.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21400 components: - pos: -39.5,-40.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21401 components: - pos: -39.5,-41.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21402 components: - pos: -39.5,-42.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21403 components: - pos: -39.5,-43.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21404 components: - pos: -39.5,-44.5 @@ -45189,421 +41344,301 @@ entities: - pos: -38.5,-49.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21411 components: - pos: -38.5,-50.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21412 components: - pos: -38.5,-51.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21413 components: - pos: -39.5,-51.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21414 components: - pos: -39.5,-52.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21415 components: - pos: -39.5,-53.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21416 components: - pos: -39.5,-54.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21417 components: - pos: -39.5,-55.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21418 components: - pos: -39.5,-56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21419 components: - pos: -38.5,-56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21420 components: - pos: -38.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21421 components: - pos: -38.5,-58.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21422 components: - pos: -38.5,-59.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21423 components: - pos: -38.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21424 components: - pos: -7.5,-41.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21425 components: - pos: -6.5,-41.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21426 components: - pos: -6.5,-42.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21427 components: - pos: -6.5,-43.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21428 components: - pos: -6.5,-44.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21429 components: - pos: -6.5,-45.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21430 components: - pos: -6.5,-46.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21431 components: - pos: -6.5,-47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21432 components: - pos: -6.5,-48.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21433 components: - pos: -6.5,-49.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21434 components: - pos: -6.5,-50.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21435 components: - pos: -6.5,-51.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21436 components: - pos: -6.5,-52.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21437 components: - pos: -6.5,-53.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21438 components: - pos: -6.5,-54.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21439 components: - pos: -6.5,-55.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21440 components: - pos: -6.5,-56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21441 components: - pos: -6.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21442 components: - pos: -6.5,-58.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21443 components: - pos: -13.5,-61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21444 components: - pos: -13.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21445 components: - pos: -13.5,-59.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21446 components: - pos: -13.5,-58.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21447 components: - pos: -12.5,-58.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21448 components: - pos: -11.5,-58.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21449 components: - pos: -10.5,-58.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21450 components: - pos: -9.5,-58.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21451 components: - pos: -8.5,-58.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21452 components: - pos: -7.5,-58.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22416 components: - pos: 38.5,-55.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22417 components: - pos: 38.5,-54.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22418 components: - pos: 38.5,-53.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22419 components: - pos: 38.5,-52.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22420 components: - pos: 38.5,-51.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22421 components: - pos: 38.5,-50.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22422 components: - pos: 38.5,-49.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22423 components: - pos: 37.5,-49.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22424 components: - pos: 37.5,-48.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22425 components: - pos: 37.5,-47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22426 components: - pos: 37.5,-46.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22427 components: - pos: 34.5,-46.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22428 components: - pos: 35.5,-46.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22429 components: - pos: 33.5,-46.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22430 components: - pos: 36.5,-46.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22431 components: - pos: 32.5,-46.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22432 components: - pos: 31.5,-46.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22769 components: - pos: -11.5,-43.5 @@ -45689,43 +41724,31 @@ entities: - pos: 44.5,20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23268 components: - pos: 44.5,21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23269 components: - pos: 44.5,22.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23270 components: - pos: 44.5,23.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23271 components: - pos: 44.5,24.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23272 components: - pos: 44.5,25.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23273 components: - pos: 43.5,17.5 @@ -45761,8 +41784,6 @@ entities: - pos: 45.5,13.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23280 components: - pos: 46.5,13.5 @@ -45838,43 +41859,31 @@ entities: - pos: 59.5,14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23635 components: - pos: 59.5,15.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23636 components: - pos: 59.5,16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23637 components: - pos: 59.5,24.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23638 components: - pos: 59.5,25.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23639 components: - pos: 59.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23640 components: - pos: 59.5,27.5 @@ -45980,8 +41989,6 @@ entities: - pos: 53.5,23.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23661 components: - pos: 53.5,24.5 @@ -46032,29 +42039,21 @@ entities: - pos: 47.5,21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23714 components: - pos: 47.5,19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23715 components: - pos: 43.5,18.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23716 components: - pos: 42.5,18.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23813 components: - pos: 54.5,20.5 @@ -46100,8 +42099,6 @@ entities: - pos: 57.5,20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 24055 components: - pos: 54.5,26.5 @@ -46112,29 +42109,21 @@ entities: - pos: 108.5,2.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 25989 components: - pos: 109.5,2.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 25990 components: - pos: 110.5,2.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 25991 components: - pos: 111.5,2.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 26389 components: - pos: 109.5,1.5 @@ -46184,36 +42173,26 @@ entities: - pos: 13.5,0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 144 components: - pos: 13.5,-0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 145 components: - pos: 13.5,-1.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 146 components: - pos: 13.5,-2.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 147 components: - pos: 13.5,-3.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 148 components: - pos: 12.5,-3.5 @@ -46269,36 +42248,26 @@ entities: - pos: 7.5,1.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 159 components: - pos: -14.5,1.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 160 components: - pos: -13.5,1.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 161 components: - pos: -12.5,1.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 162 components: - pos: -11.5,1.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 163 components: - pos: -10.5,1.5 @@ -46324,8 +42293,6 @@ entities: - pos: -8.5,3.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 168 components: - pos: -9.5,0.5 @@ -46416,8 +42383,6 @@ entities: - pos: -18.5,2.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 187 components: - pos: 7.5,-4.5 @@ -46473,50 +42438,36 @@ entities: - pos: -0.5,-2.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 198 components: - pos: -8.5,4.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 199 components: - pos: -8.5,5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 200 components: - pos: -9.5,3.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 201 components: - pos: -7.5,5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 202 components: - pos: -6.5,5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 203 components: - pos: -5.5,5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 204 components: - pos: -5.5,4.5 @@ -46537,22 +42488,16 @@ entities: - pos: -3.5,5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 208 components: - pos: -2.5,5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 209 components: - pos: -1.5,5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 210 components: - pos: -1.5,4.5 @@ -46573,36 +42518,26 @@ entities: - pos: 0.5,5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 214 components: - pos: 1.5,5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 215 components: - pos: 2.5,5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 216 components: - pos: 3.5,5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 217 components: - pos: 3.5,4.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 218 components: - pos: 2.5,4.5 @@ -46633,8 +42568,6 @@ entities: - pos: 4.5,3.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 224 components: - pos: -0.5,-5.5 @@ -46645,36 +42578,26 @@ entities: - pos: -0.5,-6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 226 components: - pos: -1.5,-6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 227 components: - pos: -2.5,-6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 228 components: - pos: -3.5,-6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 229 components: - pos: -4.5,-6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 230 components: - pos: -13.5,-3.5 @@ -46685,8 +42608,6 @@ entities: - pos: -13.5,-4.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 232 components: - pos: -17.5,-3.5 @@ -46697,15 +42618,11 @@ entities: - pos: -17.5,-4.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 234 components: - pos: -19.5,0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1634 components: - pos: -12.5,-17.5 @@ -46716,8 +42633,6 @@ entities: - pos: -10.5,-10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1639 components: - pos: -10.5,-8.5 @@ -46733,8 +42648,6 @@ entities: - pos: -10.5,-11.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1688 components: - pos: -11.5,-8.5 @@ -46755,50 +42668,36 @@ entities: - pos: -12.5,-10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1692 components: - pos: -12.5,-11.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1693 components: - pos: -12.5,-12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1694 components: - pos: -12.5,-13.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1695 components: - pos: -12.5,-14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1696 components: - pos: -12.5,-15.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1697 components: - pos: -12.5,-16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1699 components: - pos: -12.5,-18.5 @@ -46824,8 +42723,6 @@ entities: - pos: -15.5,-17.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1704 components: - pos: -9.5,-8.5 @@ -46896,8 +42793,6 @@ entities: - pos: -0.5,-12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1875 components: - pos: 0.5,-8.5 @@ -46933,29 +42828,21 @@ entities: - pos: 5.5,-9.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1882 components: - pos: 6.5,-9.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1883 components: - pos: 7.5,-9.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1884 components: - pos: 7.5,-10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1885 components: - pos: 8.5,-10.5 @@ -46966,29 +42853,21 @@ entities: - pos: 9.5,-10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1887 components: - pos: 9.5,-9.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1888 components: - pos: 10.5,-9.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1889 components: - pos: 11.5,-9.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1890 components: - pos: 11.5,-8.5 @@ -47034,15 +42913,11 @@ entities: - pos: 13.5,-10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1899 components: - pos: 13.5,-11.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1900 components: - pos: 14.5,-11.5 @@ -47073,15 +42948,11 @@ entities: - pos: 13.5,-15.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1906 components: - pos: 13.5,-16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1907 components: - pos: -0.5,-13.5 @@ -47147,15 +43018,11 @@ entities: - pos: 5.5,-17.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1920 components: - pos: 6.5,-17.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1921 components: - pos: 6.5,-18.5 @@ -47186,15 +43053,11 @@ entities: - pos: 10.5,-17.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1927 components: - pos: 11.5,-17.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1928 components: - pos: 1.5,-16.5 @@ -47210,120 +43073,86 @@ entities: - pos: 3.5,-16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1931 components: - pos: 3.5,-15.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 1960 components: - pos: 9.5,-11.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2785 components: - pos: 34.5,-1.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2786 components: - pos: 34.5,-0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2787 components: - pos: 36.5,-0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2789 components: - pos: 35.5,-0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2791 components: - pos: 37.5,-0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2792 components: - pos: 38.5,-0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2793 components: - pos: 39.5,-0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2794 components: - pos: 40.5,-0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2795 components: - pos: 40.5,-1.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2796 components: - pos: 40.5,-2.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2797 components: - pos: 40.5,-3.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2798 components: - pos: 40.5,-4.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2799 components: - pos: 40.5,-5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2800 components: - pos: 40.5,-6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2801 components: - pos: 39.5,-6.5 @@ -47484,8 +43313,6 @@ entities: - pos: 25.5,-13.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2833 components: - pos: 24.5,-13.5 @@ -47501,8 +43328,6 @@ entities: - pos: 24.5,-11.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2836 components: - pos: 27.5,-14.5 @@ -47533,8 +43358,6 @@ entities: - pos: 31.5,-14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2842 components: - pos: 31.5,-15.5 @@ -47545,106 +43368,76 @@ entities: - pos: 41.5,-6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2844 components: - pos: 43.5,-6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2845 components: - pos: 43.5,-6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2846 components: - pos: 42.5,-6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2847 components: - pos: 43.5,-7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2848 components: - pos: 43.5,-8.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2849 components: - pos: 43.5,-9.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2850 components: - pos: 43.5,-10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2851 components: - pos: 43.5,-11.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2852 components: - pos: 43.5,-12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2853 components: - pos: 43.5,-13.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2854 components: - pos: 43.5,-14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2855 components: - pos: 43.5,-15.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2856 components: - pos: 42.5,-15.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2857 components: - pos: 41.5,-15.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 2858 components: - pos: 40.5,-15.5 @@ -47735,36 +43528,26 @@ entities: - pos: -33.5,25.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4525 components: - pos: -33.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4526 components: - pos: -32.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4527 components: - pos: -31.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4528 components: - pos: -31.5,25.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4529 components: - pos: -31.5,24.5 @@ -47815,8 +43598,6 @@ entities: - pos: -38.5,22.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4539 components: - pos: -31.5,21.5 @@ -47827,8 +43608,6 @@ entities: - pos: -31.5,19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4541 components: - pos: -31.5,20.5 @@ -47839,106 +43618,76 @@ entities: - pos: -30.5,19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4543 components: - pos: -29.5,19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4544 components: - pos: -28.5,19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4545 components: - pos: -27.5,19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4546 components: - pos: -26.5,19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4547 components: - pos: -26.5,18.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4548 components: - pos: -26.5,17.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4549 components: - pos: -26.5,16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4550 components: - pos: -26.5,15.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4551 components: - pos: -26.5,14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4552 components: - pos: -26.5,13.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4553 components: - pos: -26.5,12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4554 components: - pos: -26.5,11.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4555 components: - pos: -26.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4558 components: - pos: -43.5,7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 4559 components: - pos: -43.5,8.5 @@ -48049,57 +43798,41 @@ entities: - pos: -52.5,5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5884 components: - pos: -51.5,5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5885 components: - pos: -50.5,5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5886 components: - pos: -49.5,5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5887 components: - pos: -48.5,5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5888 components: - pos: -47.5,5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5889 components: - pos: -46.5,5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5890 components: - pos: -52.5,4.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 5891 components: - pos: -46.5,4.5 @@ -48240,22 +43973,16 @@ entities: - pos: -60.5,-6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 6262 components: - pos: -11.5,28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 6263 components: - pos: -8.5,28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 6264 components: - pos: 9.5,48.5 @@ -48276,36 +44003,26 @@ entities: - pos: 10.5,49.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 6358 components: - pos: 8.5,49.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 6447 components: - pos: -9.5,49.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 6475 components: - pos: -17.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 6501 components: - pos: -11.5,11.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 6510 components: - pos: -12.5,9.5 @@ -48316,36 +44033,26 @@ entities: - pos: -12.5,6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 6567 components: - pos: -12.5,5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 6568 components: - pos: -12.5,4.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 6569 components: - pos: -12.5,3.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 6570 components: - pos: -12.5,2.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 6597 components: - pos: -12.5,48.5 @@ -48376,15 +44083,11 @@ entities: - pos: -11.5,43.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 6618 components: - pos: -11.5,46.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 6622 components: - pos: -12.5,47.5 @@ -48395,8 +44098,6 @@ entities: - pos: -7.5,29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 6663 components: - pos: 10.5,41.5 @@ -48417,8 +44118,6 @@ entities: - pos: 5.5,47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 6680 components: - pos: 8.5,46.5 @@ -48429,8 +44128,6 @@ entities: - pos: 13.5,47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 6682 components: - pos: 11.5,46.5 @@ -48451,8 +44148,6 @@ entities: - pos: -10.5,29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7241 components: - pos: -12.5,10.5 @@ -48463,8 +44158,6 @@ entities: - pos: 12.5,42.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7254 components: - pos: 9.5,44.5 @@ -48480,22 +44173,16 @@ entities: - pos: 5.5,45.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7261 components: - pos: 4.5,43.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7262 components: - pos: 13.5,45.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7331 components: - pos: -14.5,31.5 @@ -48561,8 +44248,6 @@ entities: - pos: -6.5,35.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7415 components: - pos: -12.5,46.5 @@ -48643,92 +44328,66 @@ entities: - pos: 20.5,40.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7431 components: - pos: 20.5,39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7434 components: - pos: 23.5,39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7435 components: - pos: 24.5,39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7436 components: - pos: 24.5,38.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7437 components: - pos: 24.5,37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7439 components: - pos: 22.5,37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7440 components: - pos: 21.5,37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7441 components: - pos: 20.5,37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7442 components: - pos: 19.5,37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7443 components: - pos: 18.5,37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7444 components: - pos: 17.5,37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7445 components: - pos: 16.5,37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7446 components: - pos: 15.5,37.5 @@ -48779,8 +44438,6 @@ entities: - pos: -13.5,29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7457 components: - pos: 9.5,41.5 @@ -48816,15 +44473,11 @@ entities: - pos: 3.5,41.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7464 components: - pos: 9.5,33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7465 components: - pos: 9.5,32.5 @@ -48900,15 +44553,11 @@ entities: - pos: -12.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7480 components: - pos: -13.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7481 components: - pos: -9.5,30.5 @@ -48934,15 +44583,11 @@ entities: - pos: -9.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7486 components: - pos: -10.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7487 components: - pos: -6.5,30.5 @@ -48968,15 +44613,11 @@ entities: - pos: -6.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7492 components: - pos: -7.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7493 components: - pos: -5.5,33.5 @@ -49027,22 +44668,16 @@ entities: - pos: -2.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7504 components: - pos: -3.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7505 components: - pos: -1.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7506 components: - pos: 6.5,32.5 @@ -49088,8 +44723,6 @@ entities: - pos: 1.5,29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7515 components: - pos: 1.5,28.5 @@ -49105,8 +44738,6 @@ entities: - pos: 1.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7518 components: - pos: 2.5,27.5 @@ -49117,15 +44748,11 @@ entities: - pos: 3.5,27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7520 components: - pos: 3.5,28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7521 components: - pos: 0.5,27.5 @@ -49136,36 +44763,26 @@ entities: - pos: -0.5,27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7523 components: - pos: -0.5,28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7524 components: - pos: -3.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7525 components: - pos: -1.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7526 components: - pos: -7.5,35.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7527 components: - pos: -3.5,34.5 @@ -49186,8 +44803,6 @@ entities: - pos: -1.5,35.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7531 components: - pos: -11.5,36.5 @@ -49208,15 +44823,11 @@ entities: - pos: -8.5,36.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7693 components: - pos: 5.5,46.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7699 components: - pos: 28.5,37.5 @@ -49227,8 +44838,6 @@ entities: - pos: 25.5,37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7711 components: - pos: 26.5,37.5 @@ -49239,29 +44848,21 @@ entities: - pos: -8.5,27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7754 components: - pos: -11.5,27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7755 components: - pos: -5.5,28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7765 components: - pos: -5.5,27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7787 components: - pos: -12.5,7.5 @@ -49272,8 +44873,6 @@ entities: - pos: 9.5,49.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7856 components: - pos: 9.5,42.5 @@ -49299,15 +44898,11 @@ entities: - pos: 14.5,43.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7864 components: - pos: 13.5,46.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7867 components: - pos: 29.5,37.5 @@ -49363,8 +44958,6 @@ entities: - pos: 22.5,39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 7952 components: - pos: 27.5,37.5 @@ -49375,15 +44968,11 @@ entities: - pos: -33.5,42.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9536 components: - pos: -32.5,42.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9537 components: - pos: -31.5,42.5 @@ -49394,8 +44983,6 @@ entities: - pos: -31.5,41.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9631 components: - pos: -13.5,33.5 @@ -49411,64 +44998,46 @@ entities: - pos: -15.5,33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9634 components: - pos: -15.5,34.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9635 components: - pos: -15.5,35.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9636 components: - pos: -15.5,36.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9637 components: - pos: -15.5,37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9638 components: - pos: -15.5,38.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9639 components: - pos: -15.5,39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9640 components: - pos: -15.5,40.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9641 components: - pos: -14.5,40.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9797 components: - pos: -6.5,10.5 @@ -49539,15 +45108,11 @@ entities: - pos: 0.5,12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9897 components: - pos: 14.5,-3.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9945 components: - pos: 6.5,31.5 @@ -49588,15 +45153,11 @@ entities: - pos: 8.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9953 components: - pos: 9.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 9954 components: - pos: 10.5,26.5 @@ -49647,183 +45208,131 @@ entities: - pos: -14.5,37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10025 components: - pos: -31.5,28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10026 components: - pos: -31.5,27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10029 components: - pos: -31.5,29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10030 components: - pos: -31.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10031 components: - pos: -30.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10032 components: - pos: -29.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10033 components: - pos: -28.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10034 components: - pos: -27.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10035 components: - pos: -26.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10036 components: - pos: -26.5,29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10037 components: - pos: -21.5,25.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10038 components: - pos: -20.5,25.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10039 components: - pos: -21.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10040 components: - pos: -21.5,27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10041 components: - pos: -21.5,28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10042 components: - pos: -21.5,29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10043 components: - pos: -21.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10044 components: - pos: -21.5,31.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10045 components: - pos: -21.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10046 components: - pos: -21.5,33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10047 components: - pos: -20.5,33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10048 components: - pos: -19.5,33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10049 components: - pos: -18.5,33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10050 components: - pos: -17.5,33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10051 components: - pos: -16.5,33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10053 components: - pos: 6.5,23.5 @@ -49844,365 +45353,261 @@ entities: - pos: 6.5,22.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10082 components: - pos: 22.5,36.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10083 components: - pos: 22.5,35.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10084 components: - pos: 22.5,34.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10085 components: - pos: 22.5,33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10086 components: - pos: 22.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10087 components: - pos: 22.5,31.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10088 components: - pos: 22.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10089 components: - pos: 22.5,29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10090 components: - pos: 21.5,29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10091 components: - pos: 21.5,28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10092 components: - pos: 20.5,28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10093 components: - pos: 19.5,28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10094 components: - pos: 18.5,28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10095 components: - pos: 17.5,28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10096 components: - pos: 16.5,28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10097 components: - pos: 16.5,27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10098 components: - pos: 16.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10099 components: - pos: 16.5,25.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10100 components: - pos: 16.5,24.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10101 components: - pos: 16.5,23.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10102 components: - pos: 15.5,23.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10103 components: - pos: 14.5,23.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10104 components: - pos: 13.5,23.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10105 components: - pos: 13.5,22.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10544 components: - pos: -48.5,-56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10671 components: - pos: -31.5,40.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10672 components: - pos: -31.5,39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10673 components: - pos: -31.5,38.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10674 components: - pos: -31.5,37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10675 components: - pos: -31.5,36.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10676 components: - pos: -32.5,36.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10677 components: - pos: -32.5,35.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10678 components: - pos: -32.5,34.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10679 components: - pos: -32.5,33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10680 components: - pos: -32.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10681 components: - pos: -32.5,31.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10682 components: - pos: -33.5,31.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10683 components: - pos: -34.5,31.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10684 components: - pos: -34.5,32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11917 components: - pos: 37.5,-21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11918 components: - pos: 37.5,-22.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11919 components: - pos: 38.5,-22.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11920 components: - pos: 39.5,-22.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11921 components: - pos: 40.5,-22.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11922 components: - pos: 41.5,-22.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11923 components: - pos: 41.5,-21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11924 components: - pos: 42.5,-21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11925 components: - pos: 43.5,-21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11926 components: - pos: 44.5,-21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11927 components: - pos: 45.5,-21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11928 components: - pos: 45.5,-22.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11929 components: - pos: 45.5,-23.5 @@ -50213,57 +45618,41 @@ entities: - pos: 44.5,-23.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11931 components: - pos: 43.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11932 components: - pos: 43.5,-19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11933 components: - pos: 43.5,-18.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11934 components: - pos: 45.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11935 components: - pos: 46.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11936 components: - pos: 47.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11937 components: - pos: 48.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11938 components: - pos: 49.5,-20.5 @@ -50274,29 +45663,21 @@ entities: - pos: 50.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11940 components: - pos: 51.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11941 components: - pos: 52.5,-20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11942 components: - pos: 52.5,-19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11943 components: - pos: 52.5,-18.5 @@ -50347,50 +45728,36 @@ entities: - pos: 52.5,-9.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11966 components: - pos: 50.5,-19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11967 components: - pos: 50.5,-18.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12452 components: - pos: 60.5,7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12453 components: - pos: 59.5,7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12454 components: - pos: 58.5,7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12455 components: - pos: 58.5,6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12456 components: - pos: 58.5,5.5 @@ -50411,8 +45778,6 @@ entities: - pos: 58.5,2.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12460 components: - pos: 57.5,4.5 @@ -50458,8 +45823,6 @@ entities: - pos: 52.5,7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12537 components: - pos: 51.5,7.5 @@ -50495,8 +45858,6 @@ entities: - pos: 48.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13051 components: - pos: 30.5,37.5 @@ -50582,8 +45943,6 @@ entities: - pos: 34.5,47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13068 components: - pos: 34.5,48.5 @@ -50599,8 +45958,6 @@ entities: - pos: 35.5,49.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13071 components: - pos: 34.5,36.5 @@ -50691,8 +46048,6 @@ entities: - pos: 33.5,20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13089 components: - pos: 33.5,19.5 @@ -50773,15 +46128,11 @@ entities: - pos: 19.5,20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13105 components: - pos: 20.5,38.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13245 components: - pos: -49.5,-55.5 @@ -50792,8 +46143,6 @@ entities: - pos: 37.5,11.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13985 components: - pos: 58.5,34.5 @@ -50834,22 +46183,16 @@ entities: - pos: 53.5,36.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13993 components: - pos: 64.5,35.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13994 components: - pos: 63.5,35.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 13995 components: - pos: 62.5,35.5 @@ -50860,36 +46203,26 @@ entities: - pos: 62.5,34.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14014 components: - pos: 55.5,37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14015 components: - pos: 54.5,37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14016 components: - pos: 57.5,37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14017 components: - pos: 58.5,37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14155 components: - pos: -19.5,-30.5 @@ -51020,8 +46353,6 @@ entities: - pos: 40.5,0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 14573 components: - pos: -20.5,-26.5 @@ -51032,99 +46363,71 @@ entities: - pos: -24.5,-24.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15663 components: - pos: -10.5,-30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15706 components: - pos: -36.5,-43.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15707 components: - pos: -36.5,-42.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15708 components: - pos: -36.5,-41.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15709 components: - pos: -36.5,-40.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15710 components: - pos: -36.5,-39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15711 components: - pos: -35.5,-39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15712 components: - pos: -34.5,-39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15713 components: - pos: -33.5,-39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15714 components: - pos: -33.5,-40.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15715 components: - pos: -33.5,-41.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15716 components: - pos: -33.5,-42.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15717 components: - pos: -33.5,-43.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15718 components: - pos: -33.5,-44.5 @@ -51165,15 +46468,11 @@ entities: - pos: -37.5,-47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15727 components: - pos: -22.5,-54.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15728 components: - pos: -21.5,-54.5 @@ -51319,127 +46618,91 @@ entities: - pos: -22.5,-38.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15911 components: - pos: -31.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15912 components: - pos: -32.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15913 components: - pos: -33.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15914 components: - pos: -34.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15915 components: - pos: -35.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15916 components: - pos: -36.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15917 components: - pos: -37.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15918 components: - pos: -38.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15919 components: - pos: -39.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15920 components: - pos: -39.5,-35.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15921 components: - pos: -39.5,-34.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15922 components: - pos: -39.5,-33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15923 components: - pos: -39.5,-32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15924 components: - pos: -39.5,-31.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15925 components: - pos: -39.5,-30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15926 components: - pos: -39.5,-29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15927 components: - pos: -39.5,-28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15928 components: - pos: -38.5,-35.5 @@ -51550,8 +46813,6 @@ entities: - pos: -24.5,-28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15962 components: - pos: -13.5,-30.5 @@ -51567,71 +46828,51 @@ entities: - pos: -13.5,-32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15974 components: - pos: -9.5,-44.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15975 components: - pos: -8.5,-44.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15976 components: - pos: -8.5,-45.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15977 components: - pos: -8.5,-43.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15978 components: - pos: -8.5,-42.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15979 components: - pos: -8.5,-41.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15980 components: - pos: -8.5,-40.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15981 components: - pos: -8.5,-39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15982 components: - pos: -8.5,-38.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15983 components: - pos: -8.5,-37.5 @@ -51647,8 +46888,6 @@ entities: - pos: -7.5,-36.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 15987 components: - pos: -33.5,-33.5 @@ -51679,78 +46918,56 @@ entities: - pos: -34.5,-29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16214 components: - pos: -10.5,-44.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16215 components: - pos: -11.5,-44.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16381 components: - pos: -48.5,-55.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16518 components: - pos: -37.5,-39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16519 components: - pos: -38.5,-39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16520 components: - pos: -39.5,-39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16521 components: - pos: -39.5,-40.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16522 components: - pos: -39.5,-41.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16523 components: - pos: -39.5,-42.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16524 components: - pos: -39.5,-43.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16525 components: - pos: -39.5,-44.5 @@ -51781,8 +46998,6 @@ entities: - pos: -37.5,-47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16531 components: - pos: -40.5,-46.5 @@ -51848,8 +47063,6 @@ entities: - pos: -50.5,-44.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16544 components: - pos: -50.5,-47.5 @@ -51880,22 +47093,16 @@ entities: - pos: -55.5,-47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16550 components: - pos: -55.5,-46.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16551 components: - pos: -55.5,-48.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16552 components: - pos: -50.5,-48.5 @@ -51946,22 +47153,16 @@ entities: - pos: -50.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16562 components: - pos: -51.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16563 components: - pos: -49.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16564 components: - pos: -51.5,-54.5 @@ -51987,15 +47188,11 @@ entities: - pos: -55.5,-54.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16569 components: - pos: -55.5,-55.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16570 components: - pos: -51.5,-52.5 @@ -52021,15 +47218,11 @@ entities: - pos: -55.5,-52.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16575 components: - pos: -55.5,-51.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16576 components: - pos: -49.5,-53.5 @@ -52040,120 +47233,86 @@ entities: - pos: -44.5,-53.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16582 components: - pos: -44.5,-52.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16583 components: - pos: -44.5,-54.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16584 components: - pos: -44.5,-55.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16588 components: - pos: -46.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16589 components: - pos: -47.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16590 components: - pos: -45.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16591 components: - pos: -46.5,-47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16592 components: - pos: -47.5,-47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16593 components: - pos: -45.5,-47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16594 components: - pos: -45.5,-45.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16595 components: - pos: -46.5,-45.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16596 components: - pos: -47.5,-45.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17182 components: - pos: -36.5,-64.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17183 components: - pos: -36.5,-63.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17184 components: - pos: -36.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17185 components: - pos: -36.5,-61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17806 components: - pos: -45.5,-0.5 @@ -52259,8 +47418,6 @@ entities: - pos: -30.5,-5.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17827 components: - pos: -41.5,-1.5 @@ -52276,8 +47433,6 @@ entities: - pos: -41.5,-3.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 18425 components: - pos: -15.5,-30.5 @@ -52353,15 +47508,11 @@ entities: - pos: 37.5,11.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19140 components: - pos: 61.5,20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19141 components: - pos: 60.5,20.5 @@ -52377,78 +47528,56 @@ entities: - pos: 58.5,20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20196 components: - pos: 11.5,-61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20197 components: - pos: 10.5,-61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20198 components: - pos: 10.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20199 components: - pos: 10.5,-59.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20200 components: - pos: 10.5,-58.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20201 components: - pos: 10.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20202 components: - pos: 9.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20203 components: - pos: 8.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20204 components: - pos: 7.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20205 components: - pos: 6.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20206 components: - pos: 6.5,-56.5 @@ -52509,274 +47638,196 @@ entities: - pos: 8.5,-47.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20218 components: - pos: 27.5,-32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20219 components: - pos: 27.5,-33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20220 components: - pos: 28.5,-33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20221 components: - pos: 29.5,-33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20222 components: - pos: 30.5,-33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20223 components: - pos: 31.5,-33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20224 components: - pos: 31.5,-34.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20225 components: - pos: 31.5,-35.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20226 components: - pos: 31.5,-36.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20227 components: - pos: 31.5,-37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20228 components: - pos: 31.5,-38.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20229 components: - pos: 31.5,-39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20230 components: - pos: 32.5,-39.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20231 components: - pos: 32.5,-40.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20232 components: - pos: 30.5,-32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20233 components: - pos: 30.5,-31.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20234 components: - pos: 30.5,-30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20235 components: - pos: 30.5,-29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20236 components: - pos: 30.5,-28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20237 components: - pos: 30.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20238 components: - pos: 30.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20239 components: - pos: 29.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20240 components: - pos: 28.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20241 components: - pos: 27.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20242 components: - pos: 26.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20243 components: - pos: 25.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20244 components: - pos: 24.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20245 components: - pos: 23.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20246 components: - pos: 22.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20247 components: - pos: 21.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20248 components: - pos: 20.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20249 components: - pos: 19.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20250 components: - pos: 18.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20251 components: - pos: 17.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20252 components: - pos: 16.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20253 components: - pos: 15.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20254 components: - pos: 14.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20255 components: - pos: 14.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20256 components: - pos: 14.5,-28.5 @@ -52792,8 +47843,6 @@ entities: - pos: 13.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20259 components: - pos: 12.5,-28.5 @@ -52879,8 +47928,6 @@ entities: - pos: 5.5,-37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20276 components: - pos: 8.5,-46.5 @@ -52941,15 +47988,11 @@ entities: - pos: 13.5,-40.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20474 components: - pos: 18.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20580 components: - pos: 12.5,-34.5 @@ -52960,29 +48003,21 @@ entities: - pos: 13.5,-34.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 20899 components: - pos: 10.5,-56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21757 components: - pos: -19.5,-63.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21758 components: - pos: -19.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21759 components: - pos: -19.5,-61.5 @@ -52993,134 +48028,96 @@ entities: - pos: -20.5,-61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21761 components: - pos: -21.5,-61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21762 components: - pos: -22.5,-61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21763 components: - pos: -23.5,-61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21764 components: - pos: -24.5,-61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21765 components: - pos: -25.5,-61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21766 components: - pos: -26.5,-61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21767 components: - pos: -27.5,-61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21768 components: - pos: -28.5,-61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21769 components: - pos: -29.5,-61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21770 components: - pos: -30.5,-61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21771 components: - pos: -31.5,-61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21772 components: - pos: -32.5,-61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21773 components: - pos: -33.5,-61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21774 components: - pos: -33.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21775 components: - pos: -34.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21776 components: - pos: -35.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21777 components: - pos: -36.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21778 components: - pos: -0.5,-65.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21779 components: - pos: 0.5,-65.5 @@ -53141,162 +48138,116 @@ entities: - pos: 1.5,-63.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21783 components: - pos: 1.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21784 components: - pos: 2.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21785 components: - pos: 3.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21786 components: - pos: 4.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21787 components: - pos: 5.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21788 components: - pos: 6.5,-62.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21789 components: - pos: 6.5,-61.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21790 components: - pos: 6.5,-60.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21791 components: - pos: 6.5,-59.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 21792 components: - pos: 6.5,-58.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22433 components: - pos: 39.5,-58.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22434 components: - pos: 38.5,-58.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22435 components: - pos: 38.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22436 components: - pos: 38.5,-56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22437 components: - pos: 38.5,-55.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22438 components: - pos: 38.5,-54.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22439 components: - pos: 38.5,-53.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22440 components: - pos: 38.5,-52.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22441 components: - pos: 38.5,-51.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22442 components: - pos: 38.5,-50.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22443 components: - pos: 38.5,-49.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 22444 components: - pos: 38.5,-48.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23313 components: - pos: 50.5,10.5 @@ -53357,519 +48308,371 @@ entities: - pos: 47.5,18.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23614 components: - pos: 72.5,12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23615 components: - pos: 71.5,12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23616 components: - pos: 70.5,12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23617 components: - pos: 69.5,12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23618 components: - pos: 68.5,12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23619 components: - pos: 67.5,12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23620 components: - pos: 66.5,12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23621 components: - pos: 65.5,12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23622 components: - pos: 64.5,12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23623 components: - pos: 72.5,28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23624 components: - pos: 71.5,28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23625 components: - pos: 70.5,28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23626 components: - pos: 69.5,28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23627 components: - pos: 68.5,28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23628 components: - pos: 67.5,28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23629 components: - pos: 66.5,28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23630 components: - pos: 65.5,28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23631 components: - pos: 64.5,28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23741 components: - pos: 62.5,14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23742 components: - pos: 63.5,14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23743 components: - pos: 64.5,14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23744 components: - pos: 65.5,14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23745 components: - pos: 66.5,14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23746 components: - pos: 67.5,14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23747 components: - pos: 68.5,14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23748 components: - pos: 69.5,14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23749 components: - pos: 70.5,14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23750 components: - pos: 71.5,14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23751 components: - pos: 72.5,14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23752 components: - pos: 73.5,14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23753 components: - pos: 74.5,14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23754 components: - pos: 74.5,15.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23755 components: - pos: 74.5,16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23756 components: - pos: 74.5,17.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23757 components: - pos: 74.5,18.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23758 components: - pos: 74.5,19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23759 components: - pos: 74.5,20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23760 components: - pos: 74.5,21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23761 components: - pos: 74.5,22.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23762 components: - pos: 74.5,23.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23763 components: - pos: 74.5,24.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23764 components: - pos: 74.5,25.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23765 components: - pos: 74.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23766 components: - pos: 73.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23767 components: - pos: 72.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23768 components: - pos: 71.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23769 components: - pos: 70.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23770 components: - pos: 69.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23771 components: - pos: 68.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23772 components: - pos: 67.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23773 components: - pos: 66.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23774 components: - pos: 65.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23775 components: - pos: 64.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23776 components: - pos: 63.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23777 components: - pos: 62.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23778 components: - pos: 62.5,25.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23779 components: - pos: 62.5,24.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23780 components: - pos: 62.5,23.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23781 components: - pos: 62.5,22.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23782 components: - pos: 62.5,21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23783 components: - pos: 62.5,20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23784 components: - pos: 62.5,19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23785 components: - pos: 62.5,18.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23786 components: - pos: 62.5,17.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23787 components: - pos: 62.5,16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23788 components: - pos: 62.5,15.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23789 components: - pos: 61.5,16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23790 components: - pos: 61.5,24.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23791 components: - pos: 67.5,27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23792 components: - pos: 69.5,27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23793 components: - pos: 69.5,13.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23794 components: - pos: 67.5,13.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23795 components: - pos: 75.5,20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23897 components: - pos: 58.5,30.5 @@ -53890,57 +48693,41 @@ entities: - pos: 59.5,29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23901 components: - pos: 60.5,29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23902 components: - pos: 61.5,29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23903 components: - pos: 62.5,29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23904 components: - pos: 63.5,29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23905 components: - pos: 64.5,29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23906 components: - pos: 60.5,16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23907 components: - pos: 59.5,16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23908 components: - pos: 58.5,16.5 @@ -54001,330 +48788,236 @@ entities: - pos: 76.5,20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23980 components: - pos: 76.5,21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23981 components: - pos: 76.5,19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23982 components: - pos: 77.5,20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23983 components: - pos: 78.5,20.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23984 components: - pos: 78.5,19.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23985 components: - pos: 78.5,21.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23986 components: - pos: 78.5,22.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23987 components: - pos: 78.5,23.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23988 components: - pos: 78.5,24.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23989 components: - pos: 78.5,25.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23990 components: - pos: 78.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23991 components: - pos: 78.5,27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23992 components: - pos: 78.5,28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23993 components: - pos: 78.5,29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23994 components: - pos: 76.5,29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23995 components: - pos: 76.5,28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23996 components: - pos: 76.5,27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23997 components: - pos: 76.5,26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23998 components: - pos: 76.5,25.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 23999 components: - pos: 76.5,24.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 24000 components: - pos: 76.5,23.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 24001 components: - pos: 76.5,22.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 24002 components: - pos: 76.5,18.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 24003 components: - pos: 78.5,18.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 24004 components: - pos: 78.5,17.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 24005 components: - pos: 78.5,16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 24006 components: - pos: 78.5,15.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 24007 components: - pos: 78.5,14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 24008 components: - pos: 78.5,13.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 24009 components: - pos: 78.5,12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 24010 components: - pos: 78.5,11.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 24011 components: - pos: 76.5,11.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 24012 components: - pos: 76.5,12.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 24013 components: - pos: 76.5,13.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 24014 components: - pos: 76.5,14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 24015 components: - pos: 76.5,15.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 24016 components: - pos: 76.5,16.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 24017 components: - pos: 76.5,17.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 24018 components: - pos: 72.5,11.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 24022 components: - pos: 72.5,29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 24023 components: - pos: 72.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 24024 components: - pos: 73.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 24025 components: - pos: 74.5,30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 24604 components: - pos: -48.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 24605 components: - pos: -44.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 24606 components: - pos: -44.5,-56.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 24725 components: - pos: -26.5,8.5 @@ -54350,8 +49043,6 @@ entities: - pos: -29.5,7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 24730 components: - pos: -30.5,7.5 @@ -54372,8 +49063,6 @@ entities: - pos: -32.5,8.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 24734 components: - pos: -25.5,8.5 @@ -54389,15 +49078,11 @@ entities: - pos: -25.5,10.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 25953 components: - pos: 108.5,2.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 25954 components: - pos: 108.5,1.5 @@ -54418,8 +49103,6 @@ entities: - pos: 108.5,-1.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 25958 components: - pos: 107.5,0.5 @@ -54470,8 +49153,6 @@ entities: - pos: 100.5,-1.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 25968 components: - pos: 103.5,1.5 @@ -54487,8 +49168,6 @@ entities: - pos: 103.5,3.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 25971 components: - pos: 104.5,3.5 @@ -54519,8 +49198,6 @@ entities: - pos: 105.5,7.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 25977 components: - pos: 103.5,-0.5 @@ -54531,8 +49208,6 @@ entities: - pos: 103.5,-1.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 25979 components: - pos: 103.5,-2.5 @@ -54578,15 +49253,11 @@ entities: - pos: 107.5,-6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 26136 components: - pos: 92.5,-1.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 26137 components: - pos: 92.5,-0.5 @@ -54687,8 +49358,6 @@ entities: - pos: 8.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - proto: CableMVStack entities: - uid: 1548 @@ -68568,20 +63237,17 @@ entities: entities: - uid: 10371 components: - - anchored: False - pos: -8.5,42.5 + - pos: -8.5,42.5 parent: 5350 type: Transform - uid: 10372 components: - - anchored: False - pos: -7.5,42.5 + - pos: -7.5,42.5 parent: 5350 type: Transform - uid: 10373 components: - - anchored: False - pos: -6.5,42.5 + - pos: -6.5,42.5 parent: 5350 type: Transform - proto: DeskBell @@ -75149,8 +69815,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 5843 components: @@ -75159,8 +69823,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 5844 components: @@ -75170,8 +69832,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 5845 components: @@ -75180,8 +69840,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 5846 components: @@ -75190,8 +69848,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 5865 components: @@ -75201,8 +69857,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 7246 components: @@ -75211,8 +69865,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14089 components: @@ -75221,8 +69873,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14090 components: @@ -75231,8 +69881,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14091 components: @@ -75241,8 +69889,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 14092 components: @@ -75252,8 +69898,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 24206 components: @@ -75263,8 +69907,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 24257 components: @@ -75273,8 +69915,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 24258 components: @@ -75284,8 +69924,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 24259 components: @@ -75294,8 +69932,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 24260 components: @@ -75305,8 +69941,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 24261 components: @@ -75315,8 +69949,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 24262 components: @@ -75326,8 +69958,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 24263 components: @@ -75336,8 +69966,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 24264 components: @@ -75347,8 +69975,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 24265 components: @@ -75357,8 +69983,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 24266 components: @@ -75368,8 +69992,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 24267 components: @@ -75379,8 +70001,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 24268 components: @@ -75390,8 +70010,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 24269 components: @@ -75400,8 +70018,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 24270 components: @@ -75411,8 +70027,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 24272 components: @@ -75421,8 +70035,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 24275 components: @@ -75432,8 +70044,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 24276 components: @@ -75443,8 +70053,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 24277 components: @@ -75454,8 +70062,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 24278 components: @@ -75465,8 +70071,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 24279 components: @@ -75475,8 +70079,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 24280 components: @@ -75485,8 +70087,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 24281 components: @@ -75496,8 +70096,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 24282 components: @@ -75507,8 +70105,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 24283 components: @@ -75518,8 +70114,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 24284 components: @@ -75529,8 +70123,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 24285 components: @@ -75540,8 +70132,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 24286 components: @@ -75550,8 +70140,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 24287 components: @@ -75561,8 +70149,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - proto: EmergencyMedipen entities: @@ -79459,8 +74045,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 607 components: - pos: 4.5,1.5 @@ -79506,8 +74090,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 773 components: - rot: -1.5707963267948966 rad @@ -79516,8 +74098,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 802 components: - pos: 10.5,4.5 @@ -79604,8 +74184,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2315 components: - rot: -1.5707963267948966 rad @@ -79614,8 +74192,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2561 components: - rot: -1.5707963267948966 rad @@ -80183,8 +74759,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8812 components: - rot: 1.5707963267948966 rad @@ -80193,8 +74767,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8814 components: - rot: 3.141592653589793 rad @@ -80211,8 +74783,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9333 components: - rot: 1.5707963267948966 rad @@ -80221,8 +74791,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9334 components: - pos: -21.5,30.5 @@ -80230,8 +74798,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9346 components: - pos: -31.5,30.5 @@ -80239,8 +74805,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9474 components: - rot: 3.141592653589793 rad @@ -80249,8 +74813,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9726 components: - rot: 3.141592653589793 rad @@ -80284,8 +74846,6 @@ entities: - pos: -35.5,34.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 10956 components: - rot: -1.5707963267948966 rad @@ -80302,8 +74862,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10965 components: - rot: 1.5707963267948966 rad @@ -80312,8 +74870,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11002 components: - rot: 3.141592653589793 rad @@ -80322,8 +74878,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11004 components: - rot: -1.5707963267948966 rad @@ -80332,8 +74886,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11071 components: - rot: -1.5707963267948966 rad @@ -80342,8 +74894,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11073 components: - rot: 1.5707963267948966 rad @@ -80352,8 +74902,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11118 components: - rot: 1.5707963267948966 rad @@ -80362,8 +74910,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11122 components: - rot: -1.5707963267948966 rad @@ -80395,8 +74941,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11140 components: - rot: 1.5707963267948966 rad @@ -80405,8 +74949,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11141 components: - rot: -1.5707963267948966 rad @@ -80415,8 +74957,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11142 components: - rot: 1.5707963267948966 rad @@ -80425,8 +74965,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11224 components: - rot: -1.5707963267948966 rad @@ -80435,8 +74973,6 @@ entities: type: Transform - color: '#000000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11415 components: - rot: 1.5707963267948966 rad @@ -80445,8 +74981,6 @@ entities: type: Transform - color: '#000000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11416 components: - rot: 3.141592653589793 rad @@ -80468,15 +75002,11 @@ entities: pos: 44.5,-28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11441 components: - pos: 45.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11442 components: - rot: 1.5707963267948966 rad @@ -80489,8 +75019,6 @@ entities: pos: 43.5,-34.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11861 components: - pos: 43.5,-5.5 @@ -80498,8 +75026,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11862 components: - rot: 3.141592653589793 rad @@ -80508,8 +75034,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11863 components: - rot: 3.141592653589793 rad @@ -80518,8 +75042,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12115 components: - rot: 3.141592653589793 rad @@ -80754,8 +75276,6 @@ entities: pos: -50.5,-37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17253 components: - pos: -41.5,-4.5 @@ -80763,8 +75283,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17346 components: - rot: 3.141592653589793 rad @@ -80773,8 +75291,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17664 components: - rot: 3.141592653589793 rad @@ -80799,8 +75315,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18360 components: - rot: 1.5707963267948966 rad @@ -80809,8 +75323,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18477 components: - rot: 1.5707963267948966 rad @@ -80819,8 +75331,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18478 components: - rot: -1.5707963267948966 rad @@ -80829,8 +75339,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18479 components: - pos: -47.5,-21.5 @@ -80838,8 +75346,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18480 components: - rot: 3.141592653589793 rad @@ -80848,8 +75354,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18481 components: - pos: -46.5,-21.5 @@ -80857,8 +75361,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18492 components: - rot: 3.141592653589793 rad @@ -80867,8 +75369,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18493 components: - pos: -54.5,-11.5 @@ -80876,8 +75376,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18494 components: - rot: 1.5707963267948966 rad @@ -80886,8 +75384,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18504 components: - pos: -56.5,-12.5 @@ -80895,8 +75391,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18505 components: - rot: 3.141592653589793 rad @@ -80905,8 +75399,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18509 components: - rot: -1.5707963267948966 rad @@ -80915,8 +75407,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18968 components: - rot: 1.5707963267948966 rad @@ -80925,8 +75415,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18969 components: - rot: -1.5707963267948966 rad @@ -80935,8 +75423,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18970 components: - rot: 1.5707963267948966 rad @@ -80945,8 +75431,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18997 components: - rot: 1.5707963267948966 rad @@ -80963,8 +75447,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19034 components: - rot: -1.5707963267948966 rad @@ -80973,8 +75455,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19035 components: - rot: 1.5707963267948966 rad @@ -80983,8 +75463,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19047 components: - rot: -1.5707963267948966 rad @@ -80993,8 +75471,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19340 components: - rot: -1.5707963267948966 rad @@ -81077,8 +75553,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21069 components: - rot: 1.5707963267948966 rad @@ -81087,8 +75561,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21070 components: - rot: -1.5707963267948966 rad @@ -81097,8 +75569,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21072 components: - rot: 1.5707963267948966 rad @@ -81123,8 +75593,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21104 components: - rot: -1.5707963267948966 rad @@ -81133,8 +75601,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21105 components: - pos: 31.5,-26.5 @@ -81142,8 +75608,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21106 components: - rot: 3.141592653589793 rad @@ -81152,8 +75616,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21507 components: - rot: 3.141592653589793 rad @@ -81185,8 +75647,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21552 components: - rot: 1.5707963267948966 rad @@ -81195,8 +75655,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21566 components: - rot: 1.5707963267948966 rad @@ -81399,16 +75857,12 @@ entities: - pos: 108.5,-3.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 25945 components: - rot: 3.141592653589793 rad pos: 108.5,-4.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - proto: GasPipeFourway entities: - uid: 260 @@ -84302,8 +78756,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 754 components: - rot: 3.141592653589793 rad @@ -84320,8 +78772,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 758 components: - rot: 1.5707963267948966 rad @@ -84337,8 +78787,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 760 components: - pos: -12.5,3.5 @@ -84346,8 +78794,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 761 components: - pos: -12.5,4.5 @@ -84355,8 +78801,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 763 components: - pos: -12.5,6.5 @@ -84364,8 +78808,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 764 components: - pos: -12.5,7.5 @@ -84466,8 +78908,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 785 components: - rot: -1.5707963267948966 rad @@ -84559,8 +78999,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 800 components: - pos: 11.5,2.5 @@ -84751,8 +79189,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 835 components: - rot: -1.5707963267948966 rad @@ -84830,8 +79266,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1580 components: - rot: 3.141592653589793 rad @@ -84854,8 +79288,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1585 components: - rot: 3.141592653589793 rad @@ -84912,8 +79344,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1593 components: - rot: 3.141592653589793 rad @@ -84978,8 +79408,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1601 components: - rot: 3.141592653589793 rad @@ -85028,8 +79456,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1677 components: - rot: 3.141592653589793 rad @@ -85038,8 +79464,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1679 components: - rot: 3.141592653589793 rad @@ -85048,8 +79472,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1680 components: - rot: 3.141592653589793 rad @@ -85058,8 +79480,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1681 components: - rot: 3.141592653589793 rad @@ -85068,8 +79488,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1682 components: - rot: 3.141592653589793 rad @@ -85078,8 +79496,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1683 components: - rot: 3.141592653589793 rad @@ -85096,8 +79512,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2299 components: - rot: 3.141592653589793 rad @@ -85106,8 +79520,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2361 components: - rot: 3.141592653589793 rad @@ -85116,8 +79528,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2362 components: - rot: 3.141592653589793 rad @@ -85142,8 +79552,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2489 components: - rot: 1.5707963267948966 rad @@ -85745,8 +80153,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2595 components: - pos: 28.5,-13.5 @@ -85866,8 +80272,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2613 components: - rot: 1.5707963267948966 rad @@ -85908,8 +80312,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2623 components: - rot: -1.5707963267948966 rad @@ -86174,8 +80576,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2689 components: - pos: 40.5,-18.5 @@ -86183,8 +80583,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2690 components: - pos: 40.5,-17.5 @@ -86192,8 +80590,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2691 components: - pos: 40.5,-16.5 @@ -86201,8 +80597,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2692 components: - rot: -1.5707963267948966 rad @@ -86227,8 +80621,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2695 components: - rot: 3.141592653589793 rad @@ -86301,8 +80693,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3053 components: - pos: 33.5,-24.5 @@ -86317,8 +80707,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3060 components: - rot: 1.5707963267948966 rad @@ -86327,8 +80715,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3062 components: - rot: 1.5707963267948966 rad @@ -86337,8 +80723,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3483 components: - pos: -42.5,30.5 @@ -86346,8 +80730,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3825 components: - rot: 3.141592653589793 rad @@ -87096,8 +81478,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4128 components: - rot: -1.5707963267948966 rad @@ -88417,8 +82797,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4364 components: - rot: -1.5707963267948966 rad @@ -88491,8 +82869,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4375 components: - rot: 1.5707963267948966 rad @@ -88565,8 +82941,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4385 components: - rot: 3.141592653589793 rad @@ -88583,8 +82957,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4389 components: - rot: 1.5707963267948966 rad @@ -88656,8 +83028,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4430 components: - rot: -1.5707963267948966 rad @@ -88666,8 +83036,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4431 components: - rot: -1.5707963267948966 rad @@ -88676,8 +83044,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4432 components: - rot: -1.5707963267948966 rad @@ -88686,8 +83052,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4433 components: - rot: -1.5707963267948966 rad @@ -88696,8 +83060,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4434 components: - rot: -1.5707963267948966 rad @@ -88706,8 +83068,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4435 components: - rot: -1.5707963267948966 rad @@ -88716,8 +83076,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4436 components: - rot: -1.5707963267948966 rad @@ -88726,8 +83084,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4437 components: - rot: -1.5707963267948966 rad @@ -89502,8 +83858,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5549 components: - rot: 3.141592653589793 rad @@ -89520,8 +83874,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5551 components: - rot: 3.141592653589793 rad @@ -89538,8 +83890,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5553 components: - rot: 3.141592653589793 rad @@ -89556,8 +83906,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5555 components: - rot: 1.5707963267948966 rad @@ -89582,8 +83930,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5743 components: - pos: -18.5,-22.5 @@ -89796,8 +84142,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6519 components: - rot: 1.5707963267948966 rad @@ -89838,8 +84182,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6524 components: - rot: -1.5707963267948966 rad @@ -89920,8 +84262,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6561 components: - rot: 3.141592653589793 rad @@ -89938,8 +84278,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6601 components: - rot: -1.5707963267948966 rad @@ -90019,8 +84357,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6653 components: - rot: 3.141592653589793 rad @@ -90045,8 +84381,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6686 components: - rot: -1.5707963267948966 rad @@ -90071,8 +84405,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6693 components: - rot: 3.141592653589793 rad @@ -90081,8 +84413,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6699 components: - pos: -10.5,40.5 @@ -90152,8 +84482,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6740 components: - pos: -3.5,27.5 @@ -90189,8 +84517,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6746 components: - pos: -1.5,24.5 @@ -90212,8 +84538,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6749 components: - pos: -1.5,27.5 @@ -90249,8 +84573,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6755 components: - pos: 0.5,24.5 @@ -90453,8 +84775,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6791 components: - pos: 0.5,36.5 @@ -90469,8 +84789,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6793 components: - pos: 2.5,36.5 @@ -90492,8 +84810,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6796 components: - pos: -1.5,36.5 @@ -90508,8 +84824,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6798 components: - pos: -3.5,36.5 @@ -90641,8 +84955,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6824 components: - rot: 3.141592653589793 rad @@ -90667,8 +84979,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6827 components: - rot: 3.141592653589793 rad @@ -90693,8 +85003,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6833 components: - rot: -1.5707963267948966 rad @@ -90983,8 +85291,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6881 components: - rot: 1.5707963267948966 rad @@ -91033,8 +85339,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6889 components: - rot: 1.5707963267948966 rad @@ -91050,8 +85354,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6891 components: - pos: 12.5,28.5 @@ -91101,8 +85403,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6899 components: - pos: 7.5,28.5 @@ -91199,8 +85499,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6914 components: - rot: 3.141592653589793 rad @@ -91233,8 +85531,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6918 components: - rot: 3.141592653589793 rad @@ -91407,8 +85703,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6945 components: - rot: 3.141592653589793 rad @@ -91838,8 +86132,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7036 components: - rot: 3.141592653589793 rad @@ -91856,8 +86148,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7038 components: - rot: 3.141592653589793 rad @@ -91930,8 +86220,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7051 components: - rot: 1.5707963267948966 rad @@ -91980,8 +86268,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7057 components: - rot: 1.5707963267948966 rad @@ -92093,8 +86379,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7153 components: - rot: 3.141592653589793 rad @@ -92174,8 +86458,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7305 components: - rot: 3.141592653589793 rad @@ -92263,8 +86545,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7360 components: - rot: 3.141592653589793 rad @@ -92289,8 +86569,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7384 components: - rot: 3.141592653589793 rad @@ -92339,8 +86617,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7738 components: - rot: 3.141592653589793 rad @@ -92388,8 +86664,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7822 components: - rot: -1.5707963267948966 rad @@ -92406,8 +86680,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7834 components: - rot: 3.141592653589793 rad @@ -92448,8 +86720,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7846 components: - rot: 3.141592653589793 rad @@ -92458,8 +86728,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7848 components: - rot: -1.5707963267948966 rad @@ -93310,8 +87578,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8818 components: - pos: 16.5,22.5 @@ -93319,8 +87585,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8819 components: - pos: 16.5,23.5 @@ -93328,8 +87592,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8820 components: - pos: 16.5,24.5 @@ -93337,8 +87599,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8821 components: - pos: 16.5,25.5 @@ -93346,8 +87606,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8822 components: - pos: 16.5,26.5 @@ -93355,8 +87613,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8823 components: - pos: 16.5,27.5 @@ -93364,8 +87620,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8824 components: - rot: -1.5707963267948966 rad @@ -93374,8 +87628,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8825 components: - rot: -1.5707963267948966 rad @@ -93384,8 +87636,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8826 components: - rot: -1.5707963267948966 rad @@ -93394,8 +87644,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8827 components: - rot: -1.5707963267948966 rad @@ -93404,8 +87652,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8828 components: - rot: 3.141592653589793 rad @@ -93414,8 +87660,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8829 components: - rot: 3.141592653589793 rad @@ -93424,8 +87668,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8830 components: - rot: 3.141592653589793 rad @@ -93434,8 +87676,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8831 components: - rot: 3.141592653589793 rad @@ -93444,8 +87684,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8832 components: - rot: 3.141592653589793 rad @@ -93454,8 +87692,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8833 components: - rot: 3.141592653589793 rad @@ -93464,8 +87700,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8834 components: - rot: 3.141592653589793 rad @@ -93474,8 +87708,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8835 components: - rot: 1.5707963267948966 rad @@ -93500,8 +87732,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8838 components: - rot: 1.5707963267948966 rad @@ -93518,8 +87748,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8840 components: - rot: -1.5707963267948966 rad @@ -93536,8 +87764,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8842 components: - rot: -1.5707963267948966 rad @@ -93546,8 +87772,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8843 components: - rot: -1.5707963267948966 rad @@ -93556,8 +87780,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8844 components: - rot: -1.5707963267948966 rad @@ -93566,8 +87788,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8845 components: - rot: -1.5707963267948966 rad @@ -93576,8 +87796,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8846 components: - rot: -1.5707963267948966 rad @@ -93586,8 +87804,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8987 components: - pos: 46.5,1.5 @@ -93639,8 +87855,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9001 components: - pos: 46.5,-5.5 @@ -93744,8 +87958,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9017 components: - rot: 1.5707963267948966 rad @@ -93770,8 +87982,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9020 components: - rot: 1.5707963267948966 rad @@ -93801,8 +88011,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9224 components: - pos: -16.5,26.5 @@ -93890,8 +88098,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9326 components: - rot: 3.141592653589793 rad @@ -93900,8 +88106,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9327 components: - rot: 3.141592653589793 rad @@ -93910,8 +88114,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9328 components: - rot: 3.141592653589793 rad @@ -93920,8 +88122,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9329 components: - rot: 3.141592653589793 rad @@ -93930,8 +88130,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9330 components: - rot: 1.5707963267948966 rad @@ -93940,8 +88138,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9331 components: - rot: 1.5707963267948966 rad @@ -93950,8 +88146,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9332 components: - pos: -24.5,29.5 @@ -93991,8 +88185,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9342 components: - rot: 3.141592653589793 rad @@ -94001,8 +88193,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9343 components: - rot: 3.141592653589793 rad @@ -94011,8 +88201,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9344 components: - rot: 3.141592653589793 rad @@ -94021,8 +88209,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9345 components: - rot: 3.141592653589793 rad @@ -94031,8 +88217,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9404 components: - rot: 3.141592653589793 rad @@ -94089,8 +88273,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9476 components: - rot: 1.5707963267948966 rad @@ -94099,8 +88281,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9477 components: - rot: 1.5707963267948966 rad @@ -94109,8 +88289,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9479 components: - rot: 1.5707963267948966 rad @@ -94119,8 +88297,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9480 components: - rot: 1.5707963267948966 rad @@ -94129,8 +88305,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9481 components: - rot: 1.5707963267948966 rad @@ -94139,8 +88313,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9482 components: - pos: -39.5,31.5 @@ -94148,8 +88320,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9483 components: - pos: -39.5,32.5 @@ -94157,8 +88327,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9484 components: - pos: -39.5,33.5 @@ -94166,8 +88334,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9485 components: - pos: -39.5,34.5 @@ -94175,8 +88341,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9486 components: - pos: -39.5,35.5 @@ -94184,8 +88348,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9487 components: - pos: -39.5,36.5 @@ -94193,8 +88355,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9488 components: - pos: -39.5,37.5 @@ -94202,8 +88362,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9489 components: - pos: -39.5,38.5 @@ -94211,8 +88369,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9490 components: - pos: -39.5,39.5 @@ -94220,8 +88376,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9712 components: - rot: 3.141592653589793 rad @@ -94400,8 +88554,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10659 components: - rot: 3.141592653589793 rad @@ -94410,8 +88562,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10776 components: - rot: 3.141592653589793 rad @@ -94420,8 +88570,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10777 components: - rot: 3.141592653589793 rad @@ -94438,8 +88586,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10779 components: - rot: 3.141592653589793 rad @@ -94480,8 +88626,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10784 components: - rot: 3.141592653589793 rad @@ -94498,8 +88642,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10786 components: - rot: 3.141592653589793 rad @@ -94595,8 +88737,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10974 components: - rot: -1.5707963267948966 rad @@ -94605,8 +88745,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10975 components: - rot: 3.141592653589793 rad @@ -94615,8 +88753,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10980 components: - pos: 50.5,-25.5 @@ -94624,8 +88760,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11003 components: - rot: 1.5707963267948966 rad @@ -94634,8 +88768,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11016 components: - pos: 51.5,-27.5 @@ -94643,8 +88775,6 @@ entities: type: Transform - color: '#27E312FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11017 components: - pos: 51.5,-26.5 @@ -94652,8 +88782,6 @@ entities: type: Transform - color: '#27E312FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11018 components: - pos: 51.5,-25.5 @@ -94661,8 +88789,6 @@ entities: type: Transform - color: '#27E312FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11020 components: - pos: 55.5,-27.5 @@ -94670,8 +88796,6 @@ entities: type: Transform - color: '#27E312FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11021 components: - pos: 55.5,-26.5 @@ -94679,8 +88803,6 @@ entities: type: Transform - color: '#27E312FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11022 components: - pos: 55.5,-25.5 @@ -94688,8 +88810,6 @@ entities: type: Transform - color: '#27E312FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11040 components: - rot: 1.5707963267948966 rad @@ -94698,8 +88818,6 @@ entities: type: Transform - color: '#27E312FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11041 components: - rot: 1.5707963267948966 rad @@ -94708,8 +88826,6 @@ entities: type: Transform - color: '#27E312FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11042 components: - rot: 1.5707963267948966 rad @@ -94718,8 +88834,6 @@ entities: type: Transform - color: '#27E312FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11044 components: - rot: 1.5707963267948966 rad @@ -94728,8 +88842,6 @@ entities: type: Transform - color: '#27E312FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11045 components: - rot: 1.5707963267948966 rad @@ -94738,8 +88850,6 @@ entities: type: Transform - color: '#27E312FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11046 components: - rot: 1.5707963267948966 rad @@ -94748,8 +88858,6 @@ entities: type: Transform - color: '#27E312FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11054 components: - rot: -1.5707963267948966 rad @@ -94758,8 +88866,6 @@ entities: type: Transform - color: '#27E312FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11055 components: - rot: -1.5707963267948966 rad @@ -94768,8 +88874,6 @@ entities: type: Transform - color: '#27E312FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11056 components: - rot: -1.5707963267948966 rad @@ -94778,8 +88882,6 @@ entities: type: Transform - color: '#27E312FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11058 components: - rot: 3.141592653589793 rad @@ -94788,8 +88890,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11059 components: - rot: 3.141592653589793 rad @@ -94798,8 +88898,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11060 components: - rot: 3.141592653589793 rad @@ -94808,8 +88906,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11061 components: - rot: 3.141592653589793 rad @@ -94818,8 +88914,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11062 components: - rot: 3.141592653589793 rad @@ -94828,8 +88922,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11063 components: - rot: 3.141592653589793 rad @@ -94838,8 +88930,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11064 components: - rot: 3.141592653589793 rad @@ -94848,8 +88938,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11065 components: - rot: 3.141592653589793 rad @@ -94858,8 +88946,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11066 components: - rot: 3.141592653589793 rad @@ -94868,8 +88954,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11076 components: - rot: -1.5707963267948966 rad @@ -94878,8 +88962,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11077 components: - rot: -1.5707963267948966 rad @@ -94888,8 +88970,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11078 components: - rot: -1.5707963267948966 rad @@ -94898,8 +88978,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11079 components: - rot: -1.5707963267948966 rad @@ -94908,8 +88986,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11080 components: - rot: -1.5707963267948966 rad @@ -94918,8 +88994,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11081 components: - rot: -1.5707963267948966 rad @@ -94928,8 +89002,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11082 components: - rot: -1.5707963267948966 rad @@ -94938,8 +89010,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11084 components: - rot: -1.5707963267948966 rad @@ -94948,8 +89018,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11085 components: - rot: 3.141592653589793 rad @@ -94958,8 +89026,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11086 components: - rot: 3.141592653589793 rad @@ -94968,8 +89034,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11088 components: - rot: 3.141592653589793 rad @@ -94978,8 +89042,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11089 components: - rot: 3.141592653589793 rad @@ -94988,8 +89050,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11090 components: - rot: 3.141592653589793 rad @@ -94998,16 +89058,12 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11092 components: - rot: 3.141592653589793 rad pos: 57.5,-22.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11093 components: - pos: 61.5,-27.5 @@ -95015,8 +89071,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11094 components: - pos: 61.5,-26.5 @@ -95024,8 +89078,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11095 components: - pos: 61.5,-25.5 @@ -95033,8 +89085,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11098 components: - rot: 1.5707963267948966 rad @@ -95043,8 +89093,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11099 components: - pos: 63.5,-23.5 @@ -95052,8 +89100,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11100 components: - pos: 63.5,-22.5 @@ -95061,8 +89107,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11101 components: - pos: 63.5,-21.5 @@ -95070,8 +89114,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11102 components: - pos: 63.5,-20.5 @@ -95079,8 +89121,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11103 components: - pos: 63.5,-19.5 @@ -95088,8 +89128,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11104 components: - pos: 63.5,-18.5 @@ -95097,8 +89135,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11105 components: - pos: 63.5,-17.5 @@ -95106,8 +89142,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11106 components: - pos: 63.5,-16.5 @@ -95115,8 +89149,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11107 components: - pos: 63.5,-15.5 @@ -95124,8 +89156,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11108 components: - pos: 63.5,-14.5 @@ -95133,8 +89163,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11109 components: - pos: 63.5,-13.5 @@ -95142,8 +89170,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11110 components: - pos: 63.5,-12.5 @@ -95151,8 +89177,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11111 components: - pos: 63.5,-11.5 @@ -95160,8 +89184,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11112 components: - pos: 63.5,-10.5 @@ -95169,8 +89191,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11113 components: - rot: -1.5707963267948966 rad @@ -95179,8 +89199,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11114 components: - rot: -1.5707963267948966 rad @@ -95189,8 +89207,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11115 components: - rot: -1.5707963267948966 rad @@ -95199,8 +89215,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11116 components: - rot: -1.5707963267948966 rad @@ -95209,8 +89223,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11117 components: - rot: -1.5707963267948966 rad @@ -95219,8 +89231,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11125 components: - rot: -1.5707963267948966 rad @@ -95253,8 +89263,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11132 components: - rot: 3.141592653589793 rad @@ -95263,8 +89271,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11133 components: - rot: 3.141592653589793 rad @@ -95273,8 +89279,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11144 components: - rot: 1.5707963267948966 rad @@ -95339,8 +89343,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11152 components: - rot: 1.5707963267948966 rad @@ -95349,8 +89351,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11158 components: - rot: 1.5707963267948966 rad @@ -95359,8 +89359,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11159 components: - rot: 1.5707963267948966 rad @@ -95369,8 +89367,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11160 components: - pos: 61.5,-21.5 @@ -95378,8 +89374,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11161 components: - rot: -1.5707963267948966 rad @@ -95388,8 +89382,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11162 components: - rot: -1.5707963267948966 rad @@ -95398,8 +89390,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11163 components: - rot: -1.5707963267948966 rad @@ -95408,8 +89398,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11166 components: - rot: -1.5707963267948966 rad @@ -95418,8 +89406,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11167 components: - rot: -1.5707963267948966 rad @@ -95428,8 +89414,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11168 components: - rot: -1.5707963267948966 rad @@ -95438,8 +89422,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11171 components: - rot: -1.5707963267948966 rad @@ -95448,8 +89430,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11172 components: - rot: -1.5707963267948966 rad @@ -95458,8 +89438,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11173 components: - rot: -1.5707963267948966 rad @@ -95468,8 +89446,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11200 components: - rot: 1.5707963267948966 rad @@ -95478,8 +89454,6 @@ entities: type: Transform - color: '#27E312FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11201 components: - rot: 1.5707963267948966 rad @@ -95488,8 +89462,6 @@ entities: type: Transform - color: '#27E312FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11202 components: - rot: 1.5707963267948966 rad @@ -95498,8 +89470,6 @@ entities: type: Transform - color: '#27E312FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11204 components: - rot: 1.5707963267948966 rad @@ -95508,8 +89478,6 @@ entities: type: Transform - color: '#B342F5FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11205 components: - rot: 1.5707963267948966 rad @@ -95518,8 +89486,6 @@ entities: type: Transform - color: '#B342F5FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11206 components: - rot: 1.5707963267948966 rad @@ -95528,8 +89494,6 @@ entities: type: Transform - color: '#B342F5FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11232 components: - rot: 1.5707963267948966 rad @@ -95538,8 +89502,6 @@ entities: type: Transform - color: '#000000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11233 components: - rot: 1.5707963267948966 rad @@ -95548,8 +89510,6 @@ entities: type: Transform - color: '#000000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11234 components: - rot: 1.5707963267948966 rad @@ -95558,8 +89518,6 @@ entities: type: Transform - color: '#000000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11235 components: - rot: 1.5707963267948966 rad @@ -95576,8 +89534,6 @@ entities: type: Transform - color: '#000000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11237 components: - rot: 1.5707963267948966 rad @@ -95586,8 +89542,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11238 components: - rot: 1.5707963267948966 rad @@ -95596,8 +89550,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11239 components: - rot: 1.5707963267948966 rad @@ -95606,8 +89558,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11240 components: - rot: 1.5707963267948966 rad @@ -95616,8 +89566,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11241 components: - rot: 1.5707963267948966 rad @@ -95626,24 +89574,18 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11247 components: - rot: 3.141592653589793 rad pos: 68.5,-29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11248 components: - rot: 3.141592653589793 rad pos: 70.5,-29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11418 components: - rot: -1.5707963267948966 rad @@ -95668,8 +89610,6 @@ entities: type: Transform - color: '#000000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11421 components: - rot: 3.141592653589793 rad @@ -95678,8 +89618,6 @@ entities: type: Transform - color: '#000000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11422 components: - rot: 1.5707963267948966 rad @@ -95688,8 +89626,6 @@ entities: type: Transform - color: '#000000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11423 components: - rot: 1.5707963267948966 rad @@ -95698,115 +89634,85 @@ entities: type: Transform - color: '#000000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11424 components: - pos: 47.5,-29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11425 components: - pos: 47.5,-28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11426 components: - pos: 47.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11427 components: - pos: 47.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11429 components: - pos: 47.5,-31.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11433 components: - rot: 3.141592653589793 rad pos: 45.5,-31.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11434 components: - rot: 3.141592653589793 rad pos: 45.5,-29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11444 components: - rot: 3.141592653589793 rad pos: 43.5,-33.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11445 components: - rot: 3.141592653589793 rad pos: 43.5,-32.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11446 components: - rot: 3.141592653589793 rad pos: 43.5,-31.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11447 components: - rot: 3.141592653589793 rad pos: 43.5,-30.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11448 components: - rot: 3.141592653589793 rad pos: 43.5,-29.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11450 components: - rot: 3.141592653589793 rad pos: 44.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11451 components: - rot: 1.5707963267948966 rad pos: 44.5,-27.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11839 components: - pos: 40.5,3.5 @@ -95835,8 +89741,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11843 components: - pos: 40.5,-0.5 @@ -95844,8 +89748,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11844 components: - pos: 40.5,-1.5 @@ -95853,8 +89755,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11845 components: - pos: 40.5,-2.5 @@ -95862,8 +89762,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11846 components: - pos: 40.5,-3.5 @@ -95871,8 +89769,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11847 components: - pos: 40.5,-4.5 @@ -95880,8 +89776,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11848 components: - rot: -1.5707963267948966 rad @@ -95890,8 +89784,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11849 components: - rot: -1.5707963267948966 rad @@ -95900,8 +89792,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11850 components: - rot: 3.141592653589793 rad @@ -95910,8 +89800,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11851 components: - rot: 3.141592653589793 rad @@ -95920,8 +89808,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11852 components: - rot: 3.141592653589793 rad @@ -95930,8 +89816,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11853 components: - rot: 3.141592653589793 rad @@ -95940,8 +89824,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11854 components: - rot: 3.141592653589793 rad @@ -95950,8 +89832,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11855 components: - rot: 3.141592653589793 rad @@ -95960,8 +89840,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11856 components: - rot: 3.141592653589793 rad @@ -95970,8 +89848,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11857 components: - rot: 3.141592653589793 rad @@ -95980,8 +89856,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11858 components: - rot: 3.141592653589793 rad @@ -95990,8 +89864,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11859 components: - rot: 3.141592653589793 rad @@ -96000,8 +89872,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11860 components: - rot: 3.141592653589793 rad @@ -96010,8 +89880,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11864 components: - rot: 1.5707963267948966 rad @@ -96020,8 +89888,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11865 components: - rot: 1.5707963267948966 rad @@ -96038,8 +89904,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12052 components: - pos: 39.5,6.5 @@ -96130,8 +89994,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12113 components: - rot: 3.141592653589793 rad @@ -96140,8 +90002,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12114 components: - rot: 3.141592653589793 rad @@ -96150,8 +90010,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12117 components: - rot: 3.141592653589793 rad @@ -96206,8 +90064,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12145 components: - rot: 3.141592653589793 rad @@ -96240,8 +90096,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12149 components: - rot: 3.141592653589793 rad @@ -96271,8 +90125,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12322 components: - pos: 46.5,6.5 @@ -96308,8 +90160,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12328 components: - pos: 46.5,12.5 @@ -96464,8 +90314,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12354 components: - rot: 3.141592653589793 rad @@ -96578,8 +90426,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12372 components: - rot: 1.5707963267948966 rad @@ -96588,8 +90434,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12373 components: - rot: 1.5707963267948966 rad @@ -96598,8 +90442,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12379 components: - rot: -1.5707963267948966 rad @@ -96624,8 +90466,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12382 components: - rot: -1.5707963267948966 rad @@ -96658,8 +90498,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12686 components: - rot: -1.5707963267948966 rad @@ -97208,8 +91046,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13042 components: - rot: 3.141592653589793 rad @@ -97241,8 +91077,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13455 components: - rot: 3.141592653589793 rad @@ -97251,8 +91085,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13456 components: - rot: 3.141592653589793 rad @@ -97261,8 +91093,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13457 components: - rot: 3.141592653589793 rad @@ -97271,8 +91101,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13458 components: - rot: 3.141592653589793 rad @@ -97281,8 +91109,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13459 components: - rot: 3.141592653589793 rad @@ -97291,8 +91117,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13460 components: - rot: 3.141592653589793 rad @@ -97301,8 +91125,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13786 components: - rot: 3.141592653589793 rad @@ -97357,8 +91179,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14372 components: - rot: 1.5707963267948966 rad @@ -97777,8 +91597,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14592 components: - pos: -21.5,-30.5 @@ -97928,8 +91746,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14621 components: - pos: -16.5,-23.5 @@ -97944,8 +91760,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14627 components: - pos: -21.5,-26.5 @@ -98096,8 +91910,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14672 components: - rot: 1.5707963267948966 rad @@ -98160,8 +91972,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14699 components: - pos: -19.5,-32.5 @@ -98339,8 +92149,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14730 components: - rot: 1.5707963267948966 rad @@ -98381,8 +92189,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14737 components: - rot: 1.5707963267948966 rad @@ -98676,8 +92482,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15271 components: - rot: 1.5707963267948966 rad @@ -98764,8 +92568,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15283 components: - rot: -1.5707963267948966 rad @@ -98774,8 +92576,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15284 components: - rot: -1.5707963267948966 rad @@ -99121,8 +92921,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15519 components: - rot: 1.5707963267948966 rad @@ -99207,8 +93005,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15537 components: - rot: 1.5707963267948966 rad @@ -99436,8 +93232,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16387 components: - pos: -50.5,-50.5 @@ -99492,8 +93286,6 @@ entities: - pos: -50.5,-57.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16408 components: - pos: -51.5,-53.5 @@ -99505,8 +93297,6 @@ entities: pos: -52.5,-55.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16413 components: - rot: -1.5707963267948966 rad @@ -99523,8 +93313,6 @@ entities: - pos: -51.5,-50.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 16416 components: - pos: -51.5,-49.5 @@ -99573,8 +93361,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16725 components: - rot: 3.141592653589793 rad @@ -99583,8 +93369,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16726 components: - rot: 3.141592653589793 rad @@ -99593,8 +93377,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16727 components: - rot: 1.5707963267948966 rad @@ -99603,8 +93385,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16728 components: - rot: 1.5707963267948966 rad @@ -99613,8 +93393,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16729 components: - rot: 1.5707963267948966 rad @@ -99623,8 +93401,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16730 components: - rot: 1.5707963267948966 rad @@ -99633,8 +93409,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16731 components: - rot: 1.5707963267948966 rad @@ -99643,8 +93417,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16732 components: - rot: 1.5707963267948966 rad @@ -99653,8 +93425,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16733 components: - rot: 1.5707963267948966 rad @@ -99663,8 +93433,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16734 components: - rot: 1.5707963267948966 rad @@ -99673,8 +93441,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16735 components: - pos: -49.5,-40.5 @@ -99682,8 +93448,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16736 components: - pos: -49.5,-39.5 @@ -99691,8 +93455,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16737 components: - rot: 1.5707963267948966 rad @@ -99701,8 +93463,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17263 components: - rot: -1.5707963267948966 rad @@ -99727,8 +93487,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17266 components: - rot: 3.141592653589793 rad @@ -99745,8 +93503,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17466 components: - rot: -1.5707963267948966 rad @@ -99771,8 +93527,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17470 components: - rot: -1.5707963267948966 rad @@ -99781,8 +93535,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17471 components: - rot: -1.5707963267948966 rad @@ -99791,8 +93543,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17472 components: - rot: -1.5707963267948966 rad @@ -99801,8 +93551,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17474 components: - rot: -1.5707963267948966 rad @@ -99811,8 +93559,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17475 components: - rot: -1.5707963267948966 rad @@ -99821,8 +93567,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17476 components: - rot: -1.5707963267948966 rad @@ -99831,8 +93575,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17477 components: - rot: 3.141592653589793 rad @@ -99841,8 +93583,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17478 components: - rot: 3.141592653589793 rad @@ -99851,8 +93591,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17479 components: - rot: 3.141592653589793 rad @@ -99861,8 +93599,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17480 components: - rot: 3.141592653589793 rad @@ -99871,8 +93607,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17481 components: - rot: 3.141592653589793 rad @@ -99881,8 +93615,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17482 components: - rot: 3.141592653589793 rad @@ -99891,8 +93623,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17483 components: - rot: 3.141592653589793 rad @@ -99901,8 +93631,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17484 components: - rot: 3.141592653589793 rad @@ -99911,8 +93639,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17485 components: - rot: 3.141592653589793 rad @@ -99921,8 +93647,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17486 components: - rot: 3.141592653589793 rad @@ -99931,8 +93655,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17487 components: - rot: 3.141592653589793 rad @@ -99941,8 +93663,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17489 components: - rot: 3.141592653589793 rad @@ -99959,8 +93679,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17491 components: - rot: 3.141592653589793 rad @@ -99985,8 +93703,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17649 components: - rot: -1.5707963267948966 rad @@ -100297,8 +94013,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18362 components: - rot: 1.5707963267948966 rad @@ -100307,8 +94021,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18363 components: - rot: 1.5707963267948966 rad @@ -100317,8 +94029,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18364 components: - pos: -35.5,-27.5 @@ -100326,8 +94036,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18365 components: - pos: -35.5,-26.5 @@ -100335,8 +94043,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18366 components: - pos: -35.5,-25.5 @@ -100344,8 +94050,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18367 components: - pos: -35.5,-24.5 @@ -100353,8 +94057,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18368 components: - pos: -35.5,-23.5 @@ -100362,8 +94064,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18369 components: - pos: -35.5,-22.5 @@ -100371,8 +94071,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18370 components: - pos: -35.5,-21.5 @@ -100380,8 +94078,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18371 components: - rot: -1.5707963267948966 rad @@ -100390,8 +94086,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18372 components: - rot: -1.5707963267948966 rad @@ -100400,8 +94094,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18373 components: - rot: -1.5707963267948966 rad @@ -100410,8 +94102,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18374 components: - rot: -1.5707963267948966 rad @@ -100420,8 +94110,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18375 components: - rot: -1.5707963267948966 rad @@ -100430,8 +94118,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18376 components: - rot: -1.5707963267948966 rad @@ -100440,8 +94126,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18377 components: - rot: -1.5707963267948966 rad @@ -100450,8 +94134,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18378 components: - rot: -1.5707963267948966 rad @@ -100460,8 +94142,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18379 components: - rot: -1.5707963267948966 rad @@ -100470,8 +94150,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18380 components: - rot: -1.5707963267948966 rad @@ -100480,8 +94158,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18381 components: - rot: -1.5707963267948966 rad @@ -100512,8 +94188,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18453 components: - pos: -52.5,-7.5 @@ -100521,8 +94195,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18454 components: - pos: -52.5,-8.5 @@ -100530,8 +94202,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18455 components: - pos: -52.5,-9.5 @@ -100539,8 +94209,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18456 components: - pos: -52.5,-10.5 @@ -100548,8 +94216,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18457 components: - pos: -52.5,-11.5 @@ -100557,8 +94223,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18459 components: - pos: -52.5,-13.5 @@ -100566,8 +94230,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18460 components: - pos: -52.5,-14.5 @@ -100575,8 +94237,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18461 components: - pos: -52.5,-15.5 @@ -100584,8 +94244,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18462 components: - pos: -52.5,-16.5 @@ -100593,8 +94251,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18463 components: - pos: -52.5,-17.5 @@ -100602,8 +94258,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18464 components: - pos: -52.5,-18.5 @@ -100611,8 +94265,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18465 components: - pos: -52.5,-19.5 @@ -100620,8 +94272,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18466 components: - pos: -52.5,-20.5 @@ -100629,8 +94279,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18467 components: - rot: -1.5707963267948966 rad @@ -100639,8 +94287,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18468 components: - rot: -1.5707963267948966 rad @@ -100649,8 +94295,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18469 components: - rot: -1.5707963267948966 rad @@ -100659,8 +94303,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18470 components: - rot: -1.5707963267948966 rad @@ -100669,8 +94311,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18471 components: - rot: -1.5707963267948966 rad @@ -100679,8 +94319,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18472 components: - rot: 3.141592653589793 rad @@ -100689,8 +94327,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18473 components: - rot: 3.141592653589793 rad @@ -100699,8 +94335,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18474 components: - rot: 3.141592653589793 rad @@ -100709,8 +94343,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18475 components: - rot: 3.141592653589793 rad @@ -100719,8 +94351,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18476 components: - rot: 3.141592653589793 rad @@ -100729,8 +94359,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18486 components: - rot: 1.5707963267948966 rad @@ -100747,8 +94375,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18499 components: - rot: 1.5707963267948966 rad @@ -100757,8 +94383,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18500 components: - rot: 1.5707963267948966 rad @@ -100767,8 +94391,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18501 components: - pos: -56.5,-15.5 @@ -100776,8 +94398,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18502 components: - pos: -56.5,-14.5 @@ -100785,8 +94405,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18503 components: - pos: -56.5,-13.5 @@ -100794,8 +94412,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18580 components: - pos: -19.5,-27.5 @@ -100827,8 +94443,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18976 components: - rot: 1.5707963267948966 rad @@ -100837,8 +94451,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18977 components: - rot: 1.5707963267948966 rad @@ -100847,8 +94459,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18978 components: - pos: 40.5,29.5 @@ -100856,8 +94466,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18979 components: - rot: -1.5707963267948966 rad @@ -100866,8 +94474,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18980 components: - rot: -1.5707963267948966 rad @@ -100876,8 +94482,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18981 components: - rot: -1.5707963267948966 rad @@ -100886,8 +94490,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18982 components: - rot: -1.5707963267948966 rad @@ -100896,8 +94498,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18983 components: - rot: -1.5707963267948966 rad @@ -100906,8 +94506,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18984 components: - rot: 3.141592653589793 rad @@ -100916,8 +94514,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18985 components: - rot: 1.5707963267948966 rad @@ -100926,8 +94522,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18986 components: - rot: 1.5707963267948966 rad @@ -100936,8 +94530,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18987 components: - rot: 1.5707963267948966 rad @@ -100946,8 +94538,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18988 components: - rot: 1.5707963267948966 rad @@ -100956,8 +94546,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18989 components: - rot: 1.5707963267948966 rad @@ -101009,8 +94597,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18996 components: - pos: 50.5,35.5 @@ -101018,8 +94604,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18999 components: - rot: -1.5707963267948966 rad @@ -101052,8 +94636,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19030 components: - rot: 3.141592653589793 rad @@ -101062,8 +94644,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19031 components: - rot: 3.141592653589793 rad @@ -101072,8 +94652,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19032 components: - rot: 3.141592653589793 rad @@ -101082,8 +94660,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19036 components: - rot: -1.5707963267948966 rad @@ -101092,8 +94668,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19037 components: - rot: -1.5707963267948966 rad @@ -101102,8 +94676,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19038 components: - rot: 3.141592653589793 rad @@ -101112,8 +94684,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19039 components: - rot: 1.5707963267948966 rad @@ -101122,8 +94692,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19040 components: - rot: 1.5707963267948966 rad @@ -101132,8 +94700,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19041 components: - rot: 1.5707963267948966 rad @@ -101142,8 +94708,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19042 components: - rot: 1.5707963267948966 rad @@ -101152,8 +94716,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19043 components: - rot: 1.5707963267948966 rad @@ -101162,8 +94724,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19044 components: - rot: 1.5707963267948966 rad @@ -101172,8 +94732,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19045 components: - rot: 1.5707963267948966 rad @@ -101182,8 +94740,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19046 components: - rot: 1.5707963267948966 rad @@ -101192,8 +94748,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19048 components: - rot: 3.141592653589793 rad @@ -101202,8 +94756,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19049 components: - rot: 3.141592653589793 rad @@ -101212,8 +94764,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19050 components: - rot: 3.141592653589793 rad @@ -101222,8 +94772,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19051 components: - rot: 3.141592653589793 rad @@ -101232,8 +94780,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19052 components: - rot: 3.141592653589793 rad @@ -101242,8 +94788,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19053 components: - rot: 3.141592653589793 rad @@ -101252,8 +94796,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19054 components: - rot: 3.141592653589793 rad @@ -101262,8 +94804,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19055 components: - rot: 3.141592653589793 rad @@ -101272,8 +94812,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19056 components: - rot: 3.141592653589793 rad @@ -101282,8 +94820,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19057 components: - rot: 3.141592653589793 rad @@ -101292,8 +94828,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19058 components: - rot: 3.141592653589793 rad @@ -101302,8 +94836,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19059 components: - rot: 3.141592653589793 rad @@ -101312,8 +94844,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19060 components: - rot: 3.141592653589793 rad @@ -101322,8 +94852,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19061 components: - rot: 3.141592653589793 rad @@ -101332,8 +94860,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19062 components: - rot: 3.141592653589793 rad @@ -101342,8 +94868,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19382 components: - rot: 3.141592653589793 rad @@ -101356,8 +94880,6 @@ entities: pos: 13.5,-52.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19384 components: - rot: 3.141592653589793 rad @@ -101376,8 +94898,6 @@ entities: pos: 15.5,-52.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 19387 components: - rot: 3.141592653589793 rad @@ -102901,8 +96421,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 20989 components: - rot: 3.141592653589793 rad @@ -102975,8 +96493,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21000 components: - rot: 1.5707963267948966 rad @@ -103041,8 +96557,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21014 components: - rot: 1.5707963267948966 rad @@ -103107,8 +96621,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21025 components: - rot: 3.141592653589793 rad @@ -103133,8 +96645,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21030 components: - rot: 1.5707963267948966 rad @@ -103143,8 +96653,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21031 components: - rot: 1.5707963267948966 rad @@ -103153,8 +96661,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21032 components: - rot: 1.5707963267948966 rad @@ -103163,8 +96669,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21033 components: - rot: 1.5707963267948966 rad @@ -103173,8 +96677,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21034 components: - rot: 1.5707963267948966 rad @@ -103183,8 +96685,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21035 components: - pos: 5.5,-61.5 @@ -103192,8 +96692,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21036 components: - pos: 5.5,-60.5 @@ -103201,8 +96699,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21037 components: - pos: 5.5,-59.5 @@ -103210,8 +96706,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21038 components: - pos: 5.5,-58.5 @@ -103219,8 +96713,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21040 components: - rot: -1.5707963267948966 rad @@ -103229,8 +96721,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21041 components: - rot: -1.5707963267948966 rad @@ -103239,8 +96729,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21042 components: - rot: -1.5707963267948966 rad @@ -103249,8 +96737,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21043 components: - rot: -1.5707963267948966 rad @@ -103259,8 +96745,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21044 components: - rot: -1.5707963267948966 rad @@ -103269,8 +96753,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21045 components: - rot: -1.5707963267948966 rad @@ -103279,8 +96761,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21046 components: - rot: -1.5707963267948966 rad @@ -103289,8 +96769,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21047 components: - rot: -1.5707963267948966 rad @@ -103299,8 +96777,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21048 components: - rot: -1.5707963267948966 rad @@ -103309,8 +96785,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21049 components: - rot: -1.5707963267948966 rad @@ -103319,8 +96793,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21050 components: - rot: -1.5707963267948966 rad @@ -103329,8 +96801,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21051 components: - rot: 1.5707963267948966 rad @@ -103339,8 +96809,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21052 components: - rot: 1.5707963267948966 rad @@ -103388,8 +96856,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21058 components: - pos: 18.5,-54.5 @@ -103397,8 +96863,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21059 components: - pos: 18.5,-53.5 @@ -103406,8 +96870,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21060 components: - pos: 18.5,-52.5 @@ -103415,8 +96877,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21061 components: - pos: 18.5,-51.5 @@ -103517,8 +96977,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21087 components: - pos: 20.5,-39.5 @@ -103547,8 +97005,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21091 components: - pos: 15.5,-38.5 @@ -103609,8 +97065,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21110 components: - pos: 15.5,-22.5 @@ -103618,8 +97072,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21111 components: - pos: 15.5,-23.5 @@ -103627,8 +97079,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21112 components: - pos: 15.5,-24.5 @@ -103636,8 +97086,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21113 components: - pos: 15.5,-25.5 @@ -103645,8 +97093,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21114 components: - rot: -1.5707963267948966 rad @@ -103655,8 +97101,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21115 components: - rot: -1.5707963267948966 rad @@ -103665,8 +97109,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21116 components: - rot: -1.5707963267948966 rad @@ -103675,8 +97117,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21117 components: - rot: -1.5707963267948966 rad @@ -103685,8 +97125,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21118 components: - rot: -1.5707963267948966 rad @@ -103695,8 +97133,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21119 components: - rot: -1.5707963267948966 rad @@ -103705,8 +97141,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21120 components: - rot: -1.5707963267948966 rad @@ -103715,8 +97149,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21121 components: - rot: -1.5707963267948966 rad @@ -103725,8 +97157,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21122 components: - rot: -1.5707963267948966 rad @@ -103735,8 +97165,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21123 components: - rot: -1.5707963267948966 rad @@ -103745,8 +97173,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21124 components: - rot: -1.5707963267948966 rad @@ -103755,8 +97181,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21125 components: - rot: -1.5707963267948966 rad @@ -103765,8 +97189,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21126 components: - rot: -1.5707963267948966 rad @@ -103775,8 +97197,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21127 components: - rot: -1.5707963267948966 rad @@ -103785,8 +97205,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21128 components: - rot: -1.5707963267948966 rad @@ -103795,8 +97213,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21129 components: - rot: 3.141592653589793 rad @@ -103805,8 +97221,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21130 components: - rot: 3.141592653589793 rad @@ -103815,8 +97229,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21131 components: - rot: 3.141592653589793 rad @@ -103825,8 +97237,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21132 components: - rot: 3.141592653589793 rad @@ -103835,8 +97245,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21133 components: - rot: 3.141592653589793 rad @@ -103845,8 +97253,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21134 components: - rot: 3.141592653589793 rad @@ -103855,8 +97261,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21135 components: - rot: 3.141592653589793 rad @@ -103865,8 +97269,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21136 components: - rot: 3.141592653589793 rad @@ -103875,8 +97277,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21137 components: - rot: 3.141592653589793 rad @@ -103885,8 +97285,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21138 components: - rot: 3.141592653589793 rad @@ -103895,8 +97293,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21139 components: - rot: 3.141592653589793 rad @@ -103905,8 +97301,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21140 components: - rot: 3.141592653589793 rad @@ -103915,8 +97309,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21141 components: - rot: 3.141592653589793 rad @@ -103925,8 +97317,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21142 components: - rot: 3.141592653589793 rad @@ -103967,8 +97357,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21148 components: - rot: 1.5707963267948966 rad @@ -103977,8 +97365,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21149 components: - rot: 1.5707963267948966 rad @@ -103987,8 +97373,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21150 components: - rot: 1.5707963267948966 rad @@ -103997,8 +97381,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21151 components: - rot: 1.5707963267948966 rad @@ -104007,8 +97389,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21152 components: - rot: 1.5707963267948966 rad @@ -104017,8 +97397,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21153 components: - rot: 1.5707963267948966 rad @@ -104027,8 +97405,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21154 components: - rot: 1.5707963267948966 rad @@ -104037,8 +97413,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21155 components: - rot: 1.5707963267948966 rad @@ -104047,8 +97421,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21156 components: - rot: 1.5707963267948966 rad @@ -104057,8 +97429,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21157 components: - rot: 1.5707963267948966 rad @@ -104067,8 +97437,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21158 components: - rot: 1.5707963267948966 rad @@ -104077,8 +97445,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21159 components: - pos: 18.5,-46.5 @@ -104086,8 +97452,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21490 components: - rot: 1.5707963267948966 rad @@ -104381,8 +97745,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21538 components: - rot: 3.141592653589793 rad @@ -104391,8 +97753,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21539 components: - rot: 3.141592653589793 rad @@ -104409,8 +97769,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21541 components: - rot: 1.5707963267948966 rad @@ -104419,8 +97777,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21542 components: - rot: 1.5707963267948966 rad @@ -104429,8 +97785,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21543 components: - rot: 1.5707963267948966 rad @@ -104439,8 +97793,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21544 components: - rot: 1.5707963267948966 rad @@ -104449,8 +97801,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21545 components: - rot: 1.5707963267948966 rad @@ -104459,8 +97809,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21546 components: - rot: 1.5707963267948966 rad @@ -104469,8 +97817,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21547 components: - rot: 1.5707963267948966 rad @@ -104487,8 +97833,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21549 components: - rot: -1.5707963267948966 rad @@ -104497,8 +97841,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21550 components: - rot: -1.5707963267948966 rad @@ -104507,8 +97849,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21551 components: - rot: -1.5707963267948966 rad @@ -104517,8 +97857,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21553 components: - pos: -25.5,-62.5 @@ -104595,8 +97933,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21572 components: - rot: 3.141592653589793 rad @@ -104605,8 +97941,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21573 components: - rot: 3.141592653589793 rad @@ -104615,8 +97949,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21577 components: - rot: -1.5707963267948966 rad @@ -104811,8 +98143,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21605 components: - rot: 1.5707963267948966 rad @@ -105401,8 +98731,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24893 components: - rot: 1.5707963267948966 rad @@ -105411,8 +98739,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24894 components: - rot: 1.5707963267948966 rad @@ -105421,8 +98747,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24895 components: - rot: 1.5707963267948966 rad @@ -105431,8 +98755,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24896 components: - rot: 1.5707963267948966 rad @@ -105441,8 +98763,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24897 components: - rot: 1.5707963267948966 rad @@ -105451,8 +98771,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24898 components: - rot: 1.5707963267948966 rad @@ -105461,8 +98779,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24899 components: - rot: 1.5707963267948966 rad @@ -105471,8 +98787,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24900 components: - rot: 1.5707963267948966 rad @@ -105481,8 +98795,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24901 components: - rot: 1.5707963267948966 rad @@ -105491,8 +98803,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24902 components: - rot: 1.5707963267948966 rad @@ -105501,8 +98811,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24903 components: - rot: 1.5707963267948966 rad @@ -105511,8 +98819,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24904 components: - rot: 1.5707963267948966 rad @@ -105521,8 +98827,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24905 components: - rot: 1.5707963267948966 rad @@ -105531,8 +98835,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24906 components: - rot: 1.5707963267948966 rad @@ -105541,8 +98843,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24907 components: - rot: 1.5707963267948966 rad @@ -105551,8 +98851,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24908 components: - rot: 1.5707963267948966 rad @@ -105561,8 +98859,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24909 components: - rot: 1.5707963267948966 rad @@ -105571,8 +98867,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24910 components: - rot: 1.5707963267948966 rad @@ -105581,8 +98875,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24911 components: - rot: 1.5707963267948966 rad @@ -105591,8 +98883,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24912 components: - rot: 1.5707963267948966 rad @@ -105601,8 +98891,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24913 components: - rot: 1.5707963267948966 rad @@ -105611,8 +98899,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24914 components: - rot: 1.5707963267948966 rad @@ -105621,8 +98907,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24915 components: - rot: 1.5707963267948966 rad @@ -105631,8 +98915,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24916 components: - rot: 1.5707963267948966 rad @@ -105641,8 +98923,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24917 components: - rot: 1.5707963267948966 rad @@ -105651,8 +98931,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24918 components: - rot: 1.5707963267948966 rad @@ -105661,8 +98939,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24919 components: - rot: 1.5707963267948966 rad @@ -105671,8 +98947,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24920 components: - rot: 1.5707963267948966 rad @@ -106443,56 +99717,42 @@ entities: pos: 100.5,6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 25930 components: - rot: -1.5707963267948966 rad pos: 99.5,6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 25931 components: - rot: -1.5707963267948966 rad pos: 98.5,6.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 25937 components: - rot: 3.141592653589793 rad pos: 104.5,-15.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 25938 components: - rot: 3.141592653589793 rad pos: 104.5,-14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 25939 components: - rot: 1.5707963267948966 rad pos: 97.5,2.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 25940 components: - rot: 1.5707963267948966 rad pos: 112.5,-0.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 25941 components: - rot: 1.5707963267948966 rad @@ -106505,16 +99765,12 @@ entities: pos: 109.5,-4.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 25943 components: - rot: 1.5707963267948966 rad pos: 110.5,-4.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - proto: GasPipeTJunction entities: - uid: 265 @@ -106991,8 +100247,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 774 components: - rot: 1.5707963267948966 rad @@ -107184,8 +100438,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2566 components: - rot: 3.141592653589793 rad @@ -107822,8 +101074,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5569 components: - pos: -49.5,-4.5 @@ -108557,8 +101807,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8813 components: - rot: 1.5707963267948966 rad @@ -108622,8 +101870,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9099 components: - rot: 3.141592653589793 rad @@ -108632,8 +101878,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9411 components: - rot: 3.141592653589793 rad @@ -108697,8 +101941,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10950 components: - rot: -1.5707963267948966 rad @@ -108738,8 +101980,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10976 components: - rot: 1.5707963267948966 rad @@ -108748,8 +101988,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10977 components: - rot: 1.5707963267948966 rad @@ -108758,8 +101996,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10978 components: - rot: 1.5707963267948966 rad @@ -108768,8 +102004,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11070 components: - rot: 1.5707963267948966 rad @@ -108778,8 +102012,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11072 components: - rot: 1.5707963267948966 rad @@ -108788,8 +102020,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11075 components: - pos: 59.5,-21.5 @@ -108797,8 +102027,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11096 components: - rot: 1.5707963267948966 rad @@ -108807,8 +102035,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11097 components: - rot: 3.141592653589793 rad @@ -108817,8 +102043,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11130 components: - rot: -1.5707963267948966 rad @@ -108827,8 +102051,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11134 components: - rot: -1.5707963267948966 rad @@ -108837,8 +102059,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11143 components: - pos: 54.5,-8.5 @@ -108854,8 +102074,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11225 components: - pos: 52.5,-20.5 @@ -108863,40 +102081,30 @@ entities: type: Transform - color: '#000000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11436 components: - rot: -1.5707963267948966 rad pos: 45.5,-28.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11437 components: - rot: 1.5707963267948966 rad pos: 44.5,-26.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11799 components: - rot: 1.5707963267948966 rad pos: 45.5,-14.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 11804 components: - rot: -1.5707963267948966 rad pos: 49.5,-15.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 12053 components: - rot: -1.5707963267948966 rad @@ -109415,16 +102623,12 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 16741 components: - rot: -1.5707963267948966 rad pos: -49.5,-37.5 parent: 5350 type: Transform - - enabled: True - type: AmbientSound - uid: 17494 components: - pos: -43.5,-28.5 @@ -109432,8 +102636,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 17648 components: - rot: 1.5707963267948966 rad @@ -109479,8 +102681,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18216 components: - rot: 3.141592653589793 rad @@ -109497,8 +102697,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18506 components: - rot: 3.141592653589793 rad @@ -109507,8 +102705,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18581 components: - rot: 3.141592653589793 rad @@ -109525,8 +102721,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18971 components: - rot: 3.141592653589793 rad @@ -109535,8 +102729,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18998 components: - rot: -1.5707963267948966 rad @@ -109796,8 +102988,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21063 components: - rot: 1.5707963267948966 rad @@ -109822,8 +103012,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21076 components: - rot: 3.141592653589793 rad @@ -109903,8 +103091,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 21557 components: - rot: -1.5707963267948966 rad @@ -110654,8 +103840,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 19380 @@ -110666,8 +103850,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - uid: 19381 components: - rot: 3.141592653589793 rad @@ -110676,8 +103858,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - uid: 19401 components: - rot: -1.5707963267948966 rad @@ -110686,8 +103866,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - proto: GasVentPump entities: - uid: 747 @@ -110695,8 +103873,6 @@ entities: - pos: -17.5,-1.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 768 @@ -110704,8 +103880,6 @@ entities: - pos: -5.5,2.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 771 @@ -110714,8 +103888,6 @@ entities: pos: 2.5,-0.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 793 @@ -110724,8 +103896,6 @@ entities: pos: 11.5,-5.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 813 @@ -110733,8 +103903,6 @@ entities: - pos: 11.5,4.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 827 @@ -110742,8 +103910,6 @@ entities: - pos: -4.5,-3.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 837 @@ -110752,8 +103918,6 @@ entities: pos: -16.5,5.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 994 @@ -110762,8 +103926,6 @@ entities: pos: -4.5,-10.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 1584 @@ -110772,8 +103934,6 @@ entities: pos: -16.5,-10.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 1611 @@ -110782,8 +103942,6 @@ entities: pos: 0.5,-15.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2077 @@ -110791,8 +103949,6 @@ entities: - pos: -21.5,-19.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2624 @@ -110801,8 +103957,6 @@ entities: pos: 23.5,-13.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2642 @@ -110811,8 +103965,6 @@ entities: pos: 24.5,-9.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2656 @@ -110821,16 +103973,12 @@ entities: pos: 33.5,-15.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - uid: 2657 components: - rot: 1.5707963267948966 rad pos: 33.5,-10.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2676 @@ -110839,8 +103987,6 @@ entities: pos: 37.5,-10.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2708 @@ -110849,8 +103995,6 @@ entities: pos: 36.5,-6.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2711 @@ -110859,8 +104003,6 @@ entities: pos: 19.5,-1.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2713 @@ -110869,8 +104011,6 @@ entities: pos: 23.5,0.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2716 @@ -110879,8 +104019,6 @@ entities: pos: 33.5,-4.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3007 @@ -110892,16 +104030,12 @@ entities: - ShutdownSubscribers: - 24484 type: DeviceNetwork - - enabled: False - type: AmbientSound - uid: 3835 components: - rot: 1.5707963267948966 rad pos: -36.5,19.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4143 @@ -110910,8 +104044,6 @@ entities: pos: -36.5,12.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4244 @@ -110920,8 +104052,6 @@ entities: pos: -7.5,28.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4328 @@ -110930,8 +104060,6 @@ entities: pos: -41.5,25.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4329 @@ -110939,8 +104067,6 @@ entities: - pos: -27.5,6.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4346 @@ -110949,8 +104075,6 @@ entities: pos: -41.5,4.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4348 @@ -110958,8 +104082,6 @@ entities: - pos: -32.5,6.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4373 @@ -110968,8 +104090,6 @@ entities: pos: -44.5,16.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4374 @@ -110978,8 +104098,6 @@ entities: pos: -44.5,18.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4378 @@ -110988,8 +104106,6 @@ entities: pos: -30.5,11.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4392 @@ -110998,8 +104114,6 @@ entities: pos: -30.5,16.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4402 @@ -111007,8 +104121,6 @@ entities: - pos: -21.5,14.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4457 @@ -111016,8 +104128,6 @@ entities: - pos: -42.5,31.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4972 @@ -111026,8 +104136,6 @@ entities: pos: 23.5,-20.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5017 @@ -111036,8 +104144,6 @@ entities: pos: -50.5,1.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5558 @@ -111046,8 +104152,6 @@ entities: pos: -70.5,5.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5559 @@ -111056,8 +104160,6 @@ entities: pos: -67.5,7.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5560 @@ -111066,8 +104168,6 @@ entities: pos: -63.5,5.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5561 @@ -111075,8 +104175,6 @@ entities: - pos: -63.5,-6.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5562 @@ -111084,8 +104182,6 @@ entities: - pos: -67.5,-8.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5563 @@ -111093,8 +104189,6 @@ entities: - pos: -70.5,-6.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5838 @@ -111103,8 +104197,6 @@ entities: pos: -66.5,-17.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6471 @@ -111113,8 +104205,6 @@ entities: pos: 1.5,48.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6549 @@ -111122,8 +104212,6 @@ entities: - pos: -7.5,60.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6602 @@ -111132,8 +104220,6 @@ entities: pos: -15.5,44.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6662 @@ -111141,8 +104227,6 @@ entities: - pos: 8.5,44.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6694 @@ -111151,8 +104235,6 @@ entities: pos: -13.5,48.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7074 @@ -111161,8 +104243,6 @@ entities: pos: -10.5,28.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7075 @@ -111171,8 +104251,6 @@ entities: pos: -13.5,28.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7076 @@ -111181,8 +104259,6 @@ entities: pos: -2.5,28.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7077 @@ -111191,8 +104267,6 @@ entities: pos: 1.5,28.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7078 @@ -111201,8 +104275,6 @@ entities: pos: 1.5,31.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7079 @@ -111211,8 +104283,6 @@ entities: pos: 5.5,27.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7083 @@ -111221,8 +104291,6 @@ entities: pos: 1.5,39.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7084 @@ -111231,8 +104299,6 @@ entities: pos: -0.5,43.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7085 @@ -111241,8 +104307,6 @@ entities: pos: -7.5,44.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7086 @@ -111251,8 +104315,6 @@ entities: pos: -11.5,45.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7091 @@ -111260,8 +104322,6 @@ entities: - pos: -6.5,38.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7101 @@ -111270,8 +104330,6 @@ entities: pos: 16.5,32.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7102 @@ -111280,8 +104338,6 @@ entities: pos: 10.5,31.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7104 @@ -111290,8 +104346,6 @@ entities: pos: 5.5,39.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7115 @@ -111300,8 +104354,6 @@ entities: pos: 5.5,14.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7116 @@ -111309,8 +104361,6 @@ entities: - pos: 6.5,19.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7117 @@ -111318,8 +104368,6 @@ entities: - pos: 11.5,18.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7125 @@ -111328,8 +104376,6 @@ entities: pos: 2.5,24.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7127 @@ -111338,8 +104384,6 @@ entities: pos: -11.5,24.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7130 @@ -111348,8 +104392,6 @@ entities: pos: -2.5,19.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7193 @@ -111358,8 +104400,6 @@ entities: pos: -3.5,51.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7194 @@ -111368,8 +104408,6 @@ entities: pos: -7.5,51.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7195 @@ -111378,8 +104416,6 @@ entities: pos: -11.5,51.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7197 @@ -111387,8 +104423,6 @@ entities: - pos: -0.5,51.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7337 @@ -111397,8 +104431,6 @@ entities: pos: -11.5,34.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7342 @@ -111407,8 +104439,6 @@ entities: pos: 39.5,3.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7388 @@ -111417,8 +104447,6 @@ entities: pos: -9.5,56.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7725 @@ -111427,8 +104455,6 @@ entities: pos: 17.5,39.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8847 @@ -111437,8 +104463,6 @@ entities: pos: 14.5,36.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 9225 @@ -111446,8 +104470,6 @@ entities: - pos: -16.5,27.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 9321 @@ -111455,8 +104477,6 @@ entities: - pos: -24.5,27.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 9338 @@ -111465,8 +104485,6 @@ entities: pos: -27.5,21.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 9491 @@ -111474,8 +104492,6 @@ entities: - pos: -39.5,40.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 9939 @@ -111484,8 +104500,6 @@ entities: pos: 11.5,25.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10185 @@ -111494,8 +104508,6 @@ entities: pos: -7.5,-8.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10788 @@ -111503,8 +104515,6 @@ entities: - pos: -11.5,16.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10791 @@ -111513,8 +104523,6 @@ entities: pos: -57.5,6.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10793 @@ -111523,8 +104531,6 @@ entities: pos: -57.5,-7.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10795 @@ -111533,8 +104539,6 @@ entities: pos: -54.5,-1.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10797 @@ -111543,8 +104547,6 @@ entities: pos: -41.5,-0.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10799 @@ -111553,8 +104555,6 @@ entities: pos: -21.5,5.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10802 @@ -111563,8 +104563,6 @@ entities: pos: -4.5,9.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11091 @@ -111573,8 +104571,6 @@ entities: pos: 60.5,-21.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#03FCD3FF' type: AtmosPipeColor - uid: 11242 @@ -111583,8 +104579,6 @@ entities: pos: 69.5,-24.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#03FCD3FF' type: AtmosPipeColor - uid: 11867 @@ -111593,8 +104587,6 @@ entities: pos: 47.5,-17.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12049 @@ -111602,8 +104594,6 @@ entities: - pos: 52.5,-11.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#03FCD3FF' type: AtmosPipeColor - uid: 12051 @@ -111612,8 +104602,6 @@ entities: pos: 52.5,-6.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12059 @@ -111622,8 +104610,6 @@ entities: pos: 33.5,7.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12060 @@ -111631,8 +104617,6 @@ entities: - pos: 39.5,8.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12103 @@ -111641,8 +104625,6 @@ entities: pos: 16.5,5.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12104 @@ -111651,8 +104633,6 @@ entities: pos: 16.5,9.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12111 @@ -111661,8 +104641,6 @@ entities: pos: 8.5,-13.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12118 @@ -111670,8 +104648,6 @@ entities: - pos: -17.5,-5.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12120 @@ -111680,8 +104656,6 @@ entities: pos: 16.5,-4.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12122 @@ -111690,8 +104664,6 @@ entities: pos: -21.5,-4.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12124 @@ -111699,8 +104671,6 @@ entities: - pos: -0.5,-19.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12126 @@ -111708,8 +104678,6 @@ entities: - pos: 16.5,-19.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12131 @@ -111718,8 +104686,6 @@ entities: pos: 23.5,-16.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12139 @@ -111728,8 +104694,6 @@ entities: pos: 23.5,-23.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12142 @@ -111738,8 +104702,6 @@ entities: pos: 25.5,3.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12150 @@ -111747,8 +104709,6 @@ entities: - pos: 20.5,7.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12374 @@ -111756,8 +104716,6 @@ entities: - pos: 54.5,9.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12375 @@ -111766,8 +104724,6 @@ entities: pos: 64.5,4.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12376 @@ -111776,8 +104732,6 @@ entities: pos: 59.5,-0.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12383 @@ -111786,8 +104740,6 @@ entities: pos: 56.5,-0.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12384 @@ -111796,8 +104748,6 @@ entities: pos: 50.5,-0.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12564 @@ -111806,8 +104756,6 @@ entities: pos: 49.5,9.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12585 @@ -111816,8 +104764,6 @@ entities: pos: 47.5,8.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12694 @@ -111826,8 +104772,6 @@ entities: pos: 29.5,32.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12792 @@ -111836,8 +104780,6 @@ entities: pos: 22.5,23.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12793 @@ -111845,8 +104787,6 @@ entities: - pos: 27.5,23.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12795 @@ -111855,8 +104795,6 @@ entities: pos: 10.5,13.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12797 @@ -111865,8 +104803,6 @@ entities: pos: 35.5,22.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12990 @@ -111875,8 +104811,6 @@ entities: pos: 20.5,17.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12994 @@ -111885,8 +104819,6 @@ entities: pos: 26.5,17.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 13004 @@ -111895,8 +104827,6 @@ entities: pos: 31.5,41.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 13025 @@ -111905,8 +104835,6 @@ entities: pos: 46.5,39.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 13027 @@ -111915,8 +104843,6 @@ entities: pos: 32.5,18.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 13031 @@ -111925,8 +104851,6 @@ entities: pos: 27.5,40.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 13032 @@ -111935,8 +104859,6 @@ entities: pos: 37.5,42.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 13046 @@ -111945,8 +104867,6 @@ entities: pos: 28.5,49.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 14160 @@ -111955,8 +104875,6 @@ entities: pos: -22.5,-25.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 14575 @@ -111964,8 +104882,6 @@ entities: - pos: -14.5,-28.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 14623 @@ -111974,8 +104890,6 @@ entities: pos: -35.5,-32.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 14626 @@ -111984,8 +104898,6 @@ entities: pos: -29.5,-33.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 14633 @@ -111994,8 +104906,6 @@ entities: pos: -10.5,-24.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 14714 @@ -112003,8 +104913,6 @@ entities: - pos: -27.5,-31.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 14739 @@ -112013,8 +104921,6 @@ entities: pos: -15.5,-36.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 14740 @@ -112022,8 +104928,6 @@ entities: - pos: -20.5,-35.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 15232 @@ -112032,8 +104936,6 @@ entities: pos: -27.5,-51.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 15233 @@ -112042,8 +104944,6 @@ entities: pos: -31.5,-51.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 15264 @@ -112055,8 +104955,6 @@ entities: - ShutdownSubscribers: - 24600 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 15306 @@ -112068,8 +104966,6 @@ entities: - ShutdownSubscribers: - 24600 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 15316 @@ -112078,8 +104974,6 @@ entities: pos: -15.5,-41.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 15318 @@ -112088,8 +104982,6 @@ entities: pos: -20.5,-42.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 15344 @@ -112098,8 +104990,6 @@ entities: pos: -13.5,-50.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 15345 @@ -112108,8 +104998,6 @@ entities: pos: -17.5,-50.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 15529 @@ -112118,8 +105006,6 @@ entities: pos: -21.5,-56.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 15530 @@ -112128,8 +105014,6 @@ entities: pos: -24.5,-55.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 15531 @@ -112138,8 +105022,6 @@ entities: pos: -16.5,-58.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 15615 @@ -112147,8 +105029,6 @@ entities: - pos: -7.5,-31.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 16393 @@ -112156,8 +105036,6 @@ entities: - pos: -42.5,-45.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 16394 @@ -112166,8 +105044,6 @@ entities: pos: -53.5,-46.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 16396 @@ -112176,8 +105052,6 @@ entities: pos: -53.5,-54.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 16397 @@ -112186,8 +105060,6 @@ entities: pos: -53.5,-51.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 16398 @@ -112196,8 +105068,6 @@ entities: pos: -50.5,-55.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 17267 @@ -112206,8 +105076,6 @@ entities: pos: -41.5,-7.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 17473 @@ -112216,8 +105084,6 @@ entities: pos: -52.5,-28.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 17488 @@ -112226,8 +105092,6 @@ entities: pos: -43.5,-34.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 17665 @@ -112236,8 +105100,6 @@ entities: pos: -31.5,-0.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 17673 @@ -112246,8 +105108,6 @@ entities: pos: -30.5,-15.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 17674 @@ -112256,8 +105116,6 @@ entities: pos: -29.5,-9.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 18358 @@ -112266,8 +105124,6 @@ entities: pos: -49.5,-9.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 19001 @@ -112276,8 +105132,6 @@ entities: pos: 55.5,32.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 19002 @@ -112286,8 +105140,6 @@ entities: pos: 56.5,35.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 19003 @@ -112295,8 +105147,6 @@ entities: - pos: 56.5,38.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 19004 @@ -112304,8 +105154,6 @@ entities: - pos: 50.5,36.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 20658 @@ -112314,8 +105162,6 @@ entities: pos: -2.5,-26.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 20741 @@ -112324,8 +105170,6 @@ entities: pos: 2.5,-40.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 20778 @@ -112333,8 +105177,6 @@ entities: - pos: 11.5,-28.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 20779 @@ -112343,8 +105185,6 @@ entities: pos: 24.5,-29.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 20780 @@ -112353,8 +105193,6 @@ entities: pos: 20.5,-30.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 20781 @@ -112363,8 +105201,6 @@ entities: pos: 15.5,-35.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 20782 @@ -112373,8 +105209,6 @@ entities: pos: 6.5,-40.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 20783 @@ -112382,8 +105216,6 @@ entities: - pos: 2.5,-31.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 20819 @@ -112392,8 +105224,6 @@ entities: pos: 23.5,-50.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 20820 @@ -112401,8 +105231,6 @@ entities: - pos: 8.5,-49.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 20821 @@ -112411,8 +105239,6 @@ entities: pos: 12.5,-46.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 20857 @@ -112420,15 +105246,11 @@ entities: - pos: 28.5,-35.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - uid: 20858 components: - pos: 21.5,-37.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 20860 @@ -112437,8 +105259,6 @@ entities: pos: 37.5,-42.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 20887 @@ -112447,8 +105267,6 @@ entities: pos: 23.5,-55.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 20898 @@ -112457,8 +105275,6 @@ entities: pos: 29.5,-59.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 20976 @@ -112467,8 +105283,6 @@ entities: pos: 12.5,-36.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 21010 @@ -112477,8 +105291,6 @@ entities: pos: 8.5,-31.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 21100 @@ -112487,8 +105299,6 @@ entities: pos: 21.5,-43.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 21160 @@ -112496,8 +105306,6 @@ entities: - pos: 32.5,-41.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 21607 @@ -112506,8 +105314,6 @@ entities: pos: 1.5,-68.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 21609 @@ -112516,8 +105322,6 @@ entities: pos: -11.5,-73.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 21610 @@ -112526,8 +105330,6 @@ entities: pos: -9.5,-73.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 21611 @@ -112536,8 +105338,6 @@ entities: pos: -3.5,-73.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 21638 @@ -112546,8 +105346,6 @@ entities: pos: -24.5,-71.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 21639 @@ -112556,8 +105354,6 @@ entities: pos: -18.5,-73.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 21640 @@ -112565,8 +105361,6 @@ entities: - pos: -24.5,-64.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 21643 @@ -112575,8 +105369,6 @@ entities: pos: -5.5,-71.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 21644 @@ -112584,8 +105376,6 @@ entities: - pos: -7.5,-61.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 22018 @@ -112594,8 +105384,6 @@ entities: pos: -2.5,-55.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 22020 @@ -112604,8 +105392,6 @@ entities: pos: -2.5,-44.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 22022 @@ -112614,8 +105400,6 @@ entities: pos: -2.5,-34.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 22184 @@ -112623,8 +105407,6 @@ entities: - pos: 19.5,-49.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 23835 @@ -112632,8 +105414,6 @@ entities: - pos: 50.5,28.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 23845 @@ -112642,8 +105422,6 @@ entities: pos: 46.5,20.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 23850 @@ -112652,8 +105430,6 @@ entities: pos: 55.5,20.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 23851 @@ -112662,8 +105438,6 @@ entities: pos: 51.5,19.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 23853 @@ -112671,8 +105445,6 @@ entities: - pos: 51.5,15.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 23883 @@ -112681,8 +105453,6 @@ entities: pos: 51.5,25.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 25560 @@ -112690,69 +105460,51 @@ entities: - pos: 93.5,1.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - uid: 25675 components: - pos: 104.5,19.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - uid: 25677 components: - rot: 3.141592653589793 rad pos: 104.5,-19.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - uid: 25891 components: - pos: 99.5,1.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - uid: 25892 components: - pos: 109.5,1.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - uid: 25916 components: - rot: 1.5707963267948966 rad pos: 102.5,-3.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - uid: 25917 components: - rot: 1.5707963267948966 rad pos: 103.5,1.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - uid: 25918 components: - rot: -1.5707963267948966 rad pos: 105.5,4.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - uid: 25919 components: - rot: 3.141592653589793 rad pos: 104.5,-10.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - proto: GasVentScrubber entities: - uid: 755 @@ -112760,8 +105512,6 @@ entities: - pos: -13.5,-1.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 769 @@ -112769,8 +105519,6 @@ entities: - pos: 0.5,2.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 772 @@ -112779,8 +105527,6 @@ entities: pos: -7.5,-0.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 794 @@ -112789,8 +105535,6 @@ entities: pos: 6.5,-5.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 814 @@ -112799,8 +105543,6 @@ entities: pos: 9.5,4.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 826 @@ -112808,8 +105550,6 @@ entities: - pos: -0.5,-3.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 841 @@ -112818,8 +105558,6 @@ entities: pos: -16.5,4.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 995 @@ -112828,8 +105566,6 @@ entities: pos: -0.5,-10.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 1581 @@ -112837,8 +105573,6 @@ entities: - pos: -16.5,-16.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 1610 @@ -112847,8 +105581,6 @@ entities: pos: -5.5,-15.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2586 @@ -112857,8 +105589,6 @@ entities: pos: -11.5,-14.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2620 @@ -112870,8 +105600,6 @@ entities: - ShutdownSubscribers: - 24484 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2640 @@ -112880,8 +105608,6 @@ entities: pos: 19.5,-9.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2641 @@ -112890,8 +105616,6 @@ entities: pos: 20.5,-13.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2658 @@ -112900,8 +105624,6 @@ entities: pos: 29.5,-12.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2698 @@ -112909,8 +105631,6 @@ entities: - pos: 41.5,-11.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2699 @@ -112919,8 +105639,6 @@ entities: pos: 37.5,-15.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2707 @@ -112929,8 +105647,6 @@ entities: pos: 36.5,-3.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2712 @@ -112939,8 +105655,6 @@ entities: pos: 19.5,-4.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2714 @@ -112949,8 +105663,6 @@ entities: pos: 26.5,0.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2717 @@ -112959,8 +105671,6 @@ entities: pos: 29.5,-4.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3266 @@ -112969,8 +105679,6 @@ entities: pos: 29.5,-20.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4052 @@ -112979,8 +105687,6 @@ entities: pos: -36.5,10.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4326 @@ -112988,8 +105694,6 @@ entities: - pos: -41.5,26.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4330 @@ -112998,8 +105702,6 @@ entities: pos: -26.5,3.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4347 @@ -113008,8 +105710,6 @@ entities: pos: -38.5,4.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4349 @@ -113018,8 +105718,6 @@ entities: pos: -32.5,4.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4387 @@ -113028,8 +105726,6 @@ entities: pos: -29.5,11.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4393 @@ -113038,8 +105734,6 @@ entities: pos: -29.5,15.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4403 @@ -113048,8 +105742,6 @@ entities: pos: -20.5,17.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 5015 @@ -113057,8 +105749,6 @@ entities: - pos: -50.5,-2.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 5503 @@ -113067,8 +105757,6 @@ entities: pos: -66.5,7.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 5536 @@ -113077,8 +105765,6 @@ entities: pos: -66.5,-8.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 5839 @@ -113087,8 +105773,6 @@ entities: pos: -66.5,-18.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6548 @@ -113097,8 +105781,6 @@ entities: pos: -5.5,60.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6556 @@ -113107,8 +105789,6 @@ entities: pos: -3.5,50.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6557 @@ -113117,8 +105797,6 @@ entities: pos: -7.5,50.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6558 @@ -113127,8 +105805,6 @@ entities: pos: -11.5,50.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6661 @@ -113136,8 +105812,6 @@ entities: - pos: 10.5,44.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7087 @@ -113146,8 +105820,6 @@ entities: pos: 1.5,33.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7088 @@ -113156,8 +105828,6 @@ entities: pos: -2.5,30.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7089 @@ -113166,8 +105836,6 @@ entities: pos: -2.5,38.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7090 @@ -113176,8 +105844,6 @@ entities: pos: 1.5,37.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7092 @@ -113186,8 +105852,6 @@ entities: pos: -6.5,28.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7093 @@ -113196,8 +105860,6 @@ entities: pos: -9.5,28.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7094 @@ -113206,8 +105868,6 @@ entities: pos: -12.5,28.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7095 @@ -113216,8 +105876,6 @@ entities: pos: 1.5,27.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7098 @@ -113226,8 +105884,6 @@ entities: pos: 16.5,30.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7103 @@ -113235,8 +105891,6 @@ entities: - pos: 8.5,31.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7105 @@ -113245,8 +105899,6 @@ entities: pos: 4.5,37.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7107 @@ -113254,8 +105906,6 @@ entities: - pos: 13.5,42.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7108 @@ -113263,8 +105913,6 @@ entities: - pos: -2.5,43.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7109 @@ -113273,8 +105921,6 @@ entities: pos: -7.5,42.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7110 @@ -113283,8 +105929,6 @@ entities: pos: -11.5,44.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7111 @@ -113293,8 +105937,6 @@ entities: pos: 7.5,27.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7112 @@ -113302,8 +105944,6 @@ entities: - pos: 2.5,19.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7113 @@ -113312,8 +105952,6 @@ entities: pos: 3.5,14.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7114 @@ -113321,8 +105959,6 @@ entities: - pos: 12.5,18.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7126 @@ -113331,8 +105967,6 @@ entities: pos: 1.5,23.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7128 @@ -113340,8 +105974,6 @@ entities: - pos: -8.5,24.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7129 @@ -113350,8 +105982,6 @@ entities: pos: -2.5,15.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7155 @@ -113360,8 +105990,6 @@ entities: pos: -13.5,47.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7339 @@ -113370,15 +105998,11 @@ entities: pos: -9.5,36.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - uid: 7341 components: - pos: 37.5,3.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7389 @@ -113387,8 +106011,6 @@ entities: pos: 1.5,51.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7724 @@ -113397,8 +106019,6 @@ entities: pos: 17.5,40.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7802 @@ -113407,8 +106027,6 @@ entities: pos: -5.5,56.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7803 @@ -113417,8 +106035,6 @@ entities: pos: 1.5,47.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 9223 @@ -113426,8 +106042,6 @@ entities: - pos: -17.5,27.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 9335 @@ -113436,8 +106050,6 @@ entities: pos: -24.5,28.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 9337 @@ -113446,8 +106058,6 @@ entities: pos: -26.5,21.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 9940 @@ -113456,8 +106066,6 @@ entities: pos: 12.5,25.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10165 @@ -113465,8 +106073,6 @@ entities: - pos: 2.5,-7.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10789 @@ -113474,8 +106080,6 @@ entities: - pos: -9.5,16.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10790 @@ -113484,8 +106088,6 @@ entities: pos: -58.5,6.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10792 @@ -113493,8 +106095,6 @@ entities: - pos: -58.5,-7.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10796 @@ -113503,8 +106103,6 @@ entities: pos: -54.5,0.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10798 @@ -113512,8 +106110,6 @@ entities: - pos: -39.5,-0.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10800 @@ -113522,8 +106118,6 @@ entities: pos: -21.5,4.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10801 @@ -113531,8 +106125,6 @@ entities: - pos: -0.5,9.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11057 @@ -113541,8 +106133,6 @@ entities: pos: 51.5,-22.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11432 @@ -113551,16 +106141,12 @@ entities: pos: 45.5,-32.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - uid: 12032 components: - rot: 1.5707963267948966 rad pos: 52.5,-10.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12050 @@ -113568,8 +106154,6 @@ entities: - pos: 52.5,-7.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12102 @@ -113578,8 +106162,6 @@ entities: pos: 16.5,1.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12105 @@ -113588,8 +106170,6 @@ entities: pos: 16.5,8.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12116 @@ -113598,8 +106178,6 @@ entities: pos: 8.5,-12.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12121 @@ -113608,8 +106186,6 @@ entities: pos: 16.5,-5.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12123 @@ -113618,8 +106194,6 @@ entities: pos: -21.5,-5.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12125 @@ -113628,8 +106202,6 @@ entities: pos: -4.5,-19.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12130 @@ -113638,8 +106210,6 @@ entities: pos: 29.5,-16.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12141 @@ -113648,8 +106218,6 @@ entities: pos: 29.5,-23.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12143 @@ -113657,8 +106225,6 @@ entities: - pos: 26.5,3.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12151 @@ -113666,8 +106232,6 @@ entities: - pos: 22.5,7.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12377 @@ -113675,8 +106239,6 @@ entities: - pos: 55.5,9.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12378 @@ -113685,8 +106247,6 @@ entities: pos: 56.5,3.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12563 @@ -113694,8 +106254,6 @@ entities: - pos: 51.5,9.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12586 @@ -113704,8 +106262,6 @@ entities: pos: 42.5,8.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12695 @@ -113714,8 +106270,6 @@ entities: pos: 30.5,33.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12729 @@ -113724,8 +106278,6 @@ entities: pos: 31.5,23.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12754 @@ -113734,8 +106286,6 @@ entities: pos: 27.5,27.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12757 @@ -113744,8 +106294,6 @@ entities: pos: 38.5,25.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12794 @@ -113753,8 +106301,6 @@ entities: - pos: 29.5,23.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12796 @@ -113762,8 +106308,6 @@ entities: - pos: 13.5,14.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12833 @@ -113772,8 +106316,6 @@ entities: pos: 37.5,18.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12834 @@ -113782,8 +106324,6 @@ entities: pos: 38.5,14.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12835 @@ -113792,8 +106332,6 @@ entities: pos: 31.5,14.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12995 @@ -113801,8 +106339,6 @@ entities: - pos: 20.5,15.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12996 @@ -113810,8 +106346,6 @@ entities: - pos: 26.5,15.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 13005 @@ -113819,8 +106353,6 @@ entities: - pos: 33.5,41.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 13026 @@ -113829,8 +106361,6 @@ entities: pos: 46.5,36.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 13028 @@ -113838,8 +106368,6 @@ entities: - pos: 33.5,18.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 13029 @@ -113848,8 +106376,6 @@ entities: pos: 27.5,42.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 13030 @@ -113858,8 +106384,6 @@ entities: pos: 37.5,40.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 13045 @@ -113868,8 +106392,6 @@ entities: pos: 30.5,50.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 14231 @@ -113878,8 +106400,6 @@ entities: pos: -20.5,-24.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 14660 @@ -113888,8 +106408,6 @@ entities: pos: -7.5,-24.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 14728 @@ -113897,8 +106415,6 @@ entities: - pos: -25.5,-33.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 14729 @@ -113907,8 +106423,6 @@ entities: pos: -35.5,-34.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 14733 @@ -113917,8 +106431,6 @@ entities: pos: -15.5,-34.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 14741 @@ -113927,8 +106439,6 @@ entities: pos: -20.5,-31.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 14742 @@ -113937,8 +106447,6 @@ entities: pos: -14.5,-31.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 14924 @@ -113947,8 +106455,6 @@ entities: pos: -27.5,-35.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 15261 @@ -113957,8 +106463,6 @@ entities: pos: -7.5,-35.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 15262 @@ -113967,8 +106471,6 @@ entities: pos: -34.5,-50.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 15263 @@ -113977,8 +106479,6 @@ entities: pos: -24.5,-50.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 15305 @@ -113989,8 +106489,6 @@ entities: - ShutdownSubscribers: - 24600 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 15307 @@ -114001,8 +106499,6 @@ entities: - ShutdownSubscribers: - 24600 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 15319 @@ -114011,8 +106507,6 @@ entities: pos: -20.5,-43.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 15332 @@ -114020,8 +106514,6 @@ entities: - pos: -11.5,-47.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 15333 @@ -114030,8 +106522,6 @@ entities: pos: -11.5,-50.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 15334 @@ -114040,8 +106530,6 @@ entities: pos: -15.5,-43.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 15348 @@ -114050,8 +106538,6 @@ entities: pos: -17.5,-49.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 15541 @@ -114060,8 +106546,6 @@ entities: pos: -20.5,-54.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 15542 @@ -114070,8 +106554,6 @@ entities: pos: -24.5,-57.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 16117 @@ -114080,8 +106562,6 @@ entities: pos: -15.5,-24.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 16399 @@ -114090,40 +106570,30 @@ entities: pos: -53.5,-55.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - uid: 16400 components: - rot: 1.5707963267948966 rad pos: -53.5,-52.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - uid: 16420 components: - rot: -1.5707963267948966 rad pos: -49.5,-47.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - uid: 16421 components: - rot: -1.5707963267948966 rad pos: -50.5,-52.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - uid: 17686 components: - rot: 3.141592653589793 rad pos: -28.5,-9.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 17704 @@ -114132,8 +106602,6 @@ entities: pos: -28.5,-0.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 20659 @@ -114141,8 +106609,6 @@ entities: - pos: -2.5,-23.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 20992 @@ -114150,8 +106616,6 @@ entities: - pos: 10.5,-29.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 21003 @@ -114159,8 +106623,6 @@ entities: - pos: 21.5,-30.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 21005 @@ -114169,8 +106631,6 @@ entities: pos: 24.5,-31.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 21011 @@ -114179,8 +106639,6 @@ entities: pos: 8.5,-29.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 21020 @@ -114188,8 +106646,6 @@ entities: - pos: 2.5,-29.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 21021 @@ -114198,8 +106654,6 @@ entities: pos: 3.5,-35.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 21027 @@ -114208,8 +106662,6 @@ entities: pos: 10.5,-50.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 21068 @@ -114218,8 +106670,6 @@ entities: pos: 25.5,-56.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 21074 @@ -114227,8 +106677,6 @@ entities: - pos: 7.5,-54.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 21075 @@ -114237,8 +106685,6 @@ entities: pos: 9.5,-44.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 21097 @@ -114247,8 +106693,6 @@ entities: pos: 25.5,-41.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 21098 @@ -114256,8 +106700,6 @@ entities: - pos: 20.5,-37.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 21099 @@ -114265,8 +106707,6 @@ entities: - pos: 15.5,-36.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 21107 @@ -114275,8 +106715,6 @@ entities: pos: 14.5,-19.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 21161 @@ -114285,8 +106723,6 @@ entities: pos: 32.5,-43.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 21562 @@ -114295,8 +106731,6 @@ entities: pos: -30.5,-66.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 21563 @@ -114305,8 +106739,6 @@ entities: pos: -25.5,-67.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 21564 @@ -114315,8 +106747,6 @@ entities: pos: -16.5,-73.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 21608 @@ -114325,8 +106755,6 @@ entities: pos: 1.5,-69.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 21645 @@ -114334,8 +106762,6 @@ entities: - pos: -5.5,-61.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 21646 @@ -114344,8 +106770,6 @@ entities: pos: -7.5,-71.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 22019 @@ -114354,8 +106778,6 @@ entities: pos: -2.5,-57.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 22021 @@ -114364,8 +106786,6 @@ entities: pos: -2.5,-46.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 22023 @@ -114374,8 +106794,6 @@ entities: pos: -2.5,-36.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 22183 @@ -114384,8 +106802,6 @@ entities: pos: 19.5,-48.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 22189 @@ -114394,8 +106810,6 @@ entities: pos: 23.5,-49.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 23875 @@ -114403,8 +106817,6 @@ entities: - pos: 54.5,25.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 23879 @@ -114412,8 +106824,6 @@ entities: - pos: 51.5,28.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 23881 @@ -114422,8 +106832,6 @@ entities: pos: 49.5,15.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24030 @@ -114431,8 +106839,6 @@ entities: - pos: 49.5,19.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 24334 @@ -114441,8 +106847,6 @@ entities: pos: -21.5,-18.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 25920 @@ -114451,47 +106855,35 @@ entities: pos: 103.5,4.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - uid: 25921 components: - rot: -1.5707963267948966 rad pos: 98.5,2.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - uid: 25922 components: - rot: 1.5707963267948966 rad pos: 111.5,-0.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - uid: 25923 components: - rot: 1.5707963267948966 rad pos: 106.5,-3.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - uid: 25924 components: - pos: 104.5,-13.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - uid: 26578 components: - rot: -1.5707963267948966 rad pos: 12.5,-37.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - proto: GasVolumePump @@ -114519,42 +106911,6 @@ entities: - pos: 111.5,2.5 parent: 5350 type: Transform -- proto: GeneratorPlasma - entities: - - uid: 14054 - components: - - pos: 58.5,36.5 - parent: 5350 - type: Transform - - uid: 17451 - components: - - pos: -47.5,-35.5 - parent: 5350 - type: Transform - - uid: 23226 - components: - - pos: -37.5,-49.5 - parent: 5350 - type: Transform -- proto: GeneratorPlasmaMachineCircuitboard - entities: - - uid: 11025 - components: - - pos: 32.445953,6.60565 - parent: 5350 - type: Transform - - uid: 11034 - components: - - pos: 32.570953,6.465025 - parent: 5350 - type: Transform -- proto: GeneratorUranium - entities: - - uid: 13931 - components: - - pos: 48.5,30.5 - parent: 5350 - type: Transform - proto: Girder entities: - uid: 2065 @@ -125046,8 +117402,6 @@ entities: - pos: 38.5,-40.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - proto: MachineAnomalyVessel entities: - uid: 22376 @@ -127627,6 +119981,42 @@ entities: - pos: -6.5,36.5 parent: 5350 type: Transform +- proto: PortableGeneratorPacman + entities: + - uid: 14054 + components: + - pos: 58.5,36.5 + parent: 5350 + type: Transform + - uid: 17451 + components: + - pos: -47.5,-35.5 + parent: 5350 + type: Transform + - uid: 23226 + components: + - pos: -37.5,-49.5 + parent: 5350 + type: Transform +- proto: PortableGeneratorPacmanMachineCircuitboard + entities: + - uid: 11025 + components: + - pos: 32.445953,6.60565 + parent: 5350 + type: Transform + - uid: 11034 + components: + - pos: 32.570953,6.465025 + parent: 5350 + type: Transform +- proto: PortableGeneratorSuperPacman + entities: + - uid: 13931 + components: + - pos: 48.5,30.5 + parent: 5350 + type: Transform - proto: PortableScrubber entities: - uid: 8998 @@ -128842,8 +121232,6 @@ entities: pos: -21.5,-20.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - uid: 1033 components: - rot: 3.141592653589793 rad @@ -129257,8 +121645,6 @@ entities: pos: -43.5,25.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - uid: 4773 components: - rot: 3.141592653589793 rad @@ -129715,8 +122101,6 @@ entities: pos: -23.5,-24.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - uid: 10433 components: - rot: 1.5707963267948966 rad @@ -129789,8 +122173,6 @@ entities: - pos: 35.5,-18.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - uid: 11506 components: - pos: 44.5,-24.5 @@ -130207,23 +122589,17 @@ entities: - pos: -11.5,-23.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - uid: 14641 components: - pos: -15.5,-22.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - uid: 14666 components: - rot: 3.141592653589793 rad pos: -16.5,-26.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - uid: 14855 components: - rot: 3.141592653589793 rad @@ -130238,16 +122614,12 @@ entities: pos: -14.5,-20.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - uid: 15365 components: - rot: -1.5707963267948966 rad pos: -30.5,-42.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - uid: 15618 components: - pos: -8.5,-18.5 @@ -130461,38 +122833,28 @@ entities: - pos: 8.5,-18.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - uid: 16219 components: - rot: -1.5707963267948966 rad pos: -27.5,-42.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - uid: 16221 components: - pos: -31.5,-39.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - uid: 16223 components: - pos: -24.5,-39.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - uid: 16251 components: - rot: 1.5707963267948966 rad pos: 12.5,-11.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - uid: 16423 components: - rot: 1.5707963267948966 rad @@ -130825,8 +123187,6 @@ entities: pos: 4.5,-11.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - uid: 22034 components: - rot: 1.5707963267948966 rad @@ -131395,8 +123755,6 @@ entities: - pos: 5.5,-44.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - uid: 24648 components: - rot: 1.5707963267948966 rad @@ -131448,24 +123806,18 @@ entities: - pos: -9.5,-31.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - uid: 24828 components: - rot: 3.141592653589793 rad pos: -9.5,-29.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - uid: 24836 components: - rot: 3.141592653589793 rad pos: -5.5,-35.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - uid: 26361 components: - pos: 99.5,2.5 @@ -131527,16 +123879,12 @@ entities: pos: 9.5,35.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - uid: 26600 components: - rot: -1.5707963267948966 rad pos: -25.5,-23.5 parent: 5350 type: Transform - - enabled: False - type: AmbientSound - proto: PoweredlightExterior entities: - uid: 26352 @@ -139871,9 +132219,14 @@ entities: - pos: 9.5,-47.5 parent: 5350 type: Transform - - SecondsUntilStateChange: -31820.984 - state: Closing + - state: Closed type: Door + - canCollide: True + type: Physics + - enabled: True + type: Occluder + - airBlocked: True + type: Airtight - links: - 19435 type: DeviceLinkSink @@ -139882,9 +132235,14 @@ entities: - pos: 10.5,-47.5 parent: 5350 type: Transform - - SecondsUntilStateChange: -31820.984 - state: Closing + - state: Closed type: Door + - canCollide: True + type: Physics + - enabled: True + type: Occluder + - airBlocked: True + type: Airtight - links: - 19435 type: DeviceLinkSink @@ -139893,9 +132251,14 @@ entities: - pos: 11.5,-47.5 parent: 5350 type: Transform - - SecondsUntilStateChange: -31820.984 - state: Closing + - state: Closed type: Door + - canCollide: True + type: Physics + - enabled: True + type: Occluder + - airBlocked: True + type: Airtight - links: - 19435 type: DeviceLinkSink @@ -139904,9 +132267,14 @@ entities: - pos: 13.5,-47.5 parent: 5350 type: Transform - - SecondsUntilStateChange: -31820.984 - state: Closing + - state: Closed type: Door + - canCollide: True + type: Physics + - enabled: True + type: Occluder + - airBlocked: True + type: Airtight - links: - 19435 type: DeviceLinkSink @@ -139915,9 +132283,14 @@ entities: - pos: 14.5,-47.5 parent: 5350 type: Transform - - SecondsUntilStateChange: -31820.984 - state: Closing + - state: Closed type: Door + - canCollide: True + type: Physics + - enabled: True + type: Occluder + - airBlocked: True + type: Airtight - links: - 19435 type: DeviceLinkSink @@ -139926,9 +132299,14 @@ entities: - pos: 15.5,-47.5 parent: 5350 type: Transform - - SecondsUntilStateChange: -31820.984 - state: Closing + - state: Closed type: Door + - canCollide: True + type: Physics + - enabled: True + type: Occluder + - airBlocked: True + type: Airtight - links: - 19435 type: DeviceLinkSink @@ -142312,26 +134690,36 @@ entities: type: Transform - uid: 23333 components: + - name: SMES Bank 1 + type: MetaData - pos: 43.5,15.5 parent: 5350 type: Transform - uid: 23334 components: + - name: SMES Bank 2 + type: MetaData - pos: 43.5,16.5 parent: 5350 type: Transform - uid: 23335 components: + - name: SMES Bank 3 + type: MetaData - pos: 43.5,17.5 parent: 5350 type: Transform - uid: 23889 components: + - name: North Engineering SMES + type: MetaData - pos: 56.5,30.5 parent: 5350 type: Transform - uid: 25868 components: + - name: AI Sat/Telecomms SMES + type: MetaData - pos: 109.5,2.5 parent: 5350 type: Transform @@ -145249,6 +137637,8 @@ entities: type: Transform - uid: 10167 components: + - name: South Engineering Substation + type: MetaData - pos: 60.5,7.5 parent: 5350 type: Transform @@ -145324,11 +137714,15 @@ entities: type: Transform - uid: 23896 components: + - name: North Engineering Substation + type: MetaData - pos: 57.5,30.5 parent: 5350 type: Transform - uid: 25952 components: + - name: AI Sat/Telecomms Substation + type: MetaData - pos: 108.5,2.5 parent: 5350 type: Transform diff --git a/Resources/Maps/omega.yml b/Resources/Maps/omega.yml index e7b1c41b81e..56b61dc1ae5 100644 --- a/Resources/Maps/omega.yml +++ b/Resources/Maps/omega.yml @@ -3,32 +3,32 @@ meta: postmapinit: false tilemap: 0: Space - 6: FloorAsteroidSand - 10: FloorAsteroidTile - 11: FloorBar - 14: FloorBlueCircuit - 22: FloorDark - 26: FloorDarkMini - 27: FloorDarkMono - 29: FloorDarkPavement - 34: FloorEighties - 37: FloorFreezer - 40: FloorGrass - 44: FloorGreenCircuit - 48: FloorHydro - 50: FloorLaundry - 51: FloorLino - 55: FloorMono - 60: FloorReinforced - 63: FloorShowroom - 71: FloorSteel - 83: FloorTechMaint - 84: FloorTechMaint2 - 87: FloorWhite - 97: FloorWood - 99: Lattice - 100: Plating - 101: PlatingAsteroid + 7: FloorAsteroidSand + 11: FloorAsteroidTile + 12: FloorBar + 15: FloorBlueCircuit + 26: FloorDark + 30: FloorDarkMini + 31: FloorDarkMono + 33: FloorDarkPavement + 38: FloorEighties + 41: FloorFreezer + 44: FloorGrass + 51: FloorGreenCircuit + 55: FloorHydro + 58: FloorLaundry + 59: FloorLino + 63: FloorMono + 71: FloorReinforced + 74: FloorShowroom + 83: FloorSteel + 95: FloorTechMaint + 96: FloorTechMaint2 + 99: FloorWhite + 109: FloorWood + 111: Lattice + 112: Plating + 113: PlatingAsteroid entities: - proto: "" entities: @@ -52,179 +52,179 @@ entities: - chunks: -1,0: ind: -1,0 - tiles: MwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADYQAAAAAAYQAAAAACFgAAAAADZAAAAAAACwAAAAADRwAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADYQAAAAACYQAAAAACFgAAAAABZAAAAAAACwAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABZAAAAAAAZAAAAAAACwAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAACYQAAAAABYQAAAAABYQAAAAAAFgAAAAABCwAAAAABRwAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAABYQAAAAADYQAAAAACYQAAAAAAFgAAAAADCwAAAAABRwAAAAABRwAAAAACRwAAAAADRwAAAAADRwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAACYQAAAAABYQAAAAABYQAAAAACFgAAAAACCwAAAAACRwAAAAACRwAAAAAARwAAAAABRwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAYQAAAAADYQAAAAADYQAAAAAAFgAAAAACCwAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAYQAAAAAAYQAAAAACYQAAAAADFgAAAAACCwAAAAADRwAAAAABRwAAAAABRwAAAAADRwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADYQAAAAADYQAAAAAAYQAAAAADFgAAAAAACwAAAAABRwAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAYQAAAAADYQAAAAAAYQAAAAADFgAAAAAACwAAAAACCwAAAAABRwAAAAADRwAAAAAARwAAAAACCwAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABCwAAAAADRwAAAAACRwAAAAADRwAAAAAACwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABCwAAAAACCwAAAAAACwAAAAACCwAAAAACCwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAACwAAAAABCwAAAAABCwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAACRwAAAAAAZAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAAAZAAAAAAA + tiles: OwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADbQAAAAAAbQAAAAACGgAAAAADcAAAAAAADAAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADbQAAAAACbQAAAAACGgAAAAABcAAAAAAADAAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABcAAAAAAAcAAAAAAADAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAACXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACbQAAAAABbQAAAAABbQAAAAAAGgAAAAABDAAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAABbQAAAAADbQAAAAACbQAAAAAAGgAAAAADDAAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAADUwAAAAACXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACbQAAAAABbQAAAAABbQAAAAACGgAAAAACDAAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAbQAAAAADbQAAAAADbQAAAAAAGgAAAAACDAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAbQAAAAAAbQAAAAACbQAAAAADGgAAAAACDAAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADbQAAAAADbQAAAAAAbQAAAAADGgAAAAAADAAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAbQAAAAADbQAAAAAAbQAAAAADGgAAAAAADAAAAAACDAAAAAABUwAAAAADUwAAAAAAUwAAAAACDAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABDAAAAAADUwAAAAACUwAAAAADUwAAAAAADAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABDAAAAAACDAAAAAAADAAAAAACDAAAAAACDAAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADAAAAAABDAAAAAABDAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAcAAAAAAA version: 6 0,0: ind: 0,0 - tiles: CwAAAAABZAAAAAAAFgAAAAAAFgAAAAADFgAAAAACFgAAAAABFgAAAAADFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAACwAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAACZAAAAAAAZAAAAAAACwAAAAABCwAAAAADCwAAAAADCwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAACZAAAAAAAZAAAAAAACwAAAAABCwAAAAABCwAAAAACCwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAARwAAAAAARwAAAAABRwAAAAADZAAAAAAAZAAAAAAACwAAAAAAFgAAAAAAFgAAAAACFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAACZAAAAAAAZAAAAAAACwAAAAABFgAAAAABFgAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAACwAAAAADFgAAAAACFgAAAAADFgAAAAACFgAAAAADFgAAAAADFgAAAAADFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAAZAAAAAAAJQAAAAAAJQAAAAAACwAAAAAAFgAAAAADFgAAAAADFgAAAAADYQAAAAAAYQAAAAABYQAAAAAAYQAAAAACVAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAACwAAAAABFgAAAAADFgAAAAAAFgAAAAADZAAAAAAAYQAAAAADYQAAAAABYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADZAAAAAAAJQAAAAAAJQAAAAAACwAAAAACFgAAAAADFgAAAAAAFgAAAAAAZAAAAAAAYQAAAAAAYQAAAAABYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAARwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACZAAAAAAARwAAAAAARwAAAAADVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACRwAAAAABRwAAAAAARwAAAAAAFgAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADRwAAAAABRwAAAAAARwAAAAABFgAAAAABZAAAAAAARwAAAAABRwAAAAADRwAAAAADRwAAAAAARwAAAAAB + tiles: DAAAAAABcAAAAAAAGgAAAAAAGgAAAAADGgAAAAACGgAAAAABGgAAAAADGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAADAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAACcAAAAAAAcAAAAAAADAAAAAABDAAAAAADDAAAAAADDAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAACcAAAAAAAcAAAAAAADAAAAAABDAAAAAABDAAAAAACDAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAADAAAAAAAGgAAAAAAGgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAADAAAAAABGgAAAAABGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAADAAAAAADGgAAAAACGgAAAAADGgAAAAACGgAAAAADGgAAAAADGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAKQAAAAAAKQAAAAAADAAAAAAAGgAAAAADGgAAAAADGgAAAAADbQAAAAAAbQAAAAABbQAAAAAAbQAAAAACYAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADAAAAAABGgAAAAADGgAAAAAAGgAAAAADcAAAAAAAbQAAAAADbQAAAAABbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAKQAAAAAAKQAAAAAADAAAAAACGgAAAAADGgAAAAAAGgAAAAAAcAAAAAAAbQAAAAAAbQAAAAABbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAUwAAAAAAUwAAAAADYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACUwAAAAABUwAAAAAAUwAAAAAAGgAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADUwAAAAABUwAAAAAAUwAAAAABGgAAAAABcAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAAAUwAAAAAB version: 6 -1,1: ind: -1,1 - tiles: ZAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAACRwAAAAACRwAAAAAAZAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAFgAAAAACZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAACRwAAAAACRwAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAABRwAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAADRwAAAAABRwAAAAACRwAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAADRwAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAADYQAAAAABZAAAAAAAFgAAAAABFgAAAAACZAAAAAAAFgAAAAADLAAAAAAALAAAAAAAFgAAAAABLAAAAAAALAAAAAAAFgAAAAABYQAAAAABYQAAAAAAYQAAAAADYQAAAAAAYQAAAAABYQAAAAACFgAAAAADFgAAAAADZAAAAAAAFgAAAAACLAAAAAAAFgAAAAACFgAAAAABFgAAAAADLAAAAAAAFgAAAAABYQAAAAACYQAAAAABYQAAAAAAYQAAAAACYQAAAAABZAAAAAAAFgAAAAAAFgAAAAABZAAAAAAAFgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAFgAAAAABZAAAAAAAYQAAAAAAYQAAAAACYQAAAAAAYQAAAAACZAAAAAAAFgAAAAABFgAAAAABZAAAAAAAFgAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABZAAAAAAAZAAAAAAAFgAAAAADFgAAAAAAZAAAAAAAFgAAAAAAFgAAAAACFgAAAAADLAAAAAAAFgAAAAADFgAAAAACJQAAAAAAZAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAADZAAAAAAAFgAAAAACFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAJQAAAAAAJQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAFgAAAAAAFgAAAAABFgAAAAACFgAAAAACMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAPwAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAFgAAAAADFgAAAAABFgAAAAADFgAAAAABMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAABFgAAAAAAFgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAABgAAAAAABgAAAAAABgAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAABFgAAAAABZAAAAAAAFgAAAAAAFgAAAAACFgAAAAADFgAAAAAAFgAAAAACFgAAAAAD + tiles: cAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAAAcAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAADbQAAAAABcAAAAAAAGgAAAAABGgAAAAACcAAAAAAAGgAAAAADMwAAAAAAMwAAAAAAGgAAAAABMwAAAAAAMwAAAAAAGgAAAAABbQAAAAABbQAAAAAAbQAAAAADbQAAAAAAbQAAAAABbQAAAAACGgAAAAADGgAAAAADcAAAAAAAGgAAAAACMwAAAAAAGgAAAAACGgAAAAABGgAAAAADMwAAAAAAGgAAAAABbQAAAAACbQAAAAABbQAAAAAAbQAAAAACbQAAAAABcAAAAAAAGgAAAAAAGgAAAAABcAAAAAAAGgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAGgAAAAABcAAAAAAAbQAAAAAAbQAAAAACbQAAAAAAbQAAAAACcAAAAAAAGgAAAAABGgAAAAABcAAAAAAAGgAAAAADMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABcAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAADMwAAAAAAGgAAAAADGgAAAAACKQAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAADcAAAAAAAGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAACGgAAAAACOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAASgAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAADGgAAAAABOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAAAGgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAABwAAAAAABwAAAAAABwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAABGgAAAAABcAAAAAAAGgAAAAAAGgAAAAACGgAAAAADGgAAAAAAGgAAAAACGgAAAAAD version: 6 0,1: ind: 0,1 - tiles: RwAAAAACZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAADRwAAAAADRwAAAAACRwAAAAACFgAAAAAAZAAAAAAARwAAAAABRwAAAAADZAAAAAAAZAAAAAAARwAAAAADRwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAAARwAAAAACRwAAAAADRwAAAAACFgAAAAABZAAAAAAARwAAAAACRwAAAAACZAAAAAAARwAAAAABRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABZAAAAAAARwAAAAACZAAAAAAAZAAAAAAARwAAAAACRwAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAABRwAAAAADRwAAAAABRwAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAADZAAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAADRwAAAAADRwAAAAADRwAAAAABRwAAAAACRwAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAAAZAAAAAAARwAAAAACKAAAAAAAKAAAAAAAKAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACFgAAAAABZAAAAAAAFgAAAAADFgAAAAACZAAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAACRwAAAAADFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABFgAAAAADZAAAAAAAFgAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABFgAAAAADZAAAAAAAFgAAAAACFgAAAAAAZAAAAAAAYQAAAAACYQAAAAADYQAAAAADYQAAAAADYQAAAAABFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABFgAAAAADZAAAAAAAFgAAAAACFgAAAAACFgAAAAADYQAAAAABYQAAAAACYQAAAAADYQAAAAAAYQAAAAADFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAAFgAAAAADZAAAAAAAFgAAAAACFgAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAABFgAAAAABFgAAAAADFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAFgAAAAACFgAAAAADZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADFgAAAAADFgAAAAADFgAAAAAAFgAAAAABZAAAAAAAFgAAAAACYQAAAAABYQAAAAADYQAAAAABPwAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADFgAAAAADFgAAAAACFgAAAAACFgAAAAACZAAAAAAAFgAAAAAAYQAAAAACYQAAAAACYQAAAAACZAAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAACFgAAAAADFgAAAAACFgAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAADFgAAAAAAZAAAAAAAFgAAAAADFgAAAAACZAAAAAAAFgAAAAADFgAAAAADZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAC + tiles: UwAAAAACcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAADUwAAAAADUwAAAAACUwAAAAACGgAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAAAUwAAAAACUwAAAAADUwAAAAACGgAAAAABcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAUwAAAAABUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAcAAAAAAAUwAAAAACLAAAAAAALAAAAAAALAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACGgAAAAABcAAAAAAAGgAAAAADGgAAAAACcAAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAADGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABGgAAAAADcAAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABGgAAAAADcAAAAAAAGgAAAAACGgAAAAAAcAAAAAAAbQAAAAACbQAAAAADbQAAAAADbQAAAAADbQAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABGgAAAAADcAAAAAAAGgAAAAACGgAAAAACGgAAAAADbQAAAAABbQAAAAACbQAAAAADbQAAAAAAbQAAAAADGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAGgAAAAADcAAAAAAAGgAAAAACGgAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAABGgAAAAABGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADGgAAAAADGgAAAAADGgAAAAAAGgAAAAABcAAAAAAAGgAAAAACbQAAAAABbQAAAAADbQAAAAABSgAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADGgAAAAADGgAAAAACGgAAAAACGgAAAAACcAAAAAAAGgAAAAAAbQAAAAACbQAAAAACbQAAAAACcAAAAAAASgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAACGgAAAAADGgAAAAACGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAADGgAAAAAAcAAAAAAAGgAAAAADGgAAAAACcAAAAAAAGgAAAAADGgAAAAADcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAC version: 6 0,-1: ind: 0,-1 - tiles: RwAAAAADRwAAAAABZAAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAABFgAAAAAAZAAAAAAAFgAAAAAAFgAAAAADVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADZAAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAAAFgAAAAACZAAAAAAAFgAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAAAFgAAAAADZAAAAAAAYwAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAABFgAAAAADZAAAAAAAYwAAAAAAZAAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAACZAAAAAAAYwAAAAAAFgAAAAABVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAAAZAAAAAAAZAAAAAAACwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAAAVAAAAAAAZAAAAAAACwAAAAABZAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAVAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAABZAAAAAAAZAAAAAAACwAAAAAAZAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAARwAAAAACRwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACZAAAAAAAZAAAAAAAUwAAAAAACwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAAAZAAAAAAAZAAAAAAACwAAAAAAZAAAAAAAFgAAAAADFgAAAAACFgAAAAACFgAAAAACFgAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAAARwAAAAABCwAAAAACZAAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAABRwAAAAAACwAAAAADZAAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAABVAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAAAZAAAAAAAZAAAAAAACwAAAAABZAAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAADHQAAAAAAHQAAAAABZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAA + tiles: UwAAAAADUwAAAAABcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAABGgAAAAAAcAAAAAAAGgAAAAAAGgAAAAADYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAGgAAAAACcAAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAGgAAAAADcAAAAAAAbwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAABGgAAAAADcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAACcAAAAAAAbwAAAAAAGgAAAAABYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAADAAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAYAAAAAAAcAAAAAAADAAAAAABcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAADAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAUwAAAAACUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAXwAAAAAADAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAADAAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAACGgAAAAACGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAABDAAAAAACcAAAAAAAIQAAAAADIQAAAAABIQAAAAACIQAAAAACIQAAAAABIQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAABUwAAAAAADAAAAAADcAAAAAAAIQAAAAADIQAAAAAAIQAAAAADIQAAAAABIQAAAAACIQAAAAABYAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAADAAAAAABcAAAAAAAIQAAAAABIQAAAAADIQAAAAACIQAAAAADIQAAAAAAIQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: VwAAAAADVwAAAAABZAAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAABVwAAAAAAZAAAAAAARwAAAAADRwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACVwAAAAABVwAAAAAAVwAAAAACVwAAAAAAZAAAAAAARwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAACRwAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAADRwAAAAADRwAAAAACRwAAAAABRwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAADRwAAAAACRwAAAAACRwAAAAADRwAAAAADRwAAAAADRwAAAAABRwAAAAABRwAAAAAARwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAABRwAAAAAAFgAAAAABFgAAAAABFgAAAAABFgAAAAACFgAAAAADMAAAAAAAFgAAAAABKAAAAAAAKAAAAAAAKAAAAAAAZAAAAAAAZAAAAAAACwAAAAADCwAAAAABCwAAAAAAZAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKAAAAAAAKAAAAAAAZAAAAAAAZAAAAAAACwAAAAABCwAAAAADCwAAAAADCwAAAAACCwAAAAACFgAAAAADFgAAAAABFgAAAAAAFgAAAAACFgAAAAABMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAARwAAAAABCwAAAAACCwAAAAABRwAAAAADRwAAAAADRwAAAAADCwAAAAACMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAARwAAAAACCwAAAAACRwAAAAACRwAAAAADRwAAAAABRwAAAAABRwAAAAABFgAAAAAAFgAAAAAAFgAAAAACFgAAAAADFgAAAAABFgAAAAADFgAAAAAAFgAAAAADFgAAAAADRwAAAAACCwAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAACwAAAAADRwAAAAADRwAAAAACRwAAAAACRwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAACwAAAAACRwAAAAACRwAAAAAARwAAAAACRwAAAAABRwAAAAACMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAACwAAAAACRwAAAAABRwAAAAACRwAAAAADRwAAAAABRwAAAAABMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAADFgAAAAAAFgAAAAABZAAAAAAACwAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAACMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADYQAAAAACYQAAAAACFgAAAAABFgAAAAAACwAAAAABRwAAAAACRwAAAAAARwAAAAAARwAAAAADRwAAAAAC + tiles: YwAAAAADYwAAAAABcAAAAAAAYwAAAAAAYwAAAAABYwAAAAABYwAAAAABYwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAABYwAAAAAAYwAAAAACYwAAAAAAcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAANwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAAAGgAAAAABGgAAAAABGgAAAAABGgAAAAACGgAAAAADNwAAAAAAGgAAAAABLAAAAAAALAAAAAAALAAAAAAAcAAAAAAAcAAAAAAADAAAAAADDAAAAAABDAAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAALAAAAAAALAAAAAAAcAAAAAAAcAAAAAAADAAAAAABDAAAAAADDAAAAAADDAAAAAACDAAAAAACGgAAAAADGgAAAAABGgAAAAAAGgAAAAACGgAAAAABNwAAAAAANwAAAAAANwAAAAAANwAAAAAAUwAAAAABDAAAAAACDAAAAAABUwAAAAADUwAAAAADUwAAAAADDAAAAAACNwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAUwAAAAACDAAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAABGgAAAAAAGgAAAAAAGgAAAAACGgAAAAADGgAAAAABGgAAAAADGgAAAAAAGgAAAAADGgAAAAADUwAAAAACDAAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADAAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAADAAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAACOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADAAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAABOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAAAGgAAAAABcAAAAAAADAAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAACOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADbQAAAAACbQAAAAACGgAAAAABGgAAAAAADAAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAC version: 6 -2,1: ind: -2,1 - tiles: RwAAAAACRwAAAAADRwAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAABZAAAAAAARwAAAAACRwAAAAABYQAAAAADYQAAAAAAYQAAAAABYQAAAAABYQAAAAADYQAAAAABRwAAAAADRwAAAAACRwAAAAACRwAAAAADZAAAAAAARwAAAAADRwAAAAACZAAAAAAARwAAAAADRwAAAAAAZAAAAAAAYQAAAAABYQAAAAABYQAAAAACYQAAAAACYQAAAAACRwAAAAADRwAAAAACRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABZAAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAADRwAAAAAARwAAAAABRwAAAAACZAAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAABRwAAAAADRwAAAAABRwAAAAADRwAAAAADRwAAAAACRwAAAAADRwAAAAACRwAAAAACZAAAAAAARwAAAAAARwAAAAADZAAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAABZAAAAAAAFgAAAAACFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAADFgAAAAACFgAAAAABFgAAAAABFgAAAAADFgAAAAADZAAAAAAAFgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAABFgAAAAABFgAAAAABFgAAAAACFgAAAAAAFgAAAAACFgAAAAADFgAAAAACMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAAAFgAAAAABFgAAAAABFgAAAAAAFgAAAAADZAAAAAAAFgAAAAABMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAFgAAAAACZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAFgAAAAADYQAAAAAAYQAAAAAAYQAAAAACYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAABZAAAAAAARwAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAACZAAAAAAARwAAAAACRwAAAAADRwAAAAAAZAAAAAAAFgAAAAABYQAAAAABYQAAAAADPwAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAFgAAAAACYQAAAAACYQAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAABRwAAAAAARwAAAAADFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAADFgAAAAACZAAAAAAABgAAAAAAAAAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAAARwAAAAAARwAAAAAARwAAAAACFgAAAAABZAAAAAAABgAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAA + tiles: UwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAUwAAAAACUwAAAAABbQAAAAADbQAAAAAAbQAAAAABbQAAAAABbQAAAAADbQAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAADcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAbQAAAAABbQAAAAABbQAAAAACbQAAAAACbQAAAAACUwAAAAADUwAAAAACUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABcAAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAACUwAAAAACcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAACGgAAAAABGgAAAAABGgAAAAADGgAAAAADcAAAAAAAGgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAABGgAAAAABGgAAAAACGgAAAAAAGgAAAAACGgAAAAADGgAAAAACOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAAAGgAAAAABGgAAAAABGgAAAAAAGgAAAAADcAAAAAAAGgAAAAABOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAGgAAAAADbQAAAAAAbQAAAAAAbQAAAAACbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACcAAAAAAAUwAAAAACUwAAAAADUwAAAAAAcAAAAAAAGgAAAAABbQAAAAABbQAAAAADSgAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACbQAAAAACbQAAAAAAcAAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADGgAAAAACcAAAAAAABwAAAAAAAAAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACGgAAAAABcAAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA version: 6 -2,0: ind: -2,0 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAADZAAAAAAAYQAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAADZAAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAADMgAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAADZAAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAADRwAAAAABRwAAAAACRwAAAAADMgAAAAAAVAAAAAAARwAAAAABRwAAAAADRwAAAAADRwAAAAAAZAAAAAAARwAAAAABRwAAAAADZAAAAAAAFgAAAAADFgAAAAABFgAAAAADIgAAAAAAZAAAAAAAMwAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAABZAAAAAAARwAAAAADRwAAAAAAZAAAAAAAFgAAAAADFgAAAAAAFgAAAAADIgAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAAAZAAAAAAARwAAAAADRwAAAAADZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABRwAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADRwAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAADZAAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAAARwAAAAADRwAAAAADRwAAAAADRwAAAAABZAAAAAAARwAAAAACRwAAAAABZAAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAACRwAAAAAARwAAAAADRwAAAAADRwAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAAARwAAAAABRwAAAAABRwAAAAACZAAAAAAARwAAAAABRwAAAAACZAAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAACRwAAAAADFgAAAAACRwAAAAADRwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACZAAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAADFgAAAAADRwAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABRwAAAAAARwAAAAABRwAAAAADRwAAAAADRwAAAAADRwAAAAAARwAAAAAARwAAAAACRwAAAAABZAAAAAAAYQAAAAAAYQAAAAACYQAAAAADYQAAAAAAYQAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACZAAAAAAAYQAAAAABYQAAAAAAYQAAAAACYQAAAAADYQAAAAAB + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAADcAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAADcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADOgAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAADcAAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAADOgAAAAAAYAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAGgAAAAADGgAAAAABGgAAAAADJgAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAABcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAADJgAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAABcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAACcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAADGgAAAAACUwAAAAADUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAADGgAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABUwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAbQAAAAAAbQAAAAACbQAAAAADbQAAAAAAbQAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAbQAAAAABbQAAAAAAbQAAAAACbQAAAAADbQAAAAAB version: 6 -2,-1: ind: -2,-1 - tiles: FgAAAAAAFgAAAAACFgAAAAAAFgAAAAADFgAAAAABFgAAAAABYQAAAAACYQAAAAADYQAAAAADYQAAAAADZAAAAAAAFgAAAAAAFgAAAAADFgAAAAADZAAAAAAAVwAAAAAAFgAAAAAAFgAAAAADFgAAAAAAFgAAAAABFgAAAAADFgAAAAAAYQAAAAAAYQAAAAABYQAAAAADYQAAAAADZAAAAAAAFgAAAAADFgAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAFgAAAAABUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAFgAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAADRwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADRwAAAAACRwAAAAADRwAAAAACRwAAAAACRwAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAABRwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAADZAAAAAAARwAAAAABRwAAAAACZAAAAAAAFgAAAAAAFgAAAAACFgAAAAABFgAAAAACZAAAAAAAFgAAAAAAMAAAAAAAFgAAAAACRwAAAAADRwAAAAACRwAAAAADRwAAAAADZAAAAAAARwAAAAAARwAAAAAAZAAAAAAAFgAAAAABRwAAAAABRwAAAAAAFgAAAAACZAAAAAAAFgAAAAAAMAAAAAAAMAAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAAAZAAAAAAARwAAAAACRwAAAAADZAAAAAAAFgAAAAADRwAAAAACRwAAAAABFgAAAAADZAAAAAAAFgAAAAABMAAAAAAAFgAAAAABRwAAAAAARwAAAAAARwAAAAAARwAAAAADZAAAAAAARwAAAAACRwAAAAABZAAAAAAAFgAAAAADFgAAAAABFgAAAAAAFgAAAAADZAAAAAAAFgAAAAADMAAAAAAAMAAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAABZAAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAACVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAACZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAADZAAAAAAARwAAAAABRwAAAAADRwAAAAAARwAAAAACZAAAAAAAYQAAAAADYQAAAAACZAAAAAAARwAAAAACRwAAAAAARwAAAAADZAAAAAAARwAAAAADRwAAAAACRwAAAAADZAAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAAAZAAAAAAAYQAAAAAAYQAAAAACZAAAAAAA + tiles: GgAAAAAAGgAAAAACGgAAAAAAGgAAAAADGgAAAAABGgAAAAABbQAAAAACbQAAAAADbQAAAAADbQAAAAADcAAAAAAAGgAAAAAAGgAAAAADGgAAAAADcAAAAAAAYwAAAAAAGgAAAAAAGgAAAAADGgAAAAAAGgAAAAABGgAAAAADGgAAAAAAbQAAAAAAbQAAAAABbQAAAAADbQAAAAADcAAAAAAAGgAAAAADGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAGgAAAAABXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAANwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAADcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAGgAAAAAAGgAAAAACGgAAAAABGgAAAAACcAAAAAAAGgAAAAAANwAAAAAAGgAAAAACUwAAAAADUwAAAAACUwAAAAADUwAAAAADcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAGgAAAAABUwAAAAABUwAAAAAAGgAAAAACcAAAAAAAGgAAAAAANwAAAAAANwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAGgAAAAADUwAAAAACUwAAAAABGgAAAAADcAAAAAAAGgAAAAABNwAAAAAAGgAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAGgAAAAADGgAAAAABGgAAAAAAGgAAAAADcAAAAAAAGgAAAAADNwAAAAAANwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAADcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAbQAAAAADbQAAAAACcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAUwAAAAADUwAAAAACUwAAAAADcAAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAbQAAAAAAbQAAAAACcAAAAAAA version: 6 -1,2: ind: -1,2 - tiles: BgAAAAAABgAAAAAABgAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAFgAAAAAAFgAAAAACFgAAAAACFgAAAAABFgAAAAACFgAAAAABFgAAAAADFgAAAAACFgAAAAADBgAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAAAFgAAAAADFgAAAAAAFgAAAAAAFgAAAAABFgAAAAAAFgAAAAABFgAAAAAAFgAAAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAFgAAAAAAFgAAAAACFgAAAAABFgAAAAADFgAAAAACFgAAAAADFgAAAAADFgAAAAABFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAAAFgAAAAAAFgAAAAACFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAACGgAAAAABGgAAAAACGgAAAAABGgAAAAADGgAAAAACGgAAAAADBwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAAAGgAAAAAAGgAAAAABGgAAAAAAGgAAAAABGgAAAAAAGgAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAABGgAAAAADGgAAAAACGgAAAAADGgAAAAADGgAAAAABGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAAAGgAAAAAAGgAAAAACGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,2: ind: 0,2 - tiles: FgAAAAADFgAAAAADFgAAAAABFgAAAAADFgAAAAABFgAAAAAAFgAAAAABZAAAAAAAAAAAAAAAAAAAAAAABgAAAAAGZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAFgAAAAAAFgAAAAABFgAAAAADFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAACFgAAAAAAFgAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZQAAAAAAZQAAAAAABgAAAAAAZAAAAAAARwAAAAADFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZQAAAAAABgAAAAAAZAAAAAAARwAAAAABZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAABFgAAAAACZAAAAAAAFgAAAAABFgAAAAADFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAADFgAAAAAAFgAAAAADFgAAAAADFgAAAAACFgAAAAABFgAAAAACFgAAAAACFgAAAAABBgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAAAFgAAAAACZAAAAAAAFgAAAAAAFgAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAABZAAAAAAAZAAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + tiles: GgAAAAADGgAAAAADGgAAAAABGgAAAAADGgAAAAABGgAAAAAAGgAAAAABcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAGgAAAAAAGgAAAAABGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcQAAAAAAcQAAAAAABwAAAAAAcAAAAAAAUwAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcQAAAAAABwAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAACcAAAAAAAGgAAAAABGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAADGgAAAAAAGgAAAAADGgAAAAADGgAAAAACGgAAAAABGgAAAAACGgAAAAACGgAAAAABBwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAACcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 1,2: ind: 1,2 - tiles: RwAAAAAARwAAAAACZAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABRwAAAAACZAAAAAAAJQAAAAAAZAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAADRwAAAAACJQAAAAAAJQAAAAAAZAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAJQAAAAAAZAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAABgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAACgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: UwAAAAAAUwAAAAACcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAACcAAAAAAAKQAAAAAAcAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAACKQAAAAAAKQAAAAAAcAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAcAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAACwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,1: ind: 1,1 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAABFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAACZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAADRwAAAAADZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAACRwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAAARwAAAAABZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABRwAAAAABRwAAAAADRwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABRwAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAADRwAAAAADZAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAADcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAADcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,0: ind: 1,0 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAADRwAAAAACZAAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAAAZAAAAAAAFgAAAAAAFgAAAAACFgAAAAACFgAAAAACZAAAAAAAUwAAAAAAZAAAAAAARwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAFgAAAAABFgAAAAADFgAAAAABFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAADRwAAAAADZAAAAAAAZAAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAADRwAAAAACRwAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAABRwAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAACRwAAAAACRwAAAAACRwAAAAADRwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAADRwAAAAADZAAAAAAARwAAAAADRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAACGgAAAAACcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAABGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAADcAAAAAAAUwAAAAADUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,3: ind: 0,3 - tiles: BgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAABFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAFgAAAAABLAAAAAAALAAAAAAAFgAAAAAALAAAAAAALAAAAAAAFgAAAAACZAAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAALAAAAAAAFgAAAAAALAAAAAAAFgAAAAADLAAAAAAAFgAAAAACLAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAALAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACLAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAALAAAAAAAFgAAAAAAZAAAAAAALAAAAAAAZAAAAAAAFgAAAAADLAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAALAAAAAAAFgAAAAADFgAAAAABLAAAAAAAFgAAAAACFgAAAAABLAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAALAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAALAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAFgAAAAACLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAFgAAAAACZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAACFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAGgAAAAABMwAAAAAAMwAAAAAAGgAAAAAAMwAAAAAAMwAAAAAAGgAAAAACcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAGgAAAAAAMwAAAAAAGgAAAAADMwAAAAAAGgAAAAACMwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACMwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAGgAAAAAAcAAAAAAAMwAAAAAAcAAAAAAAGgAAAAADMwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAGgAAAAADGgAAAAABMwAAAAAAGgAAAAACGgAAAAABMwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAMwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAGgAAAAACcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,3: ind: 1,3 - tiles: ZAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,2: ind: -2,2 - tiles: RwAAAAACRwAAAAABRwAAAAACRwAAAAACRwAAAAAARwAAAAAAFgAAAAACZAAAAAAABgAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAABgAAAAAFBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAFBgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAHBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAABgAAAAAAZAAAAAAAYwAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: UwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAGgAAAAACcAAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAABwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,0: ind: 2,0 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: ZAAAAAAAZAAAAAAAYQAAAAADYQAAAAACYQAAAAACZAAAAAAAYwAAAAAABgAAAAAHBgAAAAAABgAAAAABBgAAAAADBgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAACYQAAAAACZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAADRwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAFgAAAAADRwAAAAABRwAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAACRwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAFgAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACRwAAAAABRwAAAAADZAAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADZAAAAAAAZAAAAAAARwAAAAADRwAAAAADZAAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAABRwAAAAACRwAAAAADRwAAAAADRwAAAAABRwAAAAABRwAAAAAARwAAAAABRwAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAACRwAAAAAARwAAAAACRwAAAAABRwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAABRwAAAAAARwAAAAABRwAAAAAARwAAAAABRwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACZAAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAAARwAAAAAD + tiles: cAAAAAAAcAAAAAAAbQAAAAADbQAAAAACbQAAAAACcAAAAAAAbwAAAAAABwAAAAAHBwAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbQAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAGgAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACUwAAAAABUwAAAAADcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAAD version: 6 0,-2: ind: 0,-2 - tiles: RwAAAAAARwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAABVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACZAAAAAAARwAAAAABLAAAAAAARwAAAAADRwAAAAADZAAAAAAAFgAAAAAAFgAAAAAAZAAAAAAAFgAAAAACFgAAAAAAFgAAAAABVwAAAAACVwAAAAADRwAAAAADRwAAAAAARwAAAAABRwAAAAADLAAAAAAALAAAAAAALAAAAAAAZAAAAAAAFgAAAAABFgAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAADVwAAAAAAVwAAAAABRwAAAAACRwAAAAAARwAAAAADRwAAAAACDgAAAAAADgAAAAAADgAAAAAAZAAAAAAAFgAAAAABFgAAAAACZAAAAAAARwAAAAADRwAAAAABRwAAAAACRwAAAAACRwAAAAACRwAAAAADRwAAAAACRwAAAAABRwAAAAABDgAAAAAARwAAAAACRwAAAAADZAAAAAAAFgAAAAACFgAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAADRwAAAAACRwAAAAABRwAAAAABZAAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAABRwAAAAACFgAAAAABFgAAAAABZAAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAAARwAAAAABRwAAAAABZAAAAAAAFgAAAAADFgAAAAACFgAAAAAAFgAAAAACZAAAAAAAFgAAAAAAFgAAAAADZAAAAAAAFgAAAAADFgAAAAAAFgAAAAADFgAAAAACFgAAAAADRwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADZAAAAAAAZAAAAAAARwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAACFgAAAAABFgAAAAACFgAAAAABFgAAAAAAFgAAAAACFgAAAAACFgAAAAAAFgAAAAAAFgAAAAABFgAAAAAAFgAAAAACFgAAAAACRwAAAAACRwAAAAADRwAAAAABRwAAAAAAFgAAAAACFgAAAAABFgAAAAACFgAAAAADFgAAAAABFgAAAAAAFgAAAAABFgAAAAADFgAAAAACFgAAAAADFgAAAAACFgAAAAAARwAAAAADRwAAAAACZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAABZAAAAAAAZAAAAAAAFgAAAAACZAAAAAAAZAAAAAAARwAAAAABRwAAAAABZAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAADFgAAAAABZAAAAAAAFgAAAAADFgAAAAABZAAAAAAADgAAAAAAFgAAAAABDgAAAAAAZAAAAAAARwAAAAAARwAAAAAAZAAAAAAAFgAAAAAAFgAAAAACFgAAAAACRwAAAAABFgAAAAADZAAAAAAAFgAAAAABFgAAAAABZAAAAAAADgAAAAAAFgAAAAACDgAAAAAAZAAAAAAARwAAAAACRwAAAAACZAAAAAAAFgAAAAAAFgAAAAAAFgAAAAACRwAAAAAAFgAAAAAAZAAAAAAAFgAAAAABFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + tiles: UwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAABYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAUwAAAAABMwAAAAAAUwAAAAADUwAAAAADcAAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAABYwAAAAACYwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAADMwAAAAAAMwAAAAAAMwAAAAAAcAAAAAAAGgAAAAABGgAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAADYwAAAAAAYwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAACDwAAAAAADwAAAAAADwAAAAAAcAAAAAAAGgAAAAABGgAAAAACcAAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAABDwAAAAAAUwAAAAACUwAAAAADcAAAAAAAGgAAAAACGgAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAABcAAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAACGgAAAAABGgAAAAABcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAGgAAAAADGgAAAAACGgAAAAAAGgAAAAACcAAAAAAAGgAAAAAAGgAAAAADcAAAAAAAGgAAAAADGgAAAAAAGgAAAAADGgAAAAACGgAAAAADUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAACGgAAAAABGgAAAAACGgAAAAABGgAAAAAAGgAAAAACGgAAAAACGgAAAAAAGgAAAAAAGgAAAAABGgAAAAAAGgAAAAACGgAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAAAGgAAAAACGgAAAAABGgAAAAACGgAAAAADGgAAAAABGgAAAAAAGgAAAAABGgAAAAADGgAAAAACGgAAAAADGgAAAAACGgAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAABcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADGgAAAAABcAAAAAAAGgAAAAADGgAAAAABcAAAAAAADwAAAAAAGgAAAAABDwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAACUwAAAAABGgAAAAADcAAAAAAAGgAAAAABGgAAAAABcAAAAAAADwAAAAAAGgAAAAACDwAAAAAAcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAACUwAAAAAAGgAAAAAAcAAAAAAAGgAAAAABGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABZAAAAAAARwAAAAABRwAAAAADRwAAAAABZAAAAAAAVwAAAAACRwAAAAACRwAAAAACRwAAAAADZAAAAAAAVwAAAAADVwAAAAABRwAAAAABZAAAAAAARwAAAAACRwAAAAADZAAAAAAARwAAAAAARwAAAAACRwAAAAABZAAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAADZAAAAAAAVwAAAAACVwAAAAACRwAAAAACZAAAAAAARwAAAAABRwAAAAABZAAAAAAARwAAAAACRwAAAAABRwAAAAACZAAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAABVwAAAAAAVwAAAAACVwAAAAABRwAAAAABZAAAAAAARwAAAAABRwAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAAAZAAAAAAARwAAAAABVwAAAAABRwAAAAABVwAAAAADZAAAAAAAVwAAAAADVwAAAAAARwAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAACRwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAACZAAAAAAAVwAAAAAAVwAAAAADZAAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAZAAAAAAARwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABVwAAAAADVwAAAAADVwAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAAAVwAAAAACRwAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAACRwAAAAADRwAAAAACVwAAAAABVwAAAAABVwAAAAAAVwAAAAABVwAAAAADVwAAAAADVwAAAAAAVwAAAAADVwAAAAADRwAAAAABRwAAAAACRwAAAAACRwAAAAADRwAAAAACRwAAAAACRwAAAAAAVwAAAAABVwAAAAABZAAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAABZAAAAAAARwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABZAAAAAAAZAAAAAAARwAAAAACRwAAAAACMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAVwAAAAABVwAAAAADZAAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAAAVwAAAAABZAAAAAAARwAAAAADRwAAAAADMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAARwAAAAACVwAAAAADZAAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAACVwAAAAACZAAAAAAARwAAAAADRwAAAAABMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAARwAAAAAAVwAAAAACZAAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAACVwAAAAAAZAAAAAAARwAAAAAARwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAUwAAAAABUwAAAAADUwAAAAABcAAAAAAAYwAAAAACUwAAAAACUwAAAAACUwAAAAADcAAAAAAAYwAAAAADYwAAAAABUwAAAAABcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAYwAAAAACYwAAAAADYwAAAAABYwAAAAADcAAAAAAAYwAAAAACYwAAAAACUwAAAAACcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAUwAAAAACUwAAAAABUwAAAAACcAAAAAAAYwAAAAABYwAAAAACYwAAAAADYwAAAAABYwAAAAAAYwAAAAACYwAAAAABUwAAAAABcAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAcAAAAAAAUwAAAAABYwAAAAABUwAAAAABYwAAAAADcAAAAAAAYwAAAAADYwAAAAAAUwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAACcAAAAAAAYwAAAAAAYwAAAAADcAAAAAAAYwAAAAABYwAAAAAAYwAAAAACYwAAAAAAYwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAADYwAAAAADYwAAAAAAYwAAAAADYwAAAAADYwAAAAACYwAAAAAAYwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAACYwAAAAABYwAAAAABYwAAAAAAYwAAAAABYwAAAAADYwAAAAADYwAAAAAAYwAAAAADYwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAAAYwAAAAABYwAAAAABcAAAAAAAYwAAAAAAYwAAAAACYwAAAAADYwAAAAABYwAAAAABcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAYwAAAAABYwAAAAADcAAAAAAAYwAAAAAAYwAAAAACYwAAAAABYwAAAAAAYwAAAAABcAAAAAAAUwAAAAADUwAAAAADOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAUwAAAAACYwAAAAADcAAAAAAAYwAAAAACYwAAAAAAYwAAAAADYwAAAAACYwAAAAACcAAAAAAAUwAAAAADUwAAAAABOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAUwAAAAAAYwAAAAACcAAAAAAAYwAAAAACYwAAAAADYwAAAAADYwAAAAACYwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: AAAAAAAAYwAAAAAAKAAAAAAARwAAAAADRwAAAAABRwAAAAACRwAAAAADKAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAKAAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAABKAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAKAAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAACKAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAABRwAAAAACZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAABRwAAAAADZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAABRwAAAAABZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAADFgAAAAAAZAAAAAAARwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAACFgAAAAACZAAAAAAARwAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAADRwAAAAABRwAAAAADMwAAAAAAMwAAAAAAFgAAAAAAFgAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAADRwAAAAADRwAAAAAARwAAAAABRwAAAAABFgAAAAADFgAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAADFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAAARwAAAAAARwAAAAAARwAAAAAD + tiles: AAAAAAAAbwAAAAAALAAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAADLAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAALAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABLAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAALAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAACLAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAADGgAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAACcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAABUwAAAAADOwAAAAAAOwAAAAAAGgAAAAAAGgAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAABGgAAAAADGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAD version: 6 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAVwAAAAADVwAAAAAAVwAAAAAAZAAAAAAABgAAAAAHBgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAADLAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAVwAAAAADZAAAAAAAFgAAAAAAFgAAAAADZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAABFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAADZAAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABZAAAAAAAZAAAAAAAFgAAAAADLAAAAAAAZAAAAAAARwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAABZAAAAAAAFgAAAAAAFgAAAAABZAAAAAAARwAAAAACRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAAAYwAAAAAAcAAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADMwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAYwAAAAADcAAAAAAAGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAGgAAAAADMwAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAGgAAAAAAGgAAAAABcAAAAAAAUwAAAAACUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAADRwAAAAACZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAADRwAAAAADZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAADRwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAACRwAAAAADZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAKAAAAAAARwAAAAAARwAAAAACRwAAAAADRwAAAAACKAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAALAAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAACLAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAARwAAAAADRwAAAAACRwAAAAADZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAARwAAAAACRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAARwAAAAADRwAAAAADRwAAAAADZAAAAAAAFgAAAAADFgAAAAACZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAAAZAAAAAAARwAAAAABFgAAAAADZAAAAAAARwAAAAACRwAAAAABZAAAAAAARwAAAAABVwAAAAACVwAAAAADVwAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAADRwAAAAABZAAAAAAARwAAAAAAFgAAAAADZAAAAAAARwAAAAABRwAAAAACZAAAAAAARwAAAAACVwAAAAAAVwAAAAADVwAAAAADRwAAAAACRwAAAAABRwAAAAADRwAAAAABRwAAAAABRwAAAAADRwAAAAADFgAAAAAAFgAAAAADRwAAAAACRwAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAACRwAAAAABRwAAAAAARwAAAAABRwAAAAABRwAAAAADZAAAAAAAFgAAAAADFgAAAAACZAAAAAAARwAAAAAARwAAAAACZAAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAACZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABFgAAAAABFgAAAAAAFgAAAAACFgAAAAADFgAAAAABFgAAAAACFgAAAAACZAAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAAAFgAAAAABRwAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAAFgAAAAABFgAAAAACFgAAAAACFgAAAAADRwAAAAAARwAAAAABRwAAAAABYQAAAAAAYQAAAAABYQAAAAABYQAAAAAAYQAAAAAAYQAAAAABZAAAAAAABgAAAAAABgAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAACYQAAAAAAYQAAAAADYQAAAAACZAAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAAAYQAAAAADZAAAAAAABgAAAAAAZAAAAAAAYQAAAAABYQAAAAADYQAAAAAAYQAAAAADYQAAAAACZAAAAAAABgAAAAAHBgAAAAAAZAAAAAAAVAAAAAAAYQAAAAABYQAAAAAAYQAAAAADZAAAAAAABgAAAAAAZAAAAAAAZAAAAAAAYQAAAAADYQAAAAADYQAAAAADZAAAAAAAZAAAAAAABgAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYQAAAAADYQAAAAAAYQAAAAAAZAAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAACAAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAADUwAAAAACUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAACUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAADUwAAAAADUwAAAAADcAAAAAAAGgAAAAADGgAAAAACcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAABGgAAAAADcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAUwAAAAABYwAAAAACYwAAAAADYwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAABcAAAAAAAUwAAAAAAGgAAAAADcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAUwAAAAACYwAAAAAAYwAAAAADYwAAAAADUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAADGgAAAAAAGgAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAADcAAAAAAAGgAAAAADGgAAAAACcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABGgAAAAABGgAAAAAAGgAAAAACGgAAAAADGgAAAAABGgAAAAACGgAAAAACcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAAAGgAAAAABUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAAGgAAAAABGgAAAAACGgAAAAACGgAAAAADUwAAAAAAUwAAAAABUwAAAAABbQAAAAAAbQAAAAABbQAAAAABbQAAAAAAbQAAAAAAbQAAAAABcAAAAAAABwAAAAAABwAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAACbQAAAAAAbQAAAAADbQAAAAACcAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAAAbQAAAAADcAAAAAAABwAAAAAAcAAAAAAAbQAAAAABbQAAAAADbQAAAAAAbQAAAAADbQAAAAACcAAAAAAABwAAAAAHBwAAAAAAcAAAAAAAYAAAAAAAbQAAAAABbQAAAAAAbQAAAAADcAAAAAAABwAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAADbQAAAAADcAAAAAAAcAAAAAAABwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAAAbQAAAAAAcAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAACAAAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAHBgAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAAAFgAAAAACFgAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAADBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAACZAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAADZAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAADFgAAAAABFgAAAAADZAAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAADFgAAAAACFgAAAAABZAAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAADBgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAFBgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAAAGgAAAAACGgAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAACcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAADcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADGgAAAAADGgAAAAABGgAAAAADcAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGgAAAAADGgAAAAACGgAAAAABcAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-3: ind: 2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAADBgAAAAACBgAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAADBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAADFgAAAAACFgAAAAACZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAACFgAAAAAAZAAAAAAABgAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAADbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAACGgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAAAcAAAAAAABwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAA version: 6 1,-3: ind: 1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAADBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAACBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAACBgAAAAAABgAAAAAABgAAAAAHBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAGBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAHBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAACBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAADBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAADBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACgAAAAAACgAAAAAACgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAAACgAAAAAACgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAACFgAAAAACFgAAAAADFgAAAAABFgAAAAABZAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAABFgAAAAADZAAAAAAAFgAAAAABFgAAAAADFgAAAAADZAAAAAAARwAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAACGgAAAAACGgAAAAADGgAAAAABGgAAAAABcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAADcAAAAAAAGgAAAAABGgAAAAADGgAAAAADcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: BgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADZAAAAAAARwAAAAABRwAAAAADZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACZAAAAAAARwAAAAADRwAAAAACZAAAAAAARwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAFgAAAAACRwAAAAAAZAAAAAAARwAAAAADRwAAAAAAZAAAAAAARwAAAAACRwAAAAAAZAAAAAAARwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAAARwAAAAACZAAAAAAARwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAARwAAAAADZAAAAAAARwAAAAADRwAAAAAAZAAAAAAARwAAAAADRwAAAAACZAAAAAAARwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAARwAAAAAARwAAAAADZAAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAABRwAAAAACRwAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAADZAAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAACRwAAAAACRwAAAAABRwAAAAABZAAAAAAARwAAAAAARwAAAAACZAAAAAAARwAAAAADRwAAAAABZAAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAADRwAAAAABRwAAAAABRwAAAAACRwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAADZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAABZAAAAAAARwAAAAADRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAABZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAABZAAAAAAARwAAAAAARwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAAD + tiles: BwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAACUwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAUwAAAAADcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAADcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAABcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAD version: 6 -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAABgAAAAAABgAAAAAAZAAAAAAAMAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAMAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAACZAAAAAAAYQAAAAACYQAAAAABYQAAAAADYQAAAAABZAAAAAAABgAAAAAAZAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAADYQAAAAABZAAAAAAAYQAAAAADYQAAAAACYQAAAAAABgAAAAAABgAAAAAAZAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAADYQAAAAACYQAAAAADYQAAAAACZAAAAAAAZAAAAAAABgAAAAAABgAAAAAAZAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAADYQAAAAAAYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAACFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAFgAAAAADZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAABRwAAAAACZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAFgAAAAAABgAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABZAAAAAAARwAAAAAARwAAAAABZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAFgAAAAABBgAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAFgAAAAAA + tiles: AAAAAAAAAAAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcAAAAAAANwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAANwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAACcAAAAAAAbQAAAAACbQAAAAABbQAAAAADbQAAAAABcAAAAAAABwAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAABcAAAAAAAbQAAAAADbQAAAAACbQAAAAAABwAAAAAABwAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAACbQAAAAADbQAAAAACcAAAAAAAcAAAAAAABwAAAAAABwAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAAAbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAAABwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAABBwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAABFgAAAAACZAAAAAAAFgAAAAABFgAAAAAAFgAAAAABZAAAAAAAFgAAAAACFgAAAAACFgAAAAACFgAAAAABZAAAAAAAVwAAAAABVwAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAABZAAAAAAAFgAAAAABFgAAAAABFgAAAAACZAAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAADVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAADFgAAAAADZAAAAAAAVwAAAAACVwAAAAABVwAAAAABVwAAAAADZAAAAAAAVwAAAAACVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAACFgAAAAABZAAAAAAAFgAAAAAAFgAAAAABFgAAAAADFgAAAAAAZAAAAAAAVwAAAAACVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAADVwAAAAABVwAAAAACVwAAAAABVwAAAAACVwAAAAACVwAAAAACVwAAAAADVwAAAAABVwAAAAACVwAAAAABMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACVwAAAAADVwAAAAABZAAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAADVwAAAAABVwAAAAAAVwAAAAABMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAABVwAAAAACMwAAAAAAZAAAAAAAZAAAAAAAYQAAAAADYQAAAAADYQAAAAABYQAAAAACYQAAAAACYQAAAAABYQAAAAAAZAAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAACVwAAAAADFgAAAAAAFgAAAAAAFgAAAAABYQAAAAACYQAAAAACYQAAAAABYQAAAAABYQAAAAADYQAAAAABYQAAAAABZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAAAFgAAAAACYQAAAAACYQAAAAAAYQAAAAACYQAAAAACYQAAAAADYQAAAAACYQAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAADZAAAAAAAVwAAAAADFgAAAAABFgAAAAAAFgAAAAAAYQAAAAABYQAAAAABYQAAAAADYQAAAAABYQAAAAADYQAAAAACYQAAAAACZAAAAAAAFgAAAAABFgAAAAADFgAAAAAAFgAAAAABVwAAAAADFgAAAAACFgAAAAAAFgAAAAACFgAAAAABFgAAAAABFgAAAAADYQAAAAADYQAAAAABYQAAAAABYQAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAACZAAAAAAAVwAAAAAD + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAACcAAAAAAAGgAAAAABGgAAAAAAGgAAAAABcAAAAAAAGgAAAAACGgAAAAACGgAAAAACGgAAAAABcAAAAAAAYwAAAAABYwAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABcAAAAAAAGgAAAAABGgAAAAABGgAAAAACcAAAAAAAYwAAAAABYwAAAAAAYwAAAAADYwAAAAAAYwAAAAACYwAAAAADYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAADcAAAAAAAYwAAAAACYwAAAAABYwAAAAABYwAAAAADcAAAAAAAYwAAAAACYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAABcAAAAAAAGgAAAAAAGgAAAAABGgAAAAADGgAAAAAAcAAAAAAAYwAAAAACYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAABYwAAAAACYwAAAAABYwAAAAACYwAAAAACYwAAAAACYwAAAAADYwAAAAABYwAAAAACYwAAAAABOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAADYwAAAAABcAAAAAAAYwAAAAACYwAAAAAAYwAAAAAAYwAAAAADYwAAAAABYwAAAAAAYwAAAAABOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAABYwAAAAADYwAAAAABYwAAAAACOwAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAADbQAAAAABbQAAAAACbQAAAAACbQAAAAABbQAAAAAAcAAAAAAAYwAAAAADYwAAAAACYwAAAAAAYwAAAAACYwAAAAADGgAAAAAAGgAAAAAAGgAAAAABbQAAAAACbQAAAAACbQAAAAABbQAAAAABbQAAAAADbQAAAAABbQAAAAABcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAACbQAAAAACbQAAAAAAbQAAAAACbQAAAAACbQAAAAADbQAAAAACbQAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAADcAAAAAAAYwAAAAADGgAAAAABGgAAAAAAGgAAAAAAbQAAAAABbQAAAAABbQAAAAADbQAAAAABbQAAAAADbQAAAAACbQAAAAACcAAAAAAAGgAAAAABGgAAAAADGgAAAAAAGgAAAAABYwAAAAADGgAAAAACGgAAAAAAGgAAAAACGgAAAAABGgAAAAABGgAAAAADbQAAAAADbQAAAAABbQAAAAABbQAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAACcAAAAAAAYwAAAAAD version: 6 -2,-3: ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAABZAAAAAAACwAAAAADCwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAACwAAAAACCwAAAAACCwAAAAAACwAAAAAACwAAAAACCwAAAAADZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAFgAAAAACGgAAAAACGgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAACwAAAAADCwAAAAACCwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAGgAAAAAAGgAAAAADZAAAAAAAAAAAAAAAAAAAAAAAYQAAAAADYQAAAAAAYQAAAAADZAAAAAAAFgAAAAAAFgAAAAACZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAADYQAAAAABYQAAAAACZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAFgAAAAABFgAAAAABFgAAAAACFgAAAAABFgAAAAADFgAAAAAAYQAAAAABYQAAAAACYQAAAAADZAAAAAAAYQAAAAAAYQAAAAACZAAAAAAAYQAAAAADYQAAAAAAYQAAAAAAFgAAAAADZAAAAAAAMwAAAAAAMwAAAAAAFgAAAAADFgAAAAADZAAAAAAAYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAYQAAAAADZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAADFgAAAAABZAAAAAAAMwAAAAAAMwAAAAAAFgAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAGwAAAAADFgAAAAABZAAAAAAAFgAAAAACFgAAAAACFgAAAAACFgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAAADAAAAAABcAAAAAAADAAAAAADDAAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAACDAAAAAAADAAAAAAADAAAAAACDAAAAAADcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAGgAAAAACHgAAAAACHgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAADAAAAAADDAAAAAACDAAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAHgAAAAAAHgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAbQAAAAADbQAAAAAAbQAAAAADcAAAAAAAGgAAAAAAGgAAAAACcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAABbQAAAAACcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAGgAAAAABGgAAAAABGgAAAAACGgAAAAABGgAAAAADGgAAAAAAbQAAAAABbQAAAAACbQAAAAADcAAAAAAAbQAAAAAAbQAAAAACcAAAAAAAbQAAAAADbQAAAAAAbQAAAAAAGgAAAAADcAAAAAAAOwAAAAAAOwAAAAAAGgAAAAADGgAAAAADcAAAAAAAbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAAcAAAAAAAbQAAAAADcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAADGgAAAAABcAAAAAAAOwAAAAAAOwAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAHwAAAAADGgAAAAABcAAAAAAAGgAAAAACGgAAAAACGgAAAAACGgAAAAAA version: 6 -3,2: ind: -3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,1: ind: -3,1 - tiles: AAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAFgAAAAACPwAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAFgAAAAACPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAABBgAAAAAABgAAAAAABgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAFBgAAAAAABgAAAAAABgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAHBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAFBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAUwAAAAAA + tiles: AAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAGgAAAAACSgAAAAAASgAAAAAASgAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAGgAAAAACSgAAAAAASgAAAAAASgAAAAAASgAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAXwAAAAAA version: 6 -3,0: ind: -3,0 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAARwAAAAABZAAAAAAARwAAAAACRwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAARwAAAAADRwAAAAABRwAAAAAARwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAARwAAAAACZAAAAAAARwAAAAACRwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAARwAAAAACZAAAAAAARwAAAAADRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAARwAAAAABZAAAAAAARwAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAADFgAAAAAAFgAAAAACFgAAAAACFgAAAAABFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAABFgAAAAABFgAAAAADFgAAAAACFgAAAAACFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAAAFgAAAAAAFgAAAAACFgAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAFgAAAAABPwAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAABgAAAAAHBgAAAAAABgAAAAAAZAAAAAAAFgAAAAABPwAAAAAAPwAAAAAAPwAAAAAAZAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAUwAAAAABcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAUwAAAAACcAAAAAAAUwAAAAACUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAUwAAAAACcAAAAAAAUwAAAAADUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAUwAAAAABcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAAAGgAAAAACGgAAAAACGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAABGgAAAAABGgAAAAADGgAAAAACGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAAAGgAAAAAAGgAAAAACGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAGgAAAAABSgAAAAAASgAAAAAASgAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAABwAAAAAHBwAAAAAABwAAAAAAcAAAAAAAGgAAAAABSgAAAAAASgAAAAAASgAAAAAAcAAAAAAA version: 6 -3,-3: ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAJQAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAVwAAAAAAVwAAAAABVwAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAZAAAAAAAVwAAAAADVwAAAAADVwAAAAADRwAAAAADRwAAAAAAZAAAAAAAVwAAAAAAVwAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAZAAAAAAAVwAAAAABVwAAAAACVwAAAAAARwAAAAAARwAAAAABVwAAAAADVwAAAAACVwAAAAACVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYwAAAAAAYwAAAAABYwAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcAAAAAAAYwAAAAADYwAAAAADYwAAAAADUwAAAAADUwAAAAAAcAAAAAAAYwAAAAAAYwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcAAAAAAAYwAAAAABYwAAAAACYwAAAAAAUwAAAAAAUwAAAAABYwAAAAADYwAAAAACYwAAAAACYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 -4,0: ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAA version: 6 -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAFgAAAAADFgAAAAAAFgAAAAACZAAAAAAARwAAAAACRwAAAAABRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAADFgAAAAACRwAAAAADRwAAAAABRwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAFgAAAAADFgAAAAAAFgAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAACZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAFgAAAAADFgAAAAAAFgAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAADZAAAAAAARwAAAAAARwAAAAABRwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAABBgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAGBgAAAAAAZAAAAAAABgAAAAAABgAAAAABBgAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAAABgAAAAADBgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAACcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAADGgAAAAACUwAAAAADUwAAAAABUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAACcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAADcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAAAcAAAAAAABwAAAAAABwAAAAABBwAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA version: 6 -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA version: 6 3,-3: ind: 3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-2: ind: 3,-2 - tiles: AAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,1: ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 type: MapGrid - type: Broadphase @@ -10598,8 +10598,6 @@ entities: - pos: -13.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 916 components: - pos: 7.5,2.5 @@ -10610,29 +10608,21 @@ entities: - pos: -8.5,-2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1126 components: - pos: -8.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1127 components: - pos: -9.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1128 components: - pos: -10.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1129 components: - pos: -10.5,-4.5 @@ -10838,106 +10828,76 @@ entities: - pos: -11.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1170 components: - pos: -12.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1171 components: - pos: -12.5,-2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1172 components: - pos: -12.5,-1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1173 components: - pos: -12.5,1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1174 components: - pos: -12.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1175 components: - pos: -12.5,3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1176 components: - pos: -12.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1177 components: - pos: -13.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1178 components: - pos: -14.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1179 components: - pos: -15.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1180 components: - pos: -16.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1181 components: - pos: -17.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1182 components: - pos: -18.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1183 components: - pos: -19.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1184 components: - pos: -20.5,-3.5 @@ -10948,15 +10908,11 @@ entities: - pos: -20.5,-4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1186 components: - pos: -21.5,-4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1187 components: - pos: -21.5,-5.5 @@ -10987,8 +10943,6 @@ entities: - pos: -7.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1193 components: - pos: -6.5,-3.5 @@ -11109,8 +11063,6 @@ entities: - pos: -12.5,14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1217 components: - pos: -12.5,15.5 @@ -11131,50 +11083,36 @@ entities: - pos: -12.5,14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1221 components: - pos: -12.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1222 components: - pos: -12.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1223 components: - pos: -12.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1224 components: - pos: -12.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1225 components: - pos: -13.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1226 components: - pos: -14.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1227 components: - pos: -15.5,10.5 @@ -11225,50 +11163,36 @@ entities: - pos: -12.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1237 components: - pos: -12.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1238 components: - pos: -12.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1239 components: - pos: -12.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1240 components: - pos: -12.5,9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1241 components: - pos: -14.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1242 components: - pos: -15.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1243 components: - pos: -16.5,2.5 @@ -11409,43 +11333,31 @@ entities: - pos: -11.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1276 components: - pos: -10.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1277 components: - pos: -9.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1278 components: - pos: -8.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1279 components: - pos: -7.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1280 components: - pos: -6.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1281 components: - pos: -5.5,13.5 @@ -11481,57 +11393,41 @@ entities: - pos: 7.5,-8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1288 components: - pos: 7.5,-9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1289 components: - pos: 6.5,-9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1290 components: - pos: 5.5,-9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1291 components: - pos: 4.5,-9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1292 components: - pos: 3.5,-9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1293 components: - pos: 3.5,-8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1294 components: - pos: 2.5,-8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1295 components: - pos: 7.5,-7.5 @@ -11617,8 +11513,6 @@ entities: - pos: 9.5,-1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1312 components: - pos: 1.5,-8.5 @@ -11679,64 +11573,46 @@ entities: - pos: 8.5,-9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1324 components: - pos: 9.5,-9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1325 components: - pos: 9.5,-8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1326 components: - pos: 9.5,-7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1327 components: - pos: 9.5,-6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1328 components: - pos: 9.5,-5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1329 components: - pos: 9.5,-4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1330 components: - pos: 9.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1331 components: - pos: 9.5,-2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1332 components: - pos: 8.5,-10.5 @@ -11882,15 +11758,11 @@ entities: - pos: 7.5,3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1362 components: - pos: 8.5,3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1363 components: - pos: 11.5,3.5 @@ -11906,22 +11778,16 @@ entities: - pos: 9.5,3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1366 components: - pos: 9.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1369 components: - pos: 9.5,-0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1370 components: - pos: 11.5,4.5 @@ -11992,134 +11858,96 @@ entities: - pos: 9.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1384 components: - pos: 9.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1385 components: - pos: 9.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1386 components: - pos: 9.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1387 components: - pos: 9.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1388 components: - pos: 9.5,9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1389 components: - pos: 9.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1390 components: - pos: 9.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1391 components: - pos: 8.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1392 components: - pos: 7.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1393 components: - pos: 6.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1394 components: - pos: 5.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1395 components: - pos: 4.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1396 components: - pos: 3.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1397 components: - pos: 3.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1398 components: - pos: 3.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1399 components: - pos: 3.5,14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1400 components: - pos: 2.5,14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1401 components: - pos: 1.5,14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1402 components: - pos: 11.5,17.5 @@ -12265,22 +12093,16 @@ entities: - pos: 6.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1432 components: - pos: 5.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1433 components: - pos: 4.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1434 components: - pos: 3.5,2.5 @@ -12421,8 +12243,6 @@ entities: - pos: 8.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1547 components: - pos: 7.5,8.5 @@ -12433,8 +12253,6 @@ entities: - pos: -6.5,31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2245 components: - pos: -5.5,31.5 @@ -12695,8 +12513,6 @@ entities: - pos: 9.5,27.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2297 components: - pos: 9.5,26.5 @@ -12857,8 +12673,6 @@ entities: - pos: 0.5,21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2329 components: - pos: 0.5,20.5 @@ -13049,8 +12863,6 @@ entities: - pos: -14.5,25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2368 components: - pos: -14.5,24.5 @@ -13146,8 +12958,6 @@ entities: - pos: -11.5,-57.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2815 components: - pos: 16.5,35.5 @@ -13173,15 +12983,11 @@ entities: - pos: 21.5,25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2833 components: - pos: 11.5,32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2846 components: - pos: 18.5,35.5 @@ -13197,8 +13003,6 @@ entities: - pos: 22.5,25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2865 components: - pos: 16.5,32.5 @@ -13224,22 +13028,16 @@ entities: - pos: 22.5,27.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3039 components: - pos: 21.5,27.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3136 components: - pos: 17.5,22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3137 components: - pos: 17.5,23.5 @@ -13435,22 +13233,16 @@ entities: - pos: 25.5,14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3180 components: - pos: 26.5,14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3181 components: - pos: 27.5,14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3182 components: - pos: 18.5,14.5 @@ -13486,85 +13278,61 @@ entities: - pos: 12.5,32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3196 components: - pos: 12.5,31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3197 components: - pos: 12.5,30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3198 components: - pos: 12.5,29.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3199 components: - pos: 12.5,28.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3200 components: - pos: 12.5,27.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3201 components: - pos: 12.5,26.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3202 components: - pos: 12.5,25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3203 components: - pos: 12.5,24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3204 components: - pos: 12.5,23.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3205 components: - pos: 12.5,22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3897 components: - pos: 11.5,51.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3898 components: - pos: 11.5,50.5 @@ -13640,8 +13408,6 @@ entities: - pos: 15.5,46.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3913 components: - pos: 9.5,45.5 @@ -13672,15 +13438,11 @@ entities: - pos: 4.5,45.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3919 components: - pos: 3.5,45.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3920 components: - pos: 6.5,46.5 @@ -13811,8 +13573,6 @@ entities: - pos: 22.5,-1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4258 components: - pos: 22.5,-2.5 @@ -13888,197 +13648,141 @@ entities: - pos: 22.5,-0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4273 components: - pos: 21.5,-0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4274 components: - pos: 20.5,-0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4275 components: - pos: 19.5,-0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4276 components: - pos: 18.5,-0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4277 components: - pos: 17.5,-0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4278 components: - pos: 16.5,-0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4279 components: - pos: 15.5,-0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4280 components: - pos: 15.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4281 components: - pos: 15.5,1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4282 components: - pos: 15.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4283 components: - pos: 15.5,3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4284 components: - pos: 15.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4285 components: - pos: 16.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4286 components: - pos: 17.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4287 components: - pos: 18.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4288 components: - pos: 18.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4289 components: - pos: 18.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4290 components: - pos: 18.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4291 components: - pos: 18.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4292 components: - pos: 18.5,9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4293 components: - pos: 18.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4294 components: - pos: 17.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4295 components: - pos: 16.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4296 components: - pos: 15.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4297 components: - pos: 14.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4298 components: - pos: 19.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4299 components: - pos: 20.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4300 components: - pos: 23.5,-2.5 @@ -14164,15 +13868,11 @@ entities: - pos: 32.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4317 components: - pos: 33.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4318 components: - pos: 31.5,0.5 @@ -14183,15 +13883,11 @@ entities: - pos: 32.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4320 components: - pos: 33.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4321 components: - pos: 30.5,-3.5 @@ -14237,15 +13933,11 @@ entities: - pos: 32.5,-7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4330 components: - pos: 33.5,-7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4331 components: - pos: 31.5,-5.5 @@ -14256,15 +13948,11 @@ entities: - pos: 32.5,-5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4333 components: - pos: 33.5,-5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4334 components: - pos: 29.5,-7.5 @@ -14385,8 +14073,6 @@ entities: - pos: 19.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4358 components: - pos: 23.5,-7.5 @@ -14402,57 +14088,41 @@ entities: - pos: 21.5,-7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4361 components: - pos: 20.5,-7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4362 components: - pos: 19.5,-7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4363 components: - pos: 18.5,-7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4364 components: - pos: 17.5,-7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4365 components: - pos: 16.5,-7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4366 components: - pos: 15.5,-7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4367 components: - pos: 15.5,-6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4368 components: - pos: 15.5,-5.5 @@ -14468,15 +14138,11 @@ entities: - pos: -13.5,-50.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4689 components: - pos: -11.5,-56.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4690 components: - pos: -11.5,-55.5 @@ -14492,8 +14158,6 @@ entities: - pos: -18.5,-28.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4864 components: - pos: -13.5,-27.5 @@ -14519,8 +14183,6 @@ entities: - pos: -23.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4894 components: - pos: -14.5,-27.5 @@ -14531,8 +14193,6 @@ entities: - pos: -27.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4896 components: - pos: -26.5,-25.5 @@ -14583,8 +14243,6 @@ entities: - pos: -23.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4907 components: - pos: -24.5,-22.5 @@ -14620,8 +14278,6 @@ entities: - pos: -18.5,-19.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4930 components: - pos: -20.5,-12.5 @@ -14702,15 +14358,11 @@ entities: - pos: -17.5,-15.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5041 components: - pos: -11.5,-58.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5044 components: - pos: -19.5,-20.5 @@ -14741,8 +14393,6 @@ entities: - pos: -12.5,-50.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5232 components: - pos: -11.5,-50.5 @@ -14758,29 +14408,21 @@ entities: - pos: -9.5,-50.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5235 components: - pos: -8.5,-50.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5236 components: - pos: -8.5,-43.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5237 components: - pos: -9.5,-43.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5238 components: - pos: -10.5,-43.5 @@ -14796,15 +14438,11 @@ entities: - pos: -12.5,-43.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5241 components: - pos: -13.5,-43.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5242 components: - pos: -11.5,-53.5 @@ -14960,8 +14598,6 @@ entities: - pos: -8.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5364 components: - pos: -14.5,-22.5 @@ -14972,8 +14608,6 @@ entities: - pos: 6.5,-19.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6023 components: - pos: 6.5,-18.5 @@ -15019,8 +14653,6 @@ entities: - pos: 13.5,-16.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6032 components: - pos: 6.5,-21.5 @@ -15176,8 +14808,6 @@ entities: - pos: 12.5,-15.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6066 components: - pos: 9.5,-22.5 @@ -15248,8 +14878,6 @@ entities: - pos: 28.5,-21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6080 components: - pos: 28.5,-20.5 @@ -15355,8 +14983,6 @@ entities: - pos: 10.5,-35.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6101 components: - pos: 16.5,-19.5 @@ -15367,15 +14993,11 @@ entities: - pos: 16.5,-18.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6103 components: - pos: 16.5,-17.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6104 components: - pos: 17.5,-17.5 @@ -15451,78 +15073,56 @@ entities: - pos: 18.5,-28.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6120 components: - pos: 18.5,-29.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6121 components: - pos: 18.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6122 components: - pos: 18.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6123 components: - pos: 18.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6124 components: - pos: 18.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6125 components: - pos: 17.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6126 components: - pos: 16.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6127 components: - pos: 15.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6128 components: - pos: 15.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6129 components: - pos: 15.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6130 components: - pos: 15.5,-24.5 @@ -15693,8 +15293,6 @@ entities: - pos: 16.5,-16.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6551 components: - pos: -23.5,-12.5 @@ -15715,8 +15313,6 @@ entities: - pos: -15.5,-14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6610 components: - pos: -15.5,-16.5 @@ -15757,8 +15353,6 @@ entities: - pos: -17.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6846 components: - pos: -17.5,-32.5 @@ -15919,127 +15513,91 @@ entities: - pos: -17.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6878 components: - pos: -16.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6879 components: - pos: -15.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6880 components: - pos: -14.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6881 components: - pos: -13.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6882 components: - pos: -12.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6883 components: - pos: -11.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6884 components: - pos: -10.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6886 components: - pos: -10.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6887 components: - pos: -10.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6888 components: - pos: -18.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6889 components: - pos: -19.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6890 components: - pos: -20.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6891 components: - pos: -21.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6892 components: - pos: -22.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6893 components: - pos: -23.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6894 components: - pos: -24.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7091 components: - pos: -24.5,-10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7092 components: - pos: -24.5,-11.5 @@ -16230,8 +15788,6 @@ entities: - pos: -11.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7420 components: - pos: -11.5,-22.5 @@ -16267,8 +15823,6 @@ entities: - pos: -1.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7490 components: - pos: -1.5,-21.5 @@ -16719,8 +16273,6 @@ entities: - pos: -36.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8062 components: - pos: -36.5,12.5 @@ -17081,8 +16633,6 @@ entities: - pos: -24.5,31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8134 components: - pos: -27.5,31.5 @@ -17098,22 +16648,16 @@ entities: - pos: -27.5,33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8137 components: - pos: -28.5,33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8138 components: - pos: -29.5,33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8139 components: - pos: -31.5,31.5 @@ -17129,8 +16673,6 @@ entities: - pos: -19.5,21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8198 components: - pos: -19.5,20.5 @@ -17276,106 +16818,76 @@ entities: - pos: -17.5,21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8321 components: - pos: -17.5,22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8322 components: - pos: -17.5,23.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8323 components: - pos: -17.5,24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8324 components: - pos: -17.5,25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8325 components: - pos: -17.5,26.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8326 components: - pos: -17.5,27.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8327 components: - pos: -17.5,28.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8908 components: - pos: -33.5,-24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8909 components: - pos: -33.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8910 components: - pos: -32.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8911 components: - pos: -31.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8912 components: - pos: -30.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8913 components: - pos: -29.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8914 components: - pos: -29.5,-26.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8915 components: - pos: -29.5,-27.5 @@ -17391,43 +16903,31 @@ entities: - pos: -29.5,-29.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8918 components: - pos: -29.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8919 components: - pos: -29.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8920 components: - pos: -30.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8921 components: - pos: -30.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8922 components: - pos: -30.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8923 components: - pos: -30.5,-34.5 @@ -17488,22 +16988,16 @@ entities: - pos: -32.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8935 components: - pos: -33.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8936 components: - pos: -31.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8937 components: - pos: -32.5,-33.5 @@ -17569,533 +17063,381 @@ entities: - pos: 13.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9050 components: - pos: -50.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9090 components: - pos: 32.5,-29.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9288 components: - pos: -38.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9321 components: - pos: -38.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9322 components: - pos: -38.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9323 components: - pos: -38.5,3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9324 components: - pos: -38.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9325 components: - pos: -38.5,1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9326 components: - pos: -38.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9327 components: - pos: -39.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9328 components: - pos: -40.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9329 components: - pos: -41.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9330 components: - pos: -42.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9331 components: - pos: -43.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9332 components: - pos: -44.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9333 components: - pos: -45.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9334 components: - pos: -46.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9335 components: - pos: -47.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9336 components: - pos: -48.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9337 components: - pos: -49.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9338 components: - pos: -51.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9339 components: - pos: -52.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9340 components: - pos: -53.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9341 components: - pos: -54.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9342 components: - pos: -54.5,1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9343 components: - pos: -54.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9344 components: - pos: -54.5,3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9345 components: - pos: -54.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9346 components: - pos: -54.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9347 components: - pos: -54.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9348 components: - pos: -54.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9349 components: - pos: -54.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9350 components: - pos: -54.5,9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9351 components: - pos: -54.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9352 components: - pos: -54.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9353 components: - pos: -54.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9354 components: - pos: -53.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9355 components: - pos: -52.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9356 components: - pos: -51.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9357 components: - pos: -50.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9358 components: - pos: -49.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9359 components: - pos: -48.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9360 components: - pos: -48.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9361 components: - pos: -48.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9362 components: - pos: -48.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9363 components: - pos: -48.5,9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9364 components: - pos: -48.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9365 components: - pos: -48.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9366 components: - pos: -48.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9367 components: - pos: -48.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9368 components: - pos: -48.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9369 components: - pos: -48.5,3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9370 components: - pos: -48.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9371 components: - pos: -48.5,1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9372 components: - pos: -48.5,-0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9373 components: - pos: -48.5,-1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9374 components: - pos: -48.5,-2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9375 components: - pos: -47.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9376 components: - pos: -46.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9377 components: - pos: -45.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9378 components: - pos: -44.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9379 components: - pos: -43.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9380 components: - pos: -42.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9381 components: - pos: -41.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9382 components: - pos: -44.5,1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9383 components: - pos: -44.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9384 components: - pos: -44.5,3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9385 components: - pos: -44.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9386 components: - pos: -44.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9387 components: - pos: -44.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9388 components: - pos: -44.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9389 components: - pos: -44.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9390 components: - pos: -44.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9391 components: - pos: -44.5,9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9392 components: - pos: -44.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9393 components: - pos: -37.5,2.5 @@ -18166,176 +17508,126 @@ entities: - pos: -39.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9407 components: - pos: -40.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9408 components: - pos: -41.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9409 components: - pos: -42.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9410 components: - pos: -43.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9411 components: - pos: -42.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9458 components: - pos: -50.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9459 components: - pos: -50.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9460 components: - pos: -50.5,9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9461 components: - pos: -50.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9462 components: - pos: -50.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9463 components: - pos: -50.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9464 components: - pos: -50.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9465 components: - pos: -50.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9466 components: - pos: -50.5,3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9467 components: - pos: -50.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9468 components: - pos: -50.5,1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9512 components: - pos: -36.5,-1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9523 components: - pos: 17.5,-16.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9525 components: - pos: -47.5,-1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9526 components: - pos: -47.5,-2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9527 components: - pos: -47.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9528 components: - pos: -47.5,-4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9529 components: - pos: -48.5,-4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9530 components: - pos: -49.5,-4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9540 components: - pos: -36.5,1.5 @@ -18346,15 +17638,11 @@ entities: - pos: -36.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9547 components: - pos: -36.5,-0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9559 components: - pos: -39.5,-0.5 @@ -18380,113 +17668,81 @@ entities: - pos: -36.5,-2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9695 components: - pos: -36.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9696 components: - pos: -36.5,-4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9697 components: - pos: -36.5,-5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9708 components: - pos: -42.5,14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9709 components: - pos: -42.5,15.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9710 components: - pos: -42.5,16.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9711 components: - pos: -42.5,17.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9712 components: - pos: -43.5,15.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9713 components: - pos: -44.5,15.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9714 components: - pos: -45.5,15.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9715 components: - pos: -46.5,15.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9716 components: - pos: -46.5,16.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9717 components: - pos: -46.5,17.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9718 components: - pos: -46.5,18.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10041 components: - pos: -41.5,-4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10042 components: - pos: -41.5,-5.5 @@ -18557,64 +17813,46 @@ entities: - pos: -44.5,-15.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10056 components: - pos: -44.5,-16.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10057 components: - pos: -44.5,-17.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10058 components: - pos: -44.5,-18.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10059 components: - pos: -45.5,-21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10060 components: - pos: -45.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10061 components: - pos: -43.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10062 components: - pos: -46.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10063 components: - pos: -47.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10064 components: - pos: -45.5,-12.5 @@ -18720,50 +17958,36 @@ entities: - pos: -40.5,-11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10086 components: - pos: -40.5,-12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10087 components: - pos: -40.5,-13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10088 components: - pos: -40.5,-14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10089 components: - pos: -40.5,-15.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10090 components: - pos: -40.5,-16.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10091 components: - pos: -40.5,-17.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10092 components: - pos: -39.5,-8.5 @@ -18994,365 +18218,261 @@ entities: - pos: -36.5,-10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10138 components: - pos: -36.5,-11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10139 components: - pos: -36.5,-12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10140 components: - pos: -36.5,-13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10141 components: - pos: -36.5,-14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10142 components: - pos: -36.5,-15.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10143 components: - pos: -36.5,-16.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10144 components: - pos: -36.5,-17.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10145 components: - pos: -36.5,-18.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10146 components: - pos: -35.5,-11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10147 components: - pos: -34.5,-11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10148 components: - pos: -33.5,-11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10149 components: - pos: -32.5,-11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10150 components: - pos: -31.5,-11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10151 components: - pos: -30.5,-11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10152 components: - pos: -29.5,-11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10190 components: - pos: -51.5,-21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10191 components: - pos: -51.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10192 components: - pos: -52.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10193 components: - pos: -53.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10194 components: - pos: -54.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10195 components: - pos: -55.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10196 components: - pos: -51.5,-23.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10197 components: - pos: -51.5,-24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10198 components: - pos: -51.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10199 components: - pos: -50.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10200 components: - pos: -49.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10201 components: - pos: -48.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10202 components: - pos: -47.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10203 components: - pos: -46.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10204 components: - pos: -45.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10205 components: - pos: -34.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10206 components: - pos: -35.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10207 components: - pos: -36.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10208 components: - pos: -37.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10209 components: - pos: -38.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10210 components: - pos: -39.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10211 components: - pos: -40.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10212 components: - pos: -40.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10213 components: - pos: -40.5,-29.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10214 components: - pos: -40.5,-28.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10215 components: - pos: -40.5,-27.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10216 components: - pos: -40.5,-26.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10217 components: - pos: -40.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10218 components: - pos: -40.5,-24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10219 components: - pos: -40.5,-23.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10220 components: - pos: -40.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10221 components: - pos: -40.5,-21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10222 components: - pos: -41.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10223 components: - pos: -42.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10508 components: - pos: -34.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10509 components: - pos: -34.5,-26.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10510 components: - pos: -34.5,-27.5 @@ -19368,8 +18488,6 @@ entities: - pos: -35.5,-28.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10513 components: - pos: -36.5,-28.5 @@ -19410,15 +18528,11 @@ entities: - pos: -44.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10615 components: - pos: -40.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10656 components: - pos: -54.5,-12.5 @@ -19429,8 +18543,6 @@ entities: - pos: -55.5,-12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10665 components: - pos: -48.5,-7.5 @@ -19446,57 +18558,41 @@ entities: - pos: -37.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10884 components: - pos: -36.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10885 components: - pos: -35.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10886 components: - pos: -34.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10887 components: - pos: -33.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10888 components: - pos: -32.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10889 components: - pos: -31.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10890 components: - pos: -30.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10891 components: - pos: -26.5,5.5 @@ -19537,85 +18633,61 @@ entities: - pos: 9.5,-35.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11169 components: - pos: 9.5,-35.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11170 components: - pos: 9.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11171 components: - pos: 9.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11172 components: - pos: 9.5,-38.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11173 components: - pos: 9.5,-39.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11174 components: - pos: 9.5,-40.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11175 components: - pos: 9.5,-41.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11176 components: - pos: 9.5,-42.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11177 components: - pos: 10.5,-41.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11178 components: - pos: 11.5,-41.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11179 components: - pos: 12.5,-41.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11180 components: - pos: 13.5,-41.5 @@ -19626,22 +18698,16 @@ entities: - pos: 8.5,-41.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11182 components: - pos: 7.5,-41.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11183 components: - pos: 6.5,-41.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11184 components: - pos: 5.5,-41.5 @@ -19657,43 +18723,31 @@ entities: - pos: 11.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11187 components: - pos: 12.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11188 components: - pos: 13.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11189 components: - pos: 8.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11190 components: - pos: 7.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11191 components: - pos: 6.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11192 components: - pos: 5.5,-37.5 @@ -19704,15 +18758,11 @@ entities: - pos: 9.5,-34.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11194 components: - pos: 9.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11195 components: - pos: 9.5,-32.5 @@ -19723,8 +18773,6 @@ entities: - pos: 9.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11197 components: - pos: 8.5,-33.5 @@ -19740,8 +18788,6 @@ entities: - pos: 6.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11200 components: - pos: 5.5,-33.5 @@ -19752,134 +18798,96 @@ entities: - pos: 10.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11202 components: - pos: 9.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11203 components: - pos: 8.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11204 components: - pos: 7.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11205 components: - pos: 6.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11206 components: - pos: 5.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11207 components: - pos: 4.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11208 components: - pos: 9.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11209 components: - pos: 10.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11210 components: - pos: 11.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11211 components: - pos: 12.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11212 components: - pos: 12.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11213 components: - pos: 12.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11214 components: - pos: 12.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11215 components: - pos: 14.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11274 components: - pos: 19.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11276 components: - pos: 19.5,-35.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11277 components: - pos: 19.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11278 components: - pos: 19.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11279 components: - pos: 19.5,-38.5 @@ -19890,36 +18898,26 @@ entities: - pos: 20.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11281 components: - pos: 21.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11282 components: - pos: 18.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11283 components: - pos: 17.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11310 components: - pos: 33.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11311 components: - pos: 33.5,-28.5 @@ -19935,127 +18933,91 @@ entities: - pos: 33.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11314 components: - pos: 33.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11315 components: - pos: 33.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11316 components: - pos: 32.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11317 components: - pos: 31.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11318 components: - pos: 30.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11319 components: - pos: 29.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11320 components: - pos: 28.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11321 components: - pos: 27.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11322 components: - pos: 26.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11323 components: - pos: 25.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11324 components: - pos: 25.5,-34.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11325 components: - pos: 24.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11441 components: - pos: 30.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11442 components: - pos: 30.5,-38.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11443 components: - pos: 32.5,-38.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11444 components: - pos: 31.5,-38.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11445 components: - pos: 33.5,-38.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11446 components: - pos: 34.5,-38.5 @@ -20066,71 +19028,51 @@ entities: - pos: 33.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11448 components: - pos: 34.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11449 components: - pos: 35.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11450 components: - pos: 36.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11451 components: - pos: 37.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11452 components: - pos: 32.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11453 components: - pos: 31.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11454 components: - pos: 31.5,-35.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11455 components: - pos: 31.5,-34.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11456 components: - pos: 33.5,-34.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11457 components: - pos: 34.5,-34.5 @@ -20156,36 +19098,26 @@ entities: - pos: 13.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 12048 components: - pos: -27.5,-23.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 12049 components: - pos: -28.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 12050 components: - pos: -28.5,-24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 12051 components: - pos: -28.5,-23.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - proto: CableApcStack entities: - uid: 6196 @@ -20220,113 +19152,81 @@ entities: - pos: 8.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 943 components: - pos: -14.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 944 components: - pos: -14.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 945 components: - pos: -14.5,9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 946 components: - pos: -14.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 947 components: - pos: -14.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 948 components: - pos: -14.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 949 components: - pos: -14.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 950 components: - pos: -13.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 951 components: - pos: -12.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 952 components: - pos: -11.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 953 components: - pos: -10.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 954 components: - pos: -9.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 955 components: - pos: -8.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 956 components: - pos: -7.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 957 components: - pos: -6.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 958 components: - pos: -5.5,13.5 @@ -20367,57 +19267,41 @@ entities: - pos: 1.5,14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 967 components: - pos: 2.5,14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 968 components: - pos: 2.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 969 components: - pos: 2.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 970 components: - pos: 2.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1003 components: - pos: 7.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1367 components: - pos: 6.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1368 components: - pos: 5.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2080 components: - pos: 6.5,31.5 @@ -20573,22 +19457,16 @@ entities: - pos: 3.5,35.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2111 components: - pos: 4.5,35.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2112 components: - pos: 4.5,34.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2113 components: - pos: 2.5,34.5 @@ -20604,22 +19482,16 @@ entities: - pos: 1.5,35.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2116 components: - pos: 1.5,36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2117 components: - pos: 0.5,36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2118 components: - pos: 0.5,35.5 @@ -20660,50 +19532,36 @@ entities: - pos: -3.5,36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2126 components: - pos: -2.5,36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2127 components: - pos: -1.5,36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2128 components: - pos: -5.5,36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2129 components: - pos: -6.5,36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2130 components: - pos: -6.5,35.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2131 components: - pos: 6.5,33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2132 components: - pos: -6.5,34.5 @@ -20724,22 +19582,16 @@ entities: - pos: -9.5,34.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2136 components: - pos: -9.5,35.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2137 components: - pos: -8.5,35.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2138 components: - pos: -8.5,33.5 @@ -20755,99 +19607,71 @@ entities: - pos: -9.5,32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2839 components: - pos: 13.5,32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3047 components: - pos: 12.5,32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3048 components: - pos: 12.5,31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3049 components: - pos: 12.5,30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3050 components: - pos: 12.5,29.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3051 components: - pos: 12.5,28.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3052 components: - pos: 12.5,27.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3053 components: - pos: 12.5,26.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3054 components: - pos: 12.5,25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3055 components: - pos: 12.5,24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3056 components: - pos: 12.5,23.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3057 components: - pos: 12.5,22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3058 components: - pos: 12.5,21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3059 components: - pos: 12.5,20.5 @@ -20903,106 +19727,76 @@ entities: - pos: 3.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3070 components: - pos: 4.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3071 components: - pos: 5.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3072 components: - pos: 6.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3073 components: - pos: 7.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3074 components: - pos: 8.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3075 components: - pos: 9.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3076 components: - pos: 9.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3077 components: - pos: 9.5,9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3078 components: - pos: 9.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3079 components: - pos: 9.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3080 components: - pos: 9.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3081 components: - pos: 9.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3082 components: - pos: 9.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3083 components: - pos: 9.5,3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3084 components: - pos: 10.5,3.5 @@ -21093,8 +19887,6 @@ entities: - pos: 14.5,46.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3790 components: - pos: 14.5,45.5 @@ -21105,22 +19897,16 @@ entities: - pos: 14.5,44.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3792 components: - pos: 14.5,47.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3793 components: - pos: 13.5,47.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3853 components: - pos: 13.5,45.5 @@ -21271,43 +20057,31 @@ entities: - pos: 14.5,3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4238 components: - pos: 15.5,3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4239 components: - pos: 15.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4240 components: - pos: 17.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4241 components: - pos: 16.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4242 components: - pos: 18.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4243 components: - pos: 18.5,3.5 @@ -21328,99 +20102,71 @@ entities: - pos: -26.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5914 components: - pos: 16.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5915 components: - pos: 15.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5916 components: - pos: 15.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5917 components: - pos: 15.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5918 components: - pos: 15.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5919 components: - pos: 16.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5920 components: - pos: 17.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5921 components: - pos: 18.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5922 components: - pos: 18.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5923 components: - pos: 18.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5924 components: - pos: 18.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5925 components: - pos: 18.5,-29.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5926 components: - pos: 18.5,-28.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5927 components: - pos: 18.5,-27.5 @@ -21481,71 +20227,51 @@ entities: - pos: 16.5,-18.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5939 components: - pos: 16.5,-17.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5940 components: - pos: 16.5,-16.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5941 components: - pos: 16.5,-15.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5942 components: - pos: 16.5,-14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5943 components: - pos: 15.5,-14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5944 components: - pos: 14.5,-14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5945 components: - pos: 14.5,-14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5946 components: - pos: 13.5,-14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5947 components: - pos: 12.5,-14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5948 components: - pos: 12.5,-13.5 @@ -21591,148 +20317,106 @@ entities: - pos: 8.5,-9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5957 components: - pos: 9.5,-9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5958 components: - pos: 9.5,-8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5959 components: - pos: 9.5,-7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5960 components: - pos: 9.5,-6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5961 components: - pos: 9.5,-5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5962 components: - pos: 9.5,-4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5963 components: - pos: 9.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5964 components: - pos: 9.5,-2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5965 components: - pos: 9.5,-1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5966 components: - pos: 9.5,-0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5967 components: - pos: 9.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5968 components: - pos: 9.5,1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5969 components: - pos: 9.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6020 components: - pos: 16.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6519 components: - pos: -25.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6918 components: - pos: -8.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6919 components: - pos: -8.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6920 components: - pos: -8.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6921 components: - pos: -10.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6922 components: - pos: -9.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6923 components: - pos: -10.5,-33.5 @@ -21838,99 +20522,71 @@ entities: - pos: 4.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6944 components: - pos: 5.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6945 components: - pos: 6.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6946 components: - pos: 7.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6947 components: - pos: 8.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6948 components: - pos: 9.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6949 components: - pos: 10.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6950 components: - pos: 11.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6951 components: - pos: 12.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6952 components: - pos: 12.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6953 components: - pos: 12.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6954 components: - pos: 12.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6955 components: - pos: 13.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6956 components: - pos: 14.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6957 components: - pos: 1.5,-29.5 @@ -22061,106 +20717,76 @@ entities: - pos: -27.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7282 components: - pos: -28.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7283 components: - pos: -29.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7958 components: - pos: -37.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7959 components: - pos: -37.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7960 components: - pos: -36.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7961 components: - pos: -35.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7962 components: - pos: -34.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7963 components: - pos: -33.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7964 components: - pos: -32.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7965 components: - pos: -31.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7966 components: - pos: -30.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7967 components: - pos: -29.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7968 components: - pos: -29.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7969 components: - pos: -28.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7970 components: - pos: -27.5,8.5 @@ -22291,15 +20917,11 @@ entities: - pos: -42.5,-4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8748 components: - pos: -44.5,-4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8749 components: - pos: -44.5,-5.5 @@ -22425,22 +21047,16 @@ entities: - pos: -39.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9754 components: - pos: -38.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9755 components: - pos: -39.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9756 components: - pos: -37.5,5.5 @@ -22476,57 +21092,41 @@ entities: - pos: -36.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9763 components: - pos: -36.5,-0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9764 components: - pos: -36.5,-1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9765 components: - pos: -36.5,-2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9766 components: - pos: -36.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9767 components: - pos: -36.5,-4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9768 components: - pos: -36.5,-5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9769 components: - pos: -36.5,-6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9770 components: - pos: -36.5,-7.5 @@ -22627,22 +21227,16 @@ entities: - pos: -22.5,-4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9790 components: - pos: -21.5,-4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9791 components: - pos: -20.5,-4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9792 components: - pos: -20.5,-3.5 @@ -22653,169 +21247,121 @@ entities: - pos: -19.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9794 components: - pos: -18.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9795 components: - pos: -17.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9796 components: - pos: -16.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9797 components: - pos: -15.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9798 components: - pos: -14.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9799 components: - pos: -13.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9800 components: - pos: -12.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9801 components: - pos: -12.5,-2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9802 components: - pos: -12.5,-1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9803 components: - pos: -12.5,-0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9804 components: - pos: -12.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9805 components: - pos: -12.5,1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9806 components: - pos: -12.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9807 components: - pos: -12.5,3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9808 components: - pos: -12.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9809 components: - pos: -12.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9810 components: - pos: -12.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9811 components: - pos: -12.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9812 components: - pos: -12.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9813 components: - pos: -12.5,9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9814 components: - pos: -12.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9815 components: - pos: -12.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9816 components: - pos: -12.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9913 components: - pos: -44.5,-6.5 @@ -22871,8 +21417,6 @@ entities: - pos: -40.5,-12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9924 components: - pos: -40.5,-10.5 @@ -22883,43 +21427,31 @@ entities: - pos: -40.5,-11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9926 components: - pos: -40.5,-13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9927 components: - pos: -40.5,-14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9928 components: - pos: -40.5,-15.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9929 components: - pos: -40.5,-16.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9930 components: - pos: -40.5,-17.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9931 components: - pos: -40.5,-18.5 @@ -22930,127 +21462,91 @@ entities: - pos: -48.5,-19.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9961 components: - pos: -48.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9962 components: - pos: -47.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9963 components: - pos: -46.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9964 components: - pos: -45.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9965 components: - pos: -44.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9966 components: - pos: -43.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9967 components: - pos: -42.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9974 components: - pos: -36.5,-19.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9975 components: - pos: -36.5,-18.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9976 components: - pos: -36.5,-17.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9977 components: - pos: -36.5,-16.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9978 components: - pos: -36.5,-15.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9979 components: - pos: -36.5,-14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9980 components: - pos: -36.5,-13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9981 components: - pos: -36.5,-12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9982 components: - pos: -36.5,-11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9983 components: - pos: -36.5,-10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9984 components: - pos: -36.5,-9.5 @@ -23061,659 +21557,471 @@ entities: - pos: -41.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9996 components: - pos: -40.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9997 components: - pos: -39.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9998 components: - pos: -38.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9999 components: - pos: -37.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10000 components: - pos: -36.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10159 components: - pos: -56.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10160 components: - pos: -55.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10161 components: - pos: -54.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10162 components: - pos: -53.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10163 components: - pos: -53.5,-23.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10164 components: - pos: -53.5,-24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10168 components: - pos: -53.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10169 components: - pos: -52.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10170 components: - pos: -51.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10171 components: - pos: -51.5,-24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10172 components: - pos: -51.5,-23.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10173 components: - pos: -51.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10174 components: - pos: -50.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10175 components: - pos: -49.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10176 components: - pos: -48.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10177 components: - pos: -47.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10178 components: - pos: -46.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10179 components: - pos: -45.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10180 components: - pos: -45.5,-21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10181 components: - pos: -50.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10225 components: - pos: -57.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10226 components: - pos: -59.5,-26.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10227 components: - pos: -59.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10228 components: - pos: -59.5,-24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10229 components: - pos: -59.5,-23.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10230 components: - pos: -59.5,-21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10231 components: - pos: -59.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10232 components: - pos: -59.5,-19.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10233 components: - pos: -59.5,-18.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10234 components: - pos: -61.5,-18.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10235 components: - pos: -61.5,-19.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10236 components: - pos: -61.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10237 components: - pos: -61.5,-21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10238 components: - pos: -61.5,-23.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10239 components: - pos: -61.5,-24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10240 components: - pos: -61.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10241 components: - pos: -61.5,-26.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10242 components: - pos: -63.5,-26.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10243 components: - pos: -63.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10244 components: - pos: -63.5,-24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10245 components: - pos: -63.5,-23.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10246 components: - pos: -65.5,-26.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10247 components: - pos: -65.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10248 components: - pos: -65.5,-24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10249 components: - pos: -65.5,-23.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10250 components: - pos: -69.5,-26.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10251 components: - pos: -69.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10252 components: - pos: -69.5,-24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10253 components: - pos: -69.5,-23.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10254 components: - pos: -67.5,-26.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10255 components: - pos: -67.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10256 components: - pos: -67.5,-24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10257 components: - pos: -67.5,-23.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10258 components: - pos: -69.5,-21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10259 components: - pos: -69.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10260 components: - pos: -69.5,-19.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10261 components: - pos: -69.5,-18.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10262 components: - pos: -67.5,-18.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10263 components: - pos: -67.5,-19.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10264 components: - pos: -67.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10265 components: - pos: -67.5,-21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10266 components: - pos: -65.5,-21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10267 components: - pos: -65.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10268 components: - pos: -65.5,-19.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10269 components: - pos: -65.5,-18.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10270 components: - pos: -63.5,-18.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10271 components: - pos: -63.5,-19.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10272 components: - pos: -63.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10273 components: - pos: -63.5,-21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10275 components: - pos: -71.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10276 components: - pos: -70.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10529 components: - pos: -10.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10530 components: - pos: -10.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10531 components: - pos: -11.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10532 components: - pos: -12.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10533 components: - pos: -13.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10534 components: - pos: -14.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10535 components: - pos: -15.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10536 components: - pos: -16.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10537 components: - pos: -17.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10538 components: - pos: -18.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10539 components: - pos: -19.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10540 components: - pos: -20.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10541 components: - pos: -21.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10542 components: - pos: -22.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10543 components: - pos: -23.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10544 components: - pos: -24.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10550 components: - pos: -29.5,-29.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10551 components: - pos: -29.5,-28.5 @@ -23729,92 +22037,66 @@ entities: - pos: -29.5,-26.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10554 components: - pos: -29.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10555 components: - pos: -30.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10556 components: - pos: -31.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10557 components: - pos: -32.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10558 components: - pos: -33.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10559 components: - pos: -34.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10560 components: - pos: -34.5,-24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10561 components: - pos: -34.5,-23.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10562 components: - pos: -34.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10563 components: - pos: -34.5,-21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10564 components: - pos: -34.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10565 components: - pos: -35.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10638 components: - pos: -45.5,-12.5 @@ -23855,8 +22137,6 @@ entities: - pos: -51.5,-11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10646 components: - pos: -52.5,-11.5 @@ -23887,8 +22167,6 @@ entities: - pos: -51.5,-13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10669 components: - pos: -45.5,-6.5 @@ -23904,8 +22182,6 @@ entities: - pos: -47.5,-6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10672 components: - pos: -48.5,-6.5 @@ -23916,575 +22192,411 @@ entities: - pos: 33.5,-39.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11395 components: - pos: 32.5,-39.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11396 components: - pos: 31.5,-39.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11397 components: - pos: 33.5,-38.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11398 components: - pos: 33.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11399 components: - pos: 33.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11400 components: - pos: 34.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11401 components: - pos: 35.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11402 components: - pos: 36.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11403 components: - pos: 37.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11404 components: - pos: 38.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11405 components: - pos: 31.5,-38.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11406 components: - pos: 31.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11407 components: - pos: 31.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11408 components: - pos: 31.5,-35.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11409 components: - pos: 31.5,-34.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11410 components: - pos: 31.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11411 components: - pos: 30.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11412 components: - pos: 29.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11413 components: - pos: 28.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11414 components: - pos: 27.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11415 components: - pos: 26.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11416 components: - pos: 25.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11417 components: - pos: 24.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11418 components: - pos: 23.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11419 components: - pos: 22.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11420 components: - pos: 21.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11421 components: - pos: 20.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11422 components: - pos: 19.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11437 components: - pos: 30.5,-39.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11477 components: - pos: 53.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11478 components: - pos: 52.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11479 components: - pos: 39.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11480 components: - pos: 40.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11481 components: - pos: 41.5,-35.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11482 components: - pos: 41.5,-34.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11483 components: - pos: 41.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11484 components: - pos: 41.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11485 components: - pos: 43.5,-35.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11486 components: - pos: 43.5,-34.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11487 components: - pos: 43.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11488 components: - pos: 43.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11489 components: - pos: 45.5,-34.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11490 components: - pos: 45.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11491 components: - pos: 45.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11492 components: - pos: 45.5,-35.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11493 components: - pos: 47.5,-35.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11494 components: - pos: 47.5,-34.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11495 components: - pos: 47.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11496 components: - pos: 47.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11497 components: - pos: 49.5,-35.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11498 components: - pos: 49.5,-34.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11499 components: - pos: 49.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11500 components: - pos: 49.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11501 components: - pos: 51.5,-35.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11502 components: - pos: 51.5,-34.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11503 components: - pos: 51.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11504 components: - pos: 51.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11505 components: - pos: 51.5,-40.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11506 components: - pos: 51.5,-39.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11507 components: - pos: 51.5,-38.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11508 components: - pos: 51.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11509 components: - pos: 49.5,-40.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11510 components: - pos: 49.5,-39.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11511 components: - pos: 49.5,-38.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11512 components: - pos: 49.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11513 components: - pos: 47.5,-40.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11514 components: - pos: 47.5,-39.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11515 components: - pos: 47.5,-38.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11516 components: - pos: 47.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11517 components: - pos: 45.5,-40.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11518 components: - pos: 45.5,-39.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11519 components: - pos: 45.5,-38.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11520 components: - pos: 45.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11521 components: - pos: 43.5,-40.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11522 components: - pos: 43.5,-39.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11523 components: - pos: 43.5,-38.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11524 components: - pos: 43.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11525 components: - pos: 41.5,-40.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11526 components: - pos: 41.5,-39.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11527 components: - pos: 41.5,-38.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11528 components: - pos: 41.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - proto: CableHVStack entities: - uid: 8587 @@ -24514,484 +22626,346 @@ entities: - pos: -14.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 972 components: - pos: -14.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 973 components: - pos: -14.5,9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 974 components: - pos: -14.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 975 components: - pos: -14.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 976 components: - pos: -14.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 977 components: - pos: -14.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 978 components: - pos: -13.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 979 components: - pos: -12.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 980 components: - pos: -12.5,14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 981 components: - pos: -8.5,-2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 982 components: - pos: -8.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 983 components: - pos: -9.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 984 components: - pos: -10.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 985 components: - pos: -12.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 986 components: - pos: -11.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 987 components: - pos: -12.5,-2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 988 components: - pos: -12.5,-1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 989 components: - pos: -12.5,-0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 990 components: - pos: -12.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 991 components: - pos: -12.5,1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 992 components: - pos: -12.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 993 components: - pos: -12.5,3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 994 components: - pos: -12.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 995 components: - pos: -12.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 996 components: - pos: -12.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 997 components: - pos: -12.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 998 components: - pos: -12.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 999 components: - pos: -12.5,9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1000 components: - pos: -12.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1001 components: - pos: -12.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1002 components: - pos: -12.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1004 components: - pos: 6.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1005 components: - pos: 7.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1006 components: - pos: 8.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1007 components: - pos: 9.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1008 components: - pos: 9.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1009 components: - pos: 9.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1010 components: - pos: 9.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1011 components: - pos: 9.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1012 components: - pos: 9.5,9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1013 components: - pos: 9.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1014 components: - pos: 9.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1015 components: - pos: 8.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1016 components: - pos: 7.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1017 components: - pos: 6.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1018 components: - pos: 5.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1019 components: - pos: 4.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1020 components: - pos: 3.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1021 components: - pos: 2.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1023 components: - pos: 7.5,-8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1024 components: - pos: 7.5,-9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1025 components: - pos: 8.5,-9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1026 components: - pos: 9.5,-9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1027 components: - pos: 9.5,-8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1028 components: - pos: 9.5,-7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1029 components: - pos: 9.5,-6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1030 components: - pos: 9.5,-5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1031 components: - pos: 9.5,-4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1032 components: - pos: 9.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1033 components: - pos: 9.5,-2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1034 components: - pos: 9.5,-1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1035 components: - pos: 9.5,-0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1036 components: - pos: 9.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1037 components: - pos: 9.5,1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1038 components: - pos: 9.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1039 components: - pos: 9.5,3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1419 components: - pos: 8.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1543 components: - pos: 5.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1858 components: - pos: 0.5,28.5 @@ -25082,8 +23056,6 @@ entities: - pos: -6.5,31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2157 components: - pos: 2.5,31.5 @@ -25159,8 +23131,6 @@ entities: - pos: 0.5,21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2172 components: - pos: 3.5,25.5 @@ -25206,8 +23176,6 @@ entities: - pos: 9.5,27.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2181 components: - pos: 8.5,24.5 @@ -25218,8 +23186,6 @@ entities: - pos: 8.5,23.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2183 components: - pos: 6.5,24.5 @@ -25230,8 +23196,6 @@ entities: - pos: 6.5,23.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2185 components: - pos: -2.5,31.5 @@ -25242,15 +23206,11 @@ entities: - pos: 4.5,24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2187 components: - pos: 4.5,26.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2188 components: - pos: -2.5,30.5 @@ -25276,8 +23236,6 @@ entities: - pos: -2.5,27.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2193 components: - pos: -3.5,28.5 @@ -25293,8 +23251,6 @@ entities: - pos: -4.5,27.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2196 components: - pos: -1.5,28.5 @@ -25310,8 +23266,6 @@ entities: - pos: -0.5,27.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2200 components: - pos: 0.5,29.5 @@ -25417,8 +23371,6 @@ entities: - pos: -14.5,25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2404 components: - pos: -11.5,24.5 @@ -25454,50 +23406,36 @@ entities: - pos: -11.5,30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2411 components: - pos: -12.5,30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2412 components: - pos: -12.5,26.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2413 components: - pos: -13.5,26.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2414 components: - pos: -10.5,26.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2415 components: - pos: -9.5,24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2416 components: - pos: -9.5,22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2453 components: - pos: -6.5,28.5 @@ -25528,85 +23466,61 @@ entities: - pos: 11.5,32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2838 components: - pos: 13.5,32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3120 components: - pos: 12.5,32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3121 components: - pos: 12.5,31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3122 components: - pos: 12.5,30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3123 components: - pos: 12.5,29.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3124 components: - pos: 12.5,28.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3125 components: - pos: 12.5,27.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3126 components: - pos: 12.5,26.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3127 components: - pos: 12.5,25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3128 components: - pos: 12.5,24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3129 components: - pos: 13.5,24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3130 components: - pos: 14.5,24.5 @@ -25637,8 +23551,6 @@ entities: - pos: 17.5,22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3265 components: - pos: -24.5,-25.5 @@ -25649,8 +23561,6 @@ entities: - pos: -23.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3735 components: - pos: -25.5,-25.5 @@ -25661,15 +23571,11 @@ entities: - pos: 13.5,47.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3885 components: - pos: 13.5,46.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3886 components: - pos: 13.5,45.5 @@ -25725,8 +23631,6 @@ entities: - pos: 11.5,51.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4012 components: - pos: -15.5,-17.5 @@ -25762,36 +23666,26 @@ entities: - pos: 19.5,-0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4253 components: - pos: 20.5,-0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4254 components: - pos: 21.5,-0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4255 components: - pos: 22.5,-0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4256 components: - pos: 22.5,-1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4806 components: - pos: -16.5,-24.5 @@ -25822,8 +23716,6 @@ entities: - pos: -18.5,-19.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4956 components: - pos: -20.5,-26.5 @@ -25839,8 +23731,6 @@ entities: - pos: -23.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4960 components: - pos: -18.5,-27.5 @@ -25851,8 +23741,6 @@ entities: - pos: -18.5,-28.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4967 components: - pos: -16.5,-25.5 @@ -25878,92 +23766,66 @@ entities: - pos: 16.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5973 components: - pos: 15.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5974 components: - pos: 15.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5975 components: - pos: 15.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5976 components: - pos: 15.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5977 components: - pos: 16.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5978 components: - pos: 17.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5979 components: - pos: 18.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5980 components: - pos: 18.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5981 components: - pos: 18.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5982 components: - pos: 18.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5983 components: - pos: 18.5,-29.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5984 components: - pos: 18.5,-28.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5985 components: - pos: 18.5,-27.5 @@ -26069,8 +23931,6 @@ entities: - pos: 6.5,-19.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6006 components: - pos: 19.5,-20.5 @@ -26136,8 +23996,6 @@ entities: - pos: 28.5,-21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6051 components: - pos: 13.5,-21.5 @@ -26158,8 +24016,6 @@ entities: - pos: -27.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6660 components: - pos: -25.5,-23.5 @@ -26190,8 +24046,6 @@ entities: - pos: -10.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6782 components: - pos: -19.5,-22.5 @@ -26207,113 +24061,81 @@ entities: - pos: -8.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6903 components: - pos: -8.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6904 components: - pos: -8.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6905 components: - pos: -8.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6906 components: - pos: -9.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6907 components: - pos: -10.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6908 components: - pos: -11.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6909 components: - pos: -11.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6910 components: - pos: -11.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6911 components: - pos: -12.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6912 components: - pos: -13.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6913 components: - pos: -14.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6914 components: - pos: -15.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6915 components: - pos: -16.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6916 components: - pos: -17.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6917 components: - pos: -17.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7029 components: - pos: -22.5,-25.5 @@ -26324,8 +24146,6 @@ entities: - pos: -17.5,-15.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7065 components: - pos: -15.5,-16.5 @@ -26346,8 +24166,6 @@ entities: - pos: -15.5,-14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7239 components: - pos: -16.5,-15.5 @@ -26373,8 +24191,6 @@ entities: - pos: -18.5,-26.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7265 components: - pos: -10.5,-26.5 @@ -26385,15 +24201,11 @@ entities: - pos: -11.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7270 components: - pos: -23.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7271 components: - pos: -25.5,-22.5 @@ -26569,15 +24381,11 @@ entities: - pos: -1.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7986 components: - pos: -36.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7987 components: - pos: -36.5,12.5 @@ -26623,71 +24431,51 @@ entities: - pos: -31.5,9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7996 components: - pos: -31.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7997 components: - pos: -31.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7998 components: - pos: -32.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7999 components: - pos: -33.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8000 components: - pos: -34.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8001 components: - pos: -35.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8002 components: - pos: -36.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8003 components: - pos: -37.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8004 components: - pos: -37.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8005 components: - pos: -30.5,11.5 @@ -26763,15 +24551,11 @@ entities: - pos: -24.5,19.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8020 components: - pos: -24.5,20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8021 components: - pos: -28.5,16.5 @@ -26797,29 +24581,21 @@ entities: - pos: -24.5,16.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8026 components: - pos: -24.5,17.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8027 components: - pos: -27.5,17.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8028 components: - pos: -27.5,20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8029 components: - pos: -29.5,10.5 @@ -26835,8 +24611,6 @@ entities: - pos: -27.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8032 components: - pos: -26.5,10.5 @@ -26852,22 +24626,16 @@ entities: - pos: -24.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8035 components: - pos: -32.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8036 components: - pos: -32.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8037 components: - pos: -30.5,14.5 @@ -26883,8 +24651,6 @@ entities: - pos: -32.5,14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8040 components: - pos: -33.5,14.5 @@ -26895,8 +24661,6 @@ entities: - pos: -33.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8042 components: - pos: -34.5,14.5 @@ -26912,8 +24676,6 @@ entities: - pos: -35.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8045 components: - pos: -35.5,15.5 @@ -26934,8 +24696,6 @@ entities: - pos: -35.5,18.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8049 components: - pos: -33.5,15.5 @@ -26956,8 +24716,6 @@ entities: - pos: -33.5,18.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8053 components: - pos: -33.5,19.5 @@ -26973,15 +24731,11 @@ entities: - pos: -32.5,19.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8056 components: - pos: -32.5,20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8177 components: - pos: -23.5,20.5 @@ -26992,8 +24746,6 @@ entities: - pos: -23.5,21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8179 components: - pos: -22.5,20.5 @@ -27019,22 +24771,16 @@ entities: - pos: -19.5,21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8184 components: - pos: -20.5,21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8185 components: - pos: -21.5,21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8186 components: - pos: -21.5,22.5 @@ -27060,8 +24806,6 @@ entities: - pos: -21.5,26.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8191 components: - pos: -21.5,27.5 @@ -27082,8 +24826,6 @@ entities: - pos: -22.5,29.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8195 components: - pos: -22.5,26.5 @@ -27094,8 +24836,6 @@ entities: - pos: -23.5,26.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8853 components: - pos: 13.5,-19.5 @@ -27111,8 +24851,6 @@ entities: - pos: -24.5,-10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8879 components: - pos: -24.5,-11.5 @@ -27138,127 +24876,91 @@ entities: - pos: -28.5,-11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8884 components: - pos: -29.5,-11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8885 components: - pos: -30.5,-11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8886 components: - pos: -31.5,-11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8887 components: - pos: -32.5,-11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8888 components: - pos: -33.5,-11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8889 components: - pos: -34.5,-11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8890 components: - pos: -35.5,-11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8891 components: - pos: -36.5,-11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8892 components: - pos: -36.5,-12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8893 components: - pos: -36.5,-13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8894 components: - pos: -36.5,-14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8895 components: - pos: -36.5,-15.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8897 components: - pos: -33.5,-24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8898 components: - pos: -34.5,-24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8899 components: - pos: -34.5,-23.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8900 components: - pos: -34.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8901 components: - pos: -34.5,-21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8902 components: - pos: 13.5,-17.5 @@ -27269,15 +24971,11 @@ entities: - pos: 13.5,-16.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8967 components: - pos: 13.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8969 components: - pos: 28.5,-24.5 @@ -27328,8 +25026,6 @@ entities: - pos: 32.5,-29.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9287 components: - pos: -38.5,7.5 @@ -27340,8 +25036,6 @@ entities: - pos: -38.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9524 components: - pos: 16.5,-19.5 @@ -27352,204 +25046,146 @@ entities: - pos: 16.5,-18.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9581 components: - pos: 16.5,-17.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9582 components: - pos: 16.5,-16.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9583 components: - pos: 17.5,-16.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10001 components: - pos: -34.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10002 components: - pos: -35.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10003 components: - pos: -36.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10004 components: - pos: -37.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10005 components: - pos: -38.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10006 components: - pos: -39.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10007 components: - pos: -40.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10008 components: - pos: -41.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10009 components: - pos: -42.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10010 components: - pos: -43.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10011 components: - pos: -44.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10012 components: - pos: -45.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10013 components: - pos: -46.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10014 components: - pos: -47.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10015 components: - pos: -48.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10016 components: - pos: -48.5,-19.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10017 components: - pos: -36.5,-19.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10018 components: - pos: -36.5,-18.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10019 components: - pos: -36.5,-17.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10020 components: - pos: -36.5,-16.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10022 components: - pos: -44.5,-19.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10023 components: - pos: -44.5,-18.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10024 components: - pos: -44.5,-17.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10025 components: - pos: -44.5,-16.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10026 components: - pos: -44.5,-15.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10027 components: - pos: -44.5,-14.5 @@ -27620,50 +25256,36 @@ entities: - pos: -41.5,-4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10184 components: - pos: -50.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10185 components: - pos: -50.5,-24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10186 components: - pos: -51.5,-24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10187 components: - pos: -51.5,-23.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10188 components: - pos: -51.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10189 components: - pos: -51.5,-21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10652 components: - pos: -53.5,-13.5 @@ -27684,78 +25306,56 @@ entities: - pos: -55.5,-12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11151 components: - pos: 14.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11152 components: - pos: 13.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11153 components: - pos: 12.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11154 components: - pos: 12.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11155 components: - pos: 12.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11156 components: - pos: 12.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11157 components: - pos: 11.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11158 components: - pos: 10.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11159 components: - pos: 9.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11160 components: - pos: 8.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11161 components: - pos: 8.5,-31.5 @@ -27786,36 +25386,26 @@ entities: - pos: 9.5,-35.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11167 components: - pos: 10.5,-35.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11438 components: - pos: 30.5,-39.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11439 components: - pos: 30.5,-38.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11440 components: - pos: 30.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - proto: CableMVStack entities: - uid: 8586 @@ -37895,8 +35485,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 12094 components: @@ -37906,8 +35494,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 12095 components: @@ -37916,8 +35502,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 12096 components: @@ -37927,8 +35511,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 12097 components: @@ -37938,8 +35520,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 12098 components: @@ -37949,8 +35529,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 12100 components: @@ -37960,8 +35538,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 12102 components: @@ -37971,8 +35547,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 12103 components: @@ -37982,8 +35556,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 12104 components: @@ -37992,8 +35564,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - proto: EncryptionKeyCargo entities: @@ -40727,8 +38297,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1683 components: - rot: -1.5707963267948966 rad @@ -41052,8 +38620,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7847 components: - rot: 1.5707963267948966 rad @@ -41084,8 +38650,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8970 components: - rot: -1.5707963267948966 rad @@ -41094,8 +38658,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8987 components: - rot: 1.5707963267948966 rad @@ -41113,56 +38675,42 @@ entities: - pos: -33.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9117 components: - rot: 1.5707963267948966 rad pos: -53.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9120 components: - rot: 1.5707963267948966 rad pos: -53.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9121 components: - rot: 1.5707963267948966 rad pos: -53.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9125 components: - rot: 1.5707963267948966 rad pos: -53.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9128 components: - rot: 1.5707963267948966 rad pos: -53.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9133 components: - rot: 1.5707963267948966 rad pos: -53.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9155 components: - rot: -1.5707963267948966 rad @@ -41171,8 +38719,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9156 components: - rot: 1.5707963267948966 rad @@ -41181,8 +38727,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9165 components: - rot: -1.5707963267948966 rad @@ -41191,8 +38735,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9166 components: - rot: 3.141592653589793 rad @@ -41201,16 +38743,12 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9254 components: - rot: 1.5707963267948966 rad pos: -46.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9535 components: - rot: 3.141592653589793 rad @@ -41219,8 +38757,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11972 components: - rot: -1.5707963267948966 rad @@ -43585,8 +41121,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 812 components: - rot: 1.5707963267948966 rad @@ -43945,8 +41479,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1509 components: - pos: -21.5,-5.5 @@ -43993,8 +41525,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1786 components: - rot: 1.5707963267948966 rad @@ -44003,8 +41533,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1808 components: - pos: 6.5,18.5 @@ -44069,8 +41597,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1849 components: - pos: -1.5,22.5 @@ -44085,8 +41611,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1851 components: - pos: -3.5,22.5 @@ -44574,8 +42098,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2063 components: - rot: 3.141592653589793 rad @@ -44592,8 +42114,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2066 components: - rot: 1.5707963267948966 rad @@ -44690,8 +42210,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2428 components: - rot: 3.141592653589793 rad @@ -44716,8 +42234,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2433 components: - rot: 1.5707963267948966 rad @@ -44748,8 +42264,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2438 components: - pos: -12.5,27.5 @@ -44821,8 +42335,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2952 components: - rot: 1.5707963267948966 rad @@ -44919,8 +42431,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2970 components: - rot: 3.141592653589793 rad @@ -45041,8 +42551,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2992 components: - rot: 3.141592653589793 rad @@ -45096,8 +42604,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3002 components: - rot: 1.5707963267948966 rad @@ -45198,8 +42704,6 @@ entities: pos: 16.5,46.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3797 components: - rot: -1.5707963267948966 rad @@ -45208,8 +42712,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3799 components: - rot: -1.5707963267948966 rad @@ -45218,8 +42720,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3800 components: - rot: -1.5707963267948966 rad @@ -45244,8 +42744,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3805 components: - pos: 11.5,47.5 @@ -45253,8 +42751,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3806 components: - pos: 11.5,48.5 @@ -45301,8 +42797,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3820 components: - rot: -1.5707963267948966 rad @@ -45311,8 +42805,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3821 components: - rot: -1.5707963267948966 rad @@ -45345,8 +42837,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3827 components: - rot: 3.141592653589793 rad @@ -45395,8 +42885,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4009 components: - pos: -19.5,-15.5 @@ -45636,8 +43124,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4176 components: - rot: 1.5707963267948966 rad @@ -45654,8 +43140,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4178 components: - rot: 1.5707963267948966 rad @@ -45672,8 +43156,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4180 components: - rot: 1.5707963267948966 rad @@ -45690,8 +43172,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4182 components: - rot: 1.5707963267948966 rad @@ -45877,8 +43357,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4228 components: - pos: 25.5,3.5 @@ -45918,8 +43396,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4461 components: - rot: 1.5707963267948966 rad @@ -45936,8 +43412,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4463 components: - rot: 1.5707963267948966 rad @@ -45984,8 +43458,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4862 components: - rot: -1.5707963267948966 rad @@ -45994,8 +43466,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4871 components: - rot: 1.5707963267948966 rad @@ -46012,8 +43482,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4873 components: - rot: 3.141592653589793 rad @@ -46061,8 +43529,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4934 components: - rot: -1.5707963267948966 rad @@ -46071,8 +43537,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4938 components: - rot: -1.5707963267948966 rad @@ -47127,8 +44591,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5476 components: - rot: 3.141592653589793 rad @@ -47263,8 +44725,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5642 components: - rot: -1.5707963267948966 rad @@ -47620,8 +45080,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5694 components: - rot: 3.141592653589793 rad @@ -47638,8 +45096,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5696 components: - rot: 3.141592653589793 rad @@ -47715,8 +45171,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5712 components: - rot: 1.5707963267948966 rad @@ -47820,8 +45274,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5739 components: - rot: 3.141592653589793 rad @@ -47971,8 +45423,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5759 components: - rot: -1.5707963267948966 rad @@ -48005,8 +45455,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6293 components: - rot: -1.5707963267948966 rad @@ -48031,8 +45479,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6418 components: - rot: 3.141592653589793 rad @@ -48254,8 +45700,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6548 components: - pos: -26.5,-24.5 @@ -48263,8 +45707,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6550 components: - pos: -26.5,-25.5 @@ -48300,8 +45742,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6632 components: - pos: -30.5,22.5 @@ -48380,8 +45820,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6808 components: - rot: -1.5707963267948966 rad @@ -48438,8 +45876,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6816 components: - rot: -1.5707963267948966 rad @@ -48472,8 +45908,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6822 components: - rot: 1.5707963267948966 rad @@ -48599,8 +46033,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7059 components: - pos: -19.5,-19.5 @@ -48686,8 +46118,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7201 components: - rot: 1.5707963267948966 rad @@ -48758,8 +46188,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7278 components: - rot: 1.5707963267948966 rad @@ -48852,8 +46280,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7374 components: - rot: 3.141592653589793 rad @@ -48886,8 +46312,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7378 components: - rot: 3.141592653589793 rad @@ -49208,8 +46632,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7863 components: - rot: 1.5707963267948966 rad @@ -49274,8 +46696,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7877 components: - rot: 3.141592653589793 rad @@ -49332,8 +46752,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7888 components: - rot: -1.5707963267948966 rad @@ -49350,8 +46768,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7890 components: - rot: -1.5707963267948966 rad @@ -49428,8 +46844,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7902 components: - pos: -35.5,14.5 @@ -49500,8 +46914,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8233 components: - pos: -23.5,22.5 @@ -49530,8 +46942,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8297 components: - rot: 1.5707963267948966 rad @@ -49596,8 +47006,6 @@ entities: - pos: -45.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8553 components: - rot: 1.5707963267948966 rad @@ -49740,8 +47148,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8774 components: - pos: -30.5,-3.5 @@ -49756,8 +47162,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8776 components: - pos: -30.5,-5.5 @@ -49799,8 +47203,6 @@ entities: pos: -35.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8946 components: - pos: -10.5,-34.5 @@ -49822,8 +47224,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8952 components: - pos: -10.5,-31.5 @@ -49831,8 +47231,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8954 components: - rot: -1.5707963267948966 rad @@ -49841,8 +47239,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8955 components: - rot: -1.5707963267948966 rad @@ -49851,8 +47247,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8956 components: - rot: -1.5707963267948966 rad @@ -49861,8 +47255,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8957 components: - rot: -1.5707963267948966 rad @@ -49871,8 +47263,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8958 components: - rot: -1.5707963267948966 rad @@ -49881,8 +47271,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8959 components: - rot: -1.5707963267948966 rad @@ -49891,8 +47279,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8960 components: - rot: -1.5707963267948966 rad @@ -49901,8 +47287,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8961 components: - rot: -1.5707963267948966 rad @@ -49911,8 +47295,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8962 components: - rot: -1.5707963267948966 rad @@ -49921,8 +47303,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8963 components: - rot: -1.5707963267948966 rad @@ -49931,8 +47311,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8964 components: - rot: -1.5707963267948966 rad @@ -49941,8 +47319,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8965 components: - rot: -1.5707963267948966 rad @@ -49951,8 +47327,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8966 components: - rot: -1.5707963267948966 rad @@ -49961,8 +47335,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8977 components: - rot: 3.141592653589793 rad @@ -49971,8 +47343,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8978 components: - rot: 3.141592653589793 rad @@ -49981,8 +47351,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8980 components: - rot: 1.5707963267948966 rad @@ -50035,8 +47403,6 @@ entities: pos: -35.5,-34.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8997 components: - rot: -1.5707963267948966 rad @@ -50048,8 +47414,6 @@ entities: - pos: -37.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9001 components: - rot: -1.5707963267948966 rad @@ -50068,31 +47432,23 @@ entities: pos: -40.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9036 components: - rot: -1.5707963267948966 rad pos: -49.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9075 components: - pos: -45.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9116 components: - rot: 1.5707963267948966 rad pos: -52.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9118 components: - rot: -1.5707963267948966 rad @@ -50101,8 +47457,6 @@ entities: type: Transform - color: '#03FDC3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9119 components: - rot: -1.5707963267948966 rad @@ -50117,8 +47471,6 @@ entities: pos: -48.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9123 components: - rot: -1.5707963267948966 rad @@ -50135,24 +47487,18 @@ entities: type: Transform - color: '#03FDC3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9126 components: - rot: 1.5707963267948966 rad pos: -49.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9127 components: - rot: 1.5707963267948966 rad pos: -50.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9129 components: - rot: -1.5707963267948966 rad @@ -50161,8 +47507,6 @@ entities: type: Transform - color: '#03FDC3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9132 components: - rot: -1.5707963267948966 rad @@ -50171,48 +47515,36 @@ entities: type: Transform - color: '#03FDC3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9134 components: - rot: 1.5707963267948966 rad pos: -51.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9135 components: - rot: 1.5707963267948966 rad pos: -49.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9136 components: - rot: 1.5707963267948966 rad pos: -50.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9137 components: - rot: 1.5707963267948966 rad pos: -51.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9138 components: - rot: 1.5707963267948966 rad pos: -52.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9146 components: - rot: 1.5707963267948966 rad @@ -50229,8 +47561,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9148 components: - rot: 1.5707963267948966 rad @@ -50287,8 +47617,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9159 components: - rot: 1.5707963267948966 rad @@ -50297,8 +47625,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9160 components: - rot: 1.5707963267948966 rad @@ -50307,8 +47633,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9161 components: - rot: 1.5707963267948966 rad @@ -50317,8 +47641,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9162 components: - rot: 1.5707963267948966 rad @@ -50327,8 +47649,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9167 components: - rot: 1.5707963267948966 rad @@ -50337,474 +47657,352 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9175 components: - rot: -1.5707963267948966 rad pos: -48.5,1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9177 components: - rot: -1.5707963267948966 rad pos: -50.5,1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9178 components: - rot: -1.5707963267948966 rad pos: -48.5,3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9179 components: - rot: -1.5707963267948966 rad pos: -49.5,1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9180 components: - rot: -1.5707963267948966 rad pos: -50.5,3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9181 components: - rot: -1.5707963267948966 rad pos: -48.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9182 components: - rot: -1.5707963267948966 rad pos: -49.5,3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9183 components: - rot: -1.5707963267948966 rad pos: -50.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9184 components: - rot: -1.5707963267948966 rad pos: -48.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9185 components: - rot: -1.5707963267948966 rad pos: -49.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9186 components: - rot: -1.5707963267948966 rad pos: -50.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9187 components: - rot: -1.5707963267948966 rad pos: -48.5,9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9188 components: - rot: -1.5707963267948966 rad pos: -49.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9189 components: - rot: -1.5707963267948966 rad pos: -50.5,9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9190 components: - rot: -1.5707963267948966 rad pos: -48.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9191 components: - rot: -1.5707963267948966 rad pos: -49.5,9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9192 components: - rot: -1.5707963267948966 rad pos: -50.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9205 components: - rot: 1.5707963267948966 rad pos: -48.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9207 components: - rot: 1.5707963267948966 rad pos: -52.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9208 components: - rot: 1.5707963267948966 rad pos: -51.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9209 components: - rot: 1.5707963267948966 rad pos: -50.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9210 components: - rot: 1.5707963267948966 rad pos: -49.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9211 components: - rot: 1.5707963267948966 rad pos: -48.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9213 components: - rot: 1.5707963267948966 rad pos: -52.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9214 components: - rot: 1.5707963267948966 rad pos: -51.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9215 components: - rot: 1.5707963267948966 rad pos: -50.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9216 components: - rot: 1.5707963267948966 rad pos: -49.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9217 components: - rot: 1.5707963267948966 rad pos: -48.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9219 components: - rot: 1.5707963267948966 rad pos: -52.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9220 components: - rot: 1.5707963267948966 rad pos: -51.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9221 components: - rot: 1.5707963267948966 rad pos: -50.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9222 components: - rot: 1.5707963267948966 rad pos: -49.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9223 components: - rot: 1.5707963267948966 rad pos: -48.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9225 components: - rot: 1.5707963267948966 rad pos: -52.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9226 components: - rot: 1.5707963267948966 rad pos: -51.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9227 components: - rot: 1.5707963267948966 rad pos: -50.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9228 components: - rot: 1.5707963267948966 rad pos: -49.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9229 components: - rot: 1.5707963267948966 rad pos: -48.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9231 components: - pos: -47.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9232 components: - pos: -47.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9233 components: - pos: -47.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9234 components: - pos: -47.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9235 components: - pos: -47.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9238 components: - pos: -45.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9241 components: - rot: -1.5707963267948966 rad pos: -46.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9246 components: - pos: -45.5,9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9249 components: - rot: -1.5707963267948966 rad pos: -46.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9250 components: - pos: -46.5,3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9252 components: - rot: 3.141592653589793 rad pos: -45.5,3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9253 components: - pos: -46.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9255 components: - rot: 1.5707963267948966 rad pos: -46.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9257 components: - rot: -1.5707963267948966 rad pos: -46.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9259 components: - rot: -1.5707963267948966 rad pos: -46.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9262 components: - rot: 3.141592653589793 rad pos: -47.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9263 components: - rot: 3.141592653589793 rad pos: -47.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9489 components: - pos: -45.5,14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9490 components: - pos: -45.5,15.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9491 components: - pos: -43.5,14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9492 components: - pos: -43.5,15.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9493 components: - pos: -43.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9514 components: - pos: -43.5,11.5 @@ -50812,8 +48010,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9515 components: - pos: -43.5,10.5 @@ -50821,8 +48017,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9516 components: - pos: -43.5,9.5 @@ -50830,8 +48024,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9539 components: - rot: 3.141592653589793 rad @@ -50840,8 +48032,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9541 components: - rot: -1.5707963267948966 rad @@ -50850,8 +48040,6 @@ entities: type: Transform - color: '#03FDC3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9545 components: - rot: 3.141592653589793 rad @@ -50860,8 +48048,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9546 components: - rot: 3.141592653589793 rad @@ -50870,8 +48056,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11963 components: - rot: 3.141592653589793 rad @@ -50887,8 +48071,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11965 components: - pos: -36.5,-0.5 @@ -50896,8 +48078,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11966 components: - pos: -36.5,-1.5 @@ -50905,8 +48085,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11967 components: - pos: -36.5,-2.5 @@ -50914,8 +48092,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11968 components: - pos: -36.5,-3.5 @@ -50923,8 +48099,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11969 components: - pos: -36.5,-4.5 @@ -50932,8 +48106,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11970 components: - pos: -36.5,-5.5 @@ -50941,8 +48113,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11971 components: - pos: -36.5,-6.5 @@ -50950,8 +48120,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11973 components: - rot: -1.5707963267948966 rad @@ -51008,8 +48176,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11980 components: - rot: -1.5707963267948966 rad @@ -51156,8 +48322,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12004 components: - rot: 1.5707963267948966 rad @@ -51190,8 +48354,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12008 components: - rot: 1.5707963267948966 rad @@ -51256,8 +48418,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12018 components: - rot: 1.5707963267948966 rad @@ -51287,8 +48447,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12022 components: - pos: -48.5,-12.5 @@ -52143,8 +49301,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3818 components: - rot: 3.141592653589793 rad @@ -52153,8 +49309,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3823 components: - rot: 1.5707963267948966 rad @@ -52866,8 +50020,6 @@ entities: pos: -45.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8757 components: - rot: -1.5707963267948966 rad @@ -52933,8 +50085,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9145 components: - rot: 3.141592653589793 rad @@ -52943,8 +50093,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9152 components: - pos: -33.5,2.5 @@ -52960,8 +50108,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9163 components: - rot: 1.5707963267948966 rad @@ -52970,16 +50116,12 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9251 components: - rot: 3.141592653589793 rad pos: -46.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9536 components: - pos: -42.5,8.5 @@ -52987,8 +50129,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9537 components: - rot: 1.5707963267948966 rad @@ -52997,8 +50137,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9538 components: - rot: 1.5707963267948966 rad @@ -53007,8 +50145,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11982 components: - rot: 1.5707963267948966 rad @@ -53288,8 +50424,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - uid: 9164 components: - rot: 3.141592653589793 rad @@ -53298,8 +50432,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 9544 @@ -53310,8 +50442,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#947507FF' type: AtmosPipeColor - proto: GasVentPump @@ -53322,8 +50452,6 @@ entities: pos: -27.5,-12.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 710 @@ -53332,8 +50460,6 @@ entities: pos: -2.5,13.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 817 @@ -53342,8 +50468,6 @@ entities: pos: -2.5,10.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 818 @@ -53352,8 +50476,6 @@ entities: pos: -2.5,-7.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 835 @@ -53361,8 +50483,6 @@ entities: - pos: 5.5,-1.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 838 @@ -53371,8 +50491,6 @@ entities: pos: 4.5,-6.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 846 @@ -53381,8 +50499,6 @@ entities: pos: 2.5,7.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 847 @@ -53391,8 +50507,6 @@ entities: pos: 6.5,7.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 848 @@ -53400,8 +50514,6 @@ entities: - pos: -17.5,-6.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 849 @@ -53409,8 +50521,6 @@ entities: - pos: -10.5,-6.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 864 @@ -53419,8 +50529,6 @@ entities: pos: -2.5,1.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 871 @@ -53429,8 +50537,6 @@ entities: pos: -9.5,-0.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 877 @@ -53439,8 +50545,6 @@ entities: pos: -9.5,4.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 1511 @@ -53448,8 +50552,6 @@ entities: - pos: -22.5,-8.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 1685 @@ -53457,8 +50559,6 @@ entities: - pos: -21.5,3.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 1770 @@ -53467,8 +50567,6 @@ entities: pos: 11.5,19.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 1814 @@ -53477,8 +50575,6 @@ entities: pos: 8.5,16.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 1817 @@ -53487,8 +50583,6 @@ entities: pos: -0.5,18.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 1852 @@ -53496,8 +50590,6 @@ entities: - pos: -3.5,23.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2071 @@ -53506,8 +50598,6 @@ entities: pos: 8.5,24.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2072 @@ -53515,8 +50605,6 @@ entities: - pos: 8.5,29.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2429 @@ -53525,8 +50613,6 @@ entities: pos: -14.5,23.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2430 @@ -53534,8 +50620,6 @@ entities: - pos: -13.5,28.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2443 @@ -53544,8 +50628,6 @@ entities: pos: 2.5,29.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2444 @@ -53554,8 +50636,6 @@ entities: pos: -7.5,29.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2445 @@ -53563,8 +50643,6 @@ entities: - pos: -5.5,34.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2446 @@ -53572,8 +50650,6 @@ entities: - pos: 0.5,34.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2474 @@ -53582,8 +50658,6 @@ entities: pos: -7.5,22.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2475 @@ -53592,8 +50666,6 @@ entities: pos: 2.5,22.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2842 @@ -53602,8 +50674,6 @@ entities: pos: 22.5,27.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2966 @@ -53612,8 +50682,6 @@ entities: pos: 23.5,14.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2969 @@ -53622,8 +50690,6 @@ entities: pos: 26.5,14.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2983 @@ -53631,8 +50697,6 @@ entities: - pos: 15.5,29.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3019 @@ -53641,8 +50705,6 @@ entities: pos: 14.5,25.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3020 @@ -53651,8 +50713,6 @@ entities: pos: 19.5,25.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3023 @@ -53661,8 +50721,6 @@ entities: pos: 14.5,18.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3024 @@ -53671,8 +50729,6 @@ entities: pos: 14.5,20.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3026 @@ -53681,8 +50737,6 @@ entities: pos: 15.5,13.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3206 @@ -53691,8 +50745,6 @@ entities: pos: 22.5,25.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3708 @@ -53701,8 +50753,6 @@ entities: pos: -31.5,-3.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3781 @@ -53710,8 +50760,6 @@ entities: - pos: -1.5,-34.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3834 @@ -53720,8 +50768,6 @@ entities: pos: 3.5,45.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3835 @@ -53730,8 +50776,6 @@ entities: pos: 5.5,44.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3838 @@ -53739,8 +50783,6 @@ entities: - pos: 8.5,51.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3841 @@ -53749,8 +50791,6 @@ entities: pos: 15.5,45.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3944 @@ -53759,8 +50799,6 @@ entities: pos: 9.5,43.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4196 @@ -53768,8 +50806,6 @@ entities: - pos: 30.5,3.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4197 @@ -53778,8 +50814,6 @@ entities: pos: 33.5,2.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4198 @@ -53788,8 +50822,6 @@ entities: pos: 33.5,0.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4199 @@ -53798,8 +50830,6 @@ entities: pos: 33.5,-5.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4200 @@ -53808,8 +50838,6 @@ entities: pos: 33.5,-7.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4201 @@ -53818,8 +50846,6 @@ entities: pos: 30.5,-8.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4203 @@ -53828,8 +50854,6 @@ entities: pos: 28.5,-0.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4231 @@ -53838,8 +50862,6 @@ entities: pos: 22.5,4.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4380 @@ -53848,8 +50870,6 @@ entities: pos: 19.5,-3.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4440 @@ -53858,8 +50878,6 @@ entities: pos: 11.5,2.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4441 @@ -53868,8 +50886,6 @@ entities: pos: 11.5,-8.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4444 @@ -53878,8 +50894,6 @@ entities: pos: 24.5,-1.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4464 @@ -53888,8 +50902,6 @@ entities: pos: 15.5,8.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4890 @@ -53898,8 +50910,6 @@ entities: pos: -18.5,-18.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4941 @@ -53908,8 +50918,6 @@ entities: pos: -15.5,-17.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5033 @@ -53918,8 +50926,6 @@ entities: pos: -24.5,-27.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5222 @@ -53928,8 +50934,6 @@ entities: pos: -10.5,-52.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5225 @@ -53938,8 +50942,6 @@ entities: pos: -11.5,-41.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5697 @@ -53947,8 +50949,6 @@ entities: - pos: 4.5,-17.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5698 @@ -53957,8 +50957,6 @@ entities: pos: 5.5,-24.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5714 @@ -53967,8 +50965,6 @@ entities: pos: 9.5,-27.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5715 @@ -53977,8 +50973,6 @@ entities: pos: 12.5,-25.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5718 @@ -53987,8 +50981,6 @@ entities: pos: 10.5,-19.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5734 @@ -53997,8 +50989,6 @@ entities: pos: 25.5,-20.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5763 @@ -54006,8 +50996,6 @@ entities: - pos: 27.5,-24.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5764 @@ -54016,8 +51004,6 @@ entities: pos: 33.5,-25.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5802 @@ -54026,15 +51012,11 @@ entities: pos: 13.5,-18.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - uid: 6416 components: - pos: 8.5,-11.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6419 @@ -54043,8 +51025,6 @@ entities: pos: -3.5,-13.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6461 @@ -54052,8 +51032,6 @@ entities: - pos: -1.5,-31.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6471 @@ -54061,8 +51039,6 @@ entities: - pos: -2.5,-28.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6554 @@ -54070,8 +51046,6 @@ entities: - pos: -16.5,-20.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6686 @@ -54080,8 +51054,6 @@ entities: pos: -21.5,-27.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6821 @@ -54090,8 +51062,6 @@ entities: pos: -26.5,-35.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6840 @@ -54100,8 +51070,6 @@ entities: pos: -23.5,-36.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6842 @@ -54109,8 +51077,6 @@ entities: - pos: -19.5,-34.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7087 @@ -54119,8 +51085,6 @@ entities: pos: -25.5,-17.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7323 @@ -54129,8 +51093,6 @@ entities: pos: -10.5,-26.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7379 @@ -54139,8 +51101,6 @@ entities: pos: -10.5,-20.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7380 @@ -54148,8 +51108,6 @@ entities: - pos: -9.5,-17.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7856 @@ -54157,8 +51115,6 @@ entities: - pos: -26.5,30.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7857 @@ -54167,8 +51123,6 @@ entities: pos: -26.5,23.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7871 @@ -54177,8 +51131,6 @@ entities: pos: -26.5,17.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7872 @@ -54187,8 +51139,6 @@ entities: pos: -26.5,20.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7886 @@ -54197,8 +51147,6 @@ entities: pos: -26.5,10.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7905 @@ -54207,8 +51155,6 @@ entities: pos: -36.5,10.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7906 @@ -54216,8 +51162,6 @@ entities: - pos: -35.5,15.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7910 @@ -54226,8 +51170,6 @@ entities: pos: -28.5,15.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7911 @@ -54236,8 +51178,6 @@ entities: pos: -28.5,12.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7912 @@ -54246,8 +51186,6 @@ entities: pos: -28.5,18.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8238 @@ -54255,8 +51193,6 @@ entities: - pos: -23.5,27.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8240 @@ -54265,8 +51201,6 @@ entities: pos: -22.5,25.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8300 @@ -54275,8 +51209,6 @@ entities: pos: -19.5,16.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8306 @@ -54285,8 +51217,6 @@ entities: pos: -22.5,17.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8318 @@ -54295,8 +51225,6 @@ entities: pos: -13.5,16.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8562 @@ -54304,8 +51232,6 @@ entities: - pos: -18.5,11.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8838 @@ -54318,8 +51244,6 @@ entities: - 8804 - 7236 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8991 @@ -54328,31 +51252,23 @@ entities: pos: -39.5,-34.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - uid: 8992 components: - rot: 3.141592653589793 rad pos: -36.5,-37.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - uid: 8993 components: - rot: 3.141592653589793 rad pos: -34.5,-34.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - uid: 10757 components: - pos: -38.5,3.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11962 @@ -54361,8 +51277,6 @@ entities: pos: -32.5,-8.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12027 @@ -54371,8 +51285,6 @@ entities: pos: -42.5,-12.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12028 @@ -54381,8 +51293,6 @@ entities: pos: -49.5,-13.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12029 @@ -54391,8 +51301,6 @@ entities: pos: -53.5,-12.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12030 @@ -54400,8 +51308,6 @@ entities: - pos: -49.5,-9.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12032 @@ -54409,8 +51315,6 @@ entities: - pos: -44.5,-6.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12035 @@ -54419,8 +51323,6 @@ entities: pos: -32.5,2.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12037 @@ -54428,8 +51330,6 @@ entities: - pos: -16.5,-11.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12039 @@ -54438,8 +51338,6 @@ entities: pos: -23.5,7.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12041 @@ -54448,8 +51346,6 @@ entities: pos: -25.5,0.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - proto: GasVentScrubber @@ -54460,8 +51356,6 @@ entities: pos: -2.5,14.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 814 @@ -54470,8 +51364,6 @@ entities: pos: 4.5,-1.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 815 @@ -54480,8 +51372,6 @@ entities: pos: -2.5,-6.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 816 @@ -54490,8 +51380,6 @@ entities: pos: -2.5,9.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 857 @@ -54500,8 +51388,6 @@ entities: pos: -17.5,-8.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 858 @@ -54509,8 +51395,6 @@ entities: - pos: -10.5,-8.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 885 @@ -54519,8 +51403,6 @@ entities: pos: -9.5,8.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 1512 @@ -54529,8 +51411,6 @@ entities: pos: -21.5,-7.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 1686 @@ -54539,8 +51419,6 @@ entities: pos: -21.5,0.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 1813 @@ -54549,8 +51427,6 @@ entities: pos: 6.5,16.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 1816 @@ -54559,8 +51435,6 @@ entities: pos: -4.5,18.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 1853 @@ -54568,8 +51442,6 @@ entities: - pos: -1.5,23.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2073 @@ -54577,8 +51449,6 @@ entities: - pos: 6.5,29.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2074 @@ -54587,8 +51457,6 @@ entities: pos: 7.5,24.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2439 @@ -54597,8 +51465,6 @@ entities: pos: -12.5,23.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2440 @@ -54606,8 +51472,6 @@ entities: - pos: -12.5,28.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2441 @@ -54616,8 +51480,6 @@ entities: pos: -8.5,26.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2442 @@ -54626,8 +51488,6 @@ entities: pos: 3.5,26.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2447 @@ -54636,8 +51496,6 @@ entities: pos: -5.5,31.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2448 @@ -54646,8 +51504,6 @@ entities: pos: 0.5,31.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2963 @@ -54656,8 +51512,6 @@ entities: pos: 22.5,14.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3001 @@ -54665,8 +51519,6 @@ entities: - pos: 16.5,29.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3016 @@ -54675,8 +51527,6 @@ entities: pos: 20.5,25.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3017 @@ -54685,8 +51535,6 @@ entities: pos: 15.5,25.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3021 @@ -54695,8 +51543,6 @@ entities: pos: 20.5,20.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3022 @@ -54705,8 +51551,6 @@ entities: pos: 20.5,18.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3027 @@ -54715,8 +51559,6 @@ entities: pos: 19.5,13.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3782 @@ -54724,8 +51566,6 @@ entities: - pos: 10.5,20.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3813 @@ -54734,8 +51574,6 @@ entities: pos: 7.5,44.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3814 @@ -54744,8 +51582,6 @@ entities: pos: 11.5,43.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3815 @@ -54753,8 +51589,6 @@ entities: - pos: 12.5,51.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3816 @@ -54763,8 +51597,6 @@ entities: pos: 13.5,45.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4205 @@ -54773,8 +51605,6 @@ entities: pos: 28.5,-4.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4214 @@ -54783,8 +51613,6 @@ entities: pos: 28.5,-8.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4226 @@ -54792,8 +51620,6 @@ entities: - pos: 24.5,3.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4381 @@ -54801,8 +51627,6 @@ entities: - pos: 17.5,-2.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4439 @@ -54811,8 +51635,6 @@ entities: pos: 12.5,7.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4442 @@ -54821,8 +51643,6 @@ entities: pos: 12.5,-1.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4443 @@ -54831,8 +51651,6 @@ entities: pos: 25.5,-4.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4465 @@ -54841,8 +51659,6 @@ entities: pos: 15.5,6.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4875 @@ -54850,8 +51666,6 @@ entities: - pos: -15.5,-15.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4876 @@ -54860,8 +51674,6 @@ entities: pos: -19.5,-16.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 5025 @@ -54869,8 +51681,6 @@ entities: - pos: -18.5,-20.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 5223 @@ -54879,8 +51689,6 @@ entities: pos: -11.5,-51.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 5224 @@ -54889,8 +51697,6 @@ entities: pos: -10.5,-42.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 5699 @@ -54899,8 +51705,6 @@ entities: pos: 6.5,-24.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 5700 @@ -54908,8 +51712,6 @@ entities: - pos: 3.5,-17.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 5716 @@ -54918,8 +51720,6 @@ entities: pos: 12.5,-26.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 5717 @@ -54928,8 +51728,6 @@ entities: pos: 8.5,-27.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 5719 @@ -54938,8 +51736,6 @@ entities: pos: 9.5,-18.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 5735 @@ -54947,8 +51743,6 @@ entities: - pos: 27.5,-20.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 5765 @@ -54957,8 +51751,6 @@ entities: pos: 27.5,-27.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 5766 @@ -54967,8 +51759,6 @@ entities: pos: 33.5,-26.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 5805 @@ -54977,8 +51767,6 @@ entities: pos: 13.5,-17.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6253 @@ -54987,8 +51775,6 @@ entities: pos: -26.5,-26.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6417 @@ -54997,8 +51783,6 @@ entities: pos: 11.5,-12.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6420 @@ -55007,8 +51791,6 @@ entities: pos: -1.5,-13.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6455 @@ -55017,8 +51799,6 @@ entities: pos: -3.5,-35.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6472 @@ -55027,8 +51807,6 @@ entities: pos: -2.5,-25.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6687 @@ -55037,8 +51815,6 @@ entities: pos: -3.5,-32.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6838 @@ -55047,8 +51823,6 @@ entities: pos: -26.5,-36.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6839 @@ -55056,8 +51830,6 @@ entities: - pos: -18.5,-33.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6841 @@ -55066,8 +51838,6 @@ entities: pos: -22.5,-37.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7088 @@ -55076,8 +51846,6 @@ entities: pos: -24.5,-17.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7227 @@ -55086,8 +51854,6 @@ entities: pos: -20.5,-26.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7325 @@ -55096,8 +51862,6 @@ entities: pos: -8.5,-26.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7381 @@ -55106,8 +51870,6 @@ entities: pos: -12.5,-20.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7382 @@ -55115,8 +51877,6 @@ entities: - pos: -11.5,-17.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7858 @@ -55124,8 +51884,6 @@ entities: - pos: -30.5,30.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7873 @@ -55134,8 +51892,6 @@ entities: pos: -26.5,16.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7874 @@ -55144,8 +51900,6 @@ entities: pos: -26.5,19.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7887 @@ -55154,8 +51908,6 @@ entities: pos: -26.5,11.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7907 @@ -55164,8 +51916,6 @@ entities: pos: -36.5,11.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7908 @@ -55173,8 +51923,6 @@ entities: - pos: -34.5,15.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7909 @@ -55183,8 +51931,6 @@ entities: pos: -31.5,15.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7913 @@ -55193,8 +51939,6 @@ entities: pos: -31.5,18.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7914 @@ -55203,8 +51947,6 @@ entities: pos: -31.5,12.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8239 @@ -55212,8 +51954,6 @@ entities: - pos: -22.5,27.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8241 @@ -55222,8 +51962,6 @@ entities: pos: -23.5,22.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8307 @@ -55231,8 +51969,6 @@ entities: - pos: -21.5,20.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8317 @@ -55241,8 +51977,6 @@ entities: pos: -11.5,16.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8563 @@ -55251,8 +51985,6 @@ entities: pos: -18.5,8.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8787 @@ -55261,8 +51993,6 @@ entities: pos: -31.5,-2.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8836 @@ -55275,8 +52005,6 @@ entities: - 8804 - 7236 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8994 @@ -55285,32 +52013,24 @@ entities: pos: -33.5,-34.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - uid: 9006 components: - rot: 3.141592653589793 rad pos: -37.5,-37.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - uid: 9007 components: - rot: 1.5707963267948966 rad pos: -38.5,-34.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - uid: 10758 components: - rot: 3.141592653589793 rad pos: -38.5,0.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12023 @@ -55318,8 +52038,6 @@ entities: - pos: -48.5,-9.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12024 @@ -55328,8 +52046,6 @@ entities: pos: -53.5,-11.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12025 @@ -55338,8 +52054,6 @@ entities: pos: -48.5,-13.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12026 @@ -55348,8 +52062,6 @@ entities: pos: -42.5,-11.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12033 @@ -55357,8 +52069,6 @@ entities: - pos: -40.5,-6.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12034 @@ -55367,8 +52077,6 @@ entities: pos: -30.5,-6.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12036 @@ -55376,8 +52084,6 @@ entities: - pos: -30.5,2.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12038 @@ -55386,8 +52092,6 @@ entities: pos: -14.5,-12.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12040 @@ -55395,8 +52099,6 @@ entities: - pos: -24.5,8.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12042 @@ -55405,8 +52107,6 @@ entities: pos: -26.5,-4.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12044 @@ -55415,8 +52115,6 @@ entities: pos: -26.5,-11.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12418 @@ -55425,8 +52123,6 @@ entities: pos: -2.5,4.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - proto: GeneratorBasic15kW @@ -60761,8 +57457,6 @@ entities: - pos: 33.5,-24.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - proto: MachineAnomalyVessel entities: - uid: 6360 @@ -63346,32 +60040,24 @@ entities: - pos: -19.5,-25.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - uid: 4953 components: - rot: 3.141592653589793 rad pos: -19.5,-23.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - uid: 4954 components: - rot: 1.5707963267948966 rad pos: -10.5,-27.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - uid: 4986 components: - rot: -1.5707963267948966 rad pos: -12.5,-27.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - uid: 5067 components: - rot: -1.5707963267948966 rad @@ -63599,46 +60285,34 @@ entities: - pos: -15.5,-15.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - uid: 7053 components: - rot: 3.141592653589793 rad pos: -22.5,-28.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - uid: 7064 components: - rot: 3.141592653589793 rad pos: -25.5,-28.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - uid: 7288 components: - pos: -17.5,-20.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - uid: 7367 components: - rot: 1.5707963267948966 rad pos: -17.5,-25.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - uid: 7397 components: - pos: -25.5,-22.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - uid: 7582 components: - pos: -10.5,-20.5 @@ -69512,21 +66186,29 @@ entities: entities: - uid: 3699 components: + - name: AI satellite Backup SMES + type: MetaData - pos: 10.5,56.5 parent: 4812 type: Transform - uid: 3700 components: + - name: AI satellite SMES + type: MetaData - pos: 14.5,47.5 parent: 4812 type: Transform - uid: 8722 components: + - name: SMES Bank 2 + type: MetaData - pos: -44.5,-2.5 parent: 4812 type: Transform - uid: 8723 components: + - name: SMES Bank 1 + type: MetaData - pos: -45.5,-2.5 parent: 4812 type: Transform @@ -69539,6 +66221,8 @@ entities: type: Transform - uid: 10637 components: + - name: Grav SMES + type: MetaData - pos: -47.5,-11.5 parent: 4812 type: Transform @@ -70893,6 +67577,8 @@ entities: type: Transform - uid: 1360 components: + - name: Bar Substation + type: MetaData - pos: 5.5,4.5 parent: 4812 type: Transform @@ -70912,6 +67598,8 @@ entities: type: Transform - uid: 3787 components: + - name: AI satellite Substation + type: MetaData - pos: 13.5,47.5 parent: 4812 type: Transform diff --git a/Resources/Maps/origin.yml b/Resources/Maps/origin.yml index 1bb3c59a950..faf67024a6e 100644 --- a/Resources/Maps/origin.yml +++ b/Resources/Maps/origin.yml @@ -82,175 +82,175 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: WAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAXgAAAAACXgAAAAAAXgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAYAAAAAAAYAAAAAAAWAAAAAAAYQAAAAABXgAAAAABXgAAAAABXgAAAAACcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAAAYQAAAAAAXgAAAAABXgAAAAAAXgAAAAACYQAAAAABcAAAAAAAWAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAWAAAAAAAYQAAAAABWAAAAAAAXwAAAAAAXwAAAAAAYQAAAAAAcAAAAAAAXgAAAAAAXgAAAAABXgAAAAADXwAAAAAAcAAAAAAAYQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAADcAAAAAAAXgAAAAACXgAAAAAAXgAAAAADXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAYQAAAAABYQAAAAADYQAAAAAAYQAAAAACcAAAAAAAWAAAAAAAWAAAAAAAXwAAAAAAYQAAAAADXgAAAAABXgAAAAABXgAAAAACcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAACXgAAAAAAXgAAAAACXgAAAAABGgAAAAACcAAAAAAAWAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAWAAAAAAAYAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXgAAAAABXgAAAAAAXgAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAXgAAAAAAXgAAAAACXgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACWAAAAAAAUwAAAAACCwAAAAAAcAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAcAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAGgAAAAAAbQAAAAAAbQAAAAAARgAAAAABUwAAAAACUwAAAAADCwAAAAAAcAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAcAAAAAAAXgAAAAACXgAAAAABXgAAAAADGgAAAAAAbQAAAAADbQAAAAACUwAAAAACUwAAAAADUwAAAAAACwAAAAAAcAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAcAAAAAAAXgAAAAABXgAAAAADXgAAAAABcAAAAAAAbQAAAAADbQAAAAABcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAJgAAAAAAJgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXgAAAAACXgAAAAABXgAAAAACcAAAAAAAbQAAAAAAbQAAAAABcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAYQAAAAADcAAAAAAAGgAAAAAAGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAUwAAAAADRgAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADWAAAAAAAUwAAAAACUwAAAAACUwAAAAACcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAAC + tiles: WAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAXgAAAAADXgAAAAACXgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAWAAAAAAAYQAAAAABXgAAAAADXgAAAAADXgAAAAADcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAABYQAAAAABXgAAAAABXgAAAAADXgAAAAAAYQAAAAACcAAAAAAAWAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAWAAAAAAAYQAAAAABWAAAAAAAXwAAAAAAXwAAAAAAYQAAAAACcAAAAAAAXgAAAAADXgAAAAABXgAAAAADXwAAAAAAcAAAAAAAYQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAABcAAAAAAAXgAAAAACXgAAAAABXgAAAAABXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAYQAAAAABYQAAAAAAYQAAAAABYQAAAAACcAAAAAAAWAAAAAAAWAAAAAAAXwAAAAAAYQAAAAABXgAAAAADXgAAAAADXgAAAAADcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAACXgAAAAADXgAAAAABXgAAAAABGgAAAAADcAAAAAAAWAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAWAAAAAAAYAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXgAAAAACXgAAAAABXgAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAXgAAAAADXgAAAAACXgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABWAAAAAAAUwAAAAACCwAAAAAAcAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAcAAAAAAAXgAAAAAAXgAAAAACXgAAAAADGgAAAAABbQAAAAAAbQAAAAABRgAAAAACUwAAAAADUwAAAAABCwAAAAAAcAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAcAAAAAAAXgAAAAADXgAAAAABXgAAAAADGgAAAAAAbQAAAAADbQAAAAADUwAAAAABUwAAAAAAUwAAAAAACwAAAAAAcAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAcAAAAAAAXgAAAAAAXgAAAAAAXgAAAAABcAAAAAAAbQAAAAAAbQAAAAADcAAAAAAAUwAAAAABUwAAAAACUwAAAAACcAAAAAAAJgAAAAAAJgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXgAAAAAAXgAAAAACXgAAAAAAcAAAAAAAbQAAAAABbQAAAAADcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAYQAAAAABcAAAAAAAGgAAAAAAGgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAUwAAAAAARgAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAABWAAAAAAAUwAAAAACUwAAAAADUwAAAAADcAAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAAC version: 6 0,-1: ind: 0,-1 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAACbQAAAAABbQAAAAABbQAAAAADbQAAAAABcAAAAAAAYQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAAAbQAAAAACbQAAAAABGgAAAAAAbQAAAAACbQAAAAABbQAAAAADbQAAAAACbQAAAAACbQAAAAABPwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAACbQAAAAABbQAAAAADcAAAAAAAbQAAAAACbQAAAAACbQAAAAABbQAAAAABbQAAAAAAbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbQAAAAADbQAAAAACcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAADbQAAAAAAbQAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbQAAAAADbQAAAAADcAAAAAAAGgAAAAAAbQAAAAABbQAAAAAAbQAAAAABbQAAAAAAbQAAAAABbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAABbQAAAAACbQAAAAADbQAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADbQAAAAABbQAAAAADbQAAAAAAbQAAAAAAbQAAAAABcAAAAAAAbQAAAAABbQAAAAACbQAAAAAAbQAAAAABbQAAAAACbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAACbQAAAAABbQAAAAAAbQAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbQAAAAACbQAAAAABbQAAAAAAbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAPQAAAAAAXwAAAAAAPQAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAAAWAAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAAARgAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAAARgAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAABbQAAAAACbQAAAAADbQAAAAAAbQAAAAAAcAAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAADbQAAAAADbQAAAAABGgAAAAADbQAAAAAAbQAAAAACbQAAAAAAbQAAAAACbQAAAAAAbQAAAAADPwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAAAbQAAAAACbQAAAAAAcAAAAAAAbQAAAAADbQAAAAAAbQAAAAADbQAAAAADbQAAAAACbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAABbQAAAAABbQAAAAAAbQAAAAADcAAAAAAAbQAAAAACbQAAAAACbQAAAAABbQAAAAABbQAAAAACcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAACcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAACbQAAAAADbQAAAAACbQAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAbQAAAAADbQAAAAAAbQAAAAACbQAAAAAAcAAAAAAAGgAAAAAAbQAAAAACbQAAAAACbQAAAAADbQAAAAAAbQAAAAABbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbQAAAAAAbQAAAAABbQAAAAAAcAAAAAAAbQAAAAABbQAAAAACbQAAAAABbQAAAAABbQAAAAACbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABbQAAAAADbQAAAAAAbQAAAAACbQAAAAACbQAAAAABcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAABbQAAAAACbQAAAAAAbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAABbQAAAAACbQAAAAACbQAAAAADcAAAAAAAbQAAAAAAbQAAAAACbQAAAAAAbQAAAAADbQAAAAADbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAADbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAABGgAAAAADcAAAAAAAPQAAAAAAXwAAAAAAPQAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAACWAAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAABRgAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAABRgAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAAB version: 6 -1,0: ind: -1,0 - tiles: cAAAAAAAUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAGgAAAAAAGgAAAAABGgAAAAADGgAAAAADGgAAAAACGgAAAAADGgAAAAAAGgAAAAABGgAAAAADcAAAAAAAGgAAAAADcAAAAAAAUwAAAAABUwAAAAACUwAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAABGgAAAAABGgAAAAAAGgAAAAABGgAAAAADGgAAAAACGgAAAAADcAAAAAAAGgAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAADcAAAAAAAUwAAAAAARgAAAAABWAAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAADcAAAAAAAUwAAAAADUwAAAAABUwAAAAACcAAAAAAAGgAAAAACcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAcAAAAAAALAAAAAAALAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACWAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAWAAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAAAcAAAAAAAOQAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAABLAAAAAAAUwAAAAAAUwAAAAACUwAAAAADWAAAAAAAUwAAAAADUwAAAAADUwAAAAACWAAAAAAAUwAAAAADcAAAAAAAOQAAAAAARgAAAAACUwAAAAADUwAAAAACUwAAAAABLAAAAAAANwAAAAAAUwAAAAACNwAAAAAAUwAAAAADNwAAAAAAUwAAAAAANwAAAAAAUwAAAAAAUwAAAAACNwAAAAAAOQAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAADNwAAAAAAUwAAAAADNwAAAAAAUwAAAAAANwAAAAAAUwAAAAACNwAAAAAAUwAAAAADUwAAAAACcAAAAAAAOQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABNwAAAAAAUwAAAAADNwAAAAAAUwAAAAADNwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAOQAAAAAAXwAAAAAAXwAAAAAAYQAAAAABXwAAAAAAUwAAAAACNwAAAAAAWAAAAAAANwAAAAAAUwAAAAACNwAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAYQAAAAADcAAAAAAAYAAAAAAAcAAAAAAAUwAAAAACNwAAAAAAUwAAAAAANwAAAAAAUwAAAAABNwAAAAAAcAAAAAAAUwAAAAACWAAAAAAAUwAAAAABcAAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAANwAAAAAAUwAAAAADNwAAAAAAUwAAAAAANwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAKQAAAAAAYAAAAAAAcAAAAAAAYQAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADNwAAAAAAUwAAAAACUwAAAAACNwAAAAAAUwAAAAABGgAAAAABKQAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAA + tiles: cAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAADGgAAAAABGgAAAAADGgAAAAACGgAAAAADGgAAAAACGgAAAAABcAAAAAAAGgAAAAACcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAABGgAAAAABGgAAAAACGgAAAAACGgAAAAADGgAAAAACGgAAAAADcAAAAAAAGgAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAUwAAAAACRgAAAAABWAAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAGgAAAAACcAAAAAAAUwAAAAACUwAAAAABUwAAAAADcAAAAAAALAAAAAAALAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABWAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAABWAAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAABcAAAAAAAOQAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAABLAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAWAAAAAAAUwAAAAAAUwAAAAACUwAAAAABWAAAAAAAUwAAAAADcAAAAAAAOQAAAAAARgAAAAACUwAAAAADUwAAAAADUwAAAAAALAAAAAAANwAAAAAAUwAAAAADNwAAAAAAUwAAAAAANwAAAAAAUwAAAAAANwAAAAAAUwAAAAAAUwAAAAABNwAAAAAAOQAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAACNwAAAAAAUwAAAAAANwAAAAAAUwAAAAACNwAAAAAAUwAAAAACNwAAAAAAUwAAAAACUwAAAAADcAAAAAAAOQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADNwAAAAAAUwAAAAACNwAAAAAAUwAAAAAANwAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAOQAAAAAAXwAAAAAAXwAAAAAAYQAAAAACXwAAAAAAUwAAAAADNwAAAAAAWAAAAAAANwAAAAAAUwAAAAABNwAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAYQAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAUwAAAAADNwAAAAAAUwAAAAADNwAAAAAAUwAAAAACNwAAAAAAcAAAAAAAUwAAAAACWAAAAAAAUwAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAANwAAAAAAUwAAAAACNwAAAAAAUwAAAAABNwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADcAAAAAAAKQAAAAAAYAAAAAAAcAAAAAAAYQAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAANwAAAAAAUwAAAAAAUwAAAAAANwAAAAAAUwAAAAADGgAAAAADKQAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAA version: 6 0,0: ind: 0,0 - tiles: GgAAAAABGgAAAAAAGgAAAAAAGgAAAAADGgAAAAABLAAAAAAALAAAAAAALAAAAAAASgAAAAAASgAAAAAALAAAAAAALAAAAAAALAAAAAAAGgAAAAABGgAAAAACcAAAAAAAGgAAAAABGgAAAAACGgAAAAACGgAAAAAAGgAAAAAALAAAAAAALAAAAAAALAAAAAAASgAAAAAASgAAAAAALAAAAAAALAAAAAAALAAAAAAAGgAAAAACGgAAAAACcAAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAABRgAAAAAAWAAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAABRgAAAAABUwAAAAADWAAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAACWAAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAABOQAAAAAAOQAAAAAAOQAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcAAAAAAAbQAAAAABbQAAAAACbQAAAAACbQAAAAACbQAAAAADbQAAAAACbQAAAAAAcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcAAAAAAAbQAAAAABbQAAAAACbQAAAAADbQAAAAAAbQAAAAABbQAAAAACbQAAAAAAGgAAAAACOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAbQAAAAACbQAAAAABbQAAAAADbQAAAAAAbQAAAAACbQAAAAAAbQAAAAACGgAAAAADOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAbQAAAAADbQAAAAAAbQAAAAADbQAAAAACbQAAAAAAbQAAAAACbQAAAAACcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAbQAAAAABbQAAAAAAbQAAAAACbQAAAAAAbQAAAAAAbQAAAAACbQAAAAACbgAAAAACGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcAAAAAAAbQAAAAACbQAAAAAAbQAAAAACbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAADbgAAAAADKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAADbQAAAAACbQAAAAACbQAAAAADbgAAAAABKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAAAGgAAAAACGgAAAAABcAAAAAAAbQAAAAABbQAAAAADbQAAAAADbQAAAAAAbQAAAAADbgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAABGgAAAAABGgAAAAACcAAAAAAAbQAAAAABbQAAAAADbQAAAAABbQAAAAADbQAAAAAAbgAAAAADKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAACGgAAAAAAGgAAAAABcAAAAAAAbQAAAAACbQAAAAABbQAAAAABbQAAAAAAbQAAAAAAbgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAABGgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: GgAAAAAAGgAAAAADGgAAAAACGgAAAAADGgAAAAACLAAAAAAALAAAAAAALAAAAAAASgAAAAAASgAAAAAALAAAAAAALAAAAAAALAAAAAAAGgAAAAABGgAAAAABcAAAAAAAGgAAAAABGgAAAAACGgAAAAACGgAAAAABGgAAAAAALAAAAAAALAAAAAAALAAAAAAASgAAAAAASgAAAAAALAAAAAAALAAAAAAALAAAAAAAGgAAAAADGgAAAAADcAAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAAARgAAAAACWAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABRgAAAAAAUwAAAAADWAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAABWAAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAABOQAAAAAAOQAAAAAAOQAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbQAAAAACbQAAAAAAbQAAAAADbQAAAAACbQAAAAAAcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcAAAAAAAbQAAAAABbQAAAAACbQAAAAABbQAAAAADbQAAAAADbQAAAAACbQAAAAACGgAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAbQAAAAAAbQAAAAACbQAAAAABbQAAAAAAbQAAAAACbQAAAAABbQAAAAADGgAAAAADOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAbQAAAAACbQAAAAACbQAAAAACbQAAAAABbQAAAAAAbQAAAAAAbQAAAAADcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAbQAAAAABbQAAAAACbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAADbQAAAAAAbQAAAAABbQAAAAABbQAAAAADbgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAGgAAAAADGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAAAbQAAAAACbQAAAAACbQAAAAAAbgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAAAGgAAAAADGgAAAAAAcAAAAAAAbQAAAAADbQAAAAABbQAAAAACbQAAAAACbQAAAAABbgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAADGgAAAAADGgAAAAAAcAAAAAAAbQAAAAAAbQAAAAABbQAAAAADbQAAAAADbQAAAAAAbgAAAAABKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAABGgAAAAADGgAAAAADcAAAAAAAbQAAAAACbQAAAAADbQAAAAACbQAAAAADbQAAAAADbgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAADGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: UwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAUwAAAAABWwAAAAABUwAAAAACcAAAAAAAYAAAAAAAUwAAAAACcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABGgAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAACWwAAAAABUwAAAAABXwAAAAAAcAAAAAAAUwAAAAADcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAACcAAAAAAAUwAAAAAAWwAAAAABUwAAAAACcAAAAAAAXwAAAAAAUwAAAAADcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAADGgAAAAACUwAAAAADWwAAAAADUwAAAAACcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAUwAAAAABUwAAAAADUwAAAAADcAAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAAAGgAAAAABUwAAAAAAWwAAAAADUwAAAAADcAAAAAAAcAAAAAAAUwAAAAABGgAAAAABUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAUwAAAAACWwAAAAABUwAAAAAAcAAAAAAAXwAAAAAAUwAAAAADcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAUwAAAAADWAAAAAAAUwAAAAADUwAAAAABcAAAAAAAUwAAAAABWwAAAAAAUwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAACcAAAAAAAUwAAAAAAWwAAAAABUwAAAAABcAAAAAAAYAAAAAAAYwAAAAACYwAAAAABYwAAAAACTwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADCwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAADWAAAAAAAUwAAAAAAYwAAAAACYwAAAAABYwAAAAACTwAAAAAAcAAAAAAAUwAAAAAAWAAAAAAAUwAAAAACRgAAAAACUwAAAAAAUwAAAAABUwAAAAABRgAAAAADUwAAAAADUwAAAAADWAAAAAAAcAAAAAAAYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAACYwAAAAAAYwAAAAABYwAAAAABYwAAAAACcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAADYwAAAAADYwAAAAACcAAAAAAAUwAAAAACUwAAAAABUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAUwAAAAABRgAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAACGgAAAAACUwAAAAABUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: UwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAUwAAAAADWwAAAAACUwAAAAABcAAAAAAAYAAAAAAAUwAAAAADcAAAAAAAUwAAAAADUwAAAAADUwAAAAACGgAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAADcAAAAAAAUwAAAAAAWwAAAAADUwAAAAADXwAAAAAAcAAAAAAAUwAAAAACcAAAAAAAUwAAAAADUwAAAAADUwAAAAADcAAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAADcAAAAAAAUwAAAAAAWwAAAAACUwAAAAABcAAAAAAAXwAAAAAAUwAAAAADcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAAAGgAAAAABUwAAAAADWwAAAAADUwAAAAADcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAUwAAAAADUwAAAAACUwAAAAABcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADGgAAAAACUwAAAAAAWwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABGgAAAAABUwAAAAABUwAAAAACUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAABcAAAAAAAUwAAAAADWwAAAAADUwAAAAAAcAAAAAAAXwAAAAAAUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAUwAAAAACWAAAAAAAUwAAAAABUwAAAAACcAAAAAAAUwAAAAACWwAAAAADUwAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAUwAAAAAAWwAAAAABUwAAAAADcAAAAAAAYAAAAAAAYwAAAAAAYwAAAAACYwAAAAACTwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABCwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADWAAAAAAAUwAAAAACYwAAAAADYwAAAAACYwAAAAABTwAAAAAAcAAAAAAAUwAAAAACWAAAAAAAUwAAAAADRgAAAAACUwAAAAAAUwAAAAADUwAAAAACRgAAAAABUwAAAAACUwAAAAAAWAAAAAAAcAAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAADYwAAAAADYwAAAAABYwAAAAABYwAAAAADcAAAAAAAUwAAAAADUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAABYwAAAAABYwAAAAADcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAUwAAAAADRgAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAABGgAAAAABUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 -2,0: ind: -2,0 - tiles: UwAAAAAAUwAAAAABUwAAAAADUwAAAAABGgAAAAADUwAAAAADUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAACGgAAAAABUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAUwAAAAABUwAAAAACGgAAAAAAGgAAAAADGgAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAUwAAAAABUwAAAAACGgAAAAABGgAAAAABGgAAAAAAUwAAAAAAUwAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAUwAAAAABRgAAAAABUwAAAAAAcAAAAAAAUwAAAAACUwAAAAABGgAAAAAAGgAAAAADGgAAAAAAUwAAAAABUwAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAADLAAAAAAALAAAAAAALAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABWAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAWAAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAADcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACRgAAAAAAUwAAAAADUwAAAAABUwAAAAADRgAAAAADUwAAAAADUwAAAAADUwAAAAACHwAAAAADHgAAAAACGgAAAAADGgAAAAADcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAADHgAAAAADHgAAAAADHgAAAAABHgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABHwAAAAADHgAAAAAAHgAAAAACHgAAAAACcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAUwAAAAADXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADXwAAAAAAcAAAAAAAHQAAAAABHQAAAAAAHQAAAAACcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAADWAAAAAAAWAAAAAAAcAAAAAAAXwAAAAAAHQAAAAAAHQAAAAABHQAAAAABcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAACUwAAAAACWAAAAAAAcAAAAAAAcAAAAAAAHQAAAAADHQAAAAACHQAAAAACcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAHQAAAAACHQAAAAADHQAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAGgAAAAADUwAAAAAAWwAAAAAAUwAAAAABcAAAAAAAXwAAAAAA + tiles: UwAAAAABUwAAAAACUwAAAAACUwAAAAAAGgAAAAADUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACGgAAAAABUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAUwAAAAAAUwAAAAAAGgAAAAAAGgAAAAADGgAAAAADUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAUwAAAAAAUwAAAAADGgAAAAABGgAAAAACGgAAAAABUwAAAAABUwAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAUwAAAAAARgAAAAADUwAAAAABcAAAAAAAUwAAAAADUwAAAAABGgAAAAADGgAAAAABGgAAAAABUwAAAAABUwAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAADLAAAAAAALAAAAAAALAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACWAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAWAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAARgAAAAABUwAAAAABUwAAAAABUwAAAAAARgAAAAADUwAAAAABUwAAAAACUwAAAAACHwAAAAADHgAAAAAAGgAAAAADGgAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAADHgAAAAACHgAAAAADHgAAAAACHgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAHwAAAAAAHgAAAAAAHgAAAAABHgAAAAABcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAUwAAAAADXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADXwAAAAAAcAAAAAAAHQAAAAABHQAAAAADHQAAAAABcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAACWAAAAAAAWAAAAAAAcAAAAAAAXwAAAAAAHQAAAAAAHQAAAAAAHQAAAAACcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAHQAAAAADHQAAAAACHQAAAAACcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAHQAAAAACHQAAAAABHQAAAAABcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAGgAAAAADUwAAAAACWwAAAAADUwAAAAACcAAAAAAAXwAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADGgAAAAACUwAAAAABcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAAAcAAAAAAAWAAAAAAAWwAAAAAAUwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHQAAAAABOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAACWwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAHQAAAAADOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAAAWwAAAAADUwAAAAABWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAHQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAACWwAAAAABUwAAAAACWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAADcAAAAAAAUwAAAAAAWwAAAAADWAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABWwAAAAACWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAWwAAAAABUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABWwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABGgAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAADWwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABGgAAAAACUwAAAAADUwAAAAADUwAAAAACGgAAAAABWwAAAAACWwAAAAAAWwAAAAAAWwAAAAADWwAAAAADWwAAAAACWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAAAGgAAAAAAUwAAAAADUwAAAAAAUwAAAAABGgAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAADWAAAAAAAUwAAAAACUwAAAAABGgAAAAADUwAAAAADUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABcAAAAAAAWgAAAAADWgAAAAACWgAAAAABWgAAAAACWgAAAAABWgAAAAACWgAAAAADWgAAAAAAUwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAWAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAWgAAAAADEAAAAAADEAAAAAACEAAAAAAAEAAAAAAAEAAAAAACEAAAAAADWgAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAWgAAAAAAEAAAAAADEAAAAAAAEAAAAAABEAAAAAACEAAAAAADEAAAAAAAWgAAAAAAUwAAAAAAUwAAAAADUwAAAAABcAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAGgAAAAADUwAAAAACcAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAcAAAAAAAWAAAAAAAWwAAAAABUwAAAAACcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHQAAAAABOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAABWwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAHQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAADWwAAAAAAUwAAAAACWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAHQAAAAADOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAADWwAAAAAAUwAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAABcAAAAAAAUwAAAAABWwAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADWwAAAAADWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAACWwAAAAACUwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAWwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAGgAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAADWwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAGgAAAAADUwAAAAAAUwAAAAAAUwAAAAABGgAAAAADWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAADWwAAAAABWwAAAAADGgAAAAACUwAAAAADUwAAAAADUwAAAAACGgAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAABWAAAAAAAUwAAAAADUwAAAAAAGgAAAAADUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAACcAAAAAAAWgAAAAAAWgAAAAADWgAAAAACWgAAAAACWgAAAAACWgAAAAADWgAAAAAAWgAAAAADUwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAWAAAAAAAUwAAAAADUwAAAAACcAAAAAAAWgAAAAAAEAAAAAAAEAAAAAADEAAAAAADEAAAAAACEAAAAAABEAAAAAADWgAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAWgAAAAAAEAAAAAACEAAAAAAAEAAAAAADEAAAAAACEAAAAAAAEAAAAAABWgAAAAADUwAAAAACUwAAAAABUwAAAAADcAAAAAAA version: 6 1,0: ind: 1,0 - tiles: UwAAAAAAUwAAAAABUwAAAAABcAAAAAAAWgAAAAACEAAAAAACEAAAAAACEAAAAAAAEAAAAAADEAAAAAAAEAAAAAADWgAAAAAAUwAAAAABUwAAAAABWAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAcAAAAAAAWgAAAAAAEAAAAAABEAAAAAAAEAAAAAACEAAAAAADEAAAAAAAEAAAAAADWgAAAAABUwAAAAABUwAAAAACUwAAAAABGgAAAAABUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAWgAAAAABEAAAAAABEAAAAAADEAAAAAAAEAAAAAADEAAAAAADEAAAAAADWgAAAAADUwAAAAACWAAAAAAAUwAAAAACcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADcAAAAAAAWgAAAAAAEAAAAAACEAAAAAADEAAAAAADEAAAAAADEAAAAAABEAAAAAACWgAAAAADUwAAAAADUwAAAAADUwAAAAADcAAAAAAAUwAAAAADUwAAAAADUwAAAAACcAAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAACWgAAAAABWgAAAAAAWgAAAAADWgAAAAADUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAUwAAAAADUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAUwAAAAACUwAAAAACUwAAAAABGgAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAGgAAAAADWAAAAAAAUwAAAAAAUwAAAAADGgAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAADWAAAAAAAGgAAAAABWAAAAAAAWAAAAAAAUwAAAAADGgAAAAAAUwAAAAAAUwAAAAABUwAAAAAACwAAAAAAWAAAAAAAUwAAAAACUwAAAAABUwAAAAABWAAAAAAAUwAAAAAAWAAAAAAAGgAAAAADbQAAAAABbQAAAAACbQAAAAABcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAGgAAAAABHgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAADbQAAAAACGgAAAAABbQAAAAABbQAAAAAAbQAAAAABcAAAAAAAGgAAAAAAHgAAAAACGgAAAAAAcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAUwAAAAADbQAAAAACbQAAAAABbQAAAAADGgAAAAABbQAAAAADbQAAAAACbQAAAAACcAAAAAAAGgAAAAADHgAAAAABGgAAAAADcAAAAAAAWAAAAAAAUwAAAAAAcAAAAAAAWAAAAAAAbQAAAAAAbQAAAAAAbQAAAAACcAAAAAAAbQAAAAABbQAAAAADbQAAAAABcAAAAAAAGgAAAAABHgAAAAABGgAAAAABcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAUwAAAAACbQAAAAACbQAAAAAAbQAAAAADcAAAAAAAbQAAAAADbQAAAAABbQAAAAAAcAAAAAAAGgAAAAACHgAAAAACGgAAAAADcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAUwAAAAADbQAAAAADbQAAAAAAbQAAAAAAbQAAAAABbQAAAAADbQAAAAAAbQAAAAADcAAAAAAAGgAAAAACGgAAAAABGgAAAAADcAAAAAAAIQAAAAAAIQAAAAABIQAAAAACIQAAAAABcAAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAADcAAAAAAAIQAAAAABIQAAAAADIQAAAAAAIQAAAAAA + tiles: UwAAAAADUwAAAAACUwAAAAADcAAAAAAAWgAAAAADEAAAAAACEAAAAAADEAAAAAACEAAAAAADEAAAAAADEAAAAAADWgAAAAADUwAAAAAAUwAAAAADWAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADcAAAAAAAWgAAAAABEAAAAAACEAAAAAABEAAAAAADEAAAAAACEAAAAAAAEAAAAAAAWgAAAAAAUwAAAAADUwAAAAAAUwAAAAAAGgAAAAABUwAAAAABUwAAAAADUwAAAAABcAAAAAAAWgAAAAAAEAAAAAABEAAAAAACEAAAAAADEAAAAAACEAAAAAABEAAAAAADWgAAAAACUwAAAAADWAAAAAAAUwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAADcAAAAAAAWgAAAAABEAAAAAADEAAAAAADEAAAAAABEAAAAAADEAAAAAADEAAAAAABWgAAAAADUwAAAAABUwAAAAAAUwAAAAADcAAAAAAAUwAAAAABUwAAAAABUwAAAAADcAAAAAAAWgAAAAACWgAAAAABWgAAAAACWgAAAAADWgAAAAAAWgAAAAADWgAAAAAAWgAAAAACUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAUwAAAAADUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAUwAAAAABUwAAAAACUwAAAAADGgAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAADGgAAAAABWAAAAAAAUwAAAAACUwAAAAABGgAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAACWAAAAAAAGgAAAAADWAAAAAAAWAAAAAAAUwAAAAADGgAAAAACUwAAAAABUwAAAAAAUwAAAAACCwAAAAAAWAAAAAAAUwAAAAADUwAAAAAAUwAAAAADWAAAAAAAUwAAAAACWAAAAAAAGgAAAAACbQAAAAADbQAAAAACbQAAAAACcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAGgAAAAABHgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAABGgAAAAADbQAAAAABbQAAAAADbQAAAAADcAAAAAAAGgAAAAADHgAAAAAAGgAAAAADcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAUwAAAAABbQAAAAADbQAAAAACbQAAAAABGgAAAAACbQAAAAAAbQAAAAADbQAAAAABcAAAAAAAGgAAAAAAHgAAAAAAGgAAAAABcAAAAAAAWAAAAAAAUwAAAAACcAAAAAAAWAAAAAAAbQAAAAAAbQAAAAACbQAAAAABcAAAAAAAbQAAAAADbQAAAAADbQAAAAABcAAAAAAAGgAAAAAAHgAAAAADGgAAAAADcAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAUwAAAAADbQAAAAACbQAAAAADbQAAAAADcAAAAAAAbQAAAAADbQAAAAAAbQAAAAABcAAAAAAAGgAAAAADHgAAAAACGgAAAAABcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAUwAAAAABbQAAAAADbQAAAAACbQAAAAAAbQAAAAACbQAAAAADbQAAAAADbQAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAACcAAAAAAAIQAAAAABIQAAAAADIQAAAAACIQAAAAAAcAAAAAAAbQAAAAABbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAABcAAAAAAAIQAAAAABIQAAAAABIQAAAAADIQAAAAAA version: 6 -1,1: ind: -1,1 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAACWAAAAAAAWAAAAAAAUwAAAAAAWAAAAAAAUwAAAAABcAAAAAAAGwAAAAACGwAAAAADcAAAAAAAFgAAAAAASQAAAAAASQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALAAAAAAAQwAAAAAALAAAAAAALAAAAAAAQwAAAAAALAAAAAAAcAAAAAAAGwAAAAADGwAAAAADFgAAAAAAcAAAAAAAUwAAAAAACwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAALAAAAAAAQwAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAGwAAAAAAGwAAAAAAWAAAAAAAYQAAAAABCwAAAAAAUwAAAAACcAAAAAAAYQAAAAAAcAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAGwAAAAADGwAAAAAAWAAAAAAAFgAAAAAAUwAAAAABCwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAADGwAAAAACUwAAAAADcAAAAAAAFgAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYAAAAAAAGgAAAAAAXwAAAAAAWAAAAAAAYQAAAAACWAAAAAAAWAAAAAAAcAAAAAAAGwAAAAAAGwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABWAAAAAAAWAAAAAAAYQAAAAABWAAAAAAAWAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAHgAAAAABGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAHgAAAAABGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAACWAAAAAAAWAAAAAAAHgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHgAAAAACGgAAAAADYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAHgAAAAACGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAXwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAACUwAAAAACcAAAAAAAbQAAAAACbQAAAAABbQAAAAABcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAACUwAAAAAAUwAAAAAC + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAACWAAAAAAAWAAAAAAAUwAAAAACWAAAAAAAUwAAAAADcAAAAAAAGwAAAAAAGwAAAAABcAAAAAAAFgAAAAAASQAAAAAASQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALAAAAAAAQwAAAAAALAAAAAAALAAAAAAAQwAAAAAALAAAAAAAcAAAAAAAGwAAAAAAGwAAAAADFgAAAAAAcAAAAAAAUwAAAAABCwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAALAAAAAAAQwAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAGwAAAAABGwAAAAADWAAAAAAAYQAAAAABCwAAAAAAUwAAAAABcAAAAAAAYQAAAAACcAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAGwAAAAADGwAAAAAAWAAAAAAAFgAAAAAAUwAAAAACCwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAABGwAAAAACUwAAAAADcAAAAAAAFgAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYAAAAAAAGgAAAAAAXwAAAAAAWAAAAAAAYQAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAGwAAAAACGwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADWAAAAAAAWAAAAAAAYQAAAAABWAAAAAAAWAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAHgAAAAACGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAHgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAAAWAAAAAAAWAAAAAAAHgAAAAABGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHgAAAAACGgAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAHgAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAXwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAbQAAAAACbQAAAAAAbQAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAABUwAAAAABUwAAAAAC version: 6 0,1: ind: 0,1 - tiles: GwAAAAAAGwAAAAACGwAAAAAAGgAAAAACGgAAAAABGgAAAAABGgAAAAAAGgAAAAABGgAAAAABGgAAAAAAIQAAAAABIQAAAAABIQAAAAAAIQAAAAABGgAAAAABIQAAAAABGwAAAAACGwAAAAABGwAAAAAAGgAAAAADGgAAAAADGgAAAAABGgAAAAABGgAAAAACGgAAAAABGgAAAAADIQAAAAABIQAAAAAAIQAAAAAAIQAAAAADGgAAAAAAIQAAAAADGwAAAAAAGwAAAAABGwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAACGwAAAAABGwAAAAABcAAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAADbgAAAAACGgAAAAAAWAAAAAAAUwAAAAABUwAAAAACcAAAAAAAHQAAAAADHQAAAAACGwAAAAAAGwAAAAACGwAAAAACcAAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAABbgAAAAADcAAAAAAAGgAAAAAAUwAAAAADUwAAAAAAcAAAAAAAHQAAAAADHQAAAAAAGwAAAAAAGwAAAAABGwAAAAACcAAAAAAAbgAAAAACbgAAAAABbgAAAAACbgAAAAADbgAAAAACcAAAAAAAGgAAAAAAUwAAAAACUwAAAAAAcAAAAAAAHQAAAAABHQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAAAbgAAAAAAbgAAAAACbgAAAAADbgAAAAADcAAAAAAAGgAAAAABUwAAAAABUwAAAAAAGgAAAAABHQAAAAAAHQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHQAAAAADHQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAQAAAAAAcAAAAAAAAQAAAAAAcAAAAAAAAQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAA + tiles: GwAAAAADGwAAAAABGwAAAAACGgAAAAACGgAAAAAAGgAAAAACGgAAAAAAGgAAAAABGgAAAAADGgAAAAABIQAAAAACIQAAAAACIQAAAAAAIQAAAAAAGgAAAAACIQAAAAABGwAAAAACGwAAAAAAGwAAAAAAGgAAAAACGgAAAAADGgAAAAACGgAAAAAAGgAAAAACGgAAAAABGgAAAAAAIQAAAAAAIQAAAAADIQAAAAADIQAAAAABGgAAAAABIQAAAAABGwAAAAABGwAAAAACGwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAAAGwAAAAADGwAAAAADcAAAAAAAbgAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAACGgAAAAACWAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAHQAAAAABHQAAAAAAGwAAAAADGwAAAAADGwAAAAACcAAAAAAAbgAAAAABbgAAAAAAbgAAAAAAbgAAAAACbgAAAAADcAAAAAAAGgAAAAAAUwAAAAADUwAAAAADcAAAAAAAHQAAAAACHQAAAAAAGwAAAAABGwAAAAAAGwAAAAABcAAAAAAAbgAAAAADbgAAAAACbgAAAAABbgAAAAACbgAAAAAAcAAAAAAAGgAAAAADUwAAAAABUwAAAAABcAAAAAAAHQAAAAADHQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAAAbgAAAAADbgAAAAACbgAAAAAAbgAAAAABcAAAAAAAGgAAAAABUwAAAAADUwAAAAABGgAAAAAAHQAAAAADHQAAAAABXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAADUwAAAAAAcAAAAAAAHQAAAAACHQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAQAAAAAAcAAAAAAAAQAAAAAAcAAAAAAAAQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAA version: 6 1,1: ind: 1,1 - tiles: IQAAAAACIQAAAAABIQAAAAABGgAAAAAAGgAAAAAAGgAAAAABGgAAAAAAGgAAAAABGgAAAAAAGgAAAAACGgAAAAAAcAAAAAAAIQAAAAACIQAAAAACIQAAAAABIQAAAAADIQAAAAAAIQAAAAADIQAAAAAAGgAAAAADGgAAAAACGgAAAAACGgAAAAACGgAAAAADGgAAAAADGgAAAAABGgAAAAAAGgAAAAAAIgAAAAADIgAAAAADIgAAAAADGgAAAAADGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAADGgAAAAAAGgAAAAACGgAAAAAAGgAAAAAAGgAAAAABIgAAAAAAIgAAAAAAIgAAAAAAGgAAAAAAHQAAAAACHQAAAAAAHQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAIgAAAAABIgAAAAADIgAAAAABGgAAAAABHQAAAAADHQAAAAACHQAAAAADcAAAAAAAGgAAAAADGgAAAAADOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAIgAAAAABIgAAAAABIgAAAAADcAAAAAAAHQAAAAAAHQAAAAADHQAAAAAAcAAAAAAAGgAAAAACGgAAAAADOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAGgAAAAACIgAAAAADIgAAAAACIgAAAAACYAAAAAAAHQAAAAADHQAAAAACHQAAAAADcAAAAAAAGgAAAAABGgAAAAABOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAIgAAAAABIgAAAAABIgAAAAACcAAAAAAAHQAAAAAAHQAAAAABHQAAAAABcAAAAAAAGgAAAAACGgAAAAABGgAAAAABGgAAAAAAGgAAAAAAGgAAAAADGgAAAAADcAAAAAAAGgAAAAADGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAUwAAAAAAbQAAAAADcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAADGgAAAAAAGgAAAAABWAAAAAAAWAAAAAAAbQAAAAADcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAACGgAAAAADGgAAAAABGgAAAAABcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAADGgAAAAABGgAAAAAAGgAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAABGgAAAAAAGgAAAAACGgAAAAAAYAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAAAGgAAAAABGgAAAAADGgAAAAAC + tiles: IQAAAAABIQAAAAADIQAAAAADGgAAAAAAGgAAAAACGgAAAAACGgAAAAADGgAAAAADGgAAAAAAGgAAAAACGgAAAAADcAAAAAAAIQAAAAACIQAAAAABIQAAAAACIQAAAAABIQAAAAADIQAAAAAAIQAAAAACGgAAAAAAGgAAAAABGgAAAAAAGgAAAAACGgAAAAADGgAAAAADGgAAAAACGgAAAAABGgAAAAAAIgAAAAAAIgAAAAACIgAAAAAAGgAAAAABGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAACGgAAAAABGgAAAAABGgAAAAACGgAAAAAAGgAAAAABIgAAAAAAIgAAAAACIgAAAAADGgAAAAADHQAAAAAAHQAAAAADHQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAcAAAAAAAIgAAAAAAIgAAAAACIgAAAAABGgAAAAAAHQAAAAACHQAAAAAAHQAAAAACcAAAAAAAGgAAAAAAGgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAIgAAAAABIgAAAAABIgAAAAABcAAAAAAAHQAAAAABHQAAAAABHQAAAAADcAAAAAAAGgAAAAAAGgAAAAABOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAGgAAAAAAIgAAAAADIgAAAAACIgAAAAAAYAAAAAAAHQAAAAABHQAAAAAAHQAAAAACcAAAAAAAGgAAAAABGgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAIgAAAAABIgAAAAACIgAAAAABcAAAAAAAHQAAAAACHQAAAAABHQAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAADGgAAAAAAGgAAAAACGgAAAAABGgAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAUwAAAAABbQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAADGgAAAAAAGgAAAAABWAAAAAAAWAAAAAAAbQAAAAABcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAAAGgAAAAAAGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAABGgAAAAABGgAAAAAAGgAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAAAGgAAAAAAGgAAAAACGgAAAAAAYAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAADGgAAAAACGgAAAAACGgAAAAAD version: 6 -2,-2: ind: -2,-2 - tiles: UwAAAAADcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAVgAAAAACVgAAAAADVgAAAAAAVgAAAAABcAAAAAAAUwAAAAADWwAAAAADUwAAAAADcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAGgAAAAACGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADWwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAGgAAAAACGgAAAAADGgAAAAABcAAAAAAAWAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAACWwAAAAAAWAAAAAAAGgAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAADcAAAAAAAWAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAADWwAAAAABWAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACWwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABWAAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAABUwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAADUwAAAAADcAAAAAAAGgAAAAADGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAGgAAAAADGgAAAAADcAAAAAAAUwAAAAABWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAADcAAAAAAAUwAAAAACWwAAAAADUwAAAAADGgAAAAAAGgAAAAADUwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAGgAAAAACUwAAAAADWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAAAcAAAAAAAUwAAAAABWwAAAAAAUwAAAAADGgAAAAABGgAAAAABUwAAAAADGgAAAAABcAAAAAAAXwAAAAAAcAAAAAAACwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAAAGgAAAAAAWAAAAAAAWwAAAAACUwAAAAAAcAAAAAAAGgAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAWAAAAAAAWwAAAAADUwAAAAAAcAAAAAAAGgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAWAAAAAAAWwAAAAADUwAAAAADcAAAAAAAYQAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABWwAAAAAAUwAAAAAAcAAAAAAAWAAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAADGgAAAAABUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAWwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACWAAAAAAAUwAAAAAAWAAAAAAAGgAAAAADWAAAAAAAWAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAUwAAAAADWwAAAAADUwAAAAABcAAAAAAAcAAAAAAA + tiles: UwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAVgAAAAAAVgAAAAABVgAAAAADVgAAAAAAcAAAAAAAUwAAAAAAWwAAAAADUwAAAAADcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAGgAAAAACGgAAAAABGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAWwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAABcAAAAAAAWAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAABWwAAAAADWAAAAAAAGgAAAAACcAAAAAAAUwAAAAADcAAAAAAAGgAAAAAAGgAAAAADGgAAAAABcAAAAAAAWAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAACWwAAAAABWAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAWwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACWAAAAAAAWwAAAAAAWwAAAAAAWwAAAAACWwAAAAACUwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAACcAAAAAAAGgAAAAACGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAGgAAAAACGgAAAAAAcAAAAAAAUwAAAAACWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAAAcAAAAAAAUwAAAAAAWwAAAAACUwAAAAABGgAAAAACGgAAAAADUwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAGgAAAAABUwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAAAcAAAAAAAUwAAAAABWwAAAAACUwAAAAADGgAAAAAAGgAAAAAAUwAAAAABGgAAAAAAcAAAAAAAXwAAAAAAcAAAAAAACwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAADGgAAAAADWAAAAAAAWwAAAAADUwAAAAACcAAAAAAAGgAAAAACUwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAADcAAAAAAAWAAAAAAAWwAAAAABUwAAAAABcAAAAAAAGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAWAAAAAAAWwAAAAAAUwAAAAAAcAAAAAAAYQAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACWwAAAAAAUwAAAAAAcAAAAAAAWAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAGgAAAAABUwAAAAADUwAAAAACUwAAAAABcAAAAAAAUwAAAAACUwAAAAABWwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACWAAAAAAAUwAAAAAAWAAAAAAAGgAAAAAAWAAAAAAAWAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAUwAAAAACWwAAAAABUwAAAAACcAAAAAAAcAAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAWwAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAADWwAAAAADUwAAAAADcAAAAAAAcAAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABUwAAAAADWwAAAAAAUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADWwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACGgAAAAABUwAAAAAAUwAAAAADUwAAAAACWAAAAAAAWAAAAAAAUwAAAAADUwAAAAACWgAAAAADWgAAAAADWgAAAAACUwAAAAADUwAAAAACGgAAAAACWwAAAAABWwAAAAABGgAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAADWwAAAAADWwAAAAADWwAAAAADWgAAAAADRgAAAAAAWgAAAAADWwAAAAABWwAAAAADGgAAAAADUwAAAAAAUwAAAAADGgAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAABWgAAAAADWgAAAAAAWgAAAAACUwAAAAADUwAAAAADGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAUwAAAAABWwAAAAADUwAAAAACcAAAAAAAGgAAAAAAcAAAAAAAGgAAAAABcAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAUwAAAAAAWwAAAAABUwAAAAAAcAAAAAAAPgAAAAAAEgAAAAAAHgAAAAABcAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAAAcAAAAAAAPgAAAAAAEgAAAAAAHgAAAAAAcAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAXgAAAAAAXgAAAAACXgAAAAABcAAAAAAAPgAAAAAAEgAAAAAAHgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAXgAAAAABXgAAAAACXgAAAAADGgAAAAAAPgAAAAAAEgAAAAAAWAAAAAAAWAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAXgAAAAAAXgAAAAABXgAAAAABcAAAAAAAPgAAAAAAEgAAAAAAWAAAAAAAcAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXgAAAAADXgAAAAABXgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXgAAAAAAXgAAAAADXgAAAAACGgAAAAABcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXgAAAAAAXgAAAAACXgAAAAADcAAAAAAAcAAAAAAAYQAAAAAD + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADWwAAAAACWAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAWwAAAAACUwAAAAABcAAAAAAAcAAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAUwAAAAAAWwAAAAADUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACWwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACGgAAAAACUwAAAAAAUwAAAAAAUwAAAAAAWAAAAAAAWAAAAAAAUwAAAAAAUwAAAAACWgAAAAAAWgAAAAABWgAAAAACUwAAAAAAUwAAAAAAGgAAAAACWwAAAAADWwAAAAAAGgAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAABWwAAAAACWwAAAAAAWwAAAAADWgAAAAACRgAAAAAAWgAAAAADWwAAAAAAWwAAAAABGgAAAAADUwAAAAADUwAAAAADGgAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAADUwAAAAAAUwAAAAADWgAAAAAAWgAAAAADWgAAAAABUwAAAAABUwAAAAABGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAUwAAAAADWwAAAAABUwAAAAADcAAAAAAAGgAAAAABcAAAAAAAGgAAAAABcAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAUwAAAAADWwAAAAABUwAAAAACcAAAAAAAPgAAAAAAEgAAAAAAHgAAAAAAcAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAABcAAAAAAAPgAAAAAAEgAAAAAAHgAAAAABcAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAXgAAAAABXgAAAAABXgAAAAADcAAAAAAAPgAAAAAAEgAAAAAAHgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAXgAAAAABXgAAAAABXgAAAAACGgAAAAAAPgAAAAAAEgAAAAAAWAAAAAAAWAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAXgAAAAACXgAAAAABXgAAAAACcAAAAAAAPgAAAAAAEgAAAAAAWAAAAAAAcAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXgAAAAAAXgAAAAAAXgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXgAAAAABXgAAAAAAXgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXgAAAAACXgAAAAAAXgAAAAACcAAAAAAAcAAAAAAAYQAAAAAD version: 6 0,-2: ind: 0,-2 - tiles: AAAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWgAAAAABUwAAAAACUwAAAAADAAAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADAAAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAABGgAAAAAAUwAAAAADUwAAAAAAWAAAAAAAUwAAAAABUwAAAAAAWwAAAAADWwAAAAABWwAAAAADRgAAAAAAWwAAAAADWwAAAAADRgAAAAADWwAAAAACWwAAAAABWwAAAAABGgAAAAAAUwAAAAABUwAAAAADWAAAAAAAWAAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAADGgAAAAAAUwAAAAADWAAAAAAAWAAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAADGgAAAAAAGgAAAAABGgAAAAABcAAAAAAAUwAAAAADUwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAABGgAAAAACGgAAAAABGgAAAAAAcAAAAAAAUwAAAAADUwAAAAACEgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAGgAAAAADGgAAAAADUwAAAAABUwAAAAACEgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAAAGgAAAAACGgAAAAACGgAAAAADcAAAAAAAUwAAAAADUwAAAAABEgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAADGgAAAAABGgAAAAACGgAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAACcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAB + tiles: AAAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWgAAAAABUwAAAAABUwAAAAACAAAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABAAAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAYQAAAAABcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAABGgAAAAACUwAAAAAAUwAAAAACWAAAAAAAUwAAAAADUwAAAAABWwAAAAABWwAAAAAAWwAAAAADRgAAAAADWwAAAAAAWwAAAAACRgAAAAACWwAAAAABWwAAAAABWwAAAAADGgAAAAADUwAAAAABUwAAAAAAWAAAAAAAWAAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAACGgAAAAABUwAAAAABWAAAAAAAWAAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABEgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAABGgAAAAACGgAAAAAAGgAAAAACcAAAAAAAUwAAAAADUwAAAAADEgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAACGgAAAAAAGgAAAAACGgAAAAAAcAAAAAAAUwAAAAADUwAAAAABEgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAADMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAGgAAAAADGgAAAAACUwAAAAAAUwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAADGgAAAAADGgAAAAADGgAAAAADcAAAAAAAUwAAAAABUwAAAAADEgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAACGgAAAAAAGgAAAAADGgAAAAABcAAAAAAAGgAAAAADGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAACcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: UwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAAAbgAAAAADbgAAAAACbgAAAAACbgAAAAACcAAAAAAAYAAAAAAAcAAAAAAAbgAAAAACbgAAAAAAbgAAAAABbgAAAAACUwAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAADcAAAAAAAXwAAAAAAcAAAAAAAbgAAAAACbgAAAAADbgAAAAADbgAAAAACUwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAACbgAAAAACcAAAAAAAYAAAAAAAcAAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAAAUwAAAAACcAAAAAAAWAAAAAAAcAAAAAAAbgAAAAAAbgAAAAAAbgAAAAACbgAAAAADbgAAAAADcAAAAAAAYAAAAAAAcAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACGgAAAAABSQAAAAAAGgAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAABGgAAAAABUwAAAAAAGgAAAAACSQAAAAAAGgAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAABGgAAAAADWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAACcAAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAABcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAADWwAAAAACWwAAAAADWwAAAAADWwAAAAACWwAAAAABWwAAAAACWwAAAAACWwAAAAADWwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAABWwAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAABWwAAAAADWwAAAAACWwAAAAADWwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAADWwAAAAACWwAAAAADWwAAAAABWwAAAAADWwAAAAABWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAABUwAAAAAAUwAAAAAB + tiles: UwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAACbgAAAAADbgAAAAAAbgAAAAABbgAAAAABcAAAAAAAYAAAAAAAcAAAAAAAbgAAAAABbgAAAAABbgAAAAACbgAAAAABUwAAAAADcAAAAAAAWAAAAAAAcAAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAABbgAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbgAAAAACbgAAAAACbgAAAAAAbgAAAAAAUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAbgAAAAAAbgAAAAADbgAAAAACbgAAAAABbgAAAAADcAAAAAAAYAAAAAAAcAAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAADUwAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAbgAAAAABbgAAAAABbgAAAAABbgAAAAADbgAAAAADcAAAAAAAYAAAAAAAcAAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADGgAAAAABSQAAAAAAGgAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAGgAAAAADUwAAAAACGgAAAAADSQAAAAAAGgAAAAADUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAABUwAAAAADGgAAAAADWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAUwAAAAACcAAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAACWwAAAAADWwAAAAACWwAAAAACWwAAAAACWwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAABWwAAAAACWwAAAAAAWwAAAAAAWwAAAAADWwAAAAACWwAAAAABWwAAAAABWwAAAAADWwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAAAUwAAAAAAUwAAAAAD version: 6 2,0: ind: 2,0 - tiles: UwAAAAABWwAAAAACUwAAAAAAGgAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAADWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAADWwAAAAACWwAAAAAAGgAAAAACWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAABWwAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAACUwAAAAAAWwAAAAAAUwAAAAACGgAAAAABWAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAADUwAAAAABWAAAAAAAWwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAUwAAAAACWwAAAAABUwAAAAABcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAABIgAAAAABIgAAAAADIgAAAAABcAAAAAAAYwAAAAACYwAAAAAAYwAAAAADYwAAAAADUwAAAAACWwAAAAABWAAAAAAAcAAAAAAAUwAAAAACWAAAAAAAUwAAAAADUwAAAAAAIgAAAAABIgAAAAADIgAAAAABcAAAAAAAYwAAAAACYwAAAAABYwAAAAACYwAAAAADUwAAAAADWwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIgAAAAACIgAAAAABIgAAAAADGgAAAAADYwAAAAACTwAAAAAAYwAAAAAAYwAAAAACWwAAAAAAWwAAAAAAUwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABIgAAAAABIgAAAAACIgAAAAABcAAAAAAAYwAAAAACYwAAAAADYwAAAAADYwAAAAADUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAUwAAAAABWAAAAAAAUwAAAAACUwAAAAADIgAAAAACIgAAAAADIgAAAAABcAAAAAAAYwAAAAAAYwAAAAABYwAAAAABYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIgAAAAABIgAAAAABIgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAGgAAAAABGgAAAAAAcAAAAAAAIgAAAAADIgAAAAABIgAAAAABcAAAAAAAWAAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAABcAAAAAAAWAAAAAAAUwAAAAADcAAAAAAAGgAAAAACGgAAAAAAGgAAAAABIgAAAAAAIgAAAAACIgAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAYQAAAAACWAAAAAAAUwAAAAACcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAGgAAAAAAGgAAAAACcAAAAAAAIgAAAAABIgAAAAADIgAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAACcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIgAAAAACIgAAAAAAIgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAIQAAAAACIQAAAAADIQAAAAAAIQAAAAACIQAAAAADIQAAAAABIQAAAAAAIQAAAAAAIQAAAAABIQAAAAADIQAAAAAAGgAAAAABGgAAAAABGgAAAAACGgAAAAABCwAAAAAAIQAAAAACIQAAAAACIQAAAAACIQAAAAADIQAAAAADIQAAAAACIQAAAAACIQAAAAAAIQAAAAABIQAAAAAAIQAAAAABGgAAAAADGgAAAAADGgAAAAAAGgAAAAACCwAAAAAA + tiles: UwAAAAADWwAAAAAAUwAAAAADGgAAAAADUwAAAAACUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAABWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAADWwAAAAABWwAAAAAAGgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAACWwAAAAACWwAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAAAUwAAAAADWwAAAAABUwAAAAAAGgAAAAAAWAAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAAAWAAAAAAAWwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAUwAAAAADWwAAAAAAUwAAAAACcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAIgAAAAADIgAAAAACIgAAAAAAcAAAAAAAYwAAAAACYwAAAAABYwAAAAACYwAAAAABUwAAAAAAWwAAAAABWAAAAAAAcAAAAAAAUwAAAAAAWAAAAAAAUwAAAAAAUwAAAAACIgAAAAAAIgAAAAADIgAAAAABcAAAAAAAYwAAAAABYwAAAAADYwAAAAACYwAAAAAAUwAAAAADWwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIgAAAAADIgAAAAABIgAAAAADGgAAAAABYwAAAAADTwAAAAAAYwAAAAAAYwAAAAABWwAAAAADWwAAAAABUwAAAAABcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAABIgAAAAABIgAAAAABIgAAAAACcAAAAAAAYwAAAAAAYwAAAAACYwAAAAAAYwAAAAAAUwAAAAACUwAAAAABUwAAAAADcAAAAAAAUwAAAAACWAAAAAAAUwAAAAADUwAAAAAAIgAAAAAAIgAAAAACIgAAAAADcAAAAAAAYwAAAAADYwAAAAAAYwAAAAAAYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIgAAAAABIgAAAAABIgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAGgAAAAACGgAAAAABcAAAAAAAIgAAAAADIgAAAAAAIgAAAAADcAAAAAAAWAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAWAAAAAAAUwAAAAADcAAAAAAAGgAAAAABGgAAAAACGgAAAAADIgAAAAAAIgAAAAAAIgAAAAABcAAAAAAAWAAAAAAAWAAAAAAAYQAAAAABWAAAAAAAUwAAAAADcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAGgAAAAACGgAAAAACcAAAAAAAIgAAAAADIgAAAAABIgAAAAACcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAABcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAIQAAAAABIQAAAAAAIQAAAAADIQAAAAACIQAAAAADIQAAAAAAIQAAAAADIQAAAAACIQAAAAADIQAAAAACIQAAAAAAGgAAAAABGgAAAAAAGgAAAAACGgAAAAAACwAAAAAAIQAAAAADIQAAAAACIQAAAAABIQAAAAACIQAAAAABIQAAAAABIQAAAAADIQAAAAAAIQAAAAAAIQAAAAABIQAAAAADGgAAAAAAGgAAAAABGgAAAAAAGgAAAAABCwAAAAAA version: 6 2,1: ind: 2,1 - tiles: IQAAAAADIQAAAAABIQAAAAAAIQAAAAACIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAADIQAAAAADIQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAGgAAAAADcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAABbQAAAAABbQAAAAACbQAAAAADcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAGgAAAAABcAAAAAAAUwAAAAABUwAAAAACUwAAAAACcAAAAAAAbQAAAAACbQAAAAADbQAAAAAAbQAAAAACbQAAAAACGgAAAAACWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABGgAAAAABbQAAAAACbQAAAAAAbQAAAAADbQAAAAABbQAAAAAAGgAAAAADWAAAAAAAWAAAAAAACwAAAAAACwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAACbQAAAAABbQAAAAABbQAAAAABcAAAAAAAWAAAAAAAWAAAAAAACwAAAAAAYQAAAAABXwAAAAAAXwAAAAAAYAAAAAAAXwAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAWAAAAAAAXwAAAAAAXwAAAAAAGgAAAAACcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAWAAAAAAAUwAAAAACcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAWAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAA + tiles: IQAAAAACIQAAAAAAIQAAAAACIQAAAAACIQAAAAACIQAAAAABIQAAAAACIQAAAAADIQAAAAAAIQAAAAAAIQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAGgAAAAACcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAACbQAAAAADbQAAAAABcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAGgAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAcAAAAAAAbQAAAAABbQAAAAADbQAAAAAAbQAAAAAAbQAAAAADGgAAAAADWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADGgAAAAAAbQAAAAADbQAAAAADbQAAAAACbQAAAAAAbQAAAAACGgAAAAAAWAAAAAAAWAAAAAAACwAAAAAACwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAACbQAAAAAAbQAAAAABbQAAAAADcAAAAAAAWAAAAAAAWAAAAAAACwAAAAAAYQAAAAAAXwAAAAAAXwAAAAAAYAAAAAAAXwAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAWAAAAAAAXwAAAAAAXwAAAAAAGgAAAAACcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAWAAAAAAAUwAAAAABcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAWAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: GgAAAAADcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABWAAAAAAAUwAAAAACcAAAAAAAWAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACWAAAAAAAUwAAAAAAUwAAAAADUwAAAAADcAAAAAAAUwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADcAAAAAAAbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWwAAAAACWwAAAAADUwAAAAADcAAAAAAAbQAAAAAAbQAAAAACbQAAAAACcAAAAAAAcAAAAAAAbQAAAAABbQAAAAAAbQAAAAABbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADWwAAAAABUwAAAAACcAAAAAAAbQAAAAADbQAAAAABbQAAAAABbQAAAAABGgAAAAACbQAAAAADbQAAAAABbQAAAAABbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADWwAAAAABUwAAAAACGgAAAAADbQAAAAABbQAAAAACbQAAAAADbQAAAAAAcAAAAAAAbQAAAAACbQAAAAACbQAAAAABbQAAAAACcAAAAAAAXwAAAAAAXwAAAAAAUwAAAAADWwAAAAABWAAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbQAAAAABbQAAAAABcAAAAAAAbQAAAAABbQAAAAACbQAAAAADbQAAAAABcAAAAAAAXwAAAAAAXwAAAAAAWAAAAAAAWwAAAAABWAAAAAAAcAAAAAAAbQAAAAABbQAAAAABbQAAAAABbQAAAAAAGgAAAAADbQAAAAADbQAAAAADbQAAAAAAbQAAAAABcAAAAAAAXwAAAAAAXwAAAAAAWAAAAAAAWwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAA + tiles: GgAAAAACcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACWAAAAAAAUwAAAAABcAAAAAAAWAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAWAAAAAAAUwAAAAABUwAAAAABUwAAAAABcAAAAAAAUwAAAAABcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWwAAAAADWwAAAAABUwAAAAABcAAAAAAAbQAAAAABbQAAAAACbQAAAAACcAAAAAAAcAAAAAAAbQAAAAABbQAAAAADbQAAAAABbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABWwAAAAAAUwAAAAABcAAAAAAAbQAAAAABbQAAAAACbQAAAAABbQAAAAACGgAAAAACbQAAAAADbQAAAAADbQAAAAACbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABWwAAAAABUwAAAAACGgAAAAABbQAAAAADbQAAAAABbQAAAAAAbQAAAAABcAAAAAAAbQAAAAACbQAAAAAAbQAAAAAAbQAAAAABcAAAAAAAXwAAAAAAXwAAAAAAUwAAAAABWwAAAAABWAAAAAAAcAAAAAAAbQAAAAABbQAAAAACbQAAAAACbQAAAAACcAAAAAAAbQAAAAADbQAAAAABbQAAAAADbQAAAAACcAAAAAAAXwAAAAAAXwAAAAAAWAAAAAAAWwAAAAACWAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAADbQAAAAABGgAAAAACbQAAAAADbQAAAAADbQAAAAADbQAAAAADcAAAAAAAXwAAAAAAXwAAAAAAWAAAAAAAWwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAA version: 6 -2,1: ind: -2,1 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABWwAAAAABUwAAAAABcAAAAAAAXwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAUwAAAAAAWwAAAAABUwAAAAACcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAAAWAAAAAAAGgAAAAAAWAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAUwAAAAACWwAAAAACUwAAAAACcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAAAWAAAAAAAGgAAAAAAWAAAAAAAUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAUwAAAAADWwAAAAAAUwAAAAAAYQAAAAAAWAAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAABGgAAAAABUwAAAAACWwAAAAABUwAAAAABcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAACGgAAAAADUwAAAAACWwAAAAADUwAAAAABcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAGgAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAUwAAAAAAWwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAACcAAAAAAAUwAAAAAAWwAAAAABUwAAAAACcAAAAAAAGgAAAAACUwAAAAADUwAAAAADcAAAAAAAWwAAAAADUwAAAAACcAAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAABcAAAAAAAUwAAAAABWwAAAAABUwAAAAABcAAAAAAAGgAAAAABUwAAAAADUwAAAAACCwAAAAAAUwAAAAABCwAAAAAAUwAAAAAACwAAAAAAUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAUwAAAAACWwAAAAAAUwAAAAAAGgAAAAAAGgAAAAADUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADWwAAAAADUwAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADWwAAAAAAUwAAAAADcAAAAAAAGgAAAAADUwAAAAAAUwAAAAACGgAAAAABcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADWwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAACbQAAAAAAcAAAAAAAUwAAAAAAWwAAAAACUwAAAAADGgAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAADcAAAAAAAbQAAAAACbQAAAAAAbQAAAAADGgAAAAAAUwAAAAADWwAAAAABUwAAAAABGgAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAABbQAAAAADcAAAAAAAUwAAAAACWwAAAAAAUwAAAAABcAAAAAAAUwAAAAAB + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABWwAAAAABUwAAAAAAcAAAAAAAXwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAUwAAAAABWwAAAAACUwAAAAACcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAACWAAAAAAAGgAAAAADWAAAAAAAUwAAAAABUwAAAAACUwAAAAACcAAAAAAAUwAAAAACWwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAADWAAAAAAAGgAAAAACWAAAAAAAUwAAAAABUwAAAAADUwAAAAAAcAAAAAAAUwAAAAADWwAAAAADUwAAAAADYQAAAAADWAAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAADGgAAAAACUwAAAAAAWwAAAAAAUwAAAAABcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAADGgAAAAABUwAAAAADWwAAAAAAUwAAAAABcAAAAAAAUwAAAAABUwAAAAADUwAAAAABGgAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAUwAAAAABWwAAAAABUwAAAAADcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAAAcAAAAAAAUwAAAAACWwAAAAADUwAAAAACcAAAAAAAGgAAAAAAUwAAAAAAUwAAAAACcAAAAAAAWwAAAAAAUwAAAAACcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAUwAAAAADWwAAAAACUwAAAAADcAAAAAAAGgAAAAACUwAAAAACUwAAAAADCwAAAAAAUwAAAAAACwAAAAAAUwAAAAAACwAAAAAAUwAAAAABUwAAAAABUwAAAAABcAAAAAAAUwAAAAAAWwAAAAABUwAAAAAAGgAAAAACGgAAAAABUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAWwAAAAABUwAAAAABcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAWwAAAAABUwAAAAACcAAAAAAAGgAAAAADUwAAAAABUwAAAAABGgAAAAACcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAWwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAABbQAAAAAAcAAAAAAAUwAAAAADWwAAAAAAUwAAAAADGgAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAACcAAAAAAAbQAAAAACbQAAAAACbQAAAAADGgAAAAACUwAAAAABWwAAAAACUwAAAAACGgAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAADbQAAAAACcAAAAAAAUwAAAAAAWwAAAAACUwAAAAABcAAAAAAAUwAAAAAC version: 6 3,1: ind: 3,1 - tiles: WAAAAAAAWAAAAAAAWAAAAAAAUwAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAUwAAAAADWAAAAAAACwAAAAAAWAAAAAAAWAAAAAAAUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAUwAAAAADOQAAAAAAOQAAAAAAOQAAAAAAUwAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAABWAAAAAAAWAAAAAAAWAAAAAAAYQAAAAABUwAAAAADUwAAAAADUwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAACwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAACWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAADUwAAAAADUwAAAAAAcAAAAAAACwAAAAAACwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAACwAAAAAAYQAAAAACWAAAAAAACwAAAAAAYQAAAAACWAAAAAAACwAAAAAAYQAAAAAAWAAAAAAAWAAAAAAAYQAAAAAAYwAAAAAAYwAAAAAAYwAAAAABYwAAAAACcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAYwAAAAADYwAAAAADYwAAAAACcAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAYwAAAAACcAAAAAAAYwAAAAACcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAUwAAAAACUwAAAAADcAAAAAAATwAAAAAAcAAAAAAATwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAWAAAAAAAWAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAWAAAAAAAXwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADWAAAAAAAUwAAAAACcAAAAAAAUwAAAAAAUwAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAUwAAAAADWAAAAAAAGgAAAAABGgAAAAACcAAAAAAAUwAAAAAAUwAAAAADYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABWAAAAAAAcAAAAAAAYQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAWAAAAAAAWAAAAAAAbQAAAAACcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAC + tiles: WAAAAAAAWAAAAAAAWAAAAAAAUwAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAUwAAAAACWAAAAAAACwAAAAAAWAAAAAAAWAAAAAAAUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAUwAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAUwAAAAADWAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAACWAAAAAAAWAAAAAAAWAAAAAAAYQAAAAACUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAACwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAACWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAACUwAAAAACUwAAAAABcAAAAAAACwAAAAAACwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAACwAAAAAAYQAAAAAAWAAAAAAACwAAAAAAYQAAAAABWAAAAAAACwAAAAAAYQAAAAAAWAAAAAAAWAAAAAAAYQAAAAACYwAAAAACYwAAAAABYwAAAAACYwAAAAADcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAYwAAAAAAYwAAAAADYwAAAAACcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAYwAAAAADcAAAAAAAYwAAAAADcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAUwAAAAACUwAAAAACcAAAAAAATwAAAAAAcAAAAAAATwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAWAAAAAAAWAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAWAAAAAAAXwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABWAAAAAAAUwAAAAADcAAAAAAAUwAAAAADUwAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAUwAAAAADWAAAAAAAGgAAAAADGgAAAAADcAAAAAAAUwAAAAADUwAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAWAAAAAAAcAAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAWAAAAAAAWAAAAAAAbQAAAAABcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAD version: 6 3,0: ind: 3,0 - tiles: UwAAAAACUwAAAAACUwAAAAADUwAAAAAAWwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAACWwAAAAABUwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAADWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAYAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAGgAAAAADXwAAAAAAXwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAAAUwAAAAADCwAAAAAAUwAAAAAAUwAAAAADWAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAUwAAAAAAUwAAAAACWAAAAAAAUwAAAAACUwAAAAAAWAAAAAAAWAAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAAAWAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAAACwAAAAAACwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAWAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAACWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAYwAAAAADTwAAAAAAUwAAAAACUwAAAAADWAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAACwAAAAAACwAAAAAAcAAAAAAAYwAAAAABcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAYwAAAAABTwAAAAAAWAAAAAAAWAAAAAAAYQAAAAABcAAAAAAAUwAAAAACUwAAAAACUwAAAAADcAAAAAAAYQAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAADcAAAAAAAYQAAAAADYQAAAAAAYQAAAAABWAAAAAAAYwAAAAADYwAAAAACYwAAAAADTwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAACwAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAARgAAAAABWAAAAAAAUwAAAAABUwAAAAACCwAAAAAAUwAAAAACUwAAAAAACwAAAAAARgAAAAAACwAAAAAAYQAAAAACUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAA + tiles: UwAAAAACUwAAAAABUwAAAAACUwAAAAADWwAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAYQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAWwAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAABUwAAAAABWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAYAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAGgAAAAADXwAAAAAAXwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAABUwAAAAACCwAAAAAAUwAAAAABUwAAAAABWAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAUwAAAAAAUwAAAAABWAAAAAAAUwAAAAADUwAAAAACWAAAAAAAWAAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAABWAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAACwAAAAAACwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAAAWAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAADWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAYwAAAAADTwAAAAAAUwAAAAACUwAAAAADWAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAACwAAAAAACwAAAAAAcAAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAYwAAAAABTwAAAAAAWAAAAAAAWAAAAAAAYQAAAAADcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAYQAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAACcAAAAAAAYQAAAAABYQAAAAABYQAAAAAAWAAAAAAAYwAAAAACYwAAAAABYwAAAAAATwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAACwAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAARgAAAAACWAAAAAAAUwAAAAACUwAAAAADCwAAAAAAUwAAAAAAUwAAAAAACwAAAAAARgAAAAAACwAAAAAAYQAAAAABUwAAAAABUwAAAAACUwAAAAADcAAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: cAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAABWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAWAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABWAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAACWAAAAAAAUwAAAAABXwAAAAAAcAAAAAAALAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAADWAAAAAAAcAAAAAAAcAAAAAAALAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAACLAAAAAAALAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALAAAAAAALAAAAAAAUwAAAAACUwAAAAAAGgAAAAADWAAAAAAAUwAAAAACUwAAAAABUwAAAAACLAAAAAAALAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALAAAAAAALAAAAAAAUwAAAAADUwAAAAACcAAAAAAAWAAAAAAAWAAAAAAAUwAAAAADUwAAAAAALAAAAAAALAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALAAAAAAALAAAAAAAUwAAAAADUwAAAAADcAAAAAAAWAAAAAAALAAAAAAAUwAAAAADUwAAAAACUwAAAAAAWAAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAALAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAABWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAACcAAAAAAAYAAAAAAAXwAAAAAAYAAAAAAAcAAAAAAAbQAAAAADbQAAAAACbQAAAAACbQAAAAADbQAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACWwAAAAACUwAAAAACcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAAAbQAAAAAAbQAAAAADXwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAWwAAAAABUwAAAAAAUwAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbQAAAAABbQAAAAABbQAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABWwAAAAACUwAAAAADUwAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAACbQAAAAACbQAAAAAAbQAAAAAD + tiles: cAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAACWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAWAAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAACWAAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAACWAAAAAAAUwAAAAADXwAAAAAAcAAAAAAALAAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAALAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAAALAAAAAAALAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALAAAAAAALAAAAAAAUwAAAAAAUwAAAAABGgAAAAACWAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABLAAAAAAALAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALAAAAAAALAAAAAAAUwAAAAACUwAAAAADcAAAAAAAWAAAAAAAWAAAAAAAUwAAAAAAUwAAAAACLAAAAAAALAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALAAAAAAALAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAWAAAAAAALAAAAAAAUwAAAAACUwAAAAACUwAAAAAAWAAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACWAAAAAAAcAAAAAAAcAAAAAAALAAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAADWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAACcAAAAAAAYAAAAAAAXwAAAAAAYAAAAAAAcAAAAAAAbQAAAAADbQAAAAABbQAAAAADbQAAAAADbQAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADWwAAAAADUwAAAAABcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAADbQAAAAACbQAAAAADbQAAAAABXwAAAAAAcAAAAAAAUwAAAAABUwAAAAADWwAAAAACUwAAAAACUwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAAAbQAAAAABbQAAAAABbQAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABWwAAAAACUwAAAAACUwAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAAAbQAAAAACbQAAAAACbQAAAAAC version: 6 2,-2: ind: 2,-2 - tiles: cAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAGgAAAAADXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAbgAAAAADcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAbgAAAAADcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAbgAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAGgAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAGgAAAAABWAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAACRwAAAAAARwAAAAAAcAAAAAAASgAAAAAASgAAAAAAcAAAAAAAcAAAAAAASQAAAAAAGgAAAAADWAAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAACRwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABSgAAAAAASQAAAAAAGgAAAAABUwAAAAADUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAGgAAAAACSgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAUwAAAAACcAAAAAAAUwAAAAADUwAAAAACWAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAUwAAAAABcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAUwAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAACUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAABcAAAAAAA + tiles: cAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABGgAAAAABXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAbgAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAbgAAAAACcAAAAAAAUwAAAAACUwAAAAACUwAAAAABcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAbgAAAAACcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAGgAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAGgAAAAAAWAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAADUwAAAAACRwAAAAAARwAAAAAAcAAAAAAASgAAAAAASgAAAAAAcAAAAAAAcAAAAAAASQAAAAAAGgAAAAADWAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADSgAAAAAASQAAAAAAGgAAAAAAUwAAAAADUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAGgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACWAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAUwAAAAABcAAAAAAAUwAAAAABUwAAAAADWAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAUwAAAAADcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAUwAAAAADcAAAAAAAUwAAAAABUwAAAAADUwAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAACcAAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: GgAAAAADYAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACMwAAAAAAGgAAAAABGgAAAAABcAAAAAAAZgAAAAADGgAAAAADGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAGgAAAAABMwAAAAAAGgAAAAACGgAAAAADcAAAAAAAZgAAAAABXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAGgAAAAADMwAAAAAAGgAAAAADGgAAAAABcAAAAAAAZgAAAAABWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAXwAAAAAAcAAAAAAAWAAAAAAAUwAAAAACUwAAAAABUwAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAGgAAAAAAUwAAAAADWwAAAAABWwAAAAADWwAAAAADGgAAAAABUwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAADWwAAAAAAWAAAAAAAWAAAAAAAGgAAAAABUwAAAAAAGgAAAAABXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADWwAAAAADUwAAAAABcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAADcAAAAAAAbQAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAWwAAAAACWAAAAAAAcAAAAAAAbQAAAAACUwAAAAABWAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWwAAAAADUwAAAAAAcAAAAAAAbQAAAAAAGgAAAAADcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAVgAAAAAAVgAAAAADVgAAAAAAVgAAAAACcAAAAAAAWAAAAAAAWwAAAAACUwAAAAACcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVgAAAAAAVgAAAAACVgAAAAABVgAAAAACcAAAAAAAUwAAAAADWwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADGgAAAAAAYAAAAAAAUwAAAAAAGgAAAAAAVgAAAAABVgAAAAACVgAAAAAAVgAAAAADUwAAAAABUwAAAAABWwAAAAAAUwAAAAADcAAAAAAAXwAAAAAAWAAAAAAAUwAAAAABGgAAAAADUwAAAAAAYAAAAAAAGgAAAAAAVgAAAAABVgAAAAACVgAAAAABVgAAAAACcAAAAAAAUwAAAAABWwAAAAAAUwAAAAAAcAAAAAAAYQAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVgAAAAAAVgAAAAABVgAAAAAAVgAAAAACGgAAAAACUwAAAAACWwAAAAACUwAAAAACcAAAAAAAcAAAAAAA + tiles: GgAAAAABYAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADMwAAAAAAGgAAAAAAGgAAAAADcAAAAAAAZgAAAAADGgAAAAAAGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAGgAAAAADMwAAAAAAGgAAAAACGgAAAAAAcAAAAAAAZgAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAGgAAAAAAMwAAAAAAGgAAAAABGgAAAAACcAAAAAAAZgAAAAADWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAXwAAAAAAcAAAAAAAWAAAAAAAUwAAAAACUwAAAAABUwAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAGgAAAAAAUwAAAAAAWwAAAAABWwAAAAACWwAAAAACGgAAAAABUwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAACWwAAAAACWAAAAAAAWAAAAAAAGgAAAAABUwAAAAADGgAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACWwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAABcAAAAAAAbQAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAWwAAAAADWAAAAAAAcAAAAAAAbQAAAAABUwAAAAACWAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWwAAAAAAUwAAAAADcAAAAAAAbQAAAAACGgAAAAACcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAVgAAAAACVgAAAAADVgAAAAACVgAAAAABcAAAAAAAWAAAAAAAWwAAAAACUwAAAAACcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVgAAAAABVgAAAAACVgAAAAADVgAAAAABcAAAAAAAUwAAAAABWwAAAAABUwAAAAACcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABGgAAAAAAYAAAAAAAUwAAAAABGgAAAAABVgAAAAAAVgAAAAABVgAAAAABVgAAAAAAUwAAAAADUwAAAAADWwAAAAABUwAAAAACcAAAAAAAXwAAAAAAWAAAAAAAUwAAAAADGgAAAAABUwAAAAAAYAAAAAAAGgAAAAADVgAAAAACVgAAAAADVgAAAAABVgAAAAACcAAAAAAAUwAAAAAAWwAAAAAAUwAAAAABcAAAAAAAYQAAAAABUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVgAAAAABVgAAAAADVgAAAAACVgAAAAACGgAAAAAAUwAAAAABWwAAAAABUwAAAAAAcAAAAAAAcAAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: ZgAAAAACZgAAAAACZgAAAAADZgAAAAADZgAAAAABcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAADYwAAAAADYwAAAAACYwAAAAACYwAAAAADYwAAAAADYwAAAAADYwAAAAAAZgAAAAACZgAAAAABZgAAAAACZgAAAAACZgAAAAADUwAAAAABYwAAAAADYwAAAAAAYwAAAAABYwAAAAAAYwAAAAACYwAAAAABYwAAAAADYwAAAAACYwAAAAADYwAAAAADZgAAAAADZgAAAAABZgAAAAACZgAAAAAAZgAAAAAAcAAAAAAAYwAAAAACYwAAAAABYwAAAAABYwAAAAADYwAAAAAAYwAAAAABYwAAAAACYwAAAAADYwAAAAACYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABWAAAAAAAUwAAAAACWAAAAAAAUwAAAAAAUwAAAAACUwAAAAADWAAAAAAAWAAAAAAAWAAAAAAAVgAAAAADVgAAAAACVgAAAAABVgAAAAADVgAAAAADWAAAAAAAWAAAAAAAWwAAAAABWwAAAAACRgAAAAABWwAAAAABWwAAAAACWwAAAAAARgAAAAAAWwAAAAADWwAAAAAAVgAAAAAAVgAAAAABVgAAAAACVgAAAAADVgAAAAABWwAAAAADWwAAAAAAWAAAAAAAWAAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAADVgAAAAADVgAAAAADVgAAAAADVgAAAAADVgAAAAACUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAVgAAAAACVgAAAAADVgAAAAABVgAAAAACVgAAAAADcAAAAAAAcAAAAAAAbQAAAAABbQAAAAADcAAAAAAAbQAAAAABbQAAAAADbQAAAAADbQAAAAABbQAAAAABcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAACcAAAAAAAcAAAAAAAAAAAAAAAbQAAAAAAbQAAAAADGgAAAAABbQAAAAADbQAAAAABbQAAAAABbQAAAAAAbQAAAAAAbQAAAAADcAAAAAAAUwAAAAABWwAAAAACUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAbQAAAAABcAAAAAAAbQAAAAAAbQAAAAACbQAAAAABbQAAAAAAbQAAAAACbQAAAAAAcAAAAAAAUwAAAAAAWwAAAAACUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAACbQAAAAADbQAAAAACbQAAAAADbQAAAAAAcAAAAAAAUwAAAAABWwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAABbQAAAAACbQAAAAADbQAAAAAAbQAAAAACcAAAAAAAcAAAAAAAUwAAAAABWwAAAAABWAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAYQAAAAACcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAACWwAAAAABWAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAYQAAAAADWAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAUwAAAAABWwAAAAACWAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAUwAAAAACWwAAAAACWAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAA + tiles: ZgAAAAABZgAAAAABZgAAAAABZgAAAAABZgAAAAACcAAAAAAAYwAAAAADYwAAAAACYwAAAAABYwAAAAAAYwAAAAAAYwAAAAABYwAAAAAAYwAAAAABYwAAAAABYwAAAAABZgAAAAACZgAAAAADZgAAAAACZgAAAAAAZgAAAAACUwAAAAAAYwAAAAADYwAAAAADYwAAAAADYwAAAAABYwAAAAADYwAAAAAAYwAAAAAAYwAAAAABYwAAAAACYwAAAAAAZgAAAAADZgAAAAACZgAAAAAAZgAAAAADZgAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAABYwAAAAADYwAAAAACYwAAAAADYwAAAAACYwAAAAABYwAAAAADYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAWAAAAAAAUwAAAAAAWAAAAAAAUwAAAAACUwAAAAABUwAAAAADWAAAAAAAWAAAAAAAWAAAAAAAVgAAAAABVgAAAAADVgAAAAAAVgAAAAACVgAAAAADWAAAAAAAWAAAAAAAWwAAAAABWwAAAAAARgAAAAAAWwAAAAAAWwAAAAACWwAAAAAARgAAAAABWwAAAAADWwAAAAABVgAAAAADVgAAAAACVgAAAAAAVgAAAAAAVgAAAAADWwAAAAADWwAAAAADWAAAAAAAWAAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAADVgAAAAACVgAAAAACVgAAAAAAVgAAAAABVgAAAAABUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAVgAAAAADVgAAAAADVgAAAAADVgAAAAACVgAAAAACcAAAAAAAcAAAAAAAbQAAAAACbQAAAAAAcAAAAAAAbQAAAAABbQAAAAABbQAAAAACbQAAAAACbQAAAAACcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAABcAAAAAAAcAAAAAAAAAAAAAAAbQAAAAAAbQAAAAADGgAAAAABbQAAAAACbQAAAAACbQAAAAABbQAAAAABbQAAAAAAbQAAAAACcAAAAAAAUwAAAAAAWwAAAAAAUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAbQAAAAADbQAAAAAAcAAAAAAAbQAAAAACbQAAAAADbQAAAAACbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAUwAAAAAAWwAAAAADUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAACbQAAAAABbQAAAAADbQAAAAABbQAAAAAAcAAAAAAAUwAAAAAAWwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAABbQAAAAADbQAAAAABbQAAAAADbQAAAAACcAAAAAAAcAAAAAAAUwAAAAADWwAAAAADWAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAYQAAAAABcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAACWwAAAAABWAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAYQAAAAADWAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAUwAAAAADWwAAAAADWAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAUwAAAAACWwAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: YwAAAAADcAAAAAAAYwAAAAABYwAAAAACYwAAAAADYwAAAAADYwAAAAABYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAYwAAAAACYwAAAAADYwAAAAAAZwAAAAADYwAAAAAAYwAAAAADYwAAAAABYwAAAAADcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAYwAAAAACcAAAAAAAYwAAAAACYwAAAAABYwAAAAAAYwAAAAAAYwAAAAADYwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADWAAAAAAAUwAAAAAAUwAAAAAAWAAAAAAAUwAAAAABUwAAAAABUwAAAAABGgAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAABRgAAAAABWwAAAAACWwAAAAAAWwAAAAACRgAAAAACWwAAAAAAWwAAAAADGgAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAAAGgAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAADcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAABGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAABcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACAAAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAWgAAAAADUwAAAAABUwAAAAACAAAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWgAAAAABUwAAAAABRgAAAAAAAAAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWgAAAAADUwAAAAADUwAAAAAAAAAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWgAAAAACUwAAAAACUwAAAAAC + tiles: YwAAAAABcAAAAAAAYwAAAAABYwAAAAACYwAAAAABYwAAAAAAYwAAAAACYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAYwAAAAAAYwAAAAADYwAAAAACZwAAAAADYwAAAAADYwAAAAABYwAAAAAAYwAAAAABcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAYwAAAAADcAAAAAAAYwAAAAACYwAAAAABYwAAAAAAYwAAAAABYwAAAAACYwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACWAAAAAAAUwAAAAAAUwAAAAACWAAAAAAAUwAAAAABUwAAAAADUwAAAAACGgAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAABRgAAAAADWwAAAAABWwAAAAADWwAAAAACRgAAAAACWwAAAAABWwAAAAADGgAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAADGgAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAACUwAAAAADcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAACAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABAAAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAWgAAAAABUwAAAAAAUwAAAAAAAAAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWgAAAAACUwAAAAAARgAAAAADAAAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWgAAAAABUwAAAAACUwAAAAAAAAAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWgAAAAADUwAAAAACUwAAAAAC version: 6 1,-3: ind: 1,-3 - tiles: cAAAAAAAWAAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAADGgAAAAABcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAbgAAAAAAbgAAAAABbQAAAAACbQAAAAABcAAAAAAAWAAAAAAAcAAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAABcAAAAAAAWAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAGgAAAAABbQAAAAAAbQAAAAABGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAAAGgAAAAACcAAAAAAAWAAAAAAAWAAAAAAAUwAAAAADcAAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAABGgAAAAABcAAAAAAAGgAAAAAAGgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAALAAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAbQAAAAAAbQAAAAADbQAAAAADbQAAAAACbQAAAAACbQAAAAADbQAAAAACbQAAAAACcAAAAAAALAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAABbQAAAAAAbQAAAAABbQAAAAAAbQAAAAACbQAAAAAAbQAAAAACcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAACbQAAAAABbQAAAAACbQAAAAABbQAAAAADbQAAAAADbQAAAAACbQAAAAAAbQAAAAACcAAAAAAAAAAAAAAAUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAADbQAAAAADbQAAAAAAbQAAAAACbQAAAAABbQAAAAADbQAAAAAAbQAAAAADbQAAAAABcAAAAAAAAAAAAAAAUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbQAAAAAAbQAAAAABbQAAAAAAbQAAAAADbQAAAAAAbQAAAAABbQAAAAADcAAAAAAAAAAAAAAAUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAACbQAAAAABbQAAAAABbQAAAAADbQAAAAAAbQAAAAADbQAAAAADcAAAAAAAAAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAWAAAAAAAXwAAAAAAYAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAA + tiles: cAAAAAAAWAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAADGgAAAAADcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADcAAAAAAAbgAAAAABbgAAAAACbQAAAAACbQAAAAACcAAAAAAAWAAAAAAAcAAAAAAAHgAAAAADHgAAAAABHgAAAAABHgAAAAAAcAAAAAAAWAAAAAAAUwAAAAACUwAAAAADcAAAAAAAGgAAAAADbQAAAAABbQAAAAABGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAACGgAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAUwAAAAAAcAAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAABGgAAAAABcAAAAAAAGgAAAAABGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAALAAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAABcAAAAAAAbQAAAAADbQAAAAABbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAACbQAAAAAAbQAAAAACcAAAAAAALAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAADbQAAAAADbQAAAAAAbQAAAAAAbQAAAAABbQAAAAACbQAAAAADcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAACbQAAAAAAbQAAAAAAbQAAAAABbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAADbQAAAAADcAAAAAAAAAAAAAAAUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAACbQAAAAAAbQAAAAADbQAAAAABbQAAAAAAbQAAAAADbQAAAAACbQAAAAADbQAAAAABcAAAAAAAAAAAAAAAUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAADbQAAAAAAbQAAAAACbQAAAAAAbQAAAAABbQAAAAADbQAAAAAAbQAAAAAAbQAAAAADcAAAAAAAAAAAAAAAUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAACbQAAAAACbQAAAAACbQAAAAADbQAAAAACbQAAAAADbQAAAAACbQAAAAACbQAAAAACcAAAAAAAAAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADWAAAAAAAXwAAAAAAYAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAA version: 6 2,-3: ind: 2,-3 - tiles: bQAAAAAAbgAAAAADbgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAADUwAAAAADUwAAAAACcAAAAAAAbQAAAAADGgAAAAADbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAADGgAAAAABHgAAAAADHgAAAAAAHgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAGgAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAAAGgAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACGgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAADGgAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADGgAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACGgAAAAABLAAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAAAGgAAAAADGgAAAAADcAAAAAAALAAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAAAcAAAAAAAUwAAAAADXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAUwAAAAACcAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABcAAAAAAAUwAAAAACXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAUwAAAAADGgAAAAADAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAUwAAAAACXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAUwAAAAACcAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAYAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAWAAAAAAAWAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAAAYQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: bQAAAAACbgAAAAABbgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAbQAAAAADGgAAAAADbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAGgAAAAADHgAAAAAAHgAAAAADHgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAADGgAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAACGgAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABGgAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAACGgAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAABGgAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAACGgAAAAAALAAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAADGgAAAAADGgAAAAACcAAAAAAALAAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAACcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAABcAAAAAAAUwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAUwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAACcAAAAAAAUwAAAAABXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAUwAAAAACGgAAAAABAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAUwAAAAADXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAUwAAAAABcAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAABcAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACYAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAWAAAAAAAWAAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAADYQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 2,2: ind: 2,2 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAGgAAAAABWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAYQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAADWAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAXwAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADWAAAAAAAbQAAAAACbQAAAAACDAAAAAABcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAABDAAAAAAAUwAAAAADDAAAAAABbQAAAAACDAAAAAAAbQAAAAABUwAAAAAAbQAAAAAAcAAAAAAAbQAAAAACcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAbQAAAAADDAAAAAAAUwAAAAABDAAAAAADUwAAAAABcAAAAAAAcAAAAAAAbQAAAAACbQAAAAAAcAAAAAAAbQAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAADAAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAADAAAAAACbQAAAAACUwAAAAABcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACDAAAAAADDAAAAAADDAAAAAAADAAAAAABcAAAAAAADAAAAAADbQAAAAAAWAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAUwAAAAABUwAAAAABcAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAGgAAAAABWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAYQAAAAADbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAACWAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAXwAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADWAAAAAAAbQAAAAABbQAAAAACDAAAAAABcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAACDAAAAAADUwAAAAAADAAAAAAAbQAAAAADDAAAAAADbQAAAAABUwAAAAACbQAAAAAAcAAAAAAAbQAAAAACcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAbQAAAAABDAAAAAACUwAAAAADDAAAAAADUwAAAAACcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAbQAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAACcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAADAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAADAAAAAAAbQAAAAACUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAADAAAAAAADAAAAAACDAAAAAABDAAAAAABcAAAAAAADAAAAAAAbQAAAAAAWAAAAAAAUwAAAAADUwAAAAACcAAAAAAAUwAAAAABUwAAAAADcAAAAAAA version: 6 1,2: ind: 1,2 - tiles: YAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAYAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAWAAAAAAAYAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAYAAAAAAAUwAAAAADWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAGgAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAACBwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAABwAAAAACCQAAAAAGBwAAAAADBwAAAAABBwAAAAADcAAAAAAAGgAAAAABGgAAAAACGgAAAAACGgAAAAABGgAAAAABcAAAAAAAUwAAAAABUwAAAAACUwAAAAAAcAAAAAAABwAAAAACBwAAAAACBwAAAAADBwAAAAAABwAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAGgAAAAACUwAAAAACUwAAAAAAWAAAAAAAGgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAADcAAAAAAAGgAAAAAAGgAAAAADGgAAAAAAGgAAAAAAGgAAAAACcAAAAAAAUwAAAAABWAAAAAAAUwAAAAADcAAAAAAABwAAAAAABwAAAAADCQAAAAAFBwAAAAABBwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAcAAAAAAA + tiles: YAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAWAAAAAAAYAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAYAAAAAAAUwAAAAACWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAACWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAGgAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAAAAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAABwAAAAABCQAAAAAABwAAAAAJBwAAAAAABwAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAAAGgAAAAAAGgAAAAABcAAAAAAAUwAAAAABUwAAAAACUwAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAGgAAAAAAUwAAAAAAUwAAAAABWAAAAAAAGgAAAAAABwAAAAAKBwAAAAAEBwAAAAAABwAAAAAABwAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAAAGgAAAAADGgAAAAAAcAAAAAAAUwAAAAACWAAAAAAAUwAAAAADcAAAAAAABwAAAAAABwAAAAAICQAAAAAABwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAADcAAAAAAA version: 6 0,-4: ind: 0,-4 - tiles: YwAAAAACcAAAAAAAYwAAAAABYwAAAAABYwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAYwAAAAADYwAAAAABYwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAYwAAAAACYwAAAAAAYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAABYwAAAAAAYwAAAAACYwAAAAAAYwAAAAABYwAAAAACUwAAAAADYwAAAAACYwAAAAAAYwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADKQAAAAAAKQAAAAAAYwAAAAACKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAABYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYwAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAABYwAAAAACYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYwAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAACYwAAAAACYwAAAAAAcAAAAAAAGgAAAAABXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAYQAAAAABcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAABYwAAAAAAYwAAAAADYwAAAAADYwAAAAADYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAABYwAAAAABYwAAAAABYwAAAAAAYwAAAAACYwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAADYwAAAAABYwAAAAAAYwAAAAAAYwAAAAADYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAYwAAAAADYwAAAAADYwAAAAABYwAAAAADYwAAAAACYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABYwAAAAAAcAAAAAAAYwAAAAACYwAAAAACYwAAAAAAYwAAAAADYwAAAAABYwAAAAADWAAAAAAAcAAAAAAAWAAAAAAAUwAAAAADWAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADYwAAAAACYwAAAAAAYwAAAAADZwAAAAABYwAAAAABYwAAAAAAYwAAAAAAYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: YwAAAAACcAAAAAAAYwAAAAADYwAAAAACYwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAYwAAAAABYwAAAAACYwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAYwAAAAACYwAAAAADYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAACYwAAAAAAYwAAAAADYwAAAAADYwAAAAACYwAAAAADUwAAAAADYwAAAAACYwAAAAAAYwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACKQAAAAAAKQAAAAAAYwAAAAABKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAYwAAAAADYwAAAAADYwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAABYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYwAAAAADcAAAAAAAGgAAAAAAGgAAAAADGgAAAAAAYwAAAAADYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYwAAAAACcAAAAAAAGgAAAAACGgAAAAADGgAAAAADYwAAAAADYwAAAAAAcAAAAAAAGgAAAAABXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAACYwAAAAADYwAAAAABYwAAAAAAYwAAAAACYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAACYwAAAAABYwAAAAABYwAAAAADYwAAAAADYwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAAAYwAAAAABYwAAAAACYwAAAAADYwAAAAABYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAYwAAAAABYwAAAAABYwAAAAACYwAAAAABYwAAAAAAYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADYwAAAAABcAAAAAAAYwAAAAACYwAAAAADYwAAAAADYwAAAAAAYwAAAAAAYwAAAAADWAAAAAAAcAAAAAAAWAAAAAAAUwAAAAADWAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACYwAAAAAAYwAAAAADYwAAAAAAZwAAAAAAYwAAAAACYwAAAAABYwAAAAABYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 1,-4: ind: 1,-4 - tiles: cAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAWAAAAAAAUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAADcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAADWAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAADcAAAAAAAbgAAAAABbgAAAAAAbgAAAAAAbgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAABcAAAAAAAbgAAAAAAbgAAAAACbgAAAAAAbgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADcAAAAAAAbgAAAAABbgAAAAACbgAAAAAAbgAAAAACXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAGgAAAAAAUwAAAAACUwAAAAACWAAAAAAAcAAAAAAAbgAAAAADbgAAAAACbgAAAAACbgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAABUwAAAAABcAAAAAAAbQAAAAADbQAAAAADbQAAAAACbQAAAAADcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADcAAAAAAAbQAAAAACbQAAAAADbQAAAAACbQAAAAABcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACWAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAADcAAAAAAAbQAAAAACbQAAAAADbQAAAAAAbQAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAbQAAAAABbQAAAAAAbQAAAAADbQAAAAADcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAbgAAAAADbgAAAAABbQAAAAABbQAAAAAC + tiles: cAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACWAAAAAAAUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAADWAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAbgAAAAAAbgAAAAAAbgAAAAACbgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACcAAAAAAAbgAAAAADbgAAAAABbgAAAAAAbgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABcAAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAABXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAGgAAAAACUwAAAAACUwAAAAAAWAAAAAAAcAAAAAAAbgAAAAAAbgAAAAAAbgAAAAACbgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAbQAAAAABbQAAAAAAbQAAAAACbQAAAAADcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAADcAAAAAAAbQAAAAACbQAAAAAAbQAAAAABbQAAAAADcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAADWAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADcAAAAAAAbQAAAAADbQAAAAAAbQAAAAACbQAAAAADcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADcAAAAAAAbQAAAAACbQAAAAABbQAAAAACbQAAAAABcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAADcAAAAAAAbgAAAAABbgAAAAACbQAAAAADbQAAAAAB version: 6 2,-4: ind: 2,-4 - tiles: cAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAGgAAAAABUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAADWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADWAAAAAAAGgAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAADWAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABWAAAAAAAUwAAAAACGgAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAbgAAAAABbgAAAAACbgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAADCwAAAAAAcAAAAAAAXwAAAAAAGgAAAAABUwAAAAABUwAAAAAAUwAAAAACbgAAAAAAbgAAAAAAbgAAAAACcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAABcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAbgAAAAAAbgAAAAAAbgAAAAACcAAAAAAAcAAAAAAAcAAAAAAACwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAUwAAAAADcAAAAAAAYAAAAAAAXwAAAAAAGgAAAAACbgAAAAAAbgAAAAACbgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAABcAAAAAAAUwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAGgAAAAACbQAAAAACbQAAAAAAbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAYQAAAAAAGgAAAAAAbQAAAAABbQAAAAAAbQAAAAADcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAGgAAAAABbQAAAAACbQAAAAAAbQAAAAACcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAABbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADcAAAAAAAbQAAAAADbgAAAAACbgAAAAADcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAADcAAAAAAA + tiles: cAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABGgAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABWAAAAAAAGgAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAWAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADWAAAAAAAUwAAAAABGgAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAABWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACbgAAAAACbgAAAAAAbgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADCwAAAAAAcAAAAAAAXwAAAAAAGgAAAAAAUwAAAAAAUwAAAAAAUwAAAAADbgAAAAADbgAAAAACbgAAAAABcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAABcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAbgAAAAAAbgAAAAABbgAAAAADcAAAAAAAcAAAAAAAcAAAAAAACwAAAAAAUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAUwAAAAADcAAAAAAAYAAAAAAAXwAAAAAAGgAAAAAAbgAAAAAAbgAAAAABbgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAUwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAGgAAAAADbQAAAAADbQAAAAABbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAYQAAAAADGgAAAAACbQAAAAABbQAAAAADbQAAAAADcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAGgAAAAACbQAAAAABbQAAAAADbQAAAAADcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAABbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAbQAAAAAAbgAAAAACbgAAAAADcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAADUwAAAAADcAAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: KQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAGgAAAAABcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAYwAAAAACYwAAAAAAYwAAAAADYwAAAAADcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAYwAAAAADYwAAAAADYwAAAAABYwAAAAACYwAAAAABYwAAAAADYwAAAAACYwAAAAAAYwAAAAABYwAAAAADYwAAAAAAYwAAAAADYwAAAAAAYwAAAAACYwAAAAAAYwAAAAADYwAAAAABYwAAAAAAKQAAAAAAKQAAAAAAYwAAAAABKQAAAAAAKQAAAAAAYwAAAAABKQAAAAAAKQAAAAAAYwAAAAADKQAAAAAAKQAAAAAAYwAAAAABKQAAAAAAKQAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAYwAAAAACYwAAAAAAcAAAAAAAYwAAAAABYwAAAAAAcAAAAAAAYwAAAAAAYwAAAAABcAAAAAAAYwAAAAAAYwAAAAADcAAAAAAAYwAAAAABYwAAAAABcAAAAAAAYwAAAAABYwAAAAACYwAAAAACcAAAAAAAYwAAAAAAYwAAAAADcAAAAAAAYwAAAAAAYwAAAAACcAAAAAAAYwAAAAAAYwAAAAABcAAAAAAAYwAAAAACYwAAAAAAcAAAAAAAYwAAAAADUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAYwAAAAACcAAAAAAAcAAAAAAAYwAAAAABcAAAAAAAcAAAAAAAYwAAAAADcAAAAAAAGgAAAAACYwAAAAAAcAAAAAAAGgAAAAACYwAAAAACYwAAAAACYwAAAAABYwAAAAACYwAAAAADYwAAAAABYwAAAAAAYwAAAAACYwAAAAAAYwAAAAADYwAAAAAAYwAAAAADYwAAAAACYwAAAAACYwAAAAACYwAAAAAAYwAAAAABYwAAAAADYwAAAAAAYwAAAAADYwAAAAAAYwAAAAAAYwAAAAADTwAAAAAAYwAAAAAAYwAAAAADYwAAAAADYwAAAAACYwAAAAAAYwAAAAADYwAAAAAATwAAAAAAYwAAAAACYwAAAAABYwAAAAABYwAAAAACYwAAAAADYwAAAAABYwAAAAABYwAAAAACYwAAAAADYwAAAAACYwAAAAABYwAAAAACYwAAAAABYwAAAAACYwAAAAADYwAAAAABcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACZgAAAAADZgAAAAABZgAAAAAAZgAAAAABZgAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAYwAAAAADYwAAAAACYwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAZgAAAAABZgAAAAAAZgAAAAACZgAAAAAAZgAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAADYwAAAAAAYwAAAAABYwAAAAACYwAAAAABYwAAAAABYwAAAAADYwAAAAAAZgAAAAACZgAAAAADZgAAAAAAZgAAAAABZgAAAAADcAAAAAAAYwAAAAAAYwAAAAABYwAAAAADYwAAAAABYwAAAAAAYwAAAAABYwAAAAAAYwAAAAADYwAAAAABYwAAAAAD + tiles: KQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAGgAAAAADcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAYwAAAAABYwAAAAABYwAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAYwAAAAACYwAAAAABYwAAAAADYwAAAAACYwAAAAACYwAAAAABYwAAAAADYwAAAAABYwAAAAABYwAAAAABYwAAAAABYwAAAAACYwAAAAADYwAAAAABYwAAAAABYwAAAAACYwAAAAAAYwAAAAADKQAAAAAAKQAAAAAAYwAAAAACKQAAAAAAKQAAAAAAYwAAAAABKQAAAAAAKQAAAAAAYwAAAAADKQAAAAAAKQAAAAAAYwAAAAAAKQAAAAAAKQAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAYwAAAAABYwAAAAACcAAAAAAAYwAAAAADYwAAAAADcAAAAAAAYwAAAAABYwAAAAAAcAAAAAAAYwAAAAADYwAAAAADcAAAAAAAYwAAAAABYwAAAAACcAAAAAAAYwAAAAACYwAAAAABYwAAAAADcAAAAAAAYwAAAAADYwAAAAAAcAAAAAAAYwAAAAABYwAAAAADcAAAAAAAYwAAAAAAYwAAAAAAcAAAAAAAYwAAAAADYwAAAAAAcAAAAAAAYwAAAAADUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAYwAAAAACcAAAAAAAcAAAAAAAYwAAAAADcAAAAAAAcAAAAAAAYwAAAAACcAAAAAAAGgAAAAABYwAAAAAAcAAAAAAAGgAAAAAAYwAAAAABYwAAAAADYwAAAAADYwAAAAADYwAAAAACYwAAAAACYwAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAACYwAAAAADYwAAAAABYwAAAAAAYwAAAAADYwAAAAADYwAAAAADYwAAAAADYwAAAAACYwAAAAAAYwAAAAACYwAAAAABTwAAAAAAYwAAAAAAYwAAAAADYwAAAAABYwAAAAAAYwAAAAACYwAAAAABYwAAAAAATwAAAAAAYwAAAAACYwAAAAAAYwAAAAACYwAAAAACYwAAAAACYwAAAAAAYwAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAABYwAAAAACYwAAAAACYwAAAAADYwAAAAADYwAAAAADcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADZgAAAAAAZgAAAAACZgAAAAACZgAAAAACZgAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAYwAAAAABYwAAAAABYwAAAAADcAAAAAAAUwAAAAACUwAAAAADZgAAAAACZgAAAAAAZgAAAAAAZgAAAAADZgAAAAACcAAAAAAAYwAAAAACYwAAAAADYwAAAAACYwAAAAADYwAAAAACYwAAAAADYwAAAAABYwAAAAACYwAAAAAAYwAAAAACZgAAAAABZgAAAAACZgAAAAACZgAAAAACZgAAAAACcAAAAAAAYwAAAAACYwAAAAAAYwAAAAACYwAAAAAAYwAAAAACYwAAAAABYwAAAAACYwAAAAACYwAAAAABYwAAAAAA version: 6 -2,-4: ind: -2,-4 - tiles: GgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAAAYwAAAAAAcAAAAAAAGgAAAAADWAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAACYwAAAAACYwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAYwAAAAACYwAAAAABYwAAAAAAYwAAAAAAYwAAAAACcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABUwAAAAACKQAAAAAAYwAAAAADYwAAAAABYwAAAAABYwAAAAACbwAAAAAAcAAAAAAAXwAAAAAAYAAAAAAAcAAAAAAAYwAAAAABYwAAAAABaAAAAAADYwAAAAADYwAAAAABcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAYAAAAAAAXwAAAAAAYwAAAAABcAAAAAAAYwAAAAAAcAAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAYAAAAAAAcAAAAAAAYwAAAAABYwAAAAAAYwAAAAABYwAAAAACYwAAAAADcAAAAAAAbgAAAAACbgAAAAADbgAAAAAAbgAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAAAbgAAAAACbgAAAAACbgAAAAACUwAAAAACXwAAAAAAXwAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAbgAAAAADbgAAAAACbgAAAAACbgAAAAACbgAAAAAAbgAAAAACcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAbgAAAAABbgAAAAACbgAAAAABbgAAAAAAbgAAAAACbgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAYQAAAAACWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAYQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAZgAAAAADcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAZgAAAAAAGgAAAAACGgAAAAAAGgAAAAABcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAGgAAAAABMwAAAAAAcAAAAAAAGgAAAAADcAAAAAAAZgAAAAAA + tiles: GgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAACYwAAAAAAcAAAAAAAGgAAAAACWAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAACYwAAAAAAYwAAAAADcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAYwAAAAACYwAAAAACYwAAAAABYwAAAAADYwAAAAACcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACUwAAAAADKQAAAAAAYwAAAAAAYwAAAAADYwAAAAABYwAAAAACbwAAAAAAcAAAAAAAXwAAAAAAYAAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAaAAAAAADYwAAAAADYwAAAAADcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAYAAAAAAAXwAAAAAAYwAAAAAAcAAAAAAAYwAAAAADcAAAAAAAYwAAAAADcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAYAAAAAAAcAAAAAAAYwAAAAADYwAAAAABYwAAAAACYwAAAAABYwAAAAAAcAAAAAAAbgAAAAAAbgAAAAAAbgAAAAABbgAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAACUwAAAAABXwAAAAAAXwAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAbgAAAAACbgAAAAABbgAAAAABbgAAAAADbgAAAAAAbgAAAAACcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAbgAAAAABbgAAAAACbgAAAAABbgAAAAACbgAAAAABbgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAYQAAAAABWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAYQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAZgAAAAACcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAZgAAAAABGgAAAAADGgAAAAABGgAAAAACcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAGgAAAAABMwAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAZgAAAAAA version: 6 -1,-5: ind: -1,-5 - tiles: UwAAAAAAUwAAAAACcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAYAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAWAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAXwAAAAAAWAAAAAAAWAAAAAAAXwAAAAAAYAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAADcAAAAAAAYAAAAAAAYAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAYAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAXwAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAGgAAAAACcAAAAAAAXwAAAAAAcAAAAAAAWAAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYQAAAAADXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYAAAAAAAYQAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAAAXwAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAABYwAAAAACYwAAAAAAKQAAAAAAGgAAAAACGgAAAAACKQAAAAAAGgAAAAABcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAYwAAAAACWgAAAAAAWgAAAAAAWgAAAAACKQAAAAAAGgAAAAADGgAAAAADKQAAAAAAGgAAAAACcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAYwAAAAACWgAAAAABWgAAAAABWgAAAAABKQAAAAAAGgAAAAACGgAAAAADKQAAAAAAGgAAAAADcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAYwAAAAAAWgAAAAAAWgAAAAAAWgAAAAAB + tiles: UwAAAAAAUwAAAAABcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAYAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAWAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAXwAAAAAAWAAAAAAAWAAAAAAAXwAAAAAAYAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAACcAAAAAAAYAAAAAAAYAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAYAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAXwAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAGgAAAAADcAAAAAAAXwAAAAAAcAAAAAAAWAAAAAAAYQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYQAAAAABXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYAAAAAAAYQAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAADYwAAAAACYwAAAAACKQAAAAAAGgAAAAADGgAAAAAAKQAAAAAAGgAAAAADcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAYwAAAAADWgAAAAABWgAAAAAAWgAAAAACKQAAAAAAGgAAAAABGgAAAAAAKQAAAAAAGgAAAAADcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAYwAAAAACWgAAAAACWgAAAAAAWgAAAAADKQAAAAAAGgAAAAACGgAAAAADKQAAAAAAGgAAAAADcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAYwAAAAAAWgAAAAABWgAAAAACWgAAAAAD version: 6 -2,-5: ind: -2,-5 - tiles: cAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAYwAAAAABYwAAAAADYwAAAAAAYwAAAAADYwAAAAABYwAAAAACcAAAAAAAYwAAAAABYwAAAAACYwAAAAADYwAAAAACUwAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAADYwAAAAABcAAAAAAAYwAAAAADYwAAAAAAYwAAAAABYwAAAAACUwAAAAACcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAYwAAAAACYwAAAAAAYwAAAAAAYwAAAAADYwAAAAAAYwAAAAACcAAAAAAAYwAAAAADYwAAAAAAYwAAAAABYwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAABYwAAAAADYwAAAAACcAAAAAAAYwAAAAADYwAAAAADYwAAAAABYwAAAAAAUwAAAAABYwAAAAABYwAAAAABYwAAAAABYwAAAAAAYwAAAAADcAAAAAAAYwAAAAAAYwAAAAABYwAAAAABYwAAAAADcAAAAAAAYwAAAAABYwAAAAAAYwAAAAAAYwAAAAACUwAAAAABYwAAAAADYwAAAAAAYwAAAAACYwAAAAACYwAAAAADcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAYwAAAAADYwAAAAACYwAAAAACYwAAAAADYwAAAAACUwAAAAADYwAAAAAAYwAAAAADYwAAAAACYwAAAAABYwAAAAABYwAAAAACYwAAAAABYwAAAAAAYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAACYwAAAAACYwAAAAABYwAAAAAAYwAAAAACYwAAAAADYwAAAAACYwAAAAABcAAAAAAAZgAAAAADZgAAAAABZgAAAAADZgAAAAACZgAAAAAAcAAAAAAAYwAAAAAAYwAAAAACYwAAAAADYwAAAAAAYwAAAAABYwAAAAAAYwAAAAAAYwAAAAADYwAAAAAAcAAAAAAAZgAAAAABZgAAAAACZgAAAAAAZgAAAAABZgAAAAAAcAAAAAAAYwAAAAABYwAAAAACYwAAAAACYwAAAAACYwAAAAAAYwAAAAABYwAAAAAAYwAAAAACYwAAAAABcAAAAAAAZgAAAAACZgAAAAACZgAAAAAAZgAAAAADZgAAAAABcAAAAAAAYwAAAAACYwAAAAACYwAAAAACYwAAAAABYwAAAAAAYwAAAAACYwAAAAACYwAAAAABYwAAAAAAUwAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAABcAAAAAAAcAAAAAAAWAAAAAAAYQAAAAADXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAADYwAAAAADcAAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAABYwAAAAADcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAGgAAAAACWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAADYwAAAAADcAAAAAAAGgAAAAAB + tiles: cAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAYwAAAAADYwAAAAABYwAAAAAAYwAAAAABYwAAAAADYwAAAAACcAAAAAAAYwAAAAADYwAAAAABYwAAAAACYwAAAAACUwAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAYwAAAAABYwAAAAADYwAAAAACYwAAAAAAYwAAAAADYwAAAAADcAAAAAAAYwAAAAADYwAAAAABYwAAAAADYwAAAAABUwAAAAABcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAYwAAAAADYwAAAAAAYwAAAAAAYwAAAAACYwAAAAABYwAAAAAAcAAAAAAAYwAAAAADYwAAAAACYwAAAAABYwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAABYwAAAAADYwAAAAAAcAAAAAAAYwAAAAACYwAAAAABYwAAAAABYwAAAAABUwAAAAACYwAAAAACYwAAAAACYwAAAAADYwAAAAACYwAAAAADcAAAAAAAYwAAAAADYwAAAAACYwAAAAACYwAAAAABcAAAAAAAYwAAAAADYwAAAAADYwAAAAACYwAAAAACUwAAAAADYwAAAAABYwAAAAAAYwAAAAADYwAAAAACYwAAAAABcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAYwAAAAABYwAAAAAAYwAAAAACYwAAAAABYwAAAAAAUwAAAAAAYwAAAAACYwAAAAAAYwAAAAAAYwAAAAABYwAAAAABYwAAAAABYwAAAAACYwAAAAABYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAACYwAAAAADYwAAAAABYwAAAAAAYwAAAAACYwAAAAACYwAAAAADYwAAAAABcAAAAAAAZgAAAAABZgAAAAACZgAAAAAAZgAAAAABZgAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAADYwAAAAADYwAAAAAAYwAAAAADYwAAAAADYwAAAAACYwAAAAADcAAAAAAAZgAAAAABZgAAAAADZgAAAAACZgAAAAACZgAAAAAAcAAAAAAAYwAAAAAAYwAAAAACYwAAAAADYwAAAAACYwAAAAADYwAAAAADYwAAAAACYwAAAAACYwAAAAAAcAAAAAAAZgAAAAABZgAAAAABZgAAAAAAZgAAAAACZgAAAAACcAAAAAAAYwAAAAADYwAAAAADYwAAAAAAYwAAAAAAYwAAAAACYwAAAAABYwAAAAADYwAAAAAAYwAAAAABUwAAAAADcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAYQAAAAABXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAADYwAAAAADcAAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAAAYwAAAAADcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAGgAAAAABWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAAAYwAAAAADcAAAAAAAGgAAAAAC version: 6 0,-5: ind: 0,-5 - tiles: cAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbgAAAAAAbgAAAAABbgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAbwAAAAAAcAAAAAAAYAAAAAAAXwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAADYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAWAAAAAAAYwAAAAADcAAAAAAAYwAAAAADYwAAAAAAYwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAYQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABWAAAAAAAYwAAAAABcAAAAAAAYwAAAAABTwAAAAAAYwAAAAADcAAAAAAAXwAAAAAAWAAAAAAAWAAAAAAAYQAAAAADXwAAAAAAYQAAAAABYQAAAAAAcAAAAAAAcAAAAAAAWAAAAAAA + tiles: cAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbgAAAAADbgAAAAADbgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAbwAAAAAAcAAAAAAAYAAAAAAAXwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAADYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAWAAAAAAAYwAAAAABcAAAAAAAYwAAAAAAYwAAAAABYwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACWAAAAAAAYwAAAAADcAAAAAAAYwAAAAADTwAAAAAAYwAAAAAAcAAAAAAAXwAAAAAAWAAAAAAAWAAAAAAAYQAAAAADXwAAAAAAYQAAAAADYQAAAAAAcAAAAAAAcAAAAAAAWAAAAAAA version: 6 -1,-6: ind: -1,-6 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAYAAAAAAAGgAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABYAAAAAAAGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABYAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACYAAAAAAAGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAYAAAAAAAYAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAYAAAAAAAGgAAAAACbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABYAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABYAAAAAAAGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABYAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAYAAAAAAAYAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 -2,-6: ind: -2,-6 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAABWAAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAACWAAAAAAAUwAAAAABcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAZwAAAAACZwAAAAADZwAAAAABZwAAAAAAZwAAAAABZwAAAAABZwAAAAADZwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAZwAAAAAAZwAAAAABZwAAAAACZwAAAAABZwAAAAACZwAAAAADZwAAAAADZwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAZwAAAAAAZwAAAAABZwAAAAABZwAAAAACZwAAAAADZwAAAAADZwAAAAABZwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAZwAAAAACZwAAAAAAZwAAAAABZwAAAAACZwAAAAABZwAAAAADZwAAAAADZwAAAAADcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAZwAAAAADZwAAAAABcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAZwAAAAAAZwAAAAADcAAAAAAAGgAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAGgAAAAACcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAYwAAAAABYwAAAAABYwAAAAACYwAAAAABYwAAAAAAYwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADWAAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAABWAAAAAAAUwAAAAADcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAZwAAAAADZwAAAAABZwAAAAABZwAAAAABZwAAAAABZwAAAAABZwAAAAAAZwAAAAADcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAZwAAAAACZwAAAAACZwAAAAADZwAAAAACZwAAAAAAZwAAAAADZwAAAAAAZwAAAAACcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAZwAAAAABZwAAAAACZwAAAAACZwAAAAACZwAAAAAAZwAAAAABZwAAAAABZwAAAAABcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAZwAAAAABZwAAAAACZwAAAAAAZwAAAAABZwAAAAAAZwAAAAABZwAAAAABZwAAAAADcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAZwAAAAABZwAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAZwAAAAAAZwAAAAAAcAAAAAAAGgAAAAADcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAGgAAAAADcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAYwAAAAABYwAAAAAAYwAAAAABYwAAAAACYwAAAAAAYwAAAAADUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 0,-6: ind: 0,-6 - tiles: AAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAABwAAAAACBwAAAAADCQAAAAAFBwAAAAADCQAAAAAEBwAAAAABBwAAAAAHBwAAAAABBwAAAAACbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAABwAAAAABBwAAAAAEBwAAAAADBwAAAAAHBwAAAAACCQAAAAADBwAAAAACCQAAAAAEBwAAAAACbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbgAAAAAAbgAAAAACbgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAACbQAAAAABbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbgAAAAADbQAAAAADWgAAAAACWgAAAAABWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAADbQAAAAADWgAAAAADLAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAYQAAAAACXwAAAAAAXwAAAAAAcAAAAAAAbgAAAAABbQAAAAABWgAAAAAALAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAABbQAAAAABWgAAAAAALAAAAAAALAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbgAAAAADbQAAAAACWgAAAAABWgAAAAACWgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAACbQAAAAACbQAAAAAC + tiles: AAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAACQAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAKbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAACQAAAAAABwAAAAAACQAAAAAHBwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbgAAAAABbgAAAAADbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAADbQAAAAADbQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbgAAAAAAbQAAAAACWgAAAAADWgAAAAADWgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAACbQAAAAADWgAAAAADLAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAYQAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAbgAAAAACbQAAAAACWgAAAAAALAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAAAbQAAAAACWgAAAAAALAAAAAAALAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbgAAAAAAbQAAAAADWgAAAAADWgAAAAABWgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAACbQAAAAAAbQAAAAAC version: 6 -3,-5: ind: -3,-5 - tiles: UwAAAAADWAAAAAAACwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAABcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABbQAAAAAAbQAAAAADbQAAAAADbQAAAAAAUwAAAAAAUwAAAAACWAAAAAAAUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAUwAAAAABWAAAAAAAbQAAAAADbQAAAAADUwAAAAADbQAAAAAAbQAAAAAAbQAAAAADWAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAUwAAAAADcAAAAAAAWAAAAAAAbQAAAAACWAAAAAAAYQAAAAAAWAAAAAAAWAAAAAAAbQAAAAADWAAAAAAAUwAAAAADUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAACwAAAAAAUwAAAAAAbQAAAAABbQAAAAAAUwAAAAABbQAAAAACWAAAAAAAbQAAAAABUwAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAACwAAAAAAWAAAAAAAUwAAAAABcAAAAAAAbQAAAAABbQAAAAACbQAAAAADbQAAAAADcAAAAAAACwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAACwAAAAAACwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAUwAAAAADCwAAAAAAYQAAAAAAYQAAAAABCwAAAAAAUwAAAAABUwAAAAADUwAAAAABCwAAAAAAUwAAAAACUwAAAAACcAAAAAAAGgAAAAACGgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAACwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABCwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAGgAAAAACGgAAAAACGgAAAAABYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAACwAAAAAAUwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABCwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAA + tiles: UwAAAAABWAAAAAAACwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAUwAAAAACUwAAAAABUwAAAAAAbQAAAAAAbQAAAAACbQAAAAAAbQAAAAAAUwAAAAADUwAAAAABWAAAAAAAUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAUwAAAAADWAAAAAAAbQAAAAADbQAAAAACUwAAAAADbQAAAAACbQAAAAAAbQAAAAACWAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAUwAAAAABcAAAAAAAWAAAAAAAbQAAAAACWAAAAAAAYQAAAAACWAAAAAAAWAAAAAAAbQAAAAABWAAAAAAAUwAAAAACUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAACwAAAAAAUwAAAAADbQAAAAADbQAAAAABUwAAAAACbQAAAAACWAAAAAAAbQAAAAADUwAAAAACcAAAAAAAUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAACwAAAAAAWAAAAAAAUwAAAAABcAAAAAAAbQAAAAACbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAACwAAAAAAUwAAAAADUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAACwAAAAAACwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAUwAAAAAACwAAAAAAYQAAAAAAYQAAAAABCwAAAAAAUwAAAAADUwAAAAAAUwAAAAABCwAAAAAAUwAAAAABUwAAAAABcAAAAAAAGgAAAAADGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAACwAAAAAAUwAAAAABUwAAAAACcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADCwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAGgAAAAADGgAAAAADGgAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAACwAAAAAAUwAAAAADcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAACwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAA version: 6 1,-6: ind: 1,-6 - tiles: bwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAWwAAAAABWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAWwAAAAADUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAWwAAAAABUwAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAABWwAAAAADWwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAWwAAAAAAUwAAAAADbgAAAAACbgAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADWwAAAAADWAAAAAAAbQAAAAABbQAAAAABbQAAAAACcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACWwAAAAADUwAAAAAAWgAAAAABWgAAAAABbQAAAAACbQAAAAACcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWQAAAAACWQAAAAABWgAAAAACUwAAAAABWAAAAAAAUwAAAAAAWwAAAAADUwAAAAABLAAAAAAAWgAAAAAAbQAAAAACbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWQAAAAADWQAAAAACWgAAAAADUwAAAAADUwAAAAACUwAAAAADWwAAAAABUwAAAAADLAAAAAAAWgAAAAABbQAAAAABbQAAAAABGgAAAAADUwAAAAADUwAAAAABGgAAAAADWQAAAAACWQAAAAABWgAAAAACWwAAAAAAWwAAAAAAWwAAAAACWwAAAAADUwAAAAABLAAAAAAAWgAAAAACbQAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWQAAAAACWQAAAAABWgAAAAACUwAAAAAAWAAAAAAAUwAAAAAAWwAAAAAAWwAAAAABWgAAAAACWgAAAAABbQAAAAABbQAAAAADcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWQAAAAADWQAAAAAAWgAAAAAAUwAAAAACUwAAAAADWAAAAAAAWwAAAAAAUwAAAAABbQAAAAACbQAAAAACbQAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAADWwAAAAADUwAAAAAC + tiles: bwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAWwAAAAABWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADWwAAAAAAUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACWwAAAAADUwAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAADWwAAAAACWwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADWwAAAAADUwAAAAACbgAAAAABbgAAAAACcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACWwAAAAADWAAAAAAAbQAAAAAAbQAAAAABbQAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAABWwAAAAAAUwAAAAACWgAAAAAAWgAAAAACbQAAAAADbQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWQAAAAADWQAAAAADWgAAAAAAUwAAAAACWAAAAAAAUwAAAAADWwAAAAACUwAAAAAALAAAAAAAWgAAAAADbQAAAAACbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWQAAAAADWQAAAAACWgAAAAACUwAAAAADUwAAAAACUwAAAAACWwAAAAAAUwAAAAACLAAAAAAAWgAAAAAAbQAAAAAAbQAAAAADGgAAAAADUwAAAAAAUwAAAAACGgAAAAADWQAAAAABWQAAAAAAWgAAAAACWwAAAAACWwAAAAABWwAAAAACWwAAAAADUwAAAAABLAAAAAAAWgAAAAACbQAAAAADbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWQAAAAACWQAAAAABWgAAAAACUwAAAAABWAAAAAAAUwAAAAACWwAAAAABWwAAAAAAWgAAAAADWgAAAAACbQAAAAAAbQAAAAABcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWQAAAAACWQAAAAACWgAAAAABUwAAAAADUwAAAAAAWAAAAAAAWwAAAAABUwAAAAAAbQAAAAABbQAAAAAAbQAAAAACcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABWwAAAAAAUwAAAAAC version: 6 0,-7: ind: 0,-7 @@ -258,119 +258,119 @@ entities: version: 6 1,-5: ind: 1,-5 - tiles: bgAAAAABbgAAAAADcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABWwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABWwAAAAADWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAWwAAAAADUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABWwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAADWAAAAAAAUwAAAAADUwAAAAACWwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAUwAAAAACUwAAAAABUwAAAAABWAAAAAAAWAAAAAAAUwAAAAAAWwAAAAADUwAAAAADYQAAAAACYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAABWwAAAAADWwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAUwAAAAAAUwAAAAABWAAAAAAAWAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABWAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: bgAAAAADbgAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAWwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADWwAAAAADWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADWwAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACWwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWAAAAAAAUwAAAAAAUwAAAAABWwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAUwAAAAADUwAAAAADUwAAAAACWAAAAAAAWAAAAAAAUwAAAAABWwAAAAAAUwAAAAACYQAAAAADYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACWwAAAAADWwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAUwAAAAACUwAAAAACWAAAAAAAWAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABWAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 2,-5: ind: 2,-5 - tiles: cAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADGgAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACWAAAAAAAWAAAAAAAGgAAAAACUwAAAAAAGgAAAAACUwAAAAABRgAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAARgAAAAAAWAAAAAAAGgAAAAACWwAAAAACGgAAAAABUwAAAAADWAAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAAAGgAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADWAAAAAAAUwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABRgAAAAACUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAARgAAAAADUwAAAAABXwAAAAAAYAAAAAAAYAAAAAAAXwAAAAAAYQAAAAADXwAAAAAAcAAAAAAA + tiles: cAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAACcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAUwAAAAABGgAAAAABUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAADWAAAAAAAWAAAAAAAGgAAAAADUwAAAAABGgAAAAABUwAAAAADRgAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAACRgAAAAACWAAAAAAAGgAAAAADWwAAAAAAGgAAAAACUwAAAAACWAAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAADGgAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAABcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAABWAAAAAAAUwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACRgAAAAADUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAYQAAAAACcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAARgAAAAACUwAAAAACXwAAAAAAYAAAAAAAYAAAAAAAXwAAAAAAYQAAAAABXwAAAAAAcAAAAAAA version: 6 3,-2: ind: 3,-2 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAAASgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAASgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAASgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAYAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAASgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAABXwAAAAAAcAAAAAAASgAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAADcAAAAAAASgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAASgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAADSgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAASgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAASgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAYAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAASgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAACXwAAAAAAcAAAAAAASgAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAABcAAAAAAASgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAASgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAA version: 6 0,2: ind: 0,2 - tiles: WAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAAQAAAAAAAQAAAAAAWAAAAAAAAQAAAAAAAQAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAQAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADWAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAUwAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAABBwAAAAADBwAAAAADBwAAAAADAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAACBwAAAAADBwAAAAADBwAAAAADBwAAAAADBwAAAAACBwAAAAADBwAAAAADBwAAAAADBwAAAAABBwAAAAABBwAAAAABcAAAAAAAcAAAAAAAcAAAAAAABwAAAAADBwAAAAACBwAAAAADCQAAAAAHBwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAADCQAAAAAGBwAAAAADBwAAAAADBwAAAAAAUwAAAAABUwAAAAABcAAAAAAABwAAAAADBwAAAAADBwAAAAADBwAAAAADBwAAAAACBwAAAAABBwAAAAADBwAAAAADBwAAAAABBwAAAAADBwAAAAABBwAAAAAABwAAAAAAUwAAAAAAUwAAAAADcAAAAAAABwAAAAADBwAAAAADBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAADBwAAAAADBwAAAAADBwAAAAAEBwAAAAACBwAAAAAABwAAAAAAUwAAAAADUwAAAAAAcAAAAAAABwAAAAADBwAAAAACBwAAAAADCQAAAAAGBwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAABwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAAA + tiles: WAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAAQAAAAAAAQAAAAAAWAAAAAAAAQAAAAAAAQAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAQAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADWAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAUwAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAAUwAAAAADUwAAAAACcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAIBwAAAAAAUwAAAAADUwAAAAADcAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAJBwAAAAAABwAAAAAABwAAAAAAUwAAAAAAUwAAAAADcAAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAABwAAAAAMcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAABBwAAAAAABwAAAAAA version: 6 1,3: ind: 1,3 - tiles: BwAAAAAABwAAAAADBwAAAAADBwAAAAADBwAAAAABBwAAAAABBwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAACBwAAAAADBwAAAAABBwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAADBwAAAAABBwAAAAADBwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAABBwAAAAABBwAAAAADBwAAAAABBwAAAAADBwAAAAADBwAAAAADBwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAABBwAAAAACBwAAAAADBwAAAAAABwAAAAAABwAAAAACBwAAAAADBwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAADBwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAAGBwAAAAADBwAAAAADBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAADBwAAAAACBwAAAAADBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAABBwAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAAHBwAAAAABBwAAAAAABwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAACBwAAAAADBwAAAAADBwAAAAADBwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAAJBwAAAAAABwAAAAAGBwAAAAAHBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,3: ind: 0,3 - tiles: UwAAAAABUwAAAAADcAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAABwAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAAAUwAAAAADUwAAAAADcAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAADBwAAAAABBwAAAAACBwAAAAACBwAAAAADUwAAAAABUwAAAAAAcAAAAAAABwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAADBwAAAAADBwAAAAADBwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAACUwAAAAAAUwAAAAACcAAAAAAACQAAAAAEBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAABBwAAAAADBwAAAAACBwAAAAADBwAAAAABBwAAAAABUwAAAAADUwAAAAAAcAAAAAAABwAAAAABBwAAAAAGBwAAAAAABwAAAAACBwAAAAADBwAAAAADLAAAAAAALAAAAAAALAAAAAAAJQAAAAAABwAAAAADBwAAAAADBwAAAAABGgAAAAABGgAAAAACcAAAAAAABwAAAAABBwAAAAADBwAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAJQAAAAACBwAAAAACBwAAAAADUwAAAAADUwAAAAAAcAAAAAAABwAAAAACBwAAAAABBwAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAJQAAAAABJQAAAAABBwAAAAADUwAAAAAAUwAAAAABcAAAAAAABwAAAAADBwAAAAACBwAAAAADBwAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAJQAAAAABBwAAAAACBwAAAAACBwAAAAADUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAADBwAAAAADBwAAAAADBwAAAAAGJQAAAAABBwAAAAADBwAAAAAABwAAAAADBwAAAAAAUwAAAAADUwAAAAABYAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAADBwAAAAADBwAAAAADBwAAAAACBwAAAAACBwAAAAADBwAAAAABBwAAAAAHBwAAAAAAUwAAAAADUwAAAAAAYAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAADBwAAAAABBwAAAAADBwAAAAADBwAAAAACBwAAAAADUwAAAAADUwAAAAABYAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: UwAAAAADUwAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAUwAAAAACUwAAAAADcAAAAAAABwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAUwAAAAAAUwAAAAABcAAAAAAACQAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAAUwAAAAACUwAAAAADcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAALAAAAAAALAAAAAAALAAAAAAAJQAAAAACBwAAAAAABwAAAAAABwAAAAAAGgAAAAADGgAAAAACcAAAAAAABwAAAAAABwAAAAAABwAAAAAGLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAJQAAAAADBwAAAAAABwAAAAAAUwAAAAABUwAAAAADcAAAAAAABwAAAAAABwAAAAAFBwAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAJQAAAAACJQAAAAACBwAAAAAAUwAAAAADUwAAAAADcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAJQAAAAABBwAAAAAABwAAAAAABwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAABBwAAAAAABwAAAAAAJQAAAAACBwAAAAAABwAAAAADBwAAAAAABwAAAAAAUwAAAAABUwAAAAACYAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJUwAAAAACUwAAAAABYAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAUwAAAAACUwAAAAAAYAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,2: ind: -1,2 - tiles: UwAAAAACUwAAAAADcAAAAAAAbQAAAAADbQAAAAAAbQAAAAABcAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAXwAAAAAAWAAAAAAAUwAAAAAAYAAAAAAAUwAAAAADUwAAAAABUwAAAAADcAAAAAAAbQAAAAADbQAAAAADcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAACGgAAAAAAbQAAAAAAbQAAAAACcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAbQAAAAABbQAAAAADcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAABGgAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAAAGgAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAUwAAAAADUwAAAAACGgAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAABUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAACGgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAFgAAAAAAFgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAUwAAAAABUwAAAAAAGgAAAAACUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAABGgAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAABGgAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAABcAAAAAAAYQAAAAACYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAD + tiles: UwAAAAACUwAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAADcAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAXwAAAAAAWAAAAAAAUwAAAAADYAAAAAAAUwAAAAADUwAAAAADUwAAAAACcAAAAAAAbQAAAAACbQAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAADGgAAAAADbQAAAAADbQAAAAADcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAACUwAAAAADcAAAAAAAbQAAAAABbQAAAAABcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAADGgAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAACGgAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAUwAAAAABUwAAAAADGgAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAACGgAAAAABFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAABcAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAFgAAAAAAFgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAUwAAAAACUwAAAAAAGgAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAGgAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAAAGgAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAYQAAAAACYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAA version: 6 4,1: ind: 4,1 - tiles: XwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAACcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAUwAAAAACcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAA + tiles: XwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAUwAAAAACcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAA version: 6 4,0: ind: 4,0 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAUwAAAAACUwAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-1: ind: 4,-1 - tiles: AAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAGgAAAAADGgAAAAADGgAAAAABGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAABGgAAAAACGgAAAAAAGgAAAAADGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAABLAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAACLAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAAALAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAACGgAAAAADGgAAAAACGgAAAAADGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAbQAAAAACGgAAAAADGgAAAAACGgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAACbQAAAAADcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAACbQAAAAADcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAACGgAAAAADGgAAAAAAGgAAAAACGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAADGgAAAAAAGgAAAAABGgAAAAADGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAACLAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAACLAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAALAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAADGgAAAAADGgAAAAABGgAAAAACGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAbQAAAAADGgAAAAACGgAAAAADGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAACbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAABbQAAAAACcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAABbQAAAAADcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-3: ind: 4,-3 - tiles: UwAAAAADUwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWgAAAAAAWgAAAAABWgAAAAADWgAAAAABWgAAAAADWAAAAAAAUwAAAAACUwAAAAACUwAAAAABcAAAAAAAbwAAAAAAUwAAAAAAUwAAAAADGgAAAAACGgAAAAADGgAAAAACGgAAAAADGgAAAAAAGgAAAAABGgAAAAABGgAAAAABGgAAAAAAGgAAAAAAUwAAAAACWAAAAAAAcAAAAAAAbwAAAAAAUwAAAAAAUwAAAAABGgAAAAAAGgAAAAAAGgAAAAABGgAAAAAAGgAAAAADGgAAAAACGgAAAAAAGgAAAAADGgAAAAACGgAAAAACWAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADWAAAAAAAUwAAAAADUwAAAAACUwAAAAABGgAAAAAAGgAAAAABWAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAUwAAAAABUwAAAAACcAAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAADUwAAAAABUwAAAAABGgAAAAADGgAAAAACWAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAGgAAAAACGgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAGgAAAAACGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAGgAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAABGgAAAAABGgAAAAACGgAAAAACGgAAAAABGgAAAAABGgAAAAABUwAAAAACcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAADUwAAAAADGgAAAAAAGgAAAAABGgAAAAABGgAAAAAAGgAAAAABGgAAAAACGgAAAAABGgAAAAADUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAWAAAAAAAGgAAAAABGgAAAAADGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACGgAAAAACUwAAAAABUwAAAAABGgAAAAAAUwAAAAACWAAAAAAAGgAAAAABGgAAAAAAGgAAAAAAGgAAAAACGgAAAAADGgAAAAADGgAAAAABGgAAAAACUwAAAAAAUwAAAAABGgAAAAABUwAAAAAAWAAAAAAAGgAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAADGgAAAAADGgAAAAACGgAAAAADGgAAAAACGgAAAAABGgAAAAACUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: UwAAAAABUwAAAAACcAAAAAAAWAAAAAAAWAAAAAAAWgAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAADWAAAAAAAUwAAAAACUwAAAAACUwAAAAADcAAAAAAAbwAAAAAAUwAAAAACUwAAAAADGgAAAAADGgAAAAABGgAAAAADGgAAAAADGgAAAAADGgAAAAACGgAAAAABGgAAAAADGgAAAAACGgAAAAAAUwAAAAADWAAAAAAAcAAAAAAAbwAAAAAAUwAAAAABUwAAAAABGgAAAAAAGgAAAAABGgAAAAACGgAAAAABGgAAAAAAGgAAAAADGgAAAAADGgAAAAAAGgAAAAABGgAAAAACWAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACWAAAAAAAUwAAAAAAUwAAAAABUwAAAAABGgAAAAABGgAAAAADWAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAGgAAAAAAGgAAAAABWAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAGgAAAAABGgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAGgAAAAABGgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAADGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAGgAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAABGgAAAAADGgAAAAABGgAAAAABGgAAAAACGgAAAAABGgAAAAABUwAAAAABcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABGgAAAAACGgAAAAAAGgAAAAAAGgAAAAACGgAAAAADGgAAAAAAGgAAAAADGgAAAAADUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAWAAAAAAAGgAAAAADGgAAAAACGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABGgAAAAABUwAAAAABUwAAAAABGgAAAAACUwAAAAACWAAAAAAAGgAAAAAAGgAAAAACGgAAAAABGgAAAAACGgAAAAADGgAAAAABGgAAAAADGgAAAAABUwAAAAACUwAAAAADGgAAAAABUwAAAAACWAAAAAAAGgAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAGgAAAAACGgAAAAABGgAAAAADGgAAAAABGgAAAAADGgAAAAACUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 4,-2: ind: 4,-2 - tiles: UwAAAAADcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADRwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: UwAAAAADcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADRwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-3: ind: 3,-3 - tiles: UwAAAAABUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABGwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACGwAAAAACGwAAAAACGwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAADGgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAGgAAAAACUwAAAAABUwAAAAADUwAAAAABGwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAABGgAAAAABXQAAAAADXQAAAAABXQAAAAAAGgAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAADcAAAAAAAGgAAAAACGgAAAAAAGgAAAAADcAAAAAAAYAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAABGgAAAAABGgAAAAADGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABcAAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAADUwAAAAABUwAAAAACcAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAADcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAABcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAYQAAAAACYQAAAAADYQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYQAAAAADXwAAAAAAYQAAAAACcAAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAABcAAAAAAAUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAYQAAAAACYQAAAAACYQAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAABYAAAAAAAYAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAYQAAAAABYQAAAAABYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAC + tiles: UwAAAAADUwAAAAACUwAAAAACUwAAAAACcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADGwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAGwAAAAADGwAAAAACGwAAAAADUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAADGgAAAAABXQAAAAABXQAAAAABXQAAAAACGgAAAAABUwAAAAACUwAAAAADUwAAAAADGwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADGgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADGgAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAADcAAAAAAAGgAAAAACGgAAAAABUwAAAAACcAAAAAAAYAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAACGgAAAAABUwAAAAACUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACcAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAACcAAAAAAAcAAAAAAAYQAAAAACUwAAAAADUwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAACUwAAAAACUwAAAAACcAAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAACUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAABcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAYQAAAAACYQAAAAAAYQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYQAAAAAAXwAAAAAAYQAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAUwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYQAAAAAAYQAAAAAAYQAAAAACcAAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAACYAAAAAAAYAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAYQAAAAACYQAAAAACYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAA version: 6 3,-4: ind: 3,-4 - tiles: AAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYQAAAAADcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYAAAAAAAXwAAAAAAYAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAGgAAAAACWAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAAAGgAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAGgAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAADcAAAAAAAXwAAAAAAYAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAASgAAAAAAYAAAAAAASgAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADSgAAAAAASgAAAAAAYAAAAAAASgAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAASgAAAAAAYAAAAAAASgAAAAAAYAAAAAAASgAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAADcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAGgAAAAABYAAAAAAASgAAAAAAYAAAAAAASgAAAAAAYAAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAABcAAAAAAAcAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAGgAAAAACUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAB + tiles: AAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYQAAAAACcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYAAAAAAAXwAAAAAAYAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAGgAAAAACWAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADWAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAADGgAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAADGgAAAAABWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAGgAAAAADGgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAAAcAAAAAAAXwAAAAAAYAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAASgAAAAAAYAAAAAAASgAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADSgAAAAAASgAAAAAAYAAAAAAASgAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABSgAAAAAAYAAAAAAASgAAAAAAYAAAAAAASgAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAADcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAGgAAAAACYAAAAAAASgAAAAAAYAAAAAAASgAAAAAAYAAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAAAcAAAAAAAGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAGgAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAAC version: 6 4,-4: ind: 4,-4 - tiles: YAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAABBwAAAAACBwAAAAADBwAAAAADBwAAAAACBwAAAAADBwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAADcAAAAAAAcAAAAAAAYQAAAAACcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAABwAAAAADBwAAAAAEBwAAAAADBwAAAAADBwAAAAAABwAAAAADBwAAAAABbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAABBwAAAAADBwAAAAADBwAAAAADBwAAAAAABwAAAAAABwAAAAACbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAADBwAAAAADBwAAAAACbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAABBwAAAAACBwAAAAADBwAAAAACbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYQAAAAAAYQAAAAACcAAAAAAAcAAAAAAABwAAAAADBwAAAAACBwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAABwAAAAADBwAAAAACBwAAAAADcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAYQAAAAAAcAAAAAAAcAAAAAAABwAAAAADBwAAAAADBwAAAAACSgAAAAAAGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAADBwAAAAADSgAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAACBwAAAAADYAAAAAAASgAAAAAAGgAAAAADbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAHBwAAAAADSgAAAAAAYAAAAAAAGgAAAAACbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAADBwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAADbwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAWAAAAAAAUwAAAAABWgAAAAAAWgAAAAAAWgAAAAABWgAAAAADWgAAAAACWAAAAAAAUwAAAAACWAAAAAAAcAAAAAAABwAAAAADbwAAAAAAUwAAAAADUwAAAAACGgAAAAADUwAAAAADWAAAAAAAWgAAAAADWgAAAAACWgAAAAACWgAAAAABWgAAAAAAWAAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAbwAAAAAA + tiles: YAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAJBwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAYQAAAAADcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYQAAAAADYQAAAAACcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAYQAAAAADcAAAAAAAcAAAAAAABwAAAAAABwAAAAAIBwAAAAAASgAAAAAAGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAASgAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAAYAAAAAAASgAAAAAAGgAAAAACbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAABwAAAAAJBwAAAAAABwAAAAAASgAAAAAAYAAAAAAAGgAAAAADbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAAbwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAWAAAAAAAUwAAAAABWgAAAAABWgAAAAABWgAAAAABWgAAAAABWgAAAAADWAAAAAAAUwAAAAABWAAAAAAAcAAAAAAABwAAAAAMbwAAAAAAUwAAAAADUwAAAAABGgAAAAAAUwAAAAABWAAAAAAAWgAAAAADWgAAAAAAWgAAAAABWgAAAAACWgAAAAACWAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAbwAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: GgAAAAAAcAAAAAAAGgAAAAAAUwAAAAABcAAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAACcAAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAACcAAAAAAAWAAAAAAAGgAAAAADcAAAAAAAGgAAAAACUwAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAGgAAAAACcAAAAAAAGgAAAAAAUwAAAAABcAAAAAAAXgAAAAADXgAAAAACcAAAAAAAWAAAAAAAWAAAAAAAUwAAAAAAWAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAWAAAAAAAGgAAAAAAcAAAAAAAGgAAAAACUwAAAAABcAAAAAAAXgAAAAADXgAAAAACcAAAAAAAWAAAAAAAWAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAADcAAAAAAAUwAAAAABGgAAAAACcAAAAAAAGgAAAAABWAAAAAAAGgAAAAADXgAAAAACXgAAAAADGgAAAAACWAAAAAAAWAAAAAAAWgAAAAAAWgAAAAABUwAAAAADUwAAAAACGgAAAAAAUwAAAAACGgAAAAABcAAAAAAAGgAAAAAAUwAAAAACGgAAAAAAXgAAAAABXgAAAAACGgAAAAABUwAAAAACUwAAAAAAWgAAAAABWgAAAAACWAAAAAAAUwAAAAADGgAAAAAAUwAAAAACGgAAAAADcAAAAAAAGgAAAAACUwAAAAAAcAAAAAAAXgAAAAADXgAAAAAAcAAAAAAAUwAAAAABUwAAAAADWgAAAAACWgAAAAABUwAAAAABUwAAAAADcAAAAAAAUwAAAAAAGgAAAAADGgAAAAABGgAAAAACUwAAAAACcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAUwAAAAACUwAAAAABWgAAAAABWgAAAAACUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXgAAAAADXgAAAAAAcAAAAAAAUwAAAAADUwAAAAADWgAAAAACWgAAAAACUwAAAAABUwAAAAABcAAAAAAATwAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAGgAAAAADXgAAAAADXgAAAAACGgAAAAADUwAAAAACUwAAAAAAWgAAAAACWgAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAACGgAAAAAAXgAAAAACXgAAAAAAGgAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAABcAAAAAAATwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAAAYAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADGgAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAAA + tiles: GgAAAAACcAAAAAAAGgAAAAABUwAAAAACcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAACcAAAAAAAWAAAAAAAGgAAAAABcAAAAAAAGgAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAGgAAAAABcAAAAAAAGgAAAAADUwAAAAABcAAAAAAAXgAAAAABXgAAAAADcAAAAAAAWAAAAAAAWAAAAAAAUwAAAAABWAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAWAAAAAAAGgAAAAAAcAAAAAAAGgAAAAABUwAAAAACcAAAAAAAXgAAAAADXgAAAAACcAAAAAAAWAAAAAAAWAAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAcAAAAAAAUwAAAAADGgAAAAADcAAAAAAAGgAAAAACWAAAAAAAGgAAAAAAXgAAAAABXgAAAAACGgAAAAACWAAAAAAAWAAAAAAAWgAAAAAAWgAAAAADUwAAAAABUwAAAAAAGgAAAAACUwAAAAADGgAAAAACcAAAAAAAGgAAAAAAUwAAAAAAGgAAAAABXgAAAAABXgAAAAADGgAAAAAAUwAAAAADUwAAAAABWgAAAAACWgAAAAABWAAAAAAAUwAAAAADGgAAAAADUwAAAAACGgAAAAACcAAAAAAAGgAAAAADUwAAAAABcAAAAAAAXgAAAAAAXgAAAAABcAAAAAAAUwAAAAADUwAAAAACWgAAAAABWgAAAAACUwAAAAADUwAAAAAAcAAAAAAAUwAAAAABGgAAAAADGgAAAAACGgAAAAACUwAAAAADcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAUwAAAAAAUwAAAAACWgAAAAABWgAAAAACUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXgAAAAABXgAAAAABcAAAAAAAUwAAAAABUwAAAAACWgAAAAACWgAAAAACUwAAAAACUwAAAAAAcAAAAAAATwAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAGgAAAAAAXgAAAAACXgAAAAADGgAAAAADUwAAAAACUwAAAAABWgAAAAAAWgAAAAADUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAABGgAAAAADXgAAAAABXgAAAAACGgAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACcAAAAAAATwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAXwAAAAAAWAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAABYAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAGgAAAAACUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAYQAAAAABYQAAAAABXwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAXwAAAAAAcAAAAAAAUwAAAAABWAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAABUwAAAAAAUwAAAAACYAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADWAAAAAAAUwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAPQAAAAAAUwAAAAADXwAAAAAAYAAAAAAAXwAAAAAAYAAAAAAAGgAAAAACYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAPQAAAAAAUwAAAAADXwAAAAAAYAAAAAAAXwAAAAAAYAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABXwAAAAAAUwAAAAADXwAAAAAAUwAAAAABcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAACWAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAADcAAAAAAAUwAAAAABGgAAAAADGgAAAAABGgAAAAAAUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAADGgAAAAADUwAAAAAAGgAAAAADcAAAAAAAGgAAAAABUwAAAAACcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACGgAAAAAAUwAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADXwAAAAAAXwAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAYQAAAAACYQAAAAAAXwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAXwAAAAAAcAAAAAAAUwAAAAADWAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAAAUwAAAAACUwAAAAAAYAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACWAAAAAAAUwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAPQAAAAAAUwAAAAABXwAAAAAAYAAAAAAAXwAAAAAAYAAAAAAAGgAAAAADYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAPQAAAAAAUwAAAAAAXwAAAAAAYAAAAAAAXwAAAAAAYAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADXwAAAAAAUwAAAAABXwAAAAAAUwAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAABcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAABWAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAABcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAADcAAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAADGgAAAAABGgAAAAADGgAAAAACUwAAAAABcAAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAABcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAABGgAAAAAAUwAAAAACGgAAAAACcAAAAAAAGgAAAAACUwAAAAADcAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAACcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAGgAAAAADUwAAAAAA version: 6 2,-6: ind: 2,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAGgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAGgAAAAABcAAAAAAAUwAAAAAAGgAAAAABGgAAAAADGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAABWwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAALAAAAAAALAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAALAAAAAAALAAAAAAAUwAAAAAALAAAAAAALAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAALAAAAAAALAAAAAAAUwAAAAACLAAAAAAALAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAALAAAAAAALAAAAAAAUwAAAAAALAAAAAAALAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAALAAAAAAALAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAGgAAAAAAGgAAAAABGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAADGgAAAAAAWwAAAAADcAAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAUwAAAAADcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADcAAAAAAAGgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACGgAAAAADcAAAAAAAUwAAAAABGgAAAAABGgAAAAACGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAACGgAAAAADWwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAALAAAAAAALAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAALAAAAAAALAAAAAAAUwAAAAADLAAAAAAALAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAALAAAAAAALAAAAAAAUwAAAAAALAAAAAAALAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAALAAAAAAALAAAAAAAUwAAAAADLAAAAAAALAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAALAAAAAAALAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAGgAAAAABGgAAAAADGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAADGgAAAAABWwAAAAACcAAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAB version: 6 3,-6: ind: 3,-6 - tiles: GgAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAADWAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAADWAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAACWwAAAAAAGgAAAAADGgAAAAACGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAADWAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAADUwAAAAACcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAUwAAAAADcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAACUwAAAAADcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAADWwAAAAADGgAAAAADGgAAAAADGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAABUwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: GgAAAAACcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAABWAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAABWwAAAAABGgAAAAACGgAAAAABGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAADUwAAAAADcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAADUwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAADUwAAAAACcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAADWwAAAAAAGgAAAAADGgAAAAABGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAABWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAACUwAAAAACcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-5: ind: 3,-5 - tiles: WwAAAAAAUwAAAAADcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAUwAAAAACcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAADUwAAAAACcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGgAAAAACcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAADUwAAAAADcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAABWAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAWwAAAAACUwAAAAACWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAWwAAAAADWAAAAAAAUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAYQAAAAADXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAABYAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAXwAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAADcAAAAAAAcAAAAAAAYQAAAAACYAAAAAAAYQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: WwAAAAABUwAAAAACcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAACUwAAAAABcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAABUwAAAAABcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGgAAAAABcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAADUwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAADWAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAWwAAAAACUwAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAWwAAAAAAWAAAAAAAUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAYQAAAAADXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAAAYAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAXwAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAACcAAAAAAAcAAAAAAAYQAAAAADYAAAAAAAYQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 4,-5: ind: 4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAACCQAAAAAHBwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAADBwAAAAADBwAAAAADBwAAAAADBwAAAAADBwAAAAADBwAAAAADBwAAAAADBwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACCQAAAAADBwAAAAAABwAAAAABBwAAAAACBwAAAAADBwAAAAADBwAAAAABBwAAAAADBwAAAAADBwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAADBwAAAAACBwAAAAADBwAAAAABBwAAAAADBwAAAAACBwAAAAACBwAAAAACBwAAAAADBwAAAAADBwAAAAACAAAAAAAAAAAAAAAAcAAAAAAABwAAAAAABwAAAAAAcAAAAAAAGgAAAAADcAAAAAAABwAAAAADBwAAAAADBwAAAAABBwAAAAADBwAAAAADBwAAAAADBwAAAAACBwAAAAABBwAAAAADAAAAAAAAcAAAAAAAcAAAAAAABwAAAAACcAAAAAAAGgAAAAAAcAAAAAAABwAAAAADBwAAAAACCQAAAAAFBwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAADBwAAAAACYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAADBwAAAAAABwAAAAADBwAAAAADBwAAAAADcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAABwAAAAACBwAAAAACBwAAAAADCQAAAAAFBwAAAAADBwAAAAACBwAAAAACBwAAAAABcAAAAAAAcAAAAAAAYQAAAAABYQAAAAADXwAAAAAAYQAAAAADWAAAAAAAcAAAAAAABwAAAAADBwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAAEBwAAAAADXwAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAXwAAAAAAYAAAAAAAYQAAAAADcAAAAAAABwAAAAADBwAAAAABBwAAAAADBwAAAAACBwAAAAADCQAAAAAEBwAAAAADBwAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAcAAAAAAABwAAAAAABwAAAAAAcAAAAAAAGgAAAAACcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAABwAAAAAAcAAAAAAAGgAAAAADcAAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAALYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAABwAAAAAABwAAAAAGBwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAYQAAAAACYQAAAAACXwAAAAAAYQAAAAADWAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAADBwAAAAAABwAAAAAAXwAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAXwAAAAAAYAAAAAAAYQAAAAADcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAD version: 6 -3,-3: ind: -3,-3 - tiles: cAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAACwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABWAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAACGgAAAAADUwAAAAABGgAAAAACGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAACGgAAAAADcAAAAAAAUwAAAAACUwAAAAABGgAAAAACUwAAAAAAGgAAAAACGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAUwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAADcAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACYAAAAAAAUwAAAAADcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAACWAAAAAAAUwAAAAABcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAAAAAAAAAGgAAAAACUwAAAAAAYAAAAAAAUwAAAAACcAAAAAAAUwAAAAADUwAAAAADWAAAAAAAWAAAAAAAUwAAAAADUwAAAAACGgAAAAADWAAAAAAAUwAAAAABcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACWAAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAADGgAAAAABUwAAAAACUwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAC + tiles: cAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAACwAAAAAAUwAAAAADUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABWAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAADGgAAAAACUwAAAAAAGgAAAAAAGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAACGgAAAAABcAAAAAAAUwAAAAACUwAAAAADGgAAAAADUwAAAAABGgAAAAAAGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAUwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAADcAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABYAAAAAAAUwAAAAADcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAbwAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAABWAAAAAAAUwAAAAAAcAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAAAAAAAAAGgAAAAABUwAAAAABYAAAAAAAUwAAAAABcAAAAAAAUwAAAAADUwAAAAADWAAAAAAAWAAAAAAAUwAAAAABUwAAAAAAGgAAAAAAWAAAAAAAUwAAAAADcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABWAAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAACGgAAAAADUwAAAAABUwAAAAACcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAABcAAAAAAAUwAAAAADUwAAAAAD version: 6 -3,-4: ind: -3,-4 - tiles: cAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABCwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACWAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAWAAAAAAAUwAAAAADUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAACwAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACWAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABcAAAAAAA + tiles: cAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABCwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABWAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAACWAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAWAAAAAAAUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAACwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADWAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABcAAAAAAA version: 6 -4,-3: ind: -4,-3 - tiles: AAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYQAAAAACXwAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADWAAAAAAAUwAAAAADbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAAAUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAYAAAAAAAXwAAAAAAYAAAAAAAXwAAAAAAYAAAAAAAGgAAAAADUwAAAAADWAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAXwAAAAAAGgAAAAABUwAAAAADWAAAAAAAcAAAAAAAXwAAAAAAYAAAAAAAXwAAAAAAYAAAAAAAXwAAAAAAGgAAAAABUwAAAAACUwAAAAABWAAAAAAAUwAAAAADGgAAAAAAUwAAAAAAGgAAAAACUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAWAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYQAAAAAAXwAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAWAAAAAAAUwAAAAADbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAACUwAAAAACUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAYAAAAAAAXwAAAAAAYAAAAAAAXwAAAAAAYAAAAAAAGgAAAAADUwAAAAADWAAAAAAAUwAAAAABUwAAAAAAUwAAAAABXwAAAAAAGgAAAAABUwAAAAACWAAAAAAAcAAAAAAAXwAAAAAAYAAAAAAAXwAAAAAAYAAAAAAAXwAAAAAAGgAAAAACUwAAAAAAUwAAAAACWAAAAAAAUwAAAAADGgAAAAACUwAAAAAAGgAAAAACUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAWAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 -4,-4: ind: -4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAUwAAAAADGgAAAAACGgAAAAABGgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAGgAAAAABGgAAAAACGgAAAAADXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAWAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAUwAAAAABGgAAAAAAGgAAAAACGgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAGgAAAAAAGgAAAAACGgAAAAACXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAWAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 -3,0: ind: -3,0 - tiles: UwAAAAACUwAAAAACUwAAAAACGgAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAWAAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAGgAAAAACUwAAAAADUwAAAAACUwAAAAACWAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAACGgAAAAACGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAACYAAAAAAAcAAAAAAALAAAAAAALAAAAAAALAAAAAAAXgAAAAABXgAAAAADLAAAAAAALAAAAAAALAAAAAAAcAAAAAAALAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABXwAAAAAAcAAAAAAALAAAAAAALAAAAAAALAAAAAAAXgAAAAADXgAAAAACLAAAAAAALAAAAAAALAAAAAAAcAAAAAAALAAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAABXwAAAAAAcAAAAAAALAAAAAAALAAAAAAALAAAAAAAXgAAAAAAXgAAAAADLAAAAAAALAAAAAAALAAAAAAAcAAAAAAALAAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAADYAAAAAAAcAAAAAAALAAAAAAALAAAAAAALAAAAAAAXgAAAAAAXgAAAAADLAAAAAAALAAAAAAALAAAAAAAcAAAAAAALAAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAABHwAAAAACHwAAAAADcAAAAAAAGgAAAAABGgAAAAAAcAAAAAAAGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAbQAAAAADcAAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAABHwAAAAAAcAAAAAAAHgAAAAACHgAAAAACUwAAAAABUwAAAAADUwAAAAADcAAAAAAAbQAAAAACbQAAAAAAcAAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAADcAAAAAAAHgAAAAAAHwAAAAABUwAAAAADWAAAAAAAUwAAAAACGgAAAAACbQAAAAACbQAAAAACcAAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAADHwAAAAADcAAAAAAAHgAAAAABcAAAAAAAUwAAAAADUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAWwAAAAADcAAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAADGgAAAAACGgAAAAAAcAAAAAAAUwAAAAACUwAAAAACWAAAAAAAUwAAAAADYAAAAAAAWwAAAAADcAAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAADGgAAAAAAGgAAAAAAGgAAAAADUwAAAAACWAAAAAAAWAAAAAAAUwAAAAACcAAAAAAAWwAAAAADcAAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAACHwAAAAABHwAAAAADGgAAAAADGgAAAAAAcAAAAAAA + tiles: UwAAAAACUwAAAAADUwAAAAADGgAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAAAWAAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAABGgAAAAAAUwAAAAABUwAAAAABUwAAAAACWAAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABGgAAAAAAGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAYAAAAAAAcAAAAAAALAAAAAAALAAAAAAALAAAAAAAXgAAAAACXgAAAAABLAAAAAAALAAAAAAALAAAAAAAcAAAAAAALAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAAAXwAAAAAAcAAAAAAALAAAAAAALAAAAAAALAAAAAAAXgAAAAADXgAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAALAAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAADXwAAAAAAcAAAAAAALAAAAAAALAAAAAAALAAAAAAAXgAAAAACXgAAAAACLAAAAAAALAAAAAAALAAAAAAAcAAAAAAALAAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAACYAAAAAAAcAAAAAAALAAAAAAALAAAAAAALAAAAAAAXgAAAAAAXgAAAAABLAAAAAAALAAAAAAALAAAAAAAcAAAAAAALAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAACcAAAAAAAbQAAAAAAcAAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAACcAAAAAAAGgAAAAAAGgAAAAABcAAAAAAAGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAbQAAAAACcAAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAACcAAAAAAAHgAAAAAAHgAAAAADUwAAAAACUwAAAAADUwAAAAADcAAAAAAAbQAAAAADbQAAAAABcAAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAACHwAAAAAAHwAAAAADcAAAAAAAHgAAAAAAHwAAAAAAUwAAAAADWAAAAAAAUwAAAAADGgAAAAACbQAAAAAAbQAAAAABcAAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAACHwAAAAABcAAAAAAAHgAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAADHwAAAAADHwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAWwAAAAADcAAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAAAHwAAAAABHwAAAAABGgAAAAADGgAAAAADcAAAAAAAUwAAAAABUwAAAAAAWAAAAAAAUwAAAAADYAAAAAAAWwAAAAAAcAAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAADGgAAAAACGgAAAAACGgAAAAACUwAAAAACWAAAAAAAWAAAAAAAUwAAAAADcAAAAAAAWwAAAAABcAAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAACHwAAAAABHwAAAAADGgAAAAADGgAAAAAAcAAAAAAA version: 6 -3,1: ind: -3,1 - tiles: WAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAWwAAAAABcAAAAAAAcAAAAAAAHgAAAAACHgAAAAACHgAAAAAAHgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAUwAAAAADWwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAABWwAAAAAAWwAAAAACcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAADWwAAAAACHwAAAAAAHwAAAAADGgAAAAABHwAAAAAAHwAAAAABGgAAAAABHwAAAAABHwAAAAADWwAAAAABcAAAAAAAUwAAAAACUwAAAAADUwAAAAACVgAAAAADVgAAAAABWwAAAAAAHwAAAAABHwAAAAAAGgAAAAABHwAAAAAAHwAAAAADGgAAAAACHwAAAAABHwAAAAACWwAAAAADcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAVgAAAAAAVgAAAAABWwAAAAABGgAAAAADGgAAAAABGgAAAAACGgAAAAADGgAAAAAAGgAAAAABGgAAAAAAGgAAAAAAWwAAAAABGgAAAAAAWAAAAAAAUwAAAAAAUwAAAAACVgAAAAABVgAAAAADWwAAAAADHwAAAAAAHwAAAAABGgAAAAADHwAAAAADHwAAAAADGgAAAAADHwAAAAACHwAAAAADWwAAAAAAGgAAAAAAWAAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAADWwAAAAADHwAAAAABHwAAAAABGgAAAAAAHwAAAAABHwAAAAADGgAAAAABHwAAAAADHwAAAAADWwAAAAADcAAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAACWwAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAABcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAACwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAGgAAAAABGgAAAAABcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADUwAAAAABWAAAAAAAWAAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAADcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAACGgAAAAADUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAAAWwAAAAABUwAAAAACcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVgAAAAADVgAAAAADWwAAAAABHwAAAAAAHwAAAAACHwAAAAACWwAAAAACUwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: WAAAAAAAUwAAAAADUwAAAAADUwAAAAADcAAAAAAAWwAAAAAAcAAAAAAAcAAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAUwAAAAACWwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAACWwAAAAABWwAAAAACWwAAAAADWwAAAAADcAAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAADWwAAAAADHwAAAAABHwAAAAABGgAAAAACHwAAAAAAHwAAAAAAGgAAAAACHwAAAAADHwAAAAADWwAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACVgAAAAAAVgAAAAAAWwAAAAABHwAAAAACHwAAAAAAGgAAAAAAHwAAAAABHwAAAAAAGgAAAAAAHwAAAAADHwAAAAAAWwAAAAADcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAVgAAAAADVgAAAAABWwAAAAAAGgAAAAADGgAAAAACGgAAAAACGgAAAAACGgAAAAABGgAAAAACGgAAAAADGgAAAAADWwAAAAADGgAAAAACWAAAAAAAUwAAAAABUwAAAAACVgAAAAACVgAAAAABWwAAAAABHwAAAAACHwAAAAACGgAAAAAAHwAAAAACHwAAAAADGgAAAAABHwAAAAADHwAAAAAAWwAAAAADGgAAAAAAWAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAABWwAAAAACHwAAAAADHwAAAAADGgAAAAAAHwAAAAABHwAAAAABGgAAAAABHwAAAAAAHwAAAAAAWwAAAAACcAAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAACWwAAAAABWwAAAAADWwAAAAABWwAAAAABWwAAAAABWwAAAAACWwAAAAADWwAAAAACWwAAAAABWwAAAAACcAAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAACwAAAAAAUwAAAAACUwAAAAADcAAAAAAAGgAAAAABGgAAAAABcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADUwAAAAABWAAAAAAAWAAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAABcAAAAAAAUwAAAAACUwAAAAABUwAAAAACcAAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAABGgAAAAACUwAAAAACUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAWwAAAAADWwAAAAAAWwAAAAACWwAAAAAAWwAAAAACUwAAAAADcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVgAAAAACVgAAAAABWwAAAAADHwAAAAABHwAAAAABHwAAAAABWwAAAAABUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 -4,-1: ind: -4,-1 - tiles: AAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAAAcAAAAAAAYQAAAAABYQAAAAADUwAAAAADbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAcAAAAAAAYQAAAAADYQAAAAACUwAAAAACAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAACcAAAAAAAYQAAAAADYQAAAAACUwAAAAABAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADWAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAWAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABWAAAAAAAUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAUwAAAAACAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABGgAAAAACUwAAAAABUwAAAAABcAAAAAAAUwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABWAAAAAAAUwAAAAACUwAAAAADUwAAAAACGgAAAAADXQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAGgAAAAADXQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAACGgAAAAACGgAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: AAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAACcAAAAAAAYQAAAAADYQAAAAABUwAAAAADbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAYQAAAAAAYQAAAAADUwAAAAADAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAABcAAAAAAAYQAAAAAAYQAAAAADUwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABWAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAACcAAAAAAAWAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABWAAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAUwAAAAACAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAADGgAAAAACUwAAAAAAUwAAAAACcAAAAAAAUwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABWAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAGgAAAAADXQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAGgAAAAAAXQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAADGgAAAAACGgAAAAADXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAYQAAAAADWAAAAAAAcAAAAAAAGgAAAAABUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAADcAAAAAAAUwAAAAABWAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADWAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAACwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAACwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABWAAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAABcAAAAAAAUwAAAAABWAAAAAAAcAAAAAAAYAAAAAAAGgAAAAACWAAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAWAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAGgAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAAAWAAAAAAAUwAAAAAACwAAAAAAWAAAAAAAUwAAAAADGgAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAABGgAAAAADcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAYAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAADWAAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAABAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABWAAAAAAAUwAAAAAAUwAAAAACUwAAAAADcAAAAAAAUwAAAAABAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAGgAAAAAAGgAAAAABGgAAAAADUwAAAAADWAAAAAAAUwAAAAABUwAAAAACUwAAAAACWAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAABGgAAAAADUwAAAAACAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADWAAAAAAAUwAAAAAAUwAAAAADUwAAAAACGgAAAAACUwAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAYQAAAAAAWAAAAAAAcAAAAAAAGgAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAUwAAAAAAWAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACWAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAACwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAACwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABWAAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAACcAAAAAAAYAAAAAAAGgAAAAAAWAAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAABWAAAAAAAUwAAAAABUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAGgAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAABWAAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAACGgAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAACcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABWAAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAADAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACWAAAAAAAUwAAAAACUwAAAAADUwAAAAACcAAAAAAAUwAAAAADAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAGgAAAAACGgAAAAAAGgAAAAAAUwAAAAADWAAAAAAAUwAAAAADUwAAAAACUwAAAAADWAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAABGgAAAAADUwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAWAAAAAAAUwAAAAADUwAAAAACUwAAAAABGgAAAAACUwAAAAAB version: 6 -5,-1: ind: -5,-1 @@ -378,67 +378,67 @@ entities: version: 6 -5,-2: ind: -5,-2 - tiles: bwAAAAAAbwAAAAAAGgAAAAACGgAAAAACGgAAAAABYAAAAAAAUwAAAAAAYAAAAAAAUwAAAAAAYAAAAAAAGgAAAAADGgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAGgAAAAACbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAAAYAAAAAAAUwAAAAADYAAAAAAAcAAAAAAAGgAAAAABXwAAAAAAGgAAAAADXwAAAAAAGgAAAAADbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAUwAAAAAAYAAAAAAAUwAAAAABYAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAWAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAWAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAGgAAAAAAGgAAAAABGgAAAAADWAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAWAAAAAAAGgAAAAABcAAAAAAAGgAAAAADWAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAACcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAABGgAAAAABWAAAAAAAGgAAAAAAGgAAAAABGgAAAAADWAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAADGgAAAAACWAAAAAAAGgAAAAABGgAAAAAAGgAAAAABWAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAA + tiles: bwAAAAAAbwAAAAAAGgAAAAACGgAAAAABGgAAAAADYAAAAAAAUwAAAAABYAAAAAAAUwAAAAAAYAAAAAAAGgAAAAABGgAAAAABXwAAAAAAXwAAAAAAXwAAAAAAGgAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAADYAAAAAAAUwAAAAACYAAAAAAAcAAAAAAAGgAAAAAAXwAAAAAAGgAAAAADXwAAAAAAGgAAAAACbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAUwAAAAACYAAAAAAAUwAAAAACYAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAWAAAAAAAGgAAAAACGgAAAAABGgAAAAADWAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAGgAAAAAAGgAAAAADGgAAAAADWAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAADcAAAAAAAWAAAAAAAGgAAAAABcAAAAAAAGgAAAAABWAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAGgAAAAACWAAAAAAAGgAAAAADGgAAAAABGgAAAAADWAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAADGgAAAAACWAAAAAAAGgAAAAACGgAAAAACGgAAAAABWAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,-3: ind: -5,-3 - tiles: bwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADYAAAAAAAUwAAAAABcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAYAAAAAAAXwAAAAAAYAAAAAAAcAAAAAAAYQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABbwAAAAAAcAAAAAAAUwAAAAABYAAAAAAAUwAAAAADcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACYAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAABYAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAWAAAAAAAUwAAAAAAGgAAAAACbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADYAAAAAAAGgAAAAADYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAUwAAAAADcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAABcAAAAAAAGgAAAAABGgAAAAADGgAAAAAAGgAAAAABGgAAAAAC + tiles: bwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAYAAAAAAAUwAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAYAAAAAAAXwAAAAAAYAAAAAAAcAAAAAAAYQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABbwAAAAAAcAAAAAAAUwAAAAACYAAAAAAAUwAAAAABcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAABYAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADYAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAWAAAAAAAUwAAAAACGgAAAAADbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADYAAAAAAAGgAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAUwAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAACcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAACGgAAAAABGgAAAAAB version: 6 -4,-5: ind: -4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAABGgAAAAABUwAAAAADUwAAAAAAUwAAAAABCwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAACwAAAAAAUwAAAAADUwAAAAACWAAAAAAAUwAAAAABcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYQAAAAACcAAAAAAAUwAAAAAAWAAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAACwAAAAAAUwAAAAABUwAAAAACCwAAAAAACwAAAAAAYAAAAAAAYAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAUwAAAAABUwAAAAACcAAAAAAAUwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACWAAAAAAAUwAAAAAAUwAAAAABWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADYQAAAAACWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAABGgAAAAACUwAAAAADUwAAAAADUwAAAAADWAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAACwAAAAAACwAAAAAAUwAAAAABUwAAAAACcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAJQAAAAABJQAAAAAAJQAAAAABJQAAAAABJQAAAAADcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAJQAAAAADJQAAAAAAJQAAAAADJQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAJQAAAAACJQAAAAABJQAAAAACJQAAAAACcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADGgAAAAAAGgAAAAAAUwAAAAABUwAAAAADUwAAAAAACwAAAAAAUwAAAAABUwAAAAABcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAACwAAAAAAUwAAAAADUwAAAAABWAAAAAAAUwAAAAABcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYQAAAAAAcAAAAAAAUwAAAAABWAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAACwAAAAAAUwAAAAAAUwAAAAABCwAAAAAACwAAAAAAYAAAAAAAYAAAAAAAUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAUwAAAAACWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADWAAAAAAAUwAAAAAAUwAAAAABWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACYQAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAACWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAACGgAAAAABUwAAAAABUwAAAAADUwAAAAADWAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAACwAAAAAACwAAAAAAUwAAAAACUwAAAAABcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAJQAAAAACJQAAAAADJQAAAAAAJQAAAAACJQAAAAACcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAJQAAAAADJQAAAAADJQAAAAACJQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAJQAAAAABJQAAAAACJQAAAAADJQAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAA version: 6 -4,-6: ind: -4,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAATgAAAAAAGgAAAAAAGgAAAAADTgAAAAAATgAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAATgAAAAAAGgAAAAAAGgAAAAACGgAAAAAAGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAATgAAAAAAGgAAAAADGgAAAAABTgAAAAAATgAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAACwAAAAAAcAAAAAAACwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADGgAAAAADGgAAAAAAcAAAAAAACwAAAAAAUwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAUwAAAAADUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAATgAAAAAAGgAAAAADGgAAAAADTgAAAAAATgAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAATgAAAAAAGgAAAAAAGgAAAAABGgAAAAADGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAATgAAAAAAGgAAAAAAGgAAAAADTgAAAAAATgAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAACwAAAAAAcAAAAAAACwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAABGgAAAAABcAAAAAAACwAAAAAAUwAAAAADWAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAA version: 6 -3,-6: ind: -3,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAYQAAAAAAcAAAAAAAYQAAAAACcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAYQAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAYQAAAAADWAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAXwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAUwAAAAACCwAAAAAAUwAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAACwAAAAAAUwAAAAAAWAAAAAAAUwAAAAADUwAAAAABCwAAAAAAUwAAAAACWAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAACwAAAAAAUwAAAAABUwAAAAADcAAAAAAAWAAAAAAAUwAAAAACUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAACwAAAAAAUwAAAAACUwAAAAAAUwAAAAACYQAAAAABCwAAAAAAUwAAAAAAUwAAAAACWAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAUwAAAAADCwAAAAAAcAAAAAAAUwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAWAAAAAAAUwAAAAABUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAYQAAAAACcAAAAAAAYQAAAAACcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAYQAAAAACXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAYQAAAAADWAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAXwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAUwAAAAABCwAAAAAAUwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAACwAAAAAAUwAAAAADWAAAAAAAUwAAAAAAUwAAAAADCwAAAAAAUwAAAAADWAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAACwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAWAAAAAAAUwAAAAADUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAACwAAAAAAUwAAAAADUwAAAAABUwAAAAACYQAAAAABCwAAAAAAUwAAAAAAUwAAAAACWAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAUwAAAAAACwAAAAAAcAAAAAAAUwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAWAAAAAAAUwAAAAADUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,1: ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGgAAAAADGgAAAAABGgAAAAADGgAAAAAAUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAAAGgAAAAAAGgAAAAABGgAAAAADVgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAACVgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAACGgAAAAADGgAAAAAAGgAAAAADUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAADGgAAAAADcAAAAAAAUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAGgAAAAABGgAAAAADGgAAAAADGgAAAAADUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAGgAAAAACGgAAAAADGgAAAAAAGgAAAAABVgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAADGgAAAAAAGgAAAAABGgAAAAACUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAVgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAACGgAAAAADGgAAAAABGgAAAAABVgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGgAAAAACGgAAAAABGgAAAAAAGgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAABGgAAAAACcAAAAAAAUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAGgAAAAADGgAAAAADGgAAAAAAGgAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAGgAAAAABGgAAAAABGgAAAAADGgAAAAABVgAAAAAA version: 6 -4,0: ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAABbQAAAAABcAAAAAAAUwAAAAAAUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAABbQAAAAACcAAAAAAAUwAAAAABUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAADbQAAAAAAcAAAAAAAUwAAAAAAUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAACbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAAAbQAAAAABcAAAAAAAUwAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAAAbQAAAAABcAAAAAAAUwAAAAAAWAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAADbQAAAAABcAAAAAAAUwAAAAAAUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAADbQAAAAAAcAAAAAAAUwAAAAADUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAACbQAAAAADcAAAAAAAUwAAAAAAUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAUwAAAAACUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAADbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAABbQAAAAABcAAAAAAAUwAAAAABUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAADbQAAAAACcAAAAAAAUwAAAAABWAAAAAAA version: 6 -2,2: ind: -2,2 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYQAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAABbQAAAAABbQAAAAADcAAAAAAAUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACbQAAAAACbQAAAAACbQAAAAAAbQAAAAABGgAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAYAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAACcAAAAAAAUwAAAAACYQAAAAADYQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAYQAAAAACUwAAAAABbQAAAAABcAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAGgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAYAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAYQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAABYQAAAAADWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAABAAAAAAAAcAAAAAAAYQAAAAABYQAAAAABUwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAABbQAAAAABbQAAAAAAbQAAAAABbQAAAAADUwAAAAABUwAAAAADUwAAAAACAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAACbQAAAAABbQAAAAADUwAAAAACUwAAAAACUwAAAAADAAAAAAAAAAAAAAAAcAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAAAbQAAAAACbQAAAAADUwAAAAABUwAAAAADUwAAAAACAAAAAAAAAAAAAAAAcAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAABbQAAAAACcAAAAAAAUwAAAAADUwAAAAABUwAAAAACAAAAAAAAAAAAAAAAcAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAbQAAAAADbQAAAAAAbQAAAAADGgAAAAACUwAAAAAAUwAAAAABUwAAAAADAAAAAAAAAAAAAAAAcAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAbQAAAAABbQAAAAACbQAAAAACcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAC + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYQAAAAABXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAAAbQAAAAADbQAAAAABcAAAAAAAUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAABbQAAAAADbQAAAAAAbQAAAAADbQAAAAAAGgAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAYAAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAADbQAAAAACcAAAAAAAUwAAAAABYQAAAAACYQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAYQAAAAACUwAAAAABbQAAAAACcAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAGgAAAAADEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAYAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAYQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAACYQAAAAADWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADAAAAAAAAcAAAAAAAYQAAAAADYQAAAAADUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAADbQAAAAAAbQAAAAADbQAAAAAAbQAAAAAAUwAAAAADUwAAAAADUwAAAAADAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAAAbQAAAAADbQAAAAAAUwAAAAADUwAAAAABUwAAAAABAAAAAAAAAAAAAAAAcAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAAAbQAAAAAAbQAAAAACUwAAAAABUwAAAAADUwAAAAABAAAAAAAAAAAAAAAAcAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAADbQAAAAACcAAAAAAAUwAAAAADUwAAAAABUwAAAAACAAAAAAAAAAAAAAAAcAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAbQAAAAADbQAAAAABbQAAAAABGgAAAAABUwAAAAAAUwAAAAACUwAAAAACAAAAAAAAAAAAAAAAcAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAbQAAAAABbQAAAAABbQAAAAADcAAAAAAAUwAAAAACUwAAAAADUwAAAAAD version: 6 -2,3: ind: -2,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAbQAAAAABbQAAAAACbQAAAAADcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYQAAAAABcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAYQAAAAADcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAYQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAXwAAAAAAYQAAAAADYQAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAXwAAAAAAYAAAAAAAcAAAAAAAXwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAbQAAAAABbQAAAAADbQAAAAADcAAAAAAAGgAAAAADGgAAAAADGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYQAAAAABcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYQAAAAADcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAYQAAAAACcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAYQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAXwAAAAAAYQAAAAACYQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAXwAAAAAAYAAAAAAAcAAAAAAAXwAAAAAA version: 6 -1,3: ind: -1,3 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAJQAAAAADLAAAAAAALAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAXwAAAAAAYQAAAAADXwAAAAAAcAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAJQAAAAAALAAAAAAALAAAAAAAcAAAAAAAUwAAAAABGgAAAAAAUwAAAAAAUwAAAAADUwAAAAABcAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAJQAAAAADJQAAAAAALAAAAAAALAAAAAAAcAAAAAAAUwAAAAABGgAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAJQAAAAADLAAAAAAALAAAAAAALAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADGgAAAAAAJQAAAAACJQAAAAADJQAAAAABJQAAAAAAJQAAAAADJQAAAAACLAAAAAAALAAAAAAALAAAAAAAcAAAAAAAUwAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAJQAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAGgAAAAACAAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAcAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAJQAAAAACLAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAUwAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAJQAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAUwAAAAADAAAAAAAAcAAAAAAAUwAAAAABUwAAAAABcAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAJQAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAUwAAAAABAAAAAAAAcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABAAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAGgAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACGgAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAABXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAABUwAAAAAAGgAAAAABYAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAUwAAAAAAGgAAAAABYAAAAAAAcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAGgAAAAACUwAAAAACGgAAAAAC + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAJQAAAAACLAAAAAAALAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAXwAAAAAAYQAAAAABXwAAAAAAcAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAJQAAAAADLAAAAAAALAAAAAAAcAAAAAAAUwAAAAADGgAAAAADUwAAAAACUwAAAAAAUwAAAAABcAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAJQAAAAACJQAAAAABLAAAAAAALAAAAAAAcAAAAAAAUwAAAAACGgAAAAACUwAAAAAAUwAAAAADUwAAAAACcAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAJQAAAAADLAAAAAAALAAAAAAALAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABGgAAAAACJQAAAAACJQAAAAACJQAAAAADJQAAAAADJQAAAAABJQAAAAACLAAAAAAALAAAAAAALAAAAAAAcAAAAAAAUwAAAAABAAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAJQAAAAACLAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAGgAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAJQAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAUwAAAAABAAAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAJQAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAUwAAAAABAAAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAJQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAUwAAAAADAAAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADAAAAAAAAcAAAAAAAUwAAAAADUwAAAAADGgAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAGgAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADXwAAAAAAcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAABUwAAAAABGgAAAAACYAAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAABUwAAAAAAGgAAAAADYAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAGgAAAAADUwAAAAABGgAAAAAC version: 6 -3,2: ind: -3,2 - tiles: VgAAAAAAVgAAAAAAWwAAAAABHwAAAAACHwAAAAAAHwAAAAAAWwAAAAAAUwAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVgAAAAAAVgAAAAADWwAAAAACHwAAAAABHwAAAAACHwAAAAAAWwAAAAABUwAAAAADcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAACWwAAAAABWwAAAAAAWwAAAAABWwAAAAACWwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAWAAAAAAAbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAbQAAAAADcAAAAAAAcAAAAAAAYQAAAAACYQAAAAAAcAAAAAAAGgAAAAABGgAAAAABcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAWAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADUwAAAAAAWAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACWAAAAAAAUwAAAAADcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAABUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAABWwAAAAADWwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VgAAAAAAVgAAAAACWwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAWwAAAAAAUwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVgAAAAADVgAAAAADWwAAAAAAHwAAAAACHwAAAAAAHwAAAAACWwAAAAAAUwAAAAABcAAAAAAAUwAAAAABUwAAAAABUwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAADWwAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAWAAAAAAAbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAbQAAAAACcAAAAAAAcAAAAAAAYQAAAAABYQAAAAADcAAAAAAAGgAAAAABGgAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAWAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAUwAAAAADWAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABWAAAAAAAUwAAAAADcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAACWwAAAAAAWwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAABUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,2: ind: -4,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAGgAAAAADGgAAAAADGgAAAAADGgAAAAADVgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAGgAAAAADGgAAAAAAGgAAAAAAGgAAAAACUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAADGgAAAAAAcAAAAAAAUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAACGgAAAAACUwAAAAADUwAAAAACWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADGgAAAAACGgAAAAADWwAAAAACWwAAAAABWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAADWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAGgAAAAAAGgAAAAACGgAAAAAAGgAAAAABVgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAGgAAAAADGgAAAAAAGgAAAAABGgAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAAAGgAAAAACcAAAAAAAUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAAAGgAAAAACUwAAAAACUwAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAABGgAAAAAAWwAAAAACWwAAAAACWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAACcAAAAAAA version: 6 -3,3: ind: -3,3 - tiles: AAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAABwAAAAADBwAAAAADBwAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAADBwAAAAACBwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAADBwAAAAAABwAAAAADBwAAAAADBwAAAAADBwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAACQAAAAAHBwAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAABBwAAAAADBwAAAAABBwAAAAADBwAAAAABBwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAADBwAAAAADBwAAAAABBwAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAADBwAAAAABBwAAAAABBwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAABBwAAAAADBwAAAAACBwAAAAADBwAAAAACBwAAAAAABwAAAAADBwAAAAAABwAAAAADBwAAAAADBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAADBwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAACBwAAAAADBwAAAAAABwAAAAADBwAAAAACAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAADBwAAAAACBwAAAAACBwAAAAADBwAAAAADBwAAAAADBwAAAAAABwAAAAAHBwAAAAAABwAAAAAHBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAADCQAAAAAGBwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAABAAAAAAAAbwAAAAAAAAAAAAAABwAAAAADBwAAAAADBwAAAAADBwAAAAADBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAACBwAAAAAABwAAAAACAAAAAAAAbwAAAAAAAAAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAACBwAAAAADBwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAADBwAAAAADBwAAAAADBwAAAAADAAAAAAAAbwAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAEBwAAAAAABwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAABBwAAAAAEBwAAAAABBwAAAAAABwAAAAADBwAAAAAABwAAAAAFBwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAKCQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAEBwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAA version: 6 -4,3: ind: -4,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAABwAAAAADBwAAAAADBwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAAHBwAAAAADAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAADBwAAAAACCQAAAAAHBwAAAAACBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAADBwAAAAABAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAACAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAADBwAAAAACBwAAAAADBwAAAAAHBwAAAAADBwAAAAADBwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAAGBwAAAAADBwAAAAADBwAAAAADBwAAAAADAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAADBwAAAAADBwAAAAABBwAAAAAABwAAAAADBwAAAAACBwAAAAACBwAAAAADBwAAAAAD + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAACQAAAAAABwAAAAAGBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAC version: 6 -3,4: ind: -3,4 - tiles: BwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAADAAAAAAAAbwAAAAAAAAAAAAAABwAAAAADBwAAAAABBwAAAAADBwAAAAAGBwAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAADBwAAAAABBwAAAAACBwAAAAADBwAAAAADAAAAAAAAbwAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAADBwAAAAAABwAAAAAACQAAAAAEBwAAAAADBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAADAAAAAAAAbwAAAAAAAAAAAAAABwAAAAAABwAAAAAACQAAAAAHBwAAAAADBwAAAAACBwAAAAADBwAAAAABBwAAAAACBwAAAAAABwAAAAAACQAAAAAEBwAAAAABBwAAAAABAAAAAAAAbwAAAAAAAAAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAADAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAADBwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAADBwAAAAACBwAAAAACBwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAKAAAAAAAAbwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAMBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAFBwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAAABwAAAAAJCQAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAACCQAAAAAABwAAAAAABwAAAAADAAAAAAAAbwAAAAAAAAAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,4: ind: -4,4 - tiles: AAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAADBwAAAAADBwAAAAADBwAAAAABBwAAAAAABwAAAAADBwAAAAACBwAAAAACBwAAAAADBwAAAAACAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAABBwAAAAADBwAAAAADBwAAAAADBwAAAAADAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAADBwAAAAABBwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAADBwAAAAADBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAABBwAAAAACCQAAAAAHBwAAAAADBwAAAAADBwAAAAAGBwAAAAACBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAADBwAAAAADBwAAAAACBwAAAAADBwAAAAAABwAAAAAACQAAAAAGBwAAAAAABwAAAAADAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAABBwAAAAADBwAAAAADBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAADBwAAAAABAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAADBwAAAAABBwAAAAAABwAAAAADBwAAAAADBwAAAAADBwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAADCQAAAAAHBwAAAAADBwAAAAADAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAJBwAAAAAABwAAAAAFBwAAAAAGBwAAAAAKAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAAABwAAAAAACQAAAAAHBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAALCQAAAAAKBwAAAAADBwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAIBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-7: ind: 1,-7 @@ -446,35 +446,35 @@ entities: version: 6 3,2: ind: 3,2 - tiles: WAAAAAAAYQAAAAABWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABOwAAAAAAOwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADYQAAAAABWAAAAAAAYQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAABWAAAAAAAbQAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAXwAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAXwAAAAAAYQAAAAABYAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAWAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAYQAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAXwAAAAAAcAAAAAAAUwAAAAABWAAAAAAAWAAAAAAAWAAAAAAAXwAAAAAAcAAAAAAABwAAAAACcAAAAAAAcAAAAAAABwAAAAADAAAAAAAAcAAAAAAAUwAAAAAAXwAAAAAAXwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAUwAAAAACXwAAAAAAcAAAAAAABwAAAAADBwAAAAAHBwAAAAADBwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAABwAAAAACBwAAAAADBwAAAAABBwAAAAADUwAAAAADUwAAAAABYAAAAAAAYQAAAAADYAAAAAAAYQAAAAADYAAAAAAAYQAAAAACYAAAAAAAYQAAAAADYAAAAAAAYQAAAAACYQAAAAAAcQAAAAAABwAAAAACBwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcQAAAAAAcQAAAAAABwAAAAADUwAAAAABUwAAAAADYAAAAAAAYQAAAAABYAAAAAAAYQAAAAADYAAAAAAAYQAAAAABYAAAAAAAYQAAAAAAYAAAAAAAYQAAAAAAYQAAAAADcQAAAAAABwAAAAAACQAAAAAC + tiles: WAAAAAAAYQAAAAACWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADOwAAAAAAOwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAABYQAAAAAAWAAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAADWAAAAAAAbQAAAAADcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAXwAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAXwAAAAAAYQAAAAACYAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAWAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAYQAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADXwAAAAAAcAAAAAAAUwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAXwAAAAAAcAAAAAAABwAAAAABcAAAAAAAcAAAAAAABwAAAAAAAAAAAAAAcAAAAAAAUwAAAAACXwAAAAAAXwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAUwAAAAACXwAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAUwAAAAABUwAAAAADYAAAAAAAYQAAAAABYAAAAAAAYQAAAAAAYAAAAAAAYQAAAAAAYAAAAAAAYQAAAAABYAAAAAAAYQAAAAADYQAAAAADcQAAAAAABwAAAAABBwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcQAAAAAAcQAAAAAABwAAAAAMUwAAAAABUwAAAAADYAAAAAAAYQAAAAACYAAAAAAAYQAAAAADYAAAAAAAYQAAAAACYAAAAAAAYQAAAAABYAAAAAAAYQAAAAABYQAAAAADcQAAAAAABwAAAAAACQAAAAAA version: 6 2,3: ind: 2,3 - tiles: cAAAAAAAcAAAAAAAcAAAAAAADAAAAAADDAAAAAAADAAAAAACDAAAAAAAcAAAAAAAbQAAAAACUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAABcAAAAAAAcAAAAAAAbQAAAAABcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAbQAAAAABbQAAAAAAbQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAADAAAAAABDAAAAAAADAAAAAAADAAAAAAAcAAAAAAAbQAAAAADUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAADcAAAAAAAcAAAAAAAbQAAAAABcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAbQAAAAAAbQAAAAAAbQAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,3: ind: 3,3 - tiles: UwAAAAABcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAADUwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAUwAAAAADXwAAAAAAcAAAAAAABwAAAAADBwAAAAABBwAAAAACBwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAXwAAAAAAWAAAAAAAXwAAAAAAWAAAAAAAUwAAAAABXwAAAAAAXwAAAAAAUwAAAAACcAAAAAAABwAAAAAFBwAAAAADBwAAAAABBwAAAAADcAAAAAAAcAAAAAAAXwAAAAAAYQAAAAABWAAAAAAAYQAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADXwAAAAAAcAAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAADAAAAAAAAcAAAAAAAcAAAAAAAYQAAAAADWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAXwAAAAAAcAAAAAAABwAAAAADBwAAAAADBwAAAAADBwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADWAAAAAAAUwAAAAADXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAADBwAAAAADBwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAGgAAAAACcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAADbwAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAWAAAAAAAGgAAAAAAcAAAAAAAWAAAAAAAUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAYQAAAAABUwAAAAACGgAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAUwAAAAACUwAAAAACXwAAAAAAYQAAAAABUwAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: UwAAAAACcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAUwAAAAADcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAUwAAAAADXwAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAXwAAAAAAWAAAAAAAXwAAAAAAWAAAAAAAUwAAAAAAXwAAAAAAXwAAAAAAUwAAAAABcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAYQAAAAACWAAAAAAAYQAAAAACcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACXwAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAYQAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACXwAAAAAAcAAAAAAABwAAAAAGBwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAWAAAAAAAUwAAAAABXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAJBwAAAAAABwAAAAAJBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAGgAAAAACcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAWAAAAAAAGgAAAAACcAAAAAAAWAAAAAAAUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAYQAAAAADUwAAAAACGgAAAAADWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAUwAAAAACUwAAAAABXwAAAAAAYQAAAAACUwAAAAADWAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABYAAAAAAAYAAAAAAAYAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,4: ind: -2,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAADGgAAAAACWgAAAAABWgAAAAADWgAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAYAAAAAAAYAAAAAAAWgAAAAACYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAAAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAABGgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAADGgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAABGgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAGgAAAAADWgAAAAADWgAAAAADWgAAAAACWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAYAAAAAAAYAAAAAAAWgAAAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAACGgAAAAACcAAAAAAAAAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAABGgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAACGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADGgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADGgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,4: ind: -1,4 - tiles: cAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAUwAAAAABcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHgAAAAADHgAAAAACGgAAAAAAUwAAAAABGgAAAAABWgAAAAADGgAAAAAAUwAAAAAAUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAYAAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAACMwAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADUwAAAAABGgAAAAAAMwAAAAAAHQAAAAABDwAAAAAADwAAAAAADwAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADUwAAAAAAGgAAAAAAMwAAAAAAHQAAAAAADwAAAAAAGgAAAAACDwAAAAAAAAAAAAAAcAAAAAAAGgAAAAADGgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAABUwAAAAACGgAAAAAAMwAAAAAAHQAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADUwAAAAABUwAAAAACMwAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABAAAAAAAAcAAAAAAAGgAAAAABGgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACUwAAAAABMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAGgAAAAADcAAAAAAAGgAAAAACAAAAAAAAcAAAAAAAGgAAAAADGgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAUwAAAAACcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHgAAAAACHgAAAAAAGgAAAAADUwAAAAADGgAAAAACWgAAAAADGgAAAAAAUwAAAAACUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAYAAAAAAAcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAAAMwAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAACcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAABUwAAAAAAGgAAAAABMwAAAAAAHQAAAAACDwAAAAAADwAAAAAADwAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADUwAAAAAAGgAAAAACMwAAAAAAHQAAAAACDwAAAAAAGgAAAAACDwAAAAAAAAAAAAAAcAAAAAAAGgAAAAABGgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAUwAAAAAAGgAAAAABMwAAAAAAHQAAAAACDwAAAAAADwAAAAAADwAAAAAAAAAAAAAAcAAAAAAAGgAAAAADGgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAUwAAAAACUwAAAAABMwAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAADAAAAAAAAcAAAAAAAGgAAAAADGgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACUwAAAAACMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADGgAAAAABcAAAAAAAGgAAAAADAAAAAAAAcAAAAAAAGgAAAAABGgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,3: ind: 4,3 - tiles: BwAAAAACBwAAAAADBwAAAAACBwAAAAADBwAAAAADBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAADBwAAAAACBwAAAAADBwAAAAACBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAACBwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAADCQAAAAAGBwAAAAAEBwAAAAADBwAAAAACBwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAGBwAAAAABBwAAAAADBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAADBwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,2: ind: 4,2 - tiles: cAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAACcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAACGgAAAAABGgAAAAADUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAGgAAAAACGgAAAAABGgAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAADcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAABBwAAAAADBwAAAAADBwAAAAADBwAAAAADBwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAACBwAAAAADBwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAACBwAAAAADBwAAAAABBwAAAAAHBwAAAAAABwAAAAABBwAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAABwAAAAAABwAAAAADBwAAAAAHBwAAAAADBwAAAAADBwAAAAADBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAACcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAABGgAAAAADGgAAAAADUwAAAAACUwAAAAABUwAAAAADUwAAAAACUwAAAAAAGgAAAAAAGgAAAAADGgAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAACcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAAJBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAABwAAAAAKBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,4: ind: 0,4 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAAMwAAAAAAGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADMwAAAAAAGgAAAAAAGgAAAAAAGgAAAAABcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAMwAAAAAAGgAAAAABUwAAAAACGgAAAAABcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACMwAAAAAAGgAAAAAAUwAAAAADGgAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADMwAAAAAAGgAAAAADUwAAAAABGgAAAAACcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAMwAAAAAAUwAAAAACUwAAAAADGgAAAAABcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAAMwAAAAAAUwAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAAMwAAAAAAGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAMwAAAAAAGgAAAAADGgAAAAAAGgAAAAADcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACMwAAAAAAGgAAAAADUwAAAAACGgAAAAABcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAMwAAAAAAGgAAAAABUwAAAAADGgAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABMwAAAAAAGgAAAAADUwAAAAACGgAAAAACcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADMwAAAAAAUwAAAAABUwAAAAAAGgAAAAADcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAAMwAAAAAAUwAAAAADGgAAAAABcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,2: ind: 5,2 @@ -486,15 +486,15 @@ entities: version: 6 -1,-7: ind: -1,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAGgAAAAACUwAAAAACUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAADcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABWAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAABWAAAAAAAWAAAAAAAUwAAAAABUwAAAAACUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAABcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACGgAAAAACUwAAAAABUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAACWAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAADWAAAAAAAWAAAAAAAUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAABcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA version: 6 -2,-7: ind: -2,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAWAAAAAAAUwAAAAACWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAGgAAAAADWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAUwAAAAADWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAUwAAAAADWAAAAAAAWAAAAAAAWAAAAAAAYQAAAAADWAAAAAAAUwAAAAADWAAAAAAAXwAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAWAAAAAAAUwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAABWAAAAAAAWAAAAAAAWAAAAAAAGgAAAAADWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAUwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAADcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAUwAAAAADWAAAAAAAWAAAAAAAWAAAAAAAYQAAAAABWAAAAAAAUwAAAAABWAAAAAAAXwAAAAAAcAAAAAAA version: 6 -3,-7: ind: -3,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABYQAAAAADXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAYQAAAAADXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAA version: 6 -5,-4: ind: -5,-4 @@ -502,11 +502,11 @@ entities: version: 6 5,-4: ind: 5,-4 - tiles: BwAAAAADBwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAHBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,-5: ind: 5,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -6,-4: ind: -6,-4 @@ -540,23 +540,23 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 3744: 6,-71 - 3745: -14,-16 - 4017: -69,-45 - 4030: 1,-2 + 3740: 6,-71 + 3741: -14,-16 + 4013: -69,-45 + 4026: 1,-2 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Arrows decals: - 4062: -71,-45 + 4058: -71,-45 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: Arrows decals: - 3210: 67,-46 - 3211: 67,-47 + 3206: 67,-46 + 3207: 67,-47 - node: color: '#FFFFFFFF' id: Bot @@ -633,71 +633,71 @@ entities: 587: -38,42 627: -36,-101 628: 67,-16 - 3098: 73,-37 - 3099: 73,-36 - 3100: 72,-36 - 3101: 73,-35 - 3168: -52,-59 - 3189: 68,-69 - 3204: 69,-46 - 3205: 69,-47 - 3206: 70,-46 - 3207: 70,-47 - 3381: -47,-41 - 3386: -12,-14 - 3581: 33,-83 - 3582: 33,-90 - 3583: 30,-95 - 3584: 48,-95 - 3585: 45,-90 - 3586: 45,-83 - 3694: -58,-19 - 3695: -18,69 - 3742: 6,-86 - 3754: -53,43 - 3755: -53,42 - 3756: -50,46 - 3795: 68,-29 - 3800: 68,-28 - 3801: 69,-29 - 3802: 67,-29 - 3803: 68,-30 - 3804: 51,-83 - 3805: 51,-90 - 3888: -77,-32 - 3893: -64,-46 - 4006: -67,-43 - 4024: -47,-40 - 4026: 1,-3 - 4027: 2,-3 - 4028: 3,-3 + 3094: 73,-37 + 3095: 73,-36 + 3096: 72,-36 + 3097: 73,-35 + 3164: -52,-59 + 3185: 68,-69 + 3200: 69,-46 + 3201: 69,-47 + 3202: 70,-46 + 3203: 70,-47 + 3377: -47,-41 + 3382: -12,-14 + 3577: 33,-83 + 3578: 33,-90 + 3579: 30,-95 + 3580: 48,-95 + 3581: 45,-90 + 3582: 45,-83 + 3690: -58,-19 + 3691: -18,69 + 3738: 6,-86 + 3750: -53,43 + 3751: -53,42 + 3752: -50,46 + 3791: 68,-29 + 3796: 68,-28 + 3797: 69,-29 + 3798: 67,-29 + 3799: 68,-30 + 3800: 51,-83 + 3801: 51,-90 + 3884: -77,-32 + 3889: -64,-46 + 4002: -67,-43 + 4020: -47,-40 + 4022: 1,-3 + 4023: 2,-3 + 4024: 3,-3 - node: color: '#60A5D9D6' id: BotGreyscale decals: - 3479: -25,-60 + 3475: -25,-60 - node: color: '#FFFFFFFF' id: BotLeft decals: 225: -19,3 226: -21,1 - 3096: 72,-37 - 3796: 67,-28 - 3797: 69,-30 - 3798: 67,-30 - 3799: 69,-28 - 4015: -69,-45 - 4060: -71,-45 + 3092: 72,-37 + 3792: 67,-28 + 3793: 69,-30 + 3794: 67,-30 + 3795: 69,-28 + 4011: -69,-45 + 4056: -71,-45 - node: color: '#FFFFFFFF' id: BotRight decals: 223: -21,3 224: -19,1 - 3097: 72,-35 - 4016: -69,-45 - 4061: -71,-45 + 3093: 72,-35 + 4012: -69,-45 + 4057: -71,-45 - node: color: '#FFFFFFFF' id: Box @@ -707,247 +707,253 @@ entities: 220: -21,2 221: -19,2 222: -20,1 - 3743: 7,-83 + 3739: 7,-83 + - node: + color: '#FFFFFFFF' + id: BoxGreyscale + decals: + 4083: 10,23 + 4084: 11,23 - node: color: '#D4D4D4D6' id: BrickTileSteelCornerNe decals: - 3407: 30,4 + 3403: 30,4 - node: color: '#D4D4D4D6' id: BrickTileSteelCornerNw decals: - 3406: 28,4 + 3402: 28,4 - node: color: '#D4D4D4D6' id: BrickTileSteelCornerSe decals: - 3405: 30,-1 + 3401: 30,-1 - node: color: '#D4D4D4D6' id: BrickTileSteelEndS decals: - 3402: 28,-3 + 3398: 28,-3 - node: color: '#D4D4D4D6' id: BrickTileSteelInnerNe decals: - 3439: 20,-3 + 3435: 20,-3 - node: color: '#D4D4D4D6' id: BrickTileSteelInnerNw decals: - 3441: 27,-3 + 3437: 27,-3 - node: color: '#D4D4D4D6' id: BrickTileSteelInnerSe decals: - 3413: 28,-1 - 3440: 20,4 + 3409: 28,-1 + 3436: 20,4 - node: color: '#D4D4D4D6' id: BrickTileSteelInnerSw decals: - 3438: 27,4 + 3434: 27,4 - node: color: '#D4D4D4D6' id: BrickTileSteelLineE decals: - 3403: 28,-2 - 3408: 30,3 - 3409: 30,2 - 3410: 30,1 - 3411: 30,0 - 3426: 20,3 - 3427: 20,2 - 3428: 20,1 - 3429: 20,0 - 3430: 20,-1 - 3431: 20,-2 + 3399: 28,-2 + 3404: 30,3 + 3405: 30,2 + 3406: 30,1 + 3407: 30,0 + 3422: 20,3 + 3423: 20,2 + 3424: 20,1 + 3425: 20,0 + 3426: 20,-1 + 3427: 20,-2 - node: color: '#D4D4D4D6' id: BrickTileSteelLineN decals: - 3412: 29,4 - 3432: 21,-3 - 3433: 22,-3 - 3434: 23,-3 - 3435: 24,-3 - 3436: 25,-3 - 3437: 26,-3 + 3408: 29,4 + 3428: 21,-3 + 3429: 22,-3 + 3430: 23,-3 + 3431: 24,-3 + 3432: 25,-3 + 3433: 26,-3 - node: color: '#D4D4D4D6' id: BrickTileSteelLineS decals: - 3404: 29,-1 - 3420: 26,4 - 3421: 25,4 - 3422: 24,4 - 3423: 23,4 - 3424: 22,4 - 3425: 21,4 + 3400: 29,-1 + 3416: 26,4 + 3417: 25,4 + 3418: 24,4 + 3419: 23,4 + 3420: 22,4 + 3421: 21,4 - node: color: '#D4D4D4D6' id: BrickTileSteelLineW decals: - 3396: 28,-2 - 3397: 28,3 - 3398: 28,2 - 3399: 28,1 - 3400: 28,0 - 3401: 28,-1 - 3414: 27,3 - 3415: 27,2 - 3416: 27,1 - 3417: 27,0 - 3418: 27,-1 - 3419: 27,-2 + 3392: 28,-2 + 3393: 28,3 + 3394: 28,2 + 3395: 28,1 + 3396: 28,0 + 3397: 28,-1 + 3410: 27,3 + 3411: 27,2 + 3412: 27,1 + 3413: 27,0 + 3414: 27,-1 + 3415: 27,-2 - node: color: '#334E6DC8' id: BrickTileWhiteBox decals: - 3701: 9,-21 + 3697: 9,-21 - node: color: '#3AB3DAFF' id: BrickTileWhiteBox decals: - 3509: -19,-47 + 3505: -19,-47 - node: color: '#3C44AAFF' id: BrickTileWhiteBox decals: - 3506: -19,-49 + 3502: -19,-49 - node: color: '#52B4E996' id: BrickTileWhiteBox decals: - 3697: 9,-23 + 3693: 9,-23 - node: color: '#80C71FFF' id: BrickTileWhiteBox decals: - 3508: -19,-48 + 3504: -19,-48 - node: color: '#835432FF' id: BrickTileWhiteBox decals: - 3504: -22,-47 + 3500: -22,-47 - node: color: '#9D9D97FF' id: BrickTileWhiteBox decals: - 3507: -19,-46 + 3503: -19,-46 - node: color: '#9FED5896' id: BrickTileWhiteBox decals: - 3699: 11,-23 + 3695: 11,-23 - node: color: '#A4610696' id: BrickTileWhiteBox decals: - 3700: 8,-21 + 3696: 8,-21 - node: color: '#B02E26FF' id: BrickTileWhiteBox decals: - 3505: -22,-49 + 3501: -22,-49 - node: color: '#C74EBDFF' id: BrickTileWhiteBox decals: - 3503: -22,-46 + 3499: -22,-46 - node: color: '#D381C996' id: BrickTileWhiteBox decals: - 3696: 8,-23 + 3692: 8,-23 - node: color: '#D4D4D496' id: BrickTileWhiteBox decals: - 3702: 10,-21 + 3698: 10,-21 - node: color: '#DE3A3A96' id: BrickTileWhiteBox decals: - 3698: 10,-23 + 3694: 10,-23 - node: color: '#EFB34196' id: BrickTileWhiteBox decals: - 3703: 11,-21 + 3699: 11,-21 - node: color: '#FEAC3DFF' id: BrickTileWhiteBox decals: - 3510: -22,-48 + 3506: -22,-48 - node: color: '#FFA5180C' id: BrickTileWhiteBox decals: - 3936: -42,0 - 3937: -37,0 + 3932: -42,0 + 3933: -37,0 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNe decals: - 3704: 12,-20 + 3700: 12,-20 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNw decals: - 3707: 7,-20 + 3703: 7,-20 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSe decals: - 3705: 12,-24 + 3701: 12,-24 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSw decals: - 3706: 7,-24 + 3702: 7,-24 - node: color: '#334E6DC8' id: BrickTileWhiteLineE decals: - 3712: 12,-21 - 3713: 12,-22 - 3714: 12,-23 + 3708: 12,-21 + 3709: 12,-22 + 3710: 12,-23 - node: color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 3708: 8,-20 - 3709: 9,-20 - 3710: 10,-20 - 3711: 11,-20 + 3704: 8,-20 + 3705: 9,-20 + 3706: 10,-20 + 3707: 11,-20 - node: color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 3718: 8,-24 - 3719: 9,-24 - 3720: 10,-24 - 3721: 11,-24 + 3714: 8,-24 + 3715: 9,-24 + 3716: 10,-24 + 3717: 11,-24 - node: color: '#334E6DC8' id: BrickTileWhiteLineW decals: - 3715: 7,-21 - 3716: 7,-22 - 3717: 7,-23 + 3711: 7,-21 + 3712: 7,-22 + 3713: 7,-23 - node: color: '#FFFFFFFF' id: Busha1 decals: 526: -8.396269,51.324306 527: -8.978583,51.511806 - 2982: 5.324413,-0.030564666 - 2988: 6.590038,0.46943533 - 2989: 10.590037,0.50068533 - 2990: 11.636912,0.26631033 + 2978: 5.324413,-0.030564666 + 2984: 6.590038,0.46943533 + 2985: 10.590037,0.50068533 + 2986: 11.636912,0.26631033 - node: color: '#FFFFFFFF' id: Busha2 @@ -984,29 +990,29 @@ entities: color: '#FFFFFFFF' id: Bushe4 decals: - 3088: 65.93705,-9.8447485 - 3094: -11.957823,6.4384537 - 3095: -4.0984473,3.9853287 + 3084: 65.93705,-9.8447485 + 3090: -11.957823,6.4384537 + 3091: -4.0984473,3.9853287 - node: color: '#FFFFFFFF' id: Bushf1 decals: - 3571: 13.976057,-83.06645 - 3572: 14.054182,-84.08208 - 3573: 13.866682,-85.00395 - 3574: 16.304182,-85.19145 - 3575: 16.413557,-83.76958 - 3576: 16.085432,-82.48833 - 3577: 16.444807,-83.11333 - 3578: 15.538557,-85.22248 - 3579: 14.710432,-85.15998 + 3567: 13.976057,-83.06645 + 3568: 14.054182,-84.08208 + 3569: 13.866682,-85.00395 + 3570: 16.304182,-85.19145 + 3571: 16.413557,-83.76958 + 3572: 16.085432,-82.48833 + 3573: 16.444807,-83.11333 + 3574: 15.538557,-85.22248 + 3575: 14.710432,-85.15998 - node: color: '#FFFFFFFF' id: Bushf2 decals: - 3085: 66.0308,-8.000998 - 3086: 65.93705,-8.6728735 - 3087: 66.2183,-9.5634985 + 3081: 66.0308,-8.000998 + 3082: 65.93705,-8.6728735 + 3083: 66.2183,-9.5634985 - node: color: '#FFFFFFFF' id: Bushh2 @@ -1024,8 +1030,8 @@ entities: color: '#FFFFFFFF' id: Bushi2 decals: - 2987: 5.902538,0.18818533 - 3587: 33.10084,-87.77701 + 2983: 5.902538,0.18818533 + 3583: 33.10084,-87.77701 - node: color: '#FFFFFFFF' id: Bushi3 @@ -1052,7 +1058,7 @@ entities: color: '#FFFFFFFF' id: Caution decals: - 3153: 16.006746,36.692352 + 3149: 16.006746,36.692352 - node: color: '#334E6DC8' id: CheckerNESW @@ -1099,7 +1105,7 @@ entities: color: '#DE3A3A53' id: CheckerNWSE decals: - 3180: 29,32 + 3176: 29,32 - node: color: '#DE3A3A5A' id: CheckerNWSE @@ -1133,8 +1139,8 @@ entities: color: '#FFFFFFFF' id: Delivery decals: - 4029: 4,-3 - 4059: -70,-45 + 4025: 4,-3 + 4055: -70,-45 - node: cleanable: True color: '#DE3A3A96' @@ -1146,66 +1152,66 @@ entities: color: '#0F267C34' id: DiagonalCheckerBOverlay decals: - 3982: -25,-33 - 3983: -25,-34 - 3984: -24,-34 - 3985: -24,-33 - 3986: -26,-33 - 3987: -26,-34 - 3988: -26,-32 - 3989: -25,-32 - 3990: -24,-32 - 3991: -23,-32 - 3992: -23,-33 - 3993: -23,-34 - 3994: -23,-36 - 3995: -23,-35 - 3996: -24,-35 - 3997: -24,-36 - 3998: -24,-37 - 3999: -23,-37 - 4000: -25,-37 - 4001: -26,-37 - 4002: -26,-36 - 4003: -25,-36 - 4004: -25,-35 - 4005: -26,-35 + 3978: -25,-33 + 3979: -25,-34 + 3980: -24,-34 + 3981: -24,-33 + 3982: -26,-33 + 3983: -26,-34 + 3984: -26,-32 + 3985: -25,-32 + 3986: -24,-32 + 3987: -23,-32 + 3988: -23,-33 + 3989: -23,-34 + 3990: -23,-36 + 3991: -23,-35 + 3992: -24,-35 + 3993: -24,-36 + 3994: -24,-37 + 3995: -23,-37 + 3996: -25,-37 + 3997: -26,-37 + 3998: -26,-36 + 3999: -25,-36 + 4000: -25,-35 + 4001: -26,-35 - node: color: '#923A3A93' id: DiagonalCheckerBOverlay decals: - 3808: -1,17 - 3809: -1,18 - 3810: -2,18 - 3811: -2,19 - 3812: -2,20 - 3813: -1,21 - 3814: -1,20 - 3815: -1,19 - 3816: 0,21 - 3817: 0,20 - 3818: 0,18 - 3819: 0,19 - 3820: 0,17 - 3821: 0,16 - 3822: 2,16 - 3823: 1,16 - 3824: 1,17 - 3825: 2,17 - 3826: 2,18 - 3827: 1,18 - 3828: 1,20 - 3829: 1,19 - 3830: 2,19 - 3831: 2,20 - 3832: 2,21 - 3833: 1,21 + 3804: -1,17 + 3805: -1,18 + 3806: -2,18 + 3807: -2,19 + 3808: -2,20 + 3809: -1,21 + 3810: -1,20 + 3811: -1,19 + 3812: 0,21 + 3813: 0,20 + 3814: 0,18 + 3815: 0,19 + 3816: 0,17 + 3817: 0,16 + 3818: 2,16 + 3819: 1,16 + 3820: 1,17 + 3821: 2,17 + 3822: 2,18 + 3823: 1,18 + 3824: 1,20 + 3825: 1,19 + 3826: 2,19 + 3827: 2,20 + 3828: 2,21 + 3829: 1,21 - node: color: '#983A3A93' id: DiagonalCheckerBOverlay decals: - 3834: -1,16 - 3835: -2,21 + 3830: -1,16 + 3831: -2,21 - node: cleanable: True color: '#D4D4D496' @@ -1349,8 +1355,8 @@ entities: color: '#D4D4D4D6' id: DirtLight decals: - 3442: 29,3 - 3443: 29,3 + 3438: 29,3 + 3439: 29,3 - node: color: '#FFFFFFFF' id: DirtLight @@ -1433,8 +1439,8 @@ entities: color: '#D4D4D4D6' id: DirtMedium decals: - 3444: 30,-1 - 3445: 27,-2 + 3440: 30,-1 + 3441: 27,-2 - node: color: '#FFFFFFFF' id: DirtMedium @@ -1501,18 +1507,18 @@ entities: color: '#FFFFFFFF' id: FlowersBROne decals: - 3884: -4.2428155,17.233944 - 3885: -8.086565,18.640194 + 3880: -4.2428155,17.233944 + 3881: -8.086565,18.640194 - node: color: '#FFFFFFFF' id: Flowersbr1 decals: 19: 23,-20 - 2991: 5.027538,0.48506033 - 2992: 5.996288,0.81318533 - 2993: 6.683788,0.23506033 - 3886: -8.649066,17.499569 - 3887: -5.2115655,18.499569 + 2987: 5.027538,0.48506033 + 2988: 5.996288,0.81318533 + 2989: 6.683788,0.23506033 + 3882: -8.649066,17.499569 + 3883: -5.2115655,18.499569 - node: color: '#FFFFFFFF' id: Flowersbr2 @@ -1536,40 +1542,40 @@ entities: 503: -3.1144176,47.88133 504: -5.0675426,53.662476 505: -4.1456676,53.1781 - 3089: 66.015175,-7.813498 - 3090: 66.046425,-8.6728735 - 3091: 66.140175,-10.1103735 - 3476: 31.822735,-40.888805 + 3085: 66.015175,-7.813498 + 3086: 66.046425,-8.6728735 + 3087: 66.140175,-10.1103735 + 3472: 31.822735,-40.888805 - node: color: '#FFFFFFFF' id: Flowersbr3 decals: - 2994: 5.761913,0.21943533 - 2995: 11.324412,0.73506033 - 2996: 10.449412,0.29756033 - 2997: 11.465037,0.25068533 - 3451: -40.519615,3.8355665 - 3452: -41.269615,3.0543165 - 3453: -40.25399,5.8355665 + 2990: 5.761913,0.21943533 + 2991: 11.324412,0.73506033 + 2992: 10.449412,0.29756033 + 2993: 11.465037,0.25068533 + 3447: -40.519615,3.8355665 + 3448: -41.269615,3.0543165 + 3449: -40.25399,5.8355665 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: 21: 26,-20 22: 29,-20 - 3462: -35.06649,3.0386915 - 3463: -36.59774,5.4761915 - 3464: -32.2259,5.128909 - 3465: -32.647774,3.019534 - 3466: -31.054026,2.972659 + 3458: -35.06649,3.0386915 + 3459: -36.59774,5.4761915 + 3460: -32.2259,5.128909 + 3461: -32.647774,3.019534 + 3462: -31.054026,2.972659 - node: color: '#FFFFFFFF' id: Flowerspv2 decals: - 3547: 14.548721,-83.70324 - 3548: 14.283096,-84.48449 - 3549: 15.423721,-84.906364 - 3550: 15.876846,-83.750114 + 3543: 14.548721,-83.70324 + 3544: 14.283096,-84.48449 + 3545: 15.423721,-84.906364 + 3546: 15.876846,-83.750114 - node: color: '#FFFFFFFF' id: Flowersy1 @@ -1579,12 +1585,12 @@ entities: 161: 53.97966,-9.7814665 162: 53.38591,-8.9064665 163: 53.995285,-8.468966 - 3551: 14.220596,-83.85949 - 3552: 14.220596,-85.01574 - 3553: 15.892471,-84.45324 - 3554: 15.642471,-83.32824 - 3593: 45.435932,-87.78455 - 3594: 45.123432,-85.4408 + 3547: 14.220596,-83.85949 + 3548: 14.220596,-85.01574 + 3549: 15.892471,-84.45324 + 3550: 15.642471,-83.32824 + 3589: 45.435932,-87.78455 + 3590: 45.123432,-85.4408 - node: color: '#FFFFFFFF' id: Flowersy2 @@ -1600,9 +1606,9 @@ entities: color: '#2B3F4A22' id: FullTileOverlayGreyscale decals: - 3978: -31,-4 - 3979: -29,-3 - 3980: -31,-7 + 3974: -31,-4 + 3975: -29,-3 + 3976: -31,-7 - node: color: '#D4D4D496' id: FullTileOverlayGreyscale @@ -1638,35 +1644,35 @@ entities: color: '#FFFFFFFF' id: Grassa1 decals: - 3446: -40.269615,3.5386915 - 3447: -41.50399,4.0230665 - 3467: -30.3509,4.378909 - 3468: -29.50715,3.753909 - 3469: -30.429026,5.613284 - 3470: -31.5384,5.925784 - 3471: -32.3509,5.816409 - 3472: -29.6634,5.738284 - 3473: -32.710274,3.2350059 - 3474: 30.932108,-40.326305 - 3475: 31.697735,-40.576305 - 3866: -8.570941,18.515194 - 3867: -7.4146905,18.405819 - 3868: -7.0709405,17.405819 - 3869: -7.9771905,18.515194 - 3870: -8.649066,17.233944 - 3871: -5.2115655,17.890194 - 3872: -5.6959405,17.249569 - 3873: -4.1803155,17.265194 - 3874: -5.2115655,18.671444 + 3442: -40.269615,3.5386915 + 3443: -41.50399,4.0230665 + 3463: -30.3509,4.378909 + 3464: -29.50715,3.753909 + 3465: -30.429026,5.613284 + 3466: -31.5384,5.925784 + 3467: -32.3509,5.816409 + 3468: -29.6634,5.738284 + 3469: -32.710274,3.2350059 + 3470: 30.932108,-40.326305 + 3471: 31.697735,-40.576305 + 3862: -8.570941,18.515194 + 3863: -7.4146905,18.405819 + 3864: -7.0709405,17.405819 + 3865: -7.9771905,18.515194 + 3866: -8.649066,17.233944 + 3867: -5.2115655,17.890194 + 3868: -5.6959405,17.249569 + 3869: -4.1803155,17.265194 + 3870: -5.2115655,18.671444 - node: color: '#FFFFFFFF' id: Grassa2 decals: - 3588: 32.48763,-86.22205 - 3589: 32.909504,-86.76893 - 3590: 44.967182,-87.42518 - 3591: 45.748432,-86.90955 - 3592: 44.967182,-86.36268 + 3584: 32.48763,-86.22205 + 3585: 32.909504,-86.76893 + 3586: 44.967182,-87.42518 + 3587: 45.748432,-86.90955 + 3588: 44.967182,-86.36268 - node: color: '#FFFFFFFF' id: Grassa3 @@ -1689,29 +1695,29 @@ entities: color: '#FFFFFFFF' id: Grassa4 decals: - 3454: -36.175865,3.0074415 - 3455: -35.144615,3.8199415 - 3456: -35.394615,4.5855665 - 3457: -34.94149,4.6636915 - 3458: -36.59774,5.5230665 + 3450: -36.175865,3.0074415 + 3451: -35.144615,3.8199415 + 3452: -35.394615,4.5855665 + 3453: -34.94149,4.6636915 + 3454: -36.59774,5.5230665 - node: color: '#FFFFFFFF' id: Grassb2 decals: - 3093: -11.879698,6.0478287 + 3089: -11.879698,6.0478287 - node: color: '#FFFFFFFF' id: Grassb5 decals: - 3875: -5.8053155,18.655819 - 3876: -7.0553155,18.890194 - 3877: -7.2584405,17.108944 - 3878: -7.2740655,17.937069 - 3879: -8.633441,18.968319 - 3880: -5.8834405,17.124569 - 3881: -5.9303155,19.077694 - 3882: -4.1021905,17.968319 - 3883: -4.9615655,17.671444 + 3871: -5.8053155,18.655819 + 3872: -7.0553155,18.890194 + 3873: -7.2584405,17.108944 + 3874: -7.2740655,17.937069 + 3875: -8.633441,18.968319 + 3876: -5.8834405,17.124569 + 3877: -5.9303155,19.077694 + 3878: -4.1021905,17.968319 + 3879: -4.9615655,17.671444 - node: color: '#FFFFFFFF' id: Grassc1 @@ -1735,18 +1741,18 @@ entities: 463: 5.9810176,54.171776 464: 7.4810176,55.671776 465: 9.465392,55.265526 - 3448: -41.832115,3.1480665 - 3449: -42.082115,4.5074415 - 3450: -40.425865,5.7261915 - 3459: -36.44149,5.3668165 - 3460: -36.644615,3.3824415 - 3461: -35.37899,3.1168165 + 3444: -41.832115,3.1480665 + 3445: -42.082115,4.5074415 + 3446: -40.425865,5.7261915 + 3455: -36.44149,5.3668165 + 3456: -36.644615,3.3824415 + 3457: -35.37899,3.1168165 - node: color: '#FFFFFFFF' id: Grassc4 decals: 396: -5.001564,4.018616 - 3092: -12.004698,6.9072037 + 3088: -12.004698,6.9072037 - node: color: '#FFFFFFFF' id: Grasse2 @@ -1789,14 +1795,14 @@ entities: 574: -8.928438,56.05247 575: -10.678438,55.30247 576: -10.850313,53.86497 - 3854: -8.633441,18.608944 - 3855: -8.617816,17.921444 - 3856: -7.9146905,18.593319 - 3857: -7.3209405,18.265194 - 3858: -4.5709405,18.452694 - 3859: -5.6178155,17.983944 - 3860: -5.7896905,17.421444 - 3861: -4.5084405,17.358944 + 3850: -8.633441,18.608944 + 3851: -8.617816,17.921444 + 3852: -7.9146905,18.593319 + 3853: -7.3209405,18.265194 + 3854: -4.5709405,18.452694 + 3855: -5.6178155,17.983944 + 3856: -5.7896905,17.421444 + 3857: -4.5084405,17.358944 - node: color: '#FFFFFFFF' id: Grasse3 @@ -1808,66 +1814,66 @@ entities: 470: 11.789851,52.392174 471: 12.117976,52.5328 472: 12.852351,53.9703 - 3862: -7.1178155,17.671444 - 3863: -4.1646905,18.749569 + 3858: -7.1178155,17.671444 + 3859: -4.1646905,18.749569 - node: color: '#507FECFF' id: GrayConcreteTrimCornerNe decals: - 4070: 26,3 + 4066: 26,3 - node: color: '#507FECFF' id: GrayConcreteTrimCornerNw decals: - 4071: 21,3 + 4067: 21,3 - node: color: '#507FECFF' id: GrayConcreteTrimCornerSe decals: - 4072: 26,-2 + 4068: 26,-2 - node: color: '#507FECFF' id: GrayConcreteTrimCornerSw decals: - 4065: 21,-2 + 4061: 21,-2 - node: color: '#507FECFF' id: GrayConcreteTrimLineE decals: - 4066: 26,-1 - 4067: 26,0 - 4068: 26,1 - 4069: 26,2 + 4062: 26,-1 + 4063: 26,0 + 4064: 26,1 + 4065: 26,2 - node: color: '#507FECFF' id: GrayConcreteTrimLineN decals: - 4073: 22,3 - 4074: 23,3 - 4075: 24,3 - 4076: 25,3 + 4069: 22,3 + 4070: 23,3 + 4071: 24,3 + 4072: 25,3 - node: color: '#507FECFF' id: GrayConcreteTrimLineS decals: - 4081: 22,-2 - 4082: 23,-2 - 4083: 24,-2 - 4084: 25,-2 + 4077: 22,-2 + 4078: 23,-2 + 4079: 24,-2 + 4080: 25,-2 - node: color: '#507FECFF' id: GrayConcreteTrimLineW decals: - 4077: 21,2 - 4078: 21,1 - 4079: 21,0 - 4080: 21,-1 + 4073: 21,2 + 4074: 21,1 + 4075: 21,0 + 4076: 21,-1 - node: color: '#50AF7F6F' id: HalfTileOverlayGreyscale decals: - 3806: -8,12 - 3807: -10,12 + 3802: -8,12 + 3803: -10,12 - node: color: '#D381C996' id: HalfTileOverlayGreyscale @@ -1884,7 +1890,7 @@ entities: color: '#EFB34150' id: HalfTileOverlayGreyscale decals: - 3080: -16,-5 + 3076: -16,-5 - node: color: '#EFB3415A' id: HalfTileOverlayGreyscale @@ -1895,12 +1901,12 @@ entities: color: '#EFB34160' id: HalfTileOverlayGreyscale decals: - 3055: -24,-5 - 3056: -23,-5 - 3057: -21,-5 - 3058: -20,-5 - 3059: -18,-5 - 3060: -17,-5 + 3051: -24,-5 + 3052: -23,-5 + 3053: -21,-5 + 3054: -20,-5 + 3055: -18,-5 + 3056: -17,-5 - node: color: '#FFFFFF79' id: HalfTileOverlayGreyscale @@ -1948,8 +1954,8 @@ entities: color: '#D4D4D47C' id: HalfTileOverlayGreyscale180 decals: - 3379: 5,-60 - 3380: 6,-60 + 3375: 5,-60 + 3376: 6,-60 - node: color: '#D4D4D496' id: HalfTileOverlayGreyscale180 @@ -1969,16 +1975,16 @@ entities: color: '#EFB34160' id: HalfTileOverlayGreyscale180 decals: - 3045: -22,6 - 3046: -23,6 - 3047: -20,6 + 3041: -22,6 + 3042: -23,6 + 3043: -20,6 - node: color: '#EFB34163' id: HalfTileOverlayGreyscale180 decals: - 3002: -19,6 - 3003: -18,6 - 3004: -17,6 + 2998: -19,6 + 2999: -18,6 + 3000: -17,6 - node: color: '#FFFFFF79' id: HalfTileOverlayGreyscale180 @@ -2006,7 +2012,7 @@ entities: color: '#EFB34153' id: HalfTileOverlayGreyscale270 decals: - 3074: -15,5 + 3070: -15,5 - node: color: '#EFB3415A' id: HalfTileOverlayGreyscale270 @@ -2023,7 +2029,7 @@ entities: color: '#EFB34160' id: HalfTileOverlayGreyscale270 decals: - 3053: -15,-4 + 3049: -15,-4 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale90 @@ -2055,10 +2061,10 @@ entities: color: '#EFB34160' id: HalfTileOverlayGreyscale90 decals: - 3049: -25,5 - 3050: -25,4 - 3051: -25,0 - 3052: -25,-1 + 3045: -25,5 + 3046: -25,4 + 3047: -25,0 + 3048: -25,-1 - node: color: '#FFFFFF79' id: HalfTileOverlayGreyscale90 @@ -2068,7 +2074,7 @@ entities: color: '#FFFFFFFF' id: HatchSmall decals: - 3209: 51,-56 + 3205: 51,-56 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -2082,25 +2088,25 @@ entities: color: '#EFB34196' id: MiniTileCheckerAOverlay decals: - 3308: -38,-9 - 3309: -37,-9 - 3310: -37,-10 - 3311: -38,-10 - 3312: -38,-11 - 3313: -37,-11 - 3314: -38,-12 - 3315: -37,-12 - 3316: -38,-8 - 3317: -37,-8 - 3318: -38,-7 - 3319: -37,-7 + 3304: -38,-9 + 3305: -37,-9 + 3306: -37,-10 + 3307: -38,-10 + 3308: -38,-11 + 3309: -37,-11 + 3310: -38,-12 + 3311: -37,-12 + 3312: -38,-8 + 3313: -37,-8 + 3314: -38,-7 + 3315: -37,-7 - node: color: '#D4D4D4C7' id: MiniTileSteelBox decals: - 3061: -20,-6 - 3062: -16,-6 - 3063: -20,7 + 3057: -20,-6 + 3058: -16,-6 + 3059: -20,7 - node: color: '#D4D4D4D3' id: MiniTileSteelBox @@ -2123,7 +2129,7 @@ entities: color: '#D4D4D4CD' id: MiniTileSteelCornerNe decals: - 3267: 18,7 + 3263: 18,7 - node: color: '#D4D4D4D3' id: MiniTileSteelCornerNe @@ -2176,27 +2182,27 @@ entities: color: '#DE3A3A96' id: MiniTileSteelCornerNe decals: - 2805: 18,23 + 2801: 18,23 - node: color: '#88EFB1D9' id: MiniTileSteelCornerNw decals: - 3082: -28,-78 + 3078: -28,-78 - node: color: '#D4D4D4AE' id: MiniTileSteelCornerNw decals: - 3270: 33,-40 + 3266: 33,-40 - node: color: '#D4D4D4B4' id: MiniTileSteelCornerNw decals: - 3376: -7,-41 + 3372: -7,-41 - node: color: '#D4D4D4CD' id: MiniTileSteelCornerNw decals: - 3268: 16,7 + 3264: 16,7 - node: color: '#D4D4D4D3' id: MiniTileSteelCornerNw @@ -2248,7 +2254,7 @@ entities: color: '#DE3A3A96' id: MiniTileSteelCornerNw decals: - 2806: 14,23 + 2802: 14,23 - node: color: '#D4D4D4D3' id: MiniTileSteelCornerSe @@ -2301,17 +2307,17 @@ entities: color: '#DE3A3A96' id: MiniTileSteelCornerSe decals: - 2797: 18,19 + 2793: 18,19 - node: color: '#88EFB1D9' id: MiniTileSteelCornerSw decals: - 3083: -28,-81 + 3079: -28,-81 - node: color: '#D4D4D4C3' id: MiniTileSteelCornerSw decals: - 3388: -27,-7 + 3384: -27,-7 - node: color: '#D4D4D4D3' id: MiniTileSteelCornerSw @@ -2370,12 +2376,12 @@ entities: color: '#DE3A3A96' id: MiniTileSteelCornerSw decals: - 2798: 14,19 + 2794: 14,19 - node: color: '#D4D4D4C7' id: MiniTileSteelInnerNe decals: - 3067: -19,7 + 3063: -19,7 - node: color: '#D4D4D4D3' id: MiniTileSteelInnerNe @@ -2395,31 +2401,31 @@ entities: color: '#D4D4D4D6' id: MiniTileSteelInnerNe decals: - 3076: -25.018312,-5.498596 - 3077: -25.283937,-5.498596 - 3078: -25.502687,-5.498596 + 3072: -25.018312,-5.498596 + 3073: -25.283937,-5.498596 + 3074: -25.502687,-5.498596 - node: color: '#D4D4D4FF' id: MiniTileSteelInnerNe decals: - 3349: -39,-13 + 3345: -39,-13 - node: color: '#D4D4D4AE' id: MiniTileSteelInnerNw decals: - 3275: 33,-42 + 3271: 33,-42 - node: color: '#D4D4D4C0' id: MiniTileSteelInnerNw decals: - 3039: -14.760899,-5.480981 - 3040: -15.010899,-5.480981 - 3041: -14.526524,-5.480981 + 3035: -14.760899,-5.480981 + 3036: -15.010899,-5.480981 + 3037: -14.526524,-5.480981 - node: color: '#D4D4D4C7' id: MiniTileSteelInnerNw decals: - 3068: -17,7 + 3064: -17,7 - node: color: '#D4D4D4D3' id: MiniTileSteelInnerNw @@ -2438,19 +2444,19 @@ entities: color: '#D4D4D4FF' id: MiniTileSteelInnerNw decals: - 3347: -36,-13 + 3343: -36,-13 - node: color: '#D4D4D4C0' id: MiniTileSteelInnerSe decals: - 3042: -25.008694,6.5088334 - 3043: -25.274319,6.5088334 - 3044: -25.508694,6.5088334 + 3038: -25.008694,6.5088334 + 3039: -25.274319,6.5088334 + 3040: -25.508694,6.5088334 - node: color: '#D4D4D4C7' id: MiniTileSteelInnerSe decals: - 3066: -23,-6 + 3062: -23,-6 - node: color: '#D4D4D4D3' id: MiniTileSteelInnerSe @@ -2469,15 +2475,15 @@ entities: color: '#D4D4D4FF' id: MiniTileSteelInnerSe decals: - 3348: -39,-6 + 3344: -39,-6 - node: color: '#D4D4D4C7' id: MiniTileSteelInnerSw decals: - 3065: -21,-6 - 3070: -14.7582035,6.5086117 - 3071: -14.5238285,6.5086117 - 3072: -15.0082035,6.5086117 + 3061: -21,-6 + 3066: -14.7582035,6.5086117 + 3067: -14.5238285,6.5086117 + 3068: -15.0082035,6.5086117 - node: color: '#D4D4D4D3' id: MiniTileSteelInnerSw @@ -2502,33 +2508,33 @@ entities: color: '#D4D4D4FF' id: MiniTileSteelInnerSw decals: - 3346: -36,-6 + 3342: -36,-6 - node: color: '#C8C8C89E' id: MiniTileSteelLineE decals: - 3749: 18,0 - 3750: 18,1 + 3745: 18,0 + 3746: 18,1 - node: color: '#D4D4D496' id: MiniTileSteelLineE decals: - 3167: -19,-23 + 3163: -19,-23 - node: color: '#D4D4D4C0' id: MiniTileSteelLineE decals: - 3028: -25.510418,5.5102654 - 3029: -25.510418,4.5102654 - 3030: -25.510418,3.5239472 - 3031: -25.510418,2.5239472 - 3032: -25.510418,1.5420241 - 3033: -25.510418,0.5198039 - 3034: -25.510418,-0.4823848 - 3035: -25.510418,-1.4980098 - 3036: -25.510418,-2.4674516 - 3037: -25.510418,-3.5051284 - 3038: -25.510418,-4.481826 + 3024: -25.510418,5.5102654 + 3025: -25.510418,4.5102654 + 3026: -25.510418,3.5239472 + 3027: -25.510418,2.5239472 + 3028: -25.510418,1.5420241 + 3029: -25.510418,0.5198039 + 3030: -25.510418,-0.4823848 + 3031: -25.510418,-1.4980098 + 3032: -25.510418,-2.4674516 + 3033: -25.510418,-3.5051284 + 3034: -25.510418,-4.481826 - node: color: '#D4D4D4D3' id: MiniTileSteelLineE @@ -2793,58 +2799,58 @@ entities: color: '#D4D4D4FF' id: MiniTileSteelLineE decals: - 3332: -39,-7 - 3333: -39,-8 - 3334: -39,-9 - 3335: -39,-10 - 3336: -39,-11 - 3337: -39,-12 + 3328: -39,-7 + 3329: -39,-8 + 3330: -39,-9 + 3331: -39,-10 + 3332: -39,-11 + 3333: -39,-12 - node: color: '#DE3A3A96' id: MiniTileSteelLineE decals: - 2807: 18,22 - 2808: 18,21 - 2809: 18,20 + 2803: 18,22 + 2804: 18,21 + 2805: 18,20 - node: color: '#D4D4D4AE' id: MiniTileSteelLineN decals: - 3272: 32,-42 - 3273: 31,-42 - 3274: 30,-42 + 3268: 32,-42 + 3269: 31,-42 + 3270: 30,-42 - node: color: '#D4D4D4B4' id: MiniTileSteelLineN decals: - 3377: -6,-41 + 3373: -6,-41 - node: color: '#D4D4D4C0' id: MiniTileSteelLineN decals: - 3015: -18.018867,-5.48975 - 3016: -17.019917,-5.49304 - 3017: -19.00948,-5.49304 - 3018: -20.010675,-5.49304 - 3019: -21.010675,-5.49304 - 3020: -22.0263,-5.49304 - 3021: -23.028214,-5.497755 - 3022: -24.012589,-5.497755 + 3011: -18.018867,-5.48975 + 3012: -17.019917,-5.49304 + 3013: -19.00948,-5.49304 + 3014: -20.010675,-5.49304 + 3015: -21.010675,-5.49304 + 3016: -22.0263,-5.49304 + 3017: -23.028214,-5.497755 + 3018: -24.012589,-5.497755 - node: color: '#D4D4D4C7' id: MiniTileSteelLineN decals: - 3064: -18,7 + 3060: -18,7 - node: color: '#D4D4D4CA' id: MiniTileSteelLineN decals: - 3075: -16.015686,-5.492559 + 3071: -16.015686,-5.492559 - node: color: '#D4D4D4CD' id: MiniTileSteelLineN decals: - 3269: 17,7 + 3265: 17,7 - node: color: '#D4D4D4D3' id: MiniTileSteelLineN @@ -3070,34 +3076,34 @@ entities: color: '#D4D4D4FF' id: MiniTileSteelLineN decals: - 3344: -38,-13 - 3345: -37,-13 + 3340: -38,-13 + 3341: -37,-13 - node: color: '#DE3A3A96' id: MiniTileSteelLineN decals: - 2799: 17,23 - 2800: 16,23 - 2801: 15,23 + 2795: 17,23 + 2796: 16,23 + 2797: 15,23 - node: color: '#D4D4D4C0' id: MiniTileSteelLineS decals: - 3023: -20.013802,6.514251 - 3024: -21.019838,6.510408 - 3025: -22.019838,6.510408 - 3026: -23.019838,6.510408 - 3027: -24.019838,6.510408 - 3382: -25,-7 + 3019: -20.013802,6.514251 + 3020: -21.019838,6.510408 + 3021: -22.019838,6.510408 + 3022: -23.019838,6.510408 + 3023: -24.019838,6.510408 + 3378: -25,-7 - node: color: '#D4D4D4C3' id: MiniTileSteelLineS decals: - 2998: -18.011988,6.5150476 - 2999: -19.02412,6.5150476 - 3000: -16.008495,6.503191 - 3001: -17.022287,6.5092306 - 3391: -26,-7 + 2994: -18.011988,6.5150476 + 2995: -19.02412,6.5150476 + 2996: -16.008495,6.503191 + 2997: -17.022287,6.5092306 + 3387: -26,-7 - node: color: '#D4D4D4D3' id: MiniTileSteelLineS @@ -3331,53 +3337,53 @@ entities: color: '#D4D4D4FF' id: MiniTileSteelLineS decals: - 3350: -38,-6 - 3351: -37,-6 + 3346: -38,-6 + 3347: -37,-6 - node: color: '#DE3A3A96' id: MiniTileSteelLineS decals: - 2802: 17,19 - 2803: 16,19 - 2804: 15,19 + 2798: 17,19 + 2799: 16,19 + 2800: 15,19 - node: color: '#C3C3C3BC' id: MiniTileSteelLineW decals: - 4063: 32,-4 - 4064: 32,-5 + 4059: 32,-4 + 4060: 32,-5 - node: color: '#D4D4D4AE' id: MiniTileSteelLineW decals: - 3271: 33,-41 + 3267: 33,-41 - node: color: '#D4D4D4C0' id: MiniTileSteelLineW decals: - 3005: -14.526791,4.511916 - 3006: -14.526791,3.535493 - 3007: -14.526791,2.535493 - 3008: -14.526791,1.5321715 - 3009: -14.526791,0.5164875 - 3010: -14.526791,-0.47854245 - 3011: -14.526791,-1.4661165 - 3012: -14.526791,-2.4650025 - 3013: -14.526791,-3.4650025 - 3014: -14.526791,-4.4806275 + 3001: -14.526791,4.511916 + 3002: -14.526791,3.535493 + 3003: -14.526791,2.535493 + 3004: -14.526791,1.5321715 + 3005: -14.526791,0.5164875 + 3006: -14.526791,-0.47854245 + 3007: -14.526791,-1.4661165 + 3008: -14.526791,-2.4650025 + 3009: -14.526791,-3.4650025 + 3010: -14.526791,-4.4806275 - node: color: '#D4D4D4C3' id: MiniTileSteelLineW decals: - 2931: -17,38 - 2932: -17,37 - 3389: -27,-5 - 3390: -27,-6 + 2927: -17,38 + 2928: -17,37 + 3385: -27,-5 + 3386: -27,-6 - node: color: '#D4D4D4C7' id: MiniTileSteelLineW decals: - 3069: -14.529805,5.530867 + 3065: -14.529805,5.530867 - node: color: '#D4D4D4D3' id: MiniTileSteelLineW @@ -3625,26 +3631,26 @@ entities: 2172: -6,-27 2323: -27,3 2324: -27,-1 - 3746: -21,-17 - 3747: -21,-18 - 3748: -21,-19 + 3742: -21,-17 + 3743: -21,-18 + 3744: -21,-19 - node: color: '#D4D4D4FF' id: MiniTileSteelLineW decals: - 3338: -36,-7 - 3339: -36,-8 - 3340: -36,-9 - 3341: -36,-10 - 3342: -36,-11 - 3343: -36,-12 + 3334: -36,-7 + 3335: -36,-8 + 3336: -36,-9 + 3337: -36,-10 + 3338: -36,-11 + 3339: -36,-12 - node: color: '#DE3A3A96' id: MiniTileSteelLineW decals: - 2810: 14,22 - 2811: 14,21 - 2812: 14,20 + 2806: 14,22 + 2807: 14,21 + 2808: 14,20 - node: color: '#FFFFFFFF' id: MiniTileWhiteBox @@ -3655,14 +3661,14 @@ entities: color: '#258CC0EA' id: MiniTileWhiteCornerNe decals: - 3761: 7,-46 - 3789: -23,-58 + 3757: 7,-46 + 3785: -23,-58 - node: color: '#334E6DC8' id: MiniTileWhiteCornerNe decals: - 2963: 32,-21 - 2964: 19,-21 + 2959: 32,-21 + 2960: 19,-21 - node: color: '#478C5DDC' id: MiniTileWhiteCornerNe @@ -3675,13 +3681,13 @@ entities: color: '#52B4E963' id: MiniTileWhiteCornerNe decals: - 3250: 73,-48 + 3246: 73,-48 - node: color: '#52B4E9B7' id: MiniTileWhiteCornerNe decals: - 3739: 47,7 - 3740: 46,8 + 3735: 47,7 + 3736: 46,8 - node: color: '#52B4E9CD' id: MiniTileWhiteCornerNe @@ -3695,31 +3701,31 @@ entities: color: '#707070B7' id: MiniTileWhiteCornerNe decals: - 3555: 31,-72 - 3556: 28,-71 - 3557: 27,-70 + 3551: 31,-72 + 3552: 28,-71 + 3553: 27,-70 - node: color: '#73C2A496' id: MiniTileWhiteCornerNe decals: - 2633: -23,-32 - 2641: -32,-32 - 2642: -31,-33 - 2662: -36,-33 - 2671: -32,-38 - 2712: -34,-44 + 2629: -23,-32 + 2637: -32,-32 + 2638: -31,-33 + 2658: -36,-33 + 2667: -32,-38 + 2708: -34,-44 - node: color: '#787878B7' id: MiniTileWhiteCornerNe decals: - 3608: 31,-78 - 3649: 50,-72 - 3661: 49,-78 + 3604: 31,-78 + 3645: 50,-72 + 3657: 49,-78 - node: color: '#92CCA4BD' id: MiniTileWhiteCornerNe decals: - 3536: 17,-82 + 3532: 17,-82 - node: color: '#A4610696' id: MiniTileWhiteCornerNe @@ -3741,24 +3747,24 @@ entities: 990: 52,-51 991: 53,-52 1019: 46,-46 - 3103: 74,-32 - 3107: 73,-38 - 3223: 73,-44 - 3232: 68,-48 - 3238: 77,-44 - 3481: 64,-32 - 3482: 65,-33 + 3099: 74,-32 + 3103: 73,-38 + 3219: 73,-44 + 3228: 68,-48 + 3234: 77,-44 + 3477: 64,-32 + 3478: 65,-33 - node: color: '#D381C9C0' id: MiniTileWhiteCornerNe decals: - 3170: 65,-44 - 3177: 63,-43 + 3166: 65,-44 + 3173: 63,-43 - node: color: '#D4D4D40F' id: MiniTileWhiteCornerNe decals: - 3184: 55,-35 + 3180: 55,-35 - node: color: '#D4D4D428' id: MiniTileWhiteCornerNe @@ -3778,20 +3784,20 @@ entities: color: '#DE3A3A96' id: MiniTileWhiteCornerNe decals: - 2744: 26,13 - 2748: 26,18 - 2767: 18,17 - 2771: 13,17 - 2781: 8,17 - 2815: 42,16 - 3130: -16,-21 - 3196: 22,-46 - 3359: -15,27 + 2740: 26,13 + 2744: 26,18 + 2763: 18,17 + 2767: 13,17 + 2777: 8,17 + 2811: 42,16 + 3126: -16,-21 + 3192: 22,-46 + 3355: -15,27 - node: color: '#DE3A3AA7' id: MiniTileWhiteCornerNe decals: - 4086: 30,22 + 4082: 30,22 - node: color: '#EFB34196' id: MiniTileWhiteCornerNe @@ -3804,12 +3810,16 @@ entities: 2543: -51,-6 2547: -51,-17 2548: -53,-13 - 2584: -54,-23 - 2611: -71,-24 - 3295: -28,-10 - 3320: -35,-6 - 3353: -42,-6 - 3393: -32,-10 + 2607: -71,-24 + 3291: -28,-10 + 3316: -35,-6 + 3349: -42,-6 + 3389: -32,-10 + - node: + color: '#EFB341B1' + id: MiniTileWhiteCornerNe + decals: + 4091: -51,-23 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerNe @@ -3819,14 +3829,14 @@ entities: color: '#258CC0EA' id: MiniTileWhiteCornerNw decals: - 3762: 2,-46 - 3790: -27,-58 + 3758: 2,-46 + 3786: -27,-58 - node: color: '#334E6DC8' id: MiniTileWhiteCornerNw decals: - 2961: 18,-21 - 2962: 31,-21 + 2957: 18,-21 + 2958: 31,-21 - node: color: '#478C5DDC' id: MiniTileWhiteCornerNw @@ -3839,12 +3849,12 @@ entities: color: '#52B4E963' id: MiniTileWhiteCornerNw decals: - 3254: 69,-48 + 3250: 69,-48 - node: color: '#52B4E9B7' id: MiniTileWhiteCornerNw decals: - 3738: 44,8 + 3734: 44,8 - node: color: '#52B4E9CD' id: MiniTileWhiteCornerNw @@ -3858,31 +3868,31 @@ entities: color: '#707070B7' id: MiniTileWhiteCornerNw decals: - 3559: 22,-72 - 3560: 23,-71 - 3561: 24,-70 + 3555: 22,-72 + 3556: 23,-71 + 3557: 24,-70 - node: color: '#73C2A496' id: MiniTileWhiteCornerNw decals: - 2634: -26,-32 - 2643: -33,-32 - 2644: -34,-33 - 2663: -41,-33 - 2672: -33,-38 + 2630: -26,-32 + 2639: -33,-32 + 2640: -34,-33 + 2659: -41,-33 + 2668: -33,-38 - node: color: '#787878B7' id: MiniTileWhiteCornerNw decals: - 3609: 29,-78 - 3643: 27,-81 - 3650: 47,-72 - 3660: 47,-78 + 3605: 29,-78 + 3639: 27,-81 + 3646: 47,-72 + 3656: 47,-78 - node: color: '#92CCA4BD' id: MiniTileWhiteCornerNw decals: - 3538: 13,-82 + 3534: 13,-82 - node: color: '#A4610696' id: MiniTileWhiteCornerNw @@ -3901,24 +3911,24 @@ entities: 987: 48,-50 988: 45,-57 1021: 41,-46 - 3102: 71,-32 - 3108: 70,-33 - 3222: 67,-44 - 3231: 67,-48 - 3236: 74,-48 - 3237: 76,-44 - 3480: 60,-32 + 3098: 71,-32 + 3104: 70,-33 + 3218: 67,-44 + 3227: 67,-48 + 3232: 74,-48 + 3233: 76,-44 + 3476: 60,-32 - node: color: '#D381C9C0' id: MiniTileWhiteCornerNw decals: - 3169: 59,-44 - 3176: 61,-43 + 3165: 59,-44 + 3172: 61,-43 - node: color: '#D4D4D40F' id: MiniTileWhiteCornerNw decals: - 3182: 53,-35 + 3178: 53,-35 - node: color: '#D4D4D428' id: MiniTileWhiteCornerNw @@ -3938,16 +3948,16 @@ entities: color: '#DE3A3A96' id: MiniTileWhiteCornerNw decals: - 2743: 24,13 - 2750: 20,18 - 2770: 15,17 - 2777: 10,17 - 2782: 4,17 - 2814: 28,22 - 3128: -17,-21 - 3195: 19,-46 - 3358: -17,27 - 3372: 28,16 + 2739: 24,13 + 2746: 20,18 + 2766: 15,17 + 2773: 10,17 + 2778: 4,17 + 2810: 28,22 + 3124: -17,-21 + 3191: 19,-46 + 3354: -17,27 + 3368: 28,16 - node: color: '#EFB34196' id: MiniTileWhiteCornerNw @@ -3958,13 +3968,13 @@ entities: 2537: -33,-21 2538: -56,-7 2539: -55,-6 - 2585: -55,-23 - 2588: -63,-24 - 2610: -75,-24 - 3294: -30,-10 - 3321: -40,-6 - 3354: -43,-6 - 3392: -33,-10 + 2584: -55,-23 + 2586: -63,-24 + 2606: -75,-24 + 3290: -30,-10 + 3317: -40,-6 + 3350: -43,-6 + 3388: -33,-10 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerNw @@ -3974,14 +3984,14 @@ entities: color: '#258CC0EA' id: MiniTileWhiteCornerSe decals: - 3763: 7,-51 - 3793: -23,-63 + 3759: 7,-51 + 3789: -23,-63 - node: color: '#334E6DC8' id: MiniTileWhiteCornerSe decals: - 2967: 32,-23 - 2968: 30,-26 + 2963: 32,-23 + 2964: 30,-26 - node: color: '#478C5DDC' id: MiniTileWhiteCornerSe @@ -3993,12 +4003,12 @@ entities: color: '#52B4E963' id: MiniTileWhiteCornerSe decals: - 3256: 73,-50 + 3252: 73,-50 - node: color: '#52B4E9B7' id: MiniTileWhiteCornerSe decals: - 3737: 47,4 + 3733: 47,4 - node: color: '#52B4E9CD' id: MiniTileWhiteCornerSe @@ -4013,30 +4023,30 @@ entities: color: '#73C2A496' id: MiniTileWhiteCornerSe decals: - 2627: -23,-37 - 2647: -31,-36 - 2657: -36,-37 - 2673: -32,-42 - 2713: -34,-57 - 2714: -35,-58 + 2623: -23,-37 + 2643: -31,-36 + 2653: -36,-37 + 2669: -32,-42 + 2709: -34,-57 + 2710: -35,-58 - node: color: '#787878AB' id: MiniTileWhiteCornerSe decals: - 3598: 31,-76 + 3594: 31,-76 - node: color: '#787878B7' id: MiniTileWhiteCornerSe decals: - 3632: 31,-93 - 3646: 49,-76 - 3647: 50,-74 - 3662: 49,-93 + 3628: 31,-93 + 3642: 49,-76 + 3643: 50,-74 + 3658: 49,-93 - node: color: '#92CCA4BD' id: MiniTileWhiteCornerSe decals: - 3535: 17,-86 + 3531: 17,-86 - node: color: '#A4610696' id: MiniTileWhiteCornerSe @@ -4057,19 +4067,19 @@ entities: 985: 52,-56 986: 53,-54 1017: 46,-50 - 3105: 73,-34 - 3106: 73,-39 - 3221: 73,-45 - 3230: 68,-50 - 3239: 77,-48 - 3240: 76,-50 - 3483: 65,-36 - 3484: 64,-37 + 3101: 73,-34 + 3102: 73,-39 + 3217: 73,-45 + 3226: 68,-50 + 3235: 77,-48 + 3236: 76,-50 + 3479: 65,-36 + 3480: 64,-37 - node: color: '#D4D4D40F' id: MiniTileWhiteCornerSe decals: - 3183: 55,-37 + 3179: 55,-37 - node: color: '#D4D4D428' id: MiniTileWhiteCornerSe @@ -4089,16 +4099,16 @@ entities: color: '#DE3A3A96' id: MiniTileWhiteCornerSe decals: - 2745: 26,9 - 2749: 26,16 - 2768: 18,16 - 2772: 13,16 - 2787: 8,12 - 2813: 42,4 - 3131: -16,-24 - 3197: 22,-48 - 3361: -15,23 - 3373: 42,14 + 2741: 26,9 + 2745: 26,16 + 2764: 18,16 + 2768: 13,16 + 2783: 8,12 + 2809: 42,4 + 3127: -16,-24 + 3193: 22,-48 + 3357: -15,23 + 3369: 42,14 - node: color: '#EFB34196' id: MiniTileWhiteCornerSe @@ -4110,13 +4120,17 @@ entities: 2519: -32,-30 2544: -51,-7 2575: -51,-21 - 2586: -54,-26 - 2609: -71,-27 - 3290: -32,-19 - 3291: -24,-18 - 3292: -23,-16 - 3298: -28,-18 - 3352: -42,-8 + 2605: -71,-27 + 3286: -32,-19 + 3287: -24,-18 + 3288: -23,-16 + 3294: -28,-18 + 3348: -42,-8 + - node: + color: '#EFB341B1' + id: MiniTileWhiteCornerSe + decals: + 4085: -51,-26 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerSe @@ -4126,15 +4140,15 @@ entities: color: '#258CC0EA' id: MiniTileWhiteCornerSw decals: - 3764: 2,-51 - 3791: -27,-62 - 3792: -26,-63 + 3760: 2,-51 + 3787: -27,-62 + 3788: -26,-63 - node: color: '#334E6DC8' id: MiniTileWhiteCornerSw decals: - 2965: 20,-26 - 2966: 18,-23 + 2961: 20,-26 + 2962: 18,-23 - node: color: '#478C5DDC' id: MiniTileWhiteCornerSw @@ -4145,12 +4159,12 @@ entities: color: '#52B4E963' id: MiniTileWhiteCornerSw decals: - 3255: 69,-50 + 3251: 69,-50 - node: color: '#52B4E9B7' id: MiniTileWhiteCornerSw decals: - 3736: 44,4 + 3732: 44,4 - node: color: '#52B4E9CD' id: MiniTileWhiteCornerSw @@ -4165,34 +4179,34 @@ entities: color: '#707070B7' id: MiniTileWhiteCornerSw decals: - 3558: 22,-74 + 3554: 22,-74 - node: color: '#73C2A496' id: MiniTileWhiteCornerSw decals: - 2628: -26,-37 - 2648: -34,-36 - 2658: -41,-37 - 2674: -33,-42 + 2624: -26,-37 + 2644: -34,-36 + 2654: -41,-37 + 2670: -33,-42 - node: color: '#787878AB' id: MiniTileWhiteCornerSw decals: - 3599: 24,-75 - 3600: 29,-76 + 3595: 24,-75 + 3596: 29,-76 - node: color: '#787878B7' id: MiniTileWhiteCornerSw decals: - 3633: 29,-93 - 3642: 27,-87 - 3648: 47,-76 - 3663: 47,-93 + 3629: 29,-93 + 3638: 27,-87 + 3644: 47,-76 + 3659: 47,-93 - node: color: '#92CCA4BD' id: MiniTileWhiteCornerSw decals: - 3537: 13,-86 + 3533: 13,-86 - node: color: '#A4610696' id: MiniTileWhiteCornerSw @@ -4211,20 +4225,20 @@ entities: 966: 59,-50 1018: 42,-50 1020: 41,-48 - 3212: 67,-45 - 3213: 67,-50 - 3214: 74,-50 - 3488: 60,-37 + 3208: 67,-45 + 3209: 67,-50 + 3210: 74,-50 + 3484: 60,-37 - node: color: '#D381C9AB' id: MiniTileWhiteCornerSw decals: - 3191: 70,-39 + 3187: 70,-39 - node: color: '#D4D4D40F' id: MiniTileWhiteCornerSw decals: - 3181: 53,-37 + 3177: 53,-37 - node: color: '#D4D4D428' id: MiniTileWhiteCornerSw @@ -4244,16 +4258,16 @@ entities: color: '#DE3A3A96' id: MiniTileWhiteCornerSw decals: - 2746: 24,9 - 2747: 20,16 - 2769: 15,16 - 2778: 10,16 - 2785: 4,12 - 2837: 40,4 - 2859: 28,14 - 3129: -17,-24 - 3194: 19,-48 - 3360: -17,23 + 2742: 24,9 + 2743: 20,16 + 2765: 15,16 + 2774: 10,16 + 2781: 4,12 + 2833: 40,4 + 2855: 28,14 + 3125: -17,-24 + 3190: 19,-48 + 3356: -17,23 - node: color: '#EFB34196' id: MiniTileWhiteCornerSw @@ -4266,10 +4280,10 @@ entities: 2536: -33,-30 2545: -56,-19 2546: -55,-21 - 2587: -63,-26 - 2612: -75,-27 - 3293: -26,-18 - 3355: -43,-8 + 2585: -63,-26 + 2608: -75,-27 + 3289: -26,-18 + 3351: -43,-8 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerSw @@ -4279,7 +4293,7 @@ entities: color: '#D381C996' id: MiniTileWhiteEndE decals: - 3104: 75,-33 + 3100: 75,-33 - node: color: '#52B4E9CD' id: MiniTileWhiteEndS @@ -4293,7 +4307,7 @@ entities: color: '#334E6DC8' id: MiniTileWhiteInnerNe decals: - 2971: 19,-22 + 2967: 19,-22 - node: color: '#478C5DDC' id: MiniTileWhiteInnerNe @@ -4303,23 +4317,23 @@ entities: color: '#52B4E9B7' id: MiniTileWhiteInnerNe decals: - 3741: 46,7 + 3737: 46,7 - node: color: '#707070B7' id: MiniTileWhiteInnerNe decals: - 3568: 27,-71 + 3564: 27,-71 - node: color: '#73C2A496' id: MiniTileWhiteInnerNe decals: - 2652: -32,-33 - 2716: -35,-44 + 2648: -32,-33 + 2712: -35,-44 - node: color: '#787878AB' id: MiniTileWhiteInnerNe decals: - 3595: 28,-72 + 3591: 28,-72 - node: color: '#A4610696' id: MiniTileWhiteInnerNe @@ -4332,18 +4346,18 @@ entities: 951: 51,-40 1003: 52,-52 1013: 51,-51 - 3124: 74,-33 - 3502: 64,-33 + 3120: 74,-33 + 3498: 64,-33 - node: color: '#D381C9AB' id: MiniTileWhiteInnerNe decals: - 3193: 71,-38 + 3189: 71,-38 - node: color: '#D381C9C0' id: MiniTileWhiteInnerNe decals: - 3178: 63,-44 + 3174: 63,-44 - node: color: '#D4D4D4D3' id: MiniTileWhiteInnerNe @@ -4367,7 +4381,7 @@ entities: color: '#334E6DC8' id: MiniTileWhiteInnerNw decals: - 2972: 31,-22 + 2968: 31,-22 - node: color: '#478C5DDC' id: MiniTileWhiteInnerNw @@ -4378,32 +4392,32 @@ entities: color: '#707070B7' id: MiniTileWhiteInnerNw decals: - 3569: 23,-72 - 3570: 24,-71 + 3565: 23,-72 + 3566: 24,-71 - node: color: '#73C2A496' id: MiniTileWhiteInnerNw decals: - 2651: -33,-33 - 2718: -36,-54 - 2719: -36,-42 + 2647: -33,-33 + 2714: -36,-54 + 2715: -36,-42 - node: color: '#787878B7' id: MiniTileWhiteInnerNw decals: - 3644: 29,-81 + 3640: 29,-81 - node: color: '#D381C996' id: MiniTileWhiteInnerNw decals: 1010: 48,-57 - 3125: 71,-33 - 3248: 76,-48 + 3121: 71,-33 + 3244: 76,-48 - node: color: '#D381C9C0' id: MiniTileWhiteInnerNw decals: - 3179: 61,-44 + 3175: 61,-44 - node: color: '#D4D4D4D3' id: MiniTileWhiteInnerNw @@ -4415,7 +4429,7 @@ entities: id: MiniTileWhiteInnerNw decals: 2583: -55,-7 - 2607: -55,-24 + 2603: -55,-24 - node: color: '#FFFFFFFF' id: MiniTileWhiteInnerNw @@ -4427,7 +4441,7 @@ entities: color: '#334E6DC8' id: MiniTileWhiteInnerSe decals: - 2969: 30,-23 + 2965: 30,-23 - node: color: '#52B4E9CD' id: MiniTileWhiteInnerSe @@ -4442,12 +4456,12 @@ entities: color: '#73C2A496' id: MiniTileWhiteInnerSe decals: - 2715: -35,-57 + 2711: -35,-57 - node: color: '#787878B7' id: MiniTileWhiteInnerSe decals: - 3659: 49,-74 + 3655: 49,-74 - node: color: '#D381C996' id: MiniTileWhiteInnerSe @@ -4455,10 +4469,10 @@ entities: 952: 51,-46 1002: 52,-54 1012: 51,-56 - 3122: 73,-33 - 3123: 71,-34 - 3249: 76,-48 - 3501: 64,-36 + 3118: 73,-33 + 3119: 71,-34 + 3245: 76,-48 + 3497: 64,-36 - node: color: '#D4D4D4D3' id: MiniTileWhiteInnerSe @@ -4470,8 +4484,8 @@ entities: id: MiniTileWhiteInnerSe decals: 2579: -54,-7 - 3302: -32,-18 - 3307: -24,-16 + 3298: -32,-18 + 3303: -24,-16 - node: color: '#FFFFFFFF' id: MiniTileWhiteInnerSe @@ -4482,12 +4496,12 @@ entities: color: '#258CC0EA' id: MiniTileWhiteInnerSw decals: - 3794: -26,-62 + 3790: -26,-62 - node: color: '#334E6DC8' id: MiniTileWhiteInnerSw decals: - 2970: 20,-23 + 2966: 20,-23 - node: color: '#52B4E9CD' id: MiniTileWhiteInnerSw @@ -4497,22 +4511,22 @@ entities: 766: -6,-55 767: -9,-55 768: -12,-55 - 3084: -2,-48 + 3080: -2,-48 - node: color: '#73C2A496' id: MiniTileWhiteInnerSw decals: - 2717: -36,-47 + 2713: -36,-47 - node: color: '#787878AB' id: MiniTileWhiteInnerSw decals: - 3607: 29,-75 + 3603: 29,-75 - node: color: '#787878B7' id: MiniTileWhiteInnerSw decals: - 3645: 29,-87 + 3641: 29,-87 - node: color: '#D381C996' id: MiniTileWhiteInnerSw @@ -4539,23 +4553,23 @@ entities: color: '#258CC0EA' id: MiniTileWhiteLineE decals: - 3765: 7,-50 - 3766: 7,-49 - 3767: 7,-48 - 3768: 7,-47 - 3785: -23,-59 - 3786: -23,-60 - 3787: -23,-61 - 3788: -23,-62 + 3761: 7,-50 + 3762: 7,-49 + 3763: 7,-48 + 3764: 7,-47 + 3781: -23,-59 + 3782: -23,-60 + 3783: -23,-61 + 3784: -23,-62 - node: color: '#334E6DC8' id: MiniTileWhiteLineE decals: - 2958: 32,-22 - 2959: 30,-25 - 2960: 30,-24 - 2975: 16,-26 - 2976: 16,-25 + 2954: 32,-22 + 2955: 30,-25 + 2956: 30,-24 + 2971: 16,-26 + 2972: 16,-25 - node: color: '#478C5DDC' id: MiniTileWhiteLineE @@ -4574,13 +4588,13 @@ entities: color: '#52B4E963' id: MiniTileWhiteLineE decals: - 3261: 73,-49 + 3257: 73,-49 - node: color: '#52B4E9B7' id: MiniTileWhiteLineE decals: - 3734: 47,6 - 3735: 47,5 + 3730: 47,6 + 3731: 47,5 - node: color: '#52B4E9CD' id: MiniTileWhiteLineE @@ -4602,90 +4616,90 @@ entities: color: '#646464C7' id: MiniTileWhiteLineE decals: - 3938: -46,0 + 3934: -46,0 - node: color: '#707070B7' id: MiniTileWhiteLineE decals: - 3562: 31,-73 + 3558: 31,-73 - node: color: '#73C2A496' id: MiniTileWhiteLineE decals: - 2629: -23,-36 - 2630: -23,-35 - 2631: -23,-34 - 2632: -23,-33 - 2649: -31,-34 - 2650: -31,-35 - 2659: -36,-36 - 2660: -36,-35 - 2661: -36,-34 - 2675: -32,-39 - 2676: -32,-40 - 2677: -32,-41 - 2685: -35,-41 - 2687: -35,-42 - 2688: -35,-43 - 2689: -34,-45 - 2690: -34,-46 - 2691: -34,-47 - 2692: -34,-48 - 2693: -34,-49 - 2694: -34,-50 - 2695: -34,-51 - 2696: -34,-52 - 2697: -34,-53 - 2698: -34,-54 - 2699: -34,-55 - 2700: -34,-56 + 2625: -23,-36 + 2626: -23,-35 + 2627: -23,-34 + 2628: -23,-33 + 2645: -31,-34 + 2646: -31,-35 + 2655: -36,-36 + 2656: -36,-35 + 2657: -36,-34 + 2671: -32,-39 + 2672: -32,-40 + 2673: -32,-41 + 2681: -35,-41 + 2683: -35,-42 + 2684: -35,-43 + 2685: -34,-45 + 2686: -34,-46 + 2687: -34,-47 + 2688: -34,-48 + 2689: -34,-49 + 2690: -34,-50 + 2691: -34,-51 + 2692: -34,-52 + 2693: -34,-53 + 2694: -34,-54 + 2695: -34,-55 + 2696: -34,-56 - node: color: '#787878AB' id: MiniTileWhiteLineE decals: - 3596: 31,-74 - 3597: 31,-75 + 3592: 31,-74 + 3593: 31,-75 - node: color: '#787878B7' id: MiniTileWhiteLineE decals: - 3613: 31,-79 - 3614: 31,-80 - 3615: 31,-81 - 3616: 31,-82 - 3617: 31,-83 - 3618: 31,-84 - 3619: 31,-85 - 3620: 31,-86 - 3621: 31,-87 - 3622: 31,-88 - 3623: 31,-89 - 3624: 31,-90 - 3625: 31,-91 - 3626: 31,-92 - 3655: 50,-73 - 3656: 49,-75 - 3664: 49,-92 - 3665: 49,-91 - 3666: 49,-90 - 3667: 49,-89 - 3668: 49,-88 - 3669: 49,-87 - 3670: 49,-86 - 3671: 49,-85 - 3672: 49,-84 - 3673: 49,-83 - 3674: 49,-82 - 3675: 49,-81 - 3676: 49,-80 - 3677: 49,-79 + 3609: 31,-79 + 3610: 31,-80 + 3611: 31,-81 + 3612: 31,-82 + 3613: 31,-83 + 3614: 31,-84 + 3615: 31,-85 + 3616: 31,-86 + 3617: 31,-87 + 3618: 31,-88 + 3619: 31,-89 + 3620: 31,-90 + 3621: 31,-91 + 3622: 31,-92 + 3651: 50,-73 + 3652: 49,-75 + 3660: 49,-92 + 3661: 49,-91 + 3662: 49,-90 + 3663: 49,-89 + 3664: 49,-88 + 3665: 49,-87 + 3666: 49,-86 + 3667: 49,-85 + 3668: 49,-84 + 3669: 49,-83 + 3670: 49,-82 + 3671: 49,-81 + 3672: 49,-80 + 3673: 49,-79 - node: color: '#92CCA4BD' id: MiniTileWhiteLineE decals: - 3539: 17,-83 - 3540: 17,-84 - 3541: 17,-85 + 3535: 17,-83 + 3536: 17,-84 + 3537: 17,-85 - node: color: '#A4610696' id: MiniTileWhiteLineE @@ -4729,26 +4743,26 @@ entities: 1026: 46,-47 1027: 46,-48 1028: 46,-49 - 3113: 71,-37 - 3114: 71,-36 - 3115: 71,-35 - 3233: 68,-49 - 3241: 76,-49 - 3242: 77,-47 - 3243: 77,-46 - 3244: 77,-45 - 3489: 65,-34 - 3490: 65,-35 + 3109: 71,-37 + 3110: 71,-36 + 3111: 71,-35 + 3229: 68,-49 + 3237: 76,-49 + 3238: 77,-47 + 3239: 77,-46 + 3240: 77,-45 + 3485: 65,-34 + 3486: 65,-35 - node: color: '#D381C9C0' id: MiniTileWhiteLineE decals: - 3171: 65,-45 + 3167: 65,-45 - node: color: '#D4D4D40F' id: MiniTileWhiteLineE decals: - 3186: 55,-36 + 3182: 55,-36 - node: color: '#D4D4D428' id: MiniTileWhiteLineE @@ -4765,39 +4779,39 @@ entities: color: '#DE3A3A96' id: MiniTileWhiteLineE decals: - 2737: 26,12 - 2738: 26,11 - 2739: 26,10 - 2756: 26,17 - 2788: 8,13 - 2789: 8,14 - 2790: 8,15 - 2791: 8,16 - 2826: 42,15 - 2827: 42,13 - 2828: 42,11 - 2829: 42,12 - 2830: 42,10 - 2831: 42,9 - 2832: 42,8 - 2833: 42,7 - 2834: 42,6 - 2835: 42,5 - 2852: 30,20 - 2860: 30,19 - 2861: 30,18 - 2862: 30,17 - 3132: -16,-22 - 3133: -16,-23 - 3203: 22,-47 - 3367: -15,26 - 3368: -15,25 - 3369: -15,24 + 2733: 26,12 + 2734: 26,11 + 2735: 26,10 + 2752: 26,17 + 2784: 8,13 + 2785: 8,14 + 2786: 8,15 + 2787: 8,16 + 2822: 42,15 + 2823: 42,13 + 2824: 42,11 + 2825: 42,12 + 2826: 42,10 + 2827: 42,9 + 2828: 42,8 + 2829: 42,7 + 2830: 42,6 + 2831: 42,5 + 2848: 30,20 + 2856: 30,19 + 2857: 30,18 + 2858: 30,17 + 3128: -16,-22 + 3129: -16,-23 + 3199: 22,-47 + 3363: -15,26 + 3364: -15,25 + 3365: -15,24 - node: color: '#DE3A3AA7' id: MiniTileWhiteLineE decals: - 4085: 30,21 + 4081: 30,21 - node: color: '#DE3A3AD3' id: MiniTileWhiteLineE @@ -4848,37 +4862,41 @@ entities: 2557: -54,-10 2558: -54,-9 2559: -54,-8 - 2605: -54,-24 - 2606: -54,-25 - 2619: -71,-25 - 2620: -71,-26 - 3285: -32,-11 - 3286: -32,-12 - 3287: -28,-11 - 3288: -23,-15 - 3289: -24,-17 - 3329: -35,-7 - 3330: -35,-8 - 3331: -35,-9 - 3356: -42,-7 + 2615: -71,-25 + 2616: -71,-26 + 3281: -32,-11 + 3282: -32,-12 + 3283: -28,-11 + 3284: -23,-15 + 3285: -24,-17 + 3325: -35,-7 + 3326: -35,-8 + 3327: -35,-9 + 3352: -42,-7 + - node: + color: '#EFB341B1' + id: MiniTileWhiteLineE + decals: + 4086: -51,-25 + 4087: -51,-24 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineE decals: 677: -2,-54 685: 4,-65 - 3081: -10,-54 + 3077: -10,-54 - node: color: '#258CC0EA' id: MiniTileWhiteLineN decals: - 3773: 3,-46 - 3774: 4,-46 - 3775: 5,-46 - 3776: 6,-46 - 3777: -25,-58 - 3778: -26,-58 - 3779: -24,-58 + 3769: 3,-46 + 3770: 4,-46 + 3771: 5,-46 + 3772: 6,-46 + 3773: -25,-58 + 3774: -26,-58 + 3775: -24,-58 - node: color: '#334E6DC8' id: MiniTileWhiteLineN @@ -4888,19 +4906,19 @@ entities: 1034: 31,-59 1035: 30,-59 1036: 29,-59 - 2796: 6,17 - 2944: 30,-22 - 2945: 29,-22 - 2946: 28,-22 - 2947: 27,-22 - 2948: 26,-22 - 2949: 25,-22 - 2950: 24,-22 - 2951: 23,-22 - 2952: 22,-22 - 2953: 21,-22 - 2954: 20,-22 - 2979: 32,-17 + 2792: 6,17 + 2940: 30,-22 + 2941: 29,-22 + 2942: 28,-22 + 2943: 27,-22 + 2944: 26,-22 + 2945: 25,-22 + 2946: 24,-22 + 2947: 23,-22 + 2948: 22,-22 + 2949: 21,-22 + 2950: 20,-22 + 2975: 32,-17 - node: color: '#478C5DDC' id: MiniTileWhiteLineN @@ -4923,19 +4941,19 @@ entities: color: '#52B4E963' id: MiniTileWhiteLineN decals: - 3251: 72,-48 - 3252: 71,-48 - 3253: 70,-48 + 3247: 72,-48 + 3248: 71,-48 + 3249: 70,-48 - node: color: '#52B4E996' id: MiniTileWhiteLineN decals: - 2981: -9,-42 + 2977: -9,-42 - node: color: '#52B4E9B7' id: MiniTileWhiteLineN decals: - 3728: 45,8 + 3724: 45,8 - node: color: '#52B4E9CD' id: MiniTileWhiteLineN @@ -4980,46 +4998,46 @@ entities: color: '#5D9C7FC1' id: MiniTileWhiteLineN decals: - 3752: -41,-42 + 3748: -41,-42 - node: color: '#60A5D9D6' id: MiniTileWhiteLineN decals: - 3477: -13,-53 - 3478: -12,-53 + 3473: -13,-53 + 3474: -12,-53 - node: color: '#707070B7' id: MiniTileWhiteLineN decals: - 3563: 25,-70 - 3564: 26,-70 - 3566: 29,-72 - 3567: 30,-72 + 3559: 25,-70 + 3560: 26,-70 + 3562: 29,-72 + 3563: 30,-72 - node: color: '#73C2A496' id: MiniTileWhiteLineN decals: - 2623: -25,-32 - 2624: -24,-32 - 2664: -38,-33 - 2665: -39,-33 - 2666: -40,-33 - 2667: -37,-33 - 2681: -42,-42 - 2682: -40,-42 - 2683: -39,-42 - 2684: -38,-42 - 2703: -37,-54 - 2720: -37,-42 + 2619: -25,-32 + 2620: -24,-32 + 2660: -38,-33 + 2661: -39,-33 + 2662: -40,-33 + 2663: -37,-33 + 2677: -42,-42 + 2678: -40,-42 + 2679: -39,-42 + 2680: -38,-42 + 2699: -37,-54 + 2716: -37,-42 - node: color: '#787878B7' id: MiniTileWhiteLineN decals: - 3610: 30,-78 - 3636: 28,-81 - 3657: 48,-72 - 3658: 49,-72 - 3693: 48,-78 + 3606: 30,-78 + 3632: 28,-81 + 3653: 48,-72 + 3654: 49,-72 + 3689: 48,-78 - node: color: '#9FED5896' id: MiniTileWhiteLineN @@ -5060,30 +5078,30 @@ entities: 1023: 44,-46 1024: 42,-46 1025: 43,-46 - 3119: 72,-38 - 3120: 72,-32 - 3121: 73,-32 - 3224: 68,-44 - 3225: 69,-44 - 3226: 70,-44 - 3227: 71,-44 - 3228: 72,-44 - 3229: 75,-48 - 3495: 61,-32 - 3496: 62,-32 - 3497: 63,-32 + 3115: 72,-38 + 3116: 72,-32 + 3117: 73,-32 + 3220: 68,-44 + 3221: 69,-44 + 3222: 70,-44 + 3223: 71,-44 + 3224: 72,-44 + 3225: 75,-48 + 3491: 61,-32 + 3492: 62,-32 + 3493: 63,-32 - node: color: '#D381C9C0' id: MiniTileWhiteLineN decals: - 3173: 60,-44 - 3174: 64,-44 - 3175: 62,-43 + 3169: 60,-44 + 3170: 64,-44 + 3171: 62,-43 - node: color: '#D4D4D40F' id: MiniTileWhiteLineN decals: - 3185: 54,-35 + 3181: 54,-35 - node: color: '#D4D4D428' id: MiniTileWhiteLineN @@ -5135,39 +5153,39 @@ entities: color: '#DE3A3A96' id: MiniTileWhiteLineN decals: - 2732: 26,8 - 2733: 25,8 - 2734: 24,8 - 2736: 25,13 - 2751: 21,18 - 2752: 22,18 - 2753: 23,18 - 2754: 24,18 - 2755: 25,18 - 2765: 17,17 - 2766: 16,17 - 2773: 12,17 - 2774: 11,17 - 2779: 7,17 - 2780: 5,17 - 2816: 29,22 - 2817: 33,16 - 2818: 34,16 - 2819: 35,16 - 2820: 36,16 - 2821: 37,16 - 2822: 38,16 - 2823: 39,16 - 2824: 40,16 - 2825: 41,16 - 2863: 32,16 - 2864: 31,16 - 2978: 20,-17 - 3200: 21,-46 - 3201: 20,-46 - 3362: -16,27 - 3370: 30,16 - 3371: 29,16 + 2728: 26,8 + 2729: 25,8 + 2730: 24,8 + 2732: 25,13 + 2747: 21,18 + 2748: 22,18 + 2749: 23,18 + 2750: 24,18 + 2751: 25,18 + 2761: 17,17 + 2762: 16,17 + 2769: 12,17 + 2770: 11,17 + 2775: 7,17 + 2776: 5,17 + 2812: 29,22 + 2813: 33,16 + 2814: 34,16 + 2815: 35,16 + 2816: 36,16 + 2817: 37,16 + 2818: 38,16 + 2819: 39,16 + 2820: 40,16 + 2821: 41,16 + 2859: 32,16 + 2860: 31,16 + 2974: 20,-17 + 3196: 21,-46 + 3197: 20,-46 + 3358: -16,27 + 3366: 30,16 + 3367: 29,16 - node: color: '#EFB34196' id: MiniTileWhiteLineN @@ -5184,21 +5202,28 @@ entities: 2541: -53,-6 2542: -52,-6 2576: -52,-17 - 2589: -56,-24 - 2590: -57,-24 - 2591: -58,-24 - 2592: -59,-24 - 2593: -60,-24 - 2594: -61,-24 - 2595: -62,-24 - 2613: -72,-24 - 2614: -73,-24 - 2615: -74,-24 - 3296: -29,-10 - 3322: -39,-6 - 3323: -38,-6 - 3324: -37,-6 - 3325: -36,-6 + 2587: -56,-24 + 2588: -57,-24 + 2589: -58,-24 + 2590: -59,-24 + 2591: -60,-24 + 2592: -61,-24 + 2593: -62,-24 + 2609: -72,-24 + 2610: -73,-24 + 2611: -74,-24 + 3292: -29,-10 + 3318: -39,-6 + 3319: -38,-6 + 3320: -37,-6 + 3321: -36,-6 + - node: + color: '#EFB341B1' + id: MiniTileWhiteLineN + decals: + 4088: -54,-23 + 4089: -53,-23 + 4090: -52,-23 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineN @@ -5210,28 +5235,28 @@ entities: color: '#258CC0EA' id: MiniTileWhiteLineS decals: - 3757: 4,-51 - 3758: 5,-51 - 3759: 3,-51 - 3760: 6,-51 - 3780: -25,-63 - 3781: -24,-63 + 3753: 4,-51 + 3754: 5,-51 + 3755: 3,-51 + 3756: 6,-51 + 3776: -25,-63 + 3777: -24,-63 - node: color: '#334E6DC8' id: MiniTileWhiteLineS decals: - 2933: 29,-26 - 2934: 28,-26 - 2935: 27,-26 - 2936: 26,-26 - 2937: 25,-26 - 2938: 24,-26 - 2939: 23,-26 - 2940: 22,-26 - 2941: 21,-26 - 2942: 31,-23 - 2943: 19,-23 - 2980: 20,-44 + 2929: 29,-26 + 2930: 28,-26 + 2931: 27,-26 + 2932: 26,-26 + 2933: 25,-26 + 2934: 24,-26 + 2935: 23,-26 + 2936: 22,-26 + 2937: 21,-26 + 2938: 31,-23 + 2939: 19,-23 + 2976: 20,-44 - node: color: '#478C5DDC' id: MiniTileWhiteLineS @@ -5257,9 +5282,9 @@ entities: color: '#52B4E963' id: MiniTileWhiteLineS decals: - 3257: 70,-50 - 3258: 71,-50 - 3259: 72,-50 + 3253: 70,-50 + 3254: 71,-50 + 3255: 72,-50 - node: color: '#52B4E9AE' id: MiniTileWhiteLineS @@ -5274,8 +5299,8 @@ entities: color: '#52B4E9B7' id: MiniTileWhiteLineS decals: - 3729: 45,4 - 3730: 46,4 + 3725: 45,4 + 3726: 46,4 - node: color: '#52B4E9CD' id: MiniTileWhiteLineS @@ -5315,43 +5340,43 @@ entities: color: '#73C2A496' id: MiniTileWhiteLineS decals: - 2625: -25,-37 - 2626: -24,-37 - 2645: -33,-36 - 2646: -32,-36 - 2653: -37,-37 - 2654: -38,-37 - 2655: -39,-37 - 2656: -40,-37 - 2701: -36,-58 - 2702: -37,-58 - 2710: -37,-47 - 2711: -38,-47 + 2621: -25,-37 + 2622: -24,-37 + 2641: -33,-36 + 2642: -32,-36 + 2649: -37,-37 + 2650: -38,-37 + 2651: -39,-37 + 2652: -40,-37 + 2697: -36,-58 + 2698: -37,-58 + 2706: -37,-47 + 2707: -38,-47 - node: color: '#787878AB' id: MiniTileWhiteLineS decals: - 3601: 28,-75 - 3602: 26,-75 - 3603: 27,-75 - 3604: 25,-75 - 3605: 23,-74 - 3606: 30,-76 + 3597: 28,-75 + 3598: 26,-75 + 3599: 27,-75 + 3600: 25,-75 + 3601: 23,-74 + 3602: 30,-76 - node: color: '#787878B7' id: MiniTileWhiteLineS decals: - 3634: 30,-93 - 3635: 28,-87 - 3651: 48,-76 - 3692: 48,-93 + 3630: 30,-93 + 3631: 28,-87 + 3647: 48,-76 + 3688: 48,-93 - node: color: '#92CCA4BD' id: MiniTileWhiteLineS decals: - 3544: 14,-86 - 3545: 15,-86 - 3546: 16,-86 + 3540: 14,-86 + 3541: 15,-86 + 3542: 16,-86 - node: color: '#A4610696' id: MiniTileWhiteLineS @@ -5390,28 +5415,28 @@ entities: 1014: 45,-50 1015: 44,-50 1016: 43,-50 - 3116: 72,-34 - 3117: 72,-39 - 3118: 74,-33 - 3215: 75,-50 - 3216: 68,-45 - 3217: 69,-45 - 3218: 70,-45 - 3219: 71,-45 - 3220: 72,-45 - 3485: 63,-37 - 3486: 62,-37 - 3487: 61,-37 + 3112: 72,-34 + 3113: 72,-39 + 3114: 74,-33 + 3211: 75,-50 + 3212: 68,-45 + 3213: 69,-45 + 3214: 70,-45 + 3215: 71,-45 + 3216: 72,-45 + 3481: 63,-37 + 3482: 62,-37 + 3483: 61,-37 - node: color: '#D381C9AB' id: MiniTileWhiteLineS decals: - 3190: 71,-39 + 3186: 71,-39 - node: color: '#D4D4D40F' id: MiniTileWhiteLineS decals: - 3188: 54,-37 + 3184: 54,-37 - node: color: '#D4D4D428' id: MiniTileWhiteLineS @@ -5463,36 +5488,36 @@ entities: color: '#DE3A3A96' id: MiniTileWhiteLineS decals: - 2735: 25,9 - 2757: 25,16 - 2758: 24,16 - 2759: 23,16 - 2760: 21,16 - 2761: 22,16 - 2763: 17,16 - 2764: 16,16 - 2775: 12,16 - 2776: 11,16 - 2783: 6,12 - 2784: 7,12 - 2786: 5,12 - 2836: 41,4 - 2841: 39,14 - 2842: 38,14 - 2843: 37,14 - 2844: 36,14 - 2845: 34,14 - 2846: 35,14 - 2847: 33,14 - 2848: 32,14 - 2849: 31,14 - 2850: 29,14 - 2851: 30,14 - 3198: 21,-48 - 3199: 20,-48 - 3363: -16,23 - 3374: 41,14 - 3375: 40,14 + 2731: 25,9 + 2753: 25,16 + 2754: 24,16 + 2755: 23,16 + 2756: 21,16 + 2757: 22,16 + 2759: 17,16 + 2760: 16,16 + 2771: 12,16 + 2772: 11,16 + 2779: 6,12 + 2780: 7,12 + 2782: 5,12 + 2832: 41,4 + 2837: 39,14 + 2838: 38,14 + 2839: 37,14 + 2840: 36,14 + 2841: 34,14 + 2842: 35,14 + 2843: 33,14 + 2844: 32,14 + 2845: 31,14 + 2846: 29,14 + 2847: 30,14 + 3194: 21,-48 + 3195: 20,-48 + 3359: -16,23 + 3370: 41,14 + 3371: 40,14 - node: color: '#EFB34196' id: MiniTileWhiteLineS @@ -5510,22 +5535,29 @@ entities: 2574: -52,-21 2577: -52,-7 2578: -53,-7 - 2596: -62,-26 - 2597: -61,-26 - 2598: -61,-26 - 2599: -60,-26 - 2600: -59,-26 - 2601: -58,-26 - 2602: -57,-26 - 2603: -56,-26 - 2604: -55,-26 - 2616: -72,-27 - 2617: -73,-27 - 2618: -74,-27 - 3299: -29,-18 - 3300: -30,-18 - 3301: -31,-18 - 3303: -25,-18 + 2594: -62,-26 + 2595: -61,-26 + 2596: -61,-26 + 2597: -60,-26 + 2598: -59,-26 + 2599: -58,-26 + 2600: -57,-26 + 2601: -56,-26 + 2602: -55,-26 + 2612: -72,-27 + 2613: -73,-27 + 2614: -74,-27 + 3295: -29,-18 + 3296: -30,-18 + 3297: -31,-18 + 3299: -25,-18 + - node: + color: '#EFB341B1' + id: MiniTileWhiteLineS + decals: + 4092: -52,-26 + 4093: -53,-26 + 4094: -54,-26 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineS @@ -5537,23 +5569,23 @@ entities: color: '#258CC0EA' id: MiniTileWhiteLineW decals: - 3769: 2,-50 - 3770: 2,-49 - 3771: 2,-48 - 3772: 2,-47 - 3782: -27,-59 - 3783: -27,-60 - 3784: -27,-61 + 3765: 2,-50 + 3766: 2,-49 + 3767: 2,-48 + 3768: 2,-47 + 3778: -27,-59 + 3779: -27,-60 + 3780: -27,-61 - node: color: '#334E6DC8' id: MiniTileWhiteLineW decals: - 2955: 20,-25 - 2956: 20,-24 - 2957: 18,-22 - 2973: 34,-25 - 2974: 34,-26 - 2977: 34,-31 + 2951: 20,-25 + 2952: 20,-24 + 2953: 18,-22 + 2969: 34,-25 + 2970: 34,-26 + 2973: 34,-31 - node: color: '#478C5DDC' id: MiniTileWhiteLineW @@ -5571,14 +5603,14 @@ entities: color: '#52B4E963' id: MiniTileWhiteLineW decals: - 3260: 69,-49 + 3256: 69,-49 - node: color: '#52B4E9B7' id: MiniTileWhiteLineW decals: - 3731: 44,7 - 3732: 44,6 - 3733: 44,5 + 3727: 44,7 + 3728: 44,6 + 3729: 44,5 - node: color: '#52B4E9CD' id: MiniTileWhiteLineW @@ -5600,74 +5632,74 @@ entities: color: '#707070B7' id: MiniTileWhiteLineW decals: - 3565: 22,-73 + 3561: 22,-73 - node: color: '#73C2A496' id: MiniTileWhiteLineW decals: - 2635: -26,-33 - 2636: -26,-34 - 2637: -26,-35 - 2638: -26,-36 - 2639: -34,-34 - 2640: -34,-35 - 2668: -41,-34 - 2669: -41,-35 - 2670: -41,-36 - 2678: -33,-39 - 2679: -33,-40 - 2680: -33,-41 - 2686: -36,-41 - 2704: -36,-53 - 2705: -36,-51 - 2706: -36,-50 - 2707: -36,-52 - 2708: -36,-49 - 2709: -36,-48 + 2631: -26,-33 + 2632: -26,-34 + 2633: -26,-35 + 2634: -26,-36 + 2635: -34,-34 + 2636: -34,-35 + 2664: -41,-34 + 2665: -41,-35 + 2666: -41,-36 + 2674: -33,-39 + 2675: -33,-40 + 2676: -33,-41 + 2682: -36,-41 + 2700: -36,-53 + 2701: -36,-51 + 2702: -36,-50 + 2703: -36,-52 + 2704: -36,-49 + 2705: -36,-48 - node: color: '#787878B7' id: MiniTileWhiteLineW decals: - 3611: 29,-79 - 3612: 29,-80 - 3627: 29,-92 - 3628: 29,-91 - 3629: 29,-90 - 3630: 29,-89 - 3631: 29,-88 - 3637: 27,-82 - 3638: 27,-83 - 3639: 27,-84 - 3640: 27,-85 - 3641: 27,-86 - 3652: 47,-75 - 3653: 47,-74 - 3654: 47,-73 - 3678: 47,-79 - 3679: 47,-80 - 3680: 47,-82 - 3681: 47,-81 - 3682: 47,-83 - 3683: 47,-84 - 3684: 47,-85 - 3685: 47,-86 - 3686: 47,-88 - 3687: 47,-87 - 3688: 47,-89 - 3689: 47,-90 - 3690: 47,-91 - 3691: 47,-92 + 3607: 29,-79 + 3608: 29,-80 + 3623: 29,-92 + 3624: 29,-91 + 3625: 29,-90 + 3626: 29,-89 + 3627: 29,-88 + 3633: 27,-82 + 3634: 27,-83 + 3635: 27,-84 + 3636: 27,-85 + 3637: 27,-86 + 3648: 47,-75 + 3649: 47,-74 + 3650: 47,-73 + 3674: 47,-79 + 3675: 47,-80 + 3676: 47,-82 + 3677: 47,-81 + 3678: 47,-83 + 3679: 47,-84 + 3680: 47,-85 + 3681: 47,-86 + 3682: 47,-88 + 3683: 47,-87 + 3684: 47,-89 + 3685: 47,-90 + 3686: 47,-91 + 3687: 47,-92 - node: color: '#92CCA4BD' id: MiniTileWhiteLineW decals: - 3542: 13,-84 - 3543: 13,-85 + 3538: 13,-84 + 3539: 13,-85 - node: color: '#95BCA4FF' id: MiniTileWhiteLineW decals: - 3580: 13,-83 + 3576: 13,-83 - node: color: '#A4610696' id: MiniTileWhiteLineW @@ -5712,34 +5744,34 @@ entities: 1011: 48,-56 1029: 41,-47 1030: 42,-49 - 3109: 70,-34 - 3110: 70,-35 - 3111: 70,-36 - 3112: 70,-37 - 3234: 67,-49 - 3235: 74,-49 - 3245: 76,-47 - 3246: 76,-46 - 3247: 76,-45 - 3491: 60,-33 - 3492: 60,-34 - 3493: 60,-35 - 3494: 60,-36 + 3105: 70,-34 + 3106: 70,-35 + 3107: 70,-36 + 3108: 70,-37 + 3230: 67,-49 + 3231: 74,-49 + 3241: 76,-47 + 3242: 76,-46 + 3243: 76,-45 + 3487: 60,-33 + 3488: 60,-34 + 3489: 60,-35 + 3490: 60,-36 - node: color: '#D381C9AB' id: MiniTileWhiteLineW decals: - 3192: 70,-38 + 3188: 70,-38 - node: color: '#D381C9C0' id: MiniTileWhiteLineW decals: - 3172: 59,-45 + 3168: 59,-45 - node: color: '#D4D4D40F' id: MiniTileWhiteLineW decals: - 3187: 53,-36 + 3183: 53,-36 - node: color: '#D4D4D428' id: MiniTileWhiteLineW @@ -5756,35 +5788,35 @@ entities: color: '#DE3A3A96' id: MiniTileWhiteLineW decals: - 2740: 24,12 - 2741: 24,11 - 2742: 24,10 - 2762: 20,17 - 2792: 4,16 - 2793: 4,15 - 2794: 4,13 - 2795: 4,14 - 2838: 40,5 - 2839: 40,6 - 2840: 40,7 - 2853: 28,21 - 2854: 28,20 - 2855: 28,19 - 2856: 28,18 - 2857: 28,17 - 2858: 28,15 - 3134: -17,-22 - 3135: -17,-23 - 3202: 19,-47 - 3364: -17,24 - 3365: -17,25 - 3366: -17,26 - 3722: 40,13 - 3723: 40,12 - 3724: 40,11 - 3725: 40,10 - 3726: 40,9 - 3727: 40,8 + 2736: 24,12 + 2737: 24,11 + 2738: 24,10 + 2758: 20,17 + 2788: 4,16 + 2789: 4,15 + 2790: 4,13 + 2791: 4,14 + 2834: 40,5 + 2835: 40,6 + 2836: 40,7 + 2849: 28,21 + 2850: 28,20 + 2851: 28,19 + 2852: 28,18 + 2853: 28,17 + 2854: 28,15 + 3130: -17,-22 + 3131: -17,-23 + 3198: 19,-47 + 3360: -17,24 + 3361: -17,25 + 3362: -17,26 + 3718: 40,13 + 3719: 40,12 + 3720: 40,11 + 3721: 40,10 + 3722: 40,9 + 3723: 40,8 - node: color: '#EFB34196' id: MiniTileWhiteLineW @@ -5828,21 +5860,21 @@ entities: 2569: -56,-17 2570: -56,-18 2571: -55,-20 - 2608: -63,-25 - 2621: -75,-25 - 2622: -75,-26 - 3283: -33,-12 - 3284: -33,-11 - 3297: -30,-11 - 3304: -26,-17 - 3305: -26,-16 - 3306: -26,-15 - 3326: -40,-7 - 3327: -40,-8 - 3328: -40,-9 - 3357: -43,-7 - 3976: -33,-14 - 3977: -33,-13 + 2604: -63,-25 + 2617: -75,-25 + 2618: -75,-26 + 3279: -33,-12 + 3280: -33,-11 + 3293: -30,-11 + 3300: -26,-17 + 3301: -26,-16 + 3302: -26,-15 + 3322: -40,-7 + 3323: -40,-8 + 3324: -40,-9 + 3353: -43,-7 + 3972: -33,-14 + 3973: -33,-13 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineW @@ -5854,60 +5886,60 @@ entities: color: '#646C6447' id: MonoOverlay decals: - 3939: -20,-19 - 3940: -20,-23 - 3941: -20,-11 - 3942: -20,-28 - 3943: -16,-27 - 3944: -20,-35 - 3945: -10,-27 - 3946: -5,-33 - 3947: -5,-25 - 3948: 1,-27 - 3949: 8,-27 - 3950: -1,-43 - 3951: -12,-43 - 3952: -19,-43 - 3953: -20,-37 - 3954: 33,-3 - 3955: 43,1 - 3956: 52,-2 - 3957: 32,7 + 3935: -20,-19 + 3936: -20,-23 + 3937: -20,-11 + 3938: -20,-28 + 3939: -16,-27 + 3940: -20,-35 + 3941: -10,-27 + 3942: -5,-33 + 3943: -5,-25 + 3944: 1,-27 + 3945: 8,-27 + 3946: -1,-43 + 3947: -12,-43 + 3948: -19,-43 + 3949: -20,-37 + 3950: 33,-3 + 3951: 43,1 + 3952: 52,-2 + 3953: 32,7 - node: color: '#646C6447' id: OffsetCheckerAOverlay decals: - 3958: -4,-26 - 3959: -5,-28 + 3954: -4,-26 + 3955: -5,-28 - node: color: '#8259640C' id: OffsetCheckerBOverlay decals: - 3960: -32,9 - 3961: -33,9 - 3962: -34,9 - 3963: -34,10 - 3964: -31,10 - 3965: -31,9 - 3966: -31,8 - 3967: -30,10 - 3968: -30,9 + 3956: -32,9 + 3957: -33,9 + 3958: -34,9 + 3959: -34,10 + 3960: -31,10 + 3961: -31,9 + 3962: -31,8 + 3963: -30,10 + 3964: -30,9 - node: color: '#FFFFFF03' id: OffsetOverlay decals: - 3908: -41,15 - 3909: -41,14 - 3910: -41,13 - 3911: -40,13 - 3912: -40,14 - 3913: -40,15 - 3914: -37,15 - 3915: -37,14 - 3916: -37,13 - 3917: -36,13 - 3918: -36,14 - 3919: -36,15 + 3904: -41,15 + 3905: -41,14 + 3906: -41,13 + 3907: -40,13 + 3908: -40,14 + 3909: -40,15 + 3910: -37,15 + 3911: -37,14 + 3912: -37,13 + 3913: -36,13 + 3914: -36,14 + 3915: -36,15 - node: color: '#FFFFFFFF' id: OriginStationSign1 @@ -5977,47 +6009,47 @@ entities: color: '#3B000098' id: PavementVerticalCheckerAOverlay decals: - 3920: -39,6 - 3921: -39,5 - 3922: -39,4 - 3923: -39,3 - 3924: -38,3 - 3925: -38,4 - 3926: -38,5 - 3927: -38,6 + 3916: -39,6 + 3917: -39,5 + 3918: -39,4 + 3919: -39,3 + 3920: -38,3 + 3921: -38,4 + 3922: -38,5 + 3923: -38,6 - node: color: '#476F6433' id: PavementVerticalCheckerAOverlay decals: - 3969: -42,-13 - 3970: -43,-11 - 3971: -42,-7 - 3972: -43,-8 - 3973: -39,-11 - 3974: -30,-13 - 3975: -29,-15 + 3965: -42,-13 + 3966: -43,-11 + 3967: -42,-7 + 3968: -43,-8 + 3969: -39,-11 + 3970: -30,-13 + 3971: -29,-15 - node: color: '#00000093' id: PavementVerticalCheckerBOverlay decals: - 3928: -39,6 - 3929: -38,6 - 3930: -39,5 - 3931: -38,5 - 3932: -39,4 - 3933: -38,4 - 3934: -39,3 - 3935: -38,3 + 3924: -39,6 + 3925: -38,6 + 3926: -39,5 + 3927: -38,5 + 3928: -39,4 + 3929: -38,4 + 3930: -39,3 + 3931: -38,3 - node: color: '#EFB34160' id: QuarterTileOverlayGreyscale decals: - 3054: -15,-5 + 3050: -15,-5 - node: color: '#EFB34160' id: QuarterTileOverlayGreyscale180 decals: - 3048: -25,6 + 3044: -25,6 - node: color: '#FFFFFF79' id: QuarterTileOverlayGreyscale180 @@ -6027,12 +6059,12 @@ entities: color: '#EFB34153' id: QuarterTileOverlayGreyscale270 decals: - 3073: -15,6 + 3069: -15,6 - node: color: '#EFB34150' id: QuarterTileOverlayGreyscale90 decals: - 3079: -25,-5 + 3075: -25,-5 - node: color: '#FFFFFF79' id: QuarterTileOverlayGreyscale90 @@ -6045,8 +6077,8 @@ entities: 506: -10.301918,53.89685 507: -9.380043,53.8031 508: -3.5987926,53.818726 - 3864: -8.789691,17.921444 - 3865: -4.6178155,17.827694 + 3860: -8.789691,17.921444 + 3861: -4.6178155,17.827694 - node: color: '#FFFFFFFF' id: Rock03 @@ -6056,9 +6088,9 @@ entities: 482: -7.1241894,49.888622 509: -4.3331676,54.14685 510: -8.959863,49.049328 - 2983: 6.230663,0.73506033 - 2984: 11.183787,0.86006033 - 2985: 10.168162,0.37568533 + 2979: 6.230663,0.73506033 + 2980: 11.183787,0.86006033 + 2981: 10.168162,0.37568533 - node: color: '#FFFFFFFF' id: Rock04 @@ -6068,26 +6100,26 @@ entities: 485: -4.0786057,48.216747 486: -7.6469474,55.2557 487: -6.2719474,53.567944 - 3279: -36,6 - 3280: -32,5 - 3281: -31,3 + 3275: -36,6 + 3276: -32,5 + 3277: -31,3 - node: color: '#FFFFFFFF' id: Rock05 decals: - 2986: 11.168162,0.25068533 + 2982: 11.168162,0.25068533 - node: color: '#FFFFFFFF' id: Rock06 decals: - 3276: -42,3 - 3278: -35,4 - 3282: -33,3 + 3272: -42,3 + 3274: -35,4 + 3278: -33,3 - node: color: '#FFFFFFFF' id: Rock07 decals: - 3277: -40,5 + 3273: -40,5 - node: color: '#FFFFFFFF' id: SpaceStationSign1 @@ -6129,10 +6161,10 @@ entities: decals: 415: -9,-45 416: -1,-45 - 3161: 77.48695,-34.5492 - 3162: 77.50258,-37.51795 - 3394: -9,-52 - 3395: -1,-52 + 3157: 77.48695,-34.5492 + 3158: 77.50258,-37.51795 + 3390: -9,-52 + 3391: -1,-52 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale @@ -6173,7 +6205,7 @@ entities: color: '#D4D4D47C' id: ThreeQuarterTileOverlayGreyscale270 decals: - 3378: 4,-60 + 3374: 4,-60 - node: color: '#D4D4D496' id: ThreeQuarterTileOverlayGreyscale270 @@ -6209,12 +6241,12 @@ entities: color: '#FFFFFFFF' id: VentSmall decals: - 3208: 62,-44 + 3204: 62,-44 - node: color: '#A46106FF' id: WarnBox decals: - 3384: -13,-13 + 3380: -13,-13 - node: color: '#FFFFFFFF' id: WarnBox @@ -6223,103 +6255,103 @@ entities: 378: -52,20 394: -52,33 395: -52,31 - 3385: -11,-13 - 3387: -41,18 + 3381: -11,-13 + 3383: -41,18 - node: color: '#FFFFFF06' id: WarnCornerGreyscaleSW decals: - 3896: -41,13 - 3902: -37,13 + 3892: -41,13 + 3898: -37,13 - node: color: '#FFFFFF06' id: WarnCornerNE decals: - 3897: -36,15 - 3899: -40,15 + 3893: -36,15 + 3895: -40,15 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 3126: -40,-59 - 3156: 54,-62 - 3159: 78,-34 - 3160: 78,-37 - 4018: -50,-37 + 3122: -40,-59 + 3152: 54,-62 + 3155: 78,-34 + 3156: 78,-37 + 4014: -50,-37 - node: color: '#FFFFFF06' id: WarnCornerNW decals: - 3898: -41,15 - 3903: -37,15 + 3894: -41,15 + 3899: -37,15 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 3127: -38,-59 - 3155: 56,-61 - 3157: 77,-34 - 3158: 77,-37 + 3123: -38,-59 + 3151: 56,-61 + 3153: 77,-34 + 3154: 77,-37 - node: color: '#FFFFFF06' id: WarnCornerSE decals: - 3900: -40,13 - 3901: -36,13 + 3896: -40,13 + 3897: -36,13 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: - 3163: 78,-38 - 3164: 78,-35 - 3889: -72,-40 + 3159: 78,-38 + 3160: 78,-35 + 3885: -72,-40 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 3165: 77,-35 - 3166: 77,-38 + 3161: 77,-35 + 3162: 77,-38 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 3149: 17,36 - 3150: 15,37 - 4013: -78,-43 - 4023: -50,-40 + 3145: 17,36 + 3146: 15,37 + 4009: -78,-43 + 4019: -50,-40 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 3151: 15,36 - 3152: 17,37 - 4012: -76,-43 + 3147: 15,36 + 3148: 17,37 + 4008: -76,-43 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 3147: 15,39 - 3148: 17,38 - 4011: -78,-41 + 3143: 15,39 + 3144: 17,38 + 4007: -78,-41 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: 347: 47,-58 - 2730: -38,-42 - 3145: 17,39 - 3146: 15,38 - 4014: -76,-41 + 2726: -38,-42 + 3141: 17,39 + 3142: 15,38 + 4010: -76,-41 - node: color: '#FFFFFFFF' id: WarnEndN decals: - 3894: -70,-46 + 3890: -70,-46 - node: color: '#FFFFFFFF' id: WarnEndS decals: - 3895: -70,-47 + 3891: -70,-47 - node: color: '#FFFFFFFF' id: WarnLineE @@ -6329,13 +6361,13 @@ entities: 295: -39,-55 2351: 38,-26 2352: 38,-27 - 3139: 15,38 - 3143: 17,37 - 3890: -72,-39 - 4010: -78,-42 - 4021: -50,-38 - 4022: -50,-39 - 4025: -72,-38 + 3135: 15,38 + 3139: 17,37 + 3886: -72,-39 + 4006: -78,-42 + 4017: -50,-38 + 4018: -50,-39 + 4021: -72,-38 - node: color: '#DE3A3A96' id: WarnLineGreyscaleE @@ -6346,14 +6378,14 @@ entities: color: '#FFFFFF06' id: WarnLineGreyscaleE decals: - 3906: -36,14 - 3907: -40,14 + 3902: -36,14 + 3903: -40,14 - node: color: '#FFFFFF06' id: WarnLineGreyscaleW decals: - 3904: -41,14 - 3905: -37,14 + 3900: -41,14 + 3901: -37,14 - node: color: '#FFFFFFFF' id: WarnLineN @@ -6368,17 +6400,17 @@ entities: 296: -39,-42 297: -40,-42 1009: 45,-58 - 3138: 14,38 - 3141: 16,39 - 3142: 18,38 - 3498: 63,-31 - 3499: 62,-31 - 3500: 61,-31 - 3751: -42,-42 - 3753: -41,-42 - 3891: -73,-40 - 3892: -74,-40 - 4009: -77,-41 + 3134: 14,38 + 3137: 16,39 + 3138: 18,38 + 3494: 63,-31 + 3495: 62,-31 + 3496: 61,-31 + 3747: -42,-42 + 3749: -41,-42 + 3887: -73,-40 + 3888: -74,-40 + 4005: -77,-41 - node: color: '#FFFFFFFF' id: WarnLineS @@ -6395,17 +6427,17 @@ entities: 287: -40,-54 288: -40,-55 1008: 47,-59 - 2723: -38,-43 - 2724: -38,-44 - 2725: -38,-45 - 2726: -38,-46 - 2727: -38,-47 - 2728: -37,-54 - 2729: -37,-58 - 2731: -42,-42 - 3136: 15,37 - 3140: 17,38 - 4008: -76,-42 + 2719: -38,-43 + 2720: -38,-44 + 2721: -38,-45 + 2722: -38,-46 + 2723: -38,-47 + 2724: -37,-54 + 2725: -37,-58 + 2727: -42,-42 + 3132: 15,37 + 3136: 17,38 + 4004: -76,-42 - node: color: '#FFFFFFFF' id: WarnLineW @@ -6414,241 +6446,241 @@ entities: 254: 53,-62 291: -40,-53 292: -39,-53 - 2721: -36,-41 - 2722: -35,-41 - 3137: 14,36 - 3144: 18,36 - 3154: 16,37 - 4007: -77,-43 - 4019: -49,-40 - 4020: -51,-37 + 2717: -36,-41 + 2718: -35,-41 + 3133: 14,36 + 3140: 18,36 + 3150: 16,37 + 4003: -77,-43 + 4015: -49,-40 + 4016: -51,-37 - node: color: '#A7A5FFFF' id: WoodTrimThinCornerNe decals: - 4034: 29,-35 - 4035: 29,-39 + 4030: 29,-35 + 4031: 29,-39 - node: color: '#B7AFC7FF' id: WoodTrimThinCornerNe decals: - 3511: 19,-82 - 3512: 18,-81 + 3507: 19,-82 + 3508: 18,-81 - node: color: '#D4D4D4E3' id: WoodTrimThinCornerNe decals: - 2868: 14,14 - 2894: 18,14 - 2905: 13,-11 - 2906: 12,-4 + 2864: 14,14 + 2890: 18,14 + 2901: 13,-11 + 2902: 12,-4 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: 2342: 34,-54 - 3840: 2,21 + 3836: 2,21 - node: color: '#A7A5FFFF' id: WoodTrimThinCornerNw decals: - 4031: 21,-35 + 4027: 21,-35 - node: color: '#B7AFC7FF' id: WoodTrimThinCornerNw decals: - 3516: 12,-81 + 3512: 12,-81 - node: color: '#D4D4D4E3' id: WoodTrimThinCornerNw decals: - 2866: 8,10 - 2867: 10,14 - 2895: 16,14 - 2907: 10,-4 + 2862: 8,10 + 2863: 10,14 + 2891: 16,14 + 2903: 10,-4 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: 2343: 28,-54 - 3838: -2,21 + 3834: -2,21 - node: color: '#A7A5FFFF' id: WoodTrimThinCornerSe decals: - 4036: 29,-37 - 4037: 29,-40 + 4032: 29,-37 + 4033: 29,-40 - node: color: '#B7AFC7FF' id: WoodTrimThinCornerSe decals: - 3513: 19,-86 - 3514: 18,-87 + 3509: 19,-86 + 3510: 18,-87 - node: color: '#D4D4D4E3' id: WoodTrimThinCornerSe decals: - 2865: 14,5 - 2903: 13,-13 + 2861: 14,5 + 2899: 13,-13 - node: color: '#D4D4D4E9' id: WoodTrimThinCornerSe decals: - 3262: 18,9 + 3258: 18,9 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: 2339: 34,-57 - 3839: 2,16 + 3835: 2,16 - node: color: '#A7A5FFFF' id: WoodTrimThinCornerSw decals: - 4032: 21,-38 - 4033: 22,-40 + 4028: 21,-38 + 4029: 22,-40 - node: color: '#B7AFC7FF' id: WoodTrimThinCornerSw decals: - 3515: 12,-87 + 3511: 12,-87 - node: color: '#D4D4D4E3' id: WoodTrimThinCornerSw decals: - 2869: 8,5 - 2904: 8,-13 + 2865: 8,5 + 2900: 8,-13 - node: color: '#D4D4D4E9' id: WoodTrimThinCornerSw decals: - 3263: 16,9 + 3259: 16,9 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: 2338: 28,-57 - 3836: -1,16 - 3837: -2,17 + 3832: -1,16 + 3833: -2,17 - node: color: '#A7A5FFFF' id: WoodTrimThinInnerNe decals: - 4057: 28,-39 + 4053: 28,-39 - node: color: '#D4D4D4E3' id: WoodTrimThinInnerNe decals: - 2927: 12,-11 + 2923: 12,-11 - node: color: '#D4D4D4E3' id: WoodTrimThinInnerNw decals: - 2892: 10,10 - 2928: 10,-5 + 2888: 10,10 + 2924: 10,-5 - node: color: '#A7A5FFFF' id: WoodTrimThinInnerSe decals: - 4058: 28,-37 + 4054: 28,-37 - node: color: '#A7A5FFFF' id: WoodTrimThinInnerSw decals: - 4056: 22,-38 + 4052: 22,-38 - node: color: '#D4D4D4E3' id: WoodTrimThinInnerSw decals: - 2893: 10,13 - 2929: 8,-8 + 2889: 10,13 + 2925: 8,-8 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: - 3853: -1,17 + 3849: -1,17 - node: color: '#A7A5FFFF' id: WoodTrimThinLineE decals: - 4044: 29,-36 - 4045: 28,-38 + 4040: 29,-36 + 4041: 28,-38 - node: color: '#B7AFC7FF' id: WoodTrimThinLineE decals: - 3522: 19,-83 - 3523: 19,-84 - 3524: 19,-85 + 3518: 19,-83 + 3519: 19,-84 + 3520: 19,-85 - node: color: '#D4D4D4E3' id: WoodTrimThinLineE decals: - 2874: 14,6 - 2875: 14,7 - 2876: 14,10 - 2877: 14,11 - 2878: 14,12 - 2879: 14,13 - 2896: 18,11 - 2897: 18,12 - 2898: 18,13 - 2920: 12,-5 - 2921: 12,-6 - 2922: 12,-7 - 2923: 12,-8 - 2924: 12,-9 - 2925: 12,-10 - 2926: 13,-12 + 2870: 14,6 + 2871: 14,7 + 2872: 14,10 + 2873: 14,11 + 2874: 14,12 + 2875: 14,13 + 2892: 18,11 + 2893: 18,12 + 2894: 18,13 + 2916: 12,-5 + 2917: 12,-6 + 2918: 12,-7 + 2919: 12,-8 + 2920: 12,-9 + 2921: 12,-10 + 2922: 13,-12 - node: color: '#D4D4D4E9' id: WoodTrimThinLineE decals: - 3265: 14,8 - 3266: 14,9 + 3261: 14,8 + 3262: 14,9 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: 2340: 34,-56 2341: 34,-55 - 3849: 2,17 - 3850: 2,18 - 3851: 2,19 - 3852: 2,20 + 3845: 2,17 + 3846: 2,18 + 3847: 2,19 + 3848: 2,20 - node: color: '#A7A5FFFF' id: WoodTrimThinLineN decals: - 4046: 22,-35 - 4047: 23,-35 - 4048: 24,-35 - 4049: 25,-35 - 4050: 26,-35 - 4051: 27,-35 - 4052: 28,-35 + 4042: 22,-35 + 4043: 23,-35 + 4044: 24,-35 + 4045: 25,-35 + 4046: 26,-35 + 4047: 27,-35 + 4048: 28,-35 - node: color: '#B7AFC7FF' id: WoodTrimThinLineN decals: - 3517: 13,-81 - 3518: 14,-81 - 3519: 15,-81 - 3520: 16,-81 - 3521: 17,-81 + 3513: 13,-81 + 3514: 14,-81 + 3515: 15,-81 + 3516: 16,-81 + 3517: 17,-81 - node: color: '#D4D4D4E3' id: WoodTrimThinLineN decals: - 2870: 9,10 - 2871: 11,14 - 2872: 12,14 - 2873: 13,14 - 2902: 17,14 - 2917: 7,-5 - 2918: 8,-5 - 2919: 9,-5 - 2930: 11,-4 + 2866: 9,10 + 2867: 11,14 + 2868: 12,14 + 2869: 13,14 + 2898: 17,14 + 2913: 7,-5 + 2914: 8,-5 + 2915: 9,-5 + 2926: 11,-4 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN @@ -6658,42 +6690,42 @@ entities: 2346: 31,-54 2347: 30,-54 2348: 29,-54 - 3841: -1,21 - 3842: 0,21 - 3843: 1,21 + 3837: -1,21 + 3838: 0,21 + 3839: 1,21 - node: color: '#A7A5FFFF' id: WoodTrimThinLineS decals: - 4038: 23,-40 - 4039: 24,-40 - 4040: 25,-40 - 4041: 26,-40 - 4042: 27,-40 - 4043: 28,-40 + 4034: 23,-40 + 4035: 24,-40 + 4036: 25,-40 + 4037: 26,-40 + 4038: 27,-40 + 4039: 28,-40 - node: color: '#B7AFC7FF' id: WoodTrimThinLineS decals: - 3530: 13,-87 - 3531: 14,-87 - 3532: 15,-87 - 3533: 16,-87 - 3534: 17,-87 + 3526: 13,-87 + 3527: 14,-87 + 3528: 15,-87 + 3529: 16,-87 + 3530: 17,-87 - node: color: '#D4D4D4E3' id: WoodTrimThinLineS decals: - 2887: 13,5 - 2888: 12,5 - 2889: 11,5 - 2890: 10,5 - 2891: 9,5 - 2908: 7,-8 - 2909: 9,-13 - 2910: 10,-13 - 2911: 11,-13 - 2912: 12,-13 + 2883: 13,5 + 2884: 12,5 + 2885: 11,5 + 2886: 10,5 + 2887: 9,5 + 2904: 7,-8 + 2905: 9,-13 + 2906: 10,-13 + 2907: 11,-13 + 2908: 12,-13 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS @@ -6702,56 +6734,56 @@ entities: 2335: 33,-57 2336: 30,-57 2337: 29,-57 - 3847: 0,16 - 3848: 1,16 + 3843: 0,16 + 3844: 1,16 - node: color: '#A7A5FFFF' id: WoodTrimThinLineW decals: - 4053: 21,-36 - 4054: 21,-37 - 4055: 22,-39 + 4049: 21,-36 + 4050: 21,-37 + 4051: 22,-39 - node: color: '#B7AFC7FF' id: WoodTrimThinLineW decals: - 3525: 12,-82 - 3526: 12,-83 - 3527: 12,-84 - 3528: 12,-86 - 3529: 12,-85 + 3521: 12,-82 + 3522: 12,-83 + 3523: 12,-84 + 3524: 12,-86 + 3525: 12,-85 - node: color: '#D4D4D4E3' id: WoodTrimThinLineW decals: - 2880: 10,13 - 2881: 10,12 - 2882: 10,11 - 2883: 8,9 - 2884: 8,8 - 2885: 8,7 - 2886: 8,6 - 2899: 16,13 - 2900: 16,12 - 2901: 16,11 - 2913: 8,-12 - 2914: 8,-11 - 2915: 8,-10 - 2916: 8,-9 + 2876: 10,13 + 2877: 10,12 + 2878: 10,11 + 2879: 8,9 + 2880: 8,8 + 2881: 8,7 + 2882: 8,6 + 2895: 16,13 + 2896: 16,12 + 2897: 16,11 + 2909: 8,-12 + 2910: 8,-11 + 2911: 8,-10 + 2912: 8,-9 - node: color: '#D4D4D4E9' id: WoodTrimThinLineW decals: - 3264: 16,10 + 3260: 16,10 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: 2349: 28,-55 2350: 28,-56 - 3844: -2,18 - 3845: -2,19 - 3846: -2,20 + 3840: -2,18 + 3841: -2,19 + 3842: -2,20 - node: color: '#FFFFFFFF' id: bushsnowa2 @@ -6762,7 +6794,7 @@ entities: color: '#D03F4A21' id: corgi decals: - 3981: 27,-19 + 3977: 27,-19 - node: color: '#FFFFFFFF' id: grasssnowb2 @@ -6795,7 +6827,7 @@ entities: color: '#EFB341F5' id: shop decals: - 3383: -49,12 + 3379: -49,12 - node: cleanable: True color: '#A4610696' @@ -9029,11 +9061,9 @@ entities: -12,16: 0: 65535 -12,17: - 0: 2287 - 2: 63248 + 0: 65535 -12,18: - 0: 15 - 2: 2032 + 0: 2047 -11,16: 0: 65535 -11,17: @@ -9073,11 +9103,9 @@ entities: -13,16: 0: 65535 -13,17: - 0: 2047 - 2: 59392 + 0: 61439 -13,18: - 0: 15 - 2: 3296 + 0: 3311 -7,8: 0: 65535 5,-24: @@ -10060,25 +10088,25 @@ entities: parent: 2 type: Transform - devices: - - 19686 + - 19720 - 812 - - 19482 - - 14822 - - 14882 - - 14884 - - 14906 - - 14905 - - 14907 - - 14662 - - 14640 - - 14641 - - 14639 - - 14637 - - 14638 - - 14911 - - 14813 - - 14812 - - 14811 + - 19516 + - 14858 + - 14918 + - 14920 + - 14942 + - 14941 + - 14943 + - 14699 + - 14677 + - 14678 + - 14676 + - 14674 + - 14675 + - 14947 + - 14849 + - 14848 + - 14847 type: DeviceList - uid: 5 components: @@ -10086,15 +10114,15 @@ entities: parent: 2 type: Transform - devices: - - 19718 - - 19448 + - 19752 + - 19483 - 836 - - 14832 - - 14877 - - 14831 - - 14902 - - 14869 - - 14863 + - 14868 + - 14913 + - 14867 + - 14938 + - 14905 + - 14899 type: DeviceList - uid: 6 components: @@ -10102,22 +10130,22 @@ entities: parent: 2 type: Transform - devices: - - 19738 + - 19772 - 839 - - 19451 - - 19687 - - 14774 - - 14773 - - 14857 - - 14797 - - 14794 - - 14828 - - 14850 - - 14870 - - 14801 - - 14835 - - 14807 - - 14844 + - 19486 + - 19721 + - 14810 + - 14809 + - 14893 + - 14833 + - 14830 + - 14864 + - 14886 + - 14906 + - 14837 + - 14871 + - 14843 + - 14880 type: DeviceList - uid: 7 components: @@ -10126,24 +10154,24 @@ entities: type: Transform - devices: - 852 - - 19746 - - 19518 - - 19755 - - 19519 - - 19754 - - 19510 - - 19753 - - 19512 - - 19513 - - 19752 - - 19514 - - 19751 - - 19515 - - 19750 - - 19516 - - 19749 - - 19517 - - 19748 + - 19780 + - 19552 + - 19789 + - 19553 + - 19788 + - 19544 + - 19787 + - 19546 + - 19547 + - 19786 + - 19548 + - 19785 + - 19549 + - 19784 + - 19550 + - 19783 + - 19551 + - 19782 type: DeviceList - uid: 8 components: @@ -10152,8 +10180,8 @@ entities: type: Transform - devices: - 871 - - 19609 - - 19845 + - 19643 + - 19879 type: DeviceList - uid: 9 components: @@ -10162,24 +10190,24 @@ entities: type: Transform - devices: - 837 - - 19676 - - 19436 - - 15013 - - 15014 - - 15011 - - 15012 - - 14672 - - 14832 - - 14877 - - 14831 - - 14879 + - 19710 + - 19471 + - 15049 + - 15050 + - 15047 + - 15048 + - 14709 + - 14868 + - 14913 + - 14867 + - 14915 + - 14888 + - 14890 - 14852 - - 14854 - - 14816 - - 14802 + - 14838 + - 14887 - 14851 - - 14815 - - 15022 + - 15058 type: DeviceList - uid: 10 components: @@ -10188,18 +10216,18 @@ entities: type: Transform - devices: - 841 - - 19447 - - 19725 - - 14908 - - 14868 - - 14909 - - 14878 - - 14850 - - 14870 - - 14801 - - 14874 - - 14903 + - 19482 + - 19759 + - 14944 - 14904 + - 14945 + - 14914 + - 14886 + - 14906 + - 14837 + - 14910 + - 14939 + - 14940 type: DeviceList - uid: 11 components: @@ -10208,9 +10236,9 @@ entities: type: Transform - devices: - 924 - - 19674 - - 19487 - - 14843 + - 19708 + - 19521 + - 14879 type: DeviceList - uid: 12 components: @@ -10219,19 +10247,19 @@ entities: type: Transform - devices: - 876 - - 19796 - - 19559 - - 14947 - - 14965 - - 14865 - - 14789 + - 19830 + - 19593 + - 14983 + - 15001 - 14901 + - 14825 + - 14937 + - 15043 + - 15044 + - 15045 + - 14980 - 15007 - 15008 - - 15009 - - 14944 - - 14971 - - 14972 type: DeviceList - uid: 13 components: @@ -10240,20 +10268,20 @@ entities: parent: 2 type: Transform - devices: - - 19481 - - 19708 + - 19515 + - 19742 - 865 - - 14843 - - 14846 - - 14871 - - 15005 - - 14842 - - 14825 - - 14856 - - 14800 - - 14827 - - 14855 - - 14894 + - 14879 + - 14882 + - 14907 + - 15041 + - 14878 + - 14861 + - 14892 + - 14836 + - 14863 + - 14891 + - 14930 type: DeviceList - uid: 14 components: @@ -10262,15 +10290,15 @@ entities: type: Transform - devices: - 896 - - 19535 - - 19772 - - 14929 - - 14785 - - 14784 - - 14675 - - 14930 - - 15041 - - 15042 + - 19569 + - 19806 + - 14965 + - 14821 + - 14820 + - 14712 + - 14966 + - 15076 + - 15077 type: DeviceList - uid: 15 components: @@ -10278,11 +10306,11 @@ entities: parent: 2 type: Transform - devices: - - 14677 - - 14676 + - 14714 + - 14713 - 894 - - 19767 - - 14925 + - 19801 + - 14961 type: DeviceList - uid: 16 components: @@ -10291,7 +10319,7 @@ entities: type: Transform - devices: - 851 - - 19542 + - 19576 type: DeviceList - uid: 17 components: @@ -10305,17 +10333,17 @@ entities: type: Transform - devices: - 857 - - 19865 - - 19630 - - 15071 - - 15070 - - 15064 - - 15063 - - 15062 - - 15054 - - 15053 - - 15067 - - 15066 + - 19899 + - 19664 + - 15106 + - 15105 + - 15099 + - 15098 + - 15097 + - 15089 + - 15088 + - 15102 + - 15101 type: DeviceList - uid: 19 components: @@ -10323,11 +10351,11 @@ entities: parent: 2 type: Transform - devices: - - 19844 + - 19878 - 860 - - 19605 - - 14710 - - 14707 + - 19639 + - 14746 + - 14743 type: DeviceList - uid: 20 components: @@ -10335,30 +10363,30 @@ entities: parent: 2 type: Transform - devices: - - 19848 - - 19444 + - 19882 + - 19479 - 816 - - 19612 - - 19677 - - 14823 - - 14897 - - 15021 - - 14822 - - 14882 - - 14884 - - 14649 - - 14934 + - 19646 + - 19711 + - 14859 - 14933 - - 14932 - - 14889 - - 14924 - - 14861 - - 14886 - - 14808 - - 14830 - - 14912 - - 14910 - - 14752 + - 15057 + - 14858 + - 14918 + - 14920 + - 14686 + - 14970 + - 14969 + - 14968 + - 14925 + - 14960 + - 14897 + - 14922 + - 14844 + - 14866 + - 14948 + - 14946 + - 14788 type: DeviceList - uid: 21 components: @@ -10366,25 +10394,25 @@ entities: parent: 2 type: Transform - devices: - - 19473 - - 19723 + - 19507 + - 19757 - 838 - - 14816 - - 14854 - - 14879 - 14852 - - 14908 - - 14868 - - 14909 - - 14874 - - 14828 - - 14794 - - 14793 - - 14824 - - 14817 - - 14803 - - 14795 + - 14890 + - 14915 + - 14888 + - 14944 + - 14904 + - 14945 + - 14910 + - 14864 + - 14830 + - 14829 - 14860 + - 14853 + - 14839 + - 14831 + - 14896 type: DeviceList - uid: 22 components: @@ -10392,25 +10420,25 @@ entities: parent: 2 type: Transform - devices: - - 19567 + - 19601 - 861 - - 19549 - - 19785 - - 14984 - - 14985 - - 14986 - - 15013 - - 15014 - - 15011 - - 15012 - - 15004 - - 15002 - - 15003 - - 14946 - - 14943 - - 14881 - - 15015 - - 14659 + - 19583 + - 19819 + - 15020 + - 15021 + - 15022 + - 15049 + - 15050 + - 15047 + - 15048 + - 15040 + - 15038 + - 15039 + - 14982 + - 14979 + - 14917 + - 15051 + - 14696 type: DeviceList - uid: 23 components: @@ -10419,17 +10447,17 @@ entities: type: Transform - devices: - 862 - - 19439 - - 19672 - - 14800 - - 14827 - - 14855 - - 14899 - - 14880 - - 14818 - - 14792 - - 14888 - - 14814 + - 19474 + - 19706 + - 14836 + - 14863 + - 14891 + - 14935 + - 14916 + - 14854 + - 14828 + - 14924 + - 14850 type: DeviceList - uid: 24 components: @@ -10438,20 +10466,20 @@ entities: type: Transform - devices: - 866 - - 19724 - - 19479 - - 15035 - - 15019 - - 15018 - - 15017 - - 14799 - - 14848 - - 14633 - - 14635 - - 14645 - - 14651 - - 14665 - - 14798 + - 19758 + - 19513 + - 15070 + - 15055 + - 15054 + - 15053 + - 14835 + - 14884 + - 14670 + - 14672 + - 14682 + - 14688 + - 14702 + - 14834 type: DeviceList - uid: 25 components: @@ -10460,26 +10488,26 @@ entities: type: Transform - devices: - 814 - - 19699 - - 19465 - - 14885 - - 14890 - - 14898 - - 14896 - - 15034 - - 14837 - - 14838 - - 14883 - - 14957 - - 14956 - - 14958 - - 14964 - - 14892 + - 19733 + - 19499 + - 14921 + - 14926 + - 14934 + - 14932 + - 15069 - 14873 - - 14805 - - 14810 + - 14874 + - 14919 + - 14993 + - 14992 - 14994 - - 14763 + - 15000 + - 14928 + - 14909 + - 14841 + - 14846 + - 15030 + - 14799 type: DeviceList - uid: 26 components: @@ -10487,11 +10515,11 @@ entities: parent: 2 type: Transform - devices: - - 19850 - - 19613 + - 19884 + - 19647 - 872 - - 14966 - - 14967 + - 15002 + - 15003 type: DeviceList - uid: 27 components: @@ -10500,16 +10528,16 @@ entities: type: Transform - devices: - 874 - - 19816 - - 19577 - - 14682 - - 14683 - - 14940 - - 14941 - - 14687 - - 14686 - - 14966 - - 14967 + - 19850 + - 19611 + - 14719 + - 14720 + - 14976 + - 14977 + - 14724 + - 14723 + - 15002 + - 15003 type: DeviceList - uid: 28 components: @@ -10517,25 +10545,25 @@ entities: parent: 2 type: Transform - devices: - - 19698 - - 19437 + - 19732 + - 19472 - 815 - - 14839 - - 14656 - - 14867 - - 14952 - - 14953 - - 14643 - - 14840 - - 14996 - - 15000 - - 14959 - - 15024 - - 14841 + - 14875 + - 14693 + - 14903 + - 14988 + - 14989 + - 14680 + - 14876 + - 15032 + - 15036 - 14995 - - 15025 - - 15023 - - 15029 + - 15060 + - 14877 + - 15031 + - 15061 + - 15059 + - 15065 type: DeviceList - uid: 29 components: @@ -10543,14 +10571,14 @@ entities: parent: 2 type: Transform - devices: - - 14626 - - 14630 - - 14631 - - 14629 - 14663 - - 14658 - - 19729 - - 19494 + - 14667 + - 14668 + - 14666 + - 14700 + - 14695 + - 19763 + - 19528 - 877 type: DeviceList - uid: 30 @@ -10560,14 +10588,14 @@ entities: type: Transform - devices: - 853 - - 19560 - - 19800 - - 15103 - - 15104 - - 15105 - - 15100 - - 15101 - - 15102 + - 19594 + - 19834 + - 15137 + - 15138 + - 15139 + - 15134 + - 15135 + - 15136 type: DeviceList - uid: 31 components: @@ -10575,13 +10603,13 @@ entities: parent: 2 type: Transform - devices: - - 14939 - - 14921 - - 14920 - - 14919 + - 14975 + - 14957 + - 14956 + - 14955 - 850 - - 19530 - - 19765 + - 19564 + - 19799 type: DeviceList - uid: 32 components: @@ -10589,22 +10617,22 @@ entities: parent: 2 type: Transform - devices: - - 19847 - - 19611 + - 19881 + - 19645 - 835 - - 15007 - - 15008 - - 15009 - - 14834 - - 14864 + - 15043 + - 15044 + - 15045 + - 14870 - 14900 - - 14863 - - 14869 - - 14902 + - 14936 + - 14899 - 14905 - - 14906 - - 14907 - - 14648 + - 14938 + - 14941 + - 14942 + - 14943 + - 14685 type: DeviceList - uid: 33 components: @@ -10612,19 +10640,19 @@ entities: parent: 2 type: Transform - devices: - - 14792 - - 14888 - - 14814 - - 14891 - - 14849 - - 14836 - - 14875 - - 14853 - - 14820 - - 14821 - - 19691 + - 14828 + - 14924 + - 14850 + - 14927 + - 14885 + - 14872 + - 14911 + - 14889 + - 14856 + - 14857 + - 19725 - 878 - - 19491 + - 19525 type: DeviceList - uid: 34 components: @@ -10634,19 +10662,19 @@ entities: type: Transform - devices: - 863 - - 19455 - - 19707 - - 14793 - - 14824 - - 14817 - - 14803 - - 14797 - - 14857 - - 14858 - - 14876 - - 14899 - - 14880 - - 14818 + - 19490 + - 19741 + - 14829 + - 14860 + - 14853 + - 14839 + - 14833 + - 14893 + - 14894 + - 14912 + - 14935 + - 14916 + - 14854 type: DeviceList - uid: 35 components: @@ -10655,8 +10683,8 @@ entities: type: Transform - devices: - 833 - - 19717 - - 19489 + - 19751 + - 19523 type: DeviceList - uid: 36 components: @@ -10665,8 +10693,8 @@ entities: type: Transform - devices: - 833 - - 19717 - - 19489 + - 19751 + - 19523 type: DeviceList - uid: 37 components: @@ -10674,13 +10702,13 @@ entities: parent: 2 type: Transform - devices: - - 19731 - - 19498 + - 19765 + - 19532 - 880 - - 19721 - - 19486 - - 19452 - - 19720 + - 19755 + - 19520 + - 19487 + - 19754 type: DeviceList - uid: 38 components: @@ -10688,19 +10716,19 @@ entities: parent: 2 type: Transform - devices: - - 19503 + - 19537 - 819 - - 19737 - - 14631 - - 14629 - - 14853 - - 14820 - - 14821 - - 14625 - - 14624 - - 14886 - - 14808 - - 14830 + - 19771 + - 14668 + - 14666 + - 14889 + - 14856 + - 14857 + - 14662 + - 14661 + - 14922 + - 14844 + - 14866 type: DeviceList - uid: 39 components: @@ -10708,9 +10736,9 @@ entities: parent: 2 type: Transform - devices: - - 19503 + - 19537 - 819 - - 19737 + - 19771 type: DeviceList - uid: 40 components: @@ -10718,15 +10746,15 @@ entities: parent: 2 type: Transform - devices: - - 19679 + - 19713 - 843 - - 19488 - - 14878 - - 14681 - - 15022 - - 14815 + - 19522 + - 14914 + - 14718 + - 15058 - 14851 - - 14802 + - 14887 + - 14838 type: DeviceList - uid: 41 components: @@ -10735,18 +10763,18 @@ entities: type: Transform - devices: - 848 - - 19522 - - 19762 - - 14871 - - 14846 - - 15005 - - 14887 - - 14919 - - 14920 - - 14921 - - 15076 - - 15077 + - 19556 + - 19796 + - 14907 + - 14882 + - 15041 + - 14923 + - 14955 + - 14956 + - 14957 - 15111 + - 15112 + - 15145 type: DeviceList - uid: 42 components: @@ -10754,17 +10782,17 @@ entities: parent: 2 type: Transform - devices: - - 14989 - - 14988 - - 14990 - - 14991 - - 14998 - - 14881 - - 14943 - - 14946 + - 15025 + - 15024 + - 15026 + - 15027 + - 15034 + - 14917 + - 14979 + - 14982 - 881 - - 19600 - - 19833 + - 19634 + - 19867 type: DeviceList - uid: 43 components: @@ -10773,13 +10801,13 @@ entities: type: Transform - devices: - 882 - - 19602 - - 19842 - - 15001 - - 14997 - - 14990 - - 14991 - - 14998 + - 19636 + - 19876 + - 15037 + - 15033 + - 15026 + - 15027 + - 15034 type: DeviceList - uid: 44 components: @@ -10787,8 +10815,8 @@ entities: parent: 2 type: Transform - devices: - - 19839 - - 19607 + - 19873 + - 19641 - 883 type: DeviceList - uid: 45 @@ -10797,12 +10825,12 @@ entities: parent: 2 type: Transform - devices: - - 19588 - - 19828 + - 19622 + - 19862 - 884 - - 15090 - - 15092 - - 14845 + - 15125 + - 15127 + - 14881 type: DeviceList - uid: 46 components: @@ -10810,11 +10838,11 @@ entities: parent: 2 type: Transform - devices: - - 19592 + - 19626 - 885 - - 15090 - - 15092 - - 14845 + - 15125 + - 15127 + - 14881 type: DeviceList - uid: 47 components: @@ -10822,9 +10850,9 @@ entities: parent: 2 type: Transform - devices: - - 19586 + - 19620 - 886 - - 19827 + - 19861 type: DeviceList - uid: 48 components: @@ -10832,18 +10860,18 @@ entities: parent: 2 type: Transform - devices: - - 19584 - - 19824 + - 19618 + - 19858 - 888 - - 14983 - - 14982 - - 14922 - - 15048 - - 15049 - - 14984 - - 14985 - - 14986 - - 14987 + - 15019 + - 15018 + - 14958 + - 15083 + - 15084 + - 15020 + - 15021 + - 15022 + - 15023 type: DeviceList - uid: 49 components: @@ -10852,15 +10880,15 @@ entities: type: Transform - devices: - 870 - - 19802 - - 14973 - - 14974 - - 14961 - - 14960 - - 14976 - - 14975 - - 14717 - - 14945 + - 19836 + - 15009 + - 15010 + - 14997 + - 14996 + - 15012 + - 15011 + - 14753 + - 14981 type: DeviceList - uid: 50 components: @@ -10869,13 +10897,13 @@ entities: type: Transform - devices: - 892 - - 14963 - - 14962 - - 19565 - - 14718 - - 19805 - - 14979 - - 15031 + - 14999 + - 14998 + - 19599 + - 14754 + - 19839 + - 15015 + - 15066 type: DeviceList - uid: 51 components: @@ -10884,13 +10912,12 @@ entities: type: Transform - devices: - 891 - - 19810 - - 19570 - - 14692 - - 14693 - - 15030 - - 14969 - - 14968 + - 19844 + - 19604 + - 14729 + - 14730 + - 15005 + - 15004 type: DeviceList - uid: 52 components: @@ -10898,14 +10925,14 @@ entities: parent: 2 type: Transform - devices: - - 19812 + - 19846 - 890 - - 19573 - - 14968 - - 14969 - - 14980 - - 15010 - - 14688 + - 19607 + - 15004 + - 15005 + - 15016 + - 15046 + - 14725 type: DeviceList - uid: 53 components: @@ -10914,9 +10941,9 @@ entities: type: Transform - devices: - 889 - - 14745 - - 14970 - - 14788 + - 14781 + - 15006 + - 14824 type: DeviceList - uid: 54 components: @@ -10925,8 +10952,8 @@ entities: type: Transform - devices: - 893 - - 19803 - - 19563 + - 19837 + - 19597 type: DeviceList - uid: 55 components: @@ -10935,18 +10962,18 @@ entities: type: Transform - devices: - 856 - - 19768 - - 19531 - - 14925 - - 14928 - - 14937 - - 14926 - - 14927 - - 14931 - - 14935 - - 14936 - - 15039 - - 15040 + - 19802 + - 19565 + - 14961 + - 14964 + - 14973 + - 14962 + - 14963 + - 14967 + - 14971 + - 14972 + - 15074 + - 15075 type: DeviceList - uid: 56 components: @@ -10954,12 +10981,12 @@ entities: parent: 2 type: Transform - devices: - - 19541 - - 19777 - - 19778 + - 19575 + - 19811 + - 19812 - 855 - - 14935 - - 14936 + - 14971 + - 14972 type: DeviceList - uid: 57 components: @@ -10967,9 +10994,9 @@ entities: parent: 2 type: Transform - devices: - - 14939 - - 19774 - - 19538 + - 14975 + - 19808 + - 19572 - 907 type: DeviceList - uid: 58 @@ -10979,9 +11006,9 @@ entities: type: Transform - devices: - 897 - - 19775 - - 19539 - - 14930 + - 19809 + - 19573 + - 14966 type: DeviceList - uid: 59 components: @@ -10990,10 +11017,10 @@ entities: type: Transform - devices: - 901 - - 19581 - - 19823 - - 15078 - - 15079 + - 19615 + - 19857 + - 15113 + - 15114 type: DeviceList - uid: 60 components: @@ -11001,8 +11028,8 @@ entities: parent: 2 type: Transform - devices: - - 19846 - - 19610 + - 19880 + - 19644 - 900 type: DeviceList - uid: 61 @@ -11011,21 +11038,21 @@ entities: parent: 2 type: Transform - devices: - - 19761 - - 19527 - - 19678 - - 19526 + - 19795 + - 19561 + - 19712 + - 19560 - 849 - - 14666 - - 14655 - - 14636 - - 14913 - - 14799 - - 14848 - - 14917 - - 14826 - - 15077 - - 15076 + - 14703 + - 14692 + - 14673 + - 14949 + - 14835 + - 14884 + - 14953 + - 14862 + - 15112 + - 15111 type: DeviceList - uid: 62 components: @@ -11033,14 +11060,14 @@ entities: parent: 2 type: Transform - devices: - - 19715 + - 19749 - 847 - - 19458 - - 15035 - - 15019 - - 15018 - - 15017 - - 14913 + - 19493 + - 15070 + - 15055 + - 15054 + - 15053 + - 14949 type: DeviceList - uid: 63 components: @@ -11049,17 +11076,17 @@ entities: type: Transform - devices: - 864 - - 19689 - - 19446 - - 14645 - - 14635 - - 14633 - - 14842 - - 14825 - - 14856 - - 14858 - - 14876 - - 14714 + - 19723 + - 19481 + - 14682 + - 14672 + - 14670 + - 14878 + - 14861 + - 14892 + - 14894 + - 14912 + - 14750 type: DeviceList - uid: 64 components: @@ -11068,11 +11095,11 @@ entities: type: Transform - devices: - 824 - - 19704 - - 19442 - - 14847 - - 14895 - - 15038 + - 19738 + - 19477 + - 14883 + - 14931 + - 15073 type: DeviceList - uid: 65 components: @@ -11080,12 +11107,12 @@ entities: parent: 2 type: Transform - devices: - - 19705 - - 19477 + - 19739 + - 19511 - 822 - - 15028 - - 14895 - - 14847 + - 15064 + - 14931 + - 14883 type: DeviceList - uid: 66 components: @@ -11094,8 +11121,8 @@ entities: type: Transform - devices: - 854 - - 19794 - - 19556 + - 19828 + - 19590 type: DeviceList - uid: 67 components: @@ -11103,10 +11130,10 @@ entities: parent: 2 type: Transform - devices: - - 19820 - - 19580 + - 19854 + - 19614 - 903 - - 14981 + - 15017 type: DeviceList - uid: 68 components: @@ -11120,10 +11147,10 @@ entities: type: Transform - devices: - 906 - - 19647 - - 19897 - - 15110 - - 15109 + - 19681 + - 19931 + - 15144 + - 15143 type: DeviceList - uid: 70 components: @@ -11136,26 +11163,26 @@ entities: parent: 2 type: Transform - devices: - - 19856 + - 19890 - 908 - - 19620 - - 14739 - - 14736 - - 14738 - - 14737 - - 15048 - - 15049 - - 15056 - - 15057 - - 15058 - - 15064 - - 15063 - - 15062 - - 14735 - - 15045 - - 15046 - - 15047 - - 14715 + - 19654 + - 14775 + - 14772 + - 14774 + - 14773 + - 15083 + - 15084 + - 15091 + - 15092 + - 15093 + - 15099 + - 15098 + - 15097 + - 14771 + - 15080 + - 15081 + - 15082 + - 14751 type: DeviceList - uid: 72 components: @@ -11164,17 +11191,17 @@ entities: type: Transform - devices: - 909 - - 19625 - - 19864 - - 15056 - - 15057 - - 15058 - - 15051 - - 15052 - - 15072 - - 15060 - - 15061 - - 15059 + - 19659 + - 19898 + - 15091 + - 15092 + - 15093 + - 15086 + - 15087 + - 15107 + - 15095 + - 15096 + - 15094 type: DeviceList - uid: 73 components: @@ -11183,30 +11210,30 @@ entities: parent: 2 type: Transform - ShutdownSubscribers: - - 19869 - - 19626 + - 19903 + - 19660 - 858 - - 15068 - - 15069 - - 15073 - - 15070 - - 15071 - - 15109 - - 15065 - - 15043 + - 15103 + - 15104 + - 15108 + - 15105 + - 15106 + - 15143 + - 15100 + - 15078 type: DeviceNetwork - devices: - - 19869 - - 19626 + - 19903 + - 19660 - 858 - - 15068 - - 15069 - - 15073 - - 15070 - - 15071 - - 15109 - - 15065 - - 15043 + - 15103 + - 15104 + - 15108 + - 15105 + - 15106 + - 15143 + - 15100 + - 15078 type: DeviceList - uid: 74 components: @@ -11215,14 +11242,14 @@ entities: type: Transform - devices: - 859 - - 19631 - - 19870 - - 15061 - - 15060 - - 15059 - - 15074 - - 15068 - - 15069 + - 19665 + - 19904 + - 15096 + - 15095 + - 15094 + - 15109 + - 15103 + - 15104 type: DeviceList - uid: 75 components: @@ -11230,8 +11257,8 @@ entities: parent: 2 type: Transform - devices: - - 19638 - - 19877 + - 19672 + - 19911 - 911 type: DeviceList - uid: 76 @@ -11241,24 +11268,24 @@ entities: type: Transform - devices: - 811 - - 19701 - - 19467 - - 14639 - - 14638 - - 14637 - - 14662 - - 14640 - - 14641 + - 19735 + - 19501 + - 14676 + - 14675 + - 14674 + - 14699 + - 14677 + - 14678 + - 15028 + - 15029 + - 14994 - 14992 - 14993 - - 14958 - - 14956 - - 14957 - - 14838 - - 14837 - - 14883 - - 14728 - - 14763 + - 14874 + - 14873 + - 14919 + - 14764 + - 14799 type: DeviceList - uid: 77 components: @@ -11266,13 +11293,13 @@ entities: parent: 2 type: Transform - devices: - - 19733 + - 19767 - 821 - - 19499 - - 15037 - - 15028 - - 14790 - - 14730 + - 19533 + - 15072 + - 15064 + - 14826 + - 14766 type: DeviceList - uid: 78 components: @@ -11280,19 +11307,19 @@ entities: parent: 2 type: Transform - ShutdownSubscribers: - - 15123 - - 15124 - - 15126 - - 19665 - - 19907 + - 15157 + - 15158 + - 15160 + - 19699 + - 19941 - 934 type: DeviceNetwork - devices: - - 15123 - - 15124 - - 15126 - - 19665 - - 19907 + - 15157 + - 15158 + - 15160 + - 19699 + - 19941 - 934 type: DeviceList - uid: 79 @@ -11301,11 +11328,11 @@ entities: parent: 2 type: Transform - devices: - - 19727 + - 19761 - 879 - - 19490 - - 14891 - - 14669 + - 19524 + - 14927 + - 14706 type: DeviceList - uid: 80 components: @@ -11313,14 +11340,14 @@ entities: parent: 2 type: Transform - devices: - - 19639 - - 19878 + - 19673 + - 19912 - 898 - - 14747 - - 14748 + - 14783 + - 14784 - 915 - - 14678 - - 14746 + - 14715 + - 14782 type: DeviceList - uid: 81 components: @@ -11328,12 +11355,12 @@ entities: parent: 2 type: Transform - devices: - - 14749 - - 14750 - - 15082 - - 15083 + - 14785 + - 14786 + - 15117 + - 15118 - 914 - - 19880 + - 19914 type: DeviceList - uid: 82 components: @@ -11341,13 +11368,13 @@ entities: parent: 2 type: Transform - devices: - - 19642 + - 19676 - 899 - - 14785 - - 14784 - - 14675 - - 15084 - - 15085 + - 14821 + - 14820 + - 14712 + - 15119 + - 15120 type: DeviceList - uid: 83 components: @@ -11355,15 +11382,15 @@ entities: parent: 2 type: Transform - devices: - - 15089 - - 14834 - - 14864 + - 15124 + - 14870 - 14900 - - 14872 - - 14791 - - 14866 - - 19675 - - 19443 + - 14936 + - 14908 + - 14827 + - 14902 + - 19709 + - 19478 - 834 type: DeviceList - uid: 84 @@ -11372,15 +11399,15 @@ entities: parent: 2 type: Transform - devices: - - 19787 + - 19821 - 868 - - 19551 - - 15020 - - 14829 - - 14833 - - 14973 - - 14974 - - 14716 + - 19585 + - 15056 + - 14865 + - 14869 + - 15009 + - 15010 + - 14752 type: DeviceList - uid: 85 components: @@ -11389,20 +11416,20 @@ entities: type: Transform - devices: - 869 - - 19789 - - 19553 - - 14833 - - 14829 - - 15004 - - 15002 - - 15003 - - 14942 - - 14971 - - 14944 - - 14972 - - 15086 - - 15087 - - 14751 + - 19823 + - 19587 + - 14869 + - 14865 + - 15040 + - 15038 + - 15039 + - 14978 + - 15007 + - 14980 + - 15008 + - 15121 + - 15122 + - 14787 type: DeviceList - uid: 86 components: @@ -11410,15 +11437,15 @@ entities: parent: 2 type: Transform - devices: - - 19895 + - 19929 - 922 - - 19656 - - 15100 - - 15101 - - 15102 - - 15099 - - 15098 - - 15097 + - 19690 + - 15134 + - 15135 + - 15136 + - 15133 + - 15132 + - 15131 type: DeviceList - uid: 87 components: @@ -11426,9 +11453,9 @@ entities: parent: 2 type: Transform - devices: - - 15096 - - 19657 - - 19894 + - 15130 + - 19691 + - 19928 - 923 type: DeviceList - uid: 88 @@ -11438,13 +11465,13 @@ entities: parent: 2 type: Transform - devices: - - 19654 + - 19688 - 905 - - 19798 - - 15095 - - 15097 - - 15098 - - 15099 + - 19832 + - 15129 + - 15131 + - 15132 + - 15133 type: DeviceList - uid: 89 components: @@ -11454,11 +11481,11 @@ entities: type: Transform - devices: - 912 - - 19896 - - 19658 - - 15106 - - 15107 - - 15108 + - 19930 + - 19692 + - 15140 + - 15141 + - 15142 type: DeviceList - uid: 90 components: @@ -11468,11 +11495,11 @@ entities: type: Transform - devices: - 809 - - 14914 - - 15111 - - 15016 - - 19660 - - 19899 + - 14950 + - 15145 + - 15052 + - 19694 + - 19933 type: DeviceList - uid: 91 components: @@ -11481,23 +11508,23 @@ entities: parent: 2 type: Transform - devices: - - 14917 - - 14826 - - 19764 - - 19526 + - 14953 + - 14862 + - 19798 + - 19560 - 849 - - 19678 - - 19527 - - 19761 - - 15016 - - 15076 - - 15077 - - 14799 - - 14848 - - 14913 - - 14666 - - 14655 - - 14636 + - 19712 + - 19561 + - 19795 + - 15052 + - 15111 + - 15112 + - 14835 + - 14884 + - 14949 + - 14703 + - 14692 + - 14673 type: DeviceList - uid: 92 components: @@ -11506,11 +11533,11 @@ entities: type: Transform - devices: - 829 - - 14994 - - 14993 - - 14992 - - 19700 - - 19466 + - 15030 + - 15029 + - 15028 + - 19734 + - 19500 type: DeviceList - uid: 93 components: @@ -11519,11 +11546,11 @@ entities: parent: 2 type: Transform - devices: - - 19901 - - 19661 + - 19935 + - 19695 - 926 - - 15113 - - 15114 + - 15147 + - 15148 type: DeviceList - uid: 94 components: @@ -11532,21 +11559,21 @@ entities: type: Transform - ShutdownSubscribers: - 927 - - 19903 - - 19663 - - 14765 - - 14681 - - 14709 - - 14764 - type: DeviceNetwork - - devices: - - 927 - - 19903 - - 19663 - - 14765 - - 14681 - - 14709 - - 14764 + - 19937 + - 19697 + - 14801 + - 14718 + - 14745 + - 14800 + type: DeviceNetwork + - devices: + - 927 + - 19937 + - 19697 + - 14801 + - 14718 + - 14745 + - 14800 type: DeviceList - uid: 95 components: @@ -11554,17 +11581,17 @@ entities: parent: 2 type: Transform - ShutdownSubscribers: - - 14766 - - 14770 + - 14802 + - 14806 type: DeviceNetwork - devices: - 928 - - 19434 - - 19669 - - 15115 - - 15116 - - 14766 - - 14770 + - 19469 + - 19703 + - 15149 + - 15150 + - 14802 + - 14806 type: DeviceList - uid: 96 components: @@ -11573,11 +11600,11 @@ entities: parent: 2 type: Transform - ShutdownSubscribers: - - 19904 + - 19938 - 929 type: DeviceNetwork - devices: - - 19904 + - 19938 - 929 type: DeviceList - uid: 97 @@ -11588,11 +11615,11 @@ entities: type: Transform - ShutdownSubscribers: - 930 - - 19819 + - 19853 type: DeviceNetwork - devices: - 930 - - 19819 + - 19853 type: DeviceList - uid: 98 components: @@ -11601,19 +11628,19 @@ entities: type: Transform - ShutdownSubscribers: - 932 - - 19667 - - 19432 - - 15117 - - 15119 - - 15120 + - 19701 + - 19467 + - 15151 + - 15153 + - 15154 type: DeviceNetwork - devices: - 932 - - 19667 - - 19432 - - 15117 - - 15119 - - 15120 + - 19701 + - 19467 + - 15151 + - 15153 + - 15154 type: DeviceList - uid: 99 components: @@ -11623,17 +11650,17 @@ entities: type: Transform - ShutdownSubscribers: - 931 - - 19905 - - 19431 - - 15119 - - 15118 + - 19939 + - 19466 + - 15153 + - 15152 type: DeviceNetwork - devices: - 931 - - 19905 - - 19431 - - 15119 - - 15118 + - 19939 + - 19466 + - 15153 + - 15152 type: DeviceList - uid: 100 components: @@ -11642,17 +11669,17 @@ entities: type: Transform - ShutdownSubscribers: - 933 - - 19664 - - 19906 - - 15121 - - 15122 + - 19698 + - 19940 + - 15155 + - 15156 type: DeviceNetwork - devices: - 933 - - 19664 - - 19906 - - 15121 - - 15122 + - 19698 + - 19940 + - 15155 + - 15156 type: DeviceList - proto: AirAlarmElectronics entities: @@ -11717,7 +11744,7 @@ entities: parent: 2 type: Transform - links: - - 23846 + - 23896 type: DeviceLinkSink - uid: 112 components: @@ -11725,7 +11752,7 @@ entities: parent: 2 type: Transform - links: - - 23844 + - 23894 type: DeviceLinkSink - uid: 113 components: @@ -11734,7 +11761,7 @@ entities: parent: 2 type: Transform - links: - - 23845 + - 23895 type: DeviceLinkSink - uid: 114 components: @@ -11744,7 +11771,7 @@ entities: type: Transform - invokeCounter: 1 links: - - 23848 + - 23898 type: DeviceLinkSink - uid: 115 components: @@ -11753,7 +11780,7 @@ entities: parent: 2 type: Transform - links: - - 23849 + - 23899 type: DeviceLinkSink - uid: 116 components: @@ -11762,7 +11789,7 @@ entities: parent: 2 type: Transform - links: - - 23851 + - 23901 type: DeviceLinkSink - uid: 117 components: @@ -11818,6 +11845,8 @@ entities: entities: - uid: 124 components: + - name: wardens office + type: MetaData - rot: -1.5707963267948966 rad pos: 21.5,24.5 parent: 2 @@ -12265,7 +12294,7 @@ entities: entities: - uid: 194 components: - - name: substation + - name: PA smes type: MetaData - pos: -56.5,-22.5 parent: 2 @@ -12301,49 +12330,43 @@ entities: parent: 2 type: Transform - uid: 200 - components: - - rot: 3.141592653589793 rad - pos: -51.5,-21.5 - parent: 2 - type: Transform - - uid: 201 components: - pos: -40.5,-6.5 parent: 2 type: Transform - - uid: 202 + - uid: 201 components: - pos: -43.5,-5.5 parent: 2 type: Transform - - uid: 203 + - uid: 202 components: - pos: -69.5,-24.5 parent: 2 type: Transform - - uid: 204 + - uid: 203 components: - pos: -32.5,-19.5 parent: 2 type: Transform - - uid: 205 + - uid: 204 components: - pos: -31.5,-19.5 parent: 2 type: Transform - - uid: 206 + - uid: 205 components: - rot: 1.5707963267948966 rad pos: -53.5,-21.5 parent: 2 type: Transform - - uid: 207 + - uid: 206 components: - rot: 1.5707963267948966 rad pos: -54.5,-21.5 parent: 2 type: Transform - - uid: 208 + - uid: 207 components: - name: particle accelerator type: MetaData @@ -12351,44 +12374,44 @@ entities: pos: -63.5,-23.5 parent: 2 type: Transform - - uid: 209 + - uid: 208 components: - rot: -1.5707963267948966 rad pos: -40.5,-11.5 parent: 2 type: Transform - - uid: 210 + - uid: 209 components: - rot: -1.5707963267948966 rad pos: -40.5,-10.5 parent: 2 type: Transform - - uid: 211 + - uid: 210 components: - pos: -33.5,-11.5 parent: 2 type: Transform - - uid: 212 + - uid: 211 components: - pos: -33.5,-10.5 parent: 2 type: Transform - - uid: 213 + - uid: 212 components: - pos: -43.5,-6.5 parent: 2 type: Transform - - uid: 214 + - uid: 213 components: - pos: -64.5,-29.5 parent: 2 type: Transform - - uid: 215 + - uid: 214 components: - pos: -68.5,-29.5 parent: 2 type: Transform - - uid: 216 + - uid: 215 components: - name: electrical storage type: MetaData @@ -12396,227 +12419,237 @@ entities: pos: -13.5,38.5 parent: 2 type: Transform - - uid: 217 + - uid: 216 components: - rot: 1.5707963267948966 rad pos: -43.5,-22.5 parent: 2 type: Transform - - uid: 218 + - uid: 217 components: - pos: -40.5,-5.5 parent: 2 type: Transform - - uid: 219 + - uid: 218 components: - rot: 3.141592653589793 rad pos: -63.5,-30.5 parent: 2 type: Transform - - uid: 220 + - uid: 219 components: - rot: -1.5707963267948966 rad pos: -74.5,-41.5 parent: 2 type: Transform - - uid: 221 + - uid: 220 components: - pos: -69.5,-31.5 parent: 2 type: Transform - - uid: 222 + - uid: 221 components: - rot: 3.141592653589793 rad pos: -60.5,-26.5 parent: 2 type: Transform - - uid: 223 + - uid: 222 components: - rot: -1.5707963267948966 rad pos: -72.5,-33.5 parent: 2 type: Transform - - uid: 224 + - uid: 223 components: - rot: -1.5707963267948966 rad pos: -73.5,-33.5 parent: 2 type: Transform - - uid: 225 + - uid: 224 components: - rot: -1.5707963267948966 rad pos: -73.5,-36.5 parent: 2 type: Transform - - uid: 226 + - uid: 225 components: - rot: -1.5707963267948966 rad pos: -72.5,-36.5 parent: 2 type: Transform - - uid: 227 + - uid: 226 components: - rot: -1.5707963267948966 rad pos: -64.5,-45.5 parent: 2 type: Transform - - uid: 228 + - uid: 227 components: - pos: -64.5,-36.5 parent: 2 type: Transform - - uid: 229 + - uid: 228 components: - pos: -49.5,-23.5 parent: 2 type: Transform - - uid: 230 + - uid: 229 components: - pos: -64.5,-37.5 parent: 2 type: Transform - proto: AirlockEngineeringLocked entities: - - uid: 231 + - uid: 230 components: - pos: -58.5,-36.5 parent: 2 type: Transform - - uid: 232 + - uid: 231 components: - pos: -58.5,-37.5 parent: 2 type: Transform - - uid: 233 + - uid: 232 components: - pos: -19.5,-1.5 parent: 2 type: Transform - - uid: 234 + - uid: 233 components: - pos: -26.5,-14.5 parent: 2 type: Transform - - uid: 235 + - uid: 234 components: - - name: substation + - name: command substation type: MetaData - rot: 1.5707963267948966 rad pos: 17.5,-29.5 parent: 2 type: Transform - - uid: 236 + - uid: 235 components: + - name: medical substation + type: MetaData - pos: 9.5,-44.5 parent: 2 type: Transform - - uid: 237 + - uid: 236 components: + - name: detective substation + type: MetaData - rot: 3.141592653589793 rad pos: 12.5,-15.5 parent: 2 type: Transform - - uid: 238 + - uid: 237 components: - pos: -6.5,-19.5 parent: 2 type: Transform - - uid: 239 + - uid: 238 components: - - name: substation + - name: virology substation type: MetaData - pos: -11.5,-70.5 parent: 2 type: Transform - - uid: 240 + - uid: 239 components: - pos: 30.5,-3.5 parent: 2 type: Transform - - uid: 241 + - uid: 240 components: - name: gravity generator type: MetaData - pos: -19.5,-3.5 parent: 2 type: Transform - - uid: 242 + - uid: 241 components: - - name: solar + - name: south solar type: MetaData - pos: -1.5,-76.5 parent: 2 type: Transform - - uid: 243 + - uid: 242 components: - - name: substation + - name: medical substation type: MetaData - rot: 3.141592653589793 rad pos: 13.5,-57.5 parent: 2 type: Transform - - uid: 244 + - uid: 243 components: - name: substation type: MetaData - pos: 32.5,23.5 parent: 2 type: Transform - - uid: 245 + - uid: 244 components: - pos: 46.5,-0.5 parent: 2 type: Transform - - uid: 246 + - uid: 245 components: - pos: 63.5,27.5 parent: 2 type: Transform - - uid: 247 + - uid: 246 components: + - name: evac substation + type: MetaData - pos: 47.5,-6.5 parent: 2 type: Transform - - uid: 248 + - uid: 247 components: + - name: science substation + type: MetaData - rot: 3.141592653589793 rad pos: 38.5,-44.5 parent: 2 type: Transform - - uid: 249 + - uid: 248 components: - - name: substation + - name: engineering substation type: MetaData - pos: -27.5,-22.5 parent: 2 type: Transform - - uid: 250 + - uid: 249 components: + - name: engineering substation + type: MetaData - pos: -30.5,-23.5 parent: 2 type: Transform - - uid: 251 + - uid: 250 components: - - name: substation + - name: arrivals substation type: MetaData - pos: 42.5,-59.5 parent: 2 type: Transform - - uid: 252 + - uid: 251 components: - name: storage type: MetaData - pos: -41.5,-14.5 parent: 2 type: Transform - - uid: 253 + - uid: 252 components: - name: ame type: MetaData - pos: -43.5,-10.5 parent: 2 type: Transform - - uid: 254 + - uid: 253 components: - name: ame type: MetaData @@ -12624,54 +12657,54 @@ entities: pos: -43.5,-11.5 parent: 2 type: Transform - - uid: 255 + - uid: 254 components: - name: singularity type: MetaData - pos: -49.5,-6.5 parent: 2 type: Transform - - uid: 256 + - uid: 255 components: - name: singularity type: MetaData - pos: -49.5,-5.5 parent: 2 type: Transform - - uid: 257 + - uid: 256 components: - - name: substation + - name: atmos substation type: MetaData - pos: -27.5,-35.5 parent: 2 type: Transform - - uid: 258 + - uid: 257 components: - pos: -72.5,-27.5 parent: 2 type: Transform - - uid: 259 + - uid: 258 components: - - name: substation + - name: singularity substation type: MetaData - pos: -52.5,-8.5 parent: 2 type: Transform - - uid: 260 + - uid: 259 components: - - name: substation + - name: maints bar substation type: MetaData - pos: -29.5,-55.5 parent: 2 type: Transform - - uid: 261 + - uid: 260 components: - - name: substation + - name: cargo substation type: MetaData - pos: -21.5,15.5 parent: 2 type: Transform - - uid: 262 + - uid: 261 components: - name: substation type: MetaData @@ -12679,288 +12712,296 @@ entities: pos: 14.5,-59.5 parent: 2 type: Transform - - uid: 263 + - uid: 262 components: - - name: substation + - name: chapel substation type: MetaData - rot: 3.141592653589793 rad pos: -35.5,-2.5 parent: 2 type: Transform - - uid: 264 + - uid: 263 components: + - name: maints substation + type: MetaData - rot: -1.5707963267948966 rad pos: 49.5,28.5 parent: 2 type: Transform - - uid: 265 + - uid: 264 components: - - name: substation + - name: north maints substation type: MetaData - pos: -8.5,33.5 parent: 2 type: Transform - - uid: 266 + - uid: 265 components: - - name: substation + - name: ai substation type: MetaData - pos: -10.5,60.5 parent: 2 type: Transform - - uid: 267 + - uid: 266 components: + - name: robotics substation + type: MetaData - pos: 68.5,-60.5 parent: 2 type: Transform - - uid: 268 + - uid: 267 components: - pos: -21.5,0.5 parent: 2 type: Transform - - uid: 269 + - uid: 268 components: + - name: telecoms substation + type: MetaData - rot: 3.141592653589793 rad pos: 6.5,-21.5 parent: 2 type: Transform - - uid: 270 + - uid: 269 components: - pos: -41.5,-19.5 parent: 2 type: Transform - - uid: 271 + - uid: 270 components: + - name: teg substation + type: MetaData - rot: -1.5707963267948966 rad pos: -71.5,-35.5 parent: 2 type: Transform - - uid: 272 + - uid: 271 components: - pos: -49.5,-16.5 parent: 2 type: Transform - - uid: 273 + - uid: 272 components: - pos: -49.5,-17.5 parent: 2 type: Transform - proto: AirlockExternalGlass entities: - - uid: 274 + - uid: 273 components: - pos: -1.5,-80.5 parent: 2 type: Transform - - uid: 275 + - uid: 274 components: - pos: -57.5,-71.5 parent: 2 type: Transform - - uid: 276 + - uid: 275 components: - rot: 1.5707963267948966 rad pos: 66.5,-5.5 parent: 2 type: Transform - - uid: 277 + - uid: 276 components: - pos: 52.5,-14.5 parent: 2 type: Transform - - uid: 278 + - uid: 277 components: - pos: 76.5,-34.5 parent: 2 type: Transform - - uid: 279 + - uid: 278 components: - rot: -1.5707963267948966 rad pos: 32.5,-89.5 parent: 2 type: Transform - - uid: 280 + - uid: 279 components: - rot: -1.5707963267948966 rad pos: 30.5,-93.5 parent: 2 type: Transform - - uid: 281 + - uid: 280 components: - pos: -57.5,-81.5 parent: 2 type: Transform - - uid: 282 + - uid: 281 components: - pos: -57.5,-79.5 parent: 2 type: Transform - - uid: 283 + - uid: 282 components: - pos: -57.5,-73.5 parent: 2 type: Transform - - uid: 284 + - uid: 283 components: - rot: 1.5707963267948966 rad pos: 66.5,-3.5 parent: 2 type: Transform - - uid: 285 + - uid: 284 components: - rot: 1.5707963267948966 rad pos: 66.5,-11.5 parent: 2 type: Transform - - uid: 286 + - uid: 285 components: - rot: 1.5707963267948966 rad pos: 66.5,-13.5 parent: 2 type: Transform - - uid: 287 + - uid: 286 components: - pos: 27.5,45.5 parent: 2 type: Transform - - uid: 288 + - uid: 287 components: - pos: 21.5,45.5 parent: 2 type: Transform - - uid: 289 + - uid: 288 components: - rot: 3.141592653589793 rad pos: -17.5,68.5 parent: 2 type: Transform - - uid: 290 + - uid: 289 components: - pos: 16.5,41.5 parent: 2 type: Transform - - uid: 291 + - uid: 290 components: - pos: -7.5,-94.5 parent: 2 type: Transform - - uid: 292 + - uid: 291 components: - pos: -7.5,-89.5 parent: 2 type: Transform - - uid: 293 + - uid: 292 components: - pos: 67.5,-14.5 parent: 2 type: Transform - - uid: 294 + - uid: 293 components: - pos: 76.5,-36.5 parent: 2 type: Transform - - uid: 295 + - uid: 294 components: - pos: 76.5,-37.5 parent: 2 type: Transform - - uid: 296 + - uid: 295 components: - pos: 76.5,-33.5 parent: 2 type: Transform - - uid: 297 + - uid: 296 components: - rot: -1.5707963267948966 rad pos: 32.5,-82.5 parent: 2 type: Transform - - uid: 298 + - uid: 297 components: - pos: 6.5,-84.5 parent: 2 type: Transform - - uid: 299 + - uid: 298 components: - pos: 48.5,-93.5 parent: 2 type: Transform - - uid: 300 + - uid: 299 components: - rot: 1.5707963267948966 rad pos: 46.5,-82.5 parent: 2 type: Transform - - uid: 301 + - uid: 300 components: - rot: 1.5707963267948966 rad pos: 46.5,-89.5 parent: 2 type: Transform - - uid: 302 + - uid: 301 components: - rot: -1.5707963267948966 rad pos: 67.5,-16.5 parent: 2 type: Transform - - uid: 303 + - uid: 302 components: - rot: 3.141592653589793 rad pos: -37.5,41.5 parent: 2 type: Transform - - uid: 304 + - uid: 303 components: - rot: 3.141592653589793 rad pos: 6.5,-86.5 parent: 2 type: Transform - - uid: 305 + - uid: 304 components: - pos: 50.5,-82.5 parent: 2 type: Transform - - uid: 306 + - uid: 305 components: - pos: 50.5,-89.5 parent: 2 type: Transform - - uid: 307 + - uid: 306 components: - rot: 1.5707963267948966 rad pos: 33.5,-90.5 parent: 2 type: Transform - - uid: 308 + - uid: 307 components: - rot: 3.141592653589793 rad pos: 45.5,-81.5 parent: 2 type: Transform - - uid: 309 + - uid: 308 components: - rot: 3.141592653589793 rad pos: 33.5,-81.5 parent: 2 type: Transform - - uid: 310 + - uid: 309 components: - rot: 1.5707963267948966 rad pos: 45.5,-90.5 parent: 2 type: Transform - - uid: 311 + - uid: 310 components: - rot: 3.141592653589793 rad pos: -37.5,43.5 parent: 2 type: Transform - - uid: 312 + - uid: 311 components: - rot: 3.141592653589793 rad pos: -58.5,-54.5 parent: 2 type: Transform - - uid: 313 + - uid: 312 components: - rot: 3.141592653589793 rad pos: -60.5,-54.5 @@ -12968,201 +13009,201 @@ entities: type: Transform - proto: AirlockExternalGlassLocked entities: - - uid: 314 + - uid: 313 components: - pos: -1.5,-84.5 parent: 2 type: Transform - - uid: 315 + - uid: 314 components: - pos: 52.5,-16.5 parent: 2 type: Transform - - uid: 316 + - uid: 315 components: - pos: -57.5,-1.5 parent: 2 type: Transform - - uid: 317 + - uid: 316 components: - pos: -55.5,-1.5 parent: 2 type: Transform - - uid: 318 + - uid: 317 components: - rot: -1.5707963267948966 rad pos: -58.5,-18.5 parent: 2 type: Transform - - uid: 319 + - uid: 318 components: - pos: -46.5,-41.5 parent: 2 type: Transform - - uid: 320 + - uid: 319 components: - pos: -49.5,20.5 parent: 2 type: Transform - - uid: 321 + - uid: 320 components: - pos: -49.5,22.5 parent: 2 type: Transform - - uid: 322 + - uid: 321 components: - pos: -49.5,33.5 parent: 2 type: Transform - - uid: 323 + - uid: 322 components: - pos: -49.5,31.5 parent: 2 type: Transform - - uid: 324 + - uid: 323 components: - pos: -52.5,33.5 parent: 2 type: Transform - - uid: 325 + - uid: 324 components: - pos: -52.5,31.5 parent: 2 type: Transform - - uid: 326 + - uid: 325 components: - rot: -1.5707963267948966 rad pos: 63.5,30.5 parent: 2 type: Transform - - uid: 327 + - uid: 326 components: - pos: 69.5,36.5 parent: 2 type: Transform - - uid: 328 + - uid: 327 components: - pos: 75.5,36.5 parent: 2 type: Transform - - uid: 329 + - uid: 328 components: - pos: 77.5,36.5 parent: 2 type: Transform - - uid: 330 + - uid: 329 components: - pos: 67.5,36.5 parent: 2 type: Transform - - uid: 331 + - uid: 330 components: - pos: 63.5,32.5 parent: 2 type: Transform - - uid: 332 + - uid: 331 components: - pos: 29.5,41.5 parent: 2 type: Transform - - uid: 333 + - uid: 332 components: - pos: 29.5,43.5 parent: 2 type: Transform - - uid: 334 + - uid: 333 components: - pos: -12.5,71.5 parent: 2 type: Transform - - uid: 335 + - uid: 334 components: - pos: -13.5,71.5 parent: 2 type: Transform - - uid: 336 + - uid: 335 components: - pos: -21.5,71.5 parent: 2 type: Transform - - uid: 337 + - uid: 336 components: - pos: -22.5,71.5 parent: 2 type: Transform - - uid: 338 + - uid: 337 components: - rot: -1.5707963267948966 rad pos: -56.5,-18.5 parent: 2 type: Transform - - uid: 339 + - uid: 338 components: - pos: -35.5,-99.5 parent: 2 type: Transform - - uid: 340 + - uid: 339 components: - pos: -35.5,-101.5 parent: 2 type: Transform - - uid: 341 + - uid: 340 components: - rot: 1.5707963267948966 rad pos: -50.5,-58.5 parent: 2 type: Transform - - uid: 342 + - uid: 341 components: - pos: 68.5,-67.5 parent: 2 type: Transform - - uid: 343 + - uid: 342 components: - pos: 68.5,-69.5 parent: 2 type: Transform - - uid: 344 + - uid: 343 components: - rot: -1.5707963267948966 rad pos: -51.5,42.5 parent: 2 type: Transform - - uid: 345 + - uid: 344 components: - rot: -1.5707963267948966 rad pos: -51.5,43.5 parent: 2 type: Transform - - uid: 346 + - uid: 345 components: - rot: -1.5707963267948966 rad pos: -49.5,45.5 parent: 2 type: Transform - - uid: 347 + - uid: 346 components: - rot: -1.5707963267948966 rad pos: -49.5,47.5 parent: 2 type: Transform - - uid: 348 + - uid: 347 components: - pos: -75.5,-31.5 parent: 2 type: Transform - - uid: 349 + - uid: 348 components: - pos: -77.5,-31.5 parent: 2 type: Transform - - uid: 350 + - uid: 349 components: - rot: -1.5707963267948966 rad pos: -62.5,-45.5 parent: 2 type: Transform - - uid: 351 + - uid: 350 components: - rot: 3.141592653589793 rad pos: -63.5,-44.5 @@ -13170,25 +13211,25 @@ entities: type: Transform - proto: AirlockExternalGlassShuttleArrivals entities: - - uid: 352 + - uid: 351 components: - rot: 1.5707963267948966 rad pos: 34.5,-89.5 parent: 2 type: Transform - - uid: 353 + - uid: 352 components: - rot: -1.5707963267948966 rad pos: 44.5,-82.5 parent: 2 type: Transform - - uid: 354 + - uid: 353 components: - rot: -1.5707963267948966 rad pos: 44.5,-89.5 parent: 2 type: Transform - - uid: 355 + - uid: 354 components: - rot: 1.5707963267948966 rad pos: 34.5,-82.5 @@ -13196,25 +13237,25 @@ entities: type: Transform - proto: AirlockExternalGlassShuttleEmergencyLocked entities: - - uid: 356 + - uid: 355 components: - rot: 1.5707963267948966 rad pos: 69.5,-3.5 parent: 2 type: Transform - - uid: 357 + - uid: 356 components: - rot: 1.5707963267948966 rad pos: 69.5,-13.5 parent: 2 type: Transform - - uid: 358 + - uid: 357 components: - rot: 1.5707963267948966 rad pos: 69.5,-11.5 parent: 2 type: Transform - - uid: 359 + - uid: 358 components: - rot: 1.5707963267948966 rad pos: 69.5,-5.5 @@ -13222,67 +13263,67 @@ entities: type: Transform - proto: AirlockExternalGlassShuttleEscape entities: - - uid: 360 + - uid: 359 components: - rot: 3.141592653589793 rad pos: -17.5,70.5 parent: 2 type: Transform - - uid: 361 + - uid: 360 components: - pos: 48.5,-95.5 parent: 2 type: Transform - - uid: 362 + - uid: 361 components: - pos: 30.5,-95.5 parent: 2 type: Transform - proto: AirlockExternalGlassShuttleLocked entities: - - uid: 363 + - uid: 362 components: - rot: -1.5707963267948966 rad pos: -53.5,20.5 parent: 2 type: Transform - - uid: 364 + - uid: 363 components: - rot: -1.5707963267948966 rad pos: -53.5,22.5 parent: 2 type: Transform - - uid: 365 + - uid: 364 components: - rot: 3.141592653589793 rad pos: -13.5,75.5 parent: 2 type: Transform - - uid: 366 + - uid: 365 components: - rot: 3.141592653589793 rad pos: -12.5,75.5 parent: 2 type: Transform - - uid: 367 + - uid: 366 components: - rot: 3.141592653589793 rad pos: -21.5,75.5 parent: 2 type: Transform - - uid: 368 + - uid: 367 components: - rot: 3.141592653589793 rad pos: -22.5,75.5 parent: 2 type: Transform - - uid: 369 + - uid: 368 components: - rot: -1.5707963267948966 rad pos: -53.5,42.5 parent: 2 type: Transform - - uid: 370 + - uid: 369 components: - rot: -1.5707963267948966 rad pos: -53.5,43.5 @@ -13290,24 +13331,26 @@ entities: type: Transform - proto: AirlockFreezerKitchenHydroLocked entities: - - uid: 371 + - uid: 370 components: - pos: 0.5,10.5 parent: 2 type: Transform - - uid: 372 + - uid: 371 components: + - name: service + type: MetaData - pos: -9.5,15.5 parent: 2 type: Transform - - uid: 373 + - uid: 372 components: - pos: -1.5,14.5 parent: 2 type: Transform - proto: AirlockGlass entities: - - uid: 374 + - uid: 373 components: - name: lawyer office type: MetaData @@ -13315,59 +13358,59 @@ entities: pos: 35.5,-3.5 parent: 2 type: Transform - - uid: 375 + - uid: 374 components: - rot: 3.141592653589793 rad pos: -20.5,66.5 parent: 2 type: Transform - - uid: 376 + - uid: 375 components: - pos: 31.5,7.5 parent: 2 type: Transform - - uid: 377 + - uid: 376 components: - rot: 3.141592653589793 rad pos: 15.5,-38.5 parent: 2 type: Transform - - uid: 378 + - uid: 377 components: - pos: 19.5,-5.5 parent: 2 type: Transform - - uid: 379 + - uid: 378 components: - name: bar type: MetaData - pos: 10.5,4.5 parent: 2 type: Transform - - uid: 380 + - uid: 379 components: - rot: 1.5707963267948966 rad pos: 26.5,-15.5 parent: 2 type: Transform - - uid: 381 + - uid: 380 components: - rot: 1.5707963267948966 rad pos: 34.5,-19.5 parent: 2 type: Transform - - uid: 382 + - uid: 381 components: - rot: 3.141592653589793 rad pos: -0.5,-27.5 parent: 2 type: Transform - - uid: 383 + - uid: 382 components: - pos: -16.5,-42.5 parent: 2 type: Transform - - uid: 384 + - uid: 383 components: - name: youtool type: MetaData @@ -13375,118 +13418,118 @@ entities: pos: -21.5,-21.5 parent: 2 type: Transform - - uid: 385 + - uid: 384 components: - pos: 26.5,15.5 parent: 2 type: Transform - - uid: 386 + - uid: 385 components: - pos: 24.5,15.5 parent: 2 type: Transform - - uid: 387 + - uid: 386 components: - pos: -1.5,7.5 parent: 2 type: Transform - - uid: 388 + - uid: 387 components: - pos: 31.5,8.5 parent: 2 type: Transform - - uid: 389 + - uid: 388 components: - rot: -1.5707963267948966 rad pos: -3.5,-39.5 parent: 2 type: Transform - - uid: 390 + - uid: 389 components: - rot: -1.5707963267948966 rad pos: 24.5,-44.5 parent: 2 type: Transform - - uid: 391 + - uid: 390 components: - rot: -1.5707963267948966 rad pos: -5.5,-39.5 parent: 2 type: Transform - - uid: 392 + - uid: 391 components: - pos: 25.5,15.5 parent: 2 type: Transform - - uid: 393 + - uid: 392 components: - rot: -1.5707963267948966 rad pos: 15.5,7.5 parent: 2 type: Transform - - uid: 394 + - uid: 393 components: - rot: -1.5707963267948966 rad pos: 15.5,6.5 parent: 2 type: Transform - - uid: 395 + - uid: 394 components: - pos: 35.5,1.5 parent: 2 type: Transform - - uid: 396 + - uid: 395 components: - rot: 1.5707963267948966 rad pos: 16.5,-19.5 parent: 2 type: Transform - - uid: 397 + - uid: 396 components: - rot: 1.5707963267948966 rad pos: 15.5,-19.5 parent: 2 type: Transform - - uid: 398 + - uid: 397 components: - rot: 1.5707963267948966 rad pos: 14.5,-19.5 parent: 2 type: Transform - - uid: 399 + - uid: 398 components: - rot: 3.141592653589793 rad pos: 10.5,-27.5 parent: 2 type: Transform - - uid: 400 + - uid: 399 components: - rot: 3.141592653589793 rad pos: 10.5,-26.5 parent: 2 type: Transform - - uid: 401 + - uid: 400 components: - pos: 0.5,-50.5 parent: 2 type: Transform - - uid: 402 + - uid: 401 components: - pos: -0.5,-50.5 parent: 2 type: Transform - - uid: 403 + - uid: 402 components: - pos: 31.5,1.5 parent: 2 type: Transform - - uid: 404 + - uid: 403 components: - rot: 3.141592653589793 rad pos: 31.5,-6.5 parent: 2 type: Transform - - uid: 405 + - uid: 404 components: - name: lawyer office type: MetaData @@ -13494,244 +13537,244 @@ entities: pos: 38.5,-0.5 parent: 2 type: Transform - - uid: 406 + - uid: 405 components: - pos: -1.5,-50.5 parent: 2 type: Transform - - uid: 407 + - uid: 406 components: - rot: 3.141592653589793 rad pos: 10.5,-2.5 parent: 2 type: Transform - - uid: 408 + - uid: 407 components: - name: bar type: MetaData - pos: 11.5,4.5 parent: 2 type: Transform - - uid: 409 + - uid: 408 components: - rot: 1.5707963267948966 rad pos: 25.5,-15.5 parent: 2 type: Transform - - uid: 410 + - uid: 409 components: - pos: -16.5,-43.5 parent: 2 type: Transform - - uid: 411 + - uid: 410 components: - pos: -16.5,-41.5 parent: 2 type: Transform - - uid: 412 + - uid: 411 components: - rot: 3.141592653589793 rad pos: 10.5,-25.5 parent: 2 type: Transform - - uid: 413 + - uid: 412 components: - rot: 3.141592653589793 rad pos: -0.5,-25.5 parent: 2 type: Transform - - uid: 414 + - uid: 413 components: - rot: 1.5707963267948966 rad pos: 19.5,6.5 parent: 2 type: Transform - - uid: 415 + - uid: 414 components: - pos: 19.5,-4.5 parent: 2 type: Transform - - uid: 416 + - uid: 415 components: - pos: 19.5,-6.5 parent: 2 type: Transform - - uid: 417 + - uid: 416 components: - rot: -1.5707963267948966 rad pos: -4.5,-39.5 parent: 2 type: Transform - - uid: 418 + - uid: 417 components: - rot: 3.141592653589793 rad pos: 31.5,-4.5 parent: 2 type: Transform - - uid: 419 + - uid: 418 components: - rot: 1.5707963267948966 rad pos: 36.5,-19.5 parent: 2 type: Transform - - uid: 420 + - uid: 419 components: - pos: -20.5,-24.5 parent: 2 type: Transform - - uid: 421 + - uid: 420 components: - pos: 35.5,0.5 parent: 2 type: Transform - - uid: 422 + - uid: 421 components: - rot: 3.141592653589793 rad pos: 31.5,-5.5 parent: 2 type: Transform - - uid: 423 + - uid: 422 components: - pos: -3.5,-22.5 parent: 2 type: Transform - - uid: 424 + - uid: 423 components: - pos: -19.5,-24.5 parent: 2 type: Transform - - uid: 425 + - uid: 424 components: - rot: 1.5707963267948966 rad pos: 35.5,-19.5 parent: 2 type: Transform - - uid: 426 + - uid: 425 components: - pos: -5.5,-22.5 parent: 2 type: Transform - - uid: 427 + - uid: 426 components: - rot: 3.141592653589793 rad pos: 14.5,-38.5 parent: 2 type: Transform - - uid: 428 + - uid: 427 components: - rot: 1.5707963267948966 rad pos: 24.5,-15.5 parent: 2 type: Transform - - uid: 429 + - uid: 428 components: - rot: 3.141592653589793 rad pos: 11.5,-2.5 parent: 2 type: Transform - - uid: 430 + - uid: 429 components: - pos: 35.5,2.5 parent: 2 type: Transform - - uid: 431 + - uid: 430 components: - rot: -1.5707963267948966 rad pos: 25.5,-44.5 parent: 2 type: Transform - - uid: 432 + - uid: 431 components: - rot: -1.5707963267948966 rad pos: 26.5,-44.5 parent: 2 type: Transform - - uid: 433 + - uid: 432 components: - pos: 31.5,6.5 parent: 2 type: Transform - - uid: 434 + - uid: 433 components: - rot: 3.141592653589793 rad pos: 16.5,-38.5 parent: 2 type: Transform - - uid: 435 + - uid: 434 components: - pos: 1.5,53.5 parent: 2 type: Transform - - uid: 436 + - uid: 435 components: - pos: 0.5,53.5 parent: 2 type: Transform - - uid: 437 + - uid: 436 components: - pos: -0.5,53.5 parent: 2 type: Transform - - uid: 438 + - uid: 437 components: - pos: 40.5,-41.5 parent: 2 type: Transform - - uid: 439 + - uid: 438 components: - pos: 40.5,-42.5 parent: 2 type: Transform - - uid: 440 + - uid: 439 components: - pos: 40.5,-43.5 parent: 2 type: Transform - - uid: 441 + - uid: 440 components: - pos: 7.5,-43.5 parent: 2 type: Transform - - uid: 442 + - uid: 441 components: - pos: -4.5,-22.5 parent: 2 type: Transform - - uid: 443 + - uid: 442 components: - pos: 7.5,-42.5 parent: 2 type: Transform - - uid: 444 + - uid: 443 components: - pos: 7.5,-41.5 parent: 2 type: Transform - - uid: 445 + - uid: 444 components: - pos: -0.5,-26.5 parent: 2 type: Transform - - uid: 446 + - uid: 445 components: - name: Psychologist office type: MetaData - pos: -8.5,-40.5 parent: 2 type: Transform - - uid: 447 + - uid: 446 components: - rot: -1.5707963267948966 rad pos: -13.5,45.5 parent: 2 type: Transform - - uid: 448 + - uid: 447 components: - rot: -1.5707963267948966 rad pos: -13.5,46.5 parent: 2 type: Transform - - uid: 449 + - uid: 448 components: - name: visitor meeting type: MetaData @@ -13739,78 +13782,78 @@ entities: pos: 37.5,20.5 parent: 2 type: Transform - - uid: 450 + - uid: 449 components: - name: open library type: MetaData - pos: 43.5,19.5 parent: 2 type: Transform - - uid: 451 + - uid: 450 components: - name: open library type: MetaData - pos: 43.5,20.5 parent: 2 type: Transform - - uid: 452 + - uid: 451 components: - rot: 3.141592653589793 rad pos: 36.5,-38.5 parent: 2 type: Transform - - uid: 453 + - uid: 452 components: - rot: 3.141592653589793 rad pos: 35.5,-38.5 parent: 2 type: Transform - - uid: 454 + - uid: 453 components: - rot: 3.141592653589793 rad pos: 34.5,-38.5 parent: 2 type: Transform - - uid: 455 + - uid: 454 components: - rot: 3.141592653589793 rad pos: -14.5,66.5 parent: 2 type: Transform - - uid: 456 + - uid: 455 components: - rot: 3.141592653589793 rad pos: 51.5,-3.5 parent: 2 type: Transform - - uid: 457 + - uid: 456 components: - rot: 3.141592653589793 rad pos: 52.5,-3.5 parent: 2 type: Transform - - uid: 458 + - uid: 457 components: - rot: 3.141592653589793 rad pos: 53.5,-3.5 parent: 2 type: Transform - - uid: 459 + - uid: 458 components: - pos: -13.5,-27.5 parent: 2 type: Transform - - uid: 460 + - uid: 459 components: - pos: -13.5,-26.5 parent: 2 type: Transform - - uid: 461 + - uid: 460 components: - pos: -13.5,-25.5 parent: 2 type: Transform - - uid: 462 + - uid: 461 components: - name: courtroom type: MetaData @@ -13818,67 +13861,67 @@ entities: pos: 31.5,-57.5 parent: 2 type: Transform - - uid: 463 + - uid: 462 components: - pos: 30.5,-76.5 parent: 2 type: Transform - - uid: 464 + - uid: 463 components: - pos: 31.5,-76.5 parent: 2 type: Transform - - uid: 465 + - uid: 464 components: - pos: 29.5,-76.5 parent: 2 type: Transform - - uid: 466 + - uid: 465 components: - rot: 1.5707963267948966 rad pos: 32.5,-72.5 parent: 2 type: Transform - - uid: 467 + - uid: 466 components: - rot: 1.5707963267948966 rad pos: 46.5,-71.5 parent: 2 type: Transform - - uid: 468 + - uid: 467 components: - pos: 40.5,-69.5 parent: 2 type: Transform - - uid: 469 + - uid: 468 components: - pos: 39.5,-69.5 parent: 2 type: Transform - - uid: 470 + - uid: 469 components: - pos: 38.5,-69.5 parent: 2 type: Transform - - uid: 471 + - uid: 470 components: - rot: 3.141592653589793 rad pos: 35.5,-58.5 parent: 2 type: Transform - - uid: 472 + - uid: 471 components: - rot: 3.141592653589793 rad pos: 35.5,-59.5 parent: 2 type: Transform - - uid: 473 + - uid: 472 components: - rot: 3.141592653589793 rad pos: 35.5,-60.5 parent: 2 type: Transform - - uid: 474 + - uid: 473 components: - name: youtool type: MetaData @@ -13886,457 +13929,474 @@ entities: pos: 39.5,-57.5 parent: 2 type: Transform - - uid: 475 + - uid: 474 components: - pos: -7.5,-50.5 parent: 2 type: Transform - - uid: 476 + - uid: 475 components: - pos: -8.5,-50.5 parent: 2 type: Transform - - uid: 477 + - uid: 476 components: - pos: -9.5,-50.5 parent: 2 type: Transform - - uid: 478 + - uid: 477 components: - pos: -19.5,14.5 parent: 2 type: Transform - - uid: 479 + - uid: 478 components: - pos: -18.5,14.5 parent: 2 type: Transform - - uid: 480 + - uid: 479 components: - pos: -20.5,14.5 parent: 2 type: Transform - - uid: 481 + - uid: 480 components: - pos: -19.5,-39.5 parent: 2 type: Transform - - uid: 482 + - uid: 481 components: - pos: -20.5,-39.5 parent: 2 type: Transform - - uid: 483 + - uid: 482 components: - pos: -18.5,-39.5 parent: 2 type: Transform - - uid: 484 + - uid: 483 components: - pos: -18.5,-24.5 parent: 2 type: Transform - - uid: 485 + - uid: 484 components: - rot: -1.5707963267948966 rad pos: -18.5,-7.5 parent: 2 type: Transform - - uid: 486 + - uid: 485 components: - rot: -1.5707963267948966 rad pos: -19.5,-7.5 parent: 2 type: Transform - - uid: 487 + - uid: 486 components: - rot: -1.5707963267948966 rad pos: -20.5,-7.5 parent: 2 type: Transform - - uid: 488 + - uid: 487 components: - pos: -21.5,-12.5 parent: 2 type: Transform - - uid: 489 + - uid: 488 components: - pos: -21.5,-11.5 parent: 2 type: Transform - - uid: 490 + - uid: 489 components: - pos: -21.5,20.5 parent: 2 type: Transform - - uid: 491 + - uid: 490 components: - rot: -1.5707963267948966 rad pos: -17.5,29.5 parent: 2 type: Transform - - uid: 492 + - uid: 491 components: - rot: -1.5707963267948966 rad pos: -17.5,30.5 parent: 2 type: Transform - - uid: 493 + - uid: 492 components: - pos: -30.5,7.5 parent: 2 type: Transform - - uid: 494 + - uid: 493 components: - pos: -44.5,-0.5 parent: 2 type: Transform - - uid: 495 + - uid: 494 components: - pos: -4.5,-2.5 parent: 2 type: Transform - - uid: 496 + - uid: 495 components: - pos: -3.5,-2.5 parent: 2 type: Transform - - uid: 497 + - uid: 496 components: - pos: -44.5,1.5 parent: 2 type: Transform - - uid: 498 + - uid: 497 components: - pos: -44.5,0.5 parent: 2 type: Transform - - uid: 499 + - uid: 498 components: - pos: -38.5,2.5 parent: 2 type: Transform - - uid: 500 + - uid: 499 components: - pos: -37.5,2.5 parent: 2 type: Transform - - uid: 501 + - uid: 500 components: - pos: -27.5,1.5 parent: 2 type: Transform - - uid: 502 + - uid: 501 components: - pos: -27.5,0.5 parent: 2 type: Transform - - uid: 503 + - uid: 502 components: - pos: -27.5,-0.5 parent: 2 type: Transform - - uid: 504 + - uid: 503 components: - pos: -5.5,-2.5 parent: 2 type: Transform - - uid: 505 + - uid: 504 components: - pos: -21.5,21.5 parent: 2 type: Transform - - uid: 506 + - uid: 505 components: - pos: -46.5,2.5 parent: 2 type: Transform - - uid: 507 + - uid: 506 components: - pos: -47.5,2.5 parent: 2 type: Transform - - uid: 508 + - uid: 507 components: - pos: -45.5,2.5 parent: 2 type: Transform - - uid: 509 + - uid: 508 components: - rot: 3.141592653589793 rad pos: -45.5,9.5 parent: 2 type: Transform - - uid: 510 + - uid: 509 components: - rot: 3.141592653589793 rad pos: -46.5,9.5 parent: 2 type: Transform - - uid: 511 + - uid: 510 components: - rot: 1.5707963267948966 rad pos: 19.5,7.5 parent: 2 type: Transform - - uid: 512 + - uid: 511 components: - rot: -1.5707963267948966 rad pos: -17.5,48.5 parent: 2 type: Transform - - uid: 513 + - uid: 512 components: - rot: -1.5707963267948966 rad pos: -13.5,44.5 parent: 2 type: Transform - - uid: 514 + - uid: 513 components: - rot: -1.5707963267948966 rad pos: -18.5,48.5 parent: 2 type: Transform - - uid: 515 + - uid: 514 components: - rot: -1.5707963267948966 rad pos: -16.5,48.5 parent: 2 type: Transform - - uid: 516 + - uid: 515 components: - rot: 3.141592653589793 rad pos: -11.5,52.5 parent: 2 type: Transform - - uid: 517 + - uid: 516 components: - rot: 3.141592653589793 rad pos: -6.5,57.5 parent: 2 type: Transform - - uid: 518 + - uid: 517 components: - pos: -11.5,59.5 parent: 2 type: Transform - - uid: 519 + - uid: 518 components: - pos: -11.5,58.5 parent: 2 type: Transform - - uid: 520 + - uid: 519 components: - pos: -15.5,51.5 parent: 2 type: Transform - - uid: 521 + - uid: 520 components: - pos: -15.5,50.5 parent: 2 type: Transform - - uid: 522 + - uid: 521 components: - rot: 3.141592653589793 rad pos: -4.5,47.5 parent: 2 type: Transform - - uid: 523 + - uid: 522 components: - pos: 4.5,-28.5 parent: 2 type: Transform - - uid: 524 + - uid: 523 components: - pos: 47.5,-76.5 parent: 2 type: Transform - - uid: 525 + - uid: 524 components: - rot: 3.141592653589793 rad pos: 23.5,-83.5 parent: 2 type: Transform - - uid: 526 + - uid: 525 components: - rot: 3.141592653589793 rad pos: 20.5,-83.5 parent: 2 type: Transform - - uid: 527 + - uid: 526 components: - rot: 1.5707963267948966 rad pos: 46.5,-72.5 parent: 2 type: Transform - - uid: 528 + - uid: 527 components: - rot: 1.5707963267948966 rad pos: 32.5,-73.5 parent: 2 type: Transform - - uid: 529 + - uid: 528 components: - pos: 49.5,-76.5 parent: 2 type: Transform - - uid: 530 + - uid: 529 components: - rot: 1.5707963267948966 rad pos: 32.5,-71.5 parent: 2 type: Transform - - uid: 531 + - uid: 530 components: - rot: 1.5707963267948966 rad pos: 46.5,-73.5 parent: 2 type: Transform - - uid: 532 + - uid: 531 components: - pos: 48.5,-76.5 parent: 2 type: Transform - - uid: 533 + - uid: 532 components: - rot: 1.5707963267948966 rad pos: -75.5,-54.5 parent: 2 type: Transform - - uid: 534 + - uid: 533 components: - rot: 1.5707963267948966 rad pos: -75.5,-53.5 parent: 2 type: Transform - - uid: 535 + - uid: 534 components: - rot: 1.5707963267948966 rad pos: -67.5,-53.5 parent: 2 type: Transform - - uid: 536 + - uid: 535 components: - rot: -1.5707963267948966 rad pos: -67.5,-54.5 parent: 2 type: Transform - - uid: 537 + - uid: 536 components: - rot: 1.5707963267948966 rad pos: 7.5,-11.5 parent: 2 type: Transform + - uid: 537 + components: + - pos: 47.5,-43.5 + parent: 2 + type: Transform + - uid: 538 + components: + - pos: 47.5,-41.5 + parent: 2 + type: Transform + - uid: 539 + components: + - pos: 47.5,-42.5 + parent: 2 + type: Transform - proto: AirlockGlassShuttle entities: - - uid: 538 + - uid: 540 components: - rot: -1.5707963267948966 rad pos: -59.5,-71.5 parent: 2 type: Transform - - uid: 539 + - uid: 541 components: - rot: -1.5707963267948966 rad pos: -59.5,-73.5 parent: 2 type: Transform - - uid: 540 + - uid: 542 components: - rot: -1.5707963267948966 rad pos: -59.5,-81.5 parent: 2 type: Transform - - uid: 541 + - uid: 543 components: - rot: -1.5707963267948966 rad pos: -59.5,-79.5 parent: 2 type: Transform - - uid: 542 + - uid: 544 components: - rot: 1.5707963267948966 rad pos: 79.5,-37.5 parent: 2 type: Transform - - uid: 543 + - uid: 545 components: - rot: 1.5707963267948966 rad pos: 79.5,-34.5 parent: 2 type: Transform - - uid: 544 + - uid: 546 components: - rot: 1.5707963267948966 rad pos: 79.5,-36.5 parent: 2 type: Transform - - uid: 545 + - uid: 547 components: - rot: 1.5707963267948966 rad pos: 79.5,-33.5 parent: 2 type: Transform - - uid: 546 + - uid: 548 components: - rot: 1.5707963267948966 rad pos: 52.5,-82.5 parent: 2 type: Transform - - uid: 547 + - uid: 549 components: - rot: 1.5707963267948966 rad pos: 52.5,-89.5 parent: 2 type: Transform - - uid: 548 + - uid: 550 components: - rot: 3.141592653589793 rad pos: -73.5,-50.5 parent: 2 type: Transform - - uid: 549 + - uid: 551 components: - rot: 3.141592653589793 rad pos: -71.5,-50.5 parent: 2 type: Transform - - uid: 550 + - uid: 552 components: - pos: -73.5,-57.5 parent: 2 type: Transform - - uid: 551 + - uid: 553 components: - pos: -71.5,-57.5 parent: 2 type: Transform - proto: AirlockHeadOfPersonnelLocked entities: - - uid: 552 + - uid: 554 components: - pos: 0.5,-5.5 parent: 2 type: Transform - links: - - 23652 + - 23701 type: DeviceLinkSink - - uid: 553 + - uid: 555 components: + - name: hop office + type: MetaData - pos: 6.5,-7.5 parent: 2 type: Transform - links: - - 23652 + - 23701 type: DeviceLinkSink - - uid: 554 + - uid: 556 components: - pos: -2.5,-5.5 parent: 2 type: Transform - proto: AirlockHeadOfSecurityGlassLocked entities: - - uid: 555 + - uid: 557 components: - name: hos office type: MetaData @@ -14344,7 +14404,7 @@ entities: pos: 6.5,18.5 parent: 2 type: Transform - - uid: 556 + - uid: 558 components: - rot: 1.5707963267948966 rad pos: 31.5,-46.5 @@ -14352,7 +14412,7 @@ entities: type: Transform - proto: AirlockHeadOfSecurityLocked entities: - - uid: 557 + - uid: 559 components: - name: hos office type: MetaData @@ -14361,48 +14421,48 @@ entities: type: Transform - proto: AirlockHydroponicsLocked entities: - - uid: 558 + - uid: 560 components: - pos: -3.5,9.5 parent: 2 type: Transform - - uid: 559 + - uid: 561 components: - name: hydrophonics type: MetaData - pos: -10.5,4.5 parent: 2 type: Transform - - uid: 560 + - uid: 562 components: - pos: -3.5,13.5 parent: 2 type: Transform - - uid: 561 + - uid: 563 components: - pos: -6.5,13.5 parent: 2 type: Transform - proto: AirlockJanitorLocked entities: - - uid: 562 + - uid: 564 components: - pos: -11.5,-16.5 parent: 2 type: Transform - - uid: 563 + - uid: 565 components: - pos: -11.5,-20.5 parent: 2 type: Transform - - uid: 564 + - uid: 566 components: - name: janitorial closet type: MetaData - pos: -11.5,-24.5 parent: 2 type: Transform - - uid: 565 + - uid: 567 components: - rot: -1.5707963267948966 rad pos: -7.5,-11.5 @@ -14410,7 +14470,7 @@ entities: type: Transform - proto: AirlockKitchenLocked entities: - - uid: 566 + - uid: 568 components: - name: kitchen type: MetaData @@ -14420,7 +14480,7 @@ entities: type: Transform - proto: AirlockMaint entities: - - uid: 567 + - uid: 569 components: - name: waste disposal type: MetaData @@ -14428,23 +14488,23 @@ entities: pos: 14.5,-51.5 parent: 2 type: Transform - - uid: 568 + - uid: 570 components: - rot: 3.141592653589793 rad pos: 23.5,-53.5 parent: 2 type: Transform - - uid: 569 + - uid: 571 components: - pos: -6.5,-29.5 parent: 2 type: Transform - - uid: 570 + - uid: 572 components: - pos: -17.5,-29.5 parent: 2 type: Transform - - uid: 571 + - uid: 573 components: - name: waste disposal type: MetaData @@ -14452,7 +14512,7 @@ entities: pos: 18.5,-51.5 parent: 2 type: Transform - - uid: 572 + - uid: 574 components: - rot: 1.5707963267948966 rad pos: 15.5,-44.5 @@ -14460,7 +14520,7 @@ entities: type: Transform - proto: AirlockMaintAtmoLocked entities: - - uid: 573 + - uid: 575 components: - name: atmospherics type: MetaData @@ -14468,14 +14528,14 @@ entities: pos: -24.5,-30.5 parent: 2 type: Transform - - uid: 574 + - uid: 576 components: - name: atmos type: MetaData - pos: -30.5,-40.5 parent: 2 type: Transform - - uid: 575 + - uid: 577 components: - name: atmos type: MetaData @@ -14483,7 +14543,7 @@ entities: pos: -32.5,-50.5 parent: 2 type: Transform - - uid: 576 + - uid: 578 components: - name: atmospherics type: MetaData @@ -14492,7 +14552,7 @@ entities: type: Transform - proto: AirlockMaintCaptainLocked entities: - - uid: 577 + - uid: 579 components: - name: captains quarters type: MetaData @@ -14501,7 +14561,7 @@ entities: type: Transform - proto: AirlockMaintChemLocked entities: - - uid: 578 + - uid: 580 components: - rot: -1.5707963267948966 rad pos: 8.5,-49.5 @@ -14509,37 +14569,37 @@ entities: type: Transform - proto: AirlockMaintCommandLocked entities: - - uid: 579 + - uid: 581 components: - rot: 1.5707963267948966 rad pos: 33.5,-32.5 parent: 2 type: Transform - - uid: 580 + - uid: 582 components: - rot: 1.5707963267948966 rad pos: 17.5,-32.5 parent: 2 type: Transform - - uid: 581 + - uid: 583 components: - pos: 18.5,-30.5 parent: 2 type: Transform - - uid: 582 + - uid: 584 components: - rot: 1.5707963267948966 rad pos: 63.5,0.5 parent: 2 type: Transform - - uid: 583 + - uid: 585 components: - name: bridge type: MetaData - pos: 26.5,-26.5 parent: 2 type: Transform - - uid: 584 + - uid: 586 components: - name: conference room type: MetaData @@ -14549,286 +14609,288 @@ entities: type: Transform - proto: AirlockMaintDetectiveLocked entities: - - uid: 585 + - uid: 587 components: - pos: 20.5,-9.5 parent: 2 type: Transform - proto: AirlockMaintEngiLocked entities: - - uid: 586 + - uid: 588 components: - name: engineering type: MetaData - pos: -41.5,-4.5 parent: 2 type: Transform - - uid: 587 + - uid: 589 components: - pos: -51.5,-26.5 parent: 2 type: Transform - proto: AirlockMaintGlass entities: - - uid: 588 + - uid: 590 components: - rot: 3.141592653589793 rad pos: -8.5,25.5 parent: 2 type: Transform - - uid: 589 + - uid: 591 components: - pos: 47.5,-33.5 parent: 2 type: Transform - - uid: 590 + - uid: 592 components: - pos: -41.5,-86.5 parent: 2 type: Transform - - uid: 591 + - uid: 593 components: - pos: -42.5,-86.5 parent: 2 type: Transform - - uid: 592 + - uid: 594 components: - pos: -7.5,21.5 parent: 2 type: Transform - - uid: 593 + - uid: 595 components: - pos: -8.5,30.5 parent: 2 type: Transform - - uid: 594 + - uid: 596 components: - rot: -1.5707963267948966 rad pos: -42.5,-28.5 parent: 2 type: Transform - - uid: 595 + - uid: 597 components: - rot: 3.141592653589793 rad pos: -10.5,25.5 parent: 2 type: Transform - - uid: 596 + - uid: 598 components: - pos: 57.5,-27.5 parent: 2 type: Transform - - uid: 597 + - uid: 599 components: - pos: -11.5,18.5 parent: 2 type: Transform - - uid: 598 + - uid: 600 components: - pos: -16.5,16.5 parent: 2 type: Transform - - uid: 599 + - uid: 601 components: - pos: 52.5,-32.5 parent: 2 type: Transform - - uid: 600 + - uid: 602 components: - pos: 54.5,40.5 parent: 2 type: Transform - - uid: 601 + - uid: 603 components: - pos: 54.5,54.5 parent: 2 type: Transform - - uid: 602 + - uid: 604 components: - pos: 52.5,41.5 parent: 2 type: Transform - - uid: 603 + - uid: 605 components: - rot: 1.5707963267948966 rad pos: 52.5,34.5 parent: 2 type: Transform - - uid: 604 + - uid: 606 components: - pos: 44.5,45.5 parent: 2 type: Transform - - uid: 605 + - uid: 607 components: - pos: 31.5,45.5 parent: 2 type: Transform - - uid: 606 + - uid: 608 components: - pos: -26.5,35.5 parent: 2 type: Transform - - uid: 607 + - uid: 609 components: - pos: -26.5,33.5 parent: 2 type: Transform - - uid: 608 + - uid: 610 components: - rot: 3.141592653589793 rad pos: -11.5,21.5 parent: 2 type: Transform - - uid: 609 + - uid: 611 components: - rot: -1.5707963267948966 rad pos: -8.5,-76.5 parent: 2 type: Transform - - uid: 610 + - uid: 612 components: - pos: -13.5,-97.5 parent: 2 type: Transform - - uid: 611 + - uid: 613 components: - pos: -31.5,-97.5 parent: 2 type: Transform - - uid: 612 + - uid: 614 components: - rot: 1.5707963267948966 rad pos: -42.5,-93.5 parent: 2 type: Transform - - uid: 613 + - uid: 615 components: - pos: 65.5,-65.5 parent: 2 type: Transform - - uid: 614 + - uid: 616 components: - pos: 57.5,-65.5 parent: 2 type: Transform - - uid: 615 + - uid: 617 components: - pos: 54.5,-33.5 parent: 2 type: Transform - proto: AirlockMaintGlassLocked entities: - - uid: 616 + - uid: 618 components: - pos: 56.5,35.5 parent: 2 type: Transform - - uid: 617 + - uid: 619 components: - pos: 51.5,31.5 parent: 2 type: Transform - - uid: 618 + - uid: 620 components: - pos: -17.5,64.5 parent: 2 type: Transform - - uid: 619 + - uid: 621 components: - pos: -17.5,59.5 parent: 2 type: Transform - - uid: 620 + - uid: 622 components: - name: forgotten dock type: MetaData - pos: -48.5,-76.5 parent: 2 type: Transform - - uid: 621 + - uid: 623 components: - pos: 57.5,30.5 parent: 2 type: Transform - - uid: 622 + - uid: 624 components: - pos: 16.5,35.5 parent: 2 type: Transform - proto: AirlockMaintHOPLocked entities: - - uid: 623 + - uid: 625 components: + - name: hop office + type: MetaData - rot: 1.5707963267948966 rad pos: 1.5,-8.5 parent: 2 type: Transform - links: - - 23652 + - 23701 type: DeviceLinkSink - proto: AirlockMaintJanitorLocked entities: - - uid: 624 + - uid: 626 components: - pos: -6.5,-13.5 parent: 2 type: Transform - - uid: 625 + - uid: 627 components: - pos: -14.5,-14.5 parent: 2 type: Transform - proto: AirlockMaintLocked entities: - - uid: 626 + - uid: 628 components: - rot: 3.141592653589793 rad pos: -55.5,-29.5 parent: 2 type: Transform - - uid: 627 + - uid: 629 components: - pos: 18.5,-7.5 parent: 2 type: Transform - - uid: 628 + - uid: 630 components: - pos: 14.5,-2.5 parent: 2 type: Transform - - uid: 629 + - uid: 631 components: - pos: 9.5,-40.5 parent: 2 type: Transform - - uid: 630 + - uid: 632 components: - pos: -8.5,-70.5 parent: 2 type: Transform - - uid: 631 + - uid: 633 components: - rot: 3.141592653589793 rad pos: 27.5,-8.5 parent: 2 type: Transform - - uid: 632 + - uid: 634 components: - pos: 35.5,-15.5 parent: 2 type: Transform - - uid: 633 + - uid: 635 components: - pos: -13.5,-7.5 parent: 2 type: Transform - - uid: 634 + - uid: 636 components: - pos: 36.5,-44.5 parent: 2 type: Transform - - uid: 635 + - uid: 637 components: - name: medbay type: MetaData @@ -14836,186 +14898,186 @@ entities: pos: 7.5,-53.5 parent: 2 type: Transform - - uid: 636 + - uid: 638 components: - pos: 15.5,-15.5 parent: 2 type: Transform - - uid: 637 + - uid: 639 components: - pos: 13.5,-29.5 parent: 2 type: Transform - - uid: 638 + - uid: 640 components: - rot: -1.5707963267948966 rad pos: 37.5,-33.5 parent: 2 type: Transform - - uid: 639 + - uid: 641 components: - rot: 1.5707963267948966 rad pos: -2.5,-9.5 parent: 2 type: Transform - - uid: 640 + - uid: 642 components: - pos: -6.5,-9.5 parent: 2 type: Transform - - uid: 641 + - uid: 643 components: - rot: -1.5707963267948966 rad pos: 55.5,-0.5 parent: 2 type: Transform - - uid: 642 + - uid: 644 components: - name: evac type: MetaData - pos: 48.5,-8.5 parent: 2 type: Transform - - uid: 643 + - uid: 645 components: - pos: 57.5,-4.5 parent: 2 type: Transform - - uid: 644 + - uid: 646 components: - pos: 64.5,2.5 parent: 2 type: Transform - - uid: 645 + - uid: 647 components: - pos: -17.5,-14.5 parent: 2 type: Transform - - uid: 646 + - uid: 648 components: - name: evac type: MetaData - pos: 62.5,-14.5 parent: 2 type: Transform - - uid: 647 + - uid: 649 components: - rot: 1.5707963267948966 rad pos: 50.5,-13.5 parent: 2 type: Transform - - uid: 648 + - uid: 650 components: - pos: -17.5,52.5 parent: 2 type: Transform - - uid: 649 + - uid: 651 components: - pos: -20.5,55.5 parent: 2 type: Transform - - uid: 650 + - uid: 652 components: - name: courtroom type: MetaData - pos: 35.5,-54.5 parent: 2 type: Transform - - uid: 651 + - uid: 653 components: - pos: -21.5,-26.5 parent: 2 type: Transform - - uid: 652 + - uid: 654 components: - pos: -21.5,-42.5 parent: 2 type: Transform - - uid: 653 + - uid: 655 components: - pos: 36.5,-57.5 parent: 2 type: Transform - - uid: 654 + - uid: 656 components: - pos: 9.5,-70.5 parent: 2 type: Transform - - uid: 655 + - uid: 657 components: - rot: -1.5707963267948966 rad pos: 41.5,-64.5 parent: 2 type: Transform - - uid: 656 + - uid: 658 components: - pos: 21.5,-73.5 parent: 2 type: Transform - - uid: 657 + - uid: 659 components: - name: engineering type: MetaData - pos: -30.5,-26.5 parent: 2 type: Transform - - uid: 658 + - uid: 660 components: - name: engineering type: MetaData - pos: -33.5,-26.5 parent: 2 type: Transform - - uid: 659 + - uid: 661 components: - rot: 3.141592653589793 rad pos: -31.5,-45.5 parent: 2 type: Transform - - uid: 660 + - uid: 662 components: - rot: 1.5707963267948966 rad pos: -51.5,-63.5 parent: 2 type: Transform - - uid: 661 + - uid: 663 components: - pos: -16.5,-52.5 parent: 2 type: Transform - - uid: 662 + - uid: 664 components: - rot: -1.5707963267948966 rad pos: -17.5,19.5 parent: 2 type: Transform - - uid: 663 + - uid: 665 components: - pos: -24.5,26.5 parent: 2 type: Transform - - uid: 664 + - uid: 666 components: - pos: -4.5,32.5 parent: 2 type: Transform - - uid: 665 + - uid: 667 components: - pos: 1.5,32.5 parent: 2 type: Transform - - uid: 666 + - uid: 668 components: - rot: -1.5707963267948966 rad pos: -37.5,-1.5 parent: 2 type: Transform - - uid: 667 + - uid: 669 components: - pos: -48.5,0.5 parent: 2 type: Transform - - uid: 668 + - uid: 670 components: - name: singularity catwalk type: MetaData @@ -15023,88 +15085,95 @@ entities: pos: -53.5,-2.5 parent: 2 type: Transform - - uid: 669 + - uid: 671 components: - rot: 1.5707963267948966 rad pos: -21.5,27.5 parent: 2 type: Transform - - uid: 670 + - uid: 672 components: - pos: 11.5,32.5 parent: 2 type: Transform - - uid: 671 + - uid: 673 components: - pos: -23.5,56.5 parent: 2 type: Transform - - uid: 672 + - uid: 674 components: - pos: 4.5,32.5 parent: 2 type: Transform - - uid: 673 + - uid: 675 components: - pos: -22.5,34.5 parent: 2 type: Transform - links: - - 23849 + - 23899 type: DeviceLinkSink - - uid: 674 + - uid: 676 components: - rot: 1.5707963267948966 rad pos: -41.5,-93.5 parent: 2 type: Transform - - uid: 675 + - uid: 677 components: - rot: 1.5707963267948966 rad pos: -56.5,-57.5 parent: 2 type: Transform - - uid: 676 + - uid: 678 components: - pos: 6.5,-35.5 parent: 2 type: Transform - - uid: 677 + - uid: 679 components: - pos: 61.5,-26.5 parent: 2 type: Transform - - uid: 678 + - uid: 680 components: - pos: 10.5,-83.5 parent: 2 type: Transform - - uid: 679 + - uid: 681 components: - rot: 3.141592653589793 rad pos: -55.5,-34.5 parent: 2 type: Transform - - uid: 680 + - uid: 682 components: - rot: 1.5707963267948966 rad pos: -17.5,11.5 parent: 2 type: Transform - - uid: 681 + - uid: 683 components: - pos: -2.5,-17.5 parent: 2 type: Transform - - uid: 682 + - uid: 684 components: + - name: library + type: MetaData - rot: 1.5707963267948966 rad pos: 4.5,-12.5 parent: 2 type: Transform + - uid: 685 + components: + - pos: -56.5,-40.5 + parent: 2 + type: Transform - proto: AirlockMaintMedLocked entities: - - uid: 683 + - uid: 686 components: - name: surgery type: MetaData @@ -15112,7 +15181,7 @@ entities: pos: -1.5,-68.5 parent: 2 type: Transform - - uid: 684 + - uid: 687 components: - name: storeroom type: MetaData @@ -15120,20 +15189,20 @@ entities: pos: -8.5,-67.5 parent: 2 type: Transform - - uid: 685 + - uid: 688 components: - name: medbay type: MetaData - pos: 6.5,-62.5 parent: 2 type: Transform - - uid: 686 + - uid: 689 components: - rot: 3.141592653589793 rad pos: -16.5,-72.5 parent: 2 type: Transform - - uid: 687 + - uid: 690 components: - name: virology type: MetaData @@ -15141,7 +15210,7 @@ entities: pos: -32.5,-71.5 parent: 2 type: Transform - - uid: 688 + - uid: 691 components: - name: cryogenics type: MetaData @@ -15149,14 +15218,14 @@ entities: pos: -27.5,-58.5 parent: 2 type: Transform - - uid: 689 + - uid: 692 components: - pos: -11.5,-31.5 parent: 2 type: Transform - proto: AirlockMaintRnDLocked entities: - - uid: 690 + - uid: 693 components: - name: robotics type: MetaData @@ -15164,21 +15233,21 @@ entities: pos: 75.5,-50.5 parent: 2 type: Transform - - uid: 691 + - uid: 694 components: - name: r&d type: MetaData - pos: 45.5,-34.5 parent: 2 type: Transform - - uid: 692 + - uid: 695 components: - name: toxins type: MetaData - pos: 44.5,-56.5 parent: 2 type: Transform - - uid: 693 + - uid: 696 components: - name: science type: MetaData @@ -15186,7 +15255,7 @@ entities: pos: 50.5,-36.5 parent: 2 type: Transform - - uid: 694 + - uid: 697 components: - name: science type: MetaData @@ -15195,7 +15264,7 @@ entities: type: Transform - proto: AirlockMaintSalvageLocked entities: - - uid: 695 + - uid: 698 components: - name: salvage type: MetaData @@ -15203,7 +15272,7 @@ entities: pos: -37.5,34.5 parent: 2 type: Transform - - uid: 696 + - uid: 699 components: - rot: -1.5707963267948966 rad pos: -44.5,39.5 @@ -15211,57 +15280,59 @@ entities: type: Transform - proto: AirlockMaintSecLocked entities: - - uid: 697 + - uid: 700 components: - pos: 31.5,21.5 parent: 2 type: Transform - - uid: 698 + - uid: 701 components: - pos: -15.5,-19.5 parent: 2 type: Transform - - uid: 699 + - uid: 702 components: - name: interrogation room type: MetaData - pos: 14.5,24.5 parent: 2 type: Transform - - uid: 700 + - uid: 703 components: - rot: 1.5707963267948966 rad pos: 21.5,-48.5 parent: 2 type: Transform - - uid: 701 + - uid: 704 components: - rot: -1.5707963267948966 rad pos: -13.5,26.5 parent: 2 type: Transform - - uid: 702 + - uid: 705 components: - pos: -1.5,22.5 parent: 2 type: Transform - proto: AirlockMaintTheatreLocked entities: - - uid: 703 + - uid: 706 components: + - name: theatre + type: MetaData - pos: 0.5,-18.5 parent: 2 type: Transform - proto: AirlockMedicalGlass entities: - - uid: 704 + - uid: 707 components: - pos: 43.5,6.5 parent: 2 type: Transform - proto: AirlockMedicalGlassLocked entities: - - uid: 705 + - uid: 708 components: - name: cloning type: MetaData @@ -15269,43 +15340,43 @@ entities: pos: -5.5,-62.5 parent: 2 type: Transform - - uid: 706 + - uid: 709 components: - pos: -15.5,-55.5 parent: 2 type: Transform - - uid: 707 + - uid: 710 components: - rot: 3.141592653589793 rad pos: -8.5,-58.5 parent: 2 type: Transform - - uid: 708 + - uid: 711 components: - name: cryogenics type: MetaData - pos: -21.5,-60.5 parent: 2 type: Transform - - uid: 709 + - uid: 712 components: - rot: 3.141592653589793 rad pos: -2.5,-58.5 parent: 2 type: Transform - - uid: 710 + - uid: 713 components: - name: medical storage type: MetaData - pos: 7.5,-60.5 parent: 2 type: Transform - - uid: 711 + - uid: 714 components: - pos: 45.5,3.5 parent: 2 type: Transform - - uid: 712 + - uid: 715 components: - name: cloning type: MetaData @@ -15313,7 +15384,7 @@ entities: pos: -6.5,-62.5 parent: 2 type: Transform - - uid: 713 + - uid: 716 components: - name: surgery type: MetaData @@ -15321,40 +15392,40 @@ entities: pos: -2.5,-62.5 parent: 2 type: Transform - - uid: 714 + - uid: 717 components: - pos: -14.5,-58.5 parent: 2 type: Transform - - uid: 715 + - uid: 718 components: - pos: -14.5,-55.5 parent: 2 type: Transform - - uid: 716 + - uid: 719 components: - rot: 3.141592653589793 rad pos: -11.5,-58.5 parent: 2 type: Transform - - uid: 717 + - uid: 720 components: - rot: 3.141592653589793 rad pos: -5.5,-58.5 parent: 2 type: Transform - - uid: 718 + - uid: 721 components: - rot: 3.141592653589793 rad pos: 0.5,-58.5 parent: 2 type: Transform - - uid: 719 + - uid: 722 components: - pos: -15.5,-58.5 parent: 2 type: Transform - - uid: 720 + - uid: 723 components: - name: surgery type: MetaData @@ -15362,7 +15433,7 @@ entities: pos: -3.5,-62.5 parent: 2 type: Transform - - uid: 721 + - uid: 724 components: - name: changing room type: MetaData @@ -15371,29 +15442,29 @@ entities: type: Transform - proto: AirlockMedicalLocked entities: - - uid: 722 + - uid: 725 components: - pos: -4.5,-51.5 parent: 2 type: Transform - - uid: 723 + - uid: 726 components: - name: morgue type: MetaData - pos: -13.5,-62.5 parent: 2 type: Transform - - uid: 724 + - uid: 727 components: - pos: -13.5,-38.5 parent: 2 type: Transform - - uid: 725 + - uid: 728 components: - pos: -11.5,-34.5 parent: 2 type: Transform - - uid: 726 + - uid: 729 components: - name: changing room type: MetaData @@ -15402,7 +15473,7 @@ entities: type: Transform - proto: AirlockQuartermasterGlassLocked entities: - - uid: 727 + - uid: 730 components: - name: quartermasters office type: MetaData @@ -15411,7 +15482,7 @@ entities: type: Transform - proto: AirlockQuartermasterLocked entities: - - uid: 728 + - uid: 731 components: - name: quartermasters office type: MetaData @@ -15420,48 +15491,48 @@ entities: type: Transform - proto: AirlockResearchDirectorGlassLocked entities: - - uid: 729 + - uid: 732 components: - pos: 58.5,-48.5 parent: 2 type: Transform - proto: AirlockResearchDirectorLocked entities: - - uid: 730 + - uid: 733 components: - pos: 62.5,-50.5 parent: 2 type: Transform - proto: AirlockSalvageGlassLocked entities: - - uid: 731 + - uid: 734 components: - name: salvage magnet type: MetaData - pos: -46.5,27.5 parent: 2 type: Transform - - uid: 732 + - uid: 735 components: - name: salvage magnet type: MetaData - pos: -45.5,27.5 parent: 2 type: Transform - - uid: 733 + - uid: 736 components: - name: salvage type: MetaData - pos: -39.5,29.5 parent: 2 type: Transform - - uid: 734 + - uid: 737 components: - rot: -1.5707963267948966 rad pos: -46.5,37.5 parent: 2 type: Transform - - uid: 735 + - uid: 738 components: - rot: -1.5707963267948966 rad pos: -45.5,37.5 @@ -15469,7 +15540,7 @@ entities: type: Transform - proto: AirlockScienceGlassLocked entities: - - uid: 736 + - uid: 739 components: - name: anomaly lab type: MetaData @@ -15477,61 +15548,44 @@ entities: pos: 61.5,-41.5 parent: 2 type: Transform - - uid: 737 + - uid: 740 components: - pos: 54.5,-44.5 parent: 2 type: Transform - - uid: 738 + - uid: 741 components: - pos: 54.5,-45.5 parent: 2 type: Transform - - uid: 739 + - uid: 742 components: - pos: 57.5,-43.5 parent: 2 type: Transform - - uid: 740 + - uid: 743 components: - - pos: 54.5,-41.5 + - rot: -1.5707963267948966 rad + pos: 54.5,-41.5 parent: 2 type: Transform - - uid: 741 + - uid: 744 components: - pos: 58.5,-45.5 parent: 2 type: Transform - - uid: 742 + - uid: 745 components: - pos: 58.5,-44.5 parent: 2 type: Transform - - uid: 743 + - uid: 746 components: - name: toxins type: MetaData - pos: 49.5,-48.5 parent: 2 type: Transform - - uid: 744 - components: - - rot: 3.141592653589793 rad - pos: 47.5,-41.5 - parent: 2 - type: Transform - - uid: 745 - components: - - rot: 3.141592653589793 rad - pos: 47.5,-43.5 - parent: 2 - type: Transform - - uid: 746 - components: - - rot: 3.141592653589793 rad - pos: 47.5,-42.5 - parent: 2 - type: Transform - uid: 747 components: - name: science canteen @@ -15682,7 +15736,7 @@ entities: type: Transform - uid: 771 components: - - name: substation + - name: prison substation type: MetaData - pos: 61.5,4.5 parent: 2 @@ -15834,7 +15888,7 @@ entities: parent: 2 type: Transform - links: - - 23850 + - 23900 type: DeviceLinkSink - uid: 793 components: @@ -15844,7 +15898,7 @@ entities: parent: 2 type: Transform - links: - - 23847 + - 23897 type: DeviceLinkSink - proto: AirlockVirologyGlass entities: @@ -16127,7 +16181,7 @@ entities: parent: 2 type: Transform - ShutdownSubscribers: - - 14609 + - 14646 type: DeviceNetwork - uid: 844 components: @@ -16578,7 +16632,7 @@ entities: type: Transform - ShutdownSubscribers: - 94 - - 14608 + - 14645 type: DeviceNetwork - uid: 928 components: @@ -16611,7 +16665,7 @@ entities: type: Transform - ShutdownSubscribers: - 99 - - 14612 + - 14649 type: DeviceNetwork - uid: 932 components: @@ -16619,7 +16673,7 @@ entities: parent: 2 type: Transform - ShutdownSubscribers: - - 14611 + - 14648 - 98 type: DeviceNetwork - uid: 933 @@ -16630,7 +16684,7 @@ entities: type: Transform - ShutdownSubscribers: - 100 - - 14613 + - 14650 type: DeviceNetwork - uid: 934 components: @@ -16639,7 +16693,7 @@ entities: type: Transform - ShutdownSubscribers: - 78 - - 14614 + - 14651 type: DeviceNetwork - proto: AltarConvertRed entities: @@ -20463,158 +20517,173 @@ entities: - pos: -44.5,71.5 parent: 2 type: Transform + - uid: 1693 + components: + - pos: -56.5,62.5 + parent: 2 + type: Transform + - uid: 1694 + components: + - pos: -56.5,61.5 + parent: 2 + type: Transform + - uid: 1695 + components: + - pos: -54.5,61.5 + parent: 2 + type: Transform - proto: AtmosDeviceFanTiny entities: - - uid: 1693 + - uid: 1696 components: - pos: 45.5,-89.5 parent: 2 type: Transform - - uid: 1694 + - uid: 1697 components: - pos: 33.5,-82.5 parent: 2 type: Transform - - uid: 1695 + - uid: 1698 components: - pos: 33.5,-89.5 parent: 2 type: Transform - - uid: 1696 + - uid: 1699 components: - pos: 0.5,10.5 parent: 2 type: Transform - - uid: 1697 + - uid: 1700 components: - pos: 79.5,-36.5 parent: 2 type: Transform - - uid: 1698 + - uid: 1701 components: - pos: 69.5,-3.5 parent: 2 type: Transform - - uid: 1699 + - uid: 1702 components: - rot: 3.141592653589793 rad pos: 48.5,-95.5 parent: 2 type: Transform - - uid: 1700 + - uid: 1703 components: - rot: -1.5707963267948966 rad pos: -53.5,20.5 parent: 2 type: Transform - - uid: 1701 + - uid: 1704 components: - rot: -1.5707963267948966 rad pos: -53.5,22.5 parent: 2 type: Transform - - uid: 1702 + - uid: 1705 components: - pos: -52.5,30.5 parent: 2 type: Transform - - uid: 1703 + - uid: 1706 components: - pos: -52.5,34.5 parent: 2 type: Transform - - uid: 1704 + - uid: 1707 components: - pos: 79.5,-37.5 parent: 2 type: Transform - - uid: 1705 + - uid: 1708 components: - pos: 79.5,-34.5 parent: 2 type: Transform - - uid: 1706 + - uid: 1709 components: - pos: 79.5,-33.5 parent: 2 type: Transform - - uid: 1707 + - uid: 1710 components: - pos: 69.5,-5.5 parent: 2 type: Transform - - uid: 1708 + - uid: 1711 components: - pos: 69.5,-11.5 parent: 2 type: Transform - - uid: 1709 + - uid: 1712 components: - pos: 69.5,-13.5 parent: 2 type: Transform - - uid: 1710 + - uid: 1713 components: - pos: -1.5,14.5 parent: 2 type: Transform - - uid: 1711 + - uid: 1714 components: - rot: 3.141592653589793 rad pos: 30.5,-95.5 parent: 2 type: Transform - - uid: 1712 + - uid: 1715 components: - pos: -17.5,70.5 parent: 2 type: Transform - - uid: 1713 + - uid: 1716 components: - pos: -12.5,75.5 parent: 2 type: Transform - - uid: 1714 + - uid: 1717 components: - pos: -13.5,75.5 parent: 2 type: Transform - - uid: 1715 + - uid: 1718 components: - pos: -21.5,75.5 parent: 2 type: Transform - - uid: 1716 + - uid: 1719 components: - pos: -22.5,75.5 parent: 2 type: Transform - - uid: 1717 + - uid: 1720 components: - pos: -52.5,33.5 parent: 2 type: Transform - - uid: 1718 + - uid: 1721 components: - pos: -52.5,31.5 parent: 2 type: Transform - - uid: 1719 + - uid: 1722 components: - pos: 45.5,-82.5 parent: 2 type: Transform - - uid: 1720 + - uid: 1723 components: - pos: 52.5,-82.5 parent: 2 type: Transform - - uid: 1721 + - uid: 1724 components: - pos: 52.5,-89.5 parent: 2 type: Transform - - uid: 1722 + - uid: 1725 components: - rot: -1.5707963267948966 rad pos: 67.5,-15.5 @@ -20622,912 +20691,912 @@ entities: type: Transform - proto: AtmosFixBlockerMarker entities: - - uid: 1723 + - uid: 1726 components: - pos: 51.5,-60.5 parent: 2 type: Transform - - uid: 1724 + - uid: 1727 components: - pos: 50.5,-60.5 parent: 2 type: Transform - - uid: 1725 + - uid: 1728 components: - pos: 49.5,-60.5 parent: 2 type: Transform - - uid: 1726 + - uid: 1729 components: - pos: 48.5,-60.5 parent: 2 type: Transform - - uid: 1727 + - uid: 1730 components: - pos: 48.5,-61.5 parent: 2 type: Transform - - uid: 1728 + - uid: 1731 components: - pos: 49.5,-61.5 parent: 2 type: Transform - - uid: 1729 + - uid: 1732 components: - pos: 50.5,-61.5 parent: 2 type: Transform - - uid: 1730 + - uid: 1733 components: - pos: 51.5,-61.5 parent: 2 type: Transform - - uid: 1731 + - uid: 1734 components: - pos: -44.5,-34.5 parent: 2 type: Transform - - uid: 1732 + - uid: 1735 components: - pos: -44.5,-35.5 parent: 2 type: Transform - - uid: 1733 + - uid: 1736 components: - pos: -43.5,-34.5 parent: 2 type: Transform - - uid: 1734 + - uid: 1737 components: - pos: -43.5,-35.5 parent: 2 type: Transform - - uid: 1735 + - uid: 1738 components: - pos: -42.5,-34.5 parent: 2 type: Transform - - uid: 1736 + - uid: 1739 components: - pos: -42.5,-35.5 parent: 2 type: Transform - - uid: 1737 + - uid: 1740 components: - pos: -42.5,-36.5 parent: 2 type: Transform - - uid: 1738 + - uid: 1741 components: - pos: -48.5,-50.5 parent: 2 type: Transform - - uid: 1739 + - uid: 1742 components: - pos: -49.5,-50.5 parent: 2 type: Transform - - uid: 1740 + - uid: 1743 components: - pos: -50.5,-50.5 parent: 2 type: Transform - - uid: 1741 + - uid: 1744 components: - pos: -48.5,-48.5 parent: 2 type: Transform - - uid: 1742 + - uid: 1745 components: - pos: -49.5,-48.5 parent: 2 type: Transform - - uid: 1743 + - uid: 1746 components: - pos: -50.5,-48.5 parent: 2 type: Transform - - uid: 1744 + - uid: 1747 components: - pos: -48.5,-44.5 parent: 2 type: Transform - - uid: 1745 + - uid: 1748 components: - pos: -49.5,-44.5 parent: 2 type: Transform - - uid: 1746 + - uid: 1749 components: - pos: -50.5,-44.5 parent: 2 type: Transform - - uid: 1747 + - uid: 1750 components: - pos: -48.5,-42.5 parent: 2 type: Transform - - uid: 1748 + - uid: 1751 components: - pos: -49.5,-42.5 parent: 2 type: Transform - - uid: 1749 + - uid: 1752 components: - pos: -50.5,-42.5 parent: 2 type: Transform - - uid: 1750 + - uid: 1753 components: - pos: -43.5,-36.5 parent: 2 type: Transform - - uid: 1751 + - uid: 1754 components: - pos: -44.5,-36.5 parent: 2 type: Transform - - uid: 1752 + - uid: 1755 components: - pos: -77.5,-40.5 parent: 2 type: Transform - - uid: 1753 + - uid: 1756 components: - pos: -76.5,-40.5 parent: 2 type: Transform - - uid: 1754 + - uid: 1757 components: - pos: -75.5,-40.5 parent: 2 type: Transform - - uid: 1755 + - uid: 1758 components: - pos: -75.5,-41.5 parent: 2 type: Transform - - uid: 1756 + - uid: 1759 components: - pos: -76.5,-41.5 parent: 2 type: Transform - - uid: 1757 + - uid: 1760 components: - pos: -77.5,-41.5 parent: 2 type: Transform - - uid: 1758 + - uid: 1761 components: - pos: -77.5,-42.5 parent: 2 type: Transform - - uid: 1759 + - uid: 1762 components: - pos: -76.5,-42.5 parent: 2 type: Transform - - uid: 1760 + - uid: 1763 components: - pos: -75.5,-42.5 parent: 2 type: Transform - proto: AtmosFixFreezerMarker entities: - - uid: 1761 + - uid: 1764 components: - pos: 0.5,13.5 parent: 2 type: Transform - - uid: 1762 + - uid: 1765 components: - pos: 1.5,13.5 parent: 2 type: Transform - - uid: 1763 + - uid: 1766 components: - pos: 1.5,14.5 parent: 2 type: Transform - - uid: 1764 + - uid: 1767 components: - pos: 2.5,13.5 parent: 2 type: Transform - - uid: 1765 + - uid: 1768 components: - pos: 0.5,14.5 parent: 2 type: Transform - - uid: 1766 + - uid: 1769 components: - pos: -0.5,14.5 parent: 2 type: Transform - - uid: 1767 + - uid: 1770 components: - pos: 2.5,14.5 parent: 2 type: Transform - - uid: 1768 + - uid: 1771 components: - pos: -0.5,12.5 parent: 2 type: Transform - - uid: 1769 + - uid: 1772 components: - pos: -0.5,11.5 parent: 2 type: Transform - - uid: 1770 + - uid: 1773 components: - pos: 0.5,12.5 parent: 2 type: Transform - - uid: 1771 + - uid: 1774 components: - pos: 0.5,11.5 parent: 2 type: Transform - - uid: 1772 + - uid: 1775 components: - pos: 1.5,12.5 parent: 2 type: Transform - - uid: 1773 + - uid: 1776 components: - pos: 1.5,11.5 parent: 2 type: Transform - - uid: 1774 + - uid: 1777 components: - pos: 2.5,12.5 parent: 2 type: Transform - - uid: 1775 + - uid: 1778 components: - pos: 2.5,11.5 parent: 2 type: Transform - - uid: 1776 + - uid: 1779 components: - pos: -0.5,13.5 parent: 2 type: Transform - - uid: 1777 + - uid: 1780 components: - pos: -5.5,73.5 parent: 2 type: Transform - - uid: 1778 + - uid: 1781 components: - pos: -5.5,72.5 parent: 2 type: Transform - - uid: 1779 + - uid: 1782 components: - pos: -5.5,71.5 parent: 2 type: Transform - - uid: 1780 + - uid: 1783 components: - pos: -5.5,70.5 parent: 2 type: Transform - - uid: 1781 + - uid: 1784 components: - pos: -5.5,69.5 parent: 2 type: Transform - - uid: 1782 + - uid: 1785 components: - pos: -5.5,68.5 parent: 2 type: Transform - - uid: 1783 + - uid: 1786 components: - pos: -5.5,67.5 parent: 2 type: Transform - - uid: 1784 + - uid: 1787 components: - pos: -5.5,66.5 parent: 2 type: Transform - - uid: 1785 + - uid: 1788 components: - pos: -4.5,73.5 parent: 2 type: Transform - - uid: 1786 + - uid: 1789 components: - pos: -4.5,72.5 parent: 2 type: Transform - - uid: 1787 + - uid: 1790 components: - pos: -4.5,71.5 parent: 2 type: Transform - - uid: 1788 + - uid: 1791 components: - pos: -4.5,70.5 parent: 2 type: Transform - - uid: 1789 + - uid: 1792 components: - pos: -4.5,69.5 parent: 2 type: Transform - - uid: 1790 + - uid: 1793 components: - pos: -4.5,68.5 parent: 2 type: Transform - - uid: 1791 + - uid: 1794 components: - pos: -4.5,67.5 parent: 2 type: Transform - - uid: 1792 + - uid: 1795 components: - pos: -4.5,66.5 parent: 2 type: Transform - - uid: 1793 + - uid: 1796 components: - pos: -3.5,73.5 parent: 2 type: Transform - - uid: 1794 + - uid: 1797 components: - pos: -3.5,72.5 parent: 2 type: Transform - - uid: 1795 + - uid: 1798 components: - pos: -3.5,71.5 parent: 2 type: Transform - - uid: 1796 + - uid: 1799 components: - pos: -3.5,70.5 parent: 2 type: Transform - - uid: 1797 + - uid: 1800 components: - pos: -3.5,69.5 parent: 2 type: Transform - - uid: 1798 + - uid: 1801 components: - pos: -3.5,68.5 parent: 2 type: Transform - - uid: 1799 + - uid: 1802 components: - pos: -3.5,67.5 parent: 2 type: Transform - - uid: 1800 + - uid: 1803 components: - pos: -3.5,66.5 parent: 2 type: Transform - - uid: 1801 + - uid: 1804 components: - pos: -2.5,73.5 parent: 2 type: Transform - - uid: 1802 + - uid: 1805 components: - pos: -2.5,72.5 parent: 2 type: Transform - - uid: 1803 + - uid: 1806 components: - pos: -2.5,71.5 parent: 2 type: Transform - - uid: 1804 + - uid: 1807 components: - pos: -2.5,70.5 parent: 2 type: Transform - - uid: 1805 + - uid: 1808 components: - pos: -2.5,69.5 parent: 2 type: Transform - - uid: 1806 + - uid: 1809 components: - pos: -2.5,68.5 parent: 2 type: Transform - - uid: 1807 + - uid: 1810 components: - pos: -2.5,67.5 parent: 2 type: Transform - - uid: 1808 + - uid: 1811 components: - pos: -2.5,66.5 parent: 2 type: Transform - - uid: 1809 + - uid: 1812 components: - pos: -6.5,72.5 parent: 2 type: Transform - - uid: 1810 + - uid: 1813 components: - pos: -6.5,71.5 parent: 2 type: Transform - - uid: 1811 + - uid: 1814 components: - pos: -6.5,70.5 parent: 2 type: Transform - - uid: 1812 + - uid: 1815 components: - pos: -6.5,69.5 parent: 2 type: Transform - - uid: 1813 + - uid: 1816 components: - pos: -6.5,68.5 parent: 2 type: Transform - - uid: 1814 + - uid: 1817 components: - pos: -6.5,67.5 parent: 2 type: Transform - - uid: 1815 + - uid: 1818 components: - pos: -6.5,66.5 parent: 2 type: Transform - - uid: 1816 + - uid: 1819 components: - pos: -7.5,71.5 parent: 2 type: Transform - - uid: 1817 + - uid: 1820 components: - pos: -7.5,70.5 parent: 2 type: Transform - - uid: 1818 + - uid: 1821 components: - pos: -7.5,69.5 parent: 2 type: Transform - - uid: 1819 + - uid: 1822 components: - pos: -7.5,68.5 parent: 2 type: Transform - - uid: 1820 + - uid: 1823 components: - pos: -7.5,67.5 parent: 2 type: Transform - - uid: 1821 + - uid: 1824 components: - pos: -1.5,72.5 parent: 2 type: Transform - - uid: 1822 + - uid: 1825 components: - pos: -1.5,71.5 parent: 2 type: Transform - - uid: 1823 + - uid: 1826 components: - pos: -0.5,72.5 parent: 2 type: Transform - - uid: 1824 + - uid: 1827 components: - pos: -0.5,71.5 parent: 2 type: Transform - - uid: 1825 + - uid: 1828 components: - pos: 0.5,72.5 parent: 2 type: Transform - - uid: 1826 + - uid: 1829 components: - pos: 0.5,71.5 parent: 2 type: Transform - - uid: 1827 + - uid: 1830 components: - pos: 1.5,72.5 parent: 2 type: Transform - - uid: 1828 + - uid: 1831 components: - pos: 1.5,71.5 parent: 2 type: Transform - - uid: 1829 + - uid: 1832 components: - pos: 2.5,72.5 parent: 2 type: Transform - - uid: 1830 + - uid: 1833 components: - pos: 2.5,71.5 parent: 2 type: Transform - - uid: 1831 + - uid: 1834 components: - pos: 3.5,72.5 parent: 2 type: Transform - - uid: 1832 + - uid: 1835 components: - pos: 3.5,71.5 parent: 2 type: Transform - - uid: 1833 + - uid: 1836 components: - pos: -0.5,73.5 parent: 2 type: Transform - - uid: 1834 + - uid: 1837 components: - pos: 0.5,73.5 parent: 2 type: Transform - - uid: 1835 + - uid: 1838 components: - pos: 1.5,73.5 parent: 2 type: Transform - - uid: 1836 + - uid: 1839 components: - pos: 2.5,73.5 parent: 2 type: Transform - - uid: 1837 + - uid: 1840 components: - pos: 4.5,71.5 parent: 2 type: Transform - - uid: 1838 + - uid: 1841 components: - pos: 4.5,70.5 parent: 2 type: Transform - - uid: 1839 + - uid: 1842 components: - pos: 4.5,69.5 parent: 2 type: Transform - - uid: 1840 + - uid: 1843 components: - pos: 4.5,68.5 parent: 2 type: Transform - - uid: 1841 + - uid: 1844 components: - pos: 4.5,67.5 parent: 2 type: Transform - - uid: 1842 + - uid: 1845 components: - pos: 2.5,70.5 parent: 2 type: Transform - - uid: 1843 + - uid: 1846 components: - pos: 2.5,69.5 parent: 2 type: Transform - - uid: 1844 + - uid: 1847 components: - pos: 2.5,68.5 parent: 2 type: Transform - - uid: 1845 + - uid: 1848 components: - pos: 2.5,67.5 parent: 2 type: Transform - - uid: 1846 + - uid: 1849 components: - pos: 2.5,66.5 parent: 2 type: Transform - - uid: 1847 + - uid: 1850 components: - pos: 3.5,70.5 parent: 2 type: Transform - - uid: 1848 + - uid: 1851 components: - pos: 3.5,69.5 parent: 2 type: Transform - - uid: 1849 + - uid: 1852 components: - pos: 3.5,68.5 parent: 2 type: Transform - - uid: 1850 + - uid: 1853 components: - pos: 3.5,67.5 parent: 2 type: Transform - - uid: 1851 + - uid: 1854 components: - pos: 3.5,66.5 parent: 2 type: Transform - - uid: 1852 + - uid: 1855 components: - pos: 0.5,70.5 parent: 2 type: Transform - - uid: 1853 + - uid: 1856 components: - pos: 0.5,69.5 parent: 2 type: Transform - - uid: 1854 + - uid: 1857 components: - pos: 0.5,68.5 parent: 2 type: Transform - - uid: 1855 + - uid: 1858 components: - pos: 0.5,67.5 parent: 2 type: Transform - - uid: 1856 + - uid: 1859 components: - pos: 0.5,66.5 parent: 2 type: Transform - - uid: 1857 + - uid: 1860 components: - pos: 0.5,65.5 parent: 2 type: Transform - - uid: 1858 + - uid: 1861 components: - pos: 1.5,70.5 parent: 2 type: Transform - - uid: 1859 + - uid: 1862 components: - pos: 1.5,69.5 parent: 2 type: Transform - - uid: 1860 + - uid: 1863 components: - pos: 1.5,68.5 parent: 2 type: Transform - - uid: 1861 + - uid: 1864 components: - pos: 1.5,67.5 parent: 2 type: Transform - - uid: 1862 + - uid: 1865 components: - pos: 1.5,66.5 parent: 2 type: Transform - - uid: 1863 + - uid: 1866 components: - pos: 1.5,65.5 parent: 2 type: Transform - - uid: 1864 + - uid: 1867 components: - pos: -1.5,70.5 parent: 2 type: Transform - - uid: 1865 + - uid: 1868 components: - pos: -1.5,69.5 parent: 2 type: Transform - - uid: 1866 + - uid: 1869 components: - pos: -1.5,68.5 parent: 2 type: Transform - - uid: 1867 + - uid: 1870 components: - pos: -1.5,67.5 parent: 2 type: Transform - - uid: 1868 + - uid: 1871 components: - pos: -1.5,66.5 parent: 2 type: Transform - - uid: 1869 + - uid: 1872 components: - pos: -1.5,65.5 parent: 2 type: Transform - - uid: 1870 + - uid: 1873 components: - pos: -0.5,70.5 parent: 2 type: Transform - - uid: 1871 + - uid: 1874 components: - pos: -0.5,69.5 parent: 2 type: Transform - - uid: 1872 + - uid: 1875 components: - pos: -0.5,68.5 parent: 2 type: Transform - - uid: 1873 + - uid: 1876 components: - pos: -0.5,67.5 parent: 2 type: Transform - - uid: 1874 + - uid: 1877 components: - pos: -0.5,66.5 parent: 2 type: Transform - - uid: 1875 + - uid: 1878 components: - pos: -0.5,65.5 parent: 2 type: Transform - - uid: 1876 + - uid: 1879 components: - pos: -2.5,65.5 parent: 2 type: Transform - - uid: 1877 + - uid: 1880 components: - pos: -3.5,65.5 parent: 2 type: Transform - - uid: 1878 + - uid: 1881 components: - pos: -4.5,65.5 parent: 2 type: Transform - - uid: 1879 + - uid: 1882 components: - pos: 53.5,-47.5 parent: 2 type: Transform - - uid: 1880 + - uid: 1883 components: - pos: 53.5,-48.5 parent: 2 type: Transform - - uid: 1881 + - uid: 1884 components: - pos: 54.5,-47.5 parent: 2 type: Transform - - uid: 1882 + - uid: 1885 components: - pos: 54.5,-48.5 parent: 2 type: Transform - - uid: 1883 + - uid: 1886 components: - pos: 55.5,-47.5 parent: 2 type: Transform - - uid: 1884 + - uid: 1887 components: - pos: 55.5,-48.5 parent: 2 type: Transform - - uid: 1885 + - uid: 1888 components: - pos: 56.5,-47.5 parent: 2 type: Transform - - uid: 1886 + - uid: 1889 components: - pos: 56.5,-48.5 parent: 2 type: Transform - - uid: 1887 + - uid: 1890 components: - pos: 57.5,-47.5 parent: 2 type: Transform - - uid: 1888 + - uid: 1891 components: - pos: 57.5,-48.5 parent: 2 type: Transform - - uid: 1889 + - uid: 1892 components: - pos: 54.5,-49.5 parent: 2 type: Transform - - uid: 1890 + - uid: 1893 components: - pos: 55.5,-49.5 parent: 2 type: Transform - - uid: 1891 + - uid: 1894 components: - pos: 56.5,-49.5 parent: 2 type: Transform - - uid: 1892 + - uid: 1895 components: - pos: 57.5,-49.5 parent: 2 type: Transform - proto: AtmosFixNitrogenMarker entities: - - uid: 1893 + - uid: 1896 components: - pos: -48.5,-54.5 parent: 2 type: Transform - - uid: 1894 + - uid: 1897 components: - pos: -49.5,-54.5 parent: 2 type: Transform - - uid: 1895 + - uid: 1898 components: - pos: -50.5,-54.5 parent: 2 type: Transform - proto: AtmosFixOxygenMarker entities: - - uid: 1896 + - uid: 1899 components: - pos: -48.5,-52.5 parent: 2 type: Transform - - uid: 1897 + - uid: 1900 components: - pos: -49.5,-52.5 parent: 2 type: Transform - - uid: 1898 + - uid: 1901 components: - pos: -50.5,-52.5 parent: 2 type: Transform - proto: AtmosFixPlasmaMarker entities: - - uid: 1899 + - uid: 1902 components: - pos: -48.5,-46.5 parent: 2 type: Transform - - uid: 1900 + - uid: 1903 components: - pos: -49.5,-46.5 parent: 2 type: Transform - - uid: 1901 + - uid: 1904 components: - pos: -50.5,-46.5 parent: 2 type: Transform - proto: Autolathe entities: - - uid: 1902 + - uid: 1905 components: - pos: 40.5,-35.5 parent: 2 @@ -21539,263 +21608,263 @@ entities: - Glass - Cloth type: MaterialStorage - - uid: 1903 + - uid: 1906 components: - pos: -34.5,19.5 parent: 2 type: Transform - - uid: 1904 + - uid: 1907 components: - pos: -37.5,-9.5 parent: 2 type: Transform - proto: AutolatheMachineCircuitboard entities: - - uid: 1905 + - uid: 1908 components: - pos: -37.452168,-18.414932 parent: 2 type: Transform - proto: BananaPhoneInstrument entities: - - uid: 1906 + - uid: 1909 components: - pos: -19.559175,37.640453 parent: 2 type: Transform - proto: BananaSeeds entities: - - uid: 1907 + - uid: 1910 components: - pos: 2.4199185,-21.169794 parent: 2 type: Transform - proto: BananiumOre1 entities: - - uid: 1908 + - uid: 1911 components: - pos: -44.56904,61.76841 parent: 2 type: Transform - - uid: 1909 + - uid: 1912 components: - pos: -45.38154,60.565285 parent: 2 type: Transform - - uid: 1910 + - uid: 1913 components: - pos: -44.647163,61.39341 parent: 2 type: Transform - proto: BannerCargo entities: - - uid: 1911 + - uid: 1914 components: - pos: -25.5,24.5 parent: 2 type: Transform - - uid: 1912 + - uid: 1915 components: - pos: -25.5,17.5 parent: 2 type: Transform - proto: BannerEngineering entities: - - uid: 1913 + - uid: 1916 components: - pos: -25.5,-8.5 parent: 2 type: Transform - - uid: 1914 + - uid: 1917 components: - pos: -23.5,-17.5 parent: 2 type: Transform - proto: BannerMedical entities: - - uid: 1915 + - uid: 1918 components: - pos: 1.5,-43.5 parent: 2 type: Transform - - uid: 1916 + - uid: 1919 components: - pos: -10.5,-43.5 parent: 2 type: Transform - proto: BannerNanotrasen entities: - - uid: 1917 + - uid: 1920 components: - pos: 28.5,-16.5 parent: 2 type: Transform - - uid: 1918 + - uid: 1921 components: - pos: 22.5,-16.5 parent: 2 type: Transform - proto: BannerRevolution entities: - - uid: 1919 + - uid: 1922 components: - pos: 0.5,-73.5 parent: 2 type: Transform - - uid: 1920 + - uid: 1923 components: - pos: -47.5,-72.5 parent: 2 type: Transform - - uid: 1921 + - uid: 1924 components: - pos: -36.5,-72.5 parent: 2 type: Transform - - uid: 1922 + - uid: 1925 components: - pos: -46.5,-84.5 parent: 2 type: Transform - - uid: 1923 + - uid: 1926 components: - pos: -37.5,-84.5 parent: 2 type: Transform - - uid: 1924 + - uid: 1927 components: - pos: 55.5,58.5 parent: 2 type: Transform - - uid: 1925 + - uid: 1928 components: - pos: 53.5,58.5 parent: 2 type: Transform - - uid: 1926 + - uid: 1929 components: - pos: 62.5,-69.5 parent: 2 type: Transform - - uid: 1927 + - uid: 1930 components: - pos: 60.5,-69.5 parent: 2 type: Transform - proto: BannerScience entities: - - uid: 1928 + - uid: 1931 components: - pos: 48.5,-40.5 parent: 2 type: Transform - - uid: 1929 + - uid: 1932 components: - pos: 48.5,-44.5 parent: 2 type: Transform - - uid: 1930 + - uid: 1933 components: - pos: 59.5,-49.5 parent: 2 type: Transform - - uid: 1931 + - uid: 1934 components: - pos: 65.5,-49.5 parent: 2 type: Transform - proto: BannerSecurity entities: - - uid: 1932 + - uid: 1935 components: - pos: 21.5,18.5 parent: 2 type: Transform - - uid: 1933 + - uid: 1936 components: - pos: 27.5,8.5 parent: 2 type: Transform - - uid: 1934 + - uid: 1937 components: - pos: 23.5,8.5 parent: 2 type: Transform - proto: Barricade entities: - - uid: 1935 + - uid: 1938 components: - rot: -1.5707963267948966 rad pos: -26.5,-64.5 parent: 2 type: Transform - - uid: 1936 + - uid: 1939 components: - pos: -3.5,-75.5 parent: 2 type: Transform - - uid: 1937 + - uid: 1940 components: - pos: 42.5,-9.5 parent: 2 type: Transform - - uid: 1938 + - uid: 1941 components: - pos: 44.5,-9.5 parent: 2 type: Transform - - uid: 1939 + - uid: 1942 components: - pos: 48.5,-12.5 parent: 2 type: Transform - - uid: 1940 + - uid: 1943 components: - rot: 3.141592653589793 rad pos: -35.5,-23.5 parent: 2 type: Transform - - uid: 1941 + - uid: 1944 components: - rot: 1.5707963267948966 rad pos: -48.5,-66.5 parent: 2 type: Transform - - uid: 1942 + - uid: 1945 components: - rot: 1.5707963267948966 rad pos: -44.5,-66.5 parent: 2 type: Transform - - uid: 1943 + - uid: 1946 components: - rot: 1.5707963267948966 rad pos: -45.5,-67.5 parent: 2 type: Transform - - uid: 1944 + - uid: 1947 components: - rot: 3.141592653589793 rad pos: 20.5,-49.5 parent: 2 type: Transform - - uid: 1945 + - uid: 1948 components: - rot: 3.141592653589793 rad pos: 67.5,-61.5 parent: 2 type: Transform - - uid: 1946 + - uid: 1949 components: - pos: 67.5,-63.5 parent: 2 type: Transform - - uid: 1947 + - uid: 1950 components: - pos: -39.5,-21.5 parent: 2 type: Transform - - uid: 31262 + - uid: 1951 components: - rot: -1.5707963267948966 rad pos: 54.5,53.5 @@ -21803,28 +21872,28 @@ entities: type: Transform - proto: BarricadeBlock entities: - - uid: 31240 + - uid: 1952 components: - pos: -39.5,-95.5 parent: 2 type: Transform - - uid: 31241 + - uid: 1953 components: - pos: -42.5,-86.5 parent: 2 type: Transform - - uid: 31242 + - uid: 1954 components: - pos: -42.5,-28.5 parent: 2 type: Transform - - uid: 31260 + - uid: 1955 components: - rot: -1.5707963267948966 rad pos: 56.5,35.5 parent: 2 type: Transform - - uid: 31261 + - uid: 1956 components: - rot: -1.5707963267948966 rad pos: 54.5,54.5 @@ -21832,31 +21901,31 @@ entities: type: Transform - proto: BarricadeDirectional entities: - - uid: 31255 + - uid: 1957 components: - rot: 3.141592653589793 rad pos: -17.5,-96.5 parent: 2 type: Transform - - uid: 31256 + - uid: 1958 components: - rot: -1.5707963267948966 rad pos: -47.5,-77.5 parent: 2 type: Transform - - uid: 31257 + - uid: 1959 components: - rot: -1.5707963267948966 rad pos: -47.5,-78.5 parent: 2 type: Transform - - uid: 31258 + - uid: 1960 components: - rot: 1.5707963267948966 rad pos: -49.5,-68.5 parent: 2 type: Transform - - uid: 31259 + - uid: 1961 components: - rot: -1.5707963267948966 rad pos: -50.5,-65.5 @@ -21864,7 +21933,7 @@ entities: type: Transform - proto: BarSign entities: - - uid: 1948 + - uid: 1962 components: - desc: Recently relicensed after a long closure. name: The Emergency Rum Party @@ -21874,7 +21943,7 @@ entities: type: Transform - current: EmergencyRumParty type: BarSign - - uid: 1949 + - uid: 1963 components: - desc: A very controversial bar known for its wide variety of constantly-changing drinks. name: The Coderbus @@ -21884,224 +21953,229 @@ entities: type: Transform - current: TheCoderbus type: BarSign - - uid: 1950 + - uid: 1964 components: - pos: 33.5,48.5 parent: 2 type: Transform - proto: Basketball entities: - - uid: 1951 + - uid: 1965 components: - pos: 59.373314,-2.3464775 parent: 2 type: Transform - - uid: 1952 + - uid: 1966 components: - pos: -49.590145,-63.44321 parent: 2 type: Transform - proto: Beaker entities: - - uid: 1953 + - uid: 1967 components: - pos: -25.200409,-78.7421 parent: 2 type: Transform - - uid: 1954 + - uid: 1968 components: - pos: 54.768433,18.769468 parent: 2 type: Transform - - uid: 1955 + - uid: 1969 components: - pos: 54.659058,18.535093 parent: 2 type: Transform + - uid: 1970 + components: + - pos: 51.539406,-40.488155 + parent: 2 + type: Transform - proto: Bed entities: - - uid: 1956 + - uid: 1971 components: - pos: 36.5,7.5 parent: 2 type: Transform - - uid: 1957 + - uid: 1972 components: - pos: 36.5,4.5 parent: 2 type: Transform - - uid: 1958 + - uid: 1973 components: - pos: 8.5,22.5 parent: 2 type: Transform - - uid: 1959 + - uid: 1974 components: - pos: 29.5,10.5 parent: 2 type: Transform - - uid: 1960 + - uid: 1975 components: - pos: 32.5,10.5 parent: 2 type: Transform - - uid: 1961 + - uid: 1976 components: - pos: 35.5,10.5 parent: 2 type: Transform - - uid: 1962 + - uid: 1977 components: - pos: -26.5,43.5 parent: 2 type: Transform - - uid: 1963 + - uid: 1978 components: - pos: -7.5,-4.5 parent: 2 type: Transform - - uid: 1964 + - uid: 1979 components: - pos: -15.5,-39.5 parent: 2 type: Transform - - uid: 1965 + - uid: 1980 components: - pos: 55.5,24.5 parent: 2 type: Transform - - uid: 1966 + - uid: 1981 components: - pos: 52.5,24.5 parent: 2 type: Transform - - uid: 1967 + - uid: 1982 components: - pos: 49.5,24.5 parent: 2 type: Transform - - uid: 1968 + - uid: 1983 components: - pos: 46.5,24.5 parent: 2 type: Transform - - uid: 1969 + - uid: 1984 components: - pos: 58.5,24.5 parent: 2 type: Transform - - uid: 1970 + - uid: 1985 components: - pos: 62.5,19.5 parent: 2 type: Transform - - uid: 1971 + - uid: 1986 components: - pos: 62.5,16.5 parent: 2 type: Transform - - uid: 1972 + - uid: 1987 components: - pos: 62.5,-55.5 parent: 2 type: Transform - - uid: 1973 + - uid: 1988 components: - pos: -56.5,-86.5 parent: 2 type: Transform - - uid: 1974 + - uid: 1989 components: - pos: -30.5,31.5 parent: 2 type: Transform - - uid: 1975 + - uid: 1990 components: - pos: 32.5,-29.5 parent: 2 type: Transform - - uid: 1976 + - uid: 1991 components: - pos: -29.5,14.5 parent: 2 type: Transform - - uid: 1977 + - uid: 1992 components: - pos: -42.5,9.5 parent: 2 type: Transform - - uid: 1978 + - uid: 1993 components: - pos: -51.5,6.5 parent: 2 type: Transform - - uid: 1979 + - uid: 1994 components: - pos: -52.5,15.5 parent: 2 type: Transform - - uid: 1980 + - uid: 1995 components: - pos: -23.5,31.5 parent: 2 type: Transform - - uid: 1981 + - uid: 1996 components: - pos: -19.5,33.5 parent: 2 type: Transform - - uid: 1982 + - uid: 1997 components: - pos: -10.5,31.5 parent: 2 type: Transform - - uid: 1983 + - uid: 1998 components: - pos: -19.5,38.5 parent: 2 type: Transform - - uid: 1984 + - uid: 1999 components: - pos: 48.5,-11.5 parent: 2 type: Transform - - uid: 1985 + - uid: 2000 components: - pos: -34.5,-20.5 parent: 2 type: Transform - - uid: 1986 + - uid: 2001 components: - pos: -0.5,-6.5 parent: 2 type: Transform - - uid: 1987 + - uid: 2002 components: - pos: -1.5,-19.5 parent: 2 type: Transform - - uid: 1988 + - uid: 2003 components: - pos: -1.5,-20.5 parent: 2 type: Transform - proto: BedsheetBlack entities: - - uid: 1989 + - uid: 2004 components: - pos: -42.5,9.5 parent: 2 type: Transform - proto: BedsheetCaptain entities: - - uid: 1990 + - uid: 2005 components: - pos: 32.5,-29.5 parent: 2 type: Transform - proto: BedsheetCE entities: - - uid: 1991 + - uid: 2006 components: - rot: -1.5707963267948966 rad pos: -34.5,-20.5 @@ -22109,13 +22183,13 @@ entities: type: Transform - proto: BedsheetClown entities: - - uid: 1992 + - uid: 2007 components: - rot: 3.141592653589793 rad pos: -19.5,38.5 parent: 2 type: Transform - - uid: 1993 + - uid: 2008 components: - rot: -1.5707963267948966 rad pos: -1.5,-20.5 @@ -22123,60 +22197,60 @@ entities: type: Transform - proto: BedsheetCult entities: - - uid: 1994 + - uid: 2009 components: - pos: -29.5,14.5 parent: 2 type: Transform - proto: BedsheetGreen entities: - - uid: 1995 + - uid: 2010 components: - pos: -51.5,6.5 parent: 2 type: Transform - proto: BedsheetGrey entities: - - uid: 1996 + - uid: 2011 components: - pos: 29.5,10.5 parent: 2 type: Transform - - uid: 1997 + - uid: 2012 components: - pos: 32.5,10.5 parent: 2 type: Transform - - uid: 1998 + - uid: 2013 components: - pos: 35.5,10.5 parent: 2 type: Transform - - uid: 1999 + - uid: 2014 components: - pos: 36.5,7.5 parent: 2 type: Transform - - uid: 2000 + - uid: 2015 components: - pos: 36.5,4.5 parent: 2 type: Transform - - uid: 2001 + - uid: 2016 components: - pos: -52.5,15.5 parent: 2 type: Transform - proto: BedsheetHOP entities: - - uid: 2002 + - uid: 2017 components: - pos: -0.5,-6.5 parent: 2 type: Transform - proto: BedsheetHOS entities: - - uid: 2003 + - uid: 2018 components: - rot: -1.5707963267948966 rad pos: 8.5,22.5 @@ -22184,72 +22258,72 @@ entities: type: Transform - proto: BedsheetIan entities: - - uid: 2004 + - uid: 2019 components: - pos: 48.5,-11.5 parent: 2 type: Transform - proto: BedsheetMedical entities: - - uid: 2005 + - uid: 2020 components: - pos: -21.5,-54.5 parent: 2 type: Transform - - uid: 2006 + - uid: 2021 components: - rot: -1.5707963267948966 rad pos: -12.5,-57.5 parent: 2 type: Transform - - uid: 2007 + - uid: 2022 components: - rot: -1.5707963267948966 rad pos: -9.5,-57.5 parent: 2 type: Transform - - uid: 2008 + - uid: 2023 components: - rot: -1.5707963267948966 rad pos: -6.5,-57.5 parent: 2 type: Transform - - uid: 2009 + - uid: 2024 components: - rot: -1.5707963267948966 rad pos: -3.5,-57.5 parent: 2 type: Transform - - uid: 2010 + - uid: 2025 components: - rot: -1.5707963267948966 rad pos: -0.5,-57.5 parent: 2 type: Transform - - uid: 2011 + - uid: 2026 components: - rot: 3.141592653589793 rad pos: 6.5,-56.5 parent: 2 type: Transform - - uid: 2012 + - uid: 2027 components: - pos: 44.5,4.5 parent: 2 type: Transform - - uid: 2013 + - uid: 2028 components: - pos: 44.5,5.5 parent: 2 type: Transform - proto: BedsheetMime entities: - - uid: 2014 + - uid: 2029 components: - pos: -26.5,43.5 parent: 2 type: Transform - - uid: 2015 + - uid: 2030 components: - rot: -1.5707963267948966 rad pos: -1.5,-19.5 @@ -22257,44 +22331,44 @@ entities: type: Transform - proto: BedsheetOrange entities: - - uid: 2016 + - uid: 2031 components: - pos: 58.5,24.5 parent: 2 type: Transform - - uid: 2017 + - uid: 2032 components: - pos: 55.5,24.5 parent: 2 type: Transform - - uid: 2018 + - uid: 2033 components: - pos: 52.5,24.5 parent: 2 type: Transform - - uid: 2019 + - uid: 2034 components: - pos: 49.5,24.5 parent: 2 type: Transform - - uid: 2020 + - uid: 2035 components: - pos: 46.5,24.5 parent: 2 type: Transform - - uid: 2021 + - uid: 2036 components: - pos: 62.5,19.5 parent: 2 type: Transform - - uid: 2022 + - uid: 2037 components: - pos: 62.5,16.5 parent: 2 type: Transform - proto: BedsheetQM entities: - - uid: 2023 + - uid: 2038 components: - rot: 3.141592653589793 rad pos: -30.5,31.5 @@ -22302,1697 +22376,1013 @@ entities: type: Transform - proto: BedsheetRD entities: - - uid: 2024 + - uid: 2039 components: - pos: 62.5,-55.5 parent: 2 type: Transform - proto: BedsheetSpawner entities: - - uid: 2025 + - uid: 2040 components: - pos: -10.5,31.5 parent: 2 type: Transform - - uid: 2026 + - uid: 2041 components: - pos: -19.5,33.5 parent: 2 type: Transform - proto: BedsheetSyndie entities: - - uid: 2027 + - uid: 2042 components: - pos: -56.5,-86.5 parent: 2 type: Transform - proto: BedsheetUSA entities: - - uid: 2028 + - uid: 2043 components: - pos: -23.5,31.5 parent: 2 type: Transform - proto: Bible entities: - - uid: 2029 + - uid: 2044 components: - pos: -30.453314,15.631503 parent: 2 type: Transform - proto: BigBox entities: - - uid: 2030 + - uid: 2045 components: - pos: 58.475555,34.501217 parent: 2 type: Transform - proto: BikeHorn entities: - - uid: 2031 + - uid: 2046 components: - pos: -22.127623,37.564125 parent: 2 type: Transform - proto: BikeHornInstrument entities: - - uid: 2032 + - uid: 2047 components: - pos: 2.4660668,-20.657997 parent: 2 type: Transform - proto: BiomassReclaimer entities: - - uid: 2033 + - uid: 2048 components: - pos: -5.5,-66.5 parent: 2 type: Transform - proto: BiomassReclaimerMachineCircuitboard entities: - - uid: 2034 + - uid: 2049 components: - pos: -11.687319,37.80377 parent: 2 type: Transform - proto: BlastDoor entities: - - uid: 2035 + - uid: 2050 components: - pos: -78.5,-41.5 parent: 2 type: Transform - links: - - 23908 + - 23958 type: DeviceLinkSink - - uid: 2036 + - uid: 2051 components: - pos: -78.5,-40.5 parent: 2 type: Transform - links: - - 23908 + - 23958 type: DeviceLinkSink - - uid: 2037 + - uid: 2052 components: - pos: -78.5,-42.5 parent: 2 type: Transform - links: - - 23908 + - 23958 type: DeviceLinkSink - - uid: 2038 + - uid: 2053 components: - pos: -74.5,-46.5 parent: 2 type: Transform - links: - - 23907 + - 23957 type: DeviceLinkSink - - uid: 2039 + - uid: 2054 components: - pos: -74.5,-44.5 parent: 2 type: Transform - links: - - 23907 + - 23957 type: DeviceLinkSink - - uid: 2040 + - uid: 2055 components: - pos: -74.5,-45.5 parent: 2 type: Transform - links: - - 23907 + - 23957 type: DeviceLinkSink - proto: BlastDoorBridge entities: - - uid: 2041 + - uid: 2056 components: - pos: 10.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -297466.84 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23888 + - 23938 type: DeviceLinkSink - - uid: 2042 + - uid: 2057 components: - pos: 10.5,49.5 parent: 2 type: Transform - - SecondsUntilStateChange: -297466.84 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23888 + - 23938 type: DeviceLinkSink - - uid: 2043 + - uid: 2058 components: - pos: 10.5,48.5 parent: 2 type: Transform - - SecondsUntilStateChange: -297466.84 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23888 + - 23938 type: DeviceLinkSink - proto: BlastDoorExterior1 entities: - - uid: 2044 + - uid: 2059 components: - pos: 18.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -362896.28 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23864 + - 23914 type: DeviceLinkSink - - uid: 2045 + - uid: 2060 components: - pos: 47.5,-51.5 parent: 2 type: Transform - - SecondsUntilStateChange: -232277.11 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23860 + - 23910 type: DeviceLinkSink - - uid: 2046 + - uid: 2061 components: - pos: 47.5,-52.5 parent: 2 type: Transform - - SecondsUntilStateChange: -232277.11 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23860 + - 23910 type: DeviceLinkSink - - uid: 2047 + - uid: 2062 components: - pos: 47.5,-53.5 parent: 2 type: Transform - - SecondsUntilStateChange: -232277.11 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23860 + - 23910 type: DeviceLinkSink - - uid: 2048 + - uid: 2063 components: - pos: 47.5,-54.5 parent: 2 type: Transform - - SecondsUntilStateChange: -232277.11 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23860 + - 23910 type: DeviceLinkSink - - uid: 2049 + - uid: 2064 components: - pos: 52.5,-58.5 parent: 2 type: Transform - - SecondsUntilStateChange: -232264.78 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23861 + - 23911 type: DeviceLinkSink - - uid: 2050 + - uid: 2065 components: - pos: 50.5,-62.5 parent: 2 type: Transform - - SecondsUntilStateChange: -232267.31 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23894 + - 23944 type: DeviceLinkSink - - uid: 2051 + - uid: 2066 components: - rot: 1.5707963267948966 rad pos: 55.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -232215.6 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23863 + - 23913 type: DeviceLinkSink - - uid: 2052 + - uid: 2067 components: - rot: 1.5707963267948966 rad pos: 54.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -232215.6 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23863 + - 23913 type: DeviceLinkSink - - uid: 2053 + - uid: 2068 components: - pos: -45.5,-34.5 parent: 2 type: Transform - - SecondsUntilStateChange: -487744.72 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23909 + - 23959 type: DeviceLinkSink - - uid: 2054 + - uid: 2069 components: - rot: -1.5707963267948966 rad pos: -40.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -486095.06 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23867 + - 23917 type: DeviceLinkSink - - uid: 2055 + - uid: 2070 components: - rot: -1.5707963267948966 rad pos: -39.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -486095.06 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23867 + - 23917 type: DeviceLinkSink - - uid: 2056 + - uid: 2071 components: - rot: -1.5707963267948966 rad pos: -38.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -486095.06 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23867 + - 23917 type: DeviceLinkSink - - uid: 2057 + - uid: 2072 components: - rot: -1.5707963267948966 rad pos: -37.5,-40.5 parent: 2 type: Transform - - SecondsUntilStateChange: -486095.06 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23867 + - 23917 type: DeviceLinkSink - - uid: 2058 + - uid: 2073 components: - pos: -49.5,19.5 parent: 2 type: Transform - - SecondsUntilStateChange: -366059.44 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23869 + - 23919 type: DeviceLinkSink - - uid: 2059 + - uid: 2074 components: - pos: -49.5,23.5 parent: 2 type: Transform - - SecondsUntilStateChange: -366059.44 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23869 + - 23919 type: DeviceLinkSink - - uid: 2060 + - uid: 2075 components: - pos: 51.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -328217.75 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23877 - - 23879 - - 23884 + - 23927 + - 23929 + - 23934 type: DeviceLinkSink - - uid: 2061 + - uid: 2076 components: - pos: 54.5,45.5 parent: 2 type: Transform - - SecondsUntilStateChange: -328217.75 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23875 - - 23877 + - 23925 + - 23927 type: DeviceLinkSink - - uid: 2062 + - uid: 2077 components: - pos: -52.5,34.5 parent: 2 type: Transform - - SecondsUntilStateChange: -160186.55 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23899 + - 23949 type: DeviceLinkSink - - uid: 2063 + - uid: 2078 components: - pos: -52.5,30.5 parent: 2 type: Transform - - SecondsUntilStateChange: -160158.84 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23862 + - 23912 type: DeviceLinkSink - - uid: 2064 + - uid: 2079 components: - pos: -53.5,23.5 parent: 2 type: Transform - - SecondsUntilStateChange: -160227.48 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23868 + - 23918 type: DeviceLinkSink - - uid: 2065 + - uid: 2080 components: - pos: -53.5,19.5 parent: 2 type: Transform - - SecondsUntilStateChange: -160227.48 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23868 + - 23918 type: DeviceLinkSink - - uid: 2066 + - uid: 2081 components: - pos: 53.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -326475.62 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23871 - - 23880 - - 23887 + - 23921 + - 23930 + - 23937 type: DeviceLinkSink - - uid: 2067 + - uid: 2082 components: - pos: 55.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -328478 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23875 - - 23878 + - 23925 + - 23928 type: DeviceLinkSink - - uid: 2068 + - uid: 2083 components: - pos: 50.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -328217.75 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23873 + - 23923 type: DeviceLinkSink - - uid: 2069 + - uid: 2084 components: - pos: 57.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -328217.75 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23879 + - 23929 type: DeviceLinkSink - - uid: 2070 + - uid: 2085 components: - pos: 56.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -328217.75 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23870 + - 23920 type: DeviceLinkSink - - uid: 2071 + - uid: 2086 components: - pos: 51.5,48.5 parent: 2 type: Transform - - uid: 2072 + - uid: 2087 components: - pos: 53.5,48.5 parent: 2 type: Transform - - SecondsUntilStateChange: -326475.62 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23870 - - 23885 - - 23887 + - 23920 + - 23935 + - 23937 type: DeviceLinkSink - - uid: 2073 + - uid: 2088 components: - pos: 55.5,48.5 parent: 2 type: Transform - links: - - 23885 + - 23935 type: DeviceLinkSink - - uid: 2074 + - uid: 2089 components: - pos: 58.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -328217.75 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23871 + - 23921 type: DeviceLinkSink - - uid: 2075 + - uid: 2090 components: - pos: 52.5,45.5 parent: 2 type: Transform - - SecondsUntilStateChange: -328713.4 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23874 - - 23883 + - 23924 + - 23933 type: DeviceLinkSink - - uid: 2076 + - uid: 2091 components: - pos: 53.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -326475.62 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23881 - - 23887 + - 23931 + - 23937 type: DeviceLinkSink - - uid: 2077 + - uid: 2092 components: - pos: 55.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -328217.75 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23881 - - 23884 + - 23931 + - 23934 type: DeviceLinkSink - - uid: 2078 + - uid: 2093 components: - pos: 58.5,45.5 parent: 2 type: Transform - - SecondsUntilStateChange: -328217.75 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23882 + - 23932 type: DeviceLinkSink - - uid: 2079 + - uid: 2094 components: - pos: 57.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -328217.75 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23874 - - 23876 - - 23885 + - 23924 + - 23926 + - 23935 type: DeviceLinkSink - - uid: 2080 + - uid: 2095 components: - pos: 57.5,48.5 parent: 2 type: Transform - - uid: 2081 + - uid: 2096 components: - pos: 54.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -328217.75 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23878 + - 23928 type: DeviceLinkSink - - uid: 2082 + - uid: 2097 components: - pos: 52.5,47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -328217.75 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23880 + - 23930 type: DeviceLinkSink - - uid: 2083 + - uid: 2098 components: - pos: 51.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -328217.75 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23884 - - 23885 + - 23934 + - 23935 type: DeviceLinkSink - - uid: 2084 + - uid: 2099 components: - pos: 56.5,45.5 parent: 2 type: Transform - - SecondsUntilStateChange: -328572.1 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23876 - - 23882 + - 23926 + - 23932 type: DeviceLinkSink - - uid: 2085 + - uid: 2100 components: - pos: 50.5,45.5 parent: 2 type: Transform - - SecondsUntilStateChange: -328217.75 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23873 - - 23883 + - 23923 + - 23933 type: DeviceLinkSink - - uid: 2086 + - uid: 2101 components: - pos: -18.5,-96.5 parent: 2 type: Transform - - SecondsUntilStateChange: -274591.94 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23890 + - 23940 type: DeviceLinkSink - - uid: 2087 + - uid: 2102 components: - pos: -18.5,-98.5 parent: 2 type: Transform - - SecondsUntilStateChange: -274591.94 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23890 + - 23940 type: DeviceLinkSink - - uid: 2088 + - uid: 2103 components: - pos: -26.5,-96.5 parent: 2 type: Transform - - SecondsUntilStateChange: -274600.28 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23891 + - 23941 type: DeviceLinkSink - - uid: 2089 + - uid: 2104 components: - pos: -26.5,-98.5 parent: 2 type: Transform - - SecondsUntilStateChange: -274600.28 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23891 + - 23941 type: DeviceLinkSink - - uid: 2090 + - uid: 2105 components: - pos: 67.5,-39.5 parent: 2 type: Transform - - SecondsUntilStateChange: -230373.9 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23859 + - 23909 type: DeviceLinkSink - - uid: 2091 + - uid: 2106 components: - rot: 3.141592653589793 rad pos: 72.5,-27.5 parent: 2 type: Transform - links: - - 23895 + - 23945 type: DeviceLinkSink - - uid: 2092 + - uid: 2107 components: - pos: -45.5,-35.5 parent: 2 type: Transform - links: - - 23909 + - 23959 type: DeviceLinkSink - proto: BlastDoorExterior1Open entities: - - uid: 2093 + - uid: 2108 components: - rot: -1.5707963267948966 rad pos: 24.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -292454.84 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - links: - - 23889 + - 23939 type: DeviceLinkSink - - uid: 2094 + - uid: 2109 components: - rot: -1.5707963267948966 rad pos: 23.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -292454.84 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - links: - - 23889 + - 23939 type: DeviceLinkSink - - uid: 2095 + - uid: 2110 components: - rot: -1.5707963267948966 rad pos: 25.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -292454.84 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - links: - - 23889 + - 23939 type: DeviceLinkSink - - uid: 2096 + - uid: 2111 components: - rot: -1.5707963267948966 rad pos: 26.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -292454.84 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - links: - - 23889 + - 23939 type: DeviceLinkSink - - uid: 2097 + - uid: 2112 components: - rot: -1.5707963267948966 rad pos: 24.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -292454.84 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - links: - - 23889 + - 23939 type: DeviceLinkSink - - uid: 2098 + - uid: 2113 components: - rot: -1.5707963267948966 rad pos: 23.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -292454.84 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - links: - - 23889 + - 23939 type: DeviceLinkSink - - uid: 2099 + - uid: 2114 components: - rot: -1.5707963267948966 rad pos: 25.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -292454.84 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - links: - - 23889 + - 23939 type: DeviceLinkSink - - uid: 2100 + - uid: 2115 components: - rot: -1.5707963267948966 rad pos: 26.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -292454.84 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - links: - - 23889 + - 23939 type: DeviceLinkSink - - uid: 2101 + - uid: 2116 components: - rot: -1.5707963267948966 rad pos: 22.5,44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -292454.84 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - links: - - 23889 + - 23939 type: DeviceLinkSink - - uid: 2102 + - uid: 2117 components: - rot: -1.5707963267948966 rad pos: 22.5,46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -292454.84 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - links: - - 23889 + - 23939 type: DeviceLinkSink - - uid: 2103 + - uid: 2118 components: - pos: -8.5,-91.5 parent: 2 type: Transform - - SecondsUntilStateChange: -276348.94 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - links: - - 23892 - - 23893 + - 23942 + - 23943 type: DeviceLinkSink - - uid: 2104 + - uid: 2119 components: - pos: -8.5,-92.5 parent: 2 type: Transform - - SecondsUntilStateChange: -276348.94 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - links: - - 23892 - - 23893 + - 23942 + - 23943 type: DeviceLinkSink - - uid: 2105 + - uid: 2120 components: - pos: -8.5,-93.5 parent: 2 type: Transform - - SecondsUntilStateChange: -276348.94 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - links: - - 23892 - - 23893 + - 23942 + - 23943 type: DeviceLinkSink - - uid: 2106 + - uid: 2121 components: - pos: -6.5,-91.5 parent: 2 type: Transform - - SecondsUntilStateChange: -276348.94 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - links: - - 23892 - - 23893 + - 23942 + - 23943 type: DeviceLinkSink - - uid: 2107 + - uid: 2122 components: - pos: -6.5,-90.5 parent: 2 type: Transform - - SecondsUntilStateChange: -276348.94 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - links: - - 23892 - - 23893 + - 23942 + - 23943 type: DeviceLinkSink - - uid: 2108 + - uid: 2123 components: - pos: -6.5,-92.5 parent: 2 type: Transform - - SecondsUntilStateChange: -276348.94 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - links: - - 23892 - - 23893 + - 23942 + - 23943 type: DeviceLinkSink - - uid: 2109 + - uid: 2124 components: - pos: -6.5,-93.5 parent: 2 type: Transform - - SecondsUntilStateChange: -276348.94 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - links: - - 23892 - - 23893 + - 23942 + - 23943 type: DeviceLinkSink - - uid: 2110 + - uid: 2125 components: - pos: -8.5,-90.5 parent: 2 type: Transform - - SecondsUntilStateChange: -276348.94 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - links: - - 23892 - - 23893 + - 23942 + - 23943 type: DeviceLinkSink - proto: BlastDoorExterior2 entities: - - uid: 2111 + - uid: 2126 components: - pos: -11.5,-11.5 parent: 2 type: Transform - - SecondsUntilStateChange: -121299.46 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - links: - - 23856 + - 23906 type: DeviceLinkSink - proto: BlastDoorOpen entities: - - uid: 2112 + - uid: 2127 components: - pos: -56.5,-11.5 parent: 2 type: Transform - - SecondsUntilStateChange: -404024.9 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - links: - - 23866 + - 23916 type: DeviceLinkSink - - uid: 2113 + - uid: 2128 components: - pos: -56.5,-12.5 parent: 2 type: Transform - - SecondsUntilStateChange: -404024.9 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - links: - - 23866 + - 23916 type: DeviceLinkSink - - uid: 2114 + - uid: 2129 components: - pos: -56.5,-13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -404024.9 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - links: - - 23866 + - 23916 type: DeviceLinkSink - - uid: 2115 + - uid: 2130 components: - pos: -56.5,-14.5 parent: 2 type: Transform - - SecondsUntilStateChange: -404024.9 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - links: - - 23866 + - 23916 type: DeviceLinkSink - - uid: 2116 + - uid: 2131 components: - pos: -56.5,-15.5 parent: 2 type: Transform - - SecondsUntilStateChange: -404024.9 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - links: - - 23866 + - 23916 type: DeviceLinkSink - - uid: 2117 + - uid: 2132 components: - rot: -1.5707963267948966 rad pos: -64.5,-22.5 parent: 2 type: Transform - - SecondsUntilStateChange: -173222.56 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - links: - - 23865 + - 23915 type: DeviceLinkSink - - uid: 2118 + - uid: 2133 components: - rot: -1.5707963267948966 rad pos: -65.5,-22.5 parent: 2 type: Transform - - SecondsUntilStateChange: -173222.56 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - links: - - 23865 + - 23915 type: DeviceLinkSink - - uid: 2119 + - uid: 2134 components: - rot: -1.5707963267948966 rad pos: -66.5,-22.5 parent: 2 type: Transform - - SecondsUntilStateChange: -173222.56 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - links: - - 23865 + - 23915 type: DeviceLinkSink - - uid: 2120 + - uid: 2135 components: - rot: -1.5707963267948966 rad pos: -67.5,-22.5 parent: 2 type: Transform - - SecondsUntilStateChange: -173222.56 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - links: - - 23865 + - 23915 type: DeviceLinkSink - - uid: 2121 + - uid: 2136 components: - rot: -1.5707963267948966 rad pos: -68.5,-22.5 parent: 2 type: Transform - - SecondsUntilStateChange: -173222.56 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - links: - - 23865 + - 23915 type: DeviceLinkSink - proto: BlockGameArcadeComputerCircuitboard entities: - - uid: 2122 + - uid: 2137 components: - pos: -25.444056,-24.257809 parent: 2 type: Transform - proto: BookAtmosAirAlarms entities: - - uid: 2123 + - uid: 2138 components: - pos: -24.358501,-36.435444 parent: 2 type: Transform - proto: BookAtmosDistro entities: - - uid: 2124 + - uid: 2139 components: - pos: -24.608501,-36.51357 parent: 2 type: Transform - proto: BookAtmosVentsMore entities: - - uid: 2125 + - uid: 2140 components: - pos: -25.155376,-36.48232 parent: 2 type: Transform - proto: BookAtmosWaste entities: - - uid: 2126 + - uid: 2141 components: - pos: -25.389751,-36.57607 parent: 2 type: Transform - proto: BookChefGaming entities: - - uid: 2127 + - uid: 2142 components: - pos: -8.120271,14.578207 parent: 2 type: Transform - proto: BookDetective entities: - - uid: 2128 + - uid: 2143 components: - pos: 8.262031,-12.4473095 parent: 2 type: Transform - - uid: 2129 + - uid: 2144 components: - pos: 40.304634,21.43983 parent: 2 type: Transform - proto: BookEscalation entities: - - uid: 2130 + - uid: 2145 components: - pos: 9.419705,-6.507422 parent: 2 type: Transform - proto: BookEscalationSecurity entities: - - uid: 2131 + - uid: 2146 components: - pos: 15.607252,21.663286 parent: 2 type: Transform - proto: BookFishing entities: - - uid: 2132 + - uid: 2147 components: - pos: 40.53901,21.517956 parent: 2 type: Transform - proto: BookGnominomicon entities: - - uid: 2133 + - uid: 2148 components: - pos: 8.605781,-12.4316845 parent: 2 type: Transform - proto: BookRandom entities: - - uid: 2134 + - uid: 2149 components: - pos: 40.523384,18.611706 parent: 2 type: Transform - - uid: 2135 + - uid: 2150 components: - pos: 38.492134,18.674206 parent: 2 type: Transform - - uid: 2136 + - uid: 2151 components: - pos: 38.429634,21.580456 parent: 2 type: Transform - - uid: 2137 + - uid: 2152 components: - pos: -33.495968,-67.45002 parent: 2 type: Transform - proto: Bookshelf entities: - - uid: 2138 + - uid: 2153 components: - pos: 6.5,-9.5 parent: 2 type: Transform - proto: BookshelfFilled entities: - - uid: 2139 + - uid: 2154 components: - pos: 6.5,-10.5 parent: 2 type: Transform - - uid: 2140 + - uid: 2155 components: - pos: 41.5,21.5 parent: 2 type: Transform - - uid: 2141 + - uid: 2156 components: - pos: 39.5,21.5 parent: 2 type: Transform - - uid: 2142 + - uid: 2157 components: - pos: 41.5,18.5 parent: 2 type: Transform - - uid: 2143 + - uid: 2158 components: - pos: 39.5,18.5 parent: 2 type: Transform - - uid: 2144 + - uid: 2159 components: - pos: 12.5,-10.5 parent: 2 type: Transform - - uid: 2145 + - uid: 2160 components: - pos: 8.5,-10.5 parent: 2 type: Transform - - uid: 2146 + - uid: 2161 components: - pos: 11.5,-12.5 parent: 2 type: Transform - - uid: 2147 + - uid: 2162 components: - pos: 12.5,-12.5 parent: 2 type: Transform - - uid: 2148 + - uid: 2163 components: - pos: 13.5,-12.5 parent: 2 type: Transform - - uid: 2149 + - uid: 2164 components: - pos: 7.5,-4.5 parent: 2 type: Transform - - uid: 2150 + - uid: 2165 components: - pos: 7.5,-6.5 parent: 2 type: Transform - - uid: 2151 + - uid: 2166 components: - pos: 11.5,-10.5 parent: 2 type: Transform - - uid: 2152 + - uid: 2167 components: - pos: 13.5,-10.5 parent: 2 type: Transform - proto: BookWatched entities: - - uid: 2153 + - uid: 2168 components: - rot: 1.5707963267948966 rad pos: 3.4497375,-9.559602 @@ -24000,23 +23390,23 @@ entities: type: Transform - proto: BoozeDispenser entities: - - uid: 2154 + - uid: 2169 components: - rot: -1.5707963267948966 rad pos: 18.5,12.5 parent: 2 type: Transform - - uid: 2155 + - uid: 2170 components: - pos: -43.5,-74.5 parent: 2 type: Transform - - uid: 2156 + - uid: 2171 components: - pos: 38.5,51.5 parent: 2 type: Transform - - uid: 2157 + - uid: 2172 components: - rot: -1.5707963267948966 rad pos: 29.5,-35.5 @@ -24024,89 +23414,89 @@ entities: type: Transform - proto: BorgCharger entities: - - uid: 2158 + - uid: 2173 components: - pos: 16.5,-3.5 parent: 2 type: Transform - - uid: 2159 + - uid: 2174 components: - pos: -22.5,-6.5 parent: 2 type: Transform - - uid: 2160 + - uid: 2175 components: - pos: 2.5,59.5 parent: 2 type: Transform - - uid: 2161 + - uid: 2176 components: - pos: 49.5,-9.5 parent: 2 type: Transform - - uid: 2162 + - uid: 2177 components: - pos: 70.5,-43.5 parent: 2 type: Transform - proto: BoxBeaker entities: - - uid: 2163 + - uid: 2178 components: - pos: 7.6496778,-46.860195 parent: 2 type: Transform - - uid: 2164 + - uid: 2179 components: - pos: -26.122566,-84.458 parent: 2 type: Transform - - uid: 2165 + - uid: 2180 components: - pos: 42.431667,-35.402893 parent: 2 type: Transform - - uid: 2166 + - uid: 2181 components: - pos: 8.7782135,-62.351368 parent: 2 type: Transform - proto: BoxBeanbag entities: - - uid: 2167 + - uid: 2182 components: - pos: 22.537981,13.588842 parent: 2 type: Transform - proto: BoxBodyBag entities: - - uid: 2168 + - uid: 2183 components: - pos: -11.506837,-67.45136 parent: 2 type: Transform - proto: BoxCardboard entities: - - uid: 2169 + - uid: 2184 components: - pos: 57.684505,34.726276 parent: 2 type: Transform - - uid: 2170 + - uid: 2185 components: - pos: 57.26263,34.39815 parent: 2 type: Transform - proto: BoxFlashbang entities: - - uid: 2171 + - uid: 2186 components: - - pos: 12.406765,20.463964 + - pos: 24.642923,23.542374 parent: 2 type: Transform - proto: BoxFolderBase entities: - - uid: 2172 + - uid: 2187 components: - rot: 1.5707963267948966 rad pos: 37.60159,-5.001878 @@ -24114,7 +23504,7 @@ entities: type: Transform - proto: BoxFolderBlack entities: - - uid: 2173 + - uid: 2188 components: - rot: 1.5707963267948966 rad pos: 37.617214,-4.673753 @@ -24122,20 +23512,20 @@ entities: type: Transform - proto: BoxFolderBlue entities: - - uid: 2174 + - uid: 2189 components: - pos: 38.992214,-2.4237523 parent: 2 type: Transform - proto: BoxFolderGrey entities: - - uid: 2175 + - uid: 2190 components: - rot: 1.5707963267948966 rad pos: 51.514782,-42.450638 parent: 2 type: Transform - - uid: 2176 + - uid: 2191 components: - rot: 3.141592653589793 rad pos: -23.516235,11.607702 @@ -24143,98 +23533,98 @@ entities: type: Transform - proto: BoxFolderRed entities: - - uid: 2177 + - uid: 2192 components: - pos: 20.994316,-12.4294405 parent: 2 type: Transform - - uid: 2178 + - uid: 2193 components: - pos: 39.22659,-2.4550023 parent: 2 type: Transform - proto: BoxFolderWhite entities: - - uid: 2179 + - uid: 2194 components: - rot: -1.5707963267948966 rad pos: -22.629791,-70.464714 parent: 2 type: Transform - - uid: 2180 + - uid: 2195 components: - pos: -5.7449856,-48.471176 parent: 2 type: Transform - - uid: 2181 + - uid: 2196 components: - pos: -5.5262356,-48.408676 parent: 2 type: Transform - proto: BoxFolderYellow entities: - - uid: 2182 + - uid: 2197 components: - rot: 1.5707963267948966 rad pos: 37.554714,-4.439378 parent: 2 type: Transform - - uid: 2183 + - uid: 2198 components: - rot: 1.5707963267948966 rad pos: 51.655407,-42.653763 parent: 2 type: Transform - - uid: 2184 + - uid: 2199 components: - rot: 3.141592653589793 rad pos: -23.71936,11.498327 parent: 2 type: Transform + - uid: 2200 + components: + - pos: 55.534363,-40.44579 + parent: 2 + type: Transform - proto: BoxForensicPad entities: - - uid: 2185 + - uid: 2201 components: - pos: 22.673187,-14.497248 parent: 2 type: Transform - proto: BoxHandcuff entities: - - uid: 2186 + - uid: 2202 components: - pos: 2.4978194,19.97727 parent: 2 type: Transform - - uid: 2187 - components: - - pos: 12.469265,20.745214 - parent: 2 - type: Transform - - uid: 2188 + - uid: 2203 components: - - pos: 24.25829,23.575323 + - pos: 24.439798,23.714249 parent: 2 type: Transform - proto: BoxHug entities: - - uid: 2189 + - uid: 2204 components: - pos: 21.518953,53.54002 parent: 2 type: Transform - - uid: 2190 + - uid: 2205 components: - pos: 2.5439682,-20.063549 parent: 2 type: Transform - proto: BoxingBell entities: - - uid: 2191 + - uid: 2206 components: - pos: 28.5,5.5 parent: 2 type: Transform - - uid: 2192 + - uid: 2207 components: - rot: 1.5707963267948966 rad pos: -46.5,-85.5 @@ -24242,230 +23632,223 @@ entities: type: Transform - proto: BoxLatexGloves entities: - - uid: 2193 + - uid: 2208 components: - pos: 8.430597,-62.372696 parent: 2 type: Transform - - uid: 2194 + - uid: 2209 components: - pos: -22.700918,-76.44757 parent: 2 type: Transform - - uid: 2195 + - uid: 2210 components: - pos: 69.515594,-49.409985 parent: 2 type: Transform - - uid: 2196 + - uid: 2211 components: - pos: -0.28067696,-61.388348 parent: 2 type: Transform -- proto: BoxLethalshot - entities: - - uid: 2197 - components: - - pos: 26.496027,30.454184 - parent: 2 - type: Transform - proto: BoxLightbulb entities: - - uid: 2198 + - uid: 2212 components: - pos: -39.570137,-77.31351 parent: 2 type: Transform - proto: BoxLightMixed entities: - - uid: 2199 + - uid: 2213 components: - pos: 39.546867,49.67635 parent: 2 type: Transform - - uid: 2200 + - uid: 2214 components: - pos: -23.56665,-100.24527 parent: 2 type: Transform - proto: BoxLighttube entities: - - uid: 2201 + - uid: 2215 components: - pos: -40.05791,25.682219 parent: 2 type: Transform - proto: BoxMousetrap entities: - - uid: 2202 + - uid: 2216 components: - pos: -7.3951936,-15.377466 parent: 2 type: Transform - - uid: 2203 + - uid: 2217 components: - pos: 2.3209906,11.720218 parent: 2 type: Transform - proto: BoxMouthSwab entities: - - uid: 2204 + - uid: 2218 components: - pos: 10.414972,-62.341446 parent: 2 type: Transform - - uid: 2205 + - uid: 2219 components: - pos: -22.524687,-71.12971 parent: 2 type: Transform - - uid: 2206 + - uid: 2220 components: - pos: -22.357168,-76.22882 parent: 2 type: Transform - proto: BoxPDA entities: - - uid: 2207 + - uid: 2221 components: - pos: 4.5991206,-7.254335 parent: 2 type: Transform - proto: BoxPillCanister entities: - - uid: 2208 + - uid: 2222 components: - pos: -25.106941,-84.458755 parent: 2 type: Transform - - uid: 2209 + - uid: 2223 components: - pos: -8.487805,-33.36571 parent: 2 type: Transform - - uid: 2210 + - uid: 2224 components: - pos: 7.6496778,-47.40707 parent: 2 type: Transform - - uid: 2211 + - uid: 2225 components: - pos: 10.629656,-62.107815 parent: 2 type: Transform - proto: BoxShotgunSlug entities: - - uid: 2212 + - uid: 2226 components: - pos: 27.073633,32.655933 parent: 2 type: Transform - - uid: 2213 + - uid: 2227 components: - pos: 27.052765,32.658382 parent: 2 type: Transform - proto: BoxSterileMask entities: - - uid: 2214 + - uid: 2228 components: - pos: -0.45298922,-61.30278 parent: 2 type: Transform - - uid: 2215 + - uid: 2229 components: - pos: -22.622793,-78.244446 parent: 2 type: Transform - - uid: 2216 + - uid: 2230 components: - pos: -20.619028,-78.321075 parent: 2 type: Transform - proto: BoxSyringe entities: - - uid: 2217 + - uid: 2231 components: - pos: 7.3840528,-47.15707 parent: 2 type: Transform - - uid: 2218 + - uid: 2232 components: - pos: 8.848293,-62.473377 parent: 2 type: Transform - - uid: 2219 + - uid: 2233 components: - pos: -22.337778,-78.539825 parent: 2 type: Transform - - uid: 2220 + - uid: 2234 components: - pos: -20.634653,-77.352325 parent: 2 type: Transform - - uid: 2221 + - uid: 2235 components: - pos: -26.571459,-84.31156 parent: 2 type: Transform - - uid: 2222 + - uid: 2236 components: - pos: -8.384587,-32.982723 parent: 2 type: Transform - proto: BoxZiptie entities: - - uid: 2223 + - uid: 2237 components: - pos: 15.609102,22.64932 parent: 2 type: Transform - proto: BrbSign entities: - - uid: 2224 + - uid: 2238 components: - pos: -28.403494,21.398111 parent: 2 type: Transform - - uid: 2225 + - uid: 2239 components: - pos: 4.567957,-7.561912 parent: 2 type: Transform - proto: BriefcaseBrown entities: - - uid: 2226 + - uid: 2240 components: - pos: 62.36704,-10.4423 parent: 2 type: Transform - - uid: 2227 + - uid: 2241 components: - rot: 1.5707963267948966 rad pos: -22.463455,11.6035385 parent: 2 type: Transform - - uid: 2228 + - uid: 2242 components: - pos: -43.482876,-88.91509 parent: 2 type: Transform - proto: BriefcaseBrownFilled entities: - - uid: 2229 + - uid: 2243 components: - pos: 43.51077,-2.4121785 parent: 2 type: Transform - - uid: 2230 + - uid: 2244 components: - pos: 32.38076,-48.30607 parent: 2 type: Transform - proto: BrigTimer entities: - - uid: 2231 + - uid: 2245 components: - name: cell 3 brig timer type: MetaData @@ -24474,12 +23857,12 @@ entities: parent: 2 type: Transform - linkedPorts: - 30758: + 30830: - Start: Close - Timer: AutoClose - Timer: Open type: DeviceLinkSource - - uid: 2232 + - uid: 2246 components: - name: cell 1 brig timer type: MetaData @@ -24488,12 +23871,12 @@ entities: parent: 2 type: Transform - linkedPorts: - 30750: + 30822: - Start: Close - Timer: AutoClose - Timer: Open type: DeviceLinkSource - - uid: 2233 + - uid: 2247 components: - name: cell 2 brig timer type: MetaData @@ -24502,12 +23885,12 @@ entities: parent: 2 type: Transform - linkedPorts: - 30755: + 30827: - Start: Close - Timer: AutoClose - Timer: Open type: DeviceLinkSource - - uid: 2234 + - uid: 2248 components: - name: cell 4 brig timer type: MetaData @@ -24516,12 +23899,12 @@ entities: parent: 2 type: Transform - linkedPorts: - 30751: + 30823: - Start: Close - Timer: AutoClose - Timer: Open type: DeviceLinkSource - - uid: 2235 + - uid: 2249 components: - name: cell 5 brig timer type: MetaData @@ -24530,21 +23913,21 @@ entities: parent: 2 type: Transform - linkedPorts: - 30756: + 30828: - Start: Close - Timer: AutoClose - Timer: Open type: DeviceLinkSource - proto: BrigTimerElectronics entities: - - uid: 2236 + - uid: 2250 components: - pos: -8.633084,38.341637 parent: 2 type: Transform - proto: BrokenBottle entities: - - uid: 2237 + - uid: 2251 components: - rot: -1.5707963267948966 rad pos: -6.571364,-73.41078 @@ -24552,57 +23935,57 @@ entities: type: Transform - proto: Brutepack entities: - - uid: 2238 + - uid: 2252 components: - pos: -9.633343,-56.47309 parent: 2 type: Transform - - uid: 2239 + - uid: 2253 components: - pos: -10.641302,-3.848185 parent: 2 type: Transform - - uid: 2240 + - uid: 2254 components: - pos: -10.266302,-3.785685 parent: 2 type: Transform - - uid: 2241 + - uid: 2255 components: - pos: -0.6646667,-56.50434 parent: 2 type: Transform - - uid: 2242 + - uid: 2256 components: - pos: -3.5865417,-56.488716 parent: 2 type: Transform - - uid: 2243 + - uid: 2257 components: - pos: -6.5713716,-56.519966 parent: 2 type: Transform - - uid: 2244 + - uid: 2258 components: - pos: -12.617692,-56.44184 parent: 2 type: Transform - - uid: 2245 + - uid: 2259 components: - pos: 30.05692,4.5786 parent: 2 type: Transform - - uid: 2246 + - uid: 2260 components: - pos: -6.3699856,-49.096176 parent: 2 type: Transform - - uid: 2247 + - uid: 2261 components: - pos: -6.6512356,-49.408676 parent: 2 type: Transform - - uid: 2248 + - uid: 2262 components: - rot: -1.5707963267948966 rad pos: 47.410034,4.616682 @@ -24610,42026 +23993,38198 @@ entities: type: Transform - proto: Bucket entities: - - uid: 2249 + - uid: 2263 components: - pos: -7.4822392,14.606249 parent: 2 type: Transform - - uid: 2250 + - uid: 2264 components: - pos: 2.6959906,11.392093 parent: 2 type: Transform - - uid: 2251 + - uid: 2265 components: - pos: 55.336075,17.733736 parent: 2 type: Transform - - uid: 2252 + - uid: 2266 components: - pos: -29.554869,3.5549593 parent: 2 type: Transform - - uid: 2253 + - uid: 2267 components: - pos: 13.468333,-66.41357 parent: 2 type: Transform - - uid: 2254 + - uid: 2268 components: - pos: 55.53834,27.595942 parent: 2 type: Transform - - uid: 2255 + - uid: 2269 components: - pos: -4.262462,56.45376 parent: 2 type: Transform - - uid: 2256 + - uid: 2270 components: - pos: -4.167221,5.7952065 parent: 2 type: Transform - - uid: 2257 + - uid: 2271 components: - pos: -4.417221,5.4827065 parent: 2 type: Transform - proto: BulletFoam entities: - - uid: 2258 + - uid: 2272 components: - rot: -1.5707963267948966 rad pos: -11.707516,41.19452 parent: 2 type: Transform - - uid: 2259 + - uid: 2273 components: - rot: 3.141592653589793 rad pos: -11.879391,41.47577 parent: 2 type: Transform +- proto: BungoSeeds + entities: + - uid: 2274 + components: + - pos: -50.533592,-27.38226 + parent: 2 + type: Transform - proto: CableApcExtension entities: - - uid: 2260 + - uid: 2275 components: - pos: 4.5,-11.5 parent: 2 type: Transform - - uid: 2261 + - uid: 2276 components: - pos: 21.5,-39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2262 + - uid: 2277 components: - pos: 4.5,-6.5 parent: 2 type: Transform - - uid: 2263 + - uid: 2278 components: - pos: -16.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2264 + - uid: 2279 components: - pos: -66.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2265 + - uid: 2280 components: - pos: -65.5,-38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2266 + - uid: 2281 components: - pos: -7.5,8.5 parent: 2 type: Transform - - uid: 2267 + - uid: 2282 components: - pos: -12.5,-33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2268 + - uid: 2283 components: - pos: 18.5,-52.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2269 + - uid: 2284 components: - pos: -5.5,1.5 parent: 2 type: Transform - - uid: 2270 + - uid: 2285 components: - pos: -7.5,-26.5 parent: 2 type: Transform - - uid: 2271 + - uid: 2286 components: - pos: 33.5,-17.5 parent: 2 type: Transform - - uid: 2272 + - uid: 2287 components: - pos: 15.5,-32.5 parent: 2 type: Transform - - uid: 2273 + - uid: 2288 components: - pos: -10.5,-26.5 parent: 2 type: Transform - - uid: 2274 + - uid: 2289 components: - pos: 14.5,-51.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2275 + - uid: 2290 components: - pos: 27.5,-60.5 parent: 2 type: Transform - - uid: 2276 + - uid: 2291 components: - pos: 7.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2277 + - uid: 2292 components: - pos: 7.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2278 + - uid: 2293 components: - pos: 15.5,-18.5 parent: 2 type: Transform - - uid: 2279 + - uid: 2294 components: - pos: -47.5,38.5 parent: 2 type: Transform - - uid: 2280 + - uid: 2295 components: - pos: 0.5,-41.5 parent: 2 type: Transform - - uid: 2281 + - uid: 2296 components: - pos: -1.5,-41.5 parent: 2 type: Transform - - uid: 2282 + - uid: 2297 components: - pos: 15.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2283 + - uid: 2298 components: - pos: 22.5,2.5 parent: 2 type: Transform - - uid: 2284 + - uid: 2299 components: - pos: -4.5,-41.5 parent: 2 type: Transform - - uid: 2285 + - uid: 2300 components: - pos: 32.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2286 + - uid: 2301 components: - pos: -6.5,-75.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2287 + - uid: 2302 components: - pos: 32.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2288 + - uid: 2303 components: - pos: 15.5,-47.5 parent: 2 type: Transform - - uid: 2289 + - uid: 2304 components: - pos: 6.5,-65.5 parent: 2 type: Transform - - uid: 2290 + - uid: 2305 components: - pos: -4.5,-37.5 parent: 2 type: Transform - - uid: 2291 + - uid: 2306 components: - pos: 8.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2292 + - uid: 2307 components: - pos: -12.5,-45.5 parent: 2 type: Transform - - uid: 2293 + - uid: 2308 components: - pos: 14.5,-50.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2294 + - uid: 2309 components: - pos: 15.5,-52.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2295 + - uid: 2310 components: - pos: 27.5,-47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2296 + - uid: 2311 components: - pos: 31.5,-16.5 parent: 2 type: Transform - - uid: 2297 + - uid: 2312 components: - pos: 16.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2298 + - uid: 2313 components: - pos: 20.5,-52.5 parent: 2 type: Transform - - uid: 2299 + - uid: 2314 components: - pos: 21.5,-17.5 parent: 2 type: Transform - - uid: 2300 + - uid: 2315 components: - pos: 15.5,-17.5 parent: 2 type: Transform - - uid: 2301 + - uid: 2316 components: - pos: 16.5,-17.5 parent: 2 type: Transform - - uid: 2302 + - uid: 2317 components: - pos: -8.5,3.5 parent: 2 type: Transform - - uid: 2303 + - uid: 2318 components: - pos: -5.5,4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2304 + - uid: 2319 components: - pos: 30.5,-62.5 parent: 2 type: Transform - - uid: 2305 + - uid: 2320 components: - pos: 15.5,-33.5 parent: 2 type: Transform - - uid: 2306 + - uid: 2321 components: - pos: 18.5,-17.5 parent: 2 type: Transform - - uid: 2307 + - uid: 2322 components: - pos: 20.5,-53.5 parent: 2 type: Transform - - uid: 2308 + - uid: 2323 components: - pos: 6.5,-71.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2309 + - uid: 2324 components: - pos: 19.5,-52.5 parent: 2 type: Transform - - uid: 2310 + - uid: 2325 components: - pos: 21.5,-8.5 parent: 2 type: Transform - - uid: 2311 + - uid: 2326 components: - pos: 25.5,-57.5 parent: 2 type: Transform - - uid: 2312 + - uid: 2327 components: - pos: 15.5,-34.5 parent: 2 type: Transform - - uid: 2313 + - uid: 2328 components: - pos: -0.5,-54.5 parent: 2 type: Transform - - uid: 2314 + - uid: 2329 components: - pos: 0.5,10.5 parent: 2 type: Transform - - uid: 2315 + - uid: 2330 components: - pos: 5.5,14.5 parent: 2 type: Transform - - uid: 2316 + - uid: 2331 components: - pos: -1.5,14.5 parent: 2 type: Transform - - uid: 2317 + - uid: 2332 components: - pos: 24.5,2.5 parent: 2 type: Transform - - uid: 2318 + - uid: 2333 components: - pos: 32.5,0.5 parent: 2 type: Transform - - uid: 2319 + - uid: 2334 components: - pos: 33.5,2.5 parent: 2 type: Transform - - uid: 2320 + - uid: 2335 components: - pos: 5.5,-10.5 parent: 2 type: Transform - - uid: 2321 + - uid: 2336 components: - pos: 0.5,-10.5 parent: 2 type: Transform - - uid: 2322 + - uid: 2337 components: - pos: 10.5,-6.5 parent: 2 type: Transform - - uid: 2323 + - uid: 2338 components: - pos: -3.5,11.5 parent: 2 type: Transform - - uid: 2324 + - uid: 2339 components: - pos: -4.5,6.5 parent: 2 type: Transform - - uid: 2325 + - uid: 2340 components: - pos: -8.5,9.5 parent: 2 type: Transform - - uid: 2326 + - uid: 2341 components: - pos: -4.5,-47.5 parent: 2 type: Transform - - uid: 2327 + - uid: 2342 components: - pos: 1.5,-48.5 parent: 2 type: Transform - - uid: 2328 + - uid: 2343 components: - pos: -1.5,-48.5 parent: 2 type: Transform - - uid: 2329 + - uid: 2344 components: - pos: -1.5,-50.5 parent: 2 type: Transform - - uid: 2330 + - uid: 2345 components: - pos: 4.5,-54.5 parent: 2 type: Transform - - uid: 2331 + - uid: 2346 components: - pos: 0.5,-54.5 parent: 2 type: Transform - - uid: 2332 + - uid: 2347 components: - pos: -15.5,-61.5 parent: 2 type: Transform - - uid: 2333 + - uid: 2348 components: - pos: -6.5,-62.5 parent: 2 type: Transform - - uid: 2334 + - uid: 2349 components: - pos: -8.5,6.5 parent: 2 type: Transform - - uid: 2335 + - uid: 2350 components: - pos: -0.5,14.5 parent: 2 type: Transform - - uid: 2336 + - uid: 2351 components: - pos: -5.5,-42.5 parent: 2 type: Transform - - uid: 2337 + - uid: 2352 components: - pos: 36.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2338 + - uid: 2353 components: - pos: 29.5,32.5 parent: 2 type: Transform - - uid: 2339 + - uid: 2354 components: - pos: 62.5,-6.5 parent: 2 type: Transform - - uid: 2340 + - uid: 2355 components: - pos: -1.5,-51.5 parent: 2 type: Transform - - uid: 2341 + - uid: 2356 components: - pos: 6.5,-48.5 parent: 2 type: Transform - - uid: 2342 + - uid: 2357 components: - pos: -1.5,-45.5 parent: 2 type: Transform - - uid: 2343 + - uid: 2358 components: - pos: -3.5,-52.5 parent: 2 type: Transform - - uid: 2344 + - uid: 2359 components: - pos: -4.5,-54.5 parent: 2 type: Transform - - uid: 2345 + - uid: 2360 components: - pos: -7.5,-54.5 parent: 2 type: Transform - - uid: 2346 + - uid: 2361 components: - pos: -9.5,-54.5 parent: 2 type: Transform - - uid: 2347 + - uid: 2362 components: - pos: 1.5,-54.5 parent: 2 type: Transform - - uid: 2348 + - uid: 2363 components: - pos: 2.5,-60.5 parent: 2 type: Transform - - uid: 2349 + - uid: 2364 components: - pos: -13.5,-62.5 parent: 2 type: Transform - - uid: 2350 + - uid: 2365 components: - pos: -14.5,-66.5 parent: 2 type: Transform - - uid: 2351 + - uid: 2366 components: - pos: -15.5,-65.5 parent: 2 type: Transform - - uid: 2352 + - uid: 2367 components: - pos: -15.5,-54.5 parent: 2 type: Transform - - uid: 2353 + - uid: 2368 components: - pos: 2.5,-70.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2354 + - uid: 2369 components: - pos: 16.5,-29.5 parent: 2 type: Transform - - uid: 2355 + - uid: 2370 components: - pos: 1.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2356 + - uid: 2371 components: - pos: 4.5,-10.5 parent: 2 type: Transform - - uid: 2357 + - uid: 2372 components: - pos: 11.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2358 + - uid: 2373 components: - pos: 2.5,-26.5 parent: 2 type: Transform - - uid: 2359 + - uid: 2374 components: - pos: -10.5,-21.5 parent: 2 type: Transform - - uid: 2360 + - uid: 2375 components: - pos: -8.5,-45.5 parent: 2 type: Transform - - uid: 2361 + - uid: 2376 components: - pos: 3.5,-62.5 parent: 2 type: Transform - - uid: 2362 + - uid: 2377 components: - pos: -5.5,-60.5 parent: 2 type: Transform - - uid: 2363 + - uid: 2378 components: - pos: -1.5,-46.5 parent: 2 type: Transform - - uid: 2364 + - uid: 2379 components: - pos: -2.5,-45.5 parent: 2 type: Transform - - uid: 2365 + - uid: 2380 components: - pos: 12.5,2.5 parent: 2 type: Transform - - uid: 2366 + - uid: 2381 components: - pos: 8.5,2.5 parent: 2 type: Transform - - uid: 2367 + - uid: 2382 components: - pos: 4.5,0.5 parent: 2 type: Transform - - uid: 2368 + - uid: 2383 components: - pos: -12.5,-22.5 parent: 2 type: Transform - - uid: 2369 + - uid: 2384 components: - pos: -13.5,-22.5 parent: 2 type: Transform - - uid: 2370 + - uid: 2385 components: - pos: 30.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2371 + - uid: 2386 components: - pos: 22.5,-29.5 parent: 2 type: Transform - - uid: 2372 + - uid: 2387 components: - pos: 20.5,-23.5 parent: 2 type: Transform - - uid: 2373 + - uid: 2388 components: - pos: 29.5,-28.5 parent: 2 type: Transform - - uid: 2374 + - uid: 2389 components: - pos: 25.5,-23.5 parent: 2 type: Transform - - uid: 2375 + - uid: 2390 components: - pos: 9.5,-6.5 parent: 2 type: Transform - - uid: 2376 + - uid: 2391 components: - pos: 8.5,-6.5 parent: 2 type: Transform - - uid: 2377 + - uid: 2392 components: - pos: 8.5,-6.5 parent: 2 type: Transform - - uid: 2378 + - uid: 2393 components: - pos: 8.5,-6.5 parent: 2 type: Transform - - uid: 2379 + - uid: 2394 components: - pos: 7.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2380 + - uid: 2395 components: - pos: 7.5,-7.5 parent: 2 type: Transform - - uid: 2381 + - uid: 2396 components: - pos: 4.5,-41.5 parent: 2 type: Transform - - uid: 2382 + - uid: 2397 components: - pos: -6.5,-74.5 parent: 2 type: Transform - - uid: 2383 + - uid: 2398 components: - pos: -8.5,-75.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2384 + - uid: 2399 components: - pos: -10.5,-75.5 parent: 2 type: Transform - - uid: 2385 + - uid: 2400 components: - pos: 10.5,-50.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2386 + - uid: 2401 components: - pos: 20.5,-46.5 parent: 2 type: Transform - - uid: 2387 + - uid: 2402 components: - pos: 18.5,-48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2388 + - uid: 2403 components: - pos: 21.5,-46.5 parent: 2 type: Transform - - uid: 2389 + - uid: 2404 components: - pos: 21.5,-50.5 parent: 2 type: Transform - - uid: 2390 + - uid: 2405 components: - pos: 21.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2391 + - uid: 2406 components: - pos: 23.5,-53.5 parent: 2 type: Transform - - uid: 2392 + - uid: 2407 components: - pos: 25.5,-52.5 parent: 2 type: Transform - - uid: 2393 + - uid: 2408 components: - pos: -4.5,-16.5 parent: 2 type: Transform - - uid: 2394 + - uid: 2409 components: - pos: 6.5,8.5 parent: 2 type: Transform - - uid: 2395 + - uid: 2410 components: - pos: 46.5,-22.5 parent: 2 type: Transform - - uid: 2396 + - uid: 2411 components: - pos: 0.5,14.5 parent: 2 type: Transform - - uid: 2397 + - uid: 2412 components: - pos: 9.5,-26.5 parent: 2 type: Transform - - uid: 2398 + - uid: 2413 components: - pos: 18.5,-29.5 parent: 2 type: Transform - - uid: 2399 + - uid: 2414 components: - pos: -8.5,-6.5 parent: 2 type: Transform - - uid: 2400 + - uid: 2415 components: - pos: -4.5,14.5 parent: 2 type: Transform - - uid: 2401 + - uid: 2416 components: - pos: -5.5,14.5 parent: 2 type: Transform - - uid: 2402 + - uid: 2417 components: - pos: 3.5,-46.5 parent: 2 type: Transform - - uid: 2403 + - uid: 2418 components: - pos: 26.5,2.5 parent: 2 type: Transform - - uid: 2404 + - uid: 2419 components: - pos: -33.5,-70.5 parent: 2 type: Transform - - uid: 2405 + - uid: 2420 components: - pos: -34.5,-70.5 parent: 2 type: Transform - - uid: 2406 + - uid: 2421 components: - pos: -12.5,-26.5 parent: 2 type: Transform - - uid: 2407 + - uid: 2422 components: - pos: 31.5,-32.5 parent: 2 type: Transform - - uid: 2408 + - uid: 2423 components: - pos: 24.5,4.5 parent: 2 type: Transform - - uid: 2409 + - uid: 2424 components: - pos: -3.5,-74.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2410 + - uid: 2425 components: - pos: 8.5,-42.5 parent: 2 type: Transform - - uid: 2411 + - uid: 2426 components: - pos: 8.5,-65.5 parent: 2 type: Transform - - uid: 2412 + - uid: 2427 components: - pos: -8.5,-66.5 parent: 2 type: Transform - - uid: 2413 + - uid: 2428 components: - pos: 26.5,-1.5 parent: 2 type: Transform - - uid: 2414 + - uid: 2429 components: - pos: -9.5,-4.5 parent: 2 type: Transform - - uid: 2415 + - uid: 2430 components: - pos: -7.5,-71.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2416 + - uid: 2431 components: - pos: -12.5,-75.5 parent: 2 type: Transform - - uid: 2417 + - uid: 2432 components: - pos: -8.5,-71.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2418 + - uid: 2433 components: - pos: -8.5,4.5 parent: 2 type: Transform - - uid: 2419 + - uid: 2434 components: - pos: -14.5,-61.5 parent: 2 type: Transform - - uid: 2420 + - uid: 2435 components: - pos: -14.5,-55.5 parent: 2 type: Transform - - uid: 2421 + - uid: 2436 components: - pos: 12.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2422 + - uid: 2437 components: - pos: 24.5,-1.5 parent: 2 type: Transform - - uid: 2423 + - uid: 2438 components: - pos: 46.5,-27.5 parent: 2 type: Transform - - uid: 2424 + - uid: 2439 components: - pos: 50.5,8.5 parent: 2 type: Transform - - uid: 2425 + - uid: 2440 components: - pos: 50.5,7.5 parent: 2 type: Transform - - uid: 2426 + - uid: 2441 components: - pos: -16.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2427 + - uid: 2442 components: - pos: -4.5,-40.5 parent: 2 type: Transform - - uid: 2428 + - uid: 2443 components: - pos: 30.5,-72.5 parent: 2 type: Transform - - uid: 2429 + - uid: 2444 components: - pos: -9.5,-61.5 parent: 2 type: Transform - - uid: 2430 + - uid: 2445 components: - pos: -13.5,-64.5 parent: 2 type: Transform - - uid: 2431 + - uid: 2446 components: - pos: -16.5,-54.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2432 + - uid: 2447 components: - pos: -17.5,-54.5 parent: 2 type: Transform - - uid: 2433 + - uid: 2448 components: - pos: -17.5,-55.5 parent: 2 type: Transform - - uid: 2434 + - uid: 2449 components: - pos: -18.5,-55.5 parent: 2 type: Transform - - uid: 2435 + - uid: 2450 components: - pos: -6.5,-64.5 parent: 2 type: Transform - - uid: 2436 + - uid: 2451 components: - pos: -6.5,-65.5 parent: 2 type: Transform - - uid: 2437 + - uid: 2452 components: - pos: -1.5,-54.5 parent: 2 type: Transform - - uid: 2438 + - uid: 2453 components: - pos: -4.5,-48.5 parent: 2 type: Transform - - uid: 2439 + - uid: 2454 components: - pos: 25.5,-14.5 parent: 2 type: Transform - - uid: 2440 + - uid: 2455 components: - pos: 25.5,-7.5 parent: 2 type: Transform - - uid: 2441 + - uid: 2456 components: - pos: 24.5,-6.5 parent: 2 type: Transform - - uid: 2442 + - uid: 2457 components: - pos: 18.5,-12.5 parent: 2 type: Transform - - uid: 2443 + - uid: 2458 components: - pos: 35.5,-40.5 parent: 2 type: Transform - - uid: 2444 + - uid: 2459 components: - pos: 17.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2445 + - uid: 2460 components: - pos: 9.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2446 + - uid: 2461 components: - pos: 15.5,-28.5 parent: 2 type: Transform - - uid: 2447 + - uid: 2462 components: - pos: 14.5,-28.5 parent: 2 type: Transform - - uid: 2448 + - uid: 2463 components: - pos: 14.5,-27.5 parent: 2 type: Transform - - uid: 2449 + - uid: 2464 components: - pos: 13.5,-26.5 parent: 2 type: Transform - - uid: 2450 + - uid: 2465 components: - pos: -5.5,-73.5 parent: 2 type: Transform - - uid: 2451 + - uid: 2466 components: - pos: 8.5,-26.5 parent: 2 type: Transform - - uid: 2452 + - uid: 2467 components: - pos: -2.5,-74.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2453 + - uid: 2468 components: - pos: 11.5,-26.5 parent: 2 type: Transform - - uid: 2454 + - uid: 2469 components: - pos: 3.5,-26.5 parent: 2 type: Transform - - uid: 2455 + - uid: 2470 components: - pos: -7.5,1.5 parent: 2 type: Transform - - uid: 2456 + - uid: 2471 components: - pos: -8.5,1.5 parent: 2 type: Transform - - uid: 2457 + - uid: 2472 components: - pos: -1.5,-75.5 parent: 2 type: Transform - - uid: 2458 + - uid: 2473 components: - pos: -3.5,8.5 parent: 2 type: Transform - - uid: 2459 + - uid: 2474 components: - pos: -3.5,10.5 parent: 2 type: Transform - - uid: 2460 + - uid: 2475 components: - pos: 28.5,2.5 parent: 2 type: Transform - - uid: 2461 + - uid: 2476 components: - pos: 32.5,1.5 parent: 2 type: Transform - - uid: 2462 + - uid: 2477 components: - pos: 32.5,2.5 parent: 2 type: Transform - - uid: 2463 + - uid: 2478 components: - pos: 1.5,-9.5 parent: 2 type: Transform - - uid: 2464 + - uid: 2479 components: - pos: 2.5,8.5 parent: 2 type: Transform - - uid: 2465 + - uid: 2480 components: - pos: 61.5,-11.5 parent: 2 type: Transform - - uid: 2466 + - uid: 2481 components: - pos: 21.5,-10.5 parent: 2 type: Transform - - uid: 2467 + - uid: 2482 components: - pos: 20.5,-13.5 parent: 2 type: Transform - - uid: 2468 + - uid: 2483 components: - pos: -0.5,0.5 parent: 2 type: Transform - - uid: 2469 + - uid: 2484 components: - pos: 20.5,-5.5 parent: 2 type: Transform - - uid: 2470 + - uid: 2485 components: - pos: 22.5,-6.5 parent: 2 type: Transform - - uid: 2471 + - uid: 2486 components: - pos: 23.5,-6.5 parent: 2 type: Transform - - uid: 2472 + - uid: 2487 components: - pos: 25.5,-6.5 parent: 2 type: Transform - - uid: 2473 + - uid: 2488 components: - pos: 25.5,-13.5 parent: 2 type: Transform - - uid: 2474 + - uid: 2489 components: - pos: 25.5,-12.5 parent: 2 type: Transform - - uid: 2475 + - uid: 2490 components: - pos: 25.5,-8.5 parent: 2 type: Transform - - uid: 2476 + - uid: 2491 components: - pos: 24.5,-11.5 parent: 2 type: Transform - - uid: 2477 + - uid: 2492 components: - pos: 5.5,-60.5 parent: 2 type: Transform - - uid: 2478 + - uid: 2493 components: - pos: 5.5,-54.5 parent: 2 type: Transform - - uid: 2479 + - uid: 2494 components: - pos: 2.5,-54.5 parent: 2 type: Transform - - uid: 2480 + - uid: 2495 components: - pos: -14.5,-60.5 parent: 2 type: Transform - - uid: 2481 + - uid: 2496 components: - pos: -8.5,-65.5 parent: 2 type: Transform - - uid: 2482 + - uid: 2497 components: - pos: -7.5,-65.5 parent: 2 type: Transform - - uid: 2483 + - uid: 2498 components: - pos: -6.5,-60.5 parent: 2 type: Transform - - uid: 2484 + - uid: 2499 components: - pos: -3.5,-60.5 parent: 2 type: Transform - - uid: 2485 + - uid: 2500 components: - pos: -2.5,-60.5 parent: 2 type: Transform - - uid: 2486 + - uid: 2501 components: - pos: -0.5,-60.5 parent: 2 type: Transform - - uid: 2487 + - uid: 2502 components: - pos: 3.5,-63.5 parent: 2 type: Transform - - uid: 2488 + - uid: 2503 components: - pos: 3.5,-61.5 parent: 2 type: Transform - - uid: 2489 + - uid: 2504 components: - pos: 10.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2490 + - uid: 2505 components: - pos: 10.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2491 + - uid: 2506 components: - pos: 11.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2492 + - uid: 2507 components: - pos: 13.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2493 + - uid: 2508 components: - pos: 14.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2494 + - uid: 2509 components: - pos: 15.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2495 + - uid: 2510 components: - pos: 15.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2496 + - uid: 2511 components: - pos: 15.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2497 + - uid: 2512 components: - pos: 14.5,-2.5 parent: 2 type: Transform - - uid: 2498 + - uid: 2513 components: - pos: -19.5,-56.5 parent: 2 type: Transform - - uid: 2499 + - uid: 2514 components: - pos: -19.5,-55.5 parent: 2 type: Transform - - uid: 2500 + - uid: 2515 components: - pos: 14.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2501 + - uid: 2516 components: - pos: 14.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2502 + - uid: 2517 components: - pos: 20.5,-45.5 parent: 2 type: Transform - - uid: 2503 + - uid: 2518 components: - pos: -41.5,25.5 parent: 2 type: Transform - - uid: 2504 + - uid: 2519 components: - pos: 32.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2505 + - uid: 2520 components: - pos: 14.5,-5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2506 + - uid: 2521 components: - pos: 12.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2507 + - uid: 2522 components: - pos: -3.5,-69.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2508 + - uid: 2523 components: - pos: -4.5,-69.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2509 + - uid: 2524 components: - pos: -5.5,-70.5 parent: 2 type: Transform - - uid: 2510 + - uid: 2525 components: - pos: -1.5,-77.5 parent: 2 type: Transform - - uid: 2511 + - uid: 2526 components: - pos: -0.5,-69.5 parent: 2 type: Transform - - uid: 2512 + - uid: 2527 components: - pos: 10.5,2.5 parent: 2 type: Transform - - uid: 2513 + - uid: 2528 components: - pos: -5.5,-47.5 parent: 2 type: Transform - - uid: 2514 + - uid: 2529 components: - pos: -14.5,-54.5 parent: 2 type: Transform - - uid: 2515 + - uid: 2530 components: - pos: -13.5,-59.5 parent: 2 type: Transform - - uid: 2516 + - uid: 2531 components: - pos: -10.5,-61.5 parent: 2 type: Transform - - uid: 2517 + - uid: 2532 components: - pos: -4.5,-11.5 parent: 2 type: Transform - - uid: 2518 + - uid: 2533 components: - pos: 62.5,-9.5 parent: 2 type: Transform - - uid: 2519 + - uid: 2534 components: - pos: 62.5,-7.5 parent: 2 type: Transform - - uid: 2520 + - uid: 2535 components: - pos: 8.5,-8.5 parent: 2 type: Transform - - uid: 2521 + - uid: 2536 components: - pos: 8.5,-10.5 parent: 2 type: Transform - - uid: 2522 + - uid: 2537 components: - pos: 24.5,1.5 parent: 2 type: Transform - - uid: 2523 + - uid: 2538 components: - pos: 1.5,9.5 parent: 2 type: Transform - - uid: 2524 + - uid: 2539 components: - pos: 2.5,-71.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2525 + - uid: 2540 components: - pos: 22.5,-32.5 parent: 2 type: Transform - - uid: 2526 + - uid: 2541 components: - pos: -15.5,-21.5 parent: 2 type: Transform - - uid: 2527 + - uid: 2542 components: - pos: -2.5,-69.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2528 + - uid: 2543 components: - pos: -9.5,10.5 parent: 2 type: Transform - - uid: 2529 + - uid: 2544 components: - pos: 18.5,-13.5 parent: 2 type: Transform - - uid: 2530 + - uid: 2545 components: - pos: 21.5,-11.5 parent: 2 type: Transform - - uid: 2531 + - uid: 2546 components: - pos: -4.5,-28.5 parent: 2 type: Transform - - uid: 2532 + - uid: 2547 components: - pos: 27.5,2.5 parent: 2 type: Transform - - uid: 2533 + - uid: 2548 components: - pos: 6.5,15.5 parent: 2 type: Transform - - uid: 2534 + - uid: 2549 components: - pos: 5.5,15.5 parent: 2 type: Transform - - uid: 2535 + - uid: 2550 components: - pos: 0.5,12.5 parent: 2 type: Transform - - uid: 2536 + - uid: 2551 components: - pos: 5.5,12.5 parent: 2 type: Transform - - uid: 2537 + - uid: 2552 components: - pos: 5.5,13.5 parent: 2 type: Transform - - uid: 2538 + - uid: 2553 components: - pos: 21.5,-1.5 parent: 2 type: Transform - - uid: 2539 + - uid: 2554 components: - pos: 32.5,18.5 parent: 2 type: Transform - - uid: 2540 + - uid: 2555 components: - pos: 1.5,0.5 parent: 2 type: Transform - - uid: 2541 + - uid: 2556 components: - pos: 13.5,2.5 parent: 2 type: Transform - - uid: 2542 + - uid: 2557 components: - pos: 13.5,0.5 parent: 2 type: Transform - - uid: 2543 + - uid: 2558 components: - pos: 12.5,-0.5 parent: 2 type: Transform - - uid: 2544 + - uid: 2559 components: - pos: -13.5,-54.5 parent: 2 type: Transform - - uid: 2545 + - uid: 2560 components: - pos: -14.5,-59.5 parent: 2 type: Transform - - uid: 2546 + - uid: 2561 components: - pos: -2.5,-54.5 parent: 2 type: Transform - - uid: 2547 + - uid: 2562 components: - pos: 27.5,1.5 parent: 2 type: Transform - - uid: 2548 + - uid: 2563 components: - pos: -2.5,-41.5 parent: 2 type: Transform - - uid: 2549 + - uid: 2564 components: - pos: -3.5,-0.5 parent: 2 type: Transform - - uid: 2550 + - uid: 2565 components: - pos: 29.5,-47.5 parent: 2 type: Transform - - uid: 2551 + - uid: 2566 components: - pos: 15.5,-40.5 parent: 2 type: Transform - - uid: 2552 + - uid: 2567 components: - pos: 11.5,-42.5 parent: 2 type: Transform - - uid: 2553 + - uid: 2568 components: - pos: 9.5,-41.5 parent: 2 type: Transform - - uid: 2554 + - uid: 2569 components: - pos: 13.5,-42.5 parent: 2 type: Transform - - uid: 2555 + - uid: 2570 components: - pos: 17.5,-54.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2556 + - uid: 2571 components: - pos: 34.5,-41.5 parent: 2 type: Transform - - uid: 2557 + - uid: 2572 components: - pos: 36.5,-40.5 parent: 2 type: Transform - - uid: 2558 + - uid: 2573 components: - pos: 34.5,-40.5 parent: 2 type: Transform - - uid: 2559 + - uid: 2574 components: - pos: 12.5,-6.5 parent: 2 type: Transform - - uid: 2560 + - uid: 2575 components: - pos: 11.5,-6.5 parent: 2 type: Transform - - uid: 2561 + - uid: 2576 components: - pos: 4.5,5.5 parent: 2 type: Transform - - uid: 2562 + - uid: 2577 components: - pos: 7.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2563 + - uid: 2578 components: - pos: 1.5,7.5 parent: 2 type: Transform - - uid: 2564 + - uid: 2579 components: - pos: 1.5,8.5 parent: 2 type: Transform - - uid: 2565 + - uid: 2580 components: - pos: 3.5,8.5 parent: 2 type: Transform - - uid: 2566 + - uid: 2581 components: - pos: -3.5,7.5 parent: 2 type: Transform - - uid: 2567 + - uid: 2582 components: - pos: -1.5,7.5 parent: 2 type: Transform - - uid: 2568 + - uid: 2583 components: - pos: -2.5,7.5 parent: 2 type: Transform - - uid: 2569 + - uid: 2584 components: - pos: -0.5,6.5 parent: 2 type: Transform - - uid: 2570 + - uid: 2585 components: - pos: -0.5,7.5 parent: 2 type: Transform - - uid: 2571 + - uid: 2586 components: - pos: 0.5,6.5 parent: 2 type: Transform - - uid: 2572 + - uid: 2587 components: - pos: 0.5,11.5 parent: 2 type: Transform - - uid: 2573 + - uid: 2588 components: - pos: 0.5,13.5 parent: 2 type: Transform - - uid: 2574 + - uid: 2589 components: - pos: 0.5,9.5 parent: 2 type: Transform - - uid: 2575 + - uid: 2590 components: - pos: -8.5,7.5 parent: 2 type: Transform - - uid: 2576 + - uid: 2591 components: - pos: -7.5,7.5 parent: 2 type: Transform - - uid: 2577 + - uid: 2592 components: - pos: -6.5,7.5 parent: 2 type: Transform - - uid: 2578 + - uid: 2593 components: - pos: -5.5,7.5 parent: 2 type: Transform - - uid: 2579 + - uid: 2594 components: - pos: 10.5,-11.5 parent: 2 type: Transform - - uid: 2580 + - uid: 2595 components: - pos: 7.5,-6.5 parent: 2 type: Transform - - uid: 2581 + - uid: 2596 components: - pos: 8.5,-6.5 parent: 2 type: Transform - - uid: 2582 + - uid: 2597 components: - pos: 4.5,-13.5 parent: 2 type: Transform - - uid: 2583 + - uid: 2598 components: - pos: 10.5,-10.5 parent: 2 type: Transform - - uid: 2584 + - uid: 2599 components: - pos: 42.5,-26.5 parent: 2 type: Transform - - uid: 2585 + - uid: 2600 components: - pos: -8.5,-50.5 parent: 2 type: Transform - - uid: 2586 + - uid: 2601 components: - pos: 5.5,8.5 parent: 2 type: Transform - - uid: 2587 + - uid: 2602 components: - pos: -8.5,-51.5 parent: 2 type: Transform - - uid: 2588 + - uid: 2603 components: - pos: -8.5,-52.5 parent: 2 type: Transform - - uid: 2589 + - uid: 2604 components: - pos: -7.5,-52.5 parent: 2 type: Transform - - uid: 2590 + - uid: 2605 components: - pos: -7.5,-53.5 parent: 2 type: Transform - - uid: 2591 + - uid: 2606 components: - pos: 6.5,7.5 parent: 2 type: Transform - - uid: 2592 + - uid: 2607 components: - pos: 31.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2593 + - uid: 2608 components: - pos: 32.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2594 + - uid: 2609 components: - pos: -4.5,-20.5 parent: 2 type: Transform - - uid: 2595 + - uid: 2610 components: - pos: 5.5,11.5 parent: 2 type: Transform - - uid: 2596 + - uid: 2611 components: - pos: 5.5,7.5 parent: 2 type: Transform - - uid: 2597 + - uid: 2612 components: - pos: 32.5,-41.5 parent: 2 type: Transform - - uid: 2598 + - uid: 2613 components: - pos: 33.5,-40.5 parent: 2 type: Transform - - uid: 2599 + - uid: 2614 components: - pos: 34.5,-42.5 parent: 2 type: Transform - - uid: 2600 + - uid: 2615 components: - pos: 23.5,-42.5 parent: 2 type: Transform - - uid: 2601 + - uid: 2616 components: - pos: 21.5,-42.5 parent: 2 type: Transform - - uid: 2602 + - uid: 2617 components: - pos: 8.5,-9.5 parent: 2 type: Transform - - uid: 2603 + - uid: 2618 components: - pos: -20.5,-87.5 parent: 2 type: Transform - - uid: 2604 + - uid: 2619 components: - pos: 23.5,-1.5 parent: 2 type: Transform - - uid: 2605 + - uid: 2620 components: - pos: -2.5,14.5 parent: 2 type: Transform - - uid: 2606 + - uid: 2621 components: - pos: -3.5,14.5 parent: 2 type: Transform - - uid: 2607 + - uid: 2622 components: - pos: 32.5,17.5 parent: 2 type: Transform - - uid: 2608 + - uid: 2623 components: - pos: 27.5,0.5 parent: 2 type: Transform - - uid: 2609 + - uid: 2624 components: - pos: 26.5,-32.5 parent: 2 type: Transform - - uid: 2610 + - uid: 2625 components: - pos: 25.5,-42.5 parent: 2 type: Transform - - uid: 2611 + - uid: 2626 components: - pos: 27.5,-42.5 parent: 2 type: Transform - - uid: 2612 + - uid: 2627 components: - pos: 35.5,-38.5 parent: 2 type: Transform - - uid: 2613 + - uid: 2628 components: - pos: 35.5,-39.5 parent: 2 type: Transform - - uid: 2614 + - uid: 2629 components: - pos: 23.5,-32.5 parent: 2 type: Transform - - uid: 2615 + - uid: 2630 components: - pos: 20.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2616 + - uid: 2631 components: - pos: -7.5,-7.5 parent: 2 type: Transform - - uid: 2617 + - uid: 2632 components: - pos: 16.5,-32.5 parent: 2 type: Transform - - uid: 2618 + - uid: 2633 components: - pos: 1.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2619 + - uid: 2634 components: - pos: -15.5,25.5 parent: 2 type: Transform - - uid: 2620 + - uid: 2635 components: - pos: 7.5,-49.5 parent: 2 type: Transform - - uid: 2621 + - uid: 2636 components: - pos: 55.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2622 + - uid: 2637 components: - pos: 32.5,-4.5 parent: 2 type: Transform - - uid: 2623 + - uid: 2638 components: - pos: 26.5,-25.5 parent: 2 type: Transform - - uid: 2624 + - uid: 2639 components: - pos: 25.5,-25.5 parent: 2 type: Transform - - uid: 2625 + - uid: 2640 components: - pos: 24.5,-22.5 parent: 2 type: Transform - - uid: 2626 + - uid: 2641 components: - pos: 23.5,-22.5 parent: 2 type: Transform - - uid: 2627 + - uid: 2642 components: - pos: 21.5,-24.5 parent: 2 type: Transform - - uid: 2628 + - uid: 2643 components: - pos: 21.5,-23.5 parent: 2 type: Transform - - uid: 2629 + - uid: 2644 components: - pos: 21.5,-22.5 parent: 2 type: Transform - - uid: 2630 + - uid: 2645 components: - pos: 26.5,-23.5 parent: 2 type: Transform - - uid: 2631 + - uid: 2646 components: - pos: 27.5,-23.5 parent: 2 type: Transform - - uid: 2632 + - uid: 2647 components: - pos: 28.5,-29.5 parent: 2 type: Transform - - uid: 2633 + - uid: 2648 components: - pos: 27.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2634 + - uid: 2649 components: - pos: 27.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2635 + - uid: 2650 components: - pos: 27.5,-33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2636 + - uid: 2651 components: - pos: 26.5,-30.5 parent: 2 type: Transform - - uid: 2637 + - uid: 2652 components: - pos: 25.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2638 + - uid: 2653 components: - pos: 24.5,-30.5 parent: 2 type: Transform - - uid: 2639 + - uid: 2654 components: - pos: 23.5,-30.5 parent: 2 type: Transform - - uid: 2640 + - uid: 2655 components: - pos: 22.5,-30.5 parent: 2 type: Transform - - uid: 2641 + - uid: 2656 components: - pos: 22.5,-28.5 parent: 2 type: Transform - - uid: 2642 + - uid: 2657 components: - pos: 6.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2643 + - uid: 2658 components: - pos: 5.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2644 + - uid: 2659 components: - pos: 8.5,-4.5 parent: 2 type: Transform - - uid: 2645 + - uid: 2660 components: - pos: 12.5,-5.5 parent: 2 type: Transform - - uid: 2646 + - uid: 2661 components: - pos: 12.5,-9.5 parent: 2 type: Transform - - uid: 2647 + - uid: 2662 components: - pos: -10.5,-22.5 parent: 2 type: Transform - - uid: 2648 + - uid: 2663 components: - pos: -15.5,-22.5 parent: 2 type: Transform - - uid: 2649 + - uid: 2664 components: - pos: -24.5,-16.5 parent: 2 type: Transform - - uid: 2650 + - uid: 2665 components: - pos: -24.5,-15.5 parent: 2 type: Transform - - uid: 2651 + - uid: 2666 components: - pos: 23.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2652 + - uid: 2667 components: - pos: 25.5,-11.5 parent: 2 type: Transform - - uid: 2653 + - uid: 2668 components: - pos: 25.5,-10.5 parent: 2 type: Transform - - uid: 2654 + - uid: 2669 components: - pos: 25.5,-9.5 parent: 2 type: Transform - - uid: 2655 + - uid: 2670 components: - pos: 21.5,-6.5 parent: 2 type: Transform - - uid: 2656 + - uid: 2671 components: - pos: 20.5,-6.5 parent: 2 type: Transform - - uid: 2657 + - uid: 2672 components: - pos: 26.5,-6.5 parent: 2 type: Transform - - uid: 2658 + - uid: 2673 components: - pos: 27.5,-6.5 parent: 2 type: Transform - - uid: 2659 + - uid: 2674 components: - pos: 28.5,-6.5 parent: 2 type: Transform - - uid: 2660 + - uid: 2675 components: - pos: 29.5,-6.5 parent: 2 type: Transform - - uid: 2661 + - uid: 2676 components: - pos: 30.5,-6.5 parent: 2 type: Transform - - uid: 2662 + - uid: 2677 components: - pos: 30.5,-5.5 parent: 2 type: Transform - - uid: 2663 + - uid: 2678 components: - pos: 29.5,-32.5 parent: 2 type: Transform - - uid: 2664 + - uid: 2679 components: - pos: 8.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2665 + - uid: 2680 components: - pos: 8.5,-2.5 parent: 2 type: Transform - - uid: 2666 + - uid: 2681 components: - pos: 8.5,-1.5 parent: 2 type: Transform - - uid: 2667 + - uid: 2682 components: - pos: 7.5,-1.5 parent: 2 type: Transform - - uid: 2668 + - uid: 2683 components: - pos: 6.5,-1.5 parent: 2 type: Transform - - uid: 2669 + - uid: 2684 components: - pos: 5.5,-1.5 parent: 2 type: Transform - - uid: 2670 + - uid: 2685 components: - pos: 4.5,-1.5 parent: 2 type: Transform - - uid: 2671 + - uid: 2686 components: - pos: 4.5,-0.5 parent: 2 type: Transform - - uid: 2672 + - uid: 2687 components: - pos: 2.5,0.5 parent: 2 type: Transform - - uid: 2673 + - uid: 2688 components: - pos: 0.5,0.5 parent: 2 type: Transform - - uid: 2674 + - uid: 2689 components: - pos: -0.5,1.5 parent: 2 type: Transform - - uid: 2675 + - uid: 2690 components: - pos: -0.5,2.5 parent: 2 type: Transform - - uid: 2676 + - uid: 2691 components: - pos: 0.5,2.5 parent: 2 type: Transform - - uid: 2677 + - uid: 2692 components: - pos: 1.5,2.5 parent: 2 type: Transform - - uid: 2678 + - uid: 2693 components: - pos: 3.5,2.5 parent: 2 type: Transform - - uid: 2679 + - uid: 2694 components: - pos: 4.5,2.5 parent: 2 type: Transform - - uid: 2680 + - uid: 2695 components: - pos: 5.5,2.5 parent: 2 type: Transform - - uid: 2681 + - uid: 2696 components: - pos: 6.5,2.5 parent: 2 type: Transform - - uid: 2682 + - uid: 2697 components: - pos: 7.5,2.5 parent: 2 type: Transform - - uid: 2683 + - uid: 2698 components: - pos: 11.5,-0.5 parent: 2 type: Transform - - uid: 2684 + - uid: 2699 components: - pos: -2.5,-51.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2685 + - uid: 2700 components: - pos: -1.5,-49.5 parent: 2 type: Transform - - uid: 2686 + - uid: 2701 components: - pos: -0.5,-48.5 parent: 2 type: Transform - - uid: 2687 + - uid: 2702 components: - pos: 2.5,-48.5 parent: 2 type: Transform - - uid: 2688 + - uid: 2703 components: - pos: 4.5,-48.5 parent: 2 type: Transform - - uid: 2689 + - uid: 2704 components: - pos: -1.5,-47.5 parent: 2 type: Transform - - uid: 2690 + - uid: 2705 components: - pos: -6.5,-47.5 parent: 2 type: Transform - - uid: 2691 + - uid: 2706 components: - pos: -3.5,-54.5 parent: 2 type: Transform - - uid: 2692 + - uid: 2707 components: - pos: -5.5,-54.5 parent: 2 type: Transform - - uid: 2693 + - uid: 2708 components: - pos: -6.5,-54.5 parent: 2 type: Transform - - uid: 2694 + - uid: 2709 components: - pos: -8.5,-54.5 parent: 2 type: Transform - - uid: 2695 + - uid: 2710 components: - pos: -10.5,-54.5 parent: 2 type: Transform - - uid: 2696 + - uid: 2711 components: - pos: -11.5,-54.5 parent: 2 type: Transform - - uid: 2697 + - uid: 2712 components: - pos: 3.5,-54.5 parent: 2 type: Transform - - uid: 2698 + - uid: 2713 components: - pos: 5.5,-55.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2699 + - uid: 2714 components: - pos: 5.5,-57.5 parent: 2 type: Transform - - uid: 2700 + - uid: 2715 components: - pos: 5.5,-58.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2701 + - uid: 2716 components: - pos: 5.5,-59.5 parent: 2 type: Transform - - uid: 2702 + - uid: 2717 components: - pos: 6.5,-60.5 parent: 2 type: Transform - - uid: 2703 + - uid: 2718 components: - pos: 7.5,-60.5 parent: 2 type: Transform - - uid: 2704 + - uid: 2719 components: - pos: 4.5,-60.5 parent: 2 type: Transform - - uid: 2705 + - uid: 2720 components: - pos: 1.5,-60.5 parent: 2 type: Transform - - uid: 2706 + - uid: 2721 components: - pos: 0.5,-60.5 parent: 2 type: Transform - - uid: 2707 + - uid: 2722 components: - pos: -1.5,-61.5 parent: 2 type: Transform - - uid: 2708 + - uid: 2723 components: - pos: -1.5,-62.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2709 + - uid: 2724 components: - pos: -1.5,-64.5 parent: 2 type: Transform - - uid: 2710 + - uid: 2725 components: - pos: -7.5,-61.5 parent: 2 type: Transform - - uid: 2711 + - uid: 2726 components: - pos: -6.5,-61.5 parent: 2 type: Transform - - uid: 2712 + - uid: 2727 components: - pos: -11.5,-75.5 parent: 2 type: Transform - - uid: 2713 + - uid: 2728 components: - pos: -11.5,-61.5 parent: 2 type: Transform - - uid: 2714 + - uid: 2729 components: - pos: -12.5,-61.5 parent: 2 type: Transform - - uid: 2715 + - uid: 2730 components: - pos: -13.5,-61.5 parent: 2 type: Transform - - uid: 2716 + - uid: 2731 components: - pos: -13.5,-63.5 parent: 2 type: Transform - - uid: 2717 + - uid: 2732 components: - pos: -13.5,-65.5 parent: 2 type: Transform - - uid: 2718 + - uid: 2733 components: - pos: -13.5,-66.5 parent: 2 type: Transform - - uid: 2719 + - uid: 2734 components: - pos: -15.5,-64.5 parent: 2 type: Transform - - uid: 2720 + - uid: 2735 components: - pos: -21.5,-68.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2721 + - uid: 2736 components: - pos: -21.5,-69.5 parent: 2 type: Transform - - uid: 2722 + - uid: 2737 components: - pos: -21.5,-70.5 parent: 2 type: Transform - - uid: 2723 + - uid: 2738 components: - pos: -20.5,-70.5 parent: 2 type: Transform - - uid: 2724 + - uid: 2739 components: - pos: -19.5,-70.5 parent: 2 type: Transform - - uid: 2725 + - uid: 2740 components: - pos: -19.5,-69.5 parent: 2 type: Transform - - uid: 2726 + - uid: 2741 components: - pos: -19.5,-68.5 parent: 2 type: Transform - - uid: 2727 + - uid: 2742 components: - pos: -19.5,-72.5 parent: 2 type: Transform - - uid: 2728 + - uid: 2743 components: - pos: -19.5,-73.5 parent: 2 type: Transform - - uid: 2729 + - uid: 2744 components: - pos: -18.5,-74.5 parent: 2 type: Transform - - uid: 2730 + - uid: 2745 components: - pos: -18.5,-76.5 parent: 2 type: Transform - - uid: 2731 + - uid: 2746 components: - pos: -18.5,-77.5 parent: 2 type: Transform - - uid: 2732 + - uid: 2747 components: - pos: -17.5,-77.5 parent: 2 type: Transform - - uid: 2733 + - uid: 2748 components: - pos: -19.5,-77.5 parent: 2 type: Transform - - uid: 2734 + - uid: 2749 components: - pos: -20.5,-85.5 parent: 2 type: Transform - - uid: 2735 + - uid: 2750 components: - pos: -25.5,-87.5 parent: 2 type: Transform - - uid: 2736 + - uid: 2751 components: - pos: -25.5,-88.5 parent: 2 type: Transform - - uid: 2737 + - uid: 2752 components: - pos: 22.5,-1.5 parent: 2 type: Transform - - uid: 2738 + - uid: 2753 components: - pos: 8.5,-6.5 parent: 2 type: Transform - - uid: 2739 + - uid: 2754 components: - pos: -7.5,-75.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2740 + - uid: 2755 components: - pos: 17.5,-32.5 parent: 2 type: Transform - - uid: 2741 + - uid: 2756 components: - pos: -8.5,8.5 parent: 2 type: Transform - - uid: 2742 + - uid: 2757 components: - pos: -8.5,10.5 parent: 2 type: Transform - - uid: 2743 + - uid: 2758 components: - pos: -8.5,5.5 parent: 2 type: Transform - - uid: 2744 + - uid: 2759 components: - pos: -3.5,9.5 parent: 2 type: Transform - - uid: 2745 + - uid: 2760 components: - pos: 5.5,9.5 parent: 2 type: Transform - - uid: 2746 + - uid: 2761 components: - pos: 9.5,-10.5 parent: 2 type: Transform - - uid: 2747 + - uid: 2762 components: - pos: 32.5,16.5 parent: 2 type: Transform - - uid: 2748 + - uid: 2763 components: - pos: 0.5,8.5 parent: 2 type: Transform - - uid: 2749 + - uid: 2764 components: - pos: 0.5,-26.5 parent: 2 type: Transform - - uid: 2750 + - uid: 2765 components: - pos: -0.5,-26.5 parent: 2 type: Transform - - uid: 2751 + - uid: 2766 components: - pos: -8.5,2.5 parent: 2 type: Transform - - uid: 2752 + - uid: 2767 components: - pos: 1.5,-26.5 parent: 2 type: Transform - - uid: 2753 + - uid: 2768 components: - pos: 6.5,-26.5 parent: 2 type: Transform - - uid: 2754 + - uid: 2769 components: - pos: 7.5,-26.5 parent: 2 type: Transform - - uid: 2755 + - uid: 2770 components: - pos: 12.5,-26.5 parent: 2 type: Transform - - uid: 2756 + - uid: 2771 components: - pos: 14.5,-26.5 parent: 2 type: Transform - - uid: 2757 + - uid: 2772 components: - pos: 17.5,-48.5 parent: 2 type: Transform - - uid: 2758 + - uid: 2773 components: - pos: 27.5,4.5 parent: 2 type: Transform - - uid: 2759 + - uid: 2774 components: - pos: 27.5,-0.5 parent: 2 type: Transform - - uid: 2760 + - uid: 2775 components: - pos: 25.5,4.5 parent: 2 type: Transform - - uid: 2761 + - uid: 2776 components: - pos: 21.5,2.5 parent: 2 type: Transform - - uid: 2762 + - uid: 2777 components: - pos: 23.5,2.5 parent: 2 type: Transform - - uid: 2763 + - uid: 2778 components: - pos: 26.5,4.5 parent: 2 type: Transform - - uid: 2764 + - uid: 2779 components: - pos: -4.5,-13.5 parent: 2 type: Transform - - uid: 2765 + - uid: 2780 components: - pos: -20.5,-86.5 parent: 2 type: Transform - - uid: 2766 + - uid: 2781 components: - pos: 20.5,-42.5 parent: 2 type: Transform - - uid: 2767 + - uid: 2782 components: - pos: -18.5,-60.5 parent: 2 type: Transform - - uid: 2768 + - uid: 2783 components: - pos: 8.5,-56.5 parent: 2 type: Transform - - uid: 2769 + - uid: 2784 components: - pos: -4.5,-60.5 parent: 2 type: Transform - - uid: 2770 + - uid: 2785 components: - pos: -1.5,-65.5 parent: 2 type: Transform - - uid: 2771 + - uid: 2786 components: - pos: -1.5,-60.5 parent: 2 type: Transform - - uid: 2772 + - uid: 2787 components: - pos: 3.5,-60.5 parent: 2 type: Transform - - uid: 2773 + - uid: 2788 components: - pos: -3.5,-51.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2774 + - uid: 2789 components: - pos: 3.5,-48.5 parent: 2 type: Transform - - uid: 2775 + - uid: 2790 components: - pos: 5.5,-48.5 parent: 2 type: Transform - - uid: 2776 + - uid: 2791 components: - pos: 6.5,-47.5 parent: 2 type: Transform - - uid: 2777 + - uid: 2792 components: - pos: -4.5,-50.5 parent: 2 type: Transform - - uid: 2778 + - uid: 2793 components: - pos: -4.5,-49.5 parent: 2 type: Transform - - uid: 2779 + - uid: 2794 components: - pos: -6.5,-45.5 parent: 2 type: Transform - - uid: 2780 + - uid: 2795 components: - pos: 22.5,-24.5 parent: 2 type: Transform - - uid: 2781 + - uid: 2796 components: - pos: -6.5,-71.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2782 + - uid: 2797 components: - pos: -9.5,-71.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2783 + - uid: 2798 components: - pos: 10.5,-51.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2784 + - uid: 2799 components: - pos: 16.5,-52.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2785 + - uid: 2800 components: - pos: 14.5,-52.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2786 + - uid: 2801 components: - pos: 25.5,-50.5 parent: 2 type: Transform - - uid: 2787 + - uid: 2802 components: - pos: 25.5,-54.5 parent: 2 type: Transform - - uid: 2788 + - uid: 2803 components: - pos: 25.5,-55.5 parent: 2 type: Transform - - uid: 2789 + - uid: 2804 components: - pos: 25.5,-56.5 parent: 2 type: Transform - - uid: 2790 + - uid: 2805 components: - pos: -4.5,-14.5 parent: 2 type: Transform - - uid: 2791 + - uid: 2806 components: - pos: -4.5,-18.5 parent: 2 type: Transform - - uid: 2792 + - uid: 2807 components: - pos: 59.5,-4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2793 + - uid: 2808 components: - pos: 46.5,-25.5 parent: 2 type: Transform - - uid: 2794 + - uid: 2809 components: - pos: 46.5,-24.5 parent: 2 type: Transform - - uid: 2795 + - uid: 2810 components: - pos: 46.5,-29.5 parent: 2 type: Transform - - uid: 2796 + - uid: 2811 components: - pos: 46.5,-28.5 parent: 2 type: Transform - - uid: 2797 + - uid: 2812 components: - pos: 45.5,-27.5 parent: 2 type: Transform - - uid: 2798 + - uid: 2813 components: - pos: 43.5,-27.5 parent: 2 type: Transform - - uid: 2799 + - uid: 2814 components: - pos: 44.5,-27.5 parent: 2 type: Transform - - uid: 2800 + - uid: 2815 components: - pos: 43.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2801 + - uid: 2816 components: - pos: 5.5,10.5 parent: 2 type: Transform - - uid: 2802 + - uid: 2817 components: - pos: 5.5,8.5 parent: 2 type: Transform - - uid: 2803 + - uid: 2818 components: - pos: 10.5,-26.5 parent: 2 type: Transform - - uid: 2804 + - uid: 2819 components: - pos: -18.5,-52.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2805 + - uid: 2820 components: - pos: -4.5,-21.5 parent: 2 type: Transform - - uid: 2806 + - uid: 2821 components: - pos: 17.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2807 + - uid: 2822 components: - pos: 24.5,-0.5 parent: 2 type: Transform - - uid: 2808 + - uid: 2823 components: - pos: -6.5,14.5 parent: 2 type: Transform - - uid: 2809 + - uid: 2824 components: - pos: -6.5,13.5 parent: 2 type: Transform - - uid: 2810 + - uid: 2825 components: - pos: 24.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2811 + - uid: 2826 components: - pos: 27.5,-25.5 parent: 2 type: Transform - - uid: 2812 + - uid: 2827 components: - pos: 25.5,-22.5 parent: 2 type: Transform - - uid: 2813 + - uid: 2828 components: - pos: 28.5,-23.5 parent: 2 type: Transform - - uid: 2814 + - uid: 2829 components: - pos: 29.5,-23.5 parent: 2 type: Transform - - uid: 2815 + - uid: 2830 components: - pos: 30.5,-23.5 parent: 2 type: Transform - - uid: 2816 + - uid: 2831 components: - pos: 28.5,-28.5 parent: 2 type: Transform - - uid: 2817 + - uid: 2832 components: - pos: 7.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2818 + - uid: 2833 components: - pos: 25.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2819 + - uid: 2834 components: - pos: -16.5,-22.5 parent: 2 type: Transform - - uid: 2820 + - uid: 2835 components: - pos: -13.5,-53.5 parent: 2 type: Transform - - uid: 2821 + - uid: 2836 components: - pos: 24.5,3.5 parent: 2 type: Transform - - uid: 2822 + - uid: 2837 components: - pos: 7.5,-65.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2823 + - uid: 2838 components: - pos: -13.5,-73.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2824 + - uid: 2839 components: - pos: -7.5,-6.5 parent: 2 type: Transform - - uid: 2825 + - uid: 2840 components: - pos: -29.5,1.5 parent: 2 type: Transform - - uid: 2826 + - uid: 2841 components: - pos: 18.5,-40.5 parent: 2 type: Transform - - uid: 2827 + - uid: 2842 components: - pos: -39.5,-68.5 parent: 2 type: Transform - - uid: 2828 + - uid: 2843 components: - pos: -36.5,-70.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2829 + - uid: 2844 components: - pos: 41.5,-26.5 parent: 2 type: Transform - - uid: 2830 + - uid: 2845 components: - pos: -35.5,-70.5 parent: 2 type: Transform - - uid: 2831 + - uid: 2846 components: - pos: -37.5,-69.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2832 + - uid: 2847 components: - pos: -9.5,-22.5 parent: 2 type: Transform - - uid: 2833 + - uid: 2848 components: - pos: 12.5,-8.5 parent: 2 type: Transform - - uid: 2834 + - uid: 2849 components: - pos: 8.5,-5.5 parent: 2 type: Transform - - uid: 2835 + - uid: 2850 components: - pos: -8.5,-22.5 parent: 2 type: Transform - - uid: 2836 + - uid: 2851 components: - pos: -11.5,-22.5 parent: 2 type: Transform - - uid: 2837 + - uid: 2852 components: - pos: -15.5,-66.5 parent: 2 type: Transform - - uid: 2838 + - uid: 2853 components: - pos: -4.5,-12.5 parent: 2 type: Transform - - uid: 2839 + - uid: 2854 components: - pos: 2.5,-69.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2840 + - uid: 2855 components: - pos: 22.5,-32.5 parent: 2 type: Transform - - uid: 2841 + - uid: 2856 components: - pos: -47.5,37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2842 + - uid: 2857 components: - pos: -10.5,-19.5 parent: 2 type: Transform - - uid: 2843 + - uid: 2858 components: - pos: 29.5,-42.5 parent: 2 type: Transform - - uid: 2844 + - uid: 2859 components: - pos: 67.5,-13.5 parent: 2 type: Transform - - uid: 2845 + - uid: 2860 components: - pos: 25.5,-46.5 parent: 2 type: Transform - - uid: 2846 + - uid: 2861 components: - pos: -5.5,-72.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2847 + - uid: 2862 components: - pos: -7.5,10.5 parent: 2 type: Transform - - uid: 2848 + - uid: 2863 components: - pos: 15.5,-42.5 parent: 2 type: Transform - - uid: 2849 + - uid: 2864 components: - pos: 2.5,-68.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2850 + - uid: 2865 components: - pos: 7.5,-70.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2851 + - uid: 2866 components: - pos: -2.5,-26.5 parent: 2 type: Transform - - uid: 2852 + - uid: 2867 components: - pos: 12.5,-7.5 parent: 2 type: Transform - - uid: 2853 + - uid: 2868 components: - pos: 15.5,-39.5 parent: 2 type: Transform - - uid: 2854 + - uid: 2869 components: - pos: 29.5,-60.5 parent: 2 type: Transform - - uid: 2855 + - uid: 2870 components: - pos: 30.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2856 + - uid: 2871 components: - pos: 3.5,-67.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2857 + - uid: 2872 components: - pos: 15.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2858 + - uid: 2873 components: - pos: 17.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2859 + - uid: 2874 components: - pos: -3.5,-26.5 parent: 2 type: Transform - - uid: 2860 + - uid: 2875 components: - pos: 1.5,-71.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2861 + - uid: 2876 components: - pos: -8.5,-26.5 parent: 2 type: Transform - - uid: 2862 + - uid: 2877 components: - pos: -4.5,1.5 parent: 2 type: Transform - - uid: 2863 + - uid: 2878 components: - pos: 8.5,-70.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2864 + - uid: 2879 components: - pos: 30.5,-61.5 parent: 2 type: Transform - - uid: 2865 + - uid: 2880 components: - pos: -16.5,-21.5 parent: 2 type: Transform - - uid: 2866 + - uid: 2881 components: - pos: -4.5,-24.5 parent: 2 type: Transform - - uid: 2867 + - uid: 2882 components: - pos: -4.5,-23.5 parent: 2 type: Transform - - uid: 2868 + - uid: 2883 components: - pos: -4.5,-30.5 parent: 2 type: Transform - - uid: 2869 + - uid: 2884 components: - pos: -4.5,-29.5 parent: 2 type: Transform - - uid: 2870 + - uid: 2885 components: - pos: -4.5,-31.5 parent: 2 type: Transform - - uid: 2871 + - uid: 2886 components: - pos: -9.5,-26.5 parent: 2 type: Transform - - uid: 2872 + - uid: 2887 components: - pos: -11.5,-26.5 parent: 2 type: Transform - - uid: 2873 + - uid: 2888 components: - pos: -15.5,-20.5 parent: 2 type: Transform - - uid: 2874 + - uid: 2889 components: - pos: -15.5,-19.5 parent: 2 type: Transform - - uid: 2875 + - uid: 2890 components: - pos: -15.5,-16.5 parent: 2 type: Transform - - uid: 2876 + - uid: 2891 components: - pos: 46.5,-23.5 parent: 2 type: Transform - - uid: 2877 + - uid: 2892 components: - pos: 1.5,-69.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2878 + - uid: 2893 components: - pos: 30.5,-60.5 parent: 2 type: Transform - - uid: 2879 + - uid: 2894 components: - pos: 9.5,-65.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2880 + - uid: 2895 components: - pos: 38.5,-25.5 parent: 2 type: Transform - - uid: 2881 + - uid: 2896 components: - pos: 41.5,-25.5 parent: 2 type: Transform - - uid: 2882 + - uid: 2897 components: - pos: 14.5,-49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2883 + - uid: 2898 components: - pos: 24.5,-53.5 parent: 2 type: Transform - - uid: 2884 + - uid: 2899 components: - pos: 25.5,-51.5 parent: 2 type: Transform - - uid: 2885 + - uid: 2900 components: - pos: -3.5,2.5 parent: 2 type: Transform - - uid: 2886 + - uid: 2901 components: - pos: -9.5,-75.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2887 + - uid: 2902 components: - pos: 25.5,-1.5 parent: 2 type: Transform - - uid: 2888 + - uid: 2903 components: - pos: 2.5,-67.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2889 + - uid: 2904 components: - pos: -5.5,-26.5 parent: 2 type: Transform - - uid: 2890 + - uid: 2905 components: - pos: 25.5,-58.5 parent: 2 type: Transform - - uid: 2891 + - uid: 2906 components: - pos: 25.5,-59.5 parent: 2 type: Transform - - uid: 2892 + - uid: 2907 components: - pos: 26.5,-60.5 parent: 2 type: Transform - - uid: 2893 + - uid: 2908 components: - pos: 28.5,-42.5 parent: 2 type: Transform - - uid: 2894 + - uid: 2909 components: - pos: 8.5,-69.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2895 + - uid: 2910 components: - pos: 19.5,-47.5 parent: 2 type: Transform - - uid: 2896 + - uid: 2911 components: - pos: 25.5,2.5 parent: 2 type: Transform - - uid: 2897 + - uid: 2912 components: - pos: -1.5,-74.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2898 + - uid: 2913 components: - pos: 30.5,1.5 parent: 2 type: Transform - - uid: 2899 + - uid: 2914 components: - pos: -1.5,-76.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2900 + - uid: 2915 components: - pos: -5.5,-74.5 parent: 2 type: Transform - - uid: 2901 + - uid: 2916 components: - pos: -5.5,-71.5 parent: 2 type: Transform - - uid: 2902 + - uid: 2917 components: - pos: 31.5,2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2903 + - uid: 2918 components: - pos: 19.5,-42.5 parent: 2 type: Transform - - uid: 2904 + - uid: 2919 components: - pos: 44.5,7.5 parent: 2 type: Transform - - uid: 2905 + - uid: 2920 components: - pos: 4.5,-71.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2906 + - uid: 2921 components: - pos: -17.5,-52.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2907 + - uid: 2922 components: - pos: 10.5,-42.5 parent: 2 type: Transform - - uid: 2908 + - uid: 2923 components: - pos: -14.5,-47.5 parent: 2 type: Transform - - uid: 2909 + - uid: 2924 components: - pos: -12.5,-49.5 parent: 2 type: Transform - - uid: 2910 + - uid: 2925 components: - pos: -13.5,-49.5 parent: 2 type: Transform - - uid: 2911 + - uid: 2926 components: - pos: -13.5,-48.5 parent: 2 type: Transform - - uid: 2912 + - uid: 2927 components: - pos: -13.5,-47.5 parent: 2 type: Transform - - uid: 2913 + - uid: 2928 components: - pos: -12.5,-47.5 parent: 2 type: Transform - - uid: 2914 + - uid: 2929 components: - pos: -10.5,-18.5 parent: 2 type: Transform - - uid: 2915 + - uid: 2930 components: - pos: 21.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2916 + - uid: 2931 components: - pos: 20.5,-11.5 parent: 2 type: Transform - - uid: 2917 + - uid: 2932 components: - pos: 20.5,-12.5 parent: 2 type: Transform - - uid: 2918 + - uid: 2933 components: - pos: 22.5,-41.5 parent: 2 type: Transform - - uid: 2919 + - uid: 2934 components: - pos: 19.5,-13.5 parent: 2 type: Transform - - uid: 2920 + - uid: 2935 components: - pos: 22.5,-11.5 parent: 2 type: Transform - - uid: 2921 + - uid: 2936 components: - pos: 62.5,-8.5 parent: 2 type: Transform - - uid: 2922 + - uid: 2937 components: - pos: -3.5,-53.5 parent: 2 type: Transform - - uid: 2923 + - uid: 2938 components: - pos: -14.5,-58.5 parent: 2 type: Transform - - uid: 2924 + - uid: 2939 components: - pos: 8.5,-60.5 parent: 2 type: Transform - - uid: 2925 + - uid: 2940 components: - pos: -8.5,-61.5 parent: 2 type: Transform - - uid: 2926 + - uid: 2941 components: - pos: -20.5,-88.5 parent: 2 type: Transform - - uid: 2927 + - uid: 2942 components: - pos: 28.5,-60.5 parent: 2 type: Transform - - uid: 2928 + - uid: 2943 components: - pos: -8.5,-24.5 parent: 2 type: Transform - - uid: 2929 + - uid: 2944 components: - pos: -4.5,-25.5 parent: 2 type: Transform - - uid: 2930 + - uid: 2945 components: - pos: 8.5,-54.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2931 + - uid: 2946 components: - pos: 8.5,-55.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2932 + - uid: 2947 components: - pos: -17.5,-61.5 parent: 2 type: Transform - - uid: 2933 + - uid: 2948 components: - pos: -18.5,-61.5 parent: 2 type: Transform - - uid: 2934 + - uid: 2949 components: - pos: 20.5,0.5 parent: 2 type: Transform - - uid: 2935 + - uid: 2950 components: - pos: -12.5,-74.5 parent: 2 type: Transform - - uid: 2936 + - uid: 2951 components: - pos: 40.5,-25.5 parent: 2 type: Transform - - uid: 2937 + - uid: 2952 components: - pos: 31.5,-62.5 parent: 2 type: Transform - - uid: 2938 + - uid: 2953 components: - pos: 22.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2939 + - uid: 2954 components: - pos: 25.5,-47.5 parent: 2 type: Transform - - uid: 2940 + - uid: 2955 components: - pos: 5.5,-70.5 parent: 2 type: Transform - - uid: 2941 + - uid: 2956 components: - pos: 4.5,8.5 parent: 2 type: Transform - - uid: 2942 + - uid: 2957 components: - pos: -31.5,30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2943 + - uid: 2958 components: - pos: 15.5,-41.5 parent: 2 type: Transform - - uid: 2944 + - uid: 2959 components: - pos: 20.5,1.5 parent: 2 type: Transform - - uid: 2945 + - uid: 2960 components: - pos: -8.5,-23.5 parent: 2 type: Transform - - uid: 2946 + - uid: 2961 components: - pos: 25.5,-60.5 parent: 2 type: Transform - - uid: 2947 + - uid: 2962 components: - pos: -1.5,-69.5 parent: 2 type: Transform - - uid: 2948 + - uid: 2963 components: - pos: 18.5,-32.5 parent: 2 type: Transform - - uid: 2949 + - uid: 2964 components: - pos: -1.5,-26.5 parent: 2 type: Transform - - uid: 2950 + - uid: 2965 components: - pos: -41.5,28.5 parent: 2 type: Transform - - uid: 2951 + - uid: 2966 components: - pos: -37.5,-68.5 parent: 2 type: Transform - - uid: 2952 + - uid: 2967 components: - pos: 1.5,6.5 parent: 2 type: Transform - - uid: 2953 + - uid: 2968 components: - pos: 0.5,-71.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2954 + - uid: 2969 components: - pos: -10.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2955 + - uid: 2970 components: - pos: 4.5,-46.5 parent: 2 type: Transform - - uid: 2956 + - uid: 2971 components: - pos: -8.5,-46.5 parent: 2 type: Transform - - uid: 2957 + - uid: 2972 components: - pos: 17.5,-55.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2958 + - uid: 2973 components: - pos: 18.5,-55.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2959 + - uid: 2974 components: - pos: -6.5,-26.5 parent: 2 type: Transform - - uid: 2960 + - uid: 2975 components: - pos: 24.5,-42.5 parent: 2 type: Transform - - uid: 2961 + - uid: 2976 components: - pos: 14.5,-42.5 parent: 2 type: Transform - - uid: 2962 + - uid: 2977 components: - pos: 17.5,-47.5 parent: 2 type: Transform - - uid: 2963 + - uid: 2978 components: - pos: 17.5,-52.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2964 + - uid: 2979 components: - pos: 15.5,-48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2965 + - uid: 2980 components: - pos: 4.5,-70.5 parent: 2 type: Transform - - uid: 2966 + - uid: 2981 components: - pos: 28.5,-47.5 parent: 2 type: Transform - - uid: 2967 + - uid: 2982 components: - pos: 25.5,-49.5 parent: 2 type: Transform - - uid: 2968 + - uid: 2983 components: - pos: -1.5,-71.5 parent: 2 type: Transform - - uid: 2969 + - uid: 2984 components: - pos: -6.5,1.5 parent: 2 type: Transform - - uid: 2970 + - uid: 2985 components: - pos: 15.5,-49.5 parent: 2 type: Transform - - uid: 2971 + - uid: 2986 components: - pos: -2.5,11.5 parent: 2 type: Transform - - uid: 2972 + - uid: 2987 components: - pos: 4.5,6.5 parent: 2 type: Transform - - uid: 2973 + - uid: 2988 components: - pos: 46.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2974 + - uid: 2989 components: - pos: 15.5,-35.5 parent: 2 type: Transform - - uid: 2975 + - uid: 2990 components: - pos: 15.5,-36.5 parent: 2 type: Transform - - uid: 2976 + - uid: 2991 components: - pos: 20.5,-14.5 parent: 2 type: Transform - - uid: 2977 + - uid: 2992 components: - pos: 20.5,-15.5 parent: 2 type: Transform - - uid: 2978 + - uid: 2993 components: - pos: 20.5,-16.5 parent: 2 type: Transform - - uid: 2979 + - uid: 2994 components: - pos: 20.5,-17.5 parent: 2 type: Transform - - uid: 2980 + - uid: 2995 components: - pos: 19.5,-17.5 parent: 2 type: Transform - - uid: 2981 + - uid: 2996 components: - pos: 17.5,-17.5 parent: 2 type: Transform - - uid: 2982 + - uid: 2997 components: - pos: 23.5,-17.5 parent: 2 type: Transform - - uid: 2983 + - uid: 2998 components: - pos: 25.5,-18.5 parent: 2 type: Transform - - uid: 2984 + - uid: 2999 components: - pos: 27.5,-17.5 parent: 2 type: Transform - - uid: 2985 + - uid: 3000 components: - pos: 27.5,-18.5 parent: 2 type: Transform - - uid: 2986 + - uid: 3001 components: - pos: 23.5,-18.5 parent: 2 type: Transform - - uid: 2987 + - uid: 3002 components: - pos: 28.5,-17.5 parent: 2 type: Transform - - uid: 2988 + - uid: 3003 components: - pos: 29.5,-17.5 parent: 2 type: Transform - - uid: 2989 + - uid: 3004 components: - pos: 30.5,-17.5 parent: 2 type: Transform - - uid: 2990 + - uid: 3005 components: - pos: 30.5,-16.5 parent: 2 type: Transform - - uid: 2991 + - uid: 3006 components: - pos: 32.5,-16.5 parent: 2 type: Transform - - uid: 2992 + - uid: 3007 components: - pos: 32.5,-15.5 parent: 2 type: Transform - - uid: 2993 + - uid: 3008 components: - pos: 32.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2994 + - uid: 3009 components: - pos: 32.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 2995 + - uid: 3010 components: - pos: 32.5,-17.5 parent: 2 type: Transform - - uid: 2996 + - uid: 3011 components: - pos: 34.5,-18.5 parent: 2 type: Transform - - uid: 2997 + - uid: 3012 components: - pos: 20.5,-8.5 parent: 2 type: Transform - - uid: 2998 + - uid: 3013 components: - pos: 19.5,-8.5 parent: 2 type: Transform - - uid: 2999 + - uid: 3014 components: - pos: 17.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3000 + - uid: 3015 components: - pos: 15.5,-8.5 parent: 2 type: Transform - - uid: 3001 + - uid: 3016 components: - pos: 14.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3002 + - uid: 3017 components: - pos: 9.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3003 + - uid: 3018 components: - pos: 26.5,-14.5 parent: 2 type: Transform - - uid: 3004 + - uid: 3019 components: - pos: 29.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3005 + - uid: 3020 components: - pos: 27.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3006 + - uid: 3021 components: - pos: 30.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3007 + - uid: 3022 components: - pos: 31.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3008 + - uid: 3023 components: - pos: -4.5,-15.5 parent: 2 type: Transform - - uid: 3009 + - uid: 3024 components: - pos: -15.5,-17.5 parent: 2 type: Transform - - uid: 3010 + - uid: 3025 components: - pos: -12.5,-73.5 parent: 2 type: Transform - - uid: 3011 + - uid: 3026 components: - pos: -4.5,-19.5 parent: 2 type: Transform - - uid: 3012 + - uid: 3027 components: - pos: -1.5,-63.5 parent: 2 type: Transform - - uid: 3013 + - uid: 3028 components: - pos: -7.5,-47.5 parent: 2 type: Transform - - uid: 3014 + - uid: 3029 components: - pos: 25.5,-24.5 parent: 2 type: Transform - - uid: 3015 + - uid: 3030 components: - pos: 23.5,-23.5 parent: 2 type: Transform - - uid: 3016 + - uid: 3031 components: - pos: 20.5,-22.5 parent: 2 type: Transform - - uid: 3017 + - uid: 3032 components: - pos: 30.5,-24.5 parent: 2 type: Transform - - uid: 3018 + - uid: 3033 components: - pos: -8.5,-47.5 parent: 2 type: Transform - - uid: 3019 + - uid: 3034 components: - pos: 27.5,-31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3020 + - uid: 3035 components: - pos: 22.5,-33.5 parent: 2 type: Transform - - uid: 3021 + - uid: 3036 components: - pos: 22.5,-31.5 parent: 2 type: Transform - - uid: 3022 + - uid: 3037 components: - pos: -7.5,-45.5 parent: 2 type: Transform - - uid: 3023 + - uid: 3038 components: - pos: -5.5,-45.5 parent: 2 type: Transform - - uid: 3024 + - uid: 3039 components: - pos: -4.5,-45.5 parent: 2 type: Transform - - uid: 3025 + - uid: 3040 components: - pos: -3.5,-45.5 parent: 2 type: Transform - - uid: 3026 + - uid: 3041 components: - pos: 5.5,-46.5 parent: 2 type: Transform - - uid: 3027 + - uid: 3042 components: - pos: 6.5,-46.5 parent: 2 type: Transform - - uid: 3028 + - uid: 3043 components: - pos: -12.5,-54.5 parent: 2 type: Transform - - uid: 3029 + - uid: 3044 components: - pos: 19.5,-50.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3030 + - uid: 3045 components: - pos: -2.5,-42.5 parent: 2 type: Transform - - uid: 3031 + - uid: 3046 components: - pos: -4.5,-42.5 parent: 2 type: Transform - - uid: 3032 + - uid: 3047 components: - pos: -6.5,-42.5 parent: 2 type: Transform - - uid: 3033 + - uid: 3048 components: - pos: -7.5,-42.5 parent: 2 type: Transform - - uid: 3034 + - uid: 3049 components: - pos: -8.5,-42.5 parent: 2 type: Transform - - uid: 3035 + - uid: 3050 components: - pos: -9.5,-42.5 parent: 2 type: Transform - - uid: 3036 + - uid: 3051 components: - pos: -10.5,-42.5 parent: 2 type: Transform - - uid: 3037 + - uid: 3052 components: - pos: -11.5,-42.5 parent: 2 type: Transform - - uid: 3038 + - uid: 3053 components: - pos: -12.5,-42.5 parent: 2 type: Transform - - uid: 3039 + - uid: 3054 components: - pos: 1.5,-41.5 parent: 2 type: Transform - - uid: 3040 + - uid: 3055 components: - pos: 2.5,-41.5 parent: 2 type: Transform - - uid: 3041 + - uid: 3056 components: - pos: 3.5,-41.5 parent: 2 type: Transform - - uid: 3042 + - uid: 3057 components: - pos: 5.5,-41.5 parent: 2 type: Transform - - uid: 3043 + - uid: 3058 components: - pos: 5.5,-42.5 parent: 2 type: Transform - - uid: 3044 + - uid: 3059 components: - pos: -4.5,-38.5 parent: 2 type: Transform - - uid: 3045 + - uid: 3060 components: - pos: -4.5,-36.5 parent: 2 type: Transform - - uid: 3046 + - uid: 3061 components: - pos: -4.5,-35.5 parent: 2 type: Transform - - uid: 3047 + - uid: 3062 components: - pos: -4.5,-34.5 parent: 2 type: Transform - - uid: 3048 + - uid: 3063 components: - pos: -12.5,-43.5 parent: 2 type: Transform - - uid: 3049 + - uid: 3064 components: - pos: -12.5,-44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3050 + - uid: 3065 components: - pos: -12.5,-46.5 parent: 2 type: Transform - - uid: 3051 + - uid: 3066 components: - pos: -5.5,-69.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3052 + - uid: 3067 components: - pos: 26.5,-42.5 parent: 2 type: Transform - - uid: 3053 + - uid: 3068 components: - pos: 30.5,2.5 parent: 2 type: Transform - - uid: 3054 + - uid: 3069 components: - pos: 18.5,-41.5 parent: 2 type: Transform - - uid: 3055 + - uid: 3070 components: - pos: 8.5,-68.5 parent: 2 type: Transform - - uid: 3056 + - uid: 3071 components: - pos: 26.5,-47.5 parent: 2 type: Transform - - uid: 3057 + - uid: 3072 components: - pos: -4.5,-27.5 parent: 2 type: Transform - - uid: 3058 + - uid: 3073 components: - pos: 29.5,2.5 parent: 2 type: Transform - - uid: 3059 + - uid: 3074 components: - pos: 25.5,-48.5 parent: 2 type: Transform - - uid: 3060 + - uid: 3075 components: - pos: -4.5,7.5 parent: 2 type: Transform - - uid: 3061 + - uid: 3076 components: - pos: 28.5,-32.5 parent: 2 type: Transform - - uid: 3062 + - uid: 3077 components: - pos: 30.5,-30.5 parent: 2 type: Transform - - uid: 3063 + - uid: 3078 components: - pos: 30.5,-29.5 parent: 2 type: Transform - - uid: 3064 + - uid: 3079 components: - pos: 30.5,-28.5 parent: 2 type: Transform - - uid: 3065 + - uid: 3080 components: - pos: 62.5,-10.5 parent: 2 type: Transform - - uid: 3066 + - uid: 3081 components: - pos: 9.5,2.5 parent: 2 type: Transform - - uid: 3067 + - uid: 3082 components: - pos: 2.5,2.5 parent: 2 type: Transform - - uid: 3068 + - uid: 3083 components: - pos: 27.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3069 + - uid: 3084 components: - pos: 62.5,-12.5 parent: 2 type: Transform - - uid: 3070 + - uid: 3085 components: - pos: -4.5,-22.5 parent: 2 type: Transform - - uid: 3071 + - uid: 3086 components: - pos: -4.5,-3.5 parent: 2 type: Transform - - uid: 3072 + - uid: 3087 components: - pos: -4.5,-2.5 parent: 2 type: Transform - - uid: 3073 + - uid: 3088 components: - pos: -4.5,-0.5 parent: 2 type: Transform - - uid: 3074 + - uid: 3089 components: - pos: -4.5,-1.5 parent: 2 type: Transform - - uid: 3075 + - uid: 3090 components: - pos: -8.5,-0.5 parent: 2 type: Transform - - uid: 3076 + - uid: 3091 components: - pos: -8.5,0.5 parent: 2 type: Transform - - uid: 3077 + - uid: 3092 components: - pos: -3.5,-42.5 parent: 2 type: Transform - - uid: 3078 + - uid: 3093 components: - pos: -0.5,-41.5 parent: 2 type: Transform - - uid: 3079 + - uid: 3094 components: - pos: -4.5,-32.5 parent: 2 type: Transform - - uid: 3080 + - uid: 3095 components: - pos: -6.5,-63.5 parent: 2 type: Transform - - uid: 3081 + - uid: 3096 components: - pos: 22.5,-42.5 parent: 2 type: Transform - - uid: 3082 + - uid: 3097 components: - pos: -1.5,-78.5 parent: 2 type: Transform - - uid: 3083 + - uid: 3098 components: - pos: -4.5,-74.5 parent: 2 type: Transform - - uid: 3084 + - uid: 3099 components: - pos: 13.5,1.5 parent: 2 type: Transform - - uid: 3085 + - uid: 3100 components: - pos: 3.5,0.5 parent: 2 type: Transform - - uid: 3086 + - uid: 3101 components: - pos: 11.5,2.5 parent: 2 type: Transform - - uid: 3087 + - uid: 3102 components: - pos: 5.5,6.5 parent: 2 type: Transform - - uid: 3088 + - uid: 3103 components: - pos: 20.5,-0.5 parent: 2 type: Transform - - uid: 3089 + - uid: 3104 components: - pos: 35.5,-37.5 parent: 2 type: Transform - - uid: 3090 + - uid: 3105 components: - pos: 9.5,-42.5 parent: 2 type: Transform - - uid: 3091 + - uid: 3106 components: - pos: 37.5,13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3092 + - uid: 3107 components: - pos: -33.5,-55.5 parent: 2 type: Transform - - uid: 3093 + - uid: 3108 components: - pos: -38.5,-68.5 parent: 2 type: Transform - - uid: 3094 + - uid: 3109 components: - pos: -8.5,-5.5 parent: 2 type: Transform - - uid: 3095 + - uid: 3110 components: - pos: -9.5,-5.5 parent: 2 type: Transform - - uid: 3096 + - uid: 3111 components: - pos: -9.5,-3.5 parent: 2 type: Transform - - uid: 3097 + - uid: 3112 components: - pos: -4.5,-39.5 parent: 2 type: Transform - - uid: 3098 + - uid: 3113 components: - pos: 0.5,-40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3099 + - uid: 3114 components: - pos: 21.5,-32.5 parent: 2 type: Transform - - uid: 3100 + - uid: 3115 components: - pos: 0.5,-69.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3101 + - uid: 3116 components: - pos: -19.5,-65.5 parent: 2 type: Transform - - uid: 3102 + - uid: 3117 components: - pos: -19.5,-67.5 parent: 2 type: Transform - - uid: 3103 + - uid: 3118 components: - pos: -19.5,-71.5 parent: 2 type: Transform - - uid: 3104 + - uid: 3119 components: - pos: -18.5,-73.5 parent: 2 type: Transform - - uid: 3105 + - uid: 3120 components: - pos: -18.5,-75.5 parent: 2 type: Transform - - uid: 3106 + - uid: 3121 components: - pos: -16.5,-77.5 parent: 2 type: Transform - - uid: 3107 + - uid: 3122 components: - pos: -24.5,-14.5 parent: 2 type: Transform - - uid: 3108 + - uid: 3123 components: - pos: 23.5,-24.5 parent: 2 type: Transform - - uid: 3109 + - uid: 3124 components: - pos: 45.5,-24.5 parent: 2 type: Transform - - uid: 3110 + - uid: 3125 components: - pos: -47.5,36.5 parent: 2 type: Transform - - uid: 3111 + - uid: 3126 components: - pos: 12.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3112 + - uid: 3127 components: - pos: -14.5,-57.5 parent: 2 type: Transform - - uid: 3113 + - uid: 3128 components: - pos: 0.5,-48.5 parent: 2 type: Transform - - uid: 3114 + - uid: 3129 components: - pos: 13.5,-0.5 parent: 2 type: Transform - - uid: 3115 + - uid: 3130 components: - pos: 20.5,2.5 parent: 2 type: Transform - - uid: 3116 + - uid: 3131 components: - pos: 20.5,-1.5 parent: 2 type: Transform - - uid: 3117 + - uid: 3132 components: - pos: 17.5,-13.5 parent: 2 type: Transform - - uid: 3118 + - uid: 3133 components: - pos: 62.5,-11.5 parent: 2 type: Transform - - uid: 3119 + - uid: 3134 components: - pos: -8.5,-25.5 parent: 2 type: Transform - - uid: 3120 + - uid: 3135 components: - pos: -36.5,-69.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3121 + - uid: 3136 components: - pos: 19.5,-32.5 parent: 2 type: Transform - - uid: 3122 + - uid: 3137 components: - pos: 1.5,11.5 parent: 2 type: Transform - - uid: 3123 + - uid: 3138 components: - pos: 22.5,-17.5 parent: 2 type: Transform - - uid: 3124 + - uid: 3139 components: - pos: 24.5,-17.5 parent: 2 type: Transform - - uid: 3125 + - uid: 3140 components: - pos: 25.5,-17.5 parent: 2 type: Transform - - uid: 3126 + - uid: 3141 components: - pos: 26.5,-17.5 parent: 2 type: Transform - - uid: 3127 + - uid: 3142 components: - pos: 17.5,-40.5 parent: 2 type: Transform - - uid: 3128 + - uid: 3143 components: - pos: -4.5,-17.5 parent: 2 type: Transform - - uid: 3129 + - uid: 3144 components: - pos: 20.5,-47.5 parent: 2 type: Transform - - uid: 3130 + - uid: 3145 components: - pos: -3.5,-68.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3131 + - uid: 3146 components: - pos: 6.5,-66.5 parent: 2 type: Transform - - uid: 3132 + - uid: 3147 components: - pos: 6.5,-67.5 parent: 2 type: Transform - - uid: 3133 + - uid: 3148 components: - pos: 5.5,-67.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3134 + - uid: 3149 components: - pos: 4.5,-67.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3135 + - uid: 3150 components: - pos: 6.5,-72.5 parent: 2 type: Transform - - uid: 3136 + - uid: 3151 components: - pos: 3.5,-71.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3137 + - uid: 3152 components: - pos: 6.5,-70.5 parent: 2 type: Transform - - uid: 3138 + - uid: 3153 components: - pos: -0.5,-71.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3139 + - uid: 3154 components: - pos: -3.5,0.5 parent: 2 type: Transform - - uid: 3140 + - uid: 3155 components: - pos: -3.5,1.5 parent: 2 type: Transform - - uid: 3141 + - uid: 3156 components: - pos: 15.5,-46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3142 + - uid: 3157 components: - pos: 17.5,-46.5 parent: 2 type: Transform - - uid: 3143 + - uid: 3158 components: - pos: 19.5,-48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3144 + - uid: 3159 components: - pos: 25.5,-53.5 parent: 2 type: Transform - - uid: 3145 + - uid: 3160 components: - pos: 18.5,-42.5 parent: 2 type: Transform - - uid: 3146 + - uid: 3161 components: - pos: 16.5,-40.5 parent: 2 type: Transform - - uid: 3147 + - uid: 3162 components: - pos: -4.5,-26.5 parent: 2 type: Transform - - uid: 3148 + - uid: 3163 components: - pos: 33.5,-32.5 parent: 2 type: Transform - - uid: 3149 + - uid: 3164 components: - pos: 34.5,-32.5 parent: 2 type: Transform - - uid: 3150 + - uid: 3165 components: - pos: 15.5,-31.5 parent: 2 type: Transform - - uid: 3151 + - uid: 3166 components: - pos: 15.5,-30.5 parent: 2 type: Transform - - uid: 3152 + - uid: 3167 components: - pos: 15.5,-29.5 parent: 2 type: Transform - - uid: 3153 + - uid: 3168 components: - pos: 15.5,-21.5 parent: 2 type: Transform - - uid: 3154 + - uid: 3169 components: - pos: 15.5,-22.5 parent: 2 type: Transform - - uid: 3155 + - uid: 3170 components: - pos: 15.5,-23.5 parent: 2 type: Transform - - uid: 3156 + - uid: 3171 components: - pos: 15.5,-24.5 parent: 2 type: Transform - - uid: 3157 + - uid: 3172 components: - pos: 15.5,-25.5 parent: 2 type: Transform - - uid: 3158 + - uid: 3173 components: - pos: 15.5,-26.5 parent: 2 type: Transform - - uid: 3159 + - uid: 3174 components: - pos: 34.5,-17.5 parent: 2 type: Transform - - uid: 3160 + - uid: 3175 components: - pos: 35.5,-18.5 parent: 2 type: Transform - - uid: 3161 + - uid: 3176 components: - pos: 18.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3162 + - uid: 3177 components: - pos: 16.5,-8.5 parent: 2 type: Transform - - uid: 3163 + - uid: 3178 components: - pos: 14.5,-8.5 parent: 2 type: Transform - - uid: 3164 + - uid: 3179 components: - pos: 14.5,-4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3165 + - uid: 3180 components: - pos: 14.5,-1.5 parent: 2 type: Transform - - uid: 3166 + - uid: 3181 components: - pos: 15.5,-9.5 parent: 2 type: Transform - - uid: 3167 + - uid: 3182 components: - pos: 15.5,-12.5 parent: 2 type: Transform - - uid: 3168 + - uid: 3183 components: - pos: 39.5,-25.5 parent: 2 type: Transform - - uid: 3169 + - uid: 3184 components: - pos: 39.5,-26.5 parent: 2 type: Transform - - uid: 3170 + - uid: 3185 components: - pos: -25.5,-86.5 parent: 2 type: Transform - - uid: 3171 + - uid: 3186 components: - pos: -25.5,-85.5 parent: 2 type: Transform - - uid: 3172 + - uid: 3187 components: - pos: 5.5,-53.5 parent: 2 type: Transform - - uid: 3173 + - uid: 3188 components: - pos: 6.5,-53.5 parent: 2 type: Transform - - uid: 3174 + - uid: 3189 components: - pos: 7.5,-53.5 parent: 2 type: Transform - - uid: 3175 + - uid: 3190 components: - pos: 8.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3176 + - uid: 3191 components: - pos: 8.5,-52.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3177 + - uid: 3192 components: - pos: 9.5,-52.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3178 + - uid: 3193 components: - pos: 10.5,-52.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3179 + - uid: 3194 components: - pos: 10.5,-49.5 parent: 2 type: Transform - - uid: 3180 + - uid: 3195 components: - pos: 15.5,-43.5 parent: 2 type: Transform - - uid: 3181 + - uid: 3196 components: - pos: -16.5,-61.5 parent: 2 type: Transform - - uid: 3182 + - uid: 3197 components: - pos: -19.5,-64.5 parent: 2 type: Transform - - uid: 3183 + - uid: 3198 components: - pos: -19.5,-66.5 parent: 2 type: Transform - - uid: 3184 + - uid: 3199 components: - pos: -14.5,-67.5 parent: 2 type: Transform - - uid: 3185 + - uid: 3200 components: - pos: -28.5,-79.5 parent: 2 type: Transform - - uid: 3186 + - uid: 3201 components: - pos: -28.5,-78.5 parent: 2 type: Transform - - uid: 3187 + - uid: 3202 components: - pos: -27.5,-78.5 parent: 2 type: Transform - - uid: 3188 + - uid: 3203 components: - pos: -26.5,-78.5 parent: 2 type: Transform - - uid: 3189 + - uid: 3204 components: - pos: -26.5,-77.5 parent: 2 type: Transform - - uid: 3190 + - uid: 3205 components: - pos: -25.5,-77.5 parent: 2 type: Transform - - uid: 3191 + - uid: 3206 components: - pos: -22.5,-86.5 parent: 2 type: Transform - - uid: 3192 + - uid: 3207 components: - pos: -20.5,-85.5 parent: 2 type: Transform - - uid: 3193 + - uid: 3208 components: - pos: -21.5,-85.5 parent: 2 type: Transform - - uid: 3194 + - uid: 3209 components: - pos: -24.5,-85.5 parent: 2 type: Transform - - uid: 3195 + - uid: 3210 components: - pos: -23.5,-85.5 parent: 2 type: Transform - - uid: 3196 + - uid: 3211 components: - pos: -22.5,-85.5 parent: 2 type: Transform - - uid: 3197 + - uid: 3212 components: - pos: -22.5,-84.5 parent: 2 type: Transform - - uid: 3198 + - uid: 3213 components: - pos: -22.5,-81.5 parent: 2 type: Transform - - uid: 3199 + - uid: 3214 components: - pos: -22.5,-83.5 parent: 2 type: Transform - - uid: 3200 + - uid: 3215 components: - pos: -22.5,-82.5 parent: 2 type: Transform - - uid: 3201 + - uid: 3216 components: - pos: -22.5,-80.5 parent: 2 type: Transform - - uid: 3202 + - uid: 3217 components: - pos: -23.5,-80.5 parent: 2 type: Transform - - uid: 3203 + - uid: 3218 components: - pos: -23.5,-79.5 parent: 2 type: Transform - - uid: 3204 + - uid: 3219 components: - pos: -23.5,-78.5 parent: 2 type: Transform - - uid: 3205 + - uid: 3220 components: - pos: -23.5,-77.5 parent: 2 type: Transform - - uid: 3206 + - uid: 3221 components: - pos: -24.5,-77.5 parent: 2 type: Transform - - uid: 3207 + - uid: 3222 components: - pos: -24.5,-76.5 parent: 2 type: Transform - - uid: 3208 + - uid: 3223 components: - pos: -24.5,-75.5 parent: 2 type: Transform - - uid: 3209 + - uid: 3224 components: - pos: -24.5,-74.5 parent: 2 type: Transform - - uid: 3210 + - uid: 3225 components: - pos: -24.5,-73.5 parent: 2 type: Transform - - uid: 3211 + - uid: 3226 components: - pos: -24.5,-72.5 parent: 2 type: Transform - - uid: 3212 + - uid: 3227 components: - pos: -23.5,-72.5 parent: 2 type: Transform - - uid: 3213 + - uid: 3228 components: - pos: -22.5,-72.5 parent: 2 type: Transform - - uid: 3214 + - uid: 3229 components: - pos: -21.5,-72.5 parent: 2 type: Transform - - uid: 3215 + - uid: 3230 components: - pos: -21.5,-71.5 parent: 2 type: Transform - - uid: 3216 + - uid: 3231 components: - pos: -20.5,-79.5 parent: 2 type: Transform - - uid: 3217 + - uid: 3232 components: - pos: -19.5,-79.5 parent: 2 type: Transform - - uid: 3218 + - uid: 3233 components: - pos: -19.5,-78.5 parent: 2 type: Transform - - uid: 3219 + - uid: 3234 components: - pos: 33.5,3.5 parent: 2 type: Transform - - uid: 3220 + - uid: 3235 components: - pos: 33.5,4.5 parent: 2 type: Transform - - uid: 3221 + - uid: 3236 components: - pos: 33.5,7.5 parent: 2 type: Transform - - uid: 3222 + - uid: 3237 components: - pos: 33.5,6.5 parent: 2 type: Transform - - uid: 3223 + - uid: 3238 components: - pos: 33.5,5.5 parent: 2 type: Transform - - uid: 3224 + - uid: 3239 components: - pos: 26.5,7.5 parent: 2 type: Transform - - uid: 3225 + - uid: 3240 components: - pos: 33.5,0.5 parent: 2 type: Transform - - uid: 3226 + - uid: 3241 components: - pos: 33.5,-0.5 parent: 2 type: Transform - - uid: 3227 + - uid: 3242 components: - pos: 33.5,-1.5 parent: 2 type: Transform - - uid: 3228 + - uid: 3243 components: - pos: 33.5,-2.5 parent: 2 type: Transform - - uid: 3229 + - uid: 3244 components: - pos: 33.5,-3.5 parent: 2 type: Transform - - uid: 3230 + - uid: 3245 components: - pos: 33.5,-4.5 parent: 2 type: Transform - - uid: 3231 + - uid: 3246 components: - pos: 33.5,-5.5 parent: 2 type: Transform - - uid: 3232 + - uid: 3247 components: - pos: 27.5,7.5 parent: 2 type: Transform - - uid: 3233 + - uid: 3248 components: - pos: 28.5,7.5 parent: 2 type: Transform - - uid: 3234 + - uid: 3249 components: - pos: 29.5,7.5 parent: 2 type: Transform - - uid: 3235 + - uid: 3250 components: - pos: 30.5,7.5 parent: 2 type: Transform - - uid: 3236 + - uid: 3251 components: - pos: 31.5,7.5 parent: 2 type: Transform - - uid: 3237 + - uid: 3252 components: - pos: 32.5,7.5 parent: 2 type: Transform - - uid: 3238 + - uid: 3253 components: - pos: 26.5,8.5 parent: 2 type: Transform - - uid: 3239 + - uid: 3254 components: - pos: 26.5,9.5 parent: 2 type: Transform - - uid: 3240 + - uid: 3255 components: - pos: 26.5,10.5 parent: 2 type: Transform - - uid: 3241 + - uid: 3256 components: - pos: 26.5,11.5 parent: 2 type: Transform - - uid: 3242 + - uid: 3257 components: - pos: 26.5,12.5 parent: 2 type: Transform - - uid: 3243 + - uid: 3258 components: - pos: 26.5,13.5 parent: 2 type: Transform - - uid: 3244 + - uid: 3259 components: - pos: 25.5,7.5 parent: 2 type: Transform - - uid: 3245 + - uid: 3260 components: - pos: 24.5,7.5 parent: 2 type: Transform - - uid: 3246 + - uid: 3261 components: - pos: 23.5,7.5 parent: 2 type: Transform - - uid: 3247 + - uid: 3262 components: - pos: 22.5,7.5 parent: 2 type: Transform - - uid: 3248 + - uid: 3263 components: - pos: 21.5,7.5 parent: 2 type: Transform - - uid: 3249 + - uid: 3264 components: - pos: 34.5,0.5 parent: 2 type: Transform - - uid: 3250 + - uid: 3265 components: - pos: 37.5,-25.5 parent: 2 type: Transform - - uid: 3251 + - uid: 3266 components: - pos: 36.5,-25.5 parent: 2 type: Transform - - uid: 3252 + - uid: 3267 components: - pos: 36.5,-24.5 parent: 2 type: Transform - - uid: 3253 + - uid: 3268 components: - pos: 36.5,-23.5 parent: 2 type: Transform - - uid: 3254 + - uid: 3269 components: - pos: 36.5,-22.5 parent: 2 type: Transform - - uid: 3255 + - uid: 3270 components: - pos: 35.5,-22.5 parent: 2 type: Transform - - uid: 3256 + - uid: 3271 components: - pos: 35.5,-21.5 parent: 2 type: Transform - - uid: 3257 + - uid: 3272 components: - pos: 35.5,-25.5 parent: 2 type: Transform - - uid: 3258 + - uid: 3273 components: - pos: 34.5,-25.5 parent: 2 type: Transform - - uid: 3259 + - uid: 3274 components: - pos: 35.5,-26.5 parent: 2 type: Transform - - uid: 3260 + - uid: 3275 components: - pos: 35.5,-27.5 parent: 2 type: Transform - - uid: 3261 + - uid: 3276 components: - pos: 35.5,-28.5 parent: 2 type: Transform - - uid: 3262 + - uid: 3277 components: - pos: 35.5,-29.5 parent: 2 type: Transform - - uid: 3263 + - uid: 3278 components: - pos: 35.5,-30.5 parent: 2 type: Transform - - uid: 3264 + - uid: 3279 components: - pos: 35.5,-31.5 parent: 2 type: Transform - - uid: 3265 + - uid: 3280 components: - pos: 35.5,-32.5 parent: 2 type: Transform - - uid: 3266 + - uid: 3281 components: - pos: 35.5,-33.5 parent: 2 type: Transform - - uid: 3267 + - uid: 3282 components: - pos: 35.5,-34.5 parent: 2 type: Transform - - uid: 3268 + - uid: 3283 components: - pos: 35.5,-35.5 parent: 2 type: Transform - - uid: 3269 + - uid: 3284 components: - pos: 35.5,-36.5 parent: 2 type: Transform - - uid: 3270 + - uid: 3285 components: - pos: 36.5,-30.5 parent: 2 type: Transform - - uid: 3271 + - uid: 3286 components: - pos: 37.5,-30.5 parent: 2 type: Transform - - uid: 3272 + - uid: 3287 components: - pos: 38.5,-30.5 parent: 2 type: Transform - - uid: 3273 + - uid: 3288 components: - pos: 39.5,-30.5 parent: 2 type: Transform - - uid: 3274 + - uid: 3289 components: - pos: 31.5,-4.5 parent: 2 type: Transform - - uid: 3275 + - uid: 3290 components: - pos: -4.5,-10.5 parent: 2 type: Transform - - uid: 3276 + - uid: 3291 components: - pos: -4.5,-9.5 parent: 2 type: Transform - - uid: 3277 + - uid: 3292 components: - pos: -4.5,-8.5 parent: 2 type: Transform - - uid: 3278 + - uid: 3293 components: - pos: -4.5,-7.5 parent: 2 type: Transform - - uid: 3279 + - uid: 3294 components: - pos: -4.5,-6.5 parent: 2 type: Transform - - uid: 3280 + - uid: 3295 components: - pos: -4.5,-5.5 parent: 2 type: Transform - - uid: 3281 + - uid: 3296 components: - pos: 63.5,-5.5 parent: 2 type: Transform - - uid: 3282 + - uid: 3297 components: - pos: 62.5,-5.5 parent: 2 type: Transform - - uid: 3283 + - uid: 3298 components: - pos: 21.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3284 + - uid: 3299 components: - pos: 21.5,14.5 parent: 2 type: Transform - - uid: 3285 + - uid: 3300 components: - pos: 21.5,13.5 parent: 2 type: Transform - - uid: 3286 + - uid: 3301 components: - pos: 21.5,12.5 parent: 2 type: Transform - - uid: 3287 + - uid: 3302 components: - pos: 21.5,11.5 parent: 2 type: Transform - - uid: 3288 + - uid: 3303 components: - pos: 21.5,10.5 parent: 2 type: Transform - - uid: 3289 + - uid: 3304 components: - pos: 20.5,14.5 parent: 2 type: Transform - - uid: 3290 + - uid: 3305 components: - pos: 19.5,14.5 parent: 2 type: Transform - - uid: 3291 + - uid: 3306 components: - pos: 18.5,14.5 parent: 2 type: Transform - - uid: 3292 + - uid: 3307 components: - pos: 17.5,14.5 parent: 2 type: Transform - - uid: 3293 + - uid: 3308 components: - pos: 17.5,13.5 parent: 2 type: Transform - - uid: 3294 + - uid: 3309 components: - pos: 17.5,12.5 parent: 2 type: Transform - - uid: 3295 + - uid: 3310 components: - pos: 17.5,11.5 parent: 2 type: Transform - - uid: 3296 + - uid: 3311 components: - pos: 16.5,11.5 parent: 2 type: Transform - - uid: 3297 + - uid: 3312 components: - pos: 15.5,11.5 parent: 2 type: Transform - - uid: 3298 + - uid: 3313 components: - pos: 14.5,11.5 parent: 2 type: Transform - - uid: 3299 + - uid: 3314 components: - pos: 13.5,11.5 parent: 2 type: Transform - - uid: 3300 + - uid: 3315 components: - pos: 13.5,12.5 parent: 2 type: Transform - - uid: 3301 + - uid: 3316 components: - pos: 13.5,13.5 parent: 2 type: Transform - - uid: 3302 + - uid: 3317 components: - pos: 12.5,13.5 parent: 2 type: Transform - - uid: 3303 + - uid: 3318 components: - pos: 11.5,13.5 parent: 2 type: Transform - - uid: 3304 + - uid: 3319 components: - pos: 11.5,12.5 parent: 2 type: Transform - - uid: 3305 + - uid: 3320 components: - pos: 11.5,11.5 parent: 2 type: Transform - - uid: 3306 + - uid: 3321 components: - pos: 11.5,10.5 parent: 2 type: Transform - - uid: 3307 + - uid: 3322 components: - pos: 11.5,9.5 parent: 2 type: Transform - - uid: 3308 + - uid: 3323 components: - pos: 11.5,8.5 parent: 2 type: Transform - - uid: 3309 + - uid: 3324 components: - pos: 11.5,7.5 parent: 2 type: Transform - - uid: 3310 + - uid: 3325 components: - pos: 11.5,6.5 parent: 2 type: Transform - - uid: 3311 + - uid: 3326 components: - pos: 12.5,8.5 parent: 2 type: Transform - - uid: 3312 + - uid: 3327 components: - pos: 13.5,8.5 parent: 2 type: Transform - - uid: 3313 + - uid: 3328 components: - pos: 13.5,7.5 parent: 2 type: Transform - - uid: 3314 + - uid: 3329 components: - pos: 14.5,7.5 parent: 2 type: Transform - - uid: 3315 + - uid: 3330 components: - pos: 15.5,7.5 parent: 2 type: Transform - - uid: 3316 + - uid: 3331 components: - pos: 16.5,7.5 parent: 2 type: Transform - - uid: 3317 + - uid: 3332 components: - pos: 17.5,7.5 parent: 2 type: Transform - - uid: 3318 + - uid: 3333 components: - pos: 17.5,6.5 parent: 2 type: Transform - - uid: 3319 + - uid: 3334 components: - pos: 17.5,5.5 parent: 2 type: Transform - - uid: 3320 + - uid: 3335 components: - pos: 17.5,4.5 parent: 2 type: Transform - - uid: 3321 + - uid: 3336 components: - pos: 17.5,3.5 parent: 2 type: Transform - - uid: 3322 + - uid: 3337 components: - pos: 17.5,2.5 parent: 2 type: Transform - - uid: 3323 + - uid: 3338 components: - pos: 17.5,1.5 parent: 2 type: Transform - - uid: 3324 + - uid: 3339 components: - pos: 17.5,0.5 parent: 2 type: Transform - - uid: 3325 + - uid: 3340 components: - pos: 17.5,-0.5 parent: 2 type: Transform - - uid: 3326 + - uid: 3341 components: - pos: 17.5,-1.5 parent: 2 type: Transform - - uid: 3327 + - uid: 3342 components: - pos: 17.5,-2.5 parent: 2 type: Transform - - uid: 3328 + - uid: 3343 components: - pos: 17.5,-3.5 parent: 2 type: Transform - - uid: 3329 + - uid: 3344 components: - pos: 17.5,-4.5 parent: 2 type: Transform - - uid: 3330 + - uid: 3345 components: - pos: 17.5,-5.5 parent: 2 type: Transform - - uid: 3331 + - uid: 3346 components: - pos: 18.5,4.5 parent: 2 type: Transform - - uid: 3332 + - uid: 3347 components: - pos: 16.5,-2.5 parent: 2 type: Transform - - uid: 3333 + - uid: 3348 components: - pos: 10.5,8.5 parent: 2 type: Transform - - uid: 3334 + - uid: 3349 components: - pos: 24.5,24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3335 + - uid: 3350 components: - pos: 24.5,23.5 parent: 2 type: Transform - - uid: 3336 + - uid: 3351 components: - pos: 24.5,22.5 parent: 2 type: Transform - - uid: 3337 + - uid: 3352 components: - pos: 23.5,22.5 parent: 2 type: Transform - - uid: 3338 + - uid: 3353 components: - pos: 22.5,22.5 parent: 2 type: Transform - - uid: 3339 + - uid: 3354 components: - pos: 22.5,21.5 parent: 2 type: Transform - - uid: 3340 + - uid: 3355 components: - pos: 22.5,20.5 parent: 2 type: Transform - - uid: 3341 + - uid: 3356 components: - pos: 22.5,19.5 parent: 2 type: Transform - - uid: 3342 + - uid: 3357 components: - pos: 22.5,18.5 parent: 2 type: Transform - - uid: 3343 + - uid: 3358 components: - pos: 22.5,17.5 parent: 2 type: Transform - - uid: 3344 + - uid: 3359 components: - pos: 21.5,17.5 parent: 2 type: Transform - - uid: 3345 + - uid: 3360 components: - pos: 20.5,17.5 parent: 2 type: Transform - - uid: 3346 + - uid: 3361 components: - pos: 19.5,17.5 parent: 2 type: Transform - - uid: 3347 + - uid: 3362 components: - pos: 18.5,17.5 parent: 2 type: Transform - - uid: 3348 + - uid: 3363 components: - pos: 17.5,17.5 parent: 2 type: Transform - - uid: 3349 + - uid: 3364 components: - pos: 16.5,17.5 parent: 2 type: Transform - - uid: 3350 + - uid: 3365 components: - pos: 15.5,17.5 parent: 2 type: Transform - - uid: 3351 + - uid: 3366 components: - pos: 14.5,17.5 parent: 2 type: Transform - - uid: 3352 + - uid: 3367 components: - pos: 13.5,17.5 parent: 2 type: Transform - - uid: 3353 + - uid: 3368 components: - pos: 12.5,17.5 parent: 2 type: Transform - - uid: 3354 + - uid: 3369 components: - pos: 11.5,17.5 parent: 2 type: Transform - - uid: 3355 + - uid: 3370 components: - pos: 10.5,17.5 parent: 2 type: Transform - - uid: 3356 + - uid: 3371 components: - pos: 9.5,17.5 parent: 2 type: Transform - - uid: 3357 + - uid: 3372 components: - pos: 8.5,17.5 parent: 2 type: Transform - - uid: 3358 + - uid: 3373 components: - pos: 7.5,17.5 parent: 2 type: Transform - - uid: 3359 + - uid: 3374 components: - pos: 11.5,18.5 parent: 2 type: Transform - - uid: 3360 + - uid: 3375 components: - pos: 11.5,19.5 parent: 2 type: Transform - - uid: 3361 + - uid: 3376 components: - pos: 11.5,20.5 parent: 2 type: Transform - - uid: 3362 + - uid: 3377 components: - pos: 11.5,21.5 parent: 2 type: Transform - - uid: 3363 + - uid: 3378 components: - pos: 16.5,18.5 parent: 2 type: Transform - - uid: 3364 + - uid: 3379 components: - pos: 16.5,19.5 parent: 2 type: Transform - - uid: 3365 + - uid: 3380 components: - pos: 16.5,20.5 parent: 2 type: Transform - - uid: 3366 + - uid: 3381 components: - pos: 16.5,21.5 parent: 2 type: Transform - - uid: 3367 + - uid: 3382 components: - pos: 17.5,21.5 parent: 2 type: Transform - - uid: 3368 + - uid: 3383 components: - pos: 15.5,21.5 parent: 2 type: Transform - - uid: 3369 + - uid: 3384 components: - pos: 6.5,17.5 parent: 2 type: Transform - - uid: 3370 + - uid: 3385 components: - pos: 6.5,18.5 parent: 2 type: Transform - - uid: 3371 + - uid: 3386 components: - pos: 6.5,19.5 parent: 2 type: Transform - - uid: 3372 + - uid: 3387 components: - pos: 6.5,20.5 parent: 2 type: Transform - - uid: 3373 + - uid: 3388 components: - pos: 6.5,21.5 parent: 2 type: Transform - - uid: 3374 + - uid: 3389 components: - pos: 7.5,21.5 parent: 2 type: Transform - - uid: 3375 + - uid: 3390 components: - pos: 5.5,21.5 parent: 2 type: Transform - - uid: 3376 + - uid: 3391 components: - pos: 5.5,17.5 parent: 2 type: Transform - - uid: 3377 + - uid: 3392 components: - pos: 4.5,17.5 parent: 2 type: Transform - - uid: 3378 + - uid: 3393 components: - pos: 2.5,17.5 parent: 2 type: Transform - - uid: 3379 + - uid: 3394 components: - pos: 3.5,17.5 parent: 2 type: Transform - - uid: 3380 + - uid: 3395 components: - pos: 1.5,17.5 parent: 2 type: Transform - - uid: 3381 + - uid: 3396 components: - pos: 0.5,17.5 parent: 2 type: Transform - - uid: 3382 + - uid: 3397 components: - pos: 0.5,18.5 parent: 2 type: Transform - - uid: 3383 + - uid: 3398 components: - pos: -0.5,18.5 parent: 2 type: Transform - - uid: 3384 + - uid: 3399 components: - pos: -0.5,19.5 parent: 2 type: Transform - - uid: 3385 + - uid: 3400 components: - pos: -0.5,20.5 parent: 2 type: Transform - - uid: 3386 + - uid: 3401 components: - pos: 0.5,20.5 parent: 2 type: Transform - - uid: 3387 + - uid: 3402 components: - pos: 1.5,20.5 parent: 2 type: Transform - - uid: 3388 + - uid: 3403 components: - pos: 24.5,21.5 parent: 2 type: Transform - - uid: 3389 + - uid: 3404 components: - pos: 25.5,21.5 parent: 2 type: Transform - - uid: 3390 + - uid: 3405 components: - pos: 26.5,21.5 parent: 2 type: Transform - - uid: 3391 + - uid: 3406 components: - pos: 27.5,21.5 parent: 2 type: Transform - - uid: 3392 + - uid: 3407 components: - pos: 28.5,21.5 parent: 2 type: Transform - - uid: 3393 + - uid: 3408 components: - pos: 23.5,17.5 parent: 2 type: Transform - - uid: 3394 + - uid: 3409 components: - pos: 24.5,17.5 parent: 2 type: Transform - - uid: 3395 + - uid: 3410 components: - pos: 25.5,17.5 parent: 2 type: Transform - - uid: 3396 + - uid: 3411 components: - pos: 25.5,16.5 parent: 2 type: Transform - - uid: 3397 + - uid: 3412 components: - pos: 26.5,17.5 parent: 2 type: Transform - - uid: 3398 + - uid: 3413 components: - pos: 27.5,17.5 parent: 2 type: Transform - - uid: 3399 + - uid: 3414 components: - pos: 28.5,17.5 parent: 2 type: Transform - - uid: 3400 + - uid: 3415 components: - pos: 29.5,17.5 parent: 2 type: Transform - - uid: 3401 + - uid: 3416 components: - pos: 40.5,7.5 parent: 2 type: Transform - - uid: 3402 + - uid: 3417 components: - pos: 29.5,15.5 parent: 2 type: Transform - - uid: 3403 + - uid: 3418 components: - pos: 29.5,21.5 parent: 2 type: Transform - - uid: 3404 + - uid: 3419 components: - pos: 30.5,21.5 parent: 2 type: Transform - - uid: 3405 + - uid: 3420 components: - pos: 31.5,21.5 parent: 2 type: Transform - - uid: 3406 + - uid: 3421 components: - pos: 32.5,21.5 parent: 2 type: Transform - - uid: 3407 + - uid: 3422 components: - pos: 32.5,22.5 parent: 2 type: Transform - - uid: 3408 + - uid: 3423 components: - pos: 32.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3409 + - uid: 3424 components: - pos: 29.5,22.5 parent: 2 type: Transform - - uid: 3410 + - uid: 3425 components: - pos: 29.5,23.5 parent: 2 type: Transform - - uid: 3411 + - uid: 3426 components: - pos: 29.5,24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3412 + - uid: 3427 components: - pos: 29.5,25.5 parent: 2 type: Transform - - uid: 3413 + - uid: 3428 components: - pos: 29.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3414 + - uid: 3429 components: - pos: 29.5,27.5 parent: 2 type: Transform - - uid: 3415 + - uid: 3430 components: - pos: 29.5,28.5 parent: 2 type: Transform - - uid: 3416 + - uid: 3431 components: - pos: 29.5,29.5 parent: 2 type: Transform - - uid: 3417 + - uid: 3432 components: - pos: 29.5,30.5 parent: 2 type: Transform - - uid: 3418 + - uid: 3433 components: - pos: 29.5,31.5 parent: 2 type: Transform - - uid: 3419 + - uid: 3434 components: - pos: 30.5,31.5 parent: 2 type: Transform - - uid: 3420 + - uid: 3435 components: - pos: 32.5,31.5 parent: 2 type: Transform - - uid: 3421 + - uid: 3436 components: - pos: 31.5,31.5 parent: 2 type: Transform - - uid: 3422 + - uid: 3437 components: - pos: 28.5,31.5 parent: 2 type: Transform - - uid: 3423 + - uid: 3438 components: - pos: 27.5,31.5 parent: 2 type: Transform - - uid: 3424 + - uid: 3439 components: - pos: 27.5,30.5 parent: 2 type: Transform - - uid: 3425 + - uid: 3440 components: - pos: 27.5,29.5 parent: 2 type: Transform - - uid: 3426 + - uid: 3441 components: - pos: 32.5,30.5 parent: 2 type: Transform - - uid: 3427 + - uid: 3442 components: - pos: 32.5,29.5 parent: 2 type: Transform - - uid: 3428 + - uid: 3443 components: - pos: 27.5,28.5 parent: 2 type: Transform - - uid: 3429 + - uid: 3444 components: - pos: 32.5,28.5 parent: 2 type: Transform - - uid: 3430 + - uid: 3445 components: - pos: -8.5,-41.5 parent: 2 type: Transform - - uid: 3431 + - uid: 3446 components: - pos: -8.5,-40.5 parent: 2 type: Transform - - uid: 3432 + - uid: 3447 components: - pos: -8.5,-39.5 parent: 2 type: Transform - - uid: 3433 + - uid: 3448 components: - pos: -8.5,-38.5 parent: 2 type: Transform - - uid: 3434 + - uid: 3449 components: - pos: -8.5,-37.5 parent: 2 type: Transform - - uid: 3435 + - uid: 3450 components: - pos: -8.5,-36.5 parent: 2 type: Transform - - uid: 3436 + - uid: 3451 components: - pos: -9.5,-36.5 parent: 2 type: Transform - - uid: 3437 + - uid: 3452 components: - pos: -10.5,-36.5 parent: 2 type: Transform - - uid: 3438 + - uid: 3453 components: - pos: -11.5,-36.5 parent: 2 type: Transform - - uid: 3439 + - uid: 3454 components: - pos: -12.5,-36.5 parent: 2 type: Transform - - uid: 3440 + - uid: 3455 components: - pos: -12.5,-37.5 parent: 2 type: Transform - - uid: 3441 + - uid: 3456 components: - pos: -12.5,-38.5 parent: 2 type: Transform - - uid: 3442 + - uid: 3457 components: - pos: -13.5,-38.5 parent: 2 type: Transform - - uid: 3443 + - uid: 3458 components: - pos: -14.5,-38.5 parent: 2 type: Transform - - uid: 3444 + - uid: 3459 components: - pos: -15.5,-38.5 parent: 2 type: Transform - - uid: 3445 + - uid: 3460 components: - pos: -11.5,-35.5 parent: 2 type: Transform - - uid: 3446 + - uid: 3461 components: - pos: -11.5,-34.5 parent: 2 type: Transform - - uid: 3447 + - uid: 3462 components: - pos: -11.5,-33.5 parent: 2 type: Transform - - uid: 3448 + - uid: 3463 components: - pos: -10.5,-33.5 parent: 2 type: Transform - - uid: 3449 + - uid: 3464 components: - pos: -9.5,-33.5 parent: 2 type: Transform - - uid: 3450 + - uid: 3465 components: - pos: -12.5,-39.5 parent: 2 type: Transform - - uid: 3451 + - uid: 3466 components: - pos: -11.5,-39.5 parent: 2 type: Transform - - uid: 3452 + - uid: 3467 components: - pos: 21.5,-47.5 parent: 2 type: Transform - - uid: 3453 + - uid: 3468 components: - pos: -55.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3454 + - uid: 3469 components: - pos: -54.5,-27.5 parent: 2 type: Transform - - uid: 3455 + - uid: 3470 components: - pos: -53.5,-27.5 parent: 2 type: Transform - - uid: 3456 + - uid: 3471 components: - pos: 17.5,-49.5 parent: 2 type: Transform - - uid: 3457 + - uid: 3472 components: - pos: 18.5,-51.5 parent: 2 type: Transform - - uid: 3458 + - uid: 3473 components: - pos: 21.5,-48.5 parent: 2 type: Transform - - uid: 3459 + - uid: 3474 components: - pos: 21.5,-49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3460 + - uid: 3475 components: - pos: 20.5,-50.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3461 + - uid: 3476 components: - pos: 27.5,3.5 parent: 2 type: Transform - - uid: 3462 + - uid: 3477 components: - pos: 18.5,-50.5 parent: 2 type: Transform - - uid: 3463 + - uid: 3478 components: - pos: 17.5,-50.5 parent: 2 type: Transform - - uid: 3464 + - uid: 3479 components: - pos: -13.5,42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3465 + - uid: 3480 components: - pos: -7.5,-8.5 parent: 2 type: Transform - - uid: 3466 + - uid: 3481 components: - pos: 34.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3467 + - uid: 3482 components: - pos: 35.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3468 + - uid: 3483 components: - pos: 46.5,5.5 parent: 2 type: Transform - - uid: 3469 + - uid: 3484 components: - pos: 44.5,5.5 parent: 2 type: Transform - - uid: 3470 + - uid: 3485 components: - pos: 45.5,5.5 parent: 2 type: Transform - - uid: 3471 + - uid: 3486 components: - pos: 59.5,-5.5 parent: 2 type: Transform - - uid: 3472 + - uid: 3487 components: - pos: 61.5,-5.5 parent: 2 type: Transform - - uid: 3473 + - uid: 3488 components: - pos: 58.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3474 + - uid: 3489 components: - pos: 58.5,12.5 parent: 2 type: Transform - - uid: 3475 + - uid: 3490 components: - pos: 58.5,13.5 parent: 2 type: Transform - - uid: 3476 + - uid: 3491 components: - pos: 58.5,14.5 parent: 2 type: Transform - - uid: 3477 + - uid: 3492 components: - pos: 58.5,15.5 parent: 2 type: Transform - - uid: 3478 + - uid: 3493 components: - pos: 58.5,16.5 parent: 2 type: Transform - - uid: 3479 + - uid: 3494 components: - pos: 57.5,16.5 parent: 2 type: Transform - - uid: 3480 + - uid: 3495 components: - pos: 57.5,17.5 parent: 2 type: Transform - - uid: 3481 + - uid: 3496 components: - pos: 57.5,18.5 parent: 2 type: Transform - - uid: 3482 + - uid: 3497 components: - pos: 56.5,18.5 parent: 2 type: Transform - - uid: 3483 + - uid: 3498 components: - pos: 56.5,19.5 parent: 2 type: Transform - - uid: 3484 + - uid: 3499 components: - pos: 56.5,20.5 parent: 2 type: Transform - - uid: 3485 + - uid: 3500 components: - pos: 55.5,20.5 parent: 2 type: Transform - - uid: 3486 + - uid: 3501 components: - pos: 54.5,20.5 parent: 2 type: Transform - - uid: 3487 + - uid: 3502 components: - pos: 56.5,21.5 parent: 2 type: Transform - - uid: 3488 + - uid: 3503 components: - pos: 58.5,21.5 parent: 2 type: Transform - - uid: 3489 + - uid: 3504 components: - pos: 57.5,21.5 parent: 2 type: Transform - - uid: 3490 + - uid: 3505 components: - pos: 58.5,21.5 parent: 2 type: Transform - - uid: 3491 + - uid: 3506 components: - pos: 53.5,20.5 parent: 2 type: Transform - - uid: 3492 + - uid: 3507 components: - pos: 52.5,20.5 parent: 2 type: Transform - - uid: 3493 + - uid: 3508 components: - pos: 51.5,20.5 parent: 2 type: Transform - - uid: 3494 + - uid: 3509 components: - pos: 50.5,20.5 parent: 2 type: Transform - - uid: 3495 + - uid: 3510 components: - pos: 49.5,20.5 parent: 2 type: Transform - - uid: 3496 + - uid: 3511 components: - pos: 48.5,20.5 parent: 2 type: Transform - - uid: 3497 + - uid: 3512 components: - pos: 47.5,20.5 parent: 2 type: Transform - - uid: 3498 + - uid: 3513 components: - pos: 46.5,20.5 parent: 2 type: Transform - - uid: 3499 + - uid: 3514 components: - pos: 46.5,21.5 parent: 2 type: Transform - - uid: 3500 + - uid: 3515 components: - pos: 49.5,21.5 parent: 2 type: Transform - - uid: 3501 + - uid: 3516 components: - pos: 52.5,21.5 parent: 2 type: Transform - - uid: 3502 + - uid: 3517 components: - pos: 54.5,21.5 parent: 2 type: Transform - - uid: 3503 + - uid: 3518 components: - pos: 59.5,18.5 parent: 2 type: Transform - - uid: 3504 + - uid: 3519 components: - pos: 58.5,18.5 parent: 2 type: Transform - - uid: 3505 + - uid: 3520 components: - pos: 59.5,15.5 parent: 2 type: Transform - - uid: 3506 + - uid: 3521 components: - pos: 60.5,13.5 parent: 2 type: Transform - - uid: 3507 + - uid: 3522 components: - pos: 59.5,13.5 parent: 2 type: Transform - - uid: 3508 + - uid: 3523 components: - pos: 61.5,13.5 parent: 2 type: Transform - - uid: 3509 + - uid: 3524 components: - pos: 57.5,11.5 parent: 2 type: Transform - - uid: 3510 + - uid: 3525 components: - pos: 56.5,11.5 parent: 2 type: Transform - - uid: 3511 + - uid: 3526 components: - pos: 56.5,10.5 parent: 2 type: Transform - - uid: 3512 + - uid: 3527 components: - pos: 56.5,9.5 parent: 2 type: Transform - - uid: 3513 + - uid: 3528 components: - pos: 56.5,8.5 parent: 2 type: Transform - - uid: 3514 + - uid: 3529 components: - pos: 56.5,7.5 parent: 2 type: Transform - - uid: 3515 + - uid: 3530 components: - pos: 56.5,6.5 parent: 2 type: Transform - - uid: 3516 + - uid: 3531 components: - pos: 55.5,6.5 parent: 2 type: Transform - - uid: 3517 + - uid: 3532 components: - pos: 54.5,6.5 parent: 2 type: Transform - - uid: 3518 + - uid: 3533 components: - pos: 53.5,6.5 parent: 2 type: Transform - - uid: 3519 + - uid: 3534 components: - pos: 52.5,6.5 parent: 2 type: Transform - - uid: 3520 + - uid: 3535 components: - pos: 51.5,6.5 parent: 2 type: Transform - - uid: 3521 + - uid: 3536 components: - pos: 50.5,6.5 parent: 2 type: Transform - - uid: 3522 + - uid: 3537 components: - pos: 49.5,6.5 parent: 2 type: Transform - - uid: 3523 + - uid: 3538 components: - pos: 48.5,6.5 parent: 2 type: Transform - - uid: 3524 + - uid: 3539 components: - pos: 47.5,6.5 parent: 2 type: Transform - - uid: 3525 + - uid: 3540 components: - pos: 47.5,7.5 parent: 2 type: Transform - - uid: 3526 + - uid: 3541 components: - pos: 47.5,8.5 parent: 2 type: Transform - - uid: 3527 + - uid: 3542 components: - pos: 48.5,10.5 parent: 2 type: Transform - - uid: 3528 + - uid: 3543 components: - pos: 47.5,10.5 parent: 2 type: Transform - - uid: 3529 + - uid: 3544 components: - pos: 47.5,11.5 parent: 2 type: Transform - - uid: 3530 + - uid: 3545 components: - pos: 47.5,12.5 parent: 2 type: Transform - - uid: 3531 + - uid: 3546 components: - pos: 47.5,13.5 parent: 2 type: Transform - - uid: 3532 + - uid: 3547 components: - pos: 47.5,14.5 parent: 2 type: Transform - - uid: 3533 + - uid: 3548 components: - pos: 47.5,15.5 parent: 2 type: Transform - - uid: 3534 + - uid: 3549 components: - pos: 48.5,13.5 parent: 2 type: Transform - - uid: 3535 + - uid: 3550 components: - pos: 49.5,13.5 parent: 2 type: Transform - - uid: 3536 + - uid: 3551 components: - pos: 49.5,14.5 parent: 2 type: Transform - - uid: 3537 + - uid: 3552 components: - pos: 49.5,15.5 parent: 2 type: Transform - - uid: 3538 + - uid: 3553 components: - pos: 49.5,16.5 parent: 2 type: Transform - - uid: 3539 + - uid: 3554 components: - pos: 50.5,16.5 parent: 2 type: Transform - - uid: 3540 + - uid: 3555 components: - pos: 51.5,16.5 parent: 2 type: Transform - - uid: 3541 + - uid: 3556 components: - pos: 52.5,16.5 parent: 2 type: Transform - - uid: 3542 + - uid: 3557 components: - pos: 53.5,16.5 parent: 2 type: Transform - - uid: 3543 + - uid: 3558 components: - pos: 54.5,16.5 parent: 2 type: Transform - - uid: 3544 + - uid: 3559 components: - pos: 55.5,16.5 parent: 2 type: Transform - - uid: 3545 + - uid: 3560 components: - pos: 50.5,17.5 parent: 2 type: Transform - - uid: 3546 + - uid: 3561 components: - pos: 50.5,18.5 parent: 2 type: Transform - - uid: 3547 + - uid: 3562 components: - pos: 49.5,12.5 parent: 2 type: Transform - - uid: 3548 + - uid: 3563 components: - pos: 50.5,12.5 parent: 2 type: Transform - - uid: 3549 + - uid: 3564 components: - pos: 50.5,11.5 parent: 2 type: Transform - - uid: 3550 + - uid: 3565 components: - pos: 50.5,10.5 parent: 2 type: Transform - - uid: 3551 + - uid: 3566 components: - pos: 50.5,9.5 parent: 2 type: Transform - - uid: 3552 + - uid: 3567 components: - pos: 51.5,9.5 parent: 2 type: Transform - - uid: 3553 + - uid: 3568 components: - pos: 52.5,9.5 parent: 2 type: Transform - - uid: 3554 + - uid: 3569 components: - pos: 53.5,9.5 parent: 2 type: Transform - - uid: 3555 + - uid: 3570 components: - pos: 53.5,10.5 parent: 2 type: Transform - - uid: 3556 + - uid: 3571 components: - pos: 53.5,11.5 parent: 2 type: Transform - - uid: 3557 + - uid: 3572 components: - pos: 53.5,12.5 parent: 2 type: Transform - - uid: 3558 + - uid: 3573 components: - pos: 59.5,11.5 parent: 2 type: Transform - - uid: 3559 + - uid: 3574 components: - pos: 59.5,10.5 parent: 2 type: Transform - - uid: 3560 + - uid: 3575 components: - pos: 59.5,9.5 parent: 2 type: Transform - - uid: 3561 + - uid: 3576 components: - pos: 60.5,9.5 parent: 2 type: Transform - - uid: 3562 + - uid: 3577 components: - pos: 60.5,8.5 parent: 2 type: Transform - - uid: 3563 + - uid: 3578 components: - pos: 60.5,7.5 parent: 2 type: Transform - - uid: 3564 + - uid: 3579 components: - pos: 60.5,6.5 parent: 2 type: Transform - - uid: 3565 + - uid: 3580 components: - pos: 60.5,5.5 parent: 2 type: Transform - - uid: 3566 + - uid: 3581 components: - pos: 60.5,4.5 parent: 2 type: Transform - - uid: 3567 + - uid: 3582 components: - pos: 61.5,4.5 parent: 2 type: Transform - - uid: 3568 + - uid: 3583 components: - pos: 62.5,4.5 parent: 2 type: Transform - - uid: 3569 + - uid: 3584 components: - pos: 62.5,5.5 parent: 2 type: Transform - - uid: 3570 + - uid: 3585 components: - pos: 60.5,-5.5 parent: 2 type: Transform - - uid: 3571 + - uid: 3586 components: - pos: 45.5,20.5 parent: 2 type: Transform - - uid: 3572 + - uid: 3587 components: - pos: 44.5,20.5 parent: 2 type: Transform - - uid: 3573 + - uid: 3588 components: - pos: 43.5,20.5 parent: 2 type: Transform - - uid: 3574 + - uid: 3589 components: - pos: 42.5,20.5 parent: 2 type: Transform - - uid: 3575 + - uid: 3590 components: - pos: 41.5,20.5 parent: 2 type: Transform - - uid: 3576 + - uid: 3591 components: - pos: 40.5,20.5 parent: 2 type: Transform - - uid: 3577 + - uid: 3592 components: - pos: 39.5,20.5 parent: 2 type: Transform - - uid: 3578 + - uid: 3593 components: - pos: 38.5,20.5 parent: 2 type: Transform - - uid: 3579 + - uid: 3594 components: - pos: 37.5,20.5 parent: 2 type: Transform - - uid: 3580 + - uid: 3595 components: - pos: 36.5,20.5 parent: 2 type: Transform - - uid: 3581 + - uid: 3596 components: - pos: 35.5,20.5 parent: 2 type: Transform - - uid: 3582 + - uid: 3597 components: - pos: 35.5,19.5 parent: 2 type: Transform - - uid: 3583 + - uid: 3598 components: - pos: 46.5,11.5 parent: 2 type: Transform - - uid: 3584 + - uid: 3599 components: - pos: 45.5,11.5 parent: 2 type: Transform - - uid: 3585 + - uid: 3600 components: - pos: 43.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3586 + - uid: 3601 components: - pos: 42.5,11.5 parent: 2 type: Transform - - uid: 3587 + - uid: 3602 components: - pos: 41.5,11.5 parent: 2 type: Transform - - uid: 3588 + - uid: 3603 components: - pos: 40.5,11.5 parent: 2 type: Transform - - uid: 3589 + - uid: 3604 components: - pos: 41.5,10.5 parent: 2 type: Transform - - uid: 3590 + - uid: 3605 components: - pos: 41.5,9.5 parent: 2 type: Transform - - uid: 3591 + - uid: 3606 components: - pos: 41.5,8.5 parent: 2 type: Transform - - uid: 3592 + - uid: 3607 components: - pos: 41.5,7.5 parent: 2 type: Transform - - uid: 3593 + - uid: 3608 components: - pos: 41.5,6.5 parent: 2 type: Transform - - uid: 3594 + - uid: 3609 components: - pos: 41.5,5.5 parent: 2 type: Transform - - uid: 3595 + - uid: 3610 components: - pos: 41.5,4.5 parent: 2 type: Transform - - uid: 3596 + - uid: 3611 components: - pos: 40.5,12.5 parent: 2 type: Transform - - uid: 3597 + - uid: 3612 components: - pos: 40.5,13.5 parent: 2 type: Transform - - uid: 3598 + - uid: 3613 components: - pos: 40.5,14.5 parent: 2 type: Transform - - uid: 3599 + - uid: 3614 components: - pos: 39.5,14.5 parent: 2 type: Transform - - uid: 3600 + - uid: 3615 components: - pos: 38.5,14.5 parent: 2 type: Transform - - uid: 3601 + - uid: 3616 components: - pos: 37.5,14.5 parent: 2 type: Transform - - uid: 3602 + - uid: 3617 components: - pos: 36.5,14.5 parent: 2 type: Transform - - uid: 3603 + - uid: 3618 components: - pos: 35.5,14.5 parent: 2 type: Transform - - uid: 3604 + - uid: 3619 components: - pos: 34.5,14.5 parent: 2 type: Transform - - uid: 3605 + - uid: 3620 components: - pos: 33.5,14.5 parent: 2 type: Transform - - uid: 3606 + - uid: 3621 components: - pos: 32.5,14.5 parent: 2 type: Transform - - uid: 3607 + - uid: 3622 components: - pos: 31.5,14.5 parent: 2 type: Transform - - uid: 3608 + - uid: 3623 components: - pos: 35.5,15.5 parent: 2 type: Transform - - uid: 3609 + - uid: 3624 components: - pos: 35.5,16.5 parent: 2 type: Transform - - uid: 3610 + - uid: 3625 components: - pos: 32.5,13.5 parent: 2 type: Transform - - uid: 3611 + - uid: 3626 components: - pos: 32.5,12.5 parent: 2 type: Transform - - uid: 3612 + - uid: 3627 components: - pos: 32.5,11.5 parent: 2 type: Transform - - uid: 3613 + - uid: 3628 components: - pos: 30.5,14.5 parent: 2 type: Transform - - uid: 3614 + - uid: 3629 components: - pos: 29.5,14.5 parent: 2 type: Transform - - uid: 3615 + - uid: 3630 components: - pos: 29.5,13.5 parent: 2 type: Transform - - uid: 3616 + - uid: 3631 components: - pos: 29.5,12.5 parent: 2 type: Transform - - uid: 3617 + - uid: 3632 components: - pos: 29.5,11.5 parent: 2 type: Transform - - uid: 3618 + - uid: 3633 components: - pos: 35.5,13.5 parent: 2 type: Transform - - uid: 3619 + - uid: 3634 components: - pos: 35.5,12.5 parent: 2 type: Transform - - uid: 3620 + - uid: 3635 components: - pos: 35.5,11.5 parent: 2 type: Transform - - uid: 3621 + - uid: 3636 components: - pos: 38.5,7.5 parent: 2 type: Transform - - uid: 3622 + - uid: 3637 components: - pos: 37.5,7.5 parent: 2 type: Transform - - uid: 3623 + - uid: 3638 components: - pos: 40.5,4.5 parent: 2 type: Transform - - uid: 3624 + - uid: 3639 components: - pos: 39.5,4.5 parent: 2 type: Transform - - uid: 3625 + - uid: 3640 components: - pos: 37.5,4.5 parent: 2 type: Transform - - uid: 3626 + - uid: 3641 components: - pos: 38.5,4.5 parent: 2 type: Transform - - uid: 3627 + - uid: 3642 components: - pos: -12.5,42.5 parent: 2 type: Transform - - uid: 3628 + - uid: 3643 components: - pos: 51.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3629 + - uid: 3644 components: - pos: 55.5,13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3630 + - uid: 3645 components: - pos: 55.5,14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3631 + - uid: 3646 components: - pos: 54.5,14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3632 + - uid: 3647 components: - pos: 53.5,14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3633 + - uid: 3648 components: - pos: 52.5,14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3634 + - uid: 3649 components: - pos: 51.5,14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3635 + - uid: 3650 components: - pos: 51.5,13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3636 + - uid: 3651 components: - pos: 51.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3637 + - uid: 3652 components: - pos: 49.5,10.5 parent: 2 type: Transform - - uid: 3638 + - uid: 3653 components: - pos: 45.5,7.5 parent: 2 type: Transform - - uid: 3639 + - uid: 3654 components: - pos: 42.5,21.5 parent: 2 type: Transform - - uid: 3640 + - uid: 3655 components: - pos: 42.5,22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3641 + - uid: 3656 components: - pos: 49.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3642 + - uid: 3657 components: - pos: 49.5,2.5 parent: 2 type: Transform - - uid: 3643 + - uid: 3658 components: - pos: 48.5,2.5 parent: 2 type: Transform - - uid: 3644 + - uid: 3659 components: - pos: 48.5,1.5 parent: 2 type: Transform - - uid: 3645 + - uid: 3660 components: - pos: 47.5,1.5 parent: 2 type: Transform - - uid: 3646 + - uid: 3661 components: - pos: 46.5,1.5 parent: 2 type: Transform - - uid: 3647 + - uid: 3662 components: - pos: 45.5,1.5 parent: 2 type: Transform - - uid: 3648 + - uid: 3663 components: - pos: 44.5,1.5 parent: 2 type: Transform - - uid: 3649 + - uid: 3664 components: - pos: 43.5,1.5 parent: 2 type: Transform - - uid: 3650 + - uid: 3665 components: - pos: 42.5,1.5 parent: 2 type: Transform - - uid: 3651 + - uid: 3666 components: - pos: 42.5,0.5 parent: 2 type: Transform - - uid: 3652 + - uid: 3667 components: - pos: 42.5,-0.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3653 + - uid: 3668 components: - pos: 42.5,-1.5 parent: 2 type: Transform - - uid: 3654 + - uid: 3669 components: - pos: 42.5,-2.5 parent: 2 type: Transform - - uid: 3655 + - uid: 3670 components: - pos: 42.5,-3.5 parent: 2 type: Transform - - uid: 3656 + - uid: 3671 components: - pos: 41.5,-1.5 parent: 2 type: Transform - - uid: 3657 + - uid: 3672 components: - pos: 40.5,-1.5 parent: 2 type: Transform - - uid: 3658 + - uid: 3673 components: - pos: 39.5,-1.5 parent: 2 type: Transform - - uid: 3659 + - uid: 3674 components: - pos: 38.5,-1.5 parent: 2 type: Transform - - uid: 3660 + - uid: 3675 components: - pos: 37.5,-1.5 parent: 2 type: Transform - - uid: 3661 + - uid: 3676 components: - pos: 37.5,-2.5 parent: 2 type: Transform - - uid: 3662 + - uid: 3677 components: - pos: 37.5,-3.5 parent: 2 type: Transform - - uid: 3663 + - uid: 3678 components: - pos: 43.5,-1.5 parent: 2 type: Transform - - uid: 3664 + - uid: 3679 components: - pos: 44.5,-1.5 parent: 2 type: Transform - - uid: 3665 + - uid: 3680 components: - pos: 44.5,-2.5 parent: 2 type: Transform - - uid: 3666 + - uid: 3681 components: - pos: 38.5,-3.5 parent: 2 type: Transform - - uid: 3667 + - uid: 3682 components: - pos: 38.5,-4.5 parent: 2 type: Transform - - uid: 3668 + - uid: 3683 components: - pos: 38.5,-5.5 parent: 2 type: Transform - - uid: 3669 + - uid: 3684 components: - pos: 38.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3670 + - uid: 3685 components: - pos: 38.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3671 + - uid: 3686 components: - pos: 38.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3672 + - uid: 3687 components: - pos: 39.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3673 + - uid: 3688 components: - pos: 46.5,0.5 parent: 2 type: Transform - - uid: 3674 + - uid: 3689 components: - pos: 46.5,-0.5 parent: 2 type: Transform - - uid: 3675 + - uid: 3690 components: - pos: 46.5,-1.5 parent: 2 type: Transform - - uid: 3676 + - uid: 3691 components: - pos: 47.5,-1.5 parent: 2 type: Transform - - uid: 3677 + - uid: 3692 components: - pos: 47.5,-2.5 parent: 2 type: Transform - - uid: 3678 + - uid: 3693 components: - pos: 41.5,1.5 parent: 2 type: Transform - - uid: 3679 + - uid: 3694 components: - pos: 40.5,1.5 parent: 2 type: Transform - - uid: 3680 + - uid: 3695 components: - pos: 39.5,1.5 parent: 2 type: Transform - - uid: 3681 + - uid: 3696 components: - pos: 38.5,1.5 parent: 2 type: Transform - - uid: 3682 + - uid: 3697 components: - pos: 37.5,1.5 parent: 2 type: Transform - - uid: 3683 + - uid: 3698 components: - pos: 41.5,2.5 parent: 2 type: Transform - - uid: 3684 + - uid: 3699 components: - pos: 48.5,0.5 parent: 2 type: Transform - - uid: 3685 + - uid: 3700 components: - pos: 49.5,0.5 parent: 2 type: Transform - - uid: 3686 + - uid: 3701 components: - pos: 50.5,0.5 parent: 2 type: Transform - - uid: 3687 + - uid: 3702 components: - pos: 51.5,0.5 parent: 2 type: Transform - - uid: 3688 + - uid: 3703 components: - pos: 52.5,0.5 parent: 2 type: Transform - - uid: 3689 + - uid: 3704 components: - pos: 52.5,1.5 parent: 2 type: Transform - - uid: 3690 + - uid: 3705 components: - pos: 52.5,2.5 parent: 2 type: Transform - - uid: 3691 + - uid: 3706 components: - pos: 53.5,0.5 parent: 2 type: Transform - - uid: 3692 + - uid: 3707 components: - pos: 53.5,-0.5 parent: 2 type: Transform - - uid: 3693 + - uid: 3708 components: - pos: 54.5,-0.5 parent: 2 type: Transform - - uid: 3694 + - uid: 3709 components: - pos: 55.5,-0.5 parent: 2 type: Transform - - uid: 3695 + - uid: 3710 components: - pos: 56.5,-0.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3696 + - uid: 3711 components: - pos: 57.5,-0.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3697 + - uid: 3712 components: - pos: 57.5,0.5 parent: 2 type: Transform - - uid: 3698 + - uid: 3713 components: - pos: 57.5,1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3699 + - uid: 3714 components: - pos: 58.5,1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3700 + - uid: 3715 components: - pos: 59.5,1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3701 + - uid: 3716 components: - pos: 60.5,1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3702 + - uid: 3717 components: - pos: 61.5,1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3703 + - uid: 3718 components: - pos: 62.5,1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3704 + - uid: 3719 components: - pos: 56.5,-1.5 parent: 2 type: Transform - - uid: 3705 + - uid: 3720 components: - pos: 56.5,-2.5 parent: 2 type: Transform - - uid: 3706 + - uid: 3721 components: - pos: 56.5,-3.5 parent: 2 type: Transform - - uid: 3707 + - uid: 3722 components: - pos: 51.5,-0.5 parent: 2 type: Transform - - uid: 3708 + - uid: 3723 components: - pos: 51.5,-1.5 parent: 2 type: Transform - - uid: 3709 + - uid: 3724 components: - pos: 51.5,-2.5 parent: 2 type: Transform - - uid: 3710 + - uid: 3725 components: - pos: 52.5,-2.5 parent: 2 type: Transform - - uid: 3711 + - uid: 3726 components: - pos: 52.5,-3.5 parent: 2 type: Transform - - uid: 3712 + - uid: 3727 components: - pos: 52.5,-5.5 parent: 2 type: Transform - - uid: 3713 + - uid: 3728 components: - pos: 59.5,21.5 parent: 2 type: Transform - - uid: 3714 + - uid: 3729 components: - pos: 60.5,21.5 parent: 2 type: Transform - - uid: 3715 + - uid: 3730 components: - pos: 61.5,21.5 parent: 2 type: Transform - - uid: 3716 + - uid: 3731 components: - pos: 67.5,-11.5 parent: 2 type: Transform - - uid: 3717 + - uid: 3732 components: - pos: 68.5,-11.5 parent: 2 type: Transform - - uid: 3718 + - uid: 3733 components: - pos: 66.5,-13.5 parent: 2 type: Transform - - uid: 3719 + - uid: 3734 components: - pos: 68.5,-13.5 parent: 2 type: Transform - - uid: 3720 + - uid: 3735 components: - pos: 66.5,-11.5 parent: 2 type: Transform - - uid: 3721 + - uid: 3736 components: - pos: 58.5,-34.5 parent: 2 type: Transform - - uid: 3722 + - uid: 3737 components: - pos: 63.5,-43.5 parent: 2 type: Transform - - uid: 3723 + - uid: 3738 components: - pos: 45.5,-39.5 parent: 2 type: Transform - - uid: 3724 + - uid: 3739 components: - pos: 44.5,-39.5 parent: 2 type: Transform - - uid: 3725 + - uid: 3740 components: - pos: 54.5,-33.5 parent: 2 type: Transform - - uid: 3726 + - uid: 3741 components: - pos: 65.5,-45.5 parent: 2 type: Transform - - uid: 3727 + - uid: 3742 components: - pos: 65.5,-44.5 parent: 2 type: Transform - - uid: 3728 + - uid: 3743 components: - pos: 60.5,-11.5 parent: 2 type: Transform - - uid: 3729 + - uid: 3744 components: - pos: 59.5,-11.5 parent: 2 type: Transform - - uid: 3730 + - uid: 3745 components: - pos: 58.5,-11.5 parent: 2 type: Transform - - uid: 3731 + - uid: 3746 components: - pos: 57.5,-11.5 parent: 2 type: Transform - - uid: 3732 + - uid: 3747 components: - pos: 56.5,-11.5 parent: 2 type: Transform - - uid: 3733 + - uid: 3748 components: - pos: 55.5,-11.5 parent: 2 type: Transform - - uid: 3734 + - uid: 3749 components: - pos: 54.5,-11.5 parent: 2 type: Transform - - uid: 3735 + - uid: 3750 components: - pos: 53.5,-11.5 parent: 2 type: Transform - - uid: 3736 + - uid: 3751 components: - pos: 52.5,-11.5 parent: 2 type: Transform - - uid: 3737 + - uid: 3752 components: - pos: 53.5,-12.5 parent: 2 type: Transform - - uid: 3738 + - uid: 3753 components: - pos: 53.5,-13.5 parent: 2 type: Transform - - uid: 3739 + - uid: 3754 components: - pos: 51.5,-11.5 parent: 2 type: Transform - - uid: 3740 + - uid: 3755 components: - pos: 51.5,-10.5 parent: 2 type: Transform - - uid: 3741 + - uid: 3756 components: - pos: 51.5,-9.5 parent: 2 type: Transform - - uid: 3742 + - uid: 3757 components: - pos: 51.5,-8.5 parent: 2 type: Transform - - uid: 3743 + - uid: 3758 components: - pos: 50.5,-8.5 parent: 2 type: Transform - - uid: 3744 + - uid: 3759 components: - pos: 49.5,-8.5 parent: 2 type: Transform - - uid: 3745 + - uid: 3760 components: - pos: 48.5,-8.5 parent: 2 type: Transform - - uid: 3746 + - uid: 3761 components: - pos: 47.5,-8.5 parent: 2 type: Transform - - uid: 3747 + - uid: 3762 components: - pos: 46.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3748 + - uid: 3763 components: - pos: 47.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3749 + - uid: 3764 components: - pos: 46.5,-9.5 parent: 2 type: Transform - - uid: 3750 + - uid: 3765 components: - pos: 46.5,-10.5 parent: 2 type: Transform - - uid: 3751 + - uid: 3766 components: - pos: 46.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3752 + - uid: 3767 components: - pos: 45.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3753 + - uid: 3768 components: - pos: 44.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3754 + - uid: 3769 components: - pos: 43.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3755 + - uid: 3770 components: - pos: 42.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3756 + - uid: 3771 components: - pos: 41.5,-11.5 parent: 2 type: Transform - - uid: 3757 + - uid: 3772 components: - pos: 40.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3758 + - uid: 3773 components: - pos: 40.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3759 + - uid: 3774 components: - pos: 39.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3760 + - uid: 3775 components: - pos: 38.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3761 + - uid: 3776 components: - pos: 38.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3762 + - uid: 3777 components: - pos: 38.5,-14.5 parent: 2 type: Transform - - uid: 3763 + - uid: 3778 components: - pos: 38.5,-15.5 parent: 2 type: Transform - - uid: 3764 + - uid: 3779 components: - pos: 39.5,-14.5 parent: 2 type: Transform - - uid: 3765 + - uid: 3780 components: - pos: 40.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3766 + - uid: 3781 components: - pos: 41.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3767 + - uid: 3782 components: - pos: 42.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3768 + - uid: 3783 components: - pos: 43.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3769 + - uid: 3784 components: - pos: 42.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3770 + - uid: 3785 components: - pos: 38.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3771 + - uid: 3786 components: - pos: 38.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3772 + - uid: 3787 components: - pos: 37.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3773 + - uid: 3788 components: - pos: 36.5,-8.5 parent: 2 type: Transform - - uid: 3774 + - uid: 3789 components: - pos: 35.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3775 + - uid: 3790 components: - pos: 33.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3776 + - uid: 3791 components: - pos: 34.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3777 + - uid: 3792 components: - pos: 35.5,-9.5 parent: 2 type: Transform - - uid: 3778 + - uid: 3793 components: - pos: 44.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3779 + - uid: 3794 components: - pos: 58.5,-5.5 parent: 2 type: Transform - - uid: 3780 + - uid: 3795 components: - pos: 57.5,-5.5 parent: 2 type: Transform - - uid: 3781 + - uid: 3796 components: - pos: 56.5,-5.5 parent: 2 type: Transform - - uid: 3782 + - uid: 3797 components: - pos: 55.5,-5.5 parent: 2 type: Transform - - uid: 3783 + - uid: 3798 components: - pos: 54.5,-6.5 parent: 2 type: Transform - - uid: 3784 + - uid: 3799 components: - pos: 54.5,-5.5 parent: 2 type: Transform - - uid: 3785 + - uid: 3800 components: - pos: 59.5,-3.5 parent: 2 type: Transform - - uid: 3786 + - uid: 3801 components: - pos: 59.5,-2.5 parent: 2 type: Transform - - uid: 3787 + - uid: 3802 components: - pos: 60.5,-2.5 parent: 2 type: Transform - - uid: 3788 + - uid: 3803 components: - pos: 61.5,-2.5 parent: 2 type: Transform - - uid: 3789 + - uid: 3804 components: - pos: 62.5,-2.5 parent: 2 type: Transform - - uid: 3790 + - uid: 3805 components: - pos: 63.5,-2.5 parent: 2 type: Transform - - uid: 3791 + - uid: 3806 components: - pos: 62.5,-1.5 parent: 2 type: Transform - - uid: 3792 + - uid: 3807 components: - pos: 60.5,-1.5 parent: 2 type: Transform - - uid: 3793 + - uid: 3808 components: - pos: 63.5,-11.5 parent: 2 type: Transform - - uid: 3794 + - uid: 3809 components: - pos: 64.5,-11.5 parent: 2 type: Transform - - uid: 3795 + - uid: 3810 components: - pos: 62.5,-13.5 parent: 2 type: Transform - - uid: 3796 + - uid: 3811 components: - pos: 63.5,-13.5 parent: 2 type: Transform - - uid: 3797 + - uid: 3812 components: - pos: 64.5,-13.5 parent: 2 type: Transform - - uid: 3798 + - uid: 3813 components: - pos: 62.5,-14.5 parent: 2 type: Transform - - uid: 3799 + - uid: 3814 components: - pos: 62.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3800 + - uid: 3815 components: - pos: 62.5,-16.5 parent: 2 type: Transform - - uid: 3801 + - uid: 3816 components: - pos: 62.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3802 + - uid: 3817 components: - pos: 62.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3803 + - uid: 3818 components: - pos: 62.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3804 + - uid: 3819 components: - pos: 62.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3805 + - uid: 3820 components: - pos: 62.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3806 + - uid: 3821 components: - pos: 62.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3807 + - uid: 3822 components: - pos: 62.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3808 + - uid: 3823 components: - pos: 62.5,-24.5 parent: 2 type: Transform - - uid: 3809 + - uid: 3824 components: - pos: 62.5,-25.5 parent: 2 type: Transform - - uid: 3810 + - uid: 3825 components: - pos: 62.5,-26.5 parent: 2 type: Transform - - uid: 3811 + - uid: 3826 components: - pos: 62.5,-27.5 parent: 2 type: Transform - - uid: 3812 + - uid: 3827 components: - pos: 62.5,-28.5 parent: 2 type: Transform - - uid: 3813 + - uid: 3828 components: - pos: 64.5,-5.5 parent: 2 type: Transform - - uid: 3814 + - uid: 3829 components: - pos: 63.5,-3.5 parent: 2 type: Transform - - uid: 3815 + - uid: 3830 components: - pos: 64.5,-3.5 parent: 2 type: Transform - - uid: 3816 + - uid: 3831 components: - pos: 57.5,-12.5 parent: 2 type: Transform - - uid: 3817 + - uid: 3832 components: - pos: 57.5,-13.5 parent: 2 type: Transform - - uid: 3818 + - uid: 3833 components: - pos: 45.5,19.5 parent: 2 type: Transform - - uid: 3819 + - uid: 3834 components: - pos: 55.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3820 + - uid: 3835 components: - pos: 55.5,-42.5 parent: 2 type: Transform - - uid: 3821 + - uid: 3836 components: - pos: 55.5,-41.5 parent: 2 type: Transform - - uid: 3822 + - uid: 3837 components: - pos: 54.5,-41.5 parent: 2 type: Transform - - uid: 3823 + - uid: 3838 components: - pos: 53.5,-41.5 parent: 2 type: Transform - - uid: 3824 + - uid: 3839 components: - pos: 53.5,-42.5 parent: 2 type: Transform - - uid: 3825 + - uid: 3840 components: - pos: 52.5,-42.5 parent: 2 type: Transform - - uid: 3826 + - uid: 3841 components: - pos: 51.5,-42.5 parent: 2 type: Transform - - uid: 3827 + - uid: 3842 components: - pos: 50.5,-42.5 parent: 2 type: Transform - - uid: 3828 + - uid: 3843 components: - pos: 49.5,-42.5 parent: 2 type: Transform - - uid: 3829 + - uid: 3844 components: - pos: 48.5,-42.5 parent: 2 type: Transform - - uid: 3830 + - uid: 3845 components: - pos: 47.5,-42.5 parent: 2 type: Transform - - uid: 3831 + - uid: 3846 components: - pos: 46.5,-42.5 parent: 2 type: Transform - - uid: 3832 + - uid: 3847 components: - pos: 45.5,-42.5 parent: 2 type: Transform - - uid: 3833 + - uid: 3848 components: - pos: 44.5,-42.5 parent: 2 type: Transform - - uid: 3834 + - uid: 3849 components: - pos: 43.5,-42.5 parent: 2 type: Transform - - uid: 3835 + - uid: 3850 components: - pos: 42.5,-42.5 parent: 2 type: Transform - - uid: 3836 + - uid: 3851 components: - pos: 46.5,-41.5 parent: 2 type: Transform - - uid: 3837 + - uid: 3852 components: - pos: 46.5,-40.5 parent: 2 type: Transform - - uid: 3838 + - uid: 3853 components: - pos: 46.5,-39.5 parent: 2 type: Transform - - uid: 3839 + - uid: 3854 components: - pos: 46.5,-38.5 parent: 2 type: Transform - - uid: 3840 + - uid: 3855 components: - pos: 46.5,-37.5 parent: 2 type: Transform - - uid: 3841 + - uid: 3856 components: - pos: 45.5,-37.5 parent: 2 type: Transform - - uid: 3842 + - uid: 3857 components: - pos: 44.5,-37.5 parent: 2 type: Transform - - uid: 3843 + - uid: 3858 components: - pos: 43.5,-37.5 parent: 2 type: Transform - - uid: 3844 + - uid: 3859 components: - pos: 42.5,-37.5 parent: 2 type: Transform - - uid: 3845 + - uid: 3860 components: - pos: 41.5,-37.5 parent: 2 type: Transform - - uid: 3846 + - uid: 3861 components: - pos: 40.5,-37.5 parent: 2 type: Transform - - uid: 3847 + - uid: 3862 components: - pos: 39.5,-37.5 parent: 2 type: Transform - - uid: 3848 + - uid: 3863 components: - pos: 40.5,-36.5 parent: 2 type: Transform - - uid: 3849 + - uid: 3864 components: - pos: 43.5,-36.5 parent: 2 type: Transform - - uid: 3850 + - uid: 3865 components: - pos: 45.5,-36.5 parent: 2 type: Transform - - uid: 3851 + - uid: 3866 components: - pos: 43.5,-38.5 parent: 2 type: Transform - - uid: 3852 + - uid: 3867 components: - pos: 40.5,-38.5 parent: 2 type: Transform - - uid: 3853 + - uid: 3868 components: - pos: 49.5,-41.5 parent: 2 type: Transform - - uid: 3854 + - uid: 3869 components: - pos: 49.5,-40.5 parent: 2 type: Transform - - uid: 3855 + - uid: 3870 components: - pos: 49.5,-39.5 parent: 2 type: Transform - - uid: 3856 + - uid: 3871 components: - pos: 49.5,-38.5 parent: 2 type: Transform - - uid: 3857 + - uid: 3872 components: - pos: 50.5,-38.5 parent: 2 type: Transform - - uid: 3858 + - uid: 3873 components: - pos: 51.5,-38.5 parent: 2 type: Transform - - uid: 3859 + - uid: 3874 components: - pos: 49.5,-37.5 parent: 2 type: Transform - - uid: 3860 + - uid: 3875 components: - pos: 55.5,-44.5 parent: 2 type: Transform - - uid: 3861 + - uid: 3876 components: - pos: 56.5,-44.5 parent: 2 type: Transform - - uid: 3862 + - uid: 3877 components: - pos: 57.5,-44.5 parent: 2 type: Transform - - uid: 3863 + - uid: 3878 components: - pos: 58.5,-44.5 parent: 2 type: Transform - - uid: 3864 + - uid: 3879 components: - pos: 59.5,-44.5 parent: 2 type: Transform - - uid: 3865 + - uid: 3880 components: - pos: 60.5,-44.5 parent: 2 type: Transform - - uid: 3866 + - uid: 3881 components: - pos: 61.5,-44.5 parent: 2 type: Transform - - uid: 3867 + - uid: 3882 components: - pos: 62.5,-44.5 parent: 2 type: Transform - - uid: 3868 + - uid: 3883 components: - pos: 62.5,-43.5 parent: 2 type: Transform - - uid: 3869 + - uid: 3884 components: - pos: 62.5,-42.5 parent: 2 type: Transform - - uid: 3870 + - uid: 3885 components: - pos: 62.5,-41.5 parent: 2 type: Transform - - uid: 3871 + - uid: 3886 components: - pos: 62.5,-40.5 parent: 2 type: Transform - - uid: 3872 + - uid: 3887 components: - pos: 62.5,-39.5 parent: 2 type: Transform - - uid: 3873 + - uid: 3888 components: - pos: 62.5,-37.5 parent: 2 type: Transform - - uid: 3874 + - uid: 3889 components: - pos: 62.5,-36.5 parent: 2 type: Transform - - uid: 3875 + - uid: 3890 components: - pos: 62.5,-35.5 parent: 2 type: Transform - - uid: 3876 + - uid: 3891 components: - pos: 62.5,-34.5 parent: 2 type: Transform - - uid: 3877 + - uid: 3892 components: - pos: 63.5,-34.5 parent: 2 type: Transform - - uid: 3878 + - uid: 3893 components: - pos: 64.5,-34.5 parent: 2 type: Transform - - uid: 3879 + - uid: 3894 components: - pos: 65.5,-34.5 parent: 2 type: Transform - - uid: 3880 + - uid: 3895 components: - pos: 62.5,-33.5 parent: 2 type: Transform - - uid: 3881 + - uid: 3896 components: - pos: 62.5,-32.5 parent: 2 type: Transform - - uid: 3882 + - uid: 3897 components: - pos: 62.5,-31.5 parent: 2 type: Transform - - uid: 3883 + - uid: 3898 components: - pos: 61.5,-34.5 parent: 2 type: Transform - - uid: 3884 + - uid: 3899 components: - pos: 60.5,-34.5 parent: 2 type: Transform - - uid: 3885 + - uid: 3900 components: - pos: 59.5,-34.5 parent: 2 type: Transform - - uid: 3886 + - uid: 3901 components: - pos: 64.5,-35.5 parent: 2 type: Transform - - uid: 3887 + - uid: 3902 components: - pos: 60.5,-35.5 parent: 2 type: Transform - - uid: 3888 + - uid: 3903 components: - pos: 63.5,-33.5 parent: 2 type: Transform - - uid: 3889 + - uid: 3904 components: - pos: 62.5,-45.5 parent: 2 type: Transform - - uid: 3890 + - uid: 3905 components: - pos: 62.5,-46.5 parent: 2 type: Transform - - uid: 3891 + - uid: 3906 components: - pos: 62.5,-47.5 parent: 2 type: Transform - - uid: 3892 + - uid: 3907 components: - pos: 62.5,-48.5 parent: 2 type: Transform - - uid: 3893 + - uid: 3908 components: - pos: 62.5,-49.5 parent: 2 type: Transform - - uid: 3894 + - uid: 3909 components: - pos: 62.5,-50.5 parent: 2 type: Transform - - uid: 3895 + - uid: 3910 components: - pos: 62.5,-51.5 parent: 2 type: Transform - - uid: 3896 + - uid: 3911 components: - pos: 62.5,-52.5 parent: 2 type: Transform - - uid: 3897 + - uid: 3912 components: - pos: 62.5,-53.5 parent: 2 type: Transform - - uid: 3898 + - uid: 3913 components: - pos: 62.5,-54.5 parent: 2 type: Transform - - uid: 3899 + - uid: 3914 components: - pos: 63.5,-52.5 parent: 2 type: Transform - - uid: 3900 + - uid: 3915 components: - pos: 64.5,-52.5 parent: 2 type: Transform - - uid: 3901 + - uid: 3916 components: - pos: 61.5,-52.5 parent: 2 type: Transform - - uid: 3902 + - uid: 3917 components: - pos: 60.5,-52.5 parent: 2 type: Transform - - uid: 3903 + - uid: 3918 components: - pos: 63.5,-46.5 parent: 2 type: Transform - - uid: 3904 + - uid: 3919 components: - pos: 64.5,-46.5 parent: 2 type: Transform - - uid: 3905 + - uid: 3920 components: - pos: 65.5,-46.5 parent: 2 type: Transform - - uid: 3906 + - uid: 3921 components: - pos: 66.5,-46.5 parent: 2 type: Transform - - uid: 3907 + - uid: 3922 components: - pos: 68.5,-46.5 parent: 2 type: Transform - - uid: 3908 + - uid: 3923 components: - pos: 69.5,-46.5 parent: 2 type: Transform - - uid: 3909 + - uid: 3924 components: - pos: 70.5,-46.5 parent: 2 type: Transform - - uid: 3910 + - uid: 3925 components: - pos: 71.5,-46.5 parent: 2 type: Transform - - uid: 3911 + - uid: 3926 components: - pos: 72.5,-46.5 parent: 2 type: Transform - - uid: 3912 + - uid: 3927 components: - pos: 69.5,-47.5 parent: 2 type: Transform - - uid: 3913 + - uid: 3928 components: - pos: 69.5,-48.5 parent: 2 type: Transform - - uid: 3914 + - uid: 3929 components: - pos: 69.5,-49.5 parent: 2 type: Transform - - uid: 3915 + - uid: 3930 components: - pos: 69.5,-45.5 parent: 2 type: Transform - - uid: 3916 + - uid: 3931 components: - pos: 69.5,-44.5 parent: 2 type: Transform - - uid: 3917 + - uid: 3932 components: - pos: 71.5,-45.5 parent: 2 type: Transform - - uid: 3918 + - uid: 3933 components: - pos: 71.5,-47.5 parent: 2 type: Transform - - uid: 3919 + - uid: 3934 components: - pos: 73.5,-46.5 parent: 2 type: Transform - - uid: 3920 + - uid: 3935 components: - pos: 73.5,-47.5 parent: 2 type: Transform - - uid: 3921 + - uid: 3936 components: - pos: 73.5,-45.5 parent: 2 type: Transform - - uid: 3922 + - uid: 3937 components: - pos: 49.5,-43.5 parent: 2 type: Transform - - uid: 3923 + - uid: 3938 components: - pos: 49.5,-44.5 parent: 2 type: Transform - - uid: 3924 + - uid: 3939 components: - pos: 49.5,-46.5 parent: 2 type: Transform - - uid: 3925 + - uid: 3940 components: - pos: 49.5,-47.5 parent: 2 type: Transform - - uid: 3926 + - uid: 3941 components: - pos: 49.5,-49.5 parent: 2 type: Transform - - uid: 3927 + - uid: 3942 components: - pos: 49.5,-50.5 parent: 2 type: Transform - - uid: 3928 + - uid: 3943 components: - pos: 49.5,-51.5 parent: 2 type: Transform - - uid: 3929 + - uid: 3944 components: - pos: 49.5,-52.5 parent: 2 type: Transform - - uid: 3930 + - uid: 3945 components: - pos: 49.5,-53.5 parent: 2 type: Transform - - uid: 3931 + - uid: 3946 components: - pos: 49.5,-54.5 parent: 2 type: Transform - - uid: 3932 + - uid: 3947 components: - pos: 48.5,-45.5 parent: 2 type: Transform - - uid: 3933 + - uid: 3948 components: - pos: 47.5,-45.5 parent: 2 type: Transform - - uid: 3934 + - uid: 3949 components: - pos: 46.5,-45.5 parent: 2 type: Transform - - uid: 3935 + - uid: 3950 components: - pos: 45.5,-45.5 parent: 2 type: Transform - - uid: 3936 + - uid: 3951 components: - pos: 45.5,-46.5 parent: 2 type: Transform - - uid: 3937 + - uid: 3952 components: - pos: 45.5,-47.5 parent: 2 type: Transform - - uid: 3938 + - uid: 3953 components: - pos: 45.5,-48.5 parent: 2 type: Transform - - uid: 3939 + - uid: 3954 components: - pos: 44.5,-48.5 parent: 2 type: Transform - - uid: 3940 + - uid: 3955 components: - pos: 43.5,-48.5 parent: 2 type: Transform - - uid: 3941 + - uid: 3956 components: - pos: 43.5,-47.5 parent: 2 type: Transform - - uid: 3942 + - uid: 3957 components: - pos: 43.5,-46.5 parent: 2 type: Transform - - uid: 3943 + - uid: 3958 components: - pos: 42.5,-46.5 parent: 2 type: Transform - - uid: 3944 + - uid: 3959 components: - pos: 41.5,-46.5 parent: 2 type: Transform - - uid: 3945 + - uid: 3960 components: - pos: 40.5,-46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3946 + - uid: 3961 components: - pos: 39.5,-46.5 parent: 2 type: Transform - - uid: 3947 + - uid: 3962 components: - pos: 41.5,-42.5 parent: 2 type: Transform - - uid: 3948 + - uid: 3963 components: - pos: 40.5,-42.5 parent: 2 type: Transform - - uid: 3949 + - uid: 3964 components: - pos: 39.5,-42.5 parent: 2 type: Transform - - uid: 3950 + - uid: 3965 components: - pos: 38.5,-42.5 parent: 2 type: Transform - - uid: 3951 + - uid: 3966 components: - pos: 37.5,-42.5 parent: 2 type: Transform - - uid: 3952 + - uid: 3967 components: - pos: 59.5,-33.5 parent: 2 type: Transform - - uid: 3953 + - uid: 3968 components: - pos: 55.5,-63.5 parent: 2 type: Transform - - uid: 3954 + - uid: 3969 components: - pos: 64.5,-43.5 parent: 2 type: Transform - - uid: 3955 + - uid: 3970 components: - pos: -15.5,-18.5 parent: 2 type: Transform - - uid: 3956 + - uid: 3971 components: - pos: -21.5,-59.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3957 + - uid: 3972 components: - pos: 30.5,-47.5 parent: 2 type: Transform - - uid: 3958 + - uid: 3973 components: - pos: 31.5,-47.5 parent: 2 type: Transform - - uid: 3959 + - uid: 3974 components: - pos: 32.5,-47.5 parent: 2 type: Transform - - uid: 3960 + - uid: 3975 components: - pos: 33.5,-47.5 parent: 2 type: Transform - - uid: 3961 + - uid: 3976 components: - pos: 31.5,-46.5 parent: 2 type: Transform - - uid: 3962 + - uid: 3977 components: - pos: 31.5,-46.5 parent: 2 type: Transform - - uid: 3963 + - uid: 3978 components: - pos: 31.5,-45.5 parent: 2 type: Transform - - uid: 3964 + - uid: 3979 components: - pos: 29.5,-48.5 parent: 2 type: Transform - - uid: 3965 + - uid: 3980 components: - pos: 29.5,-49.5 parent: 2 type: Transform - - uid: 3966 + - uid: 3981 components: - pos: 30.5,-49.5 parent: 2 type: Transform - - uid: 3967 + - uid: 3982 components: - pos: 31.5,-49.5 parent: 2 type: Transform - - uid: 3968 + - uid: 3983 components: - pos: 31.5,-50.5 parent: 2 type: Transform - - uid: 3969 + - uid: 3984 components: - pos: 31.5,-51.5 parent: 2 type: Transform - - uid: 3970 + - uid: 3985 components: - pos: 31.5,-52.5 parent: 2 type: Transform - - uid: 3971 + - uid: 3986 components: - pos: 30.5,-51.5 parent: 2 type: Transform - - uid: 3972 + - uid: 3987 components: - pos: 32.5,-51.5 parent: 2 type: Transform - - uid: 3973 + - uid: 3988 components: - pos: 31.5,-53.5 parent: 2 type: Transform - - uid: 3974 + - uid: 3989 components: - pos: 31.5,-54.5 parent: 2 type: Transform - - uid: 3975 + - uid: 3990 components: - pos: 31.5,-56.5 parent: 2 type: Transform - - uid: 3976 + - uid: 3991 components: - pos: 31.5,-55.5 parent: 2 type: Transform - - uid: 3977 + - uid: 3992 components: - pos: 30.5,-54.5 parent: 2 type: Transform - - uid: 3978 + - uid: 3993 components: - pos: 29.5,-54.5 parent: 2 type: Transform - - uid: 3979 + - uid: 3994 components: - pos: 32.5,-54.5 parent: 2 type: Transform - - uid: 3980 + - uid: 3995 components: - pos: 33.5,-54.5 parent: 2 type: Transform - - uid: 3981 + - uid: 3996 components: - pos: 30.5,-45.5 parent: 2 type: Transform - - uid: 3982 + - uid: 3997 components: - pos: 32.5,-45.5 parent: 2 type: Transform - - uid: 3983 + - uid: 3998 components: - pos: 29.5,-45.5 parent: 2 type: Transform - - uid: 3984 + - uid: 3999 components: - pos: 33.5,-45.5 parent: 2 type: Transform - - uid: 3985 + - uid: 4000 components: - pos: 48.5,-54.5 parent: 2 type: Transform - - uid: 3986 + - uid: 4001 components: - pos: 47.5,-54.5 parent: 2 type: Transform - - uid: 3987 + - uid: 4002 components: - pos: 46.5,-54.5 parent: 2 type: Transform - - uid: 3988 + - uid: 4003 components: - pos: 49.5,-55.5 parent: 2 type: Transform - - uid: 3989 + - uid: 4004 components: - pos: 49.5,-56.5 parent: 2 type: Transform - - uid: 3990 + - uid: 4005 components: - pos: 49.5,-57.5 parent: 2 type: Transform - - uid: 3991 + - uid: 4006 components: - pos: 49.5,-58.5 parent: 2 type: Transform - - uid: 3992 + - uid: 4007 components: - pos: 49.5,-59.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 3993 + - uid: 4008 components: - pos: 49.5,-60.5 parent: 2 type: Transform - - uid: 3994 + - uid: 4009 components: - pos: 50.5,-60.5 parent: 2 type: Transform - - uid: 3995 + - uid: 4010 components: - pos: 50.5,-53.5 parent: 2 type: Transform - - uid: 3996 + - uid: 4011 components: - pos: 51.5,-53.5 parent: 2 type: Transform - - uid: 3997 + - uid: 4012 components: - pos: 52.5,-53.5 parent: 2 type: Transform - - uid: 3998 + - uid: 4013 components: - pos: 52.5,-52.5 parent: 2 type: Transform - - uid: 3999 + - uid: 4014 components: - pos: 52.5,-51.5 parent: 2 type: Transform - - uid: 4000 + - uid: 4015 components: - pos: 50.5,-50.5 parent: 2 type: Transform - - uid: 4001 + - uid: 4016 components: - pos: 48.5,-57.5 parent: 2 type: Transform - - uid: 4002 + - uid: 4017 components: - pos: 47.5,-57.5 parent: 2 type: Transform - - uid: 4003 + - uid: 4018 components: - pos: 46.5,-57.5 parent: 2 type: Transform - - uid: 4004 + - uid: 4019 components: - pos: 45.5,-57.5 parent: 2 type: Transform - - uid: 4005 + - uid: 4020 components: - pos: 51.5,-54.5 parent: 2 type: Transform - - uid: 4006 + - uid: 4021 components: - pos: 51.5,-55.5 parent: 2 type: Transform - - uid: 4007 + - uid: 4022 components: - pos: 51.5,-56.5 parent: 2 type: Transform - - uid: 4008 + - uid: 4023 components: - pos: 49.5,-48.5 parent: 2 type: Transform - - uid: 4009 + - uid: 4024 components: - pos: 32.5,15.5 parent: 2 type: Transform - - uid: 4010 + - uid: 4025 components: - pos: -20.5,0.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4011 + - uid: 4026 components: - pos: -21.5,0.5 parent: 2 type: Transform - - uid: 4012 + - uid: 4027 components: - pos: -21.5,1.5 parent: 2 type: Transform - - uid: 4013 + - uid: 4028 components: - pos: -20.5,1.5 parent: 2 type: Transform - - uid: 4014 + - uid: 4029 components: - pos: -19.5,1.5 parent: 2 type: Transform - - uid: 4015 + - uid: 4030 components: - pos: -19.5,2.5 parent: 2 type: Transform - - uid: 4016 + - uid: 4031 components: - pos: -18.5,2.5 parent: 2 type: Transform - - uid: 4017 + - uid: 4032 components: - pos: -17.5,2.5 parent: 2 type: Transform - - uid: 4018 + - uid: 4033 components: - pos: -17.5,3.5 parent: 2 type: Transform - - uid: 4019 + - uid: 4034 components: - pos: -19.5,-1.5 parent: 2 type: Transform - - uid: 4020 + - uid: 4035 components: - pos: -19.5,-2.5 parent: 2 type: Transform - - uid: 4021 + - uid: 4036 components: - pos: -19.5,-0.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4022 + - uid: 4037 components: - pos: -20.5,-0.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4023 + - uid: 4038 components: - pos: -21.5,2.5 parent: 2 type: Transform - - uid: 4024 + - uid: 4039 components: - pos: -21.5,3.5 parent: 2 type: Transform - - uid: 4025 + - uid: 4040 components: - pos: -18.5,-0.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4026 + - uid: 4041 components: - pos: 57.5,6.5 parent: 2 type: Transform - - uid: 4027 + - uid: 4042 components: - pos: 18.5,-81.5 parent: 2 type: Transform - - uid: 4028 + - uid: 4043 components: - pos: -29.5,-9.5 parent: 2 type: Transform - - uid: 4029 + - uid: 4044 components: - pos: -29.5,-10.5 parent: 2 type: Transform - - uid: 4030 + - uid: 4045 components: - pos: -29.5,-11.5 parent: 2 type: Transform - - uid: 4031 + - uid: 4046 components: - pos: -29.5,-12.5 parent: 2 type: Transform - - uid: 4032 + - uid: 4047 components: - pos: -28.5,-12.5 parent: 2 type: Transform - - uid: 4033 + - uid: 4048 components: - pos: -27.5,-12.5 parent: 2 type: Transform - - uid: 4034 + - uid: 4049 components: - pos: -26.5,-12.5 parent: 2 type: Transform - - uid: 4035 + - uid: 4050 components: - pos: -25.5,-12.5 parent: 2 type: Transform - - uid: 4036 + - uid: 4051 components: - pos: -24.5,-12.5 parent: 2 type: Transform - - uid: 4037 + - uid: 4052 components: - pos: -23.5,-12.5 parent: 2 type: Transform - - uid: 4038 + - uid: 4053 components: - pos: -22.5,-12.5 parent: 2 type: Transform - - uid: 4039 + - uid: 4054 components: - pos: -21.5,-12.5 parent: 2 type: Transform - - uid: 4040 + - uid: 4055 components: - pos: -20.5,-12.5 parent: 2 type: Transform - - uid: 4041 + - uid: 4056 components: - pos: -19.5,-12.5 parent: 2 type: Transform - - uid: 4042 + - uid: 4057 components: - pos: -24.5,-11.5 parent: 2 type: Transform - - uid: 4043 + - uid: 4058 components: - pos: -24.5,-10.5 parent: 2 type: Transform - - uid: 4044 + - uid: 4059 components: - pos: -24.5,-9.5 parent: 2 type: Transform - - uid: 4045 + - uid: 4060 components: - pos: -19.5,-13.5 parent: 2 type: Transform - - uid: 4046 + - uid: 4061 components: - pos: -19.5,-14.5 parent: 2 type: Transform - - uid: 4047 + - uid: 4062 components: - pos: -19.5,-15.5 parent: 2 type: Transform - - uid: 4048 + - uid: 4063 components: - pos: -19.5,-16.5 parent: 2 type: Transform - - uid: 4049 + - uid: 4064 components: - pos: -19.5,-17.5 parent: 2 type: Transform - - uid: 4050 + - uid: 4065 components: - pos: -19.5,-18.5 parent: 2 type: Transform - - uid: 4051 + - uid: 4066 components: - pos: -19.5,-19.5 parent: 2 type: Transform - - uid: 4052 + - uid: 4067 components: - pos: -19.5,-20.5 parent: 2 type: Transform - - uid: 4053 + - uid: 4068 components: - pos: -19.5,-21.5 parent: 2 type: Transform - - uid: 4054 + - uid: 4069 components: - pos: -19.5,-22.5 parent: 2 type: Transform - - uid: 4055 + - uid: 4070 components: - pos: -20.5,-17.5 parent: 2 type: Transform - - uid: 4056 + - uid: 4071 components: - pos: -21.5,-17.5 parent: 2 type: Transform - - uid: 4057 + - uid: 4072 components: - pos: -23.5,-17.5 parent: 2 type: Transform - - uid: 4058 + - uid: 4073 components: - pos: -24.5,-17.5 parent: 2 type: Transform - - uid: 4059 + - uid: 4074 components: - pos: -25.5,-17.5 parent: 2 type: Transform - - uid: 4060 + - uid: 4075 components: - pos: -26.5,-17.5 parent: 2 type: Transform - - uid: 4061 + - uid: 4076 components: - pos: -27.5,-17.5 parent: 2 type: Transform - - uid: 4062 + - uid: 4077 components: - pos: -28.5,-17.5 parent: 2 type: Transform - - uid: 4063 + - uid: 4078 components: - pos: -29.5,-17.5 parent: 2 type: Transform - - uid: 4064 + - uid: 4079 components: - pos: -20.5,-22.5 parent: 2 type: Transform - - uid: 4065 + - uid: 4080 components: - pos: -21.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4066 + - uid: 4081 components: - pos: -22.5,-22.5 parent: 2 type: Transform - - uid: 4067 + - uid: 4082 components: - pos: -23.5,-22.5 parent: 2 type: Transform - - uid: 4068 + - uid: 4083 components: - pos: -24.5,-22.5 parent: 2 type: Transform - - uid: 4069 + - uid: 4084 components: - pos: -25.5,-22.5 parent: 2 type: Transform - - uid: 4070 + - uid: 4085 components: - pos: -26.5,-22.5 parent: 2 type: Transform - - uid: 4071 + - uid: 4086 components: - pos: -27.5,-22.5 parent: 2 type: Transform - - uid: 4072 + - uid: 4087 components: - pos: -28.5,-22.5 parent: 2 type: Transform - - uid: 4073 + - uid: 4088 components: - pos: -29.5,-22.5 parent: 2 type: Transform - - uid: 4074 + - uid: 4089 components: - pos: -19.5,-23.5 parent: 2 type: Transform - - uid: 4075 + - uid: 4090 components: - pos: -19.5,-11.5 parent: 2 type: Transform - - uid: 4076 + - uid: 4091 components: - pos: -19.5,-10.5 parent: 2 type: Transform - - uid: 4077 + - uid: 4092 components: - pos: -19.5,-9.5 parent: 2 type: Transform - - uid: 4078 + - uid: 4093 components: - pos: -19.5,-8.5 parent: 2 type: Transform - - uid: 4079 + - uid: 4094 components: - pos: -19.5,-6.5 parent: 2 type: Transform - - uid: 4080 + - uid: 4095 components: - pos: -19.5,-5.5 parent: 2 type: Transform - - uid: 4081 + - uid: 4096 components: - pos: -18.5,-5.5 parent: 2 type: Transform - - uid: 4082 + - uid: 4097 components: - pos: -17.5,-5.5 parent: 2 type: Transform - - uid: 4083 + - uid: 4098 components: - pos: -16.5,-5.5 parent: 2 type: Transform - - uid: 4084 + - uid: 4099 components: - pos: -15.5,-5.5 parent: 2 type: Transform - - uid: 4085 + - uid: 4100 components: - pos: -14.5,-5.5 parent: 2 type: Transform - - uid: 4086 + - uid: 4101 components: - pos: -13.5,-5.5 parent: 2 type: Transform - - uid: 4087 + - uid: 4102 components: - pos: -13.5,-4.5 parent: 2 type: Transform - - uid: 4088 + - uid: 4103 components: - pos: -13.5,3.5 parent: 2 type: Transform - - uid: 4089 + - uid: 4104 components: - pos: -19.5,7.5 parent: 2 type: Transform - - uid: 4090 + - uid: 4105 components: - pos: -20.5,7.5 parent: 2 type: Transform - - uid: 4091 + - uid: 4106 components: - pos: -21.5,7.5 parent: 2 type: Transform - - uid: 4092 + - uid: 4107 components: - pos: -22.5,7.5 parent: 2 type: Transform - - uid: 4093 + - uid: 4108 components: - pos: -20.5,-5.5 parent: 2 type: Transform - - uid: 4094 + - uid: 4109 components: - pos: -21.5,-5.5 parent: 2 type: Transform - - uid: 4095 + - uid: 4110 components: - pos: -22.5,-5.5 parent: 2 type: Transform - - uid: 4096 + - uid: 4111 components: - pos: -23.5,-5.5 parent: 2 type: Transform - - uid: 4097 + - uid: 4112 components: - pos: -24.5,-5.5 parent: 2 type: Transform - - uid: 4098 + - uid: 4113 components: - pos: -25.5,-5.5 parent: 2 type: Transform - - uid: 4099 + - uid: 4114 components: - pos: -25.5,-4.5 parent: 2 type: Transform - - uid: 4100 + - uid: 4115 components: - pos: -25.5,-3.5 parent: 2 type: Transform - - uid: 4101 + - uid: 4116 components: - pos: -25.5,-2.5 parent: 2 type: Transform - - uid: 4102 + - uid: 4117 components: - pos: -25.5,-1.5 parent: 2 type: Transform - - uid: 4103 + - uid: 4118 components: - pos: -25.5,-0.5 parent: 2 type: Transform - - uid: 4104 + - uid: 4119 components: - pos: -25.5,0.5 parent: 2 type: Transform - - uid: 4105 + - uid: 4120 components: - pos: -24.5,-9.5 parent: 2 type: Transform - - uid: 4106 + - uid: 4121 components: - pos: -23.5,-9.5 parent: 2 type: Transform - - uid: 4107 + - uid: 4122 components: - pos: -29.5,-13.5 parent: 2 type: Transform - - uid: 4108 + - uid: 4123 components: - pos: -29.5,-14.5 parent: 2 type: Transform - - uid: 4109 + - uid: 4124 components: - pos: -29.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4110 + - uid: 4125 components: - pos: 45.5,18.5 parent: 2 type: Transform - - uid: 4111 + - uid: 4126 components: - pos: 30.5,-59.5 parent: 2 type: Transform - - uid: 4112 + - uid: 4127 components: - pos: 31.5,-59.5 parent: 2 type: Transform - - uid: 4113 + - uid: 4128 components: - pos: 32.5,-59.5 parent: 2 type: Transform - - uid: 4114 + - uid: 4129 components: - pos: 33.5,-59.5 parent: 2 type: Transform - - uid: 4115 + - uid: 4130 components: - pos: 34.5,-59.5 parent: 2 type: Transform - - uid: 4116 + - uid: 4131 components: - pos: 38.5,-36.5 parent: 2 type: Transform - - uid: 4117 + - uid: 4132 components: - pos: 38.5,-37.5 parent: 2 type: Transform - - uid: 4118 + - uid: 4133 components: - pos: 51.5,-57.5 parent: 2 type: Transform - - uid: 4119 + - uid: 4134 components: - pos: 51.5,-58.5 parent: 2 type: Transform - - uid: 4120 + - uid: 4135 components: - pos: 52.5,-58.5 parent: 2 type: Transform - - uid: 4121 + - uid: 4136 components: - pos: 53.5,-58.5 parent: 2 type: Transform - - uid: 4122 + - uid: 4137 components: - pos: 54.5,-58.5 parent: 2 type: Transform - - uid: 4123 + - uid: 4138 components: - pos: 55.5,-58.5 parent: 2 type: Transform - - uid: 4124 + - uid: 4139 components: - pos: 55.5,-59.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4125 + - uid: 4140 components: - pos: 55.5,-60.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4126 + - uid: 4141 components: - pos: 56.5,-60.5 parent: 2 type: Transform - - uid: 4127 + - uid: 4142 components: - pos: -35.5,-39.5 parent: 2 type: Transform - - uid: 4128 + - uid: 4143 components: - pos: 29.5,-72.5 parent: 2 type: Transform - - uid: 4129 + - uid: 4144 components: - pos: 47.5,-82.5 parent: 2 type: Transform - - uid: 4130 + - uid: 4145 components: - pos: 37.5,-57.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4131 + - uid: 4146 components: - pos: 37.5,-58.5 parent: 2 type: Transform - - uid: 4132 + - uid: 4147 components: - pos: 37.5,-59.5 parent: 2 type: Transform - - uid: 4133 + - uid: 4148 components: - pos: 38.5,-59.5 parent: 2 type: Transform - - uid: 4134 + - uid: 4149 components: - pos: 39.5,-59.5 parent: 2 type: Transform - - uid: 4135 + - uid: 4150 components: - pos: 40.5,-59.5 parent: 2 type: Transform - - uid: 4136 + - uid: 4151 components: - pos: 40.5,-59.5 parent: 2 type: Transform - - uid: 4137 + - uid: 4152 components: - pos: 40.5,-60.5 parent: 2 type: Transform - - uid: 4138 + - uid: 4153 components: - pos: 40.5,-61.5 parent: 2 type: Transform - - uid: 4139 + - uid: 4154 components: - pos: 40.5,-62.5 parent: 2 type: Transform - - uid: 4140 + - uid: 4155 components: - pos: 40.5,-63.5 parent: 2 type: Transform - - uid: 4141 + - uid: 4156 components: - pos: 40.5,-64.5 parent: 2 type: Transform - - uid: 4142 + - uid: 4157 components: - pos: 40.5,-65.5 parent: 2 type: Transform - - uid: 4143 + - uid: 4158 components: - pos: 40.5,-66.5 parent: 2 type: Transform - - uid: 4144 + - uid: 4159 components: - pos: 40.5,-67.5 parent: 2 type: Transform - - uid: 4145 + - uid: 4160 components: - pos: 40.5,-68.5 parent: 2 type: Transform - - uid: 4146 + - uid: 4161 components: - pos: 40.5,-69.5 parent: 2 type: Transform - - uid: 4147 + - uid: 4162 components: - pos: 40.5,-70.5 parent: 2 type: Transform - - uid: 4148 + - uid: 4163 components: - pos: 40.5,-71.5 parent: 2 type: Transform - - uid: 4149 + - uid: 4164 components: - pos: 40.5,-72.5 parent: 2 type: Transform - - uid: 4150 + - uid: 4165 components: - pos: 41.5,-72.5 parent: 2 type: Transform - - uid: 4151 + - uid: 4166 components: - pos: 42.5,-72.5 parent: 2 type: Transform - - uid: 4152 + - uid: 4167 components: - pos: 43.5,-72.5 parent: 2 type: Transform - - uid: 4153 + - uid: 4168 components: - pos: 44.5,-72.5 parent: 2 type: Transform - - uid: 4154 + - uid: 4169 components: - pos: 44.5,-73.5 parent: 2 type: Transform - - uid: 4155 + - uid: 4170 components: - pos: 44.5,-74.5 parent: 2 type: Transform - - uid: 4156 + - uid: 4171 components: - pos: 42.5,-73.5 parent: 2 type: Transform - - uid: 4157 + - uid: 4172 components: - pos: 42.5,-74.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4158 + - uid: 4173 components: - pos: 39.5,-72.5 parent: 2 type: Transform - - uid: 4159 + - uid: 4174 components: - pos: 38.5,-72.5 parent: 2 type: Transform - - uid: 4160 + - uid: 4175 components: - pos: 37.5,-72.5 parent: 2 type: Transform - - uid: 4161 + - uid: 4176 components: - pos: 36.5,-72.5 parent: 2 type: Transform - - uid: 4162 + - uid: 4177 components: - pos: 35.5,-72.5 parent: 2 type: Transform - - uid: 4163 + - uid: 4178 components: - pos: 34.5,-72.5 parent: 2 type: Transform - - uid: 4164 + - uid: 4179 components: - pos: 34.5,-73.5 parent: 2 type: Transform - - uid: 4165 + - uid: 4180 components: - pos: 34.5,-74.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4166 + - uid: 4181 components: - pos: 36.5,-73.5 parent: 2 type: Transform - - uid: 4167 + - uid: 4182 components: - pos: 36.5,-74.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4168 + - uid: 4183 components: - pos: 44.5,-71.5 parent: 2 type: Transform - - uid: 4169 + - uid: 4184 components: - pos: 44.5,-70.5 parent: 2 type: Transform - - uid: 4170 + - uid: 4185 components: - pos: 34.5,-71.5 parent: 2 type: Transform - - uid: 4171 + - uid: 4186 components: - pos: 34.5,-70.5 parent: 2 type: Transform - - uid: 4172 + - uid: 4187 components: - pos: 41.5,-59.5 parent: 2 type: Transform - - uid: 4173 + - uid: 4188 components: - pos: 42.5,-59.5 parent: 2 type: Transform - - uid: 4174 + - uid: 4189 components: - pos: 43.5,-59.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4175 + - uid: 4190 components: - pos: 39.5,-58.5 parent: 2 type: Transform - - uid: 4176 + - uid: 4191 components: - pos: 39.5,-57.5 parent: 2 type: Transform - - uid: 4177 + - uid: 4192 components: - pos: 39.5,-56.5 parent: 2 type: Transform - - uid: 4178 + - uid: 4193 components: - pos: 39.5,-55.5 parent: 2 type: Transform - - uid: 4179 + - uid: 4194 components: - pos: 39.5,-54.5 parent: 2 type: Transform - - uid: 4180 + - uid: 4195 components: - pos: 40.5,-55.5 parent: 2 type: Transform - - uid: 4181 + - uid: 4196 components: - pos: 36.5,-58.5 parent: 2 type: Transform - - uid: 4182 + - uid: 4197 components: - pos: 36.5,-56.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4183 + - uid: 4198 components: - pos: 36.5,-54.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4184 + - uid: 4199 components: - pos: 36.5,-57.5 parent: 2 type: Transform - - uid: 4185 + - uid: 4200 components: - pos: 36.5,-55.5 parent: 2 type: Transform - - uid: 4186 + - uid: 4201 components: - pos: 36.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4187 + - uid: 4202 components: - pos: 36.5,-52.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4188 + - uid: 4203 components: - pos: 36.5,-51.5 parent: 2 type: Transform - - uid: 4189 + - uid: 4204 components: - pos: 37.5,-51.5 parent: 2 type: Transform - - uid: 4190 + - uid: 4205 components: - pos: 38.5,-51.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4191 + - uid: 4206 components: - pos: 39.5,-51.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4192 + - uid: 4207 components: - pos: 40.5,-51.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4193 + - uid: 4208 components: - pos: 40.5,-50.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4194 + - uid: 4209 components: - pos: 40.5,-49.5 parent: 2 type: Transform - - uid: 4195 + - uid: 4210 components: - pos: 39.5,-49.5 parent: 2 type: Transform - - uid: 4196 + - uid: 4211 components: - pos: 39.5,-48.5 parent: 2 type: Transform - - uid: 4197 + - uid: 4212 components: - pos: 38.5,-48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4198 + - uid: 4213 components: - pos: 41.5,-51.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4199 + - uid: 4214 components: - pos: 42.5,-51.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4200 + - uid: 4215 components: - pos: 43.5,-51.5 parent: 2 type: Transform - - uid: 4201 + - uid: 4216 components: - pos: 43.5,-52.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4202 + - uid: 4217 components: - pos: 43.5,-53.5 parent: 2 type: Transform - - uid: 4203 + - uid: 4218 components: - pos: 43.5,-54.5 parent: 2 type: Transform - - uid: 4204 + - uid: 4219 components: - pos: 31.5,-72.5 parent: 2 type: Transform - - uid: 4205 + - uid: 4220 components: - pos: 27.5,-72.5 parent: 2 type: Transform - - uid: 4206 + - uid: 4221 components: - pos: 28.5,-72.5 parent: 2 type: Transform - - uid: 4207 + - uid: 4222 components: - pos: 22.5,-83.5 parent: 2 type: Transform - - uid: 4208 + - uid: 4223 components: - pos: 23.5,-72.5 parent: 2 type: Transform - - uid: 4209 + - uid: 4224 components: - pos: 25.5,-70.5 parent: 2 type: Transform - - uid: 4210 + - uid: 4225 components: - pos: 25.5,-69.5 parent: 2 type: Transform - - uid: 4211 + - uid: 4226 components: - pos: 13.5,-83.5 parent: 2 type: Transform - - uid: 4212 + - uid: 4227 components: - pos: 26.5,-72.5 parent: 2 type: Transform - - uid: 4213 + - uid: 4228 components: - pos: 25.5,-72.5 parent: 2 type: Transform - - uid: 4214 + - uid: 4229 components: - pos: 25.5,-71.5 parent: 2 type: Transform - - uid: 4215 + - uid: 4230 components: - pos: 20.5,-83.5 parent: 2 type: Transform - - uid: 4216 + - uid: 4231 components: - pos: 18.5,-83.5 parent: 2 type: Transform - - uid: 4217 + - uid: 4232 components: - pos: 24.5,-72.5 parent: 2 type: Transform - - uid: 4218 + - uid: 4233 components: - pos: 13.5,-86.5 parent: 2 type: Transform - - uid: 4219 + - uid: 4234 components: - pos: 21.5,-83.5 parent: 2 type: Transform - - uid: 4220 + - uid: 4235 components: - pos: 14.5,-81.5 parent: 2 type: Transform - - uid: 4221 + - uid: 4236 components: - pos: 12.5,-81.5 parent: 2 type: Transform - - uid: 4222 + - uid: 4237 components: - pos: 17.5,-81.5 parent: 2 type: Transform - - uid: 4223 + - uid: 4238 components: - pos: 14.5,-86.5 parent: 2 type: Transform - - uid: 4224 + - uid: 4239 components: - pos: 10.5,-70.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4225 + - uid: 4240 components: - pos: 32.5,-72.5 parent: 2 type: Transform - - uid: 4226 + - uid: 4241 components: - pos: 30.5,-75.5 parent: 2 type: Transform - - uid: 4227 + - uid: 4242 components: - pos: 30.5,-73.5 parent: 2 type: Transform - - uid: 4228 + - uid: 4243 components: - pos: 30.5,-76.5 parent: 2 type: Transform - - uid: 4229 + - uid: 4244 components: - pos: 30.5,-74.5 parent: 2 type: Transform - - uid: 4230 + - uid: 4245 components: - pos: 33.5,-72.5 parent: 2 type: Transform - - uid: 4231 + - uid: 4246 components: - pos: 48.5,-73.5 parent: 2 type: Transform - - uid: 4232 + - uid: 4247 components: - pos: 42.5,-75.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4233 + - uid: 4248 components: - pos: 36.5,-75.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4234 + - uid: 4249 components: - pos: 30.5,-78.5 parent: 2 type: Transform - - uid: 4235 + - uid: 4250 components: - pos: 46.5,-82.5 parent: 2 type: Transform - - uid: 4236 + - uid: 4251 components: - pos: 48.5,-91.5 parent: 2 type: Transform - - uid: 4237 + - uid: 4252 components: - pos: 21.5,-73.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4238 + - uid: 4253 components: - pos: 20.5,-73.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4239 + - uid: 4254 components: - pos: 19.5,-73.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4240 + - uid: 4255 components: - pos: 18.5,-73.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4241 + - uid: 4256 components: - pos: 17.5,-73.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4242 + - uid: 4257 components: - pos: 16.5,-73.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4243 + - uid: 4258 components: - pos: 15.5,-73.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4244 + - uid: 4259 components: - pos: 14.5,-73.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4245 + - uid: 4260 components: - pos: 13.5,-73.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4246 + - uid: 4261 components: - pos: 12.5,-73.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4247 + - uid: 4262 components: - pos: 11.5,-73.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4248 + - uid: 4263 components: - pos: 11.5,-72.5 parent: 2 type: Transform - - uid: 4249 + - uid: 4264 components: - pos: 11.5,-71.5 parent: 2 type: Transform - - uid: 4250 + - uid: 4265 components: - pos: 11.5,-70.5 parent: 2 type: Transform - - uid: 4251 + - uid: 4266 components: - pos: 19.5,-83.5 parent: 2 type: Transform - - uid: 4252 + - uid: 4267 components: - pos: 48.5,-89.5 parent: 2 type: Transform - - uid: 4253 + - uid: 4268 components: - pos: 23.5,-83.5 parent: 2 type: Transform - - uid: 4254 + - uid: 4269 components: - pos: 9.5,-70.5 parent: 2 type: Transform - - uid: 4255 + - uid: 4270 components: - pos: 16.5,-86.5 parent: 2 type: Transform - - uid: 4256 + - uid: 4271 components: - pos: 15.5,-86.5 parent: 2 type: Transform - - uid: 4257 + - uid: 4272 components: - pos: 12.5,-86.5 parent: 2 type: Transform - - uid: 4258 + - uid: 4273 components: - pos: 17.5,-86.5 parent: 2 type: Transform - - uid: 4259 + - uid: 4274 components: - pos: -13.5,-26.5 parent: 2 type: Transform - - uid: 4260 + - uid: 4275 components: - pos: -14.5,-26.5 parent: 2 type: Transform - - uid: 4261 + - uid: 4276 components: - pos: -15.5,-26.5 parent: 2 type: Transform - - uid: 4262 + - uid: 4277 components: - pos: -16.5,-26.5 parent: 2 type: Transform - - uid: 4263 + - uid: 4278 components: - pos: -17.5,-26.5 parent: 2 type: Transform - - uid: 4264 + - uid: 4279 components: - pos: -18.5,-26.5 parent: 2 type: Transform - - uid: 4265 + - uid: 4280 components: - pos: -19.5,-26.5 parent: 2 type: Transform - - uid: 4266 + - uid: 4281 components: - pos: -19.5,-27.5 parent: 2 type: Transform - - uid: 4267 + - uid: 4282 components: - pos: -19.5,-28.5 parent: 2 type: Transform - - uid: 4268 + - uid: 4283 components: - pos: -19.5,-29.5 parent: 2 type: Transform - - uid: 4269 + - uid: 4284 components: - pos: -19.5,-30.5 parent: 2 type: Transform - - uid: 4270 + - uid: 4285 components: - pos: -19.5,-31.5 parent: 2 type: Transform - - uid: 4271 + - uid: 4286 components: - pos: -19.5,-32.5 parent: 2 type: Transform - - uid: 4272 + - uid: 4287 components: - pos: -19.5,-33.5 parent: 2 type: Transform - - uid: 4273 + - uid: 4288 components: - pos: -19.5,-34.5 parent: 2 type: Transform - - uid: 4274 + - uid: 4289 components: - pos: -19.5,-35.5 parent: 2 type: Transform - - uid: 4275 + - uid: 4290 components: - pos: -19.5,-36.5 parent: 2 type: Transform - - uid: 4276 + - uid: 4291 components: - pos: -19.5,-37.5 parent: 2 type: Transform - - uid: 4277 + - uid: 4292 components: - pos: -20.5,-26.5 parent: 2 type: Transform - - uid: 4278 + - uid: 4293 components: - pos: -18.5,-29.5 parent: 2 type: Transform - - uid: 4279 + - uid: 4294 components: - pos: -13.5,-42.5 parent: 2 type: Transform - - uid: 4280 + - uid: 4295 components: - pos: -14.5,-42.5 parent: 2 type: Transform - - uid: 4281 + - uid: 4296 components: - pos: -15.5,-42.5 parent: 2 type: Transform - - uid: 4282 + - uid: 4297 components: - pos: -16.5,-42.5 parent: 2 type: Transform - - uid: 4283 + - uid: 4298 components: - pos: -17.5,-42.5 parent: 2 type: Transform - - uid: 4284 + - uid: 4299 components: - pos: -18.5,-42.5 parent: 2 type: Transform - - uid: 4285 + - uid: 4300 components: - pos: -19.5,-42.5 parent: 2 type: Transform - - uid: 4286 + - uid: 4301 components: - pos: -19.5,-43.5 parent: 2 type: Transform - - uid: 4287 + - uid: 4302 components: - pos: -19.5,-44.5 parent: 2 type: Transform - - uid: 4288 + - uid: 4303 components: - pos: -19.5,-45.5 parent: 2 type: Transform - - uid: 4289 + - uid: 4304 components: - pos: -19.5,-46.5 parent: 2 type: Transform - - uid: 4290 + - uid: 4305 components: - pos: -19.5,-47.5 parent: 2 type: Transform - - uid: 4291 + - uid: 4306 components: - pos: -20.5,-46.5 parent: 2 type: Transform - - uid: 4292 + - uid: 4307 components: - pos: -19.5,-48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4293 + - uid: 4308 components: - pos: -20.5,-42.5 parent: 2 type: Transform - - uid: 4294 + - uid: 4309 components: - pos: -19.5,-41.5 parent: 2 type: Transform - - uid: 4295 + - uid: 4310 components: - pos: 30.5,-89.5 parent: 2 type: Transform - - uid: 4296 + - uid: 4311 components: - pos: 48.5,-72.5 parent: 2 type: Transform - - uid: 4297 + - uid: 4312 components: - pos: 30.5,-90.5 parent: 2 type: Transform - - uid: 4298 + - uid: 4313 components: - pos: -37.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4299 + - uid: 4314 components: - pos: -29.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4300 + - uid: 4315 components: - pos: -30.5,-21.5 parent: 2 type: Transform - - uid: 4301 + - uid: 4316 components: - pos: -31.5,-21.5 parent: 2 type: Transform - - uid: 4302 + - uid: 4317 components: - pos: -32.5,-21.5 parent: 2 type: Transform - - uid: 4303 + - uid: 4318 components: - pos: -32.5,-20.5 parent: 2 type: Transform - - uid: 4304 + - uid: 4319 components: - pos: -32.5,-19.5 parent: 2 type: Transform - - uid: 4305 + - uid: 4320 components: - pos: -32.5,-18.5 parent: 2 type: Transform - - uid: 4306 + - uid: 4321 components: - pos: -32.5,-17.5 parent: 2 type: Transform - - uid: 4307 + - uid: 4322 components: - pos: -32.5,-16.5 parent: 2 type: Transform - - uid: 4308 + - uid: 4323 components: - pos: -32.5,-15.5 parent: 2 type: Transform - - uid: 4309 + - uid: 4324 components: - pos: -32.5,-14.5 parent: 2 type: Transform - - uid: 4310 + - uid: 4325 components: - pos: -32.5,-13.5 parent: 2 type: Transform - - uid: 4311 + - uid: 4326 components: - pos: -32.5,-12.5 parent: 2 type: Transform - - uid: 4312 + - uid: 4327 components: - pos: -32.5,-11.5 parent: 2 type: Transform - - uid: 4313 + - uid: 4328 components: - pos: -32.5,-10.5 parent: 2 type: Transform - - uid: 4314 + - uid: 4329 components: - pos: -38.5,-7.5 parent: 2 type: Transform - - uid: 4315 + - uid: 4330 components: - pos: -31.5,-17.5 parent: 2 type: Transform - - uid: 4316 + - uid: 4331 components: - pos: -33.5,-10.5 parent: 2 type: Transform - - uid: 4317 + - uid: 4332 components: - pos: -34.5,-10.5 parent: 2 type: Transform - - uid: 4318 + - uid: 4333 components: - pos: -35.5,-10.5 parent: 2 type: Transform - - uid: 4319 + - uid: 4334 components: - pos: -36.5,-10.5 parent: 2 type: Transform - - uid: 4320 + - uid: 4335 components: - pos: -37.5,-10.5 parent: 2 type: Transform - - uid: 4321 + - uid: 4336 components: - pos: -38.5,-10.5 parent: 2 type: Transform - - uid: 4322 + - uid: 4337 components: - pos: -39.5,-10.5 parent: 2 type: Transform - - uid: 4323 + - uid: 4338 components: - pos: -37.5,-11.5 parent: 2 type: Transform - - uid: 4324 + - uid: 4339 components: - pos: -37.5,-12.5 parent: 2 type: Transform - - uid: 4325 + - uid: 4340 components: - pos: -37.5,-13.5 parent: 2 type: Transform - - uid: 4326 + - uid: 4341 components: - pos: -38.5,-9.5 parent: 2 type: Transform - - uid: 4327 + - uid: 4342 components: - pos: -35.5,-9.5 parent: 2 type: Transform - - uid: 4328 + - uid: 4343 components: - pos: -38.5,-84.5 parent: 2 type: Transform - - uid: 4329 + - uid: 4344 components: - pos: -33.5,-16.5 parent: 2 type: Transform - - uid: 4330 + - uid: 4345 components: - pos: -34.5,-16.5 parent: 2 type: Transform - - uid: 4331 + - uid: 4346 components: - pos: -35.5,-16.5 parent: 2 type: Transform - - uid: 4332 + - uid: 4347 components: - pos: -36.5,-16.5 parent: 2 type: Transform - - uid: 4333 + - uid: 4348 components: - pos: -36.5,-17.5 parent: 2 type: Transform - - uid: 4334 + - uid: 4349 components: - pos: -35.5,-11.5 parent: 2 type: Transform - - uid: 4335 + - uid: 4350 components: - pos: -35.5,-12.5 parent: 2 type: Transform - - uid: 4336 + - uid: 4351 components: - pos: -32.5,-22.5 parent: 2 type: Transform - - uid: 4337 + - uid: 4352 components: - pos: -32.5,-23.5 parent: 2 type: Transform - - uid: 4338 + - uid: 4353 components: - pos: -32.5,-24.5 parent: 2 type: Transform - - uid: 4339 + - uid: 4354 components: - pos: -32.5,-25.5 parent: 2 type: Transform - - uid: 4340 + - uid: 4355 components: - pos: -32.5,-26.5 parent: 2 type: Transform - - uid: 4341 + - uid: 4356 components: - pos: -32.5,-27.5 parent: 2 type: Transform - - uid: 4342 + - uid: 4357 components: - pos: -32.5,-28.5 parent: 2 type: Transform - - uid: 4343 + - uid: 4358 components: - pos: -40.5,-10.5 parent: 2 type: Transform - - uid: 4344 + - uid: 4359 components: - pos: -41.5,-10.5 parent: 2 type: Transform - - uid: 4345 + - uid: 4360 components: - pos: -41.5,-11.5 parent: 2 type: Transform - - uid: 4346 + - uid: 4361 components: - pos: -41.5,-12.5 parent: 2 type: Transform - - uid: 4347 + - uid: 4362 components: - pos: -41.5,-13.5 parent: 2 type: Transform - - uid: 4348 + - uid: 4363 components: - pos: -41.5,-14.5 parent: 2 type: Transform - - uid: 4349 + - uid: 4364 components: - pos: -41.5,-15.5 parent: 2 type: Transform - - uid: 4350 + - uid: 4365 components: - pos: -41.5,-16.5 parent: 2 type: Transform - - uid: 4351 + - uid: 4366 components: - pos: -40.5,-16.5 parent: 2 type: Transform - - uid: 4352 + - uid: 4367 components: - pos: -31.5,-26.5 parent: 2 type: Transform - - uid: 4353 + - uid: 4368 components: - pos: -30.5,-26.5 parent: 2 type: Transform - - uid: 4354 + - uid: 4369 components: - pos: -29.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4355 + - uid: 4370 components: - pos: -28.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4356 + - uid: 4371 components: - pos: -27.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4357 + - uid: 4372 components: - pos: -26.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4358 + - uid: 4373 components: - pos: -25.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4359 + - uid: 4374 components: - pos: 3.5,-49.5 parent: 2 type: Transform - - uid: 4360 + - uid: 4375 components: - pos: 3.5,-50.5 parent: 2 type: Transform - - uid: 4361 + - uid: 4376 components: - pos: -18.5,14.5 parent: 2 type: Transform - - uid: 4362 + - uid: 4377 components: - pos: -18.5,13.5 parent: 2 type: Transform - - uid: 4363 + - uid: 4378 components: - pos: -18.5,12.5 parent: 2 type: Transform - - uid: 4364 + - uid: 4379 components: - pos: -18.5,11.5 parent: 2 type: Transform - - uid: 4365 + - uid: 4380 components: - pos: -18.5,10.5 parent: 2 type: Transform - - uid: 4366 + - uid: 4381 components: - pos: -18.5,9.5 parent: 2 type: Transform - - uid: 4367 + - uid: 4382 components: - pos: -18.5,8.5 parent: 2 type: Transform - - uid: 4368 + - uid: 4383 components: - pos: -18.5,7.5 parent: 2 type: Transform - - uid: 4369 + - uid: 4384 components: - pos: -17.5,7.5 parent: 2 type: Transform - - uid: 4370 + - uid: 4385 components: - pos: -16.5,7.5 parent: 2 type: Transform - - uid: 4371 + - uid: 4386 components: - pos: -15.5,7.5 parent: 2 type: Transform - - uid: 4372 + - uid: 4387 components: - pos: -14.5,7.5 parent: 2 type: Transform - - uid: 4373 + - uid: 4388 components: - pos: -13.5,7.5 parent: 2 type: Transform - - uid: 4374 + - uid: 4389 components: - pos: -12.5,7.5 parent: 2 type: Transform - - uid: 4375 + - uid: 4390 components: - pos: -12.5,6.5 parent: 2 type: Transform - - uid: 4376 + - uid: 4391 components: - pos: -12.5,5.5 parent: 2 type: Transform - - uid: 4377 + - uid: 4392 components: - pos: -12.5,4.5 parent: 2 type: Transform - - uid: 4378 + - uid: 4393 components: - pos: -12.5,3.5 parent: 2 type: Transform - - uid: 4379 + - uid: 4394 components: - pos: -12.5,2.5 parent: 2 type: Transform - - uid: 4380 + - uid: 4395 components: - pos: -12.5,1.5 parent: 2 type: Transform - - uid: 4381 + - uid: 4396 components: - pos: -12.5,0.5 parent: 2 type: Transform - - uid: 4382 + - uid: 4397 components: - pos: -12.5,-0.5 parent: 2 type: Transform - - uid: 4383 + - uid: 4398 components: - pos: -12.5,-1.5 parent: 2 type: Transform - - uid: 4384 + - uid: 4399 components: - pos: -12.5,-2.5 parent: 2 type: Transform - - uid: 4385 + - uid: 4400 components: - pos: -13.5,-2.5 parent: 2 type: Transform - - uid: 4386 + - uid: 4401 components: - pos: -12.5,-4.5 parent: 2 type: Transform - - uid: 4387 + - uid: 4402 components: - pos: -23.5,7.5 parent: 2 type: Transform - - uid: 4388 + - uid: 4403 components: - pos: -24.5,7.5 parent: 2 type: Transform - - uid: 4389 + - uid: 4404 components: - pos: -25.5,7.5 parent: 2 type: Transform - - uid: 4390 + - uid: 4405 components: - pos: -25.5,6.5 parent: 2 type: Transform - - uid: 4391 + - uid: 4406 components: - pos: -25.5,5.5 parent: 2 type: Transform - - uid: 4392 + - uid: 4407 components: - pos: -25.5,4.5 parent: 2 type: Transform - - uid: 4393 + - uid: 4408 components: - pos: -25.5,3.5 parent: 2 type: Transform - - uid: 4394 + - uid: 4409 components: - pos: -25.5,2.5 parent: 2 type: Transform - - uid: 4395 + - uid: 4410 components: - pos: -16.5,10.5 parent: 2 type: Transform - - uid: 4396 + - uid: 4411 components: - pos: -15.5,10.5 parent: 2 type: Transform - - uid: 4397 + - uid: 4412 components: - pos: -14.5,10.5 parent: 2 type: Transform - - uid: 4398 + - uid: 4413 components: - pos: -14.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4399 + - uid: 4414 components: - pos: -14.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4400 + - uid: 4415 components: - pos: -14.5,13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4401 + - uid: 4416 components: - pos: -14.5,14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4402 + - uid: 4417 components: - pos: -14.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4403 + - uid: 4418 components: - pos: -13.5,15.5 parent: 2 type: Transform - - uid: 4404 + - uid: 4419 components: - pos: -12.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4405 + - uid: 4420 components: - pos: -11.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4406 + - uid: 4421 components: - pos: -10.5,15.5 parent: 2 type: Transform - - uid: 4407 + - uid: 4422 components: - pos: -8.5,16.5 parent: 2 type: Transform - - uid: 4408 + - uid: 4423 components: - pos: -7.5,16.5 parent: 2 type: Transform - - uid: 4409 + - uid: 4424 components: - pos: -6.5,16.5 parent: 2 type: Transform - - uid: 4410 + - uid: 4425 components: - pos: -5.5,16.5 parent: 2 type: Transform - - uid: 4411 + - uid: 4426 components: - pos: -4.5,16.5 parent: 2 type: Transform - - uid: 4412 + - uid: 4427 components: - pos: -42.5,-10.5 parent: 2 type: Transform - - uid: 4413 + - uid: 4428 components: - pos: -43.5,-10.5 parent: 2 type: Transform - - uid: 4414 + - uid: 4429 components: - pos: -44.5,-10.5 parent: 2 type: Transform - - uid: 4415 + - uid: 4430 components: - pos: -45.5,-10.5 parent: 2 type: Transform - - uid: 4416 + - uid: 4431 components: - pos: -46.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4417 + - uid: 4432 components: - pos: -46.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4418 + - uid: 4433 components: - pos: -46.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4419 + - uid: 4434 components: - pos: -46.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4420 + - uid: 4435 components: - pos: -46.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4421 + - uid: 4436 components: - pos: -46.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4422 + - uid: 4437 components: - pos: -46.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4423 + - uid: 4438 components: - pos: -46.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4424 + - uid: 4439 components: - pos: -47.5,-13.5 parent: 2 type: Transform - - uid: 4425 + - uid: 4440 components: - pos: -48.5,-13.5 parent: 2 type: Transform - - uid: 4426 + - uid: 4441 components: - pos: -49.5,-13.5 parent: 2 type: Transform - - uid: 4427 + - uid: 4442 components: - pos: -45.5,-16.5 parent: 2 type: Transform - - uid: 4428 + - uid: 4443 components: - pos: -45.5,-17.5 parent: 2 type: Transform - - uid: 4429 + - uid: 4444 components: - pos: -45.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4430 + - uid: 4445 components: - pos: -45.5,-19.5 parent: 2 type: Transform - - uid: 4431 + - uid: 4446 components: - pos: -45.5,-20.5 parent: 2 type: Transform - - uid: 4432 + - uid: 4447 components: - pos: -45.5,-21.5 parent: 2 type: Transform - - uid: 4433 + - uid: 4448 components: - pos: -46.5,-20.5 parent: 2 type: Transform - - uid: 4434 + - uid: 4449 components: - pos: -47.5,-20.5 parent: 2 type: Transform - - uid: 4435 + - uid: 4450 components: - pos: -47.5,-21.5 parent: 2 type: Transform - - uid: 4436 + - uid: 4451 components: - pos: -45.5,-22.5 parent: 2 type: Transform - - uid: 4437 + - uid: 4452 components: - pos: -48.5,-22.5 parent: 2 type: Transform - - uid: 4438 + - uid: 4453 components: - pos: -47.5,-22.5 parent: 2 type: Transform - - uid: 4439 + - uid: 4454 components: - pos: -38.5,-8.5 parent: 2 type: Transform - - uid: 4440 + - uid: 4455 components: - pos: -35.5,-7.5 parent: 2 type: Transform - - uid: 4441 + - uid: 4456 components: - pos: -35.5,-8.5 parent: 2 type: Transform - - uid: 4442 + - uid: 4457 components: - pos: -34.5,-6.5 parent: 2 type: Transform - - uid: 4443 + - uid: 4458 components: - pos: -35.5,-6.5 parent: 2 type: Transform - - uid: 4444 + - uid: 4459 components: - pos: -36.5,-6.5 parent: 2 type: Transform - - uid: 4445 + - uid: 4460 components: - pos: -37.5,-6.5 parent: 2 type: Transform - - uid: 4446 + - uid: 4461 components: - pos: -38.5,-6.5 parent: 2 type: Transform - - uid: 4447 + - uid: 4462 components: - pos: -39.5,-6.5 parent: 2 type: Transform - - uid: 4448 + - uid: 4463 components: - pos: -40.5,-6.5 parent: 2 type: Transform - - uid: 4449 + - uid: 4464 components: - pos: -41.5,-6.5 parent: 2 type: Transform - - uid: 4450 + - uid: 4465 components: - pos: -38.5,-5.5 parent: 2 type: Transform - - uid: 4451 + - uid: 4466 components: - pos: -55.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4452 + - uid: 4467 components: - pos: -55.5,-30.5 parent: 2 type: Transform - - uid: 4453 + - uid: 4468 components: - pos: -57.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4454 + - uid: 4469 components: - pos: -39.5,-69.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4455 + - uid: 4470 components: - pos: -39.5,-71.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4456 + - uid: 4471 components: - pos: -50.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4457 + - uid: 4472 components: - pos: -50.5,-16.5 parent: 2 type: Transform - - uid: 4458 + - uid: 4473 components: - pos: -51.5,-16.5 parent: 2 type: Transform - - uid: 4459 + - uid: 4474 components: - pos: -51.5,-17.5 parent: 2 type: Transform - - uid: 4460 + - uid: 4475 components: - pos: -51.5,-18.5 parent: 2 type: Transform - - uid: 4461 + - uid: 4476 components: - pos: -51.5,-19.5 parent: 2 type: Transform - - uid: 4462 + - uid: 4477 components: - pos: -51.5,-20.5 parent: 2 type: Transform - - uid: 4463 + - uid: 4478 components: - - pos: -51.5,-21.5 + - pos: -52.5,-23.5 parent: 2 type: Transform - - uid: 4464 + - uid: 4479 components: - pos: -51.5,-22.5 parent: 2 type: Transform - - uid: 4465 + - uid: 4480 components: - pos: -51.5,-23.5 parent: 2 type: Transform - - uid: 4466 + - uid: 4481 components: - pos: -51.5,-24.5 parent: 2 type: Transform - - uid: 4467 + - uid: 4482 components: - pos: -51.5,-25.5 parent: 2 type: Transform - - uid: 4468 + - uid: 4483 components: - pos: -50.5,-25.5 parent: 2 type: Transform - - uid: 4469 + - uid: 4484 components: - pos: -52.5,-19.5 parent: 2 type: Transform - - uid: 4470 + - uid: 4485 components: - pos: -53.5,-19.5 parent: 2 type: Transform - - uid: 4471 + - uid: 4486 components: - pos: -54.5,-19.5 parent: 2 type: Transform - - uid: 4472 + - uid: 4487 components: - pos: -54.5,-20.5 parent: 2 type: Transform - - uid: 4473 + - uid: 4488 components: - pos: -54.5,-21.5 parent: 2 type: Transform - - uid: 4474 + - uid: 4489 components: - pos: -54.5,-22.5 parent: 2 type: Transform - - uid: 4475 + - uid: 4490 components: - pos: -54.5,-23.5 parent: 2 type: Transform - - uid: 4476 + - uid: 4491 components: - pos: -54.5,-24.5 parent: 2 type: Transform - - uid: 4477 + - uid: 4492 components: - pos: -55.5,-24.5 parent: 2 type: Transform - - uid: 4478 + - uid: 4493 components: - pos: -56.5,-24.5 parent: 2 type: Transform - - uid: 4479 + - uid: 4494 components: - pos: -57.5,-24.5 parent: 2 type: Transform - - uid: 4480 + - uid: 4495 components: - pos: -58.5,-24.5 parent: 2 type: Transform - - uid: 4481 + - uid: 4496 components: - pos: -59.5,-24.5 parent: 2 type: Transform - - uid: 4482 + - uid: 4497 components: - pos: -60.5,-24.5 parent: 2 type: Transform - - uid: 4483 + - uid: 4498 components: - pos: -61.5,-24.5 parent: 2 type: Transform - - uid: 4484 + - uid: 4499 components: - pos: -62.5,-24.5 parent: 2 type: Transform - - uid: 4485 + - uid: 4500 components: - pos: -63.5,-24.5 parent: 2 type: Transform - - uid: 4486 + - uid: 4501 components: - pos: -64.5,-24.5 parent: 2 type: Transform - - uid: 4487 + - uid: 4502 components: - pos: -64.5,-25.5 parent: 2 type: Transform - - uid: 4488 + - uid: 4503 components: - pos: -64.5,-26.5 parent: 2 type: Transform - - uid: 4489 + - uid: 4504 components: - pos: -64.5,-27.5 parent: 2 type: Transform - - uid: 4490 + - uid: 4505 components: - pos: -64.5,-28.5 parent: 2 type: Transform - - uid: 4491 + - uid: 4506 components: - pos: -64.5,-29.5 parent: 2 type: Transform - - uid: 4492 + - uid: 4507 components: - pos: -64.5,-30.5 parent: 2 type: Transform - - uid: 4493 + - uid: 4508 components: - pos: -65.5,-30.5 parent: 2 type: Transform - - uid: 4494 + - uid: 4509 components: - pos: -66.5,-30.5 parent: 2 type: Transform - - uid: 4495 + - uid: 4510 components: - pos: -67.5,-30.5 parent: 2 type: Transform - - uid: 4496 + - uid: 4511 components: - pos: -68.5,-30.5 parent: 2 type: Transform - - uid: 4497 + - uid: 4512 components: - pos: -65.5,-30.5 parent: 2 type: Transform - - uid: 4498 + - uid: 4513 components: - pos: -65.5,-31.5 parent: 2 type: Transform - - uid: 4499 + - uid: 4514 components: - pos: -65.5,-32.5 parent: 2 type: Transform - - uid: 4500 + - uid: 4515 components: - pos: -68.5,-31.5 parent: 2 type: Transform - - uid: 4501 + - uid: 4516 components: - pos: -68.5,-28.5 parent: 2 type: Transform - - uid: 4502 + - uid: 4517 components: - pos: -68.5,-27.5 parent: 2 type: Transform - - uid: 4503 + - uid: 4518 components: - pos: -68.5,-26.5 parent: 2 type: Transform - - uid: 4504 + - uid: 4519 components: - pos: -68.5,-29.5 parent: 2 type: Transform - - uid: 4505 + - uid: 4520 components: - pos: -54.5,-18.5 parent: 2 type: Transform - - uid: 4506 + - uid: 4521 components: - pos: -54.5,-17.5 parent: 2 type: Transform - - uid: 4507 + - uid: 4522 components: - pos: -54.5,-16.5 parent: 2 type: Transform - - uid: 4508 + - uid: 4523 components: - pos: -54.5,-15.5 parent: 2 type: Transform - - uid: 4509 + - uid: 4524 components: - pos: -54.5,-14.5 parent: 2 type: Transform - - uid: 4510 + - uid: 4525 components: - pos: -54.5,-13.5 parent: 2 type: Transform - - uid: 4511 + - uid: 4526 components: - pos: -54.5,-12.5 parent: 2 type: Transform - - uid: 4512 + - uid: 4527 components: - pos: -54.5,-11.5 parent: 2 type: Transform - - uid: 4513 + - uid: 4528 components: - pos: -54.5,-10.5 parent: 2 type: Transform - - uid: 4514 + - uid: 4529 components: - pos: -54.5,-9.5 parent: 2 type: Transform - - uid: 4515 + - uid: 4530 components: - pos: -54.5,-8.5 parent: 2 type: Transform - - uid: 4516 + - uid: 4531 components: - pos: -54.5,-7.5 parent: 2 type: Transform - - uid: 4517 + - uid: 4532 components: - pos: -54.5,-6.5 parent: 2 type: Transform - - uid: 4518 + - uid: 4533 components: - pos: -53.5,-7.5 parent: 2 type: Transform - - uid: 4519 + - uid: 4534 components: - pos: -52.5,-7.5 parent: 2 type: Transform - - uid: 4520 + - uid: 4535 components: - pos: -51.5,-7.5 parent: 2 type: Transform - - uid: 4521 + - uid: 4536 components: - pos: -52.5,-6.5 parent: 2 type: Transform - - uid: 4522 + - uid: 4537 components: - pos: -56.5,-28.5 parent: 2 type: Transform - - uid: 4523 + - uid: 4538 components: - pos: -55.5,-29.5 parent: 2 type: Transform - - uid: 4524 + - uid: 4539 components: - pos: -39.5,-70.5 parent: 2 type: Transform - - uid: 4525 + - uid: 4540 components: - pos: 55.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4526 + - uid: 4541 components: - pos: -35.5,-31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4527 + - uid: 4542 components: - pos: -35.5,-32.5 parent: 2 type: Transform - - uid: 4528 + - uid: 4543 components: - pos: -35.5,-33.5 parent: 2 type: Transform - - uid: 4529 + - uid: 4544 components: - pos: -35.5,-34.5 parent: 2 type: Transform - - uid: 4530 + - uid: 4545 components: - pos: -36.5,-34.5 parent: 2 type: Transform - - uid: 4531 + - uid: 4546 components: - pos: -37.5,-34.5 parent: 2 type: Transform - - uid: 4532 + - uid: 4547 components: - pos: -38.5,-34.5 parent: 2 type: Transform - - uid: 4533 + - uid: 4548 components: - pos: -39.5,-34.5 parent: 2 type: Transform - - uid: 4534 + - uid: 4549 components: - pos: -40.5,-34.5 parent: 2 type: Transform - - uid: 4535 + - uid: 4550 components: - pos: -41.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4536 + - uid: 4551 components: - pos: -42.5,-34.5 parent: 2 type: Transform - - uid: 4537 + - uid: 4552 components: - pos: -43.5,-34.5 parent: 2 type: Transform - - uid: 4538 + - uid: 4553 components: - pos: -39.5,-33.5 parent: 2 type: Transform - - uid: 4539 + - uid: 4554 components: - pos: -41.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4540 + - uid: 4555 components: - pos: -41.5,-36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4541 + - uid: 4556 components: - pos: -41.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4542 + - uid: 4557 components: - pos: -41.5,-38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4543 + - uid: 4558 components: - pos: -41.5,-39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4544 + - uid: 4559 components: - pos: -42.5,-39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4545 + - uid: 4560 components: - pos: -43.5,-39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4546 + - uid: 4561 components: - pos: -44.5,-39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4547 + - uid: 4562 components: - pos: -45.5,-39.5 parent: 2 type: Transform - - uid: 4548 + - uid: 4563 components: - pos: -46.5,-39.5 parent: 2 type: Transform - - uid: 4549 + - uid: 4564 components: - pos: -47.5,-39.5 parent: 2 type: Transform - - uid: 4550 + - uid: 4565 components: - pos: -47.5,-40.5 parent: 2 type: Transform - - uid: 4551 + - uid: 4566 components: - pos: -47.5,-41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4552 + - uid: 4567 components: - pos: -48.5,-41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4553 + - uid: 4568 components: - pos: -49.5,-41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4554 + - uid: 4569 components: - pos: -50.5,-41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4555 + - uid: 4570 components: - pos: -51.5,-41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4556 + - uid: 4571 components: - pos: -51.5,-42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4557 + - uid: 4572 components: - pos: -51.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4558 + - uid: 4573 components: - pos: -51.5,-44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4559 + - uid: 4574 components: - pos: -51.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4560 + - uid: 4575 components: - pos: -51.5,-46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4561 + - uid: 4576 components: - pos: -51.5,-47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4562 + - uid: 4577 components: - pos: -51.5,-48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4563 + - uid: 4578 components: - pos: -51.5,-49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4564 + - uid: 4579 components: - pos: -51.5,-50.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4565 + - uid: 4580 components: - pos: -51.5,-51.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4566 + - uid: 4581 components: - pos: -51.5,-52.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4567 + - uid: 4582 components: - pos: -51.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4568 + - uid: 4583 components: - pos: -51.5,-54.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4569 + - uid: 4584 components: - pos: -51.5,-55.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4570 + - uid: 4585 components: - pos: -50.5,-55.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4571 + - uid: 4586 components: - pos: -49.5,-55.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4572 + - uid: 4587 components: - pos: -48.5,-55.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4573 + - uid: 4588 components: - pos: -47.5,-55.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4574 + - uid: 4589 components: - pos: -50.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4575 + - uid: 4590 components: - pos: -49.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4576 + - uid: 4591 components: - pos: -48.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4577 + - uid: 4592 components: - pos: -47.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4578 + - uid: 4593 components: - pos: -50.5,-51.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4579 + - uid: 4594 components: - pos: -49.5,-51.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4580 + - uid: 4595 components: - pos: -48.5,-51.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4581 + - uid: 4596 components: - pos: -47.5,-51.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4582 + - uid: 4597 components: - pos: -50.5,-49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4583 + - uid: 4598 components: - pos: -49.5,-49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4584 + - uid: 4599 components: - pos: -48.5,-49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4585 + - uid: 4600 components: - pos: -47.5,-49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4586 + - uid: 4601 components: - pos: -50.5,-47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4587 + - uid: 4602 components: - pos: -49.5,-47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4588 + - uid: 4603 components: - pos: -48.5,-47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4589 + - uid: 4604 components: - pos: -47.5,-47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4590 + - uid: 4605 components: - pos: -50.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4591 + - uid: 4606 components: - pos: -49.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4592 + - uid: 4607 components: - pos: -48.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4593 + - uid: 4608 components: - pos: -47.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4594 + - uid: 4609 components: - pos: -50.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4595 + - uid: 4610 components: - pos: -49.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4596 + - uid: 4611 components: - pos: -48.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4597 + - uid: 4612 components: - pos: -47.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4598 + - uid: 4613 components: - pos: -38.5,-35.5 parent: 2 type: Transform - - uid: 4599 + - uid: 4614 components: - pos: -38.5,-36.5 parent: 2 type: Transform - - uid: 4600 + - uid: 4615 components: - pos: -38.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4601 + - uid: 4616 components: - pos: -38.5,-38.5 parent: 2 type: Transform - - uid: 4602 + - uid: 4617 components: - pos: -38.5,-39.5 parent: 2 type: Transform - - uid: 4603 + - uid: 4618 components: - pos: -34.5,-34.5 parent: 2 type: Transform - - uid: 4604 + - uid: 4619 components: - pos: -33.5,-34.5 parent: 2 type: Transform - - uid: 4605 + - uid: 4620 components: - pos: -32.5,-34.5 parent: 2 type: Transform - - uid: 4606 + - uid: 4621 components: - pos: -31.5,-34.5 parent: 2 type: Transform - - uid: 4607 + - uid: 4622 components: - pos: -30.5,-34.5 parent: 2 type: Transform - - uid: 4608 + - uid: 4623 components: - pos: -29.5,-34.5 parent: 2 type: Transform - - uid: 4609 + - uid: 4624 components: - pos: -28.5,-34.5 parent: 2 type: Transform - - uid: 4610 + - uid: 4625 components: - pos: -27.5,-34.5 parent: 2 type: Transform - - uid: 4611 + - uid: 4626 components: - pos: -26.5,-34.5 parent: 2 type: Transform - - uid: 4612 + - uid: 4627 components: - pos: -25.5,-34.5 parent: 2 type: Transform - - uid: 4613 + - uid: 4628 components: - pos: -24.5,-34.5 parent: 2 type: Transform - - uid: 4614 + - uid: 4629 components: - pos: -23.5,-34.5 parent: 2 type: Transform - - uid: 4615 + - uid: 4630 components: - pos: -23.5,-33.5 parent: 2 type: Transform - - uid: 4616 + - uid: 4631 components: - pos: -32.5,-33.5 parent: 2 type: Transform - - uid: 4617 + - uid: 4632 components: - pos: -32.5,-32.5 parent: 2 type: Transform - - uid: 4618 + - uid: 4633 components: - pos: -31.5,-35.5 parent: 2 type: Transform - - uid: 4619 + - uid: 4634 components: - pos: -31.5,-36.5 parent: 2 type: Transform - - uid: 4620 + - uid: 4635 components: - pos: -31.5,-37.5 parent: 2 type: Transform - - uid: 4621 + - uid: 4636 components: - pos: -31.5,-38.5 parent: 2 type: Transform - - uid: 4622 + - uid: 4637 components: - pos: -31.5,-39.5 parent: 2 type: Transform - - uid: 4623 + - uid: 4638 components: - pos: -31.5,-40.5 parent: 2 type: Transform - - uid: 4624 + - uid: 4639 components: - pos: -32.5,-40.5 parent: 2 type: Transform - - uid: 4625 + - uid: 4640 components: - pos: -33.5,-40.5 parent: 2 type: Transform - - uid: 4626 + - uid: 4641 components: - pos: -34.5,-40.5 parent: 2 type: Transform - - uid: 4627 + - uid: 4642 components: - pos: -35.5,-40.5 parent: 2 type: Transform - - uid: 4628 + - uid: 4643 components: - pos: -35.5,-41.5 parent: 2 type: Transform - - uid: 4629 + - uid: 4644 components: - pos: -35.5,-42.5 parent: 2 type: Transform - - uid: 4630 + - uid: 4645 components: - pos: -35.5,-43.5 parent: 2 type: Transform - - uid: 4631 + - uid: 4646 components: - pos: -35.5,-44.5 parent: 2 type: Transform - - uid: 4632 + - uid: 4647 components: - pos: -35.5,-45.5 parent: 2 type: Transform - - uid: 4633 + - uid: 4648 components: - pos: -35.5,-46.5 parent: 2 type: Transform - - uid: 4634 + - uid: 4649 components: - pos: -35.5,-47.5 parent: 2 type: Transform - - uid: 4635 + - uid: 4650 components: - pos: -35.5,-48.5 parent: 2 type: Transform - - uid: 4636 + - uid: 4651 components: - pos: -35.5,-49.5 parent: 2 type: Transform - - uid: 4637 + - uid: 4652 components: - pos: -35.5,-50.5 parent: 2 type: Transform - - uid: 4638 + - uid: 4653 components: - pos: -35.5,-51.5 parent: 2 type: Transform - - uid: 4639 + - uid: 4654 components: - pos: -35.5,-52.5 parent: 2 type: Transform - - uid: 4640 + - uid: 4655 components: - pos: -35.5,-53.5 parent: 2 type: Transform - - uid: 4641 + - uid: 4656 components: - pos: -35.5,-54.5 parent: 2 type: Transform - - uid: 4642 + - uid: 4657 components: - pos: -35.5,-55.5 parent: 2 type: Transform - - uid: 4643 + - uid: 4658 components: - pos: -36.5,-43.5 parent: 2 type: Transform - - uid: 4644 + - uid: 4659 components: - pos: -37.5,-43.5 parent: 2 type: Transform - - uid: 4645 + - uid: 4660 components: - pos: -36.5,-46.5 parent: 2 type: Transform - - uid: 4646 + - uid: 4661 components: - pos: -37.5,-46.5 parent: 2 type: Transform - - uid: 4647 + - uid: 4662 components: - pos: 55.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4648 + - uid: 4663 components: - pos: -63.5,-30.5 parent: 2 type: Transform - - uid: 4649 + - uid: 4664 components: - pos: -52.5,-29.5 parent: 2 type: Transform - - uid: 4650 + - uid: 4665 components: - pos: -52.5,-28.5 parent: 2 type: Transform - - uid: 4651 + - uid: 4666 components: - pos: -57.5,-18.5 parent: 2 type: Transform - - uid: 4652 + - uid: 4667 components: - pos: -55.5,-18.5 parent: 2 type: Transform - - uid: 4653 + - uid: 4668 components: - pos: -41.5,-40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4654 + - uid: 4669 components: - pos: -41.5,-41.5 parent: 2 type: Transform - - uid: 4655 + - uid: 4670 components: - pos: -46.5,-40.5 parent: 2 type: Transform - - uid: 4656 + - uid: 4671 components: - pos: -46.5,-41.5 parent: 2 type: Transform - - uid: 4657 + - uid: 4672 components: - pos: -46.5,-42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4658 + - uid: 4673 components: - pos: -46.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4659 + - uid: 4674 components: - pos: -46.5,-44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4660 + - uid: 4675 components: - pos: -46.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4661 + - uid: 4676 components: - pos: -25.5,-73.5 parent: 2 type: Transform - - uid: 4662 + - uid: 4677 components: - pos: -21.5,-42.5 parent: 2 type: Transform - - uid: 4663 + - uid: 4678 components: - pos: -22.5,-42.5 parent: 2 type: Transform - - uid: 4664 + - uid: 4679 components: - pos: -29.5,-73.5 parent: 2 type: Transform - - uid: 4665 + - uid: 4680 components: - pos: -39.5,-66.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4666 + - uid: 4681 components: - pos: -29.5,-64.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4667 + - uid: 4682 components: - pos: -29.5,-65.5 parent: 2 type: Transform - - uid: 4668 + - uid: 4683 components: - pos: -29.5,-66.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4669 + - uid: 4684 components: - pos: -30.5,-66.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4670 + - uid: 4685 components: - pos: -31.5,-66.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4671 + - uid: 4686 components: - pos: -32.5,-66.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4672 + - uid: 4687 components: - pos: -33.5,-66.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4673 + - uid: 4688 components: - pos: -34.5,-66.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4674 + - uid: 4689 components: - pos: -35.5,-66.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4675 + - uid: 4690 components: - pos: -35.5,-65.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4676 + - uid: 4691 components: - pos: -36.5,-65.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4677 + - uid: 4692 components: - pos: -37.5,-65.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4678 + - uid: 4693 components: - pos: -38.5,-65.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4679 + - uid: 4694 components: - pos: -39.5,-65.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4680 + - uid: 4695 components: - pos: -39.5,-64.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4681 + - uid: 4696 components: - pos: -40.5,-64.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4682 + - uid: 4697 components: - pos: -41.5,-64.5 parent: 2 type: Transform - - uid: 4683 + - uid: 4698 components: - pos: -42.5,-64.5 parent: 2 type: Transform - - uid: 4684 + - uid: 4699 components: - pos: -43.5,-64.5 parent: 2 type: Transform - - uid: 4685 + - uid: 4700 components: - pos: -44.5,-64.5 parent: 2 type: Transform - - uid: 4686 + - uid: 4701 components: - pos: -45.5,-64.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4687 + - uid: 4702 components: - pos: -45.5,-63.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4688 + - uid: 4703 components: - pos: -46.5,-63.5 parent: 2 type: Transform - - uid: 4689 + - uid: 4704 components: - pos: -47.5,-63.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4690 + - uid: 4705 components: - pos: -47.5,-64.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4691 + - uid: 4706 components: - pos: -48.5,-64.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4692 + - uid: 4707 components: - pos: -49.5,-64.5 parent: 2 type: Transform - - uid: 4693 + - uid: 4708 components: - pos: -49.5,-65.5 parent: 2 type: Transform - - uid: 4694 + - uid: 4709 components: - pos: -49.5,-66.5 parent: 2 type: Transform - - uid: 4695 + - uid: 4710 components: - pos: -48.5,-66.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4696 + - uid: 4711 components: - pos: -47.5,-66.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4697 + - uid: 4712 components: - pos: -46.5,-66.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4698 + - uid: 4713 components: - pos: -45.5,-66.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4699 + - uid: 4714 components: - pos: -44.5,-66.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4700 + - uid: 4715 components: - pos: -43.5,-66.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4701 + - uid: 4716 components: - pos: -42.5,-66.5 parent: 2 type: Transform - - uid: 4702 + - uid: 4717 components: - pos: -42.5,-68.5 parent: 2 type: Transform - - uid: 4703 + - uid: 4718 components: - pos: -42.5,-69.5 parent: 2 type: Transform - - uid: 4704 + - uid: 4719 components: - pos: -42.5,-70.5 parent: 2 type: Transform - - uid: 4705 + - uid: 4720 components: - pos: -42.5,-71.5 parent: 2 type: Transform - - uid: 4706 + - uid: 4721 components: - pos: -43.5,-71.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4707 + - uid: 4722 components: - pos: -44.5,-71.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4708 + - uid: 4723 components: - pos: -45.5,-71.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4709 + - uid: 4724 components: - pos: -45.5,-72.5 parent: 2 type: Transform - - uid: 4710 + - uid: 4725 components: - pos: -45.5,-73.5 parent: 2 type: Transform - - uid: 4711 + - uid: 4726 components: - pos: -45.5,-74.5 parent: 2 type: Transform - - uid: 4712 + - uid: 4727 components: - pos: -45.5,-75.5 parent: 2 type: Transform - - uid: 4713 + - uid: 4728 components: - pos: -44.5,-75.5 parent: 2 type: Transform - - uid: 4714 + - uid: 4729 components: - pos: -43.5,-75.5 parent: 2 type: Transform - - uid: 4715 + - uid: 4730 components: - pos: -42.5,-76.5 parent: 2 type: Transform - - uid: 4716 + - uid: 4731 components: - pos: -42.5,-75.5 parent: 2 type: Transform - - uid: 4717 + - uid: 4732 components: - pos: -41.5,-76.5 parent: 2 type: Transform - - uid: 4718 + - uid: 4733 components: - pos: -40.5,-76.5 parent: 2 type: Transform - - uid: 4719 + - uid: 4734 components: - pos: -40.5,-75.5 parent: 2 type: Transform - - uid: 4720 + - uid: 4735 components: - pos: -39.5,-75.5 parent: 2 type: Transform - - uid: 4721 + - uid: 4736 components: - pos: -38.5,-75.5 parent: 2 type: Transform - - uid: 4722 + - uid: 4737 components: - pos: -37.5,-75.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4723 + - uid: 4738 components: - pos: -37.5,-76.5 parent: 2 type: Transform - - uid: 4724 + - uid: 4739 components: - pos: -37.5,-77.5 parent: 2 type: Transform - - uid: 4725 + - uid: 4740 components: - pos: -37.5,-78.5 parent: 2 type: Transform - - uid: 4726 + - uid: 4741 components: - pos: -37.5,-79.5 parent: 2 type: Transform - - uid: 4727 + - uid: 4742 components: - pos: -37.5,-80.5 parent: 2 type: Transform - - uid: 4728 + - uid: 4743 components: - pos: -37.5,-81.5 parent: 2 type: Transform - - uid: 4729 + - uid: 4744 components: - pos: -37.5,-82.5 parent: 2 type: Transform - - uid: 4730 + - uid: 4745 components: - pos: -44.5,-85.5 parent: 2 type: Transform - - uid: 4731 + - uid: 4746 components: - pos: -45.5,-85.5 parent: 2 type: Transform - - uid: 4732 + - uid: 4747 components: - pos: -45.5,-84.5 parent: 2 type: Transform - - uid: 4733 + - uid: 4748 components: - pos: -41.5,-85.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4734 + - uid: 4749 components: - pos: -45.5,-83.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4735 + - uid: 4750 components: - pos: -45.5,-82.5 parent: 2 type: Transform - - uid: 4736 + - uid: 4751 components: - pos: -46.5,-82.5 parent: 2 type: Transform - - uid: 4737 + - uid: 4752 components: - pos: -46.5,-83.5 parent: 2 type: Transform - - uid: 4738 + - uid: 4753 components: - pos: -42.5,-85.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4739 + - uid: 4754 components: - pos: -37.5,-83.5 parent: 2 type: Transform - - uid: 4740 + - uid: 4755 components: - pos: -37.5,-84.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4741 + - uid: 4756 components: - pos: -46.5,-81.5 parent: 2 type: Transform - - uid: 4742 + - uid: 4757 components: - pos: -46.5,-80.5 parent: 2 type: Transform - - uid: 4743 + - uid: 4758 components: - pos: -46.5,-79.5 parent: 2 type: Transform - - uid: 4744 + - uid: 4759 components: - pos: -46.5,-78.5 parent: 2 type: Transform - - uid: 4745 + - uid: 4760 components: - pos: -46.5,-77.5 parent: 2 type: Transform - - uid: 4746 + - uid: 4761 components: - pos: -46.5,-76.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4747 + - uid: 4762 components: - pos: -47.5,-76.5 parent: 2 type: Transform - - uid: 4748 + - uid: 4763 components: - pos: -48.5,-76.5 parent: 2 type: Transform - - uid: 4749 + - uid: 4764 components: - pos: -49.5,-76.5 parent: 2 type: Transform - - uid: 4750 + - uid: 4765 components: - pos: -50.5,-76.5 parent: 2 type: Transform - - uid: 4751 + - uid: 4766 components: - pos: -51.5,-76.5 parent: 2 type: Transform - - uid: 4752 + - uid: 4767 components: - pos: -52.5,-76.5 parent: 2 type: Transform - - uid: 4753 + - uid: 4768 components: - pos: -53.5,-76.5 parent: 2 type: Transform - - uid: 4754 + - uid: 4769 components: - pos: -54.5,-76.5 parent: 2 type: Transform - - uid: 4755 + - uid: 4770 components: - pos: -55.5,-76.5 parent: 2 type: Transform - - uid: 4756 + - uid: 4771 components: - pos: -55.5,-77.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4757 + - uid: 4772 components: - pos: -55.5,-78.5 parent: 2 type: Transform - - uid: 4758 + - uid: 4773 components: - pos: -55.5,-79.5 parent: 2 type: Transform - - uid: 4759 + - uid: 4774 components: - pos: -55.5,-80.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4760 + - uid: 4775 components: - pos: -55.5,-81.5 parent: 2 type: Transform - - uid: 4761 + - uid: 4776 components: - pos: -55.5,-75.5 parent: 2 type: Transform - - uid: 4762 + - uid: 4777 components: - pos: -55.5,-74.5 parent: 2 type: Transform - - uid: 4763 + - uid: 4778 components: - pos: -55.5,-73.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4764 + - uid: 4779 components: - pos: -55.5,-72.5 parent: 2 type: Transform - - uid: 4765 + - uid: 4780 components: - pos: -55.5,-71.5 parent: 2 type: Transform - - uid: 4766 + - uid: 4781 components: - pos: -54.5,-73.5 parent: 2 type: Transform - - uid: 4767 + - uid: 4782 components: - pos: -53.5,-73.5 parent: 2 type: Transform - - uid: 4768 + - uid: 4783 components: - pos: -54.5,-79.5 parent: 2 type: Transform - - uid: 4769 + - uid: 4784 components: - pos: -53.5,-79.5 parent: 2 type: Transform - - uid: 4770 + - uid: 4785 components: - pos: -56.5,-71.5 parent: 2 type: Transform - - uid: 4771 + - uid: 4786 components: - pos: -57.5,-71.5 parent: 2 type: Transform - - uid: 4772 + - uid: 4787 components: - pos: -56.5,-73.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4773 + - uid: 4788 components: - pos: -57.5,-73.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4774 + - uid: 4789 components: - pos: -56.5,-79.5 parent: 2 type: Transform - - uid: 4775 + - uid: 4790 components: - pos: -57.5,-79.5 parent: 2 type: Transform - - uid: 4776 + - uid: 4791 components: - pos: -56.5,-81.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4777 + - uid: 4792 components: - pos: -57.5,-81.5 parent: 2 type: Transform - - uid: 4778 + - uid: 4793 components: - pos: -55.5,-82.5 parent: 2 type: Transform - - uid: 4779 + - uid: 4794 components: - pos: -29.5,-63.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4780 + - uid: 4795 components: - pos: -28.5,-63.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4781 + - uid: 4796 components: - pos: -28.5,-62.5 parent: 2 type: Transform - - uid: 4782 + - uid: 4797 components: - pos: -28.5,-61.5 parent: 2 type: Transform - - uid: 4783 + - uid: 4798 components: - pos: -28.5,-60.5 parent: 2 type: Transform - - uid: 4784 + - uid: 4799 components: - pos: -28.5,-59.5 parent: 2 type: Transform - - uid: 4785 + - uid: 4800 components: - pos: -28.5,-58.5 parent: 2 type: Transform - - uid: 4786 + - uid: 4801 components: - pos: -28.5,-57.5 parent: 2 type: Transform - - uid: 4787 + - uid: 4802 components: - pos: -28.5,-56.5 parent: 2 type: Transform - - uid: 4788 + - uid: 4803 components: - pos: -28.5,-55.5 parent: 2 type: Transform - - uid: 4789 + - uid: 4804 components: - pos: -28.5,-54.5 parent: 2 type: Transform - - uid: 4790 + - uid: 4805 components: - pos: -27.5,-54.5 parent: 2 type: Transform - - uid: 4791 + - uid: 4806 components: - pos: -26.5,-54.5 parent: 2 type: Transform - - uid: 4792 + - uid: 4807 components: - pos: -25.5,-54.5 parent: 2 type: Transform - - uid: 4793 + - uid: 4808 components: - pos: -25.5,-53.5 parent: 2 type: Transform - - uid: 4794 + - uid: 4809 components: - pos: -25.5,-52.5 parent: 2 type: Transform - - uid: 4795 + - uid: 4810 components: - pos: -25.5,-51.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4796 + - uid: 4811 components: - pos: -24.5,-51.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4797 + - uid: 4812 components: - pos: -27.5,-63.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4798 + - uid: 4813 components: - pos: -27.5,-64.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4799 + - uid: 4814 components: - pos: -23.5,-64.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4800 + - uid: 4815 components: - pos: -24.5,-64.5 parent: 2 type: Transform - - uid: 4801 + - uid: 4816 components: - pos: -25.5,-64.5 parent: 2 type: Transform - - uid: 4802 + - uid: 4817 components: - pos: -26.5,-64.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4803 + - uid: 4818 components: - pos: -23.5,-66.5 parent: 2 type: Transform - - uid: 4804 + - uid: 4819 components: - pos: -23.5,-65.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4805 + - uid: 4820 components: - pos: -42.5,-72.5 parent: 2 type: Transform - - uid: 4806 + - uid: 4821 components: - pos: -41.5,-72.5 parent: 2 type: Transform - - uid: 4807 + - uid: 4822 components: - pos: -40.5,-72.5 parent: 2 type: Transform - - uid: 4808 + - uid: 4823 components: - pos: -39.5,-72.5 parent: 2 type: Transform - - uid: 4809 + - uid: 4824 components: - pos: -38.5,-72.5 parent: 2 type: Transform - - uid: 4810 + - uid: 4825 components: - pos: -23.5,-42.5 parent: 2 type: Transform - - uid: 4811 + - uid: 4826 components: - pos: -23.5,-43.5 parent: 2 type: Transform - - uid: 4812 + - uid: 4827 components: - pos: -23.5,-44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4813 + - uid: 4828 components: - pos: -23.5,-45.5 parent: 2 type: Transform - - uid: 4814 + - uid: 4829 components: - pos: -23.5,-46.5 parent: 2 type: Transform - - uid: 4815 + - uid: 4830 components: - pos: -23.5,-47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4816 + - uid: 4831 components: - pos: -23.5,-48.5 parent: 2 type: Transform - - uid: 4817 + - uid: 4832 components: - pos: -23.5,-49.5 parent: 2 type: Transform - - uid: 4818 + - uid: 4833 components: - pos: -24.5,-49.5 parent: 2 type: Transform - - uid: 4819 + - uid: 4834 components: - pos: -25.5,-49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4820 + - uid: 4835 components: - pos: -26.5,-49.5 parent: 2 type: Transform - - uid: 4821 + - uid: 4836 components: - pos: -27.5,-49.5 parent: 2 type: Transform - - uid: 4822 + - uid: 4837 components: - pos: -27.5,-48.5 parent: 2 type: Transform - - uid: 4823 + - uid: 4838 components: - pos: -27.5,-47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4824 + - uid: 4839 components: - pos: -27.5,-46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4825 + - uid: 4840 components: - pos: -26.5,-46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4826 + - uid: 4841 components: - pos: -25.5,-46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4827 + - uid: 4842 components: - pos: -25.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4828 + - uid: 4843 components: - pos: -25.5,-44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4829 + - uid: 4844 components: - pos: -25.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4830 + - uid: 4845 components: - pos: -25.5,-42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4831 + - uid: 4846 components: - pos: -25.5,-41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4832 + - uid: 4847 components: - pos: -25.5,-40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4833 + - uid: 4848 components: - pos: -25.5,-39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4834 + - uid: 4849 components: - pos: -26.5,-41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4835 + - uid: 4850 components: - pos: -27.5,-41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4836 + - uid: 4851 components: - pos: -28.5,-41.5 parent: 2 type: Transform - - uid: 4837 + - uid: 4852 components: - pos: -27.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4838 + - uid: 4853 components: - pos: -27.5,-44.5 parent: 2 type: Transform - - uid: 4839 + - uid: 4854 components: - pos: -28.5,-44.5 parent: 2 type: Transform - - uid: 4840 + - uid: 4855 components: - pos: -29.5,-44.5 parent: 2 type: Transform - - uid: 4841 + - uid: 4856 components: - pos: -30.5,-44.5 parent: 2 type: Transform - - uid: 4842 + - uid: 4857 components: - pos: -31.5,-44.5 parent: 2 type: Transform - - uid: 4843 + - uid: 4858 components: - pos: -31.5,-45.5 parent: 2 type: Transform - - uid: 4844 + - uid: 4859 components: - pos: -31.5,-46.5 parent: 2 type: Transform - - uid: 4845 + - uid: 4860 components: - pos: -31.5,-47.5 parent: 2 type: Transform - - uid: 4846 + - uid: 4861 components: - pos: -23.5,-51.5 parent: 2 type: Transform - - uid: 4847 + - uid: 4862 components: - pos: -30.5,-47.5 parent: 2 type: Transform - - uid: 4848 + - uid: 4863 components: - pos: -30.5,-48.5 parent: 2 type: Transform - - uid: 4849 + - uid: 4864 components: - pos: -30.5,-49.5 parent: 2 type: Transform - - uid: 4850 + - uid: 4865 components: - pos: -22.5,-51.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4851 + - uid: 4866 components: - pos: -19.5,-49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4852 + - uid: 4867 components: - pos: -20.5,-49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4853 + - uid: 4868 components: - pos: -22.5,-52.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4854 + - uid: 4869 components: - pos: -22.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4855 + - uid: 4870 components: - pos: -22.5,-54.5 parent: 2 type: Transform - - uid: 4856 + - uid: 4871 components: - pos: -22.5,-55.5 parent: 2 type: Transform - - uid: 4857 + - uid: 4872 components: - pos: -21.5,-52.5 parent: 2 type: Transform - - uid: 4858 + - uid: 4873 components: - pos: -55.5,-60.5 parent: 2 type: Transform - - uid: 4859 + - uid: 4874 components: - pos: 30.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4860 + - uid: 4875 components: - pos: 29.5,-14.5 parent: 2 type: Transform - - uid: 4861 + - uid: 4876 components: - pos: 30.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4862 + - uid: 4877 components: - pos: 30.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4863 + - uid: 4878 components: - pos: -1.5,-79.5 parent: 2 type: Transform - - uid: 4864 + - uid: 4879 components: - pos: 28.5,-25.5 parent: 2 type: Transform - - uid: 4865 + - uid: 4880 components: - pos: -34.5,-55.5 parent: 2 type: Transform - - uid: 4866 + - uid: 4881 components: - pos: -33.5,-26.5 parent: 2 type: Transform - - uid: 4867 + - uid: 4882 components: - pos: -34.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4868 + - uid: 4883 components: - pos: -35.5,-26.5 parent: 2 type: Transform - - uid: 4869 + - uid: 4884 components: - pos: -35.5,-25.5 parent: 2 type: Transform - - uid: 4870 + - uid: 4885 components: - pos: -35.5,-24.5 parent: 2 type: Transform - - uid: 4871 + - uid: 4886 components: - pos: -36.5,-24.5 parent: 2 type: Transform - - uid: 4872 + - uid: 4887 components: - pos: -37.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4873 + - uid: 4888 components: - pos: -37.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4874 + - uid: 4889 components: - pos: -37.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4875 + - uid: 4890 components: - pos: -37.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4876 + - uid: 4891 components: - pos: -38.5,-22.5 parent: 2 type: Transform - - uid: 4877 + - uid: 4892 components: - pos: -39.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4878 + - uid: 4893 components: - pos: -39.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4879 + - uid: 4894 components: - pos: -39.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4880 + - uid: 4895 components: - pos: -40.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4881 + - uid: 4896 components: - pos: -41.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4882 + - uid: 4897 components: - pos: -41.5,-25.5 parent: 2 type: Transform - - uid: 4883 + - uid: 4898 components: - pos: -41.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4884 + - uid: 4899 components: - pos: -43.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4885 + - uid: 4900 components: - pos: -42.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4886 + - uid: 4901 components: - pos: -40.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4887 + - uid: 4902 components: - pos: -39.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4888 + - uid: 4903 components: - pos: -38.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4889 + - uid: 4904 components: - pos: -37.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4890 + - uid: 4905 components: - pos: -37.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4891 + - uid: 4906 components: - pos: -37.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4892 + - uid: 4907 components: - pos: -36.5,-28.5 parent: 2 type: Transform - - uid: 4893 + - uid: 4908 components: - pos: -35.5,-28.5 parent: 2 type: Transform - - uid: 4894 + - uid: 4909 components: - pos: -35.5,-29.5 parent: 2 type: Transform - - uid: 4895 + - uid: 4910 components: - pos: -35.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4896 + - uid: 4911 components: - pos: -44.5,-26.5 parent: 2 type: Transform - - uid: 4897 + - uid: 4912 components: - pos: -44.5,-27.5 parent: 2 type: Transform - - uid: 4898 + - uid: 4913 components: - pos: -45.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4899 + - uid: 4914 components: - pos: -46.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4900 + - uid: 4915 components: - pos: -47.5,-27.5 parent: 2 type: Transform - - uid: 4901 + - uid: 4916 components: - pos: -48.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4902 + - uid: 4917 components: - pos: -48.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4903 + - uid: 4918 components: - pos: -48.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4904 + - uid: 4919 components: - pos: -48.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4905 + - uid: 4920 components: - pos: -48.5,-31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4906 + - uid: 4921 components: - pos: -48.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4907 + - uid: 4922 components: - pos: -50.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4908 + - uid: 4923 components: - pos: -49.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4909 + - uid: 4924 components: - pos: -51.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4910 + - uid: 4925 components: - pos: -52.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4911 + - uid: 4926 components: - pos: -53.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4912 + - uid: 4927 components: - pos: -54.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4913 + - uid: 4928 components: - pos: -55.5,-32.5 parent: 2 type: Transform - - uid: 4914 + - uid: 4929 components: - pos: -55.5,-33.5 parent: 2 type: Transform - - uid: 4915 + - uid: 4930 components: - pos: -55.5,-34.5 parent: 2 type: Transform - - uid: 4916 + - uid: 4931 components: - pos: -55.5,-35.5 parent: 2 type: Transform - - uid: 4917 + - uid: 4932 components: - pos: -55.5,-36.5 parent: 2 type: Transform - - uid: 4918 + - uid: 4933 components: - pos: -55.5,-37.5 parent: 2 type: Transform - - uid: 4919 + - uid: 4934 components: - pos: -55.5,-38.5 parent: 2 type: Transform - - uid: 4920 + - uid: 4935 components: - pos: -55.5,-39.5 parent: 2 type: Transform - - uid: 4921 + - uid: 4936 components: - pos: -56.5,-39.5 parent: 2 type: Transform - - uid: 4922 + - uid: 4937 components: - pos: -56.5,-40.5 parent: 2 type: Transform - - uid: 4923 + - uid: 4938 components: - pos: -56.5,-41.5 parent: 2 type: Transform - - uid: 4924 + - uid: 4939 components: - pos: -56.5,-42.5 parent: 2 type: Transform - - uid: 4925 + - uid: 4940 components: - pos: -56.5,-43.5 parent: 2 type: Transform - - uid: 4926 + - uid: 4941 components: - pos: -56.5,-44.5 parent: 2 type: Transform - - uid: 4927 + - uid: 4942 components: - pos: -56.5,-45.5 parent: 2 type: Transform - - uid: 4928 + - uid: 4943 components: - pos: -56.5,-46.5 parent: 2 type: Transform - - uid: 4929 + - uid: 4944 components: - pos: -56.5,-47.5 parent: 2 type: Transform - - uid: 4930 + - uid: 4945 components: - pos: -56.5,-48.5 parent: 2 type: Transform - - uid: 4931 + - uid: 4946 components: - pos: -56.5,-49.5 parent: 2 type: Transform - - uid: 4932 + - uid: 4947 components: - pos: -56.5,-50.5 parent: 2 type: Transform - - uid: 4933 + - uid: 4948 components: - pos: -56.5,-51.5 parent: 2 type: Transform - - uid: 4934 + - uid: 4949 components: - pos: -56.5,-52.5 parent: 2 type: Transform - - uid: 4935 + - uid: 4950 components: - pos: -56.5,-53.5 parent: 2 type: Transform - - uid: 4936 + - uid: 4951 components: - pos: -56.5,-54.5 parent: 2 type: Transform - - uid: 4937 + - uid: 4952 components: - pos: -56.5,-55.5 parent: 2 type: Transform - - uid: 4938 + - uid: 4953 components: - pos: -56.5,-56.5 parent: 2 type: Transform - - uid: 4939 + - uid: 4954 components: - pos: -56.5,-57.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4940 + - uid: 4955 components: - pos: -56.5,-58.5 parent: 2 type: Transform - - uid: 4941 + - uid: 4956 components: - pos: -57.5,-58.5 parent: 2 type: Transform - - uid: 4942 + - uid: 4957 components: - pos: -57.5,-59.5 parent: 2 type: Transform - - uid: 4943 + - uid: 4958 components: - pos: -50.5,-64.5 parent: 2 type: Transform - - uid: 4944 + - uid: 4959 components: - pos: -50.5,-63.5 parent: 2 type: Transform - - uid: 4945 + - uid: 4960 components: - pos: -51.5,-63.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4946 + - uid: 4961 components: - pos: -55.5,-58.5 parent: 2 type: Transform - - uid: 4947 + - uid: 4962 components: - pos: -55.5,-59.5 parent: 2 type: Transform - - uid: 4948 + - uid: 4963 components: - pos: -55.5,-61.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4949 + - uid: 4964 components: - pos: -36.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4950 + - uid: 4965 components: - pos: -38.5,-28.5 parent: 2 type: Transform - - uid: 4951 + - uid: 4966 components: - pos: -38.5,-30.5 parent: 2 type: Transform - - uid: 4952 + - uid: 4967 components: - pos: -39.5,-30.5 parent: 2 type: Transform - - uid: 4953 + - uid: 4968 components: - pos: -40.5,-30.5 parent: 2 type: Transform - - uid: 4954 + - uid: 4969 components: - pos: -41.5,-30.5 parent: 2 type: Transform - - uid: 4955 + - uid: 4970 components: - pos: -41.5,-29.5 parent: 2 type: Transform - - uid: 4956 + - uid: 4971 components: - pos: -56.5,-85.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4957 + - uid: 4972 components: - pos: -56.5,-86.5 parent: 2 type: Transform - - uid: 4958 + - uid: 4973 components: - pos: -56.5,-87.5 parent: 2 type: Transform - - uid: 4959 + - uid: 4974 components: - pos: -55.5,-87.5 parent: 2 type: Transform - - uid: 4960 + - uid: 4975 components: - pos: -54.5,-87.5 parent: 2 type: Transform - - uid: 4961 + - uid: 4976 components: - pos: -53.5,-87.5 parent: 2 type: Transform - - uid: 4962 + - uid: 4977 components: - pos: -52.5,-87.5 parent: 2 type: Transform - - uid: 4963 + - uid: 4978 components: - pos: -54.5,-86.5 parent: 2 type: Transform - - uid: 4964 + - uid: 4979 components: - pos: -54.5,-85.5 parent: 2 type: Transform - - uid: 4965 + - uid: 4980 components: - pos: -54.5,-88.5 parent: 2 type: Transform - - uid: 4966 + - uid: 4981 components: - pos: -54.5,-89.5 parent: 2 type: Transform - - uid: 4967 + - uid: 4982 components: - pos: -55.5,-85.5 parent: 2 type: Transform - - uid: 4968 + - uid: 4983 components: - pos: 33.5,22.5 parent: 2 type: Transform - - uid: 4969 + - uid: 4984 components: - pos: 34.5,22.5 parent: 2 type: Transform - - uid: 4970 + - uid: 4985 components: - pos: 35.5,22.5 parent: 2 type: Transform - - uid: 4971 + - uid: 4986 components: - pos: 36.5,22.5 parent: 2 type: Transform - - uid: 4972 + - uid: 4987 components: - pos: 36.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4973 + - uid: 4988 components: - pos: 37.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4974 + - uid: 4989 components: - pos: 38.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4975 + - uid: 4990 components: - pos: 39.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4976 + - uid: 4991 components: - pos: 40.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4977 + - uid: 4992 components: - pos: 42.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4978 + - uid: 4993 components: - pos: 44.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4979 + - uid: 4994 components: - pos: 43.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4980 + - uid: 4995 components: - pos: 44.5,24.5 parent: 2 type: Transform - - uid: 4981 + - uid: 4996 components: - pos: 44.5,25.5 parent: 2 type: Transform - - uid: 4982 + - uid: 4997 components: - pos: 44.5,26.5 parent: 2 type: Transform - - uid: 4983 + - uid: 4998 components: - pos: 47.5,26.5 parent: 2 type: Transform - - uid: 4984 + - uid: 4999 components: - pos: 48.5,26.5 parent: 2 type: Transform - - uid: 4985 + - uid: 5000 components: - pos: 49.5,26.5 parent: 2 type: Transform - - uid: 4986 + - uid: 5001 components: - pos: 50.5,26.5 parent: 2 type: Transform - - uid: 4987 + - uid: 5002 components: - pos: 51.5,26.5 parent: 2 type: Transform - - uid: 4988 + - uid: 5003 components: - pos: 52.5,26.5 parent: 2 type: Transform - - uid: 4989 + - uid: 5004 components: - pos: 53.5,26.5 parent: 2 type: Transform - - uid: 4990 + - uid: 5005 components: - pos: 54.5,26.5 parent: 2 type: Transform - - uid: 4991 + - uid: 5006 components: - pos: 55.5,26.5 parent: 2 type: Transform - - uid: 4992 + - uid: 5007 components: - pos: 56.5,26.5 parent: 2 type: Transform - - uid: 4993 + - uid: 5008 components: - pos: 57.5,26.5 parent: 2 type: Transform - - uid: 4994 + - uid: 5009 components: - pos: 58.5,26.5 parent: 2 type: Transform - - uid: 4995 + - uid: 5010 components: - pos: 59.5,26.5 parent: 2 type: Transform - - uid: 4996 + - uid: 5011 components: - pos: 60.5,26.5 parent: 2 type: Transform - - uid: 4997 + - uid: 5012 components: - pos: 63.5,5.5 parent: 2 type: Transform - - uid: 4998 + - uid: 5013 components: - pos: 64.5,5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 4999 + - uid: 5014 components: - pos: 65.5,5.5 parent: 2 type: Transform - - uid: 5000 + - uid: 5015 components: - pos: 65.5,4.5 parent: 2 type: Transform - - uid: 5001 + - uid: 5016 components: - pos: 65.5,6.5 parent: 2 type: Transform - - uid: 5002 + - uid: 5017 components: - pos: 65.5,7.5 parent: 2 type: Transform - - uid: 5003 + - uid: 5018 components: - pos: 65.5,8.5 parent: 2 type: Transform - - uid: 5004 + - uid: 5019 components: - pos: 65.5,9.5 parent: 2 type: Transform - - uid: 5005 + - uid: 5020 components: - pos: 65.5,10.5 parent: 2 type: Transform - - uid: 5006 + - uid: 5021 components: - pos: 65.5,11.5 parent: 2 type: Transform - - uid: 5007 + - uid: 5022 components: - pos: 65.5,12.5 parent: 2 type: Transform - - uid: 5008 + - uid: 5023 components: - pos: 65.5,13.5 parent: 2 type: Transform - - uid: 5009 + - uid: 5024 components: - pos: 65.5,14.5 parent: 2 type: Transform - - uid: 5010 + - uid: 5025 components: - pos: 65.5,15.5 parent: 2 type: Transform - - uid: 5011 + - uid: 5026 components: - pos: 53.5,27.5 parent: 2 type: Transform - - uid: 5012 + - uid: 5027 components: - pos: -25.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5013 + - uid: 5028 components: - pos: -25.5,-28.5 parent: 2 type: Transform - - uid: 5014 + - uid: 5029 components: - pos: -25.5,-29.5 parent: 2 type: Transform - - uid: 5015 + - uid: 5030 components: - pos: -26.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5016 + - uid: 5031 components: - pos: -28.5,-29.5 parent: 2 type: Transform - - uid: 5017 + - uid: 5032 components: - pos: -27.5,-29.5 parent: 2 type: Transform - - uid: 5018 + - uid: 5033 components: - pos: -24.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5019 + - uid: 5034 components: - pos: 8.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5020 + - uid: 5035 components: - pos: 7.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5021 + - uid: 5036 components: - pos: 6.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5022 + - uid: 5037 components: - pos: 5.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5023 + - uid: 5038 components: - pos: 4.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5024 + - uid: 5039 components: - pos: 4.5,-15.5 parent: 2 type: Transform - - uid: 5025 + - uid: 5040 components: - pos: 4.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5026 + - uid: 5041 components: - pos: 3.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5027 + - uid: 5042 components: - pos: 2.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5028 + - uid: 5043 components: - pos: 1.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5029 + - uid: 5044 components: - pos: 0.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5030 + - uid: 5045 components: - pos: 2.5,-14.5 parent: 2 type: Transform - - uid: 5031 + - uid: 5046 components: - pos: 3.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5032 + - uid: 5047 components: - pos: 1.5,-14.5 parent: 2 type: Transform - - uid: 5033 + - uid: 5048 components: - pos: 0.5,-14.5 parent: 2 type: Transform - - uid: 5034 + - uid: 5049 components: - pos: -0.5,-14.5 parent: 2 type: Transform - - uid: 5035 + - uid: 5050 components: - pos: -0.5,-13.5 parent: 2 type: Transform - - uid: 5036 + - uid: 5051 components: - pos: -0.5,-12.5 parent: 2 type: Transform - - uid: 5037 + - uid: 5052 components: - pos: -0.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5038 + - uid: 5053 components: - pos: -0.5,-9.5 parent: 2 type: Transform - - uid: 5039 + - uid: 5054 components: - pos: -0.5,-10.5 parent: 2 type: Transform - - uid: 5040 + - uid: 5055 components: - pos: 0.5,35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5041 + - uid: 5056 components: - pos: 0.5,34.5 parent: 2 type: Transform - - uid: 5042 + - uid: 5057 components: - pos: 0.5,33.5 parent: 2 type: Transform - - uid: 5043 + - uid: 5058 components: - pos: 0.5,32.5 parent: 2 type: Transform - - uid: 5044 + - uid: 5059 components: - pos: 1.5,32.5 parent: 2 type: Transform - - uid: 5045 + - uid: 5060 components: - pos: 2.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5046 + - uid: 5061 components: - pos: 13.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5047 + - uid: 5062 components: - pos: 14.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5048 + - uid: 5063 components: - pos: 15.5,32.5 parent: 2 type: Transform - - uid: 5049 + - uid: 5064 components: - pos: 16.5,32.5 parent: 2 type: Transform - - uid: 5050 + - uid: 5065 components: - pos: 16.5,33.5 parent: 2 type: Transform - - uid: 5051 + - uid: 5066 components: - pos: 16.5,34.5 parent: 2 type: Transform - - uid: 5052 + - uid: 5067 components: - pos: 16.5,31.5 parent: 2 type: Transform - - uid: 5053 + - uid: 5068 components: - pos: 16.5,30.5 parent: 2 type: Transform - - uid: 5054 + - uid: 5069 components: - pos: 16.5,29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5055 + - uid: 5070 components: - pos: 16.5,28.5 parent: 2 type: Transform - - uid: 5056 + - uid: 5071 components: - pos: 16.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5057 + - uid: 5072 components: - pos: 16.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5058 + - uid: 5073 components: - pos: 16.5,25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5059 + - uid: 5074 components: - pos: 15.5,25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5060 + - uid: 5075 components: - pos: 14.5,25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5061 + - uid: 5076 components: - pos: 13.5,25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5062 + - uid: 5077 components: - pos: 12.5,25.5 parent: 2 type: Transform - - uid: 5063 + - uid: 5078 components: - pos: 11.5,25.5 parent: 2 type: Transform - - uid: 5064 + - uid: 5079 components: - - pos: 11.5,24.5 + - pos: 8.5,25.5 parent: 2 type: Transform - - uid: 5065 + - uid: 5080 components: - - pos: 10.5,24.5 + - pos: 9.5,25.5 parent: 2 type: Transform - - uid: 5066 + - uid: 5081 components: - - pos: 9.5,24.5 + - pos: 10.5,25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5067 + - uid: 5082 components: - pos: 8.5,24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5068 + - uid: 5083 components: - pos: 7.5,24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5069 + - uid: 5084 components: - pos: 6.5,24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5070 + - uid: 5085 components: - pos: 5.5,24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5071 + - uid: 5086 components: - pos: 4.5,24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5072 + - uid: 5087 components: - pos: 3.5,24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5073 + - uid: 5088 components: - pos: 2.5,24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5074 + - uid: 5089 components: - pos: 1.5,24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5075 + - uid: 5090 components: - pos: 0.5,24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5076 + - uid: 5091 components: - pos: -0.5,24.5 parent: 2 type: Transform - - uid: 5077 + - uid: 5092 components: - pos: -1.5,24.5 parent: 2 type: Transform - - uid: 5078 + - uid: 5093 components: - pos: -0.5,32.5 parent: 2 type: Transform - - uid: 5079 + - uid: 5094 components: - pos: -1.5,32.5 parent: 2 type: Transform - - uid: 5080 + - uid: 5095 components: - pos: -2.5,32.5 parent: 2 type: Transform - - uid: 5081 + - uid: 5096 components: - pos: -3.5,32.5 parent: 2 type: Transform - - uid: 5082 + - uid: 5097 components: - pos: -4.5,32.5 parent: 2 type: Transform - - uid: 5083 + - uid: 5098 components: - pos: -5.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5084 + - uid: 5099 components: - pos: -6.5,32.5 parent: 2 type: Transform - - uid: 5085 + - uid: 5100 components: - pos: -7.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5086 + - uid: 5101 components: - pos: -8.5,32.5 parent: 2 type: Transform - - uid: 5087 + - uid: 5102 components: - pos: -8.5,31.5 parent: 2 type: Transform - - uid: 5088 + - uid: 5103 components: - pos: -8.5,30.5 parent: 2 type: Transform - - uid: 5089 + - uid: 5104 components: - pos: -8.5,29.5 parent: 2 type: Transform - - uid: 5090 + - uid: 5105 components: - pos: -8.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5091 + - uid: 5106 components: - pos: -8.5,27.5 parent: 2 type: Transform - - uid: 5092 + - uid: 5107 components: - pos: -8.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5093 + - uid: 5108 components: - pos: -12.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5094 + - uid: 5109 components: - pos: -8.5,23.5 parent: 2 type: Transform - - uid: 5095 + - uid: 5110 components: - pos: -1.5,33.5 parent: 2 type: Transform - - uid: 5096 + - uid: 5111 components: - pos: -1.5,34.5 parent: 2 type: Transform - - uid: 5097 + - uid: 5112 components: - pos: -1.5,31.5 parent: 2 type: Transform - - uid: 5098 + - uid: 5113 components: - pos: -15.5,26.5 parent: 2 type: Transform - - uid: 5099 + - uid: 5114 components: - pos: -11.5,28.5 parent: 2 type: Transform - - uid: 5100 + - uid: 5115 components: - pos: -11.5,29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5101 + - uid: 5116 components: - pos: -68.5,-25.5 parent: 2 type: Transform - - uid: 5102 + - uid: 5117 components: - pos: -68.5,-24.5 parent: 2 type: Transform - - uid: 5103 + - uid: 5118 components: - pos: -68.5,-23.5 parent: 2 type: Transform - - uid: 5104 + - uid: 5119 components: - pos: -69.5,-23.5 parent: 2 type: Transform - - uid: 5105 + - uid: 5120 components: - pos: -70.5,-23.5 parent: 2 type: Transform - - uid: 5106 + - uid: 5121 components: - pos: -71.5,-23.5 parent: 2 type: Transform - - uid: 5107 + - uid: 5122 components: - pos: -72.5,-23.5 parent: 2 type: Transform - - uid: 5108 + - uid: 5123 components: - pos: -73.5,-23.5 parent: 2 type: Transform - - uid: 5109 + - uid: 5124 components: - pos: -72.5,-24.5 parent: 2 type: Transform - - uid: 5110 + - uid: 5125 components: - pos: -72.5,-25.5 parent: 2 type: Transform - - uid: 5111 + - uid: 5126 components: - pos: -74.5,-23.5 parent: 2 type: Transform - - uid: 5112 + - uid: 5127 components: - pos: -74.5,-24.5 parent: 2 type: Transform - - uid: 5113 + - uid: 5128 components: - pos: -42.5,-6.5 parent: 2 type: Transform - - uid: 5114 + - uid: 5129 components: - pos: -43.5,-6.5 parent: 2 type: Transform - - uid: 5115 + - uid: 5130 components: - pos: -44.5,-6.5 parent: 2 type: Transform - - uid: 5116 + - uid: 5131 components: - pos: -45.5,-6.5 parent: 2 type: Transform - - uid: 5117 + - uid: 5132 components: - pos: -46.5,-6.5 parent: 2 type: Transform - - uid: 5118 + - uid: 5133 components: - pos: -47.5,-6.5 parent: 2 type: Transform - - uid: 5119 + - uid: 5134 components: - pos: -48.5,-6.5 parent: 2 type: Transform - - uid: 5120 + - uid: 5135 components: - pos: -42.5,16.5 parent: 2 type: Transform - - uid: 5121 + - uid: 5136 components: - pos: -9.5,24.5 parent: 2 type: Transform - - uid: 5122 + - uid: 5137 components: - pos: -10.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5123 + - uid: 5138 components: - pos: -9.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5124 + - uid: 5139 components: - pos: -9.5,25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5125 + - uid: 5140 components: - pos: -9.5,23.5 parent: 2 type: Transform - - uid: 5126 + - uid: 5141 components: - pos: -14.5,26.5 parent: 2 type: Transform - - uid: 5127 + - uid: 5142 components: - pos: -11.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5128 + - uid: 5143 components: - pos: 21.5,22.5 parent: 2 type: Transform - - uid: 5129 + - uid: 5144 components: - pos: 21.5,23.5 parent: 2 type: Transform - - uid: 5130 + - uid: 5145 components: - pos: -18.5,15.5 parent: 2 type: Transform - - uid: 5131 + - uid: 5146 components: - pos: -18.5,16.5 parent: 2 type: Transform - - uid: 5132 + - uid: 5147 components: - pos: -18.5,17.5 parent: 2 type: Transform - - uid: 5133 + - uid: 5148 components: - pos: -18.5,18.5 parent: 2 type: Transform - - uid: 5134 + - uid: 5149 components: - pos: -18.5,19.5 parent: 2 type: Transform - - uid: 5135 + - uid: 5150 components: - pos: -18.5,20.5 parent: 2 type: Transform - - uid: 5136 + - uid: 5151 components: - pos: -18.5,21.5 parent: 2 type: Transform - - uid: 5137 + - uid: 5152 components: - pos: -19.5,21.5 parent: 2 type: Transform - - uid: 5138 + - uid: 5153 components: - pos: -20.5,21.5 parent: 2 type: Transform - - uid: 5139 + - uid: 5154 components: - pos: -21.5,21.5 parent: 2 type: Transform - - uid: 5140 + - uid: 5155 components: - pos: -22.5,21.5 parent: 2 type: Transform - - uid: 5141 + - uid: 5156 components: - pos: -23.5,21.5 parent: 2 type: Transform - - uid: 5142 + - uid: 5157 components: - pos: -23.5,22.5 parent: 2 type: Transform - - uid: 5143 + - uid: 5158 components: - pos: -23.5,23.5 parent: 2 type: Transform - - uid: 5144 + - uid: 5159 components: - pos: -23.5,24.5 parent: 2 type: Transform - - uid: 5145 + - uid: 5160 components: - pos: -23.5,25.5 parent: 2 type: Transform - - uid: 5146 + - uid: 5161 components: - pos: -23.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5147 + - uid: 5162 components: - pos: -24.5,21.5 parent: 2 type: Transform - - uid: 5148 + - uid: 5163 components: - pos: -25.5,21.5 parent: 2 type: Transform - - uid: 5149 + - uid: 5164 components: - pos: -26.5,21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5150 + - uid: 5165 components: - pos: -27.5,21.5 parent: 2 type: Transform - - uid: 5151 + - uid: 5166 components: - pos: -28.5,21.5 parent: 2 type: Transform - - uid: 5152 + - uid: 5167 components: - pos: -28.5,22.5 parent: 2 type: Transform - - uid: 5153 + - uid: 5168 components: - pos: -29.5,22.5 parent: 2 type: Transform - - uid: 5154 + - uid: 5169 components: - pos: -30.5,22.5 parent: 2 type: Transform - - uid: 5155 + - uid: 5170 components: - pos: -31.5,22.5 parent: 2 type: Transform - - uid: 5156 + - uid: 5171 components: - pos: -32.5,22.5 parent: 2 type: Transform - - uid: 5157 + - uid: 5172 components: - pos: -32.5,23.5 parent: 2 type: Transform - - uid: 5158 + - uid: 5173 components: - pos: -32.5,24.5 parent: 2 type: Transform - - uid: 5159 + - uid: 5174 components: - pos: -32.5,25.5 parent: 2 type: Transform - - uid: 5160 + - uid: 5175 components: - pos: -32.5,26.5 parent: 2 type: Transform - - uid: 5161 + - uid: 5176 components: - pos: -32.5,27.5 parent: 2 type: Transform - - uid: 5162 + - uid: 5177 components: - pos: -31.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5163 + - uid: 5178 components: - pos: -30.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5164 + - uid: 5179 components: - pos: -33.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5165 + - uid: 5180 components: - pos: -32.5,28.5 parent: 2 type: Transform - - uid: 5166 + - uid: 5181 components: - pos: -32.5,29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5167 + - uid: 5182 components: - pos: -32.5,30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5168 + - uid: 5183 components: - pos: -33.5,30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5169 + - uid: 5184 components: - pos: -33.5,25.5 parent: 2 type: Transform - - uid: 5170 + - uid: 5185 components: - pos: -34.5,25.5 parent: 2 type: Transform - - uid: 5171 + - uid: 5186 components: - pos: -35.5,25.5 parent: 2 type: Transform - - uid: 5172 + - uid: 5187 components: - pos: -36.5,25.5 parent: 2 type: Transform - - uid: 5173 + - uid: 5188 components: - pos: -37.5,25.5 parent: 2 type: Transform - - uid: 5174 + - uid: 5189 components: - pos: -38.5,25.5 parent: 2 type: Transform - - uid: 5175 + - uid: 5190 components: - pos: -38.5,24.5 parent: 2 type: Transform - - uid: 5176 + - uid: 5191 components: - pos: -38.5,23.5 parent: 2 type: Transform - - uid: 5177 + - uid: 5192 components: - pos: -38.5,22.5 parent: 2 type: Transform - - uid: 5178 + - uid: 5193 components: - pos: -39.5,22.5 parent: 2 type: Transform - - uid: 5179 + - uid: 5194 components: - pos: -40.5,22.5 parent: 2 type: Transform - - uid: 5180 + - uid: 5195 components: - pos: -41.5,22.5 parent: 2 type: Transform - - uid: 5181 + - uid: 5196 components: - pos: -42.5,22.5 parent: 2 type: Transform - - uid: 5182 + - uid: 5197 components: - pos: -43.5,22.5 parent: 2 type: Transform - - uid: 5183 + - uid: 5198 components: - pos: -44.5,22.5 parent: 2 type: Transform - - uid: 5184 + - uid: 5199 components: - pos: -45.5,22.5 parent: 2 type: Transform - - uid: 5185 + - uid: 5200 components: - pos: -46.5,22.5 parent: 2 type: Transform - - uid: 5186 + - uid: 5201 components: - pos: -47.5,22.5 parent: 2 type: Transform - - uid: 5187 + - uid: 5202 components: - pos: -48.5,22.5 parent: 2 type: Transform - - uid: 5188 + - uid: 5203 components: - pos: -49.5,22.5 parent: 2 type: Transform - - uid: 5189 + - uid: 5204 components: - pos: -50.5,22.5 parent: 2 type: Transform - - uid: 5190 + - uid: 5205 components: - pos: -32.5,21.5 parent: 2 type: Transform - - uid: 5191 + - uid: 5206 components: - pos: -32.5,20.5 parent: 2 type: Transform - - uid: 5192 + - uid: 5207 components: - pos: -32.5,19.5 parent: 2 type: Transform - - uid: 5193 + - uid: 5208 components: - pos: -32.5,18.5 parent: 2 type: Transform - - uid: 5194 + - uid: 5209 components: - pos: -33.5,18.5 parent: 2 type: Transform - - uid: 5195 + - uid: 5210 components: - pos: -34.5,18.5 parent: 2 type: Transform - - uid: 5196 + - uid: 5211 components: - pos: -35.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5197 + - uid: 5212 components: - pos: -36.5,18.5 parent: 2 type: Transform - - uid: 5198 + - uid: 5213 components: - pos: -37.5,18.5 parent: 2 type: Transform - - uid: 5199 + - uid: 5214 components: - pos: -38.5,18.5 parent: 2 type: Transform - - uid: 5200 + - uid: 5215 components: - pos: -39.5,18.5 parent: 2 type: Transform - - uid: 5201 + - uid: 5216 components: - pos: -40.5,18.5 parent: 2 type: Transform - - uid: 5202 + - uid: 5217 components: - pos: -41.5,18.5 parent: 2 type: Transform - - uid: 5203 + - uid: 5218 components: - pos: -42.5,18.5 parent: 2 type: Transform - - uid: 5204 + - uid: 5219 components: - pos: -43.5,18.5 parent: 2 type: Transform - - uid: 5205 + - uid: 5220 components: - pos: -44.5,18.5 parent: 2 type: Transform - - uid: 5206 + - uid: 5221 components: - pos: -45.5,18.5 parent: 2 type: Transform - - uid: 5207 + - uid: 5222 components: - pos: -46.5,18.5 parent: 2 type: Transform - - uid: 5208 + - uid: 5223 components: - pos: -47.5,18.5 parent: 2 type: Transform - - uid: 5209 + - uid: 5224 components: - pos: -37.5,19.5 parent: 2 type: Transform - - uid: 5210 + - uid: 5225 components: - pos: -37.5,20.5 parent: 2 type: Transform - - uid: 5211 + - uid: 5226 components: - pos: -37.5,21.5 parent: 2 type: Transform - - uid: 5212 + - uid: 5227 components: - pos: -36.5,21.5 parent: 2 type: Transform - - uid: 5213 + - uid: 5228 components: - pos: -36.5,22.5 parent: 2 type: Transform - - uid: 5214 + - uid: 5229 components: - pos: -47.5,19.5 parent: 2 type: Transform - - uid: 5215 + - uid: 5230 components: - pos: -48.5,19.5 parent: 2 type: Transform - - uid: 5216 + - uid: 5231 components: - pos: -49.5,19.5 parent: 2 type: Transform - - uid: 5217 + - uid: 5232 components: - pos: -50.5,19.5 parent: 2 type: Transform - - uid: 5218 + - uid: 5233 components: - pos: -46.5,23.5 parent: 2 type: Transform - - uid: 5219 + - uid: 5234 components: - pos: -46.5,24.5 parent: 2 type: Transform - - uid: 5220 + - uid: 5235 components: - pos: -46.5,25.5 parent: 2 type: Transform - - uid: 5221 + - uid: 5236 components: - pos: -46.5,26.5 parent: 2 type: Transform - - uid: 5222 + - uid: 5237 components: - pos: -43.5,19.5 parent: 2 type: Transform - - uid: 5223 + - uid: 5238 components: - pos: -41.5,19.5 parent: 2 type: Transform - - uid: 5224 + - uid: 5239 components: - pos: -31.5,25.5 parent: 2 type: Transform - - uid: 5225 + - uid: 5240 components: - pos: -30.5,25.5 parent: 2 type: Transform - - uid: 5226 + - uid: 5241 components: - pos: -29.5,25.5 parent: 2 type: Transform - - uid: 5227 + - uid: 5242 components: - pos: -28.5,25.5 parent: 2 type: Transform - - uid: 5228 + - uid: 5243 components: - pos: -27.5,25.5 parent: 2 type: Transform - - uid: 5229 + - uid: 5244 components: - pos: -25.5,20.5 parent: 2 type: Transform - - uid: 5230 + - uid: 5245 components: - pos: -25.5,19.5 parent: 2 type: Transform - - uid: 5231 + - uid: 5246 components: - pos: -25.5,18.5 parent: 2 type: Transform - - uid: 5232 + - uid: 5247 components: - pos: -26.5,18.5 parent: 2 type: Transform - - uid: 5233 + - uid: 5248 components: - pos: -27.5,18.5 parent: 2 type: Transform - - uid: 5234 + - uid: 5249 components: - pos: -29.5,18.5 parent: 2 type: Transform - - uid: 5235 + - uid: 5250 components: - pos: -28.5,18.5 parent: 2 type: Transform - - uid: 5236 + - uid: 5251 components: - pos: -18.5,22.5 parent: 2 type: Transform - - uid: 5237 + - uid: 5252 components: - pos: -18.5,23.5 parent: 2 type: Transform - - uid: 5238 + - uid: 5253 components: - pos: -24.5,18.5 parent: 2 type: Transform - - uid: 5239 + - uid: 5254 components: - pos: -41.5,27.5 parent: 2 type: Transform - - uid: 5240 + - uid: 5255 components: - pos: -51.5,22.5 parent: 2 type: Transform - - uid: 5241 + - uid: 5256 components: - pos: -52.5,22.5 parent: 2 type: Transform - - uid: 5242 + - uid: 5257 components: - pos: -52.5,21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5243 + - uid: 5258 components: - pos: -52.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5244 + - uid: 5259 components: - pos: -46.5,27.5 parent: 2 type: Transform - - uid: 5245 + - uid: 5260 components: - pos: -46.5,28.5 parent: 2 type: Transform - - uid: 5246 + - uid: 5261 components: - pos: -46.5,29.5 parent: 2 type: Transform - - uid: 5247 + - uid: 5262 components: - pos: -46.5,30.5 parent: 2 type: Transform - - uid: 5248 + - uid: 5263 components: - pos: -46.5,31.5 parent: 2 type: Transform - - uid: 5249 + - uid: 5264 components: - pos: -46.5,32.5 parent: 2 type: Transform - - uid: 5250 + - uid: 5265 components: - pos: -46.5,33.5 parent: 2 type: Transform - - uid: 5251 + - uid: 5266 components: - pos: -47.5,33.5 parent: 2 type: Transform - - uid: 5252 + - uid: 5267 components: - pos: -48.5,33.5 parent: 2 type: Transform - - uid: 5253 + - uid: 5268 components: - pos: -49.5,33.5 parent: 2 type: Transform - - uid: 5254 + - uid: 5269 components: - pos: -50.5,33.5 parent: 2 type: Transform - - uid: 5255 + - uid: 5270 components: - pos: -51.5,33.5 parent: 2 type: Transform - - uid: 5256 + - uid: 5271 components: - pos: -47.5,31.5 parent: 2 type: Transform - - uid: 5257 + - uid: 5272 components: - pos: -48.5,31.5 parent: 2 type: Transform - - uid: 5258 + - uid: 5273 components: - pos: -49.5,31.5 parent: 2 type: Transform - - uid: 5259 + - uid: 5274 components: - pos: -50.5,31.5 parent: 2 type: Transform - - uid: 5260 + - uid: 5275 components: - pos: -51.5,31.5 parent: 2 type: Transform - - uid: 5261 + - uid: 5276 components: - pos: -45.5,30.5 parent: 2 type: Transform - - uid: 5262 + - uid: 5277 components: - pos: -44.5,30.5 parent: 2 type: Transform - - uid: 5263 + - uid: 5278 components: - pos: -43.5,30.5 parent: 2 type: Transform - - uid: 5264 + - uid: 5279 components: - pos: -42.5,30.5 parent: 2 type: Transform - - uid: 5265 + - uid: 5280 components: - pos: -41.5,30.5 parent: 2 type: Transform - - uid: 5266 + - uid: 5281 components: - pos: -40.5,30.5 parent: 2 type: Transform - - uid: 5267 + - uid: 5282 components: - pos: -40.5,31.5 parent: 2 type: Transform - - uid: 5268 + - uid: 5283 components: - pos: -39.5,31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5269 + - uid: 5284 components: - pos: -38.5,31.5 parent: 2 type: Transform - - uid: 5270 + - uid: 5285 components: - pos: -37.5,31.5 parent: 2 type: Transform - - uid: 5271 + - uid: 5286 components: - pos: -36.5,31.5 parent: 2 type: Transform - - uid: 5272 + - uid: 5287 components: - pos: -37.5,30.5 parent: 2 type: Transform - - uid: 5273 + - uid: 5288 components: - pos: -37.5,29.5 parent: 2 type: Transform - - uid: 5274 + - uid: 5289 components: - pos: -44.5,31.5 parent: 2 type: Transform - - uid: 5275 + - uid: 5290 components: - pos: -44.5,32.5 parent: 2 type: Transform - - uid: 5276 + - uid: 5291 components: - pos: -44.5,33.5 parent: 2 type: Transform - - uid: 5277 + - uid: 5292 components: - pos: -44.5,34.5 parent: 2 type: Transform - - uid: 5278 + - uid: 5293 components: - pos: -42.5,29.5 parent: 2 type: Transform - - uid: 5279 + - uid: 5294 components: - pos: -42.5,28.5 parent: 2 type: Transform - - uid: 5280 + - uid: 5295 components: - pos: -43.5,33.5 parent: 2 type: Transform - - uid: 5281 + - uid: 5296 components: - pos: -44.5,35.5 parent: 2 type: Transform - - uid: 5282 + - uid: 5297 components: - pos: -45.5,35.5 parent: 2 type: Transform - - uid: 5283 + - uid: 5298 components: - pos: -46.5,35.5 parent: 2 type: Transform - - uid: 5284 + - uid: 5299 components: - pos: -47.5,35.5 parent: 2 type: Transform - - uid: 5285 + - uid: 5300 components: - pos: -23.5,17.5 parent: 2 type: Transform - - uid: 5286 + - uid: 5301 components: - pos: -24.5,8.5 parent: 2 type: Transform - - uid: 5287 + - uid: 5302 components: - pos: -24.5,9.5 parent: 2 type: Transform - - uid: 5288 + - uid: 5303 components: - pos: -24.5,10.5 parent: 2 type: Transform - - uid: 5289 + - uid: 5304 components: - pos: -25.5,10.5 parent: 2 type: Transform - - uid: 5290 + - uid: 5305 components: - pos: -25.5,11.5 parent: 2 type: Transform - - uid: 5291 + - uid: 5306 components: - pos: -25.5,12.5 parent: 2 type: Transform - - uid: 5292 + - uid: 5307 components: - pos: -25.5,13.5 parent: 2 type: Transform - - uid: 5293 + - uid: 5308 components: - pos: -25.5,14.5 parent: 2 type: Transform - - uid: 5294 + - uid: 5309 components: - pos: -24.5,13.5 parent: 2 type: Transform - - uid: 5295 + - uid: 5310 components: - pos: -23.5,13.5 parent: 2 type: Transform - - uid: 5296 + - uid: 5311 components: - pos: -26.5,12.5 parent: 2 type: Transform - - uid: 5297 + - uid: 5312 components: - pos: -27.5,12.5 parent: 2 type: Transform - - uid: 5298 + - uid: 5313 components: - pos: -42.5,15.5 parent: 2 type: Transform - - uid: 5299 + - uid: 5314 components: - pos: -42.5,2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5300 + - uid: 5315 components: - pos: -42.5,1.5 parent: 2 type: Transform - - uid: 5301 + - uid: 5316 components: - pos: -41.5,1.5 parent: 2 type: Transform - - uid: 5302 + - uid: 5317 components: - pos: -40.5,1.5 parent: 2 type: Transform - - uid: 5303 + - uid: 5318 components: - pos: -39.5,1.5 parent: 2 type: Transform - - uid: 5304 + - uid: 5319 components: - pos: -38.5,1.5 parent: 2 type: Transform - - uid: 5305 + - uid: 5320 components: - pos: -37.5,1.5 parent: 2 type: Transform - - uid: 5306 + - uid: 5321 components: - pos: -37.5,2.5 parent: 2 type: Transform - - uid: 5307 + - uid: 5322 components: - pos: -37.5,3.5 parent: 2 type: Transform - - uid: 5308 + - uid: 5323 components: - pos: -37.5,4.5 parent: 2 type: Transform - - uid: 5309 + - uid: 5324 components: - pos: -37.5,5.5 parent: 2 type: Transform - - uid: 5310 + - uid: 5325 components: - pos: -37.5,6.5 parent: 2 type: Transform - - uid: 5311 + - uid: 5326 components: - pos: -37.5,7.5 parent: 2 type: Transform - - uid: 5312 + - uid: 5327 components: - pos: -37.5,8.5 parent: 2 type: Transform - - uid: 5313 + - uid: 5328 components: - pos: -37.5,9.5 parent: 2 type: Transform - - uid: 5314 + - uid: 5329 components: - pos: -37.5,10.5 parent: 2 type: Transform - - uid: 5315 + - uid: 5330 components: - pos: -37.5,11.5 parent: 2 type: Transform - - uid: 5316 + - uid: 5331 components: - pos: -37.5,12.5 parent: 2 type: Transform - - uid: 5317 + - uid: 5332 components: - pos: -37.5,13.5 parent: 2 type: Transform - - uid: 5318 + - uid: 5333 components: - pos: -38.5,13.5 parent: 2 type: Transform - - uid: 5319 + - uid: 5334 components: - pos: -39.5,13.5 parent: 2 type: Transform - - uid: 5320 + - uid: 5335 components: - pos: -42.5,13.5 parent: 2 type: Transform - - uid: 5321 + - uid: 5336 components: - pos: -42.5,14.5 parent: 2 type: Transform - - uid: 5322 + - uid: 5337 components: - pos: -39.5,14.5 parent: 2 type: Transform - - uid: 5323 + - uid: 5338 components: - pos: -39.5,15.5 parent: 2 type: Transform - - uid: 5324 + - uid: 5339 components: - pos: -36.5,13.5 parent: 2 type: Transform - - uid: 5325 + - uid: 5340 components: - pos: -35.5,13.5 parent: 2 type: Transform - - uid: 5326 + - uid: 5341 components: - pos: -34.5,13.5 parent: 2 type: Transform - - uid: 5327 + - uid: 5342 components: - pos: -33.5,13.5 parent: 2 type: Transform - - uid: 5328 + - uid: 5343 components: - pos: -35.5,14.5 parent: 2 type: Transform - - uid: 5329 + - uid: 5344 components: - pos: -35.5,15.5 parent: 2 type: Transform - - uid: 5330 + - uid: 5345 components: - pos: -33.5,14.5 parent: 2 type: Transform - - uid: 5331 + - uid: 5346 components: - pos: -32.5,14.5 parent: 2 type: Transform - - uid: 5332 + - uid: 5347 components: - pos: -31.5,14.5 parent: 2 type: Transform - - uid: 5333 + - uid: 5348 components: - pos: -30.5,14.5 parent: 2 type: Transform - - uid: 5334 + - uid: 5349 components: - pos: -30.5,13.5 parent: 2 type: Transform - - uid: 5335 + - uid: 5350 components: - pos: -30.5,12.5 parent: 2 type: Transform - - uid: 5336 + - uid: 5351 components: - pos: -30.5,11.5 parent: 2 type: Transform - - uid: 5337 + - uid: 5352 components: - pos: -30.5,10.5 parent: 2 type: Transform - - uid: 5338 + - uid: 5353 components: - pos: -30.5,9.5 parent: 2 type: Transform - - uid: 5339 + - uid: 5354 components: - pos: -30.5,8.5 parent: 2 type: Transform - - uid: 5340 + - uid: 5355 components: - pos: -31.5,10.5 parent: 2 type: Transform - - uid: 5341 + - uid: 5356 components: - pos: -32.5,10.5 parent: 2 type: Transform - - uid: 5342 + - uid: 5357 components: - pos: -33.5,10.5 parent: 2 type: Transform - - uid: 5343 + - uid: 5358 components: - pos: -29.5,9.5 parent: 2 type: Transform - - uid: 5344 + - uid: 5359 components: - pos: -28.5,9.5 parent: 2 type: Transform - - uid: 5345 + - uid: 5360 components: - pos: -30.5,7.5 parent: 2 type: Transform - - uid: 5346 + - uid: 5361 components: - pos: -37.5,0.5 parent: 2 type: Transform - - uid: 5347 + - uid: 5362 components: - pos: -37.5,-0.5 parent: 2 type: Transform - - uid: 5348 + - uid: 5363 components: - pos: -37.5,-1.5 parent: 2 type: Transform - - uid: 5349 + - uid: 5364 components: - pos: -37.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5350 + - uid: 5365 components: - pos: -38.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5351 + - uid: 5366 components: - pos: -39.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5352 + - uid: 5367 components: - pos: -40.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5353 + - uid: 5368 components: - pos: -41.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5354 + - uid: 5369 components: - pos: -42.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5355 + - uid: 5370 components: - pos: -42.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5356 + - uid: 5371 components: - pos: -43.5,-3.5 parent: 2 type: Transform - - uid: 5357 + - uid: 5372 components: - pos: -44.5,-3.5 parent: 2 type: Transform - - uid: 5358 + - uid: 5373 components: - pos: -45.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5359 + - uid: 5374 components: - pos: 55.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5360 + - uid: 5375 components: - pos: -36.5,-0.5 parent: 2 type: Transform - - uid: 5361 + - uid: 5376 components: - pos: -35.5,-0.5 parent: 2 type: Transform - - uid: 5362 + - uid: 5377 components: - pos: -34.5,-0.5 parent: 2 type: Transform - - uid: 5363 + - uid: 5378 components: - pos: -33.5,-0.5 parent: 2 type: Transform - - uid: 5364 + - uid: 5379 components: - pos: -32.5,-0.5 parent: 2 type: Transform - - uid: 5365 + - uid: 5380 components: - pos: -31.5,-0.5 parent: 2 type: Transform - - uid: 5366 + - uid: 5381 components: - pos: -30.5,-0.5 parent: 2 type: Transform - - uid: 5367 + - uid: 5382 components: - pos: -29.5,-0.5 parent: 2 type: Transform - - uid: 5368 + - uid: 5383 components: - pos: -29.5,-1.5 parent: 2 type: Transform - - uid: 5369 + - uid: 5384 components: - pos: -29.5,-2.5 parent: 2 type: Transform - - uid: 5370 + - uid: 5385 components: - pos: -29.5,-3.5 parent: 2 type: Transform - - uid: 5371 + - uid: 5386 components: - pos: -28.5,-3.5 parent: 2 type: Transform - - uid: 5372 + - uid: 5387 components: - pos: -28.5,-4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5373 + - uid: 5388 components: - pos: -28.5,-4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5374 + - uid: 5389 components: - pos: -28.5,-5.5 parent: 2 type: Transform - - uid: 5375 + - uid: 5390 components: - pos: -30.5,0.5 parent: 2 type: Transform - - uid: 5376 + - uid: 5391 components: - pos: -30.5,1.5 parent: 2 type: Transform - - uid: 5377 + - uid: 5392 components: - pos: -23.5,18.5 parent: 2 type: Transform - - uid: 5378 + - uid: 5393 components: - pos: -41.5,26.5 parent: 2 type: Transform - - uid: 5379 + - uid: 5394 components: - pos: -2.5,24.5 parent: 2 type: Transform - - uid: 5380 + - uid: 5395 components: - pos: -2.5,23.5 parent: 2 type: Transform - - uid: 5381 + - uid: 5396 components: - pos: -3.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5382 + - uid: 5397 components: - pos: -3.5,22.5 parent: 2 type: Transform - - uid: 5383 + - uid: 5398 components: - pos: -4.5,22.5 parent: 2 type: Transform - - uid: 5384 + - uid: 5399 components: - pos: -5.5,22.5 parent: 2 type: Transform - - uid: 5385 + - uid: 5400 components: - pos: 65.5,-8.5 parent: 2 type: Transform - - uid: 5386 + - uid: 5401 components: - pos: 65.5,-0.5 parent: 2 type: Transform - - uid: 5387 + - uid: 5402 components: - pos: 65.5,-1.5 parent: 2 type: Transform - - uid: 5388 + - uid: 5403 components: - pos: 68.5,-3.5 parent: 2 type: Transform - - uid: 5389 + - uid: 5404 components: - pos: 65.5,-12.5 parent: 2 type: Transform - - uid: 5390 + - uid: 5405 components: - pos: 65.5,-10.5 parent: 2 type: Transform - - uid: 5391 + - uid: 5406 components: - pos: -42.5,0.5 parent: 2 type: Transform - - uid: 5392 + - uid: 5407 components: - pos: -43.5,0.5 parent: 2 type: Transform - - uid: 5393 + - uid: 5408 components: - pos: -44.5,0.5 parent: 2 type: Transform - - uid: 5394 + - uid: 5409 components: - pos: -45.5,0.5 parent: 2 type: Transform - - uid: 5395 + - uid: 5410 components: - pos: -46.5,0.5 parent: 2 type: Transform - - uid: 5396 + - uid: 5411 components: - pos: -46.5,1.5 parent: 2 type: Transform - - uid: 5397 + - uid: 5412 components: - pos: -46.5,2.5 parent: 2 type: Transform - - uid: 5398 + - uid: 5413 components: - pos: -46.5,3.5 parent: 2 type: Transform - - uid: 5399 + - uid: 5414 components: - pos: -46.5,4.5 parent: 2 type: Transform - - uid: 5400 + - uid: 5415 components: - pos: -46.5,5.5 parent: 2 type: Transform - - uid: 5401 + - uid: 5416 components: - pos: -46.5,6.5 parent: 2 type: Transform - - uid: 5402 + - uid: 5417 components: - pos: -46.5,7.5 parent: 2 type: Transform - - uid: 5403 + - uid: 5418 components: - pos: -46.5,8.5 parent: 2 type: Transform - - uid: 5404 + - uid: 5419 components: - pos: -45.5,5.5 parent: 2 type: Transform - - uid: 5405 + - uid: 5420 components: - pos: -44.5,5.5 parent: 2 type: Transform - - uid: 5406 + - uid: 5421 components: - pos: -45.5,3.5 parent: 2 type: Transform - - uid: 5407 + - uid: 5422 components: - pos: -44.5,3.5 parent: 2 type: Transform - - uid: 5408 + - uid: 5423 components: - pos: -47.5,7.5 parent: 2 type: Transform - - uid: 5409 + - uid: 5424 components: - pos: -48.5,7.5 parent: 2 type: Transform - - uid: 5410 + - uid: 5425 components: - pos: -46.5,9.5 parent: 2 type: Transform - - uid: 5411 + - uid: 5426 components: - pos: -46.5,10.5 parent: 2 type: Transform - - uid: 5412 + - uid: 5427 components: - pos: -46.5,11.5 parent: 2 type: Transform - - uid: 5413 + - uid: 5428 components: - pos: -47.5,11.5 parent: 2 type: Transform - - uid: 5414 + - uid: 5429 components: - pos: -48.5,11.5 parent: 2 type: Transform - - uid: 5415 + - uid: 5430 components: - pos: -49.5,11.5 parent: 2 type: Transform - - uid: 5416 + - uid: 5431 components: - pos: -50.5,11.5 parent: 2 type: Transform - - uid: 5417 + - uid: 5432 components: - pos: -51.5,11.5 parent: 2 type: Transform - - uid: 5418 + - uid: 5433 components: - pos: -51.5,10.5 parent: 2 type: Transform - - uid: 5419 + - uid: 5434 components: - pos: -52.5,10.5 parent: 2 type: Transform - - uid: 5420 + - uid: 5435 components: - pos: -52.5,9.5 parent: 2 type: Transform - - uid: 5421 + - uid: 5436 components: - pos: -52.5,8.5 parent: 2 type: Transform - - uid: 5422 + - uid: 5437 components: - pos: -52.5,7.5 parent: 2 type: Transform - - uid: 5423 + - uid: 5438 components: - pos: -51.5,12.5 parent: 2 type: Transform - - uid: 5424 + - uid: 5439 components: - pos: -51.5,13.5 parent: 2 type: Transform - - uid: 5425 + - uid: 5440 components: - pos: -51.5,14.5 parent: 2 type: Transform - - uid: 5426 + - uid: 5441 components: - pos: -48.5,12.5 parent: 2 type: Transform - - uid: 5427 + - uid: 5442 components: - pos: -48.5,13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5428 + - uid: 5443 components: - pos: -48.5,14.5 parent: 2 type: Transform - - uid: 5429 + - uid: 5444 components: - pos: -46.5,12.5 parent: 2 type: Transform - - uid: 5430 + - uid: 5445 components: - pos: -46.5,13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5431 + - uid: 5446 components: - pos: -46.5,14.5 parent: 2 type: Transform - - uid: 5432 + - uid: 5447 components: - pos: -45.5,11.5 parent: 2 type: Transform - - uid: 5433 + - uid: 5448 components: - pos: -44.5,11.5 parent: 2 type: Transform - - uid: 5434 + - uid: 5449 components: - pos: -43.5,11.5 parent: 2 type: Transform - - uid: 5435 + - uid: 5450 components: - pos: -42.5,11.5 parent: 2 type: Transform - - uid: 5436 + - uid: 5451 components: - pos: -42.5,10.5 parent: 2 type: Transform - - uid: 5437 + - uid: 5452 components: - pos: -47.5,7.5 parent: 2 type: Transform - - uid: 5438 + - uid: 5453 components: - pos: -47.5,0.5 parent: 2 type: Transform - - uid: 5439 + - uid: 5454 components: - pos: -48.5,0.5 parent: 2 type: Transform - - uid: 5440 + - uid: 5455 components: - pos: -49.5,0.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5441 + - uid: 5456 components: - pos: -49.5,-0.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5442 + - uid: 5457 components: - pos: -49.5,-1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5443 + - uid: 5458 components: - pos: -49.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5444 + - uid: 5459 components: - pos: -49.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5445 + - uid: 5460 components: - pos: -50.5,-3.5 parent: 2 type: Transform - - uid: 5446 + - uid: 5461 components: - pos: -51.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5447 + - uid: 5462 components: - pos: -52.5,-3.5 parent: 2 type: Transform - - uid: 5448 + - uid: 5463 components: - pos: -53.5,-3.5 parent: 2 type: Transform - - uid: 5449 + - uid: 5464 components: - pos: -54.5,-3.5 parent: 2 type: Transform - - uid: 5450 + - uid: 5465 components: - pos: -53.5,-2.5 parent: 2 type: Transform - - uid: 5451 + - uid: 5466 components: - pos: -53.5,-1.5 parent: 2 type: Transform - - uid: 5452 + - uid: 5467 components: - pos: -54.5,-1.5 parent: 2 type: Transform - - uid: 5453 + - uid: 5468 components: - pos: -55.5,-1.5 parent: 2 type: Transform - - uid: 5454 + - uid: 5469 components: - pos: -56.5,-1.5 parent: 2 type: Transform - - uid: 5455 + - uid: 5470 components: - pos: -51.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5456 + - uid: 5471 components: - pos: -51.5,-1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5457 + - uid: 5472 components: - pos: -51.5,-0.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5458 + - uid: 5473 components: - pos: -51.5,0.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5459 + - uid: 5474 components: - pos: -51.5,1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5460 + - uid: 5475 components: - pos: -51.5,2.5 parent: 2 type: Transform - - uid: 5461 + - uid: 5476 components: - pos: -51.5,3.5 parent: 2 type: Transform - - uid: 5462 + - uid: 5477 components: - pos: -45.5,-2.5 parent: 2 type: Transform - - uid: 5463 + - uid: 5478 components: - pos: -46.5,-2.5 parent: 2 type: Transform - - uid: 5464 + - uid: 5479 components: - pos: -47.5,-2.5 parent: 2 type: Transform - - uid: 5465 + - uid: 5480 components: - pos: 3.5,-64.5 parent: 2 type: Transform - - uid: 5466 + - uid: 5481 components: - pos: 68.5,-5.5 parent: 2 type: Transform - - uid: 5467 + - uid: 5482 components: - pos: -19.5,-52.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5468 + - uid: 5483 components: - pos: -20.5,-52.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5469 + - uid: 5484 components: - pos: 67.5,-5.5 parent: 2 type: Transform - - uid: 5470 + - uid: 5485 components: - pos: 66.5,-5.5 parent: 2 type: Transform - - uid: 5471 + - uid: 5486 components: - pos: 65.5,-6.5 parent: 2 type: Transform - - uid: 5472 + - uid: 5487 components: - pos: 65.5,-7.5 parent: 2 type: Transform - - uid: 5473 + - uid: 5488 components: - pos: 65.5,-9.5 parent: 2 type: Transform - - uid: 5474 + - uid: 5489 components: - pos: 66.5,-3.5 parent: 2 type: Transform - - uid: 5475 + - uid: 5490 components: - pos: 65.5,-2.5 parent: 2 type: Transform - - uid: 5476 + - uid: 5491 components: - pos: 67.5,-3.5 parent: 2 type: Transform - - uid: 5477 + - uid: 5492 components: - pos: -28.5,1.5 parent: 2 type: Transform - - uid: 5478 + - uid: 5493 components: - pos: -27.5,1.5 parent: 2 type: Transform - - uid: 5479 + - uid: 5494 components: - pos: -27.5,0.5 parent: 2 type: Transform - - uid: 5480 + - uid: 5495 components: - pos: 22.5,-46.5 parent: 2 type: Transform - - uid: 5481 + - uid: 5496 components: - pos: -11.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5482 + - uid: 5497 components: - pos: -13.5,26.5 parent: 2 type: Transform - - uid: 5483 + - uid: 5498 components: - pos: -26.5,0.5 parent: 2 type: Transform - - uid: 5484 + - uid: 5499 components: - pos: -8.5,14.5 parent: 2 type: Transform - - uid: 5485 + - uid: 5500 components: - pos: -8.5,15.5 parent: 2 type: Transform - - uid: 5486 + - uid: 5501 components: - pos: -1.5,-80.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5487 + - uid: 5502 components: - pos: -1.5,-81.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5488 + - uid: 5503 components: - pos: -1.5,-82.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5489 + - uid: 5504 components: - pos: -74.5,-25.5 parent: 2 type: Transform - - uid: 5490 + - uid: 5505 components: - pos: -56.5,-18.5 parent: 2 type: Transform - - uid: 5491 + - uid: 5506 components: - pos: -23.5,10.5 parent: 2 type: Transform - - uid: 5492 + - uid: 5507 components: - pos: -22.5,10.5 parent: 2 type: Transform - - uid: 5493 + - uid: 5508 components: - pos: -22.5,11.5 parent: 2 type: Transform - - uid: 5494 + - uid: 5509 components: - pos: 41.5,14.5 parent: 2 type: Transform - - uid: 5495 + - uid: 5510 components: - pos: 42.5,14.5 parent: 2 type: Transform - - uid: 5496 + - uid: 5511 components: - pos: -75.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5497 + - uid: 5512 components: - pos: -75.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5498 + - uid: 5513 components: - pos: -75.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5499 + - uid: 5514 components: - pos: -75.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5500 + - uid: 5515 components: - pos: -75.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5501 + - uid: 5516 components: - pos: -75.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5502 + - uid: 5517 components: - pos: -75.5,-5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5503 + - uid: 5518 components: - pos: -75.5,-4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5504 + - uid: 5519 components: - pos: -74.5,-4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5505 + - uid: 5520 components: - pos: -73.5,-4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5506 + - uid: 5521 components: - pos: -72.5,-4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5507 + - uid: 5522 components: - pos: -71.5,-4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5508 + - uid: 5523 components: - pos: -70.5,-4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5509 + - uid: 5524 components: - pos: -69.5,-4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5510 + - uid: 5525 components: - pos: -68.5,-4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5511 + - uid: 5526 components: - pos: -67.5,-4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5512 + - uid: 5527 components: - pos: -66.5,-4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5513 + - uid: 5528 components: - pos: -65.5,-4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5514 + - uid: 5529 components: - pos: -64.5,-4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5515 + - uid: 5530 components: - pos: -47.5,39.5 parent: 2 type: Transform - - uid: 5516 + - uid: 5531 components: - pos: -47.5,40.5 parent: 2 type: Transform - - uid: 5517 + - uid: 5532 components: - pos: -47.5,41.5 parent: 2 type: Transform - - uid: 5518 + - uid: 5533 components: - pos: -46.5,41.5 parent: 2 type: Transform - - uid: 5519 + - uid: 5534 components: - pos: -45.5,41.5 parent: 2 type: Transform - - uid: 5520 + - uid: 5535 components: - pos: -45.5,42.5 parent: 2 type: Transform - - uid: 5521 + - uid: 5536 components: - pos: -45.5,46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5522 + - uid: 5537 components: - pos: -45.5,47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5523 + - uid: 5538 components: - pos: -45.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5524 + - uid: 5539 components: - pos: -45.5,49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5525 + - uid: 5540 components: - pos: -46.5,49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5526 + - uid: 5541 components: - pos: -46.5,50.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5527 + - uid: 5542 components: - pos: -46.5,51.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5528 + - uid: 5543 components: - pos: -46.5,52.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5529 + - uid: 5544 components: - pos: -46.5,53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5530 + - uid: 5545 components: - pos: -45.5,53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5531 + - uid: 5546 components: - pos: -44.5,53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5532 + - uid: 5547 components: - pos: -43.5,53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5533 + - uid: 5548 components: - pos: -42.5,53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5534 + - uid: 5549 components: - pos: -41.5,53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5535 + - uid: 5550 components: - pos: -40.5,53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5536 + - uid: 5551 components: - pos: -39.5,53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5537 + - uid: 5552 components: - pos: -38.5,53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5538 + - uid: 5553 components: - pos: -37.5,53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5539 + - uid: 5554 components: - pos: -47.5,53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5540 + - uid: 5555 components: - pos: -48.5,53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5541 + - uid: 5556 components: - pos: -49.5,53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5542 + - uid: 5557 components: - pos: -50.5,53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5543 + - uid: 5558 components: - pos: -51.5,53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5544 + - uid: 5559 components: - pos: -52.5,53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5545 + - uid: 5560 components: - pos: 10.5,-65.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5546 + - uid: 5561 components: - pos: 11.5,-65.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5547 + - uid: 5562 components: - pos: 12.5,-65.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5548 + - uid: 5563 components: - pos: 13.5,-65.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5549 + - uid: 5564 components: - pos: 14.5,-65.5 parent: 2 type: Transform - - uid: 5550 + - uid: 5565 components: - pos: 26.5,31.5 parent: 2 type: Transform - - uid: 5551 + - uid: 5566 components: - pos: 25.5,31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5552 + - uid: 5567 components: - pos: 24.5,31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5553 + - uid: 5568 components: - pos: 24.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5554 + - uid: 5569 components: - pos: 24.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5555 + - uid: 5570 components: - pos: 24.5,34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5556 + - uid: 5571 components: - pos: 54.5,28.5 parent: 2 type: Transform - - uid: 5557 + - uid: 5572 components: - pos: 53.5,28.5 parent: 2 type: Transform - - uid: 5558 + - uid: 5573 components: - pos: -62.5,-30.5 parent: 2 type: Transform - - uid: 5559 + - uid: 5574 components: - pos: -61.5,-30.5 parent: 2 type: Transform - - uid: 5560 + - uid: 5575 components: - pos: -60.5,-30.5 parent: 2 type: Transform - - uid: 5561 + - uid: 5576 components: - pos: -40.5,-41.5 parent: 2 type: Transform - - uid: 5562 + - uid: 5577 components: - pos: 48.5,-46.5 parent: 2 type: Transform - - uid: 5563 + - uid: 5578 components: - pos: 48.5,-48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5564 + - uid: 5579 components: - pos: 28.5,-5.5 parent: 2 type: Transform - - uid: 5565 + - uid: 5580 components: - pos: -24.5,-13.5 parent: 2 type: Transform - - uid: 5566 + - uid: 5581 components: - pos: 65.5,-43.5 parent: 2 type: Transform - - uid: 5567 + - uid: 5582 components: - pos: -52.5,-73.5 parent: 2 type: Transform - - uid: 5568 + - uid: 5583 components: - pos: -51.5,-73.5 parent: 2 type: Transform - - uid: 5569 + - uid: 5584 components: - pos: -51.5,-74.5 parent: 2 type: Transform - - uid: 5570 + - uid: 5585 components: - pos: -46.5,-75.5 parent: 2 type: Transform - - uid: 5571 + - uid: 5586 components: - pos: 59.5,-32.5 parent: 2 type: Transform - - uid: 5572 + - uid: 5587 components: - pos: 52.5,-13.5 parent: 2 type: Transform - - uid: 5573 + - uid: 5588 components: - pos: 52.5,-14.5 parent: 2 type: Transform - - uid: 5574 + - uid: 5589 components: - pos: 52.5,-15.5 parent: 2 type: Transform - - uid: 5575 + - uid: 5590 components: - pos: 65.5,-11.5 parent: 2 type: Transform - - uid: 5576 + - uid: 5591 components: - pos: 65.5,-13.5 parent: 2 type: Transform - - uid: 5577 + - uid: 5592 components: - pos: 65.5,-5.5 parent: 2 type: Transform - - uid: 5578 + - uid: 5593 components: - pos: 65.5,-3.5 parent: 2 type: Transform - - uid: 5579 + - uid: 5594 components: - pos: 11.5,-5.5 parent: 2 type: Transform - - uid: 5580 + - uid: 5595 components: - pos: 10.5,-0.5 parent: 2 type: Transform - - uid: 5581 + - uid: 5596 components: - pos: 9.5,-0.5 parent: 2 type: Transform - - uid: 5582 + - uid: 5597 components: - pos: 9.5,-1.5 parent: 2 type: Transform - - uid: 5583 + - uid: 5598 components: - pos: 10.5,-5.5 parent: 2 type: Transform - - uid: 5584 + - uid: 5599 components: - pos: 9.5,-5.5 parent: 2 type: Transform - - uid: 5585 + - uid: 5600 components: - pos: 17.5,-43.5 parent: 2 type: Transform - - uid: 5586 + - uid: 5601 components: - pos: 18.5,-43.5 parent: 2 type: Transform - - uid: 5587 + - uid: 5602 components: - pos: 16.5,-43.5 parent: 2 type: Transform - - uid: 5588 + - uid: 5603 components: - pos: 11.5,-41.5 parent: 2 type: Transform - - uid: 5589 + - uid: 5604 components: - pos: 33.5,-42.5 parent: 2 type: Transform - - uid: 5590 + - uid: 5605 components: - pos: 34.5,-21.5 parent: 2 type: Transform - - uid: 5591 + - uid: 5606 components: - pos: 32.5,-42.5 parent: 2 type: Transform - - uid: 5592 + - uid: 5607 components: - pos: 34.5,-24.5 parent: 2 type: Transform - - uid: 5593 + - uid: 5608 components: - pos: 34.5,-23.5 parent: 2 type: Transform - - uid: 5594 + - uid: 5609 components: - pos: 34.5,-22.5 parent: 2 type: Transform - - uid: 5595 + - uid: 5610 components: - pos: -7.5,5.5 parent: 2 type: Transform - - uid: 5596 + - uid: 5611 components: - pos: 1.5,5.5 parent: 2 type: Transform - - uid: 5597 + - uid: 5612 components: - pos: 11.5,-25.5 parent: 2 type: Transform - - uid: 5598 + - uid: 5613 components: - pos: 2.5,5.5 parent: 2 type: Transform - - uid: 5599 + - uid: 5614 components: - pos: -6.5,5.5 parent: 2 type: Transform - - uid: 5600 + - uid: 5615 components: - pos: 3.5,5.5 parent: 2 type: Transform - - uid: 5601 + - uid: 5616 components: - pos: -4.5,5.5 parent: 2 type: Transform - - uid: 5602 + - uid: 5617 components: - pos: -3.5,3.5 parent: 2 type: Transform - - uid: 5603 + - uid: 5618 components: - pos: -5.5,5.5 parent: 2 type: Transform - - uid: 5604 + - uid: 5619 components: - pos: -4.5,3.5 parent: 2 type: Transform - - uid: 5605 + - uid: 5620 components: - pos: -18.5,4.5 parent: 2 type: Transform - - uid: 5606 + - uid: 5621 components: - pos: -5.5,3.5 parent: 2 type: Transform - - uid: 5607 + - uid: 5622 components: - pos: -20.5,4.5 parent: 2 type: Transform - - uid: 5608 + - uid: 5623 components: - pos: -17.5,4.5 parent: 2 type: Transform - - uid: 5609 + - uid: 5624 components: - pos: -19.5,4.5 parent: 2 type: Transform - - uid: 5610 + - uid: 5625 components: - pos: -21.5,4.5 parent: 2 type: Transform - - uid: 5611 + - uid: 5626 components: - pos: -44.5,8.5 parent: 2 type: Transform - - uid: 5612 + - uid: 5627 components: - pos: -44.5,4.5 parent: 2 type: Transform - - uid: 5613 + - uid: 5628 components: - pos: -45.5,8.5 parent: 2 type: Transform - - uid: 5614 + - uid: 5629 components: - pos: -44.5,6.5 parent: 2 type: Transform - - uid: 5615 + - uid: 5630 components: - pos: -44.5,7.5 parent: 2 type: Transform - - uid: 5616 + - uid: 5631 components: - pos: -22.5,-9.5 parent: 2 type: Transform - - uid: 5617 + - uid: 5632 components: - pos: -48.5,10.5 parent: 2 type: Transform - - uid: 5618 + - uid: 5633 components: - pos: -22.5,-10.5 parent: 2 type: Transform - - uid: 5619 + - uid: 5634 components: - pos: -50.5,10.5 parent: 2 type: Transform - - uid: 5620 + - uid: 5635 components: - pos: -49.5,10.5 parent: 2 type: Transform - - uid: 5621 + - uid: 5636 components: - pos: -22.5,-11.5 parent: 2 type: Transform - - uid: 5622 + - uid: 5637 components: - pos: -2.5,-47.5 parent: 2 type: Transform - - uid: 5623 + - uid: 5638 components: - pos: -37.5,-41.5 parent: 2 type: Transform - - uid: 5624 + - uid: 5639 components: - pos: -3.5,-47.5 parent: 2 type: Transform - - uid: 5625 + - uid: 5640 components: - pos: -37.5,-42.5 parent: 2 type: Transform - - uid: 5626 + - uid: 5641 components: - pos: -38.5,-41.5 parent: 2 type: Transform - - uid: 5627 + - uid: 5642 components: - pos: -39.5,-41.5 parent: 2 type: Transform - - uid: 5628 + - uid: 5643 components: - pos: 52.5,-40.5 parent: 2 type: Transform - - uid: 5629 + - uid: 5644 components: - pos: 63.5,-48.5 parent: 2 type: Transform - - uid: 5630 + - uid: 5645 components: - pos: 52.5,-39.5 parent: 2 type: Transform - - uid: 5631 + - uid: 5646 components: - pos: 51.5,-39.5 parent: 2 type: Transform - - uid: 5632 + - uid: 5647 components: - pos: 68.5,-48.5 parent: 2 type: Transform - - uid: 5633 + - uid: 5648 components: - pos: 66.5,-48.5 parent: 2 type: Transform - - uid: 5634 + - uid: 5649 components: - pos: 52.5,-41.5 parent: 2 type: Transform - - uid: 5635 + - uid: 5650 components: - pos: 65.5,-48.5 parent: 2 type: Transform - - uid: 5636 + - uid: 5651 components: - pos: 64.5,-48.5 parent: 2 type: Transform - - uid: 5637 + - uid: 5652 components: - pos: -14.5,-73.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5638 + - uid: 5653 components: - pos: -14.5,-71.5 parent: 2 type: Transform - - uid: 5639 + - uid: 5654 components: - pos: -15.5,-73.5 parent: 2 type: Transform - - uid: 5640 + - uid: 5655 components: - pos: -15.5,-72.5 parent: 2 type: Transform - - uid: 5641 + - uid: 5656 components: - pos: -37.5,22.5 parent: 2 type: Transform - - uid: 5642 + - uid: 5657 components: - pos: -15.5,-71.5 parent: 2 type: Transform - - uid: 5643 + - uid: 5658 components: - pos: -11.5,-71.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5644 + - uid: 5659 components: - pos: -12.5,-71.5 parent: 2 type: Transform - - uid: 5645 + - uid: 5660 components: - pos: -13.5,-71.5 parent: 2 type: Transform - - uid: 5646 + - uid: 5661 components: - pos: -45.5,33.5 parent: 2 type: Transform - - uid: 5647 + - uid: 5662 components: - pos: -44.5,28.5 parent: 2 type: Transform - - uid: 5648 + - uid: 5663 components: - pos: -10.5,-71.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5649 + - uid: 5664 components: - pos: -45.5,28.5 parent: 2 type: Transform - - uid: 5650 + - uid: 5665 components: - pos: -43.5,28.5 parent: 2 type: Transform - - uid: 5651 + - uid: 5666 components: - pos: -41.5,31.5 parent: 2 type: Transform - - uid: 5652 + - uid: 5667 components: - pos: -42.5,33.5 parent: 2 type: Transform - - uid: 5653 + - uid: 5668 components: - pos: -41.5,32.5 parent: 2 type: Transform - - uid: 5654 + - uid: 5669 components: - pos: -41.5,33.5 parent: 2 type: Transform - - uid: 5655 + - uid: 5670 components: - pos: -20.5,18.5 parent: 2 type: Transform - - uid: 5656 + - uid: 5671 components: - pos: -20.5,20.5 parent: 2 type: Transform - - uid: 5657 + - uid: 5672 components: - pos: -20.5,16.5 parent: 2 type: Transform - - uid: 5658 + - uid: 5673 components: - pos: -20.5,19.5 parent: 2 type: Transform - - uid: 5659 + - uid: 5674 components: - pos: -20.5,17.5 parent: 2 type: Transform - - uid: 5660 + - uid: 5675 components: - pos: -19.5,16.5 parent: 2 type: Transform - - uid: 5661 + - uid: 5676 components: - pos: 53.5,-6.5 parent: 2 type: Transform - - uid: 5662 + - uid: 5677 components: - pos: 52.5,-6.5 parent: 2 type: Transform - - uid: 5663 + - uid: 5678 components: - pos: 51.5,-6.5 parent: 2 type: Transform - - uid: 5664 + - uid: 5679 components: - pos: 51.5,-7.5 parent: 2 type: Transform - - uid: 5665 + - uid: 5680 components: - pos: 5.5,21.5 parent: 2 type: Transform - - uid: 5666 + - uid: 5681 components: - pos: 6.5,21.5 parent: 2 type: Transform - - uid: 5667 + - uid: 5682 components: - pos: 7.5,15.5 parent: 2 type: Transform - - uid: 5668 + - uid: 5683 components: - pos: 8.5,15.5 parent: 2 type: Transform - - uid: 5669 + - uid: 5684 components: - pos: 2.5,20.5 parent: 2 type: Transform - - uid: 5670 + - uid: 5685 components: - pos: 2.5,19.5 parent: 2 type: Transform - - uid: 5671 + - uid: 5686 components: - pos: 2.5,18.5 parent: 2 type: Transform - - uid: 5672 + - uid: 5687 components: - pos: 42.5,15.5 parent: 2 type: Transform - - uid: 5673 + - uid: 5688 components: - pos: 42.5,16.5 parent: 2 type: Transform - - uid: 5674 + - uid: 5689 components: - pos: 41.5,16.5 parent: 2 type: Transform - - uid: 5675 + - uid: 5690 components: - pos: 40.5,16.5 parent: 2 type: Transform - - uid: 5676 + - uid: 5691 components: - pos: 39.5,16.5 parent: 2 type: Transform - - uid: 5677 + - uid: 5692 components: - pos: 38.5,16.5 parent: 2 type: Transform - - uid: 5678 + - uid: 5693 components: - pos: 37.5,16.5 parent: 2 type: Transform - - uid: 5679 + - uid: 5694 components: - pos: 36.5,16.5 parent: 2 type: Transform - - uid: 5680 + - uid: 5695 components: - pos: 34.5,16.5 parent: 2 type: Transform - - uid: 5681 + - uid: 5696 components: - pos: 33.5,16.5 parent: 2 type: Transform - - uid: 5682 + - uid: 5697 components: - pos: 42.5,13.5 parent: 2 type: Transform - - uid: 5683 + - uid: 5698 components: - pos: 42.5,12.5 parent: 2 type: Transform - - uid: 5684 + - uid: 5699 components: - pos: 28.5,28.5 parent: 2 type: Transform - - uid: 5685 + - uid: 5700 components: - pos: 31.5,28.5 parent: 2 type: Transform - - uid: 5686 + - uid: 5701 components: - pos: 30.5,28.5 parent: 2 type: Transform - - uid: 5687 + - uid: 5702 components: - pos: -12.5,-59.5 parent: 2 type: Transform - - uid: 5688 + - uid: 5703 components: - pos: -11.5,-59.5 parent: 2 type: Transform - - uid: 5689 + - uid: 5704 components: - pos: -10.5,-59.5 parent: 2 type: Transform - - uid: 5690 + - uid: 5705 components: - pos: -10.5,-58.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5691 + - uid: 5706 components: - pos: -9.5,-59.5 parent: 2 type: Transform - - uid: 5692 + - uid: 5707 components: - pos: -8.5,-59.5 parent: 2 type: Transform - - uid: 5693 + - uid: 5708 components: - pos: -7.5,-59.5 parent: 2 type: Transform - - uid: 5694 + - uid: 5709 components: - pos: -6.5,-59.5 parent: 2 type: Transform - - uid: 5695 + - uid: 5710 components: - pos: -51.5,-75.5 parent: 2 type: Transform - - uid: 5696 + - uid: 5711 components: - pos: -51.5,-77.5 parent: 2 type: Transform - - uid: 5697 + - uid: 5712 components: - pos: -51.5,-78.5 parent: 2 type: Transform - - uid: 5698 + - uid: 5713 components: - pos: -51.5,-79.5 parent: 2 type: Transform - - uid: 5699 + - uid: 5714 components: - pos: -52.5,-79.5 parent: 2 type: Transform - - uid: 5700 + - uid: 5715 components: - pos: 38.5,17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5701 + - uid: 5716 components: - pos: 18.5,-31.5 parent: 2 type: Transform - - uid: 5702 + - uid: 5717 components: - pos: 52.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5703 + - uid: 5718 components: - pos: 45.5,-72.5 parent: 2 type: Transform - - uid: 5704 + - uid: 5719 components: - pos: 29.5,-27.5 parent: 2 type: Transform - - uid: 5705 + - uid: 5720 components: - pos: 29.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5706 + - uid: 5721 components: - pos: 29.5,-25.5 parent: 2 type: Transform - - uid: 5707 + - uid: 5722 components: - pos: 31.5,-42.5 parent: 2 type: Transform - - uid: 5708 + - uid: 5723 components: - pos: 30.5,-42.5 parent: 2 type: Transform - - uid: 5709 + - uid: 5724 components: - pos: 28.5,-41.5 parent: 2 type: Transform - - uid: 5710 + - uid: 5725 components: - pos: 38.5,-60.5 parent: 2 type: Transform - - uid: 5711 + - uid: 5726 components: - pos: 38.5,-61.5 parent: 2 type: Transform - - uid: 5712 + - uid: 5727 components: - pos: 38.5,-62.5 parent: 2 type: Transform - - uid: 5713 + - uid: 5728 components: - pos: 38.5,-63.5 parent: 2 type: Transform - - uid: 5714 + - uid: 5729 components: - pos: 38.5,-64.5 parent: 2 type: Transform - - uid: 5715 + - uid: 5730 components: - pos: 38.5,-65.5 parent: 2 type: Transform - - uid: 5716 + - uid: 5731 components: - pos: 38.5,-66.5 parent: 2 type: Transform - - uid: 5717 + - uid: 5732 components: - pos: 38.5,-67.5 parent: 2 type: Transform - - uid: 5718 + - uid: 5733 components: - pos: 38.5,-68.5 parent: 2 type: Transform - - uid: 5719 + - uid: 5734 components: - pos: 38.5,-69.5 parent: 2 type: Transform - - uid: 5720 + - uid: 5735 components: - pos: 38.5,-70.5 parent: 2 type: Transform - - uid: 5721 + - uid: 5736 components: - pos: 38.5,-71.5 parent: 2 type: Transform - - uid: 5722 + - uid: 5737 components: - pos: 14.5,-64.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5723 + - uid: 5738 components: - pos: 14.5,-63.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5724 + - uid: 5739 components: - pos: 14.5,-62.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5725 + - uid: 5740 components: - pos: 14.5,-61.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5726 + - uid: 5741 components: - pos: 14.5,-60.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5727 + - uid: 5742 components: - pos: 14.5,-59.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5728 + - uid: 5743 components: - pos: 14.5,-58.5 parent: 2 type: Transform - - uid: 5729 + - uid: 5744 components: - pos: 10.5,-64.5 parent: 2 type: Transform - - uid: 5730 + - uid: 5745 components: - pos: 11.5,-64.5 parent: 2 type: Transform - - uid: 5731 + - uid: 5746 components: - pos: 12.5,-64.5 parent: 2 type: Transform - - uid: 5732 + - uid: 5747 components: - pos: 12.5,-63.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5733 + - uid: 5748 components: - pos: 12.5,-62.5 parent: 2 type: Transform - - uid: 5734 + - uid: 5749 components: - pos: 12.5,-61.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5735 + - uid: 5750 components: - pos: 12.5,-60.5 parent: 2 type: Transform - - uid: 5736 + - uid: 5751 components: - pos: 12.5,-59.5 parent: 2 type: Transform - - uid: 5737 + - uid: 5752 components: - pos: 12.5,-58.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5738 + - uid: 5753 components: - pos: 12.5,-57.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5739 + - uid: 5754 components: - pos: 12.5,-56.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5740 + - uid: 5755 components: - pos: 14.5,-57.5 parent: 2 type: Transform - - uid: 5741 + - uid: 5756 components: - pos: 13.5,-57.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5742 + - uid: 5757 components: - pos: -33.5,-71.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5743 + - uid: 5758 components: - pos: -33.5,-72.5 parent: 2 type: Transform - - uid: 5744 + - uid: 5759 components: - pos: -26.5,-73.5 parent: 2 type: Transform - - uid: 5745 + - uid: 5760 components: - pos: -28.5,-73.5 parent: 2 type: Transform - - uid: 5746 + - uid: 5761 components: - pos: -29.5,-72.5 parent: 2 type: Transform - - uid: 5747 + - uid: 5762 components: - pos: -29.5,-75.5 parent: 2 type: Transform - - uid: 5748 + - uid: 5763 components: - pos: -30.5,-71.5 parent: 2 type: Transform - - uid: 5749 + - uid: 5764 components: - pos: -30.5,-70.5 parent: 2 type: Transform - - uid: 5750 + - uid: 5765 components: - pos: -30.5,-69.5 parent: 2 type: Transform - - uid: 5751 + - uid: 5766 components: - pos: -29.5,-69.5 parent: 2 type: Transform - - uid: 5752 + - uid: 5767 components: - pos: -28.5,-69.5 parent: 2 type: Transform - - uid: 5753 + - uid: 5768 components: - pos: -27.5,-69.5 parent: 2 type: Transform - - uid: 5754 + - uid: 5769 components: - pos: -27.5,-70.5 parent: 2 type: Transform - - uid: 5755 + - uid: 5770 components: - pos: -27.5,-71.5 parent: 2 type: Transform - - uid: 5756 + - uid: 5771 components: - pos: -27.5,-73.5 parent: 2 type: Transform - - uid: 5757 + - uid: 5772 components: - pos: -27.5,-74.5 parent: 2 type: Transform - - uid: 5758 + - uid: 5773 components: - pos: -27.5,-75.5 parent: 2 type: Transform - - uid: 5759 + - uid: 5774 components: - pos: -28.5,-75.5 parent: 2 type: Transform - - uid: 5760 + - uid: 5775 components: - pos: -30.5,-75.5 parent: 2 type: Transform - - uid: 5761 + - uid: 5776 components: - pos: -30.5,-74.5 parent: 2 type: Transform - - uid: 5762 + - uid: 5777 components: - pos: -30.5,-73.5 parent: 2 type: Transform - - uid: 5763 + - uid: 5778 components: - pos: -28.5,-71.5 parent: 2 type: Transform - - uid: 5764 + - uid: 5779 components: - pos: -29.5,-72.5 parent: 2 type: Transform - - uid: 5765 + - uid: 5780 components: - pos: -29.5,-71.5 parent: 2 type: Transform - - uid: 5766 + - uid: 5781 components: - pos: 52.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5767 + - uid: 5782 components: - pos: 52.5,37.5 parent: 2 type: Transform - - uid: 5768 + - uid: 5783 components: - pos: 52.5,36.5 parent: 2 type: Transform - - uid: 5769 + - uid: 5784 components: - pos: 52.5,35.5 parent: 2 type: Transform - - uid: 5770 + - uid: 5785 components: - pos: 52.5,34.5 parent: 2 type: Transform - - uid: 5771 + - uid: 5786 components: - pos: 52.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5772 + - uid: 5787 components: - pos: 52.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5773 + - uid: 5788 components: - pos: 52.5,31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5774 + - uid: 5789 components: - pos: 51.5,31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5775 + - uid: 5790 components: - pos: 50.5,31.5 parent: 2 type: Transform - - uid: 5776 + - uid: 5791 components: - pos: 49.5,31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5777 + - uid: 5792 components: - pos: 48.5,31.5 parent: 2 type: Transform - - uid: 5778 + - uid: 5793 components: - pos: 48.5,30.5 parent: 2 type: Transform - - uid: 5779 + - uid: 5794 components: - pos: 48.5,29.5 parent: 2 type: Transform - - uid: 5780 + - uid: 5795 components: - pos: 48.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5781 + - uid: 5796 components: - pos: 53.5,37.5 parent: 2 type: Transform - - uid: 5782 + - uid: 5797 components: - pos: 54.5,37.5 parent: 2 type: Transform - - uid: 5783 + - uid: 5798 components: - pos: 55.5,37.5 parent: 2 type: Transform - - uid: 5784 + - uid: 5799 components: - pos: 56.5,37.5 parent: 2 type: Transform - - uid: 5785 + - uid: 5800 components: - pos: 56.5,35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5786 + - uid: 5801 components: - pos: 56.5,33.5 parent: 2 type: Transform - - uid: 5787 + - uid: 5802 components: - pos: 56.5,32.5 parent: 2 type: Transform - - uid: 5788 + - uid: 5803 components: - pos: 56.5,31.5 parent: 2 type: Transform - - uid: 5789 + - uid: 5804 components: - pos: 57.5,31.5 parent: 2 type: Transform - - uid: 5790 + - uid: 5805 components: - pos: 57.5,30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5791 + - uid: 5806 components: - pos: 57.5,29.5 parent: 2 type: Transform - - uid: 5792 + - uid: 5807 components: - pos: 57.5,28.5 parent: 2 type: Transform - - uid: 5793 + - uid: 5808 components: - pos: 54.5,38.5 parent: 2 type: Transform - - uid: 5794 + - uid: 5809 components: - pos: 54.5,39.5 parent: 2 type: Transform - - uid: 5795 + - uid: 5810 components: - pos: 54.5,40.5 parent: 2 type: Transform - - uid: 5796 + - uid: 5811 components: - pos: 54.5,41.5 parent: 2 type: Transform - - uid: 5797 + - uid: 5812 components: - pos: 54.5,42.5 parent: 2 type: Transform - - uid: 5798 + - uid: 5813 components: - pos: 54.5,43.5 parent: 2 type: Transform - - uid: 5799 + - uid: 5814 components: - pos: 54.5,44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5800 + - uid: 5815 components: - pos: 54.5,45.5 parent: 2 type: Transform - - uid: 5801 + - uid: 5816 components: - pos: 54.5,46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5802 + - uid: 5817 components: - pos: 54.5,47.5 parent: 2 type: Transform - - uid: 5803 + - uid: 5818 components: - pos: 54.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5804 + - uid: 5819 components: - pos: 54.5,49.5 parent: 2 type: Transform - - uid: 5805 + - uid: 5820 components: - pos: 54.5,50.5 parent: 2 type: Transform - - uid: 5806 + - uid: 5821 components: - pos: 53.5,42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5807 + - uid: 5822 components: - pos: 52.5,42.5 parent: 2 type: Transform - - uid: 5808 + - uid: 5823 components: - pos: 51.5,42.5 parent: 2 type: Transform - - uid: 5809 + - uid: 5824 components: - pos: 51.5,43.5 parent: 2 type: Transform - - uid: 5810 + - uid: 5825 components: - pos: 51.5,44.5 parent: 2 type: Transform - - uid: 5811 + - uid: 5826 components: - pos: 51.5,45.5 parent: 2 type: Transform - - uid: 5812 + - uid: 5827 components: - pos: 51.5,46.5 parent: 2 type: Transform - - uid: 5813 + - uid: 5828 components: - pos: 51.5,47.5 parent: 2 type: Transform - - uid: 5814 + - uid: 5829 components: - pos: 51.5,48.5 parent: 2 type: Transform - - uid: 5815 + - uid: 5830 components: - pos: 51.5,49.5 parent: 2 type: Transform - - uid: 5816 + - uid: 5831 components: - pos: 51.5,50.5 parent: 2 type: Transform - - uid: 5817 + - uid: 5832 components: - pos: 55.5,42.5 parent: 2 type: Transform - - uid: 5818 + - uid: 5833 components: - pos: 56.5,42.5 parent: 2 type: Transform - - uid: 5819 + - uid: 5834 components: - pos: 57.5,42.5 parent: 2 type: Transform - - uid: 5820 + - uid: 5835 components: - pos: 57.5,43.5 parent: 2 type: Transform - - uid: 5821 + - uid: 5836 components: - pos: 57.5,44.5 parent: 2 type: Transform - - uid: 5822 + - uid: 5837 components: - pos: 57.5,45.5 parent: 2 type: Transform - - uid: 5823 + - uid: 5838 components: - pos: 57.5,46.5 parent: 2 type: Transform - - uid: 5824 + - uid: 5839 components: - pos: 57.5,47.5 parent: 2 type: Transform - - uid: 5825 + - uid: 5840 components: - pos: 57.5,48.5 parent: 2 type: Transform - - uid: 5826 + - uid: 5841 components: - pos: 57.5,49.5 parent: 2 type: Transform - - uid: 5827 + - uid: 5842 components: - pos: 57.5,50.5 parent: 2 type: Transform - - uid: 5828 + - uid: 5843 components: - pos: 56.5,50.5 parent: 2 type: Transform - - uid: 5829 + - uid: 5844 components: - pos: 55.5,50.5 parent: 2 type: Transform - - uid: 5830 + - uid: 5845 components: - pos: 53.5,50.5 parent: 2 type: Transform - - uid: 5831 + - uid: 5846 components: - pos: 52.5,50.5 parent: 2 type: Transform - - uid: 5832 + - uid: 5847 components: - pos: 56.5,51.5 parent: 2 type: Transform - - uid: 5833 + - uid: 5848 components: - pos: 56.5,52.5 parent: 2 type: Transform - - uid: 5834 + - uid: 5849 components: - pos: 52.5,51.5 parent: 2 type: Transform - - uid: 5835 + - uid: 5850 components: - pos: 52.5,52.5 parent: 2 type: Transform - - uid: 5836 + - uid: 5851 components: - pos: 56.5,53.5 parent: 2 type: Transform - - uid: 5837 + - uid: 5852 components: - pos: 55.5,53.5 parent: 2 type: Transform - - uid: 5838 + - uid: 5853 components: - pos: 54.5,53.5 parent: 2 type: Transform - - uid: 5839 + - uid: 5854 components: - pos: 52.5,53.5 parent: 2 type: Transform - - uid: 5840 + - uid: 5855 components: - pos: 53.5,53.5 parent: 2 type: Transform - - uid: 5841 + - uid: 5856 components: - pos: 54.5,54.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5842 + - uid: 5857 components: - pos: 54.5,55.5 parent: 2 type: Transform - - uid: 5843 + - uid: 5858 components: - pos: 54.5,57.5 parent: 2 type: Transform - - uid: 5844 + - uid: 5859 components: - pos: 54.5,56.5 parent: 2 type: Transform - - uid: 5845 + - uid: 5860 components: - pos: 54.5,58.5 parent: 2 type: Transform - - uid: 5846 + - uid: 5861 components: - pos: 54.5,59.5 parent: 2 type: Transform - - uid: 5847 + - uid: 5862 components: - pos: 53.5,57.5 parent: 2 type: Transform - - uid: 5848 + - uid: 5863 components: - pos: 52.5,57.5 parent: 2 type: Transform - - uid: 5849 + - uid: 5864 components: - pos: 51.5,57.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5850 + - uid: 5865 components: - pos: 55.5,57.5 parent: 2 type: Transform - - uid: 5851 + - uid: 5866 components: - pos: 56.5,57.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5852 + - uid: 5867 components: - pos: 57.5,57.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5853 + - uid: 5868 components: - pos: 58.5,57.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5854 + - uid: 5869 components: - pos: 58.5,58.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5855 + - uid: 5870 components: - pos: 58.5,56.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5856 + - uid: 5871 components: - pos: 50.5,57.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5857 + - uid: 5872 components: - pos: 50.5,58.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5858 + - uid: 5873 components: - pos: 50.5,56.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5859 + - uid: 5874 components: - pos: 54.5,60.5 parent: 2 type: Transform - - uid: 5860 + - uid: 5875 components: - pos: 54.5,61.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5861 + - uid: 5876 components: - pos: 53.5,61.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5862 + - uid: 5877 components: - pos: 55.5,61.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5863 + - uid: 5878 components: - pos: 50.5,45.5 parent: 2 type: Transform - - uid: 5864 + - uid: 5879 components: - pos: 49.5,45.5 parent: 2 type: Transform - - uid: 5865 + - uid: 5880 components: - pos: 48.5,45.5 parent: 2 type: Transform - - uid: 5866 + - uid: 5881 components: - pos: 47.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5867 + - uid: 5882 components: - pos: 46.5,45.5 parent: 2 type: Transform - - uid: 5868 + - uid: 5883 components: - pos: 45.5,45.5 parent: 2 type: Transform - - uid: 5869 + - uid: 5884 components: - pos: 44.5,45.5 parent: 2 type: Transform - - uid: 5870 + - uid: 5885 components: - pos: 58.5,45.5 parent: 2 type: Transform - - uid: 5871 + - uid: 5886 components: - pos: 59.5,45.5 parent: 2 type: Transform - - uid: 5872 + - uid: 5887 components: - pos: 60.5,45.5 parent: 2 type: Transform - - uid: 5873 + - uid: 5888 components: - pos: 60.5,46.5 parent: 2 type: Transform - - uid: 5874 + - uid: 5889 components: - pos: 60.5,47.5 parent: 2 type: Transform - - uid: 5875 + - uid: 5890 components: - pos: -18.5,24.5 parent: 2 type: Transform - - uid: 5876 + - uid: 5891 components: - pos: -18.5,25.5 parent: 2 type: Transform - - uid: 5877 + - uid: 5892 components: - pos: -18.5,26.5 parent: 2 type: Transform - - uid: 5878 + - uid: 5893 components: - pos: -18.5,27.5 parent: 2 type: Transform - - uid: 5879 + - uid: 5894 components: - pos: -18.5,28.5 parent: 2 type: Transform - - uid: 5880 + - uid: 5895 components: - pos: -18.5,29.5 parent: 2 type: Transform - - uid: 5881 + - uid: 5896 components: - pos: -18.5,30.5 parent: 2 type: Transform - - uid: 5882 + - uid: 5897 components: - pos: -19.5,30.5 parent: 2 type: Transform - - uid: 5883 + - uid: 5898 components: - pos: -20.5,30.5 parent: 2 type: Transform - - uid: 5884 + - uid: 5899 components: - pos: -21.5,30.5 parent: 2 type: Transform - - uid: 5885 + - uid: 5900 components: - pos: -22.5,30.5 parent: 2 type: Transform - - uid: 5886 + - uid: 5901 components: - pos: -23.5,30.5 parent: 2 type: Transform - - uid: 5887 + - uid: 5902 components: - pos: -20.5,22.5 parent: 2 type: Transform - - uid: 5888 + - uid: 5903 components: - pos: -20.5,23.5 parent: 2 type: Transform - - uid: 5889 + - uid: 5904 components: - pos: -20.5,24.5 parent: 2 type: Transform - - uid: 5890 + - uid: 5905 components: - pos: -20.5,25.5 parent: 2 type: Transform - - uid: 5891 + - uid: 5906 components: - pos: -20.5,26.5 parent: 2 type: Transform - - uid: 5892 + - uid: 5907 components: - pos: -20.5,27.5 parent: 2 type: Transform - - uid: 5893 + - uid: 5908 components: - pos: -20.5,28.5 parent: 2 type: Transform - - uid: 5894 + - uid: 5909 components: - pos: -20.5,29.5 parent: 2 type: Transform - - uid: 5895 + - uid: 5910 components: - pos: 44.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5896 + - uid: 5911 components: - pos: 45.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5897 + - uid: 5912 components: - pos: 46.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5898 + - uid: 5913 components: - pos: 47.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5899 + - uid: 5914 components: - pos: 46.5,-14.5 parent: 2 type: Transform - - uid: 5900 + - uid: 5915 components: - pos: 46.5,-15.5 parent: 2 type: Transform - - uid: 5901 + - uid: 5916 components: - pos: 46.5,-16.5 parent: 2 type: Transform - - uid: 5902 + - uid: 5917 components: - pos: 37.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5903 + - uid: 5918 components: - pos: 36.5,-13.5 parent: 2 type: Transform - - uid: 5904 + - uid: 5919 components: - pos: 61.5,26.5 parent: 2 type: Transform - - uid: 5905 + - uid: 5920 components: - pos: 62.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5906 + - uid: 5921 components: - pos: 63.5,26.5 parent: 2 type: Transform - - uid: 5907 + - uid: 5922 components: - pos: 64.5,26.5 parent: 2 type: Transform - - uid: 5908 + - uid: 5923 components: - pos: 65.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5909 + - uid: 5924 components: - pos: 65.5,25.5 parent: 2 type: Transform - - uid: 5910 + - uid: 5925 components: - pos: 64.5,15.5 parent: 2 type: Transform - - uid: 5911 + - uid: 5926 components: - pos: 64.5,16.5 parent: 2 type: Transform - - uid: 5912 + - uid: 5927 components: - pos: 64.5,17.5 parent: 2 type: Transform - - uid: 5913 + - uid: 5928 components: - pos: 12.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5914 + - uid: 5929 components: - pos: 11.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5915 + - uid: 5930 components: - pos: 10.5,32.5 parent: 2 type: Transform - - uid: 5916 + - uid: 5931 components: - pos: 9.5,32.5 parent: 2 type: Transform - - uid: 5917 + - uid: 5932 components: - pos: 8.5,32.5 parent: 2 type: Transform - - uid: 5918 + - uid: 5933 components: - pos: 7.5,32.5 parent: 2 type: Transform - - uid: 5919 + - uid: 5934 components: - pos: 6.5,32.5 parent: 2 type: Transform - - uid: 5920 + - uid: 5935 components: - pos: 5.5,32.5 parent: 2 type: Transform - - uid: 5921 + - uid: 5936 components: - pos: 4.5,32.5 parent: 2 type: Transform - - uid: 5922 + - uid: 5937 components: - pos: 9.5,31.5 parent: 2 type: Transform - - uid: 5923 + - uid: 5938 components: - pos: 9.5,30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5924 + - uid: 5939 components: - pos: 8.5,30.5 parent: 2 type: Transform - - uid: 5925 + - uid: 5940 components: - pos: 7.5,30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5926 + - uid: 5941 components: - pos: 6.5,30.5 parent: 2 type: Transform - - uid: 5927 + - uid: 5942 components: - pos: 6.5,31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5928 + - uid: 5943 components: - pos: 6.5,33.5 parent: 2 type: Transform - - uid: 5929 + - uid: 5944 components: - pos: 6.5,34.5 parent: 2 type: Transform - - uid: 5930 + - uid: 5945 components: - pos: 7.5,34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5931 + - uid: 5946 components: - pos: 8.5,34.5 parent: 2 type: Transform - - uid: 5932 + - uid: 5947 components: - pos: 9.5,34.5 parent: 2 type: Transform - - uid: 5933 + - uid: 5948 components: - pos: 9.5,33.5 parent: 2 type: Transform - - uid: 5934 + - uid: 5949 components: - pos: 57.5,33.5 parent: 2 type: Transform - - uid: 5935 + - uid: 5950 components: - pos: 58.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5936 + - uid: 5951 components: - pos: 55.5,31.5 parent: 2 type: Transform - - uid: 5937 + - uid: 5952 components: - pos: 54.5,31.5 parent: 2 type: Transform - - uid: 5938 + - uid: 5953 components: - pos: -15.5,42.5 parent: 2 type: Transform - - uid: 5939 + - uid: 5954 components: - pos: -16.5,42.5 parent: 2 type: Transform - - uid: 5940 + - uid: 5955 components: - pos: -16.5,41.5 parent: 2 type: Transform - - uid: 5941 + - uid: 5956 components: - pos: -16.5,40.5 parent: 2 type: Transform - - uid: 5942 + - uid: 5957 components: - pos: -16.5,39.5 parent: 2 type: Transform - - uid: 5943 + - uid: 5958 components: - pos: -16.5,38.5 parent: 2 type: Transform - - uid: 5944 + - uid: 5959 components: - pos: -16.5,37.5 parent: 2 type: Transform - - uid: 5945 + - uid: 5960 components: - pos: -16.5,36.5 parent: 2 type: Transform - - uid: 5946 + - uid: 5961 components: - pos: -16.5,35.5 parent: 2 type: Transform - - uid: 5947 + - uid: 5962 components: - pos: -16.5,34.5 parent: 2 type: Transform - - uid: 5948 + - uid: 5963 components: - pos: -16.5,33.5 parent: 2 type: Transform - - uid: 5949 + - uid: 5964 components: - pos: -16.5,32.5 parent: 2 type: Transform - - uid: 5950 + - uid: 5965 components: - pos: -16.5,31.5 parent: 2 type: Transform - - uid: 5951 + - uid: 5966 components: - pos: -16.5,30.5 parent: 2 type: Transform - - uid: 5952 + - uid: 5967 components: - pos: -16.5,29.5 parent: 2 type: Transform - - uid: 5953 + - uid: 5968 components: - pos: -15.5,29.5 parent: 2 type: Transform - - uid: 5954 + - uid: 5969 components: - pos: -14.5,29.5 parent: 2 type: Transform - - uid: 5955 + - uid: 5970 components: - pos: -14.5,30.5 parent: 2 type: Transform - - uid: 5956 + - uid: 5971 components: - pos: -14.5,31.5 parent: 2 type: Transform - - uid: 5957 + - uid: 5972 components: - pos: -14.5,32.5 parent: 2 type: Transform - - uid: 5958 + - uid: 5973 components: - pos: -14.5,33.5 parent: 2 type: Transform - - uid: 5959 + - uid: 5974 components: - pos: -14.5,34.5 parent: 2 type: Transform - - uid: 5960 + - uid: 5975 components: - pos: -14.5,35.5 parent: 2 type: Transform - - uid: 5961 + - uid: 5976 components: - pos: -14.5,36.5 parent: 2 type: Transform - - uid: 5962 + - uid: 5977 components: - pos: -14.5,37.5 parent: 2 type: Transform - - uid: 5963 + - uid: 5978 components: - pos: -14.5,38.5 parent: 2 type: Transform - - uid: 5964 + - uid: 5979 components: - pos: -14.5,39.5 parent: 2 type: Transform - - uid: 5965 + - uid: 5980 components: - pos: -14.5,40.5 parent: 2 type: Transform - - uid: 5966 + - uid: 5981 components: - pos: -14.5,41.5 parent: 2 type: Transform - - uid: 5967 + - uid: 5982 components: - pos: -14.5,42.5 parent: 2 type: Transform - - uid: 5968 + - uid: 5983 components: - pos: -17.5,41.5 parent: 2 type: Transform - - uid: 5969 + - uid: 5984 components: - pos: -18.5,41.5 parent: 2 type: Transform - - uid: 5970 + - uid: 5985 components: - pos: -18.5,42.5 parent: 2 type: Transform - - uid: 5971 + - uid: 5986 components: - pos: -18.5,43.5 parent: 2 type: Transform - - uid: 5972 + - uid: 5987 components: - pos: -18.5,44.5 parent: 2 type: Transform - - uid: 5973 + - uid: 5988 components: - pos: -18.5,45.5 parent: 2 type: Transform - - uid: 5974 + - uid: 5989 components: - pos: -19.5,45.5 parent: 2 type: Transform - - uid: 5975 + - uid: 5990 components: - pos: -20.5,45.5 parent: 2 type: Transform - - uid: 5976 + - uid: 5991 components: - pos: -21.5,45.5 parent: 2 type: Transform - - uid: 5977 + - uid: 5992 components: - pos: -22.5,45.5 parent: 2 type: Transform - - uid: 5978 + - uid: 5993 components: - pos: -21.5,44.5 parent: 2 type: Transform - - uid: 5979 + - uid: 5994 components: - pos: -21.5,43.5 parent: 2 type: Transform - - uid: 5980 + - uid: 5995 components: - pos: -21.5,42.5 parent: 2 type: Transform - - uid: 5981 + - uid: 5996 components: - pos: -21.5,41.5 parent: 2 type: Transform - - uid: 5982 + - uid: 5997 components: - pos: -21.5,40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 5983 + - uid: 5998 components: - pos: -17.5,44.5 parent: 2 type: Transform - - uid: 5984 + - uid: 5999 components: - pos: -16.5,44.5 parent: 2 type: Transform - - uid: 5985 + - uid: 6000 components: - pos: -16.5,45.5 parent: 2 type: Transform - - uid: 5986 + - uid: 6001 components: - pos: -16.5,46.5 parent: 2 type: Transform - - uid: 5987 + - uid: 6002 components: - pos: -16.5,47.5 parent: 2 type: Transform - - uid: 5988 + - uid: 6003 components: - pos: -16.5,48.5 parent: 2 type: Transform - - uid: 5989 + - uid: 6004 components: - pos: -16.5,49.5 parent: 2 type: Transform - - uid: 5990 + - uid: 6005 components: - pos: -16.5,50.5 parent: 2 type: Transform - - uid: 5991 + - uid: 6006 components: - pos: -16.5,51.5 parent: 2 type: Transform - - uid: 5992 + - uid: 6007 components: - pos: -17.5,51.5 parent: 2 type: Transform - - uid: 5993 + - uid: 6008 components: - pos: -18.5,51.5 parent: 2 type: Transform - - uid: 5994 + - uid: 6009 components: - pos: -18.5,50.5 parent: 2 type: Transform - - uid: 5995 + - uid: 6010 components: - pos: -18.5,49.5 parent: 2 type: Transform - - uid: 5996 + - uid: 6011 components: - pos: -18.5,48.5 parent: 2 type: Transform - - uid: 5997 + - uid: 6012 components: - pos: -18.5,47.5 parent: 2 type: Transform - - uid: 5998 + - uid: 6013 components: - pos: -18.5,46.5 parent: 2 type: Transform - - uid: 5999 + - uid: 6014 components: - pos: -13.5,39.5 parent: 2 type: Transform - - uid: 6000 + - uid: 6015 components: - pos: -12.5,39.5 parent: 2 type: Transform - - uid: 6001 + - uid: 6016 components: - pos: -11.5,39.5 parent: 2 type: Transform - - uid: 6002 + - uid: 6017 components: - pos: -10.5,39.5 parent: 2 type: Transform - - uid: 6003 + - uid: 6018 components: - pos: -9.5,39.5 parent: 2 type: Transform - - uid: 6004 + - uid: 6019 components: - pos: -8.5,39.5 parent: 2 type: Transform - - uid: 6005 + - uid: 6020 components: - pos: -8.5,38.5 parent: 2 type: Transform - - uid: 6006 + - uid: 6021 components: - pos: -8.5,37.5 parent: 2 type: Transform - - uid: 6007 + - uid: 6022 components: - pos: -9.5,37.5 parent: 2 type: Transform - - uid: 6008 + - uid: 6023 components: - pos: -10.5,37.5 parent: 2 type: Transform - - uid: 6009 + - uid: 6024 components: - pos: -11.5,37.5 parent: 2 type: Transform - - uid: 6010 + - uid: 6025 components: - pos: -12.5,37.5 parent: 2 type: Transform - - uid: 6011 + - uid: 6026 components: - pos: -13.5,37.5 parent: 2 type: Transform - - uid: 6012 + - uid: 6027 components: - pos: -17.5,34.5 parent: 2 type: Transform - - uid: 6013 + - uid: 6028 components: - pos: -18.5,34.5 parent: 2 type: Transform - - uid: 6014 + - uid: 6029 components: - pos: -19.5,34.5 parent: 2 type: Transform - - uid: 6015 + - uid: 6030 components: - pos: -20.5,34.5 parent: 2 type: Transform - - uid: 6016 + - uid: 6031 components: - pos: -21.5,34.5 parent: 2 type: Transform - - uid: 6017 + - uid: 6032 components: - pos: -13.5,34.5 parent: 2 type: Transform - - uid: 6018 + - uid: 6033 components: - pos: -12.5,34.5 parent: 2 type: Transform - - uid: 6019 + - uid: 6034 components: - pos: -11.5,34.5 parent: 2 type: Transform - - uid: 6020 + - uid: 6035 components: - pos: -11.5,33.5 parent: 2 type: Transform - - uid: 6021 + - uid: 6036 components: - pos: -11.5,32.5 parent: 2 type: Transform - - uid: 6022 + - uid: 6037 components: - pos: -11.5,31.5 parent: 2 type: Transform - - uid: 6023 + - uid: 6038 components: - pos: -15.5,44.5 parent: 2 type: Transform - - uid: 6024 + - uid: 6039 components: - pos: -41.5,23.5 parent: 2 type: Transform - - uid: 6025 + - uid: 6040 components: - pos: -41.5,24.5 parent: 2 type: Transform - - uid: 6026 + - uid: 6041 components: - pos: -14.5,44.5 parent: 2 type: Transform - - uid: 6027 + - uid: 6042 components: - pos: -13.5,44.5 parent: 2 type: Transform - - uid: 6028 + - uid: 6043 components: - pos: -12.5,44.5 parent: 2 type: Transform - - uid: 6029 + - uid: 6044 components: - pos: -11.5,44.5 parent: 2 type: Transform - - uid: 6030 + - uid: 6045 components: - pos: -10.5,44.5 parent: 2 type: Transform - - uid: 6031 + - uid: 6046 components: - pos: -15.5,46.5 parent: 2 type: Transform - - uid: 6032 + - uid: 6047 components: - pos: -14.5,46.5 parent: 2 type: Transform - - uid: 6033 + - uid: 6048 components: - pos: -13.5,46.5 parent: 2 type: Transform - - uid: 6034 + - uid: 6049 components: - pos: -12.5,46.5 parent: 2 type: Transform - - uid: 6035 + - uid: 6050 components: - pos: -11.5,46.5 parent: 2 type: Transform - - uid: 6036 + - uid: 6051 components: - pos: -10.5,46.5 parent: 2 type: Transform - - uid: 6037 + - uid: 6052 components: - pos: 52.5,39.5 parent: 2 type: Transform - - uid: 6038 + - uid: 6053 components: - pos: 51.5,39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6039 + - uid: 6054 components: - pos: 49.5,39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6040 + - uid: 6055 components: - pos: 48.5,39.5 parent: 2 type: Transform - - uid: 6041 + - uid: 6056 components: - pos: 47.5,38.5 parent: 2 type: Transform - - uid: 6042 + - uid: 6057 components: - pos: 47.5,39.5 parent: 2 type: Transform - - uid: 6043 + - uid: 6058 components: - pos: 47.5,37.5 parent: 2 type: Transform - - uid: 6044 + - uid: 6059 components: - pos: 46.5,37.5 parent: 2 type: Transform - - uid: 6045 + - uid: 6060 components: - pos: 45.5,37.5 parent: 2 type: Transform - - uid: 6046 + - uid: 6061 components: - pos: 45.5,36.5 parent: 2 type: Transform - - uid: 6047 + - uid: 6062 components: - pos: 45.5,35.5 parent: 2 type: Transform - - uid: 6048 + - uid: 6063 components: - pos: 46.5,35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6049 + - uid: 6064 components: - pos: 46.5,33.5 parent: 2 type: Transform - - uid: 6050 + - uid: 6065 components: - pos: 46.5,32.5 parent: 2 type: Transform - - uid: 6051 + - uid: 6066 components: - pos: 47.5,32.5 parent: 2 type: Transform - - uid: 6052 + - uid: 6067 components: - pos: 48.5,32.5 parent: 2 type: Transform - - uid: 6053 + - uid: 6068 components: - pos: 49.5,32.5 parent: 2 type: Transform - - uid: 6054 + - uid: 6069 components: - pos: 52.5,40.5 parent: 2 type: Transform - - uid: 6055 + - uid: 6070 components: - pos: 52.5,41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6056 + - uid: 6071 components: - pos: 49.5,38.5 parent: 2 type: Transform - - uid: 6057 + - uid: 6072 components: - pos: 49.5,37.5 parent: 2 type: Transform - - uid: 6058 + - uid: 6073 components: - pos: 49.5,36.5 parent: 2 type: Transform - - uid: 6059 + - uid: 6074 components: - pos: 6.5,48.5 parent: 2 type: Transform - - uid: 6060 + - uid: 6075 components: - pos: 5.5,48.5 parent: 2 type: Transform - - uid: 6061 + - uid: 6076 components: - pos: 4.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6062 + - uid: 6077 components: - pos: 3.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6063 + - uid: 6078 components: - pos: 3.5,49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6064 + - uid: 6079 components: - pos: 2.5,49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6065 + - uid: 6080 components: - pos: 1.5,49.5 parent: 2 type: Transform - - uid: 6066 + - uid: 6081 components: - pos: 58.5,27.5 parent: 2 type: Transform - - uid: 6067 + - uid: 6082 components: - pos: 59.5,28.5 parent: 2 type: Transform - - uid: 6068 + - uid: 6083 components: - pos: 58.5,28.5 parent: 2 type: Transform - - uid: 6069 + - uid: 6084 components: - pos: 5.5,49.5 parent: 2 type: Transform - - uid: 6070 + - uid: 6085 components: - pos: 5.5,50.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6071 + - uid: 6086 components: - pos: 5.5,51.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6072 + - uid: 6087 components: - pos: 6.5,51.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6073 + - uid: 6088 components: - pos: 6.5,52.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6074 + - uid: 6089 components: - pos: 7.5,52.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6075 + - uid: 6090 components: - pos: 8.5,52.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6076 + - uid: 6091 components: - pos: 63.5,27.5 parent: 2 type: Transform - - uid: 6077 + - uid: 6092 components: - pos: 63.5,28.5 parent: 2 type: Transform - - uid: 6078 + - uid: 6093 components: - pos: 63.5,29.5 parent: 2 type: Transform - - uid: 6079 + - uid: 6094 components: - pos: 16.5,35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6080 + - uid: 6095 components: - pos: 16.5,36.5 parent: 2 type: Transform - - uid: 6081 + - uid: 6096 components: - pos: 16.5,37.5 parent: 2 type: Transform - - uid: 6082 + - uid: 6097 components: - pos: 16.5,38.5 parent: 2 type: Transform - - uid: 6083 + - uid: 6098 components: - pos: 16.5,39.5 parent: 2 type: Transform - - uid: 6084 + - uid: 6099 components: - pos: 15.5,39.5 parent: 2 type: Transform - - uid: 6085 + - uid: 6100 components: - pos: 14.5,39.5 parent: 2 type: Transform - - uid: 6086 + - uid: 6101 components: - pos: 14.5,38.5 parent: 2 type: Transform - - uid: 6087 + - uid: 6102 components: - pos: 14.5,37.5 parent: 2 type: Transform - - uid: 6088 + - uid: 6103 components: - pos: 14.5,36.5 parent: 2 type: Transform - - uid: 6089 + - uid: 6104 components: - pos: 15.5,36.5 parent: 2 type: Transform - - uid: 6090 + - uid: 6105 components: - pos: 17.5,39.5 parent: 2 type: Transform - - uid: 6091 + - uid: 6106 components: - pos: 18.5,39.5 parent: 2 type: Transform - - uid: 6092 + - uid: 6107 components: - pos: 18.5,38.5 parent: 2 type: Transform - - uid: 6093 + - uid: 6108 components: - pos: 18.5,37.5 parent: 2 type: Transform - - uid: 6094 + - uid: 6109 components: - pos: 18.5,36.5 parent: 2 type: Transform - - uid: 6095 + - uid: 6110 components: - pos: 17.5,36.5 parent: 2 type: Transform - - uid: 6096 + - uid: 6111 components: - pos: 16.5,40.5 parent: 2 type: Transform - - uid: 6097 + - uid: 6112 components: - pos: 63.5,30.5 parent: 2 type: Transform - - uid: 6098 + - uid: 6113 components: - pos: 63.5,31.5 parent: 2 type: Transform - - uid: 6099 + - uid: 6114 components: - pos: 63.5,32.5 parent: 2 type: Transform - - uid: 6100 + - uid: 6115 components: - pos: 63.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6101 + - uid: 6116 components: - pos: 63.5,34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6102 + - uid: 6117 components: - pos: 63.5,35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6103 + - uid: 6118 components: - pos: 63.5,36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6104 + - uid: 6119 components: - pos: 64.5,36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6105 + - uid: 6120 components: - pos: 65.5,36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6106 + - uid: 6121 components: - pos: 66.5,36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6107 + - uid: 6122 components: - pos: 67.5,36.5 parent: 2 type: Transform - - uid: 6108 + - uid: 6123 components: - pos: 68.5,36.5 parent: 2 type: Transform - - uid: 6109 + - uid: 6124 components: - pos: 69.5,36.5 parent: 2 type: Transform - - uid: 6110 + - uid: 6125 components: - pos: 70.5,36.5 parent: 2 type: Transform - - uid: 6111 + - uid: 6126 components: - pos: 71.5,36.5 parent: 2 type: Transform - - uid: 6112 + - uid: 6127 components: - pos: 72.5,36.5 parent: 2 type: Transform - - uid: 6113 + - uid: 6128 components: - pos: 73.5,36.5 parent: 2 type: Transform - - uid: 6114 + - uid: 6129 components: - pos: 74.5,36.5 parent: 2 type: Transform - - uid: 6115 + - uid: 6130 components: - pos: 75.5,36.5 parent: 2 type: Transform - - uid: 6116 + - uid: 6131 components: - pos: 76.5,36.5 parent: 2 type: Transform - - uid: 6117 + - uid: 6132 components: - pos: 73.5,35.5 parent: 2 type: Transform - - uid: 6118 + - uid: 6133 components: - pos: 73.5,34.5 parent: 2 type: Transform - - uid: 6119 + - uid: 6134 components: - pos: 71.5,35.5 parent: 2 type: Transform - - uid: 6120 + - uid: 6135 components: - pos: 71.5,34.5 parent: 2 type: Transform - - uid: 6121 + - uid: 6136 components: - pos: 71.5,37.5 parent: 2 type: Transform - - uid: 6122 + - uid: 6137 components: - pos: 71.5,38.5 parent: 2 type: Transform - - uid: 6123 + - uid: 6138 components: - pos: 73.5,38.5 parent: 2 type: Transform - - uid: 6124 + - uid: 6139 components: - pos: 73.5,37.5 parent: 2 type: Transform - - uid: 6125 + - uid: 6140 components: - pos: 39.5,47.5 parent: 2 type: Transform - - uid: 6126 + - uid: 6141 components: - pos: 43.5,45.5 parent: 2 type: Transform - - uid: 6127 + - uid: 6142 components: - pos: 42.5,45.5 parent: 2 type: Transform - - uid: 6128 + - uid: 6143 components: - pos: 41.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6129 + - uid: 6144 components: - pos: 40.5,45.5 parent: 2 type: Transform - - uid: 6130 + - uid: 6145 components: - pos: 39.5,45.5 parent: 2 type: Transform - - uid: 6131 + - uid: 6146 components: - pos: 38.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6132 + - uid: 6147 components: - pos: 37.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6133 + - uid: 6148 components: - pos: 36.5,45.5 parent: 2 type: Transform - - uid: 6134 + - uid: 6149 components: - pos: 35.5,45.5 parent: 2 type: Transform - - uid: 6135 + - uid: 6150 components: - pos: 34.5,45.5 parent: 2 type: Transform - - uid: 6136 + - uid: 6151 components: - pos: 39.5,46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6137 + - uid: 6152 components: - pos: 38.5,44.5 parent: 2 type: Transform - - uid: 6138 + - uid: 6153 components: - pos: 38.5,43.5 parent: 2 type: Transform - - uid: 6139 + - uid: 6154 components: - pos: 38.5,48.5 parent: 2 type: Transform - - uid: 6140 + - uid: 6155 components: - pos: 38.5,49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6141 + - uid: 6156 components: - pos: 38.5,50.5 parent: 2 type: Transform - - uid: 6142 + - uid: 6157 components: - pos: 39.5,50.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6143 + - uid: 6158 components: - pos: 39.5,51.5 parent: 2 type: Transform - - uid: 6144 + - uid: 6159 components: - pos: 40.5,51.5 parent: 2 type: Transform - - uid: 6145 + - uid: 6160 components: - pos: 41.5,51.5 parent: 2 type: Transform - - uid: 6146 + - uid: 6161 components: - pos: 41.5,44.5 parent: 2 type: Transform - - uid: 6147 + - uid: 6162 components: - pos: 41.5,46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6148 + - uid: 6163 components: - pos: 41.5,47.5 parent: 2 type: Transform - - uid: 6149 + - uid: 6164 components: - pos: 34.5,46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6150 + - uid: 6165 components: - pos: 34.5,47.5 parent: 2 type: Transform - - uid: 6151 + - uid: 6166 components: - pos: 35.5,44.5 parent: 2 type: Transform - - uid: 6152 + - uid: 6167 components: - pos: 35.5,43.5 parent: 2 type: Transform - - uid: 6153 + - uid: 6168 components: - pos: 45.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6154 + - uid: 6169 components: - pos: 45.5,31.5 parent: 2 type: Transform - - uid: 6155 + - uid: 6170 components: - pos: 45.5,30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6156 + - uid: 6171 components: - pos: 45.5,29.5 parent: 2 type: Transform - - uid: 6157 + - uid: 6172 components: - pos: 44.5,29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6158 + - uid: 6173 components: - pos: 43.5,29.5 parent: 2 type: Transform - - uid: 6159 + - uid: 6174 components: - pos: 37.5,50.5 parent: 2 type: Transform - - uid: 6160 + - uid: 6175 components: - pos: -9.5,46.5 parent: 2 type: Transform - - uid: 6161 + - uid: 6176 components: - pos: -8.5,46.5 parent: 2 type: Transform - - uid: 6162 + - uid: 6177 components: - pos: -7.5,46.5 parent: 2 type: Transform - - uid: 6163 + - uid: 6178 components: - pos: -6.5,46.5 parent: 2 type: Transform - - uid: 6164 + - uid: 6179 components: - pos: -5.5,46.5 parent: 2 type: Transform - - uid: 6165 + - uid: 6180 components: - pos: -4.5,46.5 parent: 2 type: Transform - - uid: 6166 + - uid: 6181 components: - pos: -3.5,46.5 parent: 2 type: Transform - - uid: 6167 + - uid: 6182 components: - pos: -2.5,46.5 parent: 2 type: Transform - - uid: 6168 + - uid: 6183 components: - pos: -1.5,46.5 parent: 2 type: Transform - - uid: 6169 + - uid: 6184 components: - pos: -0.5,46.5 parent: 2 type: Transform - - uid: 6170 + - uid: 6185 components: - pos: -0.5,45.5 parent: 2 type: Transform - - uid: 6171 + - uid: 6186 components: - pos: -0.5,44.5 parent: 2 type: Transform - - uid: 6172 + - uid: 6187 components: - pos: -1.5,44.5 parent: 2 type: Transform - - uid: 6173 + - uid: 6188 components: - pos: -2.5,44.5 parent: 2 type: Transform - - uid: 6174 + - uid: 6189 components: - pos: -3.5,44.5 parent: 2 type: Transform - - uid: 6175 + - uid: 6190 components: - pos: -4.5,44.5 parent: 2 type: Transform - - uid: 6176 + - uid: 6191 components: - pos: -5.5,44.5 parent: 2 type: Transform - - uid: 6177 + - uid: 6192 components: - pos: -6.5,44.5 parent: 2 type: Transform - - uid: 6178 + - uid: 6193 components: - pos: -7.5,44.5 parent: 2 type: Transform - - uid: 6179 + - uid: 6194 components: - pos: -8.5,44.5 parent: 2 type: Transform - - uid: 6180 + - uid: 6195 components: - pos: -9.5,44.5 parent: 2 type: Transform - - uid: 6181 + - uid: 6196 components: - pos: 0.5,46.5 parent: 2 type: Transform - - uid: 6182 + - uid: 6197 components: - pos: 0.5,47.5 parent: 2 type: Transform - - uid: 6183 + - uid: 6198 components: - pos: -0.5,48.5 parent: 2 type: Transform - - uid: 6184 + - uid: 6199 components: - pos: -0.5,49.5 parent: 2 type: Transform - - uid: 6185 + - uid: 6200 components: - pos: -0.5,50.5 parent: 2 type: Transform - - uid: 6186 + - uid: 6201 components: - pos: -0.5,51.5 parent: 2 type: Transform - - uid: 6187 + - uid: 6202 components: - pos: -0.5,52.5 parent: 2 type: Transform - - uid: 6188 + - uid: 6203 components: - pos: -0.5,53.5 parent: 2 type: Transform - - uid: 6189 + - uid: 6204 components: - pos: -0.5,54.5 parent: 2 type: Transform - - uid: 6190 + - uid: 6205 components: - pos: 0.5,48.5 parent: 2 type: Transform - - uid: 6191 + - uid: 6206 components: - pos: 1.5,48.5 parent: 2 type: Transform - - uid: 6192 + - uid: 6207 components: - pos: 1.5,50.5 parent: 2 type: Transform - - uid: 6193 + - uid: 6208 components: - pos: 1.5,51.5 parent: 2 type: Transform - - uid: 6194 + - uid: 6209 components: - pos: 1.5,52.5 parent: 2 type: Transform - - uid: 6195 + - uid: 6210 components: - pos: 1.5,53.5 parent: 2 type: Transform - - uid: 6196 + - uid: 6211 components: - pos: 1.5,54.5 parent: 2 type: Transform - - uid: 6197 + - uid: 6212 components: - pos: -10.5,23.5 parent: 2 type: Transform - - uid: 6198 + - uid: 6213 components: - pos: -10.5,22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6199 + - uid: 6214 components: - pos: -10.5,21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6200 + - uid: 6215 components: - pos: -10.5,20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6201 + - uid: 6216 components: - pos: -10.5,19.5 parent: 2 type: Transform - - uid: 6202 + - uid: 6217 components: - pos: -10.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6203 + - uid: 6218 components: - pos: -11.5,18.5 parent: 2 type: Transform - - uid: 6204 + - uid: 6219 components: - pos: -12.5,18.5 parent: 2 type: Transform - - uid: 6205 + - uid: 6220 components: - pos: -13.5,18.5 parent: 2 type: Transform - - uid: 6206 + - uid: 6221 components: - pos: -13.5,19.5 parent: 2 type: Transform - - uid: 6207 + - uid: 6222 components: - pos: -13.5,20.5 parent: 2 type: Transform - - uid: 6208 + - uid: 6223 components: - pos: -13.5,21.5 parent: 2 type: Transform - - uid: 6209 + - uid: 6224 components: - pos: -11.5,42.5 parent: 2 type: Transform - - uid: 6210 + - uid: 6225 components: - pos: -10.5,42.5 parent: 2 type: Transform - - uid: 6211 + - uid: 6226 components: - pos: -9.5,42.5 parent: 2 type: Transform - - uid: 6212 + - uid: 6227 components: - pos: -9.5,43.5 parent: 2 type: Transform - - uid: 6213 + - uid: 6228 components: - pos: 33.5,45.5 parent: 2 type: Transform - - uid: 6214 + - uid: 6229 components: - pos: 32.5,45.5 parent: 2 type: Transform - - uid: 6215 + - uid: 6230 components: - pos: 31.5,45.5 parent: 2 type: Transform - - uid: 6216 + - uid: 6231 components: - pos: 30.5,45.5 parent: 2 type: Transform - - uid: 6217 + - uid: 6232 components: - pos: 29.5,45.5 parent: 2 type: Transform - - uid: 6218 + - uid: 6233 components: - pos: 29.5,44.5 parent: 2 type: Transform - - uid: 6219 + - uid: 6234 components: - pos: 29.5,43.5 parent: 2 type: Transform - - uid: 6220 + - uid: 6235 components: - pos: 29.5,42.5 parent: 2 type: Transform - - uid: 6221 + - uid: 6236 components: - pos: 29.5,46.5 parent: 2 type: Transform - - uid: 6222 + - uid: 6237 components: - pos: 29.5,47.5 parent: 2 type: Transform - - uid: 6223 + - uid: 6238 components: - pos: -2.5,31.5 parent: 2 type: Transform - - uid: 6224 + - uid: 6239 components: - pos: -2.5,30.5 parent: 2 type: Transform - - uid: 6225 + - uid: 6240 components: - pos: -2.5,29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6226 + - uid: 6241 components: - pos: -2.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6227 + - uid: 6242 components: - pos: -2.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6228 + - uid: 6243 components: - pos: -2.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6229 + - uid: 6244 components: - pos: -2.5,25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6230 + - uid: 6245 components: - pos: 3.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6231 + - uid: 6246 components: - pos: -22.5,34.5 parent: 2 type: Transform - - uid: 6232 + - uid: 6247 components: - pos: -23.5,34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6233 + - uid: 6248 components: - pos: -24.5,34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6234 + - uid: 6249 components: - pos: -24.5,35.5 parent: 2 type: Transform - - uid: 6235 + - uid: 6250 components: - pos: -24.5,36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6236 + - uid: 6251 components: - pos: -24.5,37.5 parent: 2 type: Transform - - uid: 6237 + - uid: 6252 components: - pos: -24.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6238 + - uid: 6253 components: - pos: -23.5,38.5 parent: 2 type: Transform - - uid: 6239 + - uid: 6254 components: - pos: -22.5,38.5 parent: 2 type: Transform - - uid: 6240 + - uid: 6255 components: - pos: -21.5,38.5 parent: 2 type: Transform - - uid: 6241 + - uid: 6256 components: - pos: -20.5,38.5 parent: 2 type: Transform - - uid: 6242 + - uid: 6257 components: - pos: -24.5,39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6243 + - uid: 6258 components: - pos: -24.5,40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6244 + - uid: 6259 components: - pos: -24.5,41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6245 + - uid: 6260 components: - pos: -24.5,42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6246 + - uid: 6261 components: - pos: -24.5,43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6247 + - uid: 6262 components: - pos: -24.5,44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6248 + - uid: 6263 components: - pos: -24.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6249 + - uid: 6264 components: - pos: -25.5,45.5 parent: 2 type: Transform - - uid: 6250 + - uid: 6265 components: - pos: -26.5,45.5 parent: 2 type: Transform - - uid: 6251 + - uid: 6266 components: - pos: -27.5,45.5 parent: 2 type: Transform - - uid: 6252 + - uid: 6267 components: - pos: -27.5,44.5 parent: 2 type: Transform - - uid: 6253 + - uid: 6268 components: - pos: -24.5,46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6254 + - uid: 6269 components: - pos: -24.5,47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6255 + - uid: 6270 components: - pos: -23.5,47.5 parent: 2 type: Transform - - uid: 6256 + - uid: 6271 components: - pos: -22.5,47.5 parent: 2 type: Transform - - uid: 6257 + - uid: 6272 components: - pos: -22.5,48.5 parent: 2 type: Transform - - uid: 6258 + - uid: 6273 components: - pos: -21.5,48.5 parent: 2 type: Transform - - uid: 6259 + - uid: 6274 components: - pos: -20.5,48.5 parent: 2 type: Transform - - uid: 6260 + - uid: 6275 components: - pos: -20.5,50.5 parent: 2 type: Transform - - uid: 6261 + - uid: 6276 components: - pos: -19.5,50.5 parent: 2 type: Transform - - uid: 6262 + - uid: 6277 components: - pos: -20.5,49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6263 + - uid: 6278 components: - pos: -8.5,60.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6264 + - uid: 6279 components: - pos: -8.5,59.5 parent: 2 type: Transform - - uid: 6265 + - uid: 6280 components: - pos: -7.5,58.5 parent: 2 type: Transform - - uid: 6266 + - uid: 6281 components: - pos: -6.5,58.5 parent: 2 type: Transform - - uid: 6267 + - uid: 6282 components: - pos: -5.5,58.5 parent: 2 type: Transform - - uid: 6268 + - uid: 6283 components: - pos: -4.5,58.5 parent: 2 type: Transform - - uid: 6269 + - uid: 6284 components: - pos: -3.5,58.5 parent: 2 type: Transform - - uid: 6270 + - uid: 6285 components: - pos: -2.5,58.5 parent: 2 type: Transform - - uid: 6271 + - uid: 6286 components: - pos: -1.5,58.5 parent: 2 type: Transform - - uid: 6272 + - uid: 6287 components: - pos: -0.5,58.5 parent: 2 type: Transform - - uid: 6273 + - uid: 6288 components: - pos: 0.5,58.5 parent: 2 type: Transform - - uid: 6274 + - uid: 6289 components: - pos: 0.5,57.5 parent: 2 type: Transform - - uid: 6275 + - uid: 6290 components: - pos: 0.5,56.5 parent: 2 type: Transform - - uid: 6276 + - uid: 6291 components: - pos: 0.5,55.5 parent: 2 type: Transform - - uid: 6277 + - uid: 6292 components: - pos: -2.5,59.5 parent: 2 type: Transform - - uid: 6278 + - uid: 6293 components: - pos: -2.5,60.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6279 + - uid: 6294 components: - pos: -2.5,61.5 parent: 2 type: Transform - - uid: 6280 + - uid: 6295 components: - pos: -2.5,62.5 parent: 2 type: Transform - - uid: 6281 + - uid: 6296 components: - pos: -1.5,62.5 parent: 2 type: Transform - - uid: 6282 + - uid: 6297 components: - pos: -1.5,63.5 parent: 2 type: Transform - - uid: 6283 + - uid: 6298 components: - pos: -1.5,65.5 parent: 2 type: Transform - - uid: 6284 + - uid: 6299 components: - pos: -1.5,64.5 parent: 2 type: Transform - - uid: 6285 + - uid: 6300 components: - pos: -0.5,59.5 parent: 2 type: Transform - - uid: 6286 + - uid: 6301 components: - pos: -0.5,60.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6287 + - uid: 6302 components: - pos: -0.5,61.5 parent: 2 type: Transform - - uid: 6288 + - uid: 6303 components: - pos: -0.5,62.5 parent: 2 type: Transform - - uid: 6289 + - uid: 6304 components: - pos: -1.5,66.5 parent: 2 type: Transform - - uid: 6290 + - uid: 6305 components: - pos: -2.5,66.5 parent: 2 type: Transform - - uid: 6291 + - uid: 6306 components: - pos: -3.5,66.5 parent: 2 type: Transform - - uid: 6292 + - uid: 6307 components: - pos: -4.5,66.5 parent: 2 type: Transform - - uid: 6293 + - uid: 6308 components: - pos: -5.5,66.5 parent: 2 type: Transform - - uid: 6294 + - uid: 6309 components: - pos: -5.5,67.5 parent: 2 type: Transform - - uid: 6295 + - uid: 6310 components: - pos: -5.5,68.5 parent: 2 type: Transform - - uid: 6296 + - uid: 6311 components: - pos: -5.5,69.5 parent: 2 type: Transform - - uid: 6297 + - uid: 6312 components: - pos: -5.5,70.5 parent: 2 type: Transform - - uid: 6298 + - uid: 6313 components: - pos: -5.5,71.5 parent: 2 type: Transform - - uid: 6299 + - uid: 6314 components: - pos: -5.5,72.5 parent: 2 type: Transform - - uid: 6300 + - uid: 6315 components: - pos: -4.5,72.5 parent: 2 type: Transform - - uid: 6301 + - uid: 6316 components: - pos: -3.5,72.5 parent: 2 type: Transform - - uid: 6302 + - uid: 6317 components: - pos: -2.5,72.5 parent: 2 type: Transform - - uid: 6303 + - uid: 6318 components: - pos: -1.5,72.5 parent: 2 type: Transform - - uid: 6304 + - uid: 6319 components: - pos: -0.5,72.5 parent: 2 type: Transform - - uid: 6305 + - uid: 6320 components: - pos: 0.5,72.5 parent: 2 type: Transform - - uid: 6306 + - uid: 6321 components: - pos: 1.5,72.5 parent: 2 type: Transform - - uid: 6307 + - uid: 6322 components: - pos: 2.5,72.5 parent: 2 type: Transform - - uid: 6308 + - uid: 6323 components: - pos: 2.5,71.5 parent: 2 type: Transform - - uid: 6309 + - uid: 6324 components: - pos: 2.5,70.5 parent: 2 type: Transform - - uid: 6310 + - uid: 6325 components: - pos: 2.5,69.5 parent: 2 type: Transform - - uid: 6311 + - uid: 6326 components: - pos: 2.5,68.5 parent: 2 type: Transform - - uid: 6312 + - uid: 6327 components: - pos: 2.5,67.5 parent: 2 type: Transform - - uid: 6313 + - uid: 6328 components: - pos: 2.5,66.5 parent: 2 type: Transform - - uid: 6314 + - uid: 6329 components: - pos: 1.5,66.5 parent: 2 type: Transform - - uid: 6315 + - uid: 6330 components: - pos: 0.5,66.5 parent: 2 type: Transform - - uid: 6316 + - uid: 6331 components: - pos: -0.5,66.5 parent: 2 type: Transform - - uid: 6317 + - uid: 6332 components: - pos: -1.5,67.5 parent: 2 type: Transform - - uid: 6318 + - uid: 6333 components: - pos: -1.5,68.5 parent: 2 type: Transform - - uid: 6319 + - uid: 6334 components: - pos: -1.5,69.5 parent: 2 type: Transform - - uid: 6320 + - uid: 6335 components: - pos: -7.5,59.5 parent: 2 type: Transform - - uid: 6321 + - uid: 6336 components: - pos: -9.5,59.5 parent: 2 type: Transform - - uid: 6322 + - uid: 6337 components: - pos: -10.5,59.5 parent: 2 type: Transform - - uid: 6323 + - uid: 6338 components: - pos: -11.5,59.5 parent: 2 type: Transform - - uid: 6324 + - uid: 6339 components: - pos: -12.5,59.5 parent: 2 type: Transform - - uid: 6325 + - uid: 6340 components: - pos: -12.5,58.5 parent: 2 type: Transform - - uid: 6326 + - uid: 6341 components: - pos: -12.5,57.5 parent: 2 type: Transform - - uid: 6327 + - uid: 6342 components: - pos: -12.5,56.5 parent: 2 type: Transform - - uid: 6328 + - uid: 6343 components: - pos: -12.5,55.5 parent: 2 type: Transform - - uid: 6329 + - uid: 6344 components: - pos: -12.5,54.5 parent: 2 type: Transform - - uid: 6330 + - uid: 6345 components: - pos: -12.5,53.5 parent: 2 type: Transform - - uid: 6331 + - uid: 6346 components: - pos: -12.5,52.5 parent: 2 type: Transform - - uid: 6332 + - uid: 6347 components: - pos: -12.5,51.5 parent: 2 type: Transform - - uid: 6333 + - uid: 6348 components: - pos: -12.5,50.5 parent: 2 type: Transform - - uid: 6334 + - uid: 6349 components: - pos: -12.5,49.5 parent: 2 type: Transform - - uid: 6335 + - uid: 6350 components: - pos: -13.5,49.5 parent: 2 type: Transform - - uid: 6336 + - uid: 6351 components: - pos: -14.5,49.5 parent: 2 type: Transform - - uid: 6337 + - uid: 6352 components: - pos: -14.5,50.5 parent: 2 type: Transform - - uid: 6338 + - uid: 6353 components: - pos: -14.5,51.5 parent: 2 type: Transform - - uid: 6339 + - uid: 6354 components: - pos: -13.5,51.5 parent: 2 type: Transform - - uid: 6340 + - uid: 6355 components: - pos: -12.5,60.5 parent: 2 type: Transform - - uid: 6341 + - uid: 6356 components: - pos: -12.5,61.5 parent: 2 type: Transform - - uid: 6342 + - uid: 6357 components: - pos: -12.5,62.5 parent: 2 type: Transform - - uid: 6343 + - uid: 6358 components: - pos: -12.5,63.5 parent: 2 type: Transform - - uid: 6344 + - uid: 6359 components: - pos: -12.5,64.5 parent: 2 type: Transform - - uid: 6345 + - uid: 6360 components: - pos: -12.5,65.5 parent: 2 type: Transform - - uid: 6346 + - uid: 6361 components: - pos: -12.5,66.5 parent: 2 type: Transform - - uid: 6347 + - uid: 6362 components: - pos: -12.5,67.5 parent: 2 type: Transform - - uid: 6348 + - uid: 6363 components: - pos: -12.5,68.5 parent: 2 type: Transform - - uid: 6349 + - uid: 6364 components: - pos: -12.5,69.5 parent: 2 type: Transform - - uid: 6350 + - uid: 6365 components: - pos: -12.5,70.5 parent: 2 type: Transform - - uid: 6351 + - uid: 6366 components: - pos: -12.5,71.5 parent: 2 type: Transform - - uid: 6352 + - uid: 6367 components: - pos: -12.5,72.5 parent: 2 type: Transform - - uid: 6353 + - uid: 6368 components: - pos: -12.5,73.5 parent: 2 type: Transform - - uid: 6354 + - uid: 6369 components: - pos: -12.5,74.5 parent: 2 type: Transform - - uid: 6355 + - uid: 6370 components: - pos: -13.5,67.5 parent: 2 type: Transform - - uid: 6356 + - uid: 6371 components: - pos: -14.5,67.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6357 + - uid: 6372 components: - pos: -15.5,67.5 parent: 2 type: Transform - - uid: 6358 + - uid: 6373 components: - pos: -16.5,67.5 parent: 2 type: Transform - - uid: 6359 + - uid: 6374 components: - pos: -17.5,67.5 parent: 2 type: Transform - - uid: 6360 + - uid: 6375 components: - pos: -17.5,66.5 parent: 2 type: Transform - - uid: 6361 + - uid: 6376 components: - pos: -17.5,65.5 parent: 2 type: Transform - - uid: 6362 + - uid: 6377 components: - pos: -17.5,64.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6363 + - uid: 6378 components: - pos: -17.5,63.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6364 + - uid: 6379 components: - pos: -17.5,62.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6365 + - uid: 6380 components: - pos: -17.5,61.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6366 + - uid: 6381 components: - pos: -17.5,60.5 parent: 2 type: Transform - - uid: 6367 + - uid: 6382 components: - pos: -17.5,59.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6368 + - uid: 6383 components: - pos: -17.5,58.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6369 + - uid: 6384 components: - pos: -17.5,57.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6370 + - uid: 6385 components: - pos: -17.5,56.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6371 + - uid: 6386 components: - pos: -17.5,55.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6372 + - uid: 6387 components: - pos: -18.5,55.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6373 + - uid: 6388 components: - pos: -19.5,55.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6374 + - uid: 6389 components: - pos: -20.5,55.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6375 + - uid: 6390 components: - pos: -21.5,55.5 parent: 2 type: Transform - - uid: 6376 + - uid: 6391 components: - pos: -22.5,55.5 parent: 2 type: Transform - - uid: 6377 + - uid: 6392 components: - pos: -22.5,54.5 parent: 2 type: Transform - - uid: 6378 + - uid: 6393 components: - pos: -22.5,53.5 parent: 2 type: Transform - - uid: 6379 + - uid: 6394 components: - pos: -22.5,52.5 parent: 2 type: Transform - - uid: 6380 + - uid: 6395 components: - pos: -22.5,51.5 parent: 2 type: Transform - - uid: 6381 + - uid: 6396 components: - pos: -21.5,53.5 parent: 2 type: Transform - - uid: 6382 + - uid: 6397 components: - pos: -21.5,56.5 parent: 2 type: Transform - - uid: 6383 + - uid: 6398 components: - pos: -21.5,57.5 parent: 2 type: Transform - - uid: 6384 + - uid: 6399 components: - pos: -21.5,58.5 parent: 2 type: Transform - - uid: 6385 + - uid: 6400 components: - pos: -21.5,59.5 parent: 2 type: Transform - - uid: 6386 + - uid: 6401 components: - pos: -21.5,60.5 parent: 2 type: Transform - - uid: 6387 + - uid: 6402 components: - pos: -21.5,61.5 parent: 2 type: Transform - - uid: 6388 + - uid: 6403 components: - pos: -21.5,62.5 parent: 2 type: Transform - - uid: 6389 + - uid: 6404 components: - pos: -21.5,63.5 parent: 2 type: Transform - - uid: 6390 + - uid: 6405 components: - pos: -21.5,64.5 parent: 2 type: Transform - - uid: 6391 + - uid: 6406 components: - pos: -21.5,65.5 parent: 2 type: Transform - - uid: 6392 + - uid: 6407 components: - pos: -21.5,66.5 parent: 2 type: Transform - - uid: 6393 + - uid: 6408 components: - pos: -21.5,67.5 parent: 2 type: Transform - - uid: 6394 + - uid: 6409 components: - pos: -21.5,68.5 parent: 2 type: Transform - - uid: 6395 + - uid: 6410 components: - pos: -21.5,69.5 parent: 2 type: Transform - - uid: 6396 + - uid: 6411 components: - pos: -21.5,70.5 parent: 2 type: Transform - - uid: 6397 + - uid: 6412 components: - pos: -21.5,71.5 parent: 2 type: Transform - - uid: 6398 + - uid: 6413 components: - pos: -21.5,72.5 parent: 2 type: Transform - - uid: 6399 + - uid: 6414 components: - pos: -21.5,73.5 parent: 2 type: Transform - - uid: 6400 + - uid: 6415 components: - pos: -21.5,74.5 parent: 2 type: Transform - - uid: 6401 + - uid: 6416 components: - pos: -17.5,68.5 parent: 2 type: Transform - - uid: 6402 + - uid: 6417 components: - pos: -17.5,69.5 parent: 2 type: Transform - - uid: 6403 + - uid: 6418 components: - pos: -17.5,70.5 parent: 2 type: Transform - - uid: 6404 + - uid: 6419 components: - pos: -17.5,54.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6405 + - uid: 6420 components: - pos: -17.5,53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6406 + - uid: 6421 components: - pos: -25.5,41.5 parent: 2 type: Transform - - uid: 6407 + - uid: 6422 components: - pos: -25.5,40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6408 + - uid: 6423 components: - pos: -26.5,41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6409 + - uid: 6424 components: - pos: -28.5,39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6410 + - uid: 6425 components: - pos: -27.5,41.5 parent: 2 type: Transform - - uid: 6411 + - uid: 6426 components: - pos: -28.5,40.5 parent: 2 type: Transform - - uid: 6412 + - uid: 6427 components: - pos: -28.5,41.5 parent: 2 type: Transform - - uid: 6413 + - uid: 6428 components: - pos: -28.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6414 + - uid: 6429 components: - pos: -29.5,38.5 parent: 2 type: Transform - - uid: 6415 + - uid: 6430 components: - pos: -30.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6416 + - uid: 6431 components: - pos: -31.5,38.5 parent: 2 type: Transform - - uid: 6417 + - uid: 6432 components: - pos: -32.5,38.5 parent: 2 type: Transform - - uid: 6418 + - uid: 6433 components: - pos: -32.5,39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6419 + - uid: 6434 components: - pos: -33.5,39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6420 + - uid: 6435 components: - pos: -34.5,39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6421 + - uid: 6436 components: - pos: -35.5,39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6422 + - uid: 6437 components: - pos: -36.5,39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6423 + - uid: 6438 components: - pos: -37.5,39.5 parent: 2 type: Transform - - uid: 6424 + - uid: 6439 components: - pos: -37.5,40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6425 + - uid: 6440 components: - pos: -37.5,41.5 parent: 2 type: Transform - - uid: 6426 + - uid: 6441 components: - pos: -37.5,42.5 parent: 2 type: Transform - - uid: 6427 + - uid: 6442 components: - pos: -38.5,39.5 parent: 2 type: Transform - - uid: 6428 + - uid: 6443 components: - pos: -39.5,39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6429 + - uid: 6444 components: - pos: -40.5,39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6430 + - uid: 6445 components: - pos: -41.5,39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6431 + - uid: 6446 components: - pos: -42.5,39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6432 + - uid: 6447 components: - pos: -43.5,39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6433 + - uid: 6448 components: - pos: -44.5,39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6434 + - uid: 6449 components: - pos: -45.5,39.5 parent: 2 type: Transform - - uid: 6435 + - uid: 6450 components: - pos: -46.5,39.5 parent: 2 type: Transform - - uid: 6436 + - uid: 6451 components: - pos: -41.5,38.5 parent: 2 type: Transform - - uid: 6437 + - uid: 6452 components: - pos: -29.5,37.5 parent: 2 type: Transform - - uid: 6438 + - uid: 6453 components: - pos: -29.5,36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6439 + - uid: 6454 components: - pos: -30.5,36.5 parent: 2 type: Transform - - uid: 6440 + - uid: 6455 components: - pos: -31.5,36.5 parent: 2 type: Transform - - uid: 6441 + - uid: 6456 components: - pos: -32.5,36.5 parent: 2 type: Transform - - uid: 6442 + - uid: 6457 components: - pos: -33.5,36.5 parent: 2 type: Transform - - uid: 6443 + - uid: 6458 components: - pos: -34.5,36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6444 + - uid: 6459 components: - pos: -34.5,37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6445 + - uid: 6460 components: - pos: -35.5,37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6446 + - uid: 6461 components: - pos: -36.5,37.5 parent: 2 type: Transform - - uid: 6447 + - uid: 6462 components: - pos: -37.5,37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6448 + - uid: 6463 components: - pos: -37.5,36.5 parent: 2 type: Transform - - uid: 6449 + - uid: 6464 components: - pos: -21.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6450 + - uid: 6465 components: - pos: -22.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6451 + - uid: 6466 components: - pos: -23.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6452 + - uid: 6467 components: - pos: -24.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6453 + - uid: 6468 components: - pos: -25.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6454 + - uid: 6469 components: - pos: -26.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6455 + - uid: 6470 components: - pos: -27.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6456 + - uid: 6471 components: - pos: -28.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6457 + - uid: 6472 components: - pos: -28.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6458 + - uid: 6473 components: - pos: -28.5,29.5 parent: 2 type: Transform - - uid: 6459 + - uid: 6474 components: - pos: -28.5,30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6460 + - uid: 6475 components: - pos: -28.5,31.5 parent: 2 type: Transform - - uid: 6461 + - uid: 6476 components: - pos: -27.5,31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6462 + - uid: 6477 components: - pos: -27.5,33.5 parent: 2 type: Transform - - uid: 6463 + - uid: 6478 components: - pos: -27.5,34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6464 + - uid: 6479 components: - pos: -27.5,35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6465 + - uid: 6480 components: - pos: -27.5,32.5 parent: 2 type: Transform - - uid: 6466 + - uid: 6481 components: - pos: -16.5,62.5 parent: 2 type: Transform - - uid: 6467 + - uid: 6482 components: - pos: -16.5,61.5 parent: 2 type: Transform - - uid: 6468 + - uid: 6483 components: - pos: -18.5,62.5 parent: 2 type: Transform - - uid: 6469 + - uid: 6484 components: - pos: -18.5,61.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6470 + - uid: 6485 components: - pos: 56.5,36.5 parent: 2 type: Transform - - uid: 6471 + - uid: 6486 components: - pos: 28.5,45.5 parent: 2 type: Transform - - uid: 6472 + - uid: 6487 components: - pos: 27.5,45.5 parent: 2 type: Transform - - uid: 6473 + - uid: 6488 components: - pos: 26.5,45.5 parent: 2 type: Transform - - uid: 6474 + - uid: 6489 components: - pos: 25.5,45.5 parent: 2 type: Transform - - uid: 6475 + - uid: 6490 components: - pos: 24.5,45.5 parent: 2 type: Transform - - uid: 6476 + - uid: 6491 components: - pos: 23.5,45.5 parent: 2 type: Transform - - uid: 6477 + - uid: 6492 components: - pos: 22.5,45.5 parent: 2 type: Transform - - uid: 6478 + - uid: 6493 components: - pos: 21.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6479 + - uid: 6494 components: - pos: -8.5,-76.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6480 + - uid: 6495 components: - pos: -8.5,-77.5 parent: 2 type: Transform - - uid: 6481 + - uid: 6496 components: - pos: -8.5,-78.5 parent: 2 type: Transform - - uid: 6482 + - uid: 6497 components: - pos: -8.5,-79.5 parent: 2 type: Transform - - uid: 6483 + - uid: 6498 components: - pos: -8.5,-80.5 parent: 2 type: Transform - - uid: 6484 + - uid: 6499 components: - pos: -8.5,-81.5 parent: 2 type: Transform - - uid: 6485 + - uid: 6500 components: - pos: -8.5,-82.5 parent: 2 type: Transform - - uid: 6486 + - uid: 6501 components: - pos: -8.5,-83.5 parent: 2 type: Transform - - uid: 6487 + - uid: 6502 components: - pos: -8.5,-84.5 parent: 2 type: Transform - - uid: 6488 + - uid: 6503 components: - pos: -8.5,-85.5 parent: 2 type: Transform - - uid: 6489 + - uid: 6504 components: - pos: -8.5,-86.5 parent: 2 type: Transform - - uid: 6490 + - uid: 6505 components: - pos: -7.5,-86.5 parent: 2 type: Transform - - uid: 6491 + - uid: 6506 components: - pos: -7.5,-87.5 parent: 2 type: Transform - - uid: 6492 + - uid: 6507 components: - pos: -7.5,-88.5 parent: 2 type: Transform - - uid: 6493 + - uid: 6508 components: - pos: -7.5,-89.5 parent: 2 type: Transform - - uid: 6494 + - uid: 6509 components: - pos: -7.5,-90.5 parent: 2 type: Transform - - uid: 6495 + - uid: 6510 components: - pos: -7.5,-91.5 parent: 2 type: Transform - - uid: 6496 + - uid: 6511 components: - pos: -7.5,-92.5 parent: 2 type: Transform - - uid: 6497 + - uid: 6512 components: - pos: -7.5,-93.5 parent: 2 type: Transform - - uid: 6498 + - uid: 6513 components: - pos: -7.5,-94.5 parent: 2 type: Transform - - uid: 6499 + - uid: 6514 components: - pos: -7.5,-95.5 parent: 2 type: Transform - - uid: 6500 + - uid: 6515 components: - pos: -7.5,-96.5 parent: 2 type: Transform - - uid: 6501 + - uid: 6516 components: - pos: -7.5,-97.5 parent: 2 type: Transform - - uid: 6502 + - uid: 6517 components: - pos: -8.5,-97.5 parent: 2 type: Transform - - uid: 6503 + - uid: 6518 components: - pos: -9.5,-97.5 parent: 2 type: Transform - - uid: 6504 + - uid: 6519 components: - pos: -10.5,-97.5 parent: 2 type: Transform - - uid: 6505 + - uid: 6520 components: - pos: -11.5,-97.5 parent: 2 type: Transform - - uid: 6506 + - uid: 6521 components: - pos: -12.5,-97.5 parent: 2 type: Transform - - uid: 6507 + - uid: 6522 components: - pos: -13.5,-97.5 parent: 2 type: Transform - - uid: 6508 + - uid: 6523 components: - pos: -14.5,-97.5 parent: 2 type: Transform - - uid: 6509 + - uid: 6524 components: - pos: -15.5,-97.5 parent: 2 type: Transform - - uid: 6510 + - uid: 6525 components: - pos: -16.5,-97.5 parent: 2 type: Transform - - uid: 6511 + - uid: 6526 components: - pos: -17.5,-97.5 parent: 2 type: Transform - - uid: 6512 + - uid: 6527 components: - pos: -18.5,-97.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6513 + - uid: 6528 components: - pos: -19.5,-97.5 parent: 2 type: Transform - - uid: 6514 + - uid: 6529 components: - pos: -20.5,-97.5 parent: 2 type: Transform - - uid: 6515 + - uid: 6530 components: - pos: -20.5,-96.5 parent: 2 type: Transform - - uid: 6516 + - uid: 6531 components: - pos: -20.5,-95.5 parent: 2 type: Transform - - uid: 6517 + - uid: 6532 components: - pos: -21.5,-95.5 parent: 2 type: Transform - - uid: 6518 + - uid: 6533 components: - pos: -22.5,-95.5 parent: 2 type: Transform - - uid: 6519 + - uid: 6534 components: - pos: -23.5,-95.5 parent: 2 type: Transform - - uid: 6520 + - uid: 6535 components: - pos: -24.5,-95.5 parent: 2 type: Transform - - uid: 6521 + - uid: 6536 components: - pos: -24.5,-96.5 parent: 2 type: Transform - - uid: 6522 + - uid: 6537 components: - pos: -24.5,-97.5 parent: 2 type: Transform - - uid: 6523 + - uid: 6538 components: - pos: -24.5,-98.5 parent: 2 type: Transform - - uid: 6524 + - uid: 6539 components: - pos: -24.5,-99.5 parent: 2 type: Transform - - uid: 6525 + - uid: 6540 components: - pos: -23.5,-99.5 parent: 2 type: Transform - - uid: 6526 + - uid: 6541 components: - pos: -22.5,-99.5 parent: 2 type: Transform - - uid: 6527 + - uid: 6542 components: - pos: -21.5,-99.5 parent: 2 type: Transform - - uid: 6528 + - uid: 6543 components: - pos: -20.5,-99.5 parent: 2 type: Transform - - uid: 6529 + - uid: 6544 components: - pos: -20.5,-98.5 parent: 2 type: Transform - - uid: 6530 + - uid: 6545 components: - pos: -15.5,-98.5 parent: 2 type: Transform - - uid: 6531 + - uid: 6546 components: - pos: -6.5,-97.5 parent: 2 type: Transform - - uid: 6532 + - uid: 6547 components: - pos: -5.5,-97.5 parent: 2 type: Transform - - uid: 6533 + - uid: 6548 components: - pos: -4.5,-97.5 parent: 2 type: Transform - - uid: 6534 + - uid: 6549 components: - pos: -7.5,-98.5 parent: 2 type: Transform - - uid: 6535 + - uid: 6550 components: - pos: -7.5,-99.5 parent: 2 type: Transform - - uid: 6536 + - uid: 6551 components: - pos: -7.5,-100.5 parent: 2 type: Transform - - uid: 6537 + - uid: 6552 components: - pos: -8.5,-95.5 parent: 2 type: Transform - - uid: 6538 + - uid: 6553 components: - pos: -43.5,-85.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6539 + - uid: 6554 components: - pos: -43.5,-86.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6540 + - uid: 6555 components: - pos: -43.5,-87.5 parent: 2 type: Transform - - uid: 6541 + - uid: 6556 components: - pos: -43.5,-88.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6542 + - uid: 6557 components: - pos: -43.5,-89.5 parent: 2 type: Transform - - uid: 6543 + - uid: 6558 components: - pos: -38.5,-85.5 parent: 2 type: Transform - - uid: 6544 + - uid: 6559 components: - pos: -39.5,-85.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6545 + - uid: 6560 components: - pos: -40.5,-85.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6546 + - uid: 6561 components: - pos: -40.5,-86.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6547 + - uid: 6562 components: - pos: -40.5,-87.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6548 + - uid: 6563 components: - pos: -40.5,-88.5 parent: 2 type: Transform - - uid: 6549 + - uid: 6564 components: - pos: -40.5,-89.5 parent: 2 type: Transform - - uid: 6550 + - uid: 6565 components: - pos: -40.5,-90.5 parent: 2 type: Transform - - uid: 6551 + - uid: 6566 components: - pos: -25.5,-97.5 parent: 2 type: Transform - - uid: 6552 + - uid: 6567 components: - pos: -26.5,-97.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6553 + - uid: 6568 components: - pos: -40.5,-91.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6554 + - uid: 6569 components: - pos: -43.5,-91.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6555 + - uid: 6570 components: - pos: -43.5,-92.5 parent: 2 type: Transform - - uid: 6556 + - uid: 6571 components: - pos: -42.5,-92.5 parent: 2 type: Transform - - uid: 6557 + - uid: 6572 components: - pos: -40.5,-92.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6558 + - uid: 6573 components: - pos: -41.5,-92.5 parent: 2 type: Transform - - uid: 6559 + - uid: 6574 components: - pos: -41.5,-93.5 parent: 2 type: Transform - - uid: 6560 + - uid: 6575 components: - pos: -41.5,-94.5 parent: 2 type: Transform - - uid: 6561 + - uid: 6576 components: - pos: -41.5,-95.5 parent: 2 type: Transform - - uid: 6562 + - uid: 6577 components: - pos: -42.5,-95.5 parent: 2 type: Transform - - uid: 6563 + - uid: 6578 components: - pos: -43.5,-95.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6564 + - uid: 6579 components: - pos: -43.5,-96.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6565 + - uid: 6580 components: - pos: -43.5,-97.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6566 + - uid: 6581 components: - pos: -42.5,-97.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6567 + - uid: 6582 components: - pos: -41.5,-97.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6568 + - uid: 6583 components: - pos: -40.5,-97.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6569 + - uid: 6584 components: - pos: -39.5,-97.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6570 + - uid: 6585 components: - pos: -38.5,-97.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6571 + - uid: 6586 components: - pos: -37.5,-97.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6572 + - uid: 6587 components: - pos: -36.5,-97.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6573 + - uid: 6588 components: - pos: -35.5,-97.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6574 + - uid: 6589 components: - pos: -40.5,-95.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6575 + - uid: 6590 components: - pos: -39.5,-95.5 parent: 2 type: Transform - - uid: 6576 + - uid: 6591 components: - pos: -38.5,-95.5 parent: 2 type: Transform - - uid: 6577 + - uid: 6592 components: - pos: -37.5,-95.5 parent: 2 type: Transform - - uid: 6578 + - uid: 6593 components: - pos: -36.5,-95.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6579 + - uid: 6594 components: - pos: -35.5,-95.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6580 + - uid: 6595 components: - pos: -35.5,-96.5 parent: 2 type: Transform - - uid: 6581 + - uid: 6596 components: - pos: -34.5,-97.5 parent: 2 type: Transform - - uid: 6582 + - uid: 6597 components: - pos: -33.5,-97.5 parent: 2 type: Transform - - uid: 6583 + - uid: 6598 components: - pos: -32.5,-97.5 parent: 2 type: Transform - - uid: 6584 + - uid: 6599 components: - pos: -31.5,-97.5 parent: 2 type: Transform - - uid: 6585 + - uid: 6600 components: - pos: -30.5,-97.5 parent: 2 type: Transform - - uid: 6586 + - uid: 6601 components: - pos: -29.5,-97.5 parent: 2 type: Transform - - uid: 6587 + - uid: 6602 components: - pos: -28.5,-97.5 parent: 2 type: Transform - - uid: 6588 + - uid: 6603 components: - pos: -43.5,-90.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6589 + - uid: 6604 components: - pos: -35.5,-98.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6590 + - uid: 6605 components: - pos: -35.5,-99.5 parent: 2 type: Transform - - uid: 6591 + - uid: 6606 components: - pos: -35.5,-100.5 parent: 2 type: Transform - - uid: 6592 + - uid: 6607 components: - pos: -35.5,-100.5 parent: 2 type: Transform - - uid: 6593 + - uid: 6608 components: - pos: -35.5,-99.5 parent: 2 type: Transform - - uid: 6594 + - uid: 6609 components: - pos: -35.5,-102.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6595 + - uid: 6610 components: - pos: -35.5,-103.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6596 + - uid: 6611 components: - pos: -35.5,-104.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6597 + - uid: 6612 components: - pos: -35.5,-105.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6598 + - uid: 6613 components: - pos: -36.5,-104.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6599 + - uid: 6614 components: - pos: 37.5,-48.5 parent: 2 type: Transform - - uid: 6600 + - uid: 6615 components: - pos: 36.5,-48.5 parent: 2 type: Transform - - uid: 6601 + - uid: 6616 components: - pos: 36.5,-47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6602 + - uid: 6617 components: - pos: 36.5,-46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6603 + - uid: 6618 components: - pos: -71.5,-31.5 parent: 2 type: Transform - - uid: 6604 + - uid: 6619 components: - pos: -72.5,-26.5 parent: 2 type: Transform - - uid: 6605 + - uid: 6620 components: - pos: -72.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6606 + - uid: 6621 components: - pos: -72.5,-28.5 parent: 2 type: Transform - - uid: 6607 + - uid: 6622 components: - pos: -72.5,-29.5 parent: 2 type: Transform - - uid: 6608 + - uid: 6623 components: - pos: -73.5,-31.5 parent: 2 type: Transform - - uid: 6609 + - uid: 6624 components: - pos: -72.5,-31.5 parent: 2 type: Transform - - uid: 6610 + - uid: 6625 components: - pos: -72.5,-32.5 parent: 2 type: Transform - - uid: 6611 + - uid: 6626 components: - pos: -72.5,-33.5 parent: 2 type: Transform - - uid: 6612 + - uid: 6627 components: - pos: -73.5,-30.5 parent: 2 type: Transform - - uid: 6613 + - uid: 6628 components: - pos: -73.5,-29.5 parent: 2 type: Transform - - uid: 6614 + - uid: 6629 components: - pos: 24.5,0.5 parent: 2 type: Transform - - uid: 6615 + - uid: 6630 components: - pos: 27.5,-1.5 parent: 2 type: Transform - - uid: 6616 + - uid: 6631 components: - pos: -12.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6617 + - uid: 6632 components: - pos: 62.5,-29.5 parent: 2 type: Transform - - uid: 6618 + - uid: 6633 components: - pos: 74.5,-45.5 parent: 2 type: Transform - - uid: 6619 + - uid: 6634 components: - pos: 75.5,-45.5 parent: 2 type: Transform - - uid: 6620 + - uid: 6635 components: - pos: 76.5,-45.5 parent: 2 type: Transform - - uid: 6621 + - uid: 6636 components: - pos: 74.5,-44.5 parent: 2 type: Transform - - uid: 6622 + - uid: 6637 components: - pos: 74.5,-43.5 parent: 2 type: Transform - - uid: 6623 + - uid: 6638 components: - pos: 74.5,-42.5 parent: 2 type: Transform - - uid: 6624 + - uid: 6639 components: - pos: 74.5,-41.5 parent: 2 type: Transform - - uid: 6625 + - uid: 6640 components: - pos: 74.5,-40.5 parent: 2 type: Transform - - uid: 6626 + - uid: 6641 components: - pos: 74.5,-39.5 parent: 2 type: Transform - - uid: 6627 + - uid: 6642 components: - pos: 74.5,-38.5 parent: 2 type: Transform - - uid: 6628 + - uid: 6643 components: - pos: 76.5,-46.5 parent: 2 type: Transform - - uid: 6629 + - uid: 6644 components: - pos: 76.5,-47.5 parent: 2 type: Transform - - uid: 6630 + - uid: 6645 components: - pos: 76.5,-48.5 parent: 2 type: Transform - - uid: 6631 + - uid: 6646 components: - pos: 76.5,-49.5 parent: 2 type: Transform - - uid: 6632 + - uid: 6647 components: - pos: 73.5,-48.5 parent: 2 type: Transform - - uid: 6633 + - uid: 6648 components: - pos: 74.5,-48.5 parent: 2 type: Transform - - uid: 6634 + - uid: 6649 components: - pos: 74.5,-47.5 parent: 2 type: Transform - - uid: 6635 + - uid: 6650 components: - pos: 75.5,-47.5 parent: 2 type: Transform - - uid: 6636 + - uid: 6651 components: - pos: 74.5,-37.5 parent: 2 type: Transform - - uid: 6637 + - uid: 6652 components: - pos: 75.5,-37.5 parent: 2 type: Transform - - uid: 6638 + - uid: 6653 components: - pos: 76.5,-37.5 parent: 2 type: Transform - - uid: 6639 + - uid: 6654 components: - pos: 77.5,-37.5 parent: 2 type: Transform - - uid: 6640 + - uid: 6655 components: - pos: 78.5,-37.5 parent: 2 type: Transform - - uid: 6641 + - uid: 6656 components: - pos: 78.5,-36.5 parent: 2 type: Transform - - uid: 6642 + - uid: 6657 components: - pos: 78.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6643 + - uid: 6658 components: - pos: 78.5,-34.5 parent: 2 type: Transform - - uid: 6644 + - uid: 6659 components: - pos: 78.5,-33.5 parent: 2 type: Transform - - uid: 6645 + - uid: 6660 components: - pos: 77.5,-33.5 parent: 2 type: Transform - - uid: 6646 + - uid: 6661 components: - pos: 76.5,-33.5 parent: 2 type: Transform - - uid: 6647 + - uid: 6662 components: - pos: 75.5,-33.5 parent: 2 type: Transform - - uid: 6648 + - uid: 6663 components: - pos: 74.5,-33.5 parent: 2 type: Transform - - uid: 6649 + - uid: 6664 components: - pos: 74.5,-32.5 parent: 2 type: Transform - - uid: 6650 + - uid: 6665 components: - pos: 73.5,-32.5 parent: 2 type: Transform - - uid: 6651 + - uid: 6666 components: - pos: 72.5,-32.5 parent: 2 type: Transform - - uid: 6652 + - uid: 6667 components: - pos: 71.5,-32.5 parent: 2 type: Transform - - uid: 6653 + - uid: 6668 components: - pos: 70.5,-32.5 parent: 2 type: Transform - - uid: 6654 + - uid: 6669 components: - pos: 70.5,-33.5 parent: 2 type: Transform - - uid: 6655 + - uid: 6670 components: - pos: 70.5,-34.5 parent: 2 type: Transform - - uid: 6656 + - uid: 6671 components: - pos: 70.5,-35.5 parent: 2 type: Transform - - uid: 6657 + - uid: 6672 components: - pos: 70.5,-36.5 parent: 2 type: Transform - - uid: 6658 + - uid: 6673 components: - pos: 71.5,-36.5 parent: 2 type: Transform - - uid: 6659 + - uid: 6674 components: - pos: 72.5,-37.5 parent: 2 type: Transform - - uid: 6660 + - uid: 6675 components: - pos: 73.5,-37.5 parent: 2 type: Transform - - uid: 6661 + - uid: 6676 components: - pos: 73.5,-36.5 parent: 2 type: Transform - - uid: 6662 + - uid: 6677 components: - pos: 73.5,-35.5 parent: 2 type: Transform - - uid: 6663 + - uid: 6678 components: - pos: 69.5,-33.5 parent: 2 type: Transform - - uid: 6664 + - uid: 6679 components: - pos: 68.5,-33.5 parent: 2 type: Transform - - uid: 6665 + - uid: 6680 components: - pos: 67.5,-33.5 parent: 2 type: Transform - - uid: 6666 + - uid: 6681 components: - pos: 66.5,-33.5 parent: 2 type: Transform - - uid: 6667 + - uid: 6682 components: - pos: 65.5,-33.5 parent: 2 type: Transform - - uid: 6668 + - uid: 6683 components: - pos: 62.5,-30.5 parent: 2 type: Transform - - uid: 6669 + - uid: 6684 components: - pos: 65.5,-32.5 parent: 2 type: Transform - - uid: 6670 + - uid: 6685 components: - pos: -21.5,-61.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6671 + - uid: 6686 components: - pos: -16.5,-15.5 parent: 2 type: Transform - - uid: 6672 + - uid: 6687 components: - pos: 70.5,-37.5 parent: 2 type: Transform - - uid: 6673 + - uid: 6688 components: - pos: 69.5,-37.5 parent: 2 type: Transform - - uid: 6674 + - uid: 6689 components: - pos: 68.5,-37.5 parent: 2 type: Transform - - uid: 6675 + - uid: 6690 components: - pos: 67.5,-37.5 parent: 2 type: Transform - - uid: 6676 + - uid: 6691 components: - pos: 67.5,-38.5 parent: 2 type: Transform - - uid: 6677 + - uid: 6692 components: - pos: 54.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6678 + - uid: 6693 components: - pos: -71.5,-29.5 parent: 2 type: Transform - - uid: 6679 + - uid: 6694 components: - pos: -55.5,-62.5 parent: 2 type: Transform - - uid: 6680 + - uid: 6695 components: - pos: -54.5,-62.5 parent: 2 type: Transform - - uid: 6681 + - uid: 6696 components: - pos: -53.5,-62.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6682 + - uid: 6697 components: - pos: -54.5,-58.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6683 + - uid: 6698 components: - pos: -53.5,-58.5 parent: 2 type: Transform - - uid: 6684 + - uid: 6699 components: - pos: -52.5,-58.5 parent: 2 type: Transform - - uid: 6685 + - uid: 6700 components: - pos: -51.5,-58.5 parent: 2 type: Transform - - uid: 6686 + - uid: 6701 components: - pos: -56.5,-61.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6687 + - uid: 6702 components: - pos: -54.5,-63.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6688 + - uid: 6703 components: - pos: 72.5,-31.5 parent: 2 type: Transform - - uid: 6689 + - uid: 6704 components: - pos: 72.5,-30.5 parent: 2 type: Transform - - uid: 6690 + - uid: 6705 components: - pos: 72.5,-29.5 parent: 2 type: Transform - - uid: 6691 + - uid: 6706 components: - pos: 72.5,-28.5 parent: 2 type: Transform - - uid: 6692 + - uid: 6707 components: - pos: -53.5,-63.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6693 + - uid: 6708 components: - pos: 56.5,34.5 parent: 2 type: Transform - - uid: 6694 + - uid: 6709 components: - pos: -71.5,-30.5 parent: 2 type: Transform - - uid: 6695 + - uid: 6710 components: - pos: 6.5,-42.5 parent: 2 type: Transform - - uid: 6696 + - uid: 6711 components: - pos: 7.5,-42.5 parent: 2 type: Transform - - uid: 6697 + - uid: 6712 components: - pos: 9.5,-40.5 parent: 2 type: Transform - - uid: 6698 + - uid: 6713 components: - pos: 9.5,-39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6699 + - uid: 6714 components: - pos: 8.5,-39.5 parent: 2 type: Transform - - uid: 6700 + - uid: 6715 components: - pos: 8.5,-38.5 parent: 2 type: Transform - - uid: 6701 + - uid: 6716 components: - pos: 8.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6702 + - uid: 6717 components: - pos: 8.5,-36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6703 + - uid: 6718 components: - pos: 8.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6704 + - uid: 6719 components: - pos: 8.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6705 + - uid: 6720 components: - pos: 8.5,-33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6706 + - uid: 6721 components: - pos: 8.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6707 + - uid: 6722 components: - pos: 8.5,-31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6708 + - uid: 6723 components: - pos: 8.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6709 + - uid: 6724 components: - pos: 8.5,-29.5 parent: 2 type: Transform - - uid: 6710 + - uid: 6725 components: - pos: 9.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6711 + - uid: 6726 components: - pos: 10.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6712 + - uid: 6727 components: - pos: 11.5,-29.5 parent: 2 type: Transform - - uid: 6713 + - uid: 6728 components: - pos: 7.5,-36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6714 + - uid: 6729 components: - pos: 6.5,-36.5 parent: 2 type: Transform - - uid: 6715 + - uid: 6730 components: - pos: 6.5,-35.5 parent: 2 type: Transform - - uid: 6716 + - uid: 6731 components: - pos: 6.5,-34.5 parent: 2 type: Transform - - uid: 6717 + - uid: 6732 components: - pos: 6.5,-33.5 parent: 2 type: Transform - - uid: 6718 + - uid: 6733 components: - pos: 6.5,-32.5 parent: 2 type: Transform - - uid: 6719 + - uid: 6734 components: - pos: 6.5,-31.5 parent: 2 type: Transform - - uid: 6720 + - uid: 6735 components: - pos: 5.5,-31.5 parent: 2 type: Transform - - uid: 6721 + - uid: 6736 components: - pos: 4.5,-31.5 parent: 2 type: Transform - - uid: 6722 + - uid: 6737 components: - pos: 3.5,-31.5 parent: 2 type: Transform - - uid: 6723 + - uid: 6738 components: - pos: 2.5,-31.5 parent: 2 type: Transform - - uid: 6724 + - uid: 6739 components: - pos: 4.5,-32.5 parent: 2 type: Transform - - uid: 6725 + - uid: 6740 components: - pos: 4.5,-33.5 parent: 2 type: Transform - - uid: 6726 + - uid: 6741 components: - pos: 55.5,-62.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6727 + - uid: 6742 components: - pos: 6.5,-30.5 parent: 2 type: Transform - - uid: 6728 + - uid: 6743 components: - pos: 54.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6729 + - uid: 6744 components: - pos: 53.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6730 + - uid: 6745 components: - pos: 52.5,-32.5 parent: 2 type: Transform - - uid: 6731 + - uid: 6746 components: - pos: 55.5,-31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6732 + - uid: 6747 components: - pos: 55.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6733 + - uid: 6748 components: - pos: 55.5,-29.5 parent: 2 type: Transform - - uid: 6734 + - uid: 6749 components: - pos: 55.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6735 + - uid: 6750 components: - pos: 55.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6736 + - uid: 6751 components: - pos: 55.5,-26.5 parent: 2 type: Transform - - uid: 6737 + - uid: 6752 components: - pos: 61.5,-26.5 parent: 2 type: Transform - - uid: 6738 + - uid: 6753 components: - pos: 60.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6739 + - uid: 6754 components: - pos: 59.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6740 + - uid: 6755 components: - pos: 58.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6741 + - uid: 6756 components: - pos: 57.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6742 + - uid: 6757 components: - pos: 57.5,-27.5 parent: 2 type: Transform - - uid: 6743 + - uid: 6758 components: - pos: 57.5,-28.5 parent: 2 type: Transform - - uid: 6744 + - uid: 6759 components: - pos: 58.5,-28.5 parent: 2 type: Transform - - uid: 6745 + - uid: 6760 components: - pos: 58.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6746 + - uid: 6761 components: - pos: 55.5,-35.5 parent: 2 type: Transform - - uid: 6747 + - uid: 6762 components: - pos: 54.5,-35.5 parent: 2 type: Transform - - uid: 6748 + - uid: 6763 components: - pos: 54.5,-36.5 parent: 2 type: Transform - - uid: 6749 + - uid: 6764 components: - pos: 54.5,-37.5 parent: 2 type: Transform - - uid: 6750 + - uid: 6765 components: - pos: 55.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6751 + - uid: 6766 components: - pos: 55.5,-38.5 parent: 2 type: Transform - - uid: 6752 - components: - - pos: 55.5,-39.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6753 + - uid: 6767 components: - pos: 57.5,-38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6754 + - uid: 6768 components: - pos: 58.5,-38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6755 + - uid: 6769 components: - pos: 59.5,-38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6756 + - uid: 6770 components: - pos: 59.5,-39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6757 + - uid: 6771 components: - pos: 59.5,-40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6758 + - uid: 6772 components: - pos: 59.5,-41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6759 + - uid: 6773 components: - pos: 59.5,-42.5 parent: 2 type: Transform - - uid: 6760 + - uid: 6774 components: - pos: 59.5,-43.5 parent: 2 type: Transform - - uid: 6761 + - uid: 6775 components: - pos: 36.5,-33.5 parent: 2 type: Transform - - uid: 6762 + - uid: 6776 components: - pos: 37.5,-33.5 parent: 2 type: Transform - - uid: 6763 + - uid: 6777 components: - pos: 38.5,-33.5 parent: 2 type: Transform - - uid: 6764 + - uid: 6778 components: - pos: 39.5,-33.5 parent: 2 type: Transform - - uid: 6765 + - uid: 6779 components: - pos: 40.5,-33.5 parent: 2 type: Transform - - uid: 6766 + - uid: 6780 components: - pos: 41.5,-33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6767 + - uid: 6781 components: - pos: 42.5,-33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6768 + - uid: 6782 components: - pos: 43.5,-33.5 parent: 2 type: Transform - - uid: 6769 + - uid: 6783 components: - pos: 44.5,-33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6770 + - uid: 6784 components: - pos: 45.5,-33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6771 + - uid: 6785 components: - pos: 46.5,-33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6772 + - uid: 6786 components: - pos: 47.5,-33.5 parent: 2 type: Transform - - uid: 6773 + - uid: 6787 components: - pos: 48.5,-33.5 parent: 2 type: Transform - - uid: 6774 + - uid: 6788 components: - pos: 49.5,-33.5 parent: 2 type: Transform - - uid: 6775 + - uid: 6789 components: - pos: 49.5,-34.5 parent: 2 type: Transform - - uid: 6776 + - uid: 6790 components: - pos: 50.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6777 + - uid: 6791 components: - pos: 51.5,-34.5 parent: 2 type: Transform - - uid: 6778 + - uid: 6792 components: - pos: 55.5,-64.5 parent: 2 type: Transform - - uid: 6779 + - uid: 6793 components: - pos: 55.5,-65.5 parent: 2 type: Transform - - uid: 6780 + - uid: 6794 components: - pos: 54.5,-65.5 parent: 2 type: Transform - - uid: 6781 + - uid: 6795 components: - pos: 53.5,-65.5 parent: 2 type: Transform - - uid: 6782 + - uid: 6796 components: - pos: 52.5,-65.5 parent: 2 type: Transform - - uid: 6783 + - uid: 6797 components: - pos: 51.5,-65.5 parent: 2 type: Transform - - uid: 6784 + - uid: 6798 components: - pos: 50.5,-65.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6785 + - uid: 6799 components: - pos: 49.5,-65.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6786 + - uid: 6800 components: - pos: 48.5,-65.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6787 + - uid: 6801 components: - pos: 47.5,-65.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6788 + - uid: 6802 components: - pos: 46.5,-65.5 parent: 2 type: Transform - - uid: 6789 + - uid: 6803 components: - pos: 45.5,-65.5 parent: 2 type: Transform - - uid: 6790 + - uid: 6804 components: - pos: 45.5,-64.5 parent: 2 type: Transform - - uid: 6791 + - uid: 6805 components: - pos: 44.5,-64.5 parent: 2 type: Transform - - uid: 6792 + - uid: 6806 components: - pos: 43.5,-64.5 parent: 2 type: Transform - - uid: 6793 + - uid: 6807 components: - pos: 45.5,-63.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6794 + - uid: 6808 components: - pos: 43.5,-63.5 parent: 2 type: Transform - - uid: 6795 + - uid: 6809 components: - pos: 56.5,-65.5 parent: 2 type: Transform - - uid: 6796 + - uid: 6810 components: - pos: 57.5,-65.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6797 + - uid: 6811 components: - pos: 58.5,-65.5 parent: 2 type: Transform - - uid: 6798 + - uid: 6812 components: - pos: 59.5,-65.5 parent: 2 type: Transform - - uid: 6799 + - uid: 6813 components: - pos: 60.5,-65.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6800 + - uid: 6814 components: - pos: 61.5,-65.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6801 + - uid: 6815 components: - pos: 61.5,-66.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6802 + - uid: 6816 components: - pos: 61.5,-67.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6803 + - uid: 6817 components: - pos: 61.5,-68.5 parent: 2 type: Transform - - uid: 6804 + - uid: 6818 components: - pos: 62.5,-65.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6805 + - uid: 6819 components: - pos: 63.5,-65.5 parent: 2 type: Transform - - uid: 6806 + - uid: 6820 components: - pos: 64.5,-65.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6807 + - uid: 6821 components: - pos: 65.5,-65.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6808 + - uid: 6822 components: - pos: 66.5,-65.5 parent: 2 type: Transform - - uid: 6809 + - uid: 6823 components: - pos: 61.5,-64.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6810 + - uid: 6824 components: - pos: 61.5,-63.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6811 + - uid: 6825 components: - pos: 61.5,-62.5 parent: 2 type: Transform - - uid: 6812 + - uid: 6826 components: - pos: 62.5,-62.5 parent: 2 type: Transform - - uid: 6813 + - uid: 6827 components: - pos: 60.5,-63.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6814 + - uid: 6828 components: - pos: 59.5,-63.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6815 + - uid: 6829 components: - pos: 57.5,-34.5 parent: 2 type: Transform - - uid: 6816 + - uid: 6830 components: - pos: 67.5,-65.5 parent: 2 type: Transform - - uid: 6817 + - uid: 6831 components: - pos: 68.5,-65.5 parent: 2 type: Transform - - uid: 6818 + - uid: 6832 components: - pos: 68.5,-66.5 parent: 2 type: Transform - - uid: 6819 + - uid: 6833 components: - pos: 68.5,-67.5 parent: 2 type: Transform - - uid: 6820 + - uid: 6834 components: - pos: 68.5,-68.5 parent: 2 type: Transform - - uid: 6821 + - uid: 6835 components: - pos: 68.5,-69.5 parent: 2 type: Transform - - uid: 6822 + - uid: 6836 components: - pos: 68.5,-70.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6823 + - uid: 6837 components: - pos: 68.5,-71.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6824 + - uid: 6838 components: - pos: 69.5,-71.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6825 + - uid: 6839 components: - pos: 70.5,-71.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6826 + - uid: 6840 components: - pos: 71.5,-71.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6827 + - uid: 6841 components: - pos: 72.5,-71.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6828 + - uid: 6842 components: - pos: 72.5,-70.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6829 + - uid: 6843 components: - pos: 72.5,-69.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6830 + - uid: 6844 components: - pos: 73.5,-69.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6831 + - uid: 6845 components: - pos: 74.5,-69.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6832 + - uid: 6846 components: - pos: 74.5,-68.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6833 + - uid: 6847 components: - pos: 74.5,-67.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6834 + - uid: 6848 components: - pos: 74.5,-66.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6835 + - uid: 6849 components: - pos: 74.5,-65.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6836 + - uid: 6850 components: - pos: 74.5,-64.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6837 + - uid: 6851 components: - pos: 74.5,-63.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6838 + - uid: 6852 components: - pos: 68.5,-64.5 parent: 2 type: Transform - - uid: 6839 + - uid: 6853 components: - pos: 68.5,-63.5 parent: 2 type: Transform - - uid: 6840 + - uid: 6854 components: - pos: 68.5,-62.5 parent: 2 type: Transform - - uid: 6841 + - uid: 6855 components: - pos: 68.5,-61.5 parent: 2 type: Transform - - uid: 6842 + - uid: 6856 components: - pos: 69.5,-61.5 parent: 2 type: Transform - - uid: 6843 + - uid: 6857 components: - pos: 70.5,-61.5 parent: 2 type: Transform - - uid: 6844 + - uid: 6858 components: - pos: 71.5,-61.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6845 + - uid: 6859 components: - pos: 71.5,-60.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6846 + - uid: 6860 components: - pos: 71.5,-59.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6847 + - uid: 6861 components: - pos: 71.5,-58.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6848 + - uid: 6862 components: - pos: 71.5,-57.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6849 + - uid: 6863 components: - pos: 72.5,-57.5 parent: 2 type: Transform - - uid: 6850 + - uid: 6864 components: - pos: 73.5,-57.5 parent: 2 type: Transform - - uid: 6851 + - uid: 6865 components: - pos: 74.5,-57.5 parent: 2 type: Transform - - uid: 6852 + - uid: 6866 components: - pos: 74.5,-56.5 parent: 2 type: Transform - - uid: 6853 + - uid: 6867 components: - pos: 74.5,-55.5 parent: 2 type: Transform - - uid: 6854 + - uid: 6868 components: - pos: 75.5,-55.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6855 + - uid: 6869 components: - pos: 75.5,-54.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6856 + - uid: 6870 components: - pos: 75.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6857 + - uid: 6871 components: - pos: 75.5,-52.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6858 - components: - - pos: 56.5,-39.5 - parent: 2 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6859 + - uid: 6872 components: - - pos: 57.5,-39.5 + - pos: 56.5,-38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6860 + - uid: 6873 components: - pos: 55.5,-66.5 parent: 2 type: Transform - - uid: 6861 + - uid: 6874 components: - pos: 71.5,-44.5 parent: 2 type: Transform - - uid: 6862 + - uid: 6875 components: - pos: 71.5,-43.5 parent: 2 type: Transform - - uid: 6863 + - uid: 6876 components: - pos: 71.5,-42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6864 + - uid: 6877 components: - pos: 61.5,-48.5 parent: 2 type: Transform - - uid: 6865 + - uid: 6878 components: - pos: 60.5,-48.5 parent: 2 type: Transform - - uid: 6866 + - uid: 6879 components: - pos: 59.5,-48.5 parent: 2 type: Transform - - uid: 6867 + - uid: 6880 components: - pos: 58.5,-48.5 parent: 2 type: Transform - - uid: 6868 + - uid: 6881 components: - pos: 57.5,-48.5 parent: 2 type: Transform - - uid: 6869 + - uid: 6882 components: - pos: 56.5,-48.5 parent: 2 type: Transform - - uid: 6870 + - uid: 6883 components: - pos: 55.5,-48.5 parent: 2 type: Transform - - uid: 6871 + - uid: 6884 components: - pos: 54.5,-48.5 parent: 2 type: Transform - - uid: 6872 + - uid: 6885 components: - pos: 43.5,-39.5 parent: 2 type: Transform - - uid: 6873 + - uid: 6886 components: - pos: 43.5,-40.5 parent: 2 type: Transform - - uid: 6874 + - uid: 6887 components: - pos: 43.5,-41.5 parent: 2 type: Transform - - uid: 6875 + - uid: 6888 components: - pos: 19.5,-51.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6876 + - uid: 6889 components: - pos: 16.5,10.5 parent: 2 type: Transform - - uid: 6877 + - uid: 6890 components: - pos: 16.5,9.5 parent: 2 type: Transform - - uid: 6878 + - uid: 6891 components: - pos: 43.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6879 + - uid: 6892 components: - pos: 47.5,5.5 parent: 2 type: Transform - - uid: 6880 + - uid: 6893 components: - pos: 58.5,6.5 parent: 2 type: Transform - - uid: 6881 + - uid: 6894 components: - pos: 59.5,6.5 parent: 2 type: Transform - - uid: 6882 + - uid: 6895 components: - pos: 12.5,-84.5 parent: 2 type: Transform - - uid: 6883 + - uid: 6896 components: - pos: 12.5,-82.5 parent: 2 type: Transform - - uid: 6884 + - uid: 6897 components: - pos: -15.5,24.5 parent: 2 type: Transform - - uid: 6885 + - uid: 6898 components: - pos: 48.5,-92.5 parent: 2 type: Transform - - uid: 6886 + - uid: 6899 components: - pos: 48.5,-93.5 parent: 2 type: Transform - - uid: 6887 + - uid: 6900 components: - pos: 48.5,-76.5 parent: 2 type: Transform - - uid: 6888 + - uid: 6901 components: - pos: 46.5,-89.5 parent: 2 type: Transform - - uid: 6889 + - uid: 6902 components: - pos: 47.5,-89.5 parent: 2 type: Transform - - uid: 6890 + - uid: 6903 components: - pos: 43.5,9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6891 + - uid: 6904 components: - pos: 43.5,8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6892 + - uid: 6905 components: - pos: 43.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6893 + - uid: 6906 components: - pos: -11.5,-18.5 parent: 2 type: Transform - - uid: 6894 + - uid: 6907 components: - pos: -11.5,-17.5 parent: 2 type: Transform - - uid: 6895 + - uid: 6908 components: - pos: -11.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6896 + - uid: 6909 components: - pos: -11.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6897 + - uid: 6910 components: - pos: -11.5,-14.5 parent: 2 type: Transform - - uid: 6898 + - uid: 6911 components: - pos: -11.5,-13.5 parent: 2 type: Transform - - uid: 6899 + - uid: 6912 components: - pos: -11.5,-12.5 parent: 2 type: Transform - - uid: 6900 + - uid: 6913 components: - pos: -11.5,-11.5 parent: 2 type: Transform - - uid: 6901 + - uid: 6914 components: - pos: -11.5,-10.5 parent: 2 type: Transform - - uid: 6902 + - uid: 6915 components: - pos: -12.5,-10.5 parent: 2 type: Transform - - uid: 6903 + - uid: 6916 components: - pos: -13.5,-10.5 parent: 2 type: Transform - - uid: 6904 + - uid: 6917 components: - pos: -14.5,-10.5 parent: 2 type: Transform - - uid: 6905 + - uid: 6918 components: - pos: -13.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6906 + - uid: 6919 components: - pos: -14.5,-14.5 parent: 2 type: Transform - - uid: 6907 + - uid: 6920 components: - pos: -15.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6908 + - uid: 6921 components: - pos: -16.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6909 + - uid: 6922 components: - pos: -10.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6910 + - uid: 6923 components: - pos: -9.5,-14.5 parent: 2 type: Transform - - uid: 6911 + - uid: 6924 components: - pos: -8.5,-14.5 parent: 2 type: Transform - - uid: 6912 + - uid: 6925 components: - pos: -8.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6913 + - uid: 6926 components: - pos: -7.5,-13.5 parent: 2 type: Transform - - uid: 6914 + - uid: 6927 components: - pos: -7.5,-12.5 parent: 2 type: Transform - - uid: 6915 + - uid: 6928 components: - pos: -7.5,-11.5 parent: 2 type: Transform - - uid: 6916 + - uid: 6929 components: - pos: -7.5,-10.5 parent: 2 type: Transform - - uid: 6917 + - uid: 6930 components: - pos: -8.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6918 + - uid: 6931 components: - pos: -7.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6919 + - uid: 6932 components: - pos: -9.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6920 + - uid: 6933 components: - pos: -10.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6921 + - uid: 6934 components: - pos: -11.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6922 + - uid: 6935 components: - pos: -12.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6923 + - uid: 6936 components: - pos: -13.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6924 + - uid: 6937 components: - pos: -14.5,-9.5 parent: 2 type: Transform - - uid: 6925 + - uid: 6938 components: - pos: -15.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6926 + - uid: 6939 components: - pos: -42.5,17.5 parent: 2 type: Transform - - uid: 6927 + - uid: 6940 components: - pos: -5.5,-19.5 parent: 2 type: Transform - - uid: 6928 + - uid: 6941 components: - pos: -6.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6929 + - uid: 6942 components: - pos: -7.5,-19.5 parent: 2 type: Transform - - uid: 6930 + - uid: 6943 components: - pos: 18.5,-82.5 parent: 2 type: Transform - - uid: 6931 + - uid: 6944 components: - pos: 18.5,-84.5 parent: 2 type: Transform - - uid: 6932 + - uid: 6945 components: - pos: 18.5,-85.5 parent: 2 type: Transform - - uid: 6933 + - uid: 6946 components: - pos: 12.5,-83.5 parent: 2 type: Transform - - uid: 6934 + - uid: 6947 components: - pos: 4.5,-49.5 parent: 2 type: Transform - - uid: 6935 + - uid: 6948 components: - pos: 6.5,-49.5 parent: 2 type: Transform - - uid: 6936 + - uid: 6949 components: - pos: -8.5,-67.5 parent: 2 type: Transform - - uid: 6937 + - uid: 6950 components: - pos: -8.5,-68.5 parent: 2 type: Transform - - uid: 6938 + - uid: 6951 components: - pos: -8.5,-69.5 parent: 2 type: Transform - - uid: 6939 + - uid: 6952 components: - pos: -19.5,-60.5 parent: 2 type: Transform - - uid: 6940 + - uid: 6953 components: - pos: -20.5,-60.5 parent: 2 type: Transform - - uid: 6941 + - uid: 6954 components: - pos: -21.5,-60.5 parent: 2 type: Transform - - uid: 6942 + - uid: 6955 components: - pos: -22.5,-60.5 parent: 2 type: Transform - - uid: 6943 + - uid: 6956 components: - pos: -23.5,-60.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6944 + - uid: 6957 components: - pos: -24.5,-60.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6945 + - uid: 6958 components: - pos: -25.5,-60.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6946 + - uid: 6959 components: - pos: -24.5,-59.5 parent: 2 type: Transform - - uid: 6947 + - uid: 6960 components: - pos: -24.5,-58.5 parent: 2 type: Transform - - uid: 6948 + - uid: 6961 components: - pos: -24.5,-57.5 parent: 2 type: Transform - - uid: 6949 + - uid: 6962 components: - pos: -24.5,-61.5 parent: 2 type: Transform - - uid: 6950 + - uid: 6963 components: - pos: -24.5,-62.5 parent: 2 type: Transform - - uid: 6951 + - uid: 6964 components: - pos: 30.5,-22.5 parent: 2 type: Transform - - uid: 6952 + - uid: 6965 components: - pos: 31.5,-22.5 parent: 2 type: Transform - - uid: 6953 + - uid: 6966 components: - pos: 31.5,-21.5 parent: 2 type: Transform - - uid: 6954 + - uid: 6967 components: - pos: 19.5,-22.5 parent: 2 type: Transform - - uid: 6955 + - uid: 6968 components: - pos: 19.5,-21.5 parent: 2 type: Transform - - uid: 6956 + - uid: 6969 components: - pos: -31.5,-10.5 parent: 2 type: Transform - - uid: 6957 + - uid: 6970 components: - pos: -49.5,-33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6958 + - uid: 6971 components: - pos: -47.5,-33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6959 + - uid: 6972 components: - pos: -48.5,-33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6960 + - uid: 6973 components: - pos: -47.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6961 + - uid: 6974 components: - pos: -47.5,-38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6962 + - uid: 6975 components: - pos: -47.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6963 + - uid: 6976 components: - pos: -47.5,-36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6964 + - uid: 6977 components: - pos: -47.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6965 + - uid: 6978 components: - pos: -50.5,-33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6966 + - uid: 6979 components: - pos: -51.5,-33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6967 + - uid: 6980 components: - pos: -51.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6968 + - uid: 6981 components: - pos: -51.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6969 + - uid: 6982 components: - pos: -51.5,-36.5 parent: 2 type: Transform - - uid: 6970 + - uid: 6983 components: - pos: -51.5,-37.5 parent: 2 type: Transform - - uid: 6971 + - uid: 6984 components: - pos: -51.5,-38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6972 + - uid: 6985 components: - pos: -51.5,-39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 6973 + - uid: 6986 components: - pos: 54.5,-34.5 parent: 2 type: Transform - - uid: 6974 + - uid: 6987 components: - pos: 30.5,-88.5 parent: 2 type: Transform - - uid: 6975 + - uid: 6988 components: - pos: 30.5,-77.5 parent: 2 type: Transform - - uid: 6976 + - uid: 6989 components: - pos: 30.5,-80.5 parent: 2 type: Transform - - uid: 6977 + - uid: 6990 components: - pos: 30.5,-81.5 parent: 2 type: Transform - - uid: 6978 + - uid: 6991 components: - pos: 30.5,-84.5 parent: 2 type: Transform - - uid: 6979 + - uid: 6992 components: - pos: 30.5,-85.5 parent: 2 type: Transform - - uid: 6980 + - uid: 6993 components: - pos: 48.5,-90.5 parent: 2 type: Transform - - uid: 6981 + - uid: 6994 components: - pos: 31.5,-82.5 parent: 2 type: Transform - - uid: 6982 + - uid: 6995 components: - pos: 48.5,-74.5 parent: 2 type: Transform - - uid: 6983 + - uid: 6996 components: - pos: 48.5,-75.5 parent: 2 type: Transform - - uid: 6984 + - uid: 6997 components: - pos: 30.5,-91.5 parent: 2 type: Transform - - uid: 6985 + - uid: 6998 components: - pos: 27.5,-81.5 parent: 2 type: Transform - - uid: 6986 + - uid: 6999 components: - pos: 32.5,-82.5 parent: 2 type: Transform - - uid: 6987 + - uid: 7000 components: - pos: 30.5,-79.5 parent: 2 type: Transform - - uid: 6988 + - uid: 7001 components: - pos: 30.5,-92.5 parent: 2 type: Transform - - uid: 6989 + - uid: 7002 components: - pos: 16.5,-81.5 parent: 2 type: Transform - - uid: 6990 + - uid: 7003 components: - pos: 15.5,-81.5 parent: 2 type: Transform - - uid: 6991 + - uid: 7004 components: - pos: 18.5,-86.5 parent: 2 type: Transform - - uid: 6992 + - uid: 7005 components: - pos: 13.5,-81.5 parent: 2 type: Transform - - uid: 6993 + - uid: 7006 components: - pos: 30.5,-86.5 parent: 2 type: Transform - - uid: 6994 + - uid: 7007 components: - pos: 30.5,-87.5 parent: 2 type: Transform - - uid: 6995 + - uid: 7008 components: - pos: 30.5,-82.5 parent: 2 type: Transform - - uid: 6996 + - uid: 7009 components: - pos: 30.5,-83.5 parent: 2 type: Transform - - uid: 6997 + - uid: 7010 components: - pos: 27.5,-82.5 parent: 2 type: Transform - - uid: 6998 + - uid: 7011 components: - pos: 30.5,-93.5 parent: 2 type: Transform - - uid: 6999 + - uid: 7012 components: - pos: 31.5,-89.5 parent: 2 type: Transform - - uid: 7000 + - uid: 7013 components: - pos: 32.5,-89.5 parent: 2 type: Transform - - uid: 7001 + - uid: 7014 components: - pos: 26.5,-83.5 parent: 2 type: Transform - - uid: 7002 + - uid: 7015 components: - pos: 25.5,-83.5 parent: 2 type: Transform - - uid: 7003 + - uid: 7016 components: - pos: 24.5,-83.5 parent: 2 type: Transform - - uid: 7004 + - uid: 7017 components: - pos: 29.5,-83.5 parent: 2 type: Transform - - uid: 7005 + - uid: 7018 components: - pos: 12.5,-85.5 parent: 2 type: Transform - - uid: 7006 + - uid: 7019 components: - pos: 28.5,-83.5 parent: 2 type: Transform - - uid: 7007 + - uid: 7020 components: - pos: 27.5,-83.5 parent: 2 type: Transform - - uid: 7008 + - uid: 7021 components: - pos: 49.5,-72.5 parent: 2 type: Transform - - uid: 7009 + - uid: 7022 components: - pos: 46.5,-72.5 parent: 2 type: Transform - - uid: 7010 + - uid: 7023 components: - pos: 47.5,-72.5 parent: 2 type: Transform - - uid: 7011 + - uid: 7024 components: - pos: 48.5,-88.5 parent: 2 type: Transform - - uid: 7012 + - uid: 7025 components: - pos: 48.5,-87.5 parent: 2 type: Transform - - uid: 7013 + - uid: 7026 components: - pos: 48.5,-86.5 parent: 2 type: Transform - - uid: 7014 + - uid: 7027 components: - pos: 48.5,-85.5 parent: 2 type: Transform - - uid: 7015 + - uid: 7028 components: - pos: 48.5,-84.5 parent: 2 type: Transform - - uid: 7016 + - uid: 7029 components: - pos: 48.5,-83.5 parent: 2 type: Transform - - uid: 7017 + - uid: 7030 components: - pos: 48.5,-82.5 parent: 2 type: Transform - - uid: 7018 + - uid: 7031 components: - pos: 48.5,-81.5 parent: 2 type: Transform - - uid: 7019 + - uid: 7032 components: - pos: 48.5,-80.5 parent: 2 type: Transform - - uid: 7020 + - uid: 7033 components: - pos: 48.5,-79.5 parent: 2 type: Transform - - uid: 7021 + - uid: 7034 components: - pos: 48.5,-78.5 parent: 2 type: Transform - - uid: 7022 + - uid: 7035 components: - pos: 48.5,-77.5 parent: 2 type: Transform - - uid: 7023 + - uid: 7036 components: - pos: 43.5,-74.5 parent: 2 type: Transform - - uid: 7024 + - uid: 7037 components: - pos: 43.5,-75.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7025 + - uid: 7038 components: - pos: 26.5,-84.5 parent: 2 type: Transform - - uid: 7026 + - uid: 7039 components: - pos: 26.5,-85.5 parent: 2 type: Transform - - uid: 7027 + - uid: 7040 components: - pos: 11.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7028 + - uid: 7041 components: - pos: 11.5,-19.5 parent: 2 type: Transform - - uid: 7029 + - uid: 7042 components: - pos: 11.5,-20.5 parent: 2 type: Transform - - uid: 7030 + - uid: 7043 components: - pos: 11.5,-21.5 parent: 2 type: Transform - - uid: 7031 + - uid: 7044 components: - pos: 10.5,-21.5 parent: 2 type: Transform - - uid: 7032 + - uid: 7045 components: - pos: 9.5,-21.5 parent: 2 type: Transform - - uid: 7033 + - uid: 7046 components: - pos: 8.5,-21.5 parent: 2 type: Transform - - uid: 7034 + - uid: 7047 components: - pos: 7.5,-21.5 parent: 2 type: Transform - - uid: 7035 + - uid: 7048 components: - pos: 7.5,-22.5 parent: 2 type: Transform - - uid: 7036 + - uid: 7049 components: - pos: 7.5,-23.5 parent: 2 type: Transform - - uid: 7037 + - uid: 7050 components: - pos: 8.5,-23.5 parent: 2 type: Transform - - uid: 7038 + - uid: 7051 components: - pos: 9.5,-23.5 parent: 2 type: Transform - - uid: 7039 + - uid: 7052 components: - pos: 10.5,-23.5 parent: 2 type: Transform - - uid: 7040 + - uid: 7053 components: - pos: 11.5,-23.5 parent: 2 type: Transform - - uid: 7041 + - uid: 7054 components: - pos: 11.5,-22.5 parent: 2 type: Transform - - uid: 7042 + - uid: 7055 components: - pos: 8.5,-20.5 parent: 2 type: Transform - - uid: 7043 + - uid: 7056 components: - pos: 9.5,-20.5 parent: 2 type: Transform - - uid: 7044 + - uid: 7057 components: - pos: 39.5,11.5 parent: 2 type: Transform - - uid: 7045 + - uid: 7058 components: - pos: 38.5,11.5 parent: 2 type: Transform - - uid: 7046 + - uid: 7059 components: - pos: 39.5,7.5 parent: 2 type: Transform - - uid: 7047 + - uid: 7060 components: - pos: 44.5,6.5 parent: 2 type: Transform - - uid: 7048 + - uid: 7061 components: - pos: 46.5,7.5 parent: 2 type: Transform - - uid: 7049 + - uid: 7062 components: - pos: 3.5,-51.5 parent: 2 type: Transform - - uid: 7050 + - uid: 7063 components: - pos: 3.5,-52.5 parent: 2 type: Transform - - uid: 7051 + - uid: 7064 components: - pos: 3.5,-53.5 parent: 2 type: Transform - - uid: 7052 + - uid: 7065 components: - pos: 6.5,-73.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7053 + - uid: 7066 components: - pos: 6.5,-74.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7054 + - uid: 7067 components: - pos: 6.5,-75.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7055 + - uid: 7068 components: - pos: 6.5,-76.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7056 + - uid: 7069 components: - pos: 6.5,-77.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7057 + - uid: 7070 components: - pos: 6.5,-78.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7058 + - uid: 7071 components: - pos: 6.5,-79.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7059 + - uid: 7072 components: - pos: 6.5,-80.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7060 + - uid: 7073 components: - pos: 6.5,-81.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7061 + - uid: 7074 components: - pos: 6.5,-82.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7062 + - uid: 7075 components: - pos: 6.5,-83.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7063 + - uid: 7076 components: - pos: 6.5,-84.5 parent: 2 type: Transform - - uid: 7064 + - uid: 7077 components: - pos: 7.5,-83.5 parent: 2 type: Transform - - uid: 7065 + - uid: 7078 components: - pos: 8.5,-83.5 parent: 2 type: Transform - - uid: 7066 + - uid: 7079 components: - pos: 5.5,-74.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7067 + - uid: 7080 components: - pos: 4.5,-74.5 parent: 2 type: Transform - - uid: 7068 + - uid: 7081 components: - pos: 3.5,-74.5 parent: 2 type: Transform - - uid: 7069 + - uid: 7082 components: - pos: 9.5,-83.5 parent: 2 type: Transform - - uid: 7070 + - uid: 7083 components: - pos: 2.5,-74.5 parent: 2 type: Transform - - uid: 7071 + - uid: 7084 components: - pos: 1.5,-74.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7072 + - uid: 7085 components: - pos: -46.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7073 + - uid: 7086 components: - pos: -46.5,-51.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7074 + - uid: 7087 components: - pos: -46.5,-46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7075 + - uid: 7088 components: - pos: -46.5,-48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7076 + - uid: 7089 components: - pos: -46.5,-47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7077 + - uid: 7090 components: - pos: -46.5,-49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7078 + - uid: 7091 components: - pos: -46.5,-50.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7079 + - uid: 7092 components: - pos: -46.5,-52.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7080 + - uid: 7093 components: - pos: -46.5,-54.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7081 + - uid: 7094 components: - pos: -46.5,-55.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7082 + - uid: 7095 components: - pos: -46.5,-56.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7083 + - uid: 7096 components: - pos: -46.5,-57.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7084 + - uid: 7097 components: - pos: -46.5,-58.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7085 + - uid: 7098 components: - pos: -45.5,-58.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7086 + - uid: 7099 components: - pos: -44.5,-58.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7087 + - uid: 7100 components: - pos: -43.5,-58.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7088 + - uid: 7101 components: - pos: -42.5,-58.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7089 + - uid: 7102 components: - pos: -41.5,-58.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7090 + - uid: 7103 components: - pos: -40.5,-58.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7091 + - uid: 7104 components: - pos: -40.5,-59.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7092 + - uid: 7105 components: - pos: -39.5,-59.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7093 + - uid: 7106 components: - pos: -38.5,-59.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7094 + - uid: 7107 components: - pos: -37.5,-59.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7095 + - uid: 7108 components: - pos: -36.5,-59.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7096 + - uid: 7109 components: - pos: -36.5,-58.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7097 + - uid: 7110 components: - pos: -35.5,-58.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7098 + - uid: 7111 components: - pos: -35.5,-56.5 parent: 2 type: Transform - - uid: 7099 + - uid: 7112 components: - pos: -35.5,-57.5 parent: 2 type: Transform - - uid: 7100 + - uid: 7113 components: - pos: -48.5,42.5 parent: 2 type: Transform - - uid: 7101 + - uid: 7114 components: - pos: -49.5,42.5 parent: 2 type: Transform - - uid: 7102 + - uid: 7115 components: - pos: -49.5,43.5 parent: 2 type: Transform - - uid: 7103 + - uid: 7116 components: - pos: -50.5,43.5 parent: 2 type: Transform - - uid: 7104 + - uid: 7117 components: - pos: -52.5,43.5 parent: 2 type: Transform - - uid: 7105 + - uid: 7118 components: - pos: -51.5,43.5 parent: 2 type: Transform - - uid: 7106 + - uid: 7119 components: - pos: -49.5,44.5 parent: 2 type: Transform - - uid: 7107 + - uid: 7120 components: - pos: -49.5,45.5 parent: 2 type: Transform - - uid: 7108 + - uid: 7121 components: - pos: -49.5,46.5 parent: 2 type: Transform - - uid: 7109 + - uid: 7122 components: - pos: -49.5,47.5 parent: 2 type: Transform - - uid: 7110 + - uid: 7123 components: - pos: -49.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7111 + - uid: 7124 components: - pos: -49.5,49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7112 + - uid: 7125 components: - pos: -48.5,49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7113 + - uid: 7126 components: - pos: -47.5,49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7114 + - uid: 7127 components: - pos: -47.5,42.5 parent: 2 type: Transform - - uid: 7115 + - uid: 7128 components: - pos: 8.5,-59.5 parent: 2 type: Transform - - uid: 7116 + - uid: 7129 components: - pos: 8.5,-58.5 parent: 2 type: Transform - - uid: 7117 + - uid: 7130 components: - pos: 68.5,-32.5 parent: 2 type: Transform - - uid: 7118 + - uid: 7131 components: - pos: 68.5,-31.5 parent: 2 type: Transform - - uid: 7119 + - uid: 7132 components: - pos: 68.5,-30.5 parent: 2 type: Transform - - uid: 7120 + - uid: 7133 components: - pos: 67.5,-30.5 parent: 2 type: Transform - - uid: 7121 + - uid: 7134 components: - pos: 66.5,-30.5 parent: 2 type: Transform - - uid: 7122 + - uid: 7135 components: - pos: -13.5,-33.5 parent: 2 type: Transform - - uid: 7123 + - uid: 7136 components: - pos: -15.5,-33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7124 + - uid: 7137 components: - pos: -16.5,-33.5 parent: 2 type: Transform - - uid: 7125 + - uid: 7138 components: - pos: 49.5,-89.5 parent: 2 type: Transform - - uid: 7126 + - uid: 7139 components: - pos: 50.5,-89.5 parent: 2 type: Transform - - uid: 7127 + - uid: 7140 components: - pos: 51.5,-89.5 parent: 2 type: Transform - - uid: 7128 + - uid: 7141 components: - pos: 49.5,-82.5 parent: 2 type: Transform - - uid: 7129 + - uid: 7142 components: - pos: 50.5,-82.5 parent: 2 type: Transform - - uid: 7130 + - uid: 7143 components: - pos: 51.5,-82.5 parent: 2 type: Transform - - uid: 7131 + - uid: 7144 components: - pos: -8.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7132 + - uid: 7145 components: - pos: -4.5,15.5 parent: 2 type: Transform - - uid: 7133 + - uid: 7146 components: - pos: -6.5,12.5 parent: 2 type: Transform - - uid: 7134 + - uid: 7147 components: - pos: -7.5,11.5 parent: 2 type: Transform - - uid: 7135 + - uid: 7148 components: - pos: -6.5,11.5 parent: 2 type: Transform - - uid: 7136 + - uid: 7149 components: - pos: -9.5,11.5 parent: 2 type: Transform - - uid: 7137 + - uid: 7150 components: - pos: -9.5,8.5 parent: 2 type: Transform - - uid: 7138 + - uid: 7151 components: - pos: -8.5,17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7139 + - uid: 7152 components: - pos: -7.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7140 + - uid: 7153 components: - pos: -6.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7141 + - uid: 7154 components: - pos: -5.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7142 + - uid: 7155 components: - pos: -5.5,21.5 parent: 2 type: Transform - - uid: 7143 + - uid: 7156 components: - pos: -6.5,21.5 parent: 2 type: Transform - - uid: 7144 + - uid: 7157 components: - pos: -7.5,21.5 parent: 2 type: Transform - - uid: 7145 + - uid: 7158 components: - pos: -74.5,-51.5 parent: 2 type: Transform - - uid: 7146 + - uid: 7159 components: - pos: -74.5,-50.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7147 + - uid: 7160 components: - pos: -74.5,-52.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7148 + - uid: 7161 components: - pos: -74.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7149 + - uid: 7162 components: - pos: -75.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7150 + - uid: 7163 components: - pos: -76.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7151 + - uid: 7164 components: - pos: -73.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7152 + - uid: 7165 components: - pos: -72.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7153 + - uid: 7166 components: - pos: -71.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7154 + - uid: 7167 components: - pos: -70.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7155 + - uid: 7168 components: - pos: -69.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7156 + - uid: 7169 components: - pos: -68.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7157 + - uid: 7170 components: - pos: -67.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7158 + - uid: 7171 components: - pos: -66.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7159 + - uid: 7172 components: - pos: -71.5,-54.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7160 + - uid: 7173 components: - pos: -71.5,-55.5 parent: 2 type: Transform - - uid: 7161 + - uid: 7174 components: - pos: -73.5,-54.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7162 + - uid: 7175 components: - pos: -73.5,-55.5 parent: 2 type: Transform - - uid: 7163 + - uid: 7176 components: - pos: -73.5,-51.5 parent: 2 type: Transform - - uid: 7164 + - uid: 7177 components: - pos: -71.5,-51.5 parent: 2 type: Transform - - uid: 7165 + - uid: 7178 components: - pos: -71.5,-52.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7166 + - uid: 7179 components: - pos: -65.5,-56.5 parent: 2 type: Transform - - uid: 7167 + - uid: 7180 components: - pos: -66.5,-56.5 parent: 2 type: Transform - - uid: 7168 + - uid: 7181 components: - pos: -66.5,-52.5 parent: 2 type: Transform - - uid: 7169 + - uid: 7182 components: - pos: -66.5,-54.5 parent: 2 type: Transform - - uid: 7170 + - uid: 7183 components: - pos: -66.5,-55.5 parent: 2 type: Transform - - uid: 7171 + - uid: 7184 components: - pos: -64.5,-56.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7172 + - uid: 7185 components: - pos: -64.5,-55.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7173 + - uid: 7186 components: - pos: -64.5,-54.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7174 + - uid: 7187 components: - pos: -67.5,-41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7175 + - uid: 7188 components: - pos: -69.5,-42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7176 + - uid: 7189 components: - pos: -68.5,-41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7177 + - uid: 7190 components: - pos: -69.5,-41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7178 + - uid: 7191 components: - pos: -69.5,-40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7179 + - uid: 7192 components: - pos: -69.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7180 + - uid: 7193 components: - pos: -70.5,-40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7181 + - uid: 7194 components: - pos: -71.5,-40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7182 + - uid: 7195 components: - pos: -71.5,-39.5 parent: 2 type: Transform - - uid: 7183 + - uid: 7196 components: - pos: -65.5,-42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7184 + - uid: 7197 components: - pos: -72.5,-39.5 parent: 2 type: Transform - - uid: 7185 + - uid: 7198 components: - pos: -73.5,-44.5 parent: 2 type: Transform - - uid: 7186 + - uid: 7199 components: - pos: -73.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7187 + - uid: 7200 components: - pos: -73.5,-42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7188 + - uid: 7201 components: - pos: -73.5,-41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7189 + - uid: 7202 components: - pos: -73.5,-40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7190 + - uid: 7203 components: - pos: -73.5,-39.5 parent: 2 type: Transform - - uid: 7191 + - uid: 7204 components: - pos: -68.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7192 + - uid: 7205 components: - pos: -70.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7193 + - uid: 7206 components: - pos: -69.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7194 + - uid: 7207 components: - pos: -73.5,-37.5 parent: 2 type: Transform - - uid: 7195 + - uid: 7208 components: - pos: -72.5,-37.5 parent: 2 type: Transform - - uid: 7196 + - uid: 7209 components: - pos: -66.5,-36.5 parent: 2 type: Transform - - uid: 7197 + - uid: 7210 components: - pos: -65.5,-41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7198 + - uid: 7211 components: - pos: -65.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7199 + - uid: 7212 components: - pos: -65.5,-44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7200 + - uid: 7213 components: - pos: -67.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7201 + - uid: 7214 components: - pos: -73.5,-35.5 parent: 2 type: Transform - - uid: 7202 + - uid: 7215 components: - pos: -73.5,-38.5 parent: 2 type: Transform - - uid: 7203 + - uid: 7216 components: - pos: -73.5,-36.5 parent: 2 type: Transform - - uid: 7204 + - uid: 7217 components: - pos: -66.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7205 + - uid: 7218 components: - pos: -65.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7206 + - uid: 7219 components: - pos: -65.5,-39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7207 + - uid: 7220 components: - pos: -65.5,-40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7208 + - uid: 7221 components: - pos: -66.5,-41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7209 + - uid: 7222 components: - pos: -65.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7210 + - uid: 7223 components: - pos: -66.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7211 + - uid: 7224 components: - pos: -73.5,-45.5 parent: 2 type: Transform - - uid: 7212 + - uid: 7225 components: - pos: -72.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7213 + - uid: 7226 components: - pos: -74.5,-41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7214 + - uid: 7227 components: - pos: -75.5,-41.5 parent: 2 type: Transform - - uid: 7215 + - uid: 7228 components: - pos: -76.5,-41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7216 + - uid: 7229 components: - pos: -41.5,-17.5 parent: 2 type: Transform - - uid: 7217 + - uid: 7230 components: - pos: -41.5,-18.5 parent: 2 type: Transform - - uid: 7218 + - uid: 7231 components: - pos: -74.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7219 + - uid: 7232 components: - pos: -75.5,-45.5 parent: 2 type: Transform - - uid: 7220 + - uid: 7233 components: - pos: -76.5,-45.5 parent: 2 type: Transform - - uid: 7221 + - uid: 7234 components: - pos: -72.5,-38.5 parent: 2 type: Transform - - uid: 7222 + - uid: 7235 components: - pos: -71.5,-38.5 parent: 2 type: Transform - - uid: 7223 + - uid: 7236 components: - pos: -70.5,-38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7224 + - uid: 7237 components: - pos: -65.5,-33.5 parent: 2 type: Transform - - uid: 7225 + - uid: 7238 components: - pos: -56.5,-37.5 parent: 2 type: Transform - - uid: 7226 + - uid: 7239 components: - pos: -59.5,-37.5 parent: 2 type: Transform - - uid: 7227 + - uid: 7240 components: - pos: -57.5,-37.5 parent: 2 type: Transform - - uid: 7228 + - uid: 7241 components: - pos: -62.5,-37.5 parent: 2 type: Transform - - uid: 7229 + - uid: 7242 components: - pos: -61.5,-37.5 parent: 2 type: Transform - - uid: 7230 + - uid: 7243 components: - pos: -60.5,-37.5 parent: 2 type: Transform - - uid: 7231 + - uid: 7244 components: - pos: -17.5,11.5 parent: 2 type: Transform - - uid: 7232 + - uid: 7245 components: - pos: -58.5,-37.5 parent: 2 type: Transform - - uid: 7233 + - uid: 7246 components: - pos: -54.5,-36.5 parent: 2 type: Transform - - uid: 7234 + - uid: 7247 components: - pos: -53.5,-36.5 parent: 2 type: Transform - - uid: 7235 + - uid: 7248 components: - pos: -52.5,-36.5 parent: 2 type: Transform - - uid: 7236 + - uid: 7249 components: - pos: -42.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7237 + - uid: 7250 components: - pos: -43.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7238 + - uid: 7251 components: - pos: -43.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7239 + - uid: 7252 components: - pos: -43.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7240 + - uid: 7253 components: - pos: -41.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7241 + - uid: 7254 components: - pos: -38.5,-29.5 parent: 2 type: Transform - - uid: 7242 + - uid: 7255 components: - pos: -55.5,-31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7243 + - uid: 7256 components: - pos: 24.5,-38.5 parent: 2 type: Transform - - uid: 7244 + - uid: 7257 components: - pos: 22.5,-38.5 parent: 2 type: Transform - - uid: 7245 + - uid: 7258 components: - pos: 24.5,-34.5 parent: 2 type: Transform - - uid: 7246 + - uid: 7259 components: - pos: 24.5,-35.5 parent: 2 type: Transform - - uid: 7247 + - uid: 7260 components: - pos: 24.5,-37.5 parent: 2 type: Transform - - uid: 7248 + - uid: 7261 components: - pos: 24.5,-36.5 parent: 2 type: Transform - - uid: 7249 + - uid: 7262 components: - pos: 23.5,-38.5 parent: 2 type: Transform - - uid: 7250 + - uid: 7263 components: - pos: 2.5,-5.5 parent: 2 type: Transform - - uid: 7251 + - uid: 7264 components: - pos: -0.5,-4.5 parent: 2 type: Transform - - uid: 7252 + - uid: 7265 components: - pos: 1.5,-4.5 parent: 2 type: Transform - - uid: 7253 + - uid: 7266 components: - pos: -0.5,-6.5 parent: 2 type: Transform - - uid: 7254 + - uid: 7267 components: - pos: -0.5,-5.5 parent: 2 type: Transform - - uid: 7255 + - uid: 7268 components: - pos: 1.5,-5.5 parent: 2 type: Transform - - uid: 7256 + - uid: 7269 components: - pos: 3.5,-5.5 parent: 2 type: Transform - - uid: 7257 + - uid: 7270 components: - pos: 3.5,-6.5 parent: 2 type: Transform - - uid: 7258 + - uid: 7271 components: - pos: 1.5,-6.5 parent: 2 type: Transform - - uid: 7259 + - uid: 7272 components: - pos: 1.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7260 + - uid: 7273 components: - pos: 2.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7261 + - uid: 7274 components: - pos: 3.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7262 + - uid: 7275 components: - pos: 18.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7263 + - uid: 7276 components: - pos: 1.5,-7.5 parent: 2 type: Transform - - uid: 7264 + - uid: 7277 components: - pos: 1.5,-8.5 parent: 2 type: Transform - - uid: 7265 + - uid: 7278 components: - pos: 0.5,-5.5 parent: 2 type: Transform - - uid: 7266 + - uid: 7279 components: - pos: 0.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7267 + - uid: 7280 components: - pos: 3.5,-7.5 parent: 2 type: Transform - - uid: 7268 + - uid: 7281 components: - pos: 2.5,-7.5 parent: 2 type: Transform - - uid: 7269 + - uid: 7282 components: - pos: 5.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7270 + - uid: 7283 components: - pos: 22.5,-39.5 parent: 2 type: Transform - - uid: 7271 + - uid: 7284 components: - pos: 0.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7272 + - uid: 7285 components: - pos: 0.5,-18.5 parent: 2 type: Transform - - uid: 7273 + - uid: 7286 components: - pos: 0.5,-19.5 parent: 2 type: Transform - - uid: 7274 + - uid: 7287 components: - pos: 0.5,-20.5 parent: 2 type: Transform - - uid: 7275 + - uid: 7288 components: - pos: 0.5,-21.5 parent: 2 type: Transform - - uid: 7276 + - uid: 7289 components: - pos: 0.5,-23.5 parent: 2 type: Transform - - uid: 7277 + - uid: 7290 components: - pos: 0.5,-22.5 parent: 2 type: Transform - - uid: 7278 + - uid: 7291 components: - pos: 1.5,-22.5 parent: 2 type: Transform - - uid: 7279 + - uid: 7292 components: - pos: -0.5,-21.5 parent: 2 type: Transform - - uid: 7280 + - uid: 7293 components: - pos: -0.5,-19.5 parent: 2 type: Transform - - uid: 7281 + - uid: 7294 components: - pos: -0.5,-23.5 parent: 2 type: Transform - - uid: 7282 + - uid: 7295 components: - pos: -1.5,-23.5 parent: 2 type: Transform - - uid: 7283 + - uid: 7296 components: - pos: 4.5,-12.5 parent: 2 type: Transform - - uid: 7284 + - uid: 7297 components: - pos: 25.5,-38.5 parent: 2 type: Transform - - uid: 7285 + - uid: 7298 components: - pos: 26.5,-38.5 parent: 2 type: Transform - - uid: 7286 + - uid: 7299 components: - pos: 27.5,-38.5 parent: 2 type: Transform - - uid: 7287 + - uid: 7300 components: - pos: 28.5,-38.5 parent: 2 type: Transform - - uid: 7288 + - uid: 7301 components: - pos: 28.5,-37.5 parent: 2 type: Transform - - uid: 7289 + - uid: 7302 components: - pos: 28.5,-36.5 parent: 2 type: Transform - - uid: 7290 + - uid: 7303 components: - pos: 28.5,-33.5 parent: 2 type: Transform + - uid: 7304 + components: + - pos: -53.5,-23.5 + parent: 2 + type: Transform - proto: CableApcStack entities: - - uid: 7291 + - uid: 7305 components: - pos: -22.574043,-20.541626 parent: 2 type: Transform - - uid: 7292 + - uid: 7306 components: - pos: -11.530048,37.577045 parent: 2 type: Transform - - uid: 7293 + - uid: 7307 components: - pos: 77.47492,-43.4493 parent: 2 type: Transform - - uid: 7294 + - uid: 7308 components: - pos: -66.46611,-34.373695 parent: 2 type: Transform - proto: CableApcStack1 entities: - - uid: 7295 + - uid: 7309 components: - rot: 3.141592653589793 rad pos: 55.427982,45.52066 parent: 2 type: Transform - - uid: 7296 + - uid: 7310 components: - rot: 3.141592653589793 rad pos: 38.439327,47.51809 parent: 2 type: Transform - - uid: 7297 + - uid: 7311 components: - pos: -14.8449135,-96.398895 parent: 2 type: Transform - - uid: 7298 + - uid: 7312 components: - pos: 57.114487,42.493305 parent: 2 type: Transform - - uid: 7299 + - uid: 7313 components: - pos: -14.677503,-33.453545 parent: 2 type: Transform - proto: CableHV entities: - - uid: 7300 + - uid: 7314 components: - pos: -79.5,-38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7301 + - uid: 7315 components: - pos: 15.5,-28.5 parent: 2 type: Transform - - uid: 7302 + - uid: 7316 components: - pos: 7.5,-26.5 parent: 2 type: Transform - - uid: 7303 + - uid: 7317 components: - pos: 27.5,-42.5 parent: 2 type: Transform - - uid: 7304 + - uid: 7318 components: - pos: 8.5,-95.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7305 + - uid: 7319 components: - pos: -1.5,-66.5 parent: 2 type: Transform - - uid: 7306 + - uid: 7320 components: - pos: 15.5,-33.5 parent: 2 type: Transform - - uid: 7307 + - uid: 7321 components: - pos: 12.5,-26.5 parent: 2 type: Transform - - uid: 7308 + - uid: 7322 components: - pos: -11.5,-26.5 parent: 2 type: Transform - - uid: 7309 + - uid: 7323 components: - pos: 2.5,-42.5 parent: 2 type: Transform - - uid: 7310 + - uid: 7324 components: - pos: 6.5,-42.5 parent: 2 type: Transform - - uid: 7311 + - uid: 7325 components: - pos: 0.5,-42.5 parent: 2 type: Transform - - uid: 7312 + - uid: 7326 components: - pos: 4.5,-42.5 parent: 2 type: Transform - - uid: 7313 + - uid: 7327 components: - pos: -5.5,-39.5 parent: 2 type: Transform - - uid: 7314 + - uid: 7328 components: - pos: 8.5,-55.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7315 + - uid: 7329 components: - pos: -1.5,-42.5 parent: 2 type: Transform - - uid: 7316 + - uid: 7330 components: - pos: -1.5,-26.5 parent: 2 type: Transform - - uid: 7317 + - uid: 7331 components: - pos: 15.5,-26.5 parent: 2 type: Transform - - uid: 7318 + - uid: 7332 components: - pos: -1.5,-64.5 parent: 2 type: Transform - - uid: 7319 + - uid: 7333 components: - pos: -12.5,-75.5 parent: 2 type: Transform - - uid: 7320 + - uid: 7334 components: - pos: 32.5,-42.5 parent: 2 type: Transform - - uid: 7321 + - uid: 7335 components: - pos: 14.5,-46.5 parent: 2 type: Transform - - uid: 7322 + - uid: 7336 components: - pos: 21.5,-42.5 parent: 2 type: Transform - - uid: 7323 + - uid: 7337 components: - pos: 38.5,-30.5 parent: 2 type: Transform - - uid: 7324 + - uid: 7338 components: - pos: -12.5,-71.5 parent: 2 type: Transform - - uid: 7325 + - uid: 7339 components: - pos: 4.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7326 + - uid: 7340 components: - pos: 3.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7327 + - uid: 7341 components: - pos: 2.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7328 + - uid: 7342 components: - pos: 1.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7329 + - uid: 7343 components: - pos: 1.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7330 + - uid: 7344 components: - pos: 0.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7331 + - uid: 7345 components: - pos: 39.5,-28.5 parent: 2 type: Transform - - uid: 7332 + - uid: 7346 components: - pos: 25.5,-42.5 parent: 2 type: Transform - - uid: 7333 + - uid: 7347 components: - pos: 24.5,-42.5 parent: 2 type: Transform - - uid: 7334 + - uid: 7348 components: - pos: 23.5,-42.5 parent: 2 type: Transform - - uid: 7335 + - uid: 7349 components: - pos: 22.5,-42.5 parent: 2 type: Transform - - uid: 7336 + - uid: 7350 components: - pos: 25.5,-10.5 parent: 2 type: Transform - - uid: 7337 + - uid: 7351 components: - pos: 24.5,-5.5 parent: 2 type: Transform - - uid: 7338 + - uid: 7352 components: - pos: 12.5,-42.5 parent: 2 type: Transform - - uid: 7339 + - uid: 7353 components: - pos: -14.5,34.5 parent: 2 type: Transform - - uid: 7340 + - uid: 7354 components: - pos: 8.5,-16.5 parent: 2 type: Transform - - uid: 7341 + - uid: 7355 components: - pos: 4.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7342 + - uid: 7356 components: - pos: -4.5,-18.5 parent: 2 type: Transform - - uid: 7343 + - uid: 7357 components: - pos: 5.5,-92.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7344 + - uid: 7358 components: - pos: 4.5,-92.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7345 + - uid: 7359 components: - pos: 2.5,-92.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7346 + - uid: 7360 components: - pos: 12.5,-49.5 parent: 2 type: Transform - - uid: 7347 + - uid: 7361 components: - pos: 10.5,-49.5 parent: 2 type: Transform - - uid: 7348 + - uid: 7362 components: - pos: 9.5,-52.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7349 + - uid: 7363 components: - pos: 8.5,-54.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7350 + - uid: 7364 components: - pos: 8.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7351 + - uid: 7365 components: - pos: 10.5,-55.5 parent: 2 type: Transform - - uid: 7352 + - uid: 7366 components: - pos: 11.5,-55.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7353 + - uid: 7367 components: - pos: 12.5,-56.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7354 + - uid: 7368 components: - pos: 14.5,-57.5 parent: 2 type: Transform - - uid: 7355 + - uid: 7369 components: - pos: 14.5,-58.5 parent: 2 type: Transform - - uid: 7356 + - uid: 7370 components: - pos: 39.5,-29.5 parent: 2 type: Transform - - uid: 7357 + - uid: 7371 components: - pos: 36.5,-30.5 parent: 2 type: Transform - - uid: 7358 + - uid: 7372 components: - pos: 10.5,-92.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7359 + - uid: 7373 components: - pos: -11.5,-75.5 parent: 2 type: Transform - - uid: 7360 + - uid: 7374 components: - pos: 6.5,-92.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7361 + - uid: 7375 components: - pos: -7.5,-75.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7362 + - uid: 7376 components: - pos: -5.5,-75.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7363 + - uid: 7377 components: - pos: 25.5,-49.5 parent: 2 type: Transform - - uid: 7364 + - uid: 7378 components: - pos: 0.5,-89.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7365 + - uid: 7379 components: - pos: -0.5,-89.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7366 + - uid: 7380 components: - pos: -1.5,-89.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7367 + - uid: 7381 components: - pos: -1.5,-88.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7368 + - uid: 7382 components: - pos: -1.5,-87.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7369 + - uid: 7383 components: - pos: 14.5,-98.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7370 + - uid: 7384 components: - pos: 12.5,-95.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7371 + - uid: 7385 components: - pos: -4.5,-22.5 parent: 2 type: Transform - - uid: 7372 + - uid: 7386 components: - pos: 10.5,-95.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7373 + - uid: 7387 components: - pos: 15.5,-37.5 parent: 2 type: Transform - - uid: 7374 + - uid: 7388 components: - pos: -15.5,-71.5 parent: 2 type: Transform - - uid: 7375 + - uid: 7389 components: - pos: 35.5,-40.5 parent: 2 type: Transform - - uid: 7376 + - uid: 7390 components: - pos: 13.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7377 + - uid: 7391 components: - pos: -4.5,-25.5 parent: 2 type: Transform - - uid: 7378 + - uid: 7392 components: - pos: -5.5,-30.5 parent: 2 type: Transform - - uid: 7379 + - uid: 7393 components: - pos: 6.5,-26.5 parent: 2 type: Transform - - uid: 7380 + - uid: 7394 components: - pos: 5.5,-26.5 parent: 2 type: Transform - - uid: 7381 + - uid: 7395 components: - pos: 3.5,-26.5 parent: 2 type: Transform - - uid: 7382 + - uid: 7396 components: - pos: 2.5,-26.5 parent: 2 type: Transform - - uid: 7383 + - uid: 7397 components: - pos: 1.5,-26.5 parent: 2 type: Transform - - uid: 7384 + - uid: 7398 components: - pos: -17.5,-26.5 parent: 2 type: Transform - - uid: 7385 + - uid: 7399 components: - pos: 12.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7386 + - uid: 7400 components: - pos: 15.5,-41.5 parent: 2 type: Transform - - uid: 7387 + - uid: 7401 components: - pos: 13.5,-42.5 parent: 2 type: Transform - - uid: 7388 + - uid: 7402 components: - pos: 10.5,-42.5 parent: 2 type: Transform - - uid: 7389 + - uid: 7403 components: - pos: 7.5,-42.5 parent: 2 type: Transform - - uid: 7390 + - uid: 7404 components: - pos: 8.5,-42.5 parent: 2 type: Transform - - uid: 7391 + - uid: 7405 components: - pos: 25.5,-6.5 parent: 2 type: Transform - - uid: 7392 + - uid: 7406 components: - pos: 25.5,-12.5 parent: 2 type: Transform - - uid: 7393 + - uid: 7407 components: - pos: 25.5,-13.5 parent: 2 type: Transform - - uid: 7394 + - uid: 7408 components: - pos: 25.5,-14.5 parent: 2 type: Transform - - uid: 7395 + - uid: 7409 components: - pos: 2.5,-71.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7396 + - uid: 7410 components: - pos: -12.5,-73.5 parent: 2 type: Transform - - uid: 7397 + - uid: 7411 components: - pos: 35.5,-34.5 parent: 2 type: Transform - - uid: 7398 + - uid: 7412 components: - pos: 25.5,-44.5 parent: 2 type: Transform - - uid: 7399 + - uid: 7413 components: - pos: 25.5,-43.5 parent: 2 type: Transform - - uid: 7400 + - uid: 7414 components: - pos: 33.5,-42.5 parent: 2 type: Transform - - uid: 7401 + - uid: 7415 components: - pos: -67.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7402 + - uid: 7416 components: - pos: -2.5,-61.5 parent: 2 type: Transform - - uid: 7403 + - uid: 7417 components: - pos: -2.5,-59.5 parent: 2 type: Transform - - uid: 7404 + - uid: 7418 components: - pos: -6.5,-69.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7405 + - uid: 7419 components: - pos: -8.5,-19.5 parent: 2 type: Transform - - uid: 7406 + - uid: 7420 components: - pos: -15.5,-72.5 parent: 2 type: Transform - - uid: 7407 + - uid: 7421 components: - pos: 11.5,-92.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7408 + - uid: 7422 components: - pos: 18.5,-95.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7409 + - uid: 7423 components: - pos: 12.5,-98.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7410 + - uid: 7424 components: - pos: -1.5,-77.5 parent: 2 type: Transform - - uid: 7411 + - uid: 7425 components: - pos: -1.5,-80.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7412 + - uid: 7426 components: - pos: -1.5,-68.5 parent: 2 type: Transform - - uid: 7413 + - uid: 7427 components: - pos: 12.5,-47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7414 + - uid: 7428 components: - pos: -12.5,-69.5 parent: 2 type: Transform - - uid: 7415 + - uid: 7429 components: - pos: 8.5,-92.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7416 + - uid: 7430 components: - pos: 23.5,-17.5 parent: 2 type: Transform - - uid: 7417 + - uid: 7431 components: - pos: -14.5,-71.5 parent: 2 type: Transform - - uid: 7418 + - uid: 7432 components: - pos: -15.5,-73.5 parent: 2 type: Transform - - uid: 7419 + - uid: 7433 components: - pos: 15.5,-43.5 parent: 2 type: Transform - - uid: 7420 + - uid: 7434 components: - pos: -2.5,-63.5 parent: 2 type: Transform - - uid: 7421 + - uid: 7435 components: - pos: 12.5,-57.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7422 + - uid: 7436 components: - pos: 9.5,-55.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7423 + - uid: 7437 components: - pos: 15.5,-40.5 parent: 2 type: Transform - - uid: 7424 + - uid: 7438 components: - pos: -4.5,-69.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7425 + - uid: 7439 components: - pos: -1.5,-65.5 parent: 2 type: Transform - - uid: 7426 + - uid: 7440 components: - pos: 14.5,-47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7427 + - uid: 7441 components: - pos: 14.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7428 + - uid: 7442 components: - pos: -0.5,-42.5 parent: 2 type: Transform - - uid: 7429 + - uid: 7443 components: - pos: 1.5,-42.5 parent: 2 type: Transform - - uid: 7430 + - uid: 7444 components: - pos: 3.5,-42.5 parent: 2 type: Transform - - uid: 7431 + - uid: 7445 components: - pos: 5.5,-42.5 parent: 2 type: Transform - - uid: 7432 + - uid: 7446 components: - pos: 31.5,-5.5 parent: 2 type: Transform - - uid: 7433 + - uid: 7447 components: - pos: 25.5,-5.5 parent: 2 type: Transform - - uid: 7434 + - uid: 7448 components: - pos: -4.5,-24.5 parent: 2 type: Transform - - uid: 7435 + - uid: 7449 components: - pos: -5.5,-40.5 parent: 2 type: Transform - - uid: 7436 + - uid: 7450 components: - pos: -5.5,-38.5 parent: 2 type: Transform - - uid: 7437 + - uid: 7451 components: - pos: -5.5,-26.5 parent: 2 type: Transform - - uid: 7438 + - uid: 7452 components: - pos: 18.5,-29.5 parent: 2 type: Transform - - uid: 7439 + - uid: 7453 components: - pos: -0.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7440 + - uid: 7454 components: - pos: 30.5,-3.5 parent: 2 type: Transform - - uid: 7441 + - uid: 7455 components: - pos: 30.5,7.5 parent: 2 type: Transform - - uid: 7442 + - uid: 7456 components: - pos: -24.5,-14.5 parent: 2 type: Transform - - uid: 7443 + - uid: 7457 components: - pos: -6.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7444 + - uid: 7458 components: - pos: -5.5,-19.5 parent: 2 type: Transform - - uid: 7445 + - uid: 7459 components: - pos: -4.5,-19.5 parent: 2 type: Transform - - uid: 7446 + - uid: 7460 components: - pos: -4.5,-21.5 parent: 2 type: Transform - - uid: 7447 + - uid: 7461 components: - pos: -7.5,-19.5 parent: 2 type: Transform - - uid: 7448 + - uid: 7462 components: - pos: 2.5,-91.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7449 + - uid: 7463 components: - pos: 11.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7450 + - uid: 7464 components: - pos: 13.5,-47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7451 + - uid: 7465 components: - pos: 11.5,-47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7452 + - uid: 7466 components: - pos: 7.5,-92.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7453 + - uid: 7467 components: - pos: -3.5,-75.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7454 + - uid: 7468 components: - pos: 20.5,-42.5 parent: 2 type: Transform - - uid: 7455 + - uid: 7469 components: - pos: -65.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7456 + - uid: 7470 components: - pos: -24.5,-13.5 parent: 2 type: Transform - - uid: 7457 + - uid: 7471 components: - pos: 2.5,-89.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7458 + - uid: 7472 components: - pos: -1.5,-84.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7459 + - uid: 7473 components: - pos: -1.5,-85.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7460 + - uid: 7474 components: - pos: 17.5,-95.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7461 + - uid: 7475 components: - pos: 4.5,-95.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7462 + - uid: 7476 components: - pos: 25.5,-11.5 parent: 2 type: Transform - - uid: 7463 + - uid: 7477 components: - pos: 25.5,-9.5 parent: 2 type: Transform - - uid: 7464 + - uid: 7478 components: - pos: 25.5,-8.5 parent: 2 type: Transform - - uid: 7465 + - uid: 7479 components: - pos: 25.5,-7.5 parent: 2 type: Transform - - uid: 7466 + - uid: 7480 components: - pos: 9.5,-42.5 parent: 2 type: Transform - - uid: 7467 + - uid: 7481 components: - pos: 14.5,-42.5 parent: 2 type: Transform - - uid: 7468 + - uid: 7482 components: - pos: 11.5,-42.5 parent: 2 type: Transform - - uid: 7469 + - uid: 7483 components: - pos: 4.5,-26.5 parent: 2 type: Transform - - uid: 7470 + - uid: 7484 components: - pos: -3.5,-17.5 parent: 2 type: Transform - - uid: 7471 + - uid: 7485 components: - pos: 10.5,-98.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7472 + - uid: 7486 components: - pos: 7.5,-95.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7473 + - uid: 7487 components: - pos: 15.5,-42.5 parent: 2 type: Transform - - uid: 7474 + - uid: 7488 components: - pos: 15.5,-44.5 parent: 2 type: Transform - - uid: 7475 + - uid: 7489 components: - pos: 15.5,-36.5 parent: 2 type: Transform - - uid: 7476 + - uid: 7490 components: - pos: 15.5,-34.5 parent: 2 type: Transform - - uid: 7477 + - uid: 7491 components: - pos: 15.5,-32.5 parent: 2 type: Transform - - uid: 7478 + - uid: 7492 components: - pos: -3.5,-69.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7479 + - uid: 7493 components: - pos: -5.5,-69.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7480 + - uid: 7494 components: - pos: 14.5,-48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7481 + - uid: 7495 components: - pos: -6.5,-71.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7482 + - uid: 7496 components: - pos: -6.5,-70.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7483 + - uid: 7497 components: - pos: -8.5,-71.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7484 + - uid: 7498 components: - pos: -10.5,-71.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7485 + - uid: 7499 components: - pos: 14.5,-49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7486 + - uid: 7500 components: - pos: 13.5,-49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7487 + - uid: 7501 components: - pos: 11.5,-49.5 parent: 2 type: Transform - - uid: 7488 + - uid: 7502 components: - pos: -11.5,-71.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7489 + - uid: 7503 components: - pos: 25.5,-17.5 parent: 2 type: Transform - - uid: 7490 + - uid: 7504 components: - pos: 38.5,-28.5 parent: 2 type: Transform - - uid: 7491 + - uid: 7505 components: - pos: 37.5,-30.5 parent: 2 type: Transform - - uid: 7492 + - uid: 7506 components: - pos: 35.5,-30.5 parent: 2 type: Transform - - uid: 7493 + - uid: 7507 components: - pos: 35.5,-29.5 parent: 2 type: Transform - - uid: 7494 + - uid: 7508 components: - pos: 9.5,-101.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7495 + - uid: 7509 components: - pos: -11.5,58.5 parent: 2 type: Transform - - uid: 7496 + - uid: 7510 components: - pos: -12.5,58.5 parent: 2 type: Transform - - uid: 7497 + - uid: 7511 components: - pos: -15.5,44.5 parent: 2 type: Transform - - uid: 7498 + - uid: 7512 components: - pos: -16.5,44.5 parent: 2 type: Transform - - uid: 7499 + - uid: 7513 components: - pos: -17.5,44.5 parent: 2 type: Transform - - uid: 7500 + - uid: 7514 components: - pos: -17.5,45.5 parent: 2 type: Transform - - uid: 7501 + - uid: 7515 components: - pos: -17.5,46.5 parent: 2 type: Transform - - uid: 7502 + - uid: 7516 components: - pos: -17.5,47.5 parent: 2 type: Transform - - uid: 7503 + - uid: 7517 components: - pos: -17.5,48.5 parent: 2 type: Transform - - uid: 7504 + - uid: 7518 components: - pos: -17.5,49.5 parent: 2 type: Transform - - uid: 7505 + - uid: 7519 components: - pos: -17.5,50.5 parent: 2 type: Transform - - uid: 7506 + - uid: 7520 components: - pos: -16.5,50.5 parent: 2 type: Transform - - uid: 7507 + - uid: 7521 components: - pos: -13.5,50.5 parent: 2 type: Transform - - uid: 7508 + - uid: 7522 components: - pos: -15.5,50.5 parent: 2 type: Transform - - uid: 7509 + - uid: 7523 components: - pos: -14.5,50.5 parent: 2 type: Transform - - uid: 7510 + - uid: 7524 components: - pos: -13.5,58.5 parent: 2 type: Transform - - uid: 7511 + - uid: 7525 components: - pos: -13.5,57.5 parent: 2 type: Transform - - uid: 7512 + - uid: 7526 components: - pos: -13.5,51.5 parent: 2 type: Transform - - uid: 7513 + - uid: 7527 components: - pos: -13.5,52.5 parent: 2 type: Transform - - uid: 7514 + - uid: 7528 components: - pos: -13.5,53.5 parent: 2 type: Transform - - uid: 7515 + - uid: 7529 components: - pos: -13.5,54.5 parent: 2 type: Transform - - uid: 7516 + - uid: 7530 components: - pos: -13.5,55.5 parent: 2 type: Transform - - uid: 7517 + - uid: 7531 components: - pos: -13.5,56.5 parent: 2 type: Transform - - uid: 7518 + - uid: 7532 components: - pos: 15.5,-39.5 parent: 2 type: Transform - - uid: 7519 + - uid: 7533 components: - pos: -6.5,-75.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7520 + - uid: 7534 components: - pos: 18.5,-42.5 parent: 2 type: Transform - - uid: 7521 + - uid: 7535 components: - pos: -24.5,-15.5 parent: 2 type: Transform - - uid: 7522 + - uid: 7536 components: - pos: 17.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7523 + - uid: 7537 components: - pos: 35.5,-38.5 parent: 2 type: Transform - - uid: 7524 + - uid: 7538 components: - pos: 26.5,-42.5 parent: 2 type: Transform - - uid: 7525 + - uid: 7539 components: - pos: -13.5,-26.5 parent: 2 type: Transform - - uid: 7526 + - uid: 7540 components: - pos: -10.5,-26.5 parent: 2 type: Transform - - uid: 7527 + - uid: 7541 components: - pos: -5.5,-34.5 parent: 2 type: Transform - - uid: 7528 + - uid: 7542 components: - pos: -5.5,-41.5 parent: 2 type: Transform - - uid: 7529 + - uid: 7543 components: - pos: 13.5,-57.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7530 + - uid: 7544 components: - pos: 12.5,-55.5 parent: 2 type: Transform - - uid: 7531 + - uid: 7545 components: - pos: 8.5,-52.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7532 + - uid: 7546 components: - pos: -11.5,-42.5 parent: 2 type: Transform - - uid: 7533 + - uid: 7547 components: - pos: -8.5,-26.5 parent: 2 type: Transform - - uid: 7534 + - uid: 7548 components: - pos: -13.5,-73.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7535 + - uid: 7549 components: - pos: 25.5,-47.5 parent: 2 type: Transform - - uid: 7536 + - uid: 7550 components: - pos: -5.5,-31.5 parent: 2 type: Transform - - uid: 7537 + - uid: 7551 components: - pos: -5.5,-33.5 parent: 2 type: Transform - - uid: 7538 + - uid: 7552 components: - pos: -14.5,-26.5 parent: 2 type: Transform - - uid: 7539 + - uid: 7553 components: - pos: -15.5,-26.5 parent: 2 type: Transform - - uid: 7540 + - uid: 7554 components: - pos: -3.5,-26.5 parent: 2 type: Transform - - uid: 7541 + - uid: 7555 components: - pos: -2.5,-26.5 parent: 2 type: Transform - - uid: 7542 + - uid: 7556 components: - pos: -0.5,-26.5 parent: 2 type: Transform - - uid: 7543 + - uid: 7557 components: - pos: 9.5,-26.5 parent: 2 type: Transform - - uid: 7544 + - uid: 7558 components: - pos: 13.5,-26.5 parent: 2 type: Transform - - uid: 7545 + - uid: 7559 components: - pos: 15.5,-29.5 parent: 2 type: Transform - - uid: 7546 + - uid: 7560 components: - pos: -4.5,-42.5 parent: 2 type: Transform - - uid: 7547 + - uid: 7561 components: - pos: -7.5,-42.5 parent: 2 type: Transform - - uid: 7548 + - uid: 7562 components: - pos: -8.5,-42.5 parent: 2 type: Transform - - uid: 7549 + - uid: 7563 components: - pos: -10.5,-42.5 parent: 2 type: Transform - - uid: 7550 + - uid: 7564 components: - pos: -12.5,-42.5 parent: 2 type: Transform - - uid: 7551 + - uid: 7565 components: - pos: -13.5,-42.5 parent: 2 type: Transform - - uid: 7552 + - uid: 7566 components: - pos: 10.5,-51.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7553 + - uid: 7567 components: - pos: -15.5,-42.5 parent: 2 type: Transform - - uid: 7554 + - uid: 7568 components: - pos: -12.5,-70.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7555 + - uid: 7569 components: - pos: -8.5,-75.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7556 + - uid: 7570 components: - pos: -18.5,-42.5 parent: 2 type: Transform - - uid: 7557 + - uid: 7571 components: - pos: 15.5,-95.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7558 + - uid: 7572 components: - pos: 25.5,-50.5 parent: 2 type: Transform - - uid: 7559 + - uid: 7573 components: - pos: 9.5,-92.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7560 + - uid: 7574 components: - pos: 13.5,-95.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7561 + - uid: 7575 components: - pos: 34.5,-42.5 parent: 2 type: Transform - - uid: 7562 + - uid: 7576 components: - pos: 35.5,-42.5 parent: 2 type: Transform - - uid: 7563 + - uid: 7577 components: - pos: 25.5,-45.5 parent: 2 type: Transform - - uid: 7564 + - uid: 7578 components: - pos: 35.5,-32.5 parent: 2 type: Transform - - uid: 7565 + - uid: 7579 components: - pos: 35.5,-36.5 parent: 2 type: Transform - - uid: 7566 + - uid: 7580 components: - pos: 70.5,-46.5 parent: 2 type: Transform - - uid: 7567 + - uid: 7581 components: - pos: -12.5,-74.5 parent: 2 type: Transform - - uid: 7568 + - uid: 7582 components: - pos: -0.5,-72.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7569 + - uid: 7583 components: - pos: 11.5,-105.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7570 + - uid: 7584 components: - pos: -1.5,-86.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7571 + - uid: 7585 components: - pos: -16.5,-26.5 parent: 2 type: Transform - - uid: 7572 + - uid: 7586 components: - pos: 11.5,-26.5 parent: 2 type: Transform - - uid: 7573 + - uid: 7587 components: - pos: -17.5,-42.5 parent: 2 type: Transform - - uid: 7574 + - uid: 7588 components: - pos: -9.5,-71.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7575 + - uid: 7589 components: - pos: 6.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7576 + - uid: 7590 components: - pos: -4.5,-19.5 parent: 2 type: Transform - - uid: 7577 + - uid: 7591 components: - pos: -5.5,-32.5 parent: 2 type: Transform - - uid: 7578 + - uid: 7592 components: - pos: 25.5,-48.5 parent: 2 type: Transform - - uid: 7579 + - uid: 7593 components: - pos: -9.5,-26.5 parent: 2 type: Transform - - uid: 7580 + - uid: 7594 components: - pos: 25.5,-46.5 parent: 2 type: Transform - - uid: 7581 + - uid: 7595 components: - pos: -5.5,-42.5 parent: 2 type: Transform - - uid: 7582 + - uid: 7596 components: - pos: 15.5,-38.5 parent: 2 type: Transform - - uid: 7583 + - uid: 7597 components: - pos: -5.5,-36.5 parent: 2 type: Transform - - uid: 7584 + - uid: 7598 components: - pos: 25.5,-51.5 parent: 2 type: Transform - - uid: 7585 + - uid: 7599 components: - pos: 15.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7586 + - uid: 7600 components: - pos: 15.5,-31.5 parent: 2 type: Transform - - uid: 7587 + - uid: 7601 components: - pos: 6.5,-95.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7588 + - uid: 7602 components: - pos: 15.5,-35.5 parent: 2 type: Transform - - uid: 7589 + - uid: 7603 components: - pos: -16.5,-42.5 parent: 2 type: Transform - - uid: 7590 + - uid: 7604 components: - pos: 15.5,-30.5 parent: 2 type: Transform - - uid: 7591 + - uid: 7605 components: - pos: 10.5,-50.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7592 + - uid: 7606 components: - pos: -1.5,-63.5 parent: 2 type: Transform - - uid: 7593 + - uid: 7607 components: - pos: -12.5,-26.5 parent: 2 type: Transform - - uid: 7594 + - uid: 7608 components: - pos: 0.5,-26.5 parent: 2 type: Transform - - uid: 7595 + - uid: 7609 components: - pos: 14.5,-26.5 parent: 2 type: Transform - - uid: 7596 + - uid: 7610 components: - pos: 15.5,-27.5 parent: 2 type: Transform - - uid: 7597 + - uid: 7611 components: - pos: -6.5,-42.5 parent: 2 type: Transform - - uid: 7598 + - uid: 7612 components: - pos: -3.5,-42.5 parent: 2 type: Transform - - uid: 7599 + - uid: 7613 components: - pos: -2.5,-17.5 parent: 2 type: Transform - - uid: 7600 + - uid: 7614 components: - pos: -1.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7601 + - uid: 7615 components: - pos: 30.5,-2.5 parent: 2 type: Transform - - uid: 7602 + - uid: 7616 components: - pos: 30.5,-4.5 parent: 2 type: Transform - - uid: 7603 + - uid: 7617 components: - pos: -4.5,-75.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7604 + - uid: 7618 components: - pos: 24.5,-17.5 parent: 2 type: Transform - - uid: 7605 + - uid: 7619 components: - pos: 25.5,-16.5 parent: 2 type: Transform - - uid: 7606 + - uid: 7620 components: - pos: 25.5,-15.5 parent: 2 type: Transform - - uid: 7607 + - uid: 7621 components: - pos: 17.5,-5.5 parent: 2 type: Transform - - uid: 7608 + - uid: 7622 components: - pos: 32.5,-17.5 parent: 2 type: Transform - - uid: 7609 + - uid: 7623 components: - pos: 35.5,-21.5 parent: 2 type: Transform - - uid: 7610 + - uid: 7624 components: - pos: -13.5,-71.5 parent: 2 type: Transform - - uid: 7611 + - uid: 7625 components: - pos: 9.5,-95.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7612 + - uid: 7626 components: - pos: 13.5,-98.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7613 + - uid: 7627 components: - pos: -2.5,-77.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7614 + - uid: 7628 components: - pos: -2.5,-78.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7615 + - uid: 7629 components: - pos: -1.5,-82.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7616 + - uid: 7630 components: - pos: -9.5,-75.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7617 + - uid: 7631 components: - pos: 28.5,-42.5 parent: 2 type: Transform - - uid: 7618 + - uid: 7632 components: - pos: -4.5,-23.5 parent: 2 type: Transform - - uid: 7619 + - uid: 7633 components: - pos: -5.5,-28.5 parent: 2 type: Transform - - uid: 7620 + - uid: 7634 components: - pos: -5.5,-35.5 parent: 2 type: Transform - - uid: 7621 + - uid: 7635 components: - pos: 10.5,-26.5 parent: 2 type: Transform - - uid: 7622 + - uid: 7636 components: - pos: 8.5,-26.5 parent: 2 type: Transform - - uid: 7623 + - uid: 7637 components: - pos: -7.5,-71.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7624 + - uid: 7638 components: - pos: -7.5,-26.5 parent: 2 type: Transform - - uid: 7625 + - uid: 7639 components: - pos: -6.5,-26.5 parent: 2 type: Transform - - uid: 7626 + - uid: 7640 components: - pos: -9.5,-42.5 parent: 2 type: Transform - - uid: 7627 + - uid: 7641 components: - pos: 8.5,-98.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7628 + - uid: 7642 components: - pos: 2.5,-90.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7629 + - uid: 7643 components: - pos: 15.5,-31.5 parent: 2 type: Transform - - uid: 7630 + - uid: 7644 components: - pos: 14.5,-95.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7631 + - uid: 7645 components: - pos: -5.5,-37.5 parent: 2 type: Transform - - uid: 7632 + - uid: 7646 components: - pos: -14.5,-73.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7633 + - uid: 7647 components: - pos: 35.5,-28.5 parent: 2 type: Transform - - uid: 7634 + - uid: 7648 components: - pos: -14.5,-42.5 parent: 2 type: Transform - - uid: 7635 + - uid: 7649 components: - pos: 1.5,-89.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7636 + - uid: 7650 components: - pos: 3.5,-92.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7637 + - uid: 7651 components: - pos: 5.5,-95.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7638 + - uid: 7652 components: - pos: 13.5,-101.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7639 + - uid: 7653 components: - pos: 9.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7640 + - uid: 7654 components: - pos: -4.5,-20.5 parent: 2 type: Transform - - uid: 7641 + - uid: 7655 components: - pos: 16.5,-29.5 parent: 2 type: Transform - - uid: 7642 + - uid: 7656 components: - pos: -4.5,-26.5 parent: 2 type: Transform - - uid: 7643 + - uid: 7657 components: - pos: 16.5,-95.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7644 + - uid: 7658 components: - pos: -2.5,-42.5 parent: 2 type: Transform - - uid: 7645 + - uid: 7659 components: - pos: 16.5,-42.5 parent: 2 type: Transform - - uid: 7646 + - uid: 7660 components: - pos: 7.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7647 + - uid: 7661 components: - pos: 12.5,-101.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7648 + - uid: 7662 components: - pos: 10.5,-101.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7649 + - uid: 7663 components: - pos: 8.5,-101.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7650 + - uid: 7664 components: - pos: 14.5,-101.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7651 + - uid: 7665 components: - pos: 9.5,-104.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7652 + - uid: 7666 components: - pos: 13.5,-104.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7653 + - uid: 7667 components: - pos: 9.5,-98.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7654 + - uid: 7668 components: - pos: -1.5,-83.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7655 + - uid: 7669 components: - pos: -1.5,-81.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7656 + - uid: 7670 components: - pos: -1.5,-79.5 parent: 2 type: Transform - - uid: 7657 + - uid: 7671 components: - pos: -2.5,-79.5 parent: 2 type: Transform - - uid: 7658 + - uid: 7672 components: - pos: -2.5,-75.5 parent: 2 type: Transform - - uid: 7659 + - uid: 7673 components: - pos: -2.5,-76.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7660 + - uid: 7674 components: - pos: -10.5,-75.5 parent: 2 type: Transform - - uid: 7661 + - uid: 7675 components: - pos: 15.5,-58.5 parent: 2 type: Transform - - uid: 7662 + - uid: 7676 components: - pos: -5.5,-27.5 parent: 2 type: Transform - - uid: 7663 + - uid: 7677 components: - pos: -5.5,-29.5 parent: 2 type: Transform - - uid: 7664 + - uid: 7678 components: - pos: 21.5,-17.5 parent: 2 type: Transform - - uid: 7665 + - uid: 7679 components: - pos: 22.5,-17.5 parent: 2 type: Transform - - uid: 7666 + - uid: 7680 components: - pos: 20.5,-17.5 parent: 2 type: Transform - - uid: 7667 + - uid: 7681 components: - pos: 19.5,-17.5 parent: 2 type: Transform - - uid: 7668 + - uid: 7682 components: - pos: 18.5,-17.5 parent: 2 type: Transform - - uid: 7669 + - uid: 7683 components: - pos: 17.5,-17.5 parent: 2 type: Transform - - uid: 7670 + - uid: 7684 components: - pos: 16.5,-17.5 parent: 2 type: Transform - - uid: 7671 + - uid: 7685 components: - pos: 15.5,-22.5 parent: 2 type: Transform - - uid: 7672 + - uid: 7686 components: - pos: 15.5,-17.5 parent: 2 type: Transform - - uid: 7673 + - uid: 7687 components: - pos: 15.5,-18.5 parent: 2 type: Transform - - uid: 7674 + - uid: 7688 components: - pos: 15.5,-19.5 parent: 2 type: Transform - - uid: 7675 + - uid: 7689 components: - pos: 15.5,-20.5 parent: 2 type: Transform - - uid: 7676 + - uid: 7690 components: - pos: 15.5,-21.5 parent: 2 type: Transform - - uid: 7677 + - uid: 7691 components: - pos: 15.5,-23.5 parent: 2 type: Transform - - uid: 7678 + - uid: 7692 components: - pos: 15.5,-24.5 parent: 2 type: Transform - - uid: 7679 + - uid: 7693 components: - pos: 15.5,-25.5 parent: 2 type: Transform - - uid: 7680 + - uid: 7694 components: - pos: 18.5,-5.5 parent: 2 type: Transform - - uid: 7681 + - uid: 7695 components: - pos: 19.5,-5.5 parent: 2 type: Transform - - uid: 7682 + - uid: 7696 components: - pos: 20.5,-5.5 parent: 2 type: Transform - - uid: 7683 + - uid: 7697 components: - pos: 21.5,-5.5 parent: 2 type: Transform - - uid: 7684 + - uid: 7698 components: - pos: 22.5,-5.5 parent: 2 type: Transform - - uid: 7685 + - uid: 7699 components: - pos: 23.5,-5.5 parent: 2 type: Transform - - uid: 7686 + - uid: 7700 components: - pos: 31.5,-17.5 parent: 2 type: Transform - - uid: 7687 + - uid: 7701 components: - pos: 30.5,-17.5 parent: 2 type: Transform - - uid: 7688 + - uid: 7702 components: - pos: 29.5,-17.5 parent: 2 type: Transform - - uid: 7689 + - uid: 7703 components: - pos: 28.5,-17.5 parent: 2 type: Transform - - uid: 7690 + - uid: 7704 components: - pos: 27.5,-17.5 parent: 2 type: Transform - - uid: 7691 + - uid: 7705 components: - pos: 26.5,-17.5 parent: 2 type: Transform - - uid: 7692 + - uid: 7706 components: - pos: 35.5,-20.5 parent: 2 type: Transform - - uid: 7693 + - uid: 7707 components: - pos: 35.5,-19.5 parent: 2 type: Transform - - uid: 7694 + - uid: 7708 components: - pos: 35.5,-18.5 parent: 2 type: Transform - - uid: 7695 + - uid: 7709 components: - pos: 35.5,-17.5 parent: 2 type: Transform - - uid: 7696 + - uid: 7710 components: - pos: 34.5,-17.5 parent: 2 type: Transform - - uid: 7697 + - uid: 7711 components: - pos: 33.5,-17.5 parent: 2 type: Transform - - uid: 7698 + - uid: 7712 components: - pos: 35.5,-27.5 parent: 2 type: Transform - - uid: 7699 + - uid: 7713 components: - pos: 35.5,-26.5 parent: 2 type: Transform - - uid: 7700 + - uid: 7714 components: - pos: 35.5,-25.5 parent: 2 type: Transform - - uid: 7701 + - uid: 7715 components: - pos: 35.5,-24.5 parent: 2 type: Transform - - uid: 7702 + - uid: 7716 components: - pos: 35.5,-23.5 parent: 2 type: Transform - - uid: 7703 + - uid: 7717 components: - pos: 35.5,-22.5 parent: 2 type: Transform - - uid: 7704 + - uid: 7718 components: - pos: 30.5,-5.5 parent: 2 type: Transform - - uid: 7705 + - uid: 7719 components: - pos: 29.5,-5.5 parent: 2 type: Transform - - uid: 7706 + - uid: 7720 components: - pos: 28.5,-5.5 parent: 2 type: Transform - - uid: 7707 + - uid: 7721 components: - pos: 27.5,-5.5 parent: 2 type: Transform - - uid: 7708 + - uid: 7722 components: - pos: 26.5,-5.5 parent: 2 type: Transform - - uid: 7709 + - uid: 7723 components: - pos: 33.5,-2.5 parent: 2 type: Transform - - uid: 7710 + - uid: 7724 components: - pos: 33.5,-3.5 parent: 2 type: Transform - - uid: 7711 + - uid: 7725 components: - pos: 33.5,-4.5 parent: 2 type: Transform - - uid: 7712 + - uid: 7726 components: - pos: 33.5,-5.5 parent: 2 type: Transform - - uid: 7713 + - uid: 7727 components: - pos: 32.5,-5.5 parent: 2 type: Transform - - uid: 7714 + - uid: 7728 components: - pos: 39.5,-30.5 parent: 2 type: Transform - - uid: 7715 + - uid: 7729 components: - pos: 35.5,-31.5 parent: 2 type: Transform - - uid: 7716 + - uid: 7730 components: - pos: 35.5,-33.5 parent: 2 type: Transform - - uid: 7717 + - uid: 7731 components: - pos: 35.5,-35.5 parent: 2 type: Transform - - uid: 7718 + - uid: 7732 components: - pos: 35.5,-37.5 parent: 2 type: Transform - - uid: 7719 + - uid: 7733 components: - pos: 35.5,-39.5 parent: 2 type: Transform - - uid: 7720 + - uid: 7734 components: - pos: 35.5,-41.5 parent: 2 type: Transform - - uid: 7721 + - uid: 7735 components: - pos: 17.5,-42.5 parent: 2 type: Transform - - uid: 7722 + - uid: 7736 components: - pos: 19.5,-42.5 parent: 2 type: Transform - - uid: 7723 + - uid: 7737 components: - pos: 10.5,-52.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7724 + - uid: 7738 components: - pos: 33.5,-1.5 parent: 2 type: Transform - - uid: 7725 + - uid: 7739 components: - pos: 33.5,-0.5 parent: 2 type: Transform - - uid: 7726 + - uid: 7740 components: - pos: 33.5,0.5 parent: 2 type: Transform - - uid: 7727 + - uid: 7741 components: - pos: 33.5,1.5 parent: 2 type: Transform - - uid: 7728 + - uid: 7742 components: - pos: 33.5,2.5 parent: 2 type: Transform - - uid: 7729 + - uid: 7743 components: - pos: 33.5,3.5 parent: 2 type: Transform - - uid: 7730 + - uid: 7744 components: - pos: 33.5,4.5 parent: 2 type: Transform - - uid: 7731 + - uid: 7745 components: - pos: 33.5,5.5 parent: 2 type: Transform - - uid: 7732 + - uid: 7746 components: - pos: 33.5,6.5 parent: 2 type: Transform - - uid: 7733 + - uid: 7747 components: - pos: 33.5,7.5 parent: 2 type: Transform - - uid: 7734 + - uid: 7748 components: - pos: 32.5,7.5 parent: 2 type: Transform - - uid: 7735 + - uid: 7749 components: - pos: 31.5,7.5 parent: 2 type: Transform - - uid: 7736 + - uid: 7750 components: - pos: 29.5,7.5 parent: 2 type: Transform - - uid: 7737 + - uid: 7751 components: - pos: 28.5,7.5 parent: 2 type: Transform - - uid: 7738 + - uid: 7752 components: - pos: 27.5,7.5 parent: 2 type: Transform - - uid: 7739 + - uid: 7753 components: - pos: 26.5,7.5 parent: 2 type: Transform - - uid: 7740 + - uid: 7754 components: - pos: 25.5,7.5 parent: 2 type: Transform - - uid: 7741 + - uid: 7755 components: - pos: 24.5,7.5 parent: 2 type: Transform - - uid: 7742 + - uid: 7756 components: - pos: 23.5,7.5 parent: 2 type: Transform - - uid: 7743 + - uid: 7757 components: - pos: 22.5,7.5 parent: 2 type: Transform - - uid: 7744 + - uid: 7758 components: - pos: 21.5,7.5 parent: 2 type: Transform - - uid: 7745 + - uid: 7759 components: - pos: 20.5,7.5 parent: 2 type: Transform - - uid: 7746 + - uid: 7760 components: - pos: 19.5,7.5 parent: 2 type: Transform - - uid: 7747 + - uid: 7761 components: - pos: 18.5,7.5 parent: 2 type: Transform - - uid: 7748 + - uid: 7762 components: - pos: 17.5,7.5 parent: 2 type: Transform - - uid: 7749 + - uid: 7763 components: - pos: 17.5,6.5 parent: 2 type: Transform - - uid: 7750 + - uid: 7764 components: - pos: 17.5,5.5 parent: 2 type: Transform - - uid: 7751 + - uid: 7765 components: - pos: 17.5,4.5 parent: 2 type: Transform - - uid: 7752 + - uid: 7766 components: - pos: 17.5,3.5 parent: 2 type: Transform - - uid: 7753 + - uid: 7767 components: - pos: 17.5,2.5 parent: 2 type: Transform - - uid: 7754 + - uid: 7768 components: - pos: 17.5,1.5 parent: 2 type: Transform - - uid: 7755 + - uid: 7769 components: - pos: 17.5,0.5 parent: 2 type: Transform - - uid: 7756 + - uid: 7770 components: - pos: 17.5,-0.5 parent: 2 type: Transform - - uid: 7757 + - uid: 7771 components: - pos: 17.5,-1.5 parent: 2 type: Transform - - uid: 7758 + - uid: 7772 components: - pos: 17.5,-2.5 parent: 2 type: Transform - - uid: 7759 + - uid: 7773 components: - pos: 17.5,-3.5 parent: 2 type: Transform - - uid: 7760 + - uid: 7774 components: - pos: 17.5,-4.5 parent: 2 type: Transform - - uid: 7761 + - uid: 7775 components: - pos: -4.5,-17.5 parent: 2 type: Transform - - uid: 7762 + - uid: 7776 components: - pos: -4.5,-16.5 parent: 2 type: Transform - - uid: 7763 + - uid: 7777 components: - pos: -4.5,-15.5 parent: 2 type: Transform - - uid: 7764 + - uid: 7778 components: - pos: -4.5,-14.5 parent: 2 type: Transform - - uid: 7765 + - uid: 7779 components: - pos: -4.5,-13.5 parent: 2 type: Transform - - uid: 7766 + - uid: 7780 components: - pos: -4.5,-12.5 parent: 2 type: Transform - - uid: 7767 + - uid: 7781 components: - pos: -4.5,-11.5 parent: 2 type: Transform - - uid: 7768 + - uid: 7782 components: - pos: -4.5,-10.5 parent: 2 type: Transform - - uid: 7769 + - uid: 7783 components: - pos: -4.5,-9.5 parent: 2 type: Transform - - uid: 7770 + - uid: 7784 components: - pos: -4.5,-8.5 parent: 2 type: Transform - - uid: 7771 + - uid: 7785 components: - pos: -4.5,-7.5 parent: 2 type: Transform - - uid: 7772 + - uid: 7786 components: - pos: -4.5,-6.5 parent: 2 type: Transform - - uid: 7773 + - uid: 7787 components: - pos: -4.5,-5.5 parent: 2 type: Transform - - uid: 7774 + - uid: 7788 components: - pos: -4.5,-4.5 parent: 2 type: Transform - - uid: 7775 + - uid: 7789 components: - pos: -4.5,-3.5 parent: 2 type: Transform - - uid: 7776 + - uid: 7790 components: - pos: -4.5,-2.5 parent: 2 type: Transform - - uid: 7777 + - uid: 7791 components: - pos: -4.5,-1.5 parent: 2 type: Transform - - uid: 7778 + - uid: 7792 components: - pos: -4.5,-0.5 parent: 2 type: Transform - - uid: 7779 + - uid: 7793 components: - pos: -4.5,0.5 parent: 2 type: Transform - - uid: 7780 + - uid: 7794 components: - pos: -4.5,1.5 parent: 2 type: Transform - - uid: 7781 + - uid: 7795 components: - pos: 25.5,8.5 parent: 2 type: Transform - - uid: 7782 + - uid: 7796 components: - pos: 25.5,9.5 parent: 2 type: Transform - - uid: 7783 + - uid: 7797 components: - pos: 24.5,9.5 parent: 2 type: Transform - - uid: 7784 + - uid: 7798 components: - pos: 24.5,10.5 parent: 2 type: Transform - - uid: 7785 + - uid: 7799 components: - pos: 24.5,11.5 parent: 2 type: Transform - - uid: 7786 + - uid: 7800 components: - pos: 24.5,12.5 parent: 2 type: Transform - - uid: 7787 + - uid: 7801 components: - pos: 24.5,13.5 parent: 2 type: Transform - - uid: 7788 + - uid: 7802 components: - pos: 24.5,14.5 parent: 2 type: Transform - - uid: 7789 + - uid: 7803 components: - pos: 24.5,15.5 parent: 2 type: Transform - - uid: 7790 + - uid: 7804 components: - pos: 24.5,16.5 parent: 2 type: Transform - - uid: 7791 + - uid: 7805 components: - pos: 23.5,16.5 parent: 2 type: Transform - - uid: 7792 + - uid: 7806 components: - pos: 22.5,16.5 parent: 2 type: Transform - - uid: 7793 + - uid: 7807 components: - pos: 24.5,17.5 parent: 2 type: Transform - - uid: 7794 + - uid: 7808 components: - pos: 24.5,18.5 parent: 2 type: Transform - - uid: 7795 + - uid: 7809 components: - pos: 25.5,18.5 parent: 2 type: Transform - - uid: 7796 + - uid: 7810 components: - pos: 26.5,18.5 parent: 2 type: Transform - - uid: 7797 + - uid: 7811 components: - pos: 27.5,18.5 parent: 2 type: Transform - - uid: 7798 + - uid: 7812 components: - pos: 28.5,18.5 parent: 2 type: Transform - - uid: 7799 + - uid: 7813 components: - pos: 29.5,18.5 parent: 2 type: Transform - - uid: 7800 + - uid: 7814 components: - pos: 29.5,20.5 parent: 2 type: Transform - - uid: 7801 + - uid: 7815 components: - pos: 29.5,19.5 parent: 2 type: Transform - - uid: 7802 + - uid: 7816 components: - pos: 29.5,21.5 parent: 2 type: Transform - - uid: 7803 + - uid: 7817 components: - pos: 30.5,21.5 parent: 2 type: Transform - - uid: 7804 + - uid: 7818 components: - pos: 31.5,21.5 parent: 2 type: Transform - - uid: 7805 + - uid: 7819 components: - pos: 32.5,21.5 parent: 2 type: Transform - - uid: 7806 + - uid: 7820 components: - pos: 32.5,22.5 parent: 2 type: Transform - - uid: 7807 + - uid: 7821 components: - pos: 32.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7808 + - uid: 7822 components: - pos: 32.5,24.5 parent: 2 type: Transform - - uid: 7809 + - uid: 7823 components: - pos: 32.5,25.5 parent: 2 type: Transform - - uid: 7810 + - uid: 7824 components: - pos: 22.5,17.5 parent: 2 type: Transform - - uid: 7811 + - uid: 7825 components: - pos: 22.5,18.5 parent: 2 type: Transform - - uid: 7812 + - uid: 7826 components: - pos: 22.5,19.5 parent: 2 type: Transform - - uid: 7813 + - uid: 7827 components: - pos: 22.5,20.5 parent: 2 type: Transform - - uid: 7814 + - uid: 7828 components: - pos: 22.5,21.5 parent: 2 type: Transform - - uid: 7815 + - uid: 7829 components: - pos: 22.5,22.5 parent: 2 type: Transform - - uid: 7816 + - uid: 7830 components: - pos: 21.5,22.5 parent: 2 type: Transform - - uid: 7817 + - uid: 7831 components: - pos: 21.5,23.5 parent: 2 type: Transform - - uid: 7818 + - uid: 7832 components: - pos: 21.5,24.5 parent: 2 type: Transform - - uid: 7819 + - uid: 7833 components: - pos: 21.5,25.5 parent: 2 type: Transform - - uid: 7820 + - uid: 7834 components: - pos: 20.5,25.5 parent: 2 type: Transform - - uid: 7821 + - uid: 7835 components: - pos: 18.5,25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7822 + - uid: 7836 components: - pos: 19.5,25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7823 + - uid: 7837 components: - pos: 33.5,25.5 parent: 2 type: Transform - - uid: 7824 + - uid: 7838 components: - pos: -4.5,2.5 parent: 2 type: Transform - - uid: 7825 + - uid: 7839 components: - pos: -5.5,2.5 parent: 2 type: Transform - - uid: 7826 + - uid: 7840 components: - pos: -6.5,2.5 parent: 2 type: Transform - - uid: 7827 + - uid: 7841 components: - pos: -7.5,2.5 parent: 2 type: Transform - - uid: 7828 + - uid: 7842 components: - pos: -8.5,2.5 parent: 2 type: Transform - - uid: 7829 + - uid: 7843 components: - pos: -9.5,2.5 parent: 2 type: Transform - - uid: 7830 + - uid: 7844 components: - pos: -10.5,2.5 parent: 2 type: Transform - - uid: 7831 + - uid: 7845 components: - pos: -11.5,2.5 parent: 2 type: Transform - - uid: 7832 + - uid: 7846 components: - pos: -12.5,2.5 parent: 2 type: Transform - - uid: 7833 + - uid: 7847 components: - pos: -13.5,2.5 parent: 2 type: Transform - - uid: 7834 + - uid: 7848 components: - pos: -2.5,-62.5 parent: 2 type: Transform - - uid: 7835 + - uid: 7849 components: - pos: 34.5,1.5 parent: 2 type: Transform - - uid: 7836 + - uid: 7850 components: - pos: 35.5,1.5 parent: 2 type: Transform - - uid: 7837 + - uid: 7851 components: - pos: 36.5,1.5 parent: 2 type: Transform - - uid: 7838 + - uid: 7852 components: - pos: 36.5,2.5 parent: 2 type: Transform - - uid: 7839 + - uid: 7853 components: - pos: 37.5,2.5 parent: 2 type: Transform - - uid: 7840 + - uid: 7854 components: - pos: 38.5,2.5 parent: 2 type: Transform - - uid: 7841 + - uid: 7855 components: - pos: 39.5,2.5 parent: 2 type: Transform - - uid: 7842 + - uid: 7856 components: - pos: 40.5,2.5 parent: 2 type: Transform - - uid: 7843 + - uid: 7857 components: - pos: 41.5,2.5 parent: 2 type: Transform - - uid: 7844 + - uid: 7858 components: - pos: 42.5,2.5 parent: 2 type: Transform - - uid: 7845 + - uid: 7859 components: - pos: 44.5,2.5 parent: 2 type: Transform - - uid: 7846 + - uid: 7860 components: - pos: 43.5,2.5 parent: 2 type: Transform - - uid: 7847 + - uid: 7861 components: - pos: -10.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7848 + - uid: 7862 components: - pos: -14.5,35.5 parent: 2 type: Transform - - uid: 7849 + - uid: 7863 components: - pos: -9.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7850 + - uid: 7864 components: - pos: -20.5,29.5 parent: 2 type: Transform - - uid: 7851 + - uid: 7865 components: - pos: -18.5,29.5 parent: 2 type: Transform - - uid: 7852 + - uid: 7866 components: - pos: -20.5,28.5 parent: 2 type: Transform - - uid: 7853 + - uid: 7867 components: - pos: -14.5,31.5 parent: 2 type: Transform - - uid: 7854 + - uid: 7868 components: - pos: -19.5,29.5 parent: 2 type: Transform - - uid: 7855 + - uid: 7869 components: - pos: -14.5,33.5 parent: 2 type: Transform - - uid: 7856 + - uid: 7870 components: - pos: -20.5,26.5 parent: 2 type: Transform - - uid: 7857 + - uid: 7871 components: - pos: -20.5,27.5 parent: 2 type: Transform - - uid: 7858 + - uid: 7872 components: - pos: -14.5,39.5 parent: 2 type: Transform - - uid: 7859 + - uid: 7873 components: - pos: -14.5,40.5 parent: 2 type: Transform - - uid: 7860 + - uid: 7874 components: - pos: -9.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7861 + - uid: 7875 components: - pos: -9.5,29.5 parent: 2 type: Transform - - uid: 7862 + - uid: 7876 components: - pos: -8.5,29.5 parent: 2 type: Transform - - uid: 7863 + - uid: 7877 components: - pos: -8.5,30.5 parent: 2 type: Transform - - uid: 7864 + - uid: 7878 components: - pos: -8.5,31.5 parent: 2 type: Transform - - uid: 7865 + - uid: 7879 components: - pos: 16.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7866 + - uid: 7880 components: - pos: 16.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7867 + - uid: 7881 components: - pos: 16.5,25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7868 + - uid: 7882 components: - pos: 17.5,25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7869 + - uid: 7883 components: - pos: 45.5,2.5 parent: 2 type: Transform - - uid: 7870 + - uid: 7884 components: - pos: 46.5,2.5 parent: 2 type: Transform - - uid: 7871 + - uid: 7885 components: - pos: 47.5,2.5 parent: 2 type: Transform - - uid: 7872 + - uid: 7886 components: - pos: 48.5,2.5 parent: 2 type: Transform - - uid: 7873 + - uid: 7887 components: - pos: 49.5,2.5 parent: 2 type: Transform - - uid: 7874 + - uid: 7888 components: - pos: 50.5,2.5 parent: 2 type: Transform - - uid: 7875 + - uid: 7889 components: - pos: 51.5,2.5 parent: 2 type: Transform - - uid: 7876 + - uid: 7890 components: - pos: 52.5,2.5 parent: 2 type: Transform - - uid: 7877 + - uid: 7891 components: - pos: 52.5,1.5 parent: 2 type: Transform - - uid: 7878 + - uid: 7892 components: - pos: 52.5,0.5 parent: 2 type: Transform - - uid: 7879 + - uid: 7893 components: - pos: 52.5,-0.5 parent: 2 type: Transform - - uid: 7880 + - uid: 7894 components: - pos: 53.5,1.5 parent: 2 type: Transform - - uid: 7881 + - uid: 7895 components: - pos: 54.5,1.5 parent: 2 type: Transform - - uid: 7882 + - uid: 7896 components: - pos: 55.5,1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7883 + - uid: 7897 components: - pos: 56.5,1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7884 + - uid: 7898 components: - pos: 57.5,1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7885 + - uid: 7899 components: - pos: 58.5,1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7886 + - uid: 7900 components: - pos: 59.5,1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7887 + - uid: 7901 components: - pos: 60.5,1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7888 + - uid: 7902 components: - pos: 61.5,1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7889 + - uid: 7903 components: - pos: 62.5,1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7890 + - uid: 7904 components: - pos: 62.5,2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7891 + - uid: 7905 components: - pos: 62.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7892 + - uid: 7906 components: - pos: 62.5,4.5 parent: 2 type: Transform - - uid: 7893 + - uid: 7907 components: - pos: 62.5,5.5 parent: 2 type: Transform - - uid: 7894 + - uid: 7908 components: - pos: 62.5,6.5 parent: 2 type: Transform - - uid: 7895 + - uid: 7909 components: - pos: 62.5,7.5 parent: 2 type: Transform - - uid: 7896 + - uid: 7910 components: - pos: 63.5,7.5 parent: 2 type: Transform - - uid: 7897 + - uid: 7911 components: - pos: 25.5,-52.5 parent: 2 type: Transform - - uid: 7898 + - uid: 7912 components: - pos: 25.5,-53.5 parent: 2 type: Transform - - uid: 7899 + - uid: 7913 components: - pos: 25.5,-54.5 parent: 2 type: Transform - - uid: 7900 + - uid: 7914 components: - pos: 25.5,-55.5 parent: 2 type: Transform - - uid: 7901 + - uid: 7915 components: - pos: 25.5,-56.5 parent: 2 type: Transform - - uid: 7902 + - uid: 7916 components: - pos: 25.5,-57.5 parent: 2 type: Transform - - uid: 7903 + - uid: 7917 components: - pos: 25.5,-58.5 parent: 2 type: Transform - - uid: 7904 + - uid: 7918 components: - pos: 25.5,-59.5 parent: 2 type: Transform - - uid: 7905 + - uid: 7919 components: - pos: 26.5,-59.5 parent: 2 type: Transform - - uid: 7906 + - uid: 7920 components: - pos: 27.5,-59.5 parent: 2 type: Transform - - uid: 7907 + - uid: 7921 components: - pos: 28.5,-59.5 parent: 2 type: Transform - - uid: 7908 + - uid: 7922 components: - pos: 29.5,-59.5 parent: 2 type: Transform - - uid: 7909 + - uid: 7923 components: - pos: 30.5,-59.5 parent: 2 type: Transform - - uid: 7910 + - uid: 7924 components: - pos: 31.5,-59.5 parent: 2 type: Transform - - uid: 7911 + - uid: 7925 components: - pos: 32.5,-59.5 parent: 2 type: Transform - - uid: 7912 + - uid: 7926 components: - pos: 33.5,-59.5 parent: 2 type: Transform - - uid: 7913 + - uid: 7927 components: - pos: 34.5,-59.5 parent: 2 type: Transform - - uid: 7914 + - uid: 7928 components: - pos: -13.5,1.5 parent: 2 type: Transform - - uid: 7915 + - uid: 7929 components: - pos: -13.5,0.5 parent: 2 type: Transform - - uid: 7916 + - uid: 7930 components: - pos: -13.5,-0.5 parent: 2 type: Transform - - uid: 7917 + - uid: 7931 components: - pos: -13.5,-1.5 parent: 2 type: Transform - - uid: 7918 + - uid: 7932 components: - pos: -13.5,-2.5 parent: 2 type: Transform - - uid: 7919 + - uid: 7933 components: - pos: -13.5,-3.5 parent: 2 type: Transform - - uid: 7920 + - uid: 7934 components: - pos: -13.5,-4.5 parent: 2 type: Transform - - uid: 7921 + - uid: 7935 components: - pos: -13.5,-5.5 parent: 2 type: Transform - - uid: 7922 + - uid: 7936 components: - pos: -14.5,-5.5 parent: 2 type: Transform - - uid: 7923 + - uid: 7937 components: - pos: -15.5,-5.5 parent: 2 type: Transform - - uid: 7924 + - uid: 7938 components: - pos: -16.5,-5.5 parent: 2 type: Transform - - uid: 7925 + - uid: 7939 components: - pos: -17.5,-5.5 parent: 2 type: Transform - - uid: 7926 + - uid: 7940 components: - pos: -18.5,-5.5 parent: 2 type: Transform - - uid: 7927 + - uid: 7941 components: - pos: -19.5,-5.5 parent: 2 type: Transform - - uid: 7928 + - uid: 7942 components: - pos: -19.5,-6.5 parent: 2 type: Transform - - uid: 7929 + - uid: 7943 components: - pos: -19.5,-7.5 parent: 2 type: Transform - - uid: 7930 + - uid: 7944 components: - pos: -19.5,-8.5 parent: 2 type: Transform - - uid: 7931 + - uid: 7945 components: - pos: -19.5,-9.5 parent: 2 type: Transform - - uid: 7932 + - uid: 7946 components: - pos: -19.5,-10.5 parent: 2 type: Transform - - uid: 7933 + - uid: 7947 components: - pos: -19.5,-11.5 parent: 2 type: Transform - - uid: 7934 + - uid: 7948 components: - pos: -19.5,-12.5 parent: 2 type: Transform - - uid: 7935 + - uid: 7949 components: - pos: -19.5,-13.5 parent: 2 type: Transform - - uid: 7936 + - uid: 7950 components: - pos: -19.5,-14.5 parent: 2 type: Transform - - uid: 7937 + - uid: 7951 components: - pos: -19.5,-15.5 parent: 2 type: Transform - - uid: 7938 + - uid: 7952 components: - pos: -19.5,-16.5 parent: 2 type: Transform - - uid: 7939 + - uid: 7953 components: - pos: -19.5,-17.5 parent: 2 type: Transform - - uid: 7940 + - uid: 7954 components: - pos: -19.5,-18.5 parent: 2 type: Transform - - uid: 7941 + - uid: 7955 components: - pos: -19.5,-19.5 parent: 2 type: Transform - - uid: 7942 + - uid: 7956 components: - pos: -19.5,-20.5 parent: 2 type: Transform - - uid: 7943 + - uid: 7957 components: - pos: -19.5,-21.5 parent: 2 type: Transform - - uid: 7944 + - uid: 7958 components: - pos: -19.5,-22.5 parent: 2 type: Transform - - uid: 7945 + - uid: 7959 components: - pos: -19.5,-23.5 parent: 2 type: Transform - - uid: 7946 + - uid: 7960 components: - pos: -19.5,-24.5 parent: 2 type: Transform - - uid: 7947 + - uid: 7961 components: - pos: -19.5,-25.5 parent: 2 type: Transform - - uid: 7948 + - uid: 7962 components: - pos: -19.5,-26.5 parent: 2 type: Transform - - uid: 7949 + - uid: 7963 components: - pos: -19.5,-27.5 parent: 2 type: Transform - - uid: 7950 + - uid: 7964 components: - pos: -18.5,-26.5 parent: 2 type: Transform - - uid: 7951 + - uid: 7965 components: - pos: 4.5,-15.5 parent: 2 type: Transform - - uid: 7952 + - uid: 7966 components: - pos: 52.5,-1.5 parent: 2 type: Transform - - uid: 7953 + - uid: 7967 components: - pos: 52.5,-2.5 parent: 2 type: Transform - - uid: 7954 + - uid: 7968 components: - pos: 52.5,-3.5 parent: 2 type: Transform - - uid: 7955 + - uid: 7969 components: - pos: 52.5,-4.5 parent: 2 type: Transform - - uid: 7956 + - uid: 7970 components: - pos: 52.5,-5.5 parent: 2 type: Transform - - uid: 7957 + - uid: 7971 components: - pos: 52.5,-6.5 parent: 2 type: Transform - - uid: 7958 + - uid: 7972 components: - pos: 52.5,-7.5 parent: 2 type: Transform - - uid: 7959 + - uid: 7973 components: - pos: 51.5,-7.5 parent: 2 type: Transform - - uid: 7960 + - uid: 7974 components: - pos: 50.5,-7.5 parent: 2 type: Transform - - uid: 7961 + - uid: 7975 components: - pos: 51.5,-1.5 parent: 2 type: Transform - - uid: 7962 + - uid: 7976 components: - pos: 50.5,-1.5 parent: 2 type: Transform - - uid: 7963 + - uid: 7977 components: - pos: 49.5,-1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7964 + - uid: 7978 components: - pos: 48.5,-1.5 parent: 2 type: Transform - - uid: 7965 + - uid: 7979 components: - pos: 48.5,-2.5 parent: 2 type: Transform - - uid: 7966 + - uid: 7980 components: - pos: 48.5,-3.5 parent: 2 type: Transform - - uid: 7967 + - uid: 7981 components: - pos: 47.5,-3.5 parent: 2 type: Transform - - uid: 7968 + - uid: 7982 components: - pos: 71.5,-46.5 parent: 2 type: Transform - - uid: 7969 + - uid: 7983 components: - pos: 49.5,-7.5 parent: 2 type: Transform - - uid: 7970 + - uid: 7984 components: - pos: 49.5,-6.5 parent: 2 type: Transform - - uid: 7971 + - uid: 7985 components: - pos: 49.5,-5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7972 + - uid: 7986 components: - pos: 48.5,-5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7973 + - uid: 7987 components: - pos: 38.5,-44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7974 + - uid: 7988 components: - pos: -24.5,-16.5 parent: 2 type: Transform - - uid: 7975 + - uid: 7989 components: - pos: 36.5,-42.5 parent: 2 type: Transform - - uid: 7976 + - uid: 7990 components: - pos: 37.5,-42.5 parent: 2 type: Transform - - uid: 7977 + - uid: 7991 components: - pos: 38.5,-42.5 parent: 2 type: Transform - - uid: 7978 + - uid: 7992 components: - pos: 39.5,-42.5 parent: 2 type: Transform - - uid: 7979 + - uid: 7993 components: - pos: 40.5,-42.5 parent: 2 type: Transform - - uid: 7980 + - uid: 7994 components: - pos: 41.5,-42.5 parent: 2 type: Transform - - uid: 7981 + - uid: 7995 components: - pos: 42.5,-42.5 parent: 2 type: Transform - - uid: 7982 + - uid: 7996 components: - pos: 43.5,-42.5 parent: 2 type: Transform - - uid: 7983 + - uid: 7997 components: - pos: 44.5,-42.5 parent: 2 type: Transform - - uid: 7984 + - uid: 7998 components: - pos: 45.5,-42.5 parent: 2 type: Transform - - uid: 7985 + - uid: 7999 components: - pos: 46.5,-42.5 parent: 2 type: Transform - - uid: 7986 + - uid: 8000 components: - pos: 47.5,-42.5 parent: 2 type: Transform - - uid: 7987 + - uid: 8001 components: - pos: 48.5,-42.5 parent: 2 type: Transform - - uid: 7988 + - uid: 8002 components: - pos: 49.5,-42.5 parent: 2 type: Transform - - uid: 7989 + - uid: 8003 components: - pos: 49.5,-43.5 parent: 2 type: Transform - - uid: 7990 + - uid: 8004 components: - pos: 49.5,-44.5 parent: 2 type: Transform - - uid: 7991 + - uid: 8005 components: - pos: 38.5,-45.5 parent: 2 type: Transform - - uid: 7992 + - uid: 8006 components: - pos: 38.5,-43.5 parent: 2 type: Transform - - uid: 7993 + - uid: 8007 components: - pos: 38.5,-46.5 parent: 2 type: Transform - - uid: 7994 + - uid: 8008 components: - pos: -19.5,-4.5 parent: 2 type: Transform - - uid: 7995 + - uid: 8009 components: - pos: -19.5,-3.5 parent: 2 type: Transform - - uid: 7996 + - uid: 8010 components: - pos: -19.5,-2.5 parent: 2 type: Transform - - uid: 7997 + - uid: 8011 components: - pos: -19.5,-1.5 parent: 2 type: Transform - - uid: 7998 + - uid: 8012 components: - pos: -19.5,-0.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 7999 + - uid: 8013 components: - pos: -18.5,-0.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8000 + - uid: 8014 components: - pos: -17.5,-0.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8001 + - uid: 8015 components: - pos: -16.5,-0.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8002 + - uid: 8016 components: - pos: -20.5,-12.5 parent: 2 type: Transform - - uid: 8003 + - uid: 8017 components: - pos: -21.5,-12.5 parent: 2 type: Transform - - uid: 8004 + - uid: 8018 components: - pos: -23.5,-12.5 parent: 2 type: Transform - - uid: 8005 + - uid: 8019 components: - pos: -22.5,-12.5 parent: 2 type: Transform - - uid: 8006 + - uid: 8020 components: - pos: -24.5,-17.5 parent: 2 type: Transform - - uid: 8007 + - uid: 8021 components: - pos: -25.5,-17.5 parent: 2 type: Transform - - uid: 8008 + - uid: 8022 components: - pos: -26.5,-17.5 parent: 2 type: Transform - - uid: 8009 + - uid: 8023 components: - pos: -27.5,-17.5 parent: 2 type: Transform - - uid: 8010 + - uid: 8024 components: - pos: -28.5,-17.5 parent: 2 type: Transform - - uid: 8011 + - uid: 8025 components: - pos: -29.5,-17.5 parent: 2 type: Transform - - uid: 8012 + - uid: 8026 components: - pos: -30.5,-17.5 parent: 2 type: Transform - - uid: 8013 + - uid: 8027 components: - pos: -31.5,-17.5 parent: 2 type: Transform - - uid: 8014 + - uid: 8028 components: - pos: -20.5,-22.5 parent: 2 type: Transform - - uid: 8015 + - uid: 8029 components: - pos: -21.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8016 + - uid: 8030 components: - pos: -22.5,-22.5 parent: 2 type: Transform - - uid: 8017 + - uid: 8031 components: - pos: -23.5,-22.5 parent: 2 type: Transform - - uid: 8018 + - uid: 8032 components: - pos: -24.5,-22.5 parent: 2 type: Transform - - uid: 8019 + - uid: 8033 components: - pos: -25.5,-22.5 parent: 2 type: Transform - - uid: 8020 + - uid: 8034 components: - pos: -26.5,-22.5 parent: 2 type: Transform - - uid: 8021 + - uid: 8035 components: - pos: -27.5,-22.5 parent: 2 type: Transform - - uid: 8022 + - uid: 8036 components: - pos: -28.5,-22.5 parent: 2 type: Transform - - uid: 8023 + - uid: 8037 components: - pos: -28.5,-23.5 parent: 2 type: Transform - - uid: 8024 + - uid: 8038 components: - pos: -24.5,-12.5 parent: 2 type: Transform - - uid: 8025 + - uid: 8039 components: - pos: 35.5,-59.5 parent: 2 type: Transform - - uid: 8026 + - uid: 8040 components: - pos: 36.5,-59.5 parent: 2 type: Transform - - uid: 8027 + - uid: 8041 components: - pos: 37.5,-59.5 parent: 2 type: Transform - - uid: 8028 + - uid: 8042 components: - pos: -18.5,-41.5 parent: 2 type: Transform - - uid: 8029 + - uid: 8043 components: - pos: -18.5,-40.5 parent: 2 type: Transform - - uid: 8030 + - uid: 8044 components: - pos: -18.5,-39.5 parent: 2 type: Transform - - uid: 8031 + - uid: 8045 components: - pos: -18.5,-38.5 parent: 2 type: Transform - - uid: 8032 + - uid: 8046 components: - pos: -18.5,-37.5 parent: 2 type: Transform - - uid: 8033 + - uid: 8047 components: - pos: -18.5,-36.5 parent: 2 type: Transform - - uid: 8034 + - uid: 8048 components: - pos: -18.5,-35.5 parent: 2 type: Transform - - uid: 8035 + - uid: 8049 components: - pos: -18.5,-34.5 parent: 2 type: Transform - - uid: 8036 + - uid: 8050 components: - pos: -18.5,-33.5 parent: 2 type: Transform - - uid: 8037 + - uid: 8051 components: - pos: -18.5,-32.5 parent: 2 type: Transform - - uid: 8038 + - uid: 8052 components: - pos: -18.5,-31.5 parent: 2 type: Transform - - uid: 8039 + - uid: 8053 components: - pos: -18.5,-30.5 parent: 2 type: Transform - - uid: 8040 + - uid: 8054 components: - pos: -19.5,-30.5 parent: 2 type: Transform - - uid: 8041 + - uid: 8055 components: - pos: -19.5,-29.5 parent: 2 type: Transform - - uid: 8042 + - uid: 8056 components: - pos: -19.5,-28.5 parent: 2 type: Transform - - uid: 8043 + - uid: 8057 components: - pos: 38.5,-59.5 parent: 2 type: Transform - - uid: 8044 + - uid: 8058 components: - pos: 39.5,-59.5 parent: 2 type: Transform - - uid: 8045 + - uid: 8059 components: - pos: 40.5,-59.5 parent: 2 type: Transform - - uid: 8046 + - uid: 8060 components: - pos: 40.5,-60.5 parent: 2 type: Transform - - uid: 8047 + - uid: 8061 components: - pos: 40.5,-61.5 parent: 2 type: Transform - - uid: 8048 + - uid: 8062 components: - pos: 40.5,-62.5 parent: 2 type: Transform - - uid: 8049 + - uid: 8063 components: - pos: 40.5,-63.5 parent: 2 type: Transform - - uid: 8050 + - uid: 8064 components: - pos: 40.5,-64.5 parent: 2 type: Transform - - uid: 8051 + - uid: 8065 components: - pos: 40.5,-65.5 parent: 2 type: Transform - - uid: 8052 + - uid: 8066 components: - pos: 40.5,-66.5 parent: 2 type: Transform - - uid: 8053 + - uid: 8067 components: - pos: 40.5,-67.5 parent: 2 type: Transform - - uid: 8054 + - uid: 8068 components: - pos: 40.5,-68.5 parent: 2 type: Transform - - uid: 8055 + - uid: 8069 components: - pos: 41.5,-59.5 parent: 2 type: Transform - - uid: 8056 + - uid: 8070 components: - pos: 42.5,-59.5 parent: 2 type: Transform - - uid: 8057 + - uid: 8071 components: - pos: 43.5,-59.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8058 + - uid: 8072 components: - pos: 43.5,-58.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8059 + - uid: 8073 components: - pos: -31.5,-16.5 parent: 2 type: Transform - - uid: 8060 + - uid: 8074 components: - pos: -31.5,-15.5 parent: 2 type: Transform - - uid: 8061 + - uid: 8075 components: - pos: -31.5,-14.5 parent: 2 type: Transform - - uid: 8062 + - uid: 8076 components: - pos: -31.5,-13.5 parent: 2 type: Transform - - uid: 8063 + - uid: 8077 components: - pos: -31.5,-12.5 parent: 2 type: Transform - - uid: 8064 + - uid: 8078 components: - pos: -31.5,-11.5 parent: 2 type: Transform - - uid: 8065 + - uid: 8079 components: - pos: -32.5,-11.5 parent: 2 type: Transform - - uid: 8066 + - uid: 8080 components: - pos: -33.5,-11.5 parent: 2 type: Transform - - uid: 8067 + - uid: 8081 components: - pos: -34.5,-11.5 parent: 2 type: Transform - - uid: 8068 + - uid: 8082 components: - pos: -35.5,-11.5 parent: 2 type: Transform - - uid: 8069 + - uid: 8083 components: - pos: -36.5,-11.5 parent: 2 type: Transform - - uid: 8070 + - uid: 8084 components: - pos: -37.5,-11.5 parent: 2 type: Transform - - uid: 8071 + - uid: 8085 components: - pos: -38.5,-11.5 parent: 2 type: Transform - - uid: 8072 + - uid: 8086 components: - pos: -39.5,-11.5 parent: 2 type: Transform - - uid: 8073 + - uid: 8087 components: - pos: -40.5,-11.5 parent: 2 type: Transform - - uid: 8074 + - uid: 8088 components: - pos: -41.5,-11.5 parent: 2 type: Transform - - uid: 8075 + - uid: 8089 components: - pos: -42.5,-11.5 parent: 2 type: Transform - - uid: 8076 + - uid: 8090 components: - pos: -2.5,-69.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8077 + - uid: 8091 components: - pos: -1.5,-69.5 parent: 2 type: Transform - - uid: 8078 + - uid: 8092 components: - pos: -1.5,-67.5 parent: 2 type: Transform - - uid: 8079 + - uid: 8093 components: - pos: -2.5,-60.5 parent: 2 type: Transform - - uid: 8080 + - uid: 8094 components: - pos: -2.5,-58.5 parent: 2 type: Transform - - uid: 8081 + - uid: 8095 components: - pos: -42.5,-6.5 parent: 2 type: Transform - - uid: 8082 + - uid: 8096 components: - pos: -42.5,-10.5 parent: 2 type: Transform - - uid: 8083 + - uid: 8097 components: - pos: -42.5,-7.5 parent: 2 type: Transform - - uid: 8084 + - uid: 8098 components: - pos: -42.5,-8.5 parent: 2 type: Transform - - uid: 8085 + - uid: 8099 components: - pos: -46.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8086 + - uid: 8100 components: - pos: -46.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8087 + - uid: 8101 components: - pos: -46.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8088 + - uid: 8102 components: - pos: -46.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8089 + - uid: 8103 components: - pos: -46.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8090 + - uid: 8104 components: - pos: -46.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8091 + - uid: 8105 components: - pos: -46.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8092 + - uid: 8106 components: - pos: -46.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8093 + - uid: 8107 components: - pos: -42.5,-9.5 parent: 2 type: Transform - - uid: 8094 + - uid: 8108 components: - pos: -46.5,-17.5 parent: 2 type: Transform - - uid: 8095 + - uid: 8109 components: - pos: -46.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8096 + - uid: 8110 components: - pos: -46.5,-19.5 parent: 2 type: Transform - - uid: 8097 + - uid: 8111 components: - pos: -47.5,-19.5 parent: 2 type: Transform - - uid: 8098 + - uid: 8112 components: - pos: -48.5,-19.5 parent: 2 type: Transform - - uid: 8099 + - uid: 8113 components: - pos: -48.5,-20.5 parent: 2 type: Transform - - uid: 8100 + - uid: 8114 components: - pos: -46.5,-20.5 parent: 2 type: Transform - - uid: 8101 + - uid: 8115 components: - pos: -45.5,-19.5 parent: 2 type: Transform - - uid: 8102 + - uid: 8116 components: - pos: -44.5,-19.5 parent: 2 type: Transform - - uid: 8103 + - uid: 8117 components: - pos: -44.5,-20.5 parent: 2 type: Transform - - uid: 8104 + - uid: 8118 components: - pos: -46.5,-21.5 parent: 2 type: Transform - - uid: 8105 + - uid: 8119 components: - pos: -48.5,-21.5 parent: 2 type: Transform - - uid: 8106 + - uid: 8120 components: - pos: -44.5,-21.5 parent: 2 type: Transform - - uid: 8107 + - uid: 8121 components: - pos: -46.5,-22.5 parent: 2 type: Transform - - uid: 8108 + - uid: 8122 components: - pos: -48.5,-22.5 parent: 2 type: Transform - - uid: 8109 + - uid: 8123 components: - pos: -44.5,-22.5 parent: 2 type: Transform - - uid: 8110 + - uid: 8124 components: - pos: -48.5,-23.5 parent: 2 type: Transform - - uid: 8111 + - uid: 8125 components: - pos: -47.5,-23.5 parent: 2 type: Transform - - uid: 8112 + - uid: 8126 components: - pos: -46.5,-23.5 parent: 2 type: Transform - - uid: 8113 + - uid: 8127 components: - pos: -44.5,-23.5 parent: 2 type: Transform - - uid: 8114 + - uid: 8128 components: - pos: -45.5,-23.5 parent: 2 type: Transform - - uid: 8115 + - uid: 8129 components: - pos: -49.5,-23.5 parent: 2 type: Transform - - uid: 8116 + - uid: 8130 components: - pos: -50.5,-23.5 parent: 2 type: Transform - - uid: 8117 + - uid: 8131 components: - pos: -51.5,-24.5 parent: 2 type: Transform - - uid: 8118 + - uid: 8132 components: - pos: -51.5,-23.5 parent: 2 type: Transform - - uid: 8119 + - uid: 8133 components: - pos: -43.5,-22.5 parent: 2 type: Transform - - uid: 8120 + - uid: 8134 components: - pos: -42.5,-22.5 parent: 2 type: Transform - - uid: 8121 - components: - - pos: -51.5,-21.5 - parent: 2 - type: Transform - - uid: 8122 + - uid: 8135 components: - pos: -41.5,-22.5 parent: 2 type: Transform - - uid: 8123 + - uid: 8136 components: - pos: -41.5,-21.5 parent: 2 type: Transform - - uid: 8124 + - uid: 8137 components: - pos: -41.5,-20.5 parent: 2 type: Transform - - uid: 8125 + - uid: 8138 components: - pos: -43.5,-6.5 parent: 2 type: Transform - - uid: 8126 + - uid: 8139 components: - pos: -44.5,-6.5 parent: 2 type: Transform - - uid: 8127 + - uid: 8140 components: - pos: -45.5,-6.5 parent: 2 type: Transform - - uid: 8128 + - uid: 8141 components: - pos: -46.5,-6.5 parent: 2 type: Transform - - uid: 8129 + - uid: 8142 components: - pos: -47.5,-6.5 parent: 2 type: Transform - - uid: 8130 + - uid: 8143 components: - pos: -48.5,-6.5 parent: 2 type: Transform - - uid: 8131 + - uid: 8144 components: - pos: -49.5,-6.5 parent: 2 type: Transform - - uid: 8132 + - uid: 8145 components: - pos: -50.5,-6.5 parent: 2 type: Transform - - uid: 8133 + - uid: 8146 components: - pos: -51.5,-6.5 parent: 2 type: Transform - - uid: 8134 + - uid: 8147 components: - pos: -52.5,-6.5 parent: 2 type: Transform - - uid: 8135 + - uid: 8148 components: - pos: -52.5,-7.5 parent: 2 type: Transform - - uid: 8136 + - uid: 8149 components: - pos: -52.5,-8.5 parent: 2 type: Transform - - uid: 8137 + - uid: 8150 components: - pos: -52.5,-9.5 parent: 2 type: Transform - - uid: 8138 + - uid: 8151 components: - pos: -41.5,-12.5 parent: 2 type: Transform - - uid: 8139 + - uid: 8152 components: - pos: -41.5,-13.5 parent: 2 type: Transform - - uid: 8140 + - uid: 8153 components: - pos: -41.5,-14.5 parent: 2 type: Transform - - uid: 8141 + - uid: 8154 components: - pos: -41.5,-15.5 parent: 2 type: Transform - - uid: 8142 + - uid: 8155 components: - pos: -41.5,-18.5 parent: 2 type: Transform - - uid: 8143 + - uid: 8156 components: - pos: -41.5,-17.5 parent: 2 type: Transform - - uid: 8144 + - uid: 8157 components: - pos: -41.5,-19.5 parent: 2 type: Transform - - uid: 8145 + - uid: 8158 components: - pos: -41.5,-16.5 parent: 2 type: Transform - - uid: 8146 + - uid: 8159 components: - pos: -51.5,-9.5 parent: 2 type: Transform - - uid: 8147 + - uid: 8160 components: - pos: -50.5,-9.5 parent: 2 type: Transform - - uid: 8148 + - uid: 8161 components: - pos: -50.5,-8.5 parent: 2 type: Transform - - uid: 8149 + - uid: 8162 components: - pos: -57.5,-20.5 parent: 2 type: Transform - - uid: 8150 + - uid: 8163 components: - pos: -14.5,45.5 parent: 2 type: Transform - - uid: 8151 + - uid: 8164 components: - pos: -14.5,44.5 parent: 2 type: Transform - - uid: 8152 + - uid: 8165 components: - pos: -56.5,-24.5 parent: 2 type: Transform - - uid: 8153 + - uid: 8166 components: - pos: -65.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8154 + - uid: 8167 components: - pos: -53.5,-19.5 parent: 2 type: Transform - - uid: 8155 + - uid: 8168 components: - pos: -66.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8156 + - uid: 8169 components: - pos: -53.5,-21.5 parent: 2 type: Transform - - uid: 8157 + - uid: 8170 components: - pos: -57.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8158 + - uid: 8171 components: - pos: -64.5,-28.5 parent: 2 type: Transform - - uid: 8159 + - uid: 8172 components: - pos: -65.5,-28.5 parent: 2 type: Transform - - uid: 8160 + - uid: 8173 components: - pos: -66.5,-28.5 parent: 2 type: Transform - - uid: 8161 + - uid: 8174 components: - pos: -66.5,-27.5 parent: 2 type: Transform - - uid: 8162 + - uid: 8175 components: - pos: -66.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8163 + - uid: 8176 components: - pos: -64.5,-25.5 parent: 2 type: Transform - - uid: 8164 + - uid: 8177 components: - pos: -14.5,36.5 parent: 2 type: Transform - - uid: 8165 + - uid: 8178 components: - pos: -56.5,-23.5 parent: 2 type: Transform - - uid: 8166 + - uid: 8179 components: - pos: -56.5,-22.5 parent: 2 type: Transform - - uid: 8167 + - uid: 8180 components: - pos: -56.5,-21.5 parent: 2 type: Transform - - uid: 8168 + - uid: 8181 components: - pos: -56.5,-20.5 parent: 2 type: Transform - - uid: 8169 + - uid: 8182 components: - pos: -64.5,-29.5 parent: 2 type: Transform - - uid: 8170 + - uid: 8183 components: - pos: -64.5,-30.5 parent: 2 type: Transform - - uid: 8171 + - uid: 8184 components: - pos: -63.5,-30.5 parent: 2 type: Transform - - uid: 8172 + - uid: 8185 components: - pos: -62.5,-30.5 parent: 2 type: Transform - - uid: 8173 + - uid: 8186 components: - pos: -61.5,-30.5 parent: 2 type: Transform - - uid: 8174 + - uid: 8187 components: - pos: -60.5,-30.5 parent: 2 type: Transform - - uid: 8175 + - uid: 8188 components: - pos: -64.5,-31.5 parent: 2 type: Transform - - uid: 8176 + - uid: 8189 components: - pos: -68.5,-31.5 parent: 2 type: Transform - - uid: 8177 + - uid: 8190 components: - pos: -65.5,-31.5 parent: 2 type: Transform - - uid: 8178 + - uid: 8191 components: - pos: -14.5,42.5 parent: 2 type: Transform - - uid: 8179 + - uid: 8192 components: - pos: -60.5,-29.5 parent: 2 type: Transform - - uid: 8180 + - uid: 8193 components: - pos: -60.5,-26.5 parent: 2 type: Transform - - uid: 8181 + - uid: 8194 components: - pos: -60.5,-25.5 parent: 2 type: Transform - - uid: 8182 + - uid: 8195 components: - pos: -59.5,-25.5 parent: 2 type: Transform - - uid: 8183 + - uid: 8196 components: - pos: -58.5,-25.5 parent: 2 type: Transform - - uid: 8184 + - uid: 8197 components: - pos: -56.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8185 + - uid: 8198 components: - pos: -58.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8186 + - uid: 8199 components: - pos: -52.5,-19.5 parent: 2 type: Transform - - uid: 8187 + - uid: 8200 components: - pos: -51.5,-19.5 parent: 2 type: Transform - - uid: 8188 + - uid: 8201 components: - pos: -50.5,-19.5 parent: 2 type: Transform - - uid: 8189 + - uid: 8202 components: - pos: -49.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8190 + - uid: 8203 components: - pos: -31.5,-18.5 parent: 2 type: Transform - - uid: 8191 + - uid: 8204 components: - pos: -31.5,-19.5 parent: 2 type: Transform - - uid: 8192 + - uid: 8205 components: - pos: -31.5,-20.5 parent: 2 type: Transform - - uid: 8193 + - uid: 8206 components: - pos: -31.5,-21.5 parent: 2 type: Transform - - uid: 8194 + - uid: 8207 components: - pos: -31.5,-22.5 parent: 2 type: Transform - - uid: 8195 + - uid: 8208 components: - pos: -31.5,-23.5 parent: 2 type: Transform - - uid: 8196 + - uid: 8209 components: - pos: -31.5,-24.5 parent: 2 type: Transform - - uid: 8197 + - uid: 8210 components: - pos: -31.5,-25.5 parent: 2 type: Transform - - uid: 8198 + - uid: 8211 components: - pos: -31.5,-26.5 parent: 2 type: Transform - - uid: 8199 + - uid: 8212 components: - pos: -31.5,-27.5 parent: 2 type: Transform - - uid: 8200 + - uid: 8213 components: - pos: -31.5,-28.5 parent: 2 type: Transform - - uid: 8201 + - uid: 8214 components: - pos: -31.5,-29.5 parent: 2 type: Transform - - uid: 8202 + - uid: 8215 components: - pos: -31.5,-30.5 parent: 2 type: Transform - - uid: 8203 + - uid: 8216 components: - pos: -31.5,-31.5 parent: 2 type: Transform - - uid: 8204 + - uid: 8217 components: - pos: -31.5,-32.5 parent: 2 type: Transform - - uid: 8205 + - uid: 8218 components: - pos: -31.5,-33.5 parent: 2 type: Transform - - uid: 8206 + - uid: 8219 components: - pos: -31.5,-34.5 parent: 2 type: Transform - - uid: 8207 + - uid: 8220 components: - pos: -30.5,-34.5 parent: 2 type: Transform - - uid: 8208 + - uid: 8221 components: - pos: -29.5,-34.5 parent: 2 type: Transform - - uid: 8209 + - uid: 8222 components: - pos: -28.5,-34.5 parent: 2 type: Transform - - uid: 8210 + - uid: 8223 components: - pos: -28.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8211 + - uid: 8224 components: - pos: -28.5,-36.5 parent: 2 type: Transform - - uid: 8212 + - uid: 8225 components: - pos: -28.5,-37.5 parent: 2 type: Transform - - uid: 8213 + - uid: 8226 components: - pos: -27.5,-37.5 parent: 2 type: Transform - - uid: 8214 + - uid: 8227 components: - pos: -60.5,-28.5 parent: 2 type: Transform - - uid: 8215 + - uid: 8228 components: - pos: -71.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8216 + - uid: 8229 components: - pos: -72.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8217 + - uid: 8230 components: - pos: -73.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8218 + - uid: 8231 components: - pos: -74.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8219 + - uid: 8232 components: - pos: -75.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8220 + - uid: 8233 components: - pos: -76.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8221 + - uid: 8234 components: - pos: -76.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8222 + - uid: 8235 components: - pos: -76.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8223 + - uid: 8236 components: - pos: -76.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8224 + - uid: 8237 components: - pos: -76.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8225 + - uid: 8238 components: - pos: -76.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8226 + - uid: 8239 components: - pos: -76.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8227 + - uid: 8240 components: - pos: -76.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8228 + - uid: 8241 components: - pos: -76.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8229 + - uid: 8242 components: - pos: -76.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8230 + - uid: 8243 components: - pos: -76.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8231 + - uid: 8244 components: - pos: -76.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8232 + - uid: 8245 components: - pos: -76.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8233 + - uid: 8246 components: - pos: -76.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8234 + - uid: 8247 components: - pos: -76.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8235 + - uid: 8248 components: - pos: -76.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8236 + - uid: 8249 components: - pos: -76.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8237 + - uid: 8250 components: - pos: -76.5,-5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8238 + - uid: 8251 components: - pos: -76.5,-4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8239 + - uid: 8252 components: - pos: -76.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8240 + - uid: 8253 components: - pos: -75.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8241 + - uid: 8254 components: - pos: -74.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8242 + - uid: 8255 components: - pos: -73.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8243 + - uid: 8256 components: - pos: -72.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8244 + - uid: 8257 components: - pos: -71.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8245 + - uid: 8258 components: - pos: -70.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8246 + - uid: 8259 components: - pos: -69.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8247 + - uid: 8260 components: - pos: -68.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8248 + - uid: 8261 components: - pos: -67.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8249 + - uid: 8262 components: - pos: -66.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8250 + - uid: 8263 components: - pos: -65.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8251 + - uid: 8264 components: - pos: -64.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8252 + - uid: 8265 components: - pos: -63.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8253 + - uid: 8266 components: - pos: -62.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8254 + - uid: 8267 components: - pos: -61.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8255 + - uid: 8268 components: - pos: -60.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8256 + - uid: 8269 components: - pos: -59.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8257 + - uid: 8270 components: - pos: -58.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8258 + - uid: 8271 components: - pos: -57.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8259 + - uid: 8272 components: - pos: -56.5,-3.5 parent: 2 type: Transform - - uid: 8260 + - uid: 8273 components: - pos: -56.5,-4.5 parent: 2 type: Transform - - uid: 8261 + - uid: 8274 components: - pos: -56.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8262 + - uid: 8275 components: - pos: -56.5,-5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8263 + - uid: 8276 components: - pos: -76.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8264 + - uid: 8277 components: - pos: -76.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8265 + - uid: 8278 components: - pos: -76.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8266 + - uid: 8279 components: - pos: -53.5,-25.5 parent: 2 type: Transform - - uid: 8267 + - uid: 8280 components: - pos: -51.5,-25.5 parent: 2 type: Transform - - uid: 8268 + - uid: 8281 components: - pos: -71.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8269 + - uid: 8282 components: - pos: -19.5,-42.5 parent: 2 type: Transform - - uid: 8270 + - uid: 8283 components: - pos: -20.5,-42.5 parent: 2 type: Transform - - uid: 8271 + - uid: 8284 components: - pos: -21.5,-42.5 parent: 2 type: Transform - - uid: 8272 + - uid: 8285 components: - pos: -22.5,-42.5 parent: 2 type: Transform - - uid: 8273 + - uid: 8286 components: - pos: -23.5,-42.5 parent: 2 type: Transform - - uid: 8274 + - uid: 8287 components: - pos: -23.5,-43.5 parent: 2 type: Transform - - uid: 8275 + - uid: 8288 components: - pos: -23.5,-44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8276 + - uid: 8289 components: - pos: -23.5,-45.5 parent: 2 type: Transform - - uid: 8277 + - uid: 8290 components: - pos: -23.5,-46.5 parent: 2 type: Transform - - uid: 8278 + - uid: 8291 components: - pos: -23.5,-47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8279 + - uid: 8292 components: - pos: -23.5,-48.5 parent: 2 type: Transform - - uid: 8280 + - uid: 8293 components: - pos: -23.5,-49.5 parent: 2 type: Transform - - uid: 8281 + - uid: 8294 components: - pos: -24.5,-49.5 parent: 2 type: Transform - - uid: 8282 + - uid: 8295 components: - pos: -25.5,-49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8283 + - uid: 8296 components: - pos: -26.5,-49.5 parent: 2 type: Transform - - uid: 8284 + - uid: 8297 components: - pos: -27.5,-49.5 parent: 2 type: Transform - - uid: 8285 + - uid: 8298 components: - pos: -27.5,-48.5 parent: 2 type: Transform - - uid: 8286 + - uid: 8299 components: - pos: -27.5,-47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8287 + - uid: 8300 components: - pos: -27.5,-46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8288 + - uid: 8301 components: - pos: -27.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8289 + - uid: 8302 components: - pos: -27.5,-44.5 parent: 2 type: Transform - - uid: 8290 + - uid: 8303 components: - pos: -28.5,-44.5 parent: 2 type: Transform - - uid: 8291 + - uid: 8304 components: - pos: -29.5,-44.5 parent: 2 type: Transform - - uid: 8292 + - uid: 8305 components: - pos: -30.5,-44.5 parent: 2 type: Transform - - uid: 8293 + - uid: 8306 components: - pos: -31.5,-44.5 parent: 2 type: Transform - - uid: 8294 + - uid: 8307 components: - pos: -31.5,-45.5 parent: 2 type: Transform - - uid: 8295 + - uid: 8308 components: - pos: -31.5,-46.5 parent: 2 type: Transform - - uid: 8296 + - uid: 8309 components: - pos: -31.5,-47.5 parent: 2 type: Transform - - uid: 8297 + - uid: 8310 components: - pos: -30.5,-47.5 parent: 2 type: Transform - - uid: 8298 + - uid: 8311 components: - pos: -30.5,-48.5 parent: 2 type: Transform - - uid: 8299 + - uid: 8312 components: - pos: -30.5,-49.5 parent: 2 type: Transform - - uid: 8300 + - uid: 8313 components: - pos: -30.5,-50.5 parent: 2 type: Transform - - uid: 8301 + - uid: 8314 components: - pos: -30.5,-51.5 parent: 2 type: Transform - - uid: 8302 + - uid: 8315 components: - pos: -30.5,-52.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8303 + - uid: 8316 components: - pos: -30.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8304 + - uid: 8317 components: - pos: -31.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8305 + - uid: 8318 components: - pos: -31.5,-54.5 parent: 2 type: Transform - - uid: 8306 + - uid: 8319 components: - pos: -58.5,-88.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8307 + - uid: 8320 components: - pos: -57.5,-88.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8308 + - uid: 8321 components: - pos: -58.5,-86.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8309 + - uid: 8322 components: - pos: -57.5,-86.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8310 + - uid: 8323 components: - pos: -56.5,-88.5 parent: 2 type: Transform - - uid: 8311 + - uid: 8324 components: - pos: -57.5,-87.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8312 + - uid: 8325 components: - pos: -55.5,-88.5 parent: 2 type: Transform - - uid: 8313 + - uid: 8326 components: - pos: -55.5,-89.5 parent: 2 type: Transform - - uid: 8314 + - uid: 8327 components: - pos: -9.5,28.5 parent: 2 type: Transform - - uid: 8315 + - uid: 8328 components: - pos: 14.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8316 + - uid: 8329 components: - pos: 13.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8317 + - uid: 8330 components: - pos: 2.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8318 + - uid: 8331 components: - pos: 1.5,32.5 parent: 2 type: Transform - - uid: 8319 + - uid: 8332 components: - pos: 0.5,32.5 parent: 2 type: Transform - - uid: 8320 + - uid: 8333 components: - pos: -0.5,32.5 parent: 2 type: Transform - - uid: 8321 + - uid: 8334 components: - pos: -1.5,32.5 parent: 2 type: Transform - - uid: 8322 + - uid: 8335 components: - pos: -2.5,32.5 parent: 2 type: Transform - - uid: 8323 + - uid: 8336 components: - pos: -3.5,32.5 parent: 2 type: Transform - - uid: 8324 + - uid: 8337 components: - pos: -4.5,32.5 parent: 2 type: Transform - - uid: 8325 + - uid: 8338 components: - pos: -5.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8326 + - uid: 8339 components: - pos: -6.5,32.5 parent: 2 type: Transform - - uid: 8327 + - uid: 8340 components: - pos: -7.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8328 + - uid: 8341 components: - pos: -8.5,32.5 parent: 2 type: Transform - - uid: 8329 + - uid: 8342 components: - pos: -8.5,33.5 parent: 2 type: Transform - - uid: 8330 + - uid: 8343 components: - pos: -8.5,34.5 parent: 2 type: Transform - - uid: 8331 + - uid: 8344 components: - pos: -8.5,35.5 parent: 2 type: Transform - - uid: 8332 + - uid: 8345 components: - pos: -14.5,32.5 parent: 2 type: Transform - - uid: 8333 + - uid: 8346 components: - pos: -14.5,30.5 parent: 2 type: Transform - - uid: 8334 + - uid: 8347 components: - pos: -14.5,29.5 parent: 2 type: Transform - - uid: 8335 + - uid: 8348 components: - pos: -16.5,29.5 parent: 2 type: Transform - - uid: 8336 + - uid: 8349 components: - pos: -22.5,17.5 parent: 2 type: Transform - - uid: 8337 + - uid: 8350 components: - pos: -21.5,17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8338 + - uid: 8351 components: - pos: -20.5,17.5 parent: 2 type: Transform - - uid: 8339 + - uid: 8352 components: - pos: -22.5,16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8340 + - uid: 8353 components: - pos: -23.5,16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8341 + - uid: 8354 components: - pos: -23.5,15.5 parent: 2 type: Transform - - uid: 8342 + - uid: 8355 components: - pos: -13.5,3.5 parent: 2 type: Transform - - uid: 8343 + - uid: 8356 components: - pos: -13.5,4.5 parent: 2 type: Transform - - uid: 8344 + - uid: 8357 components: - pos: -13.5,5.5 parent: 2 type: Transform - - uid: 8345 + - uid: 8358 components: - pos: -13.5,6.5 parent: 2 type: Transform - - uid: 8346 + - uid: 8359 components: - pos: -13.5,7.5 parent: 2 type: Transform - - uid: 8347 + - uid: 8360 components: - pos: -14.5,7.5 parent: 2 type: Transform - - uid: 8348 + - uid: 8361 components: - pos: -15.5,7.5 parent: 2 type: Transform - - uid: 8349 + - uid: 8362 components: - pos: -16.5,7.5 parent: 2 type: Transform - - uid: 8350 + - uid: 8363 components: - pos: -17.5,7.5 parent: 2 type: Transform - - uid: 8351 + - uid: 8364 components: - pos: -18.5,7.5 parent: 2 type: Transform - - uid: 8352 + - uid: 8365 components: - pos: -19.5,7.5 parent: 2 type: Transform - - uid: 8353 + - uid: 8366 components: - pos: -20.5,7.5 parent: 2 type: Transform - - uid: 8354 + - uid: 8367 components: - pos: -20.5,8.5 parent: 2 type: Transform - - uid: 8355 + - uid: 8368 components: - pos: -20.5,9.5 parent: 2 type: Transform - - uid: 8356 + - uid: 8369 components: - pos: -20.5,10.5 parent: 2 type: Transform - - uid: 8357 + - uid: 8370 components: - pos: -20.5,11.5 parent: 2 type: Transform - - uid: 8358 + - uid: 8371 components: - pos: -20.5,12.5 parent: 2 type: Transform - - uid: 8359 + - uid: 8372 components: - pos: -20.5,13.5 parent: 2 type: Transform - - uid: 8360 + - uid: 8373 components: - pos: -20.5,14.5 parent: 2 type: Transform - - uid: 8361 + - uid: 8374 components: - pos: -20.5,15.5 parent: 2 type: Transform - - uid: 8362 + - uid: 8375 components: - pos: -20.5,16.5 parent: 2 type: Transform - - uid: 8363 + - uid: 8376 components: - pos: -71.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8364 + - uid: 8377 components: - pos: -72.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8365 + - uid: 8378 components: - pos: -73.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8366 + - uid: 8379 components: - pos: -73.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8367 + - uid: 8380 components: - pos: -73.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8368 + - uid: 8381 components: - pos: -73.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8369 + - uid: 8382 components: - pos: -73.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8370 + - uid: 8383 components: - pos: -73.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8371 + - uid: 8384 components: - pos: -73.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8372 + - uid: 8385 components: - pos: -73.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8373 + - uid: 8386 components: - pos: -73.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8374 + - uid: 8387 components: - pos: -73.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8375 + - uid: 8388 components: - pos: -73.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8376 + - uid: 8389 components: - pos: -73.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8377 + - uid: 8390 components: - pos: -73.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8378 + - uid: 8391 components: - pos: -73.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8379 + - uid: 8392 components: - pos: -73.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8380 + - uid: 8393 components: - pos: -72.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8381 + - uid: 8394 components: - pos: -71.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8382 + - uid: 8395 components: - pos: -70.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8383 + - uid: 8396 components: - pos: -69.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8384 + - uid: 8397 components: - pos: -68.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8385 + - uid: 8398 components: - pos: -67.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8386 + - uid: 8399 components: - pos: -66.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8387 + - uid: 8400 components: - pos: -65.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8388 + - uid: 8401 components: - pos: -64.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8389 + - uid: 8402 components: - pos: -63.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8390 + - uid: 8403 components: - pos: -62.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8391 + - uid: 8404 components: - pos: -61.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8392 + - uid: 8405 components: - pos: -60.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8393 + - uid: 8406 components: - pos: -59.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8394 + - uid: 8407 components: - pos: -59.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8395 + - uid: 8408 components: - pos: -59.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8396 + - uid: 8409 components: - pos: -59.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8397 + - uid: 8410 components: - pos: -59.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8398 + - uid: 8411 components: - pos: -59.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8399 + - uid: 8412 components: - pos: -59.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8400 + - uid: 8413 components: - pos: -59.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8401 + - uid: 8414 components: - pos: -59.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8402 + - uid: 8415 components: - pos: -59.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8403 + - uid: 8416 components: - pos: -59.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8404 + - uid: 8417 components: - pos: -59.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8405 + - uid: 8418 components: - pos: -59.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8406 + - uid: 8419 components: - pos: -59.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8407 + - uid: 8420 components: - pos: -59.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8408 + - uid: 8421 components: - pos: -60.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8409 + - uid: 8422 components: - pos: -61.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8410 + - uid: 8423 components: - pos: -62.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8411 + - uid: 8424 components: - pos: -63.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8412 + - uid: 8425 components: - pos: -64.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8413 + - uid: 8426 components: - pos: -65.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8414 + - uid: 8427 components: - pos: -66.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8415 + - uid: 8428 components: - pos: -67.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8416 + - uid: 8429 components: - pos: -68.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8417 + - uid: 8430 components: - pos: -69.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8418 + - uid: 8431 components: - pos: -70.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8419 + - uid: 8432 components: - pos: -20.5,-5.5 parent: 2 type: Transform - - uid: 8420 + - uid: 8433 components: - pos: -21.5,-5.5 parent: 2 type: Transform - - uid: 8421 + - uid: 8434 components: - pos: -22.5,-5.5 parent: 2 type: Transform - - uid: 8422 + - uid: 8435 components: - pos: -23.5,-5.5 parent: 2 type: Transform - - uid: 8423 + - uid: 8436 components: - pos: -24.5,-5.5 parent: 2 type: Transform - - uid: 8424 + - uid: 8437 components: - pos: -25.5,-5.5 parent: 2 type: Transform - - uid: 8425 + - uid: 8438 components: - pos: -25.5,-4.5 parent: 2 type: Transform - - uid: 8426 + - uid: 8439 components: - pos: -25.5,-3.5 parent: 2 type: Transform - - uid: 8427 + - uid: 8440 components: - pos: -25.5,-2.5 parent: 2 type: Transform - - uid: 8428 + - uid: 8441 components: - pos: -25.5,-1.5 parent: 2 type: Transform - - uid: 8429 + - uid: 8442 components: - pos: -25.5,-0.5 parent: 2 type: Transform - - uid: 8430 + - uid: 8443 components: - pos: -26.5,-0.5 parent: 2 type: Transform - - uid: 8431 + - uid: 8444 components: - pos: -27.5,-0.5 parent: 2 type: Transform - - uid: 8432 + - uid: 8445 components: - pos: -28.5,-0.5 parent: 2 type: Transform - - uid: 8433 + - uid: 8446 components: - pos: -29.5,-0.5 parent: 2 type: Transform - - uid: 8434 + - uid: 8447 components: - pos: -30.5,-0.5 parent: 2 type: Transform - - uid: 8435 + - uid: 8448 components: - pos: -31.5,-0.5 parent: 2 type: Transform - - uid: 8436 + - uid: 8449 components: - pos: -32.5,-0.5 parent: 2 type: Transform - - uid: 8437 + - uid: 8450 components: - pos: -33.5,-0.5 parent: 2 type: Transform - - uid: 8438 + - uid: 8451 components: - pos: -34.5,-0.5 parent: 2 type: Transform - - uid: 8439 + - uid: 8452 components: - pos: -35.5,-0.5 parent: 2 type: Transform - - uid: 8440 + - uid: 8453 components: - pos: -36.5,-0.5 parent: 2 type: Transform - - uid: 8441 + - uid: 8454 components: - pos: -37.5,-0.5 parent: 2 type: Transform - - uid: 8442 + - uid: 8455 components: - pos: -37.5,-1.5 parent: 2 type: Transform - - uid: 8443 + - uid: 8456 components: - pos: -37.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8444 + - uid: 8457 components: - pos: -36.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8445 + - uid: 8458 components: - pos: -35.5,-2.5 parent: 2 type: Transform - - uid: 8446 + - uid: 8459 components: - pos: -34.5,-2.5 parent: 2 type: Transform - - uid: 8447 + - uid: 8460 components: - pos: -34.5,-3.5 parent: 2 type: Transform - - uid: 8448 + - uid: 8461 components: - pos: -20.5,18.5 parent: 2 type: Transform - - uid: 8449 + - uid: 8462 components: - pos: -20.5,19.5 parent: 2 type: Transform - - uid: 8450 + - uid: 8463 components: - pos: -20.5,20.5 parent: 2 type: Transform - - uid: 8451 + - uid: 8464 components: - pos: -20.5,21.5 parent: 2 type: Transform - - uid: 8452 + - uid: 8465 components: - pos: -20.5,22.5 parent: 2 type: Transform - - uid: 8453 + - uid: 8466 components: - pos: -20.5,23.5 parent: 2 type: Transform - - uid: 8454 + - uid: 8467 components: - pos: -20.5,24.5 parent: 2 type: Transform - - uid: 8455 + - uid: 8468 components: - pos: -20.5,25.5 parent: 2 type: Transform - - uid: 8456 + - uid: 8469 components: - pos: 8.5,-104.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8457 + - uid: 8470 components: - pos: 7.5,-104.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8458 + - uid: 8471 components: - pos: 6.5,-104.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8459 + - uid: 8472 components: - pos: 5.5,-104.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8460 + - uid: 8473 components: - pos: 4.5,-104.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8461 + - uid: 8474 components: - pos: 14.5,-104.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8462 + - uid: 8475 components: - pos: 15.5,-104.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8463 + - uid: 8476 components: - pos: 16.5,-104.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8464 + - uid: 8477 components: - pos: 17.5,-104.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8465 + - uid: 8478 components: - pos: 18.5,-104.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8466 + - uid: 8479 components: - pos: 15.5,-101.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8467 + - uid: 8480 components: - pos: 16.5,-101.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8468 + - uid: 8481 components: - pos: 17.5,-101.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8469 + - uid: 8482 components: - pos: 18.5,-101.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8470 + - uid: 8483 components: - pos: 7.5,-101.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8471 + - uid: 8484 components: - pos: 6.5,-101.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8472 + - uid: 8485 components: - pos: 5.5,-101.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8473 + - uid: 8486 components: - pos: 4.5,-101.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8474 + - uid: 8487 components: - pos: 4.5,-98.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8475 + - uid: 8488 components: - pos: 5.5,-98.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8476 + - uid: 8489 components: - pos: 6.5,-98.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8477 + - uid: 8490 components: - pos: 7.5,-98.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8478 + - uid: 8491 components: - pos: 18.5,-98.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8479 + - uid: 8492 components: - pos: 17.5,-98.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8480 + - uid: 8493 components: - pos: 16.5,-98.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8481 + - uid: 8494 components: - pos: 15.5,-98.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8482 + - uid: 8495 components: - pos: -2.5,-57.5 parent: 2 type: Transform - - uid: 8483 + - uid: 8496 components: - pos: -2.5,-56.5 parent: 2 type: Transform - - uid: 8484 + - uid: 8497 components: - pos: -2.5,-55.5 parent: 2 type: Transform - - uid: 8485 + - uid: 8498 components: - pos: -2.5,-54.5 parent: 2 type: Transform - - uid: 8486 + - uid: 8499 components: - pos: -2.5,-53.5 parent: 2 type: Transform - - uid: 8487 + - uid: 8500 components: - pos: -1.5,-53.5 parent: 2 type: Transform - - uid: 8488 + - uid: 8501 components: - pos: -0.5,-53.5 parent: 2 type: Transform - - uid: 8489 + - uid: 8502 components: - pos: -0.5,-52.5 parent: 2 type: Transform - - uid: 8490 + - uid: 8503 components: - pos: -0.5,-51.5 parent: 2 type: Transform - - uid: 8491 + - uid: 8504 components: - pos: -0.5,-50.5 parent: 2 type: Transform - - uid: 8492 + - uid: 8505 components: - pos: -0.5,-49.5 parent: 2 type: Transform - - uid: 8493 + - uid: 8506 components: - pos: -0.5,-48.5 parent: 2 type: Transform - - uid: 8494 + - uid: 8507 components: - pos: -0.5,-47.5 parent: 2 type: Transform - - uid: 8495 + - uid: 8508 components: - pos: -0.5,-46.5 parent: 2 type: Transform - - uid: 8496 + - uid: 8509 components: - pos: -0.5,-45.5 parent: 2 type: Transform - - uid: 8497 + - uid: 8510 components: - pos: -0.5,-44.5 parent: 2 type: Transform - - uid: 8498 + - uid: 8511 components: - pos: -0.5,-43.5 parent: 2 type: Transform - - uid: 8499 + - uid: 8512 components: - pos: -53.5,-18.5 parent: 2 type: Transform - - uid: 8500 + - uid: 8513 components: - pos: -53.5,-17.5 parent: 2 type: Transform - - uid: 8501 + - uid: 8514 components: - pos: -53.5,-16.5 parent: 2 type: Transform - - uid: 8502 + - uid: 8515 components: - pos: -53.5,-15.5 parent: 2 type: Transform - - uid: 8503 + - uid: 8516 components: - pos: -53.5,-14.5 parent: 2 type: Transform - - uid: 8504 + - uid: 8517 components: - pos: -53.5,-13.5 parent: 2 type: Transform - - uid: 8505 + - uid: 8518 components: - pos: -54.5,-13.5 parent: 2 type: Transform - - uid: 8506 + - uid: 8519 components: - pos: -55.5,-13.5 parent: 2 type: Transform - - uid: 8507 + - uid: 8520 components: - pos: -55.5,-25.5 parent: 2 type: Transform - - uid: 8508 + - uid: 8521 components: - pos: -56.5,-25.5 parent: 2 type: Transform - - uid: 8509 + - uid: 8522 components: - pos: -57.5,-25.5 parent: 2 type: Transform - - uid: 8510 + - uid: 8523 components: - pos: -60.5,-27.5 parent: 2 type: Transform - - uid: 8511 + - uid: 8524 components: - pos: -54.5,-25.5 parent: 2 type: Transform - - uid: 8512 + - uid: 8525 components: - pos: -52.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8513 + - uid: 8526 components: - pos: -0.5,-79.5 parent: 2 type: Transform - - uid: 8514 + - uid: 8527 components: - pos: -14.5,38.5 parent: 2 type: Transform - - uid: 8515 + - uid: 8528 components: - pos: -14.5,43.5 parent: 2 type: Transform - - uid: 8516 + - uid: 8529 components: - pos: -14.5,41.5 parent: 2 type: Transform - - uid: 8517 + - uid: 8530 components: - pos: -17.5,29.5 parent: 2 type: Transform - - uid: 8518 + - uid: 8531 components: - pos: -14.5,37.5 parent: 2 type: Transform - - uid: 8519 + - uid: 8532 components: - pos: -15.5,29.5 parent: 2 type: Transform - - uid: 8520 + - uid: 8533 components: - pos: -0.5,-78.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8521 + - uid: 8534 components: - pos: -0.5,-77.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8522 + - uid: 8535 components: - pos: 12.5,-104.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8523 + - uid: 8536 components: - pos: 10.5,-104.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8524 + - uid: 8537 components: - pos: -74.5,-38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8525 + - uid: 8538 components: - pos: -75.5,-38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8526 + - uid: 8539 components: - pos: -79.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8527 + - uid: 8540 components: - pos: 5.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8528 + - uid: 8541 components: - pos: 8.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8529 + - uid: 8542 components: - pos: 33.5,22.5 parent: 2 type: Transform - - uid: 8530 + - uid: 8543 components: - pos: 34.5,22.5 parent: 2 type: Transform - - uid: 8531 + - uid: 8544 components: - pos: 35.5,22.5 parent: 2 type: Transform - - uid: 8532 + - uid: 8545 components: - pos: 36.5,22.5 parent: 2 type: Transform - - uid: 8533 + - uid: 8546 components: - pos: 36.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8534 + - uid: 8547 components: - pos: 37.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8535 + - uid: 8548 components: - pos: 38.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8536 + - uid: 8549 components: - pos: 39.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8537 + - uid: 8550 components: - pos: 40.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8538 + - uid: 8551 components: - pos: 41.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8539 + - uid: 8552 components: - pos: 42.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8540 + - uid: 8553 components: - pos: 43.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8541 + - uid: 8554 components: - pos: 44.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8542 + - uid: 8555 components: - pos: 44.5,24.5 parent: 2 type: Transform - - uid: 8543 + - uid: 8556 components: - pos: 44.5,25.5 parent: 2 type: Transform - - uid: 8544 + - uid: 8557 components: - pos: 44.5,26.5 parent: 2 type: Transform - - uid: 8545 + - uid: 8558 components: - pos: 45.5,26.5 parent: 2 type: Transform - - uid: 8546 + - uid: 8559 components: - pos: 46.5,26.5 parent: 2 type: Transform - - uid: 8547 + - uid: 8560 components: - pos: 47.5,26.5 parent: 2 type: Transform - - uid: 8548 + - uid: 8561 components: - pos: 48.5,26.5 parent: 2 type: Transform - - uid: 8549 + - uid: 8562 components: - pos: 48.5,27.5 parent: 2 type: Transform - - uid: 8550 + - uid: 8563 components: - pos: 48.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8551 + - uid: 8564 components: - pos: 49.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8552 + - uid: 8565 components: - pos: 50.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8553 + - uid: 8566 components: - pos: 50.5,29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8554 + - uid: 8567 components: - pos: 91.5,36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8555 + - uid: 8568 components: - pos: 77.5,36.5 parent: 2 type: Transform - - uid: 8556 + - uid: 8569 components: - pos: 76.5,36.5 parent: 2 type: Transform - - uid: 8557 + - uid: 8570 components: - pos: 75.5,36.5 parent: 2 type: Transform - - uid: 8558 + - uid: 8571 components: - pos: 74.5,36.5 parent: 2 type: Transform - - uid: 8559 + - uid: 8572 components: - pos: 78.5,44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8560 + - uid: 8573 components: - pos: 78.5,43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8561 + - uid: 8574 components: - pos: 78.5,42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8562 + - uid: 8575 components: - pos: 78.5,41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8563 + - uid: 8576 components: - pos: 78.5,40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8564 + - uid: 8577 components: - pos: 78.5,39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8565 + - uid: 8578 components: - pos: 78.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8566 + - uid: 8579 components: - pos: 78.5,37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8567 + - uid: 8580 components: - pos: 78.5,35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8568 + - uid: 8581 components: - pos: 78.5,34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8569 + - uid: 8582 components: - pos: 78.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8570 + - uid: 8583 components: - pos: 78.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8571 + - uid: 8584 components: - pos: 78.5,31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8572 + - uid: 8585 components: - pos: 78.5,30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8573 + - uid: 8586 components: - pos: 78.5,29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8574 + - uid: 8587 components: - pos: 78.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8575 + - uid: 8588 components: - pos: 81.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8576 + - uid: 8589 components: - pos: 81.5,29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8577 + - uid: 8590 components: - pos: 81.5,30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8578 + - uid: 8591 components: - pos: 81.5,31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8579 + - uid: 8592 components: - pos: 81.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8580 + - uid: 8593 components: - pos: 81.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8581 + - uid: 8594 components: - pos: 81.5,34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8582 + - uid: 8595 components: - pos: 81.5,35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8583 + - uid: 8596 components: - pos: 81.5,37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8584 + - uid: 8597 components: - pos: 81.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8585 + - uid: 8598 components: - pos: 81.5,39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8586 + - uid: 8599 components: - pos: 81.5,40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8587 + - uid: 8600 components: - pos: 81.5,41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8588 + - uid: 8601 components: - pos: 81.5,42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8589 + - uid: 8602 components: - pos: 81.5,43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8590 + - uid: 8603 components: - pos: 81.5,44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8591 + - uid: 8604 components: - pos: 84.5,44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8592 + - uid: 8605 components: - pos: 84.5,43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8593 + - uid: 8606 components: - pos: 84.5,42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8594 + - uid: 8607 components: - pos: 84.5,41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8595 + - uid: 8608 components: - pos: 84.5,40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8596 + - uid: 8609 components: - pos: 84.5,39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8597 + - uid: 8610 components: - pos: 84.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8598 + - uid: 8611 components: - pos: 84.5,37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8599 + - uid: 8612 components: - pos: 84.5,35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8600 + - uid: 8613 components: - pos: 84.5,34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8601 + - uid: 8614 components: - pos: 84.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8602 + - uid: 8615 components: - pos: 84.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8603 + - uid: 8616 components: - pos: 84.5,31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8604 + - uid: 8617 components: - pos: 84.5,30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8605 + - uid: 8618 components: - pos: 84.5,29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8606 + - uid: 8619 components: - pos: 84.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8607 + - uid: 8620 components: - pos: 87.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8608 + - uid: 8621 components: - pos: 87.5,29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8609 + - uid: 8622 components: - pos: 87.5,30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8610 + - uid: 8623 components: - pos: 87.5,31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8611 + - uid: 8624 components: - pos: 87.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8612 + - uid: 8625 components: - pos: 87.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8613 + - uid: 8626 components: - pos: 87.5,34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8614 + - uid: 8627 components: - pos: 87.5,35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8615 + - uid: 8628 components: - pos: 87.5,37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8616 + - uid: 8629 components: - pos: 87.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8617 + - uid: 8630 components: - pos: 87.5,39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8618 + - uid: 8631 components: - pos: 87.5,40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8619 + - uid: 8632 components: - pos: 87.5,41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8620 + - uid: 8633 components: - pos: 87.5,42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8621 + - uid: 8634 components: - pos: 87.5,43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8622 + - uid: 8635 components: - pos: 87.5,44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8623 + - uid: 8636 components: - pos: 90.5,44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8624 + - uid: 8637 components: - pos: 90.5,43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8625 + - uid: 8638 components: - pos: 90.5,42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8626 + - uid: 8639 components: - pos: 90.5,41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8627 + - uid: 8640 components: - pos: 90.5,40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8628 + - uid: 8641 components: - pos: 90.5,39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8629 + - uid: 8642 components: - pos: 90.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8630 + - uid: 8643 components: - pos: 90.5,37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8631 + - uid: 8644 components: - pos: 90.5,35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8632 + - uid: 8645 components: - pos: 90.5,34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8633 + - uid: 8646 components: - pos: 90.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8634 + - uid: 8647 components: - pos: 90.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8635 + - uid: 8648 components: - pos: 90.5,31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8636 + - uid: 8649 components: - pos: 90.5,30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8637 + - uid: 8650 components: - pos: 90.5,29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8638 + - uid: 8651 components: - pos: 90.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8639 + - uid: 8652 components: - pos: 74.5,37.5 parent: 2 type: Transform - - uid: 8640 + - uid: 8653 components: - pos: 74.5,38.5 parent: 2 type: Transform - - uid: 8641 + - uid: 8654 components: - pos: 73.5,38.5 parent: 2 type: Transform - - uid: 8642 + - uid: 8655 components: - pos: 72.5,38.5 parent: 2 type: Transform - - uid: 8643 + - uid: 8656 components: - pos: 74.5,35.5 parent: 2 type: Transform - - uid: 8644 + - uid: 8657 components: - pos: 74.5,34.5 parent: 2 type: Transform - - uid: 8645 + - uid: 8658 components: - pos: 73.5,34.5 parent: 2 type: Transform - - uid: 8646 + - uid: 8659 components: - pos: 72.5,34.5 parent: 2 type: Transform - - uid: 8647 + - uid: 8660 components: - pos: 71.5,34.5 parent: 2 type: Transform - - uid: 8648 + - uid: 8661 components: - pos: 70.5,34.5 parent: 2 type: Transform - - uid: 8649 + - uid: 8662 components: - pos: 70.5,35.5 parent: 2 type: Transform - - uid: 8650 + - uid: 8663 components: - pos: 70.5,36.5 parent: 2 type: Transform - - uid: 8651 + - uid: 8664 components: - pos: 69.5,36.5 parent: 2 type: Transform - - uid: 8652 + - uid: 8665 components: - pos: 71.5,38.5 parent: 2 type: Transform - - uid: 8653 + - uid: 8666 components: - pos: 70.5,38.5 parent: 2 type: Transform - - uid: 8654 + - uid: 8667 components: - pos: 70.5,37.5 parent: 2 type: Transform - - uid: 8655 + - uid: 8668 components: - pos: 68.5,36.5 parent: 2 type: Transform - - uid: 8656 + - uid: 8669 components: - pos: 67.5,36.5 parent: 2 type: Transform - - uid: 8657 + - uid: 8670 components: - pos: 66.5,36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8658 + - uid: 8671 components: - pos: 65.5,36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8659 + - uid: 8672 components: - pos: 64.5,36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8660 + - uid: 8673 components: - pos: 63.5,36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8661 + - uid: 8674 components: - pos: 63.5,35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8662 + - uid: 8675 components: - pos: 63.5,34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8663 + - uid: 8676 components: - pos: 63.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8664 + - uid: 8677 components: - pos: 63.5,32.5 parent: 2 type: Transform - - uid: 8665 + - uid: 8678 components: - pos: 63.5,31.5 parent: 2 type: Transform - - uid: 8666 + - uid: 8679 components: - pos: 63.5,30.5 parent: 2 type: Transform - - uid: 8667 + - uid: 8680 components: - pos: 63.5,29.5 parent: 2 type: Transform - - uid: 8668 + - uid: 8681 components: - pos: 63.5,28.5 parent: 2 type: Transform - - uid: 8669 + - uid: 8682 components: - pos: 63.5,27.5 parent: 2 type: Transform - - uid: 8670 + - uid: 8683 components: - pos: 63.5,26.5 parent: 2 type: Transform - - uid: 8671 + - uid: 8684 components: - pos: 62.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8672 + - uid: 8685 components: - pos: 61.5,26.5 parent: 2 type: Transform - - uid: 8673 + - uid: 8686 components: - pos: 60.5,26.5 parent: 2 type: Transform - - uid: 8674 + - uid: 8687 components: - pos: 59.5,26.5 parent: 2 type: Transform - - uid: 8675 + - uid: 8688 components: - pos: 58.5,26.5 parent: 2 type: Transform - - uid: 8676 + - uid: 8689 components: - pos: 57.5,26.5 parent: 2 type: Transform - - uid: 8677 + - uid: 8690 components: - pos: 56.5,26.5 parent: 2 type: Transform - - uid: 8678 + - uid: 8691 components: - pos: 55.5,26.5 parent: 2 type: Transform - - uid: 8679 + - uid: 8692 components: - pos: 54.5,26.5 parent: 2 type: Transform - - uid: 8680 + - uid: 8693 components: - pos: 53.5,26.5 parent: 2 type: Transform - - uid: 8681 + - uid: 8694 components: - pos: 52.5,26.5 parent: 2 type: Transform - - uid: 8682 + - uid: 8695 components: - pos: 51.5,26.5 parent: 2 type: Transform - - uid: 8683 + - uid: 8696 components: - pos: 50.5,26.5 parent: 2 type: Transform - - uid: 8684 + - uid: 8697 components: - pos: 49.5,26.5 parent: 2 type: Transform - - uid: 8685 + - uid: 8698 components: - pos: -11.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8686 + - uid: 8699 components: - pos: -12.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8687 + - uid: 8700 components: - pos: -13.5,26.5 parent: 2 type: Transform - - uid: 8688 + - uid: 8701 components: - pos: -14.5,26.5 parent: 2 type: Transform - - uid: 8689 + - uid: 8702 components: - pos: -15.5,26.5 parent: 2 type: Transform - - uid: 8690 + - uid: 8703 components: - pos: -15.5,27.5 parent: 2 type: Transform - - uid: 8691 + - uid: 8704 components: - pos: -15.5,28.5 parent: 2 type: Transform - - uid: 8692 + - uid: 8705 components: - pos: -1.5,69.5 parent: 2 type: Transform - - uid: 8693 + - uid: 8706 components: - pos: -1.5,68.5 parent: 2 type: Transform - - uid: 8694 + - uid: 8707 components: - pos: -1.5,67.5 parent: 2 type: Transform - - uid: 8695 + - uid: 8708 components: - pos: -1.5,66.5 parent: 2 type: Transform - - uid: 8696 + - uid: 8709 components: - pos: -1.5,65.5 parent: 2 type: Transform - - uid: 8697 + - uid: 8710 components: - pos: -1.5,64.5 parent: 2 type: Transform - - uid: 8698 + - uid: 8711 components: - pos: -1.5,63.5 parent: 2 type: Transform - - uid: 8699 + - uid: 8712 components: - pos: -1.5,62.5 parent: 2 type: Transform - - uid: 8700 + - uid: 8713 components: - pos: -1.5,61.5 parent: 2 type: Transform - - uid: 8701 + - uid: 8714 components: - pos: -1.5,60.5 parent: 2 type: Transform - - uid: 8702 + - uid: 8715 components: - pos: -1.5,59.5 parent: 2 type: Transform - - uid: 8703 + - uid: 8716 components: - pos: -1.5,58.5 parent: 2 type: Transform - - uid: 8704 + - uid: 8717 components: - pos: -2.5,58.5 parent: 2 type: Transform - - uid: 8705 + - uid: 8718 components: - pos: -3.5,58.5 parent: 2 type: Transform - - uid: 8706 + - uid: 8719 components: - pos: -4.5,58.5 parent: 2 type: Transform - - uid: 8707 + - uid: 8720 components: - pos: -5.5,58.5 parent: 2 type: Transform - - uid: 8708 + - uid: 8721 components: - pos: -6.5,58.5 parent: 2 type: Transform - - uid: 8709 + - uid: 8722 components: - pos: -7.5,58.5 parent: 2 type: Transform - - uid: 8710 + - uid: 8723 components: - pos: -8.5,58.5 parent: 2 type: Transform - - uid: 8711 + - uid: 8724 components: - pos: -9.5,58.5 parent: 2 type: Transform - - uid: 8712 + - uid: 8725 components: - pos: -10.5,58.5 parent: 2 type: Transform - - uid: 8713 + - uid: 8726 components: - pos: -10.5,59.5 parent: 2 type: Transform - - uid: 8714 + - uid: 8727 components: - pos: -10.5,60.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8715 + - uid: 8728 components: - pos: -10.5,61.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8716 + - uid: 8729 components: - pos: -10.5,62.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8717 + - uid: 8730 components: - pos: -71.5,-23.5 parent: 2 type: Transform - - uid: 8718 + - uid: 8731 components: - pos: -71.5,-24.5 parent: 2 type: Transform - - uid: 8719 + - uid: 8732 components: - pos: -71.5,-25.5 parent: 2 type: Transform - - uid: 8720 + - uid: 8733 components: - pos: -72.5,-25.5 parent: 2 type: Transform - - uid: 8721 + - uid: 8734 components: - pos: -72.5,-26.5 parent: 2 type: Transform - - uid: 8722 + - uid: 8735 components: - pos: -72.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8723 + - uid: 8736 components: - pos: -72.5,-28.5 parent: 2 type: Transform - - uid: 8724 + - uid: 8737 components: - pos: -71.5,-28.5 parent: 2 type: Transform - - uid: 8725 + - uid: 8738 components: - pos: -70.5,-28.5 parent: 2 type: Transform - - uid: 8726 + - uid: 8739 components: - pos: -70.5,-29.5 parent: 2 type: Transform - - uid: 8727 + - uid: 8740 components: - pos: -72.5,-29.5 parent: 2 type: Transform - - uid: 8728 + - uid: 8741 components: - pos: -73.5,-28.5 parent: 2 type: Transform - - uid: 8729 + - uid: 8742 components: - pos: -74.5,-28.5 parent: 2 type: Transform - - uid: 8730 + - uid: 8743 components: - pos: -74.5,-29.5 parent: 2 type: Transform - - uid: 8731 + - uid: 8744 components: - pos: -74.5,-30.5 parent: 2 type: Transform - - uid: 8732 + - uid: 8745 components: - pos: -72.5,-30.5 parent: 2 type: Transform - - uid: 8733 + - uid: 8746 components: - pos: -70.5,-30.5 parent: 2 type: Transform - - uid: 8734 + - uid: 8747 components: - pos: -70.5,-31.5 parent: 2 type: Transform - - uid: 8735 + - uid: 8748 components: - pos: -72.5,-38.5 parent: 2 type: Transform - - uid: 8736 + - uid: 8749 components: - pos: -72.5,-32.5 parent: 2 type: Transform - - uid: 8737 + - uid: 8750 components: - pos: -74.5,-31.5 parent: 2 type: Transform - - uid: 8738 + - uid: 8751 components: - pos: -74.5,-32.5 parent: 2 type: Transform - - uid: 8739 + - uid: 8752 components: - pos: -72.5,-31.5 parent: 2 type: Transform - - uid: 8740 + - uid: 8753 components: - pos: -72.5,-33.5 parent: 2 type: Transform - - uid: 8741 + - uid: 8754 components: - pos: -69.5,-34.5 parent: 2 type: Transform - - uid: 8742 + - uid: 8755 components: - pos: -69.5,-35.5 parent: 2 type: Transform - - uid: 8743 + - uid: 8756 components: - pos: -76.5,-38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8744 + - uid: 8757 components: - pos: -73.5,-38.5 parent: 2 type: Transform - - uid: 8745 + - uid: 8758 components: - pos: -79.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8746 + - uid: 8759 components: - pos: 68.5,-46.5 parent: 2 type: Transform - - uid: 8747 + - uid: 8760 components: - pos: 67.5,-46.5 parent: 2 type: Transform - - uid: 8748 + - uid: 8761 components: - pos: 66.5,-46.5 parent: 2 type: Transform - - uid: 8749 + - uid: 8762 components: - pos: 65.5,-46.5 parent: 2 type: Transform - - uid: 8750 + - uid: 8763 components: - pos: 64.5,-46.5 parent: 2 type: Transform - - uid: 8751 + - uid: 8764 components: - pos: 64.5,-45.5 parent: 2 type: Transform - - uid: 8752 + - uid: 8765 components: - pos: 64.5,-44.5 parent: 2 type: Transform - - uid: 8753 + - uid: 8766 components: - pos: 63.5,-44.5 parent: 2 type: Transform - - uid: 8754 + - uid: 8767 components: - pos: 62.5,-44.5 parent: 2 type: Transform - - uid: 8755 + - uid: 8768 components: - pos: 61.5,-44.5 parent: 2 type: Transform - - uid: 8756 + - uid: 8769 components: - pos: 60.5,-44.5 parent: 2 type: Transform - - uid: 8757 + - uid: 8770 components: - pos: 59.5,-44.5 parent: 2 type: Transform - - uid: 8758 + - uid: 8771 components: - pos: 58.5,-44.5 parent: 2 type: Transform - - uid: 8759 + - uid: 8772 components: - pos: 57.5,-44.5 parent: 2 type: Transform - - uid: 8760 + - uid: 8773 components: - pos: 56.5,-44.5 parent: 2 type: Transform - - uid: 8761 + - uid: 8774 components: - pos: 55.5,-44.5 parent: 2 type: Transform - - uid: 8762 + - uid: 8775 components: - pos: 54.5,-44.5 parent: 2 type: Transform - - uid: 8763 + - uid: 8776 components: - pos: 53.5,-44.5 parent: 2 type: Transform - - uid: 8764 + - uid: 8777 components: - pos: 52.5,-44.5 parent: 2 type: Transform - - uid: 8765 + - uid: 8778 components: - pos: 51.5,-44.5 parent: 2 type: Transform - - uid: 8766 + - uid: 8779 components: - pos: 50.5,-44.5 parent: 2 type: Transform - - uid: 8767 + - uid: 8780 components: - pos: 69.5,-46.5 parent: 2 type: Transform - - uid: 8768 + - uid: 8781 components: - pos: 72.5,-46.5 parent: 2 type: Transform - - uid: 8769 + - uid: 8782 components: - pos: 73.5,-46.5 parent: 2 type: Transform - - uid: 8770 + - uid: 8783 components: - pos: 74.5,-46.5 parent: 2 type: Transform - - uid: 8771 + - uid: 8784 components: - pos: 75.5,-46.5 parent: 2 type: Transform - - uid: 8772 + - uid: 8785 components: - pos: 75.5,-47.5 parent: 2 type: Transform - - uid: 8773 + - uid: 8786 components: - pos: 75.5,-48.5 parent: 2 type: Transform - - uid: 8774 + - uid: 8787 components: - pos: 75.5,-49.5 parent: 2 type: Transform - - uid: 8775 + - uid: 8788 components: - pos: 75.5,-50.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8776 + - uid: 8789 components: - pos: 75.5,-51.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8777 + - uid: 8790 components: - pos: 75.5,-52.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8778 + - uid: 8791 components: - pos: 75.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8779 + - uid: 8792 components: - pos: 75.5,-54.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8780 + - uid: 8793 components: - pos: 75.5,-55.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8781 + - uid: 8794 components: - pos: 75.5,-56.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8782 + - uid: 8795 components: - pos: 74.5,-56.5 parent: 2 type: Transform - - uid: 8783 + - uid: 8796 components: - pos: 74.5,-57.5 parent: 2 type: Transform - - uid: 8784 + - uid: 8797 components: - pos: 73.5,-57.5 parent: 2 type: Transform - - uid: 8785 + - uid: 8798 components: - pos: 72.5,-57.5 parent: 2 type: Transform - - uid: 8786 + - uid: 8799 components: - pos: 71.5,-57.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8787 + - uid: 8800 components: - pos: 71.5,-58.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8788 + - uid: 8801 components: - pos: 71.5,-59.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8789 + - uid: 8802 components: - pos: 71.5,-60.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8790 + - uid: 8803 components: - pos: 71.5,-61.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8791 + - uid: 8804 components: - pos: 70.5,-61.5 parent: 2 type: Transform - - uid: 8792 + - uid: 8805 components: - pos: 69.5,-61.5 parent: 2 type: Transform - - uid: 8793 + - uid: 8806 components: - pos: 68.5,-61.5 parent: 2 type: Transform - - uid: 8794 + - uid: 8807 components: - pos: 68.5,-60.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8795 + - uid: 8808 components: - pos: 68.5,-59.5 parent: 2 type: Transform - - uid: 8796 + - uid: 8809 components: - pos: 69.5,-59.5 parent: 2 type: Transform - - uid: 8797 + - uid: 8810 components: - pos: 12.5,-92.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8798 + - uid: 8811 components: - pos: 12.5,-91.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8799 + - uid: 8812 components: - pos: 12.5,-90.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8800 + - uid: 8813 components: - pos: 12.5,-89.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8801 + - uid: 8814 components: - pos: 11.5,-89.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8802 + - uid: 8815 components: - pos: 10.5,-89.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8803 + - uid: 8816 components: - pos: 9.5,-89.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8804 + - uid: 8817 components: - pos: 8.5,-89.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8805 + - uid: 8818 components: - pos: 7.5,-89.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8806 + - uid: 8819 components: - pos: 6.5,-89.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8807 + - uid: 8820 components: - pos: 5.5,-89.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8808 + - uid: 8821 components: - pos: 4.5,-89.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8809 + - uid: 8822 components: - pos: 3.5,-89.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8810 + - uid: 8823 components: - pos: 16.5,-24.5 parent: 2 type: Transform - - uid: 8811 + - uid: 8824 components: - pos: 17.5,-24.5 parent: 2 type: Transform - - uid: 8812 + - uid: 8825 components: - pos: 18.5,-24.5 parent: 2 type: Transform - - uid: 8813 + - uid: 8826 components: - pos: 19.5,-24.5 parent: 2 type: Transform - - uid: 8814 + - uid: 8827 components: - pos: 20.5,-24.5 parent: 2 type: Transform - - uid: 8815 + - uid: 8828 components: - pos: 21.5,-24.5 parent: 2 type: Transform - - uid: 8816 + - uid: 8829 components: - pos: 21.5,-23.5 parent: 2 type: Transform - - uid: 8817 + - uid: 8830 components: - pos: 21.5,-22.5 parent: 2 type: Transform - - uid: 8818 + - uid: 8831 components: - pos: 21.5,-21.5 parent: 2 type: Transform - - uid: 8819 + - uid: 8832 components: - pos: -30.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8820 + - uid: 8833 components: - pos: -29.5,-13.5 parent: 2 type: Transform - - uid: 8821 + - uid: 8834 components: - pos: -28.5,-13.5 parent: 2 type: Transform - - uid: 8822 + - uid: 8835 components: - pos: -27.5,-13.5 parent: 2 type: Transform - - uid: 8823 + - uid: 8836 components: - pos: 4.5,-21.5 parent: 2 type: Transform - - uid: 8824 + - uid: 8837 components: - pos: 4.5,-22.5 parent: 2 type: Transform - - uid: 8825 + - uid: 8838 components: - pos: 4.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8826 + - uid: 8839 components: - pos: 4.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8827 + - uid: 8840 components: - pos: 10.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8828 + - uid: 8841 components: - pos: 11.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8829 + - uid: 8842 components: - pos: 12.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8830 + - uid: 8843 components: - pos: 12.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8831 + - uid: 8844 components: - pos: 12.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8832 + - uid: 8845 components: - pos: 11.5,-16.5 parent: 2 type: Transform - - uid: 8833 + - uid: 8846 components: - pos: 10.5,-16.5 parent: 2 type: Transform - - uid: 8834 + - uid: 8847 components: - pos: 9.5,-16.5 parent: 2 type: Transform - - uid: 8835 + - uid: 8848 components: - pos: -76.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8836 + - uid: 8849 components: - pos: 4.5,-23.5 parent: 2 type: Transform - - uid: 8837 + - uid: 8850 components: - pos: 31.5,-16.5 parent: 2 type: Transform - - uid: 8838 + - uid: 8851 components: - pos: 31.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8839 + - uid: 8852 components: - pos: 33.5,-16.5 parent: 2 type: Transform - - uid: 8840 + - uid: 8853 components: - pos: 33.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8841 + - uid: 8854 components: - pos: -65.5,-51.5 parent: 2 type: Transform - - uid: 8842 + - uid: 8855 components: - pos: -65.5,-52.5 parent: 2 type: Transform - - uid: 8843 + - uid: 8856 components: - pos: -65.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8844 + - uid: 8857 components: - pos: -65.5,-54.5 parent: 2 type: Transform - - uid: 8845 + - uid: 8858 components: - pos: -71.5,-35.5 parent: 2 type: Transform - - uid: 8846 + - uid: 8859 components: - pos: -69.5,-44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8847 + - uid: 8860 components: - pos: -69.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8848 + - uid: 8861 components: - pos: -69.5,-42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8849 + - uid: 8862 components: - pos: -69.5,-41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8850 + - uid: 8863 components: - pos: -69.5,-40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8851 + - uid: 8864 components: - pos: -70.5,-40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8852 + - uid: 8865 components: - pos: -71.5,-40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8853 + - uid: 8866 components: - pos: -71.5,-39.5 parent: 2 type: Transform - - uid: 8854 + - uid: 8867 components: - pos: -71.5,-38.5 parent: 2 type: Transform - - uid: 8855 + - uid: 8868 components: - pos: -78.5,-38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8856 + - uid: 8869 components: - pos: -77.5,-38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8857 + - uid: 8870 components: - pos: -69.5,-31.5 parent: 2 type: Transform - - uid: 8858 + - uid: 8871 components: - pos: -72.5,-34.5 parent: 2 type: Transform - - uid: 8859 + - uid: 8872 components: - pos: -72.5,-35.5 parent: 2 type: Transform - - uid: 8860 + - uid: 8873 components: - pos: -79.5,-36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8861 + - uid: 8874 components: - pos: -79.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8862 + - uid: 8875 components: - pos: -79.5,-33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8863 + - uid: 8876 components: - pos: -79.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8864 + - uid: 8877 components: - pos: -79.5,-31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8865 + - uid: 8878 components: - pos: -79.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8866 + - uid: 8879 components: - pos: -79.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8867 + - uid: 8880 components: - pos: -79.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8868 + - uid: 8881 components: - pos: -78.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8869 + - uid: 8882 components: - pos: -77.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8870 + - uid: 8883 components: - pos: -76.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8871 + - uid: 8884 components: - pos: -75.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8872 + - uid: 8885 components: - pos: -73.5,-31.5 parent: 2 type: Transform - - uid: 8873 + - uid: 8886 components: - pos: -71.5,-31.5 parent: 2 type: Transform - - uid: 8874 + - uid: 8887 components: - pos: -67.5,-31.5 parent: 2 type: Transform - - uid: 8875 + - uid: 8888 components: - pos: -66.5,-31.5 parent: 2 type: Transform - - uid: 8876 + - uid: 8889 components: - pos: 18.5,-28.5 parent: 2 type: Transform - - uid: 8877 + - uid: 8890 components: - pos: 18.5,-27.5 parent: 2 type: Transform + - uid: 8891 + components: + - pos: 5.5,-23.5 + parent: 2 + type: Transform + - uid: 8892 + components: + - pos: 7.5,-23.5 + parent: 2 + type: Transform + - uid: 8893 + components: + - pos: 6.5,-23.5 + parent: 2 + type: Transform + - uid: 8894 + components: + - pos: 8.5,-23.5 + parent: 2 + type: Transform + - uid: 8895 + components: + - pos: 9.5,-23.5 + parent: 2 + type: Transform + - uid: 8896 + components: + - pos: 10.5,-23.5 + parent: 2 + type: Transform + - uid: 8897 + components: + - pos: 11.5,-23.5 + parent: 2 + type: Transform + - uid: 8898 + components: + - pos: 12.5,-23.5 + parent: 2 + type: Transform + - uid: 8899 + components: + - pos: 12.5,-22.5 + parent: 2 + type: Transform + - uid: 8900 + components: + - pos: 12.5,-21.5 + parent: 2 + type: Transform + - uid: 8901 + components: + - pos: 13.5,-21.5 + parent: 2 + type: Transform + - uid: 8902 + components: + - pos: 14.5,-21.5 + parent: 2 + type: Transform + - uid: 8903 + components: + - pos: -71.5,-35.5 + parent: 2 + type: Transform - proto: CableHVStack entities: - - uid: 8878 + - uid: 8904 components: - pos: -39.402794,-17.87967 parent: 2 type: Transform - - uid: 8879 + - uid: 8905 components: - pos: 71.74222,36.65267 parent: 2 type: Transform - - uid: 8880 + - uid: 8906 components: - pos: -0.5088408,-77.44958 parent: 2 type: Transform - proto: CableMV entities: - - uid: 8881 + - uid: 8907 components: - pos: -57.5,-21.5 parent: 2 type: Transform - - uid: 8882 + - uid: 8908 components: - pos: 22.5,-39.5 parent: 2 type: Transform - - uid: 8883 + - uid: 8909 components: - pos: 18.5,-31.5 parent: 2 type: Transform - - uid: 8884 + - uid: 8910 components: - pos: 1.5,-5.5 parent: 2 type: Transform - - uid: 8885 + - uid: 8911 components: - pos: 18.5,-27.5 parent: 2 type: Transform - - uid: 8886 + - uid: 8912 components: - pos: 18.5,-29.5 parent: 2 type: Transform - - uid: 8887 + - uid: 8913 components: - pos: 18.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8888 + - uid: 8914 components: - pos: 3.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8889 + - uid: 8915 components: - pos: 20.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8890 + - uid: 8916 components: - pos: 9.5,-4.5 parent: 2 type: Transform - - uid: 8891 + - uid: 8917 components: - pos: 10.5,-2.5 parent: 2 type: Transform - - uid: 8892 + - uid: 8918 components: - pos: 18.5,-32.5 parent: 2 type: Transform - - uid: 8893 + - uid: 8919 components: - pos: 19.5,-32.5 parent: 2 type: Transform - - uid: 8894 + - uid: 8920 components: - pos: 10.5,-1.5 parent: 2 type: Transform - - uid: 8895 + - uid: 8921 components: - pos: 8.5,-1.5 parent: 2 type: Transform - - uid: 8896 + - uid: 8922 components: - pos: 22.5,-36.5 parent: 2 type: Transform - - uid: 8897 + - uid: 8923 components: - pos: 22.5,-32.5 parent: 2 type: Transform - - uid: 8898 + - uid: 8924 components: - pos: 22.5,-34.5 parent: 2 type: Transform - - uid: 8899 + - uid: 8925 components: - pos: 9.5,-1.5 parent: 2 type: Transform - - uid: 8900 + - uid: 8926 components: - pos: 22.5,-37.5 parent: 2 type: Transform - - uid: 8901 + - uid: 8927 components: - pos: 22.5,-33.5 parent: 2 type: Transform - - uid: 8902 + - uid: 8928 components: - pos: 22.5,-35.5 parent: 2 type: Transform - - uid: 8903 + - uid: 8929 components: - pos: 21.5,-32.5 parent: 2 type: Transform - - uid: 8904 + - uid: 8930 components: - pos: 7.5,-1.5 parent: 2 type: Transform - - uid: 8905 + - uid: 8931 components: - pos: 22.5,-38.5 parent: 2 type: Transform - - uid: 8906 + - uid: 8932 components: - pos: 6.5,-1.5 parent: 2 type: Transform - - uid: 8907 + - uid: 8933 components: - pos: 5.5,-1.5 parent: 2 type: Transform - - uid: 8908 + - uid: 8934 components: - pos: -72.5,-38.5 parent: 2 type: Transform - - uid: 8909 + - uid: 8935 components: - pos: -10.5,15.5 parent: 2 type: Transform - - uid: 8910 + - uid: 8936 components: - pos: -6.5,-70.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8911 + - uid: 8937 components: - pos: 18.5,-52.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8912 + - uid: 8938 components: - pos: 10.5,-55.5 parent: 2 type: Transform - - uid: 8913 + - uid: 8939 components: - pos: 37.5,21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8914 + - uid: 8940 components: - pos: 3.5,-49.5 parent: 2 type: Transform - - uid: 8915 + - uid: 8941 components: - pos: 9.5,-44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8916 + - uid: 8942 components: - pos: 32.5,0.5 parent: 2 type: Transform - - uid: 8917 + - uid: 8943 components: - pos: 32.5,1.5 parent: 2 type: Transform - - uid: 8918 + - uid: 8944 components: - pos: -2.5,-51.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8919 + - uid: 8945 components: - pos: -2.5,-52.5 parent: 2 type: Transform - - uid: 8920 + - uid: 8946 components: - pos: -2.5,-53.5 parent: 2 type: Transform - - uid: 8921 + - uid: 8947 components: - pos: 40.5,-26.5 parent: 2 type: Transform - - uid: 8922 + - uid: 8948 components: - pos: 31.5,2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8923 + - uid: 8949 components: - pos: -6.5,-71.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8924 + - uid: 8950 components: - pos: -6.5,-69.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8925 + - uid: 8951 components: - pos: 27.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8926 + - uid: 8952 components: - pos: 4.5,-49.5 parent: 2 type: Transform - - uid: 8927 + - uid: 8953 components: - pos: 3.5,-52.5 parent: 2 type: Transform - - uid: 8928 + - uid: 8954 components: - pos: -0.5,-53.5 parent: 2 type: Transform - - uid: 8929 + - uid: 8955 components: - pos: 8.5,-43.5 parent: 2 type: Transform - - uid: 8930 + - uid: 8956 components: - pos: -14.5,-69.5 parent: 2 type: Transform - - uid: 8931 + - uid: 8957 components: - pos: 9.5,-43.5 parent: 2 type: Transform - - uid: 8932 + - uid: 8958 components: - pos: 24.5,-28.5 parent: 2 type: Transform - - uid: 8933 + - uid: 8959 components: - pos: 45.5,-64.5 parent: 2 type: Transform - - uid: 8934 + - uid: 8960 components: - pos: 5.5,-45.5 parent: 2 type: Transform - - uid: 8935 + - uid: 8961 components: - pos: 5.5,-44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8936 + - uid: 8962 components: - pos: 4.5,-43.5 parent: 2 type: Transform - - uid: 8937 + - uid: 8963 components: - pos: 3.5,-43.5 parent: 2 type: Transform - - uid: 8938 + - uid: 8964 components: - pos: 3.5,-42.5 parent: 2 type: Transform - - uid: 8939 + - uid: 8965 components: - pos: 2.5,-42.5 parent: 2 type: Transform - - uid: 8940 + - uid: 8966 components: - pos: 1.5,-42.5 parent: 2 type: Transform - - uid: 8941 + - uid: 8967 components: - pos: 0.5,-42.5 parent: 2 type: Transform - - uid: 8942 + - uid: 8968 components: - pos: 0.5,-41.5 parent: 2 type: Transform - - uid: 8943 + - uid: 8969 components: - pos: 0.5,-40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8944 + - uid: 8970 components: - pos: 15.5,-58.5 parent: 2 type: Transform - - uid: 8945 + - uid: 8971 components: - pos: 15.5,-57.5 parent: 2 type: Transform - - uid: 8946 + - uid: 8972 components: - pos: 14.5,-57.5 parent: 2 type: Transform - - uid: 8947 + - uid: 8973 components: - pos: 12.5,-57.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8948 + - uid: 8974 components: - pos: 12.5,-56.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8949 + - uid: 8975 components: - pos: 11.5,-55.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8950 + - uid: 8976 components: - pos: 12.5,-55.5 parent: 2 type: Transform - - uid: 8951 + - uid: 8977 components: - pos: 8.5,-55.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8952 + - uid: 8978 components: - pos: 8.5,-54.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8953 + - uid: 8979 components: - pos: 8.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8954 + - uid: 8980 components: - pos: 7.5,-53.5 parent: 2 type: Transform - - uid: 8955 + - uid: 8981 components: - pos: 16.5,-52.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8956 + - uid: 8982 components: - pos: 43.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8957 + - uid: 8983 components: - pos: 0.5,14.5 parent: 2 type: Transform - - uid: 8958 + - uid: 8984 components: - pos: 37.5,13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8959 + - uid: 8985 components: - pos: 38.5,14.5 parent: 2 type: Transform - - uid: 8960 + - uid: 8986 components: - pos: -5.5,-69.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8961 + - uid: 8987 components: - pos: 38.5,-28.5 parent: 2 type: Transform - - uid: 8962 + - uid: 8988 components: - pos: 35.5,-29.5 parent: 2 type: Transform - - uid: 8963 + - uid: 8989 components: - pos: 37.5,-30.5 parent: 2 type: Transform - - uid: 8964 + - uid: 8990 components: - pos: -11.5,-70.5 parent: 2 type: Transform - - uid: 8965 + - uid: 8991 components: - pos: 21.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8966 + - uid: 8992 components: - pos: 5.5,-48.5 parent: 2 type: Transform - - uid: 8967 + - uid: 8993 components: - pos: 7.5,-47.5 parent: 2 type: Transform - - uid: 8968 + - uid: 8994 components: - pos: 29.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8969 + - uid: 8995 components: - pos: 0.5,11.5 parent: 2 type: Transform - - uid: 8970 + - uid: 8996 components: - pos: 28.5,18.5 parent: 2 type: Transform - - uid: 8971 + - uid: 8997 components: - pos: -11.5,-71.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8972 + - uid: 8998 components: - pos: -7.5,-71.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8973 + - uid: 8999 components: - pos: -3.5,-68.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8974 + - uid: 9000 components: - pos: -1.5,-53.5 parent: 2 type: Transform - - uid: 8975 + - uid: 9001 components: - pos: 9.5,-45.5 parent: 2 type: Transform - - uid: 8976 + - uid: 9002 components: - pos: -19.5,25.5 parent: 2 type: Transform - - uid: 8977 + - uid: 9003 components: - pos: 1.5,9.5 parent: 2 type: Transform - - uid: 8978 + - uid: 9004 components: - pos: -11.5,-69.5 parent: 2 type: Transform - - uid: 8979 + - uid: 9005 components: - pos: -8.5,-71.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8980 + - uid: 9006 components: - pos: -10.5,-71.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8981 + - uid: 9007 components: - pos: 21.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8982 + - uid: 9008 components: - pos: 29.5,18.5 parent: 2 type: Transform - - uid: 8983 + - uid: 9009 components: - pos: 29.5,19.5 parent: 2 type: Transform - - uid: 8984 + - uid: 9010 components: - pos: 21.5,17.5 parent: 2 type: Transform - - uid: 8985 + - uid: 9011 components: - pos: 32.5,2.5 parent: 2 type: Transform - - uid: 8986 + - uid: 9012 components: - pos: 32.5,-0.5 parent: 2 type: Transform - - uid: 8987 + - uid: 9013 components: - pos: 32.5,-1.5 parent: 2 type: Transform - - uid: 8988 + - uid: 9014 components: - pos: 9.5,-47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8989 + - uid: 9015 components: - pos: 8.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8990 + - uid: 9016 components: - pos: 5.5,-46.5 parent: 2 type: Transform - - uid: 8991 + - uid: 9017 components: - pos: 3.5,-50.5 parent: 2 type: Transform - - uid: 8992 + - uid: 9018 components: - pos: 13.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8993 + - uid: 9019 components: - pos: 5.5,-49.5 parent: 2 type: Transform - - uid: 8994 + - uid: 9020 components: - pos: 9.5,-55.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 8995 + - uid: 9021 components: - pos: -3.5,14.5 parent: 2 type: Transform - - uid: 8996 + - uid: 9022 components: - pos: -2.5,14.5 parent: 2 type: Transform - - uid: 8997 + - uid: 9023 components: - pos: -1.5,14.5 parent: 2 type: Transform - - uid: 8998 + - uid: 9024 components: - pos: -0.5,14.5 parent: 2 type: Transform - - uid: 8999 + - uid: 9025 components: - pos: -5.5,14.5 parent: 2 type: Transform - - uid: 9000 + - uid: 9026 components: - pos: -6.5,14.5 parent: 2 type: Transform - - uid: 9001 + - uid: 9027 components: - pos: 1.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9002 + - uid: 9028 components: - pos: 0.5,10.5 parent: 2 type: Transform - - uid: 9003 + - uid: 9029 components: - pos: 18.5,-28.5 parent: 2 type: Transform - - uid: 9004 + - uid: 9030 components: - pos: 21.5,16.5 parent: 2 type: Transform - - uid: 9005 + - uid: 9031 components: - pos: -19.5,24.5 parent: 2 type: Transform - - uid: 9006 + - uid: 9032 components: - pos: 12.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9007 + - uid: 9033 components: - pos: 31.5,-4.5 parent: 2 type: Transform - - uid: 9008 + - uid: 9034 components: - pos: 30.5,-4.5 parent: 2 type: Transform - - uid: 9009 + - uid: 9035 components: - pos: 30.5,-3.5 parent: 2 type: Transform - - uid: 9010 + - uid: 9036 components: - pos: 30.5,-2.5 parent: 2 type: Transform - - uid: 9011 + - uid: 9037 components: - pos: -9.5,-21.5 parent: 2 type: Transform - - uid: 9012 + - uid: 9038 components: - pos: -8.5,-19.5 parent: 2 type: Transform - - uid: 9013 + - uid: 9039 components: - pos: -8.5,-20.5 parent: 2 type: Transform - - uid: 9014 + - uid: 9040 components: - pos: -8.5,-21.5 parent: 2 type: Transform - - uid: 9015 + - uid: 9041 components: - pos: -10.5,-21.5 parent: 2 type: Transform - - uid: 9016 + - uid: 9042 components: - pos: -10.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9017 + - uid: 9043 components: - pos: 10.5,-47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9018 + - uid: 9044 components: - pos: 11.5,-47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9019 + - uid: 9045 components: - pos: 10.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9020 + - uid: 9046 components: - pos: 3.5,-51.5 parent: 2 type: Transform - - uid: 9021 + - uid: 9047 components: - pos: 3.5,-53.5 parent: 2 type: Transform - - uid: 9022 + - uid: 9048 components: - pos: 1.5,-53.5 parent: 2 type: Transform - - uid: 9023 + - uid: 9049 components: - pos: 0.5,-53.5 parent: 2 type: Transform - - uid: 9024 + - uid: 9050 components: - pos: 7.5,-43.5 parent: 2 type: Transform - - uid: 9025 + - uid: 9051 components: - pos: -20.5,-69.5 parent: 2 type: Transform - - uid: 9026 + - uid: 9052 components: - pos: -21.5,-68.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9027 + - uid: 9053 components: - pos: -9.5,-71.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9028 + - uid: 9054 components: - pos: -3.5,-69.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9029 + - uid: 9055 components: - pos: 2.5,-53.5 parent: 2 type: Transform - - uid: 9030 + - uid: 9056 components: - pos: 18.5,-11.5 parent: 2 type: Transform - - uid: 9031 + - uid: 9057 components: - pos: 17.5,-11.5 parent: 2 type: Transform - - uid: 9032 + - uid: 9058 components: - pos: 44.5,-64.5 parent: 2 type: Transform - - uid: 9033 + - uid: 9059 components: - pos: 46.5,-65.5 parent: 2 type: Transform - - uid: 9034 + - uid: 9060 components: - pos: 38.5,-30.5 parent: 2 type: Transform - - uid: 9035 + - uid: 9061 components: - pos: 36.5,-30.5 parent: 2 type: Transform - - uid: 9036 + - uid: 9062 components: - pos: 28.5,-28.5 parent: 2 type: Transform - - uid: 9037 + - uid: 9063 components: - pos: 35.5,-27.5 parent: 2 type: Transform - - uid: 9038 + - uid: 9064 components: - pos: 35.5,-26.5 parent: 2 type: Transform - - uid: 9039 + - uid: 9065 components: - pos: 36.5,-26.5 parent: 2 type: Transform - - uid: 9040 + - uid: 9066 components: - pos: 37.5,-26.5 parent: 2 type: Transform - - uid: 9041 + - uid: 9067 components: - pos: 38.5,-26.5 parent: 2 type: Transform - - uid: 9042 + - uid: 9068 components: - pos: 39.5,-26.5 parent: 2 type: Transform - - uid: 9043 + - uid: 9069 components: - pos: 41.5,-26.5 parent: 2 type: Transform - - uid: 9044 + - uid: 9070 components: - pos: 42.5,-26.5 parent: 2 type: Transform - - uid: 9045 + - uid: 9071 components: - pos: 0.5,12.5 parent: 2 type: Transform - - uid: 9046 + - uid: 9072 components: - pos: 0.5,13.5 parent: 2 type: Transform - - uid: 9047 + - uid: 9073 components: - pos: 38.5,-29.5 parent: 2 type: Transform - - uid: 9048 + - uid: 9074 components: - pos: 8.5,-47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9049 + - uid: 9075 components: - pos: 6.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9050 + - uid: 9076 components: - pos: 6.5,-11.5 parent: 2 type: Transform - - uid: 9051 + - uid: 9077 components: - pos: 7.5,-11.5 parent: 2 type: Transform - - uid: 9052 + - uid: 9078 components: - pos: 8.5,-11.5 parent: 2 type: Transform - - uid: 9053 + - uid: 9079 components: - pos: 8.5,-10.5 parent: 2 type: Transform - - uid: 9054 + - uid: 9080 components: - pos: 8.5,-9.5 parent: 2 type: Transform - - uid: 9055 + - uid: 9081 components: - pos: 8.5,-7.5 parent: 2 type: Transform - - uid: 9056 + - uid: 9082 components: - pos: 8.5,-5.5 parent: 2 type: Transform - - uid: 9057 + - uid: 9083 components: - pos: 8.5,-4.5 parent: 2 type: Transform - - uid: 9058 + - uid: 9084 components: - pos: 8.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9059 + - uid: 9085 components: - pos: -21.5,-69.5 parent: 2 type: Transform - - uid: 9060 + - uid: 9086 components: - pos: 10.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9061 + - uid: 9087 components: - pos: -19.5,-69.5 parent: 2 type: Transform - - uid: 9062 + - uid: 9088 components: - pos: 9.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9063 + - uid: 9089 components: - pos: 15.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9064 + - uid: 9090 components: - pos: 12.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9065 + - uid: 9091 components: - pos: -16.5,-69.5 parent: 2 type: Transform - - uid: 9066 + - uid: 9092 components: - pos: 8.5,-6.5 parent: 2 type: Transform - - uid: 9067 + - uid: 9093 components: - pos: 8.5,-8.5 parent: 2 type: Transform - - uid: 9068 + - uid: 9094 components: - pos: -4.5,14.5 parent: 2 type: Transform - - uid: 9069 + - uid: 9095 components: - pos: 10.5,-49.5 parent: 2 type: Transform - - uid: 9070 + - uid: 9096 components: - pos: 19.5,-51.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9071 + - uid: 9097 components: - pos: 17.5,-52.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9072 + - uid: 9098 components: - pos: 15.5,-52.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9073 + - uid: 9099 components: - pos: 14.5,-51.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9074 + - uid: 9100 components: - pos: 14.5,-50.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9075 + - uid: 9101 components: - pos: 14.5,-49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9076 + - uid: 9102 components: - pos: 13.5,-49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9077 + - uid: 9103 components: - pos: 11.5,-49.5 parent: 2 type: Transform - - uid: 9078 + - uid: 9104 components: - pos: 16.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9079 + - uid: 9105 components: - pos: 17.5,-14.5 parent: 2 type: Transform - - uid: 9080 + - uid: 9106 components: - pos: 17.5,-13.5 parent: 2 type: Transform - - uid: 9081 + - uid: 9107 components: - pos: 17.5,-12.5 parent: 2 type: Transform - - uid: 9082 + - uid: 9108 components: - pos: 19.5,-11.5 parent: 2 type: Transform - - uid: 9083 + - uid: 9109 components: - pos: 21.5,-11.5 parent: 2 type: Transform - - uid: 9084 + - uid: 9110 components: - pos: 5.5,-47.5 parent: 2 type: Transform - - uid: 9085 + - uid: 9111 components: - pos: 19.5,-52.5 parent: 2 type: Transform - - uid: 9086 + - uid: 9112 components: - pos: 32.5,-4.5 parent: 2 type: Transform - - uid: 9087 + - uid: 9113 components: - pos: 6.5,-43.5 parent: 2 type: Transform - - uid: 9088 + - uid: 9114 components: - pos: 14.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9089 + - uid: 9115 components: - pos: 6.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9090 + - uid: 9116 components: - pos: 7.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9091 + - uid: 9117 components: - pos: 8.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9092 + - uid: 9118 components: - pos: 8.5,-16.5 parent: 2 type: Transform - - uid: 9093 + - uid: 9119 components: - pos: 21.5,-28.5 parent: 2 type: Transform - - uid: 9094 + - uid: 9120 components: - pos: 21.5,-10.5 parent: 2 type: Transform - - uid: 9095 + - uid: 9121 components: - pos: 12.5,-49.5 parent: 2 type: Transform - - uid: 9096 + - uid: 9122 components: - pos: 13.5,-57.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9097 + - uid: 9123 components: - pos: 14.5,-52.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9098 + - uid: 9124 components: - pos: 32.5,-2.5 parent: 2 type: Transform - - uid: 9099 + - uid: 9125 components: - pos: -4.5,-69.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9100 + - uid: 9126 components: - pos: 5.5,-43.5 parent: 2 type: Transform - - uid: 9101 + - uid: 9127 components: - pos: 38.5,16.5 parent: 2 type: Transform - - uid: 9102 + - uid: 9128 components: - pos: 37.5,14.5 parent: 2 type: Transform - - uid: 9103 + - uid: 9129 components: - pos: 7.5,-46.5 parent: 2 type: Transform - - uid: 9104 + - uid: 9130 components: - pos: 27.5,18.5 parent: 2 type: Transform - - uid: 9105 + - uid: 9131 components: - pos: 32.5,-3.5 parent: 2 type: Transform - - uid: 9106 + - uid: 9132 components: - pos: -18.5,-69.5 parent: 2 type: Transform - - uid: 9107 + - uid: 9133 components: - pos: -13.5,-69.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9108 + - uid: 9134 components: - pos: 26.5,-28.5 parent: 2 type: Transform - - uid: 9109 + - uid: 9135 components: - pos: 25.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9110 + - uid: 9136 components: - pos: 23.5,-28.5 parent: 2 type: Transform - - uid: 9111 + - uid: 9137 components: - pos: 22.5,-28.5 parent: 2 type: Transform - - uid: 9112 + - uid: 9138 components: - pos: 20.5,-28.5 parent: 2 type: Transform - - uid: 9113 + - uid: 9139 components: - pos: 7.5,-45.5 parent: 2 type: Transform - - uid: 9114 + - uid: 9140 components: - pos: 11.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9115 + - uid: 9141 components: - pos: 11.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9116 + - uid: 9142 components: - pos: 20.5,-11.5 parent: 2 type: Transform - - uid: 9117 + - uid: 9143 components: - pos: -17.5,-69.5 parent: 2 type: Transform - - uid: 9118 + - uid: 9144 components: - pos: 22.5,17.5 parent: 2 type: Transform - - uid: 9119 + - uid: 9145 components: - pos: 23.5,17.5 parent: 2 type: Transform - - uid: 9120 + - uid: 9146 components: - pos: 23.5,18.5 parent: 2 type: Transform - - uid: 9121 + - uid: 9147 components: - pos: 24.5,18.5 parent: 2 type: Transform - - uid: 9122 + - uid: 9148 components: - pos: 25.5,18.5 parent: 2 type: Transform - - uid: 9123 + - uid: 9149 components: - pos: 26.5,18.5 parent: 2 type: Transform - - uid: 9124 + - uid: 9150 components: - pos: 35.5,-28.5 parent: 2 type: Transform - - uid: 9125 + - uid: 9151 components: - pos: 35.5,-30.5 parent: 2 type: Transform - - uid: 9126 + - uid: 9152 components: - pos: -15.5,-69.5 parent: 2 type: Transform - - uid: 9127 + - uid: 9153 components: - pos: -12.5,-69.5 parent: 2 type: Transform - - uid: 9128 + - uid: 9154 components: - pos: 33.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9129 + - uid: 9155 components: - pos: 29.5,20.5 parent: 2 type: Transform - - uid: 9130 + - uid: 9156 components: - pos: 29.5,21.5 parent: 2 type: Transform - - uid: 9131 + - uid: 9157 components: - pos: 28.5,21.5 parent: 2 type: Transform - - uid: 9132 + - uid: 9158 components: - pos: 27.5,21.5 parent: 2 type: Transform - - uid: 9133 + - uid: 9159 components: - pos: 26.5,21.5 parent: 2 type: Transform - - uid: 9134 + - uid: 9160 components: - pos: 25.5,21.5 parent: 2 type: Transform - - uid: 9135 + - uid: 9161 components: - pos: 25.5,22.5 parent: 2 type: Transform - - uid: 9136 + - uid: 9162 components: - pos: 25.5,23.5 parent: 2 type: Transform - - uid: 9137 + - uid: 9163 components: - pos: 25.5,24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9138 + - uid: 9164 components: - pos: 24.5,24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9139 + - uid: 9165 components: - pos: 30.5,21.5 parent: 2 type: Transform - - uid: 9140 + - uid: 9166 components: - pos: 31.5,21.5 parent: 2 type: Transform - - uid: 9141 + - uid: 9167 components: - pos: 32.5,21.5 parent: 2 type: Transform - - uid: 9142 + - uid: 9168 components: - pos: 32.5,22.5 parent: 2 type: Transform - - uid: 9143 + - uid: 9169 components: - pos: 32.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9144 + - uid: 9170 components: - pos: 33.5,24.5 parent: 2 type: Transform - - uid: 9145 + - uid: 9171 components: - pos: 33.5,25.5 parent: 2 type: Transform - - uid: 9146 + - uid: 9172 components: - pos: 46.5,-64.5 parent: 2 type: Transform - - uid: 9147 + - uid: 9173 components: - pos: -13.5,42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9148 + - uid: 9174 components: - pos: -14.5,42.5 parent: 2 type: Transform - - uid: 9149 + - uid: 9175 components: - pos: -19.5,23.5 parent: 2 type: Transform - - uid: 9150 + - uid: 9176 components: - pos: -19.5,22.5 parent: 2 type: Transform - - uid: 9151 + - uid: 9177 components: - pos: 32.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9152 + - uid: 9178 components: - pos: 63.5,7.5 parent: 2 type: Transform - - uid: 9153 + - uid: 9179 components: - pos: 63.5,6.5 parent: 2 type: Transform - - uid: 9154 + - uid: 9180 components: - pos: 63.5,5.5 parent: 2 type: Transform - - uid: 9155 + - uid: 9181 components: - pos: 63.5,4.5 parent: 2 type: Transform - - uid: 9156 + - uid: 9182 components: - pos: 62.5,4.5 parent: 2 type: Transform - - uid: 9157 + - uid: 9183 components: - pos: 61.5,4.5 parent: 2 type: Transform - - uid: 9158 + - uid: 9184 components: - pos: 60.5,4.5 parent: 2 type: Transform - - uid: 9159 + - uid: 9185 components: - pos: 60.5,5.5 parent: 2 type: Transform - - uid: 9160 + - uid: 9186 components: - pos: 60.5,6.5 parent: 2 type: Transform - - uid: 9161 + - uid: 9187 components: - pos: 60.5,7.5 parent: 2 type: Transform - - uid: 9162 + - uid: 9188 components: - pos: 60.5,8.5 parent: 2 type: Transform - - uid: 9163 + - uid: 9189 components: - pos: 60.5,9.5 parent: 2 type: Transform - - uid: 9164 + - uid: 9190 components: - pos: 59.5,9.5 parent: 2 type: Transform - - uid: 9165 + - uid: 9191 components: - pos: 58.5,9.5 parent: 2 type: Transform - - uid: 9166 + - uid: 9192 components: - pos: 58.5,10.5 parent: 2 type: Transform - - uid: 9167 + - uid: 9193 components: - pos: 58.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9168 + - uid: 9194 components: - pos: 38.5,15.5 parent: 2 type: Transform - - uid: 9169 + - uid: 9195 components: - pos: 22.5,-8.5 parent: 2 type: Transform - - uid: 9170 + - uid: 9196 components: - pos: 23.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9171 + - uid: 9197 components: - pos: 24.5,-8.5 parent: 2 type: Transform - - uid: 9172 + - uid: 9198 components: - pos: 25.5,-8.5 parent: 2 type: Transform - - uid: 9173 + - uid: 9199 components: - pos: 26.5,-8.5 parent: 2 type: Transform - - uid: 9174 + - uid: 9200 components: - pos: 27.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9175 + - uid: 9201 components: - pos: 29.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9176 + - uid: 9202 components: - pos: 28.5,-8.5 parent: 2 type: Transform - - uid: 9177 + - uid: 9203 components: - pos: 30.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9178 + - uid: 9204 components: - pos: 31.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9179 + - uid: 9205 components: - pos: 32.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9180 + - uid: 9206 components: - pos: 47.5,-3.5 parent: 2 type: Transform - - uid: 9181 + - uid: 9207 components: - pos: 47.5,-2.5 parent: 2 type: Transform - - uid: 9182 + - uid: 9208 components: - pos: 47.5,-1.5 parent: 2 type: Transform - - uid: 9183 + - uid: 9209 components: - pos: 46.5,-1.5 parent: 2 type: Transform - - uid: 9184 + - uid: 9210 components: - pos: 46.5,-0.5 parent: 2 type: Transform - - uid: 9185 + - uid: 9211 components: - pos: 46.5,0.5 parent: 2 type: Transform - - uid: 9186 + - uid: 9212 components: - pos: 47.5,0.5 parent: 2 type: Transform - - uid: 9187 + - uid: 9213 components: - pos: 48.5,0.5 parent: 2 type: Transform - - uid: 9188 + - uid: 9214 components: - pos: 49.5,0.5 parent: 2 type: Transform - - uid: 9189 + - uid: 9215 components: - pos: 49.5,1.5 parent: 2 type: Transform - - uid: 9190 + - uid: 9216 components: - pos: 49.5,2.5 parent: 2 type: Transform - - uid: 9191 + - uid: 9217 components: - pos: 49.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9192 + - uid: 9218 components: - pos: 48.5,-5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9193 + - uid: 9219 components: - pos: 47.5,-5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9194 + - uid: 9220 components: - pos: 47.5,-6.5 parent: 2 type: Transform - - uid: 9195 + - uid: 9221 components: - pos: 47.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9196 + - uid: 9222 components: - pos: 47.5,-8.5 parent: 2 type: Transform - - uid: 9197 + - uid: 9223 components: - pos: 48.5,-8.5 parent: 2 type: Transform - - uid: 9198 + - uid: 9224 components: - pos: 49.5,-8.5 parent: 2 type: Transform - - uid: 9199 + - uid: 9225 components: - pos: 50.5,-8.5 parent: 2 type: Transform - - uid: 9200 + - uid: 9226 components: - pos: 51.5,-8.5 parent: 2 type: Transform - - uid: 9201 + - uid: 9227 components: - pos: 52.5,-8.5 parent: 2 type: Transform - - uid: 9202 + - uid: 9228 components: - pos: 52.5,-7.5 parent: 2 type: Transform - - uid: 9203 + - uid: 9229 components: - pos: 52.5,-6.5 parent: 2 type: Transform - - uid: 9204 + - uid: 9230 components: - pos: 53.5,-6.5 parent: 2 type: Transform - - uid: 9205 + - uid: 9231 components: - pos: 53.5,-5.5 parent: 2 type: Transform - - uid: 9206 + - uid: 9232 components: - pos: 54.5,-5.5 parent: 2 type: Transform - - uid: 9207 + - uid: 9233 components: - pos: 55.5,-5.5 parent: 2 type: Transform - - uid: 9208 + - uid: 9234 components: - pos: 56.5,-5.5 parent: 2 type: Transform - - uid: 9209 + - uid: 9235 components: - pos: 57.5,-5.5 parent: 2 type: Transform - - uid: 9210 + - uid: 9236 components: - pos: 58.5,-5.5 parent: 2 type: Transform - - uid: 9211 + - uid: 9237 components: - pos: 59.5,-5.5 parent: 2 type: Transform - - uid: 9212 + - uid: 9238 components: - pos: 59.5,-4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9213 + - uid: 9239 components: - pos: 43.5,-64.5 parent: 2 type: Transform - - uid: 9214 + - uid: 9240 components: - pos: 38.5,-46.5 parent: 2 type: Transform - - uid: 9215 + - uid: 9241 components: - pos: 38.5,-45.5 parent: 2 type: Transform - - uid: 9216 + - uid: 9242 components: - pos: 38.5,-44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9217 + - uid: 9243 components: - pos: 38.5,-43.5 parent: 2 type: Transform - - uid: 9218 + - uid: 9244 components: - pos: 39.5,-43.5 parent: 2 type: Transform - - uid: 9219 + - uid: 9245 components: - pos: 40.5,-43.5 parent: 2 type: Transform - - uid: 9220 + - uid: 9246 components: - pos: 41.5,-43.5 parent: 2 type: Transform - - uid: 9221 + - uid: 9247 components: - pos: 42.5,-43.5 parent: 2 type: Transform - - uid: 9222 + - uid: 9248 components: - pos: 43.5,-43.5 parent: 2 type: Transform - - uid: 9223 + - uid: 9249 components: - pos: 44.5,-43.5 parent: 2 type: Transform - - uid: 9224 + - uid: 9250 components: - pos: 45.5,-43.5 parent: 2 type: Transform - - uid: 9225 + - uid: 9251 components: - pos: 46.5,-43.5 parent: 2 type: Transform - - uid: 9226 + - uid: 9252 components: - pos: 47.5,-43.5 parent: 2 type: Transform - - uid: 9227 + - uid: 9253 components: - pos: 48.5,-43.5 parent: 2 type: Transform - - uid: 9228 + - uid: 9254 components: - pos: 49.5,-43.5 parent: 2 type: Transform - - uid: 9229 + - uid: 9255 components: - pos: 49.5,-44.5 parent: 2 type: Transform - - uid: 9230 + - uid: 9256 components: - pos: 49.5,-45.5 parent: 2 type: Transform - - uid: 9231 + - uid: 9257 components: - pos: 50.5,-45.5 parent: 2 type: Transform - - uid: 9232 + - uid: 9258 components: - pos: 51.5,-45.5 parent: 2 type: Transform - - uid: 9233 + - uid: 9259 components: - pos: 52.5,-45.5 parent: 2 type: Transform - - uid: 9234 + - uid: 9260 components: - pos: 53.5,-45.5 parent: 2 type: Transform - - uid: 9235 + - uid: 9261 components: - pos: 54.5,-45.5 parent: 2 type: Transform - - uid: 9236 + - uid: 9262 components: - pos: 55.5,-45.5 parent: 2 type: Transform - - uid: 9237 + - uid: 9263 components: - pos: 55.5,-44.5 parent: 2 type: Transform - - uid: 9238 + - uid: 9264 components: - pos: 55.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9239 + - uid: 9265 components: - pos: 68.5,-59.5 parent: 2 type: Transform - - uid: 9240 + - uid: 9266 components: - pos: 69.5,-59.5 parent: 2 type: Transform - - uid: 9241 + - uid: 9267 components: - pos: 40.5,-62.5 parent: 2 type: Transform - - uid: 9242 + - uid: 9268 components: - pos: 40.5,-60.5 parent: 2 type: Transform - - uid: 9243 + - uid: 9269 components: - pos: 42.5,-64.5 parent: 2 type: Transform - - uid: 9244 + - uid: 9270 components: - pos: -16.5,-0.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9245 + - uid: 9271 components: - pos: -17.5,-0.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9246 + - uid: 9272 components: - pos: -18.5,-0.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9247 + - uid: 9273 components: - pos: -19.5,-0.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9248 + - uid: 9274 components: - pos: -20.5,-0.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9249 + - uid: 9275 components: - pos: -20.5,0.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9250 + - uid: 9276 components: - pos: -29.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9251 + - uid: 9277 components: - pos: -28.5,-23.5 parent: 2 type: Transform - - uid: 9252 + - uid: 9278 components: - pos: -28.5,-22.5 parent: 2 type: Transform - - uid: 9253 + - uid: 9279 components: - pos: -28.5,-21.5 parent: 2 type: Transform - - uid: 9254 + - uid: 9280 components: - pos: -29.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9255 + - uid: 9281 components: - pos: -30.5,-21.5 parent: 2 type: Transform - - uid: 9256 + - uid: 9282 components: - pos: -31.5,-21.5 parent: 2 type: Transform - - uid: 9257 + - uid: 9283 components: - pos: -31.5,-20.5 parent: 2 type: Transform - - uid: 9258 + - uid: 9284 components: - pos: -31.5,-19.5 parent: 2 type: Transform - - uid: 9259 + - uid: 9285 components: - pos: -31.5,-18.5 parent: 2 type: Transform - - uid: 9260 + - uid: 9286 components: - pos: -31.5,-17.5 parent: 2 type: Transform - - uid: 9261 + - uid: 9287 components: - pos: -31.5,-16.5 parent: 2 type: Transform - - uid: 9262 + - uid: 9288 components: - pos: -31.5,-15.5 parent: 2 type: Transform - - uid: 9263 + - uid: 9289 components: - pos: -31.5,-14.5 parent: 2 type: Transform - - uid: 9264 + - uid: 9290 components: - pos: -31.5,-13.5 parent: 2 type: Transform - - uid: 9265 + - uid: 9291 components: - pos: -31.5,-12.5 parent: 2 type: Transform - - uid: 9266 + - uid: 9292 components: - pos: -31.5,-11.5 parent: 2 type: Transform - - uid: 9267 + - uid: 9293 components: - pos: -31.5,-10.5 parent: 2 type: Transform - - uid: 9268 + - uid: 9294 components: - pos: -30.5,-10.5 parent: 2 type: Transform - - uid: 9269 + - uid: 9295 components: - pos: -29.5,-10.5 parent: 2 type: Transform - - uid: 9270 + - uid: 9296 components: - pos: -29.5,-9.5 parent: 2 type: Transform - - uid: 9271 + - uid: 9297 components: - pos: 43.5,-58.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9272 + - uid: 9298 components: - pos: 43.5,-59.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9273 + - uid: 9299 components: - pos: 42.5,-59.5 parent: 2 type: Transform - - uid: 9274 + - uid: 9300 components: - pos: 41.5,-59.5 parent: 2 type: Transform - - uid: 9275 + - uid: 9301 components: - pos: 40.5,-59.5 parent: 2 type: Transform - - uid: 9276 + - uid: 9302 components: - pos: 39.5,-59.5 parent: 2 type: Transform - - uid: 9277 + - uid: 9303 components: - pos: 38.5,-59.5 parent: 2 type: Transform - - uid: 9278 + - uid: 9304 components: - pos: 37.5,-59.5 parent: 2 type: Transform - - uid: 9279 + - uid: 9305 components: - pos: 37.5,-58.5 parent: 2 type: Transform - - uid: 9280 + - uid: 9306 components: - pos: 37.5,-57.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9281 + - uid: 9307 components: - pos: 56.5,-45.5 parent: 2 type: Transform - - uid: 9282 + - uid: 9308 components: - pos: 57.5,-45.5 parent: 2 type: Transform - - uid: 9283 + - uid: 9309 components: - pos: 58.5,-45.5 parent: 2 type: Transform - - uid: 9284 + - uid: 9310 components: - pos: 59.5,-45.5 parent: 2 type: Transform - - uid: 9285 + - uid: 9311 components: - pos: 60.5,-45.5 parent: 2 type: Transform - - uid: 9286 + - uid: 9312 components: - pos: 61.5,-45.5 parent: 2 type: Transform - - uid: 9287 + - uid: 9313 components: - pos: 61.5,-46.5 parent: 2 type: Transform - - uid: 9288 + - uid: 9314 components: - pos: 61.5,-47.5 parent: 2 type: Transform - - uid: 9289 + - uid: 9315 components: - pos: 61.5,-48.5 parent: 2 type: Transform - - uid: 9290 + - uid: 9316 components: - pos: 61.5,-49.5 parent: 2 type: Transform - - uid: 9291 + - uid: 9317 components: - pos: 61.5,-50.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9292 + - uid: 9318 components: - pos: 61.5,-51.5 parent: 2 type: Transform - - uid: 9293 + - uid: 9319 components: - pos: 60.5,-51.5 parent: 2 type: Transform - - uid: 9294 + - uid: 9320 components: - pos: 59.5,-51.5 parent: 2 type: Transform - - uid: 9295 + - uid: 9321 components: - pos: 58.5,-51.5 parent: 2 type: Transform - - uid: 9296 + - uid: 9322 components: - pos: 58.5,-52.5 parent: 2 type: Transform - - uid: 9297 + - uid: 9323 components: - pos: 58.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9298 + - uid: 9324 components: - pos: 59.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9299 + - uid: 9325 components: - pos: 59.5,-54.5 parent: 2 type: Transform - - uid: 9300 + - uid: 9326 components: - pos: 59.5,-55.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9301 + - uid: 9327 components: - pos: 60.5,-55.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9302 + - uid: 9328 components: - pos: 60.5,-56.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9303 + - uid: 9329 components: - pos: 61.5,-56.5 parent: 2 type: Transform - - uid: 9304 + - uid: 9330 components: - pos: 62.5,-56.5 parent: 2 type: Transform - - uid: 9305 + - uid: 9331 components: - pos: 63.5,-56.5 parent: 2 type: Transform - - uid: 9306 + - uid: 9332 components: - pos: 64.5,-56.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9307 + - uid: 9333 components: - pos: 64.5,-55.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9308 + - uid: 9334 components: - pos: 65.5,-55.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9309 + - uid: 9335 components: - pos: 65.5,-54.5 parent: 2 type: Transform - - uid: 9310 + - uid: 9336 components: - pos: 65.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9311 + - uid: 9337 components: - pos: 66.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9312 + - uid: 9338 components: - pos: 66.5,-52.5 parent: 2 type: Transform - - uid: 9313 + - uid: 9339 components: - pos: 66.5,-51.5 parent: 2 type: Transform - - uid: 9314 + - uid: 9340 components: - pos: 66.5,-50.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9315 + - uid: 9341 components: - pos: 65.5,-50.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9316 + - uid: 9342 components: - pos: 47.5,-65.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9317 + - uid: 9343 components: - pos: -59.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9318 + - uid: 9344 components: - pos: -57.5,-20.5 parent: 2 type: Transform - - uid: 9319 + - uid: 9345 components: - pos: -56.5,-21.5 parent: 2 type: Transform - - uid: 9320 + - uid: 9346 components: - pos: -60.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9321 + - uid: 9347 components: - pos: -61.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9322 + - uid: 9348 components: - pos: -62.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9323 + - uid: 9349 components: - pos: -63.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9324 + - uid: 9350 components: - pos: -64.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9325 + - uid: 9351 components: - pos: -65.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9326 + - uid: 9352 components: - pos: -66.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9327 + - uid: 9353 components: - pos: -67.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9328 + - uid: 9354 components: - pos: -68.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9329 + - uid: 9355 components: - pos: -69.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9330 + - uid: 9356 components: - pos: -70.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9331 + - uid: 9357 components: - pos: -71.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9332 + - uid: 9358 components: - pos: -72.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9333 + - uid: 9359 components: - pos: -73.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9334 + - uid: 9360 components: - pos: -73.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9335 + - uid: 9361 components: - pos: -73.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9336 + - uid: 9362 components: - pos: -73.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9337 + - uid: 9363 components: - pos: -73.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9338 + - uid: 9364 components: - pos: -73.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9339 + - uid: 9365 components: - pos: -73.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9340 + - uid: 9366 components: - pos: -73.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9341 + - uid: 9367 components: - pos: -73.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9342 + - uid: 9368 components: - pos: -73.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9343 + - uid: 9369 components: - pos: -73.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9344 + - uid: 9370 components: - pos: -73.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9345 + - uid: 9371 components: - pos: -73.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9346 + - uid: 9372 components: - pos: -73.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9347 + - uid: 9373 components: - pos: -73.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9348 + - uid: 9374 components: - pos: -72.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9349 + - uid: 9375 components: - pos: -71.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9350 + - uid: 9376 components: - pos: -70.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9351 + - uid: 9377 components: - pos: -69.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9352 + - uid: 9378 components: - pos: -68.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9353 + - uid: 9379 components: - pos: -67.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9354 + - uid: 9380 components: - pos: -66.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9355 + - uid: 9381 components: - pos: -65.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9356 + - uid: 9382 components: - pos: -64.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9357 + - uid: 9383 components: - pos: -63.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9358 + - uid: 9384 components: - pos: -62.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9359 + - uid: 9385 components: - pos: -61.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9360 + - uid: 9386 components: - pos: -60.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9361 + - uid: 9387 components: - pos: -59.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9362 + - uid: 9388 components: - pos: -59.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9363 + - uid: 9389 components: - pos: -59.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9364 + - uid: 9390 components: - pos: -59.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9365 + - uid: 9391 components: - pos: -59.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9366 + - uid: 9392 components: - pos: -59.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9367 + - uid: 9393 components: - pos: -59.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9368 + - uid: 9394 components: - pos: -59.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9369 + - uid: 9395 components: - pos: -59.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9370 + - uid: 9396 components: - pos: -59.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9371 + - uid: 9397 components: - pos: -59.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9372 + - uid: 9398 components: - pos: -59.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9373 + - uid: 9399 components: - pos: -59.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9374 + - uid: 9400 components: - pos: -59.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9375 + - uid: 9401 components: - pos: -50.5,-8.5 parent: 2 type: Transform - - uid: 9376 + - uid: 9402 components: - pos: -51.5,-8.5 parent: 2 type: Transform - - uid: 9377 + - uid: 9403 components: - pos: -52.5,-8.5 parent: 2 type: Transform - - uid: 9378 + - uid: 9404 components: - pos: -53.5,-8.5 parent: 2 type: Transform - - uid: 9379 + - uid: 9405 components: - pos: -53.5,-9.5 parent: 2 type: Transform - - uid: 9380 + - uid: 9406 components: - pos: -53.5,-10.5 parent: 2 type: Transform - - uid: 9381 + - uid: 9407 components: - pos: -53.5,-11.5 parent: 2 type: Transform - - uid: 9382 + - uid: 9408 components: - pos: -53.5,-12.5 parent: 2 type: Transform - - uid: 9383 + - uid: 9409 components: - pos: -53.5,-13.5 parent: 2 type: Transform - - uid: 9384 + - uid: 9410 components: - pos: -53.5,-14.5 parent: 2 type: Transform - - uid: 9385 + - uid: 9411 components: - pos: -53.5,-15.5 parent: 2 type: Transform - - uid: 9386 + - uid: 9412 components: - pos: -53.5,-16.5 parent: 2 type: Transform - - uid: 9387 + - uid: 9413 components: - pos: -51.5,-16.5 parent: 2 type: Transform - - uid: 9388 + - uid: 9414 components: - pos: -52.5,-16.5 parent: 2 type: Transform - - uid: 9389 + - uid: 9415 components: - pos: -50.5,-16.5 parent: 2 type: Transform - - uid: 9390 + - uid: 9416 components: - pos: -50.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9391 + - uid: 9417 components: - pos: -27.5,-37.5 parent: 2 type: Transform - - uid: 9392 + - uid: 9418 components: - pos: -27.5,-36.5 parent: 2 type: Transform - - uid: 9393 + - uid: 9419 components: - pos: -27.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9394 + - uid: 9420 components: - pos: -27.5,-34.5 parent: 2 type: Transform - - uid: 9395 + - uid: 9421 components: - pos: -28.5,-34.5 parent: 2 type: Transform - - uid: 9396 + - uid: 9422 components: - pos: -29.5,-34.5 parent: 2 type: Transform - - uid: 9397 + - uid: 9423 components: - pos: -30.5,-34.5 parent: 2 type: Transform - - uid: 9398 + - uid: 9424 components: - pos: -31.5,-34.5 parent: 2 type: Transform - - uid: 9399 + - uid: 9425 components: - pos: -32.5,-34.5 parent: 2 type: Transform - - uid: 9400 + - uid: 9426 components: - pos: -33.5,-34.5 parent: 2 type: Transform - - uid: 9401 + - uid: 9427 components: - pos: -34.5,-34.5 parent: 2 type: Transform - - uid: 9402 + - uid: 9428 components: - pos: -35.5,-34.5 parent: 2 type: Transform - - uid: 9403 + - uid: 9429 components: - pos: -35.5,-33.5 parent: 2 type: Transform - - uid: 9404 + - uid: 9430 components: - pos: -35.5,-32.5 parent: 2 type: Transform - - uid: 9405 + - uid: 9431 components: - pos: -35.5,-31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9406 + - uid: 9432 components: - pos: -54.5,-13.5 parent: 2 type: Transform - - uid: 9407 + - uid: 9433 components: - pos: -31.5,-54.5 parent: 2 type: Transform - - uid: 9408 + - uid: 9434 components: - pos: -31.5,-55.5 parent: 2 type: Transform - - uid: 9409 + - uid: 9435 components: - pos: -30.5,-55.5 parent: 2 type: Transform - - uid: 9410 + - uid: 9436 components: - pos: -29.5,-55.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9411 + - uid: 9437 components: - pos: -28.5,-55.5 parent: 2 type: Transform - - uid: 9412 + - uid: 9438 components: - pos: -28.5,-56.5 parent: 2 type: Transform - - uid: 9413 + - uid: 9439 components: - pos: -28.5,-57.5 parent: 2 type: Transform - - uid: 9414 + - uid: 9440 components: - pos: -28.5,-58.5 parent: 2 type: Transform - - uid: 9415 + - uid: 9441 components: - pos: -28.5,-59.5 parent: 2 type: Transform - - uid: 9416 + - uid: 9442 components: - pos: -28.5,-60.5 parent: 2 type: Transform - - uid: 9417 + - uid: 9443 components: - pos: -28.5,-61.5 parent: 2 type: Transform - - uid: 9418 + - uid: 9444 components: - pos: -28.5,-62.5 parent: 2 type: Transform - - uid: 9419 + - uid: 9445 components: - pos: -28.5,-63.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9420 + - uid: 9446 components: - pos: -29.5,-63.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9421 + - uid: 9447 components: - pos: -29.5,-64.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9422 + - uid: 9448 components: - pos: -30.5,-63.5 parent: 2 type: Transform - - uid: 9423 + - uid: 9449 components: - pos: 21.5,-8.5 parent: 2 type: Transform - - uid: 9424 + - uid: 9450 components: - pos: 29.5,-28.5 parent: 2 type: Transform - - uid: 9425 + - uid: 9451 components: - pos: -55.5,-89.5 parent: 2 type: Transform - - uid: 9426 + - uid: 9452 components: - pos: -54.5,-89.5 parent: 2 type: Transform - - uid: 9427 + - uid: 9453 components: - pos: -54.5,-88.5 parent: 2 type: Transform - - uid: 9428 + - uid: 9454 components: - pos: -54.5,-87.5 parent: 2 type: Transform - - uid: 9429 + - uid: 9455 components: - pos: -55.5,-87.5 parent: 2 type: Transform - - uid: 9430 + - uid: 9456 components: - pos: -55.5,-86.5 parent: 2 type: Transform - - uid: 9431 + - uid: 9457 components: - pos: -56.5,-86.5 parent: 2 type: Transform - - uid: 9432 + - uid: 9458 components: - pos: -56.5,-85.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9433 + - uid: 9459 components: - pos: -8.5,35.5 parent: 2 type: Transform - - uid: 9434 + - uid: 9460 components: - pos: -8.5,33.5 parent: 2 type: Transform - - uid: 9435 + - uid: 9461 components: - pos: -8.5,34.5 parent: 2 type: Transform - - uid: 9436 + - uid: 9462 components: - pos: -8.5,31.5 parent: 2 type: Transform - - uid: 9437 + - uid: 9463 components: - pos: -8.5,32.5 parent: 2 type: Transform - - uid: 9438 + - uid: 9464 components: - pos: -7.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9439 + - uid: 9465 components: - pos: -6.5,32.5 parent: 2 type: Transform - - uid: 9440 + - uid: 9466 components: - pos: -5.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9441 + - uid: 9467 components: - pos: -4.5,32.5 parent: 2 type: Transform - - uid: 9442 + - uid: 9468 components: - pos: -3.5,32.5 parent: 2 type: Transform - - uid: 9443 + - uid: 9469 components: - pos: -2.5,32.5 parent: 2 type: Transform - - uid: 9444 + - uid: 9470 components: - pos: -1.5,32.5 parent: 2 type: Transform - - uid: 9445 + - uid: 9471 components: - pos: -0.5,32.5 parent: 2 type: Transform - - uid: 9446 + - uid: 9472 components: - pos: 0.5,32.5 parent: 2 type: Transform - - uid: 9447 + - uid: 9473 components: - pos: 0.5,33.5 parent: 2 type: Transform - - uid: 9448 + - uid: 9474 components: - pos: 0.5,34.5 parent: 2 type: Transform - - uid: 9449 + - uid: 9475 components: - pos: 0.5,35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9450 + - uid: 9476 components: - pos: -23.5,15.5 parent: 2 type: Transform - - uid: 9451 + - uid: 9477 components: - pos: -22.5,15.5 parent: 2 type: Transform - - uid: 9452 + - uid: 9478 components: - pos: -21.5,15.5 parent: 2 type: Transform - - uid: 9453 + - uid: 9479 components: - pos: -20.5,15.5 parent: 2 type: Transform - - uid: 9454 + - uid: 9480 components: - pos: -19.5,15.5 parent: 2 type: Transform - - uid: 9455 + - uid: 9481 components: - pos: -19.5,16.5 parent: 2 type: Transform - - uid: 9456 + - uid: 9482 components: - pos: -19.5,17.5 parent: 2 type: Transform - - uid: 9457 + - uid: 9483 components: - pos: -19.5,18.5 parent: 2 type: Transform - - uid: 9458 + - uid: 9484 components: - pos: -19.5,19.5 parent: 2 type: Transform - - uid: 9459 + - uid: 9485 components: - pos: -19.5,20.5 parent: 2 type: Transform - - uid: 9460 + - uid: 9486 components: - pos: -19.5,21.5 parent: 2 type: Transform - - uid: 9461 + - uid: 9487 components: - pos: -20.5,21.5 parent: 2 type: Transform - - uid: 9462 + - uid: 9488 components: - pos: -21.5,21.5 parent: 2 type: Transform - - uid: 9463 + - uid: 9489 components: - pos: -22.5,21.5 parent: 2 type: Transform - - uid: 9464 + - uid: 9490 components: - pos: -23.5,21.5 parent: 2 type: Transform - - uid: 9465 + - uid: 9491 components: - pos: -23.5,22.5 parent: 2 type: Transform - - uid: 9466 + - uid: 9492 components: - pos: -23.5,23.5 parent: 2 type: Transform - - uid: 9467 + - uid: 9493 components: - pos: -23.5,24.5 parent: 2 type: Transform - - uid: 9468 + - uid: 9494 components: - pos: -23.5,25.5 parent: 2 type: Transform - - uid: 9469 + - uid: 9495 components: - pos: -23.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9470 + - uid: 9496 components: - pos: -9.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9471 + - uid: 9497 components: - pos: -34.5,-3.5 parent: 2 type: Transform - - uid: 9472 + - uid: 9498 components: - pos: -34.5,-2.5 parent: 2 type: Transform - - uid: 9473 + - uid: 9499 components: - pos: -35.5,-2.5 parent: 2 type: Transform - - uid: 9474 + - uid: 9500 components: - pos: -36.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9475 + - uid: 9501 components: - pos: -37.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9476 + - uid: 9502 components: - pos: -37.5,-1.5 parent: 2 type: Transform - - uid: 9477 + - uid: 9503 components: - pos: -37.5,-0.5 parent: 2 type: Transform - - uid: 9478 + - uid: 9504 components: - pos: -37.5,0.5 parent: 2 type: Transform - - uid: 9479 + - uid: 9505 components: - pos: -38.5,0.5 parent: 2 type: Transform - - uid: 9480 + - uid: 9506 components: - pos: -39.5,0.5 parent: 2 type: Transform - - uid: 9481 + - uid: 9507 components: - pos: -40.5,0.5 parent: 2 type: Transform - - uid: 9482 + - uid: 9508 components: - pos: -41.5,0.5 parent: 2 type: Transform - - uid: 9483 + - uid: 9509 components: - pos: -42.5,0.5 parent: 2 type: Transform - - uid: 9484 + - uid: 9510 components: - pos: -42.5,1.5 parent: 2 type: Transform - - uid: 9485 + - uid: 9511 components: - pos: -42.5,2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9486 + - uid: 9512 components: - pos: -9.5,25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9487 + - uid: 9513 components: - pos: -6.5,15.5 parent: 2 type: Transform - - uid: 9488 + - uid: 9514 components: - pos: -10.5,16.5 parent: 2 type: Transform - - uid: 9489 + - uid: 9515 components: - pos: -10.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9490 + - uid: 9516 components: - pos: -11.5,18.5 parent: 2 type: Transform - - uid: 9491 + - uid: 9517 components: - pos: -12.5,18.5 parent: 2 type: Transform - - uid: 9492 + - uid: 9518 components: - pos: -12.5,19.5 parent: 2 type: Transform - - uid: 9493 + - uid: 9519 components: - pos: -12.5,20.5 parent: 2 type: Transform - - uid: 9494 + - uid: 9520 components: - pos: -12.5,21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9495 + - uid: 9521 components: - pos: -12.5,22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9496 + - uid: 9522 components: - pos: -12.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9497 + - uid: 9523 components: - pos: -12.5,24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9498 + - uid: 9524 components: - pos: -11.5,24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9499 + - uid: 9525 components: - pos: -10.5,24.5 parent: 2 type: Transform - - uid: 9500 + - uid: 9526 components: - pos: -9.5,24.5 parent: 2 type: Transform - - uid: 9501 + - uid: 9527 components: - pos: -8.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9502 + - uid: 9528 components: - pos: -8.5,27.5 parent: 2 type: Transform - - uid: 9503 + - uid: 9529 components: - pos: -8.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9504 + - uid: 9530 components: - pos: -8.5,29.5 parent: 2 type: Transform - - uid: 9505 + - uid: 9531 components: - pos: -8.5,30.5 parent: 2 type: Transform - - uid: 9506 + - uid: 9532 components: - pos: -55.5,-13.5 parent: 2 type: Transform - - uid: 9507 + - uid: 9533 components: - pos: 33.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9508 + - uid: 9534 components: - pos: 33.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9509 + - uid: 9535 components: - pos: 33.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9510 + - uid: 9536 components: - pos: 34.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9511 + - uid: 9537 components: - pos: 35.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9512 + - uid: 9538 components: - pos: 36.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9513 + - uid: 9539 components: - pos: 36.5,29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9514 + - uid: 9540 components: - pos: 36.5,30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9515 + - uid: 9541 components: - pos: 36.5,31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9516 + - uid: 9542 components: - pos: 36.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9517 + - uid: 9543 components: - pos: 35.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9518 + - uid: 9544 components: - pos: 34.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9519 + - uid: 9545 components: - pos: 36.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9520 + - uid: 9546 components: - pos: 34.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9521 + - uid: 9547 components: - pos: 34.5,34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9522 + - uid: 9548 components: - pos: 33.5,34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9523 + - uid: 9549 components: - pos: 32.5,34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9524 + - uid: 9550 components: - pos: 32.5,35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9525 + - uid: 9551 components: - pos: 32.5,36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9526 + - uid: 9552 components: - pos: 32.5,37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9527 + - uid: 9553 components: - pos: 33.5,37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9528 + - uid: 9554 components: - pos: 31.5,37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9529 + - uid: 9555 components: - pos: 30.5,37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9530 + - uid: 9556 components: - pos: 29.5,37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9531 + - uid: 9557 components: - pos: 28.5,37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9532 + - uid: 9558 components: - pos: 27.5,37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9533 + - uid: 9559 components: - pos: 26.5,37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9534 + - uid: 9560 components: - pos: 25.5,37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9535 + - uid: 9561 components: - pos: 24.5,37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9536 + - uid: 9562 components: - pos: 23.5,37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9537 + - uid: 9563 components: - pos: 22.5,37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9538 + - uid: 9564 components: - pos: 21.5,37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9539 + - uid: 9565 components: - pos: 26.5,36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9540 + - uid: 9566 components: - pos: 26.5,35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9541 + - uid: 9567 components: - pos: 26.5,34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9542 + - uid: 9568 components: - pos: 25.5,34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9543 + - uid: 9569 components: - pos: 24.5,34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9544 + - uid: 9570 components: - pos: 23.5,34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9545 + - uid: 9571 components: - pos: 22.5,34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9546 + - uid: 9572 components: - pos: 22.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9547 + - uid: 9573 components: - pos: 22.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9548 + - uid: 9574 components: - pos: 22.5,31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9549 + - uid: 9575 components: - pos: 22.5,30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9550 + - uid: 9576 components: - pos: 22.5,29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9551 + - uid: 9577 components: - pos: 22.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9552 + - uid: 9578 components: - pos: 22.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9553 + - uid: 9579 components: - pos: 22.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9554 + - uid: 9580 components: - pos: 34.5,37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9555 + - uid: 9581 components: - pos: 35.5,37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9556 + - uid: 9582 components: - pos: 36.5,37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9557 + - uid: 9583 components: - pos: 36.5,36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9558 + - uid: 9584 components: - pos: 49.5,-46.5 parent: 2 type: Transform - - uid: 9559 + - uid: 9585 components: - pos: 49.5,-47.5 parent: 2 type: Transform - - uid: 9560 + - uid: 9586 components: - pos: 49.5,-48.5 parent: 2 type: Transform - - uid: 9561 + - uid: 9587 components: - pos: 48.5,-48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9562 + - uid: 9588 components: - pos: -31.5,-63.5 parent: 2 type: Transform - - uid: 9563 + - uid: 9589 components: - pos: -32.5,-63.5 parent: 2 type: Transform - - uid: 9564 + - uid: 9590 components: - pos: -33.5,-63.5 parent: 2 type: Transform - - uid: 9565 + - uid: 9591 components: - pos: -34.5,-63.5 parent: 2 type: Transform - - uid: 9566 + - uid: 9592 components: - pos: -34.5,-64.5 parent: 2 type: Transform - - uid: 9567 + - uid: 9593 components: - pos: -34.5,-65.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9568 + - uid: 9594 components: - pos: -35.5,-65.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9569 + - uid: 9595 components: - pos: -36.5,-65.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9570 + - uid: 9596 components: - pos: -37.5,-65.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9571 + - uid: 9597 components: - pos: -37.5,-66.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9572 + - uid: 9598 components: - pos: -37.5,-67.5 parent: 2 type: Transform - - uid: 9573 + - uid: 9599 components: - pos: -37.5,-68.5 parent: 2 type: Transform - - uid: 9574 + - uid: 9600 components: - pos: -38.5,-68.5 parent: 2 type: Transform - - uid: 9575 + - uid: 9601 components: - pos: -39.5,-68.5 parent: 2 type: Transform - - uid: 9576 + - uid: 9602 components: - pos: -39.5,-69.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9577 + - uid: 9603 components: - pos: -10.5,-58.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9578 + - uid: 9604 components: - pos: -9.5,-58.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9579 + - uid: 9605 components: - pos: -8.5,-58.5 parent: 2 type: Transform - - uid: 9580 + - uid: 9606 components: - pos: -8.5,-57.5 parent: 2 type: Transform - - uid: 9581 + - uid: 9607 components: - pos: -8.5,-56.5 parent: 2 type: Transform - - uid: 9582 + - uid: 9608 components: - pos: -7.5,-56.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9583 + - uid: 9609 components: - pos: -6.5,-56.5 parent: 2 type: Transform - - uid: 9584 + - uid: 9610 components: - pos: -5.5,-56.5 parent: 2 type: Transform - - uid: 9585 + - uid: 9611 components: - pos: -4.5,-56.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9586 + - uid: 9612 components: - pos: -3.5,-56.5 parent: 2 type: Transform - - uid: 9587 + - uid: 9613 components: - pos: -2.5,-56.5 parent: 2 type: Transform - - uid: 9588 + - uid: 9614 components: - pos: -1.5,-56.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9589 + - uid: 9615 components: - pos: -0.5,-56.5 parent: 2 type: Transform - - uid: 9590 + - uid: 9616 components: - pos: 0.5,-56.5 parent: 2 type: Transform - - uid: 9591 + - uid: 9617 components: - pos: 1.5,-56.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9592 + - uid: 9618 components: - pos: 2.5,-56.5 parent: 2 type: Transform - - uid: 9593 + - uid: 9619 components: - pos: 3.5,-56.5 parent: 2 type: Transform - - uid: 9594 + - uid: 9620 components: - pos: 4.5,-56.5 parent: 2 type: Transform - - uid: 9595 + - uid: 9621 components: - pos: 5.5,-56.5 parent: 2 type: Transform - - uid: 9596 + - uid: 9622 components: - pos: 6.5,-56.5 parent: 2 type: Transform - - uid: 9597 + - uid: 9623 components: - pos: 6.5,-55.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9598 + - uid: 9624 components: - pos: 6.5,-54.5 parent: 2 type: Transform - - uid: 9599 + - uid: 9625 components: - pos: 6.5,-53.5 parent: 2 type: Transform - - uid: 9600 + - uid: 9626 components: - pos: 34.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9601 + - uid: 9627 components: - pos: 35.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9602 + - uid: 9628 components: - pos: 35.5,22.5 parent: 2 type: Transform - - uid: 9603 + - uid: 9629 components: - pos: 36.5,22.5 parent: 2 type: Transform - - uid: 9604 + - uid: 9630 components: - pos: 37.5,22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9605 + - uid: 9631 components: - pos: 37.5,20.5 parent: 2 type: Transform - - uid: 9606 + - uid: 9632 components: - pos: 37.5,19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9607 + - uid: 9633 components: - pos: 37.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9608 + - uid: 9634 components: - pos: 38.5,18.5 parent: 2 type: Transform - - uid: 9609 + - uid: 9635 components: - pos: 38.5,17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9610 + - uid: 9636 components: - pos: 29.5,-27.5 parent: 2 type: Transform - - uid: 9611 + - uid: 9637 components: - pos: 50.5,29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9612 + - uid: 9638 components: - pos: 50.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9613 + - uid: 9639 components: - pos: 49.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9614 + - uid: 9640 components: - pos: 48.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9615 + - uid: 9641 components: - pos: 48.5,29.5 parent: 2 type: Transform - - uid: 9616 + - uid: 9642 components: - pos: 48.5,30.5 parent: 2 type: Transform - - uid: 9617 + - uid: 9643 components: - pos: 48.5,31.5 parent: 2 type: Transform - - uid: 9618 + - uid: 9644 components: - pos: 49.5,31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9619 + - uid: 9645 components: - pos: 50.5,31.5 parent: 2 type: Transform - - uid: 9620 + - uid: 9646 components: - pos: 51.5,31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9621 + - uid: 9647 components: - pos: 52.5,31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9622 + - uid: 9648 components: - pos: 52.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9623 + - uid: 9649 components: - pos: 52.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9624 + - uid: 9650 components: - pos: 52.5,34.5 parent: 2 type: Transform - - uid: 9625 + - uid: 9651 components: - pos: 52.5,35.5 parent: 2 type: Transform - - uid: 9626 + - uid: 9652 components: - pos: 52.5,36.5 parent: 2 type: Transform - - uid: 9627 + - uid: 9653 components: - pos: 52.5,37.5 parent: 2 type: Transform - - uid: 9628 + - uid: 9654 components: - pos: 52.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9629 + - uid: 9655 components: - pos: 52.5,39.5 parent: 2 type: Transform - - uid: 9630 + - uid: 9656 components: - pos: 52.5,40.5 parent: 2 type: Transform - - uid: 9631 + - uid: 9657 components: - pos: 52.5,41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9632 + - uid: 9658 components: - pos: 52.5,42.5 parent: 2 type: Transform - - uid: 9633 + - uid: 9659 components: - pos: 53.5,42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9634 + - uid: 9660 components: - pos: 54.5,42.5 parent: 2 type: Transform - - uid: 9635 + - uid: 9661 components: - pos: 55.5,42.5 parent: 2 type: Transform - - uid: 9636 + - uid: 9662 components: - pos: 56.5,42.5 parent: 2 type: Transform - - uid: 9637 + - uid: 9663 components: - pos: 57.5,42.5 parent: 2 type: Transform - - uid: 9638 + - uid: 9664 components: - pos: 58.5,42.5 parent: 2 type: Transform - - uid: 9639 + - uid: 9665 components: - pos: 58.5,43.5 parent: 2 type: Transform - - uid: 9640 + - uid: 9666 components: - pos: 59.5,43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9641 + - uid: 9667 components: - pos: -19.5,26.5 parent: 2 type: Transform - - uid: 9642 + - uid: 9668 components: - pos: -19.5,27.5 parent: 2 type: Transform - - uid: 9643 + - uid: 9669 components: - pos: -19.5,28.5 parent: 2 type: Transform - - uid: 9644 + - uid: 9670 components: - pos: -19.5,29.5 parent: 2 type: Transform - - uid: 9645 + - uid: 9671 components: - pos: -18.5,29.5 parent: 2 type: Transform - - uid: 9646 + - uid: 9672 components: - pos: -17.5,29.5 parent: 2 type: Transform - - uid: 9647 + - uid: 9673 components: - pos: -16.5,29.5 parent: 2 type: Transform - - uid: 9648 + - uid: 9674 components: - pos: -15.5,29.5 parent: 2 type: Transform - - uid: 9649 + - uid: 9675 components: - pos: -15.5,30.5 parent: 2 type: Transform - - uid: 9650 + - uid: 9676 components: - pos: -15.5,31.5 parent: 2 type: Transform - - uid: 9651 + - uid: 9677 components: - pos: -15.5,32.5 parent: 2 type: Transform - - uid: 9652 + - uid: 9678 components: - pos: -15.5,33.5 parent: 2 type: Transform - - uid: 9653 + - uid: 9679 components: - pos: -15.5,34.5 parent: 2 type: Transform - - uid: 9654 + - uid: 9680 components: - pos: -15.5,35.5 parent: 2 type: Transform - - uid: 9655 + - uid: 9681 components: - pos: -15.5,36.5 parent: 2 type: Transform - - uid: 9656 + - uid: 9682 components: - pos: -15.5,37.5 parent: 2 type: Transform - - uid: 9657 + - uid: 9683 components: - pos: -15.5,38.5 parent: 2 type: Transform - - uid: 9658 + - uid: 9684 components: - pos: -15.5,39.5 parent: 2 type: Transform - - uid: 9659 + - uid: 9685 components: - pos: -15.5,40.5 parent: 2 type: Transform - - uid: 9660 + - uid: 9686 components: - pos: -15.5,41.5 parent: 2 type: Transform - - uid: 9661 + - uid: 9687 components: - pos: -15.5,42.5 parent: 2 type: Transform - - uid: 9662 + - uid: 9688 components: - pos: -10.5,62.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9663 + - uid: 9689 components: - pos: -10.5,61.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9664 + - uid: 9690 components: - pos: -10.5,60.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9665 + - uid: 9691 components: - pos: -10.5,59.5 parent: 2 type: Transform - - uid: 9666 + - uid: 9692 components: - pos: -9.5,59.5 parent: 2 type: Transform - - uid: 9667 + - uid: 9693 components: - pos: -8.5,59.5 parent: 2 type: Transform - - uid: 9668 + - uid: 9694 components: - pos: -8.5,60.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9669 + - uid: 9695 components: - pos: 40.5,-61.5 parent: 2 type: Transform - - uid: 9670 + - uid: 9696 components: - pos: 40.5,-63.5 parent: 2 type: Transform - - uid: 9671 + - uid: 9697 components: - pos: 48.5,-65.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9672 + - uid: 9698 components: - pos: 51.5,-65.5 parent: 2 type: Transform - - uid: 9673 + - uid: 9699 components: - pos: 50.5,-65.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9674 + - uid: 9700 components: - pos: 49.5,-65.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9675 + - uid: 9701 components: - pos: 40.5,-64.5 parent: 2 type: Transform - - uid: 9676 + - uid: 9702 components: - pos: 41.5,-64.5 parent: 2 type: Transform - - uid: 9677 + - uid: 9703 components: - pos: 52.5,-65.5 parent: 2 type: Transform - - uid: 9678 + - uid: 9704 components: - pos: 53.5,-65.5 parent: 2 type: Transform - - uid: 9679 + - uid: 9705 components: - pos: 54.5,-65.5 parent: 2 type: Transform - - uid: 9680 + - uid: 9706 components: - pos: 55.5,-65.5 parent: 2 type: Transform - - uid: 9681 + - uid: 9707 components: - pos: 55.5,-64.5 parent: 2 type: Transform - - uid: 9682 + - uid: 9708 components: - pos: 55.5,-63.5 parent: 2 type: Transform - - uid: 9683 + - uid: 9709 components: - pos: 55.5,-62.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9684 + - uid: 9710 components: - pos: 68.5,-60.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9685 + - uid: 9711 components: - pos: 68.5,-61.5 parent: 2 type: Transform - - uid: 9686 + - uid: 9712 components: - pos: 69.5,-61.5 parent: 2 type: Transform - - uid: 9687 + - uid: 9713 components: - pos: 70.5,-61.5 parent: 2 type: Transform - - uid: 9688 + - uid: 9714 components: - pos: 71.5,-61.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9689 + - uid: 9715 components: - pos: 71.5,-60.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9690 + - uid: 9716 components: - pos: 71.5,-59.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9691 + - uid: 9717 components: - pos: 71.5,-58.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9692 + - uid: 9718 components: - pos: 71.5,-57.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9693 + - uid: 9719 components: - pos: 72.5,-57.5 parent: 2 type: Transform - - uid: 9694 + - uid: 9720 components: - pos: 73.5,-57.5 parent: 2 type: Transform - - uid: 9695 + - uid: 9721 components: - pos: 74.5,-57.5 parent: 2 type: Transform - - uid: 9696 + - uid: 9722 components: - pos: 74.5,-56.5 parent: 2 type: Transform - - uid: 9697 + - uid: 9723 components: - pos: 74.5,-55.5 parent: 2 type: Transform - - uid: 9698 + - uid: 9724 components: - pos: 74.5,-54.5 parent: 2 type: Transform - - uid: 9699 + - uid: 9725 components: - pos: 75.5,-54.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9700 + - uid: 9726 components: - pos: 75.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9701 + - uid: 9727 components: - pos: 75.5,-52.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9702 + - uid: 9728 components: - pos: 75.5,-51.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9703 + - uid: 9729 components: - pos: 75.5,-50.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9704 + - uid: 9730 components: - pos: 75.5,-49.5 parent: 2 type: Transform - - uid: 9705 + - uid: 9731 components: - pos: 75.5,-48.5 parent: 2 type: Transform - - uid: 9706 + - uid: 9732 components: - pos: 75.5,-47.5 parent: 2 type: Transform - - uid: 9707 + - uid: 9733 components: - pos: 75.5,-46.5 parent: 2 type: Transform - - uid: 9708 + - uid: 9734 components: - pos: 75.5,-45.5 parent: 2 type: Transform - - uid: 9709 + - uid: 9735 components: - pos: 74.5,-45.5 parent: 2 type: Transform - - uid: 9710 + - uid: 9736 components: - pos: 73.5,-45.5 parent: 2 type: Transform - - uid: 9711 + - uid: 9737 components: - pos: 72.5,-45.5 parent: 2 type: Transform - - uid: 9712 + - uid: 9738 components: - pos: 71.5,-45.5 parent: 2 type: Transform - - uid: 9713 + - uid: 9739 components: - pos: 71.5,-44.5 parent: 2 type: Transform - - uid: 9714 + - uid: 9740 components: - pos: 71.5,-43.5 parent: 2 type: Transform - - uid: 9715 + - uid: 9741 components: - pos: 71.5,-42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9716 + - uid: 9742 components: - pos: 4.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9717 + - uid: 9743 components: - pos: 7.5,-19.5 parent: 2 type: Transform - - uid: 9718 + - uid: 9744 components: - pos: 5.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9719 + - uid: 9745 components: - pos: 7.5,-20.5 parent: 2 type: Transform - - uid: 9720 + - uid: 9746 components: - pos: 8.5,-20.5 parent: 2 type: Transform - - uid: 9721 + - uid: 9747 components: - pos: 9.5,-20.5 parent: 2 type: Transform - - uid: 9722 + - uid: 9748 components: - pos: 10.5,-20.5 parent: 2 type: Transform - - uid: 9723 + - uid: 9749 components: - pos: 11.5,-20.5 parent: 2 type: Transform - - uid: 9724 + - uid: 9750 components: - pos: 11.5,-19.5 parent: 2 type: Transform - - uid: 9725 + - uid: 9751 components: - pos: 11.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9726 + - uid: 9752 components: - pos: 6.5,-49.5 parent: 2 type: Transform - - uid: 9727 + - uid: 9753 components: - pos: 7.5,-49.5 parent: 2 type: Transform - - uid: 9728 + - uid: 9754 components: - pos: 9.5,-49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9729 + - uid: 9755 components: - pos: 8.5,-49.5 parent: 2 type: Transform - - uid: 9730 + - uid: 9756 components: - pos: 31.5,35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9731 + - uid: 9757 components: - pos: 30.5,35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9732 + - uid: 9758 components: - pos: 29.5,35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9733 + - uid: 9759 components: - pos: 28.5,35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9734 + - uid: 9760 components: - pos: 27.5,35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9735 + - uid: 9761 components: - pos: -10.5,17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9736 + - uid: 9762 components: - pos: -8.5,15.5 parent: 2 type: Transform - - uid: 9737 + - uid: 9763 components: - pos: -9.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9738 + - uid: 9764 components: - pos: -7.5,15.5 parent: 2 type: Transform - - uid: 9739 + - uid: 9765 components: - pos: -65.5,-54.5 parent: 2 type: Transform - - uid: 9740 + - uid: 9766 components: - pos: -66.5,-54.5 parent: 2 type: Transform - - uid: 9741 + - uid: 9767 components: - pos: -66.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9742 + - uid: 9768 components: - pos: -67.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9743 + - uid: 9769 components: - pos: -68.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9744 + - uid: 9770 components: - pos: -69.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9745 + - uid: 9771 components: - pos: -70.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9746 + - uid: 9772 components: - pos: -71.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9747 + - uid: 9773 components: - pos: -72.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9748 + - uid: 9774 components: - pos: -73.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9749 + - uid: 9775 components: - pos: -73.5,-52.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9750 + - uid: 9776 components: - pos: -74.5,-52.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9751 + - uid: 9777 components: - pos: -74.5,-51.5 parent: 2 type: Transform - - uid: 9752 + - uid: 9778 components: - pos: -74.5,-50.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9753 + - uid: 9779 components: - pos: -67.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9754 + - uid: 9780 components: - pos: -69.5,-34.5 parent: 2 type: Transform - - uid: 9755 + - uid: 9781 components: - pos: -68.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9756 + - uid: 9782 components: - pos: -66.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9757 + - uid: 9783 components: - pos: -66.5,-36.5 parent: 2 type: Transform - - uid: 9758 + - uid: 9784 components: - pos: -72.5,-35.5 parent: 2 type: Transform - - uid: 9759 + - uid: 9785 components: - pos: -71.5,-35.5 parent: 2 type: Transform - - uid: 9760 + - uid: 9786 components: - pos: -70.5,-35.5 parent: 2 type: Transform - - uid: 9761 + - uid: 9787 components: - pos: -70.5,-34.5 parent: 2 type: Transform - - uid: 9762 + - uid: 9788 components: - pos: -69.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9763 + - uid: 9789 components: - pos: -70.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9764 + - uid: 9790 components: - pos: -72.5,-37.5 parent: 2 type: Transform - - uid: 9765 + - uid: 9791 components: - pos: -72.5,-36.5 parent: 2 type: Transform - - uid: 9766 + - uid: 9792 components: - pos: -71.5,-38.5 parent: 2 type: Transform - - uid: 9767 + - uid: 9793 components: - pos: -70.5,-38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9768 + - uid: 9794 components: - pos: -66.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9769 + - uid: 9795 components: - pos: 46.5,1.5 parent: 2 type: Transform - - uid: 9770 + - uid: 9796 components: - pos: 46.5,2.5 parent: 2 type: Transform - - uid: 9771 + - uid: 9797 components: - pos: 46.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9772 + - uid: 9798 components: - pos: 46.5,4.5 parent: 2 type: Transform - - uid: 9773 + - uid: 9799 components: - pos: 47.5,4.5 parent: 2 type: Transform - - uid: 9774 + - uid: 9800 components: - pos: 47.5,5.5 parent: 2 type: Transform - - uid: 9775 + - uid: 9801 components: - pos: 47.5,6.5 parent: 2 type: Transform - - uid: 9776 + - uid: 9802 components: - pos: 48.5,6.5 parent: 2 type: Transform - - uid: 9777 + - uid: 9803 components: - pos: 48.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9778 + - uid: 9804 components: - pos: 46.5,6.5 parent: 2 type: Transform - - uid: 9779 + - uid: 9805 components: - pos: 46.5,7.5 parent: 2 type: Transform - - uid: 9780 + - uid: 9806 components: - pos: 46.5,8.5 parent: 2 type: Transform - - uid: 9781 + - uid: 9807 components: - pos: 46.5,9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9782 + - uid: 9808 components: - pos: 45.5,9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9783 + - uid: 9809 components: - pos: 21.5,-39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9784 + - uid: 9810 components: - pos: 4.5,-1.5 parent: 2 type: Transform - - uid: 9785 + - uid: 9811 components: - pos: 3.5,-2.5 parent: 2 type: Transform - - uid: 9786 + - uid: 9812 components: - pos: 11.5,-16.5 parent: 2 type: Transform - - uid: 9787 + - uid: 9813 components: - pos: 9.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9788 + - uid: 9814 components: - pos: 9.5,-19.5 parent: 2 type: Transform - - uid: 9789 + - uid: 9815 components: - pos: 2.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9790 + - uid: 9816 components: - pos: 1.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9791 + - uid: 9817 components: - pos: 3.5,-1.5 parent: 2 type: Transform - - uid: 9792 + - uid: 9818 components: - pos: 10.5,-4.5 parent: 2 type: Transform - - uid: 9793 + - uid: 9819 components: - pos: -0.5,-6.5 parent: 2 type: Transform - - uid: 9794 + - uid: 9820 components: - pos: 10.5,-3.5 parent: 2 type: Transform - - uid: 9795 + - uid: 9821 components: - pos: 1.5,-6.5 parent: 2 type: Transform - - uid: 9796 + - uid: 9822 components: - pos: 1.5,-4.5 parent: 2 type: Transform - - uid: 9797 + - uid: 9823 components: - pos: 0.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9798 + - uid: 9824 components: - pos: 23.5,-38.5 parent: 2 type: Transform - - uid: 9799 + - uid: 9825 components: - pos: 23.5,-39.5 parent: 2 type: Transform - - uid: 9800 + - uid: 9826 components: - pos: 23.5,-40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9801 + - uid: 9827 components: - pos: 24.5,-40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9802 + - uid: 9828 components: - pos: 25.5,-40.5 parent: 2 type: Transform - - uid: 9803 + - uid: 9829 components: - pos: 26.5,-40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9804 + - uid: 9830 components: - pos: 27.5,-40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9805 + - uid: 9831 components: - pos: 10.5,-16.5 parent: 2 type: Transform - - uid: 9806 + - uid: 9832 components: - pos: 4.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9807 + - uid: 9833 components: - pos: 4.5,-13.5 parent: 2 type: Transform - - uid: 9808 + - uid: 9834 components: - pos: 9.5,-16.5 parent: 2 type: Transform - - uid: 9809 + - uid: 9835 components: - pos: 4.5,-12.5 parent: 2 type: Transform - - uid: 9810 + - uid: 9836 components: - pos: 5.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9811 + - uid: 9837 components: - pos: 4.5,-11.5 parent: 2 type: Transform - - uid: 9812 + - uid: 9838 components: - pos: 8.5,-16.5 parent: 2 type: Transform - - uid: 9813 + - uid: 9839 components: - pos: 12.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9814 + - uid: 9840 components: - pos: 5.5,-11.5 parent: 2 type: Transform - - uid: 9815 + - uid: 9841 components: - pos: 22.5,-30.5 parent: 2 type: Transform - - uid: 9816 + - uid: 9842 components: - pos: 22.5,-31.5 parent: 2 type: Transform - - uid: 9817 + - uid: 9843 components: - pos: 23.5,-30.5 parent: 2 type: Transform - - uid: 9818 + - uid: 9844 components: - pos: 24.5,-30.5 parent: 2 type: Transform - - uid: 9819 + - uid: 9845 components: - pos: 24.5,-29.5 parent: 2 type: Transform - - uid: 9820 + - uid: 9846 components: - pos: -56.5,-22.5 parent: 2 type: Transform - - uid: 9821 + - uid: 9847 components: - pos: -56.5,-23.5 parent: 2 type: Transform - - uid: 9822 + - uid: 9848 components: - pos: -64.5,-24.5 parent: 2 type: Transform - - uid: 9823 + - uid: 9849 components: - pos: -64.5,-25.5 parent: 2 type: Transform - - uid: 9824 + - uid: 9850 components: - pos: -65.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9825 + - uid: 9851 components: - pos: -66.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9826 + - uid: 9852 components: - pos: -66.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 9827 + - uid: 9853 components: - pos: -63.5,-24.5 parent: 2 type: Transform - - uid: 9828 + - uid: 9854 components: - pos: -62.5,-24.5 parent: 2 type: Transform - - uid: 9829 + - uid: 9855 components: - pos: -61.5,-24.5 parent: 2 type: Transform - - uid: 9830 + - uid: 9856 components: - pos: -60.5,-24.5 parent: 2 type: Transform - - uid: 9831 + - uid: 9857 components: - pos: -59.5,-24.5 parent: 2 type: Transform - - uid: 9832 + - uid: 9858 components: - pos: -58.5,-24.5 parent: 2 type: Transform - - uid: 9833 + - uid: 9859 components: - pos: -57.5,-24.5 parent: 2 type: Transform - - uid: 9834 + - uid: 9860 components: - pos: -56.5,-24.5 parent: 2 type: Transform - - uid: 9835 + - uid: 9861 components: - pos: -55.5,-24.5 parent: 2 type: Transform - - uid: 9836 + - uid: 9862 components: - pos: -54.5,-24.5 parent: 2 type: Transform - - uid: 9837 + - uid: 9863 components: - pos: -54.5,-23.5 parent: 2 type: Transform - - uid: 9838 + - uid: 9864 components: - pos: -54.5,-22.5 parent: 2 type: Transform - - uid: 9839 + - uid: 9865 components: - pos: -54.5,-21.5 parent: 2 type: Transform - - uid: 9840 + - uid: 9866 components: - pos: -54.5,-20.5 parent: 2 type: Transform - - uid: 9841 + - uid: 9867 components: - pos: -54.5,-19.5 parent: 2 type: Transform - - uid: 9842 + - uid: 9868 components: - pos: -54.5,-18.5 parent: 2 type: Transform - - uid: 9843 + - uid: 9869 components: - pos: -55.5,-18.5 parent: 2 type: Transform - - uid: 9844 + - uid: 9870 components: - pos: -56.5,-18.5 parent: 2 type: Transform - - uid: 9845 + - uid: 9871 components: - pos: -57.5,-18.5 parent: 2 type: Transform - - uid: 9846 + - uid: 9872 components: - pos: -58.5,-18.5 parent: 2 type: Transform - proto: CableMVStack entities: - - uid: 9847 + - uid: 9873 components: - pos: -39.41842,-18.34842 parent: 2 type: Transform - - uid: 9848 + - uid: 9874 components: - pos: -36.572292,-8.416974 parent: 2 type: Transform - proto: CableTerminal entities: - - uid: 9849 + - uid: 9875 components: - rot: 1.5707963267948966 rad pos: -70.5,-35.5 parent: 2 type: Transform - - uid: 9850 + - uid: 9876 components: - rot: 3.141592653589793 rad pos: -2.5,-79.5 parent: 2 type: Transform - - uid: 9851 + - uid: 9877 components: - pos: 48.5,-2.5 parent: 2 type: Transform - - uid: 9852 + - uid: 9878 components: - pos: -48.5,-20.5 parent: 2 type: Transform - - uid: 9853 + - uid: 9879 components: - pos: -46.5,-20.5 parent: 2 type: Transform - - uid: 9854 + - uid: 9880 components: - pos: -44.5,-20.5 parent: 2 type: Transform - - uid: 9855 + - uid: 9881 components: - rot: 1.5707963267948966 rad pos: -51.5,-9.5 parent: 2 type: Transform - - uid: 9856 + - uid: 9882 components: - rot: 3.141592653589793 rad pos: -56.5,-21.5 parent: 2 type: Transform - - uid: 9857 + - uid: 9883 components: - pos: -28.5,-36.5 parent: 2 type: Transform - - uid: 9858 + - uid: 9884 components: - rot: 1.5707963267948966 rad pos: -56.5,-88.5 parent: 2 type: Transform - - uid: 9859 + - uid: 9885 components: - rot: -1.5707963267948966 rad pos: 74.5,38.5 parent: 2 type: Transform - - uid: 9860 + - uid: 9886 components: - rot: -1.5707963267948966 rad pos: 74.5,34.5 parent: 2 type: Transform - - uid: 9861 + - uid: 9887 components: - rot: 3.141592653589793 rad pos: -0.5,-79.5 parent: 2 type: Transform - - uid: 9862 + - uid: 9888 components: - pos: -74.5,-29.5 parent: 2 type: Transform - - uid: 9863 + - uid: 9889 components: - pos: -72.5,-29.5 parent: 2 type: Transform - - uid: 9864 + - uid: 9890 components: - pos: -70.5,-29.5 parent: 2 type: Transform - - uid: 9865 + - uid: 9891 components: - rot: 3.141592653589793 rad pos: 4.5,-21.5 parent: 2 type: Transform - - uid: 9866 + - uid: 9892 components: - pos: -65.5,-52.5 parent: 2 type: Transform - proto: CannabisSeeds entities: - - uid: 9867 + - uid: 9893 components: - rot: 3.141592653589793 rad pos: -55.50433,-67.64641 parent: 2 type: Transform - - uid: 9868 + - uid: 9894 components: - rot: 1.5707963267948966 rad pos: -55.707455,-67.38078 @@ -66637,542 +62192,542 @@ entities: type: Transform - proto: CapacitorStockPart entities: - - uid: 9869 + - uid: 9895 components: - pos: 38.490074,-35.297806 parent: 2 type: Transform - - uid: 9870 + - uid: 9896 components: - pos: 38.302574,-35.672806 parent: 2 type: Transform - - uid: 9871 + - uid: 9897 components: - pos: 38.521324,-35.53218 parent: 2 type: Transform - - uid: 9872 + - uid: 9898 components: - pos: -50.47893,-28.448412 parent: 2 type: Transform - proto: CaptainIDCard entities: - - uid: 9873 + - uid: 9899 components: - pos: 30.440884,-27.198164 parent: 2 type: Transform - proto: CarbonDioxideCanister entities: - - uid: 9874 + - uid: 9900 components: - pos: -40.5,-38.5 parent: 2 type: Transform - - uid: 9875 + - uid: 9901 components: - pos: -50.5,-50.5 parent: 2 type: Transform - - uid: 9876 + - uid: 9902 components: - pos: -52.5,-62.5 parent: 2 type: Transform - - uid: 9877 + - uid: 9903 components: - pos: -76.5,-45.5 parent: 2 type: Transform - - uid: 9878 + - uid: 9904 components: - pos: 46.5,-54.5 parent: 2 type: Transform - proto: Carpet entities: - - uid: 9879 + - uid: 9905 components: - rot: 3.141592653589793 rad pos: 5.5,20.5 parent: 2 type: Transform - - uid: 9880 + - uid: 9906 components: - rot: 3.141592653589793 rad pos: 4.5,22.5 parent: 2 type: Transform - - uid: 9881 + - uid: 9907 components: - rot: 3.141592653589793 rad pos: 4.5,21.5 parent: 2 type: Transform - - uid: 9882 + - uid: 9908 components: - rot: 3.141592653589793 rad pos: 4.5,20.5 parent: 2 type: Transform - - uid: 9883 + - uid: 9909 components: - rot: 3.141592653589793 rad pos: 6.5,22.5 parent: 2 type: Transform - - uid: 9884 + - uid: 9910 components: - rot: 3.141592653589793 rad pos: 6.5,21.5 parent: 2 type: Transform - - uid: 9885 + - uid: 9911 components: - rot: 3.141592653589793 rad pos: 6.5,20.5 parent: 2 type: Transform - - uid: 9886 + - uid: 9912 components: - rot: 3.141592653589793 rad pos: 7.5,22.5 parent: 2 type: Transform - - uid: 9887 + - uid: 9913 components: - rot: 3.141592653589793 rad pos: 7.5,21.5 parent: 2 type: Transform - - uid: 9888 + - uid: 9914 components: - rot: 3.141592653589793 rad pos: 7.5,20.5 parent: 2 type: Transform - - uid: 9889 + - uid: 9915 components: - rot: 3.141592653589793 rad pos: 8.5,22.5 parent: 2 type: Transform - - uid: 9890 + - uid: 9916 components: - rot: 3.141592653589793 rad pos: 8.5,21.5 parent: 2 type: Transform - - uid: 9891 + - uid: 9917 components: - rot: 3.141592653589793 rad pos: 8.5,20.5 parent: 2 type: Transform - - uid: 9892 + - uid: 9918 components: - pos: 39.5,-5.5 parent: 2 type: Transform - - uid: 9893 + - uid: 9919 components: - pos: 43.5,-5.5 parent: 2 type: Transform - - uid: 9894 + - uid: 9920 components: - pos: 44.5,-5.5 parent: 2 type: Transform - - uid: 9895 + - uid: 9921 components: - pos: 42.5,-5.5 parent: 2 type: Transform - - uid: 9896 + - uid: 9922 components: - pos: 42.5,-2.5 parent: 2 type: Transform - - uid: 9897 + - uid: 9923 components: - pos: 42.5,-3.5 parent: 2 type: Transform - - uid: 9898 + - uid: 9924 components: - pos: 42.5,-4.5 parent: 2 type: Transform - - uid: 9899 + - uid: 9925 components: - pos: 43.5,-2.5 parent: 2 type: Transform - - uid: 9900 + - uid: 9926 components: - pos: 43.5,-3.5 parent: 2 type: Transform - - uid: 9901 + - uid: 9927 components: - pos: 43.5,-4.5 parent: 2 type: Transform - - uid: 9902 + - uid: 9928 components: - pos: 44.5,-2.5 parent: 2 type: Transform - - uid: 9903 + - uid: 9929 components: - pos: 44.5,-3.5 parent: 2 type: Transform - - uid: 9904 + - uid: 9930 components: - pos: 44.5,-4.5 parent: 2 type: Transform - - uid: 9905 + - uid: 9931 components: - pos: 37.5,-2.5 parent: 2 type: Transform - - uid: 9906 + - uid: 9932 components: - pos: 38.5,-2.5 parent: 2 type: Transform - - uid: 9907 + - uid: 9933 components: - pos: 39.5,-2.5 parent: 2 type: Transform - - uid: 9908 + - uid: 9934 components: - pos: 37.5,-3.5 parent: 2 type: Transform - - uid: 9909 + - uid: 9935 components: - pos: 37.5,-4.5 parent: 2 type: Transform - - uid: 9910 + - uid: 9936 components: - pos: 38.5,-3.5 parent: 2 type: Transform - - uid: 9911 + - uid: 9937 components: - pos: 38.5,-4.5 parent: 2 type: Transform - - uid: 9912 + - uid: 9938 components: - pos: 39.5,-3.5 parent: 2 type: Transform - - uid: 9913 + - uid: 9939 components: - pos: 39.5,-4.5 parent: 2 type: Transform - - uid: 9914 + - uid: 9940 components: - pos: 38.5,-5.5 parent: 2 type: Transform - - uid: 9915 + - uid: 9941 components: - pos: 37.5,-5.5 parent: 2 type: Transform - - uid: 9916 + - uid: 9942 components: - rot: 3.141592653589793 rad pos: 28.5,-50.5 parent: 2 type: Transform - - uid: 9917 + - uid: 9943 components: - rot: 3.141592653589793 rad pos: 28.5,-51.5 parent: 2 type: Transform - - uid: 9918 + - uid: 9944 components: - rot: 3.141592653589793 rad pos: 29.5,-50.5 parent: 2 type: Transform - - uid: 9919 + - uid: 9945 components: - rot: 3.141592653589793 rad pos: 29.5,-51.5 parent: 2 type: Transform - - uid: 9920 + - uid: 9946 components: - rot: 3.141592653589793 rad pos: 30.5,-50.5 parent: 2 type: Transform - - uid: 9921 + - uid: 9947 components: - rot: 3.141592653589793 rad pos: 30.5,-51.5 parent: 2 type: Transform - - uid: 9922 + - uid: 9948 components: - rot: -1.5707963267948966 rad pos: -38.5,15.5 parent: 2 type: Transform - - uid: 9923 + - uid: 9949 components: - rot: -1.5707963267948966 rad pos: -38.5,14.5 parent: 2 type: Transform - - uid: 9924 + - uid: 9950 components: - rot: -1.5707963267948966 rad pos: -38.5,13.5 parent: 2 type: Transform - - uid: 9925 + - uid: 9951 components: - rot: -1.5707963267948966 rad pos: -38.5,12.5 parent: 2 type: Transform - - uid: 9926 + - uid: 9952 components: - rot: -1.5707963267948966 rad pos: -38.5,11.5 parent: 2 type: Transform - - uid: 9927 + - uid: 9953 components: - rot: -1.5707963267948966 rad pos: -38.5,10.5 parent: 2 type: Transform - - uid: 9928 + - uid: 9954 components: - rot: -1.5707963267948966 rad pos: -38.5,9.5 parent: 2 type: Transform - - uid: 9929 + - uid: 9955 components: - rot: -1.5707963267948966 rad pos: -38.5,8.5 parent: 2 type: Transform - - uid: 9930 + - uid: 9956 components: - rot: -1.5707963267948966 rad pos: -37.5,15.5 parent: 2 type: Transform - - uid: 9931 + - uid: 9957 components: - rot: -1.5707963267948966 rad pos: -37.5,14.5 parent: 2 type: Transform - - uid: 9932 + - uid: 9958 components: - rot: -1.5707963267948966 rad pos: -37.5,13.5 parent: 2 type: Transform - - uid: 9933 + - uid: 9959 components: - rot: -1.5707963267948966 rad pos: -37.5,12.5 parent: 2 type: Transform - - uid: 9934 + - uid: 9960 components: - rot: -1.5707963267948966 rad pos: -37.5,11.5 parent: 2 type: Transform - - uid: 9935 + - uid: 9961 components: - rot: -1.5707963267948966 rad pos: -37.5,10.5 parent: 2 type: Transform - - uid: 9936 + - uid: 9962 components: - rot: -1.5707963267948966 rad pos: -37.5,9.5 parent: 2 type: Transform - - uid: 9937 + - uid: 9963 components: - rot: -1.5707963267948966 rad pos: -37.5,8.5 parent: 2 type: Transform - - uid: 9938 + - uid: 9964 components: - rot: -1.5707963267948966 rad pos: -34.5,15.5 parent: 2 type: Transform - - uid: 9939 + - uid: 9965 components: - rot: -1.5707963267948966 rad pos: -34.5,14.5 parent: 2 type: Transform - - uid: 9940 + - uid: 9966 components: - rot: -1.5707963267948966 rad pos: -34.5,13.5 parent: 2 type: Transform - - uid: 9941 + - uid: 9967 components: - rot: -1.5707963267948966 rad pos: -33.5,15.5 parent: 2 type: Transform - - uid: 9942 + - uid: 9968 components: - rot: -1.5707963267948966 rad pos: -33.5,14.5 parent: 2 type: Transform - - uid: 9943 + - uid: 9969 components: - rot: -1.5707963267948966 rad pos: -33.5,13.5 parent: 2 type: Transform - - uid: 9944 + - uid: 9970 components: - pos: -30.5,14.5 parent: 2 type: Transform - - uid: 9945 + - uid: 9971 components: - pos: -30.5,13.5 parent: 2 type: Transform - - uid: 9946 + - uid: 9972 components: - pos: -30.5,12.5 parent: 2 type: Transform - - uid: 9947 + - uid: 9973 components: - pos: 64.5,-0.5 parent: 2 type: Transform - - uid: 9948 + - uid: 9974 components: - pos: 64.5,-1.5 parent: 2 type: Transform - - uid: 9949 + - uid: 9975 components: - pos: 65.5,-0.5 parent: 2 type: Transform - - uid: 9950 + - uid: 9976 components: - pos: 65.5,-1.5 parent: 2 type: Transform - - uid: 9951 + - uid: 9977 components: - rot: 3.141592653589793 rad pos: 61.5,-63.5 parent: 2 type: Transform - - uid: 9952 + - uid: 9978 components: - rot: 3.141592653589793 rad pos: 61.5,-64.5 parent: 2 type: Transform - - uid: 9953 + - uid: 9979 components: - rot: 3.141592653589793 rad pos: 61.5,-65.5 parent: 2 type: Transform - - uid: 9954 + - uid: 9980 components: - rot: 3.141592653589793 rad pos: 61.5,-66.5 parent: 2 type: Transform - - uid: 9955 + - uid: 9981 components: - rot: 3.141592653589793 rad pos: 61.5,-67.5 parent: 2 type: Transform - - uid: 9956 + - uid: 9982 components: - rot: 3.141592653589793 rad pos: 61.5,-68.5 parent: 2 type: Transform - - uid: 9957 + - uid: 9983 components: - rot: 1.5707963267948966 rad pos: 1.5,21.5 parent: 2 type: Transform - - uid: 9958 + - uid: 9984 components: - rot: 1.5707963267948966 rad pos: 1.5,20.5 parent: 2 type: Transform - - uid: 9959 + - uid: 9985 components: - rot: 1.5707963267948966 rad pos: 1.5,19.5 parent: 2 type: Transform - - uid: 9960 + - uid: 9986 components: - rot: 1.5707963267948966 rad pos: 2.5,21.5 parent: 2 type: Transform - - uid: 9961 + - uid: 9987 components: - rot: 1.5707963267948966 rad pos: 2.5,20.5 parent: 2 type: Transform - - uid: 9962 + - uid: 9988 components: - rot: 1.5707963267948966 rad pos: 2.5,19.5 parent: 2 type: Transform - - uid: 9963 + - uid: 9989 components: - rot: 3.141592653589793 rad pos: 5.5,21.5 parent: 2 type: Transform - - uid: 9964 + - uid: 9990 components: - rot: 3.141592653589793 rad pos: 5.5,22.5 @@ -67180,91 +62735,91 @@ entities: type: Transform - proto: CarpetBlack entities: - - uid: 9965 + - uid: 9991 components: - pos: -7.5,-36.5 parent: 2 type: Transform - - uid: 9966 + - uid: 9992 components: - pos: -7.5,-37.5 parent: 2 type: Transform - - uid: 9967 + - uid: 9993 components: - pos: -7.5,-38.5 parent: 2 type: Transform - - uid: 9968 + - uid: 9994 components: - pos: -11.5,-39.5 parent: 2 type: Transform - - uid: 9969 + - uid: 9995 components: - pos: -10.5,-39.5 parent: 2 type: Transform - - uid: 9970 + - uid: 9996 components: - pos: -9.5,-39.5 parent: 2 type: Transform - - uid: 9971 + - uid: 9997 components: - rot: 3.141592653589793 rad pos: 31.5,-53.5 parent: 2 type: Transform - - uid: 9972 + - uid: 9998 components: - rot: 3.141592653589793 rad pos: 31.5,-54.5 parent: 2 type: Transform - - uid: 9973 + - uid: 9999 components: - rot: 3.141592653589793 rad pos: 31.5,-55.5 parent: 2 type: Transform - - uid: 9974 + - uid: 10000 components: - rot: 3.141592653589793 rad pos: 31.5,-56.5 parent: 2 type: Transform - - uid: 9975 + - uid: 10001 components: - rot: 3.141592653589793 rad pos: -12.5,32.5 parent: 2 type: Transform - - uid: 9976 + - uid: 10002 components: - rot: 3.141592653589793 rad pos: -12.5,31.5 parent: 2 type: Transform - - uid: 9977 + - uid: 10003 components: - rot: 3.141592653589793 rad pos: -11.5,32.5 parent: 2 type: Transform - - uid: 9978 + - uid: 10004 components: - rot: 3.141592653589793 rad pos: -11.5,31.5 parent: 2 type: Transform - - uid: 9979 + - uid: 10005 components: - rot: 3.141592653589793 rad pos: -10.5,32.5 parent: 2 type: Transform - - uid: 9980 + - uid: 10006 components: - rot: 3.141592653589793 rad pos: -10.5,31.5 @@ -67272,261 +62827,261 @@ entities: type: Transform - proto: CarpetBlue entities: - - uid: 9981 + - uid: 10007 components: - rot: -1.5707963267948966 rad pos: 2.5,-7.5 parent: 2 type: Transform - - uid: 9982 + - uid: 10008 components: - rot: -1.5707963267948966 rad pos: 9.5,5.5 parent: 2 type: Transform - - uid: 9983 + - uid: 10009 components: - pos: -18.5,-56.5 parent: 2 type: Transform - - uid: 9984 + - uid: 10010 components: - pos: -18.5,-55.5 parent: 2 type: Transform - - uid: 9985 + - uid: 10011 components: - pos: -20.5,-55.5 parent: 2 type: Transform - - uid: 9986 + - uid: 10012 components: - pos: -20.5,-54.5 parent: 2 type: Transform - - uid: 9987 + - uid: 10013 components: - pos: -19.5,-54.5 parent: 2 type: Transform - - uid: 9988 + - uid: 10014 components: - pos: -17.5,-56.5 parent: 2 type: Transform - - uid: 9989 + - uid: 10015 components: - pos: -20.5,-56.5 parent: 2 type: Transform - - uid: 9990 + - uid: 10016 components: - pos: -17.5,-54.5 parent: 2 type: Transform - - uid: 9991 + - uid: 10017 components: - pos: -17.5,-55.5 parent: 2 type: Transform - - uid: 9992 + - uid: 10018 components: - pos: -19.5,-55.5 parent: 2 type: Transform - - uid: 9993 + - uid: 10019 components: - pos: -19.5,-56.5 parent: 2 type: Transform - - uid: 9994 + - uid: 10020 components: - pos: -18.5,-54.5 parent: 2 type: Transform - - uid: 9995 + - uid: 10021 components: - rot: -1.5707963267948966 rad pos: 8.5,5.5 parent: 2 type: Transform - - uid: 9996 + - uid: 10022 components: - rot: 3.141592653589793 rad pos: 17.5,13.5 parent: 2 type: Transform - - uid: 9997 + - uid: 10023 components: - rot: 3.141592653589793 rad pos: 17.5,12.5 parent: 2 type: Transform - - uid: 9998 + - uid: 10024 components: - rot: 3.141592653589793 rad pos: 17.5,11.5 parent: 2 type: Transform - - uid: 9999 + - uid: 10025 components: - pos: 17.5,9.5 parent: 2 type: Transform - - uid: 10000 + - uid: 10026 components: - pos: 17.5,14.5 parent: 2 type: Transform - - uid: 10001 + - uid: 10027 components: - pos: 17.5,10.5 parent: 2 type: Transform - - uid: 10002 + - uid: 10028 components: - pos: -22.5,-55.5 parent: 2 type: Transform - - uid: 10003 + - uid: 10029 components: - pos: -21.5,-55.5 parent: 2 type: Transform - - uid: 10004 + - uid: 10030 components: - pos: -21.5,-54.5 parent: 2 type: Transform - - uid: 10005 + - uid: 10031 components: - pos: -22.5,-54.5 parent: 2 type: Transform - - uid: 10006 + - uid: 10032 components: - pos: -1.5,-6.5 parent: 2 type: Transform - - uid: 10007 + - uid: 10033 components: - rot: -1.5707963267948966 rad pos: 3.5,-4.5 parent: 2 type: Transform - - uid: 10008 + - uid: 10034 components: - rot: -1.5707963267948966 rad pos: 4.5,-5.5 parent: 2 type: Transform - - uid: 10009 + - uid: 10035 components: - rot: -1.5707963267948966 rad pos: 5.5,-4.5 parent: 2 type: Transform - - uid: 10010 + - uid: 10036 components: - rot: -1.5707963267948966 rad pos: 2.5,-6.5 parent: 2 type: Transform - - uid: 10011 + - uid: 10037 components: - rot: -1.5707963267948966 rad pos: 4.5,-6.5 parent: 2 type: Transform - - uid: 10012 + - uid: 10038 components: - pos: -1.5,-5.5 parent: 2 type: Transform - - uid: 10013 + - uid: 10039 components: - rot: -1.5707963267948966 rad pos: 3.5,-7.5 parent: 2 type: Transform - - uid: 10014 + - uid: 10040 components: - pos: -0.5,-6.5 parent: 2 type: Transform - - uid: 10015 + - uid: 10041 components: - rot: -1.5707963267948966 rad pos: 3.5,-6.5 parent: 2 type: Transform - - uid: 10016 + - uid: 10042 components: - rot: -1.5707963267948966 rad pos: 4.5,-7.5 parent: 2 type: Transform - - uid: 10017 + - uid: 10043 components: - pos: -0.5,-5.5 parent: 2 type: Transform - - uid: 10018 + - uid: 10044 components: - rot: -1.5707963267948966 rad pos: 5.5,-6.5 parent: 2 type: Transform - - uid: 10019 + - uid: 10045 components: - rot: -1.5707963267948966 rad pos: 5.5,-7.5 parent: 2 type: Transform - - uid: 10020 + - uid: 10046 components: - rot: 1.5707963267948966 rad pos: 28.5,-36.5 parent: 2 type: Transform - - uid: 10021 + - uid: 10047 components: - pos: 3.5,-5.5 parent: 2 type: Transform - - uid: 10022 + - uid: 10048 components: - pos: 2.5,-5.5 parent: 2 type: Transform - - uid: 10023 + - uid: 10049 components: - pos: 2.5,-4.5 parent: 2 type: Transform - - uid: 10024 + - uid: 10050 components: - pos: 4.5,-4.5 parent: 2 type: Transform - - uid: 10025 + - uid: 10051 components: - pos: 5.5,-5.5 parent: 2 type: Transform - - uid: 10026 + - uid: 10052 components: - rot: 1.5707963267948966 rad pos: 28.5,-35.5 parent: 2 type: Transform - - uid: 10027 + - uid: 10053 components: - rot: 1.5707963267948966 rad pos: 28.5,-37.5 parent: 2 type: Transform - - uid: 10028 + - uid: 10054 components: - rot: 3.141592653589793 rad pos: 28.5,-34.5 @@ -67534,208 +63089,208 @@ entities: type: Transform - proto: CarpetChapel entities: - - uid: 10029 + - uid: 10055 components: - rot: -1.5707963267948966 rad pos: -36.5,10.5 parent: 2 type: Transform - - uid: 10030 + - uid: 10056 components: - rot: 3.141592653589793 rad pos: -35.5,10.5 parent: 2 type: Transform - - uid: 10031 + - uid: 10057 components: - rot: 1.5707963267948966 rad pos: -35.5,9.5 parent: 2 type: Transform - - uid: 10032 + - uid: 10058 components: - pos: -36.5,9.5 parent: 2 type: Transform - - uid: 10033 + - uid: 10059 components: - pos: -36.5,11.5 parent: 2 type: Transform - - uid: 10034 + - uid: 10060 components: - rot: 1.5707963267948966 rad pos: -35.5,11.5 parent: 2 type: Transform - - uid: 10035 + - uid: 10061 components: - rot: -1.5707963267948966 rad pos: -36.5,12.5 parent: 2 type: Transform - - uid: 10036 + - uid: 10062 components: - rot: 3.141592653589793 rad pos: -35.5,12.5 parent: 2 type: Transform - - uid: 10037 + - uid: 10063 components: - rot: 3.141592653589793 rad pos: -39.5,12.5 parent: 2 type: Transform - - uid: 10038 + - uid: 10064 components: - rot: 1.5707963267948966 rad pos: -39.5,11.5 parent: 2 type: Transform - - uid: 10039 + - uid: 10065 components: - pos: -40.5,11.5 parent: 2 type: Transform - - uid: 10040 + - uid: 10066 components: - rot: -1.5707963267948966 rad pos: -40.5,10.5 parent: 2 type: Transform - - uid: 10041 + - uid: 10067 components: - rot: 3.141592653589793 rad pos: -39.5,10.5 parent: 2 type: Transform - - uid: 10042 + - uid: 10068 components: - pos: -40.5,9.5 parent: 2 type: Transform - - uid: 10043 + - uid: 10069 components: - rot: 1.5707963267948966 rad pos: -39.5,9.5 parent: 2 type: Transform - - uid: 10044 + - uid: 10070 components: - rot: -1.5707963267948966 rad pos: -40.5,12.5 parent: 2 type: Transform - - uid: 10045 + - uid: 10071 components: - rot: -1.5707963267948966 rad pos: 59.5,-65.5 parent: 2 type: Transform - - uid: 10046 + - uid: 10072 components: - rot: 3.141592653589793 rad pos: 60.5,-65.5 parent: 2 type: Transform - - uid: 10047 + - uid: 10073 components: - pos: 59.5,-66.5 parent: 2 type: Transform - - uid: 10048 + - uid: 10074 components: - rot: -1.5707963267948966 rad pos: 62.5,-65.5 parent: 2 type: Transform - - uid: 10049 + - uid: 10075 components: - pos: 62.5,-66.5 parent: 2 type: Transform - - uid: 10050 + - uid: 10076 components: - rot: 3.141592653589793 rad pos: 63.5,-65.5 parent: 2 type: Transform - - uid: 10051 + - uid: 10077 components: - rot: 1.5707963267948966 rad pos: 63.5,-66.5 parent: 2 type: Transform - - uid: 10052 + - uid: 10078 components: - rot: -1.5707963267948966 rad pos: 62.5,-63.5 parent: 2 type: Transform - - uid: 10053 + - uid: 10079 components: - rot: 3.141592653589793 rad pos: 63.5,-63.5 parent: 2 type: Transform - - uid: 10054 + - uid: 10080 components: - rot: 1.5707963267948966 rad pos: 63.5,-64.5 parent: 2 type: Transform - - uid: 10055 + - uid: 10081 components: - pos: 62.5,-64.5 parent: 2 type: Transform - - uid: 10056 + - uid: 10082 components: - rot: 3.141592653589793 rad pos: 60.5,-63.5 parent: 2 type: Transform - - uid: 10057 + - uid: 10083 components: - rot: -1.5707963267948966 rad pos: 59.5,-63.5 parent: 2 type: Transform - - uid: 10058 + - uid: 10084 components: - pos: 59.5,-64.5 parent: 2 type: Transform - - uid: 10059 + - uid: 10085 components: - rot: 1.5707963267948966 rad pos: 60.5,-64.5 parent: 2 type: Transform - - uid: 10060 + - uid: 10086 components: - pos: 60.5,-68.5 parent: 2 type: Transform - - uid: 10061 + - uid: 10087 components: - rot: 1.5707963267948966 rad pos: 62.5,-68.5 parent: 2 type: Transform - - uid: 10062 + - uid: 10088 components: - rot: -1.5707963267948966 rad pos: 60.5,-67.5 parent: 2 type: Transform - - uid: 10063 + - uid: 10089 components: - rot: 3.141592653589793 rad pos: 62.5,-67.5 parent: 2 type: Transform - - uid: 10064 + - uid: 10090 components: - rot: 1.5707963267948966 rad pos: 60.5,-66.5 @@ -67743,540 +63298,540 @@ entities: type: Transform - proto: CarpetGreen entities: - - uid: 10065 + - uid: 10091 components: - pos: 22.5,-34.5 parent: 2 type: Transform - - uid: 10066 + - uid: 10092 components: - rot: -1.5707963267948966 rad pos: 13.5,-10.5 parent: 2 type: Transform - - uid: 10067 + - uid: 10093 components: - rot: -1.5707963267948966 rad pos: 9.5,-10.5 parent: 2 type: Transform - - uid: 10068 + - uid: 10094 components: - rot: -1.5707963267948966 rad pos: 10.5,-10.5 parent: 2 type: Transform - - uid: 10069 + - uid: 10095 components: - rot: -1.5707963267948966 rad pos: 9.5,-12.5 parent: 2 type: Transform - - uid: 10070 + - uid: 10096 components: - rot: -1.5707963267948966 rad pos: 10.5,-12.5 parent: 2 type: Transform - - uid: 10071 + - uid: 10097 components: - rot: -1.5707963267948966 rad pos: 10.5,-11.5 parent: 2 type: Transform - - uid: 10072 + - uid: 10098 components: - rot: -1.5707963267948966 rad pos: 11.5,-11.5 parent: 2 type: Transform - - uid: 10073 + - uid: 10099 components: - rot: -1.5707963267948966 rad pos: 12.5,-11.5 parent: 2 type: Transform - - uid: 10074 + - uid: 10100 components: - rot: -1.5707963267948966 rad pos: 13.5,-11.5 parent: 2 type: Transform - - uid: 10075 + - uid: 10101 components: - rot: -1.5707963267948966 rad pos: 11.5,-10.5 parent: 2 type: Transform - - uid: 10076 + - uid: 10102 components: - rot: -1.5707963267948966 rad pos: 12.5,-10.5 parent: 2 type: Transform - - uid: 10077 + - uid: 10103 components: - rot: -1.5707963267948966 rad pos: 11.5,-12.5 parent: 2 type: Transform - - uid: 10078 + - uid: 10104 components: - pos: 20.5,13.5 parent: 2 type: Transform - - uid: 10079 + - uid: 10105 components: - pos: 14.5,9.5 parent: 2 type: Transform - - uid: 10080 + - uid: 10106 components: - pos: 9.5,-11.5 parent: 2 type: Transform - - uid: 10081 + - uid: 10107 components: - rot: -1.5707963267948966 rad pos: 12.5,-12.5 parent: 2 type: Transform - - uid: 10082 + - uid: 10108 components: - rot: -1.5707963267948966 rad pos: 13.5,-12.5 parent: 2 type: Transform - - uid: 10083 + - uid: 10109 components: - rot: 1.5707963267948966 rad pos: 8.5,8.5 parent: 2 type: Transform - - uid: 10084 + - uid: 10110 components: - rot: 3.141592653589793 rad pos: 14.5,13.5 parent: 2 type: Transform - - uid: 10085 + - uid: 10111 components: - rot: 3.141592653589793 rad pos: 14.5,12.5 parent: 2 type: Transform - - uid: 10086 + - uid: 10112 components: - rot: 3.141592653589793 rad pos: 14.5,11.5 parent: 2 type: Transform - - uid: 10087 + - uid: 10113 components: - rot: 3.141592653589793 rad pos: 14.5,10.5 parent: 2 type: Transform - - uid: 10088 + - uid: 10114 components: - rot: 1.5707963267948966 rad pos: 8.5,9.5 parent: 2 type: Transform - - uid: 10089 + - uid: 10115 components: - pos: -5.5,-49.5 parent: 2 type: Transform - - uid: 10090 + - uid: 10116 components: - pos: -4.5,-49.5 parent: 2 type: Transform - - uid: 10091 + - uid: 10117 components: - pos: -3.5,-49.5 parent: 2 type: Transform - - uid: 10092 + - uid: 10118 components: - pos: -3.5,-50.5 parent: 2 type: Transform - - uid: 10093 + - uid: 10119 components: - pos: -4.5,-50.5 parent: 2 type: Transform - - uid: 10094 + - uid: 10120 components: - pos: -5.5,-50.5 parent: 2 type: Transform - - uid: 10095 + - uid: 10121 components: - pos: 21.5,13.5 parent: 2 type: Transform - - uid: 10096 + - uid: 10122 components: - pos: 21.5,10.5 parent: 2 type: Transform - - uid: 10097 + - uid: 10123 components: - pos: 20.5,10.5 parent: 2 type: Transform - - uid: 10098 + - uid: 10124 components: - pos: 20.5,12.5 parent: 2 type: Transform - - uid: 10099 + - uid: 10125 components: - pos: 20.5,11.5 parent: 2 type: Transform - - uid: 10100 + - uid: 10126 components: - pos: 21.5,11.5 parent: 2 type: Transform - - uid: 10101 + - uid: 10127 components: - pos: 21.5,12.5 parent: 2 type: Transform - - uid: 10102 + - uid: 10128 components: - pos: -22.5,45.5 parent: 2 type: Transform - - uid: 10103 + - uid: 10129 components: - pos: -22.5,44.5 parent: 2 type: Transform - - uid: 10104 + - uid: 10130 components: - pos: -22.5,43.5 parent: 2 type: Transform - - uid: 10105 + - uid: 10131 components: - pos: -22.5,42.5 parent: 2 type: Transform - - uid: 10106 + - uid: 10132 components: - pos: -21.5,45.5 parent: 2 type: Transform - - uid: 10107 + - uid: 10133 components: - pos: -21.5,44.5 parent: 2 type: Transform - - uid: 10108 + - uid: 10134 components: - rot: 3.141592653589793 rad pos: 32.5,-50.5 parent: 2 type: Transform - - uid: 10109 + - uid: 10135 components: - rot: 3.141592653589793 rad pos: 32.5,-51.5 parent: 2 type: Transform - - uid: 10110 + - uid: 10136 components: - rot: 3.141592653589793 rad pos: 33.5,-50.5 parent: 2 type: Transform - - uid: 10111 + - uid: 10137 components: - rot: 3.141592653589793 rad pos: 33.5,-51.5 parent: 2 type: Transform - - uid: 10112 + - uid: 10138 components: - rot: 3.141592653589793 rad pos: 34.5,-50.5 parent: 2 type: Transform - - uid: 10113 + - uid: 10139 components: - rot: 3.141592653589793 rad pos: 34.5,-51.5 parent: 2 type: Transform - - uid: 10114 + - uid: 10140 components: - pos: -21.5,42.5 parent: 2 type: Transform - - uid: 10115 + - uid: 10141 components: - pos: -21.5,43.5 parent: 2 type: Transform - - uid: 10116 + - uid: 10142 components: - rot: 1.5707963267948966 rad pos: -22.5,30.5 parent: 2 type: Transform - - uid: 10117 + - uid: 10143 components: - rot: 1.5707963267948966 rad pos: -23.5,30.5 parent: 2 type: Transform - - uid: 10118 + - uid: 10144 components: - pos: -23.5,31.5 parent: 2 type: Transform - - uid: 10119 + - uid: 10145 components: - pos: -23.5,29.5 parent: 2 type: Transform - - uid: 10120 + - uid: 10146 components: - pos: -22.5,31.5 parent: 2 type: Transform - - uid: 10121 + - uid: 10147 components: - pos: -22.5,29.5 parent: 2 type: Transform - - uid: 10122 + - uid: 10148 components: - rot: 1.5707963267948966 rad pos: -19.5,33.5 parent: 2 type: Transform - - uid: 10123 + - uid: 10149 components: - rot: 1.5707963267948966 rad pos: -19.5,34.5 parent: 2 type: Transform - - uid: 10124 + - uid: 10150 components: - rot: 1.5707963267948966 rad pos: -19.5,35.5 parent: 2 type: Transform - - uid: 10125 + - uid: 10151 components: - rot: 1.5707963267948966 rad pos: -18.5,33.5 parent: 2 type: Transform - - uid: 10126 + - uid: 10152 components: - rot: 1.5707963267948966 rad pos: -18.5,34.5 parent: 2 type: Transform - - uid: 10127 + - uid: 10153 components: - rot: 1.5707963267948966 rad pos: -18.5,35.5 parent: 2 type: Transform - - uid: 10128 + - uid: 10154 components: - rot: 1.5707963267948966 rad pos: 8.5,7.5 parent: 2 type: Transform - - uid: 10129 + - uid: 10155 components: - rot: 1.5707963267948966 rad pos: 13.5,-79.5 parent: 2 type: Transform - - uid: 10130 + - uid: 10156 components: - rot: 1.5707963267948966 rad pos: 14.5,-79.5 parent: 2 type: Transform - - uid: 10131 + - uid: 10157 components: - rot: 1.5707963267948966 rad pos: 15.5,-79.5 parent: 2 type: Transform - - uid: 10132 + - uid: 10158 components: - rot: 1.5707963267948966 rad pos: 16.5,-79.5 parent: 2 type: Transform - - uid: 10133 + - uid: 10159 components: - rot: 1.5707963267948966 rad pos: 17.5,-79.5 parent: 2 type: Transform - - uid: 10134 + - uid: 10160 components: - rot: 1.5707963267948966 rad pos: 13.5,-87.5 parent: 2 type: Transform - - uid: 10135 + - uid: 10161 components: - rot: 1.5707963267948966 rad pos: 14.5,-87.5 parent: 2 type: Transform - - uid: 10136 + - uid: 10162 components: - rot: 1.5707963267948966 rad pos: 15.5,-87.5 parent: 2 type: Transform - - uid: 10137 + - uid: 10163 components: - rot: 1.5707963267948966 rad pos: 16.5,-87.5 parent: 2 type: Transform - - uid: 10138 + - uid: 10164 components: - rot: 1.5707963267948966 rad pos: 17.5,-87.5 parent: 2 type: Transform - - uid: 10139 + - uid: 10165 components: - rot: -1.5707963267948966 rad pos: 22.5,-35.5 parent: 2 type: Transform - - uid: 10140 + - uid: 10166 components: - rot: -1.5707963267948966 rad pos: 22.5,-36.5 parent: 2 type: Transform - - uid: 10141 + - uid: 10167 components: - rot: -1.5707963267948966 rad pos: 23.5,-35.5 parent: 2 type: Transform - - uid: 10142 + - uid: 10168 components: - rot: -1.5707963267948966 rad pos: 23.5,-36.5 parent: 2 type: Transform - - uid: 10143 + - uid: 10169 components: - rot: -1.5707963267948966 rad pos: 24.5,-34.5 parent: 2 type: Transform - - uid: 10144 + - uid: 10170 components: - rot: -1.5707963267948966 rad pos: 24.5,-35.5 parent: 2 type: Transform - - uid: 10145 + - uid: 10171 components: - rot: -1.5707963267948966 rad pos: 24.5,-36.5 parent: 2 type: Transform - - uid: 10146 + - uid: 10172 components: - rot: -1.5707963267948966 rad pos: 26.5,-35.5 parent: 2 type: Transform - - uid: 10147 + - uid: 10173 components: - rot: -1.5707963267948966 rad pos: 26.5,-36.5 parent: 2 type: Transform - - uid: 10148 + - uid: 10174 components: - rot: -1.5707963267948966 rad pos: 26.5,-37.5 parent: 2 type: Transform - - uid: 10149 + - uid: 10175 components: - pos: 26.5,-34.5 parent: 2 type: Transform - - uid: 10150 + - uid: 10176 components: - pos: 23.5,-34.5 parent: 2 type: Transform - - uid: 10151 + - uid: 10177 components: - rot: 1.5707963267948966 rad pos: 3.5,-9.5 parent: 2 type: Transform - - uid: 10152 + - uid: 10178 components: - rot: 1.5707963267948966 rad pos: 3.5,-10.5 parent: 2 type: Transform - - uid: 10153 + - uid: 10179 components: - rot: 1.5707963267948966 rad pos: 3.5,-11.5 parent: 2 type: Transform - - uid: 10154 + - uid: 10180 components: - rot: 1.5707963267948966 rad pos: 4.5,-9.5 parent: 2 type: Transform - - uid: 10155 + - uid: 10181 components: - rot: 1.5707963267948966 rad pos: 4.5,-10.5 parent: 2 type: Transform - - uid: 10156 + - uid: 10182 components: - rot: 1.5707963267948966 rad pos: 4.5,-11.5 parent: 2 type: Transform - - uid: 10157 + - uid: 10183 components: - rot: 1.5707963267948966 rad pos: 5.5,-9.5 parent: 2 type: Transform - - uid: 10158 + - uid: 10184 components: - rot: 1.5707963267948966 rad pos: 5.5,-10.5 parent: 2 type: Transform - - uid: 10159 + - uid: 10185 components: - rot: 1.5707963267948966 rad pos: 5.5,-11.5 @@ -68284,616 +63839,616 @@ entities: type: Transform - proto: CarpetOrange entities: - - uid: 10160 + - uid: 10186 components: - rot: -1.5707963267948966 rad pos: 8.5,-6.5 parent: 2 type: Transform - - uid: 10161 + - uid: 10187 components: - rot: -1.5707963267948966 rad pos: 9.5,-5.5 parent: 2 type: Transform - - uid: 10162 + - uid: 10188 components: - rot: 3.141592653589793 rad pos: 12.5,11.5 parent: 2 type: Transform - - uid: 10163 + - uid: 10189 components: - rot: 1.5707963267948966 rad pos: 10.5,7.5 parent: 2 type: Transform - - uid: 10164 + - uid: 10190 components: - rot: -1.5707963267948966 rad pos: 11.5,-6.5 parent: 2 type: Transform - - uid: 10165 + - uid: 10191 components: - rot: -1.5707963267948966 rad pos: 11.5,-7.5 parent: 2 type: Transform - - uid: 10166 + - uid: 10192 components: - rot: -1.5707963267948966 rad pos: 11.5,-8.5 parent: 2 type: Transform - - uid: 10167 + - uid: 10193 components: - rot: -1.5707963267948966 rad pos: 10.5,-8.5 parent: 2 type: Transform - - uid: 10168 + - uid: 10194 components: - rot: -1.5707963267948966 rad pos: 9.5,-8.5 parent: 2 type: Transform - - uid: 10169 + - uid: 10195 components: - rot: -1.5707963267948966 rad pos: 8.5,-8.5 parent: 2 type: Transform - - uid: 10170 + - uid: 10196 components: - rot: -1.5707963267948966 rad pos: 8.5,-7.5 parent: 2 type: Transform - - uid: 10171 + - uid: 10197 components: - rot: -1.5707963267948966 rad pos: 8.5,-5.5 parent: 2 type: Transform - - uid: 10172 + - uid: 10198 components: - rot: -1.5707963267948966 rad pos: 9.5,-6.5 parent: 2 type: Transform - - uid: 10173 + - uid: 10199 components: - rot: -1.5707963267948966 rad pos: 10.5,-6.5 parent: 2 type: Transform - - uid: 10174 + - uid: 10200 components: - rot: -1.5707963267948966 rad pos: 10.5,-7.5 parent: 2 type: Transform - - uid: 10175 + - uid: 10201 components: - rot: -1.5707963267948966 rad pos: 9.5,-7.5 parent: 2 type: Transform - - uid: 10176 + - uid: 10202 components: - rot: 1.5707963267948966 rad pos: 12.5,7.5 parent: 2 type: Transform - - uid: 10177 + - uid: 10203 components: - rot: -1.5707963267948966 rad pos: 10.5,-5.5 parent: 2 type: Transform - - uid: 10178 + - uid: 10204 components: - rot: -1.5707963267948966 rad pos: 11.5,-5.5 parent: 2 type: Transform - - uid: 10179 + - uid: 10205 components: - rot: 1.5707963267948966 rad pos: 12.5,8.5 parent: 2 type: Transform - - uid: 10180 + - uid: 10206 components: - rot: 3.141592653589793 rad pos: 12.5,10.5 parent: 2 type: Transform - - uid: 10181 + - uid: 10207 components: - rot: 1.5707963267948966 rad pos: 10.5,8.5 parent: 2 type: Transform - - uid: 10182 + - uid: 10208 components: - rot: 1.5707963267948966 rad pos: 11.5,7.5 parent: 2 type: Transform - - uid: 10183 + - uid: 10209 components: - rot: 1.5707963267948966 rad pos: 11.5,8.5 parent: 2 type: Transform - - uid: 10184 + - uid: 10210 components: - rot: 3.141592653589793 rad pos: 11.5,11.5 parent: 2 type: Transform - - uid: 10185 + - uid: 10211 components: - rot: 3.141592653589793 rad pos: 11.5,12.5 parent: 2 type: Transform - - uid: 10186 + - uid: 10212 components: - pos: -12.5,-35.5 parent: 2 type: Transform - - uid: 10187 + - uid: 10213 components: - pos: -12.5,-36.5 parent: 2 type: Transform - - uid: 10188 + - uid: 10214 components: - pos: -12.5,-37.5 parent: 2 type: Transform - - uid: 10189 + - uid: 10215 components: - pos: -11.5,-35.5 parent: 2 type: Transform - - uid: 10190 + - uid: 10216 components: - pos: -11.5,-36.5 parent: 2 type: Transform - - uid: 10191 + - uid: 10217 components: - pos: -11.5,-37.5 parent: 2 type: Transform - - uid: 10192 + - uid: 10218 components: - pos: -10.5,-35.5 parent: 2 type: Transform - - uid: 10193 + - uid: 10219 components: - pos: -10.5,-36.5 parent: 2 type: Transform - - uid: 10194 + - uid: 10220 components: - pos: -10.5,-37.5 parent: 2 type: Transform - - uid: 10195 + - uid: 10221 components: - pos: -9.5,-35.5 parent: 2 type: Transform - - uid: 10196 + - uid: 10222 components: - pos: -9.5,-36.5 parent: 2 type: Transform - - uid: 10197 + - uid: 10223 components: - pos: -9.5,-37.5 parent: 2 type: Transform - - uid: 10198 + - uid: 10224 components: - rot: 3.141592653589793 rad pos: 12.5,12.5 parent: 2 type: Transform - - uid: 10199 + - uid: 10225 components: - rot: 3.141592653589793 rad pos: -37.5,-15.5 parent: 2 type: Transform - - uid: 10200 + - uid: 10226 components: - rot: 3.141592653589793 rad pos: -37.5,-16.5 parent: 2 type: Transform - - uid: 10201 + - uid: 10227 components: - rot: 3.141592653589793 rad pos: -37.5,-17.5 parent: 2 type: Transform - - uid: 10202 + - uid: 10228 components: - rot: 3.141592653589793 rad pos: -37.5,-18.5 parent: 2 type: Transform - - uid: 10203 + - uid: 10229 components: - rot: 3.141592653589793 rad pos: -36.5,-16.5 parent: 2 type: Transform - - uid: 10204 + - uid: 10230 components: - rot: 3.141592653589793 rad pos: -36.5,-17.5 parent: 2 type: Transform - - uid: 10205 + - uid: 10231 components: - rot: 3.141592653589793 rad pos: -36.5,-18.5 parent: 2 type: Transform - - uid: 10206 + - uid: 10232 components: - rot: 3.141592653589793 rad pos: -35.5,-15.5 parent: 2 type: Transform - - uid: 10207 + - uid: 10233 components: - rot: 3.141592653589793 rad pos: -35.5,-16.5 parent: 2 type: Transform - - uid: 10208 + - uid: 10234 components: - rot: 3.141592653589793 rad pos: -35.5,-17.5 parent: 2 type: Transform - - uid: 10209 + - uid: 10235 components: - rot: 3.141592653589793 rad pos: -35.5,-18.5 parent: 2 type: Transform - - uid: 10210 + - uid: 10236 components: - rot: 3.141592653589793 rad pos: -34.5,31.5 parent: 2 type: Transform - - uid: 10211 + - uid: 10237 components: - pos: -34.5,30.5 parent: 2 type: Transform - - uid: 10212 + - uid: 10238 components: - rot: 3.141592653589793 rad pos: -34.5,29.5 parent: 2 type: Transform - - uid: 10213 + - uid: 10239 components: - rot: 3.141592653589793 rad pos: -33.5,31.5 parent: 2 type: Transform - - uid: 10214 + - uid: 10240 components: - rot: 3.141592653589793 rad pos: -33.5,30.5 parent: 2 type: Transform - - uid: 10215 + - uid: 10241 components: - rot: 3.141592653589793 rad pos: -33.5,29.5 parent: 2 type: Transform - - uid: 10216 + - uid: 10242 components: - rot: 3.141592653589793 rad pos: -32.5,31.5 parent: 2 type: Transform - - uid: 10217 + - uid: 10243 components: - rot: 3.141592653589793 rad pos: -32.5,30.5 parent: 2 type: Transform - - uid: 10218 + - uid: 10244 components: - rot: 3.141592653589793 rad pos: -32.5,29.5 parent: 2 type: Transform - - uid: 10219 + - uid: 10245 components: - rot: 3.141592653589793 rad pos: -31.5,31.5 parent: 2 type: Transform - - uid: 10220 + - uid: 10246 components: - rot: 3.141592653589793 rad pos: -31.5,30.5 parent: 2 type: Transform - - uid: 10221 + - uid: 10247 components: - rot: 3.141592653589793 rad pos: -31.5,29.5 parent: 2 type: Transform - - uid: 10222 + - uid: 10248 components: - rot: 3.141592653589793 rad pos: -30.5,31.5 parent: 2 type: Transform - - uid: 10223 + - uid: 10249 components: - rot: 3.141592653589793 rad pos: -30.5,30.5 parent: 2 type: Transform - - uid: 10224 + - uid: 10250 components: - rot: 3.141592653589793 rad pos: -30.5,29.5 parent: 2 type: Transform - - uid: 10225 + - uid: 10251 components: - rot: 3.141592653589793 rad pos: 11.5,10.5 parent: 2 type: Transform - - uid: 10226 + - uid: 10252 components: - pos: 23.5,-38.5 parent: 2 type: Transform - - uid: 10227 + - uid: 10253 components: - pos: 22.5,-38.5 parent: 2 type: Transform - - uid: 10228 + - uid: 10254 components: - pos: 22.5,-39.5 parent: 2 type: Transform - - uid: 10229 + - uid: 10255 components: - pos: 23.5,-39.5 parent: 2 type: Transform - - uid: 10230 + - uid: 10256 components: - pos: 27.5,-39.5 parent: 2 type: Transform - - uid: 10231 + - uid: 10257 components: - pos: 28.5,-39.5 parent: 2 type: Transform - - uid: 10232 + - uid: 10258 components: - pos: 29.5,-39.5 parent: 2 type: Transform - proto: CarpetPink entities: - - uid: 10233 + - uid: 10259 components: - pos: 21.5,-29.5 parent: 2 type: Transform - - uid: 10234 + - uid: 10260 components: - pos: 23.5,-29.5 parent: 2 type: Transform - - uid: 10235 + - uid: 10261 components: - pos: 22.5,-29.5 parent: 2 type: Transform - - uid: 10236 + - uid: 10262 components: - pos: 22.5,-28.5 parent: 2 type: Transform - - uid: 10237 + - uid: 10263 components: - pos: 21.5,-28.5 parent: 2 type: Transform - - uid: 10238 + - uid: 10264 components: - pos: 22.5,-29.5 parent: 2 type: Transform - - uid: 10239 + - uid: 10265 components: - pos: 23.5,-29.5 parent: 2 type: Transform - - uid: 10240 + - uid: 10266 components: - pos: 23.5,-28.5 parent: 2 type: Transform - - uid: 10241 + - uid: 10267 components: - rot: -1.5707963267948966 rad pos: 22.5,-28.5 parent: 2 type: Transform - - uid: 10242 + - uid: 10268 components: - pos: 24.5,-28.5 parent: 2 type: Transform - - uid: 10243 + - uid: 10269 components: - rot: 1.5707963267948966 rad pos: 20.5,-29.5 parent: 2 type: Transform - - uid: 10244 + - uid: 10270 components: - pos: 20.5,-28.5 parent: 2 type: Transform - - uid: 10245 + - uid: 10271 components: - pos: 24.5,-29.5 parent: 2 type: Transform - proto: CarpetPurple entities: - - uid: 10246 + - uid: 10272 components: - pos: -16.5,-38.5 parent: 2 type: Transform - - uid: 10247 + - uid: 10273 components: - pos: -16.5,-39.5 parent: 2 type: Transform - - uid: 10248 + - uid: 10274 components: - pos: -15.5,-38.5 parent: 2 type: Transform - - uid: 10249 + - uid: 10275 components: - pos: -15.5,-39.5 parent: 2 type: Transform - - uid: 10250 + - uid: 10276 components: - pos: -14.5,-38.5 parent: 2 type: Transform - - uid: 10251 + - uid: 10277 components: - pos: -14.5,-39.5 parent: 2 type: Transform - - uid: 10252 + - uid: 10278 components: - rot: -1.5707963267948966 rad pos: -49.5,7.5 parent: 2 type: Transform - - uid: 10253 + - uid: 10279 components: - rot: -1.5707963267948966 rad pos: -49.5,6.5 parent: 2 type: Transform - - uid: 10254 + - uid: 10280 components: - rot: -1.5707963267948966 rad pos: -49.5,5.5 parent: 2 type: Transform - - uid: 10255 + - uid: 10281 components: - rot: -1.5707963267948966 rad pos: -49.5,4.5 parent: 2 type: Transform - - uid: 10256 + - uid: 10282 components: - rot: -1.5707963267948966 rad pos: -48.5,7.5 parent: 2 type: Transform - - uid: 10257 + - uid: 10283 components: - rot: -1.5707963267948966 rad pos: -48.5,6.5 parent: 2 type: Transform - - uid: 10258 + - uid: 10284 components: - rot: -1.5707963267948966 rad pos: -48.5,5.5 parent: 2 type: Transform - - uid: 10259 + - uid: 10285 components: - rot: -1.5707963267948966 rad pos: -48.5,4.5 parent: 2 type: Transform - - uid: 10260 + - uid: 10286 components: - rot: -1.5707963267948966 rad pos: -47.5,7.5 parent: 2 type: Transform - - uid: 10261 + - uid: 10287 components: - rot: -1.5707963267948966 rad pos: -47.5,6.5 parent: 2 type: Transform - - uid: 10262 + - uid: 10288 components: - rot: -1.5707963267948966 rad pos: -47.5,5.5 parent: 2 type: Transform - - uid: 10263 + - uid: 10289 components: - rot: -1.5707963267948966 rad pos: -47.5,4.5 parent: 2 type: Transform - - uid: 10264 + - uid: 10290 components: - rot: -1.5707963267948966 rad pos: -46.5,7.5 parent: 2 type: Transform - - uid: 10265 + - uid: 10291 components: - rot: -1.5707963267948966 rad pos: -46.5,6.5 parent: 2 type: Transform - - uid: 10266 + - uid: 10292 components: - rot: -1.5707963267948966 rad pos: -46.5,5.5 parent: 2 type: Transform - - uid: 10267 + - uid: 10293 components: - rot: -1.5707963267948966 rad pos: -46.5,4.5 @@ -68901,282 +64456,282 @@ entities: type: Transform - proto: CarpetSBlue entities: - - uid: 10268 + - uid: 10294 components: - pos: 21.5,-22.5 parent: 2 type: Transform - - uid: 10269 + - uid: 10295 components: - pos: 21.5,-23.5 parent: 2 type: Transform - - uid: 10270 + - uid: 10296 components: - pos: 23.5,-23.5 parent: 2 type: Transform - - uid: 10271 + - uid: 10297 components: - pos: 24.5,-25.5 parent: 2 type: Transform - - uid: 10272 + - uid: 10298 components: - pos: 26.5,-24.5 parent: 2 type: Transform - - uid: 10273 + - uid: 10299 components: - pos: 26.5,-25.5 parent: 2 type: Transform - - uid: 10274 + - uid: 10300 components: - pos: 29.5,-23.5 parent: 2 type: Transform - - uid: 10275 + - uid: 10301 components: - pos: 28.5,-22.5 parent: 2 type: Transform - - uid: 10276 + - uid: 10302 components: - pos: 29.5,-23.5 parent: 2 type: Transform - - uid: 10277 + - uid: 10303 components: - pos: 25.5,-25.5 parent: 2 type: Transform - - uid: 10278 + - uid: 10304 components: - pos: 29.5,-22.5 parent: 2 type: Transform - - uid: 10279 + - uid: 10305 components: - pos: 27.5,-22.5 parent: 2 type: Transform - - uid: 10280 + - uid: 10306 components: - pos: 26.5,-22.5 parent: 2 type: Transform - - uid: 10281 + - uid: 10307 components: - pos: 24.5,-24.5 parent: 2 type: Transform - - uid: 10282 + - uid: 10308 components: - pos: 24.5,-23.5 parent: 2 type: Transform - - uid: 10283 + - uid: 10309 components: - pos: 24.5,-22.5 parent: 2 type: Transform - - uid: 10284 + - uid: 10310 components: - pos: 25.5,-24.5 parent: 2 type: Transform - - uid: 10285 + - uid: 10311 components: - pos: 28.5,-23.5 parent: 2 type: Transform - - uid: 10286 + - uid: 10312 components: - pos: 22.5,-23.5 parent: 2 type: Transform - - uid: 10287 + - uid: 10313 components: - pos: 22.5,-22.5 parent: 2 type: Transform - - uid: 10288 + - uid: 10314 components: - pos: 23.5,-22.5 parent: 2 type: Transform - - uid: 10289 + - uid: 10315 components: - pos: 25.5,-23.5 parent: 2 type: Transform - - uid: 10290 + - uid: 10316 components: - pos: 25.5,-22.5 parent: 2 type: Transform - - uid: 10291 + - uid: 10317 components: - pos: 26.5,-23.5 parent: 2 type: Transform - - uid: 10292 + - uid: 10318 components: - rot: 3.141592653589793 rad pos: 30.5,-47.5 parent: 2 type: Transform - - uid: 10293 + - uid: 10319 components: - rot: 3.141592653589793 rad pos: 30.5,-48.5 parent: 2 type: Transform - - uid: 10294 + - uid: 10320 components: - rot: 3.141592653589793 rad pos: 31.5,-47.5 parent: 2 type: Transform - - uid: 10295 + - uid: 10321 components: - rot: 3.141592653589793 rad pos: 31.5,-48.5 parent: 2 type: Transform - - uid: 10296 + - uid: 10322 components: - rot: 3.141592653589793 rad pos: 32.5,-47.5 parent: 2 type: Transform - - uid: 10297 + - uid: 10323 components: - rot: 3.141592653589793 rad pos: 32.5,-48.5 parent: 2 type: Transform - - uid: 10298 + - uid: 10324 components: - pos: 30.5,-28.5 parent: 2 type: Transform - - uid: 10299 + - uid: 10325 components: - pos: 30.5,-29.5 parent: 2 type: Transform - - uid: 10300 + - uid: 10326 components: - pos: 31.5,-27.5 parent: 2 type: Transform - - uid: 10301 + - uid: 10327 components: - pos: 31.5,-28.5 parent: 2 type: Transform - - uid: 10302 + - uid: 10328 components: - pos: 31.5,-29.5 parent: 2 type: Transform - - uid: 10303 + - uid: 10329 components: - pos: 32.5,-27.5 parent: 2 type: Transform - - uid: 10304 + - uid: 10330 components: - pos: 32.5,-28.5 parent: 2 type: Transform - - uid: 10305 + - uid: 10331 components: - pos: 32.5,-29.5 parent: 2 type: Transform - - uid: 10306 + - uid: 10332 components: - pos: 30.5,-27.5 parent: 2 type: Transform - - uid: 10307 + - uid: 10333 components: - pos: 31.5,-30.5 parent: 2 type: Transform - - uid: 10308 + - uid: 10334 components: - pos: 30.5,-30.5 parent: 2 type: Transform - - uid: 10309 + - uid: 10335 components: - pos: 59.5,-0.5 parent: 2 type: Transform - - uid: 10310 + - uid: 10336 components: - pos: 59.5,-1.5 parent: 2 type: Transform - - uid: 10311 + - uid: 10337 components: - pos: 60.5,-0.5 parent: 2 type: Transform - - uid: 10312 + - uid: 10338 components: - pos: 60.5,-1.5 parent: 2 type: Transform - - uid: 10313 + - uid: 10339 components: - pos: 61.5,-0.5 parent: 2 type: Transform - - uid: 10314 + - uid: 10340 components: - pos: 61.5,-1.5 parent: 2 type: Transform - - uid: 10315 + - uid: 10341 components: - pos: 62.5,-0.5 parent: 2 type: Transform - - uid: 10316 + - uid: 10342 components: - pos: 62.5,-1.5 parent: 2 type: Transform - - uid: 10317 + - uid: 10343 components: - pos: 32.5,-30.5 parent: 2 type: Transform - - uid: 10318 + - uid: 10344 components: - pos: 27.5,-23.5 parent: 2 type: Transform - proto: CartridgeMagnumAP entities: - - uid: 10319 + - uid: 10345 components: - rot: 1.5707963267948966 rad pos: 23.553988,-35.486286 parent: 2 type: Transform - - uid: 10320 + - uid: 10346 components: - rot: 1.5707963267948966 rad pos: 23.460238,-35.548786 parent: 2 type: Transform - - uid: 10321 + - uid: 10347 components: - rot: 1.5707963267948966 rad pos: 23.647738,-35.43941 @@ -69184,8840 +64739,8849 @@ entities: type: Transform - proto: Catwalk entities: - - uid: 10322 + - uid: 10348 + components: + - pos: 58.5,-38.5 + parent: 2 + type: Transform + - uid: 10349 components: - rot: 3.141592653589793 rad pos: 22.5,-32.5 parent: 2 type: Transform - - uid: 10323 + - uid: 10350 components: - rot: 3.141592653589793 rad pos: -76.5,-38.5 parent: 2 type: Transform - - uid: 10324 + - uid: 10351 components: - pos: -79.5,-40.5 parent: 2 type: Transform - - uid: 10325 + - uid: 10352 components: - pos: -79.5,-41.5 parent: 2 type: Transform - - uid: 10326 + - uid: 10353 components: - rot: 3.141592653589793 rad pos: -61.5,-53.5 parent: 2 type: Transform - - uid: 10327 + - uid: 10354 components: - rot: 3.141592653589793 rad pos: -61.5,-54.5 parent: 2 type: Transform - - uid: 10328 + - uid: 10355 components: - rot: 3.141592653589793 rad pos: -61.5,-52.5 parent: 2 type: Transform - - uid: 10329 + - uid: 10356 components: - rot: 3.141592653589793 rad pos: -61.5,-51.5 parent: 2 type: Transform - - uid: 10330 + - uid: 10357 components: - rot: 3.141592653589793 rad pos: -61.5,-50.5 parent: 2 type: Transform - - uid: 10331 + - uid: 10358 components: - rot: 3.141592653589793 rad pos: -61.5,-49.5 parent: 2 type: Transform - - uid: 10332 + - uid: 10359 components: - rot: 3.141592653589793 rad pos: -61.5,-48.5 parent: 2 type: Transform - - uid: 10333 + - uid: 10360 components: - rot: 1.5707963267948966 rad pos: -59.5,56.5 parent: 2 type: Transform - - uid: 10334 + - uid: 10361 components: - rot: 1.5707963267948966 rad pos: -57.5,56.5 parent: 2 type: Transform - - uid: 10335 + - uid: 10362 components: - rot: 1.5707963267948966 rad pos: -55.5,56.5 parent: 2 type: Transform - - uid: 10336 + - uid: 10363 components: - rot: 1.5707963267948966 rad pos: -54.5,55.5 parent: 2 type: Transform - - uid: 10337 + - uid: 10364 components: - rot: 3.141592653589793 rad pos: -0.5,-71.5 parent: 2 type: Transform - - uid: 10338 + - uid: 10365 components: - rot: 3.141592653589793 rad pos: 14.5,-47.5 parent: 2 type: Transform - - uid: 10339 + - uid: 10366 components: - pos: 65.5,-25.5 parent: 2 type: Transform - - uid: 10340 + - uid: 10367 components: - rot: 3.141592653589793 rad pos: 79.5,-26.5 parent: 2 type: Transform - - uid: 10341 + - uid: 10368 components: - pos: 31.5,-14.5 parent: 2 type: Transform - - uid: 10342 + - uid: 10369 components: - pos: -11.5,-15.5 parent: 2 type: Transform - - uid: 10343 + - uid: 10370 components: - pos: -7.5,-75.5 parent: 2 type: Transform - - uid: 10344 + - uid: 10371 components: - pos: 32.5,-11.5 parent: 2 type: Transform - - uid: 10345 + - uid: 10372 components: - pos: -1.5,-83.5 parent: 2 type: Transform - - uid: 10346 + - uid: 10373 components: - pos: -12.5,-15.5 parent: 2 type: Transform - - uid: 10347 + - uid: 10374 components: - pos: -5.5,-69.5 parent: 2 type: Transform - - uid: 10348 + - uid: 10375 components: - pos: 2.5,-90.5 parent: 2 type: Transform - - uid: 10349 + - uid: 10376 components: - pos: -1.5,-88.5 parent: 2 type: Transform - - uid: 10350 + - uid: 10377 components: - pos: -0.5,-89.5 parent: 2 type: Transform - - uid: 10351 + - uid: 10378 components: - pos: 0.5,-89.5 parent: 2 type: Transform - - uid: 10352 + - uid: 10379 components: - pos: 3.5,-92.5 parent: 2 type: Transform - - uid: 10353 + - uid: 10380 components: - pos: 8.5,-53.5 parent: 2 type: Transform - - uid: 10354 + - uid: 10381 components: - pos: 4.5,-92.5 parent: 2 type: Transform - - uid: 10355 + - uid: 10382 components: - pos: -46.5,-50.5 parent: 2 type: Transform - - uid: 10356 + - uid: 10383 components: - rot: 3.141592653589793 rad pos: 0.5,-71.5 parent: 2 type: Transform - - uid: 10357 + - uid: 10384 components: - pos: 2.5,-91.5 parent: 2 type: Transform - - uid: 10358 + - uid: 10385 components: - pos: -1.5,-89.5 parent: 2 type: Transform - - uid: 10359 + - uid: 10386 components: - pos: 4.5,-89.5 parent: 2 type: Transform - - uid: 10360 + - uid: 10387 components: - pos: -6.5,-75.5 parent: 2 type: Transform - - uid: 10361 + - uid: 10388 components: - pos: -8.5,-75.5 parent: 2 type: Transform - - uid: 10362 + - uid: 10389 components: - pos: 30.5,-14.5 parent: 2 type: Transform - - uid: 10363 + - uid: 10390 components: - pos: -5.5,-75.5 parent: 2 type: Transform - - uid: 10364 + - uid: 10391 components: - pos: -4.5,-75.5 parent: 2 type: Transform - - uid: 10365 + - uid: 10392 components: - pos: -3.5,-75.5 parent: 2 type: Transform - - uid: 10366 + - uid: 10393 components: - pos: -14.5,-73.5 parent: 2 type: Transform - - uid: 10367 + - uid: 10394 components: - pos: 30.5,-10.5 parent: 2 type: Transform - - uid: 10368 + - uid: 10395 components: - pos: -13.5,-73.5 parent: 2 type: Transform - - uid: 10369 + - uid: 10396 components: - pos: 9.5,-47.5 parent: 2 type: Transform - - uid: 10370 + - uid: 10397 components: - rot: 3.141592653589793 rad pos: 18.5,-52.5 parent: 2 type: Transform - - uid: 10371 + - uid: 10398 components: - rot: 3.141592653589793 rad pos: 14.5,-53.5 parent: 2 type: Transform - - uid: 10372 + - uid: 10399 components: - rot: 3.141592653589793 rad pos: 14.5,-52.5 parent: 2 type: Transform - - uid: 10373 + - uid: 10400 components: - rot: 3.141592653589793 rad pos: 21.5,-53.5 parent: 2 type: Transform - - uid: 10374 + - uid: 10401 components: - rot: 3.141592653589793 rad pos: 15.5,-53.5 parent: 2 type: Transform - - uid: 10375 + - uid: 10402 components: - rot: 3.141592653589793 rad pos: 15.5,-52.5 parent: 2 type: Transform - - uid: 10376 + - uid: 10403 components: - rot: 3.141592653589793 rad pos: 16.5,-52.5 parent: 2 type: Transform - - uid: 10377 + - uid: 10404 components: - rot: 3.141592653589793 rad pos: 17.5,-52.5 parent: 2 type: Transform - - uid: 10378 + - uid: 10405 components: - rot: 3.141592653589793 rad pos: 17.5,-53.5 parent: 2 type: Transform - - uid: 10379 + - uid: 10406 components: - pos: -46.5,-43.5 parent: 2 type: Transform - - uid: 10380 + - uid: 10407 components: - pos: 32.5,-10.5 parent: 2 type: Transform - - uid: 10381 + - uid: 10408 components: - pos: 32.5,-13.5 parent: 2 type: Transform - - uid: 10382 + - uid: 10409 components: - rot: -1.5707963267948966 rad pos: 27.5,-32.5 parent: 2 type: Transform - - uid: 10383 + - uid: 10410 components: - rot: -1.5707963267948966 rad pos: 24.5,-32.5 parent: 2 type: Transform - - uid: 10384 + - uid: 10411 components: - rot: 3.141592653589793 rad pos: 12.5,-16.5 parent: 2 type: Transform - - uid: 10385 + - uid: 10412 components: - rot: -1.5707963267948966 rad pos: 21.5,-32.5 parent: 2 type: Transform - - uid: 10386 + - uid: 10413 components: - pos: -17.5,-52.5 parent: 2 type: Transform - - uid: 10387 + - uid: 10414 components: - pos: -8.5,-13.5 parent: 2 type: Transform - - uid: 10388 + - uid: 10415 components: - pos: -6.5,-70.5 parent: 2 type: Transform - - uid: 10389 + - uid: 10416 components: - pos: 11.5,-17.5 parent: 2 type: Transform - - uid: 10390 + - uid: 10417 components: - pos: -19.5,-52.5 parent: 2 type: Transform - - uid: 10391 + - uid: 10418 components: - rot: 3.141592653589793 rad pos: 9.5,-92.5 parent: 2 type: Transform - - uid: 10392 + - uid: 10419 components: - rot: 3.141592653589793 rad pos: 10.5,-92.5 parent: 2 type: Transform - - uid: 10393 + - uid: 10420 components: - pos: -1.5,-82.5 parent: 2 type: Transform - - uid: 10394 + - uid: 10421 components: - rot: 3.141592653589793 rad pos: 14.5,-45.5 parent: 2 type: Transform - - uid: 10395 + - uid: 10422 components: - rot: -1.5707963267948966 rad pos: 25.5,-32.5 parent: 2 type: Transform - - uid: 10396 + - uid: 10423 components: - pos: 32.5,-12.5 parent: 2 type: Transform - - uid: 10397 + - uid: 10424 components: - pos: 32.5,-14.5 parent: 2 type: Transform - - uid: 10398 + - uid: 10425 components: - pos: -1.5,-85.5 parent: 2 type: Transform - - uid: 10399 + - uid: 10426 components: - pos: -1.5,-87.5 parent: 2 type: Transform - - uid: 10400 + - uid: 10427 components: - rot: 3.141592653589793 rad pos: 11.5,-105.5 parent: 2 type: Transform - - uid: 10401 + - uid: 10428 components: - pos: -12.5,-14.5 parent: 2 type: Transform - - uid: 10402 + - uid: 10429 components: - pos: 4.5,-67.5 parent: 2 type: Transform - - uid: 10403 + - uid: 10430 components: - pos: 1.5,-89.5 parent: 2 type: Transform - - uid: 10404 + - uid: 10431 components: - pos: 8.5,-55.5 parent: 2 type: Transform - - uid: 10405 + - uid: 10432 components: - rot: 3.141592653589793 rad pos: 11.5,-92.5 parent: 2 type: Transform - - uid: 10406 + - uid: 10433 components: - pos: 3.5,-67.5 parent: 2 type: Transform - - uid: 10407 + - uid: 10434 components: - pos: 5.5,-67.5 parent: 2 type: Transform - - uid: 10408 + - uid: 10435 components: - pos: 8.5,-54.5 parent: 2 type: Transform - - uid: 10409 + - uid: 10436 components: - rot: 1.5707963267948966 rad pos: -24.5,53.5 parent: 2 type: Transform - - uid: 10410 + - uid: 10437 components: - rot: 1.5707963267948966 rad pos: -24.5,50.5 parent: 2 type: Transform - - uid: 10411 + - uid: 10438 components: - rot: 1.5707963267948966 rad pos: -24.5,51.5 parent: 2 type: Transform - - uid: 10412 + - uid: 10439 components: - rot: 1.5707963267948966 rad pos: -24.5,52.5 parent: 2 type: Transform - - uid: 10413 + - uid: 10440 components: - rot: 1.5707963267948966 rad pos: -24.5,49.5 parent: 2 type: Transform - - uid: 10414 + - uid: 10441 components: - rot: 3.141592653589793 rad pos: 2.5,-71.5 parent: 2 type: Transform - - uid: 10415 + - uid: 10442 components: - pos: 30.5,-11.5 parent: 2 type: Transform - - uid: 10416 + - uid: 10443 components: - rot: 3.141592653589793 rad pos: 14.5,-48.5 parent: 2 type: Transform - - uid: 10417 + - uid: 10444 components: - rot: -1.5707963267948966 rad pos: 20.5,-32.5 parent: 2 type: Transform - - uid: 10418 + - uid: 10445 components: - pos: -1.5,-81.5 parent: 2 type: Transform - - uid: 10419 + - uid: 10446 components: - pos: -1.5,-86.5 parent: 2 type: Transform - - uid: 10420 + - uid: 10447 components: - pos: 2.5,-89.5 parent: 2 type: Transform - - uid: 10421 + - uid: 10448 components: - pos: 7.5,-92.5 parent: 2 type: Transform - - uid: 10422 + - uid: 10449 components: - pos: 2.5,-92.5 parent: 2 type: Transform - - uid: 10423 + - uid: 10450 components: - pos: 11.5,-100.5 parent: 2 type: Transform - - uid: 10424 + - uid: 10451 components: - rot: 3.141592653589793 rad pos: 8.5,-92.5 parent: 2 type: Transform - - uid: 10425 + - uid: 10452 components: - pos: 6.5,-92.5 parent: 2 type: Transform - - uid: 10426 + - uid: 10453 components: - pos: 5.5,-92.5 parent: 2 type: Transform - - uid: 10427 + - uid: 10454 components: - pos: -9.5,-75.5 parent: 2 type: Transform - - uid: 10428 + - uid: 10455 components: - rot: 3.141592653589793 rad pos: 20.5,-53.5 parent: 2 type: Transform - - uid: 10429 + - uid: 10456 components: - pos: 30.5,-12.5 parent: 2 type: Transform - - uid: 10430 + - uid: 10457 components: - pos: 60.5,-58.5 parent: 2 type: Transform - - uid: 10431 + - uid: 10458 components: - pos: -4.5,-69.5 parent: 2 type: Transform - - uid: 10432 + - uid: 10459 components: - pos: -13.5,-31.5 parent: 2 type: Transform - - uid: 10433 + - uid: 10460 components: - pos: -3.5,-69.5 parent: 2 type: Transform - - uid: 10434 + - uid: 10461 components: - pos: -9.5,-13.5 parent: 2 type: Transform - - uid: 10435 + - uid: 10462 components: - pos: -12.5,-13.5 parent: 2 type: Transform - - uid: 10436 + - uid: 10463 components: - pos: -10.5,-13.5 parent: 2 type: Transform - - uid: 10437 + - uid: 10464 components: - pos: -10.5,-14.5 parent: 2 type: Transform - - uid: 10438 + - uid: 10465 components: - pos: -10.5,-15.5 parent: 2 type: Transform - - uid: 10439 + - uid: 10466 components: - pos: -13.5,-14.5 parent: 2 type: Transform - - uid: 10440 + - uid: 10467 components: - pos: -7.5,-13.5 parent: 2 type: Transform - - uid: 10441 + - uid: 10468 components: - pos: -14.5,-31.5 parent: 2 type: Transform - - uid: 10442 + - uid: 10469 components: - pos: -15.5,-31.5 parent: 2 type: Transform - - uid: 10443 + - uid: 10470 components: - pos: -2.5,-69.5 parent: 2 type: Transform - - uid: 10444 + - uid: 10471 components: - pos: -16.5,-31.5 parent: 2 type: Transform - - uid: 10445 + - uid: 10472 components: - pos: -6.5,-69.5 parent: 2 type: Transform - - uid: 10446 + - uid: 10473 components: - pos: -12.5,15.5 parent: 2 type: Transform - - uid: 10447 + - uid: 10474 components: - pos: -14.5,15.5 parent: 2 type: Transform - - uid: 10448 + - uid: 10475 components: - pos: -6.5,-71.5 parent: 2 type: Transform - - uid: 10449 + - uid: 10476 components: - pos: -7.5,-71.5 parent: 2 type: Transform - - uid: 10450 + - uid: 10477 components: - pos: -8.5,-71.5 parent: 2 type: Transform - - uid: 10451 + - uid: 10478 components: - pos: -9.5,-71.5 parent: 2 type: Transform - - uid: 10452 + - uid: 10479 components: - pos: -10.5,-71.5 parent: 2 type: Transform - - uid: 10453 + - uid: 10480 components: - pos: -11.5,-71.5 parent: 2 type: Transform - - uid: 10454 + - uid: 10481 components: - pos: 3.5,-16.5 parent: 2 type: Transform - - uid: 10455 + - uid: 10482 components: - pos: 2.5,-16.5 parent: 2 type: Transform - - uid: 10456 + - uid: 10483 components: - pos: 1.5,-16.5 parent: 2 type: Transform - - uid: 10457 + - uid: 10484 components: - pos: 1.5,-17.5 parent: 2 type: Transform - - uid: 10458 + - uid: 10485 components: - pos: 0.5,-17.5 parent: 2 type: Transform - - uid: 10459 + - uid: 10486 components: - pos: -0.5,-17.5 parent: 2 type: Transform - - uid: 10460 + - uid: 10487 components: - pos: -0.5,-17.5 parent: 2 type: Transform - - uid: 10461 + - uid: 10488 components: - pos: 14.5,-14.5 parent: 2 type: Transform - - uid: 10462 + - uid: 10489 components: - pos: 13.5,-14.5 parent: 2 type: Transform - - uid: 10463 + - uid: 10490 components: - pos: 12.5,-14.5 parent: 2 type: Transform - - uid: 10464 + - uid: 10491 components: - pos: 11.5,-14.5 parent: 2 type: Transform - - uid: 10465 + - uid: 10492 components: - pos: 10.5,-14.5 parent: 2 type: Transform - - uid: 10466 + - uid: 10493 components: - pos: 9.5,-14.5 parent: 2 type: Transform - - uid: 10467 + - uid: 10494 components: - pos: 8.5,-14.5 parent: 2 type: Transform - - uid: 10468 + - uid: 10495 components: - pos: 7.5,-14.5 parent: 2 type: Transform - - uid: 10469 + - uid: 10496 components: - pos: 14.5,-5.5 parent: 2 type: Transform - - uid: 10470 + - uid: 10497 components: - pos: 14.5,-6.5 parent: 2 type: Transform - - uid: 10471 + - uid: 10498 components: - pos: 14.5,-4.5 parent: 2 type: Transform - - uid: 10472 + - uid: 10499 components: - pos: 56.5,1.5 parent: 2 type: Transform - - uid: 10473 + - uid: 10500 components: - pos: 57.5,2.5 parent: 2 type: Transform - - uid: 10474 + - uid: 10501 components: - pos: 56.5,2.5 parent: 2 type: Transform - - uid: 10475 + - uid: 10502 components: - pos: 57.5,1.5 parent: 2 type: Transform - - uid: 10476 + - uid: 10503 components: - pos: 58.5,1.5 parent: 2 type: Transform - - uid: 10477 + - uid: 10504 components: - pos: 59.5,1.5 parent: 2 type: Transform - - uid: 10478 + - uid: 10505 components: - pos: 60.5,1.5 parent: 2 type: Transform - - uid: 10479 + - uid: 10506 components: - pos: 61.5,1.5 parent: 2 type: Transform - - uid: 10480 + - uid: 10507 components: - pos: 62.5,1.5 parent: 2 type: Transform - - uid: 10481 + - uid: 10508 components: - pos: 62.5,2.5 parent: 2 type: Transform - - uid: 10482 + - uid: 10509 components: - pos: 12.5,-17.5 parent: 2 type: Transform - - uid: 10483 + - uid: 10510 components: - pos: 10.5,-17.5 parent: 2 type: Transform - - uid: 10484 + - uid: 10511 components: - pos: 8.5,-17.5 parent: 2 type: Transform - - uid: 10485 + - uid: 10512 components: - pos: 7.5,-17.5 parent: 2 type: Transform - - uid: 10486 + - uid: 10513 components: - rot: -1.5707963267948966 rad pos: 59.5,-19.5 parent: 2 type: Transform - - uid: 10487 + - uid: 10514 components: - rot: -1.5707963267948966 rad pos: 59.5,-20.5 parent: 2 type: Transform - - uid: 10488 + - uid: 10515 components: - rot: -1.5707963267948966 rad pos: 59.5,-21.5 parent: 2 type: Transform - - uid: 10489 + - uid: 10516 components: - rot: -1.5707963267948966 rad pos: 58.5,-19.5 parent: 2 type: Transform - - uid: 10490 + - uid: 10517 components: - rot: -1.5707963267948966 rad pos: 57.5,-19.5 parent: 2 type: Transform - - uid: 10491 + - uid: 10518 components: - rot: -1.5707963267948966 rad pos: 57.5,-18.5 parent: 2 type: Transform - - uid: 10492 + - uid: 10519 components: - rot: -1.5707963267948966 rad pos: 57.5,-17.5 parent: 2 type: Transform - - uid: 10493 + - uid: 10520 components: - rot: -1.5707963267948966 rad pos: 52.5,-17.5 parent: 2 type: Transform - - uid: 10494 + - uid: 10521 components: - rot: -1.5707963267948966 rad pos: 53.5,-17.5 parent: 2 type: Transform - - uid: 10495 + - uid: 10522 components: - rot: -1.5707963267948966 rad pos: 54.5,-17.5 parent: 2 type: Transform - - uid: 10496 + - uid: 10523 components: - rot: -1.5707963267948966 rad pos: 55.5,-17.5 parent: 2 type: Transform - - uid: 10497 + - uid: 10524 components: - rot: -1.5707963267948966 rad pos: 56.5,-17.5 parent: 2 type: Transform - - uid: 10498 + - uid: 10525 components: - pos: 61.5,-58.5 parent: 2 type: Transform - - uid: 10499 + - uid: 10526 components: - pos: 62.5,-58.5 parent: 2 type: Transform - - uid: 10500 + - uid: 10527 components: - pos: 63.5,-58.5 parent: 2 type: Transform - - uid: 10501 + - uid: 10528 components: - pos: 79.5,-43.5 parent: 2 type: Transform - - uid: 10502 + - uid: 10529 components: - pos: 79.5,-42.5 parent: 2 type: Transform - - uid: 10503 + - uid: 10530 components: - pos: -46.5,-55.5 parent: 2 type: Transform - - uid: 10504 + - uid: 10531 components: - pos: -16.5,-0.5 parent: 2 type: Transform - - uid: 10505 + - uid: 10532 components: - pos: -17.5,-0.5 parent: 2 type: Transform - - uid: 10506 + - uid: 10533 components: - pos: -18.5,-0.5 parent: 2 type: Transform - - uid: 10507 + - uid: 10534 components: - pos: -19.5,-0.5 parent: 2 type: Transform - - uid: 10508 + - uid: 10535 components: - pos: -20.5,-0.5 parent: 2 type: Transform - - uid: 10509 + - uid: 10536 components: - pos: -21.5,-0.5 parent: 2 type: Transform - - uid: 10510 + - uid: 10537 components: - pos: -22.5,-0.5 parent: 2 type: Transform - - uid: 10511 + - uid: 10538 components: - rot: 3.141592653589793 rad pos: 52.5,-85.5 parent: 2 type: Transform - - uid: 10512 + - uid: 10539 components: - rot: 3.141592653589793 rad pos: 52.5,-86.5 parent: 2 type: Transform - - uid: 10513 + - uid: 10540 components: - rot: 3.141592653589793 rad pos: 52.5,-87.5 parent: 2 type: Transform - - uid: 10514 + - uid: 10541 components: - rot: 3.141592653589793 rad pos: 52.5,-92.5 parent: 2 type: Transform - - uid: 10515 + - uid: 10542 components: - rot: 3.141592653589793 rad pos: 52.5,-77.5 parent: 2 type: Transform - - uid: 10516 + - uid: 10543 components: - rot: 3.141592653589793 rad pos: 14.5,-89.5 parent: 2 type: Transform - - uid: 10517 + - uid: 10544 components: - rot: 3.141592653589793 rad pos: 52.5,-78.5 parent: 2 type: Transform - - uid: 10518 + - uid: 10545 components: - rot: 3.141592653589793 rad pos: 15.5,-89.5 parent: 2 type: Transform - - uid: 10519 + - uid: 10546 components: - rot: 3.141592653589793 rad pos: 26.5,-89.5 parent: 2 type: Transform - - uid: 10520 + - uid: 10547 components: - rot: 3.141592653589793 rad pos: 24.5,-89.5 parent: 2 type: Transform - - uid: 10521 + - uid: 10548 components: - rot: 3.141592653589793 rad pos: 25.5,-89.5 parent: 2 type: Transform - - uid: 10522 + - uid: 10549 components: - rot: 3.141592653589793 rad pos: 52.5,-84.5 parent: 2 type: Transform - - uid: 10523 + - uid: 10550 components: - rot: 3.141592653589793 rad pos: 52.5,-94.5 parent: 2 type: Transform - - uid: 10524 + - uid: 10551 components: - rot: 3.141592653589793 rad pos: 52.5,-79.5 parent: 2 type: Transform - - uid: 10525 + - uid: 10552 components: - rot: 3.141592653589793 rad pos: 16.5,-89.5 parent: 2 type: Transform - - uid: 10526 + - uid: 10553 components: - rot: 3.141592653589793 rad pos: 17.5,-89.5 parent: 2 type: Transform - - uid: 10527 + - uid: 10554 components: - rot: 3.141592653589793 rad pos: 18.5,-89.5 parent: 2 type: Transform - - uid: 10528 + - uid: 10555 components: - rot: 3.141592653589793 rad pos: 19.5,-89.5 parent: 2 type: Transform - - uid: 10529 + - uid: 10556 components: - rot: 3.141592653589793 rad pos: 20.5,-89.5 parent: 2 type: Transform - - uid: 10530 + - uid: 10557 components: - rot: 3.141592653589793 rad pos: 21.5,-89.5 parent: 2 type: Transform - - uid: 10531 + - uid: 10558 components: - rot: 3.141592653589793 rad pos: 22.5,-89.5 parent: 2 type: Transform - - uid: 10532 + - uid: 10559 components: - rot: 3.141592653589793 rad pos: 27.5,-89.5 parent: 2 type: Transform - - uid: 10533 + - uid: 10560 components: - rot: 3.141592653589793 rad pos: 57.5,-74.5 parent: 2 type: Transform - - uid: 10534 + - uid: 10561 components: - rot: 3.141592653589793 rad pos: 27.5,-93.5 parent: 2 type: Transform - - uid: 10535 + - uid: 10562 components: - rot: 3.141592653589793 rad pos: 27.5,-94.5 parent: 2 type: Transform - - uid: 10536 + - uid: 10563 components: - rot: 3.141592653589793 rad pos: 27.5,-91.5 parent: 2 type: Transform - - uid: 10537 + - uid: 10564 components: - rot: 3.141592653589793 rad pos: 27.5,-92.5 parent: 2 type: Transform - - uid: 10538 + - uid: 10565 components: - rot: 3.141592653589793 rad pos: 52.5,-91.5 parent: 2 type: Transform - - uid: 10539 + - uid: 10566 components: - rot: 1.5707963267948966 rad pos: 22.5,-75.5 parent: 2 type: Transform - - uid: 10540 + - uid: 10567 components: - pos: 20.5,-73.5 parent: 2 type: Transform - - uid: 10541 + - uid: 10568 components: - pos: 19.5,-73.5 parent: 2 type: Transform - - uid: 10542 + - uid: 10569 components: - pos: 18.5,-73.5 parent: 2 type: Transform - - uid: 10543 + - uid: 10570 components: - pos: 17.5,-73.5 parent: 2 type: Transform - - uid: 10544 + - uid: 10571 components: - pos: 16.5,-73.5 parent: 2 type: Transform - - uid: 10545 + - uid: 10572 components: - pos: 15.5,-73.5 parent: 2 type: Transform - - uid: 10546 + - uid: 10573 components: - pos: 14.5,-73.5 parent: 2 type: Transform - - uid: 10547 + - uid: 10574 components: - pos: 13.5,-73.5 parent: 2 type: Transform - - uid: 10548 + - uid: 10575 components: - pos: 12.5,-73.5 parent: 2 type: Transform - - uid: 10549 + - uid: 10576 components: - pos: 11.5,-73.5 parent: 2 type: Transform - - uid: 10550 + - uid: 10577 components: - pos: 43.5,-59.5 parent: 2 type: Transform - - uid: 10551 + - uid: 10578 components: - pos: -46.5,-48.5 parent: 2 type: Transform - - uid: 10552 + - uid: 10579 components: - pos: -46.5,-45.5 parent: 2 type: Transform - - uid: 10553 + - uid: 10580 components: - pos: -46.5,-46.5 parent: 2 type: Transform - - uid: 10554 + - uid: 10581 components: - pos: -46.5,-52.5 parent: 2 type: Transform - - uid: 10555 + - uid: 10582 components: - rot: 1.5707963267948966 rad pos: -19.5,-45.5 parent: 2 type: Transform - - uid: 10556 + - uid: 10583 components: - rot: 1.5707963267948966 rad pos: -19.5,-46.5 parent: 2 type: Transform - - uid: 10557 + - uid: 10584 components: - rot: 1.5707963267948966 rad pos: -19.5,-47.5 parent: 2 type: Transform - - uid: 10558 + - uid: 10585 components: - rot: 3.141592653589793 rad pos: 27.5,-95.5 parent: 2 type: Transform - - uid: 10559 + - uid: 10586 components: - rot: 3.141592653589793 rad pos: 28.5,-95.5 parent: 2 type: Transform - - uid: 10560 + - uid: 10587 components: - rot: 3.141592653589793 rad pos: 56.5,-74.5 parent: 2 type: Transform - - uid: 10561 + - uid: 10588 components: - pos: -46.5,-47.5 parent: 2 type: Transform - - uid: 10562 + - uid: 10589 components: - pos: -46.5,-49.5 parent: 2 type: Transform - - uid: 10563 + - uid: 10590 components: - pos: -46.5,-44.5 parent: 2 type: Transform - - uid: 10564 + - uid: 10591 components: - pos: -46.5,-51.5 parent: 2 type: Transform - - uid: 10565 + - uid: 10592 components: - pos: 79.5,-50.5 parent: 2 type: Transform - - uid: 10566 + - uid: 10593 components: - pos: 79.5,-49.5 parent: 2 type: Transform - - uid: 10567 + - uid: 10594 components: - pos: 79.5,-44.5 parent: 2 type: Transform - - uid: 10568 + - uid: 10595 components: - pos: 79.5,-45.5 parent: 2 type: Transform - - uid: 10569 + - uid: 10596 components: - pos: 79.5,-46.5 parent: 2 type: Transform - - uid: 10570 + - uid: 10597 components: - pos: 79.5,-47.5 parent: 2 type: Transform - - uid: 10571 + - uid: 10598 components: - pos: 79.5,-48.5 parent: 2 type: Transform - - uid: 10572 + - uid: 10599 components: - pos: 79.5,-41.5 parent: 2 type: Transform - - uid: 10573 + - uid: 10600 components: - pos: 68.5,-74.5 parent: 2 type: Transform - - uid: 10574 + - uid: 10601 components: - pos: 68.5,-73.5 parent: 2 type: Transform - - uid: 10575 + - uid: 10602 components: - pos: -23.5,-26.5 parent: 2 type: Transform - - uid: 10576 + - uid: 10603 components: - pos: -24.5,-26.5 parent: 2 type: Transform - - uid: 10577 + - uid: 10604 components: - pos: -25.5,-26.5 parent: 2 type: Transform - - uid: 10578 + - uid: 10605 components: - pos: -26.5,-26.5 parent: 2 type: Transform - - uid: 10579 + - uid: 10606 components: - pos: -27.5,-26.5 parent: 2 type: Transform - - uid: 10580 + - uid: 10607 components: - pos: -28.5,-26.5 parent: 2 type: Transform - - uid: 10581 + - uid: 10608 components: - pos: 68.5,-72.5 parent: 2 type: Transform - - uid: 10582 + - uid: 10609 components: - pos: 68.5,-71.5 parent: 2 type: Transform - - uid: 10583 + - uid: 10610 components: - pos: 36.5,-56.5 parent: 2 type: Transform - - uid: 10584 + - uid: 10611 components: - pos: 36.5,-54.5 parent: 2 type: Transform - - uid: 10585 + - uid: 10612 components: - pos: 36.5,-53.5 parent: 2 type: Transform - - uid: 10586 + - uid: 10613 components: - pos: 36.5,-52.5 parent: 2 type: Transform - - uid: 10587 + - uid: 10614 components: - pos: 38.5,-51.5 parent: 2 type: Transform - - uid: 10588 + - uid: 10615 components: - pos: 39.5,-51.5 parent: 2 type: Transform - - uid: 10589 + - uid: 10616 components: - pos: 40.5,-51.5 parent: 2 type: Transform - - uid: 10590 + - uid: 10617 components: - pos: 41.5,-51.5 parent: 2 type: Transform - - uid: 10591 + - uid: 10618 components: - pos: 13.5,-47.5 parent: 2 type: Transform - - uid: 10592 + - uid: 10619 components: - pos: 13.5,-45.5 parent: 2 type: Transform - - uid: 10593 + - uid: 10620 components: - pos: 15.5,-45.5 parent: 2 type: Transform - - uid: 10594 + - uid: 10621 components: - pos: 16.5,-45.5 parent: 2 type: Transform - - uid: 10595 + - uid: 10622 components: - pos: 17.5,-45.5 parent: 2 type: Transform - - uid: 10596 + - uid: 10623 components: - rot: 3.141592653589793 rad pos: -1.5,-71.5 parent: 2 type: Transform - - uid: 10597 + - uid: 10624 components: - pos: 8.5,-56.5 parent: 2 type: Transform - - uid: 10598 + - uid: 10625 components: - pos: 62.5,-17.5 parent: 2 type: Transform - - uid: 10599 + - uid: 10626 components: - pos: 62.5,-18.5 parent: 2 type: Transform - - uid: 10600 + - uid: 10627 components: - pos: 62.5,-19.5 parent: 2 type: Transform - - uid: 10601 + - uid: 10628 components: - pos: 62.5,-20.5 parent: 2 type: Transform - - uid: 10602 + - uid: 10629 components: - pos: 62.5,-21.5 parent: 2 type: Transform - - uid: 10603 + - uid: 10630 components: - pos: 62.5,-22.5 parent: 2 type: Transform - - uid: 10604 + - uid: 10631 components: - pos: 62.5,-23.5 parent: 2 type: Transform - - uid: 10605 + - uid: 10632 components: - pos: -46.5,-9.5 parent: 2 type: Transform - - uid: 10606 + - uid: 10633 components: - pos: -46.5,-10.5 parent: 2 type: Transform - - uid: 10607 + - uid: 10634 components: - pos: -46.5,-11.5 parent: 2 type: Transform - - uid: 10608 + - uid: 10635 components: - pos: -46.5,-12.5 parent: 2 type: Transform - - uid: 10609 + - uid: 10636 components: - pos: -46.5,-13.5 parent: 2 type: Transform - - uid: 10610 + - uid: 10637 components: - pos: -46.5,-14.5 parent: 2 type: Transform - - uid: 10611 + - uid: 10638 components: - pos: -46.5,-15.5 parent: 2 type: Transform - - uid: 10612 + - uid: 10639 components: - pos: -46.5,-16.5 parent: 2 type: Transform - - uid: 10613 + - uid: 10640 components: - rot: -1.5707963267948966 rad pos: -59.5,-12.5 parent: 2 type: Transform - - uid: 10614 + - uid: 10641 components: - rot: -1.5707963267948966 rad pos: -59.5,-13.5 parent: 2 type: Transform - - uid: 10615 + - uid: 10642 components: - rot: -1.5707963267948966 rad pos: -59.5,-14.5 parent: 2 type: Transform - - uid: 10616 + - uid: 10643 components: - rot: -1.5707963267948966 rad pos: -59.5,-15.5 parent: 2 type: Transform - - uid: 10617 + - uid: 10644 components: - rot: -1.5707963267948966 rad pos: -59.5,-16.5 parent: 2 type: Transform - - uid: 10618 + - uid: 10645 components: - rot: -1.5707963267948966 rad pos: -59.5,-17.5 parent: 2 type: Transform - - uid: 10619 + - uid: 10646 components: - rot: -1.5707963267948966 rad pos: -59.5,-18.5 parent: 2 type: Transform - - uid: 10620 + - uid: 10647 components: - rot: -1.5707963267948966 rad pos: -59.5,-19.5 parent: 2 type: Transform - - uid: 10621 + - uid: 10648 components: - rot: -1.5707963267948966 rad pos: -59.5,-20.5 parent: 2 type: Transform - - uid: 10622 + - uid: 10649 components: - rot: -1.5707963267948966 rad pos: -60.5,-20.5 parent: 2 type: Transform - - uid: 10623 + - uid: 10650 components: - rot: -1.5707963267948966 rad pos: -61.5,-20.5 parent: 2 type: Transform - - uid: 10624 + - uid: 10651 components: - rot: -1.5707963267948966 rad pos: -62.5,-20.5 parent: 2 type: Transform - - uid: 10625 + - uid: 10652 components: - rot: -1.5707963267948966 rad pos: -63.5,-20.5 parent: 2 type: Transform - - uid: 10626 + - uid: 10653 components: - rot: -1.5707963267948966 rad pos: -64.5,-20.5 parent: 2 type: Transform - - uid: 10627 + - uid: 10654 components: - rot: -1.5707963267948966 rad pos: -65.5,-20.5 parent: 2 type: Transform - - uid: 10628 + - uid: 10655 components: - rot: -1.5707963267948966 rad pos: -66.5,-20.5 parent: 2 type: Transform - - uid: 10629 + - uid: 10656 components: - rot: -1.5707963267948966 rad pos: -67.5,-20.5 parent: 2 type: Transform - - uid: 10630 + - uid: 10657 components: - rot: -1.5707963267948966 rad pos: -68.5,-20.5 parent: 2 type: Transform - - uid: 10631 + - uid: 10658 components: - rot: -1.5707963267948966 rad pos: -69.5,-20.5 parent: 2 type: Transform - - uid: 10632 + - uid: 10659 components: - rot: -1.5707963267948966 rad pos: -70.5,-20.5 parent: 2 type: Transform - - uid: 10633 + - uid: 10660 components: - rot: -1.5707963267948966 rad pos: -71.5,-20.5 parent: 2 type: Transform - - uid: 10634 + - uid: 10661 components: - rot: -1.5707963267948966 rad pos: -72.5,-20.5 parent: 2 type: Transform - - uid: 10635 + - uid: 10662 components: - rot: -1.5707963267948966 rad pos: -73.5,-20.5 parent: 2 type: Transform - - uid: 10636 + - uid: 10663 components: - rot: -1.5707963267948966 rad pos: -73.5,-19.5 parent: 2 type: Transform - - uid: 10637 + - uid: 10664 components: - rot: -1.5707963267948966 rad pos: -73.5,-18.5 parent: 2 type: Transform - - uid: 10638 + - uid: 10665 components: - rot: -1.5707963267948966 rad pos: -73.5,-17.5 parent: 2 type: Transform - - uid: 10639 + - uid: 10666 components: - rot: -1.5707963267948966 rad pos: -73.5,-16.5 parent: 2 type: Transform - - uid: 10640 + - uid: 10667 components: - rot: -1.5707963267948966 rad pos: -73.5,-15.5 parent: 2 type: Transform - - uid: 10641 + - uid: 10668 components: - rot: -1.5707963267948966 rad pos: -73.5,-14.5 parent: 2 type: Transform - - uid: 10642 + - uid: 10669 components: - rot: -1.5707963267948966 rad pos: -73.5,-13.5 parent: 2 type: Transform - - uid: 10643 + - uid: 10670 components: - rot: -1.5707963267948966 rad pos: -73.5,-12.5 parent: 2 type: Transform - - uid: 10644 + - uid: 10671 components: - rot: -1.5707963267948966 rad pos: -73.5,-11.5 parent: 2 type: Transform - - uid: 10645 + - uid: 10672 components: - rot: -1.5707963267948966 rad pos: -73.5,-10.5 parent: 2 type: Transform - - uid: 10646 + - uid: 10673 components: - rot: -1.5707963267948966 rad pos: -73.5,-9.5 parent: 2 type: Transform - - uid: 10647 + - uid: 10674 components: - rot: -1.5707963267948966 rad pos: -73.5,-8.5 parent: 2 type: Transform - - uid: 10648 + - uid: 10675 components: - rot: -1.5707963267948966 rad pos: -73.5,-7.5 parent: 2 type: Transform - - uid: 10649 + - uid: 10676 components: - rot: -1.5707963267948966 rad pos: -73.5,-6.5 parent: 2 type: Transform - - uid: 10650 + - uid: 10677 components: - rot: -1.5707963267948966 rad pos: -72.5,-6.5 parent: 2 type: Transform - - uid: 10651 + - uid: 10678 components: - rot: -1.5707963267948966 rad pos: -71.5,-6.5 parent: 2 type: Transform - - uid: 10652 + - uid: 10679 components: - rot: -1.5707963267948966 rad pos: -70.5,-6.5 parent: 2 type: Transform - - uid: 10653 + - uid: 10680 components: - rot: -1.5707963267948966 rad pos: -69.5,-6.5 parent: 2 type: Transform - - uid: 10654 + - uid: 10681 components: - rot: -1.5707963267948966 rad pos: -68.5,-6.5 parent: 2 type: Transform - - uid: 10655 + - uid: 10682 components: - rot: -1.5707963267948966 rad pos: -67.5,-6.5 parent: 2 type: Transform - - uid: 10656 + - uid: 10683 components: - rot: -1.5707963267948966 rad pos: -66.5,-6.5 parent: 2 type: Transform - - uid: 10657 + - uid: 10684 components: - rot: -1.5707963267948966 rad pos: -65.5,-6.5 parent: 2 type: Transform - - uid: 10658 + - uid: 10685 components: - rot: -1.5707963267948966 rad pos: -64.5,-6.5 parent: 2 type: Transform - - uid: 10659 + - uid: 10686 components: - rot: -1.5707963267948966 rad pos: -63.5,-6.5 parent: 2 type: Transform - - uid: 10660 + - uid: 10687 components: - rot: -1.5707963267948966 rad pos: -62.5,-6.5 parent: 2 type: Transform - - uid: 10661 + - uid: 10688 components: - rot: -1.5707963267948966 rad pos: -61.5,-6.5 parent: 2 type: Transform - - uid: 10662 + - uid: 10689 components: - rot: -1.5707963267948966 rad pos: -60.5,-6.5 parent: 2 type: Transform - - uid: 10663 + - uid: 10690 components: - rot: -1.5707963267948966 rad pos: -59.5,-6.5 parent: 2 type: Transform - - uid: 10664 + - uid: 10691 components: - rot: -1.5707963267948966 rad pos: -59.5,-7.5 parent: 2 type: Transform - - uid: 10665 + - uid: 10692 components: - rot: -1.5707963267948966 rad pos: -59.5,-8.5 parent: 2 type: Transform - - uid: 10666 + - uid: 10693 components: - rot: -1.5707963267948966 rad pos: -59.5,-9.5 parent: 2 type: Transform - - uid: 10667 + - uid: 10694 components: - rot: -1.5707963267948966 rad pos: -59.5,-10.5 parent: 2 type: Transform - - uid: 10668 + - uid: 10695 components: - rot: -1.5707963267948966 rad pos: -59.5,-11.5 parent: 2 type: Transform - - uid: 10669 + - uid: 10696 components: - rot: -1.5707963267948966 rad pos: -79.5,-1.5 parent: 2 type: Transform - - uid: 10670 + - uid: 10697 components: - rot: -1.5707963267948966 rad pos: -79.5,-2.5 parent: 2 type: Transform - - uid: 10671 + - uid: 10698 components: - rot: -1.5707963267948966 rad pos: -79.5,-3.5 parent: 2 type: Transform - - uid: 10672 + - uid: 10699 components: - rot: -1.5707963267948966 rad pos: -79.5,-4.5 parent: 2 type: Transform - - uid: 10673 + - uid: 10700 components: - rot: -1.5707963267948966 rad pos: -79.5,-5.5 parent: 2 type: Transform - - uid: 10674 + - uid: 10701 components: - rot: -1.5707963267948966 rad pos: -79.5,-6.5 parent: 2 type: Transform - - uid: 10675 + - uid: 10702 components: - rot: -1.5707963267948966 rad pos: -79.5,-7.5 parent: 2 type: Transform - - uid: 10676 + - uid: 10703 components: - rot: -1.5707963267948966 rad pos: -79.5,-8.5 parent: 2 type: Transform - - uid: 10677 + - uid: 10704 components: - rot: -1.5707963267948966 rad pos: -79.5,-9.5 parent: 2 type: Transform - - uid: 10678 + - uid: 10705 components: - rot: -1.5707963267948966 rad pos: -79.5,-10.5 parent: 2 type: Transform - - uid: 10679 + - uid: 10706 components: - rot: -1.5707963267948966 rad pos: -79.5,-11.5 parent: 2 type: Transform - - uid: 10680 + - uid: 10707 components: - rot: -1.5707963267948966 rad pos: -79.5,-15.5 parent: 2 type: Transform - - uid: 10681 + - uid: 10708 components: - rot: -1.5707963267948966 rad pos: -79.5,-19.5 parent: 2 type: Transform - - uid: 10682 + - uid: 10709 components: - rot: -1.5707963267948966 rad pos: -79.5,-22.5 parent: 2 type: Transform - - uid: 10683 + - uid: 10710 components: - rot: -1.5707963267948966 rad pos: -79.5,-26.5 parent: 2 type: Transform - - uid: 10684 + - uid: 10711 components: - rot: -1.5707963267948966 rad pos: -78.5,-1.5 parent: 2 type: Transform - - uid: 10685 + - uid: 10712 components: - rot: -1.5707963267948966 rad pos: -77.5,-1.5 parent: 2 type: Transform - - uid: 10686 + - uid: 10713 components: - rot: -1.5707963267948966 rad pos: -76.5,-1.5 parent: 2 type: Transform - - uid: 10687 + - uid: 10714 components: - rot: -1.5707963267948966 rad pos: -75.5,-1.5 parent: 2 type: Transform - - uid: 10688 + - uid: 10715 components: - rot: -1.5707963267948966 rad pos: -74.5,-1.5 parent: 2 type: Transform - - uid: 10689 + - uid: 10716 components: - rot: -1.5707963267948966 rad pos: -73.5,-1.5 parent: 2 type: Transform - - uid: 10690 + - uid: 10717 components: - rot: -1.5707963267948966 rad pos: -72.5,-1.5 parent: 2 type: Transform - - uid: 10691 + - uid: 10718 components: - rot: -1.5707963267948966 rad pos: -71.5,-1.5 parent: 2 type: Transform - - uid: 10692 + - uid: 10719 components: - rot: -1.5707963267948966 rad pos: -70.5,-1.5 parent: 2 type: Transform - - uid: 10693 + - uid: 10720 components: - rot: -1.5707963267948966 rad pos: -69.5,-1.5 parent: 2 type: Transform - - uid: 10694 + - uid: 10721 components: - rot: -1.5707963267948966 rad pos: -68.5,-1.5 parent: 2 type: Transform - - uid: 10695 + - uid: 10722 components: - rot: -1.5707963267948966 rad pos: -67.5,-1.5 parent: 2 type: Transform - - uid: 10696 + - uid: 10723 components: - rot: -1.5707963267948966 rad pos: -66.5,-1.5 parent: 2 type: Transform - - uid: 10697 + - uid: 10724 components: - rot: -1.5707963267948966 rad pos: -65.5,-1.5 parent: 2 type: Transform - - uid: 10698 + - uid: 10725 components: - rot: -1.5707963267948966 rad pos: -64.5,-1.5 parent: 2 type: Transform - - uid: 10699 + - uid: 10726 components: - rot: -1.5707963267948966 rad pos: -63.5,-1.5 parent: 2 type: Transform - - uid: 10700 + - uid: 10727 components: - rot: -1.5707963267948966 rad pos: -62.5,-1.5 parent: 2 type: Transform - - uid: 10701 + - uid: 10728 components: - rot: -1.5707963267948966 rad pos: -61.5,-1.5 parent: 2 type: Transform - - uid: 10702 + - uid: 10729 components: - rot: -1.5707963267948966 rad pos: -60.5,-1.5 parent: 2 type: Transform - - uid: 10703 + - uid: 10730 components: - rot: -1.5707963267948966 rad pos: -59.5,-1.5 parent: 2 type: Transform - - uid: 10704 + - uid: 10731 components: - rot: -1.5707963267948966 rad pos: -58.5,-1.5 parent: 2 type: Transform - - uid: 10705 + - uid: 10732 components: - pos: -25.5,-58.5 parent: 2 type: Transform - - uid: 10706 + - uid: 10733 components: - pos: -28.5,-66.5 parent: 2 type: Transform - - uid: 10707 + - uid: 10734 components: - pos: -29.5,-66.5 parent: 2 type: Transform - - uid: 10708 + - uid: 10735 components: - pos: -30.5,-66.5 parent: 2 type: Transform - - uid: 10709 + - uid: 10736 components: - pos: -31.5,-66.5 parent: 2 type: Transform - - uid: 10710 + - uid: 10737 components: - pos: -32.5,-66.5 parent: 2 type: Transform - - uid: 10711 + - uid: 10738 components: - pos: -33.5,-66.5 parent: 2 type: Transform - - uid: 10712 + - uid: 10739 components: - pos: -34.5,-66.5 parent: 2 type: Transform - - uid: 10713 + - uid: 10740 components: - pos: -35.5,-66.5 parent: 2 type: Transform - - uid: 10714 + - uid: 10741 components: - pos: -24.5,-51.5 parent: 2 type: Transform - - uid: 10715 + - uid: 10742 components: - pos: -25.5,-51.5 parent: 2 type: Transform - - uid: 10716 + - uid: 10743 components: - pos: -26.5,-51.5 parent: 2 type: Transform - - uid: 10717 + - uid: 10744 components: - pos: -27.5,-51.5 parent: 2 type: Transform - - uid: 10718 + - uid: 10745 components: - pos: -28.5,-51.5 parent: 2 type: Transform - - uid: 10719 + - uid: 10746 components: - pos: -29.5,-51.5 parent: 2 type: Transform - - uid: 10720 + - uid: 10747 components: - pos: -25.5,-41.5 parent: 2 type: Transform - - uid: 10721 + - uid: 10748 components: - pos: -25.5,-42.5 parent: 2 type: Transform - - uid: 10722 + - uid: 10749 components: - pos: -25.5,-43.5 parent: 2 type: Transform - - uid: 10723 + - uid: 10750 components: - pos: -25.5,-44.5 parent: 2 type: Transform - - uid: 10724 + - uid: 10751 components: - pos: -25.5,-45.5 parent: 2 type: Transform - - uid: 10725 + - uid: 10752 components: - pos: -25.5,-46.5 parent: 2 type: Transform - - uid: 10726 + - uid: 10753 components: - pos: -26.5,-46.5 parent: 2 type: Transform - - uid: 10727 + - uid: 10754 components: - pos: -25.5,-47.5 parent: 2 type: Transform - - uid: 10728 + - uid: 10755 components: - pos: -25.5,-47.5 parent: 2 type: Transform - - uid: 10729 + - uid: 10756 components: - pos: -26.5,-47.5 parent: 2 type: Transform - - uid: 10730 + - uid: 10757 components: - pos: -26.5,-39.5 parent: 2 type: Transform - - uid: 10731 + - uid: 10758 components: - pos: -26.5,-40.5 parent: 2 type: Transform - - uid: 10732 + - uid: 10759 components: - pos: -25.5,-40.5 parent: 2 type: Transform - - uid: 10733 + - uid: 10760 components: - pos: -25.5,-39.5 parent: 2 type: Transform - - uid: 10734 + - uid: 10761 components: - pos: -47.5,-67.5 parent: 2 type: Transform - - uid: 10735 + - uid: 10762 components: - pos: -47.5,-66.5 parent: 2 type: Transform - - uid: 10736 + - uid: 10763 components: - pos: -47.5,-68.5 parent: 2 type: Transform - - uid: 10737 + - uid: 10764 components: - pos: -46.5,-66.5 parent: 2 type: Transform - - uid: 10738 + - uid: 10765 components: - pos: -46.5,-67.5 parent: 2 type: Transform - - uid: 10739 + - uid: 10766 components: - pos: -46.5,-68.5 parent: 2 type: Transform - - uid: 10740 + - uid: 10767 components: - pos: 46.5,-11.5 parent: 2 type: Transform - - uid: 10741 + - uid: 10768 components: - pos: 45.5,-11.5 parent: 2 type: Transform - - uid: 10742 + - uid: 10769 components: - pos: 44.5,-11.5 parent: 2 type: Transform - - uid: 10743 + - uid: 10770 components: - pos: 43.5,-11.5 parent: 2 type: Transform - - uid: 10744 + - uid: 10771 components: - pos: 42.5,-11.5 parent: 2 type: Transform - - uid: 10745 + - uid: 10772 components: - pos: 40.5,-7.5 parent: 2 type: Transform - - uid: 10746 + - uid: 10773 components: - pos: 40.5,-8.5 parent: 2 type: Transform - - uid: 10747 + - uid: 10774 components: - pos: 40.5,-9.5 parent: 2 type: Transform - - uid: 10748 + - uid: 10775 components: - pos: 40.5,-10.5 parent: 2 type: Transform - - uid: 10749 + - uid: 10776 components: - pos: 40.5,-11.5 parent: 2 type: Transform - - uid: 10750 + - uid: 10777 components: - pos: 30.5,-8.5 parent: 2 type: Transform - - uid: 10751 + - uid: 10778 components: - pos: 31.5,-8.5 parent: 2 type: Transform - - uid: 10752 + - uid: 10779 components: - pos: 33.5,-8.5 parent: 2 type: Transform - - uid: 10753 + - uid: 10780 components: - pos: 34.5,-8.5 parent: 2 type: Transform - - uid: 10754 + - uid: 10781 components: - pos: 35.5,-8.5 parent: 2 type: Transform - - uid: 10755 + - uid: 10782 components: - pos: 30.5,-13.5 parent: 2 type: Transform - - uid: 10756 + - uid: 10783 components: - pos: 37.5,-8.5 parent: 2 type: Transform - - uid: 10757 + - uid: 10784 components: - pos: -46.5,-42.5 parent: 2 type: Transform - - uid: 10758 + - uid: 10785 components: - pos: -20.5,-52.5 parent: 2 type: Transform - - uid: 10759 + - uid: 10786 components: - pos: -37.5,-21.5 parent: 2 type: Transform - - uid: 10760 + - uid: 10787 components: - pos: -37.5,-22.5 parent: 2 type: Transform - - uid: 10761 + - uid: 10788 components: - pos: -37.5,-23.5 parent: 2 type: Transform - - uid: 10762 + - uid: 10789 components: - pos: -37.5,-24.5 parent: 2 type: Transform - - uid: 10763 + - uid: 10790 components: - pos: -43.5,-26.5 parent: 2 type: Transform - - uid: 10764 + - uid: 10791 components: - pos: -42.5,-26.5 parent: 2 type: Transform - - uid: 10765 + - uid: 10792 components: - pos: -41.5,-26.5 parent: 2 type: Transform - - uid: 10766 + - uid: 10793 components: - pos: -40.5,-26.5 parent: 2 type: Transform - - uid: 10767 + - uid: 10794 components: - pos: -39.5,-26.5 parent: 2 type: Transform - - uid: 10768 + - uid: 10795 components: - pos: -38.5,-26.5 parent: 2 type: Transform - - uid: 10769 + - uid: 10796 components: - pos: -48.5,-32.5 parent: 2 type: Transform - - uid: 10770 + - uid: 10797 components: - pos: -52.5,-32.5 parent: 2 type: Transform - - uid: 10771 + - uid: 10798 components: - pos: 69.5,3.5 parent: 2 type: Transform - - uid: 10772 + - uid: 10799 components: - pos: -2.5,29.5 parent: 2 type: Transform - - uid: 10773 + - uid: 10800 components: - rot: 3.141592653589793 rad pos: 14.5,32.5 parent: 2 type: Transform - - uid: 10774 + - uid: 10801 components: - rot: 3.141592653589793 rad pos: 13.5,32.5 parent: 2 type: Transform - - uid: 10775 + - uid: 10802 components: - rot: 3.141592653589793 rad pos: 2.5,32.5 parent: 2 type: Transform - - uid: 10776 + - uid: 10803 components: - rot: 3.141592653589793 rad pos: 19.5,25.5 parent: 2 type: Transform - - uid: 10777 + - uid: 10804 components: - rot: 3.141592653589793 rad pos: 18.5,25.5 parent: 2 type: Transform - - uid: 10778 + - uid: 10805 components: - rot: 3.141592653589793 rad pos: 17.5,25.5 parent: 2 type: Transform - - uid: 10779 + - uid: 10806 components: - rot: 3.141592653589793 rad pos: 16.5,25.5 parent: 2 type: Transform - - uid: 10780 + - uid: 10807 components: - rot: 3.141592653589793 rad pos: 15.5,25.5 parent: 2 type: Transform - - uid: 10781 + - uid: 10808 components: - rot: 3.141592653589793 rad pos: 14.5,25.5 parent: 2 type: Transform - - uid: 10782 + - uid: 10809 components: - rot: 3.141592653589793 rad pos: 13.5,25.5 parent: 2 type: Transform - - uid: 10783 + - uid: 10810 components: - rot: 3.141592653589793 rad pos: 16.5,27.5 parent: 2 type: Transform - - uid: 10784 + - uid: 10811 components: - rot: 3.141592653589793 rad pos: 16.5,26.5 parent: 2 type: Transform - - uid: 10785 - components: - - rot: 3.141592653589793 rad - pos: 9.5,24.5 - parent: 2 - type: Transform - - uid: 10786 + - uid: 10812 components: - rot: 3.141592653589793 rad pos: 8.5,24.5 parent: 2 type: Transform - - uid: 10787 + - uid: 10813 components: - rot: 3.141592653589793 rad pos: 7.5,24.5 parent: 2 type: Transform - - uid: 10788 + - uid: 10814 components: - rot: 3.141592653589793 rad pos: 6.5,24.5 parent: 2 type: Transform - - uid: 10789 + - uid: 10815 components: - rot: 3.141592653589793 rad pos: 5.5,24.5 parent: 2 type: Transform - - uid: 10790 + - uid: 10816 components: - rot: 3.141592653589793 rad pos: 4.5,24.5 parent: 2 type: Transform - - uid: 10791 + - uid: 10817 components: - rot: 3.141592653589793 rad pos: 3.5,24.5 parent: 2 type: Transform - - uid: 10792 + - uid: 10818 components: - rot: 3.141592653589793 rad pos: 2.5,24.5 parent: 2 type: Transform - - uid: 10793 + - uid: 10819 components: - rot: 3.141592653589793 rad pos: 1.5,24.5 parent: 2 type: Transform - - uid: 10794 + - uid: 10820 components: - rot: 3.141592653589793 rad pos: 0.5,24.5 parent: 2 type: Transform - - uid: 10795 + - uid: 10821 components: - rot: 3.141592653589793 rad pos: -3.5,23.5 parent: 2 type: Transform - - uid: 10796 + - uid: 10822 components: - rot: 3.141592653589793 rad pos: -4.5,23.5 parent: 2 type: Transform - - uid: 10797 + - uid: 10823 components: - rot: 3.141592653589793 rad pos: -5.5,23.5 parent: 2 type: Transform - - uid: 10798 + - uid: 10824 components: - rot: 3.141592653589793 rad pos: -6.5,23.5 parent: 2 type: Transform - - uid: 10799 + - uid: 10825 components: - rot: 3.141592653589793 rad pos: -7.5,23.5 parent: 2 type: Transform - - uid: 10800 + - uid: 10826 components: - pos: -11.5,18.5 parent: 2 type: Transform - - uid: 10801 + - uid: 10827 components: - pos: -11.5,15.5 parent: 2 type: Transform - - uid: 10802 + - uid: 10828 components: - pos: -12.5,24.5 parent: 2 type: Transform - - uid: 10803 + - uid: 10829 components: - rot: -1.5707963267948966 rad pos: 65.5,-24.5 parent: 2 type: Transform - - uid: 10804 + - uid: 10830 components: - rot: -1.5707963267948966 rad pos: 65.5,-23.5 parent: 2 type: Transform - - uid: 10805 + - uid: 10831 components: - rot: -1.5707963267948966 rad pos: 65.5,-22.5 parent: 2 type: Transform - - uid: 10806 + - uid: 10832 components: - rot: -1.5707963267948966 rad pos: 65.5,-21.5 parent: 2 type: Transform - - uid: 10807 + - uid: 10833 components: - pos: 67.5,-18.5 parent: 2 type: Transform - - uid: 10808 + - uid: 10834 components: - pos: -45.5,46.5 parent: 2 type: Transform - - uid: 10809 + - uid: 10835 components: - pos: -45.5,47.5 parent: 2 type: Transform - - uid: 10810 + - uid: 10836 components: - pos: -45.5,48.5 parent: 2 type: Transform - - uid: 10811 + - uid: 10837 components: - pos: -45.5,49.5 parent: 2 type: Transform - - uid: 10812 + - uid: 10838 components: - rot: -1.5707963267948966 rad pos: -41.5,46.5 parent: 2 type: Transform - - uid: 10813 + - uid: 10839 components: - rot: -1.5707963267948966 rad pos: -42.5,46.5 parent: 2 type: Transform - - uid: 10814 + - uid: 10840 components: - rot: -1.5707963267948966 rad pos: -43.5,46.5 parent: 2 type: Transform - - uid: 10815 + - uid: 10841 components: - rot: -1.5707963267948966 rad pos: -44.5,46.5 parent: 2 type: Transform - - uid: 10816 + - uid: 10842 components: - pos: -40.5,45.5 parent: 2 type: Transform - - uid: 10817 + - uid: 10843 components: - pos: -39.5,45.5 parent: 2 type: Transform - - uid: 10818 + - uid: 10844 components: - pos: -38.5,45.5 parent: 2 type: Transform - - uid: 10819 + - uid: 10845 components: - pos: -40.5,46.5 parent: 2 type: Transform - - uid: 10820 + - uid: 10846 components: - pos: -40.5,47.5 parent: 2 type: Transform - - uid: 10821 + - uid: 10847 components: - pos: -40.5,48.5 parent: 2 type: Transform - - uid: 10822 + - uid: 10848 components: - pos: -40.5,49.5 parent: 2 type: Transform - - uid: 10823 + - uid: 10849 components: - pos: -40.5,50.5 parent: 2 type: Transform - - uid: 10824 + - uid: 10850 components: - pos: -40.5,51.5 parent: 2 type: Transform - - uid: 10825 + - uid: 10851 components: - pos: -40.5,52.5 parent: 2 type: Transform - - uid: 10826 + - uid: 10852 components: - pos: -40.5,53.5 parent: 2 type: Transform - - uid: 10827 + - uid: 10853 components: - pos: -48.5,53.5 parent: 2 type: Transform - - uid: 10828 + - uid: 10854 components: - pos: -47.5,53.5 parent: 2 type: Transform - - uid: 10829 + - uid: 10855 components: - pos: -46.5,53.5 parent: 2 type: Transform - - uid: 10830 + - uid: 10856 components: - pos: -45.5,53.5 parent: 2 type: Transform - - uid: 10831 + - uid: 10857 components: - pos: -44.5,53.5 parent: 2 type: Transform - - uid: 10832 + - uid: 10858 components: - pos: -43.5,53.5 parent: 2 type: Transform - - uid: 10833 + - uid: 10859 components: - pos: -42.5,53.5 parent: 2 type: Transform - - uid: 10834 + - uid: 10860 components: - pos: -41.5,53.5 parent: 2 type: Transform - - uid: 10835 + - uid: 10861 components: - pos: -40.5,53.5 parent: 2 type: Transform - - uid: 10836 + - uid: 10862 components: - pos: -39.5,53.5 parent: 2 type: Transform - - uid: 10837 + - uid: 10863 components: - pos: -49.5,0.5 parent: 2 type: Transform - - uid: 10838 + - uid: 10864 components: - pos: -49.5,-0.5 parent: 2 type: Transform - - uid: 10839 + - uid: 10865 components: - pos: -49.5,-1.5 parent: 2 type: Transform - - uid: 10840 + - uid: 10866 components: - pos: -49.5,-2.5 parent: 2 type: Transform - - uid: 10841 + - uid: 10867 components: - pos: -49.5,-3.5 parent: 2 type: Transform - - uid: 10842 + - uid: 10868 components: - pos: -50.5,-3.5 parent: 2 type: Transform - - uid: 10843 + - uid: 10869 components: - pos: -51.5,-3.5 parent: 2 type: Transform - - uid: 10844 + - uid: 10870 components: - pos: -51.5,-2.5 parent: 2 type: Transform - - uid: 10845 + - uid: 10871 components: - pos: -51.5,-1.5 parent: 2 type: Transform - - uid: 10846 + - uid: 10872 components: - pos: -51.5,-0.5 parent: 2 type: Transform - - uid: 10847 + - uid: 10873 components: - pos: -51.5,0.5 parent: 2 type: Transform - - uid: 10848 + - uid: 10874 components: - pos: -51.5,1.5 parent: 2 type: Transform - - uid: 10849 - components: - - pos: -41.5,-2.5 - parent: 2 - type: Transform - - uid: 10850 - components: - - pos: -40.5,-2.5 - parent: 2 - type: Transform - - uid: 10851 - components: - - pos: -39.5,-2.5 - parent: 2 - type: Transform - - uid: 10852 + - uid: 10875 components: - pos: -38.5,-2.5 parent: 2 type: Transform - - uid: 10853 + - uid: 10876 components: - pos: -37.5,-2.5 parent: 2 type: Transform - - uid: 10854 + - uid: 10877 components: - pos: -36.5,-2.5 parent: 2 type: Transform - - uid: 10855 + - uid: 10878 components: - rot: -1.5707963267948966 rad pos: -38.5,53.5 parent: 2 type: Transform - - uid: 10856 + - uid: 10879 components: - rot: -1.5707963267948966 rad pos: -37.5,53.5 parent: 2 type: Transform - - uid: 10857 + - uid: 10880 components: - rot: -1.5707963267948966 rad pos: -36.5,53.5 parent: 2 type: Transform - - uid: 10858 + - uid: 10881 components: - rot: -1.5707963267948966 rad pos: -35.5,53.5 parent: 2 type: Transform - - uid: 10859 + - uid: 10882 components: - rot: -1.5707963267948966 rad pos: -34.5,53.5 parent: 2 type: Transform - - uid: 10860 + - uid: 10883 components: - rot: -1.5707963267948966 rad pos: -33.5,53.5 parent: 2 type: Transform - - uid: 10861 + - uid: 10884 components: - rot: -1.5707963267948966 rad pos: -33.5,54.5 parent: 2 type: Transform - - uid: 10862 + - uid: 10885 components: - rot: -1.5707963267948966 rad pos: -33.5,55.5 parent: 2 type: Transform - - uid: 10863 + - uid: 10886 components: - rot: -1.5707963267948966 rad pos: -33.5,56.5 parent: 2 type: Transform - - uid: 10864 + - uid: 10887 components: - rot: -1.5707963267948966 rad pos: -33.5,57.5 parent: 2 type: Transform - - uid: 10865 + - uid: 10888 components: - rot: -1.5707963267948966 rad pos: -33.5,58.5 parent: 2 type: Transform - - uid: 10866 + - uid: 10889 components: - rot: -1.5707963267948966 rad pos: -33.5,59.5 parent: 2 type: Transform - - uid: 10867 + - uid: 10890 components: - rot: -1.5707963267948966 rad pos: -33.5,60.5 parent: 2 type: Transform - - uid: 10868 + - uid: 10891 components: - rot: -1.5707963267948966 rad pos: -33.5,61.5 parent: 2 type: Transform - - uid: 10869 + - uid: 10892 components: - rot: -1.5707963267948966 rad pos: -33.5,62.5 parent: 2 type: Transform - - uid: 10870 + - uid: 10893 components: - rot: -1.5707963267948966 rad pos: -33.5,63.5 parent: 2 type: Transform - - uid: 10871 + - uid: 10894 components: - rot: -1.5707963267948966 rad pos: -33.5,64.5 parent: 2 type: Transform - - uid: 10872 + - uid: 10895 components: - rot: -1.5707963267948966 rad pos: -33.5,65.5 parent: 2 type: Transform - - uid: 10873 + - uid: 10896 components: - rot: -1.5707963267948966 rad pos: -33.5,66.5 parent: 2 type: Transform - - uid: 10874 + - uid: 10897 components: - rot: -1.5707963267948966 rad pos: -33.5,67.5 parent: 2 type: Transform - - uid: 10875 + - uid: 10898 components: - rot: -1.5707963267948966 rad pos: -33.5,68.5 parent: 2 type: Transform - - uid: 10876 + - uid: 10899 components: - rot: -1.5707963267948966 rad pos: -33.5,69.5 parent: 2 type: Transform - - uid: 10877 + - uid: 10900 components: - rot: -1.5707963267948966 rad pos: -33.5,70.5 parent: 2 type: Transform - - uid: 10878 + - uid: 10901 components: - rot: -1.5707963267948966 rad pos: -33.5,71.5 parent: 2 type: Transform - - uid: 10879 + - uid: 10902 components: - rot: -1.5707963267948966 rad pos: -33.5,72.5 parent: 2 type: Transform - - uid: 10880 + - uid: 10903 components: - rot: -1.5707963267948966 rad pos: -34.5,72.5 parent: 2 type: Transform - - uid: 10881 + - uid: 10904 components: - rot: -1.5707963267948966 rad pos: -35.5,72.5 parent: 2 type: Transform - - uid: 10882 + - uid: 10905 components: - rot: -1.5707963267948966 rad pos: -36.5,72.5 parent: 2 type: Transform - - uid: 10883 + - uid: 10906 components: - rot: -1.5707963267948966 rad pos: -37.5,72.5 parent: 2 type: Transform - - uid: 10884 + - uid: 10907 components: - rot: -1.5707963267948966 rad pos: -38.5,72.5 parent: 2 type: Transform - - uid: 10885 + - uid: 10908 components: - rot: -1.5707963267948966 rad pos: -39.5,72.5 parent: 2 type: Transform - - uid: 10886 + - uid: 10909 components: - rot: -1.5707963267948966 rad pos: -40.5,72.5 parent: 2 type: Transform - - uid: 10887 + - uid: 10910 components: - rot: -1.5707963267948966 rad pos: -41.5,72.5 parent: 2 type: Transform - - uid: 10888 + - uid: 10911 components: - rot: -1.5707963267948966 rad pos: -42.5,72.5 parent: 2 type: Transform - - uid: 10889 + - uid: 10912 components: - rot: -1.5707963267948966 rad pos: -43.5,72.5 parent: 2 type: Transform - - uid: 10890 + - uid: 10913 components: - rot: -1.5707963267948966 rad pos: -44.5,72.5 parent: 2 type: Transform - - uid: 10891 + - uid: 10914 components: - rot: -1.5707963267948966 rad pos: -45.5,72.5 parent: 2 type: Transform - - uid: 10892 + - uid: 10915 components: - rot: -1.5707963267948966 rad pos: -46.5,72.5 parent: 2 type: Transform - - uid: 10893 + - uid: 10916 components: - rot: -1.5707963267948966 rad pos: -47.5,72.5 parent: 2 type: Transform - - uid: 10894 + - uid: 10917 components: - rot: -1.5707963267948966 rad pos: -48.5,72.5 parent: 2 type: Transform - - uid: 10895 + - uid: 10918 components: - rot: -1.5707963267948966 rad pos: -49.5,72.5 parent: 2 type: Transform - - uid: 10896 + - uid: 10919 components: - rot: -1.5707963267948966 rad pos: -50.5,72.5 parent: 2 type: Transform - - uid: 10897 + - uid: 10920 components: - rot: -1.5707963267948966 rad pos: -51.5,72.5 parent: 2 type: Transform - - uid: 10898 + - uid: 10921 components: - rot: -1.5707963267948966 rad pos: -52.5,72.5 parent: 2 type: Transform - - uid: 10899 + - uid: 10922 components: - rot: -1.5707963267948966 rad pos: -53.5,72.5 parent: 2 type: Transform - - uid: 10900 + - uid: 10923 components: - rot: -1.5707963267948966 rad pos: -54.5,72.5 parent: 2 type: Transform - - uid: 10901 + - uid: 10924 components: - rot: -1.5707963267948966 rad pos: -55.5,72.5 parent: 2 type: Transform - - uid: 10902 + - uid: 10925 components: - rot: -1.5707963267948966 rad pos: -56.5,72.5 parent: 2 type: Transform - - uid: 10903 + - uid: 10926 components: - rot: -1.5707963267948966 rad pos: -57.5,72.5 parent: 2 type: Transform - - uid: 10904 + - uid: 10927 components: - rot: -1.5707963267948966 rad pos: -58.5,72.5 parent: 2 type: Transform - - uid: 10905 + - uid: 10928 components: - rot: -1.5707963267948966 rad pos: -59.5,72.5 parent: 2 type: Transform - - uid: 10906 + - uid: 10929 components: - rot: -1.5707963267948966 rad pos: -60.5,72.5 parent: 2 type: Transform - - uid: 10907 + - uid: 10930 components: - rot: -1.5707963267948966 rad pos: -61.5,72.5 parent: 2 type: Transform - - uid: 10908 + - uid: 10931 components: - rot: -1.5707963267948966 rad pos: -61.5,71.5 parent: 2 type: Transform - - uid: 10909 + - uid: 10932 components: - rot: -1.5707963267948966 rad pos: -61.5,70.5 parent: 2 type: Transform - - uid: 10910 + - uid: 10933 components: - rot: -1.5707963267948966 rad pos: -61.5,69.5 parent: 2 type: Transform - - uid: 10911 + - uid: 10934 components: - rot: -1.5707963267948966 rad pos: -61.5,68.5 parent: 2 type: Transform - - uid: 10912 + - uid: 10935 components: - rot: -1.5707963267948966 rad pos: -61.5,67.5 parent: 2 type: Transform - - uid: 10913 + - uid: 10936 components: - rot: -1.5707963267948966 rad pos: -61.5,66.5 parent: 2 type: Transform - - uid: 10914 + - uid: 10937 components: - rot: -1.5707963267948966 rad pos: -61.5,65.5 parent: 2 type: Transform - - uid: 10915 + - uid: 10938 components: - rot: -1.5707963267948966 rad pos: -61.5,64.5 parent: 2 type: Transform - - uid: 10916 + - uid: 10939 components: - rot: -1.5707963267948966 rad pos: -61.5,63.5 parent: 2 type: Transform - - uid: 10917 + - uid: 10940 components: - rot: -1.5707963267948966 rad pos: -61.5,62.5 parent: 2 type: Transform - - uid: 10918 + - uid: 10941 components: - rot: -1.5707963267948966 rad pos: -61.5,61.5 parent: 2 type: Transform - - uid: 10919 + - uid: 10942 components: - rot: -1.5707963267948966 rad pos: -61.5,60.5 parent: 2 type: Transform - - uid: 10920 + - uid: 10943 components: - rot: -1.5707963267948966 rad pos: -61.5,59.5 parent: 2 type: Transform - - uid: 10921 + - uid: 10944 components: - rot: -1.5707963267948966 rad pos: -61.5,58.5 parent: 2 type: Transform - - uid: 10922 + - uid: 10945 components: - rot: -1.5707963267948966 rad pos: -61.5,57.5 parent: 2 type: Transform - - uid: 10923 + - uid: 10946 components: - rot: -1.5707963267948966 rad pos: -61.5,56.5 parent: 2 type: Transform - - uid: 10924 + - uid: 10947 components: - rot: 1.5707963267948966 rad pos: -53.5,53.5 parent: 2 type: Transform - - uid: 10925 + - uid: 10948 components: - rot: 1.5707963267948966 rad pos: -53.5,54.5 parent: 2 type: Transform - - uid: 10926 + - uid: 10949 components: - rot: 1.5707963267948966 rad pos: -53.5,55.5 parent: 2 type: Transform - - uid: 10927 + - uid: 10950 components: - rot: 1.5707963267948966 rad pos: -54.5,56.5 parent: 2 type: Transform - - uid: 10928 + - uid: 10951 components: - rot: 1.5707963267948966 rad pos: -56.5,56.5 parent: 2 type: Transform - - uid: 10929 + - uid: 10952 components: - rot: 1.5707963267948966 rad pos: -58.5,56.5 parent: 2 type: Transform - - uid: 10930 + - uid: 10953 components: - rot: 1.5707963267948966 rad pos: -60.5,56.5 parent: 2 type: Transform - - uid: 10931 + - uid: 10954 components: - rot: -1.5707963267948966 rad pos: -52.5,53.5 parent: 2 type: Transform - - uid: 10932 + - uid: 10955 components: - rot: -1.5707963267948966 rad pos: -51.5,53.5 parent: 2 type: Transform - - uid: 10933 + - uid: 10956 components: - rot: -1.5707963267948966 rad pos: -50.5,53.5 parent: 2 type: Transform - - uid: 10934 + - uid: 10957 components: - rot: -1.5707963267948966 rad pos: -49.5,53.5 parent: 2 type: Transform - - uid: 10935 + - uid: 10958 components: - pos: 12.5,-92.5 parent: 2 type: Transform - - uid: 10936 + - uid: 10959 components: - pos: 11.5,-99.5 parent: 2 type: Transform - - uid: 10937 + - uid: 10960 components: - rot: 3.141592653589793 rad pos: 1.5,-71.5 parent: 2 type: Transform - - uid: 10938 + - uid: 10961 components: - rot: 3.141592653589793 rad pos: 2.5,-67.5 parent: 2 type: Transform - - uid: 10939 + - uid: 10962 components: - rot: 3.141592653589793 rad pos: 3.5,-71.5 parent: 2 type: Transform - - uid: 10940 + - uid: 10963 components: - rot: 3.141592653589793 rad pos: 4.5,-71.5 parent: 2 type: Transform - - uid: 10941 + - uid: 10964 components: - rot: 3.141592653589793 rad pos: 2.5,-68.5 parent: 2 type: Transform - - uid: 10942 + - uid: 10965 components: - rot: -1.5707963267948966 rad pos: -79.5,-25.5 parent: 2 type: Transform - - uid: 10943 + - uid: 10966 components: - rot: -1.5707963267948966 rad pos: -79.5,-24.5 parent: 2 type: Transform - - uid: 10944 + - uid: 10967 components: - rot: -1.5707963267948966 rad pos: -79.5,-23.5 parent: 2 type: Transform - - uid: 10945 + - uid: 10968 components: - rot: -1.5707963267948966 rad pos: -79.5,-21.5 parent: 2 type: Transform - - uid: 10946 + - uid: 10969 components: - rot: -1.5707963267948966 rad pos: -79.5,-20.5 parent: 2 type: Transform - - uid: 10947 + - uid: 10970 components: - rot: -1.5707963267948966 rad pos: -79.5,-18.5 parent: 2 type: Transform - - uid: 10948 + - uid: 10971 components: - rot: -1.5707963267948966 rad pos: -79.5,-17.5 parent: 2 type: Transform - - uid: 10949 + - uid: 10972 components: - rot: -1.5707963267948966 rad pos: -79.5,-16.5 parent: 2 type: Transform - - uid: 10950 + - uid: 10973 components: - rot: -1.5707963267948966 rad pos: -79.5,-14.5 parent: 2 type: Transform - - uid: 10951 + - uid: 10974 components: - rot: -1.5707963267948966 rad pos: -79.5,-12.5 parent: 2 type: Transform - - uid: 10952 + - uid: 10975 components: - rot: -1.5707963267948966 rad pos: -79.5,-13.5 parent: 2 type: Transform - - uid: 10953 + - uid: 10976 components: - pos: -13.5,-8.5 parent: 2 type: Transform - - uid: 10954 + - uid: 10977 components: - rot: 3.141592653589793 rad pos: 23.5,-89.5 parent: 2 type: Transform - - uid: 10955 + - uid: 10978 components: - pos: 36.5,23.5 parent: 2 type: Transform - - uid: 10956 + - uid: 10979 components: - pos: 37.5,23.5 parent: 2 type: Transform - - uid: 10957 + - uid: 10980 components: - pos: 38.5,23.5 parent: 2 type: Transform - - uid: 10958 + - uid: 10981 components: - pos: 39.5,23.5 parent: 2 type: Transform - - uid: 10959 + - uid: 10982 components: - pos: 40.5,23.5 parent: 2 type: Transform - - uid: 10960 + - uid: 10983 components: - pos: 41.5,23.5 parent: 2 type: Transform - - uid: 10961 + - uid: 10984 components: - pos: 42.5,23.5 parent: 2 type: Transform - - uid: 10962 + - uid: 10985 components: - pos: 35.5,23.5 parent: 2 type: Transform - - uid: 10963 + - uid: 10986 components: - pos: 43.5,23.5 parent: 2 type: Transform - - uid: 10964 + - uid: 10987 components: - pos: 46.5,26.5 parent: 2 type: Transform - - uid: 10965 + - uid: 10988 components: - pos: 47.5,26.5 parent: 2 type: Transform - - uid: 10966 + - uid: 10989 components: - pos: 48.5,26.5 parent: 2 type: Transform - - uid: 10967 + - uid: 10990 components: - pos: 11.5,-97.5 parent: 2 type: Transform - - uid: 10968 + - uid: 10991 components: - pos: 11.5,-93.5 parent: 2 type: Transform - - uid: 10969 + - uid: 10992 components: - pos: 11.5,-94.5 parent: 2 type: Transform - - uid: 10970 + - uid: 10993 components: - pos: 11.5,-95.5 parent: 2 type: Transform - - uid: 10971 + - uid: 10994 components: - pos: 11.5,-98.5 parent: 2 type: Transform - - uid: 10972 + - uid: 10995 components: - pos: 11.5,-96.5 parent: 2 type: Transform - - uid: 10973 + - uid: 10996 components: - pos: 11.5,-104.5 parent: 2 type: Transform - - uid: 10974 + - uid: 10997 components: - pos: 11.5,-103.5 parent: 2 type: Transform - - uid: 10975 + - uid: 10998 components: - pos: 11.5,-102.5 parent: 2 type: Transform - - uid: 10976 + - uid: 10999 components: - pos: 11.5,-101.5 parent: 2 type: Transform - - uid: 10977 + - uid: 11000 components: - rot: 3.141592653589793 rad pos: 19.5,-53.5 parent: 2 type: Transform - - uid: 10978 + - uid: 11001 components: - rot: 3.141592653589793 rad pos: 18.5,-53.5 parent: 2 type: Transform - - uid: 10979 + - uid: 11002 components: - rot: 3.141592653589793 rad pos: 22.5,-53.5 parent: 2 type: Transform - - uid: 10980 + - uid: 11003 components: - pos: -79.5,-27.5 parent: 2 type: Transform - - uid: 10981 + - uid: 11004 components: - pos: -79.5,-28.5 parent: 2 type: Transform - - uid: 10982 + - uid: 11005 components: - pos: -79.5,-29.5 parent: 2 type: Transform - - uid: 10983 + - uid: 11006 components: - pos: -79.5,-30.5 parent: 2 type: Transform - - uid: 10984 + - uid: 11007 components: - pos: -79.5,-31.5 parent: 2 type: Transform - - uid: 10985 + - uid: 11008 components: - pos: -61.5,-55.5 parent: 2 type: Transform - - uid: 10986 + - uid: 11009 components: - pos: -18.5,-52.5 parent: 2 type: Transform - - uid: 10987 + - uid: 11010 components: - rot: -1.5707963267948966 rad pos: 14.5,-60.5 parent: 2 type: Transform - - uid: 10988 + - uid: 11011 components: - rot: -1.5707963267948966 rad pos: 14.5,-61.5 parent: 2 type: Transform - - uid: 10989 + - uid: 11012 components: - rot: -1.5707963267948966 rad pos: 14.5,-62.5 parent: 2 type: Transform - - uid: 10990 + - uid: 11013 components: - rot: -1.5707963267948966 rad pos: 14.5,-63.5 parent: 2 type: Transform - - uid: 10991 + - uid: 11014 components: - rot: -1.5707963267948966 rad pos: 14.5,-64.5 parent: 2 type: Transform - - uid: 10992 + - uid: 11015 components: - rot: -1.5707963267948966 rad pos: 8.5,-67.5 parent: 2 type: Transform - - uid: 10993 + - uid: 11016 components: - rot: -1.5707963267948966 rad pos: 9.5,-67.5 parent: 2 type: Transform - - uid: 10994 + - uid: 11017 components: - rot: -1.5707963267948966 rad pos: 10.5,-67.5 parent: 2 type: Transform - - uid: 10995 + - uid: 11018 components: - rot: -1.5707963267948966 rad pos: 11.5,-67.5 parent: 2 type: Transform - - uid: 10996 + - uid: 11019 components: - rot: -1.5707963267948966 rad pos: 12.5,-67.5 parent: 2 type: Transform - - uid: 10997 + - uid: 11020 components: - rot: -1.5707963267948966 rad pos: 13.5,-67.5 parent: 2 type: Transform - - uid: 10998 + - uid: 11021 components: - rot: -1.5707963267948966 rad pos: 14.5,-67.5 parent: 2 type: Transform - - uid: 10999 + - uid: 11022 components: - rot: 1.5707963267948966 rad pos: 42.5,-13.5 parent: 2 type: Transform - - uid: 11000 + - uid: 11023 components: - rot: 1.5707963267948966 rad pos: 43.5,-13.5 parent: 2 type: Transform - - uid: 11001 + - uid: 11024 components: - rot: 1.5707963267948966 rad pos: 44.5,-13.5 parent: 2 type: Transform - - uid: 11002 + - uid: 11025 components: - rot: 1.5707963267948966 rad pos: 45.5,-13.5 parent: 2 type: Transform - - uid: 11003 + - uid: 11026 components: - rot: 1.5707963267948966 rad pos: 46.5,-13.5 parent: 2 type: Transform - - uid: 11004 + - uid: 11027 components: - rot: 1.5707963267948966 rad pos: 47.5,-13.5 parent: 2 type: Transform - - uid: 11005 + - uid: 11028 components: - rot: 1.5707963267948966 rad pos: 48.5,-13.5 parent: 2 type: Transform - - uid: 11006 + - uid: 11029 components: - pos: 49.5,26.5 parent: 2 type: Transform - - uid: 11007 + - uid: 11030 components: - pos: 50.5,26.5 parent: 2 type: Transform - - uid: 11008 + - uid: 11031 components: - pos: 51.5,26.5 parent: 2 type: Transform - - uid: 11009 + - uid: 11032 components: - pos: 52.5,26.5 parent: 2 type: Transform - - uid: 11010 + - uid: 11033 components: - pos: 53.5,26.5 parent: 2 type: Transform - - uid: 11011 + - uid: 11034 components: - rot: 3.141592653589793 rad pos: 49.5,38.5 parent: 2 type: Transform - - uid: 11012 + - uid: 11035 components: - rot: 3.141592653589793 rad pos: 49.5,37.5 parent: 2 type: Transform - - uid: 11013 + - uid: 11036 components: - rot: 3.141592653589793 rad pos: 49.5,36.5 parent: 2 type: Transform - - uid: 11014 + - uid: 11037 components: - rot: 3.141592653589793 rad pos: 49.5,35.5 parent: 2 type: Transform - - uid: 11015 + - uid: 11038 components: - rot: 3.141592653589793 rad pos: 48.5,35.5 parent: 2 type: Transform - - uid: 11016 + - uid: 11039 components: - rot: 3.141592653589793 rad pos: 47.5,35.5 parent: 2 type: Transform - - uid: 11017 + - uid: 11040 components: - rot: 3.141592653589793 rad pos: 52.5,31.5 parent: 2 type: Transform - - uid: 11018 + - uid: 11041 components: - rot: 3.141592653589793 rad pos: 52.5,32.5 parent: 2 type: Transform - - uid: 11019 + - uid: 11042 components: - rot: 3.141592653589793 rad pos: 52.5,33.5 parent: 2 type: Transform - - uid: 11020 + - uid: 11043 components: - pos: 81.5,36.5 parent: 2 type: Transform - - uid: 11021 + - uid: 11044 components: - pos: 80.5,36.5 parent: 2 type: Transform - - uid: 11022 + - uid: 11045 components: - pos: 86.5,36.5 parent: 2 type: Transform - - uid: 11023 + - uid: 11046 components: - pos: 87.5,36.5 parent: 2 type: Transform - - uid: 11024 + - uid: 11047 components: - pos: 79.5,36.5 parent: 2 type: Transform - - uid: 11025 + - uid: 11048 components: - pos: 78.5,36.5 parent: 2 type: Transform - - uid: 11026 + - uid: 11049 components: - pos: 88.5,36.5 parent: 2 type: Transform - - uid: 11027 + - uid: 11050 components: - pos: 82.5,36.5 parent: 2 type: Transform - - uid: 11028 + - uid: 11051 components: - pos: -24.5,47.5 parent: 2 type: Transform - - uid: 11029 + - uid: 11052 components: - pos: -24.5,46.5 parent: 2 type: Transform - - uid: 11030 + - uid: 11053 components: - pos: -24.5,45.5 parent: 2 type: Transform - - uid: 11031 + - uid: 11054 components: - pos: -24.5,44.5 parent: 2 type: Transform - - uid: 11032 + - uid: 11055 components: - pos: -24.5,43.5 parent: 2 type: Transform - - uid: 11033 + - uid: 11056 components: - pos: -24.5,42.5 parent: 2 type: Transform - - uid: 11034 + - uid: 11057 components: - pos: -24.5,41.5 parent: 2 type: Transform - - uid: 11035 + - uid: 11058 components: - pos: -24.5,40.5 parent: 2 type: Transform - - uid: 11036 + - uid: 11059 components: - pos: -24.5,39.5 parent: 2 type: Transform - - uid: 11037 + - uid: 11060 components: - pos: -24.5,38.5 parent: 2 type: Transform - - uid: 11038 + - uid: 11061 components: - pos: -31.5,39.5 parent: 2 type: Transform - - uid: 11039 + - uid: 11062 components: - pos: -32.5,39.5 parent: 2 type: Transform - - uid: 11040 + - uid: 11063 components: - pos: -33.5,39.5 parent: 2 type: Transform - - uid: 11041 + - uid: 11064 components: - pos: -34.5,39.5 parent: 2 type: Transform - - uid: 11042 + - uid: 11065 components: - pos: -35.5,39.5 parent: 2 type: Transform - - uid: 11043 + - uid: 11066 components: - pos: -36.5,39.5 parent: 2 type: Transform - - uid: 11044 + - uid: 11067 components: - pos: -39.5,39.5 parent: 2 type: Transform - - uid: 11045 + - uid: 11068 components: - pos: -40.5,39.5 parent: 2 type: Transform - - uid: 11046 + - uid: 11069 components: - pos: -41.5,39.5 parent: 2 type: Transform - - uid: 11047 + - uid: 11070 components: - pos: -42.5,39.5 parent: 2 type: Transform - - uid: 11048 + - uid: 11071 components: - pos: -43.5,39.5 parent: 2 type: Transform - - uid: 11049 + - uid: 11072 components: - pos: -2.5,28.5 parent: 2 type: Transform - - uid: 11050 + - uid: 11073 components: - pos: -2.5,27.5 parent: 2 type: Transform - - uid: 11051 + - uid: 11074 components: - pos: -2.5,26.5 parent: 2 type: Transform - - uid: 11052 + - uid: 11075 components: - pos: -2.5,25.5 parent: 2 type: Transform - - uid: 11053 + - uid: 11076 components: - pos: -12.5,26.5 parent: 2 type: Transform - - uid: 11054 + - uid: 11077 components: - pos: -11.5,26.5 parent: 2 type: Transform - - uid: 11055 + - uid: 11078 components: - pos: -10.5,26.5 parent: 2 type: Transform - - uid: 11056 + - uid: 11079 components: - pos: -10.5,24.5 parent: 2 type: Transform - - uid: 11057 + - uid: 11080 components: - pos: -37.5,45.5 parent: 2 type: Transform - - uid: 11058 + - uid: 11081 components: - pos: -37.5,44.5 parent: 2 type: Transform - - uid: 11059 + - uid: 11082 components: - pos: -17.5,58.5 parent: 2 type: Transform - - uid: 11060 + - uid: 11083 components: - pos: -17.5,57.5 parent: 2 type: Transform - - uid: 11061 + - uid: 11084 components: - pos: -17.5,56.5 parent: 2 type: Transform - - uid: 11062 + - uid: 11085 components: - pos: -17.5,55.5 parent: 2 type: Transform - - uid: 11063 + - uid: 11086 components: - pos: -17.5,54.5 parent: 2 type: Transform - - uid: 11064 + - uid: 11087 components: - pos: -17.5,53.5 parent: 2 type: Transform - - uid: 11065 + - uid: 11088 components: - rot: 1.5707963267948966 rad pos: -11.5,24.5 parent: 2 type: Transform - - uid: 11066 + - uid: 11089 components: - rot: 3.141592653589793 rad pos: 66.5,36.5 parent: 2 type: Transform - - uid: 11067 + - uid: 11090 components: - rot: 3.141592653589793 rad pos: 65.5,36.5 parent: 2 type: Transform - - uid: 11068 + - uid: 11091 components: - rot: 3.141592653589793 rad pos: 64.5,36.5 parent: 2 type: Transform - - uid: 11069 + - uid: 11092 components: - rot: 3.141592653589793 rad pos: 63.5,36.5 parent: 2 type: Transform - - uid: 11070 + - uid: 11093 components: - rot: 3.141592653589793 rad pos: 63.5,35.5 parent: 2 type: Transform - - uid: 11071 + - uid: 11094 components: - rot: 3.141592653589793 rad pos: 63.5,34.5 parent: 2 type: Transform - - uid: 11072 + - uid: 11095 components: - rot: 3.141592653589793 rad pos: 63.5,33.5 parent: 2 type: Transform - - uid: 11073 + - uid: 11096 components: - pos: 83.5,36.5 parent: 2 type: Transform - - uid: 11074 + - uid: 11097 components: - pos: 84.5,36.5 parent: 2 type: Transform - - uid: 11075 + - uid: 11098 components: - pos: 85.5,36.5 parent: 2 type: Transform - - uid: 11076 + - uid: 11099 components: - pos: 89.5,36.5 parent: 2 type: Transform - - uid: 11077 + - uid: 11100 components: - pos: 90.5,36.5 parent: 2 type: Transform - - uid: 11078 + - uid: 11101 components: - pos: -22.5,27.5 parent: 2 type: Transform - - uid: 11079 + - uid: 11102 components: - pos: -23.5,27.5 parent: 2 type: Transform - - uid: 11080 + - uid: 11103 components: - pos: -24.5,27.5 parent: 2 type: Transform - - uid: 11081 + - uid: 11104 components: - pos: -25.5,27.5 parent: 2 type: Transform - - uid: 11082 + - uid: 11105 components: - pos: -26.5,27.5 parent: 2 type: Transform - - uid: 11083 + - uid: 11106 components: - pos: -27.5,27.5 parent: 2 type: Transform - - uid: 11084 + - uid: 11107 components: - pos: -28.5,27.5 parent: 2 type: Transform - - uid: 11085 + - uid: 11108 components: - pos: 29.5,55.5 parent: 2 type: Transform - - uid: 11086 + - uid: 11109 components: - pos: 29.5,56.5 parent: 2 type: Transform - - uid: 11087 + - uid: 11110 components: - pos: 29.5,57.5 parent: 2 type: Transform - - uid: 11088 + - uid: 11111 components: - pos: 29.5,58.5 parent: 2 type: Transform - - uid: 11089 + - uid: 11112 components: - pos: 29.5,59.5 parent: 2 type: Transform - - uid: 11090 + - uid: 11113 components: - pos: 29.5,60.5 parent: 2 type: Transform - - uid: 11091 + - uid: 11114 components: - pos: 29.5,61.5 parent: 2 type: Transform - - uid: 11092 + - uid: 11115 components: - pos: 29.5,62.5 parent: 2 type: Transform - - uid: 11093 + - uid: 11116 components: - pos: 28.5,62.5 parent: 2 type: Transform - - uid: 11094 + - uid: 11117 components: - pos: 27.5,62.5 parent: 2 type: Transform - - uid: 11095 + - uid: 11118 components: - pos: 26.5,62.5 parent: 2 type: Transform - - uid: 11096 + - uid: 11119 components: - pos: 25.5,62.5 parent: 2 type: Transform - - uid: 11097 + - uid: 11120 components: - pos: 24.5,62.5 parent: 2 type: Transform - - uid: 11098 + - uid: 11121 components: - pos: 23.5,62.5 parent: 2 type: Transform - - uid: 11099 + - uid: 11122 components: - pos: 22.5,62.5 parent: 2 type: Transform - - uid: 11100 + - uid: 11123 components: - pos: 21.5,62.5 parent: 2 type: Transform - - uid: 11101 + - uid: 11124 components: - pos: 20.5,62.5 parent: 2 type: Transform - - uid: 11102 + - uid: 11125 components: - pos: 19.5,62.5 parent: 2 type: Transform - - uid: 11103 + - uid: 11126 components: - pos: 18.5,62.5 parent: 2 type: Transform - - uid: 11104 + - uid: 11127 components: - pos: 17.5,62.5 parent: 2 type: Transform - - uid: 11105 + - uid: 11128 components: - pos: 16.5,62.5 parent: 2 type: Transform - - uid: 11106 + - uid: 11129 components: - pos: 15.5,62.5 parent: 2 type: Transform - - uid: 11107 + - uid: 11130 components: - pos: 14.5,62.5 parent: 2 type: Transform - - uid: 11108 + - uid: 11131 components: - pos: 13.5,62.5 parent: 2 type: Transform - - uid: 11109 + - uid: 11132 components: - pos: 12.5,62.5 parent: 2 type: Transform - - uid: 11110 + - uid: 11133 components: - pos: 11.5,62.5 parent: 2 type: Transform - - uid: 11111 + - uid: 11134 components: - pos: 10.5,62.5 parent: 2 type: Transform - - uid: 11112 + - uid: 11135 components: - pos: 9.5,62.5 parent: 2 type: Transform - - uid: 11113 + - uid: 11136 components: - pos: 8.5,62.5 parent: 2 type: Transform - - uid: 11114 + - uid: 11137 components: - pos: 7.5,62.5 parent: 2 type: Transform - - uid: 11115 + - uid: 11138 components: - pos: 7.5,63.5 parent: 2 type: Transform - - uid: 11116 + - uid: 11139 components: - pos: 7.5,64.5 parent: 2 type: Transform - - uid: 11117 + - uid: 11140 components: - pos: 7.5,65.5 parent: 2 type: Transform - - uid: 11118 + - uid: 11141 components: - pos: 7.5,66.5 parent: 2 type: Transform - - uid: 11119 + - uid: 11142 components: - pos: 7.5,67.5 parent: 2 type: Transform - - uid: 11120 + - uid: 11143 components: - pos: 7.5,68.5 parent: 2 type: Transform - - uid: 11121 + - uid: 11144 components: - pos: 7.5,69.5 parent: 2 type: Transform - - uid: 11122 + - uid: 11145 components: - pos: 7.5,70.5 parent: 2 type: Transform - - uid: 11123 + - uid: 11146 components: - pos: 7.5,71.5 parent: 2 type: Transform - - uid: 11124 + - uid: 11147 components: - pos: 7.5,72.5 parent: 2 type: Transform - - uid: 11125 + - uid: 11148 components: - pos: 7.5,73.5 parent: 2 type: Transform - - uid: 11126 + - uid: 11149 components: - pos: 7.5,74.5 parent: 2 type: Transform - - uid: 11127 + - uid: 11150 components: - pos: 7.5,75.5 parent: 2 type: Transform - - uid: 11128 + - uid: 11151 components: - pos: 6.5,75.5 parent: 2 type: Transform - - uid: 11129 + - uid: 11152 components: - pos: 5.5,75.5 parent: 2 type: Transform - - uid: 11130 + - uid: 11153 components: - pos: 4.5,75.5 parent: 2 type: Transform - - uid: 11131 + - uid: 11154 components: - pos: 3.5,75.5 parent: 2 type: Transform - - uid: 11132 + - uid: 11155 components: - pos: 2.5,75.5 parent: 2 type: Transform - - uid: 11133 + - uid: 11156 components: - pos: 1.5,75.5 parent: 2 type: Transform - - uid: 11134 + - uid: 11157 components: - pos: 0.5,75.5 parent: 2 type: Transform - - uid: 11135 + - uid: 11158 components: - pos: -0.5,75.5 parent: 2 type: Transform - - uid: 11136 + - uid: 11159 components: - pos: -1.5,75.5 parent: 2 type: Transform - - uid: 11137 + - uid: 11160 components: - pos: -2.5,75.5 parent: 2 type: Transform - - uid: 11138 + - uid: 11161 components: - pos: -3.5,75.5 parent: 2 type: Transform - - uid: 11139 + - uid: 11162 components: - pos: -4.5,75.5 parent: 2 type: Transform - - uid: 11140 + - uid: 11163 components: - pos: -5.5,75.5 parent: 2 type: Transform - - uid: 11141 + - uid: 11164 components: - pos: -6.5,75.5 parent: 2 type: Transform - - uid: 11142 + - uid: 11165 components: - pos: -7.5,75.5 parent: 2 type: Transform - - uid: 11143 + - uid: 11166 components: - pos: -8.5,75.5 parent: 2 type: Transform - - uid: 11144 + - uid: 11167 components: - pos: -9.5,75.5 parent: 2 type: Transform - - uid: 11145 + - uid: 11168 components: - pos: -10.5,75.5 parent: 2 type: Transform - - uid: 11146 + - uid: 11169 components: - pos: 1.5,-92.5 parent: 2 type: Transform - - uid: 11147 + - uid: 11170 components: - pos: 0.5,-92.5 parent: 2 type: Transform - - uid: 11148 + - uid: 11171 components: - pos: -0.5,-92.5 parent: 2 type: Transform - - uid: 11149 + - uid: 11172 components: - pos: -0.5,-93.5 parent: 2 type: Transform - - uid: 11150 + - uid: 11173 components: - pos: -0.5,-94.5 parent: 2 type: Transform - - uid: 11151 + - uid: 11174 components: - pos: -0.5,-95.5 parent: 2 type: Transform - - uid: 11152 + - uid: 11175 components: - pos: -0.5,-96.5 parent: 2 type: Transform - - uid: 11153 + - uid: 11176 components: - pos: -0.5,-97.5 parent: 2 type: Transform - - uid: 11154 + - uid: 11177 components: - pos: -0.5,-98.5 parent: 2 type: Transform - - uid: 11155 + - uid: 11178 components: - pos: -0.5,-99.5 parent: 2 type: Transform - - uid: 11156 + - uid: 11179 components: - pos: -0.5,-100.5 parent: 2 type: Transform - - uid: 11157 + - uid: 11180 components: - pos: -0.5,-101.5 parent: 2 type: Transform - - uid: 11158 + - uid: 11181 components: - pos: -0.5,-102.5 parent: 2 type: Transform - - uid: 11159 + - uid: 11182 components: - pos: -0.5,-103.5 parent: 2 type: Transform - - uid: 11160 + - uid: 11183 components: - pos: -0.5,-104.5 parent: 2 type: Transform - - uid: 11161 + - uid: 11184 components: - pos: -0.5,-105.5 parent: 2 type: Transform - - uid: 11162 + - uid: 11185 components: - pos: -28.5,-105.5 parent: 2 type: Transform - - uid: 11163 + - uid: 11186 components: - pos: -29.5,-105.5 parent: 2 type: Transform - - uid: 11164 + - uid: 11187 components: - pos: -30.5,-105.5 parent: 2 type: Transform - - uid: 11165 + - uid: 11188 components: - pos: -31.5,-105.5 parent: 2 type: Transform - - uid: 11166 + - uid: 11189 components: - pos: -32.5,-105.5 parent: 2 type: Transform - - uid: 11167 + - uid: 11190 components: - pos: -33.5,-105.5 parent: 2 type: Transform - - uid: 11168 + - uid: 11191 components: - pos: -34.5,-105.5 parent: 2 type: Transform - - uid: 11169 + - uid: 11192 components: - pos: -35.5,-105.5 parent: 2 type: Transform - - uid: 11170 + - uid: 11193 components: - pos: -1.5,-105.5 parent: 2 type: Transform - - uid: 11171 + - uid: 11194 components: - pos: -2.5,-105.5 parent: 2 type: Transform - - uid: 11172 + - uid: 11195 components: - pos: -3.5,-105.5 parent: 2 type: Transform - - uid: 11173 + - uid: 11196 components: - pos: -4.5,-105.5 parent: 2 type: Transform - - uid: 11174 + - uid: 11197 components: - pos: -5.5,-105.5 parent: 2 type: Transform - - uid: 11175 + - uid: 11198 components: - pos: -6.5,-105.5 parent: 2 type: Transform - - uid: 11176 + - uid: 11199 components: - pos: -7.5,-105.5 parent: 2 type: Transform - - uid: 11177 + - uid: 11200 components: - pos: -8.5,-105.5 parent: 2 type: Transform - - uid: 11178 + - uid: 11201 components: - pos: -9.5,-105.5 parent: 2 type: Transform - - uid: 11179 + - uid: 11202 components: - pos: -10.5,-105.5 parent: 2 type: Transform - - uid: 11180 + - uid: 11203 components: - pos: -11.5,-105.5 parent: 2 type: Transform - - uid: 11181 + - uid: 11204 components: - pos: -12.5,-105.5 parent: 2 type: Transform - - uid: 11182 + - uid: 11205 components: - pos: -13.5,-105.5 parent: 2 type: Transform - - uid: 11183 + - uid: 11206 components: - pos: -14.5,-105.5 parent: 2 type: Transform - - uid: 11184 + - uid: 11207 components: - pos: -15.5,-105.5 parent: 2 type: Transform - - uid: 11185 + - uid: 11208 components: - pos: -16.5,-105.5 parent: 2 type: Transform - - uid: 11186 + - uid: 11209 components: - pos: -17.5,-105.5 parent: 2 type: Transform - - uid: 11187 + - uid: 11210 components: - pos: -18.5,-105.5 parent: 2 type: Transform - - uid: 11188 + - uid: 11211 components: - pos: -19.5,-105.5 parent: 2 type: Transform - - uid: 11189 + - uid: 11212 components: - pos: -20.5,-105.5 parent: 2 type: Transform - - uid: 11190 + - uid: 11213 components: - pos: -21.5,-105.5 parent: 2 type: Transform - - uid: 11191 + - uid: 11214 components: - pos: -22.5,-105.5 parent: 2 type: Transform - - uid: 11192 + - uid: 11215 components: - pos: -23.5,-105.5 parent: 2 type: Transform - - uid: 11193 + - uid: 11216 components: - pos: -24.5,-105.5 parent: 2 type: Transform - - uid: 11194 + - uid: 11217 components: - pos: -25.5,-105.5 parent: 2 type: Transform - - uid: 11195 + - uid: 11218 components: - pos: -26.5,-105.5 parent: 2 type: Transform - - uid: 11196 + - uid: 11219 components: - pos: -27.5,-105.5 parent: 2 type: Transform - - uid: 11197 + - uid: 11220 components: - pos: -35.5,-104.5 parent: 2 type: Transform - - uid: 11198 + - uid: 11221 components: - pos: -35.5,-103.5 parent: 2 type: Transform - - uid: 11199 + - uid: 11222 components: - pos: -35.5,-102.5 parent: 2 type: Transform - - uid: 11200 + - uid: 11223 components: - pos: 67.5,-17.5 parent: 2 type: Transform - - uid: 11201 + - uid: 11224 components: - pos: -79.5,-32.5 parent: 2 type: Transform - - uid: 11202 + - uid: 11225 components: - pos: -78.5,-31.5 parent: 2 type: Transform - - uid: 11203 + - uid: 11226 components: - pos: -74.5,-48.5 parent: 2 type: Transform - - uid: 11204 + - uid: 11227 components: - pos: -73.5,-48.5 parent: 2 type: Transform - - uid: 11205 + - uid: 11228 components: - pos: -72.5,-48.5 parent: 2 type: Transform - - uid: 11206 + - uid: 11229 components: - pos: -71.5,-48.5 parent: 2 type: Transform - - uid: 11207 + - uid: 11230 components: - pos: -70.5,-48.5 parent: 2 type: Transform - - uid: 11208 + - uid: 11231 components: - pos: -69.5,-48.5 parent: 2 type: Transform - - uid: 11209 + - uid: 11232 components: - pos: -68.5,-48.5 parent: 2 type: Transform - - uid: 11210 + - uid: 11233 components: - pos: -67.5,-48.5 parent: 2 type: Transform - - uid: 11211 + - uid: 11234 components: - pos: -66.5,-48.5 parent: 2 type: Transform - - uid: 11212 + - uid: 11235 components: - pos: -65.5,-48.5 parent: 2 type: Transform - - uid: 11213 + - uid: 11236 components: - pos: -64.5,-48.5 parent: 2 type: Transform - - uid: 11214 + - uid: 11237 components: - pos: -63.5,-48.5 parent: 2 type: Transform - - uid: 11215 + - uid: 11238 components: - pos: -62.5,-48.5 parent: 2 type: Transform - - uid: 11216 + - uid: 11239 components: - rot: 3.141592653589793 rad pos: 55.5,-74.5 parent: 2 type: Transform - - uid: 11217 + - uid: 11240 components: - rot: 3.141592653589793 rad pos: 79.5,-27.5 parent: 2 type: Transform - - uid: 11218 + - uid: 11241 components: - rot: 3.141592653589793 rad pos: 79.5,-28.5 parent: 2 type: Transform - - uid: 11219 + - uid: 11242 components: - pos: 79.5,-29.5 parent: 2 type: Transform - - uid: 11220 + - uid: 11243 components: - pos: 79.5,-30.5 parent: 2 type: Transform - - uid: 11221 + - uid: 11244 components: - pos: 79.5,-31.5 parent: 2 type: Transform - - uid: 11222 + - uid: 11245 components: - pos: 79.5,-40.5 parent: 2 type: Transform - - uid: 11223 + - uid: 11246 components: - pos: 79.5,-39.5 parent: 2 type: Transform - - uid: 11224 + - uid: 11247 components: - rot: 1.5707963267948966 rad pos: -61.5,-56.5 parent: 2 type: Transform - - uid: 11225 + - uid: 11248 components: - rot: 1.5707963267948966 rad pos: -61.5,-57.5 parent: 2 type: Transform - - uid: 11226 + - uid: 11249 components: - rot: 1.5707963267948966 rad pos: -60.5,-57.5 parent: 2 type: Transform - - uid: 11227 + - uid: 11250 components: - rot: 1.5707963267948966 rad pos: -59.5,-57.5 parent: 2 type: Transform - - uid: 11228 + - uid: 11251 components: - rot: 1.5707963267948966 rad pos: -59.5,-58.5 parent: 2 type: Transform - - uid: 11229 + - uid: 11252 components: - rot: 1.5707963267948966 rad pos: -59.5,-59.5 parent: 2 type: Transform - - uid: 11230 + - uid: 11253 components: - rot: 1.5707963267948966 rad pos: -59.5,-60.5 parent: 2 type: Transform - - uid: 11231 + - uid: 11254 components: - rot: 1.5707963267948966 rad pos: -59.5,-61.5 parent: 2 type: Transform - - uid: 11232 + - uid: 11255 components: - rot: 1.5707963267948966 rad pos: -59.5,-62.5 parent: 2 type: Transform - - uid: 11233 + - uid: 11256 components: - rot: 1.5707963267948966 rad pos: -59.5,-63.5 parent: 2 type: Transform - - uid: 11234 + - uid: 11257 components: - rot: 1.5707963267948966 rad pos: -59.5,-64.5 parent: 2 type: Transform - - uid: 11235 + - uid: 11258 components: - rot: 1.5707963267948966 rad pos: -59.5,-65.5 parent: 2 type: Transform - - uid: 11236 + - uid: 11259 components: - rot: 1.5707963267948966 rad pos: -59.5,-66.5 parent: 2 type: Transform - - uid: 11237 + - uid: 11260 components: - rot: 1.5707963267948966 rad pos: -59.5,-67.5 parent: 2 type: Transform - - uid: 11238 + - uid: 11261 components: - rot: 1.5707963267948966 rad pos: -59.5,-68.5 parent: 2 type: Transform - - uid: 11239 + - uid: 11262 components: - rot: 1.5707963267948966 rad pos: -59.5,-69.5 parent: 2 type: Transform - - uid: 11240 + - uid: 11263 components: - pos: 8.5,-35.5 parent: 2 type: Transform - - uid: 11241 + - uid: 11264 components: - pos: 8.5,-34.5 parent: 2 type: Transform - - uid: 11242 + - uid: 11265 components: - pos: 8.5,-32.5 parent: 2 type: Transform - - uid: 11243 + - uid: 11266 components: - pos: 8.5,-33.5 parent: 2 type: Transform - - uid: 11244 + - uid: 11267 components: - pos: 46.5,-33.5 parent: 2 type: Transform - - uid: 11245 + - uid: 11268 components: - pos: 45.5,-33.5 parent: 2 type: Transform - - uid: 11246 + - uid: 11269 components: - pos: 44.5,-33.5 parent: 2 type: Transform - - uid: 11247 + - uid: 11270 components: - pos: 8.5,-31.5 parent: 2 type: Transform - - uid: 11248 + - uid: 11271 components: - pos: 8.5,-30.5 parent: 2 type: Transform - - uid: 11249 + - uid: 11272 components: - pos: 68.5,-70.5 parent: 2 type: Transform - - uid: 11250 + - uid: 11273 components: - pos: 69.5,-71.5 parent: 2 type: Transform - - uid: 11251 + - uid: 11274 components: - pos: 70.5,-71.5 parent: 2 type: Transform - - uid: 11252 + - uid: 11275 components: - pos: 71.5,-71.5 parent: 2 type: Transform - - uid: 11253 + - uid: 11276 components: - pos: 71.5,-71.5 parent: 2 type: Transform - - uid: 11254 + - uid: 11277 components: - pos: 71.5,-70.5 parent: 2 type: Transform - - uid: 11255 + - uid: 11278 components: - pos: 72.5,-70.5 parent: 2 type: Transform - - uid: 11256 + - uid: 11279 components: - pos: 72.5,-69.5 parent: 2 type: Transform - - uid: 11257 + - uid: 11280 components: - pos: 73.5,-69.5 parent: 2 type: Transform - - uid: 11258 + - uid: 11281 components: - pos: 74.5,-69.5 parent: 2 type: Transform - - uid: 11259 + - uid: 11282 components: - pos: 74.5,-68.5 parent: 2 type: Transform - - uid: 11260 + - uid: 11283 components: - pos: 74.5,-67.5 parent: 2 type: Transform - - uid: 11261 + - uid: 11284 components: - pos: 74.5,-66.5 parent: 2 type: Transform - - uid: 11262 + - uid: 11285 components: - pos: 74.5,-65.5 parent: 2 type: Transform - - uid: 11263 + - uid: 11286 components: - pos: 74.5,-64.5 parent: 2 type: Transform - - uid: 11264 + - uid: 11287 components: - pos: 74.5,-63.5 parent: 2 type: Transform - - uid: 11265 + - uid: 11288 components: - pos: 75.5,-63.5 parent: 2 type: Transform - - uid: 11266 + - uid: 11289 components: - pos: 76.5,-63.5 parent: 2 type: Transform - - uid: 11267 + - uid: 11290 components: - pos: 77.5,-63.5 parent: 2 type: Transform - - uid: 11268 + - uid: 11291 components: - pos: 78.5,-63.5 parent: 2 type: Transform - - uid: 11269 + - uid: 11292 components: - pos: 79.5,-63.5 parent: 2 type: Transform - - uid: 11270 + - uid: 11293 components: - pos: 79.5,-51.5 parent: 2 type: Transform - - uid: 11271 + - uid: 11294 components: - pos: 79.5,-52.5 parent: 2 type: Transform - - uid: 11272 + - uid: 11295 components: - pos: 79.5,-53.5 parent: 2 type: Transform - - uid: 11273 + - uid: 11296 components: - pos: 79.5,-54.5 parent: 2 type: Transform - - uid: 11274 + - uid: 11297 components: - pos: 79.5,-55.5 parent: 2 type: Transform - - uid: 11275 + - uid: 11298 components: - pos: 79.5,-56.5 parent: 2 type: Transform - - uid: 11276 + - uid: 11299 components: - pos: 79.5,-57.5 parent: 2 type: Transform - - uid: 11277 + - uid: 11300 components: - pos: 79.5,-58.5 parent: 2 type: Transform - - uid: 11278 + - uid: 11301 components: - pos: 79.5,-59.5 parent: 2 type: Transform - - uid: 11279 + - uid: 11302 components: - pos: 79.5,-60.5 parent: 2 type: Transform - - uid: 11280 + - uid: 11303 components: - pos: 79.5,-61.5 parent: 2 type: Transform - - uid: 11281 + - uid: 11304 components: - pos: 79.5,-62.5 parent: 2 type: Transform - - uid: 11282 + - uid: 11305 components: - pos: 72.5,-71.5 parent: 2 type: Transform - - uid: 11283 + - uid: 11306 components: - pos: 71.5,-69.5 parent: 2 type: Transform - - uid: 11284 + - uid: 11307 components: - pos: 55.5,-32.5 parent: 2 type: Transform - - uid: 11285 + - uid: 11308 components: - pos: 54.5,-32.5 parent: 2 type: Transform - - uid: 11286 + - uid: 11309 components: - pos: 53.5,-32.5 parent: 2 type: Transform - - uid: 11287 + - uid: 11310 components: - pos: 67.5,-74.5 parent: 2 type: Transform - - uid: 11288 + - uid: 11311 components: - pos: 66.5,-74.5 parent: 2 type: Transform - - uid: 11289 + - uid: 11312 components: - pos: 65.5,-74.5 parent: 2 type: Transform - - uid: 11290 + - uid: 11313 components: - pos: 64.5,-74.5 parent: 2 type: Transform - - uid: 11291 + - uid: 11314 components: - pos: 63.5,-74.5 parent: 2 type: Transform - - uid: 11292 + - uid: 11315 components: - pos: 62.5,-74.5 parent: 2 type: Transform - - uid: 11293 + - uid: 11316 components: - pos: 61.5,-74.5 parent: 2 type: Transform - - uid: 11294 + - uid: 11317 components: - pos: 60.5,-74.5 parent: 2 type: Transform - - uid: 11295 + - uid: 11318 components: - pos: 59.5,-74.5 parent: 2 type: Transform - - uid: 11296 + - uid: 11319 components: - pos: 58.5,-74.5 parent: 2 type: Transform - - uid: 11297 + - uid: 11320 components: - pos: 55.5,-30.5 parent: 2 type: Transform - - uid: 11298 + - uid: 11321 components: - pos: 55.5,-31.5 parent: 2 type: Transform - - uid: 11299 + - uid: 11322 components: - pos: 59.5,-22.5 parent: 2 type: Transform - - uid: 11300 + - uid: 11323 components: - pos: 59.5,-41.5 parent: 2 type: Transform - - uid: 11301 + - uid: 11324 components: - pos: 59.5,-40.5 parent: 2 type: Transform - - uid: 11302 + - uid: 11325 components: - pos: 59.5,-39.5 parent: 2 type: Transform - - uid: 11303 + - uid: 11326 components: - - pos: 58.5,-39.5 + - pos: 59.5,-38.5 parent: 2 type: Transform - - uid: 11304 + - uid: 11327 components: - - pos: 57.5,-39.5 + - pos: 57.5,-38.5 parent: 2 type: Transform - - uid: 11305 + - uid: 11328 components: - - pos: 56.5,-39.5 + - pos: 56.5,-38.5 parent: 2 type: Transform - - uid: 11306 + - uid: 11329 components: - pos: 59.5,-23.5 parent: 2 type: Transform - - uid: 11307 + - uid: 11330 components: - pos: 59.5,-24.5 parent: 2 type: Transform - - uid: 11308 + - uid: 11331 components: - rot: 3.141592653589793 rad pos: 65.5,-20.5 parent: 2 type: Transform - - uid: 11309 + - uid: 11332 components: - rot: 3.141592653589793 rad pos: 65.5,-19.5 parent: 2 type: Transform - - uid: 11310 + - uid: 11333 components: - rot: 3.141592653589793 rad pos: 65.5,-18.5 parent: 2 type: Transform - - uid: 11311 + - uid: 11334 components: - rot: 3.141592653589793 rad pos: 66.5,-18.5 parent: 2 type: Transform - - uid: 11312 + - uid: 11335 components: - pos: 75.5,-51.5 parent: 2 type: Transform - - uid: 11313 + - uid: 11336 components: - pos: 75.5,-52.5 parent: 2 type: Transform - - uid: 11314 + - uid: 11337 components: - pos: 75.5,-53.5 parent: 2 type: Transform - - uid: 11315 + - uid: 11338 components: - pos: 75.5,-54.5 parent: 2 type: Transform - - uid: 11316 + - uid: 11339 components: - pos: 75.5,-55.5 parent: 2 type: Transform - - uid: 11317 + - uid: 11340 components: - pos: 75.5,-56.5 parent: 2 type: Transform - - uid: 11318 + - uid: 11341 components: - pos: 60.5,-26.5 parent: 2 type: Transform - - uid: 11319 + - uid: 11342 components: - pos: 59.5,-26.5 parent: 2 type: Transform - - uid: 11320 + - uid: 11343 components: - pos: 58.5,-26.5 parent: 2 type: Transform - - uid: 11321 + - uid: 11344 components: - pos: 57.5,-26.5 parent: 2 type: Transform - - uid: 11322 + - uid: 11345 components: - pos: 56.5,-26.5 parent: 2 type: Transform - - uid: 11323 + - uid: 11346 components: - pos: 64.5,-58.5 parent: 2 type: Transform - - uid: 11324 + - uid: 11347 components: - pos: 71.5,-57.5 parent: 2 type: Transform - - uid: 11325 + - uid: 11348 components: - pos: 71.5,-58.5 parent: 2 type: Transform - - uid: 11326 + - uid: 11349 components: - pos: 71.5,-59.5 parent: 2 type: Transform - - uid: 11327 + - uid: 11350 components: - pos: 71.5,-60.5 parent: 2 type: Transform - - uid: 11328 + - uid: 11351 components: - pos: 71.5,-61.5 parent: 2 type: Transform - - uid: 11329 + - uid: 11352 components: - pos: 47.5,-65.5 parent: 2 type: Transform - - uid: 11330 + - uid: 11353 components: - pos: 48.5,-65.5 parent: 2 type: Transform - - uid: 11331 + - uid: 11354 components: - pos: 49.5,-65.5 parent: 2 type: Transform - - uid: 11332 + - uid: 11355 components: - pos: 50.5,-65.5 parent: 2 type: Transform - - uid: 11333 + - uid: 11356 components: - pos: 52.5,-66.5 parent: 2 type: Transform - - uid: 11334 + - uid: 11357 components: - pos: 69.5,-63.5 parent: 2 type: Transform - - uid: 11335 + - uid: 11358 components: - pos: 67.5,-66.5 parent: 2 type: Transform - - uid: 11336 + - uid: 11359 components: - pos: 11.5,-89.5 parent: 2 type: Transform - - uid: 11337 + - uid: 11360 components: - pos: 12.5,-89.5 parent: 2 type: Transform - - uid: 11338 + - uid: 11361 components: - pos: 12.5,-90.5 parent: 2 type: Transform - - uid: 11339 + - uid: 11362 components: - pos: 12.5,-91.5 parent: 2 type: Transform - - uid: 11340 + - uid: 11363 components: - pos: 5.5,-89.5 parent: 2 type: Transform - - uid: 11341 + - uid: 11364 components: - pos: 6.5,-89.5 parent: 2 type: Transform - - uid: 11342 + - uid: 11365 components: - pos: 7.5,-89.5 parent: 2 type: Transform - - uid: 11343 + - uid: 11366 components: - pos: 8.5,-89.5 parent: 2 type: Transform - - uid: 11344 + - uid: 11367 components: - pos: 9.5,-89.5 parent: 2 type: Transform - - uid: 11345 + - uid: 11368 components: - pos: 10.5,-89.5 parent: 2 type: Transform - - uid: 11346 + - uid: 11369 components: - pos: 3.5,-89.5 parent: 2 type: Transform - - uid: 11347 + - uid: 11370 components: - pos: 70.5,-25.5 parent: 2 type: Transform - - uid: 11348 + - uid: 11371 components: - pos: 69.5,-25.5 parent: 2 type: Transform - - uid: 11349 + - uid: 11372 components: - pos: 68.5,-25.5 parent: 2 type: Transform - - uid: 11350 + - uid: 11373 components: - pos: 66.5,-25.5 parent: 2 type: Transform - - uid: 11351 + - uid: 11374 components: - pos: 67.5,-25.5 parent: 2 type: Transform - - uid: 11352 + - uid: 11375 components: - pos: 71.5,-26.5 parent: 2 type: Transform - - uid: 11353 + - uid: 11376 components: - pos: 72.5,-26.5 parent: 2 type: Transform - - uid: 11354 + - uid: 11377 components: - pos: 73.5,-26.5 parent: 2 type: Transform - - uid: 11355 + - uid: 11378 components: - pos: 74.5,-26.5 parent: 2 type: Transform - - uid: 11356 + - uid: 11379 components: - pos: 75.5,-26.5 parent: 2 type: Transform - - uid: 11357 + - uid: 11380 components: - pos: 76.5,-26.5 parent: 2 type: Transform - - uid: 11358 + - uid: 11381 components: - pos: 77.5,-26.5 parent: 2 type: Transform - - uid: 11359 + - uid: 11382 components: - pos: 78.5,-26.5 parent: 2 type: Transform - - uid: 11360 + - uid: 11383 components: - pos: -46.5,-53.5 parent: 2 type: Transform - - uid: 11361 + - uid: 11384 components: - pos: -46.5,-54.5 parent: 2 type: Transform - - uid: 11362 + - uid: 11385 components: - pos: 6.5,-88.5 parent: 2 type: Transform - - uid: 11363 + - uid: 11386 components: - pos: 6.5,-87.5 parent: 2 type: Transform - - uid: 11364 + - uid: 11387 components: - pos: 8.5,-75.5 parent: 2 type: Transform - - uid: 11365 + - uid: 11388 components: - pos: 9.5,-75.5 parent: 2 type: Transform - - uid: 11366 + - uid: 11389 components: - pos: 10.5,-75.5 parent: 2 type: Transform - - uid: 11367 + - uid: 11390 components: - pos: 11.5,-75.5 parent: 2 type: Transform - - uid: 11368 + - uid: 11391 components: - pos: 12.5,-75.5 parent: 2 type: Transform - - uid: 11369 + - uid: 11392 components: - pos: 13.5,-75.5 parent: 2 type: Transform - - uid: 11370 + - uid: 11393 components: - pos: 14.5,-75.5 parent: 2 type: Transform - - uid: 11371 + - uid: 11394 components: - pos: 15.5,-75.5 parent: 2 type: Transform - - uid: 11372 + - uid: 11395 components: - pos: 16.5,-75.5 parent: 2 type: Transform - - uid: 11373 + - uid: 11396 components: - pos: 17.5,-75.5 parent: 2 type: Transform - - uid: 11374 + - uid: 11397 components: - pos: 18.5,-75.5 parent: 2 type: Transform - - uid: 11375 + - uid: 11398 components: - pos: 19.5,-75.5 parent: 2 type: Transform - - uid: 11376 + - uid: 11399 components: - pos: 20.5,-75.5 parent: 2 type: Transform - - uid: 11377 + - uid: 11400 components: - pos: 21.5,-75.5 parent: 2 type: Transform - - uid: 11378 + - uid: 11401 components: - pos: 69.5,4.5 parent: 2 type: Transform - - uid: 11379 + - uid: 11402 components: - pos: 69.5,2.5 parent: 2 type: Transform - - uid: 11380 + - uid: 11403 components: - pos: 69.5,1.5 parent: 2 type: Transform - - uid: 11381 + - uid: 11404 components: - pos: 69.5,0.5 parent: 2 type: Transform - - uid: 11382 + - uid: 11405 components: - pos: 69.5,-0.5 parent: 2 type: Transform - - uid: 11383 + - uid: 11406 components: - pos: 69.5,-1.5 parent: 2 type: Transform - - uid: 11384 + - uid: 11407 components: - pos: 69.5,31.5 parent: 2 type: Transform - - uid: 11385 + - uid: 11408 components: - pos: 69.5,30.5 parent: 2 type: Transform - - uid: 11386 + - uid: 11409 components: - pos: 69.5,29.5 parent: 2 type: Transform - - uid: 11387 + - uid: 11410 components: - pos: 69.5,28.5 parent: 2 type: Transform - - uid: 11388 + - uid: 11411 components: - pos: 69.5,27.5 parent: 2 type: Transform - - uid: 11389 + - uid: 11412 components: - pos: 69.5,26.5 parent: 2 type: Transform - - uid: 11390 + - uid: 11413 components: - pos: 69.5,25.5 parent: 2 type: Transform - - uid: 11391 + - uid: 11414 components: - pos: 69.5,24.5 parent: 2 type: Transform - - uid: 11392 + - uid: 11415 components: - pos: 69.5,23.5 parent: 2 type: Transform - - uid: 11393 + - uid: 11416 components: - pos: 69.5,22.5 parent: 2 type: Transform - - uid: 11394 + - uid: 11417 components: - pos: 69.5,21.5 parent: 2 type: Transform - - uid: 11395 + - uid: 11418 components: - pos: 69.5,20.5 parent: 2 type: Transform - - uid: 11396 + - uid: 11419 components: - pos: 69.5,19.5 parent: 2 type: Transform - - uid: 11397 + - uid: 11420 components: - pos: 69.5,18.5 parent: 2 type: Transform - - uid: 11398 + - uid: 11421 components: - pos: 69.5,17.5 parent: 2 type: Transform - - uid: 11399 + - uid: 11422 components: - pos: 69.5,16.5 parent: 2 type: Transform - - uid: 11400 + - uid: 11423 components: - pos: 69.5,15.5 parent: 2 type: Transform - - uid: 11401 + - uid: 11424 components: - pos: 69.5,14.5 parent: 2 type: Transform - - uid: 11402 + - uid: 11425 components: - pos: 69.5,13.5 parent: 2 type: Transform - - uid: 11403 + - uid: 11426 components: - pos: 69.5,12.5 parent: 2 type: Transform - - uid: 11404 + - uid: 11427 components: - pos: 69.5,11.5 parent: 2 type: Transform - - uid: 11405 + - uid: 11428 components: - pos: 69.5,10.5 parent: 2 type: Transform - - uid: 11406 + - uid: 11429 components: - pos: 69.5,9.5 parent: 2 type: Transform - - uid: 11407 + - uid: 11430 components: - pos: 69.5,8.5 parent: 2 type: Transform - - uid: 11408 + - uid: 11431 components: - pos: 69.5,7.5 parent: 2 type: Transform - - uid: 11409 + - uid: 11432 components: - pos: 69.5,6.5 parent: 2 type: Transform - - uid: 11410 + - uid: 11433 components: - pos: 69.5,5.5 parent: 2 type: Transform - - uid: 11411 + - uid: 11434 components: - pos: 75.5,43.5 parent: 2 type: Transform - - uid: 11412 + - uid: 11435 components: - pos: 63.5,37.5 parent: 2 type: Transform - - uid: 11413 + - uid: 11436 components: - pos: 63.5,38.5 parent: 2 type: Transform - - uid: 11414 + - uid: 11437 components: - pos: 63.5,39.5 parent: 2 type: Transform - - uid: 11415 + - uid: 11438 components: - pos: 64.5,39.5 parent: 2 type: Transform - - uid: 11416 + - uid: 11439 components: - pos: 65.5,39.5 parent: 2 type: Transform - - uid: 11417 + - uid: 11440 components: - pos: 66.5,39.5 parent: 2 type: Transform - - uid: 11418 + - uid: 11441 components: - pos: 67.5,39.5 parent: 2 type: Transform - - uid: 11419 + - uid: 11442 components: - pos: 67.5,40.5 parent: 2 type: Transform - - uid: 11420 + - uid: 11443 components: - pos: 67.5,41.5 parent: 2 type: Transform - - uid: 11421 + - uid: 11444 components: - pos: 68.5,41.5 parent: 2 type: Transform - - uid: 11422 + - uid: 11445 components: - pos: 69.5,41.5 parent: 2 type: Transform - - uid: 11423 + - uid: 11446 components: - pos: 70.5,41.5 parent: 2 type: Transform - - uid: 11424 + - uid: 11447 components: - pos: 71.5,41.5 parent: 2 type: Transform - - uid: 11425 + - uid: 11448 components: - pos: 72.5,41.5 parent: 2 type: Transform - - uid: 11426 + - uid: 11449 components: - pos: 72.5,42.5 parent: 2 type: Transform - - uid: 11427 + - uid: 11450 components: - pos: 73.5,42.5 parent: 2 type: Transform - - uid: 11428 + - uid: 11451 components: - pos: 74.5,42.5 parent: 2 type: Transform - - uid: 11429 + - uid: 11452 components: - pos: 75.5,42.5 parent: 2 type: Transform - - uid: 11430 + - uid: 11453 components: - pos: 75.5,44.5 parent: 2 type: Transform - - uid: 11431 + - uid: 11454 components: - pos: 75.5,45.5 parent: 2 type: Transform - - uid: 11432 + - uid: 11455 components: - pos: 75.5,46.5 parent: 2 type: Transform - - uid: 11433 + - uid: 11456 components: - pos: 74.5,46.5 parent: 2 type: Transform - - uid: 11434 + - uid: 11457 components: - pos: 74.5,47.5 parent: 2 type: Transform - - uid: 11435 + - uid: 11458 components: - pos: 74.5,48.5 parent: 2 type: Transform - - uid: 11436 + - uid: 11459 components: - pos: 74.5,49.5 parent: 2 type: Transform - - uid: 11437 + - uid: 11460 components: - pos: 74.5,50.5 parent: 2 type: Transform - - uid: 11438 + - uid: 11461 components: - pos: 74.5,51.5 parent: 2 type: Transform - - uid: 11439 + - uid: 11462 components: - pos: 74.5,52.5 parent: 2 type: Transform - - uid: 11440 + - uid: 11463 components: - pos: 74.5,53.5 parent: 2 type: Transform - - uid: 11441 + - uid: 11464 components: - pos: 74.5,54.5 parent: 2 type: Transform - - uid: 11442 + - uid: 11465 components: - pos: 74.5,55.5 parent: 2 type: Transform - - uid: 11443 + - uid: 11466 components: - pos: 74.5,56.5 parent: 2 type: Transform - - uid: 11444 + - uid: 11467 components: - pos: 74.5,57.5 parent: 2 type: Transform - - uid: 11445 + - uid: 11468 components: - pos: 60.5,58.5 parent: 2 type: Transform - - uid: 11446 + - uid: 11469 components: - pos: 73.5,57.5 parent: 2 type: Transform - - uid: 11447 + - uid: 11470 components: - pos: 72.5,57.5 parent: 2 type: Transform - - uid: 11448 + - uid: 11471 components: - pos: 71.5,57.5 parent: 2 type: Transform - - uid: 11449 + - uid: 11472 components: - pos: 70.5,57.5 parent: 2 type: Transform - - uid: 11450 + - uid: 11473 components: - pos: 69.5,57.5 parent: 2 type: Transform - - uid: 11451 + - uid: 11474 components: - pos: 68.5,57.5 parent: 2 type: Transform - - uid: 11452 + - uid: 11475 components: - pos: 67.5,57.5 parent: 2 type: Transform - - uid: 11453 + - uid: 11476 components: - pos: 66.5,57.5 parent: 2 type: Transform - - uid: 11454 + - uid: 11477 components: - pos: 65.5,57.5 parent: 2 type: Transform - - uid: 11455 + - uid: 11478 components: - pos: 64.5,57.5 parent: 2 type: Transform - - uid: 11456 + - uid: 11479 components: - pos: 63.5,57.5 parent: 2 type: Transform - - uid: 11457 + - uid: 11480 components: - pos: 62.5,57.5 parent: 2 type: Transform - - uid: 11458 + - uid: 11481 components: - pos: 61.5,57.5 parent: 2 type: Transform - - uid: 11459 + - uid: 11482 components: - pos: 60.5,57.5 parent: 2 type: Transform - - uid: 11460 + - uid: 11483 components: - pos: 60.5,59.5 parent: 2 type: Transform - - uid: 11461 + - uid: 11484 components: - pos: 60.5,60.5 parent: 2 type: Transform - - uid: 11462 + - uid: 11485 components: - pos: 60.5,61.5 parent: 2 type: Transform - - uid: 11463 + - uid: 11486 components: - pos: 60.5,62.5 parent: 2 type: Transform - - uid: 11464 + - uid: 11487 components: - pos: 60.5,63.5 parent: 2 type: Transform - - uid: 11465 + - uid: 11488 components: - pos: 47.5,55.5 parent: 2 type: Transform - - uid: 11466 + - uid: 11489 components: - pos: 59.5,63.5 parent: 2 type: Transform - - uid: 11467 + - uid: 11490 components: - pos: 58.5,63.5 parent: 2 type: Transform - - uid: 11468 + - uid: 11491 components: - pos: 57.5,63.5 parent: 2 type: Transform - - uid: 11469 + - uid: 11492 components: - pos: 56.5,63.5 parent: 2 type: Transform - - uid: 11470 + - uid: 11493 components: - pos: 55.5,63.5 parent: 2 type: Transform - - uid: 11471 + - uid: 11494 components: - pos: 54.5,63.5 parent: 2 type: Transform - - uid: 11472 + - uid: 11495 components: - pos: 53.5,63.5 parent: 2 type: Transform - - uid: 11473 + - uid: 11496 components: - pos: 52.5,63.5 parent: 2 type: Transform - - uid: 11474 + - uid: 11497 components: - pos: 51.5,63.5 parent: 2 type: Transform - - uid: 11475 + - uid: 11498 components: - pos: 50.5,63.5 parent: 2 type: Transform - - uid: 11476 + - uid: 11499 components: - pos: 49.5,63.5 parent: 2 type: Transform - - uid: 11477 + - uid: 11500 components: - pos: 48.5,63.5 parent: 2 type: Transform - - uid: 11478 + - uid: 11501 components: - pos: 48.5,62.5 parent: 2 type: Transform - - uid: 11479 + - uid: 11502 components: - pos: 48.5,61.5 parent: 2 type: Transform - - uid: 11480 + - uid: 11503 components: - pos: 48.5,60.5 parent: 2 type: Transform - - uid: 11481 + - uid: 11504 components: - pos: 48.5,59.5 parent: 2 type: Transform - - uid: 11482 + - uid: 11505 components: - pos: 48.5,58.5 parent: 2 type: Transform - - uid: 11483 + - uid: 11506 components: - pos: 48.5,57.5 parent: 2 type: Transform - - uid: 11484 + - uid: 11507 components: - pos: 48.5,56.5 parent: 2 type: Transform - - uid: 11485 + - uid: 11508 components: - pos: 48.5,55.5 parent: 2 type: Transform - - uid: 11486 + - uid: 11509 components: - pos: 46.5,55.5 parent: 2 type: Transform - - uid: 11487 + - uid: 11510 components: - pos: 45.5,55.5 parent: 2 type: Transform - - uid: 11488 + - uid: 11511 components: - pos: 44.5,55.5 parent: 2 type: Transform - - uid: 11489 + - uid: 11512 components: - pos: 43.5,55.5 parent: 2 type: Transform - - uid: 11490 + - uid: 11513 components: - pos: 42.5,55.5 parent: 2 type: Transform - - uid: 11491 + - uid: 11514 components: - pos: 41.5,55.5 parent: 2 type: Transform - - uid: 11492 + - uid: 11515 components: - pos: 40.5,55.5 parent: 2 type: Transform - - uid: 11493 + - uid: 11516 components: - pos: 39.5,55.5 parent: 2 type: Transform - - uid: 11494 + - uid: 11517 components: - pos: 38.5,55.5 parent: 2 type: Transform - - uid: 11495 + - uid: 11518 components: - pos: 37.5,55.5 parent: 2 type: Transform - - uid: 11496 + - uid: 11519 components: - pos: 36.5,55.5 parent: 2 type: Transform - - uid: 11497 + - uid: 11520 components: - pos: 35.5,55.5 parent: 2 type: Transform - - uid: 11498 + - uid: 11521 components: - pos: 34.5,55.5 parent: 2 type: Transform - - uid: 11499 + - uid: 11522 components: - pos: 33.5,55.5 parent: 2 type: Transform - - uid: 11500 + - uid: 11523 components: - pos: 32.5,55.5 parent: 2 type: Transform - - uid: 11501 + - uid: 11524 components: - pos: 31.5,55.5 parent: 2 type: Transform - - uid: 11502 + - uid: 11525 components: - pos: 30.5,55.5 parent: 2 type: Transform - - uid: 11503 + - uid: 11526 components: - pos: 66.5,35.5 parent: 2 type: Transform - - uid: 11504 + - uid: 11527 components: - pos: 66.5,34.5 parent: 2 type: Transform - - uid: 11505 + - uid: 11528 components: - pos: 66.5,33.5 parent: 2 type: Transform - - uid: 11506 + - uid: 11529 components: - pos: 66.5,32.5 parent: 2 type: Transform - - uid: 11507 + - uid: 11530 components: - pos: 66.5,31.5 parent: 2 type: Transform - - uid: 11508 + - uid: 11531 components: - pos: 67.5,31.5 parent: 2 type: Transform - - uid: 11509 + - uid: 11532 components: - pos: 68.5,31.5 parent: 2 type: Transform - - uid: 11510 + - uid: 11533 components: - rot: 3.141592653589793 rad pos: 27.5,-90.5 parent: 2 type: Transform - - uid: 11511 + - uid: 11534 components: - rot: 3.141592653589793 rad pos: 13.5,-89.5 parent: 2 type: Transform - - uid: 11512 + - uid: 11535 components: - pos: -7.5,-9.5 parent: 2 type: Transform - - uid: 11513 + - uid: 11536 components: - pos: -8.5,-9.5 parent: 2 type: Transform - - uid: 11514 + - uid: 11537 components: - pos: -9.5,-9.5 parent: 2 type: Transform - - uid: 11515 + - uid: 11538 components: - pos: -10.5,-9.5 parent: 2 type: Transform - - uid: 11516 + - uid: 11539 components: - pos: -11.5,-9.5 parent: 2 type: Transform - - uid: 11517 + - uid: 11540 components: - pos: -12.5,-9.5 parent: 2 type: Transform - - uid: 11518 + - uid: 11541 components: - pos: -13.5,-9.5 parent: 2 type: Transform - - uid: 11519 + - uid: 11542 components: - pos: -15.5,-14.5 parent: 2 type: Transform - - uid: 11520 + - uid: 11543 components: - pos: -16.5,-14.5 parent: 2 type: Transform - - uid: 11521 + - uid: 11544 components: - pos: -46.5,52.5 parent: 2 type: Transform - - uid: 11522 + - uid: 11545 components: - pos: -46.5,51.5 parent: 2 type: Transform - - uid: 11523 + - uid: 11546 components: - pos: -46.5,50.5 parent: 2 type: Transform - - uid: 11524 + - uid: 11547 components: - pos: -46.5,49.5 parent: 2 type: Transform - - uid: 11525 + - uid: 11548 components: - pos: -46.5,-56.5 parent: 2 type: Transform - - uid: 11526 + - uid: 11549 components: - pos: -46.5,-57.5 parent: 2 type: Transform - - uid: 11527 + - uid: 11550 components: - pos: -46.5,-58.5 parent: 2 type: Transform - - uid: 11528 + - uid: 11551 components: - pos: -47.5,-58.5 parent: 2 type: Transform - - uid: 11529 + - uid: 11552 components: - pos: -48.5,-58.5 parent: 2 type: Transform - - uid: 11530 + - uid: 11553 components: - pos: -49.5,-58.5 parent: 2 type: Transform - - uid: 11531 + - uid: 11554 components: - pos: -29.5,-19.5 parent: 2 type: Transform - - uid: 11532 + - uid: 11555 components: - pos: -29.5,-20.5 parent: 2 type: Transform - - uid: 11533 + - uid: 11556 components: - pos: -29.5,-21.5 parent: 2 type: Transform - - uid: 11534 + - uid: 11557 components: - rot: 1.5707963267948966 rad pos: -25.5,-60.5 parent: 2 type: Transform - - uid: 11535 + - uid: 11558 components: - rot: 1.5707963267948966 rad pos: -24.5,-60.5 parent: 2 type: Transform - - uid: 11536 + - uid: 11559 components: - rot: 1.5707963267948966 rad pos: -23.5,-60.5 parent: 2 type: Transform - - uid: 11537 + - uid: 11560 components: - rot: 1.5707963267948966 rad pos: -23.5,-58.5 parent: 2 type: Transform - - uid: 11538 + - uid: 11561 components: - pos: 63.5,2.5 parent: 2 type: Transform - - uid: 11539 + - uid: 11562 components: - rot: 3.141592653589793 rad pos: 52.5,-93.5 parent: 2 type: Transform - - uid: 11540 + - uid: 11563 components: - rot: 3.141592653589793 rad pos: 52.5,-80.5 parent: 2 type: Transform - - uid: 11541 + - uid: 11564 components: - rot: 3.141592653589793 rad pos: 52.5,-76.5 parent: 2 type: Transform - - uid: 11542 + - uid: 11565 components: - rot: 3.141592653589793 rad pos: 51.5,-95.5 parent: 2 type: Transform - - uid: 11543 + - uid: 11566 components: - rot: 3.141592653589793 rad pos: 52.5,-95.5 parent: 2 type: Transform - - uid: 11544 + - uid: 11567 components: - pos: 6.5,-73.5 parent: 2 type: Transform - - uid: 11545 + - uid: 11568 components: - rot: 3.141592653589793 rad pos: 50.5,-95.5 parent: 2 type: Transform - - uid: 11546 + - uid: 11569 components: - rot: 3.141592653589793 rad pos: 52.5,-75.5 parent: 2 type: Transform - - uid: 11547 + - uid: 11570 components: - rot: 3.141592653589793 rad pos: 52.5,-74.5 parent: 2 type: Transform - - uid: 11548 + - uid: 11571 components: - rot: 3.141592653589793 rad pos: 54.5,-74.5 parent: 2 type: Transform - - uid: 11549 + - uid: 11572 components: - rot: 3.141592653589793 rad pos: 53.5,-74.5 parent: 2 type: Transform - - uid: 11550 + - uid: 11573 components: - rot: 1.5707963267948966 rad pos: -19.5,-48.5 parent: 2 type: Transform - - uid: 11551 + - uid: 11574 components: - rot: 1.5707963267948966 rad pos: -19.5,-49.5 parent: 2 type: Transform - - uid: 11552 + - uid: 11575 components: - rot: 3.141592653589793 rad pos: 5.5,-19.5 parent: 2 type: Transform - - uid: 11553 + - uid: 11576 components: - rot: 3.141592653589793 rad pos: 5.5,-20.5 parent: 2 type: Transform - - uid: 11554 + - uid: 11577 components: - rot: 3.141592653589793 rad pos: 5.5,-21.5 parent: 2 type: Transform - - uid: 11555 + - uid: 11578 components: - rot: 3.141592653589793 rad pos: 5.5,-22.5 parent: 2 type: Transform - - uid: 11556 + - uid: 11579 components: - rot: 3.141592653589793 rad pos: 4.5,-16.5 parent: 2 type: Transform - - uid: 11557 + - uid: 11580 components: - rot: 3.141592653589793 rad pos: 6.5,-14.5 parent: 2 type: Transform - - uid: 11558 + - uid: 11581 components: - rot: 3.141592653589793 rad pos: 5.5,-14.5 parent: 2 type: Transform - - uid: 11559 + - uid: 11582 components: - rot: 3.141592653589793 rad pos: 4.5,-14.5 parent: 2 type: Transform - - uid: 11560 + - uid: 11583 components: - rot: 1.5707963267948966 rad pos: -20.5,-49.5 parent: 2 type: Transform - - uid: 11561 + - uid: 11584 components: - pos: 6.5,-74.5 parent: 2 type: Transform - - uid: 11562 + - uid: 11585 components: - pos: 6.5,-75.5 parent: 2 type: Transform - - uid: 11563 + - uid: 11586 components: - pos: 6.5,-76.5 parent: 2 type: Transform - - uid: 11564 + - uid: 11587 components: - pos: 6.5,-77.5 parent: 2 type: Transform - - uid: 11565 + - uid: 11588 components: - pos: 6.5,-78.5 parent: 2 type: Transform - - uid: 11566 + - uid: 11589 components: - pos: 6.5,-79.5 parent: 2 type: Transform - - uid: 11567 + - uid: 11590 components: - pos: 6.5,-80.5 parent: 2 type: Transform - - uid: 11568 + - uid: 11591 components: - pos: 6.5,-81.5 parent: 2 type: Transform - - uid: 11569 + - uid: 11592 components: - pos: 6.5,-82.5 parent: 2 type: Transform - - uid: 11570 + - uid: 11593 components: - rot: -1.5707963267948966 rad pos: -47.5,49.5 parent: 2 type: Transform - - uid: 11571 + - uid: 11594 components: - rot: -1.5707963267948966 rad pos: -48.5,49.5 parent: 2 type: Transform - - uid: 11572 + - uid: 11595 components: - rot: -1.5707963267948966 rad pos: -49.5,49.5 parent: 2 type: Transform - - uid: 11573 + - uid: 11596 components: - rot: -1.5707963267948966 rad pos: -49.5,48.5 parent: 2 type: Transform - - uid: 11574 + - uid: 11597 components: - pos: 71.5,-25.5 parent: 2 type: Transform - - uid: 11575 + - uid: 11598 components: - rot: 1.5707963267948966 rad pos: -61.5,-58.5 parent: 2 type: Transform - - uid: 11576 + - uid: 11599 components: - rot: 1.5707963267948966 rad pos: -61.5,-59.5 parent: 2 type: Transform - - uid: 11577 + - uid: 11600 components: - rot: 1.5707963267948966 rad pos: -62.5,-59.5 parent: 2 type: Transform - - uid: 11578 + - uid: 11601 components: - rot: 1.5707963267948966 rad pos: -63.5,-59.5 parent: 2 type: Transform - - uid: 11579 + - uid: 11602 components: - rot: 1.5707963267948966 rad pos: -64.5,-59.5 parent: 2 type: Transform - - uid: 11580 + - uid: 11603 components: - rot: 1.5707963267948966 rad pos: -65.5,-59.5 parent: 2 type: Transform - - uid: 11581 + - uid: 11604 components: - rot: 1.5707963267948966 rad pos: -66.5,-59.5 parent: 2 type: Transform - - uid: 11582 + - uid: 11605 components: - rot: 1.5707963267948966 rad pos: -67.5,-59.5 parent: 2 type: Transform - - uid: 11583 + - uid: 11606 components: - rot: 1.5707963267948966 rad pos: -68.5,-59.5 parent: 2 type: Transform - - uid: 11584 + - uid: 11607 components: - rot: 1.5707963267948966 rad pos: -69.5,-59.5 parent: 2 type: Transform - - uid: 11585 + - uid: 11608 components: - rot: 1.5707963267948966 rad pos: -70.5,-59.5 parent: 2 type: Transform - - uid: 11586 + - uid: 11609 components: - rot: 1.5707963267948966 rad pos: -71.5,-59.5 parent: 2 type: Transform - - uid: 11587 + - uid: 11610 components: - rot: 1.5707963267948966 rad pos: -72.5,-59.5 parent: 2 type: Transform - - uid: 11588 + - uid: 11611 components: - rot: 1.5707963267948966 rad pos: -73.5,-59.5 parent: 2 type: Transform - - uid: 11589 + - uid: 11612 components: - rot: 1.5707963267948966 rad pos: -74.5,-59.5 parent: 2 type: Transform - - uid: 11590 + - uid: 11613 components: - rot: 3.141592653589793 rad pos: 45.5,-80.5 parent: 2 type: Transform - - uid: 11591 + - uid: 11614 components: - rot: 3.141592653589793 rad pos: 45.5,-79.5 parent: 2 type: Transform - - uid: 11592 + - uid: 11615 components: - rot: 1.5707963267948966 rad pos: 33.5,-91.5 parent: 2 type: Transform - - uid: 11593 + - uid: 11616 components: - rot: 1.5707963267948966 rad pos: 45.5,-91.5 parent: 2 type: Transform - - uid: 11594 + - uid: 11617 components: - rot: 1.5707963267948966 rad pos: 45.5,-92.5 parent: 2 type: Transform - - uid: 11595 + - uid: 11618 components: - rot: 1.5707963267948966 rad pos: 45.5,-93.5 parent: 2 type: Transform - - uid: 11596 + - uid: 11619 components: - rot: 1.5707963267948966 rad pos: 33.5,-92.5 parent: 2 type: Transform - - uid: 11597 + - uid: 11620 components: - rot: 1.5707963267948966 rad pos: 33.5,-93.5 parent: 2 type: Transform - - uid: 11598 + - uid: 11621 components: - rot: 3.141592653589793 rad pos: 45.5,-78.5 parent: 2 type: Transform - - uid: 11599 + - uid: 11622 components: - rot: 3.141592653589793 rad pos: 45.5,-77.5 parent: 2 type: Transform - - uid: 11600 + - uid: 11623 components: - rot: 3.141592653589793 rad pos: 45.5,-76.5 parent: 2 type: Transform - - uid: 11601 + - uid: 11624 components: - rot: 3.141592653589793 rad pos: 45.5,-75.5 parent: 2 type: Transform - - uid: 11602 + - uid: 11625 components: - rot: 3.141592653589793 rad pos: 33.5,-80.5 parent: 2 type: Transform - - uid: 11603 + - uid: 11626 components: - rot: 3.141592653589793 rad pos: 33.5,-79.5 parent: 2 type: Transform - - uid: 11604 + - uid: 11627 components: - rot: 3.141592653589793 rad pos: 33.5,-78.5 parent: 2 type: Transform - - uid: 11605 + - uid: 11628 components: - rot: 3.141592653589793 rad pos: 33.5,-77.5 parent: 2 type: Transform - - uid: 11606 + - uid: 11629 components: - rot: 3.141592653589793 rad pos: 33.5,-76.5 parent: 2 type: Transform - - uid: 11607 + - uid: 11630 components: - rot: 3.141592653589793 rad pos: 33.5,-75.5 parent: 2 type: Transform - - uid: 11608 + - uid: 11631 components: - pos: -79.5,-33.5 parent: 2 type: Transform - - uid: 11609 + - uid: 11632 components: - pos: -79.5,-39.5 parent: 2 type: Transform - - uid: 11610 + - uid: 11633 components: - pos: -79.5,-38.5 parent: 2 type: Transform - - uid: 11611 + - uid: 11634 components: - pos: -79.5,-34.5 parent: 2 type: Transform - - uid: 11612 + - uid: 11635 components: - pos: -79.5,-36.5 parent: 2 type: Transform - - uid: 11613 + - uid: 11636 components: - pos: -79.5,-43.5 parent: 2 type: Transform - - uid: 11614 + - uid: 11637 components: - pos: -79.5,-37.5 parent: 2 type: Transform - - uid: 11615 + - uid: 11638 components: - pos: -79.5,-42.5 parent: 2 type: Transform - - uid: 11616 + - uid: 11639 components: - pos: -79.5,-35.5 parent: 2 type: Transform - - uid: 11617 + - uid: 11640 components: - rot: 3.141592653589793 rad pos: -79.5,-44.5 parent: 2 type: Transform - - uid: 11618 + - uid: 11641 components: - pos: -70.5,-37.5 parent: 2 type: Transform - - uid: 11619 + - uid: 11642 components: - pos: -69.5,-37.5 parent: 2 type: Transform - - uid: 11620 + - uid: 11643 components: - pos: -68.5,-37.5 parent: 2 type: Transform - - uid: 11621 + - uid: 11644 components: - pos: -67.5,-37.5 parent: 2 type: Transform - - uid: 11622 + - uid: 11645 components: - pos: -66.5,-37.5 parent: 2 type: Transform - - uid: 11623 + - uid: 11646 components: - pos: -65.5,-37.5 parent: 2 type: Transform - - uid: 11624 + - uid: 11647 components: - pos: -65.5,-38.5 parent: 2 type: Transform - - uid: 11625 + - uid: 11648 components: - pos: -65.5,-39.5 parent: 2 type: Transform - - uid: 11626 + - uid: 11649 components: - pos: -65.5,-40.5 parent: 2 type: Transform - - uid: 11627 + - uid: 11650 components: - pos: -65.5,-41.5 parent: 2 type: Transform - - uid: 11628 + - uid: 11651 components: - pos: -65.5,-42.5 parent: 2 type: Transform - - uid: 11629 + - uid: 11652 components: - pos: -65.5,-43.5 parent: 2 type: Transform - - uid: 11630 + - uid: 11653 components: - pos: -65.5,-45.5 parent: 2 type: Transform - - uid: 11631 + - uid: 11654 components: - rot: 3.141592653589793 rad pos: -79.5,-45.5 parent: 2 type: Transform - - uid: 11632 + - uid: 11655 components: - rot: 3.141592653589793 rad pos: -79.5,-46.5 parent: 2 type: Transform - - uid: 11633 + - uid: 11656 components: - rot: 3.141592653589793 rad pos: -79.5,-47.5 parent: 2 type: Transform - - uid: 11634 + - uid: 11657 components: - rot: 3.141592653589793 rad pos: -79.5,-48.5 parent: 2 type: Transform - - uid: 11635 + - uid: 11658 components: - rot: 3.141592653589793 rad pos: -78.5,-48.5 parent: 2 type: Transform - - uid: 11636 + - uid: 11659 components: - rot: 3.141592653589793 rad pos: -77.5,-48.5 parent: 2 type: Transform - - uid: 11637 + - uid: 11660 components: - rot: 3.141592653589793 rad pos: -76.5,-48.5 parent: 2 type: Transform - - uid: 11638 + - uid: 11661 components: - rot: 3.141592653589793 rad pos: -75.5,-48.5 parent: 2 type: Transform - - uid: 11639 + - uid: 11662 components: - rot: -1.5707963267948966 rad pos: -65.5,-44.5 parent: 2 type: Transform - - uid: 11640 + - uid: 11663 components: - rot: -1.5707963267948966 rad pos: -61.5,-47.5 parent: 2 type: Transform - - uid: 11641 + - uid: 11664 components: - rot: -1.5707963267948966 rad pos: -61.5,-46.5 parent: 2 type: Transform - - uid: 11642 + - uid: 11665 components: - rot: -1.5707963267948966 rad pos: -61.5,-45.5 parent: 2 type: Transform - - uid: 11643 + - uid: 11666 components: - rot: 3.141592653589793 rad pos: -78.5,-38.5 parent: 2 type: Transform - - uid: 11644 + - uid: 11667 components: - rot: 1.5707963267948966 rad pos: -15.5,15.5 parent: 2 type: Transform - - uid: 11645 + - uid: 11668 components: - rot: 3.141592653589793 rad pos: -77.5,-38.5 parent: 2 type: Transform - - uid: 11646 + - uid: 11669 components: - rot: 3.141592653589793 rad pos: -75.5,-38.5 parent: 2 type: Transform - - uid: 11647 + - uid: 11670 components: - rot: 3.141592653589793 rad pos: -52.5,-33.5 parent: 2 type: Transform - - uid: 11648 + - uid: 11671 components: - rot: -1.5707963267948966 rad pos: -43.5,-38.5 parent: 2 type: Transform - - uid: 11649 + - uid: 11672 components: - rot: -1.5707963267948966 rad pos: -43.5,-39.5 parent: 2 type: Transform - - uid: 11650 + - uid: 11673 components: - rot: -1.5707963267948966 rad pos: -43.5,-40.5 parent: 2 type: Transform - - uid: 11651 + - uid: 11674 components: - rot: 3.141592653589793 rad pos: 23.5,-32.5 parent: 2 type: Transform - - uid: 11652 + - uid: 11675 components: - rot: 3.141592653589793 rad pos: 26.5,-32.5 parent: 2 type: Transform + - uid: 11676 + components: + - pos: 12.5,25.5 + parent: 2 + type: Transform + - uid: 11677 + components: + - pos: 11.5,25.5 + parent: 2 + type: Transform + - uid: 11678 + components: + - pos: 10.5,25.5 + parent: 2 + type: Transform + - uid: 11679 + components: + - pos: 9.5,25.5 + parent: 2 + type: Transform + - uid: 11680 + components: + - pos: 8.5,25.5 + parent: 2 + type: Transform - proto: Cautery entities: - - uid: 11653 + - uid: 11681 components: - rot: -1.5707963267948966 rad pos: 0.5414771,-66.9678 parent: 2 type: Transform - - uid: 11654 + - uid: 11682 components: - pos: 73.52661,-47.78304 parent: 2 type: Transform - proto: Chair entities: - - uid: 11655 + - uid: 11683 components: - rot: -1.5707963267948966 rad pos: 18.5,-72.5 parent: 2 type: Transform - - uid: 11656 + - uid: 11684 components: - rot: -1.5707963267948966 rad pos: -51.5,-75.5 parent: 2 type: Transform - - uid: 11657 + - uid: 11685 components: - pos: 14.5,-72.5 parent: 2 type: Transform - - uid: 11658 + - uid: 11686 components: - rot: -1.5707963267948966 rad pos: -51.5,-79.5 parent: 2 type: Transform - - uid: 11659 + - uid: 11687 components: - rot: -1.5707963267948966 rad pos: -51.5,-78.5 parent: 2 type: Transform - - uid: 11660 + - uid: 11688 components: - rot: -1.5707963267948966 rad pos: -51.5,-77.5 parent: 2 type: Transform - - uid: 11661 + - uid: 11689 components: - rot: -1.5707963267948966 rad pos: -51.5,-74.5 parent: 2 type: Transform - - uid: 11662 + - uid: 11690 components: - rot: -1.5707963267948966 rad pos: -51.5,-73.5 parent: 2 type: Transform - - uid: 11663 + - uid: 11691 components: - pos: -23.5,-38.5 parent: 2 type: Transform - - uid: 11664 + - uid: 11692 components: - pos: 1.5,-52.5 parent: 2 type: Transform - - uid: 11665 + - uid: 11693 components: - rot: 3.141592653589793 rad pos: 27.5,-4.5 parent: 2 type: Transform - - uid: 11666 + - uid: 11694 components: - pos: -5.5,-45.5 parent: 2 type: Transform - - uid: 11667 + - uid: 11695 components: - pos: -2.5,-32.5 parent: 2 type: Transform - - uid: 11668 + - uid: 11696 components: - rot: 1.5707963267948966 rad pos: 17.5,-65.5 parent: 2 type: Transform - - uid: 11669 + - uid: 11697 components: - rot: 1.5707963267948966 rad pos: 17.5,-66.5 parent: 2 type: Transform - - uid: 11670 + - uid: 11698 components: - rot: 1.5707963267948966 rad pos: 18.5,-0.5 parent: 2 type: Transform - - uid: 11671 + - uid: 11699 components: - pos: -14.5,-52.5 parent: 2 type: Transform - - uid: 11672 + - uid: 11700 components: - pos: 2.5,-52.5 parent: 2 type: Transform - - uid: 11673 + - uid: 11701 components: - pos: -12.5,-52.5 parent: 2 type: Transform - - uid: 11674 + - uid: 11702 components: - pos: -11.5,-52.5 parent: 2 type: Transform - - uid: 11675 + - uid: 11703 components: - pos: 16.5,-67.5 parent: 2 type: Transform - - uid: 11676 + - uid: 11704 components: - rot: 1.5707963267948966 rad pos: 18.5,2.5 parent: 2 type: Transform - - uid: 11677 + - uid: 11705 components: - pos: 27.5,6.5 parent: 2 type: Transform - - uid: 11678 + - uid: 11706 components: - pos: 26.5,6.5 parent: 2 type: Transform - - uid: 11679 + - uid: 11707 components: - rot: 1.5707963267948966 rad pos: 7.5,13.5 parent: 2 type: Transform - - uid: 11680 + - uid: 11708 components: - rot: 1.5707963267948966 rad pos: 7.5,14.5 parent: 2 type: Transform - - uid: 11681 + - uid: 11709 components: - pos: -4.5,-45.5 parent: 2 type: Transform - - uid: 11682 + - uid: 11710 components: - pos: -3.5,-45.5 parent: 2 type: Transform - - uid: 11683 + - uid: 11711 components: - rot: 3.141592653589793 rad pos: 23.5,-4.5 parent: 2 type: Transform - - uid: 11684 + - uid: 11712 components: - rot: 3.141592653589793 rad pos: 26.5,-4.5 parent: 2 type: Transform - - uid: 11685 + - uid: 11713 components: - pos: 22.5,6.5 parent: 2 type: Transform - - uid: 11686 + - uid: 11714 components: - pos: 25.5,6.5 parent: 2 type: Transform - - uid: 11687 + - uid: 11715 components: - pos: 21.5,6.5 parent: 2 type: Transform - - uid: 11688 + - uid: 11716 components: - rot: 3.141592653589793 rad pos: -2.5,-34.5 parent: 2 type: Transform - - uid: 11689 + - uid: 11717 components: - pos: 15.5,-67.5 parent: 2 type: Transform - - uid: 11690 + - uid: 11718 components: - rot: 3.141592653589793 rad pos: 22.5,-4.5 parent: 2 type: Transform - - uid: 11691 + - uid: 11719 components: - rot: 3.141592653589793 rad pos: 21.5,-4.5 parent: 2 type: Transform - - uid: 11692 + - uid: 11720 components: - rot: -1.5707963267948966 rad pos: 65.5,-9.5 parent: 2 type: Transform - - uid: 11693 + - uid: 11721 components: - rot: -1.5707963267948966 rad pos: -7.5,-36.5 parent: 2 type: Transform - - uid: 11694 + - uid: 11722 components: - rot: -1.5707963267948966 rad pos: -7.5,-37.5 parent: 2 type: Transform - - uid: 11695 + - uid: 11723 components: - rot: -1.5707963267948966 rad pos: -7.5,-38.5 parent: 2 type: Transform - - uid: 11696 + - uid: 11724 components: - pos: 17.5,23.5 parent: 2 type: Transform - - uid: 11697 + - uid: 11725 components: - pos: 15.5,23.5 parent: 2 type: Transform - - uid: 11698 + - uid: 11726 components: - rot: 3.141592653589793 rad pos: 16.5,20.5 parent: 2 type: Transform - - uid: 11699 + - uid: 11727 components: - pos: 35.5,19.5 parent: 2 type: Transform - - uid: 11700 + - uid: 11728 components: - rot: 3.141592653589793 rad pos: 35.5,17.5 parent: 2 type: Transform - - uid: 11701 + - uid: 11729 components: - rot: -1.5707963267948966 rad pos: 18.5,29.5 parent: 2 type: Transform - - uid: 11702 + - uid: 11730 components: - rot: -1.5707963267948966 rad pos: 18.5,28.5 parent: 2 type: Transform - - uid: 11703 + - uid: 11731 components: - pos: 48.5,19.5 parent: 2 type: Transform - - uid: 11704 + - uid: 11732 components: - pos: 52.5,8.5 parent: 2 type: Transform - - uid: 11705 + - uid: 11733 components: - rot: 3.141592653589793 rad pos: 52.5,5.5 parent: 2 type: Transform - - uid: 11706 + - uid: 11734 components: - pos: 51.5,8.5 parent: 2 type: Transform - - uid: 11707 + - uid: 11735 components: - rot: 3.141592653589793 rad pos: 51.5,5.5 parent: 2 type: Transform - - uid: 11708 + - uid: 11736 components: - pos: 58.5,21.5 parent: 2 type: Transform - - uid: 11709 + - uid: 11737 components: - pos: 57.5,21.5 parent: 2 type: Transform - - uid: 11710 + - uid: 11738 components: - rot: 3.141592653589793 rad pos: 58.5,18.5 parent: 2 type: Transform - - uid: 11711 + - uid: 11739 components: - rot: 3.141592653589793 rad pos: 57.5,18.5 parent: 2 type: Transform - - uid: 11712 + - uid: 11740 components: - rot: 1.5707963267948966 rad pos: 42.5,-3.5 parent: 2 type: Transform - - uid: 11713 + - uid: 11741 components: - pos: 59.5,-10.5 parent: 2 type: Transform - - uid: 11714 + - uid: 11742 components: - pos: 58.5,-10.5 parent: 2 type: Transform - - uid: 11715 + - uid: 11743 components: - pos: 57.5,-10.5 parent: 2 type: Transform - - uid: 11716 + - uid: 11744 components: - pos: 56.5,-10.5 parent: 2 type: Transform - - uid: 11717 + - uid: 11745 components: - pos: 55.5,-10.5 parent: 2 type: Transform - - uid: 11718 + - uid: 11746 components: - rot: 3.141592653589793 rad pos: 55.5,-6.5 parent: 2 type: Transform - - uid: 11719 + - uid: 11747 components: - rot: 3.141592653589793 rad pos: 56.5,-6.5 parent: 2 type: Transform - - uid: 11720 + - uid: 11748 components: - rot: 3.141592653589793 rad pos: 57.5,-6.5 parent: 2 type: Transform - - uid: 11721 + - uid: 11749 components: - rot: 3.141592653589793 rad pos: 58.5,-6.5 parent: 2 type: Transform - - uid: 11722 + - uid: 11750 components: - rot: 3.141592653589793 rad pos: 59.5,-6.5 parent: 2 type: Transform - - uid: 11723 + - uid: 11751 components: - pos: 55.5,-14.5 parent: 2 type: Transform - - uid: 11724 + - uid: 11752 components: - pos: 56.5,-14.5 parent: 2 type: Transform - - uid: 11725 + - uid: 11753 components: - pos: 59.5,-14.5 parent: 2 type: Transform - - uid: 11726 + - uid: 11754 components: - pos: 58.5,-14.5 parent: 2 type: Transform - - uid: 11727 + - uid: 11755 components: - pos: 61.5,-10.5 parent: 2 type: Transform - - uid: 11728 + - uid: 11756 components: - pos: 60.5,-10.5 parent: 2 type: Transform - - uid: 11729 + - uid: 11757 components: - pos: 44.5,-48.5 parent: 2 type: Transform - - uid: 11730 + - uid: 11758 components: - pos: 46.5,-48.5 parent: 2 type: Transform - - uid: 11731 + - uid: 11759 components: - rot: 3.141592653589793 rad pos: 28.5,-55.5 parent: 2 type: Transform - - uid: 11732 + - uid: 11760 components: - rot: 3.141592653589793 rad pos: 29.5,-55.5 parent: 2 type: Transform - - uid: 11733 + - uid: 11761 components: - rot: 3.141592653589793 rad pos: 30.5,-55.5 parent: 2 type: Transform - - uid: 11734 + - uid: 11762 components: - rot: 3.141592653589793 rad pos: 30.5,-54.5 parent: 2 type: Transform - - uid: 11735 + - uid: 11763 components: - rot: 3.141592653589793 rad pos: 29.5,-54.5 parent: 2 type: Transform - - uid: 11736 + - uid: 11764 components: - rot: 3.141592653589793 rad pos: 28.5,-54.5 parent: 2 type: Transform - - uid: 11737 + - uid: 11765 components: - rot: 3.141592653589793 rad pos: 32.5,-54.5 parent: 2 type: Transform - - uid: 11738 + - uid: 11766 components: - rot: 3.141592653589793 rad pos: 33.5,-54.5 parent: 2 type: Transform - - uid: 11739 + - uid: 11767 components: - rot: 3.141592653589793 rad pos: 34.5,-54.5 parent: 2 type: Transform - - uid: 11740 + - uid: 11768 components: - rot: 3.141592653589793 rad pos: 34.5,-55.5 parent: 2 type: Transform - - uid: 11741 + - uid: 11769 components: - rot: 3.141592653589793 rad pos: 33.5,-55.5 parent: 2 type: Transform - - uid: 11742 + - uid: 11770 components: - rot: 3.141592653589793 rad pos: 32.5,-55.5 parent: 2 type: Transform - - uid: 11743 + - uid: 11771 components: - rot: 3.141592653589793 rad pos: 32.5,-53.5 parent: 2 type: Transform - - uid: 11744 + - uid: 11772 components: - rot: 3.141592653589793 rad pos: 33.5,-53.5 parent: 2 type: Transform - - uid: 11745 + - uid: 11773 components: - rot: 3.141592653589793 rad pos: 34.5,-53.5 parent: 2 type: Transform - - uid: 11746 + - uid: 11774 components: - rot: 3.141592653589793 rad pos: 30.5,-53.5 parent: 2 type: Transform - - uid: 11747 + - uid: 11775 components: - rot: 3.141592653589793 rad pos: 29.5,-53.5 parent: 2 type: Transform - - uid: 11748 + - uid: 11776 components: - rot: 3.141592653589793 rad pos: 28.5,-53.5 parent: 2 type: Transform - - uid: 11749 + - uid: 11777 components: - pos: 33.5,-48.5 parent: 2 type: Transform - - uid: 11750 + - uid: 11778 components: - rot: 1.5707963267948966 rad pos: 29.5,-48.5 parent: 2 type: Transform - - uid: 11751 + - uid: 11779 components: - rot: -1.5707963267948966 rad pos: -22.5,-9.5 parent: 2 type: Transform - - uid: 11752 + - uid: 11780 components: - rot: -1.5707963267948966 rad pos: -22.5,-10.5 parent: 2 type: Transform - - uid: 11753 + - uid: 11781 components: - rot: -1.5707963267948966 rad pos: -22.5,-13.5 parent: 2 type: Transform - - uid: 11754 + - uid: 11782 components: - rot: -1.5707963267948966 rad pos: -22.5,-14.5 parent: 2 type: Transform - - uid: 11755 + - uid: 11783 components: - rot: 3.141592653589793 rad pos: -48.5,10.5 parent: 2 type: Transform - - uid: 11756 + - uid: 11784 components: - pos: 44.5,-70.5 parent: 2 type: Transform - - uid: 11757 + - uid: 11785 components: - pos: 43.5,-70.5 parent: 2 type: Transform - - uid: 11758 + - uid: 11786 components: - pos: 42.5,-70.5 parent: 2 type: Transform - - uid: 11759 + - uid: 11787 components: - pos: 41.5,-70.5 parent: 2 type: Transform - - uid: 11760 + - uid: 11788 components: - pos: 37.5,-70.5 parent: 2 type: Transform - - uid: 11761 + - uid: 11789 components: - pos: 36.5,-70.5 parent: 2 type: Transform - - uid: 11762 + - uid: 11790 components: - pos: 35.5,-70.5 parent: 2 type: Transform - - uid: 11763 + - uid: 11791 components: - pos: 34.5,-70.5 parent: 2 type: Transform - - uid: 11764 + - uid: 11792 components: - rot: 3.141592653589793 rad pos: -49.5,10.5 parent: 2 type: Transform - - uid: 11765 + - uid: 11793 components: - rot: 3.141592653589793 rad pos: 23.5,16.5 parent: 2 type: Transform - - uid: 11766 + - uid: 11794 components: - rot: 1.5707963267948966 rad pos: -56.5,-75.5 parent: 2 type: Transform - - uid: 11767 + - uid: 11795 components: - rot: 1.5707963267948966 rad pos: -56.5,-76.5 parent: 2 type: Transform - - uid: 11768 + - uid: 11796 components: - rot: 1.5707963267948966 rad pos: -56.5,-77.5 parent: 2 type: Transform - - uid: 11769 + - uid: 11797 components: - rot: 3.141592653589793 rad pos: -53.5,-82.5 parent: 2 type: Transform - - uid: 11770 + - uid: 11798 components: - rot: 3.141592653589793 rad pos: -55.5,-82.5 parent: 2 type: Transform - - uid: 11771 + - uid: 11799 components: - pos: -53.5,-70.5 parent: 2 type: Transform - - uid: 11772 + - uid: 11800 components: - pos: -54.5,-70.5 parent: 2 type: Transform - - uid: 11773 + - uid: 11801 components: - pos: -55.5,-70.5 parent: 2 type: Transform - - uid: 11774 + - uid: 11802 components: - rot: -1.5707963267948966 rad pos: -36.5,-81.5 parent: 2 type: Transform - - uid: 11775 + - uid: 11803 components: - rot: -1.5707963267948966 rad pos: -36.5,-82.5 parent: 2 type: Transform - - uid: 11776 + - uid: 11804 components: - rot: -1.5707963267948966 rad pos: -36.5,-83.5 parent: 2 type: Transform - - uid: 11777 + - uid: 11805 components: - rot: 1.5707963267948966 rad pos: -47.5,-81.5 parent: 2 type: Transform - - uid: 11778 + - uid: 11806 components: - rot: 1.5707963267948966 rad pos: -47.5,-82.5 parent: 2 type: Transform - - uid: 11779 + - uid: 11807 components: - rot: 1.5707963267948966 rad pos: -47.5,-83.5 parent: 2 type: Transform - - uid: 11780 + - uid: 11808 components: - pos: -54.5,-58.5 parent: 2 type: Transform - - uid: 11781 + - uid: 11809 components: - rot: 1.5707963267948966 rad pos: 69.5,-56.5 parent: 2 type: Transform - - uid: 11782 + - uid: 11810 components: - rot: 3.141592653589793 rad pos: 34.5,-36.5 parent: 2 type: Transform - - uid: 11783 + - uid: 11811 components: - pos: 70.5,-55.5 parent: 2 type: Transform - - uid: 11784 + - uid: 11812 components: - rot: -1.5707963267948966 rad pos: -57.5,-51.5 parent: 2 type: Transform - - uid: 11785 + - uid: 11813 components: - rot: -1.5707963267948966 rad pos: -57.5,-52.5 parent: 2 type: Transform - - uid: 11786 + - uid: 11814 components: - rot: -1.5707963267948966 rad pos: -22.5,24.5 parent: 2 type: Transform - - uid: 11787 + - uid: 11815 components: - rot: -1.5707963267948966 rad pos: -22.5,23.5 parent: 2 type: Transform - - uid: 11788 + - uid: 11816 components: - rot: -1.5707963267948966 rad pos: -22.5,22.5 parent: 2 type: Transform - - uid: 11789 + - uid: 11817 components: - rot: -1.5707963267948966 rad pos: -22.5,19.5 parent: 2 type: Transform - - uid: 11790 + - uid: 11818 components: - rot: -1.5707963267948966 rad pos: -22.5,18.5 parent: 2 type: Transform - - uid: 11791 + - uid: 11819 components: - rot: 3.141592653589793 rad pos: -0.5,34.5 parent: 2 type: Transform - - uid: 11792 + - uid: 11820 components: - rot: 3.141592653589793 rad pos: -1.5,34.5 parent: 2 type: Transform - - uid: 11793 + - uid: 11821 components: - rot: 3.141592653589793 rad pos: -2.5,34.5 parent: 2 type: Transform - - uid: 11794 + - uid: 11822 components: - pos: 4.5,-52.5 parent: 2 type: Transform - - uid: 11795 + - uid: 11823 components: - rot: -1.5707963267948966 rad pos: 65.5,-7.5 parent: 2 type: Transform - - uid: 11796 + - uid: 11824 components: - rot: 3.141592653589793 rad pos: 61.5,-6.5 parent: 2 type: Transform - - uid: 11797 + - uid: 11825 components: - rot: 3.141592653589793 rad pos: 60.5,-6.5 parent: 2 type: Transform - - uid: 11798 + - uid: 11826 components: - pos: 31.5,-60.5 parent: 2 type: Transform - - uid: 11799 + - uid: 11827 components: - rot: 3.141592653589793 rad pos: 30.5,-62.5 parent: 2 type: Transform - - uid: 11800 + - uid: 11828 components: - pos: 30.5,-60.5 parent: 2 type: Transform - - uid: 11801 + - uid: 11829 components: - rot: -1.5707963267948966 rad pos: 65.5,-8.5 parent: 2 type: Transform - - uid: 11802 + - uid: 11830 components: - rot: 3.141592653589793 rad pos: -50.5,10.5 parent: 2 type: Transform - - uid: 11803 + - uid: 11831 components: - rot: 3.141592653589793 rad pos: 25.5,-4.5 parent: 2 type: Transform - - uid: 11804 + - uid: 11832 components: - pos: 71.5,-55.5 parent: 2 type: Transform - - uid: 11805 + - uid: 11833 components: - pos: 23.5,6.5 parent: 2 type: Transform - - uid: 11806 + - uid: 11834 components: - rot: 3.141592653589793 rad pos: -5.5,-16.5 parent: 2 type: Transform - - uid: 11807 + - uid: 11835 components: - rot: 3.141592653589793 rad pos: 30.5,-43.5 parent: 2 type: Transform - - uid: 11808 + - uid: 11836 components: - rot: 3.141592653589793 rad pos: 29.5,-43.5 parent: 2 type: Transform - - uid: 11809 + - uid: 11837 components: - rot: 3.141592653589793 rad pos: 28.5,-43.5 parent: 2 type: Transform - - uid: 11810 + - uid: 11838 components: - rot: 3.141592653589793 rad pos: 18.5,-43.5 parent: 2 type: Transform - - uid: 11811 + - uid: 11839 components: - rot: 3.141592653589793 rad pos: 17.5,-43.5 parent: 2 type: Transform - - uid: 11812 + - uid: 11840 components: - rot: 3.141592653589793 rad pos: 16.5,-43.5 parent: 2 type: Transform - - uid: 11813 + - uid: 11841 components: - rot: 3.141592653589793 rad pos: 44.5,-43.5 parent: 2 type: Transform - - uid: 11814 + - uid: 11842 components: - rot: 3.141592653589793 rad pos: 43.5,-43.5 parent: 2 type: Transform - - uid: 11815 + - uid: 11843 components: - rot: 3.141592653589793 rad pos: 42.5,-43.5 parent: 2 type: Transform - - uid: 11816 + - uid: 11844 components: - pos: 34.5,-34.5 parent: 2 type: Transform - - uid: 11817 + - uid: 11845 components: - pos: 3.5,-40.5 parent: 2 type: Transform - - uid: 11818 + - uid: 11846 components: - pos: -14.5,8.5 parent: 2 type: Transform - - uid: 11819 + - uid: 11847 components: - pos: -15.5,8.5 parent: 2 type: Transform - - uid: 11820 + - uid: 11848 components: - rot: 3.141592653589793 rad pos: -40.5,-0.5 parent: 2 type: Transform - - uid: 11821 + - uid: 11849 components: - rot: 3.141592653589793 rad pos: -39.5,-0.5 parent: 2 type: Transform - - uid: 11822 + - uid: 11850 components: - rot: 3.141592653589793 rad pos: -38.5,-0.5 parent: 2 type: Transform - - uid: 11823 + - uid: 11851 components: - rot: 3.141592653589793 rad pos: -36.5,-0.5 parent: 2 type: Transform - - uid: 11824 + - uid: 11852 components: - rot: 3.141592653589793 rad pos: -35.5,-0.5 parent: 2 type: Transform - - uid: 11825 + - uid: 11853 components: - rot: 3.141592653589793 rad pos: -34.5,-0.5 parent: 2 type: Transform - - uid: 11826 + - uid: 11854 components: - rot: -1.5707963267948966 rad pos: -17.5,-70.5 parent: 2 type: Transform - - uid: 11827 + - uid: 11855 components: - rot: -1.5707963267948966 rad pos: -17.5,-71.5 parent: 2 type: Transform - - uid: 11828 + - uid: 11856 components: - rot: 3.141592653589793 rad pos: 31.5,-62.5 parent: 2 type: Transform - - uid: 11829 + - uid: 11857 components: - rot: -1.5707963267948966 rad pos: -18.5,-34.5 parent: 2 type: Transform - - uid: 11830 + - uid: 11858 components: - rot: -1.5707963267948966 rad pos: -18.5,-33.5 parent: 2 type: Transform - - uid: 11831 + - uid: 11859 components: - rot: -1.5707963267948966 rad pos: -18.5,-32.5 parent: 2 type: Transform - - uid: 11832 + - uid: 11860 components: - rot: 1.5707963267948966 rad pos: -34.5,-67.5 parent: 2 type: Transform - - uid: 11833 + - uid: 11861 components: - rot: 3.141592653589793 rad pos: 22.5,16.5 parent: 2 type: Transform - - uid: 11834 + - uid: 11862 components: - rot: 3.141592653589793 rad pos: 21.5,16.5 parent: 2 type: Transform - - uid: 11835 + - uid: 11863 components: - rot: 3.141592653589793 rad pos: 32.5,-18.5 parent: 2 type: Transform - - uid: 11836 + - uid: 11864 components: - rot: 3.141592653589793 rad pos: 31.5,-18.5 parent: 2 type: Transform - - uid: 11837 + - uid: 11865 components: - rot: 3.141592653589793 rad pos: 30.5,-18.5 parent: 2 type: Transform - - uid: 11838 + - uid: 11866 components: - rot: 3.141592653589793 rad pos: 20.5,-18.5 parent: 2 type: Transform - - uid: 11839 + - uid: 11867 components: - rot: 3.141592653589793 rad pos: 19.5,-18.5 parent: 2 type: Transform - - uid: 11840 + - uid: 11868 components: - rot: 3.141592653589793 rad pos: 18.5,-18.5 parent: 2 type: Transform - - uid: 11841 + - uid: 11869 components: - rot: 1.5707963267948966 rad pos: 18.5,1.5 parent: 2 type: Transform - - uid: 11842 + - uid: 11870 components: - rot: 1.5707963267948966 rad pos: 18.5,0.5 parent: 2 type: Transform - - uid: 11843 + - uid: 11871 components: - rot: -1.5707963267948966 rad pos: 57.5,58.5 parent: 2 type: Transform - - uid: 11844 + - uid: 11872 components: - rot: -1.5707963267948966 rad pos: 57.5,57.5 parent: 2 type: Transform - - uid: 11845 + - uid: 11873 components: - rot: -1.5707963267948966 rad pos: 57.5,56.5 parent: 2 type: Transform - - uid: 11846 + - uid: 11874 components: - rot: 1.5707963267948966 rad pos: 51.5,58.5 parent: 2 type: Transform - - uid: 11847 + - uid: 11875 components: - rot: 1.5707963267948966 rad pos: 51.5,57.5 parent: 2 type: Transform - - uid: 11848 + - uid: 11876 components: - rot: 1.5707963267948966 rad pos: 51.5,56.5 parent: 2 type: Transform - - uid: 11849 + - uid: 11877 components: - rot: -1.5707963267948966 rad pos: 55.5,29.5 parent: 2 type: Transform - - uid: 11850 + - uid: 11878 components: - rot: -1.5707963267948966 rad pos: 55.5,28.5 parent: 2 type: Transform - - uid: 11851 + - uid: 11879 components: - rot: 1.5707963267948966 rad pos: 52.5,29.5 parent: 2 type: Transform - - uid: 11852 + - uid: 11880 components: - rot: 1.5707963267948966 rad pos: 52.5,28.5 parent: 2 type: Transform - - uid: 11853 + - uid: 11881 components: - pos: -18.5,67.5 parent: 2 type: Transform - - uid: 11854 + - uid: 11882 components: - pos: -16.5,67.5 parent: 2 type: Transform - - uid: 11855 + - uid: 11883 components: - pos: 6.5,34.5 parent: 2 type: Transform - - uid: 11856 + - uid: 11884 components: - pos: 10.5,34.5 parent: 2 type: Transform - - uid: 11857 + - uid: 11885 components: - pos: -1.5,43.5 parent: 2 type: Transform - - uid: 11858 + - uid: 11886 components: - pos: -3.5,43.5 parent: 2 type: Transform - - uid: 11859 + - uid: 11887 components: - pos: -16.5,63.5 parent: 2 type: Transform - - uid: 11860 + - uid: 11888 components: - pos: -17.5,63.5 parent: 2 type: Transform - - uid: 11861 + - uid: 11889 components: - pos: -18.5,63.5 parent: 2 type: Transform - - uid: 11862 + - uid: 11890 components: - rot: -1.5707963267948966 rad pos: -15.5,62.5 parent: 2 type: Transform - - uid: 11863 + - uid: 11891 components: - rot: -1.5707963267948966 rad pos: -15.5,61.5 parent: 2 type: Transform - - uid: 11864 + - uid: 11892 components: - rot: 1.5707963267948966 rad pos: -19.5,62.5 parent: 2 type: Transform - - uid: 11865 + - uid: 11893 components: - rot: 1.5707963267948966 rad pos: -19.5,61.5 parent: 2 type: Transform - - uid: 11866 + - uid: 11894 components: - rot: 3.141592653589793 rad pos: -18.5,60.5 parent: 2 type: Transform - - uid: 11867 + - uid: 11895 components: - rot: 3.141592653589793 rad pos: -17.5,60.5 parent: 2 type: Transform - - uid: 11868 + - uid: 11896 components: - rot: 3.141592653589793 rad pos: -16.5,60.5 parent: 2 type: Transform - - uid: 11869 + - uid: 11897 components: - rot: -1.5707963267948966 rad pos: -40.5,-90.5 parent: 2 type: Transform - - uid: 11870 + - uid: 11898 components: - rot: -1.5707963267948966 rad pos: -40.5,-89.5 parent: 2 type: Transform - - uid: 11871 + - uid: 11899 components: - rot: 1.5707963267948966 rad pos: -43.5,-89.5 parent: 2 type: Transform - - uid: 11872 + - uid: 11900 components: - rot: 1.5707963267948966 rad pos: -43.5,-90.5 parent: 2 type: Transform - - uid: 11873 + - uid: 11901 components: - pos: -42.5,-97.5 parent: 2 type: Transform - - uid: 11874 + - uid: 11902 components: - rot: -1.5707963267948966 rad pos: -4.5,-99.5 parent: 2 type: Transform - - uid: 11875 + - uid: 11903 components: - rot: 1.5707963267948966 rad pos: 62.5,-7.5 parent: 2 type: Transform - - uid: 11876 + - uid: 11904 components: - rot: 1.5707963267948966 rad pos: 62.5,-8.5 parent: 2 type: Transform - - uid: 11877 + - uid: 11905 components: - rot: 1.5707963267948966 rad pos: 62.5,-9.5 parent: 2 type: Transform - - uid: 11878 + - uid: 11906 components: - pos: 2.5,-40.5 parent: 2 type: Transform - - uid: 11879 + - uid: 11907 components: - pos: 60.5,-64.5 parent: 2 type: Transform - - uid: 11880 + - uid: 11908 components: - pos: 64.5,-66.5 parent: 2 type: Transform - - uid: 11881 + - uid: 11909 components: - pos: 64.5,-64.5 parent: 2 type: Transform - - uid: 11882 + - uid: 11910 components: - pos: 62.5,-66.5 parent: 2 type: Transform - - uid: 11883 + - uid: 11911 components: - pos: 63.5,-66.5 parent: 2 type: Transform - - uid: 11884 + - uid: 11912 components: - pos: 59.5,-66.5 parent: 2 type: Transform - - uid: 11885 + - uid: 11913 components: - pos: 58.5,-66.5 parent: 2 type: Transform - - uid: 11886 + - uid: 11914 components: - pos: 62.5,-62.5 parent: 2 type: Transform - - uid: 11887 + - uid: 11915 components: - pos: 63.5,-62.5 parent: 2 type: Transform - - uid: 11888 + - uid: 11916 components: - pos: 59.5,-62.5 parent: 2 type: Transform - - uid: 11889 + - uid: 11917 components: - pos: 58.5,-62.5 parent: 2 type: Transform - - uid: 11890 + - uid: 11918 components: - pos: 58.5,-64.5 parent: 2 type: Transform - - uid: 11891 + - uid: 11919 components: - pos: 59.5,-64.5 parent: 2 type: Transform - - uid: 11892 + - uid: 11920 components: - pos: 62.5,-64.5 parent: 2 type: Transform - - uid: 11893 + - uid: 11921 components: - pos: 63.5,-64.5 parent: 2 type: Transform - - uid: 11894 + - uid: 11922 components: - pos: 64.5,-62.5 parent: 2 type: Transform - - uid: 11895 + - uid: 11923 components: - pos: 60.5,-62.5 parent: 2 type: Transform - - uid: 11896 + - uid: 11924 components: - pos: 50.5,-32.5 parent: 2 type: Transform - - uid: 11897 + - uid: 11925 components: - pos: 60.5,-66.5 parent: 2 type: Transform - - uid: 11898 + - uid: 11926 components: - rot: 1.5707963267948966 rad pos: 69.5,-57.5 parent: 2 type: Transform - - uid: 11899 + - uid: 11927 components: - rot: -1.5707963267948966 rad pos: 56.5,-67.5 parent: 2 type: Transform - - uid: 11900 + - uid: 11928 components: - rot: 1.5707963267948966 rad pos: 54.5,-67.5 parent: 2 type: Transform - - uid: 11901 + - uid: 11929 components: - rot: 3.141592653589793 rad pos: 45.5,-43.5 parent: 2 type: Transform - - uid: 11902 + - uid: 11930 components: - pos: -5.5,-14.5 parent: 2 type: Transform - - uid: 11903 + - uid: 11931 components: - rot: 3.141592653589793 rad pos: 25.5,-69.5 parent: 2 type: Transform - - uid: 11904 + - uid: 11932 components: - rot: 3.141592653589793 rad pos: 26.5,-69.5 parent: 2 type: Transform - - uid: 11905 + - uid: 11933 components: - pos: 50.5,-71.5 parent: 2 type: Transform - - uid: 11906 + - uid: 11934 components: - rot: 3.141592653589793 rad pos: 50.5,-73.5 parent: 2 type: Transform - - uid: 11907 + - uid: 11935 components: - pos: -37.5,-45.5 parent: 2 type: Transform - - uid: 11908 + - uid: 11936 components: - pos: -36.5,-45.5 parent: 2 type: Transform - - uid: 11909 + - uid: 11937 components: - pos: -71.5,-54.5 parent: 2 type: Transform - - uid: 11910 + - uid: 11938 components: - pos: -72.5,-54.5 parent: 2 type: Transform - - uid: 11911 + - uid: 11939 components: - pos: -73.5,-54.5 parent: 2 type: Transform - - uid: 11912 + - uid: 11940 components: - rot: 3.141592653589793 rad pos: -73.5,-53.5 parent: 2 type: Transform - - uid: 11913 + - uid: 11941 components: - rot: 3.141592653589793 rad pos: -72.5,-53.5 parent: 2 type: Transform - - uid: 11914 + - uid: 11942 components: - rot: 3.141592653589793 rad pos: -71.5,-53.5 parent: 2 type: Transform - - uid: 11915 + - uid: 11943 components: - rot: 3.141592653589793 rad pos: -70.5,-53.5 parent: 2 type: Transform - - uid: 11916 + - uid: 11944 components: - pos: -70.5,-54.5 parent: 2 type: Transform - proto: ChairFolding entities: - - uid: 11917 + - uid: 11945 components: - rot: -1.5707963267948966 rad pos: 28.5,1.5 parent: 2 type: Transform - - uid: 11918 + - uid: 11946 components: - rot: -1.5707963267948966 rad pos: 28.5,3.5 parent: 2 type: Transform - - uid: 11919 + - uid: 11947 components: - rot: -1.5707963267948966 rad pos: 29.5,1.5 parent: 2 type: Transform - - uid: 11920 + - uid: 11948 components: - rot: -1.5707963267948966 rad pos: 29.5,2.5 parent: 2 type: Transform - - uid: 11921 + - uid: 11949 components: - rot: -1.5707963267948966 rad pos: 29.5,-0.5 parent: 2 type: Transform - - uid: 11922 + - uid: 11950 components: - rot: -1.5707963267948966 rad pos: 28.5,-0.5 parent: 2 type: Transform - - uid: 11923 + - uid: 11951 components: - rot: -1.5707963267948966 rad pos: 28.5,0.5 parent: 2 type: Transform - - uid: 11924 + - uid: 11952 components: - rot: -1.5707963267948966 rad pos: 29.5,0.5 parent: 2 type: Transform - - uid: 11925 + - uid: 11953 components: - rot: -1.5707963267948966 rad pos: 28.5,-1.5 parent: 2 type: Transform - - uid: 11926 + - uid: 11954 components: - rot: -1.5707963267948966 rad pos: 28.5,2.5 parent: 2 type: Transform - - uid: 11927 + - uid: 11955 components: - rot: -1.5707963267948966 rad pos: 18.5,26.5 parent: 2 type: Transform - - uid: 11928 + - uid: 11956 components: - rot: 1.5707963267948966 rad pos: -25.5,53.5 parent: 2 type: Transform - - uid: 11929 + - uid: 11957 components: - pos: -27.5,-28.5 parent: 2 type: Transform - - uid: 11930 + - uid: 11958 components: - pos: -34.5,-69.5 parent: 2 type: Transform - - uid: 11931 + - uid: 11959 components: - pos: -24.5,-95.5 parent: 2 type: Transform - - uid: 11932 + - uid: 11960 components: - pos: -25.5,-95.5 parent: 2 type: Transform - - uid: 11933 + - uid: 11961 components: - pos: -19.5,-95.5 parent: 2 type: Transform - - uid: 11934 + - uid: 11962 components: - pos: -29.5,-28.5 parent: 2 type: Transform - proto: ChairOfficeDark entities: - - uid: 11935 + - uid: 11963 components: - rot: 3.141592653589793 rad pos: 4.5,-4.5 parent: 2 type: Transform - - uid: 11936 + - uid: 11964 components: - rot: 1.5707963267948966 rad pos: -25.5,54.5 parent: 2 type: Transform - - uid: 11937 + - uid: 11965 components: - rot: -1.5707963267948966 rad pos: 38.5,-3.5 parent: 2 type: Transform - - uid: 11938 + - uid: 11966 components: - rot: -1.5707963267948966 rad pos: 38.5,-4.5 parent: 2 type: Transform - - uid: 11939 + - uid: 11967 components: - rot: -1.5707963267948966 rad pos: 71.5,-36.5 parent: 2 type: Transform - - uid: 11940 + - uid: 11968 components: - rot: 3.141592653589793 rad pos: 68.5,-44.5 parent: 2 type: Transform - - uid: 11941 + - uid: 11969 components: - rot: 1.5707963267948966 rad pos: -27.5,-12.5 parent: 2 type: Transform - - uid: 11942 + - uid: 11970 components: - rot: 3.141592653589793 rad pos: 50.5,-53.5 parent: 2 type: Transform - - uid: 11943 + - uid: 11971 components: - rot: 1.5707963267948966 rad pos: -22.5,-34.5 parent: 2 type: Transform - - uid: 11944 + - uid: 11972 components: - rot: 3.141592653589793 rad pos: 21.5,-45.5 parent: 2 type: Transform - - uid: 11945 + - uid: 11973 components: - rot: -1.5707963267948966 rad pos: -16.5,25.5 parent: 2 type: Transform - - uid: 11946 + - uid: 11974 components: - rot: -1.5707963267948966 rad pos: -27.5,22.5 parent: 2 type: Transform - - uid: 11947 + - uid: 11975 components: - pos: -32.5,30.5 parent: 2 type: Transform - - uid: 11948 + - uid: 11976 components: - rot: 1.5707963267948966 rad pos: 1.5,20.5 parent: 2 type: Transform - - uid: 11949 + - uid: 11977 components: - pos: -33.5,-69.5 parent: 2 type: Transform - - uid: 11950 + - uid: 11978 components: - rot: 1.5707963267948966 rad pos: 72.5,37.5 parent: 2 type: Transform - - uid: 11951 + - uid: 11979 components: - rot: -1.5707963267948966 rad pos: -4.5,-97.5 parent: 2 type: Transform - - uid: 11952 + - uid: 11980 components: - rot: 1.5707963267948966 rad pos: -13.5,-18.5 parent: 2 type: Transform - - uid: 11953 + - uid: 11981 components: - rot: 3.141592653589793 rad pos: 62.5,-31.5 parent: 2 type: Transform - - uid: 11954 + - uid: 11982 components: - rot: 3.141592653589793 rad pos: 73.5,-32.5 parent: 2 type: Transform - - uid: 11955 + - uid: 11983 components: - rot: -1.5707963267948966 rad pos: -16.5,-22.5 @@ -78025,655 +73589,661 @@ entities: type: Transform - proto: ChairOfficeLight entities: - - uid: 11956 + - uid: 11984 components: - rot: 3.141592653589793 rad pos: 27.5,-22.5 parent: 2 type: Transform - - uid: 11957 + - uid: 11985 components: - rot: 3.141592653589793 rad pos: 29.5,-22.5 parent: 2 type: Transform - - uid: 11958 + - uid: 11986 components: - rot: 3.141592653589793 rad pos: 23.5,-22.5 parent: 2 type: Transform - - uid: 11959 + - uid: 11987 components: - rot: 3.141592653589793 rad pos: 21.5,-22.5 parent: 2 type: Transform - - uid: 11960 + - uid: 11988 components: - pos: -23.5,-70.5 parent: 2 type: Transform - - uid: 11961 + - uid: 11989 components: - rot: 3.141592653589793 rad pos: -4.5,-49.5 parent: 2 type: Transform - - uid: 11962 + - uid: 11990 components: - rot: 3.141592653589793 rad pos: 25.5,-25.5 parent: 2 type: Transform - - uid: 11963 + - uid: 11991 components: - pos: -10.5,-36.5 parent: 2 type: Transform - - uid: 11964 + - uid: 11992 components: - rot: 3.141592653589793 rad pos: 17.5,20.5 parent: 2 type: Transform - - uid: 11965 + - uid: 11993 components: - rot: 3.141592653589793 rad pos: 53.5,12.5 parent: 2 type: Transform - - uid: 11966 + - uid: 11994 components: - rot: -1.5707963267948966 rad pos: 52.5,-41.5 parent: 2 type: Transform - - uid: 11967 + - uid: 11995 components: - pos: 42.5,-39.5 parent: 2 type: Transform - - uid: 11968 + - uid: 11996 components: - pos: -26.5,15.5 parent: 2 type: Transform - - uid: 11969 + - uid: 11997 components: - pos: -23.5,12.5 parent: 2 type: Transform - - uid: 11970 + - uid: 11998 components: - rot: 1.5707963267948966 rad pos: 47.5,6.5 parent: 2 type: Transform + - uid: 11999 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-49.5 + parent: 2 + type: Transform - proto: ChairPilotSeat entities: - - uid: 11971 + - uid: 12000 components: - rot: 3.141592653589793 rad pos: 25.5,-22.5 parent: 2 type: Transform - - uid: 11972 + - uid: 12001 components: - rot: 3.141592653589793 rad pos: 16.5,23.5 parent: 2 type: Transform - - uid: 11973 + - uid: 12002 components: - pos: 25.5,20.5 parent: 2 type: Transform - - uid: 11974 + - uid: 12003 components: - rot: 3.141592653589793 rad pos: 62.5,-54.5 parent: 2 type: Transform - - uid: 11975 + - uid: 12004 components: - rot: 3.141592653589793 rad pos: 31.5,-47.5 parent: 2 type: Transform - - uid: 11976 + - uid: 12005 components: - pos: 62.5,-0.5 parent: 2 type: Transform - - uid: 11977 + - uid: 12006 components: - pos: 59.5,-0.5 parent: 2 type: Transform - - uid: 11978 + - uid: 12007 components: - pos: 61.5,-0.5 parent: 2 type: Transform - - uid: 11979 + - uid: 12008 components: - pos: 60.5,-0.5 parent: 2 type: Transform - - uid: 11980 + - uid: 12009 components: - rot: -1.5707963267948966 rad pos: -54.5,-13.5 parent: 2 type: Transform - - uid: 11981 + - uid: 12010 components: - rot: -1.5707963267948966 rad pos: 31.5,-28.5 parent: 2 type: Transform - - uid: 11982 + - uid: 12011 components: - rot: 1.5707963267948966 rad pos: -52.5,-87.5 parent: 2 type: Transform - - uid: 11983 + - uid: 12012 components: - pos: 54.5,58.5 parent: 2 type: Transform - proto: ChairWood entities: - - uid: 11984 + - uid: 12013 components: - rot: 3.141592653589793 rad pos: 23.5,-36.5 parent: 2 type: Transform - - uid: 11985 + - uid: 12014 components: - rot: -1.5707963267948966 rad pos: 24.5,-35.5 parent: 2 type: Transform - - uid: 11986 + - uid: 12015 components: - pos: 9.5,-5.5 parent: 2 type: Transform - - uid: 11987 + - uid: 12016 components: - rot: 1.5707963267948966 rad pos: 8.5,-6.5 parent: 2 type: Transform - - uid: 11988 + - uid: 12017 components: - rot: 1.5707963267948966 rad pos: 8.5,-7.5 parent: 2 type: Transform - - uid: 11989 + - uid: 12018 components: - rot: -1.5707963267948966 rad pos: 3.5,1.5 parent: 2 type: Transform - - uid: 11990 + - uid: 12019 components: - rot: 1.5707963267948966 rad pos: 1.5,1.5 parent: 2 type: Transform - - uid: 11991 + - uid: 12020 components: - rot: -1.5707963267948966 rad pos: 11.5,-7.5 parent: 2 type: Transform - - uid: 11992 + - uid: 12021 components: - pos: 10.5,-5.5 parent: 2 type: Transform - - uid: 11993 + - uid: 12022 components: - rot: 3.141592653589793 rad pos: 10.5,-8.5 parent: 2 type: Transform - - uid: 11994 + - uid: 12023 components: - rot: 1.5707963267948966 rad pos: 10.5,7.5 parent: 2 type: Transform - - uid: 11995 + - uid: 12024 components: - rot: 3.141592653589793 rad pos: 9.5,-8.5 parent: 2 type: Transform - - uid: 11996 + - uid: 12025 components: - rot: -1.5707963267948966 rad pos: 11.5,-6.5 parent: 2 type: Transform - - uid: 11997 + - uid: 12026 components: - rot: 1.5707963267948966 rad pos: 1.5,0.5 parent: 2 type: Transform - - uid: 11998 + - uid: 12027 components: - rot: -1.5707963267948966 rad pos: 3.5,0.5 parent: 2 type: Transform - - uid: 11999 + - uid: 12028 components: - rot: -1.5707963267948966 rad pos: 12.5,8.5 parent: 2 type: Transform - - uid: 12000 + - uid: 12029 components: - rot: -1.5707963267948966 rad pos: 18.5,27.5 parent: 2 type: Transform - - uid: 12001 + - uid: 12030 components: - pos: -1.5,-16.5 parent: 2 type: Transform - - uid: 12002 + - uid: 12031 components: - pos: 11.5,12.5 parent: 2 type: Transform - - uid: 12003 + - uid: 12032 components: - pos: 12.5,12.5 parent: 2 type: Transform - - uid: 12004 + - uid: 12033 components: - rot: -1.5707963267948966 rad pos: 12.5,7.5 parent: 2 type: Transform - - uid: 12005 + - uid: 12034 components: - rot: 3.141592653589793 rad pos: 12.5,10.5 parent: 2 type: Transform - - uid: 12006 + - uid: 12035 components: - rot: 3.141592653589793 rad pos: 11.5,10.5 parent: 2 type: Transform - - uid: 12007 + - uid: 12036 components: - rot: 1.5707963267948966 rad pos: -9.5,1.5 parent: 2 type: Transform - - uid: 12008 + - uid: 12037 components: - rot: 1.5707963267948966 rad pos: -9.5,0.5 parent: 2 type: Transform - - uid: 12009 + - uid: 12038 components: - rot: 1.5707963267948966 rad pos: 10.5,8.5 parent: 2 type: Transform - - uid: 12010 + - uid: 12039 components: - rot: 1.5707963267948966 rad pos: 53.5,-26.5 parent: 2 type: Transform - - uid: 12011 + - uid: 12040 components: - rot: -1.5707963267948966 rad pos: -32.5,-67.5 parent: 2 type: Transform - - uid: 12012 + - uid: 12041 components: - rot: 3.141592653589793 rad pos: -36.5,9.5 parent: 2 type: Transform - - uid: 12013 + - uid: 12042 components: - rot: 3.141592653589793 rad pos: -35.5,9.5 parent: 2 type: Transform - - uid: 12014 + - uid: 12043 components: - rot: 3.141592653589793 rad pos: -36.5,10.5 parent: 2 type: Transform - - uid: 12015 + - uid: 12044 components: - rot: 3.141592653589793 rad pos: -35.5,10.5 parent: 2 type: Transform - - uid: 12016 + - uid: 12045 components: - rot: 3.141592653589793 rad pos: -35.5,11.5 parent: 2 type: Transform - - uid: 12017 + - uid: 12046 components: - rot: 3.141592653589793 rad pos: -36.5,11.5 parent: 2 type: Transform - - uid: 12018 + - uid: 12047 components: - rot: 3.141592653589793 rad pos: -36.5,12.5 parent: 2 type: Transform - - uid: 12019 + - uid: 12048 components: - rot: 3.141592653589793 rad pos: -35.5,12.5 parent: 2 type: Transform - - uid: 12020 + - uid: 12049 components: - rot: 3.141592653589793 rad pos: -39.5,12.5 parent: 2 type: Transform - - uid: 12021 + - uid: 12050 components: - rot: 3.141592653589793 rad pos: -40.5,11.5 parent: 2 type: Transform - - uid: 12022 + - uid: 12051 components: - rot: 3.141592653589793 rad pos: -39.5,11.5 parent: 2 type: Transform - - uid: 12023 + - uid: 12052 components: - rot: 3.141592653589793 rad pos: -40.5,10.5 parent: 2 type: Transform - - uid: 12024 + - uid: 12053 components: - rot: 3.141592653589793 rad pos: -39.5,10.5 parent: 2 type: Transform - - uid: 12025 + - uid: 12054 components: - rot: 3.141592653589793 rad pos: -40.5,9.5 parent: 2 type: Transform - - uid: 12026 + - uid: 12055 components: - rot: 3.141592653589793 rad pos: -39.5,9.5 parent: 2 type: Transform - - uid: 12027 + - uid: 12056 components: - rot: 3.141592653589793 rad pos: -40.5,12.5 parent: 2 type: Transform - - uid: 12028 + - uid: 12057 components: - rot: 3.141592653589793 rad pos: -3.5,51.5 parent: 2 type: Transform - - uid: 12029 + - uid: 12058 components: - pos: -3.5,53.5 parent: 2 type: Transform - - uid: 12030 + - uid: 12059 components: - pos: -17.5,43.5 parent: 2 type: Transform - - uid: 12031 + - uid: 12060 components: - pos: -16.5,43.5 parent: 2 type: Transform - - uid: 12032 + - uid: 12061 components: - rot: 3.141592653589793 rad pos: -17.5,40.5 parent: 2 type: Transform - - uid: 12033 + - uid: 12062 components: - rot: -1.5707963267948966 rad pos: -7.5,1.5 parent: 2 type: Transform - - uid: 12034 + - uid: 12063 components: - rot: -1.5707963267948966 rad pos: -7.5,0.5 parent: 2 type: Transform - - uid: 12035 + - uid: 12064 components: - rot: 1.5707963267948966 rad pos: -5.5,1.5 parent: 2 type: Transform - - uid: 12036 + - uid: 12065 components: - rot: 1.5707963267948966 rad pos: -5.5,0.5 parent: 2 type: Transform - - uid: 12037 + - uid: 12066 components: - rot: -1.5707963267948966 rad pos: -3.5,1.5 parent: 2 type: Transform - - uid: 12038 + - uid: 12067 components: - rot: -1.5707963267948966 rad pos: -3.5,0.5 parent: 2 type: Transform - - uid: 12039 + - uid: 12068 components: - rot: 3.141592653589793 rad pos: -16.5,40.5 parent: 2 type: Transform - - uid: 12040 + - uid: 12069 components: - rot: 1.5707963267948966 rad pos: -15.5,47.5 parent: 2 type: Transform - - uid: 12041 + - uid: 12070 components: - rot: -1.5707963267948966 rad pos: 46.5,-16.5 parent: 2 type: Transform - - uid: 12042 + - uid: 12071 components: - rot: -1.5707963267948966 rad pos: 9.5,32.5 parent: 2 type: Transform - - uid: 12043 + - uid: 12072 components: - rot: 1.5707963267948966 rad pos: 7.5,32.5 parent: 2 type: Transform - - uid: 12044 + - uid: 12073 components: - rot: 3.141592653589793 rad pos: -11.5,34.5 parent: 2 type: Transform - - uid: 12045 + - uid: 12074 components: - rot: -1.5707963267948966 rad pos: 41.5,43.5 parent: 2 type: Transform - - uid: 12046 + - uid: 12075 components: - rot: -1.5707963267948966 rad pos: 39.5,46.5 parent: 2 type: Transform - - uid: 12047 + - uid: 12076 components: - rot: -1.5707963267948966 rad pos: 39.5,45.5 parent: 2 type: Transform - - uid: 12048 + - uid: 12077 components: - rot: 1.5707963267948966 rad pos: 36.5,46.5 parent: 2 type: Transform - - uid: 12049 + - uid: 12078 components: - rot: 1.5707963267948966 rad pos: 36.5,45.5 parent: 2 type: Transform - - uid: 12050 + - uid: 12079 components: - rot: 3.141592653589793 rad pos: 42.5,47.5 parent: 2 type: Transform - - uid: 12051 + - uid: 12080 components: - rot: 3.141592653589793 rad pos: 43.5,47.5 parent: 2 type: Transform - - uid: 12052 + - uid: 12081 components: - rot: -1.5707963267948966 rad pos: 33.5,47.5 parent: 2 type: Transform - - uid: 12053 + - uid: 12082 components: - rot: -1.5707963267948966 rad pos: 33.5,46.5 parent: 2 type: Transform - - uid: 12054 + - uid: 12083 components: - rot: 1.5707963267948966 rad pos: 32.5,44.5 parent: 2 type: Transform - - uid: 12055 + - uid: 12084 components: - rot: -1.5707963267948966 rad pos: 34.5,44.5 parent: 2 type: Transform - - uid: 12056 + - uid: 12085 components: - rot: 1.5707963267948966 rad pos: 39.5,43.5 parent: 2 type: Transform - - uid: 12057 + - uid: 12086 components: - pos: -41.5,-97.5 parent: 2 type: Transform - - uid: 12058 + - uid: 12087 components: - rot: -1.5707963267948966 rad pos: 4.5,-35.5 parent: 2 type: Transform - - uid: 12059 + - uid: 12088 components: - rot: 1.5707963267948966 rad pos: 2.5,-35.5 parent: 2 type: Transform - - uid: 12060 + - uid: 12089 components: - pos: -23.5,30.5 parent: 2 type: Transform - - uid: 12061 + - uid: 12090 components: - rot: 1.5707963267948966 rad pos: 22.5,-35.5 parent: 2 type: Transform - - uid: 12062 + - uid: 12091 components: - pos: 23.5,-34.5 parent: 2 type: Transform - - uid: 12063 + - uid: 12092 components: - rot: -1.5707963267948966 rad pos: 23.5,-38.5 parent: 2 type: Transform - - uid: 12064 + - uid: 12093 components: - rot: -1.5707963267948966 rad pos: 23.5,-39.5 parent: 2 type: Transform - - uid: 12065 + - uid: 12094 components: - rot: -1.5707963267948966 rad pos: 29.5,-39.5 parent: 2 type: Transform - - uid: 12066 + - uid: 12095 components: - rot: 1.5707963267948966 rad pos: 27.5,-39.5 parent: 2 type: Transform - - uid: 12067 + - uid: 12096 components: - rot: -1.5707963267948966 rad pos: 4.5,-9.5 @@ -78681,98 +74251,98 @@ entities: type: Transform - proto: CheapLighter entities: - - uid: 12069 + - uid: 12098 components: - flags: InContainer type: MetaData - - parent: 12068 + - parent: 12097 type: Transform - canCollide: False type: Physics - - uid: 12070 + - uid: 12099 components: - pos: 1.9080955,23.554485 parent: 2 type: Transform - proto: CheapRollerBed entities: - - uid: 12071 + - uid: 12100 components: - pos: -9.460541,-47.24853 parent: 2 type: Transform - - uid: 12072 + - uid: 12101 components: - pos: -9.476166,-48.27978 parent: 2 type: Transform - proto: chem_master entities: - - uid: 12073 + - uid: 12102 components: - pos: 2.5,-45.5 parent: 2 type: Transform - - uid: 12074 + - uid: 12103 components: - pos: 2.5,-50.5 parent: 2 type: Transform - - uid: 12075 + - uid: 12104 components: - pos: 2.5,-47.5 parent: 2 type: Transform - proto: ChemDispenser entities: - - uid: 12076 + - uid: 12105 components: - pos: 4.5,-45.5 parent: 2 type: Transform - - uid: 12077 + - uid: 12106 components: - pos: 4.5,-47.5 parent: 2 type: Transform - - uid: 12078 + - uid: 12107 components: - pos: 2.5,-49.5 parent: 2 type: Transform - proto: ChemistryHotplate entities: - - uid: 12079 + - uid: 12108 components: - pos: 4.5,-50.5 parent: 2 type: Transform - proto: ChessBoard entities: - - uid: 12080 + - uid: 12109 components: - pos: 52.446415,7.1683345 parent: 2 type: Transform - - uid: 12081 + - uid: 12110 components: - rot: 3.141592653589793 rad pos: -5.5158696,-15.414865 parent: 2 type: Transform - - uid: 12082 + - uid: 12111 components: - rot: 1.5707963267948966 rad pos: 8.516274,32.607613 parent: 2 type: Transform - - uid: 12083 + - uid: 12112 components: - rot: 3.141592653589793 rad pos: -3.4812293,52.59116 parent: 2 type: Transform - - uid: 12084 + - uid: 12113 components: - rot: 3.141592653589793 rad pos: 50.48214,-72.40164 @@ -78780,7 +74350,7 @@ entities: type: Transform - proto: ChurchOrganInstrument entities: - - uid: 12085 + - uid: 12114 components: - rot: -1.5707963267948966 rad pos: -34.5,13.5 @@ -78788,51 +74358,51 @@ entities: type: Transform - proto: Cigar entities: - - uid: 12086 + - uid: 12115 components: - pos: 13.506795,-34.413578 parent: 2 type: Transform - - uid: 12087 + - uid: 12116 components: - pos: 13.55367,-32.429203 parent: 2 type: Transform - - uid: 12088 + - uid: 12117 components: - pos: 13.49117,-32.382328 parent: 2 type: Transform - - uid: 12089 + - uid: 12118 components: - pos: 13.444295,-34.351078 parent: 2 type: Transform - proto: CigarCase entities: - - uid: 12090 + - uid: 12119 components: - pos: -12.420865,-35.409706 parent: 2 type: Transform - - uid: 12091 + - uid: 12120 components: - pos: 15.66736,-87.50202 parent: 2 type: Transform - proto: Cigarette entities: - - uid: 12092 + - uid: 12121 components: - pos: 15.438844,-64.32231 parent: 2 type: Transform - - uid: 12093 + - uid: 12122 components: - pos: 63.44384,24.664883 parent: 2 type: Transform - - uid: 12094 + - uid: 12123 components: - rot: -1.5707963267948966 rad pos: 2.361197,23.616985 @@ -78840,48 +74410,48 @@ entities: type: Transform - proto: CigarGold entities: - - uid: 12095 + - uid: 12124 components: - rot: -1.5707963267948966 rad pos: 45.625916,-26.476032 parent: 2 type: Transform - - uid: 12096 + - uid: 12125 components: - pos: 65.5063,-0.5499393 parent: 2 type: Transform - proto: CigarGoldCase entities: - - uid: 12097 + - uid: 12126 components: - pos: 61.545517,-1.3427625 parent: 2 type: Transform - proto: CigPackBlack entities: - - uid: 12098 + - uid: 12127 components: - pos: 37.5,46.5 parent: 2 type: Transform - proto: CigPackBlue entities: - - uid: 12099 + - uid: 12128 components: - pos: 47.844124,50.55344 parent: 2 type: Transform - proto: CigPackMixedMedical entities: - - uid: 12100 + - uid: 12129 components: - pos: -16.642096,-35.41203 parent: 2 type: Transform - proto: CircuitImprinter entities: - - uid: 12101 + - uid: 12130 components: - pos: 44.5,-35.5 parent: 2 @@ -78893,14 +74463,14 @@ entities: type: MaterialStorage - proto: ClockworkShield entities: - - uid: 12102 + - uid: 12131 components: - pos: 57.48767,32.508053 parent: 2 type: Transform - proto: ClosetBombFilled entities: - - uid: 12103 + - uid: 12132 components: - pos: 26.5,31.5 parent: 2 @@ -78923,31 +74493,36 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12104 + - uid: 12133 components: - pos: 51.5,-49.5 parent: 2 type: Transform - - uid: 12105 + - uid: 12134 components: - pos: 67.5,-31.5 parent: 2 type: Transform + - uid: 12135 + components: + - pos: 12.5,23.5 + parent: 2 + type: Transform - proto: ClosetChefFilled entities: - - uid: 12106 + - uid: 12136 components: - pos: -5.5,14.5 parent: 2 type: Transform - proto: ClosetEmergencyFilledRandom entities: - - uid: 12107 + - uid: 12137 components: - pos: 69.5,-63.5 parent: 2 type: Transform - - uid: 12108 + - uid: 12138 components: - pos: -52.5,-80.5 parent: 2 @@ -78970,7 +74545,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12109 + - uid: 12139 components: - pos: -12.5,10.5 parent: 2 @@ -78993,7 +74568,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12110 + - uid: 12140 components: - pos: -18.5,-51.5 parent: 2 @@ -79016,7 +74591,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12111 + - uid: 12141 components: - pos: 21.5,-52.5 parent: 2 @@ -79039,7 +74614,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12112 + - uid: 12142 components: - pos: 24.5,-56.5 parent: 2 @@ -79062,7 +74637,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12113 + - uid: 12143 components: - pos: -5.5,-68.5 parent: 2 @@ -79085,7 +74660,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12114 + - uid: 12144 components: - pos: 38.5,-32.5 parent: 2 @@ -79108,7 +74683,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12115 + - uid: 12145 components: - pos: -25.5,52.5 parent: 2 @@ -79131,7 +74706,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12116 + - uid: 12146 components: - pos: 5.5,-69.5 parent: 2 @@ -79154,7 +74729,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12117 + - uid: 12147 components: - pos: 57.5,-14.5 parent: 2 @@ -79177,7 +74752,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12118 + - uid: 12148 components: - pos: 52.5,-50.5 parent: 2 @@ -79200,7 +74775,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12119 + - uid: 12149 components: - pos: -2.5,-11.5 parent: 2 @@ -79223,12 +74798,12 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12120 + - uid: 12150 components: - pos: 43.5,-74.5 parent: 2 type: Transform - - uid: 12121 + - uid: 12151 components: - pos: 11.5,-69.5 parent: 2 @@ -79251,12 +74826,12 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12122 + - uid: 12152 components: - pos: 27.5,-80.5 parent: 2 type: Transform - - uid: 12123 + - uid: 12153 components: - pos: -23.5,-31.5 parent: 2 @@ -79279,12 +74854,12 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12124 + - uid: 12154 components: - pos: 47.5,-92.5 parent: 2 type: Transform - - uid: 12125 + - uid: 12155 components: - pos: -54.5,-5.5 parent: 2 @@ -79307,12 +74882,12 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12126 + - uid: 12156 components: - pos: 31.5,-92.5 parent: 2 type: Transform - - uid: 12127 + - uid: 12157 components: - pos: -57.5,-32.5 parent: 2 @@ -79335,7 +74910,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12128 + - uid: 12158 components: - pos: 17.5,34.5 parent: 2 @@ -79358,7 +74933,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12129 + - uid: 12159 components: - pos: 63.5,-5.5 parent: 2 @@ -79381,7 +74956,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12130 + - uid: 12160 components: - pos: 18.5,-39.5 parent: 2 @@ -79404,7 +74979,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12131 + - uid: 12161 components: - pos: 3.5,-25.5 parent: 2 @@ -79427,7 +75002,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12132 + - uid: 12162 components: - pos: 47.5,-15.5 parent: 2 @@ -79450,7 +75025,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12133 + - uid: 12163 components: - pos: 16.5,-5.5 parent: 2 @@ -79473,7 +75048,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12134 + - uid: 12164 components: - pos: -31.5,-0.5 parent: 2 @@ -79496,7 +75071,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12135 + - uid: 12165 components: - pos: -17.5,38.5 parent: 2 @@ -79519,7 +75094,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12136 + - uid: 12166 components: - pos: -12.5,47.5 parent: 2 @@ -79542,7 +75117,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12137 + - uid: 12167 components: - pos: 50.5,40.5 parent: 2 @@ -79565,7 +75140,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12138 + - uid: 12168 components: - pos: 65.5,1.5 parent: 2 @@ -79588,17 +75163,17 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12139 + - uid: 12169 components: - pos: -15.5,67.5 parent: 2 type: Transform - - uid: 12140 + - uid: 12170 components: - pos: -19.5,67.5 parent: 2 type: Transform - - uid: 12141 + - uid: 12171 components: - pos: -12.5,49.5 parent: 2 @@ -79621,7 +75196,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12142 + - uid: 12172 components: - pos: -26.5,28.5 parent: 2 @@ -79644,7 +75219,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12143 + - uid: 12173 components: - pos: -36.5,-93.5 parent: 2 @@ -79667,7 +75242,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12144 + - uid: 12174 components: - pos: 9.5,-36.5 parent: 2 @@ -79690,7 +75265,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12145 + - uid: 12175 components: - pos: 74.5,-51.5 parent: 2 @@ -79713,7 +75288,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12146 + - uid: 12176 components: - pos: 42.5,-62.5 parent: 2 @@ -79736,7 +75311,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12147 + - uid: 12177 components: - pos: -10.5,-8.5 parent: 2 @@ -79759,7 +75334,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12148 + - uid: 12178 components: - pos: 41.5,-27.5 parent: 2 @@ -79782,29 +75357,29 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12149 + - uid: 12179 components: - pos: 20.5,-21.5 parent: 2 type: Transform - - uid: 12150 + - uid: 12180 components: - pos: -47.5,41.5 parent: 2 type: Transform - - uid: 12151 + - uid: 12181 components: - pos: -10.5,-30.5 parent: 2 type: Transform - - uid: 12152 + - uid: 12182 components: - pos: -23.5,-6.5 parent: 2 type: Transform - proto: ClosetFireFilled entities: - - uid: 12153 + - uid: 12183 components: - pos: -11.5,-45.5 parent: 2 @@ -79827,7 +75402,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12154 + - uid: 12184 components: - pos: -11.5,-73.5 parent: 2 @@ -79850,7 +75425,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12155 + - uid: 12185 components: - pos: 22.5,-52.5 parent: 2 @@ -79873,7 +75448,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12156 + - uid: 12186 components: - pos: 24.5,-55.5 parent: 2 @@ -79896,7 +75471,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12157 + - uid: 12187 components: - pos: -25.5,51.5 parent: 2 @@ -79919,7 +75494,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12158 + - uid: 12188 components: - pos: -12.5,-30.5 parent: 2 @@ -79942,7 +75517,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12159 + - uid: 12189 components: - pos: -2.5,-12.5 parent: 2 @@ -79965,7 +75540,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12160 + - uid: 12190 components: - pos: -52.5,-72.5 parent: 2 @@ -79988,7 +75563,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12161 + - uid: 12191 components: - pos: -23.5,-41.5 parent: 2 @@ -80011,7 +75586,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12162 + - uid: 12192 components: - pos: 22.5,-8.5 parent: 2 @@ -80034,7 +75609,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12163 + - uid: 12193 components: - pos: 62.5,-5.5 parent: 2 @@ -80057,7 +75632,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12164 + - uid: 12194 components: - pos: 19.5,-39.5 parent: 2 @@ -80080,7 +75655,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12165 + - uid: 12195 components: - pos: 16.5,-6.5 parent: 2 @@ -80103,7 +75678,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12166 + - uid: 12196 components: - pos: -32.5,-0.5 parent: 2 @@ -80126,7 +75701,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12167 + - uid: 12197 components: - pos: 2.5,-25.5 parent: 2 @@ -80149,7 +75724,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12168 + - uid: 12198 components: - pos: -11.5,47.5 parent: 2 @@ -80172,7 +75747,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12169 + - uid: 12199 components: - pos: 49.5,40.5 parent: 2 @@ -80195,7 +75770,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12170 + - uid: 12200 components: - pos: -43.5,37.5 parent: 2 @@ -80218,7 +75793,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12171 + - uid: 12201 components: - pos: -31.5,-41.5 parent: 2 @@ -80241,7 +75816,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12172 + - uid: 12202 components: - pos: -27.5,28.5 parent: 2 @@ -80264,7 +75839,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12173 + - uid: 12203 components: - pos: -35.5,-93.5 parent: 2 @@ -80287,7 +75862,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12174 + - uid: 12204 components: - pos: 9.5,-37.5 parent: 2 @@ -80310,7 +75885,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12175 + - uid: 12205 components: - pos: 74.5,-52.5 parent: 2 @@ -80333,7 +75908,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12176 + - uid: 12206 components: - pos: 64.5,-31.5 parent: 2 @@ -80356,7 +75931,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12177 + - uid: 12207 components: - pos: 35.5,-74.5 parent: 2 @@ -80379,39 +75954,39 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12178 + - uid: 12208 components: - pos: 29.5,-92.5 parent: 2 type: Transform - - uid: 12179 + - uid: 12209 components: - pos: 49.5,-92.5 parent: 2 type: Transform - - uid: 12180 + - uid: 12210 components: - pos: 28.5,-80.5 parent: 2 type: Transform - - uid: 12181 + - uid: 12211 components: - pos: -24.5,-6.5 parent: 2 type: Transform - - uid: 12182 + - uid: 12212 components: - pos: -74.5,-32.5 parent: 2 type: Transform - - uid: 12183 + - uid: 12213 components: - pos: -57.5,-56.5 parent: 2 type: Transform - proto: ClosetJanitorFilled entities: - - uid: 12184 + - uid: 12214 components: - pos: -10.5,-18.5 parent: 2 @@ -80436,7 +76011,7 @@ entities: type: EntityStorage - proto: ClosetL3JanitorFilled entities: - - uid: 12185 + - uid: 12215 components: - pos: -10.5,-17.5 parent: 2 @@ -80461,7 +76036,7 @@ entities: type: EntityStorage - proto: ClosetL3VirologyFilled entities: - - uid: 12186 + - uid: 12216 components: - pos: -18.5,-63.5 parent: 2 @@ -80484,7 +76059,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12187 + - uid: 12217 components: - pos: -22.5,-79.5 parent: 2 @@ -80509,7 +76084,7 @@ entities: type: EntityStorage - proto: ClosetMaintenance entities: - - uid: 12188 + - uid: 12218 components: - pos: -22.5,-38.5 parent: 2 @@ -80532,7 +76107,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12189 + - uid: 12219 components: - pos: -44.5,-31.5 parent: 2 @@ -80555,7 +76130,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12190 + - uid: 12220 components: - pos: -41.5,-30.5 parent: 2 @@ -80578,7 +76153,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12191 + - uid: 12221 components: - pos: 14.5,39.5 parent: 2 @@ -80601,7 +76176,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12192 + - uid: 12222 components: - pos: -19.5,56.5 parent: 2 @@ -80626,12 +76201,12 @@ entities: type: EntityStorage - proto: ClosetMaintenanceFilledRandom entities: - - uid: 12193 + - uid: 12223 components: - pos: -42.5,-32.5 parent: 2 type: Transform - - uid: 12194 + - uid: 12224 components: - pos: 12.5,-51.5 parent: 2 @@ -80654,7 +76229,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12195 + - uid: 12225 components: - pos: -5.5,-73.5 parent: 2 @@ -80677,7 +76252,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12196 + - uid: 12226 components: - pos: -19.5,58.5 parent: 2 @@ -80700,7 +76275,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12197 + - uid: 12227 components: - pos: 16.5,-72.5 parent: 2 @@ -80723,7 +76298,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12198 + - uid: 12228 components: - pos: -15.5,-12.5 parent: 2 @@ -80746,7 +76321,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12199 + - uid: 12229 components: - pos: -37.5,-67.5 parent: 2 @@ -80769,7 +76344,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12200 + - uid: 12230 components: - pos: -29.5,-57.5 parent: 2 @@ -80792,7 +76367,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12201 + - uid: 12231 components: - pos: -29.5,-39.5 parent: 2 @@ -80815,7 +76390,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12202 + - uid: 12232 components: - pos: -28.5,-67.5 parent: 2 @@ -80838,7 +76413,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12203 + - uid: 12233 components: - pos: -56.5,-32.5 parent: 2 @@ -80861,7 +76436,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12204 + - uid: 12234 components: - pos: 36.5,-12.5 parent: 2 @@ -80884,7 +76459,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12205 + - uid: 12235 components: - pos: -22.5,-28.5 parent: 2 @@ -80907,30 +76482,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12206 - components: - - pos: 11.5,25.5 - parent: 2 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 12207 + - uid: 12236 components: - pos: 0.5,34.5 parent: 2 @@ -80953,7 +76505,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12208 + - uid: 12237 components: - pos: 55.5,-3.5 parent: 2 @@ -80976,7 +76528,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12209 + - uid: 12238 components: - pos: -27.5,-67.5 parent: 2 @@ -80999,7 +76551,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12210 + - uid: 12239 components: - pos: 39.5,-15.5 parent: 2 @@ -81022,7 +76574,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12211 + - uid: 12240 components: - pos: 58.5,29.5 parent: 2 @@ -81045,7 +76597,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12212 + - uid: 12241 components: - pos: -31.5,38.5 parent: 2 @@ -81068,7 +76620,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12213 + - uid: 12242 components: - pos: -12.5,29.5 parent: 2 @@ -81091,7 +76643,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12214 + - uid: 12243 components: - pos: -43.5,-94.5 parent: 2 @@ -81114,7 +76666,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12215 + - uid: 12244 components: - pos: 48.5,-35.5 parent: 2 @@ -81137,7 +76689,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12216 + - uid: 12245 components: - pos: 72.5,-55.5 parent: 2 @@ -81160,7 +76712,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12217 + - uid: 12246 components: - pos: -9.5,-8.5 parent: 2 @@ -81183,14 +76735,19 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12218 + - uid: 12247 components: - pos: 7.5,-78.5 parent: 2 type: Transform + - uid: 12248 + components: + - pos: 8.5,26.5 + parent: 2 + type: Transform - proto: ClosetRadiationSuitFilled entities: - - uid: 12219 + - uid: 12249 components: - pos: -59.5,-23.5 parent: 2 @@ -81213,7 +76770,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12220 + - uid: 12250 components: - pos: -60.5,-23.5 parent: 2 @@ -81236,7 +76793,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12221 + - uid: 12251 components: - pos: 70.5,-35.5 parent: 2 @@ -81261,7 +76818,7 @@ entities: type: EntityStorage - proto: ClosetToolFilled entities: - - uid: 12222 + - uid: 12252 components: - pos: -26.5,-21.5 parent: 2 @@ -81284,7 +76841,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12223 + - uid: 12253 components: - pos: -22.5,-31.5 parent: 2 @@ -81294,14 +76851,14 @@ entities: type: EntityStorage - proto: ClosetWall entities: - - uid: 12224 + - uid: 12254 components: - pos: 45.5,-32.5 parent: 2 type: Transform - proto: ClosetWallMaintenanceFilledRandom entities: - - uid: 12225 + - uid: 12255 components: - pos: 53.5,-33.5 parent: 2 @@ -81324,12 +76881,12 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12226 + - uid: 12256 components: - pos: 47.5,-64.5 parent: 2 type: Transform - - uid: 12227 + - uid: 12257 components: - pos: -52.5,-26.5 parent: 2 @@ -81352,28 +76909,28 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12228 + - uid: 12258 components: - pos: 2.5,-12.5 parent: 2 type: Transform - proto: ClothingBackpack entities: - - uid: 12229 + - uid: 12259 components: - pos: -56.640278,-27.45032 parent: 2 type: Transform - proto: ClothingBackpackDuffelCaptain entities: - - uid: 12230 + - uid: 12260 components: - pos: 30.440884,-27.760664 parent: 2 type: Transform - proto: ClothingBackpackDuffelClown entities: - - uid: 12231 + - uid: 12261 components: - pos: 53.512966,60.63899 parent: 2 @@ -81385,45 +76942,45 @@ entities: showEnts: False occludes: True ents: - - 12232 - - 12234 - - 12233 - - 12235 - - 12236 + - 12262 + - 12264 + - 12263 + - 12265 + - 12266 type: ContainerContainer - type: ItemCooldown - proto: ClothingBackpackDuffelMedical entities: - - uid: 12237 + - uid: 12267 components: - pos: -2.4848266,-48.830677 parent: 2 type: Transform - - uid: 12238 + - uid: 12268 components: - pos: -16.552103,-49.311478 parent: 2 type: Transform - proto: ClothingBackpackDuffelSecurity entities: - - uid: 12239 + - uid: 12269 components: - pos: 5.4199524,15.682768 parent: 2 type: Transform - proto: ClothingBackpackDuffelSurgeryFilled entities: - - uid: 12240 + - uid: 12270 components: - pos: -6.4692874,-100.35278 parent: 2 type: Transform - - uid: 12241 + - uid: 12271 components: - pos: -3.4849787,-66.40156 parent: 2 type: Transform - - uid: 12242 + - uid: 12272 components: - rot: 1.5707963267948966 rad pos: -14.5,-35.5 @@ -81431,7 +76988,7 @@ entities: type: Transform - proto: ClothingBackpackDuffelSyndicate entities: - - uid: 12243 + - uid: 12273 components: - pos: -46.5,62.5 parent: 2 @@ -81439,1112 +76996,1114 @@ entities: - type: ItemCooldown - proto: ClothingBackpackMedical entities: - - uid: 12244 + - uid: 12274 components: - pos: 0.5470823,-61.419598 parent: 2 type: Transform - proto: ClothingBackpackSatchel entities: - - uid: 12245 + - uid: 12275 components: - pos: -48.296333,5.808547 parent: 2 type: Transform - proto: ClothingBackpackSatchelMedical entities: - - uid: 12246 + - uid: 12276 components: - pos: -11.364604,-50.389603 parent: 2 type: Transform - proto: ClothingBackpackVirology entities: - - uid: 12247 + - uid: 12277 components: - pos: -31.439095,-73.39239 parent: 2 type: Transform - proto: ClothingBeltAssault entities: - - uid: 12249 + - uid: 12279 components: - flags: InContainer type: MetaData - - parent: 12248 + - parent: 12278 type: Transform - canCollide: False type: Physics - type: InsideEntityStorage - proto: ClothingBeltMedicalFilled entities: - - uid: 12251 + - uid: 12281 components: - pos: -11.470623,-49.143177 parent: 2 type: Transform - proto: ClothingBeltUtility entities: - - uid: 12252 + - uid: 12282 components: - pos: -39.52201,-20.517406 parent: 2 type: Transform - - uid: 12253 + - uid: 12283 components: - pos: 47.423275,49.588562 parent: 2 type: Transform - - uid: 12254 + - uid: 12284 components: - pos: -3.42201,34.480587 parent: 2 type: Transform - proto: ClothingBeltUtilityFilled entities: - - uid: 12255 + - uid: 12285 components: - pos: 41.37638,-39.3584 parent: 2 type: Transform - - uid: 12256 + - uid: 12286 components: - pos: -25.692995,-19.449156 parent: 2 type: Transform - - uid: 12257 + - uid: 12287 components: - pos: -30.494818,-37.432365 parent: 2 type: Transform - - uid: 12258 + - uid: 12288 components: - pos: -21.644775,-100.24527 parent: 2 type: Transform - - uid: 12259 + - uid: 12289 components: - pos: -34.48208,26.5042 parent: 2 type: Transform - proto: ClothingEyesGlasses entities: - - uid: 12260 + - uid: 12290 components: - pos: -57.484028,-27.38782 parent: 2 type: Transform - proto: ClothingEyesGlassesMeson entities: - - uid: 12261 + - uid: 12291 components: - pos: -52.538578,-12.210998 parent: 2 type: Transform - - uid: 12262 + - uid: 12292 components: - pos: -56.32557,-25.518402 parent: 2 type: Transform - - uid: 12263 + - uid: 12293 components: - pos: 2.454368,-75.40744 parent: 2 type: Transform - proto: ClothingEyesGlassesSecurity entities: - - uid: 12264 + - uid: 12294 components: - pos: 22.490807,-47.25673 parent: 2 type: Transform - proto: ClothingEyesHudBeer entities: - - uid: 12265 + - uid: 12295 components: - pos: -41.966873,-78.417305 parent: 2 type: Transform - proto: ClothingHandsGlovesBoxingBlue entities: - - uid: 12266 + - uid: 12296 components: - pos: 21.737816,3.36442 parent: 2 type: Transform - - uid: 12267 + - uid: 12297 components: - pos: -40.008175,-83.602425 parent: 2 type: Transform - proto: ClothingHandsGlovesBoxingGreen entities: - - uid: 12268 + - uid: 12298 components: - pos: 30.201283,4.7139225 parent: 2 type: Transform - proto: ClothingHandsGlovesBoxingRed entities: - - uid: 12269 + - uid: 12299 components: - pos: 26.321266,-1.3645767 parent: 2 type: Transform - - uid: 12270 + - uid: 12300 components: - pos: -44.121326,-80.72781 parent: 2 type: Transform - proto: ClothingHandsGlovesBoxingYellow entities: - - uid: 12271 + - uid: 12301 components: - pos: 30.232533,4.5889225 parent: 2 type: Transform - proto: ClothingHandsGlovesColorBlack entities: - - uid: 12272 + - uid: 12302 components: - pos: -47.515083,6.5429225 parent: 2 type: Transform - proto: ClothingHandsGlovesColorOrange entities: - - uid: 12273 + - uid: 12303 components: - pos: -57.515278,-30.528444 parent: 2 type: Transform - proto: ClothingHandsGlovesColorYellow entities: - - uid: 12274 + - uid: 12304 components: - pos: -24.5,-24.5 parent: 2 type: Transform - - uid: 12275 + - uid: 12305 components: - pos: -28.54305,-20.538445 parent: 2 type: Transform - - uid: 12276 + - uid: 12306 components: - pos: -56.97646,-35.48593 parent: 2 type: Transform - proto: ClothingHandsGlovesCombat entities: - - uid: 12277 + - uid: 12307 components: - pos: -37.5,-32.5 parent: 2 type: Transform - proto: ClothingHandsGlovesLatex entities: - - uid: 12278 + - uid: 12308 components: - pos: -19.466316,-85.552505 parent: 2 type: Transform - - uid: 12279 + - uid: 12309 components: - pos: -5.563123,-96.94655 parent: 2 type: Transform - proto: ClothingHeadFishCap entities: - - uid: 12280 + - uid: 12310 components: - pos: -24.484636,34.673782 parent: 2 type: Transform - proto: ClothingHeadHatAnimalCatBlack entities: - - uid: 12281 + - uid: 12311 components: - pos: -51.4974,8.551356 parent: 2 type: Transform - proto: ClothingHeadHatAnimalHeadslime entities: - - uid: 12282 + - uid: 12312 components: - pos: -48.252262,60.451523 parent: 2 type: Transform - proto: ClothingHeadHatBeaverHat entities: - - uid: 12283 + - uid: 12313 components: - pos: 22.537655,11.563517 parent: 2 type: Transform - proto: ClothingHeadHatBunny entities: - - uid: 12284 + - uid: 12314 components: - pos: 57.503056,-8.485766 parent: 2 type: Transform - proto: ClothingHeadHatCake entities: - - uid: 12285 + - uid: 12315 components: - pos: -23.42545,-67.41026 parent: 2 type: Transform - proto: ClothingHeadHatCardborg entities: - - uid: 12286 + - uid: 12316 components: - pos: 72.844894,-43.422203 parent: 2 type: Transform - proto: ClothingHeadHatChickenhead entities: - - uid: 12287 + - uid: 12317 components: - pos: -38.364468,56.565044 parent: 2 type: Transform - - uid: 12288 + - uid: 12318 components: - pos: 69.487785,-66.37648 parent: 2 type: Transform - proto: ClothingHeadHatCone entities: - - uid: 12289 + - uid: 12319 components: - pos: 20.465803,-52.422585 parent: 2 type: Transform - - uid: 12290 + - uid: 12320 components: - pos: -40.213425,-17.545645 parent: 2 type: Transform - - uid: 12291 + - uid: 12321 components: - pos: -28.525217,-54.052208 parent: 2 type: Transform - proto: ClothingHeadHatFedoraBrown entities: - - uid: 12292 + - uid: 12322 components: - pos: -42.4974,8.520106 parent: 2 type: Transform - proto: ClothingHeadHatFedoraGrey entities: - - uid: 12293 + - uid: 12323 components: - pos: -22.922485,11.607702 parent: 2 type: Transform - proto: ClothingHeadHatFez entities: - - uid: 12294 + - uid: 12324 components: - pos: 20.326727,12.833071 parent: 2 type: Transform - proto: ClothingHeadHatGreensoft entities: - - uid: 12295 + - uid: 12325 components: - pos: 31.51696,-61.276703 parent: 2 type: Transform - proto: ClothingHeadHatHardhatOrange entities: - - uid: 12296 + - uid: 12326 components: - pos: 15.782594,-64.08794 parent: 2 type: Transform - proto: ClothingHeadHatHetmanHat entities: - - uid: 12297 + - uid: 12327 components: - pos: -40.407463,-78.02446 parent: 2 type: Transform - proto: ClothingHeadHatHoodMoth entities: - - uid: 12298 + - uid: 12328 components: - pos: -14.455677,-96.43048 parent: 2 type: Transform - proto: ClothingHeadHatHoodNunHood entities: - - uid: 12299 + - uid: 12329 components: - pos: -38.629223,16.497232 parent: 2 type: Transform - proto: ClothingHeadHatJesterAlt entities: - - uid: 12300 + - uid: 12330 components: - pos: -15.170754,12.526345 parent: 2 type: Transform - proto: ClothingHeadHatPlaguedoctor entities: - - uid: 12301 + - uid: 12331 components: - pos: -31.265268,5.276951 parent: 2 type: Transform - proto: ClothingHeadHatPumpkin entities: - - uid: 12302 + - uid: 12332 components: - pos: -6.603641,4.509495 parent: 2 type: Transform - proto: ClothingHeadHatRichard entities: - - uid: 12303 + - uid: 12333 components: - pos: -16.484713,20.572138 parent: 2 type: Transform - proto: ClothingHeadHatSantahat entities: - - uid: 12304 + - uid: 12334 components: - pos: 70.456535,-65.50148 parent: 2 type: Transform - proto: ClothingHeadHatShrineMaidenWig entities: - - uid: 12305 + - uid: 12335 components: - pos: 73.5263,-65.23457 parent: 2 type: Transform - proto: ClothingHeadHatSquid entities: - - uid: 12306 + - uid: 12336 components: - pos: 9.466757,-12.457433 parent: 2 type: Transform - proto: ClothingHeadHatTophat entities: - - uid: 12307 + - uid: 12337 components: - pos: 22.506405,10.969767 parent: 2 type: Transform - - uid: 12308 + - uid: 12338 components: - pos: -19.575691,-87.365005 parent: 2 type: Transform - proto: ClothingHeadHatTrucker entities: - - uid: 12309 + - uid: 12339 components: - pos: -35.471638,-48.0912 parent: 2 type: Transform - proto: ClothingHeadHatUshanka entities: - - uid: 12310 + - uid: 12340 components: - pos: 20.592352,12.520571 parent: 2 type: Transform - - uid: 12311 + - uid: 12341 components: - pos: 63.56368,11.408342 parent: 2 type: Transform - - uid: 12312 + - uid: 12342 components: - pos: -39.523006,-76.44785 parent: 2 type: Transform - - uid: 12313 + - uid: 12343 components: - pos: -43.43965,-78.05615 parent: 2 type: Transform - proto: ClothingHeadHatVioletwizard entities: - - uid: 12314 + - uid: 12344 components: - pos: 18.520521,50.50226 parent: 2 type: Transform - proto: ClothingHeadHatWelding entities: - - uid: 12315 + - uid: 12345 components: - pos: -35.502888,-47.3412 parent: 2 type: Transform - - uid: 12316 + - uid: 12346 components: - pos: -12.456746,17.595669 parent: 2 type: Transform - - uid: 12317 + - uid: 12347 components: - pos: 42.55075,-32.360874 parent: 2 type: Transform - proto: ClothingHeadHatWeldingMaskFlameBlue entities: - - uid: 12318 + - uid: 12348 components: - pos: 0.64530456,23.439005 parent: 2 type: Transform - - uid: 12319 + - uid: 12349 components: - pos: -20.443554,-51.52769 parent: 2 type: Transform - proto: ClothingHeadHatWizard entities: - - uid: 12320 + - uid: 12350 components: - pos: -27.578125,55.49253 parent: 2 type: Transform - proto: ClothingHeadHelmetCosmonaut entities: - - uid: 12321 + - uid: 12351 components: - pos: -31.517996,-64.46434 parent: 2 type: Transform - - uid: 12322 + - uid: 12352 components: - pos: -37.48917,27.661566 parent: 2 type: Transform - proto: ClothingHeadHelmetEVA entities: - - uid: 12323 + - uid: 12353 components: - pos: -71.04211,-26.39878 parent: 2 type: Transform - proto: ClothingHeadHelmetScaf entities: - - uid: 12324 + - uid: 12354 components: - pos: -31.458502,-43.474 parent: 2 type: Transform - proto: ClothingHeadHelmetTemplar entities: - - uid: 12325 + - uid: 12355 components: - pos: 38.423565,-15.642361 parent: 2 type: Transform - proto: ClothingHeadNurseHat entities: - - uid: 12326 + - uid: 12356 components: - pos: 2.5095897,-65.392746 parent: 2 type: Transform - proto: ClothingHeadSafari entities: - - uid: 12327 + - uid: 12357 components: - pos: -3.5832248,52.757553 parent: 2 type: Transform - proto: ClothingMaskBat entities: - - uid: 12328 + - uid: 12358 components: - pos: -28.497562,8.541992 parent: 2 type: Transform - proto: ClothingMaskBear entities: - - uid: 12329 + - uid: 12359 components: - pos: -38.62821,28.538465 parent: 2 type: Transform - proto: ClothingMaskBee entities: - - uid: 12330 + - uid: 12360 components: - pos: -3.4901123,53.561974 parent: 2 type: Transform - proto: ClothingMaskBreathMedical entities: - - uid: 12331 + - uid: 12361 components: - pos: -16.243101,-35.3368 parent: 2 type: Transform - proto: ClothingMaskClown entities: - - uid: 12232 + - uid: 12262 components: - flags: InContainer type: MetaData - - parent: 12231 + - parent: 12261 type: Transform - canCollide: False type: Physics - proto: ClothingMaskFox entities: - - uid: 12332 + - uid: 12362 components: - pos: 30.331896,-28.644527 parent: 2 type: Transform - proto: ClothingMaskGas entities: - - uid: 12333 + - uid: 12363 components: - pos: -25.389828,-6.471097 parent: 2 type: Transform - - uid: 12334 + - uid: 12364 components: - pos: -35.537254,-49.709976 parent: 2 type: Transform - - uid: 12335 + - uid: 12365 components: - pos: -70.49962,-26.436932 parent: 2 type: Transform - - uid: 12336 + - uid: 12366 components: - pos: -8.705846,-15.426237 parent: 2 type: Transform - proto: ClothingMaskGasAtmos entities: - - uid: 12337 + - uid: 12367 components: - pos: 3.1338544,-75.35811 parent: 2 type: Transform -- proto: ClothingMaskGasExplorer - entities: - - uid: 12338 - components: - - pos: -43.401073,35.593018 - parent: 2 - type: Transform - proto: ClothingMaskJackal entities: - - uid: 12339 + - uid: 12368 components: - pos: 16.67739,21.87369 parent: 2 type: Transform - proto: ClothingMaskMuzzle entities: - - uid: 12340 + - uid: 12369 components: - pos: -15.336851,-35.602425 parent: 2 type: Transform - proto: ClothingMaskNeckGaiter entities: - - uid: 12250 + - uid: 12280 components: - flags: InContainer type: MetaData - - parent: 12248 + - parent: 12278 type: Transform - canCollide: False type: Physics - type: InsideEntityStorage - proto: ClothingMaskPlague entities: - - uid: 12341 + - uid: 12370 components: - pos: -31.093393,5.386326 parent: 2 type: Transform - proto: ClothingMaskRat entities: - - uid: 12342 + - uid: 12371 components: - pos: -9.217388,-10.5028515 parent: 2 type: Transform - proto: ClothingMaskRaven entities: - - uid: 12343 + - uid: 12372 components: - pos: 12.510361,-6.449043 parent: 2 type: Transform - proto: ClothingNeckAromanticPin entities: - - uid: 12344 + - uid: 12373 components: - pos: -16.507944,41.79273 parent: 2 type: Transform - proto: ClothingNeckAsexualPin entities: - - uid: 12345 + - uid: 12374 components: - pos: -16.289194,41.51148 parent: 2 type: Transform - proto: ClothingNeckBisexualPin entities: - - uid: 12346 + - uid: 12375 components: - pos: -42.7372,8.687558 parent: 2 type: Transform - proto: ClothingNeckBling entities: - - uid: 12347 + - uid: 12376 components: - pos: 48.258717,-21.370115 parent: 2 type: Transform - proto: ClothingNeckCloakMoth entities: - - uid: 12348 + - uid: 12377 components: - pos: -8.662971,-82.55483 parent: 2 type: Transform - proto: ClothingNeckCloakTrans entities: - - uid: 12349 + - uid: 12378 components: - pos: -9.4988165,23.574131 parent: 2 type: Transform - proto: ClothingNeckIntersexPin entities: - - uid: 12350 + - uid: 12379 components: - pos: -12.691556,31.94308 parent: 2 type: Transform - proto: ClothingNeckLawyerbadge entities: - - uid: 12351 + - uid: 12380 components: - pos: 43.39902,-3.8456278 parent: 2 type: Transform - proto: ClothingNeckLesbianPin entities: - - uid: 12352 + - uid: 12381 components: - pos: -51.700592,8.465523 parent: 2 type: Transform - proto: ClothingNeckLGBTPin entities: - - uid: 12353 + - uid: 12382 components: - pos: -10.776614,43.48699 parent: 2 type: Transform - proto: ClothingNeckMantleCE entities: - - uid: 12354 + - uid: 12383 components: - pos: -35.58501,-17.148493 parent: 2 type: Transform - proto: ClothingNeckMantleCMO entities: - - uid: 12355 + - uid: 12384 components: - pos: -20.144634,-56.34305 parent: 2 type: Transform - proto: ClothingNeckMantleHOS entities: - - uid: 12356 + - uid: 12385 components: - pos: 5.905226,20.807451 parent: 2 type: Transform - proto: ClothingNeckMantleRD entities: - - uid: 12357 + - uid: 12386 components: - pos: 63.464256,-53.431217 parent: 2 type: Transform - proto: ClothingNeckNonBinaryPin entities: - - uid: 12358 + - uid: 12387 components: - pos: -21.722902,35.752502 parent: 2 type: Transform - - uid: 12359 + - uid: 12388 components: - pos: -47.78141,6.181047 parent: 2 type: Transform - proto: ClothingNeckPansexualPin entities: - - uid: 12360 + - uid: 12389 components: - pos: -1.5377516,30.493696 parent: 2 type: Transform - proto: ClothingNeckScarfStripedCentcom entities: - - uid: 12361 + - uid: 12390 components: - pos: 77.62025,-67.25297 parent: 2 type: Transform - proto: ClothingNeckScarfStripedZebra entities: - - uid: 12362 + - uid: 12391 components: - pos: -28.25746,44.644928 parent: 2 type: Transform - proto: ClothingNeckTransPin entities: - - uid: 12363 + - uid: 12392 components: - pos: 65.36391,-1.4805084 parent: 2 type: Transform - proto: ClothingOuterArmorBulletproof entities: - - uid: 12364 + - uid: 12393 components: - pos: 32.367626,30.579184 parent: 2 type: Transform - - uid: 12365 + - uid: 12394 components: - pos: 31.015066,32.43679 parent: 2 type: Transform - - uid: 12366 + - uid: 12395 components: - pos: 31.015066,32.43679 parent: 2 type: Transform - - uid: 12367 + - uid: 12396 components: - pos: 31.015066,32.43679 parent: 2 type: Transform - - uid: 12368 + - uid: 12397 components: - pos: 31.015066,32.43679 parent: 2 type: Transform - - uid: 12369 + - uid: 12398 components: - pos: 32.398876,30.266684 parent: 2 type: Transform - - uid: 12370 + - uid: 12399 components: - pos: 32.617626,30.485434 parent: 2 type: Transform - - uid: 12371 + - uid: 12400 components: - pos: 32.648876,30.157309 parent: 2 type: Transform - proto: ClothingOuterArmorReflective entities: - - uid: 12372 + - uid: 12401 components: - pos: 32.477,29.610434 parent: 2 type: Transform - proto: ClothingOuterCardborg entities: - - uid: 12373 + - uid: 12402 components: - pos: 73.548645,-43.410946 parent: 2 type: Transform - proto: ClothingOuterCoatBomber entities: - - uid: 12374 + - uid: 12403 components: - pos: 15.5274105,-50.516087 parent: 2 type: Transform - proto: ClothingOuterCoatDetective entities: - - uid: 12375 + - uid: 12404 components: - pos: -32.515205,-59.44035 parent: 2 type: Transform - proto: ClothingOuterCoatGentle entities: - - uid: 12376 + - uid: 12405 components: - pos: 59.512882,24.492107 parent: 2 type: Transform - proto: ClothingOuterCoatJensen entities: - - uid: 12068 + - uid: 12097 components: - pos: 62.5886,15.642659 parent: 2 type: Transform - - storageUsed: 1 - type: Storage - containers: storagebase: !type:Container showEnts: False occludes: True ents: - - 12069 + - 12098 + toggleable-clothing: !type:ContainerSlot + showEnts: False + occludes: True + ent: null type: ContainerContainer + - storageUsed: 1 + type: Storage - proto: ClothingOuterDameDane entities: - - uid: 12377 + - uid: 12406 components: - pos: -30.207304,-98.49032 parent: 2 type: Transform - proto: ClothingOuterHardsuitEVA entities: - - uid: 12378 + - uid: 12407 components: - pos: -71.62023,-26.30503 parent: 2 type: Transform - proto: ClothingOuterHoodieChaplain entities: - - uid: 12379 + - uid: 12408 components: - pos: -39.238598,16.669107 parent: 2 type: Transform - proto: ClothingOuterPlagueSuit entities: - - uid: 12380 + - uid: 12409 components: - pos: -31.046518,5.058201 parent: 2 type: Transform - proto: ClothingOuterStraightjacket entities: - - uid: 12381 + - uid: 12410 components: - pos: -15.008726,-35.30555 parent: 2 type: Transform - - uid: 12382 + - uid: 12411 components: - pos: 6.437404,-57.306335 parent: 2 type: Transform - proto: ClothingOuterSuitChicken entities: - - uid: 12383 + - uid: 12412 components: - pos: -41.535904,57.643673 parent: 2 type: Transform - proto: ClothingOuterSuitMonkey entities: - - uid: 12384 + - uid: 12413 components: - pos: -23.4853,-87.30585 parent: 2 type: Transform - proto: ClothingOuterSuitShrineMaiden entities: - - uid: 12385 + - uid: 12414 components: - pos: -40.497574,63.50408 parent: 2 type: Transform - - uid: 12386 + - uid: 12415 components: - pos: 73.55755,-64.51582 parent: 2 type: Transform - proto: ClothingOuterWinterRobo entities: - - uid: 12387 + - uid: 12416 components: - pos: 77.51138,-47.408936 parent: 2 type: Transform - proto: ClothingOuterWinterViro entities: - - uid: 12388 + - uid: 12417 components: - pos: -31.470345,-74.22051 parent: 2 type: Transform - proto: ClothingOuterWizard entities: - - uid: 12389 + - uid: 12418 components: - pos: -41.58894,41.559685 parent: 2 type: Transform - proto: ClothingOuterWizardRed entities: - - uid: 12390 + - uid: 12419 components: - pos: -59.983215,-45.447025 parent: 2 type: Transform - proto: ClothingOuterWizardViolet entities: - - uid: 12391 + - uid: 12420 components: - pos: 19.504896,49.611633 parent: 2 type: Transform - proto: ClothingShoesBling entities: - - uid: 12392 + - uid: 12421 components: - pos: 47.782166,-25.351032 parent: 2 type: Transform - proto: ClothingShoesBootsJack entities: - - uid: 12393 + - uid: 12422 components: - pos: -1.4635531,17.609518 parent: 2 type: Transform - proto: ClothingShoesBootsLaceup entities: - - uid: 12394 + - uid: 12423 components: - pos: 45.797165,49.377663 parent: 2 type: Transform - proto: ClothingShoesBootsMag entities: - - uid: 12395 + - uid: 12424 components: - pos: -34.59344,-13.376695 parent: 2 type: Transform - - uid: 12396 + - uid: 12425 components: - pos: -41.919106,35.62894 parent: 2 type: Transform - - uid: 12397 + - uid: 12426 components: - pos: 33.46236,-13.4915285 parent: 2 type: Transform - - uid: 12398 + - uid: 12427 components: - pos: 27.527689,27.317041 parent: 2 type: Transform - - uid: 12399 + - uid: 12428 components: - pos: 31.527689,27.285791 parent: 2 type: Transform - - uid: 12400 + - uid: 12429 components: - pos: 31.516712,-13.514931 parent: 2 type: Transform - - uid: 12401 + - uid: 12430 components: - pos: 31.501087,-11.577431 parent: 2 type: Transform - - uid: 12402 + - uid: 12431 components: - pos: 33.563587,-11.530556 parent: 2 type: Transform - - uid: 12403 + - uid: 12432 components: - pos: 29.610462,-11.499306 parent: 2 type: Transform - - uid: 12404 + - uid: 12433 components: - pos: 29.532337,-13.577431 parent: 2 type: Transform + - uid: 12434 + components: + - pos: 26.669048,29.395418 + parent: 2 + type: Transform - proto: ClothingShoesClown entities: - - uid: 12233 + - uid: 12263 components: - flags: InContainer type: MetaData - - parent: 12231 + - parent: 12261 type: Transform - canCollide: False type: Physics - proto: ClothingShoesColorWhite entities: - - uid: 12405 + - uid: 12435 components: - pos: -16.54276,-45.461185 parent: 2 type: Transform - proto: ClothingShoesDameDane entities: - - uid: 12406 + - uid: 12436 components: - pos: -22.591383,-96.25594 parent: 2 type: Transform - proto: ClothingShoesFlippers entities: - - uid: 12407 + - uid: 12437 components: - pos: -3.5418344,21.579527 parent: 2 type: Transform - proto: ClothingShoeSlippersDuck entities: - - uid: 12408 + - uid: 12438 components: - pos: 15.423054,34.567764 parent: 2 type: Transform - proto: ClothingShoesSwat entities: - - uid: 12410 + - uid: 12440 components: - flags: InContainer name: Hi-Grip combat shoes type: MetaData - - parent: 12409 + - parent: 12439 type: Transform - canCollide: False type: Physics @@ -82552,501 +78111,501 @@ entities: - type: InsideEntityStorage - proto: ClothingUnderSocksBee entities: - - uid: 12413 + - uid: 12443 components: - pos: 62.522377,-58.450882 parent: 2 type: Transform - proto: ClothingUniformJumpskirtJanimaidmini entities: - - uid: 12414 + - uid: 12444 components: - pos: -13.518242,-15.499978 parent: 2 type: Transform - proto: ClothingUniformJumpskirtOfLife entities: - - uid: 12415 + - uid: 12445 components: - pos: 62.5,53.5 parent: 2 type: Transform - proto: ClothingUniformJumpskirtOperative entities: - - uid: 12411 + - uid: 12441 components: - flags: InContainer type: MetaData - - parent: 12409 + - parent: 12439 type: Transform - canCollide: False type: Physics - type: InsideEntityStorage - proto: ClothingUniformJumpsuitClown entities: - - uid: 12234 + - uid: 12264 components: - flags: InContainer type: MetaData - - parent: 12231 + - parent: 12261 type: Transform - canCollide: False type: Physics - proto: ClothingUniformJumpsuitCossack entities: - - uid: 12416 + - uid: 12446 components: - pos: -40.657463,-77.46196 parent: 2 type: Transform - proto: ClothingUniformJumpsuitDameDane entities: - - uid: 12417 + - uid: 12447 components: - pos: -15.484091,-96.41976 parent: 2 type: Transform - proto: ClothingUniformJumpsuitMonasticRobeDark entities: - - uid: 12418 + - uid: 12448 components: - pos: -32.383476,8.575315 parent: 2 type: Transform - - uid: 12419 + - uid: 12449 components: - pos: -32.383476,8.575315 parent: 2 type: Transform - - uid: 12420 + - uid: 12450 components: - pos: -32.383476,8.575315 parent: 2 type: Transform - - uid: 12421 + - uid: 12451 components: - pos: -32.383476,8.575315 parent: 2 type: Transform - - uid: 12422 + - uid: 12452 components: - pos: -32.383476,8.575315 parent: 2 type: Transform - proto: ClothingUniformJumpsuitMonasticRobeLight entities: - - uid: 12423 + - uid: 12453 components: - pos: -22.894775,-100.24527 parent: 2 type: Transform - - uid: 12424 + - uid: 12454 components: - pos: -33.11785,8.55969 parent: 2 type: Transform - - uid: 12425 + - uid: 12455 components: - pos: -33.11785,8.55969 parent: 2 type: Transform - - uid: 12426 + - uid: 12456 components: - pos: -33.11785,8.55969 parent: 2 type: Transform - - uid: 12427 + - uid: 12457 components: - pos: -33.11785,8.55969 parent: 2 type: Transform - - uid: 12428 + - uid: 12458 components: - pos: -33.11785,8.55969 parent: 2 type: Transform - proto: ClothingUniformJumpsuitOperative entities: - - uid: 12412 + - uid: 12442 components: - flags: InContainer type: MetaData - - parent: 12409 + - parent: 12439 type: Transform - canCollide: False type: Physics - type: InsideEntityStorage - proto: ClothingUniformJumpsuitReporter entities: - - uid: 12429 + - uid: 12459 components: - pos: -27.443762,14.534213 parent: 2 type: Transform - proto: ClothingUniformJumpsuitSafari entities: - - uid: 12430 + - uid: 12460 components: - pos: -3.4738498,52.42943 parent: 2 type: Transform - proto: CluwneHorn entities: - - uid: 12235 + - uid: 12265 components: - flags: InContainer type: MetaData - - parent: 12231 + - parent: 12261 type: Transform - canCollide: False type: Physics - proto: Cobweb1 entities: - - uid: 31243 + - uid: 12461 components: - pos: -42.5,-20.5 parent: 2 type: Transform - - uid: 31245 + - uid: 12462 components: - pos: -55.5,-66.5 parent: 2 type: Transform - - uid: 31247 + - uid: 12463 components: - pos: -45.5,-71.5 parent: 2 type: Transform - proto: Cobweb2 entities: - - uid: 31244 + - uid: 12464 components: - pos: -48.5,-34.5 parent: 2 type: Transform - - uid: 31246 + - uid: 12465 components: - pos: -53.5,-70.5 parent: 2 type: Transform - - uid: 31248 + - uid: 12466 components: - pos: -38.5,-71.5 parent: 2 type: Transform - proto: ComfyChair entities: - - uid: 12431 + - uid: 12467 components: - pos: -19.5,-55.5 parent: 2 type: Transform - - uid: 12432 + - uid: 12468 components: - rot: 1.5707963267948966 rad pos: 13.5,-35.5 parent: 2 type: Transform - - uid: 12433 + - uid: 12469 components: - pos: 20.5,-11.5 parent: 2 type: Transform - - uid: 12434 + - uid: 12470 components: - rot: 1.5707963267948966 rad pos: 13.5,-33.5 parent: 2 type: Transform - - uid: 12435 + - uid: 12471 components: - pos: 6.5,21.5 parent: 2 type: Transform - - uid: 12436 + - uid: 12472 components: - rot: -1.5707963267948966 rad pos: 24.5,-28.5 parent: 2 type: Transform - - uid: 12437 + - uid: 12473 components: - rot: 1.5707963267948966 rad pos: 13.5,-31.5 parent: 2 type: Transform - - uid: 12438 + - uid: 12474 components: - rot: 3.141592653589793 rad pos: 20.5,11.5 parent: 2 type: Transform - - uid: 12439 + - uid: 12475 components: - pos: 20.5,13.5 parent: 2 type: Transform - - uid: 12440 + - uid: 12476 components: - pos: -15.5,-37.5 parent: 2 type: Transform - - uid: 12441 + - uid: 12477 components: - rot: -1.5707963267948966 rad pos: 24.5,-29.5 parent: 2 type: Transform - - uid: 12442 + - uid: 12478 components: - rot: -1.5707963267948966 rad pos: 44.5,-3.5 parent: 2 type: Transform - - uid: 12443 + - uid: 12479 components: - rot: 3.141592653589793 rad pos: 33.5,-51.5 parent: 2 type: Transform - - uid: 12444 + - uid: 12480 components: - rot: 3.141592653589793 rad pos: 29.5,-51.5 parent: 2 type: Transform - - uid: 12445 + - uid: 12481 components: - pos: 32.5,-47.5 parent: 2 type: Transform - - uid: 12446 + - uid: 12482 components: - pos: 30.5,-47.5 parent: 2 type: Transform - - uid: 12447 + - uid: 12483 components: - pos: 25.5,-81.5 parent: 2 type: Transform - - uid: 12448 + - uid: 12484 components: - rot: 1.5707963267948966 rad pos: -36.5,-16.5 parent: 2 type: Transform - - uid: 12449 + - uid: 12485 components: - pos: -48.5,7.5 parent: 2 type: Transform - - uid: 12450 + - uid: 12486 components: - pos: -47.5,7.5 parent: 2 type: Transform - - uid: 12451 + - uid: 12487 components: - rot: 1.5707963267948966 rad pos: -49.5,6.5 parent: 2 type: Transform - - uid: 12452 + - uid: 12488 components: - rot: 1.5707963267948966 rad pos: -49.5,5.5 parent: 2 type: Transform - - uid: 12453 + - uid: 12489 components: - rot: 3.141592653589793 rad pos: -48.5,4.5 parent: 2 type: Transform - - uid: 12454 + - uid: 12490 components: - rot: 3.141592653589793 rad pos: -47.5,4.5 parent: 2 type: Transform - - uid: 12455 + - uid: 12491 components: - rot: -1.5707963267948966 rad pos: -46.5,6.5 parent: 2 type: Transform - - uid: 12456 + - uid: 12492 components: - rot: -1.5707963267948966 rad pos: -46.5,5.5 parent: 2 type: Transform - - uid: 12457 + - uid: 12493 components: - rot: 3.141592653589793 rad pos: 25.5,-85.5 parent: 2 type: Transform - - uid: 12458 + - uid: 12494 components: - rot: 3.141592653589793 rad pos: 67.5,7.5 parent: 2 type: Transform - - uid: 12459 + - uid: 12495 components: - pos: 67.5,11.5 parent: 2 type: Transform - - uid: 12460 + - uid: 12496 components: - pos: 44.5,33.5 parent: 2 type: Transform - - uid: 12461 + - uid: 12497 components: - pos: 43.5,33.5 parent: 2 type: Transform - - uid: 12462 + - uid: 12498 components: - pos: 42.5,33.5 parent: 2 type: Transform - - uid: 12463 + - uid: 12499 components: - rot: 1.5707963267948966 rad pos: 64.5,-0.5 parent: 2 type: Transform - - uid: 12464 + - uid: 12500 components: - rot: 1.5707963267948966 rad pos: 64.5,-1.5 parent: 2 type: Transform - - uid: 12465 + - uid: 12501 components: - rot: 3.141592653589793 rad pos: 44.5,28.5 parent: 2 type: Transform - - uid: 12466 + - uid: 12502 components: - rot: 3.141592653589793 rad pos: 45.5,28.5 parent: 2 type: Transform - - uid: 12467 + - uid: 12503 components: - rot: 3.141592653589793 rad pos: 46.5,28.5 parent: 2 type: Transform - - uid: 12468 + - uid: 12504 components: - rot: -1.5707963267948966 rad pos: -54.5,-48.5 parent: 2 type: Transform - - uid: 12469 + - uid: 12505 components: - rot: -1.5707963267948966 rad pos: -54.5,-49.5 parent: 2 type: Transform - - uid: 12470 + - uid: 12506 components: - pos: -55.5,-47.5 parent: 2 type: Transform - - uid: 12471 + - uid: 12507 components: - rot: 3.141592653589793 rad pos: -55.5,-50.5 parent: 2 type: Transform - - uid: 12472 + - uid: 12508 components: - rot: -1.5707963267948966 rad pos: -4.5,-98.5 parent: 2 type: Transform - - uid: 12473 + - uid: 12509 components: - rot: -1.5707963267948966 rad pos: -21.5,-97.5 parent: 2 type: Transform - - uid: 12474 + - uid: 12510 components: - rot: 1.5707963267948966 rad pos: -23.5,-97.5 parent: 2 type: Transform - - uid: 12475 + - uid: 12511 components: - pos: -0.5,-73.5 parent: 2 type: Transform - - uid: 12476 + - uid: 12512 components: - pos: 16.5,-79.5 parent: 2 type: Transform - - uid: 12477 + - uid: 12513 components: - pos: 14.5,-79.5 parent: 2 type: Transform - - uid: 12478 + - uid: 12514 components: - pos: 13.5,-79.5 parent: 2 type: Transform - - uid: 12479 + - uid: 12515 components: - pos: 17.5,-79.5 parent: 2 type: Transform - - uid: 12480 + - uid: 12516 components: - rot: 3.141592653589793 rad pos: 14.5,-87.5 parent: 2 type: Transform - - uid: 12481 + - uid: 12517 components: - rot: 3.141592653589793 rad pos: 13.5,-87.5 parent: 2 type: Transform - - uid: 12482 + - uid: 12518 components: - rot: 3.141592653589793 rad pos: 17.5,-87.5 parent: 2 type: Transform - - uid: 12483 + - uid: 12519 components: - rot: 3.141592653589793 rad pos: 16.5,-87.5 parent: 2 type: Transform - - uid: 12484 + - uid: 12520 components: - rot: -1.5707963267948966 rad pos: 7.5,-79.5 parent: 2 type: Transform - - uid: 12485 + - uid: 12521 components: - rot: 1.5707963267948966 rad pos: 20.5,-29.5 parent: 2 type: Transform - - uid: 12486 + - uid: 12522 components: - rot: 1.5707963267948966 rad pos: 20.5,-28.5 @@ -83054,18 +78613,18 @@ entities: type: Transform - proto: ComputerAlert entities: - - uid: 12487 + - uid: 12523 components: - pos: 27.5,-21.5 parent: 2 type: Transform - - uid: 12488 + - uid: 12524 components: - rot: 1.5707963267948966 rad pos: -55.5,-12.5 parent: 2 type: Transform - - uid: 12489 + - uid: 12525 components: - rot: 3.141592653589793 rad pos: -36.5,-46.5 @@ -83073,24 +78632,24 @@ entities: type: Transform - proto: ComputerAnalysisConsole entities: - - uid: 12490 + - uid: 12526 components: - pos: 73.5,-31.5 parent: 2 type: Transform - linkedPorts: - 21191: + 21230: - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver type: DeviceLinkSource - proto: computerBodyScanner entities: - - uid: 12491 + - uid: 12527 components: - rot: -1.5707963267948966 rad pos: 4.5,-65.5 parent: 2 type: Transform - - uid: 12492 + - uid: 12528 components: - rot: 1.5707963267948966 rad pos: -26.5,-60.5 @@ -83098,48 +78657,48 @@ entities: type: Transform - proto: ComputerBroken entities: - - uid: 12493 + - uid: 12529 components: - rot: -1.5707963267948966 rad pos: 52.5,37.5 parent: 2 type: Transform - - uid: 12494 + - uid: 12530 components: - pos: 51.5,36.5 parent: 2 type: Transform - - uid: 12495 + - uid: 12531 components: - rot: -1.5707963267948966 rad pos: 51.5,37.5 parent: 2 type: Transform - - uid: 12496 + - uid: 12532 components: - rot: -1.5707963267948966 rad pos: -51.5,-87.5 parent: 2 type: Transform - - uid: 12497 + - uid: 12533 components: - rot: 1.5707963267948966 rad pos: -0.5,73.5 parent: 2 type: Transform - - uid: 12498 + - uid: 12534 components: - rot: -1.5707963267948966 rad pos: -2.5,73.5 parent: 2 type: Transform - - uid: 12499 + - uid: 12535 components: - rot: 1.5707963267948966 rad pos: 2.5,69.5 parent: 2 type: Transform - - uid: 12500 + - uid: 12536 components: - rot: -1.5707963267948966 rad pos: -5.5,69.5 @@ -83147,36 +78706,36 @@ entities: type: Transform - proto: ComputerCargoBounty entities: - - uid: 12501 + - uid: 12537 components: - pos: -42.5,25.5 parent: 2 type: Transform - proto: ComputerCargoOrders entities: - - uid: 12502 + - uid: 12538 components: - pos: -31.5,31.5 parent: 2 type: Transform - - uid: 12503 + - uid: 12539 components: - pos: 29.5,-21.5 parent: 2 type: Transform - - uid: 12504 + - uid: 12540 components: - pos: -27.5,23.5 parent: 2 type: Transform - - uid: 12505 + - uid: 12541 components: - pos: -44.5,35.5 parent: 2 type: Transform - proto: ComputerCargoShuttle entities: - - uid: 12506 + - uid: 12542 components: - rot: 3.141592653589793 rad pos: -27.5,21.5 @@ -83184,12 +78743,12 @@ entities: type: Transform - proto: ComputerComms entities: - - uid: 12507 + - uid: 12543 components: - pos: 25.5,-21.5 parent: 2 type: Transform - - uid: 12508 + - uid: 12544 components: - rot: 1.5707963267948966 rad pos: 28.5,-30.5 @@ -83197,64 +78756,69 @@ entities: type: Transform - proto: ComputerCrewMonitoring entities: - - uid: 12509 + - uid: 12545 components: - pos: 23.5,-21.5 parent: 2 type: Transform - - uid: 12510 + - uid: 12546 components: - pos: 54.5,13.5 parent: 2 type: Transform - proto: ComputerCriminalRecords entities: - - uid: 12511 + - uid: 12547 components: - rot: -1.5707963267948966 rad pos: 22.5,-45.5 parent: 2 type: Transform - - uid: 12512 + - uid: 12548 components: - pos: -16.5,26.5 parent: 2 type: Transform + - uid: 12549 + components: + - pos: 23.5,23.5 + parent: 2 + type: Transform - proto: ComputerFrame entities: - - uid: 12513 + - uid: 12550 components: - pos: -8.5,-63.5 parent: 2 type: Transform - - uid: 12514 + - uid: 12551 components: - rot: 1.5707963267948966 rad pos: 70.5,-36.5 parent: 2 type: Transform - - uid: 12515 + - uid: 12552 components: - pos: 51.5,35.5 parent: 2 type: Transform - - uid: 12516 + - uid: 12553 components: - pos: -10.5,37.5 parent: 2 type: Transform - - uid: 12517 + - uid: 12554 components: - pos: -29.5,-96.5 parent: 2 type: Transform - - uid: 12518 + - uid: 12555 components: - rot: 1.5707963267948966 rad pos: -79.5,-54.5 parent: 2 type: Transform - - uid: 12519 + - uid: 12556 components: - rot: 1.5707963267948966 rad pos: -79.5,-53.5 @@ -83262,40 +78826,40 @@ entities: type: Transform - proto: ComputerId entities: - - uid: 12520 + - uid: 12557 components: - rot: 1.5707963267948966 rad pos: -37.5,-17.5 parent: 2 type: Transform - - uid: 12521 + - uid: 12558 components: - pos: 60.5,-53.5 parent: 2 type: Transform - - uid: 12522 + - uid: 12559 components: - rot: 3.141592653589793 rad pos: -30.5,29.5 parent: 2 type: Transform - - uid: 12523 + - uid: 12560 components: - pos: 25.5,-24.5 parent: 2 type: Transform - - uid: 12524 + - uid: 12561 components: - rot: 3.141592653589793 rad pos: 4.5,20.5 parent: 2 type: Transform - - uid: 12525 + - uid: 12562 components: - pos: -19.5,-54.5 parent: 2 type: Transform - - uid: 12526 + - uid: 12563 components: - rot: 1.5707963267948966 rad pos: 3.5,-4.5 @@ -83303,7 +78867,7 @@ entities: type: Transform - proto: ComputerMassMedia entities: - - uid: 12527 + - uid: 12564 components: - rot: -1.5707963267948966 rad pos: -22.5,12.5 @@ -83311,18 +78875,18 @@ entities: type: Transform - proto: ComputerMedicalRecords entities: - - uid: 12528 + - uid: 12565 components: - pos: -20.5,-54.5 parent: 2 type: Transform - - uid: 12529 + - uid: 12566 components: - rot: -1.5707963267948966 rad pos: -3.5,-50.5 parent: 2 type: Transform - - uid: 12530 + - uid: 12567 components: - rot: 3.141592653589793 rad pos: 47.5,5.5 @@ -83330,34 +78894,34 @@ entities: type: Transform - proto: ComputerPowerMonitoring entities: - - uid: 12531 + - uid: 12568 components: - pos: -46.5,-22.5 parent: 2 type: Transform - - uid: 12532 + - uid: 12569 components: - pos: -72.5,-31.5 parent: 2 type: Transform - - uid: 12533 + - uid: 12570 components: - pos: 21.5,-21.5 parent: 2 type: Transform - - uid: 12534 + - uid: 12571 components: - rot: 3.141592653589793 rad pos: -27.5,-13.5 parent: 2 type: Transform - - uid: 12535 + - uid: 12572 components: - rot: 1.5707963267948966 rad pos: -55.5,-13.5 parent: 2 type: Transform - - uid: 12536 + - uid: 12573 components: - rot: 3.141592653589793 rad pos: -71.5,-39.5 @@ -83365,7 +78929,7 @@ entities: type: Transform - proto: ComputerRadar entities: - - uid: 12537 + - uid: 12574 components: - rot: 1.5707963267948966 rad pos: -48.5,32.5 @@ -83373,49 +78937,49 @@ entities: type: Transform - proto: ComputerResearchAndDevelopment entities: - - uid: 12538 + - uid: 12575 components: - rot: 3.141592653589793 rad pos: 61.5,-55.5 parent: 2 type: Transform - - uid: 12539 + - uid: 12576 components: - rot: -1.5707963267948966 rad pos: 43.5,-39.5 parent: 2 type: Transform - - uid: 12540 + - uid: 12577 components: - pos: 68.5,-43.5 parent: 2 type: Transform - - uid: 12541 + - uid: 12578 components: - pos: 50.5,-52.5 parent: 2 type: Transform - - uid: 12542 + - uid: 12579 components: - rot: 3.141592653589793 rad pos: 60.5,-36.5 parent: 2 type: Transform - - uid: 12543 + - uid: 12580 components: - pos: 74.5,-31.5 parent: 2 type: Transform - proto: ComputerSalvageExpedition entities: - - uid: 12544 + - uid: 12581 components: - pos: -46.5,44.5 parent: 2 type: Transform - proto: ComputerShuttleCargo entities: - - uid: 12545 + - uid: 12582 components: - rot: 1.5707963267948966 rad pos: -48.5,21.5 @@ -83423,66 +78987,66 @@ entities: type: Transform - proto: ComputerShuttleSalvage entities: - - uid: 12546 + - uid: 12583 components: - pos: -47.5,44.5 parent: 2 type: Transform - proto: ComputerSolarControl entities: - - uid: 12547 + - uid: 12584 components: - rot: 1.5707963267948966 rad pos: -2.5,-77.5 parent: 2 type: Transform - - uid: 12548 + - uid: 12585 components: - pos: 72.5,38.5 parent: 2 type: Transform - proto: ComputerStationRecords entities: - - uid: 12549 + - uid: 12586 components: - rot: -1.5707963267948966 rad pos: 5.5,-4.5 parent: 2 type: Transform - - uid: 12550 + - uid: 12587 components: - rot: 1.5707963267948966 rad pos: 2.5,-57.5 parent: 2 type: Transform - - uid: 12551 + - uid: 12588 components: - pos: 18.5,-10.5 parent: 2 type: Transform - - uid: 12552 + - uid: 12589 components: - pos: 24.5,-24.5 parent: 2 type: Transform - - uid: 12553 + - uid: 12590 components: - rot: -1.5707963267948966 rad pos: 26.5,20.5 parent: 2 type: Transform - - uid: 12554 + - uid: 12591 components: - pos: 47.5,7.5 parent: 2 type: Transform - - uid: 12555 + - uid: 12592 components: - rot: 3.141592653589793 rad pos: 20.5,-47.5 parent: 2 type: Transform - - uid: 12556 + - uid: 12593 components: - rot: 3.141592653589793 rad pos: -16.5,-23.5 @@ -83490,63 +79054,63 @@ entities: type: Transform - proto: ComputerSurveillanceCameraMonitor entities: - - uid: 12557 + - uid: 12594 components: - pos: 26.5,-24.5 parent: 2 type: Transform - - uid: 12558 + - uid: 12595 components: - rot: 3.141592653589793 rad pos: 18.5,-12.5 parent: 2 type: Transform - - uid: 12559 + - uid: 12596 components: - rot: 1.5707963267948966 rad pos: 24.5,20.5 parent: 2 type: Transform - - uid: 12560 + - uid: 12597 components: - pos: 53.5,13.5 parent: 2 type: Transform - - uid: 12561 + - uid: 12598 components: - rot: 3.141592653589793 rad pos: 52.5,-42.5 parent: 2 type: Transform - - uid: 12562 + - uid: 12599 components: - rot: 1.5707963267948966 rad pos: -55.5,-14.5 parent: 2 type: Transform - - uid: 12563 + - uid: 12600 components: - pos: -23.5,-69.5 parent: 2 type: Transform - - uid: 12564 + - uid: 12601 components: - pos: -11.5,-14.5 parent: 2 type: Transform - - uid: 12565 + - uid: 12602 components: - rot: 1.5707963267948966 rad pos: -21.5,-49.5 parent: 2 type: Transform - - uid: 12566 + - uid: 12603 components: - rot: 3.141592653589793 rad pos: -37.5,-46.5 parent: 2 type: Transform - - uid: 12567 + - uid: 12604 components: - rot: 1.5707963267948966 rad pos: -27.5,15.5 @@ -83554,1072 +79118,1067 @@ entities: type: Transform - proto: ComputerTechnologyDiskTerminal entities: - - uid: 12568 + - uid: 12605 components: - pos: 56.5,-47.5 parent: 2 type: Transform - proto: ComputerTelevision entities: - - uid: 12569 + - uid: 12606 components: - pos: -6.5,-48.5 parent: 2 type: Transform - - uid: 12570 + - uid: 12607 components: - pos: -28.5,43.5 parent: 2 type: Transform - - uid: 12571 - components: - - pos: 23.5,23.5 - parent: 2 - type: Transform - - uid: 12572 + - uid: 12608 components: - pos: 15.5,9.5 parent: 2 type: Transform - - uid: 12573 + - uid: 12609 components: - pos: -22.5,31.5 parent: 2 type: Transform - - uid: 12574 + - uid: 12610 components: - pos: -18.5,35.5 parent: 2 type: Transform - - uid: 12575 + - uid: 12611 components: - pos: -11.5,35.5 parent: 2 type: Transform - - uid: 12576 + - uid: 12612 components: - pos: -21.5,39.5 parent: 2 type: Transform - proto: ComputerTelevisionCircuitboard entities: - - uid: 12577 + - uid: 12613 components: - pos: 41.546516,-53.695484 parent: 2 type: Transform - - uid: 12578 + - uid: 12614 components: - pos: -8.937697,37.5244 parent: 2 type: Transform - - uid: 12579 + - uid: 12615 components: - pos: -9.312697,37.696274 parent: 2 type: Transform - proto: ContainmentFieldGenerator entities: - - uid: 12580 + - uid: 12616 components: - pos: -70.5,-9.5 parent: 2 type: Transform - - uid: 12581 + - uid: 12617 components: - pos: -62.5,-9.5 parent: 2 type: Transform - - uid: 12582 + - uid: 12618 components: - pos: -62.5,-17.5 parent: 2 type: Transform - - uid: 12583 + - uid: 12619 components: - pos: -70.5,-17.5 parent: 2 type: Transform - - uid: 12584 + - uid: 12620 components: - pos: -74.5,-26.5 parent: 2 type: Transform - - uid: 12585 + - uid: 12621 components: - pos: -73.5,-26.5 parent: 2 type: Transform - - uid: 12586 + - uid: 12622 components: - pos: -74.5,-23.5 parent: 2 type: Transform - - uid: 12587 + - uid: 12623 components: - pos: -73.5,-23.5 parent: 2 type: Transform - proto: ConveyorBelt entities: - - uid: 12588 + - uid: 12624 components: - rot: 1.5707963267948966 rad pos: 16.5,-55.5 parent: 2 type: Transform - links: - - 25518 + - 25598 type: DeviceLinkSink - - uid: 12589 + - uid: 12625 components: - pos: 18.5,-56.5 parent: 2 type: Transform - links: - - 25518 + - 25598 type: DeviceLinkSink - - uid: 12590 + - uid: 12626 components: - rot: 1.5707963267948966 rad pos: 17.5,-55.5 parent: 2 type: Transform - links: - - 25518 + - 25598 type: DeviceLinkSink - - uid: 12591 + - uid: 12627 components: - rot: 1.5707963267948966 rad pos: 15.5,-55.5 parent: 2 type: Transform - links: - - 25518 + - 25598 type: DeviceLinkSink - - uid: 12592 + - uid: 12628 components: - pos: 18.5,-55.5 parent: 2 type: Transform - links: - - 25518 + - 25598 type: DeviceLinkSink - - uid: 12593 + - uid: 12629 components: - rot: -1.5707963267948966 rad pos: -12.5,-10.5 parent: 2 type: Transform - links: - - 25531 + - 25611 type: DeviceLinkSink - - uid: 12594 + - uid: 12630 components: - pos: 15.5,-54.5 parent: 2 type: Transform - links: - - 25518 + - 25598 type: DeviceLinkSink - - uid: 12595 + - uid: 12631 components: - pos: 18.5,-57.5 parent: 2 type: Transform - links: - - 25518 + - 25598 type: DeviceLinkSink - - uid: 12596 + - uid: 12632 components: - rot: -1.5707963267948966 rad pos: 17.5,-54.5 parent: 2 type: Transform - links: - - 25518 + - 25598 type: DeviceLinkSink - - uid: 12597 + - uid: 12633 components: - rot: -1.5707963267948966 rad pos: 16.5,-54.5 parent: 2 type: Transform - links: - - 25518 + - 25598 type: DeviceLinkSink - - uid: 12598 + - uid: 12634 components: - rot: -1.5707963267948966 rad pos: 18.5,-54.5 parent: 2 type: Transform - links: - - 25518 + - 25598 type: DeviceLinkSink - - uid: 12599 + - uid: 12635 components: - rot: -1.5707963267948966 rad pos: -14.5,-10.5 parent: 2 type: Transform - links: - - 25531 + - 25611 type: DeviceLinkSink - - uid: 12600 + - uid: 12636 components: - rot: -1.5707963267948966 rad pos: -13.5,-10.5 parent: 2 type: Transform - links: - - 25531 + - 25611 type: DeviceLinkSink - - uid: 12601 + - uid: 12637 components: - rot: 3.141592653589793 rad pos: -11.5,-10.5 parent: 2 type: Transform - links: - - 25531 + - 25611 type: DeviceLinkSink - - uid: 12602 + - uid: 12638 components: - rot: 1.5707963267948966 rad pos: -25.5,25.5 parent: 2 type: Transform - links: - - 25519 + - 25599 type: DeviceLinkSink - - uid: 12603 + - uid: 12639 components: - rot: 1.5707963267948966 rad pos: -26.5,25.5 parent: 2 type: Transform - links: - - 25519 + - 25599 type: DeviceLinkSink - - uid: 12604 + - uid: 12640 components: - rot: 1.5707963267948966 rad pos: -27.5,25.5 parent: 2 type: Transform - links: - - 25519 + - 25599 type: DeviceLinkSink - - uid: 12605 + - uid: 12641 components: - rot: 1.5707963267948966 rad pos: -28.5,25.5 parent: 2 type: Transform - links: - - 25519 + - 25599 type: DeviceLinkSink - - uid: 12606 + - uid: 12642 components: - rot: 1.5707963267948966 rad pos: -30.5,25.5 parent: 2 type: Transform - links: - - 25519 + - 25599 type: DeviceLinkSink - - uid: 12607 + - uid: 12643 components: - rot: 1.5707963267948966 rad pos: -29.5,25.5 parent: 2 type: Transform - links: - - 25519 + - 25599 type: DeviceLinkSink - - uid: 12608 + - uid: 12644 components: - rot: 1.5707963267948966 rad pos: -35.5,25.5 parent: 2 type: Transform - links: - - 25523 + - 25603 type: DeviceLinkSink - - uid: 12609 + - uid: 12645 components: - rot: 1.5707963267948966 rad pos: -34.5,25.5 parent: 2 type: Transform - links: - - 25523 + - 25603 type: DeviceLinkSink - - uid: 12610 + - uid: 12646 components: - rot: 1.5707963267948966 rad pos: -36.5,25.5 parent: 2 type: Transform - links: - - 25523 + - 25603 type: DeviceLinkSink - - uid: 12611 + - uid: 12647 components: - rot: 1.5707963267948966 rad pos: -37.5,25.5 parent: 2 type: Transform - links: - - 25523 + - 25603 type: DeviceLinkSink - - uid: 12612 + - uid: 12648 components: - rot: 1.5707963267948966 rad pos: -38.5,25.5 parent: 2 type: Transform - links: - - 25523 + - 25603 type: DeviceLinkSink - - uid: 12613 + - uid: 12649 components: - rot: 1.5707963267948966 rad pos: -48.5,19.5 parent: 2 type: Transform - links: - - 25522 + - 25602 type: DeviceLinkSink - - uid: 12614 + - uid: 12650 components: - rot: 1.5707963267948966 rad pos: -49.5,19.5 parent: 2 type: Transform - links: - - 25522 + - 25602 type: DeviceLinkSink - - uid: 12615 + - uid: 12651 components: - rot: 1.5707963267948966 rad pos: -50.5,19.5 parent: 2 type: Transform - links: - - 25522 + - 25602 type: DeviceLinkSink - - uid: 12616 + - uid: 12652 components: - rot: 1.5707963267948966 rad pos: -51.5,19.5 parent: 2 type: Transform - links: - - 25522 + - 25602 type: DeviceLinkSink - - uid: 12617 + - uid: 12653 components: - rot: 1.5707963267948966 rad pos: -48.5,23.5 parent: 2 type: Transform - links: - - 25521 + - 25601 type: DeviceLinkSink - - uid: 12618 + - uid: 12654 components: - rot: 1.5707963267948966 rad pos: -49.5,23.5 parent: 2 type: Transform - links: - - 25521 + - 25601 type: DeviceLinkSink - - uid: 12619 + - uid: 12655 components: - rot: 1.5707963267948966 rad pos: -50.5,23.5 parent: 2 type: Transform - links: - - 25521 + - 25601 type: DeviceLinkSink - - uid: 12620 + - uid: 12656 components: - rot: 1.5707963267948966 rad pos: -51.5,23.5 parent: 2 type: Transform - links: - - 25521 + - 25601 type: DeviceLinkSink - - uid: 12621 + - uid: 12657 components: - rot: 1.5707963267948966 rad pos: -52.5,19.5 parent: 2 type: Transform - links: - - 25522 + - 25602 type: DeviceLinkSink - - uid: 12622 + - uid: 12658 components: - rot: 1.5707963267948966 rad pos: -53.5,19.5 parent: 2 type: Transform - links: - - 25522 + - 25602 type: DeviceLinkSink - - uid: 12623 + - uid: 12659 components: - rot: 1.5707963267948966 rad pos: -47.5,19.5 parent: 2 type: Transform - links: - - 25522 + - 25602 type: DeviceLinkSink - - uid: 12624 + - uid: 12660 components: - rot: 1.5707963267948966 rad pos: -46.5,19.5 parent: 2 type: Transform - links: - - 25522 + - 25602 type: DeviceLinkSink - - uid: 12625 + - uid: 12661 components: - rot: 1.5707963267948966 rad pos: -47.5,23.5 parent: 2 type: Transform - links: - - 25521 + - 25601 type: DeviceLinkSink - - uid: 12626 + - uid: 12662 components: - rot: 1.5707963267948966 rad pos: -46.5,23.5 parent: 2 type: Transform - links: - - 25521 + - 25601 type: DeviceLinkSink - - uid: 12627 + - uid: 12663 components: - rot: 1.5707963267948966 rad pos: -53.5,23.5 parent: 2 type: Transform - links: - - 25521 + - 25601 type: DeviceLinkSink - - uid: 12628 + - uid: 12664 components: - rot: 1.5707963267948966 rad pos: -52.5,23.5 parent: 2 type: Transform - links: - - 25521 + - 25601 type: DeviceLinkSink - - uid: 12629 + - uid: 12665 components: - rot: 3.141592653589793 rad pos: -42.5,14.5 parent: 2 type: Transform - links: - - 25520 + - 25600 type: DeviceLinkSink - - uid: 12630 + - uid: 12666 components: - rot: 1.5707963267948966 rad pos: -51.5,30.5 parent: 2 type: Transform - links: - - 25525 + - 25605 type: DeviceLinkSink - - uid: 12631 + - uid: 12667 components: - rot: 1.5707963267948966 rad pos: -52.5,30.5 parent: 2 type: Transform - links: - - 25525 + - 25605 type: DeviceLinkSink - - uid: 12632 + - uid: 12668 components: - rot: 1.5707963267948966 rad pos: -50.5,30.5 parent: 2 type: Transform - links: - - 25525 + - 25605 type: DeviceLinkSink - - uid: 12633 + - uid: 12669 components: - rot: 1.5707963267948966 rad pos: -49.5,30.5 parent: 2 type: Transform - links: - - 25525 + - 25605 type: DeviceLinkSink - - uid: 12634 + - uid: 12670 components: - rot: 1.5707963267948966 rad pos: -48.5,30.5 parent: 2 type: Transform - links: - - 25525 + - 25605 type: DeviceLinkSink - - uid: 12635 + - uid: 12671 components: - rot: 1.5707963267948966 rad pos: -52.5,34.5 parent: 2 type: Transform - links: - - 25526 + - 25606 type: DeviceLinkSink - - uid: 12636 + - uid: 12672 components: - rot: 1.5707963267948966 rad pos: -51.5,34.5 parent: 2 type: Transform - links: - - 25526 + - 25606 type: DeviceLinkSink - - uid: 12637 + - uid: 12673 components: - rot: 1.5707963267948966 rad pos: -50.5,34.5 parent: 2 type: Transform - links: - - 25526 + - 25606 type: DeviceLinkSink - - uid: 12638 + - uid: 12674 components: - rot: 1.5707963267948966 rad pos: -49.5,34.5 parent: 2 type: Transform - links: - - 25526 + - 25606 type: DeviceLinkSink - - uid: 12639 + - uid: 12675 components: - rot: 1.5707963267948966 rad pos: -48.5,34.5 parent: 2 type: Transform - links: - - 25526 + - 25606 type: DeviceLinkSink - - uid: 12640 + - uid: 12676 components: - rot: 1.5707963267948966 rad pos: -53.5,34.5 parent: 2 type: Transform - links: - - 25526 + - 25606 type: DeviceLinkSink - - uid: 12641 + - uid: 12677 components: - rot: 1.5707963267948966 rad pos: -53.5,30.5 parent: 2 type: Transform - links: - - 25525 + - 25605 type: DeviceLinkSink - - uid: 12642 + - uid: 12678 components: - rot: 1.5707963267948966 rad pos: -47.5,34.5 parent: 2 type: Transform - links: - - 25526 + - 25606 type: DeviceLinkSink - - uid: 12643 + - uid: 12679 components: - rot: 1.5707963267948966 rad pos: -47.5,30.5 parent: 2 type: Transform - links: - - 25525 + - 25605 type: DeviceLinkSink - - uid: 12644 + - uid: 12680 components: - rot: -1.5707963267948966 rad pos: -12.5,27.5 parent: 2 type: Transform - links: - - 25524 + - 25604 type: DeviceLinkSink - - uid: 12645 + - uid: 12681 components: - pos: -10.5,28.5 parent: 2 type: Transform - links: - - 25524 + - 25604 type: DeviceLinkSink - - uid: 12646 + - uid: 12682 components: - rot: -1.5707963267948966 rad pos: -9.5,28.5 parent: 2 type: Transform - links: - - 25524 + - 25604 type: DeviceLinkSink - - uid: 12647 + - uid: 12683 components: - rot: 3.141592653589793 rad pos: -42.5,15.5 parent: 2 type: Transform - links: - - 25520 + - 25600 type: DeviceLinkSink - - uid: 12648 + - uid: 12684 components: - rot: 3.141592653589793 rad pos: -42.5,17.5 parent: 2 type: Transform - links: - - 25520 + - 25600 type: DeviceLinkSink - - uid: 12649 + - uid: 12685 components: - rot: 3.141592653589793 rad pos: -42.5,13.5 parent: 2 type: Transform - links: - - 25520 + - 25600 type: DeviceLinkSink - - uid: 12650 + - uid: 12686 components: - pos: -47.5,13.5 parent: 2 type: Transform - links: - - 25527 + - 25607 type: DeviceLinkSink - - uid: 12651 + - uid: 12687 components: - pos: -47.5,14.5 parent: 2 type: Transform - links: - - 25527 + - 25607 type: DeviceLinkSink - - uid: 12652 + - uid: 12688 components: - pos: -47.5,12.5 parent: 2 type: Transform - links: - - 25527 + - 25607 type: DeviceLinkSink - - uid: 12653 + - uid: 12689 components: - rot: 1.5707963267948966 rad pos: -8.5,22.5 parent: 2 type: Transform - links: - - 25524 + - 25604 type: DeviceLinkSink - - uid: 12654 + - uid: 12690 components: - rot: 1.5707963267948966 rad pos: -7.5,22.5 parent: 2 type: Transform - links: - - 25524 + - 25604 type: DeviceLinkSink - - uid: 12655 + - uid: 12691 components: - rot: 1.5707963267948966 rad pos: -6.5,22.5 parent: 2 type: Transform - links: - - 25524 + - 25604 type: DeviceLinkSink - - uid: 12656 + - uid: 12692 components: - rot: 1.5707963267948966 rad pos: 43.5,37.5 parent: 2 type: Transform - links: - - 25528 + - 25608 type: DeviceLinkSink - - uid: 12657 + - uid: 12693 components: - rot: 1.5707963267948966 rad pos: 44.5,37.5 parent: 2 type: Transform - links: - - 25528 + - 25608 type: DeviceLinkSink - - uid: 12658 + - uid: 12694 components: - rot: 1.5707963267948966 rad pos: 45.5,37.5 parent: 2 type: Transform - links: - - 25528 + - 25608 type: DeviceLinkSink - - uid: 12659 + - uid: 12695 components: - pos: 46.5,37.5 parent: 2 type: Transform - links: - - 25528 + - 25608 type: DeviceLinkSink - - uid: 12660 + - uid: 12696 components: - rot: 1.5707963267948966 rad pos: 46.5,36.5 parent: 2 type: Transform - links: - - 25528 + - 25608 type: DeviceLinkSink - - uid: 12661 + - uid: 12697 components: - rot: 1.5707963267948966 rad pos: 47.5,36.5 parent: 2 type: Transform - links: - - 25528 + - 25608 type: DeviceLinkSink - - uid: 12662 + - uid: 12698 components: - rot: 3.141592653589793 rad pos: 48.5,36.5 parent: 2 type: Transform - links: - - 25528 + - 25608 type: DeviceLinkSink - - uid: 12663 + - uid: 12699 components: - rot: 3.141592653589793 rad pos: 48.5,37.5 parent: 2 type: Transform - links: - - 25528 + - 25608 type: DeviceLinkSink - - uid: 12664 + - uid: 12700 components: - rot: 1.5707963267948966 rad pos: -9.5,22.5 parent: 2 type: Transform - links: - - 25524 + - 25604 type: DeviceLinkSink - - uid: 12665 + - uid: 12701 components: - pos: -9.5,27.5 parent: 2 type: Transform - links: - - 25524 + - 25604 type: DeviceLinkSink - - uid: 12666 + - uid: 12702 components: - pos: -9.5,26.5 parent: 2 type: Transform - links: - - 25524 + - 25604 type: DeviceLinkSink - - uid: 12667 + - uid: 12703 components: - pos: -9.5,25.5 parent: 2 type: Transform - links: - - 25524 + - 25604 type: DeviceLinkSink - - uid: 12668 + - uid: 12704 components: - pos: -9.5,24.5 parent: 2 type: Transform - links: - - 25524 + - 25604 type: DeviceLinkSink - - uid: 12669 + - uid: 12705 components: - pos: -9.5,23.5 parent: 2 type: Transform - links: - - 25524 + - 25604 type: DeviceLinkSink - type: ActiveConveyor - - uid: 12670 + - uid: 12706 components: - rot: 3.141592653589793 rad pos: -10.5,22.5 parent: 2 type: Transform - links: - - 25524 + - 25604 type: DeviceLinkSink - - uid: 12671 + - uid: 12707 components: - rot: 1.5707963267948966 rad pos: -10.5,23.5 parent: 2 type: Transform - links: - - 25524 + - 25604 type: DeviceLinkSink - - uid: 12672 + - uid: 12708 components: - rot: -1.5707963267948966 rad pos: -10.5,27.5 parent: 2 type: Transform - links: - - 25524 + - 25604 type: DeviceLinkSink - - uid: 12673 + - uid: 12709 components: - rot: -1.5707963267948966 rad pos: -11.5,27.5 parent: 2 type: Transform - links: - - 25524 + - 25604 type: DeviceLinkSink - - uid: 12674 + - uid: 12710 components: - rot: 3.141592653589793 rad pos: 48.5,38.5 parent: 2 type: Transform - links: - - 25528 + - 25608 type: DeviceLinkSink - - uid: 12675 + - uid: 12711 components: - rot: 3.141592653589793 rad pos: -37.5,-99.5 parent: 2 type: Transform - links: - - 25529 - - 25530 + - 25609 + - 25610 type: DeviceLinkSink - - uid: 12676 + - uid: 12712 components: - rot: 3.141592653589793 rad pos: -37.5,-98.5 parent: 2 type: Transform - links: - - 25529 - - 25530 + - 25609 + - 25610 type: DeviceLinkSink - - uid: 12677 + - uid: 12713 components: - rot: 3.141592653589793 rad pos: -37.5,-100.5 parent: 2 type: Transform - links: - - 25529 - - 25530 + - 25609 + - 25610 type: DeviceLinkSink - - uid: 12678 + - uid: 12714 components: - rot: 3.141592653589793 rad pos: -37.5,-101.5 parent: 2 type: Transform - links: - - 25529 - - 25530 + - 25609 + - 25610 type: DeviceLinkSink - - uid: 12679 + - uid: 12715 components: - rot: 3.141592653589793 rad pos: -37.5,-102.5 parent: 2 type: Transform - links: - - 25529 - - 25530 + - 25609 + - 25610 type: DeviceLinkSink - - uid: 12680 + - uid: 12716 components: - rot: 3.141592653589793 rad pos: -37.5,-103.5 parent: 2 type: Transform - links: - - 25529 - - 25530 + - 25609 + - 25610 type: DeviceLinkSink - - uid: 12681 + - uid: 12717 components: - rot: 3.141592653589793 rad pos: -37.5,-104.5 parent: 2 type: Transform - links: - - 25529 - - 25530 + - 25609 + - 25610 type: DeviceLinkSink - - uid: 12682 + - uid: 12718 components: - rot: -1.5707963267948966 rad pos: -37.5,-105.5 parent: 2 type: Transform - links: - - 25529 - - 25530 + - 25609 + - 25610 type: DeviceLinkSink - - uid: 12683 + - uid: 12719 components: - rot: -1.5707963267948966 rad pos: -36.5,-105.5 parent: 2 type: Transform - links: - - 25529 - - 25530 + - 25609 + - 25610 type: DeviceLinkSink - - uid: 12684 + - uid: 12720 components: - rot: 3.141592653589793 rad pos: -38.5,-105.5 parent: 2 type: Transform - links: - - 25529 - - 25530 + - 25609 + - 25610 type: DeviceLinkSink - - uid: 12685 + - uid: 12721 components: - rot: 1.5707963267948966 rad pos: -38.5,-104.5 parent: 2 type: Transform - links: - - 25529 - - 25530 + - 25609 + - 25610 type: DeviceLinkSink - - uid: 12686 + - uid: 12722 components: - rot: 3.141592653589793 rad pos: -11.5,-11.5 parent: 2 type: Transform - links: - - 25531 + - 25611 type: DeviceLinkSink - - uid: 12687 + - uid: 12723 components: - rot: 3.141592653589793 rad pos: -11.5,-12.5 parent: 2 type: Transform - links: - - 25531 + - 25611 type: DeviceLinkSink - - uid: 12688 + - uid: 12724 components: - rot: 3.141592653589793 rad pos: -42.5,16.5 parent: 2 type: Transform - links: - - 25520 + - 25600 type: DeviceLinkSink - - uid: 12689 + - uid: 12725 components: - pos: -16.5,10.5 parent: 2 type: Transform - invokeCounter: 2 links: - - 25532 + - 25612 type: DeviceLinkSink - - uid: 12690 + - uid: 12726 components: - pos: -16.5,9.5 parent: 2 type: Transform - invokeCounter: 2 links: - - 25532 + - 25612 type: DeviceLinkSink - - uid: 12691 + - uid: 12727 components: - pos: -16.5,8.5 parent: 2 type: Transform - invokeCounter: 2 links: - - 25532 + - 25612 type: DeviceLinkSink - proto: ConveyorBeltAssembly entities: - - uid: 12692 + - uid: 12728 components: - pos: -27.603226,-31.351301 parent: 2 type: Transform - proto: CounterWoodFrame entities: - - uid: 12693 + - uid: 12729 components: - pos: -47.5,-64.5 parent: 2 type: Transform - proto: CrateAirlockKit entities: - - uid: 12694 + - uid: 12730 components: - pos: 44.5,-7.5 parent: 2 type: Transform - proto: CrateArtifactContainer entities: - - uid: 12695 + - uid: 12731 components: - pos: 73.5,-36.5 parent: 2 @@ -84644,12 +80203,12 @@ entities: type: EntityStorage - proto: CrateCoffin entities: - - uid: 12696 + - uid: 12732 components: - pos: -31.5,10.5 parent: 2 type: Transform - - uid: 12697 + - uid: 12733 components: - pos: -32.5,10.5 parent: 2 @@ -84672,7 +80231,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12698 + - uid: 12734 components: - pos: -31.5,8.5 parent: 2 @@ -84695,14 +80254,14 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12699 + - uid: 12735 components: - pos: -55.5,-67.5 parent: 2 type: Transform - proto: CrateEmergencyFire entities: - - uid: 12700 + - uid: 12736 components: - pos: -39.5,-15.5 parent: 2 @@ -84725,7 +80284,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12701 + - uid: 12737 components: - pos: -38.5,23.5 parent: 2 @@ -84774,44 +80333,44 @@ entities: type: PlaceableSurface - proto: CrateEmptySpawner entities: - - uid: 12702 + - uid: 12738 components: - pos: -43.5,23.5 parent: 2 type: Transform - - uid: 12703 + - uid: 12739 components: - pos: -44.5,22.5 parent: 2 type: Transform - - uid: 12704 + - uid: 12740 components: - pos: -40.5,20.5 parent: 2 type: Transform - - uid: 12705 + - uid: 12741 components: - pos: -38.5,19.5 parent: 2 type: Transform - - uid: 12706 + - uid: 12742 components: - pos: 6.5,49.5 parent: 2 type: Transform - - uid: 12707 + - uid: 12743 components: - pos: -35.5,-96.5 parent: 2 type: Transform - - uid: 12708 + - uid: 12744 components: - pos: -36.5,-96.5 parent: 2 type: Transform - proto: CrateEngineeringAMEJar entities: - - uid: 12709 + - uid: 12745 components: - pos: -50.5,-13.5 parent: 2 @@ -84836,7 +80395,7 @@ entities: type: EntityStorage - proto: CrateEngineeringAMEShielding entities: - - uid: 12710 + - uid: 12746 components: - pos: -50.5,-14.5 parent: 2 @@ -84859,7 +80418,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12711 + - uid: 12747 components: - pos: -50.5,-12.5 parent: 2 @@ -84884,7 +80443,7 @@ entities: type: EntityStorage - proto: CrateEngineeringCableLV entities: - - uid: 12712 + - uid: 12748 components: - pos: -42.5,-15.5 parent: 2 @@ -84909,7 +80468,7 @@ entities: type: EntityStorage - proto: CrateEngineeringElectricalSupplies entities: - - uid: 12713 + - uid: 12749 components: - pos: 22.5,-49.5 parent: 2 @@ -84934,24 +80493,24 @@ entities: type: EntityStorage - proto: CrateFilledSpawner entities: - - uid: 12714 + - uid: 12750 components: - pos: -31.5,-48.5 parent: 2 type: Transform - - uid: 12715 + - uid: 12751 components: - pos: 72.5,-56.5 parent: 2 type: Transform - - uid: 12716 + - uid: 12752 components: - pos: 71.5,-62.5 parent: 2 type: Transform - proto: CrateFoodCooking entities: - - uid: 12717 + - uid: 12753 components: - pos: -47.5,-80.5 parent: 2 @@ -84976,7 +80535,7 @@ entities: type: EntityStorage - proto: CrateFunBoardGames entities: - - uid: 12718 + - uid: 12754 components: - pos: 63.5,6.5 parent: 2 @@ -85001,14 +80560,14 @@ entities: type: EntityStorage - proto: CrateFunToyBox entities: - - uid: 12719 + - uid: 12755 components: - pos: 1.5,-19.5 parent: 2 type: Transform - proto: CrateHydroponicsSeeds entities: - - uid: 12720 + - uid: 12756 components: - pos: 12.5,-52.5 parent: 2 @@ -85033,7 +80592,7 @@ entities: type: EntityStorage - proto: CrateHydroponicsSeedsExotic entities: - - uid: 12721 + - uid: 12757 components: - pos: -47.5,-70.5 parent: 2 @@ -85058,14 +80617,14 @@ entities: type: EntityStorage - proto: CrateMaterialGlass entities: - - uid: 12722 + - uid: 12758 components: - pos: 43.5,-7.5 parent: 2 type: Transform - proto: CrateMousetrapBoxes entities: - - uid: 12723 + - uid: 12759 components: - pos: 60.5,42.5 parent: 2 @@ -85090,7 +80649,7 @@ entities: type: EntityStorage - proto: CratePirate entities: - - uid: 12724 + - uid: 12760 components: - pos: 3.5,-11.5 parent: 2 @@ -85115,7 +80674,7 @@ entities: type: EntityStorage - proto: CrateScience entities: - - uid: 12725 + - uid: 12761 components: - pos: 73.5,-34.5 parent: 2 @@ -85140,7 +80699,7 @@ entities: type: EntityStorage - proto: CrateSecurityNonlethal entities: - - uid: 12726 + - uid: 12762 components: - pos: 29.5,29.5 parent: 2 @@ -85165,7 +80724,7 @@ entities: type: EntityStorage - proto: CrateServiceJanitorialSupplies entities: - - uid: 12727 + - uid: 12763 components: - pos: -9.5,-21.5 parent: 2 @@ -85190,7 +80749,7 @@ entities: type: EntityStorage - proto: CrateServiceSmokeables entities: - - uid: 12728 + - uid: 12764 components: - pos: 56.5,59.5 parent: 2 @@ -85215,7 +80774,7 @@ entities: type: EntityStorage - proto: CrateStoneGrave entities: - - uid: 12729 + - uid: 12765 components: - pos: -32.5,4.5 parent: 2 @@ -85240,63 +80799,63 @@ entities: type: EntityStorage - proto: CrateTrashCart entities: - - uid: 12730 + - uid: 12766 components: - pos: 19.5,-49.5 parent: 2 type: Transform - - uid: 12731 + - uid: 12767 components: - pos: -38.5,-93.5 parent: 2 type: Transform - - uid: 12732 + - uid: 12768 components: - pos: -10.5,14.5 parent: 2 type: Transform - - uid: 12733 + - uid: 12769 components: - pos: -52.5,-34.5 parent: 2 type: Transform - proto: CrateTrashCartFilled entities: - - uid: 12734 + - uid: 12770 components: - pos: 1.5,-12.5 parent: 2 type: Transform - - uid: 12735 + - uid: 12771 components: - pos: 18.5,-49.5 parent: 2 type: Transform - - uid: 12736 + - uid: 12772 components: - pos: 5.5,-17.5 parent: 2 type: Transform - - uid: 12737 + - uid: 12773 components: - pos: -40.5,-3.5 parent: 2 type: Transform - proto: CrateTrashCartJani entities: - - uid: 12738 + - uid: 12774 components: - pos: -15.5,-8.5 parent: 2 type: Transform - proto: CrateWoodenGrave entities: - - uid: 12739 + - uid: 12775 components: - pos: -10.5,55.5 parent: 2 type: Transform - - uid: 12740 + - uid: 12776 components: - pos: -30.5,4.5 parent: 2 @@ -85319,39 +80878,39 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12741 + - uid: 12777 components: - pos: -32.5,6.5 parent: 2 type: Transform - proto: CrayonBox entities: - - uid: 12742 + - uid: 12778 components: - pos: -29.428709,8.545935 parent: 2 type: Transform - - uid: 12743 + - uid: 12779 components: - rot: 3.141592653589793 rad pos: 54.561592,-64.4996 parent: 2 type: Transform - - uid: 12744 + - uid: 12780 components: - pos: 0.5708022,-23.573645 parent: 2 type: Transform - proto: CrayonMime entities: - - uid: 12745 + - uid: 12781 components: - pos: -28.463287,46.56972 parent: 2 type: Transform - proto: Crematorium entities: - - uid: 12746 + - uid: 12782 components: - pos: -33.5,11.5 parent: 2 @@ -85376,147 +80935,147 @@ entities: type: EntityStorage - proto: CrewMonitoringComputerCircuitboard entities: - - uid: 12747 + - uid: 12783 components: - pos: 53.35249,35.65033 parent: 2 type: Transform - - uid: 12748 + - uid: 12784 components: - pos: -12.410412,37.664482 parent: 2 type: Transform - proto: CrewMonitoringServer entities: - - uid: 12749 + - uid: 12785 components: - pos: 8.5,-58.5 parent: 2 type: Transform - proto: CrewMonitoringServerMachineCircuitboard entities: - - uid: 12750 + - uid: 12786 components: - pos: -12.176037,37.430107 parent: 2 type: Transform - proto: Crowbar entities: - - uid: 12751 + - uid: 12787 components: - pos: 73.47424,-38.51016 parent: 2 type: Transform - - uid: 12752 + - uid: 12788 components: - pos: -29.495306,-23.60064 parent: 2 type: Transform - - uid: 12753 + - uid: 12789 components: - pos: 40.56214,-53.476734 parent: 2 type: Transform - - uid: 12754 + - uid: 12790 components: - pos: -56.61051,-70.40599 parent: 2 type: Transform - - uid: 12755 + - uid: 12791 components: - pos: -23.432364,-28.473803 parent: 2 type: Transform - - uid: 12756 + - uid: 12792 components: - pos: -36.564224,18.558977 parent: 2 type: Transform - - uid: 12757 + - uid: 12793 components: - rot: 6.283185307179586 rad pos: 57.539654,47.47334 parent: 2 type: Transform - - uid: 12758 + - uid: 12794 components: - pos: -9.421157,-15.518739 parent: 2 type: Transform - - uid: 12759 + - uid: 12795 components: - pos: 62.5,6.5 parent: 2 type: Transform - proto: CrowbarRed entities: - - uid: 12760 + - uid: 12796 components: - pos: 52.637024,11.413784 parent: 2 type: Transform - - uid: 12761 + - uid: 12797 components: - pos: -16.370653,65.49348 parent: 2 type: Transform - - uid: 12762 + - uid: 12798 components: - pos: 2.5771694,-21.302826 parent: 2 type: Transform - proto: CryoPod entities: - - uid: 12763 + - uid: 12799 components: - pos: -24.5,-59.5 parent: 2 type: Transform - proto: CryoxadoneBeakerSmall entities: - - uid: 12764 + - uid: 12800 components: - pos: -26.756777,-59.261105 parent: 2 type: Transform - proto: CultAltarSpawner entities: - - uid: 12765 + - uid: 12801 components: - pos: -56.5,-62.5 parent: 2 type: Transform - - uid: 12766 + - uid: 12802 components: - pos: -18.5,-81.5 parent: 2 type: Transform - proto: d10Dice entities: - - uid: 12767 + - uid: 12803 components: - pos: 9.458234,-7.2284737 parent: 2 type: Transform - - uid: 12768 + - uid: 12804 components: - pos: -29.44911,-46.43667 parent: 2 type: Transform - proto: d6Dice entities: - - uid: 12769 + - uid: 12805 components: - pos: -1.2845753,31.100819 parent: 2 type: Transform - - uid: 12770 + - uid: 12806 components: - rot: 1.5707963267948966 rad pos: 54.383816,29.301033 parent: 2 type: Transform - - uid: 12771 + - uid: 12807 components: - rot: 1.5707963267948966 rad pos: 54.165066,28.926033 @@ -85524,14 +81083,14 @@ entities: type: Transform - proto: d8Dice entities: - - uid: 12772 + - uid: 12808 components: - pos: 10.036359,-7.0722237 parent: 2 type: Transform - proto: DefibrillatorCabinet entities: - - uid: 12773 + - uid: 12809 components: - rot: 1.5707963267948966 rad pos: 19.5,21.5 @@ -85539,95 +81098,95 @@ entities: type: Transform - proto: DefibrillatorCabinetFilled entities: - - uid: 12774 + - uid: 12810 components: - rot: 1.5707963267948966 rad pos: -26.5,-72.5 parent: 2 type: Transform - - uid: 12775 + - uid: 12811 components: - pos: 44.5,16.5 parent: 2 type: Transform - - uid: 12776 + - uid: 12812 components: - pos: -1.5,-58.5 parent: 2 type: Transform - - uid: 12777 + - uid: 12813 components: - pos: -4.5,-58.5 parent: 2 type: Transform - - uid: 12778 + - uid: 12814 components: - pos: -7.5,-58.5 parent: 2 type: Transform - - uid: 12779 + - uid: 12815 components: - rot: -1.5707963267948966 rad pos: -30.5,-38.5 parent: 2 type: Transform - - uid: 12780 + - uid: 12816 components: - pos: -32.5,-8.5 parent: 2 type: Transform - - uid: 12781 + - uid: 12817 components: - pos: -28.5,20.5 parent: 2 type: Transform - - uid: 12782 + - uid: 12818 components: - pos: -9.5,47.5 parent: 2 type: Transform - - uid: 12783 + - uid: 12819 components: - rot: -1.5707963267948966 rad pos: 33.5,18.5 parent: 2 type: Transform - - uid: 12784 + - uid: 12820 components: - pos: -5.5,-51.5 parent: 2 type: Transform - - uid: 12785 + - uid: 12821 components: - pos: 29.5,-3.5 parent: 2 type: Transform - - uid: 12786 + - uid: 12822 components: - pos: 33.5,-70.5 parent: 2 type: Transform - - uid: 12787 + - uid: 12823 components: - pos: 56.5,-43.5 parent: 2 type: Transform - - uid: 12788 + - uid: 12824 components: - pos: 6.5,-24.5 parent: 2 type: Transform - - uid: 12789 + - uid: 12825 components: - pos: 32.5,-23.5 parent: 2 type: Transform - - uid: 12790 + - uid: 12826 components: - pos: -48.5,45.5 parent: 2 type: Transform - - uid: 12791 + - uid: 12827 components: - rot: -1.5707963267948966 rad pos: 66.5,-10.5 @@ -85635,756 +81194,761 @@ entities: type: Transform - proto: DeployableBarrier entities: - - uid: 12792 + - uid: 12828 components: - pos: 29.5,25.5 parent: 2 type: Transform - - uid: 12793 + - uid: 12829 components: - pos: -16.5,27.5 parent: 2 type: Transform - - uid: 12794 + - uid: 12830 components: - pos: 62.5,7.5 parent: 2 type: Transform - proto: DeskBell entities: - - uid: 12795 + - uid: 12831 components: - pos: 26.493649,19.578499 parent: 2 type: Transform missingComponents: - Item - - uid: 12796 + - uid: 12832 components: - pos: -26.393543,22.737104 parent: 2 type: Transform missingComponents: - Item - - uid: 12797 + - uid: 12833 components: - pos: 2.482698,4.566377 parent: 2 type: Transform missingComponents: - Item - - uid: 12798 + - uid: 12834 components: - pos: 7.4455647,7.463886 parent: 2 type: Transform missingComponents: - Item - - uid: 12799 + - uid: 12835 components: - pos: 15.491525,13.615058 parent: 2 type: Transform missingComponents: - Item - - uid: 12800 + - uid: 12836 components: - pos: -2.9507003,-48.39704 parent: 2 type: Transform missingComponents: - Item - - uid: 12801 + - uid: 12837 components: - pos: 42.281975,-40.51448 parent: 2 type: Transform missingComponents: - Item + - uid: 12838 + components: + - pos: 51.51352,-39.9676 + parent: 2 + type: Transform - proto: DiceBag entities: - - uid: 12802 + - uid: 12839 components: - pos: 10.645734,-7.4315987 parent: 2 type: Transform - - uid: 12803 + - uid: 12840 components: - pos: 23.269382,-29.34838 parent: 2 type: Transform - - uid: 12804 + - uid: 12841 components: - pos: -0.45645034,30.694569 parent: 2 type: Transform - - uid: 12805 + - uid: 12842 components: - pos: -16.724815,61.696495 parent: 2 type: Transform - - uid: 12806 + - uid: 12843 components: - pos: -18.55294,62.55587 parent: 2 type: Transform - proto: DiseaseDiagnoser entities: - - uid: 12807 + - uid: 12844 components: - pos: -22.5,-75.5 parent: 2 type: Transform - proto: DisposalBend entities: - - uid: 12808 + - uid: 12845 components: - rot: 1.5707963267948966 rad pos: -0.5,1.5 parent: 2 type: Transform - - uid: 12809 + - uid: 12846 components: - pos: 21.5,-29.5 parent: 2 type: Transform - - uid: 12810 + - uid: 12847 components: - rot: 1.5707963267948966 rad pos: -19.5,-60.5 parent: 2 type: Transform - - uid: 12811 + - uid: 12848 components: - pos: 34.5,8.5 parent: 2 type: Transform - - uid: 12812 + - uid: 12849 components: - rot: 1.5707963267948966 rad pos: -14.5,-9.5 parent: 2 type: Transform - - uid: 12813 + - uid: 12850 components: - rot: 1.5707963267948966 rad pos: 16.5,-18.5 parent: 2 type: Transform - - uid: 12814 + - uid: 12851 components: - pos: 0.5,0.5 parent: 2 type: Transform - - uid: 12815 + - uid: 12852 components: - rot: 1.5707963267948966 rad pos: 0.5,2.5 parent: 2 type: Transform - - uid: 12816 + - uid: 12853 components: - rot: 3.141592653589793 rad pos: 8.5,13.5 parent: 2 type: Transform - - uid: 12817 + - uid: 12854 components: - rot: 1.5707963267948966 rad pos: 17.5,7.5 parent: 2 type: Transform - - uid: 12818 + - uid: 12855 components: - rot: -1.5707963267948966 rad pos: 22.5,7.5 parent: 2 type: Transform - - uid: 12819 + - uid: 12856 components: - rot: 1.5707963267948966 rad pos: 22.5,8.5 parent: 2 type: Transform - - uid: 12820 + - uid: 12857 components: - rot: -1.5707963267948966 rad pos: 20.5,-25.5 parent: 2 type: Transform - - uid: 12821 + - uid: 12858 components: - pos: 36.5,-17.5 parent: 2 type: Transform - - uid: 12822 + - uid: 12859 components: - pos: 1.5,-53.5 parent: 2 type: Transform - - uid: 12823 + - uid: 12860 components: - rot: -1.5707963267948966 rad pos: 34.5,-6.5 parent: 2 type: Transform - - uid: 12824 + - uid: 12861 components: - pos: 18.5,-49.5 parent: 2 type: Transform - - uid: 12825 + - uid: 12862 components: - rot: 3.141592653589793 rad pos: 15.5,-45.5 parent: 2 type: Transform - - uid: 12826 + - uid: 12863 components: - rot: 3.141592653589793 rad pos: -4.5,-12.5 parent: 2 type: Transform - - uid: 12827 + - uid: 12864 components: - rot: 1.5707963267948966 rad pos: -15.5,-53.5 parent: 2 type: Transform - - uid: 12828 + - uid: 12865 components: - rot: -1.5707963267948966 rad pos: -15.5,-54.5 parent: 2 type: Transform - - uid: 12829 + - uid: 12866 components: - rot: 1.5707963267948966 rad pos: -17.5,-54.5 parent: 2 type: Transform - - uid: 12830 + - uid: 12867 components: - pos: 18.5,1.5 parent: 2 type: Transform - - uid: 12831 + - uid: 12868 components: - rot: 3.141592653589793 rad pos: 10.5,-3.5 parent: 2 type: Transform - - uid: 12832 + - uid: 12869 components: - rot: -1.5707963267948966 rad pos: 0.5,1.5 parent: 2 type: Transform - - uid: 12833 + - uid: 12870 components: - rot: 3.141592653589793 rad pos: 0.5,-0.5 parent: 2 type: Transform - - uid: 12834 + - uid: 12871 components: - pos: 12.5,13.5 parent: 2 type: Transform - - uid: 12835 + - uid: 12872 components: - rot: 3.141592653589793 rad pos: 22.5,-11.5 parent: 2 type: Transform - - uid: 12836 + - uid: 12873 components: - rot: 3.141592653589793 rad pos: 18.5,-6.5 parent: 2 type: Transform - - uid: 12837 + - uid: 12874 components: - rot: 3.141592653589793 rad pos: -23.5,-84.5 parent: 2 type: Transform - - uid: 12838 + - uid: 12875 components: - rot: -1.5707963267948966 rad pos: 17.5,0.5 parent: 2 type: Transform - - uid: 12839 + - uid: 12876 components: - pos: 17.5,-45.5 parent: 2 type: Transform - - uid: 12840 + - uid: 12877 components: - rot: -1.5707963267948966 rad pos: 24.5,-18.5 parent: 2 type: Transform - - uid: 12841 + - uid: 12878 components: - rot: -1.5707963267948966 rad pos: -17.5,-60.5 parent: 2 type: Transform - - uid: 12842 + - uid: 12879 components: - rot: -1.5707963267948966 rad pos: 13.5,-0.5 parent: 2 type: Transform - - uid: 12843 + - uid: 12880 components: - rot: 1.5707963267948966 rad pos: -23.5,-73.5 parent: 2 type: Transform - - uid: 12844 + - uid: 12881 components: - pos: 15.5,19.5 parent: 2 type: Transform - - uid: 12845 + - uid: 12882 components: - pos: -3.5,-12.5 parent: 2 type: Transform - - uid: 12846 + - uid: 12883 components: - pos: 15.5,-25.5 parent: 2 type: Transform - - uid: 12847 + - uid: 12884 components: - rot: 3.141592653589793 rad pos: 17.5,-49.5 parent: 2 type: Transform - - uid: 12848 + - uid: 12885 components: - rot: -1.5707963267948966 rad pos: 34.5,16.5 parent: 2 type: Transform - - uid: 12849 + - uid: 12886 components: - pos: 29.5,17.5 parent: 2 type: Transform - - uid: 12850 + - uid: 12887 components: - rot: 3.141592653589793 rad pos: 29.5,16.5 parent: 2 type: Transform - - uid: 12851 + - uid: 12888 components: - pos: 41.5,6.5 parent: 2 type: Transform - - uid: 12852 + - uid: 12889 components: - rot: 3.141592653589793 rad pos: 52.5,-13.5 parent: 2 type: Transform - - uid: 12853 + - uid: 12890 components: - pos: 54.5,-13.5 parent: 2 type: Transform - - uid: 12854 + - uid: 12891 components: - pos: 49.5,-43.5 parent: 2 type: Transform - - uid: 12855 + - uid: 12892 components: - rot: -1.5707963267948966 rad pos: 49.5,-50.5 parent: 2 type: Transform - - uid: 12856 + - uid: 12893 components: - pos: 67.5,-45.5 parent: 2 type: Transform - - uid: 12857 + - uid: 12894 components: - pos: 49.5,-55.5 parent: 2 type: Transform - - uid: 12858 + - uid: 12895 components: - rot: -1.5707963267948966 rad pos: -6.5,-66.5 parent: 2 type: Transform - - uid: 12859 + - uid: 12896 components: - rot: 3.141592653589793 rad pos: -23.5,-15.5 parent: 2 type: Transform - - uid: 12860 + - uid: 12897 components: - rot: 3.141592653589793 rad pos: 25.5,-60.5 parent: 2 type: Transform - - uid: 12861 + - uid: 12898 components: - pos: 39.5,-60.5 parent: 2 type: Transform - - uid: 12862 + - uid: 12899 components: - rot: 3.141592653589793 rad pos: -19.5,-43.5 parent: 2 type: Transform - - uid: 12863 + - uid: 12900 components: - rot: -1.5707963267948966 rad pos: 39.5,-73.5 parent: 2 type: Transform - - uid: 12864 + - uid: 12901 components: - rot: -1.5707963267948966 rad pos: -13.5,-6.5 parent: 2 type: Transform - - uid: 12865 + - uid: 12902 components: - pos: -13.5,8.5 parent: 2 type: Transform - - uid: 12866 + - uid: 12903 components: - rot: -1.5707963267948966 rad pos: -19.5,6.5 parent: 2 type: Transform - - uid: 12867 + - uid: 12904 components: - rot: 3.141592653589793 rad pos: -25.5,-6.5 parent: 2 type: Transform - - uid: 12868 + - uid: 12905 components: - rot: 3.141592653589793 rad pos: -32.5,-13.5 parent: 2 type: Transform - - uid: 12869 + - uid: 12906 components: - pos: -32.5,-10.5 parent: 2 type: Transform - - uid: 12870 + - uid: 12907 components: - rot: 3.141592653589793 rad pos: -36.5,-10.5 parent: 2 type: Transform - - uid: 12871 + - uid: 12908 components: - pos: -36.5,-5.5 parent: 2 type: Transform - - uid: 12872 + - uid: 12909 components: - rot: 3.141592653589793 rad pos: -38.5,-5.5 parent: 2 type: Transform - - uid: 12873 + - uid: 12910 components: - rot: 1.5707963267948966 rad pos: -19.5,-75.5 parent: 2 type: Transform - - uid: 12874 + - uid: 12911 components: - rot: -1.5707963267948966 rad pos: -19.5,-77.5 parent: 2 type: Transform - - uid: 12875 + - uid: 12912 components: - rot: 1.5707963267948966 rad pos: -36.5,-77.5 parent: 2 type: Transform - - uid: 12876 + - uid: 12913 components: - rot: 3.141592653589793 rad pos: -42.5,23.5 parent: 2 type: Transform - - uid: 12877 + - uid: 12914 components: - rot: 1.5707963267948966 rad pos: -42.5,19.5 parent: 2 type: Transform - - uid: 12878 + - uid: 12915 components: - rot: 1.5707963267948966 rad pos: -45.5,5.5 parent: 2 type: Transform - - uid: 12879 + - uid: 12916 components: - rot: 3.141592653589793 rad pos: -45.5,-0.5 parent: 2 type: Transform - - uid: 12880 + - uid: 12917 components: - pos: 2.5,-61.5 parent: 2 type: Transform - - uid: 12881 + - uid: 12918 components: - rot: 1.5707963267948966 rad pos: -13.5,-61.5 parent: 2 type: Transform - - uid: 12882 + - uid: 12919 components: - rot: -1.5707963267948966 rad pos: -13.5,-67.5 parent: 2 type: Transform - - uid: 12883 + - uid: 12920 components: - rot: -1.5707963267948966 rad pos: -12.5,5.5 parent: 2 type: Transform - - uid: 12884 + - uid: 12921 components: - rot: -1.5707963267948966 rad pos: -45.5,11.5 parent: 2 type: Transform - - uid: 12885 + - uid: 12922 components: - rot: 1.5707963267948966 rad pos: -45.5,18.5 parent: 2 type: Transform - - uid: 12886 + - uid: 12923 components: - rot: -1.5707963267948966 rad pos: 20.5,-40.5 parent: 2 type: Transform - - uid: 12887 + - uid: 12924 components: - rot: 1.5707963267948966 rad pos: 19.5,-40.5 parent: 2 type: Transform - - uid: 12888 + - uid: 12925 components: - rot: 1.5707963267948966 rad pos: -19.5,29.5 parent: 2 type: Transform - - uid: 12889 + - uid: 12926 components: - rot: -1.5707963267948966 rad pos: -15.5,29.5 parent: 2 type: Transform - - uid: 12890 + - uid: 12927 components: - rot: 3.141592653589793 rad pos: -17.5,44.5 parent: 2 type: Transform - - uid: 12891 + - uid: 12928 components: - pos: -4.5,44.5 parent: 2 type: Transform - - uid: 12892 + - uid: 12929 components: - pos: -13.5,50.5 parent: 2 type: Transform - - uid: 12893 + - uid: 12930 components: - rot: 1.5707963267948966 rad pos: -17.5,50.5 parent: 2 type: Transform - - uid: 12894 + - uid: 12931 components: - rot: -1.5707963267948966 rad pos: 75.5,-47.5 parent: 2 type: Transform - - uid: 12895 + - uid: 12932 components: - pos: -5.5,-13.5 parent: 2 type: Transform - - uid: 12896 + - uid: 12933 components: - rot: 3.141592653589793 rad pos: -10.5,-13.5 parent: 2 type: Transform - - uid: 12897 + - uid: 12934 components: - rot: 3.141592653589793 rad pos: -18.5,-14.5 parent: 2 type: Transform - - uid: 12898 + - uid: 12935 components: - rot: -1.5707963267948966 rad pos: -12.5,-14.5 parent: 2 type: Transform - - uid: 12899 + - uid: 12936 components: - pos: -18.5,-4.5 parent: 2 type: Transform - - uid: 12900 + - uid: 12937 components: - rot: 3.141592653589793 rad pos: -24.5,-4.5 parent: 2 type: Transform - - uid: 12901 + - uid: 12938 components: - rot: 1.5707963267948966 rad pos: -24.5,8.5 parent: 2 type: Transform - - uid: 12902 + - uid: 12939 components: - rot: -1.5707963267948966 rad pos: -20.5,8.5 parent: 2 type: Transform - - uid: 12903 + - uid: 12940 components: - pos: -20.5,20.5 parent: 2 type: Transform - - uid: 12904 + - uid: 12941 components: - rot: 1.5707963267948966 rad pos: -25.5,20.5 parent: 2 type: Transform - - uid: 12905 + - uid: 12942 components: - rot: -1.5707963267948966 rad pos: -25.5,19.5 parent: 2 type: Transform - - uid: 12906 + - uid: 12943 components: - rot: 1.5707963267948966 rad pos: -46.5,11.5 parent: 2 type: Transform - - uid: 12907 + - uid: 12944 components: - rot: 3.141592653589793 rad pos: -46.5,0.5 parent: 2 type: Transform - - uid: 12908 + - uid: 12945 components: - pos: -26.5,0.5 parent: 2 type: Transform - - uid: 12909 + - uid: 12946 components: - rot: 3.141592653589793 rad pos: -26.5,-5.5 parent: 2 type: Transform - - uid: 12910 + - uid: 12947 components: - pos: -20.5,-5.5 parent: 2 type: Transform - - uid: 12911 + - uid: 12948 components: - rot: 3.141592653589793 rad pos: -20.5,-25.5 parent: 2 type: Transform - - uid: 12912 + - uid: 12949 components: - rot: -1.5707963267948966 rad pos: 30.5,-86.5 parent: 2 type: Transform - - uid: 12913 + - uid: 12950 components: - rot: 1.5707963267948966 rad pos: 24.5,-73.5 parent: 2 type: Transform - - uid: 12914 + - uid: 12951 components: - rot: 3.141592653589793 rad pos: 15.5,17.5 parent: 2 type: Transform - - uid: 12915 + - uid: 12952 components: - pos: -67.5,-41.5 parent: 2 type: Transform - - uid: 12916 + - uid: 12953 components: - rot: 3.141592653589793 rad pos: -67.5,-42.5 parent: 2 type: Transform - - uid: 12917 + - uid: 12954 components: - rot: -1.5707963267948966 rad pos: 12.5,2.5 parent: 2 type: Transform - - uid: 12918 + - uid: 12955 components: - rot: 1.5707963267948966 rad pos: 13.5,0.5 parent: 2 type: Transform - - uid: 12919 + - uid: 12956 components: - rot: 3.141592653589793 rad pos: -43.5,-38.5 parent: 2 type: Transform - - uid: 12920 + - uid: 12957 components: - rot: 3.141592653589793 rad pos: 3.5,-3.5 parent: 2 type: Transform - - uid: 12921 + - uid: 12958 components: - rot: 3.141592653589793 rad pos: 3.5,-5.5 @@ -86392,159 +81956,159 @@ entities: type: Transform - proto: DisposalJunction entities: - - uid: 12922 + - uid: 12959 components: - rot: -1.5707963267948966 rad pos: 19.5,-43.5 parent: 2 type: Transform - - uid: 12923 + - uid: 12960 components: - rot: -1.5707963267948966 rad pos: 25.5,8.5 parent: 2 type: Transform - - uid: 12924 + - uid: 12961 components: - rot: 1.5707963267948966 rad pos: -7.5,0.5 parent: 2 type: Transform - - uid: 12925 + - uid: 12962 components: - rot: -1.5707963267948966 rad pos: 6.5,2.5 parent: 2 type: Transform - - uid: 12926 + - uid: 12963 components: - rot: -1.5707963267948966 rad pos: -0.5,0.5 parent: 2 type: Transform - - uid: 12927 + - uid: 12964 components: - rot: 3.141592653589793 rad pos: 24.5,-10.5 parent: 2 type: Transform - - uid: 12928 + - uid: 12965 components: - rot: -1.5707963267948966 rad pos: 18.5,-29.5 parent: 2 type: Transform - - uid: 12929 + - uid: 12966 components: - rot: 3.141592653589793 rad pos: 34.5,6.5 parent: 2 type: Transform - - uid: 12930 + - uid: 12967 components: - rot: 1.5707963267948966 rad pos: -13.5,-43.5 parent: 2 type: Transform - - uid: 12931 + - uid: 12968 components: - rot: 1.5707963267948966 rad pos: -5.5,-53.5 parent: 2 type: Transform - - uid: 12932 + - uid: 12969 components: - rot: 3.141592653589793 rad pos: 16.5,-29.5 parent: 2 type: Transform - - uid: 12933 + - uid: 12970 components: - rot: -1.5707963267948966 rad pos: 18.5,7.5 parent: 2 type: Transform - - uid: 12934 + - uid: 12971 components: - rot: 1.5707963267948966 rad pos: -4.5,-27.5 parent: 2 type: Transform - - uid: 12935 + - uid: 12972 components: - rot: -1.5707963267948966 rad pos: 36.5,-43.5 parent: 2 type: Transform - - uid: 12936 + - uid: 12973 components: - rot: -1.5707963267948966 rad pos: 41.5,1.5 parent: 2 type: Transform - - uid: 12937 + - uid: 12974 components: - rot: -1.5707963267948966 rad pos: 46.5,-43.5 parent: 2 type: Transform - - uid: 12938 + - uid: 12975 components: - rot: 3.141592653589793 rad pos: 49.5,-45.5 parent: 2 type: Transform - - uid: 12939 + - uid: 12976 components: - rot: 3.141592653589793 rad pos: 49.5,-47.5 parent: 2 type: Transform - - uid: 12940 + - uid: 12977 components: - rot: 3.141592653589793 rad pos: 67.5,-47.5 parent: 2 type: Transform - - uid: 12941 + - uid: 12978 components: - rot: 1.5707963267948966 rad pos: -23.5,-13.5 parent: 2 type: Transform - - uid: 12942 + - uid: 12979 components: - pos: -19.5,-13.5 parent: 2 type: Transform - - uid: 12943 + - uid: 12980 components: - pos: -25.5,-0.5 parent: 2 type: Transform - - uid: 12944 + - uid: 12981 components: - pos: -19.5,23.5 parent: 2 type: Transform - - uid: 12945 + - uid: 12982 components: - rot: 1.5707963267948966 rad pos: -6.5,-61.5 parent: 2 type: Transform - - uid: 12946 + - uid: 12983 components: - pos: -15.5,37.5 parent: 2 type: Transform - - uid: 12947 + - uid: 12984 components: - rot: 1.5707963267948966 rad pos: 30.5,-73.5 parent: 2 type: Transform - - uid: 12948 + - uid: 12985 components: - rot: -1.5707963267948966 rad pos: 2.5,-27.5 @@ -86552,150 +82116,150 @@ entities: type: Transform - proto: DisposalJunctionFlipped entities: - - uid: 12949 + - uid: 12986 components: - rot: 1.5707963267948966 rad pos: -9.5,0.5 parent: 2 type: Transform - - uid: 12950 + - uid: 12987 components: - rot: -1.5707963267948966 rad pos: -0.5,-43.5 parent: 2 type: Transform - - uid: 12951 + - uid: 12988 components: - pos: 24.5,-17.5 parent: 2 type: Transform - - uid: 12952 + - uid: 12989 components: - rot: 1.5707963267948966 rad pos: 21.5,17.5 parent: 2 type: Transform - - uid: 12953 + - uid: 12990 components: - rot: -1.5707963267948966 rad pos: 3.5,-0.5 parent: 2 type: Transform - - uid: 12954 + - uid: 12991 components: - pos: 36.5,-18.5 parent: 2 type: Transform - - uid: 12955 + - uid: 12992 components: - pos: 16.5,-25.5 parent: 2 type: Transform - - uid: 12956 + - uid: 12993 components: - rot: 1.5707963267948966 rad pos: -5.5,-25.5 parent: 2 type: Transform - - uid: 12957 + - uid: 12994 components: - rot: 3.141592653589793 rad pos: -0.5,-45.5 parent: 2 type: Transform - - uid: 12958 + - uid: 12995 components: - pos: 34.5,1.5 parent: 2 type: Transform - - uid: 12959 + - uid: 12996 components: - rot: 3.141592653589793 rad pos: -17.5,-57.5 parent: 2 type: Transform - - uid: 12960 + - uid: 12997 components: - pos: 12.5,5.5 parent: 2 type: Transform - - uid: 12961 + - uid: 12998 components: - rot: -1.5707963267948966 rad pos: 10.5,-0.5 parent: 2 type: Transform - - uid: 12962 + - uid: 12999 components: - rot: -1.5707963267948966 rad pos: 6.5,-0.5 parent: 2 type: Transform - - uid: 12963 + - uid: 13000 components: - rot: -1.5707963267948966 rad pos: 24.5,-6.5 parent: 2 type: Transform - - uid: 12964 + - uid: 13001 components: - rot: 3.141592653589793 rad pos: 24.5,-11.5 parent: 2 type: Transform - - uid: 12965 + - uid: 13002 components: - rot: 3.141592653589793 rad pos: -4.5,-33.5 parent: 2 type: Transform - - uid: 12966 + - uid: 13003 components: - rot: -1.5707963267948966 rad pos: 6.5,-43.5 parent: 2 type: Transform - - uid: 12967 + - uid: 13004 components: - pos: 17.5,1.5 parent: 2 type: Transform - - uid: 12968 + - uid: 13005 components: - rot: 1.5707963267948966 rad pos: -10.5,-27.5 parent: 2 type: Transform - - uid: 12969 + - uid: 13006 components: - rot: -1.5707963267948966 rad pos: 25.5,-43.5 parent: 2 type: Transform - - uid: 12970 + - uid: 13007 components: - rot: 3.141592653589793 rad pos: -23.5,-75.5 parent: 2 type: Transform - - uid: 12971 + - uid: 13008 components: - rot: -1.5707963267948966 rad pos: 29.5,-60.5 parent: 2 type: Transform - - uid: 12972 + - uid: 13009 components: - pos: -13.5,5.5 parent: 2 type: Transform - - uid: 12973 + - uid: 13010 components: - rot: 1.5707963267948966 rad pos: -22.5,23.5 parent: 2 type: Transform - - uid: 12974 + - uid: 13011 components: - rot: -1.5707963267948966 rad pos: -3.5,-61.5 @@ -86703,6497 +82267,6497 @@ entities: type: Transform - proto: DisposalMachineFrame entities: - - uid: 12975 + - uid: 13012 components: - pos: 46.5,44.5 parent: 2 type: Transform - - uid: 12976 + - uid: 13013 components: - pos: -57.5,-41.5 parent: 2 type: Transform - - uid: 12977 + - uid: 13014 components: - pos: -22.5,-24.5 parent: 2 type: Transform - - uid: 12978 + - uid: 13015 components: - pos: -19.5,-99.5 parent: 2 type: Transform - proto: DisposalPipe entities: - - uid: 12979 + - uid: 13016 components: - rot: 3.141592653589793 rad pos: 2.5,-25.5 parent: 2 type: Transform - - uid: 12980 + - uid: 13017 components: - rot: 3.141592653589793 rad pos: 2.5,-26.5 parent: 2 type: Transform - - uid: 12981 + - uid: 13018 components: - rot: 3.141592653589793 rad pos: 2.5,-24.5 parent: 2 type: Transform - - uid: 12982 + - uid: 13019 components: - rot: 1.5707963267948966 rad pos: -6.5,-9.5 parent: 2 type: Transform - - uid: 12983 + - uid: 13020 components: - pos: 12.5,6.5 parent: 2 type: Transform - - uid: 12984 + - uid: 13021 components: - rot: -1.5707963267948966 rad pos: 1.5,2.5 parent: 2 type: Transform - - uid: 12985 + - uid: 13022 components: - pos: 36.5,-25.5 parent: 2 type: Transform - - uid: 12986 + - uid: 13023 components: - pos: 36.5,-22.5 parent: 2 type: Transform - - uid: 12987 + - uid: 13024 components: - rot: -1.5707963267948966 rad pos: 25.5,-6.5 parent: 2 type: Transform - - uid: 12988 + - uid: 13025 components: - pos: 16.5,-42.5 parent: 2 type: Transform - - uid: 12989 + - uid: 13026 components: - pos: 16.5,-41.5 parent: 2 type: Transform - - uid: 12990 + - uid: 13027 components: - rot: -1.5707963267948966 rad pos: 20.5,-43.5 parent: 2 type: Transform - - uid: 12991 + - uid: 13028 components: - rot: 1.5707963267948966 rad pos: 13.5,-43.5 parent: 2 type: Transform - - uid: 12992 + - uid: 13029 components: - rot: 1.5707963267948966 rad pos: 12.5,-43.5 parent: 2 type: Transform - - uid: 12993 + - uid: 13030 components: - rot: 1.5707963267948966 rad pos: 8.5,-43.5 parent: 2 type: Transform - - uid: 12994 + - uid: 13031 components: - rot: 1.5707963267948966 rad pos: 4.5,-43.5 parent: 2 type: Transform - - uid: 12995 + - uid: 13032 components: - rot: -1.5707963267948966 rad pos: 0.5,-43.5 parent: 2 type: Transform - - uid: 12996 + - uid: 13033 components: - rot: -1.5707963267948966 rad pos: 17.5,-29.5 parent: 2 type: Transform - - uid: 12997 + - uid: 13034 components: - pos: 21.5,-33.5 parent: 2 type: Transform - - uid: 12998 + - uid: 13035 components: - rot: 1.5707963267948966 rad pos: -13.5,-27.5 parent: 2 type: Transform - - uid: 12999 + - uid: 13036 components: - rot: -1.5707963267948966 rad pos: 31.5,-17.5 parent: 2 type: Transform - - uid: 13000 + - uid: 13037 components: - pos: 21.5,-30.5 parent: 2 type: Transform - - uid: 13001 + - uid: 13038 components: - pos: 21.5,-31.5 parent: 2 type: Transform - - uid: 13002 + - uid: 13039 components: - rot: -1.5707963267948966 rad pos: 33.5,-17.5 parent: 2 type: Transform - - uid: 13003 + - uid: 13040 components: - rot: -1.5707963267948966 rad pos: 32.5,8.5 parent: 2 type: Transform - - uid: 13004 + - uid: 13041 components: - rot: -1.5707963267948966 rad pos: -6.5,-43.5 parent: 2 type: Transform - - uid: 13005 + - uid: 13042 components: - rot: -1.5707963267948966 rad pos: -8.5,-43.5 parent: 2 type: Transform - - uid: 13006 + - uid: 13043 components: - pos: -13.5,-45.5 parent: 2 type: Transform - - uid: 13007 + - uid: 13044 components: - pos: -17.5,-55.5 parent: 2 type: Transform - - uid: 13008 + - uid: 13045 components: - rot: -1.5707963267948966 rad pos: -18.5,-60.5 parent: 2 type: Transform - - uid: 13009 + - uid: 13046 components: - pos: -19.5,-61.5 parent: 2 type: Transform - - uid: 13010 + - uid: 13047 components: - rot: 1.5707963267948966 rad pos: -6.5,-53.5 parent: 2 type: Transform - - uid: 13011 + - uid: 13048 components: - rot: -1.5707963267948966 rad pos: 11.5,-0.5 parent: 2 type: Transform - - uid: 13012 + - uid: 13049 components: - rot: 1.5707963267948966 rad pos: 8.5,2.5 parent: 2 type: Transform - - uid: 13013 + - uid: 13050 components: - rot: 3.141592653589793 rad pos: -4.5,-1.5 parent: 2 type: Transform - - uid: 13014 + - uid: 13051 components: - rot: 3.141592653589793 rad pos: 8.5,14.5 parent: 2 type: Transform - - uid: 13015 + - uid: 13052 components: - pos: 19.5,-41.5 parent: 2 type: Transform - - uid: 13016 + - uid: 13053 components: - pos: -9.5,1.5 parent: 2 type: Transform - - uid: 13017 + - uid: 13054 components: - pos: -9.5,4.5 parent: 2 type: Transform - - uid: 13018 + - uid: 13055 components: - pos: -9.5,3.5 parent: 2 type: Transform - - uid: 13019 + - uid: 13056 components: - pos: -9.5,2.5 parent: 2 type: Transform - - uid: 13020 + - uid: 13057 components: - rot: -1.5707963267948966 rad pos: 10.5,13.5 parent: 2 type: Transform - - uid: 13021 + - uid: 13058 components: - pos: 24.5,-9.5 parent: 2 type: Transform - - uid: 13022 + - uid: 13059 components: - rot: 1.5707963267948966 rad pos: 23.5,-6.5 parent: 2 type: Transform - - uid: 13023 + - uid: 13060 components: - pos: 24.5,-7.5 parent: 2 type: Transform - - uid: 13024 + - uid: 13061 components: - rot: -1.5707963267948966 rad pos: 3.5,2.5 parent: 2 type: Transform - - uid: 13025 + - uid: 13062 components: - rot: 1.5707963267948966 rad pos: -5.5,0.5 parent: 2 type: Transform - - uid: 13026 + - uid: 13063 components: - pos: -23.5,-74.5 parent: 2 type: Transform - - uid: 13027 + - uid: 13064 components: - pos: 12.5,11.5 parent: 2 type: Transform - - uid: 13028 + - uid: 13065 components: - rot: -1.5707963267948966 rad pos: -14.5,-43.5 parent: 2 type: Transform - - uid: 13029 + - uid: 13066 components: - rot: 1.5707963267948966 rad pos: -8.5,0.5 parent: 2 type: Transform - - uid: 13030 + - uid: 13067 components: - rot: 1.5707963267948966 rad pos: -8.5,-27.5 parent: 2 type: Transform - - uid: 13031 + - uid: 13068 components: - rot: 1.5707963267948966 rad pos: -9.5,-9.5 parent: 2 type: Transform - - uid: 13032 + - uid: 13069 components: - rot: 1.5707963267948966 rad pos: -2.5,0.5 parent: 2 type: Transform - - uid: 13033 + - uid: 13070 components: - rot: -1.5707963267948966 rad pos: 21.5,7.5 parent: 2 type: Transform - - uid: 13034 + - uid: 13071 components: - pos: 36.5,-24.5 parent: 2 type: Transform - - uid: 13035 + - uid: 13072 components: - pos: 34.5,-4.5 parent: 2 type: Transform - - uid: 13036 + - uid: 13073 components: - pos: 34.5,-2.5 parent: 2 type: Transform - - uid: 13037 + - uid: 13074 components: - rot: 3.141592653589793 rad pos: 34.5,5.5 parent: 2 type: Transform - - uid: 13038 + - uid: 13075 components: - rot: -1.5707963267948966 rad pos: 39.5,6.5 parent: 2 type: Transform - - uid: 13039 + - uid: 13076 components: - rot: -1.5707963267948966 rad pos: 28.5,-6.5 parent: 2 type: Transform - - uid: 13040 + - uid: 13077 components: - rot: -1.5707963267948966 rad pos: 26.5,-6.5 parent: 2 type: Transform - - uid: 13041 + - uid: 13078 components: - rot: 1.5707963267948966 rad pos: 11.5,-43.5 parent: 2 type: Transform - - uid: 13042 + - uid: 13079 components: - rot: 1.5707963267948966 rad pos: 9.5,-43.5 parent: 2 type: Transform - - uid: 13043 + - uid: 13080 components: - rot: 1.5707963267948966 rad pos: 10.5,-43.5 parent: 2 type: Transform - - uid: 13044 + - uid: 13081 components: - rot: 1.5707963267948966 rad pos: 7.5,-43.5 parent: 2 type: Transform - - uid: 13045 + - uid: 13082 components: - rot: 1.5707963267948966 rad pos: 5.5,-43.5 parent: 2 type: Transform - - uid: 13046 + - uid: 13083 components: - rot: -1.5707963267948966 rad pos: 1.5,-43.5 parent: 2 type: Transform - - uid: 13047 + - uid: 13084 components: - pos: 6.5,-44.5 parent: 2 type: Transform - - uid: 13048 + - uid: 13085 components: - pos: 21.5,-32.5 parent: 2 type: Transform - - uid: 13049 + - uid: 13086 components: - rot: 1.5707963267948966 rad pos: 20.5,-18.5 parent: 2 type: Transform - - uid: 13050 + - uid: 13087 components: - pos: 24.5,-13.5 parent: 2 type: Transform - - uid: 13051 + - uid: 13088 components: - rot: 1.5707963267948966 rad pos: 22.5,17.5 parent: 2 type: Transform - - uid: 13052 + - uid: 13089 components: - rot: -1.5707963267948966 rad pos: 28.5,17.5 parent: 2 type: Transform - - uid: 13053 + - uid: 13090 components: - pos: 25.5,15.5 parent: 2 type: Transform - - uid: 13054 + - uid: 13091 components: - rot: 1.5707963267948966 rad pos: 21.5,-6.5 parent: 2 type: Transform - - uid: 13055 + - uid: 13092 components: - rot: -1.5707963267948966 rad pos: 26.5,8.5 parent: 2 type: Transform - - uid: 13056 + - uid: 13093 components: - rot: -1.5707963267948966 rad pos: 11.5,2.5 parent: 2 type: Transform - - uid: 13057 + - uid: 13094 components: - pos: 6.5,4.5 parent: 2 type: Transform - - uid: 13058 + - uid: 13095 components: - rot: 1.5707963267948966 rad pos: -17.5,-27.5 parent: 2 type: Transform - - uid: 13059 + - uid: 13096 components: - rot: 1.5707963267948966 rad pos: -15.5,-27.5 parent: 2 type: Transform - - uid: 13060 + - uid: 13097 components: - rot: 1.5707963267948966 rad pos: -16.5,-27.5 parent: 2 type: Transform - - uid: 13061 + - uid: 13098 components: - rot: 1.5707963267948966 rad pos: -6.5,-27.5 parent: 2 type: Transform - - uid: 13062 + - uid: 13099 components: - rot: 1.5707963267948966 rad pos: -5.5,-27.5 parent: 2 type: Transform - - uid: 13063 + - uid: 13100 components: - rot: 1.5707963267948966 rad pos: -14.5,-27.5 parent: 2 type: Transform - - uid: 13064 + - uid: 13101 components: - rot: -1.5707963267948966 rad pos: -5.5,-33.5 parent: 2 type: Transform - - uid: 13065 + - uid: 13102 components: - pos: -19.5,-63.5 parent: 2 type: Transform - - uid: 13066 + - uid: 13103 components: - rot: 1.5707963267948966 rad pos: 8.5,-27.5 parent: 2 type: Transform - - uid: 13067 + - uid: 13104 components: - rot: 1.5707963267948966 rad pos: 7.5,-27.5 parent: 2 type: Transform - - uid: 13068 + - uid: 13105 components: - rot: 1.5707963267948966 rad pos: 5.5,-27.5 parent: 2 type: Transform - - uid: 13069 + - uid: 13106 components: - rot: 1.5707963267948966 rad pos: 3.5,-27.5 parent: 2 type: Transform - - uid: 13070 + - uid: 13107 components: - pos: -23.5,-77.5 parent: 2 type: Transform - - uid: 13071 + - uid: 13108 components: - rot: 1.5707963267948966 rad pos: 1.5,-27.5 parent: 2 type: Transform - - uid: 13072 + - uid: 13109 components: - rot: 1.5707963267948966 rad pos: -0.5,-27.5 parent: 2 type: Transform - - uid: 13073 + - uid: 13110 components: - rot: 1.5707963267948966 rad pos: -2.5,-27.5 parent: 2 type: Transform - - uid: 13074 + - uid: 13111 components: - rot: 1.5707963267948966 rad pos: 2.5,-0.5 parent: 2 type: Transform - - uid: 13075 + - uid: 13112 components: - pos: 18.5,-2.5 parent: 2 type: Transform - - uid: 13076 + - uid: 13113 components: - rot: -1.5707963267948966 rad pos: 27.5,17.5 parent: 2 type: Transform - - uid: 13077 + - uid: 13114 components: - rot: 3.141592653589793 rad pos: 16.5,-34.5 parent: 2 type: Transform - - uid: 13078 + - uid: 13115 components: - rot: 3.141592653589793 rad pos: 16.5,-32.5 parent: 2 type: Transform - - uid: 13079 + - uid: 13116 components: - rot: 3.141592653589793 rad pos: 16.5,-30.5 parent: 2 type: Transform - - uid: 13080 + - uid: 13117 components: - rot: 3.141592653589793 rad pos: 16.5,-28.5 parent: 2 type: Transform - - uid: 13081 + - uid: 13118 components: - rot: -1.5707963267948966 rad pos: 28.5,8.5 parent: 2 type: Transform - - uid: 13082 + - uid: 13119 components: - rot: 1.5707963267948966 rad pos: 7.5,-0.5 parent: 2 type: Transform - - uid: 13083 + - uid: 13120 components: - rot: 3.141592653589793 rad pos: 18.5,-26.5 parent: 2 type: Transform - - uid: 13084 + - uid: 13121 components: - pos: 18.5,-3.5 parent: 2 type: Transform - - uid: 13085 + - uid: 13122 components: - rot: 1.5707963267948966 rad pos: 0.5,-27.5 parent: 2 type: Transform - - uid: 13086 + - uid: 13123 components: - rot: 1.5707963267948966 rad pos: -1.5,-27.5 parent: 2 type: Transform - - uid: 13087 + - uid: 13124 components: - rot: 3.141592653589793 rad pos: 16.5,-33.5 parent: 2 type: Transform - - uid: 13088 + - uid: 13125 components: - rot: 3.141592653589793 rad pos: 16.5,-31.5 parent: 2 type: Transform - - uid: 13089 + - uid: 13126 components: - rot: -1.5707963267948966 rad pos: 26.5,-17.5 parent: 2 type: Transform - - uid: 13090 + - uid: 13127 components: - rot: 1.5707963267948966 rad pos: 5.5,-0.5 parent: 2 type: Transform - - uid: 13091 + - uid: 13128 components: - rot: 1.5707963267948966 rad pos: -12.5,-53.5 parent: 2 type: Transform - - uid: 13092 + - uid: 13129 components: - rot: 1.5707963267948966 rad pos: 6.5,-27.5 parent: 2 type: Transform - - uid: 13093 + - uid: 13130 components: - pos: 24.5,-15.5 parent: 2 type: Transform - - uid: 13094 + - uid: 13131 components: - rot: 1.5707963267948966 rad pos: 22.5,-18.5 parent: 2 type: Transform - - uid: 13095 + - uid: 13132 components: - rot: 1.5707963267948966 rad pos: 18.5,-18.5 parent: 2 type: Transform - - uid: 13096 + - uid: 13133 components: - pos: 12.5,7.5 parent: 2 type: Transform - - uid: 13097 + - uid: 13134 components: - rot: 3.141592653589793 rad pos: 17.5,3.5 parent: 2 type: Transform - - uid: 13098 + - uid: 13135 components: - rot: 1.5707963267948966 rad pos: -1.5,0.5 parent: 2 type: Transform - - uid: 13099 + - uid: 13136 components: - rot: 1.5707963267948966 rad pos: -3.5,0.5 parent: 2 type: Transform - - uid: 13100 + - uid: 13137 components: - pos: 10.5,-2.5 parent: 2 type: Transform - - uid: 13101 + - uid: 13138 components: - rot: -1.5707963267948966 rad pos: 14.5,0.5 parent: 2 type: Transform - - uid: 13102 + - uid: 13139 components: - rot: -1.5707963267948966 rad pos: 16.5,0.5 parent: 2 type: Transform - - uid: 13103 + - uid: 13140 components: - rot: 3.141592653589793 rad pos: -4.5,-7.5 parent: 2 type: Transform - - uid: 13104 + - uid: 13141 components: - rot: 3.141592653589793 rad pos: -3.5,-18.5 parent: 2 type: Transform - - uid: 13105 + - uid: 13142 components: - rot: 3.141592653589793 rad pos: 18.5,-51.5 parent: 2 type: Transform - - uid: 13106 + - uid: 13143 components: - rot: 3.141592653589793 rad pos: 18.5,-50.5 parent: 2 type: Transform - - uid: 13107 + - uid: 13144 components: - rot: 3.141592653589793 rad pos: 15.5,-42.5 parent: 2 type: Transform - - uid: 13108 + - uid: 13145 components: - pos: -4.5,-42.5 parent: 2 type: Transform - - uid: 13109 + - uid: 13146 components: - pos: -4.5,-40.5 parent: 2 type: Transform - - uid: 13110 + - uid: 13147 components: - pos: -4.5,-38.5 parent: 2 type: Transform - - uid: 13111 + - uid: 13148 components: - pos: -4.5,-36.5 parent: 2 type: Transform - - uid: 13112 + - uid: 13149 components: - pos: -4.5,-34.5 parent: 2 type: Transform - - uid: 13113 + - uid: 13150 components: - pos: -4.5,-32.5 parent: 2 type: Transform - - uid: 13114 + - uid: 13151 components: - pos: -4.5,-30.5 parent: 2 type: Transform - - uid: 13115 + - uid: 13152 components: - rot: -1.5707963267948966 rad pos: -17.5,-43.5 parent: 2 type: Transform - - uid: 13116 + - uid: 13153 components: - rot: -1.5707963267948966 rad pos: -16.5,-43.5 parent: 2 type: Transform - - uid: 13117 + - uid: 13154 components: - rot: 1.5707963267948966 rad pos: 11.5,-27.5 parent: 2 type: Transform - - uid: 13118 + - uid: 13155 components: - rot: 1.5707963267948966 rad pos: 9.5,-27.5 parent: 2 type: Transform - - uid: 13119 + - uid: 13156 components: - rot: 1.5707963267948966 rad pos: 10.5,-27.5 parent: 2 type: Transform - - uid: 13120 + - uid: 13157 components: - rot: 1.5707963267948966 rad pos: -9.5,-27.5 parent: 2 type: Transform - - uid: 13121 + - uid: 13158 components: - rot: 1.5707963267948966 rad pos: -7.5,-27.5 parent: 2 type: Transform - - uid: 13122 + - uid: 13159 components: - rot: 1.5707963267948966 rad pos: 15.5,-27.5 parent: 2 type: Transform - - uid: 13123 + - uid: 13160 components: - rot: 1.5707963267948966 rad pos: 14.5,-27.5 parent: 2 type: Transform - - uid: 13124 + - uid: 13161 components: - rot: 1.5707963267948966 rad pos: 13.5,-27.5 parent: 2 type: Transform - - uid: 13125 + - uid: 13162 components: - rot: 1.5707963267948966 rad pos: -12.5,-27.5 parent: 2 type: Transform - - uid: 13126 + - uid: 13163 components: - rot: 1.5707963267948966 rad pos: -11.5,-27.5 parent: 2 type: Transform - - uid: 13127 + - uid: 13164 components: - pos: 17.5,-48.5 parent: 2 type: Transform - - uid: 13128 + - uid: 13165 components: - rot: -1.5707963267948966 rad pos: 1.5,-0.5 parent: 2 type: Transform - - uid: 13129 + - uid: 13166 components: - rot: -1.5707963267948966 rad pos: 2.5,2.5 parent: 2 type: Transform - - uid: 13130 + - uid: 13167 components: - rot: -1.5707963267948966 rad pos: 11.5,13.5 parent: 2 type: Transform - - uid: 13131 + - uid: 13168 components: - pos: 12.5,12.5 parent: 2 type: Transform - - uid: 13132 + - uid: 13169 components: - rot: 1.5707963267948966 rad pos: 23.5,17.5 parent: 2 type: Transform - - uid: 13133 + - uid: 13170 components: - rot: -1.5707963267948966 rad pos: 35.5,-17.5 parent: 2 type: Transform - - uid: 13134 + - uid: 13171 components: - pos: 36.5,-19.5 parent: 2 type: Transform - - uid: 13135 + - uid: 13172 components: - rot: -1.5707963267948966 rad pos: 30.5,8.5 parent: 2 type: Transform - - uid: 13136 + - uid: 13173 components: - rot: -1.5707963267948966 rad pos: 27.5,8.5 parent: 2 type: Transform - - uid: 13137 + - uid: 13174 components: - rot: -1.5707963267948966 rad pos: 29.5,8.5 parent: 2 type: Transform - - uid: 13138 + - uid: 13175 components: - rot: -1.5707963267948966 rad pos: 31.5,8.5 parent: 2 type: Transform - - uid: 13139 + - uid: 13176 components: - rot: -1.5707963267948966 rad pos: 26.5,-10.5 parent: 2 type: Transform - - uid: 13140 + - uid: 13177 components: - rot: 1.5707963267948966 rad pos: 23.5,-11.5 parent: 2 type: Transform - - uid: 13141 + - uid: 13178 components: - rot: -1.5707963267948966 rad pos: 20.5,7.5 parent: 2 type: Transform - - uid: 13142 + - uid: 13179 components: - rot: -1.5707963267948966 rad pos: 19.5,7.5 parent: 2 type: Transform - - uid: 13143 + - uid: 13180 components: - rot: -1.5707963267948966 rad pos: 23.5,8.5 parent: 2 type: Transform - - uid: 13144 + - uid: 13181 components: - rot: -1.5707963267948966 rad pos: 24.5,8.5 parent: 2 type: Transform - - uid: 13145 + - uid: 13182 components: - pos: 25.5,9.5 parent: 2 type: Transform - - uid: 13146 + - uid: 13183 components: - pos: 25.5,10.5 parent: 2 type: Transform - - uid: 13147 + - uid: 13184 components: - pos: 25.5,11.5 parent: 2 type: Transform - - uid: 13148 + - uid: 13185 components: - pos: 25.5,12.5 parent: 2 type: Transform - - uid: 13149 + - uid: 13186 components: - pos: 25.5,13.5 parent: 2 type: Transform - - uid: 13150 + - uid: 13187 components: - pos: 25.5,14.5 parent: 2 type: Transform - - uid: 13151 + - uid: 13188 components: - pos: 25.5,16.5 parent: 2 type: Transform - - uid: 13152 + - uid: 13189 components: - rot: -1.5707963267948966 rad pos: 26.5,17.5 parent: 2 type: Transform - - uid: 13153 + - uid: 13190 components: - rot: -1.5707963267948966 rad pos: 24.5,17.5 parent: 2 type: Transform - - uid: 13154 + - uid: 13191 components: - pos: 21.5,18.5 parent: 2 type: Transform - - uid: 13155 + - uid: 13192 components: - pos: 21.5,19.5 parent: 2 type: Transform - - uid: 13156 + - uid: 13193 components: - pos: 24.5,-12.5 parent: 2 type: Transform - - uid: 13157 + - uid: 13194 components: - rot: 1.5707963267948966 rad pos: 19.5,-18.5 parent: 2 type: Transform - - uid: 13158 + - uid: 13195 components: - rot: 1.5707963267948966 rad pos: 17.5,-18.5 parent: 2 type: Transform - - uid: 13159 + - uid: 13196 components: - pos: 16.5,-20.5 parent: 2 type: Transform - - uid: 13160 + - uid: 13197 components: - pos: 16.5,-21.5 parent: 2 type: Transform - - uid: 13161 + - uid: 13198 components: - pos: 16.5,-22.5 parent: 2 type: Transform - - uid: 13162 + - uid: 13199 components: - pos: 16.5,-23.5 parent: 2 type: Transform - - uid: 13163 + - uid: 13200 components: - pos: 16.5,-24.5 parent: 2 type: Transform - - uid: 13164 + - uid: 13201 components: - rot: -1.5707963267948966 rad pos: 17.5,-25.5 parent: 2 type: Transform - - uid: 13165 + - uid: 13202 components: - rot: -1.5707963267948966 rad pos: 19.5,-25.5 parent: 2 type: Transform - - uid: 13166 + - uid: 13203 components: - pos: 20.5,-24.5 parent: 2 type: Transform - - uid: 13167 + - uid: 13204 components: - rot: -1.5707963267948966 rad pos: 25.5,-17.5 parent: 2 type: Transform - - uid: 13168 + - uid: 13205 components: - rot: -1.5707963267948966 rad pos: 27.5,-17.5 parent: 2 type: Transform - - uid: 13169 + - uid: 13206 components: - rot: -1.5707963267948966 rad pos: 29.5,-17.5 parent: 2 type: Transform - - uid: 13170 + - uid: 13207 components: - rot: -1.5707963267948966 rad pos: 28.5,-17.5 parent: 2 type: Transform - - uid: 13171 + - uid: 13208 components: - rot: -1.5707963267948966 rad pos: 30.5,-17.5 parent: 2 type: Transform - - uid: 13172 + - uid: 13209 components: - rot: -1.5707963267948966 rad pos: 32.5,-17.5 parent: 2 type: Transform - - uid: 13173 + - uid: 13210 components: - rot: 3.141592653589793 rad pos: 16.5,-26.5 parent: 2 type: Transform - - uid: 13174 + - uid: 13211 components: - rot: -1.5707963267948966 rad pos: 19.5,-29.5 parent: 2 type: Transform - - uid: 13175 + - uid: 13212 components: - rot: -1.5707963267948966 rad pos: 20.5,-29.5 parent: 2 type: Transform - - uid: 13176 + - uid: 13213 components: - rot: -1.5707963267948966 rad pos: 34.5,-17.5 parent: 2 type: Transform - - uid: 13177 + - uid: 13214 components: - rot: 3.141592653589793 rad pos: 36.5,-20.5 parent: 2 type: Transform - - uid: 13178 + - uid: 13215 components: - rot: 3.141592653589793 rad pos: 36.5,-21.5 parent: 2 type: Transform - - uid: 13179 + - uid: 13216 components: - rot: -1.5707963267948966 rad pos: 33.5,8.5 parent: 2 type: Transform - - uid: 13180 + - uid: 13217 components: - rot: 3.141592653589793 rad pos: -4.5,-10.5 parent: 2 type: Transform - - uid: 13181 + - uid: 13218 components: - rot: -1.5707963267948966 rad pos: 7.5,-25.5 parent: 2 type: Transform - - uid: 13182 + - uid: 13219 components: - pos: -7.5,-1.5 parent: 2 type: Transform - - uid: 13183 + - uid: 13220 components: - rot: -1.5707963267948966 rad pos: 20.5,17.5 parent: 2 type: Transform - - uid: 13184 + - uid: 13221 components: - rot: -1.5707963267948966 rad pos: 19.5,17.5 parent: 2 type: Transform - - uid: 13185 + - uid: 13222 components: - rot: -1.5707963267948966 rad pos: -4.5,-25.5 parent: 2 type: Transform - - uid: 13186 + - uid: 13223 components: - pos: 16.5,-35.5 parent: 2 type: Transform - - uid: 13187 + - uid: 13224 components: - pos: 16.5,-36.5 parent: 2 type: Transform - - uid: 13188 + - uid: 13225 components: - pos: 16.5,-37.5 parent: 2 type: Transform - - uid: 13189 + - uid: 13226 components: - pos: 16.5,-38.5 parent: 2 type: Transform - - uid: 13190 + - uid: 13227 components: - pos: 16.5,-39.5 parent: 2 type: Transform - - uid: 13191 + - uid: 13228 components: - pos: 16.5,-40.5 parent: 2 type: Transform - - uid: 13192 + - uid: 13229 components: - rot: 3.141592653589793 rad pos: 1.5,-58.5 parent: 2 type: Transform - - uid: 13193 + - uid: 13230 components: - rot: 3.141592653589793 rad pos: 1.5,-57.5 parent: 2 type: Transform - - uid: 13194 + - uid: 13231 components: - rot: 3.141592653589793 rad pos: 1.5,-56.5 parent: 2 type: Transform - - uid: 13195 + - uid: 13232 components: - rot: 3.141592653589793 rad pos: 1.5,-55.5 parent: 2 type: Transform - - uid: 13196 + - uid: 13233 components: - rot: 3.141592653589793 rad pos: 1.5,-54.5 parent: 2 type: Transform - - uid: 13197 + - uid: 13234 components: - rot: -1.5707963267948966 rad pos: 0.5,-53.5 parent: 2 type: Transform - - uid: 13198 + - uid: 13235 components: - rot: -1.5707963267948966 rad pos: -1.5,-45.5 parent: 2 type: Transform - - uid: 13199 + - uid: 13236 components: - rot: 3.141592653589793 rad pos: -0.5,-52.5 parent: 2 type: Transform - - uid: 13200 + - uid: 13237 components: - rot: 3.141592653589793 rad pos: -0.5,-51.5 parent: 2 type: Transform - - uid: 13201 + - uid: 13238 components: - rot: 3.141592653589793 rad pos: -0.5,-50.5 parent: 2 type: Transform - - uid: 13202 + - uid: 13239 components: - rot: 3.141592653589793 rad pos: -0.5,-48.5 parent: 2 type: Transform - - uid: 13203 + - uid: 13240 components: - rot: 3.141592653589793 rad pos: -0.5,-47.5 parent: 2 type: Transform - - uid: 13204 + - uid: 13241 components: - pos: -0.5,-44.5 parent: 2 type: Transform - - uid: 13205 + - uid: 13242 components: - rot: -1.5707963267948966 rad pos: 27.5,-6.5 parent: 2 type: Transform - - uid: 13206 + - uid: 13243 components: - rot: -1.5707963267948966 rad pos: 29.5,-6.5 parent: 2 type: Transform - - uid: 13207 + - uid: 13244 components: - rot: -1.5707963267948966 rad pos: 30.5,-6.5 parent: 2 type: Transform - - uid: 13208 + - uid: 13245 components: - rot: -1.5707963267948966 rad pos: 31.5,-6.5 parent: 2 type: Transform - - uid: 13209 + - uid: 13246 components: - rot: -1.5707963267948966 rad pos: 32.5,-6.5 parent: 2 type: Transform - - uid: 13210 + - uid: 13247 components: - rot: -1.5707963267948966 rad pos: 33.5,-6.5 parent: 2 type: Transform - - uid: 13211 + - uid: 13248 components: - rot: 3.141592653589793 rad pos: 34.5,7.5 parent: 2 type: Transform - - uid: 13212 + - uid: 13249 components: - rot: -1.5707963267948966 rad pos: 35.5,6.5 parent: 2 type: Transform - - uid: 13213 + - uid: 13250 components: - rot: -1.5707963267948966 rad pos: 36.5,6.5 parent: 2 type: Transform - - uid: 13214 + - uid: 13251 components: - rot: -1.5707963267948966 rad pos: 37.5,6.5 parent: 2 type: Transform - - uid: 13215 + - uid: 13252 components: - rot: -1.5707963267948966 rad pos: 38.5,6.5 parent: 2 type: Transform - - uid: 13216 + - uid: 13253 components: - rot: -1.5707963267948966 rad pos: 40.5,6.5 parent: 2 type: Transform - - uid: 13217 + - uid: 13254 components: - rot: 3.141592653589793 rad pos: 34.5,3.5 parent: 2 type: Transform - - uid: 13218 + - uid: 13255 components: - pos: 34.5,-0.5 parent: 2 type: Transform - - uid: 13219 + - uid: 13256 components: - pos: 34.5,-1.5 parent: 2 type: Transform - - uid: 13220 + - uid: 13257 components: - pos: 36.5,-27.5 parent: 2 type: Transform - - uid: 13221 + - uid: 13258 components: - pos: 36.5,-28.5 parent: 2 type: Transform - - uid: 13222 + - uid: 13259 components: - rot: 3.141592653589793 rad pos: 15.5,-44.5 parent: 2 type: Transform - - uid: 13223 + - uid: 13260 components: - rot: 1.5707963267948966 rad pos: 16.5,-45.5 parent: 2 type: Transform - - uid: 13224 + - uid: 13261 components: - pos: 17.5,-46.5 parent: 2 type: Transform - - uid: 13225 + - uid: 13262 components: - rot: 1.5707963267948966 rad pos: 17.5,-43.5 parent: 2 type: Transform - - uid: 13226 + - uid: 13263 components: - rot: 1.5707963267948966 rad pos: 18.5,-43.5 parent: 2 type: Transform - - uid: 13227 + - uid: 13264 components: - pos: 19.5,-42.5 parent: 2 type: Transform - - uid: 13228 + - uid: 13265 components: - pos: 18.5,-27.5 parent: 2 type: Transform - - uid: 13229 + - uid: 13266 components: - pos: -23.5,-80.5 parent: 2 type: Transform - - uid: 13230 + - uid: 13267 components: - rot: -1.5707963267948966 rad pos: -2.5,-25.5 parent: 2 type: Transform - - uid: 13231 + - uid: 13268 components: - rot: -1.5707963267948966 rad pos: -3.5,-25.5 parent: 2 type: Transform - - uid: 13232 + - uid: 13269 components: - rot: 3.141592653589793 rad pos: -4.5,-2.5 parent: 2 type: Transform - - uid: 13233 + - uid: 13270 components: - rot: -1.5707963267948966 rad pos: -1.5,-25.5 parent: 2 type: Transform - - uid: 13234 + - uid: 13271 components: - rot: 3.141592653589793 rad pos: 15.5,-33.5 parent: 2 type: Transform - - uid: 13235 + - uid: 13272 components: - rot: -1.5707963267948966 rad pos: -1.5,-43.5 parent: 2 type: Transform - - uid: 13236 + - uid: 13273 components: - rot: -1.5707963267948966 rad pos: -2.5,-43.5 parent: 2 type: Transform - - uid: 13237 + - uid: 13274 components: - rot: -1.5707963267948966 rad pos: -3.5,-43.5 parent: 2 type: Transform - - uid: 13238 + - uid: 13275 components: - rot: -1.5707963267948966 rad pos: -5.5,-43.5 parent: 2 type: Transform - - uid: 13239 + - uid: 13276 components: - rot: -1.5707963267948966 rad pos: -7.5,-43.5 parent: 2 type: Transform - - uid: 13240 + - uid: 13277 components: - rot: -1.5707963267948966 rad pos: -9.5,-43.5 parent: 2 type: Transform - - uid: 13241 + - uid: 13278 components: - rot: -1.5707963267948966 rad pos: -10.5,-43.5 parent: 2 type: Transform - - uid: 13242 + - uid: 13279 components: - rot: -1.5707963267948966 rad pos: -11.5,-43.5 parent: 2 type: Transform - - uid: 13243 + - uid: 13280 components: - rot: -1.5707963267948966 rad pos: -12.5,-43.5 parent: 2 type: Transform - - uid: 13244 + - uid: 13281 components: - pos: -13.5,-44.5 parent: 2 type: Transform - - uid: 13245 + - uid: 13282 components: - pos: -13.5,-46.5 parent: 2 type: Transform - - uid: 13246 + - uid: 13283 components: - pos: -13.5,-47.5 parent: 2 type: Transform - - uid: 13247 + - uid: 13284 components: - pos: -13.5,-48.5 parent: 2 type: Transform - - uid: 13248 + - uid: 13285 components: - pos: -13.5,-49.5 parent: 2 type: Transform - - uid: 13249 + - uid: 13286 components: - pos: -13.5,-50.5 parent: 2 type: Transform - - uid: 13250 + - uid: 13287 components: - pos: -13.5,-51.5 parent: 2 type: Transform - - uid: 13251 + - uid: 13288 components: - pos: -13.5,-52.5 parent: 2 type: Transform - - uid: 13252 + - uid: 13289 components: - rot: 1.5707963267948966 rad pos: -14.5,-53.5 parent: 2 type: Transform - - uid: 13253 + - uid: 13290 components: - rot: 1.5707963267948966 rad pos: -16.5,-54.5 parent: 2 type: Transform - - uid: 13254 + - uid: 13291 components: - pos: -17.5,-56.5 parent: 2 type: Transform - - uid: 13255 + - uid: 13292 components: - rot: 3.141592653589793 rad pos: -17.5,-58.5 parent: 2 type: Transform - - uid: 13256 + - uid: 13293 components: - rot: 3.141592653589793 rad pos: -17.5,-59.5 parent: 2 type: Transform - - uid: 13257 + - uid: 13294 components: - rot: 1.5707963267948966 rad pos: -18.5,-57.5 parent: 2 type: Transform - - uid: 13258 + - uid: 13295 components: - rot: 1.5707963267948966 rad pos: -19.5,-57.5 parent: 2 type: Transform - - uid: 13259 + - uid: 13296 components: - pos: -19.5,-69.5 parent: 2 type: Transform - - uid: 13260 + - uid: 13297 components: - pos: -19.5,-70.5 parent: 2 type: Transform - - uid: 13261 + - uid: 13298 components: - pos: -19.5,-71.5 parent: 2 type: Transform - - uid: 13262 + - uid: 13299 components: - pos: -19.5,-72.5 parent: 2 type: Transform - - uid: 13263 + - uid: 13300 components: - rot: 1.5707963267948966 rad pos: -18.5,-73.5 parent: 2 type: Transform - - uid: 13264 + - uid: 13301 components: - rot: 1.5707963267948966 rad pos: -21.5,-73.5 parent: 2 type: Transform - - uid: 13265 + - uid: 13302 components: - rot: -1.5707963267948966 rad pos: -22.5,-73.5 parent: 2 type: Transform - - uid: 13266 + - uid: 13303 components: - pos: -23.5,-82.5 parent: 2 type: Transform - - uid: 13267 + - uid: 13304 components: - rot: 1.5707963267948966 rad pos: -9.5,-53.5 parent: 2 type: Transform - - uid: 13268 + - uid: 13305 components: - rot: 1.5707963267948966 rad pos: -2.5,-53.5 parent: 2 type: Transform - - uid: 13269 + - uid: 13306 components: - pos: 18.5,-4.5 parent: 2 type: Transform - - uid: 13270 + - uid: 13307 components: - rot: -1.5707963267948966 rad pos: 9.5,13.5 parent: 2 type: Transform - - uid: 13271 + - uid: 13308 components: - rot: -1.5707963267948966 rad pos: 1.5,-25.5 parent: 2 type: Transform - - uid: 13272 + - uid: 13309 components: - pos: 30.5,-77.5 parent: 2 type: Transform - - uid: 13273 + - uid: 13310 components: - pos: -4.5,-29.5 parent: 2 type: Transform - - uid: 13274 + - uid: 13311 components: - rot: 3.141592653589793 rad pos: 17.5,6.5 parent: 2 type: Transform - - uid: 13275 + - uid: 13312 components: - pos: 12.5,10.5 parent: 2 type: Transform - - uid: 13276 + - uid: 13313 components: - pos: 18.5,-0.5 parent: 2 type: Transform - - uid: 13277 + - uid: 13314 components: - pos: 12.5,9.5 parent: 2 type: Transform - - uid: 13278 + - uid: 13315 components: - pos: 12.5,3.5 parent: 2 type: Transform - - uid: 13279 + - uid: 13316 components: - rot: 3.141592653589793 rad pos: 17.5,4.5 parent: 2 type: Transform - - uid: 13280 + - uid: 13317 components: - rot: 3.141592653589793 rad pos: 17.5,2.5 parent: 2 type: Transform - - uid: 13281 + - uid: 13318 components: - pos: 18.5,-1.5 parent: 2 type: Transform - - uid: 13282 + - uid: 13319 components: - rot: -1.5707963267948966 rad pos: 15.5,0.5 parent: 2 type: Transform - - uid: 13283 + - uid: 13320 components: - pos: 10.5,-1.5 parent: 2 type: Transform - - uid: 13284 + - uid: 13321 components: - pos: 6.5,-1.5 parent: 2 type: Transform - - uid: 13285 + - uid: 13322 components: - rot: 1.5707963267948966 rad pos: 8.5,-0.5 parent: 2 type: Transform - - uid: 13286 + - uid: 13323 components: - rot: -1.5707963267948966 rad pos: 2.5,-25.5 parent: 2 type: Transform - - uid: 13287 + - uid: 13324 components: - rot: 1.5707963267948966 rad pos: 4.5,2.5 parent: 2 type: Transform - - uid: 13288 + - uid: 13325 components: - rot: 1.5707963267948966 rad pos: 5.5,2.5 parent: 2 type: Transform - - uid: 13289 + - uid: 13326 components: - rot: 1.5707963267948966 rad pos: -11.5,-53.5 parent: 2 type: Transform - - uid: 13290 + - uid: 13327 components: - rot: 1.5707963267948966 rad pos: -22.5,-84.5 parent: 2 type: Transform - - uid: 13291 + - uid: 13328 components: - pos: -23.5,-83.5 parent: 2 type: Transform - - uid: 13292 + - uid: 13329 components: - pos: -23.5,-78.5 parent: 2 type: Transform - - uid: 13293 + - uid: 13330 components: - rot: 1.5707963267948966 rad pos: 7.5,2.5 parent: 2 type: Transform - - uid: 13294 + - uid: 13331 components: - rot: -1.5707963267948966 rad pos: 11.5,-25.5 parent: 2 type: Transform - - uid: 13295 + - uid: 13332 components: - pos: 24.5,-16.5 parent: 2 type: Transform - - uid: 13296 + - uid: 13333 components: - rot: -1.5707963267948966 rad pos: -15.5,-43.5 parent: 2 type: Transform - - uid: 13297 + - uid: 13334 components: - rot: -1.5707963267948966 rad pos: 11.5,2.5 parent: 2 type: Transform - - uid: 13298 + - uid: 13335 components: - rot: 1.5707963267948966 rad pos: 22.5,-6.5 parent: 2 type: Transform - - uid: 13299 + - uid: 13336 components: - pos: 24.5,-8.5 parent: 2 type: Transform - - uid: 13300 + - uid: 13337 components: - rot: -1.5707963267948966 rad pos: 25.5,-10.5 parent: 2 type: Transform - - uid: 13301 + - uid: 13338 components: - pos: 16.5,-19.5 parent: 2 type: Transform - - uid: 13302 + - uid: 13339 components: - rot: -1.5707963267948966 rad pos: 6.5,-25.5 parent: 2 type: Transform - - uid: 13303 + - uid: 13340 components: - rot: -1.5707963267948966 rad pos: 5.5,-25.5 parent: 2 type: Transform - - uid: 13304 + - uid: 13341 components: - rot: -1.5707963267948966 rad pos: -0.5,-25.5 parent: 2 type: Transform - - uid: 13305 + - uid: 13342 components: - pos: -7.5,-0.5 parent: 2 type: Transform - - uid: 13306 + - uid: 13343 components: - rot: 3.141592653589793 rad pos: -5.5,-22.5 parent: 2 type: Transform - - uid: 13307 + - uid: 13344 components: - rot: -1.5707963267948966 rad pos: 10.5,-25.5 parent: 2 type: Transform - - uid: 13308 + - uid: 13345 components: - rot: 3.141592653589793 rad pos: -0.5,-49.5 parent: 2 type: Transform - - uid: 13309 + - uid: 13346 components: - rot: 3.141592653589793 rad pos: -0.5,-46.5 parent: 2 type: Transform - - uid: 13310 + - uid: 13347 components: - rot: 3.141592653589793 rad pos: 15.5,-28.5 parent: 2 type: Transform - - uid: 13311 + - uid: 13348 components: - pos: 18.5,-5.5 parent: 2 type: Transform - - uid: 13312 + - uid: 13349 components: - rot: 3.141592653589793 rad pos: 18.5,8.5 parent: 2 type: Transform - - uid: 13313 + - uid: 13350 components: - rot: 1.5707963267948966 rad pos: 19.5,-6.5 parent: 2 type: Transform - - uid: 13314 + - uid: 13351 components: - rot: -1.5707963267948966 rad pos: 4.5,-25.5 parent: 2 type: Transform - - uid: 13315 + - uid: 13352 components: - rot: 1.5707963267948966 rad pos: 4.5,-0.5 parent: 2 type: Transform - - uid: 13316 + - uid: 13353 components: - rot: 3.141592653589793 rad pos: -4.5,-5.5 parent: 2 type: Transform - - uid: 13317 + - uid: 13354 components: - rot: 3.141592653589793 rad pos: -3.5,-25.5 parent: 2 type: Transform - - uid: 13318 + - uid: 13355 components: - rot: 1.5707963267948966 rad pos: 12.5,-27.5 parent: 2 type: Transform - - uid: 13319 + - uid: 13356 components: - pos: 18.5,-28.5 parent: 2 type: Transform - - uid: 13320 + - uid: 13357 components: - pos: -23.5,-79.5 parent: 2 type: Transform - - uid: 13321 + - uid: 13358 components: - rot: 1.5707963267948966 rad pos: -24.5,-75.5 parent: 2 type: Transform - - uid: 13322 + - uid: 13359 components: - rot: 1.5707963267948966 rad pos: -7.5,-53.5 parent: 2 type: Transform - - uid: 13323 + - uid: 13360 components: - rot: 1.5707963267948966 rad pos: 9.5,-0.5 parent: 2 type: Transform - - uid: 13324 + - uid: 13361 components: - rot: 1.5707963267948966 rad pos: -5.5,-9.5 parent: 2 type: Transform - - uid: 13325 + - uid: 13362 components: - pos: 6.5,3.5 parent: 2 type: Transform - - uid: 13326 + - uid: 13363 components: - rot: -1.5707963267948966 rad pos: 3.5,-25.5 parent: 2 type: Transform - - uid: 13327 + - uid: 13364 components: - pos: 18.5,0.5 parent: 2 type: Transform - - uid: 13328 + - uid: 13365 components: - rot: 3.141592653589793 rad pos: 3.5,-1.5 parent: 2 type: Transform - - uid: 13329 + - uid: 13366 components: - rot: 3.141592653589793 rad pos: -3.5,-24.5 parent: 2 type: Transform - - uid: 13330 + - uid: 13367 components: - rot: 1.5707963267948966 rad pos: 15.5,-43.5 parent: 2 type: Transform - - uid: 13331 + - uid: 13368 components: - rot: 3.141592653589793 rad pos: -5.5,-21.5 parent: 2 type: Transform - - uid: 13332 + - uid: 13369 components: - rot: 1.5707963267948966 rad pos: 11.5,-3.5 parent: 2 type: Transform - - uid: 13333 + - uid: 13370 components: - rot: -1.5707963267948966 rad pos: 8.5,-25.5 parent: 2 type: Transform - - uid: 13334 + - uid: 13371 components: - rot: 1.5707963267948966 rad pos: 20.5,-6.5 parent: 2 type: Transform - - uid: 13335 + - uid: 13372 components: - rot: 3.141592653589793 rad pos: 15.5,-41.5 parent: 2 type: Transform - - uid: 13336 + - uid: 13373 components: - pos: -5.5,-54.5 parent: 2 type: Transform - - uid: 13337 + - uid: 13374 components: - rot: -1.5707963267948966 rad pos: 2.5,-43.5 parent: 2 type: Transform - - uid: 13338 + - uid: 13375 components: - pos: -4.5,-35.5 parent: 2 type: Transform - - uid: 13339 + - uid: 13376 components: - pos: -4.5,-31.5 parent: 2 type: Transform - - uid: 13340 + - uid: 13377 components: - pos: -4.5,-28.5 parent: 2 type: Transform - - uid: 13341 + - uid: 13378 components: - pos: -19.5,-65.5 parent: 2 type: Transform - - uid: 13342 + - uid: 13379 components: - pos: 36.5,-26.5 parent: 2 type: Transform - - uid: 13343 + - uid: 13380 components: - pos: 36.5,-23.5 parent: 2 type: Transform - - uid: 13344 + - uid: 13381 components: - pos: 34.5,-5.5 parent: 2 type: Transform - - uid: 13345 + - uid: 13382 components: - pos: 34.5,0.5 parent: 2 type: Transform - - uid: 13346 + - uid: 13383 components: - rot: 3.141592653589793 rad pos: 34.5,2.5 parent: 2 type: Transform - - uid: 13347 + - uid: 13384 components: - rot: 3.141592653589793 rad pos: 34.5,4.5 parent: 2 type: Transform - - uid: 13348 + - uid: 13385 components: - pos: 34.5,-3.5 parent: 2 type: Transform - - uid: 13349 + - uid: 13386 components: - rot: 1.5707963267948966 rad pos: 14.5,-43.5 parent: 2 type: Transform - - uid: 13350 + - uid: 13387 components: - rot: 1.5707963267948966 rad pos: 3.5,-43.5 parent: 2 type: Transform - - uid: 13351 + - uid: 13388 components: - rot: 1.5707963267948966 rad pos: 22.5,-43.5 parent: 2 type: Transform - - uid: 13352 + - uid: 13389 components: - rot: 3.141592653589793 rad pos: -3.5,-19.5 parent: 2 type: Transform - - uid: 13353 + - uid: 13390 components: - rot: 3.141592653589793 rad pos: -4.5,-6.5 parent: 2 type: Transform - - uid: 13354 + - uid: 13391 components: - rot: 1.5707963267948966 rad pos: 21.5,-18.5 parent: 2 type: Transform - - uid: 13355 + - uid: 13392 components: - rot: 1.5707963267948966 rad pos: 23.5,-18.5 parent: 2 type: Transform - - uid: 13356 + - uid: 13393 components: - pos: 24.5,-14.5 parent: 2 type: Transform - - uid: 13357 + - uid: 13394 components: - rot: 1.5707963267948966 rad pos: 9.5,2.5 parent: 2 type: Transform - - uid: 13358 + - uid: 13395 components: - rot: 1.5707963267948966 rad pos: 26.5,-43.5 parent: 2 type: Transform - - uid: 13359 + - uid: 13396 components: - rot: 1.5707963267948966 rad pos: -20.5,-73.5 parent: 2 type: Transform - - uid: 13360 + - uid: 13397 components: - pos: -23.5,-76.5 parent: 2 type: Transform - - uid: 13361 + - uid: 13398 components: - pos: -19.5,-64.5 parent: 2 type: Transform - - uid: 13362 + - uid: 13399 components: - pos: -19.5,-62.5 parent: 2 type: Transform - - uid: 13363 + - uid: 13400 components: - pos: -19.5,-66.5 parent: 2 type: Transform - - uid: 13364 + - uid: 13401 components: - pos: -19.5,-68.5 parent: 2 type: Transform - - uid: 13365 + - uid: 13402 components: - pos: -19.5,-67.5 parent: 2 type: Transform - - uid: 13366 + - uid: 13403 components: - rot: 3.141592653589793 rad pos: -3.5,-20.5 parent: 2 type: Transform - - uid: 13367 + - uid: 13404 components: - rot: 3.141592653589793 rad pos: 15.5,-26.5 parent: 2 type: Transform - - uid: 13368 + - uid: 13405 components: - rot: 1.5707963267948966 rad pos: -6.5,0.5 parent: 2 type: Transform - - uid: 13369 + - uid: 13406 components: - rot: 3.141592653589793 rad pos: -5.5,-23.5 parent: 2 type: Transform - - uid: 13370 + - uid: 13407 components: - rot: 3.141592653589793 rad pos: -5.5,-24.5 parent: 2 type: Transform - - uid: 13371 + - uid: 13408 components: - rot: -1.5707963267948966 rad pos: 13.5,5.5 parent: 2 type: Transform - - uid: 13372 + - uid: 13409 components: - pos: 12.5,8.5 parent: 2 type: Transform - - uid: 13373 + - uid: 13410 components: - rot: 3.141592653589793 rad pos: 17.5,5.5 parent: 2 type: Transform - - uid: 13374 + - uid: 13411 components: - pos: 17.5,9.5 parent: 2 type: Transform - - uid: 13375 + - uid: 13412 components: - pos: 12.5,4.5 parent: 2 type: Transform - - uid: 13376 + - uid: 13413 components: - rot: -1.5707963267948966 rad pos: 12.5,-0.5 parent: 2 type: Transform - - uid: 13377 + - uid: 13414 components: - pos: -4.5,-41.5 parent: 2 type: Transform - - uid: 13378 + - uid: 13415 components: - pos: -4.5,-39.5 parent: 2 type: Transform - - uid: 13379 + - uid: 13416 components: - pos: -4.5,-37.5 parent: 2 type: Transform - - uid: 13380 + - uid: 13417 components: - rot: 1.5707963267948966 rad pos: 4.5,-27.5 parent: 2 type: Transform - - uid: 13381 + - uid: 13418 components: - rot: -1.5707963267948966 rad pos: -18.5,-43.5 parent: 2 type: Transform - - uid: 13382 + - uid: 13419 components: - rot: 1.5707963267948966 rad pos: 33.5,-43.5 parent: 2 type: Transform - - uid: 13383 + - uid: 13420 components: - rot: 3.141592653589793 rad pos: -6.5,-65.5 parent: 2 type: Transform - - uid: 13384 + - uid: 13421 components: - rot: 1.5707963267948966 rad pos: -7.5,-66.5 parent: 2 type: Transform - - uid: 13385 + - uid: 13422 components: - rot: 3.141592653589793 rad pos: 18.5,-52.5 parent: 2 type: Transform - - uid: 13386 + - uid: 13423 components: - pos: -10.5,-24.5 parent: 2 type: Transform - - uid: 13387 + - uid: 13424 components: - pos: -10.5,-25.5 parent: 2 type: Transform - - uid: 13388 + - uid: 13425 components: - pos: -10.5,-26.5 parent: 2 type: Transform - - uid: 13389 + - uid: 13426 components: - rot: 1.5707963267948966 rad pos: 21.5,-43.5 parent: 2 type: Transform - - uid: 13390 + - uid: 13427 components: - rot: 3.141592653589793 rad pos: 25.5,-46.5 parent: 2 type: Transform - - uid: 13391 + - uid: 13428 components: - rot: 3.141592653589793 rad pos: 25.5,-45.5 parent: 2 type: Transform - - uid: 13392 + - uid: 13429 components: - rot: 3.141592653589793 rad pos: 25.5,-44.5 parent: 2 type: Transform - - uid: 13393 + - uid: 13430 components: - rot: 1.5707963267948966 rad pos: 24.5,-43.5 parent: 2 type: Transform - - uid: 13394 + - uid: 13431 components: - rot: 1.5707963267948966 rad pos: 23.5,-43.5 parent: 2 type: Transform - - uid: 13395 + - uid: 13432 components: - rot: 1.5707963267948966 rad pos: 32.5,-43.5 parent: 2 type: Transform - - uid: 13396 + - uid: 13433 components: - rot: 1.5707963267948966 rad pos: 31.5,-43.5 parent: 2 type: Transform - - uid: 13397 + - uid: 13434 components: - rot: 1.5707963267948966 rad pos: 30.5,-43.5 parent: 2 type: Transform - - uid: 13398 + - uid: 13435 components: - rot: 1.5707963267948966 rad pos: 29.5,-43.5 parent: 2 type: Transform - - uid: 13399 + - uid: 13436 components: - rot: 1.5707963267948966 rad pos: 28.5,-43.5 parent: 2 type: Transform - - uid: 13400 + - uid: 13437 components: - rot: 1.5707963267948966 rad pos: 27.5,-43.5 parent: 2 type: Transform - - uid: 13401 + - uid: 13438 components: - rot: 1.5707963267948966 rad pos: 34.5,-43.5 parent: 2 type: Transform - - uid: 13402 + - uid: 13439 components: - rot: 1.5707963267948966 rad pos: -13.5,-9.5 parent: 2 type: Transform - - uid: 13403 + - uid: 13440 components: - rot: 1.5707963267948966 rad pos: -1.5,-53.5 parent: 2 type: Transform - - uid: 13404 + - uid: 13441 components: - rot: 1.5707963267948966 rad pos: -8.5,-53.5 parent: 2 type: Transform - - uid: 13405 + - uid: 13442 components: - rot: 1.5707963267948966 rad pos: -10.5,-53.5 parent: 2 type: Transform - - uid: 13406 + - uid: 13443 components: - rot: 1.5707963267948966 rad pos: -4.5,-53.5 parent: 2 type: Transform - - uid: 13407 + - uid: 13444 components: - rot: 1.5707963267948966 rad pos: -3.5,-53.5 parent: 2 type: Transform - - uid: 13408 + - uid: 13445 components: - pos: 36.5,-29.5 parent: 2 type: Transform - - uid: 13409 + - uid: 13446 components: - pos: 36.5,-30.5 parent: 2 type: Transform - - uid: 13410 + - uid: 13447 components: - pos: 36.5,-31.5 parent: 2 type: Transform - - uid: 13411 + - uid: 13448 components: - pos: 36.5,-32.5 parent: 2 type: Transform - - uid: 13412 + - uid: 13449 components: - pos: 36.5,-33.5 parent: 2 type: Transform - - uid: 13413 + - uid: 13450 components: - pos: 36.5,-34.5 parent: 2 type: Transform - - uid: 13414 + - uid: 13451 components: - pos: 36.5,-35.5 parent: 2 type: Transform - - uid: 13415 + - uid: 13452 components: - pos: 36.5,-36.5 parent: 2 type: Transform - - uid: 13416 + - uid: 13453 components: - pos: 36.5,-37.5 parent: 2 type: Transform - - uid: 13417 + - uid: 13454 components: - pos: 36.5,-38.5 parent: 2 type: Transform - - uid: 13418 + - uid: 13455 components: - pos: 36.5,-39.5 parent: 2 type: Transform - - uid: 13419 + - uid: 13456 components: - pos: 36.5,-40.5 parent: 2 type: Transform - - uid: 13420 + - uid: 13457 components: - pos: 36.5,-41.5 parent: 2 type: Transform - - uid: 13421 + - uid: 13458 components: - pos: 36.5,-42.5 parent: 2 type: Transform - - uid: 13422 + - uid: 13459 components: - rot: -1.5707963267948966 rad pos: 35.5,-43.5 parent: 2 type: Transform - - uid: 13423 + - uid: 13460 components: - rot: -1.5707963267948966 rad pos: 37.5,-43.5 parent: 2 type: Transform - - uid: 13424 + - uid: 13461 components: - rot: -1.5707963267948966 rad pos: 38.5,-43.5 parent: 2 type: Transform - - uid: 13425 + - uid: 13462 components: - rot: -1.5707963267948966 rad pos: 39.5,-43.5 parent: 2 type: Transform - - uid: 13426 + - uid: 13463 components: - rot: -1.5707963267948966 rad pos: 40.5,-43.5 parent: 2 type: Transform - - uid: 13427 + - uid: 13464 components: - rot: -1.5707963267948966 rad pos: 41.5,-43.5 parent: 2 type: Transform - - uid: 13428 + - uid: 13465 components: - rot: -1.5707963267948966 rad pos: 35.5,1.5 parent: 2 type: Transform - - uid: 13429 + - uid: 13466 components: - rot: -1.5707963267948966 rad pos: 36.5,1.5 parent: 2 type: Transform - - uid: 13430 + - uid: 13467 components: - rot: -1.5707963267948966 rad pos: 37.5,1.5 parent: 2 type: Transform - - uid: 13431 + - uid: 13468 components: - rot: -1.5707963267948966 rad pos: 38.5,1.5 parent: 2 type: Transform - - uid: 13432 + - uid: 13469 components: - rot: -1.5707963267948966 rad pos: 39.5,1.5 parent: 2 type: Transform - - uid: 13433 + - uid: 13470 components: - rot: -1.5707963267948966 rad pos: 17.5,17.5 parent: 2 type: Transform - - uid: 13434 + - uid: 13471 components: - rot: -1.5707963267948966 rad pos: 18.5,17.5 parent: 2 type: Transform - - uid: 13435 + - uid: 13472 components: - rot: -1.5707963267948966 rad pos: 16.5,17.5 parent: 2 type: Transform - - uid: 13436 + - uid: 13473 components: - pos: 15.5,18.5 parent: 2 type: Transform - - uid: 13437 + - uid: 13474 components: - rot: 1.5707963267948966 rad pos: -10.5,0.5 parent: 2 type: Transform - - uid: 13438 + - uid: 13475 components: - rot: 1.5707963267948966 rad pos: -11.5,0.5 parent: 2 type: Transform - - uid: 13439 + - uid: 13476 components: - rot: 1.5707963267948966 rad pos: -12.5,0.5 parent: 2 type: Transform - - uid: 13440 + - uid: 13477 components: - rot: 3.141592653589793 rad pos: 15.5,-34.5 parent: 2 type: Transform - - uid: 13441 + - uid: 13478 components: - rot: 3.141592653589793 rad pos: -3.5,-21.5 parent: 2 type: Transform - - uid: 13442 + - uid: 13479 components: - rot: -1.5707963267948966 rad pos: 12.5,-25.5 parent: 2 type: Transform - - uid: 13443 + - uid: 13480 components: - rot: -1.5707963267948966 rad pos: 13.5,-25.5 parent: 2 type: Transform - - uid: 13444 + - uid: 13481 components: - rot: 3.141592653589793 rad pos: -4.5,-8.5 parent: 2 type: Transform - - uid: 13445 + - uid: 13482 components: - rot: -1.5707963267948966 rad pos: 0.5,-25.5 parent: 2 type: Transform - - uid: 13446 + - uid: 13483 components: - rot: 1.5707963267948966 rad pos: -8.5,-9.5 parent: 2 type: Transform - - uid: 13447 + - uid: 13484 components: - rot: 1.5707963267948966 rad pos: -11.5,-9.5 parent: 2 type: Transform - - uid: 13448 + - uid: 13485 components: - rot: 1.5707963267948966 rad pos: -10.5,-9.5 parent: 2 type: Transform - - uid: 13449 + - uid: 13486 components: - rot: 1.5707963267948966 rad pos: -12.5,-9.5 parent: 2 type: Transform - - uid: 13450 + - uid: 13487 components: - pos: -4.5,-0.5 parent: 2 type: Transform - - uid: 13451 + - uid: 13488 components: - rot: 3.141592653589793 rad pos: 15.5,-32.5 parent: 2 type: Transform - - uid: 13452 + - uid: 13489 components: - rot: 3.141592653589793 rad pos: -4.5,-11.5 parent: 2 type: Transform - - uid: 13453 + - uid: 13490 components: - rot: 3.141592653589793 rad pos: 15.5,-29.5 parent: 2 type: Transform - - uid: 13454 + - uid: 13491 components: - rot: 3.141592653589793 rad pos: 15.5,-36.5 parent: 2 type: Transform - - uid: 13455 + - uid: 13492 components: - rot: 3.141592653589793 rad pos: 15.5,-35.5 parent: 2 type: Transform - - uid: 13456 + - uid: 13493 components: - rot: 3.141592653589793 rad pos: 15.5,-27.5 parent: 2 type: Transform - - uid: 13457 + - uid: 13494 components: - rot: -1.5707963267948966 rad pos: 9.5,-25.5 parent: 2 type: Transform - - uid: 13458 + - uid: 13495 components: - rot: -1.5707963267948966 rad pos: 14.5,-25.5 parent: 2 type: Transform - - uid: 13459 + - uid: 13496 components: - rot: 3.141592653589793 rad pos: -3.5,-14.5 parent: 2 type: Transform - - uid: 13460 + - uid: 13497 components: - rot: 3.141592653589793 rad pos: -3.5,-17.5 parent: 2 type: Transform - - uid: 13461 + - uid: 13498 components: - rot: 3.141592653589793 rad pos: -3.5,-15.5 parent: 2 type: Transform - - uid: 13462 + - uid: 13499 components: - pos: 17.5,-47.5 parent: 2 type: Transform - - uid: 13463 + - uid: 13500 components: - rot: 1.5707963267948966 rad pos: 33.5,16.5 parent: 2 type: Transform - - uid: 13464 + - uid: 13501 components: - rot: 1.5707963267948966 rad pos: 32.5,16.5 parent: 2 type: Transform - - uid: 13465 + - uid: 13502 components: - rot: 1.5707963267948966 rad pos: 31.5,16.5 parent: 2 type: Transform - - uid: 13466 + - uid: 13503 components: - rot: 1.5707963267948966 rad pos: 30.5,16.5 parent: 2 type: Transform - - uid: 13467 + - uid: 13504 components: - rot: 3.141592653589793 rad pos: 41.5,5.5 parent: 2 type: Transform - - uid: 13468 + - uid: 13505 components: - rot: 3.141592653589793 rad pos: 41.5,4.5 parent: 2 type: Transform - - uid: 13469 + - uid: 13506 components: - rot: 3.141592653589793 rad pos: 41.5,3.5 parent: 2 type: Transform - - uid: 13470 + - uid: 13507 components: - rot: 3.141592653589793 rad pos: 41.5,2.5 parent: 2 type: Transform - - uid: 13471 + - uid: 13508 components: - rot: -1.5707963267948966 rad pos: 40.5,1.5 parent: 2 type: Transform - - uid: 13472 + - uid: 13509 components: - rot: -1.5707963267948966 rad pos: 42.5,1.5 parent: 2 type: Transform - - uid: 13473 + - uid: 13510 components: - rot: -1.5707963267948966 rad pos: 43.5,1.5 parent: 2 type: Transform - - uid: 13474 + - uid: 13511 components: - rot: -1.5707963267948966 rad pos: 44.5,1.5 parent: 2 type: Transform - - uid: 13475 + - uid: 13512 components: - rot: -1.5707963267948966 rad pos: 45.5,1.5 parent: 2 type: Transform - - uid: 13476 + - uid: 13513 components: - rot: -1.5707963267948966 rad pos: 46.5,1.5 parent: 2 type: Transform - - uid: 13477 + - uid: 13514 components: - rot: -1.5707963267948966 rad pos: 47.5,1.5 parent: 2 type: Transform - - uid: 13478 + - uid: 13515 components: - rot: -1.5707963267948966 rad pos: 48.5,1.5 parent: 2 type: Transform - - uid: 13479 + - uid: 13516 components: - rot: -1.5707963267948966 rad pos: 49.5,1.5 parent: 2 type: Transform - - uid: 13480 + - uid: 13517 components: - rot: -1.5707963267948966 rad pos: 50.5,1.5 parent: 2 type: Transform - - uid: 13481 + - uid: 13518 components: - rot: -1.5707963267948966 rad pos: 51.5,1.5 parent: 2 type: Transform - - uid: 13482 + - uid: 13519 components: - rot: 3.141592653589793 rad pos: 52.5,2.5 parent: 2 type: Transform - - uid: 13483 + - uid: 13520 components: - rot: 3.141592653589793 rad pos: 52.5,0.5 parent: 2 type: Transform - - uid: 13484 + - uid: 13521 components: - rot: 3.141592653589793 rad pos: 52.5,-0.5 parent: 2 type: Transform - - uid: 13485 + - uid: 13522 components: - rot: 3.141592653589793 rad pos: 52.5,-1.5 parent: 2 type: Transform - - uid: 13486 + - uid: 13523 components: - rot: 3.141592653589793 rad pos: 52.5,-2.5 parent: 2 type: Transform - - uid: 13487 + - uid: 13524 components: - rot: 3.141592653589793 rad pos: 52.5,-3.5 parent: 2 type: Transform - - uid: 13488 + - uid: 13525 components: - rot: 3.141592653589793 rad pos: 52.5,-4.5 parent: 2 type: Transform - - uid: 13489 + - uid: 13526 components: - rot: 3.141592653589793 rad pos: 52.5,-5.5 parent: 2 type: Transform - - uid: 13490 + - uid: 13527 components: - rot: 3.141592653589793 rad pos: 52.5,-6.5 parent: 2 type: Transform - - uid: 13491 + - uid: 13528 components: - rot: 3.141592653589793 rad pos: 52.5,-7.5 parent: 2 type: Transform - - uid: 13492 + - uid: 13529 components: - rot: 3.141592653589793 rad pos: 52.5,-8.5 parent: 2 type: Transform - - uid: 13493 + - uid: 13530 components: - pos: 25.5,-47.5 parent: 2 type: Transform - - uid: 13494 + - uid: 13531 components: - pos: 25.5,-48.5 parent: 2 type: Transform - - uid: 13495 + - uid: 13532 components: - pos: 25.5,-49.5 parent: 2 type: Transform - - uid: 13496 + - uid: 13533 components: - pos: 25.5,-50.5 parent: 2 type: Transform - - uid: 13497 + - uid: 13534 components: - pos: 25.5,-51.5 parent: 2 type: Transform - - uid: 13498 + - uid: 13535 components: - pos: 25.5,-52.5 parent: 2 type: Transform - - uid: 13499 + - uid: 13536 components: - rot: 3.141592653589793 rad pos: 15.5,-37.5 parent: 2 type: Transform - - uid: 13500 + - uid: 13537 components: - pos: 25.5,-54.5 parent: 2 type: Transform - - uid: 13501 + - uid: 13538 components: - pos: 25.5,-55.5 parent: 2 type: Transform - - uid: 13502 + - uid: 13539 components: - pos: 25.5,-56.5 parent: 2 type: Transform - - uid: 13503 + - uid: 13540 components: - pos: 25.5,-57.5 parent: 2 type: Transform - - uid: 13504 + - uid: 13541 components: - pos: 25.5,-58.5 parent: 2 type: Transform - - uid: 13505 + - uid: 13542 components: - rot: 3.141592653589793 rad pos: -3.5,-16.5 parent: 2 type: Transform - - uid: 13506 + - uid: 13543 components: - rot: 3.141592653589793 rad pos: 15.5,-43.5 parent: 2 type: Transform - - uid: 13507 + - uid: 13544 components: - pos: 52.5,-9.5 parent: 2 type: Transform - - uid: 13508 + - uid: 13545 components: - pos: 52.5,-10.5 parent: 2 type: Transform - - uid: 13509 + - uid: 13546 components: - pos: 52.5,-11.5 parent: 2 type: Transform - - uid: 13510 + - uid: 13547 components: - pos: 52.5,-12.5 parent: 2 type: Transform - - uid: 13511 + - uid: 13548 components: - rot: -1.5707963267948966 rad pos: 53.5,-13.5 parent: 2 type: Transform - - uid: 13512 + - uid: 13549 components: - rot: -1.5707963267948966 rad pos: 42.5,-43.5 parent: 2 type: Transform - - uid: 13513 + - uid: 13550 components: - rot: -1.5707963267948966 rad pos: 43.5,-43.5 parent: 2 type: Transform - - uid: 13514 + - uid: 13551 components: - rot: -1.5707963267948966 rad pos: 44.5,-43.5 parent: 2 type: Transform - - uid: 13515 + - uid: 13552 components: - rot: -1.5707963267948966 rad pos: 45.5,-43.5 parent: 2 type: Transform - - uid: 13516 + - uid: 13553 components: - rot: -1.5707963267948966 rad pos: 47.5,-43.5 parent: 2 type: Transform - - uid: 13517 + - uid: 13554 components: - rot: -1.5707963267948966 rad pos: 48.5,-43.5 parent: 2 type: Transform - - uid: 13518 + - uid: 13555 components: - pos: 49.5,-44.5 parent: 2 type: Transform - - uid: 13519 + - uid: 13556 components: - rot: 3.141592653589793 rad pos: 49.5,-46.5 parent: 2 type: Transform - - uid: 13520 + - uid: 13557 components: - rot: 1.5707963267948966 rad pos: 50.5,-47.5 parent: 2 type: Transform - - uid: 13521 + - uid: 13558 components: - pos: 49.5,-48.5 parent: 2 type: Transform - - uid: 13522 + - uid: 13559 components: - pos: 49.5,-49.5 parent: 2 type: Transform - - uid: 13523 + - uid: 13560 components: - rot: -1.5707963267948966 rad pos: 50.5,-45.5 parent: 2 type: Transform - - uid: 13524 + - uid: 13561 components: - rot: -1.5707963267948966 rad pos: 51.5,-45.5 parent: 2 type: Transform - - uid: 13525 + - uid: 13562 components: - rot: -1.5707963267948966 rad pos: 52.5,-45.5 parent: 2 type: Transform - - uid: 13526 + - uid: 13563 components: - rot: -1.5707963267948966 rad pos: 53.5,-45.5 parent: 2 type: Transform - - uid: 13527 + - uid: 13564 components: - rot: -1.5707963267948966 rad pos: 54.5,-45.5 parent: 2 type: Transform - - uid: 13528 + - uid: 13565 components: - rot: -1.5707963267948966 rad pos: 55.5,-45.5 parent: 2 type: Transform - - uid: 13529 + - uid: 13566 components: - rot: -1.5707963267948966 rad pos: 56.5,-45.5 parent: 2 type: Transform - - uid: 13530 + - uid: 13567 components: - rot: -1.5707963267948966 rad pos: 57.5,-45.5 parent: 2 type: Transform - - uid: 13531 + - uid: 13568 components: - rot: -1.5707963267948966 rad pos: 58.5,-45.5 parent: 2 type: Transform - - uid: 13532 + - uid: 13569 components: - rot: -1.5707963267948966 rad pos: 59.5,-45.5 parent: 2 type: Transform - - uid: 13533 + - uid: 13570 components: - rot: -1.5707963267948966 rad pos: 60.5,-45.5 parent: 2 type: Transform - - uid: 13534 + - uid: 13571 components: - rot: -1.5707963267948966 rad pos: 61.5,-45.5 parent: 2 type: Transform - - uid: 13535 + - uid: 13572 components: - rot: -1.5707963267948966 rad pos: 62.5,-45.5 parent: 2 type: Transform - - uid: 13536 + - uid: 13573 components: - rot: -1.5707963267948966 rad pos: 63.5,-45.5 parent: 2 type: Transform - - uid: 13537 + - uid: 13574 components: - rot: 3.141592653589793 rad pos: 46.5,-42.5 parent: 2 type: Transform - - uid: 13538 + - uid: 13575 components: - rot: 3.141592653589793 rad pos: 46.5,-41.5 parent: 2 type: Transform - - uid: 13539 + - uid: 13576 components: - rot: 3.141592653589793 rad pos: 46.5,-40.5 parent: 2 type: Transform - - uid: 13540 + - uid: 13577 components: - rot: 3.141592653589793 rad pos: 46.5,-39.5 parent: 2 type: Transform - - uid: 13541 + - uid: 13578 components: - rot: 3.141592653589793 rad pos: 46.5,-38.5 parent: 2 type: Transform - - uid: 13542 + - uid: 13579 components: - rot: 3.141592653589793 rad pos: 46.5,-37.5 parent: 2 type: Transform - - uid: 13543 + - uid: 13580 components: - rot: 3.141592653589793 rad pos: 46.5,-36.5 parent: 2 type: Transform - - uid: 13544 + - uid: 13581 components: - rot: -1.5707963267948966 rad pos: 64.5,-45.5 parent: 2 type: Transform - - uid: 13545 + - uid: 13582 components: - rot: -1.5707963267948966 rad pos: 65.5,-45.5 parent: 2 type: Transform - - uid: 13546 + - uid: 13583 components: - rot: -1.5707963267948966 rad pos: 66.5,-45.5 parent: 2 type: Transform - - uid: 13547 + - uid: 13584 components: - pos: 67.5,-46.5 parent: 2 type: Transform - - uid: 13548 + - uid: 13585 components: - pos: 67.5,-48.5 parent: 2 type: Transform - - uid: 13549 + - uid: 13586 components: - pos: 49.5,-56.5 parent: 2 type: Transform - - uid: 13550 + - uid: 13587 components: - pos: 49.5,-57.5 parent: 2 type: Transform - - uid: 13551 + - uid: 13588 components: - pos: 49.5,-58.5 parent: 2 type: Transform - - uid: 13552 + - uid: 13589 components: - pos: 49.5,-59.5 parent: 2 type: Transform - - uid: 13553 + - uid: 13590 components: - rot: 3.141592653589793 rad pos: -3.5,-13.5 parent: 2 type: Transform - - uid: 13554 + - uid: 13591 components: - pos: 29.5,-61.5 parent: 2 type: Transform - - uid: 13555 + - uid: 13592 components: - rot: 3.141592653589793 rad pos: 25.5,-59.5 parent: 2 type: Transform - - uid: 13556 + - uid: 13593 components: - rot: 1.5707963267948966 rad pos: 26.5,-60.5 parent: 2 type: Transform - - uid: 13557 + - uid: 13594 components: - rot: 1.5707963267948966 rad pos: 27.5,-60.5 parent: 2 type: Transform - - uid: 13558 + - uid: 13595 components: - rot: 1.5707963267948966 rad pos: 28.5,-60.5 parent: 2 type: Transform - - uid: 13559 + - uid: 13596 components: - rot: 1.5707963267948966 rad pos: 30.5,-60.5 parent: 2 type: Transform - - uid: 13560 + - uid: 13597 components: - rot: 1.5707963267948966 rad pos: 31.5,-60.5 parent: 2 type: Transform - - uid: 13561 + - uid: 13598 components: - rot: 1.5707963267948966 rad pos: 32.5,-60.5 parent: 2 type: Transform - - uid: 13562 + - uid: 13599 components: - rot: 1.5707963267948966 rad pos: 33.5,-60.5 parent: 2 type: Transform - - uid: 13563 + - uid: 13600 components: - rot: 1.5707963267948966 rad pos: 34.5,-60.5 parent: 2 type: Transform - - uid: 13564 + - uid: 13601 components: - rot: 1.5707963267948966 rad pos: 35.5,-60.5 parent: 2 type: Transform - - uid: 13565 + - uid: 13602 components: - rot: 1.5707963267948966 rad pos: 36.5,-60.5 parent: 2 type: Transform - - uid: 13566 + - uid: 13603 components: - rot: 3.141592653589793 rad pos: -23.5,-14.5 parent: 2 type: Transform - - uid: 13567 + - uid: 13604 components: - rot: 1.5707963267948966 rad pos: -22.5,-13.5 parent: 2 type: Transform - - uid: 13568 + - uid: 13605 components: - rot: 1.5707963267948966 rad pos: -21.5,-13.5 parent: 2 type: Transform - - uid: 13569 + - uid: 13606 components: - rot: 1.5707963267948966 rad pos: -20.5,-13.5 parent: 2 type: Transform - - uid: 13570 + - uid: 13607 components: - pos: -19.5,-14.5 parent: 2 type: Transform - - uid: 13571 + - uid: 13608 components: - pos: -19.5,-15.5 parent: 2 type: Transform - - uid: 13572 + - uid: 13609 components: - pos: -19.5,-16.5 parent: 2 type: Transform - - uid: 13573 + - uid: 13610 components: - pos: -19.5,-17.5 parent: 2 type: Transform - - uid: 13574 + - uid: 13611 components: - pos: -19.5,-18.5 parent: 2 type: Transform - - uid: 13575 + - uid: 13612 components: - pos: -19.5,-19.5 parent: 2 type: Transform - - uid: 13576 + - uid: 13613 components: - pos: -19.5,-20.5 parent: 2 type: Transform - - uid: 13577 + - uid: 13614 components: - pos: -19.5,-21.5 parent: 2 type: Transform - - uid: 13578 + - uid: 13615 components: - pos: -19.5,-22.5 parent: 2 type: Transform - - uid: 13579 + - uid: 13616 components: - pos: -19.5,-23.5 parent: 2 type: Transform - - uid: 13580 + - uid: 13617 components: - pos: -19.5,-24.5 parent: 2 type: Transform - - uid: 13581 + - uid: 13618 components: - pos: -19.5,-25.5 parent: 2 type: Transform - - uid: 13582 + - uid: 13619 components: - pos: -19.5,-26.5 parent: 2 type: Transform - - uid: 13583 + - uid: 13620 components: - rot: 1.5707963267948966 rad pos: -18.5,-27.5 parent: 2 type: Transform - - uid: 13584 + - uid: 13621 components: - pos: -19.5,-28.5 parent: 2 type: Transform - - uid: 13585 + - uid: 13622 components: - pos: -19.5,-29.5 parent: 2 type: Transform - - uid: 13586 + - uid: 13623 components: - pos: -19.5,-30.5 parent: 2 type: Transform - - uid: 13587 + - uid: 13624 components: - pos: -19.5,-31.5 parent: 2 type: Transform - - uid: 13588 + - uid: 13625 components: - pos: -19.5,-32.5 parent: 2 type: Transform - - uid: 13589 + - uid: 13626 components: - rot: -1.5707963267948966 rad pos: -24.5,-13.5 parent: 2 type: Transform - - uid: 13590 + - uid: 13627 components: - rot: -1.5707963267948966 rad pos: -25.5,-13.5 parent: 2 type: Transform - - uid: 13591 + - uid: 13628 components: - rot: -1.5707963267948966 rad pos: -26.5,-13.5 parent: 2 type: Transform - - uid: 13592 + - uid: 13629 components: - rot: -1.5707963267948966 rad pos: -27.5,-13.5 parent: 2 type: Transform - - uid: 13593 + - uid: 13630 components: - rot: -1.5707963267948966 rad pos: -28.5,-13.5 parent: 2 type: Transform - - uid: 13594 + - uid: 13631 components: - rot: -1.5707963267948966 rad pos: -29.5,-13.5 parent: 2 type: Transform - - uid: 13595 + - uid: 13632 components: - rot: -1.5707963267948966 rad pos: -30.5,-13.5 parent: 2 type: Transform - - uid: 13596 + - uid: 13633 components: - rot: -1.5707963267948966 rad pos: -31.5,-13.5 parent: 2 type: Transform - - uid: 13597 + - uid: 13634 components: - rot: 3.141592653589793 rad pos: 15.5,-39.5 parent: 2 type: Transform - - uid: 13598 + - uid: 13635 components: - rot: 1.5707963267948966 rad pos: 37.5,-60.5 parent: 2 type: Transform - - uid: 13599 + - uid: 13636 components: - rot: 1.5707963267948966 rad pos: 38.5,-60.5 parent: 2 type: Transform - - uid: 13600 + - uid: 13637 components: - pos: 39.5,-61.5 parent: 2 type: Transform - - uid: 13601 + - uid: 13638 components: - pos: 39.5,-62.5 parent: 2 type: Transform - - uid: 13602 + - uid: 13639 components: - pos: 39.5,-63.5 parent: 2 type: Transform - - uid: 13603 + - uid: 13640 components: - pos: 39.5,-64.5 parent: 2 type: Transform - - uid: 13604 + - uid: 13641 components: - pos: 39.5,-65.5 parent: 2 type: Transform - - uid: 13605 + - uid: 13642 components: - pos: 39.5,-66.5 parent: 2 type: Transform - - uid: 13606 + - uid: 13643 components: - pos: 39.5,-67.5 parent: 2 type: Transform - - uid: 13607 + - uid: 13644 components: - pos: 39.5,-68.5 parent: 2 type: Transform - - uid: 13608 + - uid: 13645 components: - rot: 3.141592653589793 rad pos: -19.5,-33.5 parent: 2 type: Transform - - uid: 13609 + - uid: 13646 components: - rot: 3.141592653589793 rad pos: -19.5,-34.5 parent: 2 type: Transform - - uid: 13610 + - uid: 13647 components: - rot: 3.141592653589793 rad pos: -19.5,-35.5 parent: 2 type: Transform - - uid: 13611 + - uid: 13648 components: - rot: 3.141592653589793 rad pos: -19.5,-36.5 parent: 2 type: Transform - - uid: 13612 + - uid: 13649 components: - rot: 3.141592653589793 rad pos: -19.5,-37.5 parent: 2 type: Transform - - uid: 13613 + - uid: 13650 components: - rot: 3.141592653589793 rad pos: -19.5,-38.5 parent: 2 type: Transform - - uid: 13614 + - uid: 13651 components: - rot: 3.141592653589793 rad pos: -19.5,-39.5 parent: 2 type: Transform - - uid: 13615 + - uid: 13652 components: - rot: 3.141592653589793 rad pos: -19.5,-40.5 parent: 2 type: Transform - - uid: 13616 + - uid: 13653 components: - rot: 3.141592653589793 rad pos: -19.5,-41.5 parent: 2 type: Transform - - uid: 13617 + - uid: 13654 components: - rot: 3.141592653589793 rad pos: -19.5,-42.5 parent: 2 type: Transform - - uid: 13618 + - uid: 13655 components: - pos: 30.5,-80.5 parent: 2 type: Transform - - uid: 13619 + - uid: 13656 components: - pos: 30.5,-78.5 parent: 2 type: Transform - - uid: 13620 + - uid: 13657 components: - pos: 30.5,-79.5 parent: 2 type: Transform - - uid: 13621 + - uid: 13658 components: - pos: 39.5,-69.5 parent: 2 type: Transform - - uid: 13622 + - uid: 13659 components: - pos: 39.5,-70.5 parent: 2 type: Transform - - uid: 13623 + - uid: 13660 components: - pos: 39.5,-71.5 parent: 2 type: Transform - - uid: 13624 + - uid: 13661 components: - pos: 39.5,-72.5 parent: 2 type: Transform - - uid: 13625 + - uid: 13662 components: - rot: 1.5707963267948966 rad pos: 25.5,-73.5 parent: 2 type: Transform - - uid: 13626 + - uid: 13663 components: - pos: 30.5,-83.5 parent: 2 type: Transform - - uid: 13627 + - uid: 13664 components: - pos: 30.5,-84.5 parent: 2 type: Transform - - uid: 13628 + - uid: 13665 components: - rot: 1.5707963267948966 rad pos: 29.5,-86.5 parent: 2 type: Transform - - uid: 13629 + - uid: 13666 components: - pos: 30.5,-85.5 parent: 2 type: Transform - - uid: 13630 + - uid: 13667 components: - pos: -13.5,1.5 parent: 2 type: Transform - - uid: 13631 + - uid: 13668 components: - pos: -13.5,-0.5 parent: 2 type: Transform - - uid: 13632 + - uid: 13669 components: - pos: -13.5,-1.5 parent: 2 type: Transform - - uid: 13633 + - uid: 13670 components: - pos: -13.5,-2.5 parent: 2 type: Transform - - uid: 13634 + - uid: 13671 components: - pos: -13.5,-3.5 parent: 2 type: Transform - - uid: 13635 + - uid: 13672 components: - pos: -13.5,-4.5 parent: 2 type: Transform - - uid: 13636 + - uid: 13673 components: - pos: -13.5,-5.5 parent: 2 type: Transform - - uid: 13637 + - uid: 13674 components: - pos: -13.5,2.5 parent: 2 type: Transform - - uid: 13638 + - uid: 13675 components: - pos: -13.5,3.5 parent: 2 type: Transform - - uid: 13639 + - uid: 13676 components: - pos: -13.5,4.5 parent: 2 type: Transform - - uid: 13640 + - uid: 13677 components: - pos: -13.5,6.5 parent: 2 type: Transform - - uid: 13641 + - uid: 13678 components: - pos: -13.5,7.5 parent: 2 type: Transform - - uid: 13642 + - uid: 13679 components: - rot: -1.5707963267948966 rad pos: -14.5,-6.5 parent: 2 type: Transform - - uid: 13643 + - uid: 13680 components: - rot: -1.5707963267948966 rad pos: -15.5,-6.5 parent: 2 type: Transform - - uid: 13644 + - uid: 13681 components: - rot: -1.5707963267948966 rad pos: -16.5,-6.5 parent: 2 type: Transform - - uid: 13645 + - uid: 13682 components: - rot: -1.5707963267948966 rad pos: -17.5,-6.5 parent: 2 type: Transform - - uid: 13646 + - uid: 13683 components: - rot: -1.5707963267948966 rad pos: -18.5,-6.5 parent: 2 type: Transform - - uid: 13647 + - uid: 13684 components: - pos: -19.5,-12.5 parent: 2 type: Transform - - uid: 13648 + - uid: 13685 components: - pos: -19.5,-11.5 parent: 2 type: Transform - - uid: 13649 + - uid: 13686 components: - pos: -19.5,-10.5 parent: 2 type: Transform - - uid: 13650 + - uid: 13687 components: - pos: -19.5,-9.5 parent: 2 type: Transform - - uid: 13651 + - uid: 13688 components: - pos: -19.5,-8.5 parent: 2 type: Transform - - uid: 13652 + - uid: 13689 components: - pos: -19.5,-7.5 parent: 2 type: Transform - - uid: 13653 + - uid: 13690 components: - rot: -1.5707963267948966 rad pos: -14.5,8.5 parent: 2 type: Transform - - uid: 13654 + - uid: 13691 components: - rot: -1.5707963267948966 rad pos: -15.5,8.5 parent: 2 type: Transform - - uid: 13655 + - uid: 13692 components: - rot: -1.5707963267948966 rad pos: -17.5,8.5 parent: 2 type: Transform - - uid: 13656 + - uid: 13693 components: - rot: -1.5707963267948966 rad pos: -18.5,8.5 parent: 2 type: Transform - - uid: 13657 + - uid: 13694 components: - rot: 3.141592653589793 rad pos: -19.5,7.5 parent: 2 type: Transform - - uid: 13658 + - uid: 13695 components: - rot: -1.5707963267948966 rad pos: -20.5,6.5 parent: 2 type: Transform - - uid: 13659 + - uid: 13696 components: - rot: -1.5707963267948966 rad pos: -21.5,6.5 parent: 2 type: Transform - - uid: 13660 + - uid: 13697 components: - rot: -1.5707963267948966 rad pos: -22.5,6.5 parent: 2 type: Transform - - uid: 13661 + - uid: 13698 components: - rot: -1.5707963267948966 rad pos: -23.5,6.5 parent: 2 type: Transform - - uid: 13662 + - uid: 13699 components: - rot: -1.5707963267948966 rad pos: -24.5,6.5 parent: 2 type: Transform - - uid: 13663 + - uid: 13700 components: - rot: -1.5707963267948966 rad pos: -20.5,-6.5 parent: 2 type: Transform - - uid: 13664 + - uid: 13701 components: - rot: -1.5707963267948966 rad pos: -21.5,-6.5 parent: 2 type: Transform - - uid: 13665 + - uid: 13702 components: - rot: -1.5707963267948966 rad pos: -22.5,-6.5 parent: 2 type: Transform - - uid: 13666 + - uid: 13703 components: - rot: -1.5707963267948966 rad pos: -23.5,-6.5 parent: 2 type: Transform - - uid: 13667 + - uid: 13704 components: - rot: -1.5707963267948966 rad pos: -24.5,-6.5 parent: 2 type: Transform - - uid: 13668 + - uid: 13705 components: - pos: -25.5,5.5 parent: 2 type: Transform - - uid: 13669 + - uid: 13706 components: - pos: -25.5,4.5 parent: 2 type: Transform - - uid: 13670 + - uid: 13707 components: - pos: -25.5,3.5 parent: 2 type: Transform - - uid: 13671 + - uid: 13708 components: - pos: -25.5,2.5 parent: 2 type: Transform - - uid: 13672 + - uid: 13709 components: - pos: -25.5,1.5 parent: 2 type: Transform - - uid: 13673 + - uid: 13710 components: - pos: -25.5,0.5 parent: 2 type: Transform - - uid: 13674 + - uid: 13711 components: - pos: -25.5,-1.5 parent: 2 type: Transform - - uid: 13675 + - uid: 13712 components: - pos: -25.5,-2.5 parent: 2 type: Transform - - uid: 13676 + - uid: 13713 components: - pos: -25.5,-3.5 parent: 2 type: Transform - - uid: 13677 + - uid: 13714 components: - pos: -25.5,-4.5 parent: 2 type: Transform - - uid: 13678 + - uid: 13715 components: - pos: -25.5,-5.5 parent: 2 type: Transform - - uid: 13679 + - uid: 13716 components: - pos: -19.5,9.5 parent: 2 type: Transform - - uid: 13680 + - uid: 13717 components: - pos: -19.5,10.5 parent: 2 type: Transform - - uid: 13681 + - uid: 13718 components: - pos: -19.5,11.5 parent: 2 type: Transform - - uid: 13682 + - uid: 13719 components: - pos: -19.5,12.5 parent: 2 type: Transform - - uid: 13683 + - uid: 13720 components: - rot: 1.5707963267948966 rad pos: -26.5,6.5 parent: 2 type: Transform - - uid: 13684 + - uid: 13721 components: - rot: 3.141592653589793 rad pos: -32.5,-12.5 parent: 2 type: Transform - - uid: 13685 + - uid: 13722 components: - rot: 3.141592653589793 rad pos: -32.5,-11.5 parent: 2 type: Transform - - uid: 13686 + - uid: 13723 components: - rot: -1.5707963267948966 rad pos: -33.5,-10.5 parent: 2 type: Transform - - uid: 13687 + - uid: 13724 components: - rot: -1.5707963267948966 rad pos: -34.5,-10.5 parent: 2 type: Transform - - uid: 13688 + - uid: 13725 components: - rot: -1.5707963267948966 rad pos: -35.5,-10.5 parent: 2 type: Transform - - uid: 13689 + - uid: 13726 components: - pos: -36.5,-9.5 parent: 2 type: Transform - - uid: 13690 + - uid: 13727 components: - pos: -36.5,-8.5 parent: 2 type: Transform - - uid: 13691 + - uid: 13728 components: - pos: -36.5,-7.5 parent: 2 type: Transform - - uid: 13692 + - uid: 13729 components: - pos: -36.5,-6.5 parent: 2 type: Transform - - uid: 13693 + - uid: 13730 components: - rot: -1.5707963267948966 rad pos: -37.5,-5.5 parent: 2 type: Transform - - uid: 13694 + - uid: 13731 components: - rot: -1.5707963267948966 rad pos: -26.5,-0.5 parent: 2 type: Transform - - uid: 13695 + - uid: 13732 components: - rot: -1.5707963267948966 rad pos: -27.5,-0.5 parent: 2 type: Transform - - uid: 13696 + - uid: 13733 components: - rot: -1.5707963267948966 rad pos: -28.5,-0.5 parent: 2 type: Transform - - uid: 13697 + - uid: 13734 components: - rot: -1.5707963267948966 rad pos: -29.5,-0.5 parent: 2 type: Transform - - uid: 13698 + - uid: 13735 components: - rot: -1.5707963267948966 rad pos: -30.5,-0.5 parent: 2 type: Transform - - uid: 13699 + - uid: 13736 components: - rot: -1.5707963267948966 rad pos: -0.5,-75.5 parent: 2 type: Transform - - uid: 13700 + - uid: 13737 components: - rot: -1.5707963267948966 rad pos: -1.5,-75.5 parent: 2 type: Transform - - uid: 13701 + - uid: 13738 components: - rot: -1.5707963267948966 rad pos: -2.5,-75.5 parent: 2 type: Transform - - uid: 13702 + - uid: 13739 components: - rot: -1.5707963267948966 rad pos: -3.5,-75.5 parent: 2 type: Transform - - uid: 13703 + - uid: 13740 components: - rot: -1.5707963267948966 rad pos: -4.5,-75.5 parent: 2 type: Transform - - uid: 13704 + - uid: 13741 components: - rot: -1.5707963267948966 rad pos: -5.5,-75.5 parent: 2 type: Transform - - uid: 13705 + - uid: 13742 components: - rot: -1.5707963267948966 rad pos: -6.5,-75.5 parent: 2 type: Transform - - uid: 13706 + - uid: 13743 components: - rot: -1.5707963267948966 rad pos: -7.5,-75.5 parent: 2 type: Transform - - uid: 13707 + - uid: 13744 components: - rot: -1.5707963267948966 rad pos: -8.5,-75.5 parent: 2 type: Transform - - uid: 13708 + - uid: 13745 components: - rot: -1.5707963267948966 rad pos: -9.5,-75.5 parent: 2 type: Transform - - uid: 13709 + - uid: 13746 components: - rot: -1.5707963267948966 rad pos: -10.5,-75.5 parent: 2 type: Transform - - uid: 13710 + - uid: 13747 components: - rot: -1.5707963267948966 rad pos: -11.5,-75.5 parent: 2 type: Transform - - uid: 13711 + - uid: 13748 components: - rot: -1.5707963267948966 rad pos: -12.5,-75.5 parent: 2 type: Transform - - uid: 13712 + - uid: 13749 components: - rot: -1.5707963267948966 rad pos: -13.5,-75.5 parent: 2 type: Transform - - uid: 13713 + - uid: 13750 components: - rot: -1.5707963267948966 rad pos: -14.5,-75.5 parent: 2 type: Transform - - uid: 13714 + - uid: 13751 components: - rot: -1.5707963267948966 rad pos: -15.5,-75.5 parent: 2 type: Transform - - uid: 13715 + - uid: 13752 components: - rot: -1.5707963267948966 rad pos: -16.5,-75.5 parent: 2 type: Transform - - uid: 13716 + - uid: 13753 components: - rot: -1.5707963267948966 rad pos: -17.5,-75.5 parent: 2 type: Transform - - uid: 13717 + - uid: 13754 components: - rot: -1.5707963267948966 rad pos: -18.5,-75.5 parent: 2 type: Transform - - uid: 13718 + - uid: 13755 components: - rot: 3.141592653589793 rad pos: -19.5,-76.5 parent: 2 type: Transform - - uid: 13719 + - uid: 13756 components: - rot: 1.5707963267948966 rad pos: -20.5,-77.5 parent: 2 type: Transform - - uid: 13720 + - uid: 13757 components: - rot: 1.5707963267948966 rad pos: -21.5,-77.5 parent: 2 type: Transform - - uid: 13721 + - uid: 13758 components: - rot: 1.5707963267948966 rad pos: -22.5,-77.5 parent: 2 type: Transform - - uid: 13722 + - uid: 13759 components: - rot: 1.5707963267948966 rad pos: -23.5,-77.5 parent: 2 type: Transform - - uid: 13723 + - uid: 13760 components: - rot: 1.5707963267948966 rad pos: -24.5,-77.5 parent: 2 type: Transform - - uid: 13724 + - uid: 13761 components: - rot: 1.5707963267948966 rad pos: -25.5,-77.5 parent: 2 type: Transform - - uid: 13725 + - uid: 13762 components: - rot: 1.5707963267948966 rad pos: -26.5,-77.5 parent: 2 type: Transform - - uid: 13726 + - uid: 13763 components: - rot: 1.5707963267948966 rad pos: -27.5,-77.5 parent: 2 type: Transform - - uid: 13727 + - uid: 13764 components: - rot: 1.5707963267948966 rad pos: -28.5,-77.5 parent: 2 type: Transform - - uid: 13728 + - uid: 13765 components: - rot: 1.5707963267948966 rad pos: -29.5,-77.5 parent: 2 type: Transform - - uid: 13729 + - uid: 13766 components: - rot: 1.5707963267948966 rad pos: -30.5,-77.5 parent: 2 type: Transform - - uid: 13730 + - uid: 13767 components: - rot: 1.5707963267948966 rad pos: -31.5,-77.5 parent: 2 type: Transform - - uid: 13731 + - uid: 13768 components: - rot: 1.5707963267948966 rad pos: -32.5,-77.5 parent: 2 type: Transform - - uid: 13732 + - uid: 13769 components: - rot: 1.5707963267948966 rad pos: -33.5,-77.5 parent: 2 type: Transform - - uid: 13733 + - uid: 13770 components: - rot: 1.5707963267948966 rad pos: -34.5,-77.5 parent: 2 type: Transform - - uid: 13734 + - uid: 13771 components: - rot: 1.5707963267948966 rad pos: -35.5,-77.5 parent: 2 type: Transform - - uid: 13735 + - uid: 13772 components: - pos: -36.5,-78.5 parent: 2 type: Transform - - uid: 13736 + - uid: 13773 components: - pos: -36.5,-79.5 parent: 2 type: Transform - - uid: 13737 + - uid: 13774 components: - rot: 3.141592653589793 rad pos: -19.5,13.5 parent: 2 type: Transform - - uid: 13738 + - uid: 13775 components: - rot: 3.141592653589793 rad pos: -19.5,14.5 parent: 2 type: Transform - - uid: 13739 + - uid: 13776 components: - rot: 3.141592653589793 rad pos: -19.5,15.5 parent: 2 type: Transform - - uid: 13740 + - uid: 13777 components: - rot: 3.141592653589793 rad pos: -19.5,16.5 parent: 2 type: Transform - - uid: 13741 + - uid: 13778 components: - rot: 3.141592653589793 rad pos: -19.5,17.5 parent: 2 type: Transform - - uid: 13742 + - uid: 13779 components: - rot: 3.141592653589793 rad pos: -19.5,18.5 parent: 2 type: Transform - - uid: 13743 + - uid: 13780 components: - rot: 3.141592653589793 rad pos: -19.5,19.5 parent: 2 type: Transform - - uid: 13744 + - uid: 13781 components: - rot: 3.141592653589793 rad pos: -19.5,20.5 parent: 2 type: Transform - - uid: 13745 + - uid: 13782 components: - rot: 3.141592653589793 rad pos: -19.5,21.5 parent: 2 type: Transform - - uid: 13746 + - uid: 13783 components: - rot: 3.141592653589793 rad pos: -19.5,22.5 parent: 2 type: Transform - - uid: 13747 + - uid: 13784 components: - rot: -1.5707963267948966 rad pos: -20.5,23.5 parent: 2 type: Transform - - uid: 13748 + - uid: 13785 components: - rot: -1.5707963267948966 rad pos: -21.5,23.5 parent: 2 type: Transform - - uid: 13749 + - uid: 13786 components: - rot: 3.141592653589793 rad pos: -22.5,24.5 parent: 2 type: Transform - - uid: 13750 + - uid: 13787 components: - rot: -1.5707963267948966 rad pos: -41.5,19.5 parent: 2 type: Transform - - uid: 13751 + - uid: 13788 components: - rot: -1.5707963267948966 rad pos: -35.5,19.5 parent: 2 type: Transform - - uid: 13752 + - uid: 13789 components: - rot: 1.5707963267948966 rad pos: -23.5,23.5 parent: 2 type: Transform - - uid: 13753 + - uid: 13790 components: - rot: 1.5707963267948966 rad pos: -24.5,23.5 parent: 2 type: Transform - - uid: 13754 + - uid: 13791 components: - rot: 1.5707963267948966 rad pos: -25.5,23.5 parent: 2 type: Transform - - uid: 13755 + - uid: 13792 components: - rot: 1.5707963267948966 rad pos: -26.5,23.5 parent: 2 type: Transform - - uid: 13756 + - uid: 13793 components: - rot: 1.5707963267948966 rad pos: -27.5,23.5 parent: 2 type: Transform - - uid: 13757 + - uid: 13794 components: - rot: 1.5707963267948966 rad pos: -28.5,23.5 parent: 2 type: Transform - - uid: 13758 + - uid: 13795 components: - rot: 1.5707963267948966 rad pos: -29.5,23.5 parent: 2 type: Transform - - uid: 13759 + - uid: 13796 components: - rot: 1.5707963267948966 rad pos: -30.5,23.5 parent: 2 type: Transform - - uid: 13760 + - uid: 13797 components: - rot: 1.5707963267948966 rad pos: -31.5,23.5 parent: 2 type: Transform - - uid: 13761 + - uid: 13798 components: - rot: 1.5707963267948966 rad pos: -32.5,23.5 parent: 2 type: Transform - - uid: 13762 + - uid: 13799 components: - rot: 1.5707963267948966 rad pos: -33.5,23.5 parent: 2 type: Transform - - uid: 13763 + - uid: 13800 components: - rot: 1.5707963267948966 rad pos: -34.5,23.5 parent: 2 type: Transform - - uid: 13764 + - uid: 13801 components: - rot: 1.5707963267948966 rad pos: -35.5,23.5 parent: 2 type: Transform - - uid: 13765 + - uid: 13802 components: - rot: 1.5707963267948966 rad pos: -36.5,23.5 parent: 2 type: Transform - - uid: 13766 + - uid: 13803 components: - rot: 1.5707963267948966 rad pos: -37.5,23.5 parent: 2 type: Transform - - uid: 13767 + - uid: 13804 components: - rot: 1.5707963267948966 rad pos: -38.5,23.5 parent: 2 type: Transform - - uid: 13768 + - uid: 13805 components: - rot: 3.141592653589793 rad pos: -46.5,10.5 parent: 2 type: Transform - - uid: 13769 + - uid: 13806 components: - rot: 1.5707963267948966 rad pos: -40.5,23.5 parent: 2 type: Transform - - uid: 13770 + - uid: 13807 components: - rot: 1.5707963267948966 rad pos: -41.5,23.5 parent: 2 type: Transform - - uid: 13771 + - uid: 13808 components: - rot: 3.141592653589793 rad pos: -42.5,24.5 parent: 2 type: Transform - - uid: 13772 + - uid: 13809 components: - rot: 3.141592653589793 rad pos: -42.5,25.5 parent: 2 type: Transform - - uid: 13773 + - uid: 13810 components: - rot: 3.141592653589793 rad pos: -42.5,26.5 parent: 2 type: Transform - - uid: 13774 + - uid: 13811 components: - rot: -1.5707963267948966 rad pos: -38.5,19.5 parent: 2 type: Transform - - uid: 13775 + - uid: 13812 components: - pos: -42.5,18.5 parent: 2 type: Transform - - uid: 13776 + - uid: 13813 components: - pos: -42.5,17.5 parent: 2 type: Transform - - uid: 13777 + - uid: 13814 components: - pos: -42.5,15.5 parent: 2 type: Transform - - uid: 13778 + - uid: 13815 components: - pos: -42.5,16.5 parent: 2 type: Transform - - uid: 13779 + - uid: 13816 components: - rot: 3.141592653589793 rad pos: -5.5,-19.5 parent: 2 type: Transform - - uid: 13780 + - uid: 13817 components: - rot: 3.141592653589793 rad pos: -5.5,-17.5 parent: 2 type: Transform - - uid: 13781 + - uid: 13818 components: - rot: -1.5707963267948966 rad pos: -44.5,5.5 parent: 2 type: Transform - - uid: 13782 + - uid: 13819 components: - pos: -45.5,4.5 parent: 2 type: Transform - - uid: 13783 + - uid: 13820 components: - pos: -45.5,3.5 parent: 2 type: Transform - - uid: 13784 + - uid: 13821 components: - pos: -45.5,2.5 parent: 2 type: Transform - - uid: 13785 + - uid: 13822 components: - pos: -45.5,1.5 parent: 2 type: Transform - - uid: 13786 + - uid: 13823 components: - pos: -45.5,0.5 parent: 2 type: Transform - - uid: 13787 + - uid: 13824 components: - rot: -1.5707963267948966 rad pos: -31.5,-0.5 parent: 2 type: Transform - - uid: 13788 + - uid: 13825 components: - rot: -1.5707963267948966 rad pos: -32.5,-0.5 parent: 2 type: Transform - - uid: 13789 + - uid: 13826 components: - rot: -1.5707963267948966 rad pos: -33.5,-0.5 parent: 2 type: Transform - - uid: 13790 + - uid: 13827 components: - rot: -1.5707963267948966 rad pos: -34.5,-0.5 parent: 2 type: Transform - - uid: 13791 + - uid: 13828 components: - rot: -1.5707963267948966 rad pos: -35.5,-0.5 parent: 2 type: Transform - - uid: 13792 + - uid: 13829 components: - rot: -1.5707963267948966 rad pos: -36.5,-0.5 parent: 2 type: Transform - - uid: 13793 + - uid: 13830 components: - rot: -1.5707963267948966 rad pos: -37.5,-0.5 parent: 2 type: Transform - - uid: 13794 + - uid: 13831 components: - rot: -1.5707963267948966 rad pos: -38.5,-0.5 parent: 2 type: Transform - - uid: 13795 + - uid: 13832 components: - rot: -1.5707963267948966 rad pos: -39.5,-0.5 parent: 2 type: Transform - - uid: 13796 + - uid: 13833 components: - rot: -1.5707963267948966 rad pos: -40.5,-0.5 parent: 2 type: Transform - - uid: 13797 + - uid: 13834 components: - rot: -1.5707963267948966 rad pos: -41.5,-0.5 parent: 2 type: Transform - - uid: 13798 + - uid: 13835 components: - rot: -1.5707963267948966 rad pos: -42.5,-0.5 parent: 2 type: Transform - - uid: 13799 + - uid: 13836 components: - rot: -1.5707963267948966 rad pos: -43.5,-0.5 parent: 2 type: Transform - - uid: 13800 + - uid: 13837 components: - rot: -1.5707963267948966 rad pos: -44.5,-0.5 parent: 2 type: Transform - - uid: 13801 + - uid: 13838 components: - rot: 3.141592653589793 rad pos: -5.5,-20.5 parent: 2 type: Transform - - uid: 13802 + - uid: 13839 components: - rot: 3.141592653589793 rad pos: -5.5,-18.5 parent: 2 type: Transform - - uid: 13803 + - uid: 13840 components: - rot: -1.5707963267948966 rad pos: -42.5,18.5 parent: 2 type: Transform - - uid: 13804 + - uid: 13841 components: - rot: 3.141592653589793 rad pos: -3.5,-22.5 parent: 2 type: Transform - - uid: 13805 + - uid: 13842 components: - rot: 3.141592653589793 rad pos: -3.5,-23.5 parent: 2 type: Transform - - uid: 13806 + - uid: 13843 components: - rot: 1.5707963267948966 rad pos: -7.5,-9.5 parent: 2 type: Transform - - uid: 13807 + - uid: 13844 components: - rot: 1.5707963267948966 rad pos: 28.5,-86.5 parent: 2 type: Transform - - uid: 13808 + - uid: 13845 components: - rot: 3.141592653589793 rad pos: 15.5,-30.5 parent: 2 type: Transform - - uid: 13809 + - uid: 13846 components: - rot: 3.141592653589793 rad pos: 25.5,-53.5 parent: 2 type: Transform - - uid: 13810 + - uid: 13847 components: - rot: 3.141592653589793 rad pos: 18.5,-53.5 parent: 2 type: Transform - - uid: 13811 + - uid: 13848 components: - rot: 3.141592653589793 rad pos: 15.5,-40.5 parent: 2 type: Transform - - uid: 13812 + - uid: 13849 components: - rot: 3.141592653589793 rad pos: 15.5,-38.5 parent: 2 type: Transform - - uid: 13813 + - uid: 13850 components: - pos: -5.5,-55.5 parent: 2 type: Transform - - uid: 13814 + - uid: 13851 components: - pos: -5.5,-56.5 parent: 2 type: Transform - - uid: 13815 + - uid: 13852 components: - pos: -5.5,-57.5 parent: 2 type: Transform - - uid: 13816 + - uid: 13853 components: - pos: -5.5,-58.5 parent: 2 type: Transform - - uid: 13817 + - uid: 13854 components: - pos: -5.5,-59.5 parent: 2 type: Transform - - uid: 13818 + - uid: 13855 components: - pos: -5.5,-60.5 parent: 2 type: Transform - - uid: 13819 + - uid: 13856 components: - pos: -6.5,-62.5 parent: 2 type: Transform - - uid: 13820 + - uid: 13857 components: - pos: -6.5,-63.5 parent: 2 type: Transform - - uid: 13821 + - uid: 13858 components: - pos: -6.5,-64.5 parent: 2 type: Transform - - uid: 13822 + - uid: 13859 components: - rot: 1.5707963267948966 rad pos: -8.5,-66.5 parent: 2 type: Transform - - uid: 13823 + - uid: 13860 components: - rot: 3.141592653589793 rad pos: -3.5,-66.5 parent: 2 type: Transform - - uid: 13824 + - uid: 13861 components: - rot: 3.141592653589793 rad pos: -3.5,-65.5 parent: 2 type: Transform - - uid: 13825 + - uid: 13862 components: - rot: 3.141592653589793 rad pos: -3.5,-64.5 parent: 2 type: Transform - - uid: 13826 + - uid: 13863 components: - rot: 3.141592653589793 rad pos: -3.5,-63.5 parent: 2 type: Transform - - uid: 13827 + - uid: 13864 components: - rot: 3.141592653589793 rad pos: -3.5,-62.5 parent: 2 type: Transform - - uid: 13828 + - uid: 13865 components: - rot: -1.5707963267948966 rad pos: -4.5,-61.5 parent: 2 type: Transform - - uid: 13829 + - uid: 13866 components: - rot: -1.5707963267948966 rad pos: -2.5,-61.5 parent: 2 type: Transform - - uid: 13830 + - uid: 13867 components: - rot: -1.5707963267948966 rad pos: -1.5,-61.5 parent: 2 type: Transform - - uid: 13831 + - uid: 13868 components: - rot: -1.5707963267948966 rad pos: -0.5,-61.5 parent: 2 type: Transform - - uid: 13832 + - uid: 13869 components: - rot: -1.5707963267948966 rad pos: 0.5,-61.5 parent: 2 type: Transform - - uid: 13833 + - uid: 13870 components: - rot: -1.5707963267948966 rad pos: 1.5,-61.5 parent: 2 type: Transform - - uid: 13834 + - uid: 13871 components: - pos: 2.5,-62.5 parent: 2 type: Transform - - uid: 13835 + - uid: 13872 components: - rot: -1.5707963267948966 rad pos: -7.5,-61.5 parent: 2 type: Transform - - uid: 13836 + - uid: 13873 components: - rot: -1.5707963267948966 rad pos: -8.5,-61.5 parent: 2 type: Transform - - uid: 13837 + - uid: 13874 components: - rot: -1.5707963267948966 rad pos: -9.5,-61.5 parent: 2 type: Transform - - uid: 13838 + - uid: 13875 components: - rot: -1.5707963267948966 rad pos: -10.5,-61.5 parent: 2 type: Transform - - uid: 13839 + - uid: 13876 components: - rot: -1.5707963267948966 rad pos: -11.5,-61.5 parent: 2 type: Transform - - uid: 13840 + - uid: 13877 components: - rot: -1.5707963267948966 rad pos: -12.5,-61.5 parent: 2 type: Transform - - uid: 13841 + - uid: 13878 components: - pos: -13.5,-62.5 parent: 2 type: Transform - - uid: 13842 + - uid: 13879 components: - rot: 3.141592653589793 rad pos: -13.5,-63.5 parent: 2 type: Transform - - uid: 13843 + - uid: 13880 components: - rot: 3.141592653589793 rad pos: -13.5,-64.5 parent: 2 type: Transform - - uid: 13844 + - uid: 13881 components: - rot: 3.141592653589793 rad pos: -13.5,-65.5 parent: 2 type: Transform - - uid: 13845 + - uid: 13882 components: - rot: 3.141592653589793 rad pos: -13.5,-66.5 parent: 2 type: Transform - - uid: 13846 + - uid: 13883 components: - rot: 1.5707963267948966 rad pos: -14.5,-67.5 parent: 2 type: Transform - - uid: 13847 + - uid: 13884 components: - rot: 1.5707963267948966 rad pos: -15.5,-67.5 parent: 2 type: Transform - - uid: 13848 + - uid: 13885 components: - rot: 3.141592653589793 rad pos: -3.5,-26.5 parent: 2 type: Transform - - uid: 13849 + - uid: 13886 components: - rot: 3.141592653589793 rad pos: -12.5,6.5 parent: 2 type: Transform - - uid: 13850 + - uid: 13887 components: - rot: 3.141592653589793 rad pos: -12.5,7.5 parent: 2 type: Transform - - uid: 13851 + - uid: 13888 components: - pos: -45.5,12.5 parent: 2 type: Transform - - uid: 13852 + - uid: 13889 components: - pos: -45.5,13.5 parent: 2 type: Transform - - uid: 13853 + - uid: 13890 components: - rot: 1.5707963267948966 rad pos: -44.5,18.5 parent: 2 type: Transform - - uid: 13854 + - uid: 13891 components: - rot: -1.5707963267948966 rad pos: -39.5,23.5 parent: 2 type: Transform - - uid: 13855 + - uid: 13892 components: - pos: -45.5,14.5 parent: 2 type: Transform - - uid: 13856 + - uid: 13893 components: - pos: -45.5,15.5 parent: 2 type: Transform - - uid: 13857 + - uid: 13894 components: - pos: -45.5,16.5 parent: 2 type: Transform - - uid: 13858 + - uid: 13895 components: - pos: -45.5,17.5 parent: 2 type: Transform - - uid: 13859 + - uid: 13896 components: - rot: -1.5707963267948966 rad pos: -43.5,18.5 parent: 2 type: Transform - - uid: 13860 + - uid: 13897 components: - pos: -19.5,24.5 parent: 2 type: Transform - - uid: 13861 + - uid: 13898 components: - pos: -19.5,25.5 parent: 2 type: Transform - - uid: 13862 + - uid: 13899 components: - pos: -19.5,26.5 parent: 2 type: Transform - - uid: 13863 + - uid: 13900 components: - pos: -19.5,27.5 parent: 2 type: Transform - - uid: 13864 + - uid: 13901 components: - pos: -19.5,28.5 parent: 2 type: Transform - - uid: 13865 + - uid: 13902 components: - rot: 1.5707963267948966 rad pos: -18.5,29.5 parent: 2 type: Transform - - uid: 13866 + - uid: 13903 components: - rot: 1.5707963267948966 rad pos: -17.5,29.5 parent: 2 type: Transform - - uid: 13867 + - uid: 13904 components: - rot: 1.5707963267948966 rad pos: -16.5,29.5 parent: 2 type: Transform - - uid: 13868 + - uid: 13905 components: - rot: 3.141592653589793 rad pos: -15.5,30.5 parent: 2 type: Transform - - uid: 13869 + - uid: 13906 components: - rot: 3.141592653589793 rad pos: -15.5,31.5 parent: 2 type: Transform - - uid: 13870 + - uid: 13907 components: - rot: 3.141592653589793 rad pos: -15.5,32.5 parent: 2 type: Transform - - uid: 13871 + - uid: 13908 components: - rot: 3.141592653589793 rad pos: -15.5,33.5 parent: 2 type: Transform - - uid: 13872 + - uid: 13909 components: - rot: 3.141592653589793 rad pos: -15.5,34.5 parent: 2 type: Transform - - uid: 13873 + - uid: 13910 components: - rot: 3.141592653589793 rad pos: -15.5,35.5 parent: 2 type: Transform - - uid: 13874 + - uid: 13911 components: - rot: 3.141592653589793 rad pos: -15.5,36.5 parent: 2 type: Transform - - uid: 13875 + - uid: 13912 components: - rot: -1.5707963267948966 rad pos: -16.5,37.5 parent: 2 type: Transform - - uid: 13876 + - uid: 13913 components: - pos: -15.5,38.5 parent: 2 type: Transform - - uid: 13877 + - uid: 13914 components: - pos: -15.5,39.5 parent: 2 type: Transform - - uid: 13878 + - uid: 13915 components: - pos: -15.5,40.5 parent: 2 type: Transform - - uid: 13879 + - uid: 13916 components: - pos: -15.5,41.5 parent: 2 type: Transform - - uid: 13880 + - uid: 13917 components: - pos: -15.5,42.5 parent: 2 type: Transform - - uid: 13881 + - uid: 13918 components: - pos: -15.5,43.5 parent: 2 type: Transform - - uid: 13882 + - uid: 13919 components: - rot: -1.5707963267948966 rad pos: -14.5,44.5 parent: 2 type: Transform - - uid: 13883 + - uid: 13920 components: - rot: -1.5707963267948966 rad pos: -13.5,44.5 parent: 2 type: Transform - - uid: 13884 + - uid: 13921 components: - rot: -1.5707963267948966 rad pos: -12.5,44.5 parent: 2 type: Transform - - uid: 13885 + - uid: 13922 components: - rot: -1.5707963267948966 rad pos: -11.5,44.5 parent: 2 type: Transform - - uid: 13886 + - uid: 13923 components: - rot: -1.5707963267948966 rad pos: -16.5,44.5 parent: 2 type: Transform - - uid: 13887 + - uid: 13924 components: - rot: 3.141592653589793 rad pos: -17.5,45.5 parent: 2 type: Transform - - uid: 13888 + - uid: 13925 components: - rot: 3.141592653589793 rad pos: -17.5,46.5 parent: 2 type: Transform - - uid: 13889 + - uid: 13926 components: - rot: 3.141592653589793 rad pos: -17.5,47.5 parent: 2 type: Transform - - uid: 13890 + - uid: 13927 components: - rot: 3.141592653589793 rad pos: -17.5,48.5 parent: 2 type: Transform - - uid: 13891 + - uid: 13928 components: - rot: 3.141592653589793 rad pos: -17.5,49.5 parent: 2 type: Transform - - uid: 13892 + - uid: 13929 components: - rot: -1.5707963267948966 rad pos: -5.5,44.5 parent: 2 type: Transform - - uid: 13893 + - uid: 13930 components: - rot: -1.5707963267948966 rad pos: -6.5,44.5 parent: 2 type: Transform - - uid: 13894 + - uid: 13931 components: - rot: -1.5707963267948966 rad pos: -7.5,44.5 parent: 2 type: Transform - - uid: 13895 + - uid: 13932 components: - rot: -1.5707963267948966 rad pos: -8.5,44.5 parent: 2 type: Transform - - uid: 13896 + - uid: 13933 components: - rot: -1.5707963267948966 rad pos: -9.5,44.5 parent: 2 type: Transform - - uid: 13897 + - uid: 13934 components: - rot: -1.5707963267948966 rad pos: -10.5,44.5 parent: 2 type: Transform - - uid: 13898 + - uid: 13935 components: - rot: -1.5707963267948966 rad pos: -14.5,50.5 parent: 2 type: Transform - - uid: 13899 + - uid: 13936 components: - rot: -1.5707963267948966 rad pos: -16.5,50.5 parent: 2 type: Transform - - uid: 13900 + - uid: 13937 components: - rot: -1.5707963267948966 rad pos: -15.5,50.5 parent: 2 type: Transform - - uid: 13901 + - uid: 13938 components: - pos: -37.5,-94.5 parent: 2 type: Transform - - uid: 13902 + - uid: 13939 components: - rot: -1.5707963267948966 rad pos: -39.5,-95.5 parent: 2 type: Transform - - uid: 13903 + - uid: 13940 components: - rot: -1.5707963267948966 rad pos: -40.5,-95.5 parent: 2 type: Transform - - uid: 13904 + - uid: 13941 components: - rot: 3.141592653589793 rad pos: -41.5,-94.5 parent: 2 type: Transform - - uid: 13905 + - uid: 13942 components: - rot: 3.141592653589793 rad pos: -41.5,-93.5 parent: 2 type: Transform - - uid: 13906 + - uid: 13943 components: - rot: 3.141592653589793 rad pos: -41.5,-92.5 parent: 2 type: Transform - - uid: 13907 + - uid: 13944 components: - rot: 3.141592653589793 rad pos: -41.5,-91.5 parent: 2 type: Transform - - uid: 13908 + - uid: 13945 components: - rot: 3.141592653589793 rad pos: -41.5,-90.5 parent: 2 type: Transform - - uid: 13909 + - uid: 13946 components: - rot: 3.141592653589793 rad pos: -41.5,-89.5 parent: 2 type: Transform - - uid: 13910 + - uid: 13947 components: - rot: 3.141592653589793 rad pos: -41.5,-88.5 parent: 2 type: Transform - - uid: 13911 + - uid: 13948 components: - rot: 1.5707963267948966 rad pos: 68.5,-47.5 parent: 2 type: Transform - - uid: 13912 + - uid: 13949 components: - rot: 1.5707963267948966 rad pos: 69.5,-47.5 parent: 2 type: Transform - - uid: 13913 + - uid: 13950 components: - rot: 1.5707963267948966 rad pos: 70.5,-47.5 parent: 2 type: Transform - - uid: 13914 + - uid: 13951 components: - rot: 1.5707963267948966 rad pos: 71.5,-47.5 parent: 2 type: Transform - - uid: 13915 + - uid: 13952 components: - rot: 1.5707963267948966 rad pos: 72.5,-47.5 parent: 2 type: Transform - - uid: 13916 + - uid: 13953 components: - rot: 1.5707963267948966 rad pos: 73.5,-47.5 parent: 2 type: Transform - - uid: 13917 + - uid: 13954 components: - rot: 1.5707963267948966 rad pos: 74.5,-47.5 parent: 2 type: Transform - - uid: 13918 + - uid: 13955 components: - rot: 3.141592653589793 rad pos: 75.5,-46.5 parent: 2 type: Transform - - uid: 13919 + - uid: 13956 components: - rot: 3.141592653589793 rad pos: 75.5,-45.5 parent: 2 type: Transform - - uid: 13920 + - uid: 13957 components: - rot: 3.141592653589793 rad pos: 75.5,-44.5 parent: 2 type: Transform - - uid: 13921 + - uid: 13958 components: - rot: 3.141592653589793 rad pos: 75.5,-43.5 parent: 2 type: Transform - - uid: 13922 + - uid: 13959 components: - rot: 3.141592653589793 rad pos: 75.5,-42.5 parent: 2 type: Transform - - uid: 13923 + - uid: 13960 components: - rot: 3.141592653589793 rad pos: 75.5,-41.5 parent: 2 type: Transform - - uid: 13924 + - uid: 13961 components: - rot: 3.141592653589793 rad pos: 75.5,-40.5 parent: 2 type: Transform - - uid: 13925 + - uid: 13962 components: - rot: 3.141592653589793 rad pos: 75.5,-39.5 parent: 2 type: Transform - - uid: 13926 + - uid: 13963 components: - rot: 3.141592653589793 rad pos: 75.5,-38.5 parent: 2 type: Transform - - uid: 13927 + - uid: 13964 components: - rot: 3.141592653589793 rad pos: 75.5,-37.5 parent: 2 type: Transform - - uid: 13928 + - uid: 13965 components: - rot: 3.141592653589793 rad pos: 75.5,-36.5 parent: 2 type: Transform - - uid: 13929 + - uid: 13966 components: - rot: 3.141592653589793 rad pos: 75.5,-35.5 parent: 2 type: Transform - - uid: 13930 + - uid: 13967 components: - rot: 3.141592653589793 rad pos: 75.5,-34.5 parent: 2 type: Transform - - uid: 13931 + - uid: 13968 components: - rot: 3.141592653589793 rad pos: 75.5,-33.5 parent: 2 type: Transform - - uid: 13932 + - uid: 13969 components: - rot: 3.141592653589793 rad pos: -4.5,-3.5 parent: 2 type: Transform - - uid: 13933 + - uid: 13970 components: - rot: 3.141592653589793 rad pos: -4.5,-4.5 parent: 2 type: Transform - - uid: 13934 + - uid: 13971 components: - rot: 3.141592653589793 rad pos: 15.5,-31.5 parent: 2 type: Transform - - uid: 13935 + - uid: 13972 components: - pos: -42.5,14.5 parent: 2 type: Transform - - uid: 13936 + - uid: 13973 components: - rot: 1.5707963267948966 rad pos: -53.5,-64.5 parent: 2 type: Transform - - uid: 13937 + - uid: 13974 components: - pos: 30.5,-81.5 parent: 2 type: Transform - - uid: 13938 + - uid: 13975 components: - rot: 3.141592653589793 rad pos: -5.5,-16.5 parent: 2 type: Transform - - uid: 13939 + - uid: 13976 components: - rot: 3.141592653589793 rad pos: -5.5,-15.5 parent: 2 type: Transform - - uid: 13940 + - uid: 13977 components: - rot: 3.141592653589793 rad pos: -5.5,-14.5 parent: 2 type: Transform - - uid: 13941 + - uid: 13978 components: - rot: -1.5707963267948966 rad pos: -6.5,-13.5 parent: 2 type: Transform - - uid: 13942 + - uid: 13979 components: - rot: -1.5707963267948966 rad pos: -7.5,-13.5 parent: 2 type: Transform - - uid: 13943 + - uid: 13980 components: - rot: -1.5707963267948966 rad pos: -8.5,-13.5 parent: 2 type: Transform - - uid: 13944 + - uid: 13981 components: - rot: -1.5707963267948966 rad pos: -9.5,-13.5 parent: 2 type: Transform - - uid: 13945 + - uid: 13982 components: - pos: -12.5,-13.5 parent: 2 type: Transform - - uid: 13946 + - uid: 13983 components: - rot: -1.5707963267948966 rad pos: -13.5,-14.5 parent: 2 type: Transform - - uid: 13947 + - uid: 13984 components: - rot: -1.5707963267948966 rad pos: -14.5,-14.5 parent: 2 type: Transform - - uid: 13948 + - uid: 13985 components: - rot: -1.5707963267948966 rad pos: -15.5,-14.5 parent: 2 type: Transform - - uid: 13949 + - uid: 13986 components: - rot: -1.5707963267948966 rad pos: -16.5,-14.5 parent: 2 type: Transform - - uid: 13950 + - uid: 13987 components: - rot: -1.5707963267948966 rad pos: -17.5,-14.5 parent: 2 type: Transform - - uid: 13951 + - uid: 13988 components: - rot: 3.141592653589793 rad pos: -18.5,-13.5 parent: 2 type: Transform - - uid: 13952 + - uid: 13989 components: - rot: 3.141592653589793 rad pos: -18.5,-12.5 parent: 2 type: Transform - - uid: 13953 + - uid: 13990 components: - rot: 3.141592653589793 rad pos: -18.5,-11.5 parent: 2 type: Transform - - uid: 13954 + - uid: 13991 components: - rot: 3.141592653589793 rad pos: -18.5,-10.5 parent: 2 type: Transform - - uid: 13955 + - uid: 13992 components: - rot: 3.141592653589793 rad pos: -18.5,-9.5 parent: 2 type: Transform - - uid: 13956 + - uid: 13993 components: - rot: 3.141592653589793 rad pos: -18.5,-8.5 parent: 2 type: Transform - - uid: 13957 + - uid: 13994 components: - rot: 3.141592653589793 rad pos: -18.5,-7.5 parent: 2 type: Transform - - uid: 13958 + - uid: 13995 components: - rot: 3.141592653589793 rad pos: -18.5,-6.5 parent: 2 type: Transform - - uid: 13959 + - uid: 13996 components: - rot: 3.141592653589793 rad pos: -18.5,-5.5 parent: 2 type: Transform - - uid: 13960 + - uid: 13997 components: - rot: -1.5707963267948966 rad pos: -19.5,-4.5 parent: 2 type: Transform - - uid: 13961 + - uid: 13998 components: - rot: -1.5707963267948966 rad pos: -20.5,-4.5 parent: 2 type: Transform - - uid: 13962 + - uid: 13999 components: - rot: -1.5707963267948966 rad pos: -21.5,-4.5 parent: 2 type: Transform - - uid: 13963 + - uid: 14000 components: - rot: -1.5707963267948966 rad pos: -22.5,-4.5 parent: 2 type: Transform - - uid: 13964 + - uid: 14001 components: - rot: -1.5707963267948966 rad pos: -23.5,-4.5 parent: 2 type: Transform - - uid: 13965 + - uid: 14002 components: - rot: 3.141592653589793 rad pos: -24.5,-3.5 parent: 2 type: Transform - - uid: 13966 + - uid: 14003 components: - rot: 3.141592653589793 rad pos: -24.5,-2.5 parent: 2 type: Transform - - uid: 13967 + - uid: 14004 components: - rot: 3.141592653589793 rad pos: -24.5,-1.5 parent: 2 type: Transform - - uid: 13968 + - uid: 14005 components: - rot: 3.141592653589793 rad pos: -24.5,-0.5 parent: 2 type: Transform - - uid: 13969 + - uid: 14006 components: - rot: 3.141592653589793 rad pos: -24.5,0.5 parent: 2 type: Transform - - uid: 13970 + - uid: 14007 components: - rot: 3.141592653589793 rad pos: -24.5,1.5 parent: 2 type: Transform - - uid: 13971 + - uid: 14008 components: - rot: 3.141592653589793 rad pos: -24.5,2.5 parent: 2 type: Transform - - uid: 13972 + - uid: 14009 components: - rot: 3.141592653589793 rad pos: -24.5,3.5 parent: 2 type: Transform - - uid: 13973 + - uid: 14010 components: - rot: 3.141592653589793 rad pos: -24.5,4.5 parent: 2 type: Transform - - uid: 13974 + - uid: 14011 components: - rot: 3.141592653589793 rad pos: -24.5,5.5 parent: 2 type: Transform - - uid: 13975 + - uid: 14012 components: - rot: 3.141592653589793 rad pos: -24.5,6.5 parent: 2 type: Transform - - uid: 13976 + - uid: 14013 components: - rot: 3.141592653589793 rad pos: -24.5,7.5 parent: 2 type: Transform - - uid: 13977 + - uid: 14014 components: - rot: 1.5707963267948966 rad pos: -23.5,8.5 parent: 2 type: Transform - - uid: 13978 + - uid: 14015 components: - rot: 1.5707963267948966 rad pos: -22.5,8.5 parent: 2 type: Transform - - uid: 13979 + - uid: 14016 components: - rot: 1.5707963267948966 rad pos: -21.5,8.5 parent: 2 type: Transform - - uid: 13980 + - uid: 14017 components: - rot: 3.141592653589793 rad pos: -20.5,9.5 parent: 2 type: Transform - - uid: 13981 + - uid: 14018 components: - rot: 3.141592653589793 rad pos: -20.5,10.5 parent: 2 type: Transform - - uid: 13982 + - uid: 14019 components: - rot: 3.141592653589793 rad pos: -20.5,11.5 parent: 2 type: Transform - - uid: 13983 + - uid: 14020 components: - rot: 3.141592653589793 rad pos: -20.5,12.5 parent: 2 type: Transform - - uid: 13984 + - uid: 14021 components: - rot: 3.141592653589793 rad pos: -20.5,13.5 parent: 2 type: Transform - - uid: 13985 + - uid: 14022 components: - rot: 3.141592653589793 rad pos: -20.5,14.5 parent: 2 type: Transform - - uid: 13986 + - uid: 14023 components: - rot: 3.141592653589793 rad pos: -20.5,15.5 parent: 2 type: Transform - - uid: 13987 + - uid: 14024 components: - rot: 3.141592653589793 rad pos: -20.5,16.5 parent: 2 type: Transform - - uid: 13988 + - uid: 14025 components: - rot: 3.141592653589793 rad pos: -20.5,17.5 parent: 2 type: Transform - - uid: 13989 + - uid: 14026 components: - rot: 3.141592653589793 rad pos: -20.5,18.5 parent: 2 type: Transform - - uid: 13990 + - uid: 14027 components: - rot: 3.141592653589793 rad pos: -20.5,19.5 parent: 2 type: Transform - - uid: 13991 + - uid: 14028 components: - rot: -1.5707963267948966 rad pos: -21.5,20.5 parent: 2 type: Transform - - uid: 13992 + - uid: 14029 components: - rot: -1.5707963267948966 rad pos: -22.5,20.5 parent: 2 type: Transform - - uid: 13993 + - uid: 14030 components: - rot: -1.5707963267948966 rad pos: -23.5,20.5 parent: 2 type: Transform - - uid: 13994 + - uid: 14031 components: - rot: -1.5707963267948966 rad pos: -24.5,20.5 parent: 2 type: Transform - - uid: 13995 + - uid: 14032 components: - rot: -1.5707963267948966 rad pos: -26.5,19.5 parent: 2 type: Transform - - uid: 13996 + - uid: 14033 components: - rot: -1.5707963267948966 rad pos: -27.5,19.5 parent: 2 type: Transform - - uid: 13997 + - uid: 14034 components: - rot: -1.5707963267948966 rad pos: -28.5,19.5 parent: 2 type: Transform - - uid: 13998 + - uid: 14035 components: - rot: -1.5707963267948966 rad pos: -29.5,19.5 parent: 2 type: Transform - - uid: 13999 + - uid: 14036 components: - rot: -1.5707963267948966 rad pos: -30.5,19.5 parent: 2 type: Transform - - uid: 14000 + - uid: 14037 components: - rot: -1.5707963267948966 rad pos: -31.5,19.5 parent: 2 type: Transform - - uid: 14001 + - uid: 14038 components: - rot: -1.5707963267948966 rad pos: -32.5,19.5 parent: 2 type: Transform - - uid: 14002 + - uid: 14039 components: - rot: -1.5707963267948966 rad pos: -33.5,19.5 parent: 2 type: Transform - - uid: 14003 + - uid: 14040 components: - rot: -1.5707963267948966 rad pos: -34.5,19.5 parent: 2 type: Transform - - uid: 14004 + - uid: 14041 components: - rot: -1.5707963267948966 rad pos: -36.5,19.5 parent: 2 type: Transform - - uid: 14005 + - uid: 14042 components: - rot: -1.5707963267948966 rad pos: -39.5,19.5 parent: 2 type: Transform - - uid: 14006 + - uid: 14043 components: - rot: -1.5707963267948966 rad pos: -40.5,19.5 parent: 2 type: Transform - - uid: 14007 + - uid: 14044 components: - rot: -1.5707963267948966 rad pos: -37.5,19.5 parent: 2 type: Transform - - uid: 14008 + - uid: 14045 components: - rot: 3.141592653589793 rad pos: -46.5,9.5 parent: 2 type: Transform - - uid: 14009 + - uid: 14046 components: - rot: 3.141592653589793 rad pos: -46.5,8.5 parent: 2 type: Transform - - uid: 14010 + - uid: 14047 components: - rot: 3.141592653589793 rad pos: -46.5,7.5 parent: 2 type: Transform - - uid: 14011 + - uid: 14048 components: - rot: 3.141592653589793 rad pos: -46.5,6.5 parent: 2 type: Transform - - uid: 14012 + - uid: 14049 components: - rot: 3.141592653589793 rad pos: -46.5,5.5 parent: 2 type: Transform - - uid: 14013 + - uid: 14050 components: - rot: 3.141592653589793 rad pos: -46.5,4.5 parent: 2 type: Transform - - uid: 14014 + - uid: 14051 components: - rot: 3.141592653589793 rad pos: -46.5,3.5 parent: 2 type: Transform - - uid: 14015 + - uid: 14052 components: - rot: 3.141592653589793 rad pos: -46.5,2.5 parent: 2 type: Transform - - uid: 14016 + - uid: 14053 components: - rot: 3.141592653589793 rad pos: -46.5,1.5 parent: 2 type: Transform - - uid: 14017 + - uid: 14054 components: - rot: 1.5707963267948966 rad pos: -45.5,0.5 parent: 2 type: Transform - - uid: 14018 + - uid: 14055 components: - rot: 1.5707963267948966 rad pos: -44.5,0.5 parent: 2 type: Transform - - uid: 14019 + - uid: 14056 components: - rot: 1.5707963267948966 rad pos: -43.5,0.5 parent: 2 type: Transform - - uid: 14020 + - uid: 14057 components: - rot: 1.5707963267948966 rad pos: -42.5,0.5 parent: 2 type: Transform - - uid: 14021 + - uid: 14058 components: - rot: 1.5707963267948966 rad pos: -41.5,0.5 parent: 2 type: Transform - - uid: 14022 + - uid: 14059 components: - rot: 1.5707963267948966 rad pos: -40.5,0.5 parent: 2 type: Transform - - uid: 14023 + - uid: 14060 components: - rot: 1.5707963267948966 rad pos: -39.5,0.5 parent: 2 type: Transform - - uid: 14024 + - uid: 14061 components: - rot: 1.5707963267948966 rad pos: -38.5,0.5 parent: 2 type: Transform - - uid: 14025 + - uid: 14062 components: - rot: 1.5707963267948966 rad pos: -37.5,0.5 parent: 2 type: Transform - - uid: 14026 + - uid: 14063 components: - rot: 1.5707963267948966 rad pos: -36.5,0.5 parent: 2 type: Transform - - uid: 14027 + - uid: 14064 components: - rot: 1.5707963267948966 rad pos: -35.5,0.5 parent: 2 type: Transform - - uid: 14028 + - uid: 14065 components: - rot: 1.5707963267948966 rad pos: -34.5,0.5 parent: 2 type: Transform - - uid: 14029 + - uid: 14066 components: - rot: 1.5707963267948966 rad pos: -33.5,0.5 parent: 2 type: Transform - - uid: 14030 + - uid: 14067 components: - rot: 1.5707963267948966 rad pos: -32.5,0.5 parent: 2 type: Transform - - uid: 14031 + - uid: 14068 components: - rot: 1.5707963267948966 rad pos: -31.5,0.5 parent: 2 type: Transform - - uid: 14032 + - uid: 14069 components: - rot: 1.5707963267948966 rad pos: -30.5,0.5 parent: 2 type: Transform - - uid: 14033 + - uid: 14070 components: - rot: 1.5707963267948966 rad pos: -29.5,0.5 parent: 2 type: Transform - - uid: 14034 + - uid: 14071 components: - rot: 1.5707963267948966 rad pos: -28.5,0.5 parent: 2 type: Transform - - uid: 14035 + - uid: 14072 components: - rot: 1.5707963267948966 rad pos: -27.5,0.5 parent: 2 type: Transform - - uid: 14036 + - uid: 14073 components: - pos: -26.5,-0.5 parent: 2 type: Transform - - uid: 14037 + - uid: 14074 components: - pos: -26.5,-1.5 parent: 2 type: Transform - - uid: 14038 + - uid: 14075 components: - pos: -26.5,-2.5 parent: 2 type: Transform - - uid: 14039 + - uid: 14076 components: - pos: -26.5,-3.5 parent: 2 type: Transform - - uid: 14040 + - uid: 14077 components: - pos: -26.5,-4.5 parent: 2 type: Transform - - uid: 14041 + - uid: 14078 components: - rot: 1.5707963267948966 rad pos: -25.5,-5.5 parent: 2 type: Transform - - uid: 14042 + - uid: 14079 components: - rot: 1.5707963267948966 rad pos: -24.5,-5.5 parent: 2 type: Transform - - uid: 14043 + - uid: 14080 components: - rot: 1.5707963267948966 rad pos: -23.5,-5.5 parent: 2 type: Transform - - uid: 14044 + - uid: 14081 components: - rot: 1.5707963267948966 rad pos: -22.5,-5.5 parent: 2 type: Transform - - uid: 14045 + - uid: 14082 components: - rot: 1.5707963267948966 rad pos: -21.5,-5.5 parent: 2 type: Transform - - uid: 14046 + - uid: 14083 components: - pos: -20.5,-6.5 parent: 2 type: Transform - - uid: 14047 + - uid: 14084 components: - pos: -20.5,-7.5 parent: 2 type: Transform - - uid: 14048 + - uid: 14085 components: - pos: -20.5,-8.5 parent: 2 type: Transform - - uid: 14049 + - uid: 14086 components: - pos: -20.5,-9.5 parent: 2 type: Transform - - uid: 14050 + - uid: 14087 components: - pos: -20.5,-10.5 parent: 2 type: Transform - - uid: 14051 + - uid: 14088 components: - pos: -20.5,-11.5 parent: 2 type: Transform - - uid: 14052 + - uid: 14089 components: - pos: -20.5,-12.5 parent: 2 type: Transform - - uid: 14053 + - uid: 14090 components: - pos: -20.5,-13.5 parent: 2 type: Transform - - uid: 14054 + - uid: 14091 components: - pos: -20.5,-14.5 parent: 2 type: Transform - - uid: 14055 + - uid: 14092 components: - pos: -20.5,-15.5 parent: 2 type: Transform - - uid: 14056 + - uid: 14093 components: - pos: -20.5,-16.5 parent: 2 type: Transform - - uid: 14057 + - uid: 14094 components: - pos: -20.5,-17.5 parent: 2 type: Transform - - uid: 14058 + - uid: 14095 components: - pos: -20.5,-18.5 parent: 2 type: Transform - - uid: 14059 + - uid: 14096 components: - pos: -20.5,-19.5 parent: 2 type: Transform - - uid: 14060 + - uid: 14097 components: - pos: -20.5,-20.5 parent: 2 type: Transform - - uid: 14061 + - uid: 14098 components: - pos: -20.5,-21.5 parent: 2 type: Transform - - uid: 14062 + - uid: 14099 components: - pos: -20.5,-22.5 parent: 2 type: Transform - - uid: 14063 + - uid: 14100 components: - pos: -20.5,-23.5 parent: 2 type: Transform - - uid: 14064 + - uid: 14101 components: - pos: -20.5,-24.5 parent: 2 type: Transform - - uid: 14065 + - uid: 14102 components: - rot: 1.5707963267948966 rad pos: -19.5,-25.5 parent: 2 type: Transform - - uid: 14066 + - uid: 14103 components: - rot: 1.5707963267948966 rad pos: -18.5,-25.5 parent: 2 type: Transform - - uid: 14067 + - uid: 14104 components: - rot: 1.5707963267948966 rad pos: -17.5,-25.5 parent: 2 type: Transform - - uid: 14068 + - uid: 14105 components: - rot: 1.5707963267948966 rad pos: -16.5,-25.5 parent: 2 type: Transform - - uid: 14069 + - uid: 14106 components: - rot: 1.5707963267948966 rad pos: -15.5,-25.5 parent: 2 type: Transform - - uid: 14070 + - uid: 14107 components: - rot: 1.5707963267948966 rad pos: -14.5,-25.5 parent: 2 type: Transform - - uid: 14071 + - uid: 14108 components: - rot: 1.5707963267948966 rad pos: -13.5,-25.5 parent: 2 type: Transform - - uid: 14072 + - uid: 14109 components: - rot: 1.5707963267948966 rad pos: -12.5,-25.5 parent: 2 type: Transform - - uid: 14073 + - uid: 14110 components: - rot: 1.5707963267948966 rad pos: -11.5,-25.5 parent: 2 type: Transform - - uid: 14074 + - uid: 14111 components: - rot: 1.5707963267948966 rad pos: -10.5,-25.5 parent: 2 type: Transform - - uid: 14075 + - uid: 14112 components: - rot: 1.5707963267948966 rad pos: -9.5,-25.5 parent: 2 type: Transform - - uid: 14076 + - uid: 14113 components: - rot: 1.5707963267948966 rad pos: -8.5,-25.5 parent: 2 type: Transform - - uid: 14077 + - uid: 14114 components: - rot: 1.5707963267948966 rad pos: -7.5,-25.5 parent: 2 type: Transform - - uid: 14078 + - uid: 14115 components: - rot: 1.5707963267948966 rad pos: -6.5,-25.5 parent: 2 type: Transform - - uid: 14079 + - uid: 14116 components: - rot: -1.5707963267948966 rad pos: -41.5,18.5 parent: 2 type: Transform - - uid: 14080 + - uid: 14117 components: - pos: 30.5,-74.5 parent: 2 type: Transform - - uid: 14081 + - uid: 14118 components: - rot: 1.5707963267948966 rad pos: 26.5,-73.5 parent: 2 type: Transform - - uid: 14082 + - uid: 14119 components: - rot: 1.5707963267948966 rad pos: 27.5,-73.5 parent: 2 type: Transform - - uid: 14083 + - uid: 14120 components: - rot: 1.5707963267948966 rad pos: 28.5,-73.5 parent: 2 type: Transform - - uid: 14084 + - uid: 14121 components: - rot: 1.5707963267948966 rad pos: 29.5,-73.5 parent: 2 type: Transform - - uid: 14085 + - uid: 14122 components: - pos: 30.5,-76.5 parent: 2 type: Transform - - uid: 14086 + - uid: 14123 components: - pos: 30.5,-75.5 parent: 2 type: Transform - - uid: 14087 + - uid: 14124 components: - pos: 30.5,-82.5 parent: 2 type: Transform - - uid: 14088 + - uid: 14125 components: - rot: 1.5707963267948966 rad pos: 31.5,-73.5 parent: 2 type: Transform - - uid: 14089 + - uid: 14126 components: - rot: 1.5707963267948966 rad pos: 32.5,-73.5 parent: 2 type: Transform - - uid: 14090 + - uid: 14127 components: - rot: 1.5707963267948966 rad pos: 33.5,-73.5 parent: 2 type: Transform - - uid: 14091 + - uid: 14128 components: - rot: 1.5707963267948966 rad pos: 34.5,-73.5 parent: 2 type: Transform - - uid: 14092 + - uid: 14129 components: - rot: 1.5707963267948966 rad pos: 35.5,-73.5 parent: 2 type: Transform - - uid: 14093 + - uid: 14130 components: - rot: 1.5707963267948966 rad pos: 36.5,-73.5 parent: 2 type: Transform - - uid: 14094 + - uid: 14131 components: - rot: 1.5707963267948966 rad pos: 37.5,-73.5 parent: 2 type: Transform - - uid: 14095 + - uid: 14132 components: - rot: 1.5707963267948966 rad pos: 38.5,-73.5 parent: 2 type: Transform - - uid: 14096 + - uid: 14133 components: - rot: -1.5707963267948966 rad pos: 10.5,2.5 parent: 2 type: Transform - - uid: 14097 + - uid: 14134 components: - pos: -23.5,-81.5 parent: 2 type: Transform - - uid: 14098 + - uid: 14135 components: - rot: 1.5707963267948966 rad pos: -75.5,-41.5 parent: 2 type: Transform - - uid: 14099 + - uid: 14136 components: - rot: 1.5707963267948966 rad pos: -74.5,-41.5 parent: 2 type: Transform - - uid: 14100 + - uid: 14137 components: - rot: 1.5707963267948966 rad pos: -73.5,-41.5 parent: 2 type: Transform - - uid: 14101 + - uid: 14138 components: - rot: 1.5707963267948966 rad pos: -72.5,-41.5 parent: 2 type: Transform - - uid: 14102 + - uid: 14139 components: - rot: 1.5707963267948966 rad pos: -71.5,-41.5 parent: 2 type: Transform - - uid: 14103 + - uid: 14140 components: - rot: 1.5707963267948966 rad pos: -70.5,-41.5 parent: 2 type: Transform - - uid: 14104 + - uid: 14141 components: - rot: 1.5707963267948966 rad pos: -69.5,-41.5 parent: 2 type: Transform - - uid: 14105 + - uid: 14142 components: - rot: 1.5707963267948966 rad pos: -68.5,-41.5 parent: 2 type: Transform - - uid: 14106 + - uid: 14143 components: - rot: 1.5707963267948966 rad pos: -16.5,8.5 parent: 2 type: Transform - - uid: 14107 + - uid: 14144 components: - pos: -43.5,-36.5 parent: 2 type: Transform - - uid: 14108 + - uid: 14145 components: - pos: -43.5,-37.5 parent: 2 type: Transform - - uid: 14109 + - uid: 14146 components: - pos: 3.5,-3.5 parent: 2 type: Transform - - uid: 14110 + - uid: 14147 components: - pos: 3.5,-2.5 parent: 2 type: Transform - - uid: 14111 + - uid: 14148 components: - pos: 3.5,-4.5 parent: 2 type: Transform - - uid: 14112 + - uid: 14149 components: - rot: 1.5707963267948966 rad pos: 4.5,-5.5 @@ -93201,417 +88765,417 @@ entities: type: Transform - proto: DisposalRouterFlipped entities: - - uid: 14113 + - uid: 14150 components: - rot: -1.5707963267948966 rad pos: 18.5,-25.5 parent: 2 type: Transform - - uid: 14114 + - uid: 14151 components: - rot: 1.5707963267948966 rad pos: -13.5,-53.5 parent: 2 type: Transform - - uid: 14115 + - uid: 14152 components: - pos: -13.5,0.5 parent: 2 type: Transform - - uid: 14116 + - uid: 14153 components: - pos: -19.5,8.5 parent: 2 type: Transform - proto: DisposalTrunk entities: - - uid: 14117 + - uid: 14154 components: - rot: -1.5707963267948966 rad pos: 5.5,-5.5 parent: 2 type: Transform - - uid: 14118 + - uid: 14155 components: - pos: 2.5,-23.5 parent: 2 type: Transform - - uid: 14119 + - uid: 14156 components: - rot: 1.5707963267948966 rad pos: -20.5,-57.5 parent: 2 type: Transform - - uid: 14120 + - uid: 14157 components: - pos: 52.5,3.5 parent: 2 type: Transform - - uid: 14121 + - uid: 14158 components: - pos: -9.5,5.5 parent: 2 type: Transform - - uid: 14122 + - uid: 14159 components: - rot: -1.5707963267948966 rad pos: 12.5,-3.5 parent: 2 type: Transform - - uid: 14123 + - uid: 14160 components: - rot: 1.5707963267948966 rad pos: -6.5,-33.5 parent: 2 type: Transform - - uid: 14124 + - uid: 14161 components: - pos: 21.5,20.5 parent: 2 type: Transform - - uid: 14125 + - uid: 14162 components: - rot: 3.141592653589793 rad pos: 6.5,-2.5 parent: 2 type: Transform - - uid: 14126 + - uid: 14163 components: - pos: 22.5,-10.5 parent: 2 type: Transform - - uid: 14127 + - uid: 14164 components: - rot: -1.5707963267948966 rad pos: 37.5,-18.5 parent: 2 type: Transform - - uid: 14128 + - uid: 14165 components: - rot: 3.141592653589793 rad pos: 1.5,-59.5 parent: 2 type: Transform - - uid: 14129 + - uid: 14166 components: - pos: 6.5,5.5 parent: 2 type: Transform - - uid: 14130 + - uid: 14167 components: - rot: -1.5707963267948966 rad pos: -17.5,-73.5 parent: 2 type: Transform - - uid: 14131 + - uid: 14168 components: - pos: 8.5,15.5 parent: 2 type: Transform - - uid: 14132 + - uid: 14169 components: - pos: 18.5,9.5 parent: 2 type: Transform - - uid: 14133 + - uid: 14170 components: - rot: -1.5707963267948966 rad pos: 27.5,-10.5 parent: 2 type: Transform - - uid: 14134 + - uid: 14171 components: - rot: 3.141592653589793 rad pos: -7.5,-2.5 parent: 2 type: Transform - - uid: 14135 + - uid: 14172 components: - rot: -1.5707963267948966 rad pos: -21.5,-84.5 parent: 2 type: Transform - - uid: 14136 + - uid: 14173 components: - rot: 1.5707963267948966 rad pos: -25.5,-75.5 parent: 2 type: Transform - - uid: 14137 + - uid: 14174 components: - rot: -1.5707963267948966 rad pos: 14.5,5.5 parent: 2 type: Transform - - uid: 14138 + - uid: 14175 components: - rot: 1.5707963267948966 rad pos: -2.5,-45.5 parent: 2 type: Transform - - uid: 14139 + - uid: 14176 components: - rot: 3.141592653589793 rad pos: 18.5,-54.5 parent: 2 type: Transform - - uid: 14140 + - uid: 14177 components: - pos: -10.5,-23.5 parent: 2 type: Transform - - uid: 14141 + - uid: 14178 components: - rot: 1.5707963267948966 rad pos: 14.5,19.5 parent: 2 type: Transform - - uid: 14142 + - uid: 14179 components: - pos: 34.5,17.5 parent: 2 type: Transform - - uid: 14143 + - uid: 14180 components: - rot: 3.141592653589793 rad pos: -14.5,-10.5 parent: 2 type: Transform - - uid: 14144 + - uid: 14181 components: - rot: 3.141592653589793 rad pos: 54.5,-14.5 parent: 2 type: Transform - - uid: 14145 + - uid: 14182 components: - rot: -1.5707963267948966 rad pos: 51.5,-47.5 parent: 2 type: Transform - - uid: 14146 + - uid: 14183 components: - pos: 46.5,-35.5 parent: 2 type: Transform - - uid: 14147 + - uid: 14184 components: - rot: 3.141592653589793 rad pos: 67.5,-49.5 parent: 2 type: Transform - - uid: 14148 + - uid: 14185 components: - rot: 1.5707963267948966 rad pos: 48.5,-50.5 parent: 2 type: Transform - - uid: 14149 + - uid: 14186 components: - rot: 1.5707963267948966 rad pos: 48.5,-55.5 parent: 2 type: Transform - - uid: 14150 + - uid: 14187 components: - rot: 3.141592653589793 rad pos: 49.5,-60.5 parent: 2 type: Transform - - uid: 14151 + - uid: 14188 components: - rot: 1.5707963267948966 rad pos: -27.5,6.5 parent: 2 type: Transform - - uid: 14152 + - uid: 14189 components: - rot: 3.141592653589793 rad pos: 29.5,-62.5 parent: 2 type: Transform - - uid: 14153 + - uid: 14190 components: - rot: -1.5707963267948966 rad pos: -22.5,-15.5 parent: 2 type: Transform - - uid: 14154 + - uid: 14191 components: - rot: 3.141592653589793 rad pos: 24.5,-74.5 parent: 2 type: Transform - - uid: 14155 + - uid: 14192 components: - pos: -38.5,-4.5 parent: 2 type: Transform - - uid: 14156 + - uid: 14193 components: - rot: -1.5707963267948966 rad pos: 0.5,-75.5 parent: 2 type: Transform - - uid: 14157 + - uid: 14194 components: - rot: 3.141592653589793 rad pos: -36.5,-80.5 parent: 2 type: Transform - - uid: 14158 + - uid: 14195 components: - pos: -22.5,25.5 parent: 2 type: Transform - - uid: 14159 + - uid: 14196 components: - pos: -42.5,27.5 parent: 2 type: Transform - - uid: 14160 + - uid: 14197 components: - rot: -1.5707963267948966 rad pos: -43.5,5.5 parent: 2 type: Transform - - uid: 14161 + - uid: 14198 components: - rot: 1.5707963267948966 rad pos: 27.5,-86.5 parent: 2 type: Transform - - uid: 14162 + - uid: 14199 components: - pos: 20.5,-23.5 parent: 2 type: Transform - - uid: 14163 + - uid: 14200 components: - rot: 1.5707963267948966 rad pos: -9.5,-66.5 parent: 2 type: Transform - - uid: 14164 + - uid: 14201 components: - rot: 3.141592653589793 rad pos: -3.5,-67.5 parent: 2 type: Transform - - uid: 14165 + - uid: 14202 components: - rot: 3.141592653589793 rad pos: 2.5,-63.5 parent: 2 type: Transform - - uid: 14166 + - uid: 14203 components: - rot: 1.5707963267948966 rad pos: -16.5,-67.5 parent: 2 type: Transform - - uid: 14167 + - uid: 14204 components: - pos: -12.5,8.5 parent: 2 type: Transform - - uid: 14168 + - uid: 14205 components: - pos: 20.5,-39.5 parent: 2 type: Transform - - uid: 14169 + - uid: 14206 components: - rot: 1.5707963267948966 rad pos: -17.5,37.5 parent: 2 type: Transform - - uid: 14170 + - uid: 14207 components: - rot: 3.141592653589793 rad pos: -4.5,43.5 parent: 2 type: Transform - - uid: 14171 + - uid: 14208 components: - rot: 3.141592653589793 rad pos: -13.5,49.5 parent: 2 type: Transform - - uid: 14172 + - uid: 14209 components: - pos: -37.5,-93.5 parent: 2 type: Transform - - uid: 14173 + - uid: 14210 components: - pos: 75.5,-32.5 parent: 2 type: Transform - - uid: 14174 + - uid: 14211 components: - rot: 1.5707963267948966 rad pos: -54.5,-64.5 parent: 2 type: Transform - - uid: 14175 + - uid: 14212 components: - rot: -1.5707963267948966 rad pos: -52.5,-64.5 parent: 2 type: Transform - - uid: 14176 + - uid: 14213 components: - pos: -10.5,-12.5 parent: 2 type: Transform - - uid: 14177 + - uid: 14214 components: - pos: -12.5,-12.5 parent: 2 type: Transform - - uid: 14178 + - uid: 14215 components: - rot: 3.141592653589793 rad pos: -42.5,13.5 parent: 2 type: Transform - - uid: 14179 + - uid: 14216 components: - rot: -1.5707963267948966 rad pos: -40.5,18.5 parent: 2 type: Transform - - uid: 14180 + - uid: 14217 components: - rot: 3.141592653589793 rad pos: 6.5,-45.5 parent: 2 type: Transform - - uid: 14181 + - uid: 14218 components: - rot: 1.5707963267948966 rad pos: -76.5,-41.5 parent: 2 type: Transform - - uid: 14182 + - uid: 14219 components: - rot: -1.5707963267948966 rad pos: -66.5,-42.5 parent: 2 type: Transform - - uid: 14183 + - uid: 14220 components: - pos: -43.5,-35.5 parent: 2 type: Transform - - uid: 14184 + - uid: 14221 components: - rot: -1.5707963267948966 rad pos: -42.5,-38.5 parent: 2 type: Transform - - uid: 14185 + - uid: 14222 components: - rot: -1.5707963267948966 rad pos: 4.5,-3.5 @@ -93619,550 +89183,550 @@ entities: type: Transform - proto: DisposalUnit entities: - - uid: 14186 + - uid: 14223 components: - pos: 2.5,-23.5 parent: 2 type: Transform - - uid: 14187 + - uid: 14224 components: - pos: 5.5,-5.5 parent: 2 type: Transform - - uid: 14188 + - uid: 14225 components: - pos: 6.5,-45.5 parent: 2 type: Transform - - uid: 14189 + - uid: 14226 components: - pos: -6.5,-33.5 parent: 2 type: Transform - - uid: 14190 + - uid: 14227 components: - pos: 6.5,5.5 parent: 2 type: Transform - - uid: 14191 + - uid: 14228 components: - pos: 22.5,-10.5 parent: 2 type: Transform - - uid: 14192 + - uid: 14229 components: - pos: 27.5,-10.5 parent: 2 type: Transform - - uid: 14193 + - uid: 14230 components: - pos: 21.5,20.5 parent: 2 type: Transform - - uid: 14194 + - uid: 14231 components: - pos: 37.5,-18.5 parent: 2 type: Transform - - uid: 14195 + - uid: 14232 components: - pos: 1.5,-59.5 parent: 2 type: Transform - - uid: 14196 + - uid: 14233 components: - pos: -2.5,-45.5 parent: 2 type: Transform - - uid: 14197 + - uid: 14234 components: - pos: -10.5,-23.5 parent: 2 type: Transform - - uid: 14198 + - uid: 14235 components: - pos: -20.5,-57.5 parent: 2 type: Transform - - uid: 14199 + - uid: 14236 components: - pos: -17.5,-73.5 parent: 2 type: Transform - - uid: 14200 + - uid: 14237 components: - pos: 12.5,-3.5 parent: 2 type: Transform - - uid: 14201 + - uid: 14238 components: - pos: -7.5,-2.5 parent: 2 type: Transform - - uid: 14202 + - uid: 14239 components: - pos: -9.5,5.5 parent: 2 type: Transform - - uid: 14203 + - uid: 14240 components: - pos: -21.5,-84.5 parent: 2 type: Transform - - uid: 14204 + - uid: 14241 components: - pos: 8.5,15.5 parent: 2 type: Transform - - uid: 14205 + - uid: 14242 components: - pos: 6.5,-2.5 parent: 2 type: Transform - - uid: 14206 + - uid: 14243 components: - pos: 20.5,-23.5 parent: 2 type: Transform - - uid: 14207 + - uid: 14244 components: - pos: -25.5,-75.5 parent: 2 type: Transform - - uid: 14208 + - uid: 14245 components: - pos: 18.5,9.5 parent: 2 type: Transform - - uid: 14209 + - uid: 14246 components: - pos: 14.5,5.5 parent: 2 type: Transform - - uid: 14210 + - uid: 14247 components: - pos: -10.5,-12.5 parent: 2 type: Transform - type: Timer - - uid: 14211 + - uid: 14248 components: - name: cargo type: MetaData - pos: -12.5,-12.5 parent: 2 type: Transform - - uid: 14212 + - uid: 14249 components: - pos: 14.5,19.5 parent: 2 type: Transform - - uid: 14213 + - uid: 14250 components: - pos: 34.5,17.5 parent: 2 type: Transform - - uid: 14214 + - uid: 14251 components: - pos: 52.5,3.5 parent: 2 type: Transform - - uid: 14215 + - uid: 14252 components: - pos: 54.5,-14.5 parent: 2 type: Transform - - uid: 14216 + - uid: 14253 components: - pos: 46.5,-35.5 parent: 2 type: Transform - - uid: 14217 + - uid: 14254 components: - pos: 51.5,-47.5 parent: 2 type: Transform - - uid: 14218 + - uid: 14255 components: - pos: 67.5,-49.5 parent: 2 type: Transform - - uid: 14219 + - uid: 14256 components: - pos: 49.5,-60.5 parent: 2 type: Transform - - uid: 14220 + - uid: 14257 components: - pos: 48.5,-55.5 parent: 2 type: Transform - - uid: 14221 + - uid: 14258 components: - pos: 48.5,-50.5 parent: 2 type: Transform - - uid: 14222 + - uid: 14259 components: - pos: -22.5,-15.5 parent: 2 type: Transform - - uid: 14223 + - uid: 14260 components: - pos: 29.5,-62.5 parent: 2 type: Transform - - uid: 14224 + - uid: 14261 components: - pos: 24.5,-74.5 parent: 2 type: Transform - - uid: 14225 + - uid: 14262 components: - pos: 27.5,-86.5 parent: 2 type: Transform - - uid: 14226 + - uid: 14263 components: - pos: -27.5,6.5 parent: 2 type: Transform - - uid: 14227 + - uid: 14264 components: - pos: -38.5,-4.5 parent: 2 type: Transform - - uid: 14228 + - uid: 14265 components: - name: suspicious disposal unit type: MetaData - pos: 0.5,-75.5 parent: 2 type: Transform - - uid: 14229 + - uid: 14266 components: - pos: -22.5,25.5 parent: 2 type: Transform - - uid: 14230 + - uid: 14267 components: - pos: -42.5,27.5 parent: 2 type: Transform - - uid: 14231 + - uid: 14268 components: - pos: -43.5,5.5 parent: 2 type: Transform - - uid: 14232 + - uid: 14269 components: - pos: -9.5,-66.5 parent: 2 type: Transform - - uid: 14233 + - uid: 14270 components: - pos: -16.5,-67.5 parent: 2 type: Transform - - uid: 14234 + - uid: 14271 components: - pos: -3.5,-67.5 parent: 2 type: Transform - - uid: 14235 + - uid: 14272 components: - pos: 2.5,-63.5 parent: 2 type: Transform - - uid: 14236 + - uid: 14273 components: - pos: -12.5,8.5 parent: 2 type: Transform - - uid: 14237 + - uid: 14274 components: - pos: 20.5,-39.5 parent: 2 type: Transform - - uid: 14238 + - uid: 14275 components: - pos: -17.5,37.5 parent: 2 type: Transform - - uid: 14239 + - uid: 14276 components: - pos: -4.5,43.5 parent: 2 type: Transform - - uid: 14240 + - uid: 14277 components: - pos: -13.5,49.5 parent: 2 type: Transform - - uid: 14241 + - uid: 14278 components: - pos: -40.5,18.5 parent: 2 type: Transform - - uid: 14242 + - uid: 14279 components: - pos: 75.5,-32.5 parent: 2 type: Transform - - uid: 14243 + - uid: 14280 components: - pos: -54.5,-64.5 parent: 2 type: Transform - - uid: 14244 + - uid: 14281 components: - pos: -52.5,-64.5 parent: 2 type: Transform - - uid: 14245 + - uid: 14282 components: - pos: -36.5,-80.5 parent: 2 type: Transform - - uid: 14246 + - uid: 14283 components: - pos: -66.5,-42.5 parent: 2 type: Transform - - uid: 14247 + - uid: 14284 components: - pos: -42.5,-38.5 parent: 2 type: Transform - proto: DisposalYJunction entities: - - uid: 14248 + - uid: 14285 components: - pos: 25.5,17.5 parent: 2 type: Transform - - uid: 14249 + - uid: 14286 components: - rot: 3.141592653589793 rad pos: -3.5,-27.5 parent: 2 type: Transform - - uid: 14250 + - uid: 14287 components: - rot: 3.141592653589793 rad pos: 16.5,-43.5 parent: 2 type: Transform - - uid: 14251 + - uid: 14288 components: - rot: -1.5707963267948966 rad pos: -4.5,-9.5 parent: 2 type: Transform - - uid: 14252 + - uid: 14289 components: - pos: -4.5,0.5 parent: 2 type: Transform - - uid: 14253 + - uid: 14290 components: - rot: -1.5707963267948966 rad pos: 16.5,-27.5 parent: 2 type: Transform - - uid: 14254 + - uid: 14291 components: - rot: 3.141592653589793 rad pos: -0.5,-53.5 parent: 2 type: Transform - - uid: 14255 + - uid: 14292 components: - rot: 3.141592653589793 rad pos: -4.5,-43.5 parent: 2 type: Transform - - uid: 14256 + - uid: 14293 components: - rot: 3.141592653589793 rad pos: -19.5,-73.5 parent: 2 type: Transform - - uid: 14257 + - uid: 14294 components: - rot: -1.5707963267948966 rad pos: 52.5,1.5 parent: 2 type: Transform - - uid: 14258 + - uid: 14295 components: - rot: 1.5707963267948966 rad pos: -19.5,-27.5 parent: 2 type: Transform - - uid: 14259 + - uid: 14296 components: - pos: -19.5,-6.5 parent: 2 type: Transform - - uid: 14260 + - uid: 14297 components: - pos: -25.5,6.5 parent: 2 type: Transform - - uid: 14261 + - uid: 14298 components: - rot: 3.141592653589793 rad pos: -5.5,-61.5 parent: 2 type: Transform - - uid: 14262 + - uid: 14299 components: - pos: -15.5,44.5 parent: 2 type: Transform - proto: DogBed entities: - - uid: 14263 + - uid: 14300 components: - pos: 3.5,-7.5 parent: 2 type: Transform - - uid: 14264 + - uid: 14301 components: - pos: 62.5,51.5 parent: 2 type: Transform - - uid: 14265 + - uid: 14302 components: - name: fox bed type: MetaData - pos: 32.5,-28.5 parent: 2 type: Transform - - uid: 14266 + - uid: 14303 components: - name: racoon bed type: MetaData - pos: -33.5,31.5 parent: 2 type: Transform - - uid: 14267 + - uid: 14304 components: - pos: 26.5,23.5 parent: 2 type: Transform - proto: DonkpocketBoxSpawner entities: - - uid: 14268 + - uid: 14305 components: - pos: -9.5,41.5 parent: 2 type: Transform - - uid: 14269 + - uid: 14306 components: - pos: -10.5,41.5 parent: 2 type: Transform - proto: DoorElectronics entities: - - uid: 14270 + - uid: 14307 components: - pos: -9.437697,39.446274 parent: 2 type: Transform - - uid: 14271 + - uid: 14308 components: - pos: -9.640822,39.74315 parent: 2 type: Transform - - uid: 14272 + - uid: 14309 components: - pos: -43.560223,-27.412916 parent: 2 type: Transform - proto: DoubleEmergencyOxygenTankFilled entities: - - uid: 14273 + - uid: 14310 components: - pos: -36.45104,-33.42174 parent: 2 type: Transform - proto: Dresser entities: - - uid: 14274 + - uid: 14311 components: - pos: 22.5,14.5 parent: 2 type: Transform - - uid: 14275 + - uid: 14312 components: - pos: 32.5,-27.5 parent: 2 type: Transform - - uid: 14276 + - uid: 14313 components: - pos: -26.5,46.5 parent: 2 type: Transform - - uid: 14277 + - uid: 14314 components: - pos: 7.5,22.5 parent: 2 type: Transform - - uid: 14278 + - uid: 14315 components: - pos: -42.5,11.5 parent: 2 type: Transform - - uid: 14279 + - uid: 14316 components: - pos: -51.5,15.5 parent: 2 type: Transform - - uid: 14280 + - uid: 14317 components: - pos: -52.5,6.5 parent: 2 type: Transform - - uid: 14281 + - uid: 14318 components: - pos: -31.5,12.5 parent: 2 type: Transform - - uid: 14282 + - uid: 14319 components: - pos: -24.5,31.5 parent: 2 type: Transform - - uid: 14283 + - uid: 14320 components: - pos: 54.5,32.5 parent: 2 type: Transform - - uid: 14284 + - uid: 14321 components: - pos: -19.5,35.5 parent: 2 type: Transform - - uid: 14285 + - uid: 14322 components: - pos: -10.5,32.5 parent: 2 type: Transform - - uid: 14286 + - uid: 14323 components: - pos: -20.5,39.5 parent: 2 type: Transform - - uid: 14287 + - uid: 14324 components: - pos: -37.5,-20.5 parent: 2 type: Transform - proto: Drill entities: - - uid: 14288 + - uid: 14325 components: - rot: -1.5707963267948966 rad pos: -7.0942874,-100.40229 @@ -94170,370 +89734,370 @@ entities: type: Transform - proto: DrinkAntifreeze entities: - - uid: 14289 + - uid: 14326 components: - pos: -25.524792,55.598667 parent: 2 type: Transform - proto: DrinkBeerBottleFull entities: - - uid: 14290 + - uid: 14327 components: - pos: 16.20447,-64.18169 parent: 2 type: Transform - - uid: 14291 + - uid: 14328 components: - pos: 16.48572,-64.21294 parent: 2 type: Transform - - uid: 14292 + - uid: 14329 components: - pos: -56.96358,-25.301325 parent: 2 type: Transform - proto: DrinkBlackRussianGlass entities: - - uid: 14293 + - uid: 14330 components: - pos: 65.5063,-0.9249393 parent: 2 type: Transform - proto: DrinkBloodyMaryGlass entities: - - uid: 14294 + - uid: 14331 components: - pos: 61.61879,-53.35289 parent: 2 type: Transform - proto: DrinkBottleOfNothingFull entities: - - uid: 14295 + - uid: 14332 components: - pos: -28.300186,46.612503 parent: 2 type: Transform - proto: DrinkBottleWhiskey entities: - - uid: 14296 + - uid: 14333 components: - pos: -10.628431,-32.17821 parent: 2 type: Transform - proto: DrinkBottleWine entities: - - uid: 14297 + - uid: 14334 components: - pos: -37.38547,16.742819 parent: 2 type: Transform - proto: DrinkCarrotJuice entities: - - uid: 14298 + - uid: 14335 components: - pos: -20.541529,49.622677 parent: 2 type: Transform - proto: DrinkDetFlask entities: - - uid: 14299 + - uid: 14336 components: - pos: 20.044777,-12.206265 parent: 2 type: Transform - proto: DrinkDoctorsDelightGlass entities: - - uid: 14300 + - uid: 14337 components: - pos: -18.294592,-56.251144 parent: 2 type: Transform - proto: DrinkGlass entities: - - uid: 14301 + - uid: 14338 components: - pos: 37.335964,-5.423753 parent: 2 type: Transform - - uid: 14302 + - uid: 14339 components: - pos: 42.510113,-48.4107 parent: 2 type: Transform - - uid: 14303 + - uid: 14340 components: - pos: 42.510113,-48.4107 parent: 2 type: Transform - - uid: 14304 + - uid: 14341 components: - pos: -29.533712,-69.34898 parent: 2 type: Transform - proto: DrinkGoldenCup entities: - - uid: 14305 + - uid: 14342 components: - pos: 48.422813,-25.09548 parent: 2 type: Transform - proto: DrinkGoldschlagerBottleFull entities: - - uid: 14306 + - uid: 14343 components: - pos: 47.41234,-30.196692 parent: 2 type: Transform - proto: DrinkGrapeJuice entities: - - uid: 14307 + - uid: 14344 components: - pos: -21.385279,49.66955 parent: 2 type: Transform - proto: DrinkGrogGlass entities: - - uid: 14308 + - uid: 14345 components: - pos: -42.795,-78.417305 parent: 2 type: Transform - - uid: 14309 + - uid: 14346 components: - pos: -40.300255,-77.37566 parent: 2 type: Transform - - uid: 14310 + - uid: 14347 components: - pos: -41.117695,-78.40168 parent: 2 type: Transform - proto: DrinkHippiesDelightGlass entities: - - uid: 14311 + - uid: 14348 components: - pos: -22.44165,-100.292145 parent: 2 type: Transform - proto: DrinkHotCoffee entities: - - uid: 14312 + - uid: 14349 components: - pos: -26.93719,14.6217785 parent: 2 type: Transform - proto: DrinkIrishCoffeeGlass entities: - - uid: 14313 + - uid: 14350 components: - pos: 31.04821,-61.292328 parent: 2 type: Transform - proto: DrinkLongIslandIcedTeaGlass entities: - - uid: 14314 + - uid: 14351 components: - pos: 23.326912,-28.451742 parent: 2 type: Transform - proto: DrinkMilkCarton entities: - - uid: 14315 + - uid: 14352 components: - pos: 4.089875,7.6089945 parent: 2 type: Transform - - uid: 14316 + - uid: 14353 components: - pos: 4.246125,7.3902445 parent: 2 type: Transform - proto: DrinkMugBlack entities: - - uid: 14317 + - uid: 14354 components: - pos: 53.58285,-67.465065 parent: 2 type: Transform - proto: DrinkMugOne entities: - - uid: 14318 + - uid: 14355 components: - pos: 47.469124,50.58469 parent: 2 type: Transform - - uid: 14319 + - uid: 14356 components: - pos: -31.248182,29.795187 parent: 2 type: Transform - proto: DrinkShaker entities: - - uid: 14320 + - uid: 14357 components: - pos: 18.551043,13.384511 parent: 2 type: Transform - - uid: 14321 + - uid: 14358 components: - pos: 18.316668,13.478261 parent: 2 type: Transform - - uid: 14322 + - uid: 14359 components: - pos: 18.582293,13.603261 parent: 2 type: Transform - proto: DrinkSpaceMountainWindGlass entities: - - uid: 14323 + - uid: 14360 components: - pos: 38.7514,49.607887 parent: 2 type: Transform - proto: DrinkSpaceUpGlass entities: - - uid: 14324 + - uid: 14361 components: - pos: 38.377674,49.717262 parent: 2 type: Transform - proto: DrinkToxinsSpecialGlass entities: - - uid: 14325 + - uid: 14362 components: - pos: -9.4857435,-36.467285 parent: 2 type: Transform - proto: DrinkVodkaTonicGlass entities: - - uid: 14326 + - uid: 14363 components: - pos: 43.581966,-2.7850537 parent: 2 type: Transform - proto: DrinkWaterBottleFull entities: - - uid: 14327 + - uid: 14364 components: - pos: -14.530239,-37.26908 parent: 2 type: Transform - proto: DrinkWaterCup entities: - - uid: 14328 + - uid: 14365 components: - pos: -9.380106,-35.52635 parent: 2 type: Transform - - uid: 14329 + - uid: 14366 components: - pos: -9.380106,-35.52635 parent: 2 type: Transform - - uid: 14330 + - uid: 14367 components: - pos: -9.380106,-35.52635 parent: 2 type: Transform - - uid: 14331 + - uid: 14368 components: - pos: -9.380106,-35.52635 parent: 2 type: Transform - - uid: 14332 + - uid: 14369 components: - pos: -9.380106,-35.52635 parent: 2 type: Transform - - uid: 14333 + - uid: 14370 components: - pos: -9.380106,-35.52635 parent: 2 type: Transform - proto: DrinkWhiskeyBottleFull entities: - - uid: 14334 + - uid: 14371 components: - pos: -14.464556,-39.286304 parent: 2 type: Transform - proto: DrinkWhiskeyGlass entities: - - uid: 14335 + - uid: 14372 components: - pos: -29.929981,15.531138 parent: 2 type: Transform - - uid: 14336 + - uid: 14373 components: - pos: 15.324228,-79.460625 parent: 2 type: Transform - proto: DrinkWhiskeySodaGlass entities: - - uid: 14337 + - uid: 14374 components: - pos: 7.0699005,20.752857 parent: 2 type: Transform - proto: Dropper entities: - - uid: 14338 + - uid: 14375 components: - pos: 7.590159,-45.315723 parent: 2 type: Transform - - uid: 14339 + - uid: 14376 components: - pos: 7.480784,-45.628223 parent: 2 type: Transform - - uid: 14340 + - uid: 14377 components: - pos: 7.449534,-45.440723 parent: 2 type: Transform - proto: EggplantSeeds entities: - - uid: 14341 + - uid: 14378 components: - pos: 11.993146,54.637722 parent: 2 type: Transform - - uid: 14342 + - uid: 14379 components: - pos: 11.993146,54.637722 parent: 2 type: Transform - - uid: 14343 + - uid: 14380 components: - pos: 11.993146,54.637722 parent: 2 type: Transform - - uid: 14344 + - uid: 14381 components: - pos: 11.993146,54.637722 parent: 2 type: Transform - - uid: 14345 + - uid: 14382 components: - pos: 11.993146,54.637722 parent: 2 type: Transform - - uid: 14346 + - uid: 14383 components: - pos: 11.993146,54.637722 parent: 2 type: Transform - proto: EmergencyLight entities: - - uid: 14347 + - uid: 14384 components: - pos: -70.5,-37.5 parent: 2 type: Transform - - uid: 14348 + - uid: 14385 components: - rot: -1.5707963267948966 rad pos: -44.5,7.5 @@ -94541,10 +90105,8 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14349 + - uid: 14386 components: - rot: 3.141592653589793 rad pos: 22.5,-25.5 @@ -94552,10 +90114,8 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14350 + - uid: 14387 components: - rot: 3.141592653589793 rad pos: 29.5,-25.5 @@ -94563,30 +90123,24 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14351 + - uid: 14388 components: - pos: 30.5,-41.5 parent: 2 type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14352 + - uid: 14389 components: - pos: -12.5,-52.5 parent: 2 type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14353 + - uid: 14390 components: - rot: 1.5707963267948966 rad pos: -25.5,-76.5 @@ -94594,10 +90148,8 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14354 + - uid: 14391 components: - rot: -1.5707963267948966 rad pos: 26.5,-50.5 @@ -94605,20 +90157,16 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14355 + - uid: 14392 components: - pos: 29.5,-4.5 parent: 2 type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14356 + - uid: 14393 components: - rot: 1.5707963267948966 rad pos: 40.5,6.5 @@ -94626,20 +90174,16 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14357 + - uid: 14394 components: - pos: 54.5,-5.5 parent: 2 type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14358 + - uid: 14395 components: - rot: 3.141592653589793 rad pos: -23.5,-62.5 @@ -94647,10 +90191,8 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14359 + - uid: 14396 components: - rot: 1.5707963267948966 rad pos: -13.5,52.5 @@ -94658,40 +90200,32 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14360 + - uid: 14397 components: - pos: -5.5,59.5 parent: 2 type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14361 + - uid: 14398 components: - pos: -10.5,-59.5 parent: 2 type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14362 + - uid: 14399 components: - pos: -61.5,-23.5 parent: 2 type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14363 + - uid: 14400 components: - rot: -1.5707963267948966 rad pos: -52.5,-15.5 @@ -94699,20 +90233,16 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14364 + - uid: 14401 components: - pos: 15.5,-52.5 parent: 2 type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14365 + - uid: 14402 components: - rot: 1.5707963267948966 rad pos: 17.5,-4.5 @@ -94720,10 +90250,8 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14366 + - uid: 14403 components: - rot: -1.5707963267948966 rad pos: -18.5,28.5 @@ -94731,10 +90259,8 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14367 + - uid: 14404 components: - rot: 1.5707963267948966 rad pos: -16.5,36.5 @@ -94742,10 +90268,8 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14368 + - uid: 14405 components: - rot: -1.5707963267948966 rad pos: 65.5,-12.5 @@ -94753,20 +90277,16 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14369 + - uid: 14406 components: - pos: -2.5,46.5 parent: 2 type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14370 + - uid: 14407 components: - rot: 1.5707963267948966 rad pos: -22.5,54.5 @@ -94774,30 +90294,24 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14371 + - uid: 14408 components: - pos: -5.5,3.5 parent: 2 type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14372 + - uid: 14409 components: - pos: 8.5,3.5 parent: 2 type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14373 + - uid: 14410 components: - rot: 1.5707963267948966 rad pos: -0.5,8.5 @@ -94805,40 +90319,32 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14374 + - uid: 14411 components: - pos: 14.5,14.5 parent: 2 type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14375 + - uid: 14412 components: - pos: -20.5,-4.5 parent: 2 type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14376 + - uid: 14413 components: - pos: -16.5,4.5 parent: 2 type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14377 + - uid: 14414 components: - rot: -1.5707963267948966 rad pos: -18.5,-12.5 @@ -94846,60 +90352,48 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14378 + - uid: 14415 components: - pos: 30.5,8.5 parent: 2 type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14379 + - uid: 14416 components: - pos: 23.5,18.5 parent: 2 type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14380 + - uid: 14417 components: - pos: 10.5,-41.5 parent: 2 type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14381 + - uid: 14418 components: - pos: 38.5,-41.5 parent: 2 type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14382 + - uid: 14419 components: - pos: -14.5,-41.5 parent: 2 type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14383 + - uid: 14420 components: - rot: -1.5707963267948966 rad pos: -34.5,-42.5 @@ -94907,10 +90401,8 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14384 + - uid: 14421 components: - rot: 1.5707963267948966 rad pos: -35.5,-52.5 @@ -94918,10 +90410,8 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14385 + - uid: 14422 components: - rot: -1.5707963267948966 rad pos: -23.5,-16.5 @@ -94929,20 +90419,16 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14386 + - uid: 14423 components: - pos: -12.5,-25.5 parent: 2 type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14387 + - uid: 14424 components: - rot: -1.5707963267948966 rad pos: -31.5,-14.5 @@ -94950,10 +90436,8 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14388 + - uid: 14425 components: - rot: 3.141592653589793 rad pos: -45.5,-6.5 @@ -94961,20 +90445,16 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14389 + - uid: 14426 components: - pos: -17.5,-69.5 parent: 2 type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14390 + - uid: 14427 components: - rot: 3.141592653589793 rad pos: 30.5,-18.5 @@ -94982,10 +90462,8 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14391 + - uid: 14428 components: - rot: 3.141592653589793 rad pos: 20.5,-18.5 @@ -94993,10 +90471,8 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14392 + - uid: 14429 components: - rot: -1.5707963267948966 rad pos: 18.5,4.5 @@ -95004,20 +90480,16 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14393 + - uid: 14430 components: - pos: 37.5,-25.5 parent: 2 type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14394 + - uid: 14431 components: - rot: -1.5707963267948966 rad pos: 42.5,-26.5 @@ -95025,10 +90497,8 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14395 + - uid: 14432 components: - rot: 3.141592653589793 rad pos: 40.5,0.5 @@ -95036,10 +90506,8 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14396 + - uid: 14433 components: - rot: -1.5707963267948966 rad pos: 54.5,1.5 @@ -95047,10 +90515,8 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14397 + - uid: 14434 components: - rot: -1.5707963267948966 rad pos: 65.5,-35.5 @@ -95058,30 +90524,24 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14398 + - uid: 14435 components: - pos: 60.5,-51.5 parent: 2 type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14399 + - uid: 14436 components: - pos: 53.5,-51.5 parent: 2 type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14400 + - uid: 14437 components: - rot: -1.5707963267948966 rad pos: 46.5,-47.5 @@ -95089,10 +90549,8 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14401 + - uid: 14438 components: - rot: -1.5707963267948966 rad pos: 46.5,-38.5 @@ -95100,10 +90558,8 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14402 + - uid: 14439 components: - rot: -1.5707963267948966 rad pos: 16.5,-27.5 @@ -95111,10 +90567,8 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14403 + - uid: 14440 components: - rot: 1.5707963267948966 rad pos: 34.5,-27.5 @@ -95122,40 +90576,32 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14404 + - uid: 14441 components: - pos: 4.5,-25.5 parent: 2 type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14405 + - uid: 14442 components: - pos: -2.5,-25.5 parent: 2 type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14406 + - uid: 14443 components: - pos: 5.5,-41.5 parent: 2 type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14407 + - uid: 14444 components: - rot: -1.5707963267948966 rad pos: -18.5,-35.5 @@ -95163,10 +90609,8 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14408 + - uid: 14445 components: - rot: 3.141592653589793 rad pos: -30.5,-35.5 @@ -95174,10 +90618,8 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14409 + - uid: 14446 components: - rot: 1.5707963267948966 rad pos: -55.5,-10.5 @@ -95185,10 +90627,8 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14410 + - uid: 14447 components: - rot: -1.5707963267948966 rad pos: -64.5,-26.5 @@ -95196,20 +90636,16 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14411 + - uid: 14448 components: - pos: -71.5,-23.5 parent: 2 type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14412 + - uid: 14449 components: - rot: 3.141592653589793 rad pos: -35.5,-0.5 @@ -95217,10 +90653,8 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14413 + - uid: 14450 components: - rot: -1.5707963267948966 rad pos: 30.5,23.5 @@ -95228,10 +90662,8 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14414 + - uid: 14451 components: - rot: 3.141592653589793 rad pos: 30.5,14.5 @@ -95239,10 +90671,8 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14415 + - uid: 14452 components: - rot: 1.5707963267948966 rad pos: 20.5,20.5 @@ -95250,10 +90680,8 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14416 + - uid: 14453 components: - rot: -1.5707963267948966 rad pos: -2.5,8.5 @@ -95261,10 +90689,8 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14417 + - uid: 14454 components: - rot: 3.141592653589793 rad pos: -27.5,-14.5 @@ -95272,10 +90698,8 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14418 + - uid: 14455 components: - rot: 3.141592653589793 rad pos: -34.5,-13.5 @@ -95283,10 +90707,8 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14419 + - uid: 14456 components: - rot: 1.5707963267948966 rad pos: 4.5,20.5 @@ -95294,20 +90716,16 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14420 + - uid: 14457 components: - pos: 45.5,-71.5 parent: 2 type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14421 + - uid: 14458 components: - rot: -1.5707963267948966 rad pos: 40.5,-61.5 @@ -95315,20 +90733,16 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14422 + - uid: 14459 components: - pos: 27.5,-58.5 parent: 2 type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14423 + - uid: 14460 components: - rot: 1.5707963267948966 rad pos: -25.5,20.5 @@ -95336,10 +90750,8 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14424 + - uid: 14461 components: - rot: -1.5707963267948966 rad pos: -36.5,20.5 @@ -95347,10 +90759,8 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14425 + - uid: 14462 components: - rot: 3.141592653589793 rad pos: -44.5,28.5 @@ -95358,10 +90768,8 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14426 + - uid: 14463 components: - rot: 1.5707963267948966 rad pos: -38.5,30.5 @@ -95369,10 +90777,8 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14427 + - uid: 14464 components: - rot: 3.141592653589793 rad pos: -34.5,28.5 @@ -95380,20 +90786,16 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14428 + - uid: 14465 components: - pos: -17.5,7.5 parent: 2 type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14429 + - uid: 14466 components: - rot: -1.5707963267948966 rad pos: -3.5,-30.5 @@ -95401,10 +90803,8 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14430 + - uid: 14467 components: - rot: 1.5707963267948966 rad pos: 70.5,-35.5 @@ -95412,10 +90812,8 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14431 + - uid: 14468 components: - rot: 3.141592653589793 rad pos: 74.5,-49.5 @@ -95423,40 +90821,32 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14432 + - uid: 14469 components: - pos: 60.5,-43.5 parent: 2 type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14433 + - uid: 14470 components: - pos: 6.5,-29.5 parent: 2 type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14434 + - uid: 14471 components: - pos: 30.5,-71.5 parent: 2 type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14435 + - uid: 14472 components: - rot: 3.141592653589793 rad pos: 18.5,-86.5 @@ -95464,10 +90854,8 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14436 + - uid: 14473 components: - rot: -1.5707963267948966 rad pos: 31.5,-83.5 @@ -95475,10 +90863,8 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14437 + - uid: 14474 components: - rot: -1.5707963267948966 rad pos: 49.5,-84.5 @@ -95486,10 +90872,8 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14438 + - uid: 14475 components: - rot: -1.5707963267948966 rad pos: 26.5,23.5 @@ -95497,99 +90881,97 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - - uid: 14439 + - uid: 14476 components: - pos: -59.5,-36.5 parent: 2 type: Transform - - uid: 14440 + - uid: 14477 components: - pos: 25.5,-34.5 parent: 2 type: Transform - proto: EmergencyOxygenTankFilled entities: - - uid: 14441 + - uid: 14478 components: - pos: -2.5493312,-73.46234 parent: 2 type: Transform - proto: EmergencyRollerBed entities: - - uid: 14442 + - uid: 14479 components: - pos: -20.356709,-75.42545 parent: 2 type: Transform - proto: Emitter entities: - - uid: 14443 + - uid: 14480 components: - pos: -55.5,-8.5 parent: 2 type: Transform - - uid: 14444 + - uid: 14481 components: - pos: -62.5,-6.5 parent: 2 type: Transform - - uid: 14445 + - uid: 14482 components: - rot: -1.5707963267948966 rad pos: -59.5,-9.5 parent: 2 type: Transform - - uid: 14446 + - uid: 14483 components: - rot: 1.5707963267948966 rad pos: -73.5,-9.5 parent: 2 type: Transform - - uid: 14447 + - uid: 14484 components: - pos: -70.5,-6.5 parent: 2 type: Transform - - uid: 14448 + - uid: 14485 components: - rot: 1.5707963267948966 rad pos: -73.5,-17.5 parent: 2 type: Transform - - uid: 14449 + - uid: 14486 components: - rot: 3.141592653589793 rad pos: -70.5,-20.5 parent: 2 type: Transform - - uid: 14450 + - uid: 14487 components: - rot: 3.141592653589793 rad pos: -62.5,-20.5 parent: 2 type: Transform - - uid: 14451 + - uid: 14488 components: - rot: -1.5707963267948966 rad pos: -59.5,-17.5 parent: 2 type: Transform - - uid: 14452 + - uid: 14489 components: - rot: 3.141592653589793 rad pos: -61.5,-30.5 parent: 2 type: Transform - - uid: 14453 + - uid: 14490 components: - rot: 1.5707963267948966 rad pos: -55.5,-7.5 parent: 2 type: Transform - - uid: 14454 + - uid: 14491 components: - rot: 3.141592653589793 rad pos: -60.5,-30.5 @@ -95597,104 +90979,104 @@ entities: type: Transform - proto: EncryptionKeyCargo entities: - - uid: 14456 + - uid: 14493 components: - flags: InContainer type: MetaData - - parent: 14455 + - parent: 14492 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyCommand entities: - - uid: 14458 + - uid: 14495 components: - flags: InContainer type: MetaData - - parent: 14457 + - parent: 14494 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyCommon entities: - - uid: 14460 + - uid: 14497 components: - flags: InContainer type: MetaData - - parent: 14459 + - parent: 14496 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyEngineering entities: - - uid: 14462 + - uid: 14499 components: - flags: InContainer type: MetaData - - parent: 14461 + - parent: 14498 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyMedical entities: - - uid: 14464 + - uid: 14501 components: - flags: InContainer type: MetaData - - parent: 14463 + - parent: 14500 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyRobo entities: - - uid: 14466 + - uid: 14503 components: - flags: InContainer type: MetaData - - parent: 14465 + - parent: 14502 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyScience entities: - - uid: 14467 + - uid: 14504 components: - flags: InContainer type: MetaData - - parent: 14465 + - parent: 14502 type: Transform - canCollide: False type: Physics - proto: EncryptionKeySecurity entities: - - uid: 14469 + - uid: 14506 components: - flags: InContainer type: MetaData - - parent: 14468 + - parent: 14505 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyService entities: - - uid: 14471 + - uid: 14508 components: - flags: InContainer type: MetaData - - parent: 14470 + - parent: 14507 type: Transform - canCollide: False type: Physics - proto: ExosuitFabricator entities: - - uid: 14472 + - uid: 14509 components: - pos: 69.5,-43.5 parent: 2 type: Transform - proto: ExplosivesSignMed entities: - - uid: 14473 + - uid: 14510 components: - rot: 1.5707963267948966 rad pos: 67.5,-32.5 @@ -95702,186 +91084,186 @@ entities: type: Transform - proto: ExtendedEmergencyOxygenTankFilled entities: - - uid: 14474 + - uid: 14511 components: - pos: -70.53087,-25.890057 parent: 2 type: Transform - - uid: 14475 + - uid: 14512 components: - pos: -40.389053,32.87297 parent: 2 type: Transform - - uid: 14476 + - uid: 14513 components: - pos: 3.7780228,-75.4205 parent: 2 type: Transform - proto: ExtinguisherCabinetFilled entities: - - uid: 14477 + - uid: 14514 components: - pos: -20.5,64.5 parent: 2 type: Transform - - uid: 14478 + - uid: 14515 components: - pos: -1.5,47.5 parent: 2 type: Transform - - uid: 14479 + - uid: 14516 components: - pos: -20.5,53.5 parent: 2 type: Transform - - uid: 14480 + - uid: 14517 components: - pos: -13.5,32.5 parent: 2 type: Transform - - uid: 14481 + - uid: 14518 components: - pos: -1.5,8.5 parent: 2 type: Transform - - uid: 14482 + - uid: 14519 components: - pos: -33.5,-39.5 parent: 2 type: Transform - - uid: 14483 + - uid: 14520 components: - pos: -15.5,-2.5 parent: 2 type: Transform - - uid: 14484 + - uid: 14521 components: - pos: -17.5,-17.5 parent: 2 type: Transform - - uid: 14485 + - uid: 14522 components: - pos: -21.5,-30.5 parent: 2 type: Transform - - uid: 14486 + - uid: 14523 components: - pos: -2.5,-29.5 parent: 2 type: Transform - - uid: 14487 + - uid: 14524 components: - pos: 52.5,-46.5 parent: 2 type: Transform - - uid: 14488 + - uid: 14525 components: - pos: -10.5,-47.5 parent: 2 type: Transform - - uid: 14489 + - uid: 14526 components: - pos: 19.5,18.5 parent: 2 type: Transform - - uid: 14490 + - uid: 14527 components: - pos: 3.5,13.5 parent: 2 type: Transform - - uid: 14491 + - uid: 14528 components: - pos: -6.5,-17.5 parent: 2 type: Transform - - uid: 14492 + - uid: 14529 components: - pos: 23.5,-51.5 parent: 2 type: Transform - - uid: 14493 + - uid: 14530 components: - pos: 77.5,-48.5 parent: 2 type: Transform - - uid: 14494 + - uid: 14531 components: - pos: 76.5,-38.5 parent: 2 type: Transform - proto: FaxMachineBase entities: - - uid: 14495 + - uid: 14532 components: - pos: -28.5,-9.5 parent: 2 type: Transform - name: engineering fax type: FaxMachine - - uid: 14496 + - uid: 14533 components: - pos: -34.5,23.5 parent: 2 type: Transform - name: cargo fax type: FaxMachine - - uid: 14497 + - uid: 14534 components: - pos: 40.5,-39.5 parent: 2 type: Transform - name: science fax type: FaxMachine - - uid: 14498 + - uid: 14535 components: - pos: -16.5,-61.5 parent: 2 type: Transform - name: medbay fax type: FaxMachine - - uid: 14499 + - uid: 14536 components: - pos: -25.5,-35.5 parent: 2 type: Transform - name: atmos fax type: FaxMachine - - uid: 14500 + - uid: 14537 components: - pos: 18.5,-14.5 parent: 2 type: Transform - name: detective fax type: FaxMachine - - uid: 14501 + - uid: 14538 components: - pos: 22.5,23.5 parent: 2 type: Transform - name: security fax type: FaxMachine - - uid: 14502 + - uid: 14539 components: - pos: 12.5,-5.5 parent: 2 type: Transform - name: library fax type: FaxMachine - - uid: 14503 + - uid: 14540 components: - pos: -22.5,-98.5 parent: 2 type: Transform - name: maint fax type: FaxMachine - - uid: 14504 + - uid: 14541 components: - pos: -12.5,-19.5 parent: 2 type: Transform - name: janitorial fax type: FaxMachine - - uid: 14505 + - uid: 14542 components: - pos: -1.5,-6.5 parent: 2 @@ -95890,159 +91272,160 @@ entities: type: FaxMachine - proto: FaxMachineCaptain entities: - - uid: 14506 + - uid: 14543 components: - pos: 30.5,-29.5 parent: 2 type: Transform - proto: FenceMetalCorner entities: - - uid: 14507 + - uid: 14544 components: - rot: 3.141592653589793 rad pos: 61.5,47.5 parent: 2 type: Transform - - uid: 14508 + - uid: 14545 components: - rot: -1.5707963267948966 rad pos: -44.5,-84.5 parent: 2 type: Transform - - uid: 14509 + - uid: 14546 components: - rot: 1.5707963267948966 rad pos: -39.5,-80.5 parent: 2 type: Transform - - uid: 14510 + - uid: 14547 components: - rot: 3.141592653589793 rad pos: -44.5,-80.5 parent: 2 type: Transform - - uid: 14511 + - uid: 14548 components: - pos: -39.5,-84.5 parent: 2 type: Transform - proto: FenceMetalGate entities: - - uid: 14512 + - uid: 14549 components: - rot: 3.141592653589793 rad pos: -52.5,-30.5 parent: 2 type: Transform - - uid: 14513 + - uid: 14550 components: - rot: 3.141592653589793 rad pos: 62.5,47.5 parent: 2 type: Transform - - uid: 14514 + - uid: 14551 components: - rot: 3.141592653589793 rad pos: -41.5,-84.5 parent: 2 type: Transform - - SecondsUntilStateChange: -33982.543 - state: Opening + - state: Open type: Door + - canCollide: False + type: Physics - proto: FenceMetalStraight entities: - - uid: 14515 + - uid: 14552 components: - pos: 61.5,49.5 parent: 2 type: Transform - - uid: 14516 + - uid: 14553 components: - rot: 1.5707963267948966 rad pos: 63.5,47.5 parent: 2 type: Transform - - uid: 14517 + - uid: 14554 components: - pos: 61.5,48.5 parent: 2 type: Transform - - uid: 14518 + - uid: 14555 components: - rot: 3.141592653589793 rad pos: -39.5,-82.5 parent: 2 type: Transform - - uid: 14519 + - uid: 14556 components: - rot: 3.141592653589793 rad pos: -39.5,-81.5 parent: 2 type: Transform - - uid: 14520 + - uid: 14557 components: - rot: -1.5707963267948966 rad pos: -42.5,-80.5 parent: 2 type: Transform - - uid: 14521 + - uid: 14558 components: - rot: -1.5707963267948966 rad pos: -43.5,-80.5 parent: 2 type: Transform - - uid: 14522 + - uid: 14559 components: - pos: -44.5,-82.5 parent: 2 type: Transform - - uid: 14523 + - uid: 14560 components: - rot: -1.5707963267948966 rad pos: -40.5,-84.5 parent: 2 type: Transform - - uid: 14524 + - uid: 14561 components: - rot: -1.5707963267948966 rad pos: -40.5,-80.5 parent: 2 type: Transform - - uid: 14525 + - uid: 14562 components: - rot: 1.5707963267948966 rad pos: -42.5,-84.5 parent: 2 type: Transform - - uid: 14526 + - uid: 14563 components: - rot: 1.5707963267948966 rad pos: -43.5,-84.5 parent: 2 type: Transform - - uid: 14527 + - uid: 14564 components: - pos: -44.5,-83.5 parent: 2 type: Transform - - uid: 14528 + - uid: 14565 components: - rot: -1.5707963267948966 rad pos: -41.5,-80.5 parent: 2 type: Transform - - uid: 14529 + - uid: 14566 components: - pos: -44.5,-81.5 parent: 2 type: Transform - - uid: 14530 + - uid: 14567 components: - rot: 3.141592653589793 rad pos: -39.5,-83.5 parent: 2 type: Transform - - uid: 14531 + - uid: 14568 components: - rot: -1.5707963267948966 rad pos: -51.5,-30.5 @@ -96050,189 +91433,191 @@ entities: type: Transform - proto: FigureSpawner entities: - - uid: 14532 + - uid: 14569 components: - pos: 9.5,-6.5 parent: 2 type: Transform - - uid: 14533 + - uid: 14570 components: - pos: 10.5,-6.5 parent: 2 type: Transform - - uid: 14534 + - uid: 14571 components: - pos: -0.5,31.5 parent: 2 type: Transform - - uid: 14535 + - uid: 14572 components: - pos: -1.5,30.5 parent: 2 type: Transform - proto: filingCabinet entities: - - uid: 14536 + - uid: 14573 components: - pos: 17.5,-14.5 parent: 2 type: Transform - - uid: 14537 + - uid: 14574 components: - pos: 62.5,-3.5 parent: 2 type: Transform - proto: filingCabinetDrawer entities: - - uid: 14538 - components: - - pos: 57.5,-41.5 - parent: 2 - type: Transform - - uid: 14539 + - uid: 14575 components: - pos: -24.5,-69.5 parent: 2 type: Transform - - uid: 14540 + - uid: 14576 components: - pos: 58.5,31.5 parent: 2 type: Transform - - uid: 14541 + - uid: 14577 components: - pos: 63.5,-3.5 parent: 2 type: Transform - proto: filingCabinetDrawerRandom entities: - - uid: 14542 + - uid: 14578 components: - pos: 41.5,-3.5 parent: 2 type: Transform - - uid: 14543 + - uid: 14579 components: - pos: -22.5,13.5 parent: 2 type: Transform - proto: filingCabinetRandom entities: - - uid: 14544 + - uid: 14580 components: - pos: 41.5,-2.5 parent: 2 type: Transform - - uid: 14545 + - uid: 14581 components: - pos: -23.5,13.5 parent: 2 type: Transform +- proto: filingCabinetTallRandom + entities: + - uid: 14582 + components: + - pos: 57.5,-40.5 + parent: 2 + type: Transform - proto: FireAlarm entities: - - uid: 14546 + - uid: 14583 components: - pos: -6.5,-44.5 parent: 2 type: Transform - devices: - 811 - - 14992 + - 15028 + - 15029 + - 14678 + - 14677 + - 14699 + - 14676 + - 14675 + - 14674 + - 14873 + - 14874 + - 14919 - 14993 - - 14641 - - 14640 - - 14662 - - 14639 - - 14638 - - 14637 - - 14837 - - 14838 - - 14883 - - 14957 - - 14956 - - 14958 - - 14728 - - 14763 + - 14992 + - 14994 + - 14764 + - 14799 type: DeviceList - - uid: 14547 + - uid: 14584 components: - pos: 30.5,-40.5 parent: 2 type: Transform - devices: - - 14934 + - 14970 + - 14969 + - 14968 + - 14922 + - 14844 + - 14866 + - 15057 - 14933 - - 14932 - - 14886 - - 14808 - - 14830 - - 15021 + - 14859 + - 14858 + - 14918 + - 14920 + - 14925 + - 14960 - 14897 - - 14823 - - 14822 - - 14882 - - 14884 - - 14889 - - 14924 - - 14861 - - 14649 + - 14686 - 816 - - 14912 - - 14910 - - 14752 + - 14948 + - 14946 + - 14788 type: DeviceList - - uid: 14548 + - uid: 14585 components: - rot: -1.5707963267948966 rad pos: -20.5,58.5 parent: 2 type: Transform - devices: - - 15075 - - 15070 - - 15071 - - 15064 - - 15063 - - 15062 - - 15067 - - 15066 + - 15110 + - 15105 + - 15106 + - 15099 + - 15098 + - 15097 + - 15102 + - 15101 - 857 - - 15054 - - 15053 + - 15089 + - 15088 type: DeviceList - - uid: 14549 + - uid: 14586 components: - rot: -1.5707963267948966 rad pos: -11.5,62.5 parent: 2 type: Transform - devices: - - 15070 - - 15071 - - 15073 - - 15068 - - 15069 - - 15065 - - 15043 + - 15105 + - 15106 + - 15108 + - 15103 + - 15104 + - 15100 + - 15078 - 858 type: DeviceList - - uid: 14550 + - uid: 14587 components: - pos: -29.5,-15.5 parent: 2 type: Transform - devices: - 870 - - 14945 - - 14960 - - 14961 - - 14974 - - 14973 - - 14717 - - 14975 - - 14976 + - 14981 + - 14996 + - 14997 + - 15010 + - 15009 + - 14753 + - 15011 + - 15012 type: DeviceList - - uid: 14551 + - uid: 14588 components: - rot: 1.5707963267948966 rad pos: 51.5,12.5 @@ -96240,37 +91625,37 @@ entities: type: Transform - devices: - 852 - - 14779 - - 14778 - - 14777 - - 14776 - - 14775 - - 14780 - - 14781 - - 14782 - - 14916 - - 14915 - - 14923 - - 14999 - - 14918 + - 14815 + - 14814 + - 14813 + - 14812 + - 14811 + - 14816 + - 14817 + - 14818 + - 14952 + - 14951 + - 14959 + - 15035 + - 14954 type: DeviceList - - uid: 14552 + - uid: 14589 components: - pos: 28.5,-57.5 parent: 2 type: Transform - devices: - 851 - - 14950 - - 14949 - - 14951 - - 14634 - - 14823 - - 14897 - - 15021 - - 15026 + - 14986 + - 14985 + - 14987 + - 14671 + - 14859 + - 14933 + - 15057 + - 15062 type: DeviceList - - uid: 14553 + - uid: 14590 components: - rot: -1.5707963267948966 rad pos: -17.5,20.5 @@ -96278,44 +91663,44 @@ entities: type: Transform - devices: - 888 - - 14983 - - 14982 - - 14984 - - 14985 - - 14986 - - 14922 - - 15048 - - 15049 - - 14987 + - 15019 + - 15018 + - 15020 + - 15021 + - 15022 + - 14958 + - 15083 + - 15084 + - 15023 type: DeviceList - - uid: 14554 + - uid: 14591 components: - pos: 65.5,-42.5 parent: 2 type: Transform - devices: - 896 - - 14929 - - 14785 - - 14784 - - 14675 - - 14930 - - 15041 - - 15042 + - 14965 + - 14821 + - 14820 + - 14712 + - 14966 + - 15076 + - 15077 type: DeviceList - - uid: 14555 + - uid: 14592 components: - rot: 1.5707963267948966 rad pos: -30.5,-11.5 parent: 2 type: Transform - devices: - - 15020 - - 14716 - - 14717 + - 15056 + - 14752 + - 14753 - 917 type: DeviceList - - uid: 14556 + - uid: 14593 components: - rot: 3.141592653589793 rad pos: -38.5,-14.5 @@ -96323,45 +91708,45 @@ entities: type: Transform - devices: - 892 - - 14963 - - 14962 - - 14976 - - 14975 - - 15031 - - 14979 - - 14718 - type: DeviceList - - uid: 14557 - components: + - 14999 + - 14998 + - 15012 + - 15011 + - 15066 + - 15015 + - 14754 + type: DeviceList + - uid: 14594 + components: - pos: 8.5,18.5 parent: 2 type: Transform - devices: - - 15036 - - 14733 - - 14734 - - 14903 - - 14904 - - 14651 - - 14665 - - 14859 + - 15071 + - 14769 + - 14770 + - 14939 + - 14940 + - 14688 + - 14702 + - 14895 - 840 type: DeviceList - - uid: 14558 + - uid: 14595 components: - pos: -4.5,60.5 parent: 2 type: Transform - devices: - - 15068 - - 15069 - - 15074 - - 15061 - - 15060 - - 15059 + - 15103 + - 15104 + - 15109 + - 15096 + - 15095 + - 15094 - 859 type: DeviceList - - uid: 14559 + - uid: 14596 components: - rot: -1.5707963267948966 rad pos: 47.5,-36.5 @@ -96369,112 +91754,112 @@ entities: type: Transform - devices: - 894 - - 14674 - - 14925 - - 14677 - - 14676 + - 14711 + - 14961 + - 14714 + - 14713 type: DeviceList - - uid: 14560 + - uid: 14597 components: - pos: 6.5,4.5 parent: 2 type: Transform - devices: - - 14908 - - 14868 - - 14909 - - 14874 - - 14816 - - 14854 - - 14879 + - 14944 + - 14904 + - 14945 + - 14910 - 14852 + - 14890 + - 14915 + - 14888 + - 14896 + - 14831 + - 14830 + - 14864 + - 14829 - 14860 - - 14795 - - 14794 - - 14828 - - 14793 - - 14824 - - 14817 - - 14803 - - 14668 + - 14853 + - 14839 + - 14705 - 838 type: DeviceList - - uid: 14561 + - uid: 14598 components: - pos: -9.5,4.5 parent: 2 type: Transform - devices: - - 15022 - - 15013 - - 15014 - - 15011 - - 15012 - - 14672 - - 14831 - - 14877 - - 14832 + - 15058 + - 15049 + - 15050 + - 15047 + - 15048 + - 14709 + - 14867 + - 14913 + - 14868 + - 14888 + - 14915 + - 14890 - 14852 - - 14879 - - 14854 - - 14816 - - 14802 + - 14838 + - 14887 - 14851 - - 14815 - 837 type: DeviceList - - uid: 14562 + - uid: 14599 components: - pos: -15.5,-3.5 parent: 2 type: Transform - devices: - 861 - - 15003 - - 15002 - - 15004 - - 14946 - - 14943 - - 14881 - - 15015 - - 15013 - - 15014 - - 15011 - - 15012 - - 14659 + - 15039 + - 15038 + - 15040 + - 14982 + - 14979 + - 14917 + - 15051 + - 15049 + - 15050 + - 15047 + - 15048 + - 14696 type: DeviceList - - uid: 14563 + - uid: 14600 components: - pos: 22.5,24.5 parent: 2 type: Transform - devices: - - 15035 - - 15019 - - 15018 - - 15017 - - 14913 + - 15070 + - 15055 + - 15054 + - 15053 + - 14949 - 847 type: DeviceList - - uid: 14564 + - uid: 14601 components: - pos: 6.5,11.5 parent: 2 type: Transform - devices: - - 14903 + - 14939 + - 14940 + - 14886 + - 14906 + - 14837 + - 14944 - 14904 - - 14850 - - 14870 - - 14801 - - 14908 - - 14868 - - 14909 + - 14945 - 841 - - 14878 - - 14874 + - 14914 + - 14910 type: DeviceList - - uid: 14565 + - uid: 14602 components: - rot: 1.5707963267948966 rad pos: -26.5,-15.5 @@ -96482,38 +91867,38 @@ entities: type: Transform - devices: - 868 - - 15020 - - 14829 - - 14833 - - 14973 - - 14974 - - 14716 + - 15056 + - 14865 + - 14869 + - 15009 + - 15010 + - 14752 type: DeviceList - - uid: 14566 + - uid: 14603 components: - pos: -13.5,-40.5 parent: 2 type: Transform - devices: - - 14813 - - 14812 - - 14811 - - 14911 - - 14637 - - 14638 - - 14639 - - 14662 - - 14640 - - 14641 - - 14884 - - 14882 - - 14822 + - 14849 + - 14848 + - 14847 + - 14947 + - 14674 + - 14675 + - 14676 + - 14699 + - 14677 + - 14678 + - 14920 + - 14918 + - 14858 - 812 - - 14905 - - 14906 - - 14907 + - 14941 + - 14942 + - 14943 type: DeviceList - - uid: 14567 + - uid: 14604 components: - rot: 3.141592653589793 rad pos: 4.5,-51.5 @@ -96521,57 +91906,57 @@ entities: type: Transform - devices: - 829 - - 14994 - - 14810 - - 14993 - - 14992 + - 15030 + - 14846 + - 15029 + - 15028 type: DeviceList - - uid: 14568 + - uid: 14605 components: - pos: -16.5,-24.5 parent: 2 type: Transform - devices: - - 14965 + - 15001 - 876 - - 14690 - - 14671 - - 14947 - - 14865 - - 14789 + - 14727 + - 14708 + - 14983 - 14901 - - 14972 - - 14944 - - 14971 - - 15007 + - 14825 + - 14937 - 15008 - - 15009 + - 14980 + - 15007 + - 15043 + - 15044 + - 15045 type: DeviceList - - uid: 14569 + - uid: 14606 components: - pos: -16.5,-58.5 parent: 2 type: Transform - devices: - - 14841 + - 14877 + - 15031 + - 15032 + - 14876 + - 14875 + - 14903 + - 14988 + - 14989 - 14995 - - 14996 - - 14840 - - 14839 - - 14867 - - 14952 - - 14953 - - 14959 - - 15000 - - 15024 - - 15025 - - 15023 - - 15029 + - 15036 + - 15060 + - 15061 + - 15059 + - 15065 - 815 - - 14643 - - 14656 + - 14680 + - 14693 type: DeviceList - - uid: 14570 + - uid: 14607 components: - rot: -1.5707963267948966 rad pos: 41.5,-61.5 @@ -96579,71 +91964,71 @@ entities: type: Transform - devices: - 854 - - 14950 - - 14949 - - 14951 - - 14948 - - 14796 - - 14954 - - 14955 + - 14986 + - 14985 + - 14987 + - 14984 + - 14832 + - 14990 + - 14991 type: DeviceList - - uid: 14571 + - uid: 14608 components: - pos: -7.5,-24.5 parent: 2 type: Transform - devices: - 835 - - 15007 - - 15008 - - 15009 - - 14648 - - 14902 - - 14869 - - 14863 - - 14834 - - 14864 - - 14900 + - 15043 + - 15044 + - 15045 + - 14685 + - 14938 - 14905 - - 14906 - - 14907 + - 14899 + - 14870 + - 14900 + - 14936 + - 14941 + - 14942 + - 14943 type: DeviceList - - uid: 14572 + - uid: 14609 components: - pos: 27.5,-15.5 parent: 2 type: Transform - devices: - - 14849 - - 14836 - - 14875 - - 14891 - - 14792 - - 14888 - - 14814 - - 14853 - - 14820 - - 14821 + - 14885 + - 14872 + - 14911 + - 14927 + - 14828 + - 14924 + - 14850 + - 14889 + - 14856 + - 14857 - 878 type: DeviceList - - uid: 14573 + - uid: 14610 components: - pos: 24.5,-3.5 parent: 2 type: Transform - devices: - 862 - - 14899 - - 14880 - - 14818 - - 14800 - - 14827 - - 14855 - - 14792 - - 14888 - - 14814 + - 14935 + - 14916 + - 14854 + - 14836 + - 14863 + - 14891 + - 14828 + - 14924 + - 14850 type: DeviceList - - uid: 14574 + - uid: 14611 components: - rot: -1.5707963267948966 rad pos: 19.5,-3.5 @@ -96651,110 +92036,110 @@ entities: type: Transform - devices: - 863 - - 14793 - - 14824 - - 14817 - - 14803 - - 14797 - - 14857 - - 14858 - - 14876 - - 14899 - - 14880 - - 14818 + - 14829 + - 14860 + - 14853 + - 14839 + - 14833 + - 14893 + - 14894 + - 14912 + - 14935 + - 14916 + - 14854 type: DeviceList - - uid: 14575 + - uid: 14612 components: - pos: 12.5,-24.5 parent: 2 type: Transform - devices: - 833 - - 14630 + - 14667 + - 14908 + - 14827 + - 14902 + - 14885 - 14872 - - 14791 - - 14866 - - 14849 - - 14836 - - 14875 - - 14861 - - 14924 - - 14889 - - 14626 + - 14911 + - 14897 + - 14960 + - 14925 + - 14663 type: DeviceList - - uid: 14576 + - uid: 14613 components: - pos: 37.5,-24.5 parent: 2 type: Transform - devices: - - 14629 - - 14625 - - 14624 + - 14666 + - 14662 + - 14661 - 819 - - 14631 - - 14853 - - 14820 - - 14821 - - 14886 - - 14808 - - 14830 + - 14668 + - 14889 + - 14856 + - 14857 + - 14922 + - 14844 + - 14866 type: DeviceList - - uid: 14577 + - uid: 14614 components: - pos: 33.5,9.5 parent: 2 type: Transform - devices: - 865 - - 14894 - - 14800 - - 14827 - - 14855 - - 14842 - - 14825 - - 14856 - - 14846 - - 14871 - - 15005 - - 14843 + - 14930 + - 14836 + - 14863 + - 14891 + - 14878 + - 14861 + - 14892 + - 14882 + - 14907 + - 15041 + - 14879 type: DeviceList - - uid: 14578 + - uid: 14615 components: - pos: 56.5,-4.5 parent: 2 type: Transform - devices: - - 14680 + - 14717 - 850 - - 14939 - - 14921 - - 14920 - - 14919 - - 15027 - - 14938 + - 14975 + - 14957 + - 14956 + - 14955 + - 15063 + - 14974 type: DeviceList - - uid: 14579 + - uid: 14616 components: - pos: 40.5,3.5 parent: 2 type: Transform - devices: - 848 - - 14993 - - 14992 + - 15029 + - 15028 - 829 - - 14846 - - 14871 - - 15005 - - 14887 - - 14919 - - 14920 - - 14921 - - 15077 - - 15076 + - 14882 + - 14907 + - 15041 + - 14923 + - 14955 + - 14956 + - 14957 + - 15112 + - 15111 type: DeviceList - - uid: 14580 + - uid: 14617 components: - rot: -1.5707963267948966 rad pos: -2.5,-10.5 @@ -96762,44 +92147,44 @@ entities: type: Transform - devices: - 836 - - 14902 - - 14869 - - 14863 - - 14832 - - 14877 - - 14831 + - 14938 + - 14905 + - 14899 + - 14868 + - 14913 + - 14867 type: DeviceList - - uid: 14581 + - uid: 14618 components: - pos: -31.5,2.5 parent: 2 type: Transform - devices: - 881 - - 14881 - - 14943 - - 14946 - - 14657 - - 14989 - - 14988 - - 14990 - - 14991 - - 14998 + - 14917 + - 14979 + - 14982 + - 14694 + - 15025 + - 15024 + - 15026 + - 15027 + - 15034 type: DeviceList - - uid: 14582 + - uid: 14619 components: - pos: -48.5,9.5 parent: 2 type: Transform - devices: - - 15001 - - 14997 + - 15037 + - 15033 - 882 - - 14990 - - 14991 - - 14998 + - 15026 + - 15027 + - 15034 type: DeviceList - - uid: 14583 + - uid: 14620 components: - rot: -1.5707963267948966 rad pos: -52.5,-10.5 @@ -96807,26 +92192,25 @@ entities: type: Transform - devices: - 891 - - 14969 - - 14968 - - 15030 - - 14692 - - 14693 + - 15005 + - 15004 + - 14729 + - 14730 type: DeviceList - - uid: 14584 + - uid: 14621 components: - pos: -58.5,-22.5 parent: 2 type: Transform - devices: - 890 - - 14980 - - 15010 - - 14688 - - 14968 - - 14969 + - 15016 + - 15046 + - 14725 + - 15004 + - 15005 type: DeviceList - - uid: 14585 + - uid: 14622 components: - rot: -1.5707963267948966 rad pos: -29.5,-35.5 @@ -96834,120 +92218,120 @@ entities: type: Transform - devices: - 874 - - 14966 - - 14967 - - 14940 - - 14941 - - 14683 - - 14682 - - 14687 - - 14686 + - 15002 + - 15003 + - 14976 + - 14977 + - 14720 + - 14719 + - 14724 + - 14723 type: DeviceList - - uid: 14586 + - uid: 14623 components: - pos: 52.5,-38.5 parent: 2 type: Transform - devices: - 856 - - 14925 - - 14928 - - 14937 - - 14926 - - 14927 - - 14931 - - 14935 - - 14936 - - 15039 - - 15040 + - 14961 + - 14964 + - 14973 + - 14962 + - 14963 + - 14967 + - 14971 + - 14972 + - 15074 + - 15075 type: DeviceList - - uid: 14587 + - uid: 14624 components: - pos: 22.5,9.5 parent: 2 type: Transform - devices: - 864 - - 14645 - - 14635 - - 14633 - - 14714 - - 14858 - - 14876 - - 14842 - - 14825 - - 14856 + - 14682 + - 14672 + - 14670 + - 14750 + - 14894 + - 14912 + - 14878 + - 14861 + - 14892 type: DeviceList - - uid: 14588 + - uid: 14625 components: - pos: -26.5,-76.5 parent: 2 type: Transform - devices: - 822 - - 15028 - - 14895 - - 14847 + - 15064 + - 14931 + - 14883 type: DeviceList - - uid: 14589 + - uid: 14626 components: - rot: 1.5707963267948966 rad pos: 27.5,15.5 parent: 2 type: Transform - devices: - - 14917 - - 14826 - - 14848 - - 14799 - - 14913 - - 14666 - - 14655 - - 14636 + - 14953 + - 14862 + - 14884 + - 14835 + - 14949 + - 14703 + - 14692 + - 14673 - 849 - - 15077 - - 15076 + - 15112 + - 15111 type: DeviceList - - uid: 14590 + - uid: 14627 components: - pos: -17.5,-68.5 parent: 2 type: Transform - devices: - 821 - - 15037 - - 15028 - - 14790 - - 14730 + - 15072 + - 15064 + - 14826 + - 14766 type: DeviceList - - uid: 14591 + - uid: 14628 components: - pos: 46.5,-40.5 parent: 2 type: Transform - devices: - - 14674 - - 14928 - - 14937 - - 14926 - - 14934 - - 14933 - - 14932 - - 14676 - - 14677 + - 14711 + - 14964 + - 14973 + - 14962 + - 14970 + - 14969 + - 14968 + - 14713 + - 14714 - 904 type: DeviceList - - uid: 14592 + - uid: 14629 components: - pos: -18.5,68.5 parent: 2 type: Transform - devices: - 906 - - 15110 - - 15109 + - 15144 + - 15143 type: DeviceList - - uid: 14593 + - uid: 14630 components: - rot: -1.5707963267948966 rad pos: -13.5,40.5 @@ -96955,41 +92339,41 @@ entities: type: Transform - devices: - 908 - - 15056 - - 15057 - - 15058 - - 14739 - - 14736 - - 14738 - - 14737 - - 15049 - - 15048 - - 15045 - - 15046 - - 15047 - - 15062 - - 15063 - - 15064 - - 14715 + - 15091 + - 15092 + - 15093 + - 14775 + - 14772 + - 14774 + - 14773 + - 15084 + - 15083 + - 15080 + - 15081 + - 15082 + - 15097 + - 15098 + - 15099 + - 14751 type: DeviceList - - uid: 14594 + - uid: 14631 components: - pos: -7.5,47.5 parent: 2 type: Transform - devices: - 909 - - 15056 - - 15057 - - 15058 - - 15051 - - 15052 - - 15059 - - 15060 - - 15061 - - 15072 + - 15091 + - 15092 + - 15093 + - 15086 + - 15087 + - 15094 + - 15095 + - 15096 + - 15107 type: DeviceList - - uid: 14595 + - uid: 14632 components: - rot: 3.141592653589793 rad pos: 65.5,-36.5 @@ -96997,46 +92381,46 @@ entities: type: Transform - devices: - 915 - - 14678 - - 14746 - - 14748 - - 14747 + - 14715 + - 14782 + - 14784 + - 14783 type: DeviceList - - uid: 14596 + - uid: 14633 components: - pos: 73.5,-42.5 parent: 2 type: Transform - devices: - - 15084 - - 15085 - - 14785 - - 14784 - - 14675 + - 15119 + - 15120 + - 14821 + - 14820 + - 14712 - 899 type: DeviceList - - uid: 14597 + - uid: 14634 components: - rot: -1.5707963267948966 rad pos: -17.5,-13.5 parent: 2 type: Transform - devices: - - 15004 - - 15002 - - 15003 - - 14829 - - 14833 - - 14971 - - 14944 - - 14972 - - 14751 + - 15040 + - 15038 + - 15039 + - 14865 + - 14869 + - 15007 + - 14980 + - 15008 + - 14787 - 869 - - 14942 - - 15086 - - 15087 + - 14978 + - 15121 + - 15122 type: DeviceList - - uid: 14598 + - uid: 14635 components: - rot: 3.141592653589793 rad pos: 21.5,-26.5 @@ -97044,15 +92428,15 @@ entities: type: Transform - devices: - 877 - - 14631 - - 14629 - - 14626 - - 14630 - - 14658 - - 14650 + - 14668 + - 14666 - 14663 + - 14667 + - 14695 + - 14687 + - 14700 type: DeviceList - - uid: 14599 + - uid: 14636 components: - rot: 3.141592653589793 rad pos: 72.5,-39.5 @@ -97060,36 +92444,36 @@ entities: type: Transform - devices: - 914 - - 14750 - - 14749 - - 15083 - - 15082 + - 14786 + - 14785 + - 15118 + - 15117 type: DeviceList - - uid: 14600 + - uid: 14637 components: - pos: 30.5,-70.5 parent: 2 type: Transform - devices: - 922 - - 15100 - - 15101 - - 15102 - - 15099 - - 15098 - - 15097 + - 15134 + - 15135 + - 15136 + - 15133 + - 15132 + - 15131 type: DeviceList - - uid: 14601 + - uid: 14638 components: - rot: -1.5707963267948966 rad pos: 20.5,-85.5 parent: 2 type: Transform - devices: - - 15096 + - 15130 - 923 type: DeviceList - - uid: 14602 + - uid: 14639 components: - rot: -1.5707963267948966 rad pos: 32.5,-81.5 @@ -97097,27 +92481,27 @@ entities: type: Transform - devices: - 905 - - 15095 - - 15097 - - 15098 - - 15099 + - 15129 + - 15131 + - 15132 + - 15133 type: DeviceList - - uid: 14603 + - uid: 14640 components: - rot: 3.141592653589793 rad pos: 42.5,-74.5 parent: 2 type: Transform - devices: - - 15103 - - 15104 - - 15105 - - 15100 - - 15101 - - 15102 + - 15137 + - 15138 + - 15139 + - 15134 + - 15135 + - 15136 - 853 type: DeviceList - - uid: 14604 + - uid: 14641 components: - rot: -1.5707963267948966 rad pos: 50.5,-75.5 @@ -97125,14 +92509,14 @@ entities: type: Transform - devices: - 913 - - 15103 - - 15104 - - 15105 - - 15108 - - 15107 - - 15106 + - 15137 + - 15138 + - 15139 + - 15142 + - 15141 + - 15140 type: DeviceList - - uid: 14605 + - uid: 14642 components: - rot: -1.5707963267948966 rad pos: 50.5,-85.5 @@ -97140,49 +92524,49 @@ entities: type: Transform - devices: - 912 - - 15106 - - 15107 - - 15108 + - 15140 + - 15141 + - 15142 type: DeviceList - - uid: 14606 + - uid: 14643 components: - rot: -1.5707963267948966 rad pos: 48.5,4.5 parent: 2 type: Transform - devices: - - 15111 - - 15016 + - 15145 + - 15052 - 809 - - 14914 + - 14950 type: DeviceList - - uid: 14607 + - uid: 14644 components: - pos: 1.5,-51.5 parent: 2 type: Transform - devices: - - 14994 - - 14810 + - 15030 + - 14846 - 814 - - 14957 - - 14956 - - 14958 - - 14892 - - 14964 + - 14993 + - 14992 + - 14994 + - 14928 + - 15000 + - 14909 + - 14841 + - 14921 + - 14926 - 14873 - - 14805 - - 14885 - - 14890 - - 14837 - - 14838 - - 14883 - - 14898 - - 14896 - - 15034 - - 14763 + - 14874 + - 14919 + - 14934 + - 14932 + - 15069 + - 14799 type: DeviceList - - uid: 14608 + - uid: 14645 components: - rot: 1.5707963267948966 rad pos: -9.5,16.5 @@ -97190,78 +92574,78 @@ entities: type: Transform - ShutdownSubscribers: - 927 - - 14765 - - 14681 - - 14709 - - 14764 + - 14801 + - 14718 + - 14745 + - 14800 type: DeviceNetwork - devices: - 927 - - 14765 - - 14681 - - 14709 - - 14764 + - 14801 + - 14718 + - 14745 + - 14800 type: DeviceList - - uid: 14609 + - uid: 14646 components: - pos: -10.5,13.5 parent: 2 type: Transform - ShutdownSubscribers: - 843 - - 15022 - - 14815 + - 15058 - 14851 - - 14802 - - 14878 - - 14765 - - 14681 + - 14887 + - 14838 + - 14914 + - 14801 + - 14718 type: DeviceNetwork - devices: - 843 - - 15022 - - 14815 + - 15058 - 14851 - - 14802 - - 14878 - - 14765 - - 14681 + - 14887 + - 14838 + - 14914 + - 14801 + - 14718 type: DeviceList - - uid: 14610 + - uid: 14647 components: - pos: -71.5,-36.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14766 - - 14770 + - 14802 + - 14806 type: DeviceNetwork - devices: - 928 - - 15115 - - 15116 - - 14766 - - 14770 + - 15149 + - 15150 + - 14802 + - 14806 type: DeviceList - - uid: 14611 + - uid: 14648 components: - rot: -1.5707963267948966 rad pos: 6.5,-6.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15120 - - 15119 - - 15117 + - 15154 + - 15153 + - 15151 - 932 type: DeviceNetwork - devices: - 932 - - 15117 - - 15119 - - 15120 + - 15151 + - 15153 + - 15154 type: DeviceList - - uid: 14612 + - uid: 14649 components: - rot: -1.5707963267948966 rad pos: 0.5,-4.5 @@ -97269,15 +92653,15 @@ entities: type: Transform - ShutdownSubscribers: - 931 - - 15119 - - 15118 + - 15153 + - 15152 type: DeviceNetwork - devices: - 931 - - 15119 - - 15118 + - 15153 + - 15152 type: DeviceList - - uid: 14613 + - uid: 14650 components: - rot: 1.5707963267948966 rad pos: -2.5,-22.5 @@ -97285,845 +92669,839 @@ entities: type: Transform - ShutdownSubscribers: - 933 - - 15121 - - 15122 + - 15155 + - 15156 type: DeviceNetwork - devices: - 933 - - 15121 - - 15122 + - 15155 + - 15156 type: DeviceList - - uid: 14614 + - uid: 14651 components: - rot: 1.5707963267948966 rad pos: 20.5,-37.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15123 - - 15124 - - 15126 + - 15157 + - 15158 + - 15160 - 934 type: DeviceNetwork - devices: - - 15123 - - 15124 - - 15126 + - 15157 + - 15158 + - 15160 - 934 type: DeviceList - proto: FireAxeCabinetFilled entities: - - uid: 14615 + - uid: 14652 components: - rot: -1.5707963267948966 rad pos: -36.5,-49.5 parent: 2 type: Transform - - uid: 14616 + - uid: 14653 components: - pos: 30.5,-20.5 parent: 2 type: Transform - proto: FireExtinguisher entities: - - uid: 14617 + - uid: 14654 components: - pos: -40.44795,34.218018 parent: 2 type: Transform - - uid: 14618 + - uid: 14655 components: - pos: -40.7292,33.999268 parent: 2 type: Transform - - uid: 14619 + - uid: 14656 components: - pos: -47.435944,26.604792 parent: 2 type: Transform - - uid: 14620 + - uid: 14657 components: - pos: 22.516739,-54.502064 parent: 2 type: Transform - proto: Firelock entities: - - uid: 14621 + - uid: 14658 components: - pos: -47.5,-25.5 parent: 2 type: Transform - - uid: 14622 + - uid: 14659 components: - rot: 1.5707963267948966 rad pos: -13.5,15.5 parent: 2 type: Transform - - uid: 14623 + - uid: 14660 components: - pos: 10.5,-64.5 parent: 2 type: Transform - - uid: 14624 + - uid: 14661 components: - pos: 39.5,-26.5 parent: 2 type: Transform - - uid: 14625 + - uid: 14662 components: - pos: 39.5,-25.5 parent: 2 type: Transform - - uid: 14626 + - uid: 14663 components: - pos: 18.5,-24.5 parent: 2 type: Transform - - uid: 14627 + - uid: 14664 components: - pos: 56.5,-2.5 parent: 2 type: Transform - - uid: 14628 + - uid: 14665 components: - rot: 3.141592653589793 rad pos: 15.5,-13.5 parent: 2 type: Transform - - uid: 14629 + - uid: 14666 components: - rot: 1.5707963267948966 rad pos: 32.5,-25.5 parent: 2 type: Transform - - uid: 14630 + - uid: 14667 components: - rot: 1.5707963267948966 rad pos: 18.5,-25.5 parent: 2 type: Transform - - uid: 14631 + - uid: 14668 components: - pos: 32.5,-24.5 parent: 2 type: Transform - - uid: 14632 + - uid: 14669 components: - pos: 40.5,-14.5 parent: 2 type: Transform - - uid: 14633 + - uid: 14670 components: - rot: 1.5707963267948966 rad pos: 26.5,14.5 parent: 2 type: Transform - - uid: 14634 + - uid: 14671 components: - pos: 23.5,-53.5 parent: 2 type: Transform - - uid: 14635 + - uid: 14672 components: - rot: 1.5707963267948966 rad pos: 25.5,14.5 parent: 2 type: Transform - - uid: 14636 + - uid: 14673 components: - pos: 30.5,23.5 parent: 2 type: Transform - - uid: 14637 + - uid: 14674 components: - pos: -9.5,-44.5 parent: 2 type: Transform - - uid: 14638 + - uid: 14675 components: - pos: -8.5,-44.5 parent: 2 type: Transform - - uid: 14639 + - uid: 14676 components: - pos: -7.5,-44.5 parent: 2 type: Transform - - uid: 14640 + - uid: 14677 components: - pos: -0.5,-44.5 parent: 2 type: Transform - - uid: 14641 + - uid: 14678 components: - pos: 0.5,-44.5 parent: 2 type: Transform - - uid: 14642 + - uid: 14679 components: - rot: -1.5707963267948966 rad pos: 11.5,-49.5 parent: 2 type: Transform - - uid: 14643 + - uid: 14680 components: - pos: -13.5,-62.5 parent: 2 type: Transform - - uid: 14644 + - uid: 14681 components: - pos: -21.5,-52.5 parent: 2 type: Transform - - uid: 14645 + - uid: 14682 components: - rot: 1.5707963267948966 rad pos: 24.5,14.5 parent: 2 type: Transform - - uid: 14646 + - uid: 14683 components: - pos: 18.5,-51.5 parent: 2 type: Transform - - uid: 14647 + - uid: 14684 components: - pos: -47.5,-27.5 parent: 2 type: Transform - - uid: 14648 + - uid: 14685 components: - pos: -11.5,-24.5 parent: 2 type: Transform - - uid: 14649 + - uid: 14686 components: - pos: 31.5,-44.5 parent: 2 type: Transform - - uid: 14650 + - uid: 14687 components: - pos: 26.5,-26.5 parent: 2 type: Transform - - uid: 14651 + - uid: 14688 components: - pos: 14.5,17.5 parent: 2 type: Transform - - uid: 14652 + - uid: 14689 components: - rot: 1.5707963267948966 rad pos: -27.5,-41.5 parent: 2 type: Transform - - uid: 14653 + - uid: 14690 components: - pos: 14.5,-51.5 parent: 2 type: Transform - - uid: 14654 + - uid: 14691 components: - pos: 54.5,38.5 parent: 2 type: Transform - - uid: 14655 + - uid: 14692 components: - pos: 29.5,23.5 parent: 2 type: Transform - - uid: 14656 + - uid: 14693 components: - pos: -19.5,-62.5 parent: 2 type: Transform - - uid: 14657 + - uid: 14694 components: - pos: -29.5,-1.5 parent: 2 type: Transform - - uid: 14658 + - uid: 14695 components: - pos: 23.5,-26.5 parent: 2 type: Transform - - uid: 14659 + - uid: 14696 components: - pos: -19.5,-3.5 parent: 2 type: Transform - - uid: 14660 + - uid: 14697 components: - pos: -10.5,-75.5 parent: 2 type: Transform - - uid: 14661 + - uid: 14698 components: - pos: 34.5,22.5 parent: 2 type: Transform - - uid: 14662 + - uid: 14699 components: - pos: -1.5,-44.5 parent: 2 type: Transform - - uid: 14663 + - uid: 14700 components: - pos: 28.5,-26.5 parent: 2 type: Transform - - uid: 14664 + - uid: 14701 components: - pos: -1.5,-72.5 parent: 2 type: Transform - - uid: 14665 + - uid: 14702 components: - pos: 14.5,16.5 parent: 2 type: Transform - - uid: 14666 + - uid: 14703 components: - pos: 28.5,23.5 parent: 2 type: Transform - - uid: 14667 + - uid: 14704 components: - pos: -50.5,-76.5 parent: 2 type: Transform - - uid: 14668 + - uid: 14705 components: - rot: 3.141592653589793 rad pos: 14.5,-3.5 parent: 2 type: Transform - - uid: 14669 + - uid: 14706 components: - pos: 19.5,-8.5 parent: 2 type: Transform - - uid: 14670 + - uid: 14707 components: - pos: -9.5,-29.5 parent: 2 type: Transform - - uid: 14671 + - uid: 14708 components: - rot: -1.5707963267948966 rad pos: -16.5,-30.5 parent: 2 type: Transform - - uid: 14672 + - uid: 14709 components: - rot: -1.5707963267948966 rad pos: -9.5,-2.5 parent: 2 type: Transform - - uid: 14673 + - uid: 14710 components: - rot: -1.5707963267948966 rad pos: 37.5,20.5 parent: 2 type: Transform - - uid: 14674 + - uid: 14711 components: - pos: 45.5,-40.5 parent: 2 type: Transform - - uid: 14675 + - uid: 14712 components: - pos: 66.5,-48.5 parent: 2 type: Transform - - uid: 14676 + - uid: 14713 components: - pos: 42.5,-40.5 parent: 2 type: Transform - - uid: 14677 + - uid: 14714 components: - pos: 43.5,-40.5 parent: 2 type: Transform - - uid: 14678 + - uid: 14715 components: - pos: 62.5,-37.5 parent: 2 type: Transform - - uid: 14679 + - uid: 14716 components: - pos: -38.5,-22.5 parent: 2 type: Transform - - uid: 14680 + - uid: 14717 components: - rot: -1.5707963267948966 rad pos: 62.5,-16.5 parent: 2 type: Transform - - uid: 14681 + - uid: 14718 components: - pos: -3.5,13.5 parent: 2 type: Transform - ShutdownSubscribers: - 94 - - 14608 - - 14609 + - 14645 + - 14646 type: DeviceNetwork - - uid: 14682 + - uid: 14719 components: - pos: -31.5,-30.5 parent: 2 type: Transform - - uid: 14683 + - uid: 14720 components: - pos: -32.5,-30.5 parent: 2 type: Transform - - uid: 14684 + - uid: 14721 components: - pos: 41.5,-11.5 parent: 2 type: Transform - - uid: 14685 + - uid: 14722 components: - pos: 36.5,-8.5 parent: 2 type: Transform - - uid: 14686 + - uid: 14723 components: - pos: -29.5,-34.5 parent: 2 type: Transform - - uid: 14687 + - uid: 14724 components: - pos: -29.5,-33.5 parent: 2 type: Transform - - uid: 14688 + - uid: 14725 components: - pos: -60.5,-26.5 parent: 2 type: Transform - - uid: 14689 + - uid: 14726 components: - rot: 1.5707963267948966 rad pos: 6.5,-63.5 parent: 2 type: Transform - - uid: 14690 + - uid: 14727 components: - pos: -22.5,-26.5 parent: 2 type: Transform - - uid: 14691 + - uid: 14728 components: - pos: -29.5,-26.5 parent: 2 type: Transform - - uid: 14692 + - uid: 14729 components: - pos: -49.5,-5.5 parent: 2 type: Transform - - uid: 14693 + - uid: 14730 components: - pos: -49.5,-6.5 parent: 2 type: Transform - - uid: 14694 + - uid: 14731 components: - pos: -51.5,-63.5 parent: 2 type: Transform - - uid: 14695 + - uid: 14732 components: - pos: -56.5,-57.5 parent: 2 type: Transform - - uid: 14696 + - uid: 14733 components: - pos: -23.5,-51.5 parent: 2 type: Transform - - uid: 14697 + - uid: 14734 components: - pos: -42.5,-64.5 parent: 2 type: Transform - - uid: 14698 + - uid: 14735 components: - pos: -24.5,-64.5 parent: 2 type: Transform - - uid: 14699 + - uid: 14736 components: - pos: -30.5,-49.5 parent: 2 type: Transform - - uid: 14700 + - uid: 14737 components: - pos: -28.5,-56.5 parent: 2 type: Transform - - uid: 14701 + - uid: 14738 components: - pos: 44.5,-64.5 parent: 2 type: Transform - - uid: 14702 - components: - - rot: 3.141592653589793 rad - pos: 10.5,24.5 - parent: 2 - type: Transform - - uid: 14703 + - uid: 14739 components: - pos: 58.5,27.5 parent: 2 type: Transform - - uid: 14704 + - uid: 14740 components: - pos: 46.5,33.5 parent: 2 type: Transform - - uid: 14705 + - uid: 14741 components: - pos: 48.5,30.5 parent: 2 type: Transform - - uid: 14706 + - uid: 14742 components: - rot: -1.5707963267948966 rad pos: 0.5,-14.5 parent: 2 type: Transform - - uid: 14707 + - uid: 14743 components: - pos: -45.5,13.5 parent: 2 type: Transform - - uid: 14708 + - uid: 14744 components: - pos: -26.5,22.5 parent: 2 type: Transform - - uid: 14709 + - uid: 14745 components: - pos: -1.5,14.5 parent: 2 type: Transform - ShutdownSubscribers: - 94 - - 14608 + - 14645 type: DeviceNetwork - - uid: 14710 + - uid: 14746 components: - pos: -45.5,17.5 parent: 2 type: Transform - - uid: 14711 + - uid: 14747 components: - rot: -1.5707963267948966 rad pos: -55.5,-29.5 parent: 2 type: Transform - - uid: 14712 + - uid: 14748 components: - pos: -24.5,-49.5 parent: 2 type: Transform - - uid: 14713 + - uid: 14749 components: - rot: 3.141592653589793 rad pos: -46.5,-2.5 parent: 2 type: Transform - - uid: 14714 + - uid: 14750 components: - pos: 21.5,9.5 parent: 2 type: Transform - - uid: 14715 + - uid: 14751 components: - rot: -1.5707963267948966 rad pos: -15.5,28.5 parent: 2 type: Transform - - uid: 14716 + - uid: 14752 components: - rot: -1.5707963267948966 rad pos: -26.5,-14.5 parent: 2 type: Transform - - uid: 14717 + - uid: 14753 components: - rot: -1.5707963267948966 rad pos: -30.5,-10.5 parent: 2 type: Transform - - uid: 14718 + - uid: 14754 components: - pos: -36.5,-14.5 parent: 2 type: Transform - - uid: 14719 + - uid: 14755 components: - rot: -1.5707963267948966 rad pos: 64.5,16.5 parent: 2 type: Transform - - uid: 14720 + - uid: 14756 components: - rot: -1.5707963267948966 rad pos: 65.5,3.5 parent: 2 type: Transform - - uid: 14721 + - uid: 14757 components: - pos: 43.5,-55.5 parent: 2 type: Transform - - uid: 14722 + - uid: 14758 components: - rot: 3.141592653589793 rad pos: 4.5,-15.5 parent: 2 type: Transform - - uid: 14723 + - uid: 14759 components: - rot: 3.141592653589793 rad pos: -23.5,-45.5 parent: 2 type: Transform - - uid: 14724 + - uid: 14760 components: - pos: 8.5,-54.5 parent: 2 type: Transform - - uid: 14725 + - uid: 14761 components: - pos: 36.5,-47.5 parent: 2 type: Transform - - uid: 14726 + - uid: 14762 components: - pos: 14.5,-46.5 parent: 2 type: Transform - - uid: 14727 + - uid: 14763 components: - rot: -1.5707963267948966 rad pos: 36.5,-55.5 parent: 2 type: Transform - - uid: 14728 + - uid: 14764 components: - pos: -10.5,-46.5 parent: 2 type: Transform - - uid: 14729 + - uid: 14765 components: - pos: 0.5,10.5 parent: 2 type: Transform - - uid: 14730 + - uid: 14766 components: - pos: -16.5,-69.5 parent: 2 type: Transform - - uid: 14731 + - uid: 14767 components: - pos: -29.5,-72.5 parent: 2 type: Transform - - uid: 14732 + - uid: 14768 components: - pos: -35.5,-70.5 parent: 2 type: Transform - - uid: 14733 + - uid: 14769 components: - pos: 3.5,17.5 parent: 2 type: Transform - - uid: 14734 + - uid: 14770 components: - pos: 3.5,16.5 parent: 2 type: Transform - - uid: 14735 + - uid: 14771 components: - pos: -19.5,45.5 parent: 2 type: Transform - - uid: 14736 + - uid: 14772 components: - pos: -13.5,38.5 parent: 2 type: Transform - - uid: 14737 + - uid: 14773 components: - pos: -17.5,34.5 parent: 2 type: Transform - - uid: 14738 + - uid: 14774 components: - pos: -13.5,34.5 parent: 2 type: Transform - - uid: 14739 + - uid: 14775 components: - pos: -13.5,41.5 parent: 2 type: Transform - - uid: 14740 + - uid: 14776 components: - pos: -38.5,39.5 parent: 2 type: Transform - - uid: 14741 + - uid: 14777 components: - pos: -25.5,41.5 parent: 2 type: Transform - - uid: 14742 + - uid: 14778 components: - pos: -27.5,32.5 parent: 2 type: Transform - - uid: 14743 + - uid: 14779 components: - pos: -8.5,-76.5 parent: 2 type: Transform - - uid: 14744 + - uid: 14780 components: - pos: -13.5,-97.5 parent: 2 type: Transform - - uid: 14745 + - uid: 14781 components: - rot: 1.5707963267948966 rad pos: -72.5,-27.5 parent: 2 type: Transform - - uid: 14746 + - uid: 14782 components: - pos: 61.5,-37.5 parent: 2 type: Transform - - uid: 14747 + - uid: 14783 components: - pos: 66.5,-33.5 parent: 2 type: Transform - - uid: 14748 + - uid: 14784 components: - pos: 66.5,-34.5 parent: 2 type: Transform - - uid: 14749 + - uid: 14785 components: - pos: 69.5,-33.5 parent: 2 type: Transform - - uid: 14750 + - uid: 14786 components: - pos: 69.5,-34.5 parent: 2 type: Transform - - uid: 14751 + - uid: 14787 components: - pos: -17.5,-20.5 parent: 2 type: Transform - - uid: 14752 + - uid: 14788 components: - pos: 19.5,-44.5 parent: 2 type: Transform - - uid: 14753 + - uid: 14789 components: - rot: -1.5707963267948966 rad pos: 68.5,-62.5 parent: 2 type: Transform - - uid: 14754 + - uid: 14790 components: - rot: -1.5707963267948966 rad pos: 65.5,-65.5 parent: 2 type: Transform - - uid: 14755 + - uid: 14791 components: - rot: -1.5707963267948966 rad pos: 57.5,-65.5 parent: 2 type: Transform - - uid: 14756 + - uid: 14792 components: - rot: -1.5707963267948966 rad pos: 73.5,-57.5 parent: 2 type: Transform - - uid: 14757 + - uid: 14793 components: - pos: 16.5,30.5 parent: 2 type: Transform - - uid: 14758 + - uid: 14794 components: - pos: -6.5,-13.5 parent: 2 type: Transform - - uid: 14759 + - uid: 14795 components: - pos: -6.5,-9.5 parent: 2 type: Transform - - uid: 14760 + - uid: 14796 components: - pos: -13.5,-7.5 parent: 2 type: Transform - - uid: 14761 + - uid: 14797 components: - pos: -14.5,-14.5 parent: 2 type: Transform - - uid: 14762 + - uid: 14798 components: - pos: -15.5,-17.5 parent: 2 type: Transform - - uid: 14763 + - uid: 14799 components: - pos: -4.5,-51.5 parent: 2 type: Transform - - uid: 14764 + - uid: 14800 components: - pos: -9.5,15.5 parent: 2 type: Transform - ShutdownSubscribers: - 94 - - 14608 + - 14645 type: DeviceNetwork - - uid: 14765 + - uid: 14801 components: - pos: -6.5,13.5 parent: 2 type: Transform - ShutdownSubscribers: - 94 - - 14608 - - 14609 + - 14645 + - 14646 type: DeviceNetwork - - uid: 14766 + - uid: 14802 components: - rot: -1.5707963267948966 rad pos: -64.5,-36.5 @@ -98131,25 +93509,25 @@ entities: type: Transform - ShutdownSubscribers: - 95 - - 14610 + - 14647 type: DeviceNetwork - - uid: 14767 + - uid: 14803 components: - pos: -49.5,-16.5 parent: 2 type: Transform - - uid: 14768 + - uid: 14804 components: - pos: -49.5,-17.5 parent: 2 type: Transform - - uid: 14769 + - uid: 14805 components: - rot: -1.5707963267948966 rad pos: -56.5,-40.5 parent: 2 type: Transform - - uid: 14770 + - uid: 14806 components: - rot: -1.5707963267948966 rad pos: -64.5,-37.5 @@ -98157,15 +93535,15 @@ entities: type: Transform - ShutdownSubscribers: - 95 - - 14610 + - 14647 type: DeviceNetwork - - uid: 14771 + - uid: 14807 components: - rot: -1.5707963267948966 rad pos: -51.5,-36.5 parent: 2 type: Transform - - uid: 14772 + - uid: 14808 components: - rot: -1.5707963267948966 rad pos: -51.5,-37.5 @@ -98173,79 +93551,79 @@ entities: type: Transform - proto: FirelockEdge entities: - - uid: 14773 + - uid: 14809 components: - rot: -1.5707963267948966 rad pos: 10.5,13.5 parent: 2 type: Transform - - uid: 14774 + - uid: 14810 components: - rot: -1.5707963267948966 rad pos: 10.5,14.5 parent: 2 type: Transform - - uid: 14775 + - uid: 14811 components: - rot: 3.141592653589793 rad pos: 59.5,21.5 parent: 2 type: Transform - - uid: 14776 + - uid: 14812 components: - rot: 3.141592653589793 rad pos: 56.5,21.5 parent: 2 type: Transform - - uid: 14777 + - uid: 14813 components: - rot: 3.141592653589793 rad pos: 53.5,21.5 parent: 2 type: Transform - - uid: 14778 + - uid: 14814 components: - rot: 3.141592653589793 rad pos: 50.5,21.5 parent: 2 type: Transform - - uid: 14779 + - uid: 14815 components: - rot: 3.141592653589793 rad pos: 47.5,21.5 parent: 2 type: Transform - - uid: 14780 + - uid: 14816 components: - rot: 1.5707963267948966 rad pos: 59.5,18.5 parent: 2 type: Transform - - uid: 14781 + - uid: 14817 components: - rot: 1.5707963267948966 rad pos: 59.5,15.5 parent: 2 type: Transform - - uid: 14782 + - uid: 14818 components: - rot: 1.5707963267948966 rad pos: 59.5,13.5 parent: 2 type: Transform - - uid: 14783 + - uid: 14819 components: - rot: -1.5707963267948966 rad pos: 61.5,21.5 parent: 2 type: Transform - - uid: 14784 + - uid: 14820 components: - rot: 1.5707963267948966 rad pos: 65.5,-46.5 parent: 2 type: Transform - - uid: 14785 + - uid: 14821 components: - rot: 1.5707963267948966 rad pos: 65.5,-45.5 @@ -98253,1333 +93631,1331 @@ entities: type: Transform - proto: FirelockElectronics entities: - - uid: 14786 + - uid: 14822 components: - pos: -8.422072,39.102524 parent: 2 type: Transform - - uid: 14787 + - uid: 14823 components: - pos: -8.656447,38.727524 parent: 2 type: Transform - proto: FirelockGlass entities: - - uid: 14788 + - uid: 14824 components: - pos: -69.5,-23.5 parent: 2 type: Transform - - uid: 14789 + - uid: 14825 components: - pos: -19.5,-39.5 parent: 2 type: Transform - - uid: 14790 + - uid: 14826 components: - pos: -19.5,-68.5 parent: 2 type: Transform - - uid: 14791 + - uid: 14827 components: - pos: 10.5,-26.5 parent: 2 type: Transform - - uid: 14792 + - uid: 14828 components: - pos: 24.5,-15.5 parent: 2 type: Transform - - uid: 14793 + - uid: 14829 components: - rot: -1.5707963267948966 rad pos: 15.5,3.5 parent: 2 type: Transform - - uid: 14794 + - uid: 14830 components: - pos: 11.5,4.5 parent: 2 type: Transform - - uid: 14795 + - uid: 14831 components: - pos: 11.5,-2.5 parent: 2 type: Transform - - uid: 14796 + - uid: 14832 components: - pos: 38.5,-69.5 parent: 2 type: Transform - - uid: 14797 + - uid: 14833 components: - pos: 15.5,7.5 parent: 2 type: Transform - - uid: 14798 + - uid: 14834 components: - pos: 16.5,18.5 parent: 2 type: Transform - - uid: 14799 + - uid: 14835 components: - pos: 27.5,18.5 parent: 2 type: Transform - - uid: 14800 + - uid: 14836 components: - pos: 31.5,-4.5 parent: 2 type: Transform - - uid: 14801 + - uid: 14837 components: - pos: 7.5,7.5 parent: 2 type: Transform - - uid: 14802 + - uid: 14838 components: - pos: -6.5,4.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14609 + - 14646 type: DeviceNetwork - - uid: 14803 + - uid: 14839 components: - rot: -1.5707963267948966 rad pos: 15.5,-1.5 parent: 2 type: Transform - - uid: 14804 + - uid: 14840 components: - pos: 18.5,-32.5 parent: 2 type: Transform - - uid: 14805 + - uid: 14841 components: - pos: -5.5,-55.5 parent: 2 type: Transform - - uid: 14806 + - uid: 14842 components: - pos: 32.5,-32.5 parent: 2 type: Transform - - uid: 14807 + - uid: 14843 components: - rot: -1.5707963267948966 rad pos: 18.5,15.5 parent: 2 type: Transform - - uid: 14808 + - uid: 14844 components: - pos: 35.5,-38.5 parent: 2 type: Transform - - uid: 14809 + - uid: 14845 components: - pos: -0.5,-69.5 parent: 2 type: Transform - - uid: 14810 + - uid: 14846 components: - rot: 3.141592653589793 rad pos: 3.5,-51.5 parent: 2 type: Transform - - uid: 14811 + - uid: 14847 components: - pos: -16.5,-43.5 parent: 2 type: Transform - - uid: 14812 + - uid: 14848 components: - pos: -16.5,-42.5 parent: 2 type: Transform - - uid: 14813 + - uid: 14849 components: - pos: -16.5,-41.5 parent: 2 type: Transform - - uid: 14814 + - uid: 14850 components: - pos: 26.5,-15.5 parent: 2 type: Transform - - uid: 14815 + - uid: 14851 components: - pos: -8.5,4.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14609 + - 14646 type: DeviceNetwork - - uid: 14816 + - uid: 14852 components: - pos: -1.5,3.5 parent: 2 type: Transform - - uid: 14817 + - uid: 14853 components: - rot: -1.5707963267948966 rad pos: 15.5,-0.5 parent: 2 type: Transform - - uid: 14818 + - uid: 14854 components: - pos: 19.5,-6.5 parent: 2 type: Transform - - uid: 14819 + - uid: 14855 components: - pos: 8.5,-68.5 parent: 2 type: Transform - - uid: 14820 + - uid: 14856 components: - pos: 35.5,-19.5 parent: 2 type: Transform - - uid: 14821 + - uid: 14857 components: - pos: 36.5,-19.5 parent: 2 type: Transform - - uid: 14822 + - uid: 14858 components: - pos: 7.5,-41.5 parent: 2 type: Transform - - uid: 14823 + - uid: 14859 components: - pos: 24.5,-44.5 parent: 2 type: Transform - - uid: 14824 + - uid: 14860 components: - rot: -1.5707963267948966 rad pos: 15.5,2.5 parent: 2 type: Transform - - uid: 14825 + - uid: 14861 components: - pos: 31.5,7.5 parent: 2 type: Transform - - uid: 14826 + - uid: 14862 components: - rot: 1.5707963267948966 rad pos: 43.5,14.5 parent: 2 type: Transform - - uid: 14827 + - uid: 14863 components: - pos: 31.5,-5.5 parent: 2 type: Transform - - uid: 14828 + - uid: 14864 components: - pos: 10.5,4.5 parent: 2 type: Transform - - uid: 14829 + - uid: 14865 components: - pos: -21.5,-11.5 parent: 2 type: Transform - - uid: 14830 + - uid: 14866 components: - pos: 36.5,-38.5 parent: 2 type: Transform - - uid: 14831 + - uid: 14867 components: - pos: -3.5,-2.5 parent: 2 type: Transform - - uid: 14832 + - uid: 14868 components: - pos: -5.5,-2.5 parent: 2 type: Transform - - uid: 14833 + - uid: 14869 components: - pos: -21.5,-12.5 parent: 2 type: Transform - - uid: 14834 + - uid: 14870 components: - pos: -0.5,-25.5 parent: 2 type: Transform - - uid: 14835 + - uid: 14871 components: - rot: -1.5707963267948966 rad pos: 17.5,15.5 parent: 2 type: Transform - - uid: 14836 + - uid: 14872 components: - pos: 15.5,-19.5 parent: 2 type: Transform - - uid: 14837 + - uid: 14873 components: - pos: -9.5,-51.5 parent: 2 type: Transform - - uid: 14838 + - uid: 14874 components: - pos: -8.5,-51.5 parent: 2 type: Transform - - uid: 14839 + - uid: 14875 components: - pos: -19.5,-58.5 parent: 2 type: Transform - - uid: 14840 + - uid: 14876 components: - pos: -6.5,-62.5 parent: 2 type: Transform - - uid: 14841 + - uid: 14877 components: - pos: -2.5,-62.5 parent: 2 type: Transform - - uid: 14842 + - uid: 14878 components: - pos: 31.5,8.5 parent: 2 type: Transform - - uid: 14843 + - uid: 14879 components: - pos: 31.5,1.5 parent: 2 type: Transform - - uid: 14844 + - uid: 14880 components: - rot: -1.5707963267948966 rad pos: 19.5,14.5 parent: 2 type: Transform - - uid: 14845 + - uid: 14881 components: - pos: -46.5,27.5 parent: 2 type: Transform - - uid: 14846 + - uid: 14882 components: - pos: 35.5,2.5 parent: 2 type: Transform - - uid: 14847 + - uid: 14883 components: - pos: -23.5,-81.5 parent: 2 type: Transform - - uid: 14848 + - uid: 14884 components: - pos: 27.5,17.5 parent: 2 type: Transform - - uid: 14849 + - uid: 14885 components: - pos: 14.5,-19.5 parent: 2 type: Transform - - uid: 14850 + - uid: 14886 components: - pos: 7.5,9.5 parent: 2 type: Transform - - uid: 14851 + - uid: 14887 components: - pos: -7.5,4.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14609 + - 14646 type: DeviceNetwork - - uid: 14852 + - uid: 14888 components: - pos: -1.5,-1.5 parent: 2 type: Transform - - uid: 14853 + - uid: 14889 components: - pos: 34.5,-19.5 parent: 2 type: Transform - - uid: 14854 + - uid: 14890 components: - pos: -1.5,2.5 parent: 2 type: Transform - - uid: 14855 + - uid: 14891 components: - pos: 31.5,-6.5 parent: 2 type: Transform - - uid: 14856 + - uid: 14892 components: - pos: 31.5,6.5 parent: 2 type: Transform - - uid: 14857 + - uid: 14893 components: - pos: 15.5,6.5 parent: 2 type: Transform - - uid: 14858 + - uid: 14894 components: - pos: 19.5,7.5 parent: 2 type: Transform - - uid: 14859 + - uid: 14895 components: - pos: 11.5,18.5 parent: 2 type: Transform - - uid: 14860 + - uid: 14896 components: - pos: 10.5,-2.5 parent: 2 type: Transform - - uid: 14861 + - uid: 14897 components: - pos: 16.5,-38.5 parent: 2 type: Transform - - uid: 14862 + - uid: 14898 components: - pos: 26.5,-31.5 parent: 2 type: Transform - - uid: 14863 + - uid: 14899 components: - pos: -3.5,-22.5 parent: 2 type: Transform - - uid: 14864 + - uid: 14900 components: - pos: -0.5,-26.5 parent: 2 type: Transform - - uid: 14865 + - uid: 14901 components: - pos: -20.5,-39.5 parent: 2 type: Transform - - uid: 14866 + - uid: 14902 components: - pos: 10.5,-27.5 parent: 2 type: Transform - - uid: 14867 + - uid: 14903 components: - pos: -15.5,-58.5 parent: 2 type: Transform - - uid: 14868 + - uid: 14904 components: - pos: 1.5,4.5 parent: 2 type: Transform - - uid: 14869 + - uid: 14905 components: - pos: -4.5,-22.5 parent: 2 type: Transform - - uid: 14870 + - uid: 14906 components: - pos: 7.5,8.5 parent: 2 type: Transform - - uid: 14871 + - uid: 14907 components: - pos: 35.5,1.5 parent: 2 type: Transform - - uid: 14872 + - uid: 14908 components: - pos: 10.5,-25.5 parent: 2 type: Transform - - uid: 14873 + - uid: 14909 components: - pos: -2.5,-55.5 parent: 2 type: Transform - - uid: 14874 + - uid: 14910 components: - pos: 5.5,4.5 parent: 2 type: Transform - - uid: 14875 + - uid: 14911 components: - pos: 16.5,-19.5 parent: 2 type: Transform - - uid: 14876 + - uid: 14912 components: - pos: 19.5,6.5 parent: 2 type: Transform - - uid: 14877 + - uid: 14913 components: - pos: -4.5,-2.5 parent: 2 type: Transform - - uid: 14878 + - uid: 14914 components: - pos: -1.5,7.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14609 + - 14646 type: DeviceNetwork - - uid: 14879 + - uid: 14915 components: - pos: -1.5,-0.5 parent: 2 type: Transform - - SecondsUntilStateChange: -7371.0557 - state: Closing + - state: Closed type: Door - - uid: 14880 + - canCollide: True + type: Physics + - airBlocked: True + type: Airtight + - uid: 14916 components: - pos: 19.5,-5.5 parent: 2 type: Transform - - uid: 14881 + - uid: 14917 components: - pos: -27.5,1.5 parent: 2 type: Transform - - uid: 14882 + - uid: 14918 components: - pos: 7.5,-42.5 parent: 2 type: Transform - - uid: 14883 + - uid: 14919 components: - pos: -7.5,-51.5 parent: 2 type: Transform - - uid: 14884 + - uid: 14920 components: - pos: 7.5,-43.5 parent: 2 type: Transform - - uid: 14885 + - uid: 14921 components: - pos: -8.5,-55.5 parent: 2 type: Transform - - uid: 14886 + - uid: 14922 components: - pos: 34.5,-38.5 parent: 2 type: Transform - - uid: 14887 + - uid: 14923 components: - pos: 38.5,-0.5 parent: 2 type: Transform - - uid: 14888 + - uid: 14924 components: - pos: 25.5,-15.5 parent: 2 type: Transform - - uid: 14889 + - uid: 14925 components: - pos: 14.5,-38.5 parent: 2 type: Transform - - uid: 14890 + - uid: 14926 components: - pos: -11.5,-55.5 parent: 2 type: Transform - - uid: 14891 + - uid: 14927 components: - pos: 20.5,-15.5 parent: 2 type: Transform - - uid: 14892 + - uid: 14928 components: - pos: 0.5,-55.5 parent: 2 type: Transform - - uid: 14893 + - uid: 14929 components: - pos: 11.5,-29.5 parent: 2 type: Transform - - uid: 14894 + - uid: 14930 components: - pos: 35.5,-3.5 parent: 2 type: Transform - - uid: 14895 + - uid: 14931 components: - pos: -22.5,-81.5 parent: 2 type: Transform - - uid: 14896 + - uid: 14932 components: - pos: -15.5,-55.5 parent: 2 type: Transform - - uid: 14897 + - uid: 14933 components: - pos: 25.5,-44.5 parent: 2 type: Transform - - uid: 14898 + - uid: 14934 components: - pos: -14.5,-55.5 parent: 2 type: Transform - - uid: 14899 + - uid: 14935 components: - pos: 19.5,-4.5 parent: 2 type: Transform - - uid: 14900 + - uid: 14936 components: - pos: -0.5,-27.5 parent: 2 type: Transform - - uid: 14901 + - uid: 14937 components: - pos: -18.5,-39.5 parent: 2 type: Transform - - uid: 14902 + - uid: 14938 components: - pos: -5.5,-22.5 parent: 2 type: Transform - - uid: 14903 + - uid: 14939 components: - pos: 4.5,11.5 parent: 2 type: Transform - - uid: 14904 + - uid: 14940 components: - pos: 5.5,11.5 parent: 2 type: Transform - - uid: 14905 + - uid: 14941 components: - pos: -5.5,-39.5 parent: 2 type: Transform - - uid: 14906 + - uid: 14942 components: - pos: -4.5,-39.5 parent: 2 type: Transform - - uid: 14907 + - uid: 14943 components: - pos: -3.5,-39.5 parent: 2 type: Transform - - uid: 14908 + - uid: 14944 components: - pos: 0.5,4.5 parent: 2 type: Transform - - uid: 14909 + - uid: 14945 components: - pos: 2.5,4.5 parent: 2 type: Transform - - uid: 14910 + - uid: 14946 components: - pos: 22.5,-44.5 parent: 2 type: Transform - - uid: 14911 + - uid: 14947 components: - pos: -8.5,-40.5 parent: 2 type: Transform - - uid: 14912 + - uid: 14948 components: - pos: 21.5,-44.5 parent: 2 type: Transform - - uid: 14913 + - uid: 14949 components: - pos: 27.5,21.5 parent: 2 type: Transform - - uid: 14914 + - uid: 14950 components: - rot: 1.5707963267948966 rad pos: 48.5,6.5 parent: 2 type: Transform - - uid: 14915 + - uid: 14951 components: - rot: 1.5707963267948966 rad pos: 43.5,19.5 parent: 2 type: Transform - - uid: 14916 + - uid: 14952 components: - rot: 1.5707963267948966 rad pos: 43.5,20.5 parent: 2 type: Transform - - uid: 14917 + - uid: 14953 components: - rot: 1.5707963267948966 rad pos: 43.5,15.5 parent: 2 type: Transform - - uid: 14918 + - uid: 14954 components: - rot: 1.5707963267948966 rad pos: 61.5,4.5 parent: 2 type: Transform - - uid: 14919 + - uid: 14955 components: - pos: 51.5,-3.5 parent: 2 type: Transform - - uid: 14920 + - uid: 14956 components: - pos: 52.5,-3.5 parent: 2 type: Transform - - uid: 14921 + - uid: 14957 components: - pos: 53.5,-3.5 parent: 2 type: Transform - - uid: 14922 + - uid: 14958 components: - pos: -21.5,30.5 parent: 2 type: Transform - - uid: 14923 + - uid: 14959 components: - rot: 1.5707963267948966 rad pos: 46.5,15.5 parent: 2 type: Transform - - uid: 14924 + - uid: 14960 components: - pos: 15.5,-38.5 parent: 2 type: Transform - - uid: 14925 + - uid: 14961 components: - pos: 47.5,-37.5 parent: 2 type: Transform - - uid: 14926 + - uid: 14962 components: - pos: 47.5,-43.5 parent: 2 type: Transform - - uid: 14927 + - uid: 14963 components: - pos: 47.5,-45.5 parent: 2 type: Transform - - uid: 14928 + - uid: 14964 components: - pos: 47.5,-41.5 parent: 2 type: Transform - - uid: 14929 + - uid: 14965 components: - pos: 62.5,-41.5 parent: 2 type: Transform - - uid: 14930 + - uid: 14966 components: - pos: 62.5,-50.5 parent: 2 type: Transform - - uid: 14931 + - uid: 14967 components: - pos: 47.5,-46.5 parent: 2 type: Transform - - uid: 14932 + - uid: 14968 components: - pos: 40.5,-43.5 parent: 2 type: Transform - - uid: 14933 + - uid: 14969 components: - pos: 40.5,-42.5 parent: 2 type: Transform - - uid: 14934 + - uid: 14970 components: - pos: 40.5,-41.5 parent: 2 type: Transform - - uid: 14935 + - uid: 14971 components: - pos: 49.5,-48.5 parent: 2 type: Transform - - uid: 14936 + - uid: 14972 components: - pos: 50.5,-48.5 parent: 2 type: Transform - - uid: 14937 + - uid: 14973 components: - pos: 47.5,-42.5 parent: 2 type: Transform - - uid: 14938 + - uid: 14974 components: - pos: 46.5,-10.5 parent: 2 type: Transform - - uid: 14939 + - uid: 14975 components: - rot: -1.5707963267948966 rad pos: 64.5,-4.5 parent: 2 type: Transform - - uid: 14940 + - uid: 14976 components: - pos: -34.5,-33.5 parent: 2 type: Transform - - uid: 14941 + - uid: 14977 components: - pos: -34.5,-34.5 parent: 2 type: Transform - - uid: 14942 + - uid: 14978 components: - pos: -21.5,-21.5 parent: 2 type: Transform - - uid: 14943 + - uid: 14979 components: - pos: -27.5,0.5 parent: 2 type: Transform - - uid: 14944 + - uid: 14980 components: - pos: -19.5,-24.5 parent: 2 type: Transform - - uid: 14945 + - uid: 14981 components: - pos: -33.5,-16.5 parent: 2 type: Transform - - uid: 14946 + - uid: 14982 components: - pos: -27.5,-0.5 parent: 2 type: Transform - - uid: 14947 + - uid: 14983 components: - pos: -21.5,-32.5 parent: 2 type: Transform - - uid: 14948 + - uid: 14984 components: - pos: 39.5,-57.5 parent: 2 type: Transform - - uid: 14949 + - uid: 14985 components: - pos: 35.5,-59.5 parent: 2 type: Transform - - uid: 14950 + - uid: 14986 components: - pos: 35.5,-58.5 parent: 2 type: Transform - - uid: 14951 + - uid: 14987 components: - pos: 35.5,-60.5 parent: 2 type: Transform - - uid: 14952 + - uid: 14988 components: - pos: -14.5,-58.5 parent: 2 type: Transform - - uid: 14953 + - uid: 14989 components: - pos: -11.5,-58.5 parent: 2 type: Transform - - uid: 14954 + - uid: 14990 components: - pos: 39.5,-69.5 parent: 2 type: Transform - - uid: 14955 + - uid: 14991 components: - pos: 40.5,-69.5 parent: 2 type: Transform - - uid: 14956 + - uid: 14992 components: - pos: -0.5,-51.5 parent: 2 type: Transform - - uid: 14957 + - uid: 14993 components: - pos: -1.5,-51.5 parent: 2 type: Transform - - uid: 14958 + - uid: 14994 components: - pos: 0.5,-51.5 parent: 2 type: Transform - - uid: 14959 + - uid: 14995 components: - pos: -8.5,-58.5 parent: 2 type: Transform - - uid: 14960 + - uid: 14996 components: - pos: -32.5,-19.5 parent: 2 type: Transform - - uid: 14961 + - uid: 14997 components: - pos: -31.5,-19.5 parent: 2 type: Transform - - uid: 14962 + - uid: 14998 components: - pos: -40.5,-6.5 parent: 2 type: Transform - - uid: 14963 + - uid: 14999 components: - pos: -40.5,-5.5 parent: 2 type: Transform - - uid: 14964 + - uid: 15000 components: - pos: 3.5,-55.5 parent: 2 type: Transform - - uid: 14965 + - uid: 15001 components: - pos: -21.5,-34.5 parent: 2 type: Transform - - uid: 14966 + - uid: 15002 components: - pos: -33.5,-40.5 parent: 2 type: Transform - - uid: 14967 + - uid: 15003 components: - pos: -33.5,-41.5 parent: 2 type: Transform - - uid: 14968 + - uid: 15004 components: - pos: -54.5,-21.5 parent: 2 type: Transform - - uid: 14969 + - uid: 15005 components: - pos: -53.5,-21.5 parent: 2 type: Transform - - uid: 14970 + - uid: 15006 components: - pos: -69.5,-24.5 parent: 2 type: Transform - - uid: 14971 + - uid: 15007 components: - pos: -20.5,-24.5 parent: 2 type: Transform - - uid: 14972 + - uid: 15008 components: - pos: -18.5,-24.5 parent: 2 type: Transform - - uid: 14973 + - uid: 15009 components: - pos: -26.5,-16.5 parent: 2 type: Transform - - uid: 14974 + - uid: 15010 components: - pos: -26.5,-17.5 parent: 2 type: Transform - - uid: 14975 + - uid: 15011 components: - pos: -33.5,-11.5 parent: 2 type: Transform - - uid: 14976 + - uid: 15012 components: - pos: -33.5,-10.5 parent: 2 type: Transform - - uid: 14977 + - uid: 15013 components: - pos: -41.5,-8.5 parent: 2 type: Transform - - uid: 14978 + - uid: 15014 components: - pos: -42.5,-8.5 parent: 2 type: Transform - - uid: 14979 + - uid: 15015 components: - pos: -40.5,-10.5 parent: 2 type: Transform - - uid: 14980 + - uid: 15016 components: - pos: -63.5,-23.5 parent: 2 type: Transform - - uid: 14981 + - uid: 15017 components: - pos: -21.5,-60.5 parent: 2 type: Transform - - uid: 14982 + - uid: 15018 components: - pos: -21.5,20.5 parent: 2 type: Transform - - uid: 14983 + - uid: 15019 components: - pos: -21.5,21.5 parent: 2 type: Transform - - uid: 14984 + - uid: 15020 components: - pos: -20.5,14.5 parent: 2 type: Transform - - uid: 14985 + - uid: 15021 components: - pos: -19.5,14.5 parent: 2 type: Transform - - uid: 14986 + - uid: 15022 components: - pos: -18.5,14.5 parent: 2 type: Transform - - uid: 14987 + - uid: 15023 components: - rot: -1.5707963267948966 rad pos: -17.5,25.5 parent: 2 type: Transform - - uid: 14988 + - uid: 15024 components: - pos: -38.5,2.5 parent: 2 type: Transform - - uid: 14989 + - uid: 15025 components: - pos: -37.5,2.5 parent: 2 type: Transform - - uid: 14990 + - uid: 15026 components: - pos: -44.5,1.5 parent: 2 type: Transform - - uid: 14991 + - uid: 15027 components: - pos: -44.5,0.5 parent: 2 type: Transform - - uid: 14992 + - uid: 15028 components: - pos: 1.5,-46.5 parent: 2 type: Transform - - uid: 14993 + - uid: 15029 components: - pos: 1.5,-48.5 parent: 2 type: Transform - - uid: 14994 + - uid: 15030 components: - rot: 3.141592653589793 rad pos: 5.5,-51.5 parent: 2 type: Transform - - uid: 14995 + - uid: 15031 components: - pos: -3.5,-62.5 parent: 2 type: Transform - - uid: 14996 + - uid: 15032 components: - pos: -5.5,-62.5 parent: 2 type: Transform - - uid: 14997 + - uid: 15033 components: - pos: -45.5,9.5 parent: 2 type: Transform - - uid: 14998 + - uid: 15034 components: - pos: -44.5,-0.5 parent: 2 type: Transform - - uid: 14999 + - uid: 15035 components: - rot: 1.5707963267948966 rad pos: 46.5,14.5 parent: 2 type: Transform - - uid: 15000 + - uid: 15036 components: - pos: -5.5,-58.5 parent: 2 type: Transform - - uid: 15001 + - uid: 15037 components: - pos: -46.5,9.5 parent: 2 type: Transform - - uid: 15002 + - uid: 15038 components: - pos: -19.5,-7.5 parent: 2 type: Transform - - uid: 15003 + - uid: 15039 components: - pos: -18.5,-7.5 parent: 2 type: Transform - - uid: 15004 + - uid: 15040 components: - pos: -20.5,-7.5 parent: 2 type: Transform - - uid: 15005 + - uid: 15041 components: - pos: 35.5,0.5 parent: 2 type: Transform - - uid: 15006 + - uid: 15042 components: - pos: -32.5,27.5 parent: 2 type: Transform - - uid: 15007 + - uid: 15043 components: - pos: -13.5,-25.5 parent: 2 type: Transform - - uid: 15008 + - uid: 15044 components: - pos: -13.5,-26.5 parent: 2 type: Transform - - uid: 15009 + - uid: 15045 components: - pos: -13.5,-27.5 parent: 2 type: Transform - - uid: 15010 + - uid: 15046 components: - pos: -63.5,-24.5 parent: 2 type: Transform - - uid: 15011 + - uid: 15047 components: - pos: -11.5,-0.5 parent: 2 type: Transform - - uid: 15012 + - uid: 15048 components: - pos: -11.5,-1.5 parent: 2 type: Transform - - uid: 15013 + - uid: 15049 components: - pos: -11.5,3.5 parent: 2 type: Transform - - uid: 15014 + - uid: 15050 components: - pos: -11.5,2.5 parent: 2 type: Transform - - uid: 15015 + - uid: 15051 components: - pos: -24.5,9.5 parent: 2 type: Transform - - uid: 15016 + - uid: 15052 components: - rot: 3.141592653589793 rad pos: 43.5,6.5 parent: 2 type: Transform - - uid: 15017 + - uid: 15053 components: - pos: 26.5,19.5 parent: 2 type: Transform - - uid: 15018 + - uid: 15054 components: - pos: 25.5,19.5 parent: 2 type: Transform - - uid: 15019 + - uid: 15055 components: - pos: 24.5,19.5 parent: 2 type: Transform - - uid: 15020 + - uid: 15056 components: - rot: 3.141592653589793 rad pos: -26.5,-12.5 parent: 2 type: Transform - - uid: 15021 + - uid: 15057 components: - pos: 26.5,-44.5 parent: 2 type: Transform - - uid: 15022 + - uid: 15058 components: - pos: -10.5,4.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14609 + - 14646 type: DeviceNetwork - - uid: 15023 + - uid: 15059 components: - pos: 3.5,-58.5 parent: 2 type: Transform - - uid: 15024 + - uid: 15060 components: - pos: -2.5,-58.5 parent: 2 type: Transform - - uid: 15025 + - uid: 15061 components: - pos: 0.5,-58.5 parent: 2 type: Transform - - uid: 15026 + - uid: 15062 components: - pos: 31.5,-57.5 parent: 2 type: Transform - - uid: 15027 + - uid: 15063 components: - pos: 49.5,-13.5 parent: 2 type: Transform - - uid: 15028 + - uid: 15064 components: - pos: -24.5,-74.5 parent: 2 type: Transform - - uid: 15029 + - uid: 15065 components: - pos: 3.5,-62.5 parent: 2 type: Transform - - uid: 15030 - components: - - pos: -51.5,-21.5 - parent: 2 - type: Transform - - uid: 15031 + - uid: 15066 components: - pos: -40.5,-11.5 parent: 2 type: Transform - - uid: 15032 + - uid: 15067 components: - pos: -43.5,-10.5 parent: 2 type: Transform - - uid: 15033 + - uid: 15068 components: - pos: -43.5,-11.5 parent: 2 type: Transform - - uid: 15034 + - uid: 15069 components: - pos: -13.5,-51.5 parent: 2 type: Transform - - uid: 15035 + - uid: 15070 components: - pos: 22.5,19.5 parent: 2 type: Transform - - uid: 15036 + - uid: 15071 components: - pos: 6.5,18.5 parent: 2 type: Transform - - uid: 15037 + - uid: 15072 components: - pos: -18.5,-74.5 parent: 2 type: Transform - - uid: 15038 + - uid: 15073 components: - pos: -20.5,-83.5 parent: 2 type: Transform - - uid: 15039 + - uid: 15074 components: - pos: 54.5,-44.5 parent: 2 type: Transform - - uid: 15040 + - uid: 15075 components: - pos: 54.5,-45.5 parent: 2 type: Transform - - uid: 15041 + - uid: 15076 components: - pos: 58.5,-44.5 parent: 2 type: Transform - - uid: 15042 + - uid: 15077 components: - pos: 58.5,-45.5 parent: 2 type: Transform - - uid: 15043 + - uid: 15078 components: - pos: -12.5,68.5 parent: 2 @@ -99587,113 +94963,113 @@ entities: - ShutdownSubscribers: - 73 type: DeviceNetwork - - uid: 15044 + - uid: 15079 components: - rot: 1.5707963267948966 rad pos: -18.5,55.5 parent: 2 type: Transform - - uid: 15045 + - uid: 15080 components: - pos: -19.5,43.5 parent: 2 type: Transform - - uid: 15046 + - uid: 15081 components: - pos: -19.5,42.5 parent: 2 type: Transform - - uid: 15047 + - uid: 15082 components: - pos: -19.5,41.5 parent: 2 type: Transform - - uid: 15048 + - uid: 15083 components: - pos: -17.5,30.5 parent: 2 type: Transform - - uid: 15049 + - uid: 15084 components: - pos: -17.5,29.5 parent: 2 type: Transform - - uid: 15050 + - uid: 15085 components: - pos: -11.5,43.5 parent: 2 type: Transform - - uid: 15051 + - uid: 15086 components: - pos: -10.5,43.5 parent: 2 type: Transform - - uid: 15052 + - uid: 15087 components: - pos: -9.5,43.5 parent: 2 type: Transform - - uid: 15053 + - uid: 15088 components: - pos: -20.5,49.5 parent: 2 type: Transform - - uid: 15054 + - uid: 15089 components: - pos: -21.5,49.5 parent: 2 type: Transform - - uid: 15055 + - uid: 15090 components: - pos: 8.5,-38.5 parent: 2 type: Transform - - uid: 15056 + - uid: 15091 components: - pos: -13.5,46.5 parent: 2 type: Transform - - uid: 15057 + - uid: 15092 components: - pos: -13.5,45.5 parent: 2 type: Transform - - uid: 15058 + - uid: 15093 components: - pos: -13.5,44.5 parent: 2 type: Transform - - uid: 15059 + - uid: 15094 components: - pos: 1.5,53.5 parent: 2 type: Transform - - uid: 15060 + - uid: 15095 components: - pos: 0.5,53.5 parent: 2 type: Transform - - uid: 15061 + - uid: 15096 components: - pos: -0.5,53.5 parent: 2 type: Transform - - uid: 15062 + - uid: 15097 components: - pos: -18.5,48.5 parent: 2 type: Transform - - uid: 15063 + - uid: 15098 components: - pos: -17.5,48.5 parent: 2 type: Transform - - uid: 15064 + - uid: 15099 components: - pos: -16.5,48.5 parent: 2 type: Transform - - uid: 15065 + - uid: 15100 components: - pos: -13.5,68.5 parent: 2 @@ -99701,17 +95077,17 @@ entities: - ShutdownSubscribers: - 73 type: DeviceNetwork - - uid: 15066 + - uid: 15101 components: - pos: -21.5,68.5 parent: 2 type: Transform - - uid: 15067 + - uid: 15102 components: - pos: -22.5,68.5 parent: 2 type: Transform - - uid: 15068 + - uid: 15103 components: - pos: -11.5,59.5 parent: 2 @@ -99719,7 +95095,7 @@ entities: - ShutdownSubscribers: - 73 type: DeviceNetwork - - uid: 15069 + - uid: 15104 components: - pos: -11.5,58.5 parent: 2 @@ -99727,7 +95103,7 @@ entities: - ShutdownSubscribers: - 73 type: DeviceNetwork - - uid: 15070 + - uid: 15105 components: - pos: -15.5,51.5 parent: 2 @@ -99735,7 +95111,7 @@ entities: - ShutdownSubscribers: - 73 type: DeviceNetwork - - uid: 15071 + - uid: 15106 components: - pos: -15.5,50.5 parent: 2 @@ -99743,13 +95119,13 @@ entities: - ShutdownSubscribers: - 73 type: DeviceNetwork - - uid: 15072 + - uid: 15107 components: - rot: 3.141592653589793 rad pos: -4.5,47.5 parent: 2 type: Transform - - uid: 15073 + - uid: 15108 components: - rot: 3.141592653589793 rad pos: -11.5,52.5 @@ -99758,199 +95134,194 @@ entities: - ShutdownSubscribers: - 73 type: DeviceNetwork - - uid: 15074 + - uid: 15109 components: - rot: 3.141592653589793 rad pos: -6.5,57.5 parent: 2 type: Transform - - uid: 15075 + - uid: 15110 components: - pos: -24.5,48.5 parent: 2 type: Transform - - uid: 15076 + - uid: 15111 components: - rot: 3.141592653589793 rad pos: 42.5,3.5 parent: 2 type: Transform - - uid: 15077 + - uid: 15112 components: - rot: 3.141592653589793 rad pos: 41.5,3.5 parent: 2 type: Transform - - uid: 15078 + - uid: 15113 components: - pos: -42.5,-86.5 parent: 2 type: Transform - - uid: 15079 + - uid: 15114 components: - pos: -41.5,-86.5 parent: 2 type: Transform - - uid: 15080 + - uid: 15115 components: - pos: -31.5,-97.5 parent: 2 type: Transform - - uid: 15081 + - uid: 15116 components: - pos: 61.5,-41.5 parent: 2 type: Transform - - uid: 15082 + - uid: 15117 components: - pos: 74.5,-39.5 parent: 2 type: Transform - - uid: 15083 + - uid: 15118 components: - pos: 75.5,-39.5 parent: 2 type: Transform - - uid: 15084 + - uid: 15119 components: - pos: 74.5,-42.5 parent: 2 type: Transform - - uid: 15085 + - uid: 15120 components: - pos: 75.5,-42.5 parent: 2 type: Transform - - uid: 15086 + - uid: 15121 components: - pos: -17.5,-22.5 parent: 2 type: Transform - - uid: 15087 + - uid: 15122 components: - pos: -17.5,-23.5 parent: 2 type: Transform - - uid: 15088 + - uid: 15123 components: - rot: 3.141592653589793 rad pos: 43.5,-33.5 parent: 2 type: Transform - - uid: 15089 + - uid: 15124 components: - pos: 4.5,-28.5 parent: 2 type: Transform - - uid: 15090 + - uid: 15125 components: - pos: -45.5,27.5 parent: 2 type: Transform - - uid: 15091 + - uid: 15126 components: - pos: 55.5,-29.5 parent: 2 type: Transform - - uid: 15092 + - uid: 15127 components: - pos: -41.5,26.5 parent: 2 type: Transform - - uid: 15093 - components: - - pos: 55.5,-38.5 - parent: 2 - type: Transform - - uid: 15094 + - uid: 15128 components: - rot: -1.5707963267948966 rad pos: 6.5,-72.5 parent: 2 type: Transform - - uid: 15095 + - uid: 15129 components: - pos: 23.5,-83.5 parent: 2 type: Transform - - uid: 15096 + - uid: 15130 components: - pos: 20.5,-83.5 parent: 2 type: Transform - - uid: 15097 + - uid: 15131 components: - rot: 3.141592653589793 rad pos: 29.5,-76.5 parent: 2 type: Transform - - uid: 15098 + - uid: 15132 components: - rot: 3.141592653589793 rad pos: 30.5,-76.5 parent: 2 type: Transform - - uid: 15099 + - uid: 15133 components: - rot: 3.141592653589793 rad pos: 31.5,-76.5 parent: 2 type: Transform - - uid: 15100 + - uid: 15134 components: - rot: 3.141592653589793 rad pos: 32.5,-71.5 parent: 2 type: Transform - - uid: 15101 + - uid: 15135 components: - rot: 3.141592653589793 rad pos: 32.5,-72.5 parent: 2 type: Transform - - uid: 15102 + - uid: 15136 components: - rot: 3.141592653589793 rad pos: 32.5,-73.5 parent: 2 type: Transform - - uid: 15103 + - uid: 15137 components: - rot: 3.141592653589793 rad pos: 46.5,-71.5 parent: 2 type: Transform - - uid: 15104 + - uid: 15138 components: - rot: 3.141592653589793 rad pos: 46.5,-72.5 parent: 2 type: Transform - - uid: 15105 + - uid: 15139 components: - rot: 3.141592653589793 rad pos: 46.5,-73.5 parent: 2 type: Transform - - uid: 15106 + - uid: 15140 components: - rot: 3.141592653589793 rad pos: 47.5,-76.5 parent: 2 type: Transform - - uid: 15107 + - uid: 15141 components: - rot: 3.141592653589793 rad pos: 48.5,-76.5 parent: 2 type: Transform - - uid: 15108 + - uid: 15142 components: - rot: 3.141592653589793 rad pos: 49.5,-76.5 parent: 2 type: Transform - - uid: 15109 + - uid: 15143 components: - rot: 3.141592653589793 rad pos: -14.5,66.5 @@ -99959,220 +95330,220 @@ entities: - ShutdownSubscribers: - 73 type: DeviceNetwork - - uid: 15110 + - uid: 15144 components: - rot: 3.141592653589793 rad pos: -20.5,66.5 parent: 2 type: Transform - - uid: 15111 + - uid: 15145 components: - pos: 45.5,3.5 parent: 2 type: Transform - - uid: 15112 + - uid: 15146 components: - pos: 8.5,-83.5 parent: 2 type: Transform - - uid: 15113 + - uid: 15147 components: - pos: -46.5,37.5 parent: 2 type: Transform - - uid: 15114 + - uid: 15148 components: - pos: -45.5,37.5 parent: 2 type: Transform - - uid: 15115 + - uid: 15149 components: - pos: -72.5,-36.5 parent: 2 type: Transform - - uid: 15116 + - uid: 15150 components: - pos: -73.5,-36.5 parent: 2 type: Transform - - uid: 15117 + - uid: 15151 components: - pos: 6.5,-7.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14611 + - 14648 - 98 type: DeviceNetwork - - uid: 15118 + - uid: 15152 components: - pos: -2.5,-5.5 parent: 2 type: Transform - ShutdownSubscribers: - 99 - - 14612 + - 14649 type: DeviceNetwork - - uid: 15119 + - uid: 15153 components: - pos: 0.5,-5.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14611 + - 14648 - 98 - 99 - - 14612 + - 14649 type: DeviceNetwork - - uid: 15120 + - uid: 15154 components: - rot: 1.5707963267948966 rad pos: 1.5,-8.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14611 + - 14648 - 98 type: DeviceNetwork - - uid: 15121 + - uid: 15155 components: - pos: 0.5,-18.5 parent: 2 type: Transform - ShutdownSubscribers: - 100 - - 14613 + - 14650 type: DeviceNetwork - - uid: 15122 + - uid: 15156 components: - pos: -1.5,-24.5 parent: 2 type: Transform - ShutdownSubscribers: - 100 - - 14613 + - 14650 type: DeviceNetwork - - uid: 15123 + - uid: 15157 components: - pos: 22.5,-33.5 parent: 2 type: Transform - ShutdownSubscribers: - 78 - - 14614 + - 14651 type: DeviceNetwork - - uid: 15124 + - uid: 15158 components: - pos: 28.5,-33.5 parent: 2 type: Transform - ShutdownSubscribers: - 78 - - 14614 + - 14651 type: DeviceNetwork - - uid: 15125 + - uid: 15159 components: - pos: 7.5,-11.5 parent: 2 type: Transform - - uid: 15126 + - uid: 15160 components: - pos: 25.5,-40.5 parent: 2 type: Transform - ShutdownSubscribers: - 78 - - 14614 + - 14651 type: DeviceNetwork - proto: Fireplace entities: - - uid: 15127 + - uid: 15161 components: - pos: 31.5,-27.5 parent: 2 type: Transform - - uid: 15128 + - uid: 15162 components: - pos: 12.5,14.5 parent: 2 type: Transform - - uid: 15129 + - uid: 15163 components: - pos: -0.5,-3.5 parent: 2 type: Transform - - uid: 15130 + - uid: 15164 components: - pos: 5.5,-9.5 parent: 2 type: Transform - proto: Flash entities: - - uid: 15131 + - uid: 15165 components: - pos: 2.3260884,20.921833 parent: 2 type: Transform - - uid: 15132 + - uid: 15166 components: - pos: 2.5760884,21.156208 parent: 2 type: Transform - - uid: 15133 + - uid: 15167 components: - pos: -15.513895,-23.550434 parent: 2 type: Transform - proto: FlashlightLantern entities: - - uid: 15134 + - uid: 15168 components: - pos: -57.60324,-35.44005 parent: 2 type: Transform - - uid: 15135 + - uid: 15169 components: - pos: 2.4386559,-17.536861 parent: 2 type: Transform - - uid: 15136 + - uid: 15170 components: - pos: 11.541302,-66.381775 parent: 2 type: Transform - - uid: 15137 + - uid: 15171 components: - pos: 10.459883,-56.492657 parent: 2 type: Transform - - uid: 15138 + - uid: 15172 components: - pos: 6.4653053,-69.51486 parent: 2 type: Transform - - uid: 15139 + - uid: 15173 components: - pos: -31.518282,-62.54614 parent: 2 type: Transform - - uid: 15140 + - uid: 15174 components: - pos: 2.6315942,23.576332 parent: 2 type: Transform - - uid: 15141 + - uid: 15175 components: - pos: 58.39165,-37.43153 parent: 2 type: Transform - proto: FlashlightSeclite entities: - - uid: 15142 + - uid: 15176 components: - pos: 17.395416,21.653858 parent: 2 type: Transform - - uid: 15143 + - uid: 15177 components: - rot: 3.141592653589793 rad pos: 7.161119,12.488324 @@ -100180,129 +95551,129 @@ entities: type: Transform - proto: Floodlight entities: - - uid: 15144 + - uid: 15178 components: - pos: 6.532791,48.672844 parent: 2 type: Transform - - uid: 15145 + - uid: 15179 components: - pos: 9.471183,54.298565 parent: 2 type: Transform - - uid: 15146 + - uid: 15180 components: - pos: -69.53465,-52.447685 parent: 2 type: Transform - proto: FloodlightBroken entities: - - uid: 15147 + - uid: 15181 components: - pos: 11.494867,-70.44923 parent: 2 type: Transform - proto: FloorDrain entities: - - uid: 15148 + - uid: 15182 components: - pos: 3.5,-48.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15149 + - uid: 15183 components: - pos: -1.5,-66.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15150 + - uid: 15184 components: - pos: 3.5,8.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15151 + - uid: 15185 components: - pos: -15.5,-78.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15152 + - uid: 15186 components: - pos: -1.5,-64.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15153 + - uid: 15187 components: - pos: -7.5,-65.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15154 + - uid: 15188 components: - pos: -9.5,-22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15155 + - uid: 15189 components: - pos: -15.5,-75.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15156 + - uid: 15190 components: - pos: -20.5,-89.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15157 + - uid: 15191 components: - pos: -25.5,-89.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15158 + - uid: 15192 components: - pos: 53.5,17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15159 + - uid: 15193 components: - pos: 57.5,5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15160 + - uid: 15194 components: - pos: 62.5,12.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15161 + - uid: 15195 components: - pos: 62.5,22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15162 + - uid: 15196 components: - rot: 3.141592653589793 rad pos: 71.5,-49.5 @@ -100310,28 +95681,28 @@ entities: type: Transform - fixtures: {} type: Fixtures - - uid: 15163 + - uid: 15197 components: - pos: -9.5,-69.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15164 + - uid: 15198 components: - pos: 3.5,-46.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15165 + - uid: 15199 components: - pos: 1.5,12.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15166 + - uid: 15200 components: - rot: 3.141592653589793 rad pos: 45.5,6.5 @@ -100339,7 +95710,7 @@ entities: type: Transform - fixtures: {} type: Fixtures - - uid: 15167 + - uid: 15201 components: - pos: -15.5,-34.5 parent: 2 @@ -100348,7 +95719,7 @@ entities: type: Fixtures - proto: FloorTileItemBar entities: - - uid: 15168 + - uid: 15202 components: - pos: 37.575134,45.699768 parent: 2 @@ -100357,7 +95728,7 @@ entities: type: Stack - proto: FloorTileItemFreezer entities: - - uid: 15169 + - uid: 15203 components: - pos: -9.469288,-100.35687 parent: 2 @@ -100366,7 +95737,7 @@ entities: type: Stack - proto: FloorTileItemLaundry entities: - - uid: 15170 + - uid: 15204 components: - pos: -9.484913,-95.4242 parent: 2 @@ -100375,7 +95746,7 @@ entities: type: Stack - proto: FloorTileItemWhite entities: - - uid: 15171 + - uid: 15205 components: - pos: -10.013714,-95.45264 parent: 2 @@ -100384,231 +95755,231 @@ entities: type: Stack - proto: FloraRockSolid01 entities: - - uid: 15172 + - uid: 15206 components: - pos: -35.842815,62.48777 parent: 2 type: Transform - - uid: 15173 + - uid: 15207 components: - pos: 64.48079,45.764553 parent: 2 type: Transform - proto: FloraRockSolid03 entities: - - uid: 15174 + - uid: 15208 components: - pos: 63.527668,48.936428 parent: 2 type: Transform - - uid: 15175 + - uid: 15209 components: - pos: 13.129076,49.02767 parent: 2 type: Transform - - uid: 15176 + - uid: 15210 components: - pos: 16.257528,57.816456 parent: 2 type: Transform - - uid: 15177 + - uid: 15211 components: - pos: 78.52854,-58.425747 parent: 2 type: Transform - proto: FloraTree01 entities: - - uid: 15178 + - uid: 15212 components: - pos: -40.510788,5.4778786 parent: 2 type: Transform - - uid: 15179 + - uid: 15213 components: - pos: 45.883274,-86.48348 parent: 2 type: Transform - proto: FloraTree02 entities: - - uid: 15180 + - uid: 15214 components: - pos: -3.160706,55.605114 parent: 2 type: Transform - - uid: 15181 + - uid: 15215 components: - pos: 33.292767,-85.71786 parent: 2 type: Transform - proto: FloraTree03 entities: - - uid: 15182 + - uid: 15216 components: - pos: 33.02714,-87.53036 parent: 2 type: Transform - proto: FloraTree04 entities: - - uid: 15183 + - uid: 15217 components: - pos: 31.9344,-39.9966 parent: 2 type: Transform - - uid: 15184 + - uid: 15218 components: - pos: 60.920433,-8.196068 parent: 2 type: Transform - - uid: 15185 + - uid: 15219 components: - pos: -9.341627,55.436527 parent: 2 type: Transform - - uid: 15186 + - uid: 15220 components: - pos: -35.771816,4.543429 parent: 2 type: Transform - proto: FloraTree05 entities: - - uid: 15187 + - uid: 15221 components: - pos: 54.09217,-7.7980886 parent: 2 type: Transform - - uid: 15188 + - uid: 15222 components: - pos: -8.496121,50.8569 parent: 2 type: Transform - proto: FloraTree06 entities: - - uid: 15189 + - uid: 15223 components: - pos: -35.026413,5.9935036 parent: 2 type: Transform - proto: FloraTreeLarge03 entities: - - uid: 15190 + - uid: 15224 components: - pos: 15.442133,-83.60979 parent: 2 type: Transform - proto: FoamBlade entities: - - uid: 15191 + - uid: 15225 components: - pos: -14.780027,-76.18346 parent: 2 type: Transform - proto: FoamCrossbow entities: - - uid: 15192 + - uid: 15226 components: - pos: -11.410641,41.56952 parent: 2 type: Transform - proto: FoodBakedCookieRaisin entities: - - uid: 15193 + - uid: 15227 components: - pos: -2.526709,-33.523388 parent: 2 type: Transform - proto: FoodBowlBig entities: - - uid: 15194 + - uid: 15228 components: - pos: -22.492924,44.20428 parent: 2 type: Transform - - uid: 15195 + - uid: 15229 components: - pos: -22.508549,43.813656 parent: 2 type: Transform - proto: FoodBoxDonkpocketDink entities: - - uid: 15196 + - uid: 15230 components: - pos: 46.42201,-49.40806 parent: 2 type: Transform - proto: FoodBoxDonkpocketHonk entities: - - uid: 15197 + - uid: 15231 components: - pos: 32.37506,-20.42581 parent: 2 type: Transform - proto: FoodBoxDonkpocketPizza entities: - - uid: 15198 + - uid: 15232 components: - pos: -30.632925,-69.35548 parent: 2 type: Transform - - uid: 15199 + - uid: 15233 components: - pos: 46.42201,-49.329933 parent: 2 type: Transform - proto: FoodBoxDonkpocketSpicy entities: - - uid: 15200 + - uid: 15234 components: - pos: -39.41441,-32.343586 parent: 2 type: Transform - proto: FoodBoxDonut entities: - - uid: 15201 + - uid: 15235 components: - pos: 52.62345,11.736868 parent: 2 type: Transform - - uid: 15202 + - uid: 15236 components: - pos: 25.290524,19.578499 parent: 2 type: Transform - proto: FoodBreadBanana entities: - - uid: 15203 + - uid: 15237 components: - pos: -36.588596,16.602194 parent: 2 type: Transform - proto: FoodBurgerBrain entities: - - uid: 15204 + - uid: 15238 components: - pos: -12.411479,-50.405228 parent: 2 type: Transform - proto: FoodCakeSpacemanSlice entities: - - uid: 15205 + - uid: 15239 components: - pos: -34.24552,17.570845 parent: 2 type: Transform - proto: FoodCondimentBottleEnzyme entities: - - uid: 15206 + - uid: 15240 components: - pos: 3.5430002,6.7808695 parent: 2 type: Transform - - uid: 15207 + - uid: 15241 components: - pos: 3.2617502,6.8589945 parent: 2 type: Transform - proto: FoodCornTrash entities: - - uid: 15208 + - uid: 15242 components: - rot: -1.5707963267948966 rad pos: 48.732845,33.42303 @@ -100616,28 +95987,28 @@ entities: type: Transform - proto: FoodDonkpocketBerry entities: - - uid: 15209 + - uid: 15243 components: - pos: -9.518124,43.595463 parent: 2 type: Transform - proto: FoodDonkpocketDink entities: - - uid: 15210 + - uid: 15244 components: - pos: -10.231451,43.574326 parent: 2 type: Transform - proto: FoodDonutChocolate entities: - - uid: 15211 + - uid: 15245 components: - pos: 8.49275,13.726382 parent: 2 type: Transform - proto: FoodFrozenPopsicleTrash entities: - - uid: 15212 + - uid: 15246 components: - rot: -1.5707963267948966 rad pos: 50.420345,33.45428 @@ -100645,163 +96016,163 @@ entities: type: Transform - proto: FoodLemon entities: - - uid: 15213 + - uid: 15247 components: - pos: 55.628414,-67.334946 parent: 2 type: Transform - proto: FoodMealEggplantParm entities: - - uid: 15214 + - uid: 15248 components: - pos: -23.359459,-71.33451 parent: 2 type: Transform - proto: FoodMealFriesCarrot entities: - - uid: 15215 + - uid: 15249 components: - pos: -21.429913,47.709663 parent: 2 type: Transform - proto: FoodMealPotatoYaki entities: - - uid: 15216 + - uid: 15250 components: - pos: 44.419395,-49.295273 parent: 2 type: Transform - proto: FoodMeat entities: - - uid: 15217 + - uid: 15251 components: - pos: -16.53665,-77.55797 parent: 2 type: Transform - - uid: 15218 + - uid: 15252 components: - pos: 64.3404,48.319218 parent: 2 type: Transform - proto: FoodMeatHawaiianKebab entities: - - uid: 15219 + - uid: 15253 components: - pos: -12.469789,31.726183 parent: 2 type: Transform - proto: FoodPieBananaCream entities: - - uid: 15220 + - uid: 15254 components: - pos: 1.5036734,4.5642977 parent: 2 type: Transform - - uid: 15221 + - uid: 15255 components: - pos: -21.504532,37.662663 parent: 2 type: Transform - - uid: 15222 + - uid: 15256 components: - pos: 5.023752,11.565053 parent: 2 type: Transform - - uid: 15223 + - uid: 15257 components: - pos: -0.36896515,-23.435265 parent: 2 type: Transform - proto: FoodPizzaMoldySlice entities: - - uid: 15224 + - uid: 15258 components: - pos: -58.327778,-27.35657 parent: 2 type: Transform - proto: FoodPizzaPineapple entities: - - uid: 15225 + - uid: 15259 components: - pos: -25.559431,-79.20157 parent: 2 type: Transform - proto: FoodPizzaVegetableSlice entities: - - uid: 15226 + - uid: 15260 components: - pos: 34.483707,-35.33738 parent: 2 type: Transform - proto: FoodPlatePlastic entities: - - uid: 15227 + - uid: 15261 components: - pos: 58.37584,20.738062 parent: 2 type: Transform - - uid: 15228 + - uid: 15262 components: - pos: 57.68834,19.831812 parent: 2 type: Transform - proto: FoodPlateSmallTrash entities: - - uid: 15229 + - uid: 15263 components: - pos: 12.393527,-66.326096 parent: 2 type: Transform - proto: FoodPlateTrash entities: - - uid: 15230 + - uid: 15264 components: - pos: 49.46722,33.501156 parent: 2 type: Transform - proto: FoodRiceBoiled entities: - - uid: 15231 + - uid: 15265 components: - pos: -19.538637,41.826466 parent: 2 type: Transform - proto: FoodRiceEgg entities: - - uid: 15232 + - uid: 15266 components: - pos: -19.538637,43.451466 parent: 2 type: Transform - proto: FoodRicePork entities: - - uid: 15233 + - uid: 15267 components: - pos: -14.4963455,47.699337 parent: 2 type: Transform - - uid: 15234 + - uid: 15268 components: - pos: -19.554262,42.701466 parent: 2 type: Transform - proto: FoodRicePudding entities: - - uid: 15235 + - uid: 15269 components: - pos: -18.492641,33.633274 parent: 2 type: Transform - proto: FoodSaladValid entities: - - uid: 15236 + - uid: 15270 components: - pos: -7.4460807,4.484113 parent: 2 type: Transform - proto: FoodSnackBoritos entities: - - uid: 15237 + - uid: 15271 components: - rot: -1.5707963267948966 rad pos: -11.473979,-49.827103 @@ -100809,14 +96180,14 @@ entities: type: Transform - proto: FoodSnackDanDanNoodles entities: - - uid: 15238 + - uid: 15272 components: - pos: -17.010939,42.53945 parent: 2 type: Transform - proto: FoodSnackRaisins entities: - - uid: 15239 + - uid: 15273 components: - rot: -1.5707963267948966 rad pos: -54.526974,-39.17369 @@ -100824,56 +96195,56 @@ entities: type: Transform - proto: FoodSnackSus entities: - - uid: 15240 + - uid: 15274 components: - pos: -12.469789,32.52306 parent: 2 type: Transform - proto: FoodSoupClown entities: - - uid: 15241 + - uid: 15275 components: - pos: 48.47484,-21.900894 parent: 2 type: Transform - proto: FoodSoupVegetable entities: - - uid: 15242 + - uid: 15276 components: - pos: -16.443905,21.40528 parent: 2 type: Transform - proto: FoodTartGapple entities: - - uid: 15243 + - uid: 15277 components: - pos: 44.89154,-26.413532 parent: 2 type: Transform - proto: FoodTartMime entities: - - uid: 15244 + - uid: 15278 components: - pos: -28.494537,45.97597 parent: 2 type: Transform - proto: FoodTinPeachesMaint entities: - - uid: 15245 + - uid: 15279 components: - pos: -27.385347,-52.20374 parent: 2 type: Transform - proto: FoodTinPeachesMaintOpen entities: - - uid: 15246 + - uid: 15280 components: - pos: 50.52597,42.757114 parent: 2 type: Transform - proto: FoodTinPeachesTrash entities: - - uid: 15247 + - uid: 15281 components: - rot: -1.5707963267948966 rad pos: 50.40472,33.469906 @@ -100881,7 +96252,7 @@ entities: type: Transform - proto: ForensicScanner entities: - - uid: 15248 + - uid: 15282 components: - rot: -1.5707963267948966 rad pos: 22.266937,-14.419123 @@ -100889,7 +96260,7 @@ entities: type: Transform - proto: GarlicSeeds entities: - - uid: 15249 + - uid: 15283 components: - rot: 3.141592653589793 rad pos: -9.594382,12.492181 @@ -100897,126 +96268,126 @@ entities: type: Transform - proto: GasAnalyzer entities: - - uid: 15250 + - uid: 15284 components: - pos: -22.469156,-58.33799 parent: 2 type: Transform - - uid: 15251 + - uid: 15285 components: - pos: 53.6123,-53.30506 parent: 2 type: Transform - - uid: 15252 + - uid: 15286 components: - pos: -35.42214,-48.770245 parent: 2 type: Transform - - uid: 15253 + - uid: 15287 components: - pos: 4.481148,-75.45175 parent: 2 type: Transform - - uid: 15254 + - uid: 15288 components: - pos: -55.480183,-48.446095 parent: 2 type: Transform - - uid: 15255 + - uid: 15289 components: - pos: -73.40059,-39.44707 parent: 2 type: Transform - proto: GasCanisterBrokenBase entities: - - uid: 15256 + - uid: 15290 components: - pos: -28.5,-21.5 parent: 2 type: Transform - proto: GasFilterFlipped entities: - - uid: 15257 + - uid: 15291 components: - rot: 3.141592653589793 rad pos: 45.5,-59.5 parent: 2 type: Transform - - uid: 15258 + - uid: 15292 components: - pos: -44.5,-46.5 parent: 2 type: Transform - - uid: 15259 + - uid: 15293 components: - pos: -44.5,-44.5 parent: 2 type: Transform - - uid: 15260 + - uid: 15294 components: - pos: -44.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15261 + - uid: 15295 components: - pos: -44.5,-48.5 parent: 2 type: Transform - - uid: 15262 + - uid: 15296 components: - pos: -44.5,-50.5 parent: 2 type: Transform - - uid: 15263 + - uid: 15297 components: - pos: -44.5,-52.5 parent: 2 type: Transform - - uid: 15264 + - uid: 15298 components: - pos: -44.5,-54.5 parent: 2 type: Transform - proto: GasMinerCarbonDioxide entities: - - uid: 15265 + - uid: 15299 components: - pos: -49.5,-50.5 parent: 2 type: Transform - proto: GasMinerNitrogenStationLarge entities: - - uid: 15266 + - uid: 15300 components: - pos: -49.5,-54.5 parent: 2 type: Transform - proto: GasMinerOxygenStationLarge entities: - - uid: 15267 + - uid: 15301 components: - pos: -49.5,-52.5 parent: 2 type: Transform - proto: GasMinerPlasma entities: - - uid: 15268 + - uid: 15302 components: - pos: -49.5,-46.5 parent: 2 type: Transform - proto: GasMinerWaterVapor entities: - - uid: 15269 + - uid: 15303 components: - pos: -49.5,-48.5 parent: 2 type: Transform - proto: GasMixer entities: - - uid: 15270 + - uid: 15304 components: - rot: 1.5707963267948966 rad pos: 55.5,-59.5 @@ -101024,7 +96395,7 @@ entities: type: Transform - proto: GasMixerFlipped entities: - - uid: 15271 + - uid: 15305 components: - pos: -42.5,-51.5 parent: 2 @@ -101032,7 +96403,7 @@ entities: - inletTwoConcentration: 0 inletOneConcentration: 1 type: GasMixer - - uid: 15272 + - uid: 15306 components: - pos: -42.5,-52.5 parent: 2 @@ -101040,7 +96411,7 @@ entities: - inletTwoConcentration: 1 inletOneConcentration: 0 type: GasMixer - - uid: 15273 + - uid: 15307 components: - rot: -1.5707963267948966 rad pos: -42.5,-55.5 @@ -101051,7 +96422,7 @@ entities: type: GasMixer - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 15274 + - uid: 15308 components: - pos: -42.5,-49.5 parent: 2 @@ -101059,7 +96430,7 @@ entities: - inletTwoConcentration: 0 inletOneConcentration: 1 type: GasMixer - - uid: 15275 + - uid: 15309 components: - pos: -42.5,-47.5 parent: 2 @@ -101067,7 +96438,7 @@ entities: - inletTwoConcentration: 0 inletOneConcentration: 1 type: GasMixer - - uid: 15276 + - uid: 15310 components: - pos: -42.5,-45.5 parent: 2 @@ -101075,7 +96446,7 @@ entities: - inletTwoConcentration: 0 inletOneConcentration: 1 type: GasMixer - - uid: 15277 + - uid: 15311 components: - pos: -42.5,-43.5 parent: 2 @@ -101085,91 +96456,91 @@ entities: type: GasMixer - proto: GasOutletInjector entities: - - uid: 15278 + - uid: 15312 components: - rot: 1.5707963267948966 rad pos: -48.5,-54.5 parent: 2 type: Transform - - uid: 15279 + - uid: 15313 components: - rot: 1.5707963267948966 rad pos: -48.5,-52.5 parent: 2 type: Transform - - uid: 15280 + - uid: 15314 components: - rot: 1.5707963267948966 rad pos: -48.5,-50.5 parent: 2 type: Transform - - uid: 15281 + - uid: 15315 components: - rot: 1.5707963267948966 rad pos: -48.5,-48.5 parent: 2 type: Transform - - uid: 15282 + - uid: 15316 components: - rot: 1.5707963267948966 rad pos: -48.5,-46.5 parent: 2 type: Transform - - uid: 15283 + - uid: 15317 components: - rot: 1.5707963267948966 rad pos: -48.5,-44.5 parent: 2 type: Transform - - uid: 15284 + - uid: 15318 components: - rot: 1.5707963267948966 rad pos: -48.5,-42.5 parent: 2 type: Transform - - uid: 15285 + - uid: 15319 components: - pos: -42.5,-35.5 parent: 2 type: Transform - proto: GasPassiveVent entities: - - uid: 15286 + - uid: 15320 components: - pos: -44.5,-36.5 parent: 2 type: Transform - - uid: 15287 + - uid: 15321 components: - rot: -1.5707963267948966 rad pos: -63.5,-43.5 parent: 2 type: Transform - - uid: 15288 + - uid: 15322 components: - pos: -50.5,-52.5 parent: 2 type: Transform - - uid: 15289 + - uid: 15323 components: - pos: 73.5,-26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15290 + - uid: 15324 components: - rot: 3.141592653589793 rad pos: 51.5,-60.5 parent: 2 type: Transform - - uid: 15291 + - uid: 15325 components: - rot: 3.141592653589793 rad pos: 48.5,-60.5 parent: 2 type: Transform - - uid: 15292 + - uid: 15326 components: - rot: 3.141592653589793 rad pos: 49.5,-63.5 @@ -101177,56 +96548,56 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15293 + - uid: 15327 components: - pos: -50.5,-54.5 parent: 2 type: Transform - - uid: 15294 + - uid: 15328 components: - pos: -50.5,-50.5 parent: 2 type: Transform - - uid: 15295 + - uid: 15329 components: - pos: -50.5,-48.5 parent: 2 type: Transform - - uid: 15296 + - uid: 15330 components: - pos: -50.5,-46.5 parent: 2 type: Transform - - uid: 15297 + - uid: 15331 components: - pos: -50.5,-44.5 parent: 2 type: Transform - - uid: 15298 + - uid: 15332 components: - pos: -50.5,-42.5 parent: 2 type: Transform - - uid: 15299 + - uid: 15333 components: - rot: 3.141592653589793 rad pos: -38.5,-60.5 parent: 2 type: Transform - - uid: 15300 + - uid: 15334 components: - pos: 1.5,26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15301 + - uid: 15335 components: - rot: 3.141592653589793 rad pos: 70.5,32.5 parent: 2 type: Transform - - uid: 15302 + - uid: 15336 components: - rot: 3.141592653589793 rad pos: 3.5,64.5 @@ -101234,7 +96605,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15303 + - uid: 15337 components: - rot: 3.141592653589793 rad pos: 2.5,63.5 @@ -101242,7 +96613,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15304 + - uid: 15338 components: - rot: 3.141592653589793 rad pos: -5.5,63.5 @@ -101250,7 +96621,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15305 + - uid: 15339 components: - rot: 3.141592653589793 rad pos: -6.5,64.5 @@ -101258,7 +96629,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15306 + - uid: 15340 components: - rot: 1.5707963267948966 rad pos: -0.5,69.5 @@ -101266,7 +96637,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15307 + - uid: 15341 components: - rot: -1.5707963267948966 rad pos: -2.5,69.5 @@ -101274,7 +96645,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15308 + - uid: 15342 components: - rot: 3.141592653589793 rad pos: 66.5,-40.5 @@ -101282,27 +96653,27 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15309 + - uid: 15343 components: - pos: 72.5,-29.5 parent: 2 type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 15310 + - uid: 15344 components: - rot: 3.141592653589793 rad pos: -55.5,-63.5 parent: 2 type: Transform - - uid: 15311 + - uid: 15345 components: - pos: 71.5,-29.5 parent: 2 type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 15312 + - uid: 15346 components: - rot: 1.5707963267948966 rad pos: 68.5,-38.5 @@ -101310,13 +96681,13 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 15313 + - uid: 15347 components: - rot: 3.141592653589793 rad pos: 55.5,-51.5 parent: 2 type: Transform - - uid: 15314 + - uid: 15348 components: - rot: 1.5707963267948966 rad pos: 68.5,-37.5 @@ -101324,13 +96695,13 @@ entities: type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 15315 + - uid: 15349 components: - rot: -1.5707963267948966 rad pos: -44.5,-35.5 parent: 2 type: Transform - - uid: 15316 + - uid: 15350 components: - rot: 1.5707963267948966 rad pos: -76.5,-40.5 @@ -101338,7 +96709,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15317 + - uid: 15351 components: - rot: 1.5707963267948966 rad pos: -76.5,-42.5 @@ -101348,7 +96719,7 @@ entities: type: AtmosPipeColor - proto: GasPipeBend entities: - - uid: 15318 + - uid: 15352 components: - rot: -1.5707963267948966 rad pos: 2.5,-6.5 @@ -101356,14 +96727,12 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15319 + - uid: 15353 components: - pos: -70.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 15320 + - uid: 15354 components: - rot: 1.5707963267948966 rad pos: -73.5,-23.5 @@ -101371,7 +96740,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15321 + - uid: 15355 components: - rot: -1.5707963267948966 rad pos: -71.5,-32.5 @@ -101379,7 +96748,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15322 + - uid: 15356 components: - rot: 1.5707963267948966 rad pos: -72.5,-32.5 @@ -101387,7 +96756,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15323 + - uid: 15357 components: - rot: -1.5707963267948966 rad pos: -62.5,-42.5 @@ -101395,9 +96764,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15324 + - uid: 15358 components: - rot: -1.5707963267948966 rad pos: -70.5,-46.5 @@ -101405,9 +96772,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15325 + - uid: 15359 components: - rot: 3.141592653589793 rad pos: -68.5,-46.5 @@ -101415,16 +96780,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15326 + - uid: 15360 components: - pos: -3.5,16.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15327 + - uid: 15361 components: - rot: -1.5707963267948966 rad pos: 35.5,3.5 @@ -101432,9 +96795,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15328 + - uid: 15362 components: - rot: 3.141592653589793 rad pos: 20.5,-42.5 @@ -101442,7 +96803,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15329 + - uid: 15363 components: - rot: 1.5707963267948966 rad pos: -3.5,-53.5 @@ -101450,7 +96811,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15330 + - uid: 15364 components: - rot: 1.5707963267948966 rad pos: -1.5,-46.5 @@ -101458,21 +96819,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15331 + - uid: 15365 components: - pos: -7.5,-46.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15332 + - uid: 15366 components: - pos: -6.5,-63.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15333 + - uid: 15367 components: - rot: -1.5707963267948966 rad pos: 22.5,-5.5 @@ -101480,7 +96841,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15334 + - uid: 15368 components: - rot: 3.141592653589793 rad pos: 7.5,13.5 @@ -101488,21 +96849,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15335 + - uid: 15369 components: - pos: 36.5,5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15336 + - uid: 15370 components: - pos: 29.5,21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15337 + - uid: 15371 components: - rot: 3.141592653589793 rad pos: 29.5,18.5 @@ -101510,7 +96871,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15338 + - uid: 15372 components: - rot: 3.141592653589793 rad pos: -12.5,5.5 @@ -101518,7 +96879,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15339 + - uid: 15373 components: - rot: 1.5707963267948966 rad pos: -9.5,-1.5 @@ -101526,14 +96887,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15340 + - uid: 15374 components: - pos: -4.5,-60.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15341 + - uid: 15375 components: - rot: 1.5707963267948966 rad pos: -6.5,-60.5 @@ -101541,7 +96902,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15342 + - uid: 15376 components: - rot: -1.5707963267948966 rad pos: -6.5,-61.5 @@ -101549,7 +96910,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15343 + - uid: 15377 components: - rot: 1.5707963267948966 rad pos: 26.5,-22.5 @@ -101557,7 +96918,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15344 + - uid: 15378 components: - rot: 3.141592653589793 rad pos: 36.5,11.5 @@ -101565,9 +96926,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15345 + - uid: 15379 components: - rot: 1.5707963267948966 rad pos: 28.5,10.5 @@ -101575,14 +96934,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15346 + - uid: 15380 components: - pos: -12.5,7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15347 + - uid: 15381 components: - rot: 3.141592653589793 rad pos: 5.5,12.5 @@ -101590,14 +96949,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15348 + - uid: 15382 components: - pos: 34.5,5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15349 + - uid: 15383 components: - rot: 3.141592653589793 rad pos: 11.5,-43.5 @@ -101605,7 +96964,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15350 + - uid: 15384 components: - rot: 1.5707963267948966 rad pos: -14.5,-41.5 @@ -101613,7 +96972,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15351 + - uid: 15385 components: - rot: 1.5707963267948966 rad pos: -9.5,-53.5 @@ -101621,7 +96980,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15352 + - uid: 15386 components: - rot: 3.141592653589793 rad pos: -7.5,-63.5 @@ -101629,16 +96988,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15353 + - uid: 15387 components: - pos: 35.5,9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15354 + - uid: 15388 components: - rot: 3.141592653589793 rad pos: 17.5,-5.5 @@ -101646,7 +97003,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15355 + - uid: 15389 components: - rot: 1.5707963267948966 rad pos: 31.5,10.5 @@ -101654,7 +97011,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15356 + - uid: 15390 components: - rot: 3.141592653589793 rad pos: 29.5,15.5 @@ -101662,14 +97019,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15357 + - uid: 15391 components: - pos: 29.5,17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15358 + - uid: 15392 components: - rot: 1.5707963267948966 rad pos: 25.5,12.5 @@ -101677,21 +97034,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15359 + - uid: 15393 components: - pos: 14.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15360 + - uid: 15394 components: - pos: 11.5,12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15361 + - uid: 15395 components: - rot: -1.5707963267948966 rad pos: 23.5,16.5 @@ -101699,7 +97056,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15362 + - uid: 15396 components: - rot: 3.141592653589793 rad pos: 26.5,9.5 @@ -101707,7 +97064,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15363 + - uid: 15397 components: - rot: 3.141592653589793 rad pos: 21.5,7.5 @@ -101715,7 +97072,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15364 + - uid: 15398 components: - rot: -1.5707963267948966 rad pos: 20.5,7.5 @@ -101723,7 +97080,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15365 + - uid: 15399 components: - rot: 1.5707963267948966 rad pos: 18.5,7.5 @@ -101731,14 +97088,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15366 + - uid: 15400 components: - pos: 1.5,1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15367 + - uid: 15401 components: - rot: -1.5707963267948966 rad pos: 10.5,2.5 @@ -101746,7 +97103,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15368 + - uid: 15402 components: - rot: 1.5707963267948966 rad pos: 9.5,2.5 @@ -101754,7 +97111,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15369 + - uid: 15403 components: - rot: 3.141592653589793 rad pos: 9.5,-1.5 @@ -101762,14 +97119,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15370 + - uid: 15404 components: - pos: 11.5,-1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15371 + - uid: 15405 components: - rot: -1.5707963267948966 rad pos: 11.5,-9.5 @@ -101777,7 +97134,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15372 + - uid: 15406 components: - rot: 1.5707963267948966 rad pos: 19.5,21.5 @@ -101785,9 +97142,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15373 + - uid: 15407 components: - rot: 1.5707963267948966 rad pos: 23.5,20.5 @@ -101795,7 +97150,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15374 + - uid: 15408 components: - rot: -1.5707963267948966 rad pos: 25.5,20.5 @@ -101803,7 +97158,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15375 + - uid: 15409 components: - rot: -1.5707963267948966 rad pos: -23.5,-16.5 @@ -101811,7 +97166,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15376 + - uid: 15410 components: - rot: 1.5707963267948966 rad pos: 26.5,-6.5 @@ -101819,7 +97174,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15377 + - uid: 15411 components: - rot: 3.141592653589793 rad pos: 25.5,-7.5 @@ -101827,7 +97182,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15378 + - uid: 15412 components: - rot: 3.141592653589793 rad pos: 20.5,-23.5 @@ -101835,7 +97190,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15379 + - uid: 15413 components: - rot: 3.141592653589793 rad pos: 24.5,-52.5 @@ -101843,7 +97198,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15380 + - uid: 15414 components: - rot: -1.5707963267948966 rad pos: -10.5,5.5 @@ -101851,7 +97206,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15381 + - uid: 15415 components: - rot: 1.5707963267948966 rad pos: -10.5,7.5 @@ -101859,7 +97214,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15382 + - uid: 15416 components: - rot: 3.141592653589793 rad pos: -9.5,-5.5 @@ -101867,7 +97222,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15383 + - uid: 15417 components: - rot: 3.141592653589793 rad pos: -10.5,-6.5 @@ -101875,7 +97230,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15384 + - uid: 15418 components: - rot: 3.141592653589793 rad pos: -4.5,-61.5 @@ -101883,14 +97238,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15385 + - uid: 15419 components: - pos: 11.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15386 + - uid: 15420 components: - rot: 1.5707963267948966 rad pos: -21.5,-84.5 @@ -101898,14 +97253,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15387 + - uid: 15421 components: - pos: 36.5,8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15388 + - uid: 15422 components: - rot: -1.5707963267948966 rad pos: -3.5,7.5 @@ -101913,7 +97268,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15389 + - uid: 15423 components: - rot: 3.141592653589793 rad pos: -3.5,-60.5 @@ -101921,7 +97276,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15390 + - uid: 15424 components: - rot: 1.5707963267948966 rad pos: -7.5,-59.5 @@ -101929,14 +97284,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15391 + - uid: 15425 components: - pos: 1.5,7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15392 + - uid: 15426 components: - rot: 1.5707963267948966 rad pos: 34.5,10.5 @@ -101944,7 +97299,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15393 + - uid: 15427 components: - rot: 3.141592653589793 rad pos: 4.5,16.5 @@ -101952,14 +97307,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15394 + - uid: 15428 components: - pos: -4.5,14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15395 + - uid: 15429 components: - rot: -1.5707963267948966 rad pos: -6.5,8.5 @@ -101967,7 +97322,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15396 + - uid: 15430 components: - rot: 3.141592653589793 rad pos: -16.5,-38.5 @@ -101975,7 +97330,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15397 + - uid: 15431 components: - rot: 3.141592653589793 rad pos: 1.5,5.5 @@ -101983,14 +97338,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15398 + - uid: 15432 components: - pos: 8.5,13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15399 + - uid: 15433 components: - rot: -1.5707963267948966 rad pos: 19.5,17.5 @@ -101998,7 +97353,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15400 + - uid: 15434 components: - rot: 3.141592653589793 rad pos: 41.5,-27.5 @@ -102006,7 +97361,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15401 + - uid: 15435 components: - rot: -1.5707963267948966 rad pos: -16.5,30.5 @@ -102014,16 +97369,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15402 + - uid: 15436 components: - pos: 36.5,12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15403 + - uid: 15437 components: - rot: 3.141592653589793 rad pos: 0.5,7.5 @@ -102031,21 +97384,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15404 + - uid: 15438 components: - pos: 2.5,5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15405 + - uid: 15439 components: - pos: 4.5,0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15406 + - uid: 15440 components: - rot: 3.141592653589793 rad pos: 4.5,-0.5 @@ -102053,7 +97406,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15407 + - uid: 15441 components: - rot: -1.5707963267948966 rad pos: -7.5,-53.5 @@ -102061,7 +97414,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15408 + - uid: 15442 components: - rot: 1.5707963267948966 rad pos: -8.5,8.5 @@ -102069,7 +97422,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15409 + - uid: 15443 components: - rot: 3.141592653589793 rad pos: 26.5,-18.5 @@ -102077,7 +97430,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15410 + - uid: 15444 components: - rot: 3.141592653589793 rad pos: 21.5,-18.5 @@ -102085,7 +97438,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15411 + - uid: 15445 components: - rot: 1.5707963267948966 rad pos: 10.5,11.5 @@ -102093,14 +97446,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15412 + - uid: 15446 components: - pos: 24.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15413 + - uid: 15447 components: - rot: -1.5707963267948966 rad pos: -15.5,29.5 @@ -102108,7 +97461,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15414 + - uid: 15448 components: - rot: 1.5707963267948966 rad pos: -24.5,-85.5 @@ -102116,7 +97469,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15415 + - uid: 15449 components: - rot: -1.5707963267948966 rad pos: 34.5,-6.5 @@ -102124,7 +97477,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15416 + - uid: 15450 components: - rot: 1.5707963267948966 rad pos: 15.5,-17.5 @@ -102132,7 +97485,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15417 + - uid: 15451 components: - rot: -1.5707963267948966 rad pos: -1.5,-53.5 @@ -102140,7 +97493,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15418 + - uid: 15452 components: - rot: 1.5707963267948966 rad pos: -23.5,-73.5 @@ -102148,7 +97501,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15419 + - uid: 15453 components: - rot: -1.5707963267948966 rad pos: 30.5,-22.5 @@ -102156,21 +97509,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15420 + - uid: 15454 components: - pos: 36.5,-16.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15421 + - uid: 15455 components: - pos: 34.5,-18.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15422 + - uid: 15456 components: - rot: 1.5707963267948966 rad pos: 41.5,-24.5 @@ -102178,7 +97531,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15423 + - uid: 15457 components: - rot: -1.5707963267948966 rad pos: 47.5,-28.5 @@ -102186,14 +97539,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15424 + - uid: 15458 components: - pos: 46.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15425 + - uid: 15459 components: - rot: 3.141592653589793 rad pos: 44.5,-28.5 @@ -102201,7 +97554,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15426 + - uid: 15460 components: - rot: 1.5707963267948966 rad pos: 44.5,-23.5 @@ -102209,7 +97562,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15427 + - uid: 15461 components: - rot: -1.5707963267948966 rad pos: -27.5,-79.5 @@ -102217,7 +97570,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15428 + - uid: 15462 components: - rot: 1.5707963267948966 rad pos: -25.5,-72.5 @@ -102225,7 +97578,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15429 + - uid: 15463 components: - rot: 1.5707963267948966 rad pos: -20.5,-61.5 @@ -102233,7 +97586,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15430 + - uid: 15464 components: - rot: 1.5707963267948966 rad pos: 32.5,-41.5 @@ -102241,7 +97594,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15431 + - uid: 15465 components: - rot: -1.5707963267948966 rad pos: 32.5,-42.5 @@ -102249,7 +97602,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15432 + - uid: 15466 components: - rot: 3.141592653589793 rad pos: 30.5,14.5 @@ -102257,7 +97610,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15433 + - uid: 15467 components: - rot: 3.141592653589793 rad pos: 47.5,21.5 @@ -102265,7 +97618,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15434 + - uid: 15468 components: - rot: 3.141592653589793 rad pos: 50.5,13.5 @@ -102273,7 +97626,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15435 + - uid: 15469 components: - rot: 3.141592653589793 rad pos: 49.5,12.5 @@ -102281,7 +97634,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15436 + - uid: 15470 components: - rot: -1.5707963267948966 rad pos: 58.5,12.5 @@ -102289,7 +97642,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15437 + - uid: 15471 components: - rot: 3.141592653589793 rad pos: 59.5,11.5 @@ -102297,7 +97650,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15438 + - uid: 15472 components: - rot: -1.5707963267948966 rad pos: 44.5,-3.5 @@ -102305,7 +97658,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15439 + - uid: 15473 components: - rot: 3.141592653589793 rad pos: 25.5,-60.5 @@ -102313,7 +97666,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15440 + - uid: 15474 components: - rot: 3.141592653589793 rad pos: 52.5,-11.5 @@ -102321,7 +97674,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15441 + - uid: 15475 components: - rot: 3.141592653589793 rad pos: 55.5,-12.5 @@ -102329,28 +97682,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15442 + - uid: 15476 components: - pos: 57.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15443 + - uid: 15477 components: - pos: 49.5,-52.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15444 + - uid: 15478 components: - pos: 63.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15445 + - uid: 15479 components: - rot: 3.141592653589793 rad pos: 62.5,-42.5 @@ -102358,7 +97711,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15446 + - uid: 15480 components: - rot: 1.5707963267948966 rad pos: 62.5,-35.5 @@ -102366,14 +97719,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15447 + - uid: 15481 components: - pos: 61.5,-35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15448 + - uid: 15482 components: - rot: -1.5707963267948966 rad pos: 64.5,-35.5 @@ -102381,14 +97734,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15449 + - uid: 15483 components: - pos: 64.5,-32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15450 + - uid: 15484 components: - rot: 3.141592653589793 rad pos: 60.5,-35.5 @@ -102396,7 +97749,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15451 + - uid: 15485 components: - rot: -1.5707963267948966 rad pos: 61.5,-32.5 @@ -102404,7 +97757,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15452 + - uid: 15486 components: - rot: 3.141592653589793 rad pos: 63.5,-32.5 @@ -102412,7 +97765,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15453 + - uid: 15487 components: - rot: 1.5707963267948966 rad pos: 61.5,-10.5 @@ -102420,7 +97773,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15454 + - uid: 15488 components: - rot: -1.5707963267948966 rad pos: 62.5,-10.5 @@ -102428,14 +97781,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15455 + - uid: 15489 components: - pos: 64.5,-46.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15456 + - uid: 15490 components: - rot: 1.5707963267948966 rad pos: 60.5,-46.5 @@ -102443,7 +97796,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15457 + - uid: 15491 components: - rot: 1.5707963267948966 rad pos: 42.5,-45.5 @@ -102451,7 +97804,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15458 + - uid: 15492 components: - rot: 3.141592653589793 rad pos: 26.5,-58.5 @@ -102459,7 +97812,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15459 + - uid: 15493 components: - rot: -1.5707963267948966 rad pos: 34.5,-52.5 @@ -102467,7 +97820,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15460 + - uid: 15494 components: - rot: 3.141592653589793 rad pos: 28.5,-49.5 @@ -102475,19 +97828,19 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15461 + - uid: 15495 components: - rot: 3.141592653589793 rad pos: 50.5,-58.5 parent: 2 type: Transform - - uid: 15462 + - uid: 15496 components: - rot: 3.141592653589793 rad pos: 47.5,-58.5 parent: 2 type: Transform - - uid: 15463 + - uid: 15497 components: - rot: 1.5707963267948966 rad pos: -24.5,-22.5 @@ -102495,7 +97848,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15464 + - uid: 15498 components: - rot: 1.5707963267948966 rad pos: -23.5,-21.5 @@ -102503,7 +97856,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15465 + - uid: 15499 components: - rot: -1.5707963267948966 rad pos: -25.5,-17.5 @@ -102511,7 +97864,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15466 + - uid: 15500 components: - rot: 3.141592653589793 rad pos: 50.5,-54.5 @@ -102519,14 +97872,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15467 + - uid: 15501 components: - pos: 52.5,-54.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15468 + - uid: 15502 components: - rot: 3.141592653589793 rad pos: 52.5,-57.5 @@ -102534,28 +97887,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15469 + - uid: 15503 components: - pos: -14.5,6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15470 + - uid: 15504 components: - pos: -18.5,-4.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15471 + - uid: 15505 components: - pos: -20.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15472 + - uid: 15506 components: - rot: -1.5707963267948966 rad pos: -18.5,-46.5 @@ -102563,7 +97916,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15473 + - uid: 15507 components: - rot: 3.141592653589793 rad pos: -20.5,-47.5 @@ -102571,7 +97924,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15474 + - uid: 15508 components: - rot: 1.5707963267948966 rad pos: 2.5,-56.5 @@ -102579,7 +97932,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15475 + - uid: 15509 components: - rot: 3.141592653589793 rad pos: -42.5,-15.5 @@ -102587,7 +97940,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15476 + - uid: 15510 components: - rot: 1.5707963267948966 rad pos: -26.5,6.5 @@ -102595,7 +97948,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15477 + - uid: 15511 components: - rot: 3.141592653589793 rad pos: -26.5,-5.5 @@ -102603,7 +97956,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15478 + - uid: 15512 components: - rot: 3.141592653589793 rad pos: -24.5,-4.5 @@ -102611,7 +97964,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15479 + - uid: 15513 components: - rot: 1.5707963267948966 rad pos: -24.5,7.5 @@ -102619,7 +97972,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15480 + - uid: 15514 components: - rot: 1.5707963267948966 rad pos: -44.5,-11.5 @@ -102627,7 +97980,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15481 + - uid: 15515 components: - rot: 3.141592653589793 rad pos: -44.5,-10.5 @@ -102635,28 +97988,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15482 + - uid: 15516 components: - pos: -42.5,-6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15483 + - uid: 15517 components: - pos: -41.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15484 + - uid: 15518 components: - pos: -31.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15485 + - uid: 15519 components: - rot: 1.5707963267948966 rad pos: -53.5,-5.5 @@ -102664,7 +98017,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15486 + - uid: 15520 components: - rot: 1.5707963267948966 rad pos: -52.5,-6.5 @@ -102672,28 +98025,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15487 + - uid: 15521 components: - pos: -50.5,-17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15488 + - uid: 15522 components: - pos: -51.5,-19.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15489 + - uid: 15523 components: - pos: -47.5,-19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15490 + - uid: 15524 components: - rot: 1.5707963267948966 rad pos: -54.5,-17.5 @@ -102701,7 +98054,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15491 + - uid: 15525 components: - rot: -1.5707963267948966 rad pos: -54.5,-23.5 @@ -102709,7 +98062,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15492 + - uid: 15526 components: - rot: -1.5707963267948966 rad pos: -53.5,-25.5 @@ -102717,88 +98070,68 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15493 + - uid: 15527 components: - rot: 3.141592653589793 rad pos: -50.5,-55.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 15494 + - uid: 15528 components: - rot: 3.141592653589793 rad pos: -50.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 15495 + - uid: 15529 components: - rot: 3.141592653589793 rad pos: -50.5,-51.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 15496 + - uid: 15530 components: - rot: 3.141592653589793 rad pos: -50.5,-49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 15497 + - uid: 15531 components: - rot: 3.141592653589793 rad pos: -50.5,-47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 15498 + - uid: 15532 components: - rot: 3.141592653589793 rad pos: -50.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 15499 + - uid: 15533 components: - rot: 3.141592653589793 rad pos: -50.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 15500 + - uid: 15534 components: - rot: 1.5707963267948966 rad pos: -43.5,-52.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 15501 + - uid: 15535 components: - rot: 3.141592653589793 rad pos: -44.5,-57.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 15502 + - uid: 15536 components: - pos: -37.5,-48.5 parent: 2 type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15503 + - uid: 15537 components: - rot: 1.5707963267948966 rad pos: -40.5,-48.5 @@ -102806,9 +98139,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15504 + - uid: 15538 components: - rot: -1.5707963267948966 rad pos: -34.5,-57.5 @@ -102816,7 +98147,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15505 + - uid: 15539 components: - rot: 1.5707963267948966 rad pos: -34.5,-40.5 @@ -102824,7 +98155,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15506 + - uid: 15540 components: - rot: -1.5707963267948966 rad pos: -32.5,-40.5 @@ -102832,7 +98163,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15507 + - uid: 15541 components: - rot: 1.5707963267948966 rad pos: -35.5,-41.5 @@ -102840,7 +98171,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15508 + - uid: 15542 components: - rot: -1.5707963267948966 rad pos: -31.5,-41.5 @@ -102848,14 +98179,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15509 + - uid: 15543 components: - pos: -38.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15510 + - uid: 15544 components: - rot: 3.141592653589793 rad pos: -40.5,-35.5 @@ -102863,14 +98194,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15511 + - uid: 15545 components: - pos: -40.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15512 + - uid: 15546 components: - rot: 3.141592653589793 rad pos: -20.5,-60.5 @@ -102878,7 +98209,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15513 + - uid: 15547 components: - rot: 1.5707963267948966 rad pos: -42.5,-69.5 @@ -102886,16 +98217,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15514 + - uid: 15548 components: - pos: -20.5,-58.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15515 + - uid: 15549 components: - rot: 1.5707963267948966 rad pos: -25.5,-57.5 @@ -102903,21 +98232,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15516 + - uid: 15550 components: - pos: -41.5,31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15517 + - uid: 15551 components: - pos: -40.5,33.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15518 + - uid: 15552 components: - rot: -1.5707963267948966 rad pos: -49.5,31.5 @@ -102925,7 +98254,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15519 + - uid: 15553 components: - rot: 1.5707963267948966 rad pos: -37.5,13.5 @@ -102933,7 +98262,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15520 + - uid: 15554 components: - rot: 1.5707963267948966 rad pos: -38.5,14.5 @@ -102941,19 +98270,19 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15521 + - uid: 15555 components: - rot: -1.5707963267948966 rad pos: -33.5,-53.5 parent: 2 type: Transform - - uid: 15522 + - uid: 15556 components: - rot: -1.5707963267948966 rad pos: -33.5,-55.5 parent: 2 type: Transform - - uid: 15523 + - uid: 15557 components: - rot: 1.5707963267948966 rad pos: 19.5,-53.5 @@ -102961,9 +98290,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15524 + - uid: 15558 components: - rot: 1.5707963267948966 rad pos: -45.5,-71.5 @@ -102971,9 +98298,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15525 + - uid: 15559 components: - rot: -1.5707963267948966 rad pos: -45.5,-76.5 @@ -102981,7 +98306,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15526 + - uid: 15560 components: - rot: -1.5707963267948966 rad pos: -40.5,-72.5 @@ -102989,7 +98314,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15527 + - uid: 15561 components: - rot: 1.5707963267948966 rad pos: -46.5,-72.5 @@ -102997,7 +98322,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15528 + - uid: 15562 components: - rot: -1.5707963267948966 rad pos: -46.5,-75.5 @@ -103005,7 +98330,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15529 + - uid: 15563 components: - rot: 3.141592653589793 rad pos: -54.5,-75.5 @@ -103013,7 +98338,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15530 + - uid: 15564 components: - rot: 1.5707963267948966 rad pos: -54.5,-76.5 @@ -103021,7 +98346,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15531 + - uid: 15565 components: - rot: -1.5707963267948966 rad pos: -19.5,-43.5 @@ -103029,7 +98354,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15532 + - uid: 15566 components: - rot: 1.5707963267948966 rad pos: -19.5,-41.5 @@ -103037,14 +98362,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15533 + - uid: 15567 components: - pos: -15.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15534 + - uid: 15568 components: - rot: 3.141592653589793 rad pos: -15.5,-43.5 @@ -103052,7 +98377,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15535 + - uid: 15569 components: - rot: -1.5707963267948966 rad pos: 2.5,11.5 @@ -103060,7 +98385,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15536 + - uid: 15570 components: - rot: 3.141592653589793 rad pos: 1.5,11.5 @@ -103068,14 +98393,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15537 + - uid: 15571 components: - pos: -5.5,-64.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15538 + - uid: 15572 components: - rot: 1.5707963267948966 rad pos: 45.5,27.5 @@ -103083,9 +98408,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15539 + - uid: 15573 components: - rot: 1.5707963267948966 rad pos: 44.5,26.5 @@ -103093,7 +98416,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15540 + - uid: 15574 components: - rot: -1.5707963267948966 rad pos: 52.5,27.5 @@ -103101,7 +98424,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15541 + - uid: 15575 components: - rot: -1.5707963267948966 rad pos: 54.5,26.5 @@ -103109,14 +98432,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15542 + - uid: 15576 components: - pos: -15.5,45.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15543 + - uid: 15577 components: - rot: 3.141592653589793 rad pos: -17.5,45.5 @@ -103124,7 +98447,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15544 + - uid: 15578 components: - rot: 1.5707963267948966 rad pos: 47.5,50.5 @@ -103132,7 +98455,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15545 + - uid: 15579 components: - rot: 1.5707963267948966 rad pos: 45.5,49.5 @@ -103140,7 +98463,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15546 + - uid: 15580 components: - rot: -1.5707963267948966 rad pos: 47.5,46.5 @@ -103148,7 +98471,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15547 + - uid: 15581 components: - rot: -1.5707963267948966 rad pos: 45.5,45.5 @@ -103156,7 +98479,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15548 + - uid: 15582 components: - rot: 3.141592653589793 rad pos: 2.5,69.5 @@ -103164,7 +98487,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15549 + - uid: 15583 components: - rot: -1.5707963267948966 rad pos: -5.5,69.5 @@ -103172,14 +98495,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15550 + - uid: 15584 components: - pos: 3.5,69.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15551 + - uid: 15585 components: - rot: 1.5707963267948966 rad pos: -6.5,69.5 @@ -103187,7 +98510,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15552 + - uid: 15586 components: - rot: -1.5707963267948966 rad pos: -1.5,67.5 @@ -103195,7 +98518,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15553 + - uid: 15587 components: - rot: 1.5707963267948966 rad pos: -2.5,67.5 @@ -103203,7 +98526,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15554 + - uid: 15588 components: - rot: -1.5707963267948966 rad pos: -0.5,46.5 @@ -103211,7 +98534,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15555 + - uid: 15589 components: - rot: -1.5707963267948966 rad pos: 1.5,44.5 @@ -103219,7 +98542,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15556 + - uid: 15590 components: - rot: 3.141592653589793 rad pos: -21.5,51.5 @@ -103227,7 +98550,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15557 + - uid: 15591 components: - rot: 3.141592653589793 rad pos: -22.5,50.5 @@ -103235,7 +98558,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15558 + - uid: 15592 components: - rot: -1.5707963267948966 rad pos: -13.5,51.5 @@ -103243,7 +98566,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15559 + - uid: 15593 components: - rot: -1.5707963267948966 rad pos: -12.5,50.5 @@ -103251,28 +98574,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15560 + - uid: 15594 components: - pos: 1.5,59.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15561 + - uid: 15595 components: - pos: -0.5,58.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15562 + - uid: 15596 components: - pos: 40.5,47.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15563 + - uid: 15597 components: - rot: -1.5707963267948966 rad pos: 40.5,44.5 @@ -103280,7 +98603,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15564 + - uid: 15598 components: - rot: 1.5707963267948966 rad pos: 29.5,47.5 @@ -103288,7 +98611,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15565 + - uid: 15599 components: - rot: 1.5707963267948966 rad pos: 23.5,46.5 @@ -103296,7 +98619,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15566 + - uid: 15600 components: - rot: 3.141592653589793 rad pos: 29.5,44.5 @@ -103304,7 +98627,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15567 + - uid: 15601 components: - rot: 3.141592653589793 rad pos: -22.5,-98.5 @@ -103312,7 +98635,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15568 + - uid: 15602 components: - rot: -1.5707963267948966 rad pos: -6.5,-93.5 @@ -103320,28 +98643,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15569 + - uid: 15603 components: - pos: 62.5,-6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15570 + - uid: 15604 components: - pos: 75.5,-33.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15571 + - uid: 15605 components: - pos: 74.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15572 + - uid: 15606 components: - rot: -1.5707963267948966 rad pos: 73.5,-48.5 @@ -103349,7 +98672,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15573 + - uid: 15607 components: - rot: -1.5707963267948966 rad pos: 75.5,-46.5 @@ -103357,7 +98680,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15574 + - uid: 15608 components: - rot: 1.5707963267948966 rad pos: 73.5,-46.5 @@ -103365,7 +98688,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15575 + - uid: 15609 components: - rot: -1.5707963267948966 rad pos: 71.5,-47.5 @@ -103373,7 +98696,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15576 + - uid: 15610 components: - rot: 1.5707963267948966 rad pos: 71.5,-45.5 @@ -103381,7 +98704,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15577 + - uid: 15611 components: - rot: -1.5707963267948966 rad pos: 74.5,-45.5 @@ -103389,14 +98712,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15578 + - uid: 15612 components: - pos: 72.5,-36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15579 + - uid: 15613 components: - rot: 3.141592653589793 rad pos: 72.5,-37.5 @@ -103404,7 +98727,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15580 + - uid: 15614 components: - rot: -1.5707963267948966 rad pos: 67.5,-37.5 @@ -103412,44 +98735,40 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15581 + - uid: 15615 components: - pos: -56.5,-58.5 parent: 2 type: Transform - - uid: 15582 + - uid: 15616 components: - rot: 3.141592653589793 rad pos: -57.5,-60.5 parent: 2 type: Transform - - uid: 15583 + - uid: 15617 components: - rot: 3.141592653589793 rad pos: -56.5,-61.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 15584 + - uid: 15618 components: - pos: -55.5,-61.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 15585 + - uid: 15619 components: - pos: 55.5,-48.5 parent: 2 type: Transform - - uid: 15586 + - uid: 15620 components: - rot: 3.141592653589793 rad pos: 53.5,-48.5 parent: 2 type: Transform - - uid: 15587 + - uid: 15621 components: - rot: 3.141592653589793 rad pos: 53.5,-6.5 @@ -103457,7 +98776,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15588 + - uid: 15622 components: - rot: 1.5707963267948966 rad pos: 67.5,-36.5 @@ -103465,7 +98784,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15589 + - uid: 15623 components: - rot: 3.141592653589793 rad pos: -10.5,-21.5 @@ -103473,14 +98792,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15590 + - uid: 15624 components: - pos: -8.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15591 + - uid: 15625 components: - rot: 3.141592653589793 rad pos: -25.5,-60.5 @@ -103488,9 +98807,7 @@ entities: type: Transform - color: '#97C3FCCC' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15592 + - uid: 15626 components: - rot: -1.5707963267948966 rad pos: -22.5,-62.5 @@ -103498,7 +98815,7 @@ entities: type: Transform - color: '#97C3FCCC' type: AtmosPipeColor - - uid: 15593 + - uid: 15627 components: - rot: 3.141592653589793 rad pos: -23.5,-62.5 @@ -103506,15 +98823,13 @@ entities: type: Transform - color: '#97C3FCCC' type: AtmosPipeColor - - uid: 15594 + - uid: 15628 components: - rot: 1.5707963267948966 rad pos: -48.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 15595 + - uid: 15629 components: - rot: 1.5707963267948966 rad pos: 18.5,-82.5 @@ -103522,7 +98837,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15596 + - uid: 15630 components: - rot: 3.141592653589793 rad pos: 25.5,-72.5 @@ -103530,7 +98845,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15597 + - uid: 15631 components: - rot: 3.141592653589793 rad pos: 24.5,-73.5 @@ -103538,7 +98853,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15598 + - uid: 15632 components: - rot: 3.141592653589793 rad pos: 29.5,-85.5 @@ -103546,7 +98861,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15599 + - uid: 15633 components: - rot: 3.141592653589793 rad pos: 47.5,-86.5 @@ -103554,7 +98869,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15600 + - uid: 15634 components: - rot: -1.5707963267948966 rad pos: 45.5,6.5 @@ -103562,7 +98877,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15601 + - uid: 15635 components: - rot: 3.141592653589793 rad pos: -45.5,33.5 @@ -103570,7 +98885,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15602 + - uid: 15636 components: - rot: 3.141592653589793 rad pos: -47.5,31.5 @@ -103578,7 +98893,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15603 + - uid: 15637 components: - rot: -1.5707963267948966 rad pos: -46.5,34.5 @@ -103586,7 +98901,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15604 + - uid: 15638 components: - rot: 1.5707963267948966 rad pos: -47.5,34.5 @@ -103594,7 +98909,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15605 + - uid: 15639 components: - rot: 1.5707963267948966 rad pos: -6.5,16.5 @@ -103602,41 +98917,33 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15606 + - uid: 15640 components: - pos: -62.5,-39.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15607 + - uid: 15641 components: - pos: -67.5,-43.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15608 + - uid: 15642 components: - rot: -1.5707963267948966 rad pos: -65.5,-44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 15609 + - uid: 15643 components: - rot: 1.5707963267948966 rad pos: -65.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 15610 + - uid: 15644 components: - rot: -1.5707963267948966 rad pos: -71.5,-41.5 @@ -103644,9 +98951,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15611 + - uid: 15645 components: - rot: -1.5707963267948966 rad pos: -45.5,-23.5 @@ -103654,7 +98959,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15612 + - uid: 15646 components: - rot: 3.141592653589793 rad pos: -51.5,-24.5 @@ -103662,7 +98967,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15613 + - uid: 15647 components: - rot: -1.5707963267948966 rad pos: -0.5,-14.5 @@ -103672,265 +98977,261 @@ entities: type: AtmosPipeColor - proto: GasPipeFourway entities: - - uid: 15614 + - uid: 15648 components: - pos: 38.5,1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15615 + - uid: 15649 components: - pos: 31.5,12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15616 + - uid: 15650 components: - pos: 21.5,16.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15617 + - uid: 15651 components: - pos: 31.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15618 + - uid: 15652 components: - pos: 21.5,12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15619 + - uid: 15653 components: - pos: 17.5,17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15620 + - uid: 15654 components: - pos: 34.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15621 + - uid: 15655 components: - pos: -24.5,-60.5 parent: 2 type: Transform - color: '#97C3FCCC' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15622 + - uid: 15656 components: - pos: -5.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15623 + - uid: 15657 components: - pos: -33.5,20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15624 + - uid: 15658 components: - pos: -3.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15625 + - uid: 15659 components: - pos: 30.5,-18.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15626 + - uid: 15660 components: - pos: -32.5,23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15627 + - uid: 15661 components: - pos: -18.5,29.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15628 + - uid: 15662 components: - pos: 49.5,20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15629 + - uid: 15663 components: - pos: 50.5,21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15630 + - uid: 15664 components: - pos: 42.5,1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15631 + - uid: 15665 components: - pos: 44.5,-1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15632 + - uid: 15666 components: - pos: 64.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15633 + - uid: 15667 components: - pos: 29.5,-47.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15634 + - uid: 15668 components: - pos: -41.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15635 + - uid: 15669 components: - pos: -42.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15636 + - uid: 15670 components: - pos: -20.5,30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15637 + - uid: 15671 components: - pos: -31.5,-34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15638 + - uid: 15672 components: - pos: -32.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15639 + - uid: 15673 components: - pos: -45.5,11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15640 + - uid: 15674 components: - pos: -5.5,-14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15641 + - uid: 15675 components: - pos: -16.5,43.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15642 + - uid: 15676 components: - pos: -15.5,44.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15643 + - uid: 15677 components: - pos: 68.5,-33.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15644 + - uid: 15678 components: - pos: -70.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - proto: GasPipeStraight entities: - - uid: 15645 + - uid: 15679 components: - pos: 22.5,-34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15646 + - uid: 15680 components: - pos: 28.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15647 + - uid: 15681 components: - pos: 28.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15648 + - uid: 15682 components: - pos: 22.5,-35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15649 + - uid: 15683 components: - pos: 2.5,-4.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15650 + - uid: 15684 components: - rot: 3.141592653589793 rad pos: 1.5,-3.5 @@ -103938,9 +99239,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15651 + - uid: 15685 components: - rot: 1.5707963267948966 rad pos: 1.5,-3.5 @@ -103948,23 +99247,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15652 + - uid: 15686 components: - pos: 2.5,-5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15653 + - uid: 15687 components: - pos: 1.5,-4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15654 + - uid: 15688 components: - rot: -1.5707963267948966 rad pos: -49.5,-23.5 @@ -103972,23 +99269,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15655 + - uid: 15689 components: - pos: -47.5,-20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15656 + - uid: 15690 components: - pos: -71.5,-43.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15657 + - uid: 15691 components: - rot: 1.5707963267948966 rad pos: -73.5,-42.5 @@ -103996,9 +99291,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15658 + - uid: 15692 components: - rot: 1.5707963267948966 rad pos: -67.5,-42.5 @@ -104006,9 +99299,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15659 + - uid: 15693 components: - rot: -1.5707963267948966 rad pos: -69.5,-40.5 @@ -104016,16 +99307,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15660 + - uid: 15694 components: - pos: -72.5,-36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15661 + - uid: 15695 components: - rot: 1.5707963267948966 rad pos: -68.5,-42.5 @@ -104033,18 +99322,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15662 + - uid: 15696 components: - pos: -70.5,-40.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15663 + - uid: 15697 components: - rot: 3.141592653589793 rad pos: -62.5,-40.5 @@ -104052,18 +99337,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15664 + - uid: 15698 components: - pos: -68.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15665 + - uid: 15699 components: - rot: -1.5707963267948966 rad pos: -65.5,-39.5 @@ -104071,9 +99352,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15666 + - uid: 15700 components: - rot: 1.5707963267948966 rad pos: -69.5,-42.5 @@ -104081,132 +99360,126 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15667 + - uid: 15701 components: - pos: -68.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15668 + - uid: 15702 components: - pos: -73.5,-27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15669 + - uid: 15703 components: - pos: -71.5,-30.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15670 + - uid: 15704 components: - pos: -71.5,-28.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15671 + - uid: 15705 components: - pos: -73.5,-28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15672 + - uid: 15706 components: - pos: -71.5,-26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15673 + - uid: 15707 components: - pos: -73.5,-29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15674 + - uid: 15708 components: - pos: -73.5,-30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15675 + - uid: 15709 components: - pos: -73.5,-32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15676 + - uid: 15710 components: - pos: -73.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15677 + - uid: 15711 components: - pos: -73.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15678 + - uid: 15712 components: - pos: -73.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15679 + - uid: 15713 components: - pos: -73.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15680 + - uid: 15714 components: - pos: -73.5,-37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15681 + - uid: 15715 components: - pos: -72.5,-34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15682 + - uid: 15716 components: - pos: -72.5,-35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15683 + - uid: 15717 components: - pos: -72.5,-33.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15684 + - uid: 15718 components: - rot: 1.5707963267948966 rad pos: -66.5,-42.5 @@ -104214,7 +99487,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15685 + - uid: 15719 components: - rot: 1.5707963267948966 rad pos: -65.5,-42.5 @@ -104222,9 +99495,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15686 + - uid: 15720 components: - rot: 1.5707963267948966 rad pos: -64.5,-42.5 @@ -104232,9 +99503,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15687 + - uid: 15721 components: - rot: 3.141592653589793 rad pos: -62.5,-41.5 @@ -104242,47 +99511,41 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15688 + - uid: 15722 components: - rot: -1.5707963267948966 rad pos: -74.5,-41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 15689 + - uid: 15723 components: - pos: -73.5,-26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15690 + - uid: 15724 components: - pos: -73.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15691 + - uid: 15725 components: - pos: -71.5,-29.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15692 + - uid: 15726 components: - pos: -71.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15693 + - uid: 15727 components: - rot: 3.141592653589793 rad pos: -71.5,-45.5 @@ -104290,9 +99553,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15694 + - uid: 15728 components: - rot: 3.141592653589793 rad pos: -71.5,-44.5 @@ -104300,9 +99561,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15695 + - uid: 15729 components: - rot: 3.141592653589793 rad pos: -67.5,-45.5 @@ -104310,9 +99569,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15696 + - uid: 15730 components: - rot: 1.5707963267948966 rad pos: -72.5,-23.5 @@ -104320,7 +99577,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15697 + - uid: 15731 components: - rot: -1.5707963267948966 rad pos: -64.5,-39.5 @@ -104328,23 +99585,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15698 + - uid: 15732 components: - pos: -6.5,15.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15699 + - uid: 15733 components: - pos: -3.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15700 + - uid: 15734 components: - rot: 3.141592653589793 rad pos: -3.5,13.5 @@ -104352,7 +99607,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15701 + - uid: 15735 components: - rot: 3.141592653589793 rad pos: -3.5,12.5 @@ -104360,7 +99615,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15702 + - uid: 15736 components: - rot: 1.5707963267948966 rad pos: -11.5,5.5 @@ -104368,9 +99623,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15703 + - uid: 15737 components: - rot: 3.141592653589793 rad pos: 38.5,10.5 @@ -104378,7 +99631,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15704 + - uid: 15738 components: - rot: 3.141592653589793 rad pos: 26.5,-26.5 @@ -104386,9 +99639,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15705 + - uid: 15739 components: - rot: 1.5707963267948966 rad pos: 32.5,9.5 @@ -104396,18 +99647,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15706 + - uid: 15740 components: - pos: 28.5,-31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15707 + - uid: 15741 components: - rot: 3.141592653589793 rad pos: 42.5,10.5 @@ -104415,21 +99662,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15708 + - uid: 15742 components: - pos: -18.5,31.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15709 + - uid: 15743 components: - pos: 46.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15710 + - uid: 15744 components: - rot: 3.141592653589793 rad pos: 34.5,-36.5 @@ -104437,14 +99684,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15711 + - uid: 15745 components: - pos: 46.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15712 + - uid: 15746 components: - rot: -1.5707963267948966 rad pos: 24.5,-42.5 @@ -104452,14 +99699,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15713 + - uid: 15747 components: - pos: 34.5,-21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15714 + - uid: 15748 components: - rot: 3.141592653589793 rad pos: -9.5,-40.5 @@ -104467,9 +99714,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15715 + - uid: 15749 components: - rot: 3.141592653589793 rad pos: -5.5,-34.5 @@ -104477,7 +99722,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15716 + - uid: 15750 components: - rot: -1.5707963267948966 rad pos: -12.5,-41.5 @@ -104485,7 +99730,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15717 + - uid: 15751 components: - rot: 3.141592653589793 rad pos: -14.5,-42.5 @@ -104493,7 +99738,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15718 + - uid: 15752 components: - rot: 3.141592653589793 rad pos: -14.5,-44.5 @@ -104501,9 +99746,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15719 + - uid: 15753 components: - rot: 1.5707963267948966 rad pos: -14.5,-60.5 @@ -104511,7 +99754,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15720 + - uid: 15754 components: - rot: 3.141592653589793 rad pos: -12.5,-44.5 @@ -104519,9 +99762,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15721 + - uid: 15755 components: - rot: 1.5707963267948966 rad pos: -10.5,-42.5 @@ -104529,42 +99770,42 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15722 + - uid: 15756 components: - pos: -7.5,-48.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15723 + - uid: 15757 components: - pos: -7.5,-47.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15724 + - uid: 15758 components: - pos: -0.5,-45.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15725 + - uid: 15759 components: - pos: -0.5,-44.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15726 + - uid: 15760 components: - pos: -0.5,-43.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15727 + - uid: 15761 components: - rot: -1.5707963267948966 rad pos: 1.5,-41.5 @@ -104572,14 +99813,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15728 + - uid: 15762 components: - pos: -8.5,-45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15729 + - uid: 15763 components: - rot: 3.141592653589793 rad pos: 3.5,-44.5 @@ -104587,16 +99828,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15730 + - uid: 15764 components: - pos: -12.5,-61.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15731 + - uid: 15765 components: - rot: 3.141592653589793 rad pos: -7.5,-62.5 @@ -104604,9 +99843,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15732 + - uid: 15766 components: - rot: -1.5707963267948966 rad pos: -4.5,-59.5 @@ -104614,7 +99851,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15733 + - uid: 15767 components: - rot: -1.5707963267948966 rad pos: -6.5,-59.5 @@ -104622,7 +99859,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15734 + - uid: 15768 components: - rot: -1.5707963267948966 rad pos: 27.5,-6.5 @@ -104630,7 +99867,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15735 + - uid: 15769 components: - rot: -1.5707963267948966 rad pos: 29.5,-6.5 @@ -104638,7 +99875,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15736 + - uid: 15770 components: - rot: 3.141592653589793 rad pos: 40.5,6.5 @@ -104646,53 +99883,49 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15737 + - uid: 15771 components: - pos: 46.5,-26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15738 + - uid: 15772 components: - pos: 46.5,-27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15739 + - uid: 15773 components: - pos: 46.5,-28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15740 + - uid: 15774 components: - pos: 46.5,-29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15741 + - uid: 15775 components: - pos: 8.5,11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15742 + - uid: 15776 components: - pos: 8.5,7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15743 + - uid: 15777 components: - rot: -1.5707963267948966 rad pos: -12.5,-38.5 @@ -104700,7 +99933,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15744 + - uid: 15778 components: - rot: 3.141592653589793 rad pos: 34.5,-32.5 @@ -104708,7 +99941,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15745 + - uid: 15779 components: - rot: 1.5707963267948966 rad pos: 9.5,17.5 @@ -104716,7 +99949,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15746 + - uid: 15780 components: - rot: 1.5707963267948966 rad pos: 6.5,8.5 @@ -104724,7 +99957,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15747 + - uid: 15781 components: - rot: -1.5707963267948966 rad pos: 45.5,-23.5 @@ -104732,14 +99965,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15748 + - uid: 15782 components: - pos: 30.5,-21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15749 + - uid: 15783 components: - rot: 3.141592653589793 rad pos: 34.5,-35.5 @@ -104747,7 +99980,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15750 + - uid: 15784 components: - rot: 3.141592653589793 rad pos: -5.5,-35.5 @@ -104755,7 +99988,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15751 + - uid: 15785 components: - rot: -1.5707963267948966 rad pos: 20.5,21.5 @@ -104763,7 +99996,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15752 + - uid: 15786 components: - rot: 1.5707963267948966 rad pos: 23.5,21.5 @@ -104771,7 +100004,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15753 + - uid: 15787 components: - rot: 1.5707963267948966 rad pos: 24.5,21.5 @@ -104779,7 +100012,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15754 + - uid: 15788 components: - rot: 1.5707963267948966 rad pos: 25.5,21.5 @@ -104787,7 +100020,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15755 + - uid: 15789 components: - rot: 1.5707963267948966 rad pos: 28.5,21.5 @@ -104795,21 +100028,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15756 + - uid: 15790 components: - pos: 29.5,20.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15757 + - uid: 15791 components: - pos: 29.5,19.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15758 + - uid: 15792 components: - rot: 3.141592653589793 rad pos: 30.5,17.5 @@ -104817,14 +100050,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15759 + - uid: 15793 components: - pos: 24.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15760 + - uid: 15794 components: - rot: -1.5707963267948966 rad pos: 2.5,-61.5 @@ -104832,7 +100065,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15761 + - uid: 15795 components: - rot: 1.5707963267948966 rad pos: 4.5,-61.5 @@ -104840,7 +100073,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15762 + - uid: 15796 components: - rot: -1.5707963267948966 rad pos: -7.5,-61.5 @@ -104848,16 +100081,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15763 + - uid: 15797 components: - pos: -8.5,-62.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15764 + - uid: 15798 components: - rot: 3.141592653589793 rad pos: -0.5,-63.5 @@ -104865,7 +100096,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15765 + - uid: 15799 components: - rot: 1.5707963267948966 rad pos: -2.5,-60.5 @@ -104873,7 +100104,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15766 + - uid: 15800 components: - rot: -1.5707963267948966 rad pos: 5.5,-60.5 @@ -104881,7 +100112,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15767 + - uid: 15801 components: - rot: -1.5707963267948966 rad pos: 6.5,-60.5 @@ -104889,7 +100120,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15768 + - uid: 15802 components: - rot: -1.5707963267948966 rad pos: 7.5,-60.5 @@ -104897,7 +100128,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15769 + - uid: 15803 components: - rot: -1.5707963267948966 rad pos: 8.5,-60.5 @@ -104905,7 +100136,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15770 + - uid: 15804 components: - rot: -1.5707963267948966 rad pos: 5.5,-61.5 @@ -104913,7 +100144,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15771 + - uid: 15805 components: - rot: -1.5707963267948966 rad pos: 7.5,-61.5 @@ -104921,9 +100152,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15772 + - uid: 15806 components: - rot: -1.5707963267948966 rad pos: 8.5,-61.5 @@ -104931,7 +100160,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15773 + - uid: 15807 components: - rot: 3.141592653589793 rad pos: -5.5,-28.5 @@ -104939,14 +100168,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15774 + - uid: 15808 components: - pos: -3.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15775 + - uid: 15809 components: - rot: -1.5707963267948966 rad pos: 28.5,-43.5 @@ -104954,7 +100183,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15776 + - uid: 15810 components: - rot: 1.5707963267948966 rad pos: -36.5,20.5 @@ -104962,37 +100191,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15777 + - uid: 15811 components: - pos: -20.5,-83.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15778 + - uid: 15812 components: - pos: -20.5,-74.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15779 + - uid: 15813 components: - pos: -25.5,-75.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15780 + - uid: 15814 components: - pos: -25.5,-73.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15781 + - uid: 15815 components: - rot: 1.5707963267948966 rad pos: -24.5,-72.5 @@ -105000,16 +100227,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15782 + - uid: 15816 components: - pos: 35.5,6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15783 + - uid: 15817 components: - rot: 1.5707963267948966 rad pos: 33.5,9.5 @@ -105017,9 +100242,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15784 + - uid: 15818 components: - rot: 1.5707963267948966 rad pos: -25.5,-80.5 @@ -105027,7 +100250,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15785 + - uid: 15819 components: - rot: 3.141592653589793 rad pos: 5.5,13.5 @@ -105035,28 +100258,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15786 + - uid: 15820 components: - pos: -3.5,-29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15787 + - uid: 15821 components: - pos: -3.5,-28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15788 + - uid: 15822 components: - pos: -3.5,-26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15789 + - uid: 15823 components: - rot: 1.5707963267948966 rad pos: -5.5,-25.5 @@ -105064,7 +100287,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15790 + - uid: 15824 components: - rot: 3.141592653589793 rad pos: -11.5,-26.5 @@ -105072,7 +100295,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15791 + - uid: 15825 components: - rot: 1.5707963267948966 rad pos: -6.5,-27.5 @@ -105080,7 +100303,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15792 + - uid: 15826 components: - rot: 1.5707963267948966 rad pos: 0.5,-25.5 @@ -105088,16 +100311,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15793 + - uid: 15827 components: - pos: 3.5,-28.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15794 + - uid: 15828 components: - rot: 1.5707963267948966 rad pos: 3.5,-25.5 @@ -105105,7 +100326,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15795 + - uid: 15829 components: - rot: 1.5707963267948966 rad pos: 1.5,-25.5 @@ -105113,7 +100334,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15796 + - uid: 15830 components: - rot: 3.141592653589793 rad pos: -5.5,-36.5 @@ -105121,7 +100342,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15797 + - uid: 15831 components: - rot: 3.141592653589793 rad pos: -5.5,-37.5 @@ -105129,7 +100350,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15798 + - uid: 15832 components: - rot: 3.141592653589793 rad pos: -5.5,-38.5 @@ -105137,7 +100358,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15799 + - uid: 15833 components: - rot: 3.141592653589793 rad pos: -5.5,-39.5 @@ -105145,7 +100366,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15800 + - uid: 15834 components: - rot: 3.141592653589793 rad pos: -5.5,-40.5 @@ -105153,7 +100374,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15801 + - uid: 15835 components: - rot: 1.5707963267948966 rad pos: 9.5,-27.5 @@ -105161,7 +100382,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15802 + - uid: 15836 components: - rot: 3.141592653589793 rad pos: 14.5,-28.5 @@ -105169,7 +100390,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15803 + - uid: 15837 components: - rot: 1.5707963267948966 rad pos: 13.5,-27.5 @@ -105177,7 +100398,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15804 + - uid: 15838 components: - rot: 1.5707963267948966 rad pos: 13.5,-25.5 @@ -105185,7 +100406,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15805 + - uid: 15839 components: - rot: 3.141592653589793 rad pos: 14.5,-35.5 @@ -105193,14 +100414,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15806 + - uid: 15840 components: - pos: 15.5,-37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15807 + - uid: 15841 components: - rot: 1.5707963267948966 rad pos: 22.5,-43.5 @@ -105208,7 +100429,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15808 + - uid: 15842 components: - rot: 1.5707963267948966 rad pos: 12.5,-25.5 @@ -105216,7 +100437,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15809 + - uid: 15843 components: - rot: 1.5707963267948966 rad pos: 21.5,-43.5 @@ -105224,7 +100445,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15810 + - uid: 15844 components: - rot: 1.5707963267948966 rad pos: 30.5,-43.5 @@ -105232,23 +100453,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15811 + - uid: 15845 components: - pos: 20.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15812 + - uid: 15846 components: - pos: 20.5,-19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15813 + - uid: 15847 components: - rot: -1.5707963267948966 rad pos: 23.5,-12.5 @@ -105256,9 +100475,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15814 + - uid: 15848 components: - rot: -1.5707963267948966 rad pos: 25.5,-12.5 @@ -105266,7 +100483,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15815 + - uid: 15849 components: - rot: 1.5707963267948966 rad pos: 4.5,19.5 @@ -105274,7 +100491,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15816 + - uid: 15850 components: - rot: -1.5707963267948966 rad pos: 21.5,21.5 @@ -105282,16 +100499,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15817 + - uid: 15851 components: - pos: 19.5,20.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15818 + - uid: 15852 components: - rot: -1.5707963267948966 rad pos: 35.5,12.5 @@ -105299,7 +100514,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15819 + - uid: 15853 components: - rot: 1.5707963267948966 rad pos: 16.5,-43.5 @@ -105307,7 +100522,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15820 + - uid: 15854 components: - rot: 1.5707963267948966 rad pos: 18.5,-43.5 @@ -105315,16 +100530,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15821 + - uid: 15855 components: - pos: 0.5,15.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15822 + - uid: 15856 components: - rot: 3.141592653589793 rad pos: 40.5,4.5 @@ -105332,7 +100545,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15823 + - uid: 15857 components: - rot: 3.141592653589793 rad pos: 42.5,8.5 @@ -105340,7 +100553,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15824 + - uid: 15858 components: - rot: 1.5707963267948966 rad pos: 16.5,-41.5 @@ -105348,7 +100561,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15825 + - uid: 15859 components: - rot: 1.5707963267948966 rad pos: 18.5,-41.5 @@ -105356,14 +100569,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15826 + - uid: 15860 components: - pos: -3.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15827 + - uid: 15861 components: - rot: 3.141592653589793 rad pos: 29.5,16.5 @@ -105371,7 +100584,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15828 + - uid: 15862 components: - rot: 1.5707963267948966 rad pos: 27.5,17.5 @@ -105379,7 +100592,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15829 + - uid: 15863 components: - rot: 1.5707963267948966 rad pos: 10.5,-25.5 @@ -105387,7 +100600,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15830 + - uid: 15864 components: - rot: -1.5707963267948966 rad pos: 13.5,17.5 @@ -105395,7 +100608,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15831 + - uid: 15865 components: - rot: 1.5707963267948966 rad pos: 1.5,17.5 @@ -105403,14 +100616,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15832 + - uid: 15866 components: - pos: 0.5,16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15833 + - uid: 15867 components: - rot: 1.5707963267948966 rad pos: -2.5,13.5 @@ -105418,9 +100631,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15834 + - uid: 15868 components: - rot: -1.5707963267948966 rad pos: -5.5,14.5 @@ -105428,79 +100639,77 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15835 + - uid: 15869 components: - pos: -6.5,13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15836 + - uid: 15870 components: - pos: -6.5,11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15837 + - uid: 15871 components: - pos: -6.5,10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15838 + - uid: 15872 components: - pos: -8.5,4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15839 + - uid: 15873 components: - pos: 3.5,-29.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15840 + - uid: 15874 components: - pos: 15.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15841 + - uid: 15875 components: - pos: 15.5,-32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15842 + - uid: 15876 components: - pos: 15.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15843 + - uid: 15877 components: - pos: -23.5,-77.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15844 + - uid: 15878 components: - pos: 17.5,18.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15845 + - uid: 15879 components: - rot: 1.5707963267948966 rad pos: 9.5,8.5 @@ -105508,7 +100717,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15846 + - uid: 15880 components: - rot: 1.5707963267948966 rad pos: 0.5,-1.5 @@ -105516,51 +100725,49 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15847 + - uid: 15881 components: - pos: -18.5,32.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15848 + - uid: 15882 components: - pos: -20.5,28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15849 + - uid: 15883 components: - pos: 34.5,-24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15850 + - uid: 15884 components: - pos: 31.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15851 + - uid: 15885 components: - pos: 24.5,-27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15852 + - uid: 15886 components: - pos: 36.5,-26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15853 + - uid: 15887 components: - rot: -1.5707963267948966 rad pos: 28.5,-18.5 @@ -105568,14 +100775,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15854 + - uid: 15888 components: - pos: 47.5,-24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15855 + - uid: 15889 components: - rot: 3.141592653589793 rad pos: 34.5,-38.5 @@ -105583,23 +100790,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15856 + - uid: 15890 components: - pos: 21.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15857 + - uid: 15891 components: - pos: 8.5,8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15858 + - uid: 15892 components: - rot: 1.5707963267948966 rad pos: 29.5,-22.5 @@ -105607,7 +100812,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15859 + - uid: 15893 components: - rot: 3.141592653589793 rad pos: 38.5,6.5 @@ -105615,30 +100820,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15860 + - uid: 15894 components: - pos: -20.5,31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15861 + - uid: 15895 components: - pos: 8.5,9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15862 + - uid: 15896 components: - pos: -18.5,30.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15863 + - uid: 15897 components: - rot: 1.5707963267948966 rad pos: -4.5,-1.5 @@ -105646,7 +100849,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15864 + - uid: 15898 components: - rot: 3.141592653589793 rad pos: -5.5,-32.5 @@ -105654,7 +100857,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15865 + - uid: 15899 components: - rot: -1.5707963267948966 rad pos: 6.5,-41.5 @@ -105662,56 +100865,56 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15866 + - uid: 15900 components: - pos: 15.5,-30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15867 + - uid: 15901 components: - pos: -3.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15868 + - uid: 15902 components: - pos: -3.5,-9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15869 + - uid: 15903 components: - pos: -3.5,-8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15870 + - uid: 15904 components: - pos: -3.5,-7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15871 + - uid: 15905 components: - pos: -3.5,-5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15872 + - uid: 15906 components: - pos: -5.5,-7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15873 + - uid: 15907 components: - rot: -1.5707963267948966 rad pos: 24.5,10.5 @@ -105719,7 +100922,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15874 + - uid: 15908 components: - rot: 1.5707963267948966 rad pos: 17.5,-29.5 @@ -105727,9 +100930,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15875 + - uid: 15909 components: - rot: 1.5707963267948966 rad pos: 18.5,-29.5 @@ -105737,7 +100938,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15876 + - uid: 15910 components: - rot: -1.5707963267948966 rad pos: 20.5,-29.5 @@ -105745,7 +100946,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15877 + - uid: 15911 components: - rot: -1.5707963267948966 rad pos: 22.5,-29.5 @@ -105753,7 +100954,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15878 + - uid: 15912 components: - rot: 1.5707963267948966 rad pos: -15.5,-42.5 @@ -105761,7 +100962,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15879 + - uid: 15913 components: - rot: 1.5707963267948966 rad pos: -14.5,-42.5 @@ -105769,7 +100970,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15880 + - uid: 15914 components: - rot: 3.141592653589793 rad pos: -14.5,-45.5 @@ -105777,7 +100978,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15881 + - uid: 15915 components: - rot: 3.141592653589793 rad pos: -17.5,-58.5 @@ -105785,9 +100986,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15882 + - uid: 15916 components: - rot: 3.141592653589793 rad pos: -17.5,-59.5 @@ -105795,7 +100994,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15883 + - uid: 15917 components: - rot: 1.5707963267948966 rad pos: -16.5,-60.5 @@ -105803,7 +101002,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15884 + - uid: 15918 components: - rot: 1.5707963267948966 rad pos: -15.5,-60.5 @@ -105811,7 +101010,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15885 + - uid: 15919 components: - rot: 3.141592653589793 rad pos: -12.5,-46.5 @@ -105819,7 +101018,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15886 + - uid: 15920 components: - rot: 3.141592653589793 rad pos: -12.5,-43.5 @@ -105827,7 +101026,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15887 + - uid: 15921 components: - rot: 1.5707963267948966 rad pos: -13.5,-42.5 @@ -105835,7 +101034,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15888 + - uid: 15922 components: - rot: 1.5707963267948966 rad pos: -11.5,-42.5 @@ -105843,46 +101042,42 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15889 + - uid: 15923 components: - pos: -9.5,-59.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15890 + - uid: 15924 components: - pos: -9.5,-58.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15891 + - uid: 15925 components: - pos: -9.5,-57.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15892 + - uid: 15926 components: - pos: -9.5,-56.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15893 + - uid: 15927 components: - pos: -9.5,-55.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15894 + - uid: 15928 components: - rot: 3.141592653589793 rad pos: -1.5,-52.5 @@ -105890,42 +101085,42 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15895 + - uid: 15929 components: - pos: -7.5,-52.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15896 + - uid: 15930 components: - pos: -7.5,-51.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15897 + - uid: 15931 components: - pos: -7.5,-50.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15898 + - uid: 15932 components: - pos: -7.5,-49.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15899 + - uid: 15933 components: - pos: -0.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15900 + - uid: 15934 components: - rot: -1.5707963267948966 rad pos: 0.5,-41.5 @@ -105933,7 +101128,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15901 + - uid: 15935 components: - rot: -1.5707963267948966 rad pos: 2.5,-41.5 @@ -105941,21 +101136,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15902 + - uid: 15936 components: - pos: -8.5,-44.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15903 + - uid: 15937 components: - pos: -8.5,-43.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15904 + - uid: 15938 components: - rot: 3.141592653589793 rad pos: 5.5,-43.5 @@ -105963,7 +101158,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15905 + - uid: 15939 components: - rot: -1.5707963267948966 rad pos: -9.5,-60.5 @@ -105971,7 +101166,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15906 + - uid: 15940 components: - rot: -1.5707963267948966 rad pos: -8.5,-60.5 @@ -105979,14 +101174,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15907 + - uid: 15941 components: - pos: -6.5,-64.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15908 + - uid: 15942 components: - rot: 3.141592653589793 rad pos: -7.5,-61.5 @@ -105994,7 +101189,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15909 + - uid: 15943 components: - rot: -1.5707963267948966 rad pos: -5.5,-59.5 @@ -106002,14 +101197,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15910 + - uid: 15944 components: - pos: 34.5,1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15911 + - uid: 15945 components: - rot: 1.5707963267948966 rad pos: 29.5,9.5 @@ -106017,9 +101212,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15912 + - uid: 15946 components: - rot: 1.5707963267948966 rad pos: 37.5,0.5 @@ -106027,7 +101220,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15913 + - uid: 15947 components: - rot: 1.5707963267948966 rad pos: 7.5,8.5 @@ -106035,14 +101228,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15914 + - uid: 15948 components: - pos: 17.5,-3.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15915 + - uid: 15949 components: - rot: -1.5707963267948966 rad pos: 11.5,-0.5 @@ -106050,7 +101243,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15916 + - uid: 15950 components: - rot: -1.5707963267948966 rad pos: 15.5,-0.5 @@ -106058,7 +101251,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15917 + - uid: 15951 components: - rot: -1.5707963267948966 rad pos: 38.5,15.5 @@ -106066,7 +101259,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15918 + - uid: 15952 components: - rot: -1.5707963267948966 rad pos: 36.5,15.5 @@ -106074,7 +101267,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15919 + - uid: 15953 components: - rot: -1.5707963267948966 rad pos: 34.5,1.5 @@ -106082,7 +101275,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15920 + - uid: 15954 components: - rot: -1.5707963267948966 rad pos: 30.5,1.5 @@ -106090,7 +101283,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15921 + - uid: 15955 components: - rot: -1.5707963267948966 rad pos: 31.5,1.5 @@ -106098,7 +101291,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15922 + - uid: 15956 components: - rot: -1.5707963267948966 rad pos: 32.5,1.5 @@ -106106,7 +101299,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15923 + - uid: 15957 components: - rot: -1.5707963267948966 rad pos: 36.5,1.5 @@ -106114,14 +101307,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15924 + - uid: 15958 components: - pos: 42.5,14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15925 + - uid: 15959 components: - rot: 1.5707963267948966 rad pos: 22.5,16.5 @@ -106129,7 +101322,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15926 + - uid: 15960 components: - rot: 1.5707963267948966 rad pos: 24.5,17.5 @@ -106137,7 +101330,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15927 + - uid: 15961 components: - rot: 1.5707963267948966 rad pos: 25.5,17.5 @@ -106145,7 +101338,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15928 + - uid: 15962 components: - rot: 1.5707963267948966 rad pos: 26.5,17.5 @@ -106153,35 +101346,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15929 + - uid: 15963 components: - pos: 38.5,2.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15930 + - uid: 15964 components: - pos: 38.5,4.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15931 + - uid: 15965 components: - pos: 25.5,10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15932 + - uid: 15966 components: - pos: 25.5,11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15933 + - uid: 15967 components: - rot: 1.5707963267948966 rad pos: 26.5,12.5 @@ -106189,14 +101382,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15934 + - uid: 15968 components: - pos: 21.5,11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15935 + - uid: 15969 components: - rot: 1.5707963267948966 rad pos: 27.5,9.5 @@ -106204,9 +101397,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15936 + - uid: 15970 components: - rot: 1.5707963267948966 rad pos: -6.5,-1.5 @@ -106214,21 +101405,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15937 + - uid: 15971 components: - pos: -5.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15938 + - uid: 15972 components: - pos: -5.5,-17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15939 + - uid: 15973 components: - rot: -1.5707963267948966 rad pos: 29.5,-42.5 @@ -106236,7 +101427,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15940 + - uid: 15974 components: - rot: 3.141592653589793 rad pos: 17.5,-2.5 @@ -106244,7 +101435,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15941 + - uid: 15975 components: - rot: 3.141592653589793 rad pos: 38.5,9.5 @@ -106252,9 +101443,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15942 + - uid: 15976 components: - rot: -1.5707963267948966 rad pos: 7.5,12.5 @@ -106262,7 +101451,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15943 + - uid: 15977 components: - rot: 3.141592653589793 rad pos: -3.5,-56.5 @@ -106270,7 +101459,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15944 + - uid: 15978 components: - rot: 3.141592653589793 rad pos: -3.5,-57.5 @@ -106278,7 +101467,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15945 + - uid: 15979 components: - rot: 3.141592653589793 rad pos: -1.5,-47.5 @@ -106286,42 +101475,42 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15946 + - uid: 15980 components: - pos: 15.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15947 + - uid: 15981 components: - pos: -3.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15948 + - uid: 15982 components: - pos: -3.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15949 + - uid: 15983 components: - pos: -3.5,-22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15950 + - uid: 15984 components: - pos: -3.5,-18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15951 + - uid: 15985 components: - rot: 1.5707963267948966 rad pos: 10.5,-27.5 @@ -106329,7 +101518,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15952 + - uid: 15986 components: - rot: -1.5707963267948966 rad pos: 7.5,-27.5 @@ -106337,7 +101526,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15953 + - uid: 15987 components: - rot: 1.5707963267948966 rad pos: 6.5,-27.5 @@ -106345,7 +101534,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15954 + - uid: 15988 components: - rot: 1.5707963267948966 rad pos: 11.5,-25.5 @@ -106353,14 +101542,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15955 + - uid: 15989 components: - pos: -20.5,29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15956 + - uid: 15990 components: - rot: -1.5707963267948966 rad pos: 19.5,-43.5 @@ -106368,7 +101557,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15957 + - uid: 15991 components: - rot: 1.5707963267948966 rad pos: 26.5,-16.5 @@ -106376,7 +101565,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15958 + - uid: 15992 components: - rot: 1.5707963267948966 rad pos: 32.5,-16.5 @@ -106384,7 +101573,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15959 + - uid: 15993 components: - rot: 1.5707963267948966 rad pos: -6.5,1.5 @@ -106392,7 +101581,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15960 + - uid: 15994 components: - rot: 1.5707963267948966 rad pos: -7.5,1.5 @@ -106400,21 +101589,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15961 + - uid: 15995 components: - pos: -8.5,5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15962 + - uid: 15996 components: - pos: -8.5,6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15963 + - uid: 15997 components: - rot: 1.5707963267948966 rad pos: 11.5,17.5 @@ -106422,7 +101611,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15964 + - uid: 15998 components: - rot: -1.5707963267948966 rad pos: 23.5,10.5 @@ -106430,16 +101619,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15965 + - uid: 15999 components: - pos: -23.5,-82.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15966 + - uid: 16000 components: - rot: 1.5707963267948966 rad pos: 30.5,-16.5 @@ -106447,7 +101634,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15967 + - uid: 16001 components: - rot: 3.141592653589793 rad pos: 8.5,1.5 @@ -106455,7 +101642,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15968 + - uid: 16002 components: - rot: 3.141592653589793 rad pos: 30.5,-19.5 @@ -106463,16 +101650,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 15969 + - uid: 16003 components: - pos: -5.5,-23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15970 + - uid: 16004 components: - rot: -1.5707963267948966 rad pos: 4.5,-42.5 @@ -106480,7 +101665,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15971 + - uid: 16005 components: - rot: 1.5707963267948966 rad pos: -10.5,-27.5 @@ -106488,7 +101673,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15972 + - uid: 16006 components: - rot: 1.5707963267948966 rad pos: -6.5,-25.5 @@ -106496,7 +101681,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15973 + - uid: 16007 components: - rot: 1.5707963267948966 rad pos: -4.5,-25.5 @@ -106504,7 +101689,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15974 + - uid: 16008 components: - rot: -1.5707963267948966 rad pos: 29.5,-18.5 @@ -106512,7 +101697,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15975 + - uid: 16009 components: - rot: -1.5707963267948966 rad pos: 27.5,-18.5 @@ -106520,7 +101705,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15976 + - uid: 16010 components: - rot: 1.5707963267948966 rad pos: 28.5,-16.5 @@ -106528,7 +101713,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15977 + - uid: 16011 components: - rot: 1.5707963267948966 rad pos: 25.5,-16.5 @@ -106536,7 +101721,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15978 + - uid: 16012 components: - rot: 3.141592653589793 rad pos: 14.5,-29.5 @@ -106544,7 +101729,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15979 + - uid: 16013 components: - rot: 1.5707963267948966 rad pos: 8.5,-27.5 @@ -106552,7 +101737,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15980 + - uid: 16014 components: - rot: 1.5707963267948966 rad pos: 11.5,-27.5 @@ -106560,14 +101745,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15981 + - uid: 16015 components: - pos: -3.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15982 + - uid: 16016 components: - rot: 3.141592653589793 rad pos: 36.5,-29.5 @@ -106575,14 +101760,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15983 + - uid: 16017 components: - pos: 47.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15984 + - uid: 16018 components: - rot: -1.5707963267948966 rad pos: 9.5,16.5 @@ -106590,7 +101775,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15985 + - uid: 16019 components: - rot: -1.5707963267948966 rad pos: 13.5,16.5 @@ -106598,7 +101783,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15986 + - uid: 16020 components: - rot: -1.5707963267948966 rad pos: 35.5,1.5 @@ -106606,7 +101791,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15987 + - uid: 16021 components: - rot: -1.5707963267948966 rad pos: 29.5,1.5 @@ -106614,7 +101799,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15988 + - uid: 16022 components: - rot: -1.5707963267948966 rad pos: 34.5,15.5 @@ -106622,7 +101807,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15989 + - uid: 16023 components: - rot: -1.5707963267948966 rad pos: 32.5,15.5 @@ -106630,7 +101815,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15990 + - uid: 16024 components: - rot: -1.5707963267948966 rad pos: 41.5,15.5 @@ -106638,7 +101823,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15991 + - uid: 16025 components: - rot: -1.5707963267948966 rad pos: 13.5,-0.5 @@ -106646,7 +101831,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15992 + - uid: 16026 components: - rot: -1.5707963267948966 rad pos: 30.5,-42.5 @@ -106654,7 +101839,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15993 + - uid: 16027 components: - rot: -1.5707963267948966 rad pos: -7.5,-42.5 @@ -106662,7 +101847,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15994 + - uid: 16028 components: - rot: 1.5707963267948966 rad pos: -5.5,-42.5 @@ -106670,7 +101855,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15995 + - uid: 16029 components: - rot: -1.5707963267948966 rad pos: 2.5,-42.5 @@ -106678,7 +101863,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15996 + - uid: 16030 components: - rot: 3.141592653589793 rad pos: 14.5,-33.5 @@ -106686,7 +101871,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15997 + - uid: 16031 components: - rot: -1.5707963267948966 rad pos: 10.5,-42.5 @@ -106694,7 +101879,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15998 + - uid: 16032 components: - rot: 3.141592653589793 rad pos: -5.5,-33.5 @@ -106702,7 +101887,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15999 + - uid: 16033 components: - rot: 3.141592653589793 rad pos: -5.5,-31.5 @@ -106710,7 +101895,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16000 + - uid: 16034 components: - rot: 3.141592653589793 rad pos: -5.5,-29.5 @@ -106718,7 +101903,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16001 + - uid: 16035 components: - rot: 1.5707963267948966 rad pos: 19.5,-5.5 @@ -106726,14 +101911,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16002 + - uid: 16036 components: - pos: 10.5,7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16003 + - uid: 16037 components: - rot: 3.141592653589793 rad pos: 42.5,7.5 @@ -106741,7 +101926,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16004 + - uid: 16038 components: - rot: 3.141592653589793 rad pos: 8.5,4.5 @@ -106749,9 +101934,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16005 + - uid: 16039 components: - rot: 3.141592653589793 rad pos: 38.5,7.5 @@ -106759,37 +101942,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16006 + - uid: 16040 components: - pos: 34.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16007 + - uid: 16041 components: - pos: 10.5,18.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16008 + - uid: 16042 components: - pos: -5.5,-26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16009 + - uid: 16043 components: - pos: -9.5,-4.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16010 + - uid: 16044 components: - rot: -1.5707963267948966 rad pos: 6.5,-61.5 @@ -106797,21 +101978,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16011 + - uid: 16045 components: - pos: 0.5,14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16012 + - uid: 16046 components: - pos: 34.5,4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16013 + - uid: 16047 components: - rot: 3.141592653589793 rad pos: 28.5,-32.5 @@ -106819,7 +102000,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16014 + - uid: 16048 components: - rot: 1.5707963267948966 rad pos: 15.5,-30.5 @@ -106827,7 +102008,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16015 + - uid: 16049 components: - rot: 1.5707963267948966 rad pos: 17.5,-30.5 @@ -106835,9 +102016,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16016 + - uid: 16050 components: - rot: -1.5707963267948966 rad pos: 14.5,16.5 @@ -106845,7 +102024,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16017 + - uid: 16051 components: - rot: -1.5707963267948966 rad pos: 10.5,16.5 @@ -106853,7 +102032,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16018 + - uid: 16052 components: - rot: -1.5707963267948966 rad pos: 8.5,16.5 @@ -106861,28 +102040,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16019 + - uid: 16053 components: - pos: 21.5,10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16020 + - uid: 16054 components: - pos: 21.5,9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16021 + - uid: 16055 components: - pos: 21.5,8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16022 + - uid: 16056 components: - rot: 1.5707963267948966 rad pos: 27.5,12.5 @@ -106890,23 +102069,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16023 + - uid: 16057 components: - pos: 25.5,9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16024 + - uid: 16058 components: - pos: 25.5,8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16025 + - uid: 16059 components: - rot: -1.5707963267948966 rad pos: 22.5,7.5 @@ -106914,7 +102091,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16026 + - uid: 16060 components: - rot: -1.5707963267948966 rad pos: 23.5,7.5 @@ -106922,7 +102099,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16027 + - uid: 16061 components: - rot: 1.5707963267948966 rad pos: 24.5,7.5 @@ -106930,30 +102107,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16028 + - uid: 16062 components: - pos: 38.5,3.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16029 + - uid: 16063 components: - pos: 31.5,13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16030 + - uid: 16064 components: - pos: 31.5,14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16031 + - uid: 16065 components: - rot: -1.5707963267948966 rad pos: 30.5,15.5 @@ -106961,7 +102136,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16032 + - uid: 16066 components: - rot: 1.5707963267948966 rad pos: 20.5,-5.5 @@ -106969,37 +102144,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16033 + - uid: 16067 components: - pos: 20.5,12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16034 + - uid: 16068 components: - pos: 20.5,11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16035 + - uid: 16069 components: - pos: 20.5,9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16036 + - uid: 16070 components: - pos: 20.5,8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16037 + - uid: 16071 components: - rot: 1.5707963267948966 rad pos: 19.5,7.5 @@ -107007,7 +102180,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16038 + - uid: 16072 components: - rot: 3.141592653589793 rad pos: 18.5,6.5 @@ -107015,7 +102188,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16039 + - uid: 16073 components: - rot: 3.141592653589793 rad pos: 18.5,5.5 @@ -107023,7 +102196,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16040 + - uid: 16074 components: - rot: 3.141592653589793 rad pos: 18.5,4.5 @@ -107031,7 +102204,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16041 + - uid: 16075 components: - rot: 1.5707963267948966 rad pos: 19.5,13.5 @@ -107039,9 +102212,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16042 + - uid: 16076 components: - rot: 1.5707963267948966 rad pos: 18.5,13.5 @@ -107049,7 +102220,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16043 + - uid: 16077 components: - rot: 3.141592653589793 rad pos: 17.5,14.5 @@ -107057,7 +102228,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16044 + - uid: 16078 components: - rot: 3.141592653589793 rad pos: 17.5,15.5 @@ -107065,15 +102236,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16045 - components: - - rot: 3.141592653589793 rad - pos: 17.5,16.5 - parent: 2 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16046 + - uid: 16079 components: - rot: 3.141592653589793 rad pos: 5.5,18.5 @@ -107081,9 +102244,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16047 + - uid: 16080 components: - rot: 1.5707963267948966 rad pos: 14.5,17.5 @@ -107091,7 +102252,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16048 + - uid: 16081 components: - rot: 1.5707963267948966 rad pos: 3.5,17.5 @@ -107099,7 +102260,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16049 + - uid: 16082 components: - rot: 1.5707963267948966 rad pos: 2.5,17.5 @@ -107107,7 +102268,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16050 + - uid: 16083 components: - rot: 1.5707963267948966 rad pos: -3.5,13.5 @@ -107115,14 +102276,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16051 + - uid: 16084 components: - pos: -8.5,3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16052 + - uid: 16085 components: - rot: 1.5707963267948966 rad pos: -4.5,1.5 @@ -107130,7 +102291,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16053 + - uid: 16086 components: - rot: 1.5707963267948966 rad pos: -3.5,1.5 @@ -107138,7 +102299,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16054 + - uid: 16087 components: - rot: 1.5707963267948966 rad pos: -2.5,1.5 @@ -107146,7 +102307,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16055 + - uid: 16088 components: - rot: 1.5707963267948966 rad pos: -1.5,1.5 @@ -107154,9 +102315,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16056 + - uid: 16089 components: - rot: 1.5707963267948966 rad pos: 0.5,1.5 @@ -107164,49 +102323,49 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16057 + - uid: 16090 components: - pos: 1.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16058 + - uid: 16091 components: - pos: 1.5,-0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16059 + - uid: 16092 components: - pos: 1.5,-1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16060 + - uid: 16093 components: - pos: 1.5,-2.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16061 + - uid: 16094 components: - pos: 9.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16062 + - uid: 16095 components: - pos: 9.5,-0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16063 + - uid: 16096 components: - rot: 1.5707963267948966 rad pos: 10.5,-1.5 @@ -107214,56 +102373,56 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16064 + - uid: 16097 components: - pos: 11.5,-2.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16065 + - uid: 16098 components: - pos: 11.5,-3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16066 + - uid: 16099 components: - pos: 11.5,-4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16067 + - uid: 16100 components: - pos: 11.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16068 + - uid: 16101 components: - pos: 11.5,-6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16069 + - uid: 16102 components: - pos: 11.5,-7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16070 + - uid: 16103 components: - pos: 11.5,-8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16071 + - uid: 16104 components: - rot: -1.5707963267948966 rad pos: 9.5,-9.5 @@ -107271,7 +102430,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16072 + - uid: 16105 components: - rot: 3.141592653589793 rad pos: 19.5,19.5 @@ -107279,9 +102438,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16073 + - uid: 16106 components: - rot: 1.5707963267948966 rad pos: 26.5,21.5 @@ -107289,7 +102446,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16074 + - uid: 16107 components: - rot: 1.5707963267948966 rad pos: 27.5,21.5 @@ -107297,23 +102454,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16075 + - uid: 16108 components: - pos: 23.5,18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16076 + - uid: 16109 components: - pos: 23.5,19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16077 + - uid: 16110 components: - rot: 1.5707963267948966 rad pos: 24.5,20.5 @@ -107321,7 +102476,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16078 + - uid: 16111 components: - rot: 3.141592653589793 rad pos: 25.5,21.5 @@ -107329,7 +102484,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16079 + - uid: 16112 components: - rot: -1.5707963267948966 rad pos: -15.5,-38.5 @@ -107337,7 +102492,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16080 + - uid: 16113 components: - rot: -1.5707963267948966 rad pos: -14.5,-38.5 @@ -107345,21 +102500,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16081 + - uid: 16114 components: - pos: 7.5,17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16082 + - uid: 16115 components: - pos: 17.5,19.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16083 + - uid: 16116 components: - rot: 3.141592653589793 rad pos: 16.5,19.5 @@ -107367,14 +102522,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16084 + - uid: 16117 components: - pos: 34.5,2.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16085 + - uid: 16118 components: - rot: -1.5707963267948966 rad pos: 30.5,0.5 @@ -107382,7 +102537,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16086 + - uid: 16119 components: - rot: 1.5707963267948966 rad pos: -6.5,-64.5 @@ -107390,14 +102545,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16087 + - uid: 16120 components: - pos: 21.5,-12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16088 + - uid: 16121 components: - rot: 3.141592653589793 rad pos: 34.5,-0.5 @@ -107405,7 +102560,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16089 + - uid: 16122 components: - rot: 3.141592653589793 rad pos: 34.5,-1.5 @@ -107413,7 +102568,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16090 + - uid: 16123 components: - rot: 3.141592653589793 rad pos: 34.5,-2.5 @@ -107421,7 +102576,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16091 + - uid: 16124 components: - rot: 3.141592653589793 rad pos: 34.5,-3.5 @@ -107429,7 +102584,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16092 + - uid: 16125 components: - rot: 3.141592653589793 rad pos: 34.5,-4.5 @@ -107437,7 +102592,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16093 + - uid: 16126 components: - rot: 3.141592653589793 rad pos: 34.5,-5.5 @@ -107445,7 +102600,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16094 + - uid: 16127 components: - rot: -1.5707963267948966 rad pos: 33.5,-6.5 @@ -107453,7 +102608,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16095 + - uid: 16128 components: - rot: -1.5707963267948966 rad pos: 32.5,-6.5 @@ -107461,7 +102616,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16096 + - uid: 16129 components: - rot: -1.5707963267948966 rad pos: 30.5,-6.5 @@ -107469,7 +102624,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16097 + - uid: 16130 components: - rot: -1.5707963267948966 rad pos: 28.5,-6.5 @@ -107477,7 +102632,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16098 + - uid: 16131 components: - rot: 1.5707963267948966 rad pos: 5.5,19.5 @@ -107485,7 +102640,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16099 + - uid: 16132 components: - rot: 1.5707963267948966 rad pos: 3.5,19.5 @@ -107493,9 +102648,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16100 + - uid: 16133 components: - rot: 1.5707963267948966 rad pos: 2.5,19.5 @@ -107503,7 +102656,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16101 + - uid: 16134 components: - rot: -1.5707963267948966 rad pos: 1.5,19.5 @@ -107511,21 +102664,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16102 + - uid: 16135 components: - pos: 26.5,-9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16103 + - uid: 16136 components: - pos: 26.5,-10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16104 + - uid: 16137 components: - rot: -1.5707963267948966 rad pos: 24.5,-12.5 @@ -107533,7 +102686,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16105 + - uid: 16138 components: - rot: -1.5707963267948966 rad pos: 22.5,-12.5 @@ -107541,7 +102694,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16106 + - uid: 16139 components: - rot: 3.141592653589793 rad pos: 26.5,-14.5 @@ -107549,7 +102702,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16107 + - uid: 16140 components: - rot: 3.141592653589793 rad pos: 26.5,-15.5 @@ -107557,7 +102710,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16108 + - uid: 16141 components: - rot: 3.141592653589793 rad pos: 26.5,-17.5 @@ -107565,7 +102718,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16109 + - uid: 16142 components: - rot: 1.5707963267948966 rad pos: 23.5,-23.5 @@ -107573,7 +102726,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16110 + - uid: 16143 components: - rot: 1.5707963267948966 rad pos: 22.5,-23.5 @@ -107581,7 +102734,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16111 + - uid: 16144 components: - rot: 1.5707963267948966 rad pos: 28.5,-22.5 @@ -107589,7 +102742,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16112 + - uid: 16145 components: - rot: 3.141592653589793 rad pos: 21.5,-15.5 @@ -107597,7 +102750,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16113 + - uid: 16146 components: - rot: 1.5707963267948966 rad pos: 21.5,-23.5 @@ -107605,23 +102758,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16114 + - uid: 16147 components: - pos: 24.5,-26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16115 + - uid: 16148 components: - pos: 24.5,-28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16116 + - uid: 16149 components: - rot: 3.141592653589793 rad pos: 26.5,-25.5 @@ -107629,7 +102780,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16117 + - uid: 16150 components: - rot: 3.141592653589793 rad pos: 26.5,-28.5 @@ -107637,7 +102788,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16118 + - uid: 16151 components: - rot: 3.141592653589793 rad pos: 26.5,-29.5 @@ -107645,7 +102796,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16119 + - uid: 16152 components: - rot: -1.5707963267948966 rad pos: 28.5,-30.5 @@ -107653,7 +102804,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16120 + - uid: 16153 components: - rot: -1.5707963267948966 rad pos: 26.5,-29.5 @@ -107661,28 +102812,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16121 + - uid: 16154 components: - pos: 28.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16122 + - uid: 16155 components: - pos: 22.5,-31.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16123 + - uid: 16156 components: - pos: 22.5,-33.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16124 + - uid: 16157 components: - rot: 3.141592653589793 rad pos: 21.5,-29.5 @@ -107690,21 +102841,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16125 + - uid: 16158 components: - pos: -11.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16126 + - uid: 16159 components: - pos: -8.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16127 + - uid: 16160 components: - rot: 1.5707963267948966 rad pos: 2.5,-25.5 @@ -107712,7 +102863,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16128 + - uid: 16161 components: - rot: 1.5707963267948966 rad pos: -6.5,7.5 @@ -107720,7 +102871,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16129 + - uid: 16162 components: - rot: 1.5707963267948966 rad pos: -7.5,7.5 @@ -107728,7 +102879,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16130 + - uid: 16163 components: - rot: 1.5707963267948966 rad pos: -8.5,7.5 @@ -107736,7 +102887,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16131 + - uid: 16164 components: - rot: 1.5707963267948966 rad pos: -9.5,7.5 @@ -107744,7 +102895,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16132 + - uid: 16165 components: - rot: -1.5707963267948966 rad pos: -9.5,1.5 @@ -107752,7 +102903,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16133 + - uid: 16166 components: - rot: -1.5707963267948966 rad pos: -11.5,1.5 @@ -107760,9 +102911,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16134 + - uid: 16167 components: - rot: -1.5707963267948966 rad pos: -12.5,1.5 @@ -107770,63 +102919,63 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16135 + - uid: 16168 components: - pos: -9.5,-2.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16136 + - uid: 16169 components: - pos: -9.5,-3.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16137 + - uid: 16170 components: - pos: -10.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16138 + - uid: 16171 components: - pos: -10.5,-0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16139 + - uid: 16172 components: - pos: -10.5,-1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16140 + - uid: 16173 components: - pos: -10.5,-3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16141 + - uid: 16174 components: - pos: -10.5,-4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16142 + - uid: 16175 components: - pos: -10.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16143 + - uid: 16176 components: - rot: 3.141592653589793 rad pos: -2.5,-64.5 @@ -107834,7 +102983,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16144 + - uid: 16177 components: - rot: 3.141592653589793 rad pos: -2.5,-63.5 @@ -107842,7 +102991,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16145 + - uid: 16178 components: - rot: 3.141592653589793 rad pos: -2.5,-62.5 @@ -107850,7 +102999,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16146 + - uid: 16179 components: - rot: -1.5707963267948966 rad pos: -3.5,-61.5 @@ -107858,7 +103007,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16147 + - uid: 16180 components: - rot: -1.5707963267948966 rad pos: -0.5,-61.5 @@ -107866,7 +103015,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16148 + - uid: 16181 components: - rot: -1.5707963267948966 rad pos: 0.5,-61.5 @@ -107874,7 +103023,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16149 + - uid: 16182 components: - rot: -1.5707963267948966 rad pos: 1.5,-61.5 @@ -107882,14 +103031,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16150 + - uid: 16183 components: - pos: -8.5,-63.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16151 + - uid: 16184 components: - rot: -1.5707963267948966 rad pos: -10.5,-61.5 @@ -107897,7 +103046,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16152 + - uid: 16185 components: - rot: -1.5707963267948966 rad pos: -11.5,-61.5 @@ -107905,7 +103054,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16153 + - uid: 16186 components: - rot: -1.5707963267948966 rad pos: -12.5,-61.5 @@ -107913,7 +103062,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16154 + - uid: 16187 components: - rot: -1.5707963267948966 rad pos: -13.5,-61.5 @@ -107921,7 +103070,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16155 + - uid: 16188 components: - rot: -1.5707963267948966 rad pos: -14.5,-61.5 @@ -107929,30 +103078,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16156 + - uid: 16189 components: - pos: -15.5,-62.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16157 + - uid: 16190 components: - pos: -15.5,-63.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16158 + - uid: 16191 components: - pos: -15.5,-64.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16159 + - uid: 16192 components: - rot: 3.141592653589793 rad pos: -0.5,-61.5 @@ -107960,7 +103107,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16160 + - uid: 16193 components: - rot: 3.141592653589793 rad pos: -0.5,-62.5 @@ -107968,9 +103115,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16161 + - uid: 16194 components: - rot: 3.141592653589793 rad pos: -0.5,-64.5 @@ -107978,7 +103123,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16162 + - uid: 16195 components: - rot: -1.5707963267948966 rad pos: -10.5,-60.5 @@ -107986,7 +103131,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16163 + - uid: 16196 components: - rot: -1.5707963267948966 rad pos: -11.5,-60.5 @@ -107994,30 +103139,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16164 + - uid: 16197 components: - pos: -12.5,-62.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16165 + - uid: 16198 components: - pos: -12.5,-63.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16166 + - uid: 16199 components: - pos: -12.5,-64.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16167 + - uid: 16200 components: - rot: -1.5707963267948966 rad pos: 0.5,-60.5 @@ -108025,7 +103168,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16168 + - uid: 16201 components: - rot: -1.5707963267948966 rad pos: 1.5,-60.5 @@ -108033,7 +103176,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16169 + - uid: 16202 components: - rot: 1.5707963267948966 rad pos: 3.5,-60.5 @@ -108041,7 +103184,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16170 + - uid: 16203 components: - rot: -1.5707963267948966 rad pos: 4.5,-60.5 @@ -108049,7 +103192,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16171 + - uid: 16204 components: - rot: 3.141592653589793 rad pos: 5.5,-44.5 @@ -108057,9 +103200,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16172 + - uid: 16205 components: - rot: 3.141592653589793 rad pos: 5.5,-42.5 @@ -108067,7 +103208,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16173 + - uid: 16206 components: - rot: 3.141592653589793 rad pos: 3.5,-43.5 @@ -108075,7 +103216,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16174 + - uid: 16207 components: - rot: -1.5707963267948966 rad pos: 1.5,-42.5 @@ -108083,7 +103224,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16175 + - uid: 16208 components: - rot: -1.5707963267948966 rad pos: 0.5,-42.5 @@ -108091,7 +103232,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16176 + - uid: 16209 components: - rot: -1.5707963267948966 rad pos: -0.5,-42.5 @@ -108099,7 +103240,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16177 + - uid: 16210 components: - rot: -1.5707963267948966 rad pos: -1.5,-42.5 @@ -108107,7 +103248,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16178 + - uid: 16211 components: - rot: -1.5707963267948966 rad pos: -2.5,-42.5 @@ -108115,7 +103256,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16179 + - uid: 16212 components: - rot: -1.5707963267948966 rad pos: 4.5,-41.5 @@ -108123,7 +103264,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16180 + - uid: 16213 components: - rot: 3.141592653589793 rad pos: -1.5,-51.5 @@ -108131,7 +103272,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16181 + - uid: 16214 components: - rot: 3.141592653589793 rad pos: -9.5,-60.5 @@ -108139,7 +103280,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16182 + - uid: 16215 components: - rot: 1.5707963267948966 rad pos: -13.5,-60.5 @@ -108147,7 +103288,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16183 + - uid: 16216 components: - rot: -1.5707963267948966 rad pos: -13.5,-41.5 @@ -108155,7 +103296,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16184 + - uid: 16217 components: - rot: -1.5707963267948966 rad pos: 19.5,-29.5 @@ -108163,9 +103304,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16185 + - uid: 16218 components: - rot: -1.5707963267948966 rad pos: 21.5,10.5 @@ -108173,7 +103312,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16186 + - uid: 16219 components: - rot: 1.5707963267948966 rad pos: 6.5,-25.5 @@ -108181,7 +103320,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16187 + - uid: 16220 components: - rot: 1.5707963267948966 rad pos: -4.5,-27.5 @@ -108189,7 +103328,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16188 + - uid: 16221 components: - rot: 1.5707963267948966 rad pos: -3.5,-27.5 @@ -108197,7 +103336,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16189 + - uid: 16222 components: - rot: 1.5707963267948966 rad pos: -2.5,-27.5 @@ -108205,7 +103344,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16190 + - uid: 16223 components: - rot: 1.5707963267948966 rad pos: 0.5,-27.5 @@ -108213,7 +103352,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16191 + - uid: 16224 components: - rot: 1.5707963267948966 rad pos: -9.5,-27.5 @@ -108221,42 +103360,42 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16192 + - uid: 16225 components: - pos: -3.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16193 + - uid: 16226 components: - pos: -3.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16194 + - uid: 16227 components: - pos: -3.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16195 + - uid: 16228 components: - pos: -3.5,-37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16196 + - uid: 16229 components: - pos: -3.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16197 + - uid: 16230 components: - rot: 1.5707963267948966 rad pos: 17.5,-41.5 @@ -108264,7 +103403,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16198 + - uid: 16231 components: - rot: 1.5707963267948966 rad pos: 23.5,-43.5 @@ -108272,7 +103411,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16199 + - uid: 16232 components: - rot: -1.5707963267948966 rad pos: 25.5,-43.5 @@ -108280,7 +103419,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16200 + - uid: 16233 components: - rot: -1.5707963267948966 rad pos: 26.5,-43.5 @@ -108288,7 +103427,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16201 + - uid: 16234 components: - rot: -1.5707963267948966 rad pos: 27.5,-43.5 @@ -108296,7 +103435,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16202 + - uid: 16235 components: - rot: -1.5707963267948966 rad pos: 29.5,-43.5 @@ -108304,7 +103443,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16203 + - uid: 16236 components: - rot: -1.5707963267948966 rad pos: 21.5,-12.5 @@ -108312,7 +103451,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16204 + - uid: 16237 components: - rot: 3.141592653589793 rad pos: -11.5,-40.5 @@ -108320,18 +103459,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16205 + - uid: 16238 components: - pos: 35.5,7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16206 + - uid: 16239 components: - rot: 1.5707963267948966 rad pos: -34.5,20.5 @@ -108339,7 +103474,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16207 + - uid: 16240 components: - rot: 1.5707963267948966 rad pos: -32.5,20.5 @@ -108347,7 +103482,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16208 + - uid: 16241 components: - rot: -1.5707963267948966 rad pos: -26.5,-77.5 @@ -108355,7 +103490,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16209 + - uid: 16242 components: - rot: 3.141592653589793 rad pos: -18.5,-74.5 @@ -108363,7 +103498,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16210 + - uid: 16243 components: - rot: 3.141592653589793 rad pos: -18.5,-77.5 @@ -108371,7 +103506,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16211 + - uid: 16244 components: - rot: 1.5707963267948966 rad pos: -24.5,-78.5 @@ -108379,7 +103514,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16212 + - uid: 16245 components: - rot: 1.5707963267948966 rad pos: -25.5,-78.5 @@ -108387,7 +103522,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16213 + - uid: 16246 components: - rot: 1.5707963267948966 rad pos: -17.5,-61.5 @@ -108395,7 +103530,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16214 + - uid: 16247 components: - rot: 1.5707963267948966 rad pos: -16.5,-61.5 @@ -108403,14 +103538,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16215 + - uid: 16248 components: - pos: -24.5,-87.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16216 + - uid: 16249 components: - rot: 1.5707963267948966 rad pos: -18.5,-61.5 @@ -108418,37 +103553,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16217 + - uid: 16250 components: - pos: -3.5,-4.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16218 + - uid: 16251 components: - pos: 35.5,4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16219 + - uid: 16252 components: - pos: 17.5,-4.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16220 + - uid: 16253 components: - pos: 17.5,-1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16221 + - uid: 16254 components: - rot: -1.5707963267948966 rad pos: 16.5,-0.5 @@ -108456,7 +103589,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16222 + - uid: 16255 components: - rot: -1.5707963267948966 rad pos: 12.5,-0.5 @@ -108464,7 +103597,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16223 + - uid: 16256 components: - rot: -1.5707963267948966 rad pos: 35.5,15.5 @@ -108472,7 +103605,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16224 + - uid: 16257 components: - rot: -1.5707963267948966 rad pos: 33.5,15.5 @@ -108480,7 +103613,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16225 + - uid: 16258 components: - rot: 3.141592653589793 rad pos: 21.5,13.5 @@ -108488,7 +103621,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16226 + - uid: 16259 components: - rot: 1.5707963267948966 rad pos: 30.5,9.5 @@ -108496,9 +103629,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16227 + - uid: 16260 components: - rot: -1.5707963267948966 rad pos: -4.5,7.5 @@ -108506,21 +103637,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16228 + - uid: 16261 components: - pos: -3.5,9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16229 + - uid: 16262 components: - pos: 7.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16230 + - uid: 16263 components: - rot: 3.141592653589793 rad pos: 2.5,4.5 @@ -108528,14 +103659,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16231 + - uid: 16264 components: - pos: 0.5,9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16232 + - uid: 16265 components: - rot: 1.5707963267948966 rad pos: -1.5,11.5 @@ -108543,9 +103674,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16233 + - uid: 16266 components: - rot: 1.5707963267948966 rad pos: -7.5,-1.5 @@ -108553,7 +103682,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16234 + - uid: 16267 components: - rot: 1.5707963267948966 rad pos: 1.5,-1.5 @@ -108561,28 +103690,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16235 + - uid: 16268 components: - pos: 10.5,4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16236 + - uid: 16269 components: - pos: 10.5,6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16237 + - uid: 16270 components: - pos: 10.5,5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16238 + - uid: 16271 components: - rot: 3.141592653589793 rad pos: -21.5,-86.5 @@ -108590,14 +103719,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16239 + - uid: 16272 components: - pos: -19.5,-58.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16240 + - uid: 16273 components: - rot: 1.5707963267948966 rad pos: 24.5,-16.5 @@ -108605,7 +103734,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16241 + - uid: 16274 components: - rot: 1.5707963267948966 rad pos: 29.5,-16.5 @@ -108613,23 +103742,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16242 + - uid: 16275 components: - pos: 31.5,-17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16243 + - uid: 16276 components: - pos: 31.5,-15.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16244 + - uid: 16277 components: - rot: 3.141592653589793 rad pos: 10.5,-3.5 @@ -108637,7 +103764,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16245 + - uid: 16278 components: - rot: 3.141592653589793 rad pos: 10.5,-2.5 @@ -108645,7 +103772,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16246 + - uid: 16279 components: - rot: -1.5707963267948966 rad pos: 7.5,-0.5 @@ -108653,7 +103780,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16247 + - uid: 16280 components: - rot: 3.141592653589793 rad pos: 10.5,-1.5 @@ -108661,7 +103788,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16248 + - uid: 16281 components: - rot: 1.5707963267948966 rad pos: 18.5,12.5 @@ -108669,7 +103796,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16249 + - uid: 16282 components: - rot: 1.5707963267948966 rad pos: 19.5,12.5 @@ -108677,9 +103804,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16250 + - uid: 16283 components: - rot: -1.5707963267948966 rad pos: 5.5,-0.5 @@ -108687,7 +103812,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16251 + - uid: 16284 components: - rot: -1.5707963267948966 rad pos: 6.5,-0.5 @@ -108695,7 +103820,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16252 + - uid: 16285 components: - rot: -1.5707963267948966 rad pos: 9.5,-0.5 @@ -108703,7 +103828,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16253 + - uid: 16286 components: - rot: 3.141592653589793 rad pos: -9.5,-41.5 @@ -108711,14 +103836,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16254 + - uid: 16287 components: - pos: 8.5,6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16255 + - uid: 16288 components: - rot: 3.141592653589793 rad pos: 21.5,14.5 @@ -108726,28 +103851,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16256 + - uid: 16289 components: - pos: -3.5,-30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16257 + - uid: 16290 components: - pos: -3.5,-31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16258 + - uid: 16291 components: - pos: -3.5,-32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16259 + - uid: 16292 components: - rot: 1.5707963267948966 rad pos: -0.5,-1.5 @@ -108755,7 +103880,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16260 + - uid: 16293 components: - rot: 1.5707963267948966 rad pos: 9.5,-25.5 @@ -108763,7 +103888,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16261 + - uid: 16294 components: - rot: 1.5707963267948966 rad pos: 8.5,-25.5 @@ -108771,15 +103896,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16262 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,17.5 - parent: 2 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 16263 + - uid: 16295 components: - rot: 1.5707963267948966 rad pos: -0.5,13.5 @@ -108787,28 +103904,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16264 + - uid: 16296 components: - pos: -6.5,12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16265 + - uid: 16297 components: - pos: -6.5,9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16266 + - uid: 16298 components: - pos: 15.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16267 + - uid: 16299 components: - rot: 1.5707963267948966 rad pos: 4.5,-27.5 @@ -108816,7 +103933,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16268 + - uid: 16300 components: - rot: 1.5707963267948966 rad pos: 5.5,-27.5 @@ -108824,7 +103941,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16269 + - uid: 16301 components: - rot: 1.5707963267948966 rad pos: 13.5,-43.5 @@ -108832,7 +103949,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16270 + - uid: 16302 components: - rot: -1.5707963267948966 rad pos: 6.5,-42.5 @@ -108840,7 +103957,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16271 + - uid: 16303 components: - rot: 3.141592653589793 rad pos: 14.5,-36.5 @@ -108848,7 +103965,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16272 + - uid: 16304 components: - rot: -1.5707963267948966 rad pos: 11.5,-41.5 @@ -108856,7 +103973,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16273 + - uid: 16305 components: - rot: 3.141592653589793 rad pos: 14.5,-39.5 @@ -108864,7 +103981,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16274 + - uid: 16306 components: - rot: 3.141592653589793 rad pos: 14.5,-40.5 @@ -108872,7 +103989,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16275 + - uid: 16307 components: - rot: -1.5707963267948966 rad pos: 12.5,-41.5 @@ -108880,7 +103997,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16276 + - uid: 16308 components: - rot: 3.141592653589793 rad pos: 14.5,-38.5 @@ -108888,7 +104005,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16277 + - uid: 16309 components: - rot: -1.5707963267948966 rad pos: 13.5,-41.5 @@ -108896,14 +104013,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16278 + - uid: 16310 components: - pos: 15.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16279 + - uid: 16311 components: - rot: -1.5707963267948966 rad pos: 8.5,-41.5 @@ -108911,7 +104028,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16280 + - uid: 16312 components: - rot: -1.5707963267948966 rad pos: 7.5,-41.5 @@ -108919,7 +104036,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16281 + - uid: 16313 components: - rot: -1.5707963267948966 rad pos: 9.5,-41.5 @@ -108927,14 +104044,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16282 + - uid: 16314 components: - pos: 15.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16283 + - uid: 16315 components: - rot: 3.141592653589793 rad pos: 40.5,-72.5 @@ -108942,7 +104059,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16284 + - uid: 16316 components: - rot: 3.141592653589793 rad pos: 16.5,17.5 @@ -108950,7 +104067,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16285 + - uid: 16317 components: - rot: 3.141592653589793 rad pos: 16.5,18.5 @@ -108958,7 +104075,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16286 + - uid: 16318 components: - rot: 3.141592653589793 rad pos: 16.5,20.5 @@ -108966,7 +104083,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16287 + - uid: 16319 components: - rot: 3.141592653589793 rad pos: 16.5,21.5 @@ -108974,7 +104091,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16288 + - uid: 16320 components: - rot: -1.5707963267948966 rad pos: 33.5,0.5 @@ -108982,7 +104099,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16289 + - uid: 16321 components: - rot: -1.5707963267948966 rad pos: 32.5,0.5 @@ -108990,7 +104107,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16290 + - uid: 16322 components: - rot: -1.5707963267948966 rad pos: 31.5,0.5 @@ -108998,9 +104115,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16291 + - uid: 16323 components: - rot: -1.5707963267948966 rad pos: 29.5,0.5 @@ -109008,7 +104123,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16292 + - uid: 16324 components: - rot: -1.5707963267948966 rad pos: 28.5,0.5 @@ -109016,7 +104131,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16293 + - uid: 16325 components: - rot: 3.141592653589793 rad pos: 14.5,-34.5 @@ -109024,14 +104139,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16294 + - uid: 16326 components: - pos: 15.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16295 + - uid: 16327 components: - rot: 3.141592653589793 rad pos: 14.5,-31.5 @@ -109039,49 +104154,49 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16296 + - uid: 16328 components: - pos: 15.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16297 + - uid: 16329 components: - pos: 15.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16298 + - uid: 16330 components: - pos: 15.5,-31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16299 + - uid: 16331 components: - pos: 15.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16300 + - uid: 16332 components: - pos: 15.5,-20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16301 + - uid: 16333 components: - pos: 15.5,-19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16302 + - uid: 16334 components: - rot: 1.5707963267948966 rad pos: 19.5,-17.5 @@ -109089,14 +104204,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16303 + - uid: 16335 components: - pos: 15.5,-18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16304 + - uid: 16336 components: - rot: 1.5707963267948966 rad pos: 16.5,-17.5 @@ -109104,7 +104219,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16305 + - uid: 16337 components: - rot: 1.5707963267948966 rad pos: 17.5,-17.5 @@ -109112,7 +104227,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16306 + - uid: 16338 components: - rot: 1.5707963267948966 rad pos: 18.5,-17.5 @@ -109120,7 +104235,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16307 + - uid: 16339 components: - rot: 3.141592653589793 rad pos: 15.5,-27.5 @@ -109128,14 +104243,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16308 + - uid: 16340 components: - pos: 26.5,-8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16309 + - uid: 16341 components: - rot: 1.5707963267948966 rad pos: -2.5,-25.5 @@ -109143,7 +104258,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16310 + - uid: 16342 components: - rot: -1.5707963267948966 rad pos: 20.5,-30.5 @@ -109151,7 +104266,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16311 + - uid: 16343 components: - rot: -1.5707963267948966 rad pos: 19.5,-30.5 @@ -109159,9 +104274,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16312 + - uid: 16344 components: - rot: -1.5707963267948966 rad pos: 23.5,-30.5 @@ -109169,14 +104282,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16313 + - uid: 16345 components: - pos: 28.5,-30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16314 + - uid: 16346 components: - rot: 3.141592653589793 rad pos: 15.5,-28.5 @@ -109184,14 +104297,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16315 + - uid: 16347 components: - pos: -3.5,-16.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16316 + - uid: 16348 components: - rot: 1.5707963267948966 rad pos: 16.5,-30.5 @@ -109199,7 +104312,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16317 + - uid: 16349 components: - rot: 3.141592653589793 rad pos: 15.5,-26.5 @@ -109207,14 +104320,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16318 + - uid: 16350 components: - pos: -3.5,-19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16319 + - uid: 16351 components: - rot: 1.5707963267948966 rad pos: -29.5,-80.5 @@ -109222,7 +104335,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16320 + - uid: 16352 components: - rot: -1.5707963267948966 rad pos: -20.5,-73.5 @@ -109230,14 +104343,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16321 + - uid: 16353 components: - pos: -3.5,8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16322 + - uid: 16354 components: - rot: -1.5707963267948966 rad pos: -8.5,-41.5 @@ -109245,21 +104358,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16323 + - uid: 16355 components: - pos: -23.5,-76.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16324 + - uid: 16356 components: - pos: -23.5,-75.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16325 + - uid: 16357 components: - rot: -1.5707963267948966 rad pos: -19.5,-73.5 @@ -109267,7 +104380,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16326 + - uid: 16358 components: - rot: -1.5707963267948966 rad pos: 8.5,12.5 @@ -109275,7 +104388,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16327 + - uid: 16359 components: - rot: 3.141592653589793 rad pos: 8.5,12.5 @@ -109283,7 +104396,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16328 + - uid: 16360 components: - rot: -1.5707963267948966 rad pos: -9.5,-41.5 @@ -109291,7 +104404,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16329 + - uid: 16361 components: - rot: 3.141592653589793 rad pos: -12.5,-45.5 @@ -109299,14 +104412,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16330 + - uid: 16362 components: - pos: -9.5,-54.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16331 + - uid: 16363 components: - rot: 3.141592653589793 rad pos: -3.5,-54.5 @@ -109314,7 +104427,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16332 + - uid: 16364 components: - rot: 3.141592653589793 rad pos: -3.5,-55.5 @@ -109322,7 +104435,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16333 + - uid: 16365 components: - rot: 3.141592653589793 rad pos: -1.5,-49.5 @@ -109330,7 +104443,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16334 + - uid: 16366 components: - rot: -1.5707963267948966 rad pos: -1.5,-41.5 @@ -109338,7 +104451,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16335 + - uid: 16367 components: - rot: -1.5707963267948966 rad pos: -2.5,-41.5 @@ -109346,28 +104459,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16336 + - uid: 16368 components: - pos: -5.5,-16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16337 + - uid: 16369 components: - pos: -5.5,-13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16338 + - uid: 16370 components: - pos: -5.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16339 + - uid: 16371 components: - rot: -1.5707963267948966 rad pos: -6.5,-41.5 @@ -109375,77 +104488,77 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16340 + - uid: 16372 components: - pos: -5.5,-6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16341 + - uid: 16373 components: - pos: -5.5,-4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16342 + - uid: 16374 components: - pos: -5.5,-3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16343 + - uid: 16375 components: - pos: -5.5,-1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16344 + - uid: 16376 components: - pos: -5.5,-0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16345 + - uid: 16377 components: - pos: -5.5,-12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16346 + - uid: 16378 components: - pos: -5.5,-15.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16347 + - uid: 16379 components: - pos: -5.5,-20.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16348 + - uid: 16380 components: - pos: -5.5,-19.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16349 + - uid: 16381 components: - pos: -5.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16350 + - uid: 16382 components: - rot: 1.5707963267948966 rad pos: -1.5,13.5 @@ -109453,9 +104566,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16351 + - uid: 16383 components: - rot: 3.141592653589793 rad pos: -1.5,-48.5 @@ -109463,7 +104574,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16352 + - uid: 16384 components: - rot: 3.141592653589793 rad pos: -21.5,-88.5 @@ -109471,7 +104582,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16353 + - uid: 16385 components: - rot: 3.141592653589793 rad pos: 34.5,-31.5 @@ -109479,7 +104590,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16354 + - uid: 16386 components: - rot: -1.5707963267948966 rad pos: -1.5,-14.5 @@ -109487,7 +104598,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16355 + - uid: 16387 components: - rot: 3.141592653589793 rad pos: 34.5,-30.5 @@ -109495,7 +104606,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16356 + - uid: 16388 components: - rot: 1.5707963267948966 rad pos: 43.5,-24.5 @@ -109503,7 +104614,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16357 + - uid: 16389 components: - rot: 1.5707963267948966 rad pos: -28.5,-78.5 @@ -109511,7 +104622,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16358 + - uid: 16390 components: - rot: 1.5707963267948966 rad pos: -29.5,-78.5 @@ -109519,7 +104630,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16359 + - uid: 16391 components: - rot: -1.5707963267948966 rad pos: -21.5,30.5 @@ -109527,7 +104638,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16360 + - uid: 16392 components: - rot: 3.141592653589793 rad pos: 34.5,-37.5 @@ -109535,7 +104646,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16361 + - uid: 16393 components: - rot: 3.141592653589793 rad pos: 34.5,-33.5 @@ -109543,7 +104654,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16362 + - uid: 16394 components: - rot: -1.5707963267948966 rad pos: 30.5,12.5 @@ -109551,9 +104662,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16363 + - uid: 16395 components: - rot: -1.5707963267948966 rad pos: 19.5,16.5 @@ -109561,7 +104670,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16364 + - uid: 16396 components: - rot: 3.141592653589793 rad pos: -12.5,6.5 @@ -109569,7 +104678,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16365 + - uid: 16397 components: - rot: -1.5707963267948966 rad pos: 32.5,12.5 @@ -109577,7 +104686,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16366 + - uid: 16398 components: - rot: 3.141592653589793 rad pos: 30.5,-20.5 @@ -109585,9 +104694,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16367 + - uid: 16399 components: - rot: 3.141592653589793 rad pos: 10.5,10.5 @@ -109595,7 +104702,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16368 + - uid: 16400 components: - rot: 1.5707963267948966 rad pos: 8.5,8.5 @@ -109603,7 +104710,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16369 + - uid: 16401 components: - rot: -1.5707963267948966 rad pos: -22.5,30.5 @@ -109611,7 +104718,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16370 + - uid: 16402 components: - rot: -1.5707963267948966 rad pos: -20.5,29.5 @@ -109619,21 +104726,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16371 + - uid: 16403 components: - pos: -20.5,26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16372 + - uid: 16404 components: - pos: 26.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16373 + - uid: 16405 components: - rot: 3.141592653589793 rad pos: 2.5,-2.5 @@ -109641,35 +104748,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16374 + - uid: 16406 components: - pos: -3.5,-3.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16375 + - uid: 16407 components: - pos: -3.5,-2.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16376 + - uid: 16408 components: - pos: -3.5,-15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16377 + - uid: 16409 components: - pos: 47.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16378 + - uid: 16410 components: - rot: 3.141592653589793 rad pos: 8.5,5.5 @@ -109677,7 +104784,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16379 + - uid: 16411 components: - rot: -1.5707963267948966 rad pos: 29.5,12.5 @@ -109685,7 +104792,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16380 + - uid: 16412 components: - rot: 3.141592653589793 rad pos: 40.5,3.5 @@ -109693,9 +104800,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16381 + - uid: 16413 components: - rot: 1.5707963267948966 rad pos: 42.5,-27.5 @@ -109703,7 +104808,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16382 + - uid: 16414 components: - rot: 1.5707963267948966 rad pos: 17.5,12.5 @@ -109711,7 +104816,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16383 + - uid: 16415 components: - rot: 1.5707963267948966 rad pos: 43.5,-27.5 @@ -109719,7 +104824,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16384 + - uid: 16416 components: - rot: -1.5707963267948966 rad pos: 10.5,12.5 @@ -109727,21 +104832,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16385 + - uid: 16417 components: - pos: 26.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16386 + - uid: 16418 components: - pos: 26.5,-16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16387 + - uid: 16419 components: - rot: -1.5707963267948966 rad pos: 27.5,-30.5 @@ -109749,9 +104854,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16388 + - uid: 16420 components: - rot: -1.5707963267948966 rad pos: 22.5,-42.5 @@ -109759,7 +104862,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16389 + - uid: 16421 components: - rot: -1.5707963267948966 rad pos: 23.5,-42.5 @@ -109767,7 +104870,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16390 + - uid: 16422 components: - rot: -1.5707963267948966 rad pos: 27.5,-42.5 @@ -109775,7 +104878,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16391 + - uid: 16423 components: - rot: 3.141592653589793 rad pos: 8.5,2.5 @@ -109783,14 +104886,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16392 + - uid: 16424 components: - pos: -11.5,-24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16393 + - uid: 16425 components: - rot: 3.141592653589793 rad pos: -8.5,-23.5 @@ -109798,7 +104901,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16394 + - uid: 16426 components: - rot: 3.141592653589793 rad pos: 10.5,9.5 @@ -109806,7 +104909,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16395 + - uid: 16427 components: - rot: -1.5707963267948966 rad pos: 20.5,16.5 @@ -109814,7 +104917,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16396 + - uid: 16428 components: - rot: 1.5707963267948966 rad pos: 23.5,-54.5 @@ -109822,30 +104925,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16397 + - uid: 16429 components: - pos: -3.5,-17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16398 + - uid: 16430 components: - pos: -5.5,-22.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16399 + - uid: 16431 components: - pos: -5.5,-18.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16400 + - uid: 16432 components: - rot: -1.5707963267948966 rad pos: -23.5,30.5 @@ -109853,7 +104954,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16401 + - uid: 16433 components: - rot: -1.5707963267948966 rad pos: -16.5,29.5 @@ -109861,7 +104962,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16402 + - uid: 16434 components: - rot: -1.5707963267948966 rad pos: -19.5,29.5 @@ -109869,7 +104970,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16403 + - uid: 16435 components: - rot: -1.5707963267948966 rad pos: 10.5,-9.5 @@ -109877,7 +104978,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16404 + - uid: 16436 components: - rot: 3.141592653589793 rad pos: 34.5,-34.5 @@ -109885,7 +104986,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16405 + - uid: 16437 components: - rot: 1.5707963267948966 rad pos: 6.5,19.5 @@ -109893,7 +104994,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16406 + - uid: 16438 components: - rot: 3.141592653589793 rad pos: 40.5,1.5 @@ -109901,21 +105002,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16407 + - uid: 16439 components: - pos: 0.5,8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16408 + - uid: 16440 components: - pos: 0.5,10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16409 + - uid: 16441 components: - rot: 1.5707963267948966 rad pos: -0.5,11.5 @@ -109923,7 +105024,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16410 + - uid: 16442 components: - rot: 3.141592653589793 rad pos: 2.5,3.5 @@ -109931,12 +105032,12 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16411 + - uid: 16443 components: - pos: 2.5,12.5 parent: 2 type: Transform - - uid: 16412 + - uid: 16444 components: - rot: 3.141592653589793 rad pos: 8.5,3.5 @@ -109944,26 +105045,26 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16413 + - uid: 16445 components: - pos: 34.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16414 + - uid: 16446 components: - pos: 2.5,13.5 parent: 2 type: Transform - - uid: 16415 + - uid: 16447 components: - pos: 2.5,-0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16416 + - uid: 16448 components: - rot: 1.5707963267948966 rad pos: 3.5,0.5 @@ -109971,7 +105072,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16417 + - uid: 16449 components: - rot: 1.5707963267948966 rad pos: -2.5,-1.5 @@ -109979,7 +105080,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16418 + - uid: 16450 components: - rot: 1.5707963267948966 rad pos: -5.5,-1.5 @@ -109987,7 +105088,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16419 + - uid: 16451 components: - rot: 3.141592653589793 rad pos: -1.5,-50.5 @@ -109995,7 +105096,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16420 + - uid: 16452 components: - rot: -1.5707963267948966 rad pos: 37.5,11.5 @@ -110003,7 +105104,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16421 + - uid: 16453 components: - rot: 1.5707963267948966 rad pos: 8.5,17.5 @@ -110011,7 +105112,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16422 + - uid: 16454 components: - rot: 1.5707963267948966 rad pos: 7.5,17.5 @@ -110019,7 +105120,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16423 + - uid: 16455 components: - rot: 1.5707963267948966 rad pos: 6.5,17.5 @@ -110027,14 +105128,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16424 + - uid: 16456 components: - pos: -8.5,7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16425 + - uid: 16457 components: - rot: 1.5707963267948966 rad pos: 12.5,17.5 @@ -110042,7 +105143,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16426 + - uid: 16458 components: - rot: 3.141592653589793 rad pos: -3.5,-58.5 @@ -110050,16 +105151,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16427 + - uid: 16459 components: - pos: -3.5,-20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16428 + - uid: 16460 components: - rot: -1.5707963267948966 rad pos: -6.5,-42.5 @@ -110067,7 +105166,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16429 + - uid: 16461 components: - rot: 3.141592653589793 rad pos: 2.5,2.5 @@ -110075,7 +105174,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16430 + - uid: 16462 components: - rot: -1.5707963267948966 rad pos: 18.5,-12.5 @@ -110083,7 +105182,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16431 + - uid: 16463 components: - rot: 1.5707963267948966 rad pos: 22.5,-16.5 @@ -110091,7 +105190,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16432 + - uid: 16464 components: - rot: 1.5707963267948966 rad pos: 23.5,-16.5 @@ -110099,7 +105198,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16433 + - uid: 16465 components: - rot: 1.5707963267948966 rad pos: 27.5,-16.5 @@ -110107,7 +105206,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16434 + - uid: 16466 components: - rot: 1.5707963267948966 rad pos: 31.5,-16.5 @@ -110115,60 +105214,56 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16435 + - uid: 16467 components: - pos: 21.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16436 + - uid: 16468 components: - pos: 21.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16437 + - uid: 16469 components: - pos: 21.5,-11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16438 + - uid: 16470 components: - pos: 21.5,-9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16439 + - uid: 16471 components: - pos: 21.5,-7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16440 + - uid: 16472 components: - pos: 21.5,-8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16441 + - uid: 16473 components: - pos: 21.5,-6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16442 + - uid: 16474 components: - rot: 3.141592653589793 rad pos: 26.5,-23.5 @@ -110176,7 +105271,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16443 + - uid: 16475 components: - rot: 1.5707963267948966 rad pos: 27.5,-22.5 @@ -110184,14 +105279,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16444 + - uid: 16476 components: - pos: 20.5,-22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16445 + - uid: 16477 components: - rot: 3.141592653589793 rad pos: 26.5,-13.5 @@ -110199,37 +105294,35 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16446 + - uid: 16478 components: - pos: 31.5,-16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16447 + - uid: 16479 components: - pos: 33.5,-15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16448 + - uid: 16480 components: - pos: -5.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16449 + - uid: 16481 components: - pos: -5.5,-24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16450 + - uid: 16482 components: - rot: -1.5707963267948966 rad pos: 28.5,-42.5 @@ -110237,7 +105330,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16451 + - uid: 16483 components: - rot: -1.5707963267948966 rad pos: 25.5,-29.5 @@ -110245,9 +105338,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16452 + - uid: 16484 components: - rot: -1.5707963267948966 rad pos: 6.5,12.5 @@ -110255,7 +105346,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16453 + - uid: 16485 components: - rot: -1.5707963267948966 rad pos: 9.5,12.5 @@ -110263,9 +105354,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16454 + - uid: 16486 components: - rot: -1.5707963267948966 rad pos: 20.5,-12.5 @@ -110273,7 +105362,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16455 + - uid: 16487 components: - rot: 1.5707963267948966 rad pos: 15.5,-41.5 @@ -110281,7 +105370,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16456 + - uid: 16488 components: - rot: -1.5707963267948966 rad pos: -17.5,29.5 @@ -110289,7 +105378,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16457 + - uid: 16489 components: - rot: -1.5707963267948966 rad pos: -17.5,30.5 @@ -110297,7 +105386,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16458 + - uid: 16490 components: - rot: -1.5707963267948966 rad pos: -18.5,30.5 @@ -110305,7 +105394,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16459 + - uid: 16491 components: - rot: -1.5707963267948966 rad pos: -19.5,30.5 @@ -110313,7 +105402,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16460 + - uid: 16492 components: - rot: -1.5707963267948966 rad pos: -22.5,29.5 @@ -110321,7 +105410,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16461 + - uid: 16493 components: - rot: -1.5707963267948966 rad pos: -21.5,29.5 @@ -110329,23 +105418,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16462 + - uid: 16494 components: - pos: 36.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16463 + - uid: 16495 components: - pos: 36.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16464 + - uid: 16496 components: - rot: 3.141592653589793 rad pos: -10.5,6.5 @@ -110353,30 +105440,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16465 + - uid: 16497 components: - pos: -18.5,27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16466 + - uid: 16498 components: - pos: 36.5,-22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16467 + - uid: 16499 components: - pos: 47.5,-26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16468 + - uid: 16500 components: - rot: -1.5707963267948966 rad pos: 25.5,-30.5 @@ -110384,9 +105469,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16469 + - uid: 16501 components: - rot: 3.141592653589793 rad pos: 34.5,-29.5 @@ -110394,7 +105477,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16470 + - uid: 16502 components: - rot: -1.5707963267948966 rad pos: 19.5,-12.5 @@ -110402,7 +105485,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16471 + - uid: 16503 components: - rot: -1.5707963267948966 rad pos: -1.5,-61.5 @@ -110410,16 +105493,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16472 + - uid: 16504 components: - pos: -10.5,-2.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16473 + - uid: 16505 components: - rot: -1.5707963267948966 rad pos: 24.5,-30.5 @@ -110427,7 +105508,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16474 + - uid: 16506 components: - rot: 1.5707963267948966 rad pos: 16.5,17.5 @@ -110435,7 +105516,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16475 + - uid: 16507 components: - rot: 1.5707963267948966 rad pos: 18.5,-5.5 @@ -110443,7 +105524,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16476 + - uid: 16508 components: - rot: -1.5707963267948966 rad pos: 15.5,16.5 @@ -110451,7 +105532,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16477 + - uid: 16509 components: - rot: -1.5707963267948966 rad pos: 18.5,16.5 @@ -110459,7 +105540,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16478 + - uid: 16510 components: - rot: -1.5707963267948966 rad pos: 17.5,16.5 @@ -110467,7 +105548,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16479 + - uid: 16511 components: - rot: -1.5707963267948966 rad pos: 33.5,12.5 @@ -110475,9 +105556,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16480 + - uid: 16512 components: - rot: 3.141592653589793 rad pos: 40.5,2.5 @@ -110485,30 +105564,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16481 + - uid: 16513 components: - pos: -20.5,27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16482 + - uid: 16514 components: - pos: 22.5,-32.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16483 + - uid: 16515 components: - pos: -20.5,32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16484 + - uid: 16516 components: - rot: 1.5707963267948966 rad pos: 46.5,-28.5 @@ -110516,14 +105593,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16485 + - uid: 16517 components: - pos: 36.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16486 + - uid: 16518 components: - rot: 1.5707963267948966 rad pos: 42.5,-24.5 @@ -110531,7 +105608,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16487 + - uid: 16519 components: - rot: 1.5707963267948966 rad pos: -7.5,-64.5 @@ -110539,14 +105616,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16488 + - uid: 16520 components: - pos: -23.5,-81.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16489 + - uid: 16521 components: - rot: 1.5707963267948966 rad pos: -27.5,-80.5 @@ -110554,7 +105631,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16490 + - uid: 16522 components: - rot: -1.5707963267948966 rad pos: 8.5,-42.5 @@ -110562,14 +105639,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16491 + - uid: 16523 components: - pos: -23.5,-79.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16492 + - uid: 16524 components: - rot: 1.5707963267948966 rad pos: -28.5,-80.5 @@ -110577,7 +105654,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16493 + - uid: 16525 components: - rot: 1.5707963267948966 rad pos: -26.5,-80.5 @@ -110585,7 +105662,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16494 + - uid: 16526 components: - rot: -1.5707963267948966 rad pos: 7.5,-42.5 @@ -110593,7 +105670,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16495 + - uid: 16527 components: - rot: -1.5707963267948966 rad pos: 5.5,-42.5 @@ -110601,7 +105678,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16496 + - uid: 16528 components: - rot: 3.141592653589793 rad pos: 14.5,-37.5 @@ -110609,7 +105686,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16497 + - uid: 16529 components: - rot: 1.5707963267948966 rad pos: 12.5,-43.5 @@ -110617,7 +105694,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16498 + - uid: 16530 components: - rot: 1.5707963267948966 rad pos: 14.5,-25.5 @@ -110625,7 +105702,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16499 + - uid: 16531 components: - rot: 1.5707963267948966 rad pos: 14.5,-43.5 @@ -110633,14 +105710,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16500 + - uid: 16532 components: - pos: 15.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16501 + - uid: 16533 components: - rot: 3.141592653589793 rad pos: 5.5,14.5 @@ -110648,7 +105725,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16502 + - uid: 16534 components: - rot: 3.141592653589793 rad pos: 5.5,15.5 @@ -110656,30 +105733,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16503 + - uid: 16535 components: - pos: -3.5,-27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16504 + - uid: 16536 components: - pos: 20.5,-18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16505 + - uid: 16537 components: - pos: 20.5,-20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16506 + - uid: 16538 components: - rot: -1.5707963267948966 rad pos: 39.5,15.5 @@ -110687,7 +105762,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16507 + - uid: 16539 components: - rot: -1.5707963267948966 rad pos: 14.5,-0.5 @@ -110695,7 +105770,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16508 + - uid: 16540 components: - rot: -1.5707963267948966 rad pos: 37.5,15.5 @@ -110703,7 +105778,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16509 + - uid: 16541 components: - rot: 3.141592653589793 rad pos: -21.5,-85.5 @@ -110711,7 +105786,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16510 + - uid: 16542 components: - rot: 3.141592653589793 rad pos: -21.5,-87.5 @@ -110719,7 +105794,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16511 + - uid: 16543 components: - rot: -1.5707963267948966 rad pos: -22.5,-88.5 @@ -110727,7 +105802,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16512 + - uid: 16544 components: - rot: -1.5707963267948966 rad pos: -23.5,-88.5 @@ -110735,14 +105810,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16513 + - uid: 16545 components: - pos: -24.5,-86.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16514 + - uid: 16546 components: - rot: -1.5707963267948966 rad pos: 27.5,-29.5 @@ -110750,9 +105825,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16515 + - uid: 16547 components: - rot: -1.5707963267948966 rad pos: 31.5,-6.5 @@ -110760,28 +105833,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16516 + - uid: 16548 components: - pos: -3.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16517 + - uid: 16549 components: - pos: -3.5,-6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16518 + - uid: 16550 components: - pos: -5.5,-8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16519 + - uid: 16551 components: - rot: -1.5707963267948966 rad pos: 22.5,10.5 @@ -110789,7 +105862,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16520 + - uid: 16552 components: - rot: -1.5707963267948966 rad pos: 25.5,10.5 @@ -110797,7 +105870,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16521 + - uid: 16553 components: - rot: -1.5707963267948966 rad pos: 16.5,-29.5 @@ -110805,7 +105878,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16522 + - uid: 16554 components: - rot: -1.5707963267948966 rad pos: 21.5,-29.5 @@ -110813,7 +105886,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16523 + - uid: 16555 components: - rot: -1.5707963267948966 rad pos: -10.5,-41.5 @@ -110821,7 +105894,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16524 + - uid: 16556 components: - rot: 3.141592653589793 rad pos: -5.5,-30.5 @@ -110829,28 +105902,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16525 + - uid: 16557 components: - pos: -3.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16526 + - uid: 16558 components: - pos: -19.5,-60.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16527 + - uid: 16559 components: - pos: -19.5,-59.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16528 + - uid: 16560 components: - rot: 1.5707963267948966 rad pos: 19.5,-41.5 @@ -110858,7 +105931,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16529 + - uid: 16561 components: - rot: 1.5707963267948966 rad pos: -0.5,-25.5 @@ -110866,7 +105939,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16530 + - uid: 16562 components: - rot: 1.5707963267948966 rad pos: -0.5,-27.5 @@ -110874,7 +105947,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16531 + - uid: 16563 components: - rot: 1.5707963267948966 rad pos: -1.5,-27.5 @@ -110882,7 +105955,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16532 + - uid: 16564 components: - rot: 1.5707963267948966 rad pos: 1.5,-27.5 @@ -110890,7 +105963,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16533 + - uid: 16565 components: - rot: 1.5707963267948966 rad pos: -7.5,-27.5 @@ -110898,14 +105971,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16534 + - uid: 16566 components: - pos: -3.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16535 + - uid: 16567 components: - rot: 3.141592653589793 rad pos: 34.5,-39.5 @@ -110913,7 +105986,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16536 + - uid: 16568 components: - rot: 3.141592653589793 rad pos: 34.5,-40.5 @@ -110921,28 +105994,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16537 + - uid: 16569 components: - pos: 34.5,-22.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16538 + - uid: 16570 components: - pos: -18.5,28.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16539 + - uid: 16571 components: - pos: -18.5,26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16540 + - uid: 16572 components: - rot: -1.5707963267948966 rad pos: 3.5,-41.5 @@ -110950,7 +106023,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16541 + - uid: 16573 components: - rot: -1.5707963267948966 rad pos: -7.5,-41.5 @@ -110958,7 +106031,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16542 + - uid: 16574 components: - rot: 1.5707963267948966 rad pos: -3.5,-41.5 @@ -110966,7 +106039,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16543 + - uid: 16575 components: - rot: -1.5707963267948966 rad pos: -2.5,-14.5 @@ -110974,9 +106047,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16544 + - uid: 16576 components: - rot: -1.5707963267948966 rad pos: 31.5,-42.5 @@ -110984,16 +106055,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16545 + - uid: 16577 components: - pos: -23.5,-74.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16546 + - uid: 16578 components: - rot: -1.5707963267948966 rad pos: -22.5,-73.5 @@ -111001,7 +106070,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16547 + - uid: 16579 components: - rot: 1.5707963267948966 rad pos: 33.5,-18.5 @@ -111009,7 +106078,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16548 + - uid: 16580 components: - rot: 1.5707963267948966 rad pos: 32.5,-18.5 @@ -111017,7 +106086,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16549 + - uid: 16581 components: - rot: 3.141592653589793 rad pos: 34.5,-19.5 @@ -111025,7 +106094,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16550 + - uid: 16582 components: - rot: 3.141592653589793 rad pos: 34.5,-20.5 @@ -111033,7 +106102,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16551 + - uid: 16583 components: - rot: 3.141592653589793 rad pos: 36.5,-20.5 @@ -111041,7 +106110,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16552 + - uid: 16584 components: - rot: 3.141592653589793 rad pos: 36.5,-19.5 @@ -111049,7 +106118,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16553 + - uid: 16585 components: - rot: 3.141592653589793 rad pos: 36.5,-18.5 @@ -111057,7 +106126,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16554 + - uid: 16586 components: - rot: 3.141592653589793 rad pos: 36.5,-17.5 @@ -111065,7 +106134,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16555 + - uid: 16587 components: - rot: -1.5707963267948966 rad pos: 35.5,-16.5 @@ -111073,7 +106142,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16556 + - uid: 16588 components: - rot: -1.5707963267948966 rad pos: 34.5,-16.5 @@ -111081,14 +106150,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16557 + - uid: 16589 components: - pos: 25.5,-6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16558 + - uid: 16590 components: - rot: 3.141592653589793 rad pos: 24.5,-45.5 @@ -111096,7 +106165,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16559 + - uid: 16591 components: - rot: 3.141592653589793 rad pos: 24.5,-44.5 @@ -111104,7 +106173,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16560 + - uid: 16592 components: - rot: 3.141592653589793 rad pos: 26.5,-45.5 @@ -111112,7 +106181,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16561 + - uid: 16593 components: - rot: 3.141592653589793 rad pos: 26.5,-44.5 @@ -111120,7 +106189,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16562 + - uid: 16594 components: - rot: 3.141592653589793 rad pos: 26.5,-43.5 @@ -111128,7 +106197,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16563 + - uid: 16595 components: - rot: -1.5707963267948966 rad pos: 40.5,-25.5 @@ -111136,7 +106205,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16564 + - uid: 16596 components: - rot: -1.5707963267948966 rad pos: 35.5,-26.5 @@ -111144,7 +106213,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16565 + - uid: 16597 components: - rot: -1.5707963267948966 rad pos: 36.5,-26.5 @@ -111152,7 +106221,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16566 + - uid: 16598 components: - rot: -1.5707963267948966 rad pos: 37.5,-26.5 @@ -111160,7 +106229,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16567 + - uid: 16599 components: - rot: -1.5707963267948966 rad pos: 38.5,-26.5 @@ -111168,7 +106237,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16568 + - uid: 16600 components: - rot: -1.5707963267948966 rad pos: 39.5,-26.5 @@ -111176,7 +106245,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16569 + - uid: 16601 components: - rot: -1.5707963267948966 rad pos: 40.5,-26.5 @@ -111184,14 +106253,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16570 + - uid: 16602 components: - pos: 36.5,-28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16571 + - uid: 16603 components: - rot: -1.5707963267948966 rad pos: 39.5,-25.5 @@ -111199,7 +106268,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16572 + - uid: 16604 components: - rot: -1.5707963267948966 rad pos: 38.5,-25.5 @@ -111207,7 +106276,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16573 + - uid: 16605 components: - rot: -1.5707963267948966 rad pos: 37.5,-25.5 @@ -111215,21 +106284,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16574 + - uid: 16606 components: - pos: 34.5,-28.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16575 + - uid: 16607 components: - pos: 36.5,-27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16576 + - uid: 16608 components: - rot: 1.5707963267948966 rad pos: 45.5,-28.5 @@ -111237,72 +106306,70 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16577 + - uid: 16609 components: - pos: -27.5,-78.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16578 + - uid: 16610 components: - pos: -20.5,-82.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16579 + - uid: 16611 components: - pos: -20.5,-81.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16580 + - uid: 16612 components: - pos: -20.5,-79.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16581 + - uid: 16613 components: - pos: -20.5,-78.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16582 + - uid: 16614 components: - pos: -20.5,-77.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16583 + - uid: 16615 components: - pos: -20.5,-76.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16584 + - uid: 16616 components: - pos: -20.5,-73.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16585 + - uid: 16617 components: - pos: -25.5,-74.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16586 + - uid: 16618 components: - rot: 1.5707963267948966 rad pos: -23.5,-72.5 @@ -111310,7 +106377,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16587 + - uid: 16619 components: - rot: 1.5707963267948966 rad pos: -22.5,-72.5 @@ -111318,7 +106385,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16588 + - uid: 16620 components: - rot: 3.141592653589793 rad pos: -20.5,-71.5 @@ -111326,7 +106393,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16589 + - uid: 16621 components: - rot: 1.5707963267948966 rad pos: -21.5,-72.5 @@ -111334,21 +106401,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16590 + - uid: 16622 components: - pos: -23.5,-84.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16591 + - uid: 16623 components: - pos: -23.5,-83.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16592 + - uid: 16624 components: - rot: 1.5707963267948966 rad pos: -27.5,-78.5 @@ -111356,7 +106423,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16593 + - uid: 16625 components: - rot: 1.5707963267948966 rad pos: -26.5,-78.5 @@ -111364,7 +106431,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16594 + - uid: 16626 components: - rot: 3.141592653589793 rad pos: -18.5,-76.5 @@ -111372,7 +106439,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16595 + - uid: 16627 components: - rot: 3.141592653589793 rad pos: -18.5,-75.5 @@ -111380,7 +106447,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16596 + - uid: 16628 components: - rot: -1.5707963267948966 rad pos: -21.5,-73.5 @@ -111388,7 +106455,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16597 + - uid: 16629 components: - rot: 3.141592653589793 rad pos: -25.5,-76.5 @@ -111396,14 +106463,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16598 + - uid: 16630 components: - pos: -20.5,-80.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16599 + - uid: 16631 components: - rot: 3.141592653589793 rad pos: -18.5,-70.5 @@ -111411,62 +106478,56 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16600 + - uid: 16632 components: - pos: 9.5,-43.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16601 + - uid: 16633 components: - pos: 9.5,-44.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16602 + - uid: 16634 components: - pos: 9.5,-45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16603 + - uid: 16635 components: - pos: 10.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16604 + - uid: 16636 components: - pos: 10.5,-43.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16605 + - uid: 16637 components: - pos: 10.5,-44.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16606 + - uid: 16638 components: - pos: 10.5,-45.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16607 + - uid: 16639 components: - rot: -1.5707963267948966 rad pos: -21.5,-88.5 @@ -111474,7 +106535,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16608 + - uid: 16640 components: - rot: 3.141592653589793 rad pos: -18.5,-69.5 @@ -111482,7 +106543,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16609 + - uid: 16641 components: - rot: 3.141592653589793 rad pos: -18.5,-68.5 @@ -111490,9 +106551,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16610 + - uid: 16642 components: - rot: 3.141592653589793 rad pos: -20.5,-68.5 @@ -111500,9 +106559,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16611 + - uid: 16643 components: - rot: 3.141592653589793 rad pos: -20.5,-67.5 @@ -111510,7 +106567,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16612 + - uid: 16644 components: - rot: 3.141592653589793 rad pos: -18.5,-66.5 @@ -111518,7 +106575,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16613 + - uid: 16645 components: - rot: 3.141592653589793 rad pos: -18.5,-65.5 @@ -111526,9 +106583,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16614 + - uid: 16646 components: - rot: 3.141592653589793 rad pos: -20.5,-65.5 @@ -111536,9 +106591,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16615 + - uid: 16647 components: - rot: 3.141592653589793 rad pos: -20.5,-64.5 @@ -111546,39 +106599,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16616 + - uid: 16648 components: - pos: -20.5,-62.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16617 + - uid: 16649 components: - pos: -18.5,-63.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16618 + - uid: 16650 components: - pos: -18.5,-62.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16619 + - uid: 16651 components: - pos: -18.5,-61.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16620 + - uid: 16652 components: - rot: 3.141592653589793 rad pos: 36.5,-30.5 @@ -111586,7 +106635,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16621 + - uid: 16653 components: - rot: 3.141592653589793 rad pos: 36.5,-32.5 @@ -111594,7 +106643,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16622 + - uid: 16654 components: - rot: 3.141592653589793 rad pos: 36.5,-33.5 @@ -111602,7 +106651,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16623 + - uid: 16655 components: - rot: 3.141592653589793 rad pos: 36.5,-34.5 @@ -111610,7 +106659,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16624 + - uid: 16656 components: - rot: 3.141592653589793 rad pos: 36.5,-35.5 @@ -111618,7 +106667,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16625 + - uid: 16657 components: - rot: 3.141592653589793 rad pos: 36.5,-36.5 @@ -111626,7 +106675,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16626 + - uid: 16658 components: - rot: 3.141592653589793 rad pos: 36.5,-37.5 @@ -111634,7 +106683,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16627 + - uid: 16659 components: - rot: 3.141592653589793 rad pos: 36.5,-38.5 @@ -111642,7 +106691,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16628 + - uid: 16660 components: - rot: 3.141592653589793 rad pos: 36.5,-39.5 @@ -111650,7 +106699,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16629 + - uid: 16661 components: - rot: 3.141592653589793 rad pos: 36.5,-40.5 @@ -111658,7 +106707,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16630 + - uid: 16662 components: - rot: 3.141592653589793 rad pos: 36.5,-41.5 @@ -111666,7 +106715,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16631 + - uid: 16663 components: - rot: 3.141592653589793 rad pos: 36.5,-42.5 @@ -111674,7 +106723,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16632 + - uid: 16664 components: - rot: 1.5707963267948966 rad pos: 35.5,-43.5 @@ -111682,7 +106731,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16633 + - uid: 16665 components: - rot: 1.5707963267948966 rad pos: 34.5,-43.5 @@ -111690,7 +106739,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16634 + - uid: 16666 components: - rot: 1.5707963267948966 rad pos: 33.5,-43.5 @@ -111698,7 +106747,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16635 + - uid: 16667 components: - rot: 1.5707963267948966 rad pos: 32.5,-43.5 @@ -111706,7 +106755,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16636 + - uid: 16668 components: - rot: -1.5707963267948966 rad pos: 35.5,0.5 @@ -111714,7 +106763,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16637 + - uid: 16669 components: - rot: -1.5707963267948966 rad pos: 36.5,0.5 @@ -111722,7 +106771,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16638 + - uid: 16670 components: - rot: 1.5707963267948966 rad pos: 37.5,1.5 @@ -111730,7 +106779,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16639 + - uid: 16671 components: - rot: -1.5707963267948966 rad pos: 38.5,0.5 @@ -111738,7 +106787,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16640 + - uid: 16672 components: - rot: -1.5707963267948966 rad pos: 39.5,0.5 @@ -111746,7 +106795,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16641 + - uid: 16673 components: - rot: 1.5707963267948966 rad pos: 20.5,12.5 @@ -111754,21 +106803,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16642 + - uid: 16674 components: - pos: 11.5,18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16643 + - uid: 16675 components: - pos: 11.5,17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16644 + - uid: 16676 components: - rot: 3.141592653589793 rad pos: 7.5,18.5 @@ -111776,9 +106825,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16645 + - uid: 16677 components: - rot: 3.141592653589793 rad pos: -11.5,-37.5 @@ -111786,7 +106833,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16646 + - uid: 16678 components: - rot: 3.141592653589793 rad pos: -11.5,-36.5 @@ -111794,7 +106841,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16647 + - uid: 16679 components: - rot: 3.141592653589793 rad pos: -11.5,-35.5 @@ -111802,7 +106849,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16648 + - uid: 16680 components: - rot: 3.141592653589793 rad pos: -11.5,-34.5 @@ -111810,7 +106857,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16649 + - uid: 16681 components: - rot: 3.141592653589793 rad pos: -11.5,-33.5 @@ -111818,7 +106865,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16650 + - uid: 16682 components: - rot: 3.141592653589793 rad pos: -9.5,-38.5 @@ -111826,7 +106873,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16651 + - uid: 16683 components: - rot: -1.5707963267948966 rad pos: -10.5,-37.5 @@ -111834,7 +106881,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16652 + - uid: 16684 components: - rot: -1.5707963267948966 rad pos: -11.5,-37.5 @@ -111842,7 +106889,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16653 + - uid: 16685 components: - rot: -1.5707963267948966 rad pos: -12.5,-37.5 @@ -111850,7 +106897,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16654 + - uid: 16686 components: - rot: -1.5707963267948966 rad pos: -13.5,-37.5 @@ -111858,9 +106905,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16655 + - uid: 16687 components: - rot: 3.141592653589793 rad pos: -9.5,-36.5 @@ -111868,7 +106913,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16656 + - uid: 16688 components: - rot: 3.141592653589793 rad pos: -9.5,-35.5 @@ -111876,7 +106921,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16657 + - uid: 16689 components: - rot: 3.141592653589793 rad pos: -9.5,-34.5 @@ -111884,9 +106929,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16658 + - uid: 16690 components: - rot: 3.141592653589793 rad pos: -9.5,-33.5 @@ -111894,7 +106937,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16659 + - uid: 16691 components: - rot: -1.5707963267948966 rad pos: -13.5,-38.5 @@ -111902,14 +106945,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16660 + - uid: 16692 components: - pos: 11.5,10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16661 + - uid: 16693 components: - rot: 1.5707963267948966 rad pos: -4.5,-10.5 @@ -111917,7 +106960,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16662 + - uid: 16694 components: - rot: 1.5707963267948966 rad pos: -3.5,-10.5 @@ -111925,7 +106968,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16663 + - uid: 16695 components: - rot: 1.5707963267948966 rad pos: -2.5,-10.5 @@ -111933,9 +106976,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16664 + - uid: 16696 components: - rot: 1.5707963267948966 rad pos: -1.5,-10.5 @@ -111943,9 +106984,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16665 + - uid: 16697 components: - rot: -1.5707963267948966 rad pos: 35.5,-41.5 @@ -111953,7 +106992,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16666 + - uid: 16698 components: - rot: -1.5707963267948966 rad pos: 36.5,-41.5 @@ -111961,7 +107000,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16667 + - uid: 16699 components: - rot: -1.5707963267948966 rad pos: 37.5,-41.5 @@ -111969,7 +107008,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16668 + - uid: 16700 components: - rot: -1.5707963267948966 rad pos: 39.5,-41.5 @@ -111977,7 +107016,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16669 + - uid: 16701 components: - rot: -1.5707963267948966 rad pos: 38.5,-41.5 @@ -111985,7 +107024,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16670 + - uid: 16702 components: - rot: -1.5707963267948966 rad pos: 40.5,-41.5 @@ -111993,7 +107032,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16671 + - uid: 16703 components: - rot: -1.5707963267948966 rad pos: 41.5,-41.5 @@ -112001,7 +107040,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16672 + - uid: 16704 components: - rot: -1.5707963267948966 rad pos: 37.5,-43.5 @@ -112009,7 +107048,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16673 + - uid: 16705 components: - rot: -1.5707963267948966 rad pos: 38.5,-43.5 @@ -112017,7 +107056,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16674 + - uid: 16706 components: - rot: -1.5707963267948966 rad pos: 39.5,-43.5 @@ -112025,7 +107064,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16675 + - uid: 16707 components: - rot: -1.5707963267948966 rad pos: 40.5,-43.5 @@ -112033,7 +107072,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16676 + - uid: 16708 components: - rot: -1.5707963267948966 rad pos: 41.5,-43.5 @@ -112041,35 +107080,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16677 + - uid: 16709 components: - pos: 21.5,-43.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16678 + - uid: 16710 components: - pos: 21.5,-45.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16679 + - uid: 16711 components: - pos: 20.5,-45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16680 + - uid: 16712 components: - pos: 20.5,-46.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16681 + - uid: 16713 components: - rot: 3.141592653589793 rad pos: 40.5,7.5 @@ -112077,7 +107116,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16682 + - uid: 16714 components: - rot: 3.141592653589793 rad pos: 30.5,16.5 @@ -112085,7 +107124,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16683 + - uid: 16715 components: - rot: 3.141592653589793 rad pos: 30.5,15.5 @@ -112093,7 +107132,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16684 + - uid: 16716 components: - rot: 3.141592653589793 rad pos: 30.5,20.5 @@ -112101,7 +107140,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16685 + - uid: 16717 components: - rot: 3.141592653589793 rad pos: 30.5,21.5 @@ -112109,7 +107148,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16686 + - uid: 16718 components: - rot: 3.141592653589793 rad pos: 30.5,22.5 @@ -112117,7 +107156,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16687 + - uid: 16719 components: - rot: 3.141592653589793 rad pos: 30.5,23.5 @@ -112125,7 +107164,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16688 + - uid: 16720 components: - rot: 3.141592653589793 rad pos: 30.5,24.5 @@ -112133,7 +107172,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16689 + - uid: 16721 components: - rot: 3.141592653589793 rad pos: 30.5,25.5 @@ -112141,7 +107180,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16690 + - uid: 16722 components: - rot: 3.141592653589793 rad pos: 30.5,26.5 @@ -112149,7 +107188,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16691 + - uid: 16723 components: - rot: 3.141592653589793 rad pos: 30.5,27.5 @@ -112157,7 +107196,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16692 + - uid: 16724 components: - rot: 3.141592653589793 rad pos: 28.5,18.5 @@ -112165,7 +107204,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16693 + - uid: 16725 components: - rot: 3.141592653589793 rad pos: 28.5,19.5 @@ -112173,7 +107212,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16694 + - uid: 16726 components: - rot: 3.141592653589793 rad pos: 28.5,20.5 @@ -112181,7 +107220,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16695 + - uid: 16727 components: - rot: 3.141592653589793 rad pos: 28.5,21.5 @@ -112189,7 +107228,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16696 + - uid: 16728 components: - rot: 3.141592653589793 rad pos: 28.5,23.5 @@ -112197,7 +107236,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16697 + - uid: 16729 components: - rot: 3.141592653589793 rad pos: 28.5,24.5 @@ -112205,7 +107244,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16698 + - uid: 16730 components: - rot: 3.141592653589793 rad pos: 28.5,25.5 @@ -112213,7 +107252,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16699 + - uid: 16731 components: - rot: 3.141592653589793 rad pos: 28.5,26.5 @@ -112221,7 +107260,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16700 + - uid: 16732 components: - rot: 3.141592653589793 rad pos: 28.5,27.5 @@ -112229,7 +107268,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16701 + - uid: 16733 components: - rot: 1.5707963267948966 rad pos: 40.5,15.5 @@ -112237,7 +107276,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16702 + - uid: 16734 components: - rot: -1.5707963267948966 rad pos: 43.5,15.5 @@ -112245,7 +107284,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16703 + - uid: 16735 components: - rot: -1.5707963267948966 rad pos: 43.5,14.5 @@ -112253,7 +107292,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16704 + - uid: 16736 components: - rot: -1.5707963267948966 rad pos: 42.5,14.5 @@ -112261,7 +107300,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16705 + - uid: 16737 components: - rot: -1.5707963267948966 rad pos: 40.5,14.5 @@ -112269,7 +107308,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16706 + - uid: 16738 components: - rot: -1.5707963267948966 rad pos: 39.5,14.5 @@ -112277,7 +107316,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16707 + - uid: 16739 components: - rot: -1.5707963267948966 rad pos: 38.5,14.5 @@ -112285,7 +107324,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16708 + - uid: 16740 components: - rot: -1.5707963267948966 rad pos: 37.5,14.5 @@ -112293,7 +107332,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16709 + - uid: 16741 components: - rot: -1.5707963267948966 rad pos: 36.5,14.5 @@ -112301,7 +107340,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16710 + - uid: 16742 components: - rot: -1.5707963267948966 rad pos: 35.5,14.5 @@ -112309,7 +107348,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16711 + - uid: 16743 components: - rot: -1.5707963267948966 rad pos: 34.5,14.5 @@ -112317,7 +107356,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16712 + - uid: 16744 components: - rot: -1.5707963267948966 rad pos: 33.5,14.5 @@ -112325,7 +107364,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16713 + - uid: 16745 components: - rot: -1.5707963267948966 rad pos: 32.5,14.5 @@ -112333,7 +107372,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16714 + - uid: 16746 components: - rot: -1.5707963267948966 rad pos: 31.5,14.5 @@ -112341,7 +107380,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16715 + - uid: 16747 components: - rot: 1.5707963267948966 rad pos: 44.5,14.5 @@ -112349,7 +107388,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16716 + - uid: 16748 components: - rot: 1.5707963267948966 rad pos: 45.5,15.5 @@ -112357,7 +107396,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16717 + - uid: 16749 components: - rot: 1.5707963267948966 rad pos: 46.5,15.5 @@ -112365,7 +107404,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16718 + - uid: 16750 components: - rot: 1.5707963267948966 rad pos: 46.5,14.5 @@ -112373,7 +107412,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16719 + - uid: 16751 components: - rot: 1.5707963267948966 rad pos: 48.5,15.5 @@ -112381,7 +107420,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16720 + - uid: 16752 components: - rot: 1.5707963267948966 rad pos: 48.5,14.5 @@ -112389,7 +107428,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16721 + - uid: 16753 components: - rot: -1.5707963267948966 rad pos: 49.5,14.5 @@ -112397,7 +107436,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16722 + - uid: 16754 components: - rot: 3.141592653589793 rad pos: 49.5,16.5 @@ -112405,7 +107444,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16723 + - uid: 16755 components: - rot: 3.141592653589793 rad pos: 49.5,17.5 @@ -112413,7 +107452,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16724 + - uid: 16756 components: - rot: 3.141592653589793 rad pos: 49.5,18.5 @@ -112421,7 +107460,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16725 + - uid: 16757 components: - rot: 3.141592653589793 rad pos: 49.5,19.5 @@ -112429,7 +107468,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16726 + - uid: 16758 components: - rot: -1.5707963267948966 rad pos: 50.5,20.5 @@ -112437,7 +107476,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16727 + - uid: 16759 components: - rot: 3.141592653589793 rad pos: 50.5,20.5 @@ -112445,7 +107484,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16728 + - uid: 16760 components: - rot: 3.141592653589793 rad pos: 50.5,18.5 @@ -112453,7 +107492,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16729 + - uid: 16761 components: - rot: 3.141592653589793 rad pos: 50.5,17.5 @@ -112461,7 +107500,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16730 + - uid: 16762 components: - rot: 3.141592653589793 rad pos: 50.5,16.5 @@ -112469,7 +107508,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16731 + - uid: 16763 components: - rot: 3.141592653589793 rad pos: 50.5,15.5 @@ -112477,7 +107516,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16732 + - uid: 16764 components: - rot: 1.5707963267948966 rad pos: 48.5,20.5 @@ -112485,7 +107524,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16733 + - uid: 16765 components: - rot: 1.5707963267948966 rad pos: 47.5,20.5 @@ -112493,7 +107532,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16734 + - uid: 16766 components: - rot: 1.5707963267948966 rad pos: 49.5,21.5 @@ -112501,7 +107540,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16735 + - uid: 16767 components: - rot: 1.5707963267948966 rad pos: 48.5,21.5 @@ -112509,7 +107548,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16736 + - uid: 16768 components: - rot: 3.141592653589793 rad pos: 49.5,21.5 @@ -112517,7 +107556,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16737 + - uid: 16769 components: - rot: 3.141592653589793 rad pos: 49.5,22.5 @@ -112525,7 +107564,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16738 + - uid: 16770 components: - rot: 3.141592653589793 rad pos: 50.5,22.5 @@ -112533,7 +107572,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16739 + - uid: 16771 components: - rot: 3.141592653589793 rad pos: 46.5,21.5 @@ -112541,7 +107580,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16740 + - uid: 16772 components: - rot: 3.141592653589793 rad pos: 46.5,22.5 @@ -112549,7 +107588,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16741 + - uid: 16773 components: - rot: 3.141592653589793 rad pos: 47.5,22.5 @@ -112557,7 +107596,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16742 + - uid: 16774 components: - rot: 1.5707963267948966 rad pos: 51.5,21.5 @@ -112565,7 +107604,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16743 + - uid: 16775 components: - rot: 1.5707963267948966 rad pos: 52.5,21.5 @@ -112573,7 +107612,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16744 + - uid: 16776 components: - rot: 3.141592653589793 rad pos: 53.5,22.5 @@ -112581,7 +107620,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16745 + - uid: 16777 components: - rot: 3.141592653589793 rad pos: 52.5,22.5 @@ -112589,7 +107628,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16746 + - uid: 16778 components: - rot: 3.141592653589793 rad pos: 52.5,21.5 @@ -112597,7 +107636,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16747 + - uid: 16779 components: - rot: 1.5707963267948966 rad pos: 51.5,20.5 @@ -112605,7 +107644,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16748 + - uid: 16780 components: - rot: 1.5707963267948966 rad pos: 53.5,20.5 @@ -112613,7 +107652,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16749 + - uid: 16781 components: - rot: 1.5707963267948966 rad pos: 54.5,20.5 @@ -112621,7 +107660,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16750 + - uid: 16782 components: - rot: 1.5707963267948966 rad pos: 56.5,20.5 @@ -112629,7 +107668,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16751 + - uid: 16783 components: - rot: 1.5707963267948966 rad pos: 57.5,20.5 @@ -112637,7 +107676,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16752 + - uid: 16784 components: - rot: 3.141592653589793 rad pos: 55.5,21.5 @@ -112645,7 +107684,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16753 + - uid: 16785 components: - rot: 3.141592653589793 rad pos: 55.5,22.5 @@ -112653,7 +107692,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16754 + - uid: 16786 components: - rot: 3.141592653589793 rad pos: 58.5,21.5 @@ -112661,7 +107700,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16755 + - uid: 16787 components: - rot: 3.141592653589793 rad pos: 58.5,22.5 @@ -112669,7 +107708,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16756 + - uid: 16788 components: - rot: 1.5707963267948966 rad pos: 54.5,21.5 @@ -112677,7 +107716,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16757 + - uid: 16789 components: - rot: 1.5707963267948966 rad pos: 55.5,21.5 @@ -112685,7 +107724,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16758 + - uid: 16790 components: - rot: 1.5707963267948966 rad pos: 57.5,21.5 @@ -112693,7 +107732,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16759 + - uid: 16791 components: - rot: 1.5707963267948966 rad pos: 58.5,21.5 @@ -112701,7 +107740,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16760 + - uid: 16792 components: - rot: 3.141592653589793 rad pos: 56.5,22.5 @@ -112709,7 +107748,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16761 + - uid: 16793 components: - rot: 3.141592653589793 rad pos: 59.5,22.5 @@ -112717,7 +107756,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16762 + - uid: 16794 components: - rot: 3.141592653589793 rad pos: 59.5,20.5 @@ -112725,7 +107764,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16763 + - uid: 16795 components: - rot: 3.141592653589793 rad pos: 59.5,19.5 @@ -112733,7 +107772,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16764 + - uid: 16796 components: - rot: 1.5707963267948966 rad pos: 60.5,18.5 @@ -112741,7 +107780,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16765 + - uid: 16797 components: - rot: -1.5707963267948966 rad pos: 59.5,19.5 @@ -112749,7 +107788,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16766 + - uid: 16798 components: - rot: -1.5707963267948966 rad pos: 60.5,19.5 @@ -112757,7 +107796,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16767 + - uid: 16799 components: - rot: -1.5707963267948966 rad pos: 60.5,16.5 @@ -112765,7 +107804,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16768 + - uid: 16800 components: - rot: -1.5707963267948966 rad pos: 59.5,16.5 @@ -112773,7 +107812,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16769 + - uid: 16801 components: - rot: -1.5707963267948966 rad pos: 60.5,15.5 @@ -112781,21 +107820,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16770 + - uid: 16802 components: - pos: 49.5,14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16771 + - uid: 16803 components: - pos: 49.5,13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16772 + - uid: 16804 components: - rot: -1.5707963267948966 rad pos: 51.5,13.5 @@ -112803,9 +107842,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16773 + - uid: 16805 components: - rot: -1.5707963267948966 rad pos: 50.5,12.5 @@ -112813,7 +107850,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16774 + - uid: 16806 components: - rot: -1.5707963267948966 rad pos: 51.5,12.5 @@ -112821,81 +107858,77 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16775 + - uid: 16807 components: - pos: 58.5,18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16776 + - uid: 16808 components: - pos: 58.5,17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16777 + - uid: 16809 components: - pos: 59.5,17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16778 + - uid: 16810 components: - pos: 59.5,16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16779 + - uid: 16811 components: - pos: 58.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16780 + - uid: 16812 components: - pos: 58.5,14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16781 + - uid: 16813 components: - pos: 58.5,13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16782 + - uid: 16814 components: - pos: 59.5,14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16783 + - uid: 16815 components: - pos: 59.5,13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16784 + - uid: 16816 components: - pos: 59.5,12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16785 + - uid: 16817 components: - rot: 1.5707963267948966 rad pos: 44.5,20.5 @@ -112903,7 +107936,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16786 + - uid: 16818 components: - rot: 1.5707963267948966 rad pos: 43.5,20.5 @@ -112911,7 +107944,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16787 + - uid: 16819 components: - rot: 1.5707963267948966 rad pos: 42.5,20.5 @@ -112919,7 +107952,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16788 + - uid: 16820 components: - rot: 1.5707963267948966 rad pos: 41.5,20.5 @@ -112927,7 +107960,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16789 + - uid: 16821 components: - rot: -1.5707963267948966 rad pos: 39.5,20.5 @@ -112935,7 +107968,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16790 + - uid: 16822 components: - rot: -1.5707963267948966 rad pos: 38.5,20.5 @@ -112943,7 +107976,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16791 + - uid: 16823 components: - rot: -1.5707963267948966 rad pos: 37.5,20.5 @@ -112951,7 +107984,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16792 + - uid: 16824 components: - rot: -1.5707963267948966 rad pos: 36.5,20.5 @@ -112959,7 +107992,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16793 + - uid: 16825 components: - rot: -1.5707963267948966 rad pos: 35.5,20.5 @@ -112967,7 +108000,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16794 + - uid: 16826 components: - rot: -1.5707963267948966 rad pos: 49.5,19.5 @@ -112975,7 +108008,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16795 + - uid: 16827 components: - rot: -1.5707963267948966 rad pos: 48.5,19.5 @@ -112983,7 +108016,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16796 + - uid: 16828 components: - rot: -1.5707963267948966 rad pos: 47.5,19.5 @@ -112991,7 +108024,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16797 + - uid: 16829 components: - rot: -1.5707963267948966 rad pos: 46.5,19.5 @@ -112999,7 +108032,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16798 + - uid: 16830 components: - rot: -1.5707963267948966 rad pos: 45.5,19.5 @@ -113007,7 +108040,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16799 + - uid: 16831 components: - rot: -1.5707963267948966 rad pos: 43.5,19.5 @@ -113015,7 +108048,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16800 + - uid: 16832 components: - rot: -1.5707963267948966 rad pos: 42.5,19.5 @@ -113023,7 +108056,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16801 + - uid: 16833 components: - rot: -1.5707963267948966 rad pos: 41.5,19.5 @@ -113031,7 +108064,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16802 + - uid: 16834 components: - rot: -1.5707963267948966 rad pos: 40.5,19.5 @@ -113039,7 +108072,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16803 + - uid: 16835 components: - rot: -1.5707963267948966 rad pos: 38.5,19.5 @@ -113047,7 +108080,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16804 + - uid: 16836 components: - rot: -1.5707963267948966 rad pos: 37.5,19.5 @@ -113055,9 +108088,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16805 + - uid: 16837 components: - rot: -1.5707963267948966 rad pos: 36.5,19.5 @@ -113065,7 +108096,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16806 + - uid: 16838 components: - rot: -1.5707963267948966 rad pos: 35.5,19.5 @@ -113073,7 +108104,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16807 + - uid: 16839 components: - rot: -1.5707963267948966 rad pos: 39.5,1.5 @@ -113081,7 +108112,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16808 + - uid: 16840 components: - rot: -1.5707963267948966 rad pos: 40.5,1.5 @@ -113089,7 +108120,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16809 + - uid: 16841 components: - rot: -1.5707963267948966 rad pos: 41.5,1.5 @@ -113097,7 +108128,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16810 + - uid: 16842 components: - rot: -1.5707963267948966 rad pos: 43.5,1.5 @@ -113105,7 +108136,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16811 + - uid: 16843 components: - rot: -1.5707963267948966 rad pos: 41.5,0.5 @@ -113113,7 +108144,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16812 + - uid: 16844 components: - rot: -1.5707963267948966 rad pos: 42.5,0.5 @@ -113121,7 +108152,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16813 + - uid: 16845 components: - rot: -1.5707963267948966 rad pos: 43.5,0.5 @@ -113129,7 +108160,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16814 + - uid: 16846 components: - rot: -1.5707963267948966 rad pos: 44.5,1.5 @@ -113137,7 +108168,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16815 + - uid: 16847 components: - rot: -1.5707963267948966 rad pos: 45.5,1.5 @@ -113145,7 +108176,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16816 + - uid: 16848 components: - rot: -1.5707963267948966 rad pos: 46.5,1.5 @@ -113153,7 +108184,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16817 + - uid: 16849 components: - rot: -1.5707963267948966 rad pos: 47.5,1.5 @@ -113161,7 +108192,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16818 + - uid: 16850 components: - rot: -1.5707963267948966 rad pos: 48.5,1.5 @@ -113169,7 +108200,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16819 + - uid: 16851 components: - rot: -1.5707963267948966 rad pos: 49.5,1.5 @@ -113177,7 +108208,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16820 + - uid: 16852 components: - rot: -1.5707963267948966 rad pos: 50.5,1.5 @@ -113185,7 +108216,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16821 + - uid: 16853 components: - rot: -1.5707963267948966 rad pos: 51.5,1.5 @@ -113193,7 +108224,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16822 + - uid: 16854 components: - rot: -1.5707963267948966 rad pos: 46.5,0.5 @@ -113201,7 +108232,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16823 + - uid: 16855 components: - rot: -1.5707963267948966 rad pos: 47.5,0.5 @@ -113209,7 +108240,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16824 + - uid: 16856 components: - rot: -1.5707963267948966 rad pos: 48.5,0.5 @@ -113217,7 +108248,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16825 + - uid: 16857 components: - rot: -1.5707963267948966 rad pos: 49.5,0.5 @@ -113225,7 +108256,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16826 + - uid: 16858 components: - rot: -1.5707963267948966 rad pos: 50.5,0.5 @@ -113233,7 +108264,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16827 + - uid: 16859 components: - rot: -1.5707963267948966 rad pos: 51.5,0.5 @@ -113241,7 +108272,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16828 + - uid: 16860 components: - rot: -1.5707963267948966 rad pos: 52.5,0.5 @@ -113249,7 +108280,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16829 + - uid: 16861 components: - rot: -1.5707963267948966 rad pos: 54.5,0.5 @@ -113257,7 +108288,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16830 + - uid: 16862 components: - rot: -1.5707963267948966 rad pos: 55.5,0.5 @@ -113265,9 +108296,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16831 + - uid: 16863 components: - rot: -1.5707963267948966 rad pos: 56.5,0.5 @@ -113275,9 +108304,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16832 + - uid: 16864 components: - rot: -1.5707963267948966 rad pos: 53.5,1.5 @@ -113285,7 +108312,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16833 + - uid: 16865 components: - rot: -1.5707963267948966 rad pos: 54.5,1.5 @@ -113293,7 +108320,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16834 + - uid: 16866 components: - rot: -1.5707963267948966 rad pos: 55.5,1.5 @@ -113301,107 +108328,105 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16835 + - uid: 16867 components: - pos: 52.5,0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16836 + - uid: 16868 components: - pos: 52.5,-0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16837 + - uid: 16869 components: - pos: 52.5,-1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16838 + - uid: 16870 components: - pos: 52.5,-2.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16839 + - uid: 16871 components: - pos: 52.5,-3.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16840 + - uid: 16872 components: - pos: 52.5,-4.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16841 + - uid: 16873 components: - pos: 52.5,-5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16842 + - uid: 16874 components: - pos: 52.5,-6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16843 + - uid: 16875 components: - pos: 52.5,-7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16844 + - uid: 16876 components: - pos: 53.5,-0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16845 + - uid: 16877 components: - pos: 53.5,-1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16846 + - uid: 16878 components: - pos: 53.5,-2.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16847 + - uid: 16879 components: - pos: 53.5,-3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16848 + - uid: 16880 components: - pos: 53.5,-4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16849 + - uid: 16881 components: - rot: 1.5707963267948966 rad pos: 54.5,-5.5 @@ -113409,7 +108434,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16850 + - uid: 16882 components: - rot: 1.5707963267948966 rad pos: 55.5,-5.5 @@ -113417,23 +108442,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16851 + - uid: 16883 components: - pos: 42.5,0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16852 + - uid: 16884 components: - pos: 42.5,-0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16853 + - uid: 16885 components: - rot: 3.141592653589793 rad pos: 44.5,-0.5 @@ -113441,9 +108464,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16854 + - uid: 16886 components: - rot: 3.141592653589793 rad pos: 44.5,-2.5 @@ -113451,7 +108472,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16855 + - uid: 16887 components: - rot: 1.5707963267948966 rad pos: 43.5,-3.5 @@ -113459,7 +108480,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16856 + - uid: 16888 components: - rot: 1.5707963267948966 rad pos: 42.5,-3.5 @@ -113467,7 +108488,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16857 + - uid: 16889 components: - rot: 1.5707963267948966 rad pos: 41.5,-3.5 @@ -113475,7 +108496,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16858 + - uid: 16890 components: - rot: 1.5707963267948966 rad pos: 40.5,-3.5 @@ -113483,9 +108504,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16859 + - uid: 16891 components: - rot: 1.5707963267948966 rad pos: 39.5,-3.5 @@ -113493,7 +108512,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16860 + - uid: 16892 components: - rot: 1.5707963267948966 rad pos: 38.5,-3.5 @@ -113501,7 +108520,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16861 + - uid: 16893 components: - rot: 1.5707963267948966 rad pos: 37.5,-3.5 @@ -113509,7 +108528,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16862 + - uid: 16894 components: - rot: 1.5707963267948966 rad pos: 41.5,-2.5 @@ -113517,7 +108536,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16863 + - uid: 16895 components: - rot: 1.5707963267948966 rad pos: 40.5,-2.5 @@ -113525,9 +108544,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16864 + - uid: 16896 components: - rot: 1.5707963267948966 rad pos: 39.5,-2.5 @@ -113535,7 +108552,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16865 + - uid: 16897 components: - rot: 1.5707963267948966 rad pos: 38.5,-2.5 @@ -113543,7 +108560,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16866 + - uid: 16898 components: - rot: 1.5707963267948966 rad pos: 37.5,-2.5 @@ -113551,56 +108568,56 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16867 + - uid: 16899 components: - pos: 42.5,13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16868 + - uid: 16900 components: - pos: 42.5,12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16869 + - uid: 16901 components: - pos: 41.5,13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16870 + - uid: 16902 components: - pos: 41.5,12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16871 + - uid: 16903 components: - pos: 41.5,11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16872 + - uid: 16904 components: - pos: 41.5,9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16873 + - uid: 16905 components: - pos: 42.5,11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16874 + - uid: 16906 components: - rot: -1.5707963267948966 rad pos: 39.5,10.5 @@ -113608,51 +108625,49 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16875 + - uid: 16907 components: - pos: 24.5,-46.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16876 + - uid: 16908 components: - pos: 24.5,-47.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16877 + - uid: 16909 components: - pos: 24.5,-48.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16878 + - uid: 16910 components: - pos: 24.5,-49.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16879 + - uid: 16911 components: - pos: 24.5,-50.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16880 + - uid: 16912 components: - pos: 24.5,-51.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16881 + - uid: 16913 components: - rot: 3.141592653589793 rad pos: 25.5,-59.5 @@ -113660,7 +108675,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16882 + - uid: 16914 components: - rot: 3.141592653589793 rad pos: 25.5,-53.5 @@ -113668,7 +108683,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16883 + - uid: 16915 components: - rot: 3.141592653589793 rad pos: 25.5,-54.5 @@ -113676,77 +108691,77 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16884 + - uid: 16916 components: - pos: 26.5,-46.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16885 + - uid: 16917 components: - pos: 26.5,-47.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16886 + - uid: 16918 components: - pos: 26.5,-48.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16887 + - uid: 16919 components: - pos: 26.5,-49.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16888 + - uid: 16920 components: - pos: 26.5,-50.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16889 + - uid: 16921 components: - pos: 26.5,-51.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16890 + - uid: 16922 components: - pos: 26.5,-52.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16891 + - uid: 16923 components: - pos: 26.5,-54.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16892 + - uid: 16924 components: - pos: 26.5,-55.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16893 + - uid: 16925 components: - pos: 26.5,-57.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16894 + - uid: 16926 components: - rot: 1.5707963267948966 rad pos: 43.5,-2.5 @@ -113754,7 +108769,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16895 + - uid: 16927 components: - rot: 1.5707963267948966 rad pos: 44.5,-2.5 @@ -113762,7 +108777,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16896 + - uid: 16928 components: - rot: 1.5707963267948966 rad pos: 45.5,-2.5 @@ -113770,9 +108785,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16897 + - uid: 16929 components: - rot: 1.5707963267948966 rad pos: 45.5,-1.5 @@ -113780,30 +108793,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16898 + - uid: 16930 components: - pos: 52.5,-8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16899 + - uid: 16931 components: - pos: 52.5,-9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16900 + - uid: 16932 components: - pos: 52.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16901 + - uid: 16933 components: - rot: 1.5707963267948966 rad pos: 53.5,-11.5 @@ -113811,7 +108822,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16902 + - uid: 16934 components: - rot: 1.5707963267948966 rad pos: 54.5,-11.5 @@ -113819,7 +108830,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16903 + - uid: 16935 components: - rot: 1.5707963267948966 rad pos: 56.5,-12.5 @@ -113827,7 +108838,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16904 + - uid: 16936 components: - rot: 1.5707963267948966 rad pos: 56.5,-5.5 @@ -113835,37 +108846,35 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16905 + - uid: 16937 components: - pos: 62.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16906 + - uid: 16938 components: - pos: 62.5,-37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16907 + - uid: 16939 components: - pos: 73.5,-27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16908 + - uid: 16940 components: - pos: 49.5,-56.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16909 + - uid: 16941 components: - rot: 1.5707963267948966 rad pos: 42.5,-43.5 @@ -113873,7 +108882,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16910 + - uid: 16942 components: - rot: 1.5707963267948966 rad pos: 43.5,-41.5 @@ -113881,7 +108890,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16911 + - uid: 16943 components: - rot: 1.5707963267948966 rad pos: 45.5,-41.5 @@ -113889,7 +108898,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16912 + - uid: 16944 components: - rot: 1.5707963267948966 rad pos: 46.5,-41.5 @@ -113897,7 +108906,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16913 + - uid: 16945 components: - rot: 1.5707963267948966 rad pos: 47.5,-41.5 @@ -113905,7 +108914,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16914 + - uid: 16946 components: - rot: 1.5707963267948966 rad pos: 48.5,-41.5 @@ -113913,7 +108922,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16915 + - uid: 16947 components: - rot: 1.5707963267948966 rad pos: 44.5,-43.5 @@ -113921,7 +108930,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16916 + - uid: 16948 components: - rot: 1.5707963267948966 rad pos: 46.5,-43.5 @@ -113929,7 +108938,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16917 + - uid: 16949 components: - rot: 1.5707963267948966 rad pos: 47.5,-43.5 @@ -113937,7 +108946,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16918 + - uid: 16950 components: - rot: 1.5707963267948966 rad pos: 48.5,-43.5 @@ -113945,63 +108954,63 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16919 + - uid: 16951 components: - pos: 43.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16920 + - uid: 16952 components: - pos: 43.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16921 + - uid: 16953 components: - pos: 43.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16922 + - uid: 16954 components: - pos: 43.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16923 + - uid: 16955 components: - pos: 43.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16924 + - uid: 16956 components: - pos: 42.5,-39.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16925 + - uid: 16957 components: - pos: 42.5,-40.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16926 + - uid: 16958 components: - pos: 42.5,-38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16927 + - uid: 16959 components: - rot: 3.141592653589793 rad pos: 49.5,-44.5 @@ -114009,7 +109018,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16928 + - uid: 16960 components: - rot: 1.5707963267948966 rad pos: 51.5,-41.5 @@ -114017,7 +109026,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16929 + - uid: 16961 components: - rot: 1.5707963267948966 rad pos: 52.5,-41.5 @@ -114025,7 +109034,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16930 + - uid: 16962 components: - rot: 1.5707963267948966 rad pos: 53.5,-41.5 @@ -114033,7 +109042,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16931 + - uid: 16963 components: - rot: 1.5707963267948966 rad pos: 54.5,-41.5 @@ -114041,7 +109050,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16932 + - uid: 16964 components: - rot: 1.5707963267948966 rad pos: 55.5,-41.5 @@ -114049,21 +109058,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16933 + - uid: 16965 components: - pos: 57.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16934 + - uid: 16966 components: - pos: 57.5,-43.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16935 + - uid: 16967 components: - rot: 1.5707963267948966 rad pos: 50.5,-45.5 @@ -114071,7 +109080,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16936 + - uid: 16968 components: - rot: 1.5707963267948966 rad pos: 51.5,-45.5 @@ -114079,7 +109088,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16937 + - uid: 16969 components: - rot: -1.5707963267948966 rad pos: 52.5,-45.5 @@ -114087,7 +109096,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16938 + - uid: 16970 components: - rot: 1.5707963267948966 rad pos: 53.5,-45.5 @@ -114095,7 +109104,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16939 + - uid: 16971 components: - rot: 1.5707963267948966 rad pos: 54.5,-45.5 @@ -114103,7 +109112,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16940 + - uid: 16972 components: - rot: 3.141592653589793 rad pos: 55.5,-44.5 @@ -114111,7 +109120,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16941 + - uid: 16973 components: - rot: 3.141592653589793 rad pos: 55.5,-43.5 @@ -114119,58 +109128,56 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16942 + - uid: 16974 components: - pos: 50.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16943 + - uid: 16975 components: - pos: 50.5,-43.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16944 + - uid: 16976 components: - pos: 50.5,-44.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16945 + - uid: 16977 components: - pos: 50.5,-45.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16946 + - uid: 16978 components: - pos: 50.5,-47.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16947 + - uid: 16979 components: - pos: 50.5,-48.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16948 + - uid: 16980 components: - pos: 49.5,-53.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16949 + - uid: 16981 components: - rot: -1.5707963267948966 rad pos: 48.5,-45.5 @@ -114178,7 +109185,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16950 + - uid: 16982 components: - rot: -1.5707963267948966 rad pos: 47.5,-45.5 @@ -114186,7 +109193,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16951 + - uid: 16983 components: - rot: -1.5707963267948966 rad pos: 46.5,-45.5 @@ -114194,7 +109201,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16952 + - uid: 16984 components: - rot: -1.5707963267948966 rad pos: 45.5,-45.5 @@ -114202,7 +109209,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16953 + - uid: 16985 components: - rot: 1.5707963267948966 rad pos: 49.5,-46.5 @@ -114210,7 +109217,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16954 + - uid: 16986 components: - rot: 1.5707963267948966 rad pos: 48.5,-46.5 @@ -114218,7 +109225,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16955 + - uid: 16987 components: - rot: 1.5707963267948966 rad pos: 47.5,-46.5 @@ -114226,7 +109233,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16956 + - uid: 16988 components: - rot: 1.5707963267948966 rad pos: 46.5,-46.5 @@ -114234,7 +109241,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16957 + - uid: 16989 components: - rot: 1.5707963267948966 rad pos: 45.5,-46.5 @@ -114242,7 +109249,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16958 + - uid: 16990 components: - rot: 3.141592653589793 rad pos: 73.5,-32.5 @@ -114250,7 +109257,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16959 + - uid: 16991 components: - rot: -1.5707963267948966 rad pos: 58.5,-44.5 @@ -114258,7 +109265,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16960 + - uid: 16992 components: - rot: -1.5707963267948966 rad pos: 59.5,-44.5 @@ -114266,7 +109273,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16961 + - uid: 16993 components: - rot: -1.5707963267948966 rad pos: 60.5,-44.5 @@ -114274,7 +109281,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16962 + - uid: 16994 components: - rot: -1.5707963267948966 rad pos: 57.5,-45.5 @@ -114282,7 +109289,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16963 + - uid: 16995 components: - rot: -1.5707963267948966 rad pos: 58.5,-45.5 @@ -114290,7 +109297,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16964 + - uid: 16996 components: - rot: -1.5707963267948966 rad pos: 59.5,-45.5 @@ -114298,7 +109305,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16965 + - uid: 16997 components: - rot: -1.5707963267948966 rad pos: 60.5,-45.5 @@ -114306,7 +109313,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16966 + - uid: 16998 components: - rot: -1.5707963267948966 rad pos: 61.5,-45.5 @@ -114314,7 +109321,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16967 + - uid: 16999 components: - rot: -1.5707963267948966 rad pos: 62.5,-45.5 @@ -114322,7 +109329,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16968 + - uid: 17000 components: - rot: 3.141592653589793 rad pos: 61.5,-43.5 @@ -114330,7 +109337,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16969 + - uid: 17001 components: - rot: 3.141592653589793 rad pos: 61.5,-42.5 @@ -114338,7 +109345,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16970 + - uid: 17002 components: - rot: 3.141592653589793 rad pos: 61.5,-41.5 @@ -114346,7 +109353,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16971 + - uid: 17003 components: - rot: 3.141592653589793 rad pos: 61.5,-40.5 @@ -114354,7 +109361,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16972 + - uid: 17004 components: - rot: 3.141592653589793 rad pos: 61.5,-39.5 @@ -114362,7 +109369,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16973 + - uid: 17005 components: - rot: 3.141592653589793 rad pos: 61.5,-37.5 @@ -114370,7 +109377,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16974 + - uid: 17006 components: - rot: 3.141592653589793 rad pos: 61.5,-36.5 @@ -114378,7 +109385,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16975 + - uid: 17007 components: - rot: 3.141592653589793 rad pos: 63.5,-44.5 @@ -114386,7 +109393,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16976 + - uid: 17008 components: - rot: 3.141592653589793 rad pos: 63.5,-43.5 @@ -114394,28 +109401,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16977 + - uid: 17009 components: - pos: 62.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16978 + - uid: 17010 components: - pos: 62.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16979 + - uid: 17011 components: - pos: 62.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16980 + - uid: 17012 components: - rot: -1.5707963267948966 rad pos: 63.5,-35.5 @@ -114423,7 +109430,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16981 + - uid: 17013 components: - rot: 3.141592653589793 rad pos: 61.5,-45.5 @@ -114431,7 +109438,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16982 + - uid: 17014 components: - rot: 1.5707963267948966 rad pos: 62.5,-34.5 @@ -114439,7 +109446,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16983 + - uid: 17015 components: - rot: 1.5707963267948966 rad pos: 61.5,-34.5 @@ -114447,21 +109454,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16984 + - uid: 17016 components: - pos: 64.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16985 + - uid: 17017 components: - pos: 60.5,-34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16986 + - uid: 17018 components: - rot: 3.141592653589793 rad pos: 63.5,-30.5 @@ -114469,7 +109476,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16987 + - uid: 17019 components: - rot: 3.141592653589793 rad pos: 63.5,-29.5 @@ -114477,7 +109484,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16988 + - uid: 17020 components: - rot: 3.141592653589793 rad pos: 63.5,-28.5 @@ -114485,7 +109492,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16989 + - uid: 17021 components: - rot: 3.141592653589793 rad pos: 63.5,-27.5 @@ -114493,9 +109500,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16990 + - uid: 17022 components: - rot: 3.141592653589793 rad pos: 61.5,-31.5 @@ -114503,7 +109508,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16991 + - uid: 17023 components: - rot: 3.141592653589793 rad pos: 61.5,-30.5 @@ -114511,7 +109516,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16992 + - uid: 17024 components: - rot: 3.141592653589793 rad pos: 61.5,-29.5 @@ -114519,7 +109524,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16993 + - uid: 17025 components: - rot: 3.141592653589793 rad pos: 61.5,-28.5 @@ -114527,7 +109532,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16994 + - uid: 17026 components: - rot: 3.141592653589793 rad pos: 61.5,-27.5 @@ -114535,9 +109540,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16995 + - uid: 17027 components: - rot: 3.141592653589793 rad pos: 61.5,-26.5 @@ -114545,7 +109548,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16996 + - uid: 17028 components: - rot: 3.141592653589793 rad pos: 61.5,-25.5 @@ -114553,455 +109556,399 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16997 + - uid: 17029 components: - pos: 61.5,-23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16998 + - uid: 17030 components: - pos: 61.5,-22.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 16999 + - uid: 17031 components: - pos: 61.5,-21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17000 + - uid: 17032 components: - pos: 61.5,-20.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17001 + - uid: 17033 components: - pos: 61.5,-19.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17002 + - uid: 17034 components: - pos: 61.5,-18.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17003 + - uid: 17035 components: - pos: 61.5,-17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17004 + - uid: 17036 components: - pos: 61.5,-16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17005 + - uid: 17037 components: - pos: 61.5,-15.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17006 + - uid: 17038 components: - pos: 61.5,-14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17007 + - uid: 17039 components: - pos: 61.5,-13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17008 + - uid: 17040 components: - pos: 61.5,-12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17009 + - uid: 17041 components: - pos: 61.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17010 + - uid: 17042 components: - pos: 62.5,-7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17011 + - uid: 17043 components: - pos: 62.5,-8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17012 + - uid: 17044 components: - pos: 62.5,-9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17013 + - uid: 17045 components: - pos: 61.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17014 + - uid: 17046 components: - pos: 61.5,-4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17015 + - uid: 17047 components: - pos: 61.5,-3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17016 + - uid: 17048 components: - pos: 63.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17017 + - uid: 17049 components: - pos: 63.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17018 + - uid: 17050 components: - pos: 63.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17019 + - uid: 17051 components: - pos: 63.5,-22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17020 + - uid: 17052 components: - pos: 63.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17021 + - uid: 17053 components: - pos: 63.5,-20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17022 + - uid: 17054 components: - pos: 63.5,-19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17023 + - uid: 17055 components: - pos: 63.5,-18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17024 + - uid: 17056 components: - pos: 63.5,-17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17025 + - uid: 17057 components: - pos: 63.5,-16.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17026 + - uid: 17058 components: - pos: 63.5,-15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17027 + - uid: 17059 components: - pos: 63.5,-14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17028 + - uid: 17060 components: - pos: 63.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17029 + - uid: 17061 components: - pos: 63.5,-12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17030 + - uid: 17062 components: - pos: 63.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17031 + - uid: 17063 components: - pos: 63.5,-9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17032 + - uid: 17064 components: - pos: 63.5,-8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17033 + - uid: 17065 components: - pos: 63.5,-7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17034 + - uid: 17066 components: - pos: 63.5,-6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17035 + - uid: 17067 components: - pos: 63.5,-5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17036 + - uid: 17068 components: - pos: 63.5,-4.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17037 + - uid: 17069 components: - pos: 63.5,-3.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17038 + - uid: 17070 components: - pos: 64.5,-48.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17039 + - uid: 17071 components: - pos: 64.5,-49.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17040 + - uid: 17072 components: - pos: 64.5,-50.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17041 + - uid: 17073 components: - pos: 64.5,-51.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17042 + - uid: 17074 components: - pos: 60.5,-47.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17043 + - uid: 17075 components: - pos: 60.5,-49.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17044 + - uid: 17076 components: - pos: 60.5,-50.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17045 + - uid: 17077 components: - pos: 60.5,-51.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17046 + - uid: 17078 components: - pos: 50.5,-49.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17047 + - uid: 17079 components: - pos: 49.5,-57.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17048 + - uid: 17080 components: - pos: 49.5,-58.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17049 + - uid: 17081 components: - pos: 49.5,-59.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17050 + - uid: 17082 components: - pos: 50.5,-50.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17051 + - uid: 17083 components: - pos: 50.5,-51.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17052 + - uid: 17084 components: - pos: 49.5,-55.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17053 + - uid: 17085 components: - rot: 1.5707963267948966 rad pos: 44.5,-45.5 @@ -115009,7 +109956,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17054 + - uid: 17086 components: - rot: 1.5707963267948966 rad pos: 43.5,-45.5 @@ -115017,7 +109964,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17055 + - uid: 17087 components: - rot: 1.5707963267948966 rad pos: 65.5,-47.5 @@ -115025,7 +109972,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17056 + - uid: 17088 components: - rot: 1.5707963267948966 rad pos: 66.5,-47.5 @@ -115033,9 +109980,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17057 + - uid: 17089 components: - rot: 1.5707963267948966 rad pos: 67.5,-47.5 @@ -115043,7 +109988,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17058 + - uid: 17090 components: - rot: 1.5707963267948966 rad pos: 68.5,-47.5 @@ -115051,7 +109996,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17059 + - uid: 17091 components: - rot: 1.5707963267948966 rad pos: 68.5,-48.5 @@ -115059,7 +110004,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17060 + - uid: 17092 components: - rot: 1.5707963267948966 rad pos: 67.5,-48.5 @@ -115067,7 +110012,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17061 + - uid: 17093 components: - rot: 1.5707963267948966 rad pos: 66.5,-48.5 @@ -115075,7 +110020,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17062 + - uid: 17094 components: - rot: 1.5707963267948966 rad pos: 65.5,-48.5 @@ -115083,7 +110028,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17063 + - uid: 17095 components: - rot: 1.5707963267948966 rad pos: 64.5,-48.5 @@ -115091,7 +110036,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17064 + - uid: 17096 components: - rot: 1.5707963267948966 rad pos: 63.5,-48.5 @@ -115099,7 +110044,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17065 + - uid: 17097 components: - rot: 1.5707963267948966 rad pos: 62.5,-48.5 @@ -115107,7 +110052,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17066 + - uid: 17098 components: - rot: 1.5707963267948966 rad pos: 61.5,-48.5 @@ -115115,7 +110060,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17067 + - uid: 17099 components: - rot: 1.5707963267948966 rad pos: 70.5,-48.5 @@ -115123,7 +110068,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17068 + - uid: 17100 components: - rot: 1.5707963267948966 rad pos: 69.5,-48.5 @@ -115131,7 +110076,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17069 + - uid: 17101 components: - rot: 3.141592653589793 rad pos: 25.5,-55.5 @@ -115139,7 +110084,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17070 + - uid: 17102 components: - rot: 1.5707963267948966 rad pos: 27.5,-58.5 @@ -115147,7 +110092,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17071 + - uid: 17103 components: - rot: 1.5707963267948966 rad pos: 28.5,-58.5 @@ -115155,7 +110100,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17072 + - uid: 17104 components: - rot: 3.141592653589793 rad pos: 25.5,-56.5 @@ -115163,7 +110108,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17073 + - uid: 17105 components: - rot: 1.5707963267948966 rad pos: 26.5,-60.5 @@ -115171,7 +110116,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17074 + - uid: 17106 components: - rot: 1.5707963267948966 rad pos: 27.5,-60.5 @@ -115179,7 +110124,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17075 + - uid: 17107 components: - rot: 1.5707963267948966 rad pos: 28.5,-60.5 @@ -115187,7 +110132,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17076 + - uid: 17108 components: - rot: 1.5707963267948966 rad pos: 29.5,-60.5 @@ -115195,7 +110140,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17077 + - uid: 17109 components: - rot: 1.5707963267948966 rad pos: 30.5,-60.5 @@ -115203,7 +110148,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17078 + - uid: 17110 components: - rot: 1.5707963267948966 rad pos: 31.5,-60.5 @@ -115211,7 +110156,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17079 + - uid: 17111 components: - rot: 3.141592653589793 rad pos: 29.5,-57.5 @@ -115219,58 +110164,56 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17080 + - uid: 17112 components: - pos: 29.5,-55.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17081 + - uid: 17113 components: - pos: 29.5,-54.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17082 + - uid: 17114 components: - pos: 29.5,-53.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17083 + - uid: 17115 components: - pos: 29.5,-51.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17084 + - uid: 17116 components: - pos: 29.5,-50.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17085 + - uid: 17117 components: - pos: 29.5,-49.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17086 + - uid: 17118 components: - pos: 29.5,-48.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17087 + - uid: 17119 components: - rot: -1.5707963267948966 rad pos: 30.5,-47.5 @@ -115278,7 +110221,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17088 + - uid: 17120 components: - rot: -1.5707963267948966 rad pos: 31.5,-47.5 @@ -115286,7 +110229,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17089 + - uid: 17121 components: - rot: -1.5707963267948966 rad pos: 32.5,-47.5 @@ -115294,7 +110237,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17090 + - uid: 17122 components: - rot: 3.141592653589793 rad pos: 29.5,-46.5 @@ -115302,7 +110245,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17091 + - uid: 17123 components: - rot: 1.5707963267948966 rad pos: 30.5,-58.5 @@ -115310,51 +110253,49 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17092 + - uid: 17124 components: - pos: 32.5,-59.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17093 + - uid: 17125 components: - pos: 32.5,-58.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17094 + - uid: 17126 components: - pos: 32.5,-57.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17095 + - uid: 17127 components: - pos: 32.5,-55.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17096 + - uid: 17128 components: - pos: 32.5,-54.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17097 + - uid: 17129 components: - pos: 32.5,-53.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17098 + - uid: 17130 components: - rot: 1.5707963267948966 rad pos: 33.5,-52.5 @@ -115362,7 +110303,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17099 + - uid: 17131 components: - rot: 3.141592653589793 rad pos: 34.5,-51.5 @@ -115370,7 +110311,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17100 + - uid: 17132 components: - rot: 3.141592653589793 rad pos: 34.5,-50.5 @@ -115378,7 +110319,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17101 + - uid: 17133 components: - rot: -1.5707963267948966 rad pos: 33.5,-49.5 @@ -115386,7 +110327,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17102 + - uid: 17134 components: - rot: 3.141592653589793 rad pos: 34.5,-47.5 @@ -115394,7 +110335,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17103 + - uid: 17135 components: - rot: 3.141592653589793 rad pos: 34.5,-46.5 @@ -115402,7 +110343,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17104 + - uid: 17136 components: - rot: -1.5707963267948966 rad pos: 32.5,-49.5 @@ -115410,7 +110351,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17105 + - uid: 17137 components: - rot: -1.5707963267948966 rad pos: 31.5,-49.5 @@ -115418,7 +110359,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17106 + - uid: 17138 components: - rot: -1.5707963267948966 rad pos: 30.5,-49.5 @@ -115426,7 +110367,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17107 + - uid: 17139 components: - rot: -1.5707963267948966 rad pos: 29.5,-49.5 @@ -115434,37 +110375,33 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17108 + - uid: 17140 components: - rot: 3.141592653589793 rad pos: 48.5,-59.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17109 + - uid: 17141 components: - rot: 3.141592653589793 rad pos: 51.5,-59.5 parent: 2 type: Transform - - uid: 17110 + - uid: 17142 components: - pos: 49.5,-60.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17111 + - uid: 17143 components: - pos: 49.5,-62.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17112 + - uid: 17144 components: - rot: -1.5707963267948966 rad pos: -14.5,7.5 @@ -115472,7 +110409,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17113 + - uid: 17145 components: - rot: -1.5707963267948966 rad pos: -15.5,7.5 @@ -115480,7 +110417,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17114 + - uid: 17146 components: - rot: -1.5707963267948966 rad pos: -16.5,7.5 @@ -115488,7 +110425,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17115 + - uid: 17147 components: - rot: -1.5707963267948966 rad pos: -17.5,7.5 @@ -115496,7 +110433,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17116 + - uid: 17148 components: - rot: -1.5707963267948966 rad pos: -18.5,7.5 @@ -115504,7 +110441,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17117 + - uid: 17149 components: - rot: 1.5707963267948966 rad pos: -15.5,1.5 @@ -115512,9 +110449,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17118 + - uid: 17150 components: - rot: 1.5707963267948966 rad pos: -16.5,1.5 @@ -115522,21 +110457,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17119 + - uid: 17151 components: - pos: -19.5,6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17120 + - uid: 17152 components: - pos: -19.5,5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17121 + - uid: 17153 components: - rot: 1.5707963267948966 rad pos: -9.5,-25.5 @@ -115544,7 +110479,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17122 + - uid: 17154 components: - rot: 1.5707963267948966 rad pos: -10.5,-25.5 @@ -115552,7 +110487,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17123 + - uid: 17155 components: - rot: 1.5707963267948966 rad pos: -11.5,-25.5 @@ -115560,7 +110495,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17124 + - uid: 17156 components: - rot: 1.5707963267948966 rad pos: -12.5,-25.5 @@ -115568,7 +110503,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17125 + - uid: 17157 components: - rot: 1.5707963267948966 rad pos: -13.5,-25.5 @@ -115576,7 +110511,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17126 + - uid: 17158 components: - rot: 1.5707963267948966 rad pos: -14.5,-25.5 @@ -115584,7 +110519,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17127 + - uid: 17159 components: - rot: 1.5707963267948966 rad pos: -15.5,-25.5 @@ -115592,7 +110527,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17128 + - uid: 17160 components: - rot: 1.5707963267948966 rad pos: -16.5,-25.5 @@ -115600,7 +110535,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17129 + - uid: 17161 components: - rot: 1.5707963267948966 rad pos: -17.5,-25.5 @@ -115608,7 +110543,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17130 + - uid: 17162 components: - rot: 1.5707963267948966 rad pos: -12.5,-27.5 @@ -115616,7 +110551,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17131 + - uid: 17163 components: - rot: 1.5707963267948966 rad pos: -13.5,-27.5 @@ -115624,7 +110559,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17132 + - uid: 17164 components: - rot: 1.5707963267948966 rad pos: -14.5,-27.5 @@ -115632,7 +110567,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17133 + - uid: 17165 components: - rot: 1.5707963267948966 rad pos: -15.5,-27.5 @@ -115640,7 +110575,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17134 + - uid: 17166 components: - rot: 1.5707963267948966 rad pos: -16.5,-27.5 @@ -115648,7 +110583,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17135 + - uid: 17167 components: - rot: 1.5707963267948966 rad pos: -17.5,-27.5 @@ -115656,7 +110591,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17136 + - uid: 17168 components: - rot: -1.5707963267948966 rad pos: -18.5,-27.5 @@ -115664,7 +110599,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17137 + - uid: 17169 components: - rot: -1.5707963267948966 rad pos: -19.5,-27.5 @@ -115672,7 +110607,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17138 + - uid: 17170 components: - rot: 3.141592653589793 rad pos: -18.5,-26.5 @@ -115680,7 +110615,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17139 + - uid: 17171 components: - rot: 3.141592653589793 rad pos: -18.5,-27.5 @@ -115688,7 +110623,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17140 + - uid: 17172 components: - rot: 3.141592653589793 rad pos: -18.5,-28.5 @@ -115696,7 +110631,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17141 + - uid: 17173 components: - rot: 3.141592653589793 rad pos: -18.5,-29.5 @@ -115704,7 +110639,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17142 + - uid: 17174 components: - rot: 3.141592653589793 rad pos: -18.5,-30.5 @@ -115712,7 +110647,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17143 + - uid: 17175 components: - rot: 3.141592653589793 rad pos: -20.5,-28.5 @@ -115720,7 +110655,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17144 + - uid: 17176 components: - rot: 3.141592653589793 rad pos: -20.5,-29.5 @@ -115728,7 +110663,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17145 + - uid: 17177 components: - rot: 3.141592653589793 rad pos: -20.5,-30.5 @@ -115736,7 +110671,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17146 + - uid: 17178 components: - rot: 3.141592653589793 rad pos: -20.5,-31.5 @@ -115744,7 +110679,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17147 + - uid: 17179 components: - rot: 3.141592653589793 rad pos: -20.5,-32.5 @@ -115752,7 +110687,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17148 + - uid: 17180 components: - rot: 3.141592653589793 rad pos: -20.5,-26.5 @@ -115760,7 +110695,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17149 + - uid: 17181 components: - rot: 3.141592653589793 rad pos: -20.5,-25.5 @@ -115768,7 +110703,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17150 + - uid: 17182 components: - rot: 3.141592653589793 rad pos: -20.5,-24.5 @@ -115776,7 +110711,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17151 + - uid: 17183 components: - rot: 3.141592653589793 rad pos: -20.5,-23.5 @@ -115784,7 +110719,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17152 + - uid: 17184 components: - rot: 3.141592653589793 rad pos: -18.5,-24.5 @@ -115792,7 +110727,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17153 + - uid: 17185 components: - rot: 3.141592653589793 rad pos: -18.5,-23.5 @@ -115800,7 +110735,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17154 + - uid: 17186 components: - rot: 3.141592653589793 rad pos: -18.5,-22.5 @@ -115808,7 +110743,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17155 + - uid: 17187 components: - rot: 3.141592653589793 rad pos: -18.5,-20.5 @@ -115816,7 +110751,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17156 + - uid: 17188 components: - rot: 3.141592653589793 rad pos: -20.5,-21.5 @@ -115824,7 +110759,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17157 + - uid: 17189 components: - rot: 3.141592653589793 rad pos: -20.5,-20.5 @@ -115832,7 +110767,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17158 + - uid: 17190 components: - rot: 3.141592653589793 rad pos: -20.5,-19.5 @@ -115840,7 +110775,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17159 + - uid: 17191 components: - rot: 3.141592653589793 rad pos: -18.5,-18.5 @@ -115848,7 +110783,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17160 + - uid: 17192 components: - rot: 3.141592653589793 rad pos: -18.5,-17.5 @@ -115856,14 +110791,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17161 + - uid: 17193 components: - pos: -23.5,-15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17162 + - uid: 17194 components: - rot: 3.141592653589793 rad pos: -20.5,-17.5 @@ -115871,7 +110806,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17163 + - uid: 17195 components: - rot: 3.141592653589793 rad pos: -20.5,-16.5 @@ -115879,7 +110814,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17164 + - uid: 17196 components: - rot: 3.141592653589793 rad pos: -20.5,-15.5 @@ -115887,7 +110822,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17165 + - uid: 17197 components: - rot: 3.141592653589793 rad pos: -18.5,-15.5 @@ -115895,7 +110830,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17166 + - uid: 17198 components: - rot: 3.141592653589793 rad pos: -18.5,-14.5 @@ -115903,7 +110838,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17167 + - uid: 17199 components: - rot: 3.141592653589793 rad pos: -18.5,-13.5 @@ -115911,7 +110846,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17168 + - uid: 17200 components: - rot: 3.141592653589793 rad pos: -18.5,-12.5 @@ -115919,7 +110854,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17169 + - uid: 17201 components: - rot: 3.141592653589793 rad pos: -18.5,-11.5 @@ -115927,7 +110862,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17170 + - uid: 17202 components: - rot: -1.5707963267948966 rad pos: -21.5,-13.5 @@ -115935,9 +110870,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17171 + - uid: 17203 components: - rot: -1.5707963267948966 rad pos: -22.5,-13.5 @@ -115945,7 +110878,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17172 + - uid: 17204 components: - rot: -1.5707963267948966 rad pos: -23.5,-13.5 @@ -115953,7 +110886,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17173 + - uid: 17205 components: - rot: -1.5707963267948966 rad pos: -19.5,-10.5 @@ -115961,7 +110894,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17174 + - uid: 17206 components: - rot: -1.5707963267948966 rad pos: -20.5,-10.5 @@ -115969,7 +110902,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17175 + - uid: 17207 components: - rot: -1.5707963267948966 rad pos: -21.5,-10.5 @@ -115977,9 +110910,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17176 + - uid: 17208 components: - rot: -1.5707963267948966 rad pos: -22.5,-10.5 @@ -115987,7 +110918,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17177 + - uid: 17209 components: - rot: -1.5707963267948966 rad pos: -25.5,-10.5 @@ -115995,7 +110926,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17178 + - uid: 17210 components: - rot: -1.5707963267948966 rad pos: -26.5,-10.5 @@ -116003,9 +110934,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17179 + - uid: 17211 components: - rot: -1.5707963267948966 rad pos: -27.5,-10.5 @@ -116013,7 +110942,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17180 + - uid: 17212 components: - rot: 1.5707963267948966 rad pos: -26.5,-13.5 @@ -116021,9 +110950,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17181 + - uid: 17213 components: - rot: 1.5707963267948966 rad pos: -27.5,-13.5 @@ -116031,91 +110958,91 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17182 + - uid: 17214 components: - pos: -20.5,-12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17183 + - uid: 17215 components: - pos: -20.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17184 + - uid: 17216 components: - pos: -20.5,-10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17185 + - uid: 17217 components: - pos: -20.5,-9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17186 + - uid: 17218 components: - pos: -20.5,-8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17187 + - uid: 17219 components: - pos: -20.5,-7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17188 + - uid: 17220 components: - pos: -20.5,-6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17189 + - uid: 17221 components: - pos: -18.5,-9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17190 + - uid: 17222 components: - pos: -18.5,-8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17191 + - uid: 17223 components: - pos: -18.5,-7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17192 + - uid: 17224 components: - pos: -18.5,-6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17193 + - uid: 17225 components: - pos: -18.5,-5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17194 + - uid: 17226 components: - rot: -1.5707963267948966 rad pos: -21.5,-22.5 @@ -116123,9 +111050,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17195 + - uid: 17227 components: - rot: -1.5707963267948966 rad pos: -22.5,-22.5 @@ -116133,7 +111058,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17196 + - uid: 17228 components: - rot: -1.5707963267948966 rad pos: -23.5,-22.5 @@ -116141,7 +111066,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17197 + - uid: 17229 components: - rot: -1.5707963267948966 rad pos: -19.5,-21.5 @@ -116149,7 +111074,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17198 + - uid: 17230 components: - rot: -1.5707963267948966 rad pos: -20.5,-21.5 @@ -116157,7 +111082,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17199 + - uid: 17231 components: - rot: -1.5707963267948966 rad pos: -21.5,-21.5 @@ -116165,7 +111090,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17200 + - uid: 17232 components: - rot: -1.5707963267948966 rad pos: -22.5,-21.5 @@ -116173,28 +111098,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17201 + - uid: 17233 components: - pos: -25.5,-15.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17202 + - uid: 17234 components: - pos: -25.5,-16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17203 + - uid: 17235 components: - pos: -25.5,-14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17204 + - uid: 17236 components: - rot: 1.5707963267948966 rad pos: -26.5,-17.5 @@ -116202,7 +111127,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17205 + - uid: 17237 components: - rot: 1.5707963267948966 rad pos: -27.5,-17.5 @@ -116210,7 +111135,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17206 + - uid: 17238 components: - rot: 3.141592653589793 rad pos: -20.5,-18.5 @@ -116218,42 +111143,42 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17207 + - uid: 17239 components: - pos: -23.5,-14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17208 + - uid: 17240 components: - pos: -23.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17209 + - uid: 17241 components: - pos: -23.5,-12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17210 + - uid: 17242 components: - pos: -23.5,-11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17211 + - uid: 17243 components: - pos: -18.5,-16.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17212 + - uid: 17244 components: - rot: -1.5707963267948966 rad pos: -24.5,-16.5 @@ -116261,7 +111186,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17213 + - uid: 17245 components: - rot: -1.5707963267948966 rad pos: -25.5,-16.5 @@ -116269,7 +111194,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17214 + - uid: 17246 components: - rot: -1.5707963267948966 rad pos: -26.5,-16.5 @@ -116277,7 +111202,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17215 + - uid: 17247 components: - rot: -1.5707963267948966 rad pos: -27.5,-16.5 @@ -116285,7 +111210,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17216 + - uid: 17248 components: - rot: -1.5707963267948966 rad pos: -28.5,-16.5 @@ -116293,7 +111218,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17217 + - uid: 17249 components: - rot: -1.5707963267948966 rad pos: -17.5,-42.5 @@ -116301,7 +111226,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17218 + - uid: 17250 components: - rot: -1.5707963267948966 rad pos: -16.5,-42.5 @@ -116309,7 +111234,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17219 + - uid: 17251 components: - rot: 1.5707963267948966 rad pos: 31.5,-58.5 @@ -116317,7 +111242,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17220 + - uid: 17252 components: - rot: 1.5707963267948966 rad pos: 32.5,-58.5 @@ -116325,7 +111250,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17221 + - uid: 17253 components: - rot: 1.5707963267948966 rad pos: 33.5,-58.5 @@ -116333,7 +111258,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17222 + - uid: 17254 components: - rot: 1.5707963267948966 rad pos: 34.5,-58.5 @@ -116341,7 +111266,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17223 + - uid: 17255 components: - rot: 1.5707963267948966 rad pos: 35.5,-58.5 @@ -116349,7 +111274,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17224 + - uid: 17256 components: - rot: 1.5707963267948966 rad pos: 36.5,-58.5 @@ -116357,7 +111282,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17225 + - uid: 17257 components: - rot: 1.5707963267948966 rad pos: 33.5,-60.5 @@ -116365,7 +111290,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17226 + - uid: 17258 components: - rot: 1.5707963267948966 rad pos: 34.5,-60.5 @@ -116373,7 +111298,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17227 + - uid: 17259 components: - rot: 1.5707963267948966 rad pos: 35.5,-60.5 @@ -116381,7 +111306,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17228 + - uid: 17260 components: - rot: 1.5707963267948966 rad pos: 36.5,-60.5 @@ -116389,7 +111314,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17229 + - uid: 17261 components: - rot: 1.5707963267948966 rad pos: 37.5,-60.5 @@ -116397,7 +111322,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17230 + - uid: 17262 components: - rot: -1.5707963267948966 rad pos: 50.5,-61.5 @@ -116405,7 +111330,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17231 + - uid: 17263 components: - rot: -1.5707963267948966 rad pos: 51.5,-61.5 @@ -116413,7 +111338,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17232 + - uid: 17264 components: - rot: -1.5707963267948966 rad pos: 52.5,-61.5 @@ -116421,7 +111346,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17233 + - uid: 17265 components: - rot: -1.5707963267948966 rad pos: 53.5,-61.5 @@ -116429,7 +111354,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17234 + - uid: 17266 components: - rot: -1.5707963267948966 rad pos: 37.5,-58.5 @@ -116437,7 +111362,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17235 + - uid: 17267 components: - rot: -1.5707963267948966 rad pos: 38.5,-60.5 @@ -116445,7 +111370,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17236 + - uid: 17268 components: - rot: -1.5707963267948966 rad pos: 39.5,-60.5 @@ -116453,7 +111378,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17237 + - uid: 17269 components: - rot: 3.141592653589793 rad pos: 38.5,-57.5 @@ -116461,9 +111386,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17238 + - uid: 17270 components: - rot: 3.141592653589793 rad pos: 38.5,-56.5 @@ -116471,7 +111394,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17239 + - uid: 17271 components: - rot: 3.141592653589793 rad pos: 40.5,-59.5 @@ -116479,7 +111402,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17240 + - uid: 17272 components: - rot: 3.141592653589793 rad pos: 40.5,-58.5 @@ -116487,7 +111410,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17241 + - uid: 17273 components: - rot: 3.141592653589793 rad pos: 40.5,-57.5 @@ -116495,9 +111418,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17242 + - uid: 17274 components: - rot: 3.141592653589793 rad pos: 40.5,-56.5 @@ -116505,7 +111426,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17243 + - uid: 17275 components: - rot: 3.141592653589793 rad pos: 38.5,-59.5 @@ -116513,7 +111434,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17244 + - uid: 17276 components: - rot: 3.141592653589793 rad pos: 38.5,-60.5 @@ -116521,7 +111442,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17245 + - uid: 17277 components: - rot: 3.141592653589793 rad pos: 38.5,-61.5 @@ -116529,7 +111450,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17246 + - uid: 17278 components: - rot: 3.141592653589793 rad pos: 38.5,-62.5 @@ -116537,7 +111458,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17247 + - uid: 17279 components: - rot: 3.141592653589793 rad pos: 40.5,-61.5 @@ -116545,7 +111466,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17248 + - uid: 17280 components: - rot: 3.141592653589793 rad pos: 40.5,-62.5 @@ -116553,7 +111474,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17249 + - uid: 17281 components: - rot: 3.141592653589793 rad pos: 40.5,-63.5 @@ -116561,7 +111482,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17250 + - uid: 17282 components: - rot: 3.141592653589793 rad pos: 40.5,-64.5 @@ -116569,7 +111490,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17251 + - uid: 17283 components: - rot: 3.141592653589793 rad pos: 38.5,-64.5 @@ -116577,7 +111498,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17252 + - uid: 17284 components: - rot: 3.141592653589793 rad pos: 38.5,-65.5 @@ -116585,7 +111506,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17253 + - uid: 17285 components: - rot: 3.141592653589793 rad pos: 38.5,-66.5 @@ -116593,7 +111514,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17254 + - uid: 17286 components: - rot: 3.141592653589793 rad pos: 38.5,-67.5 @@ -116601,7 +111522,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17255 + - uid: 17287 components: - rot: 3.141592653589793 rad pos: 38.5,-68.5 @@ -116609,7 +111530,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17256 + - uid: 17288 components: - rot: 3.141592653589793 rad pos: 40.5,-66.5 @@ -116617,7 +111538,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17257 + - uid: 17289 components: - rot: 3.141592653589793 rad pos: 40.5,-67.5 @@ -116625,7 +111546,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17258 + - uid: 17290 components: - rot: 3.141592653589793 rad pos: 40.5,-68.5 @@ -116633,14 +111554,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17259 + - uid: 17291 components: - pos: 50.5,-53.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17260 + - uid: 17292 components: - rot: 3.141592653589793 rad pos: 52.5,-56.5 @@ -116648,9 +111569,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17261 + - uid: 17293 components: - rot: 3.141592653589793 rad pos: 52.5,-55.5 @@ -116658,7 +111577,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17262 + - uid: 17294 components: - rot: 1.5707963267948966 rad pos: 51.5,-54.5 @@ -116666,7 +111585,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17263 + - uid: 17295 components: - rot: 3.141592653589793 rad pos: -14.5,2.5 @@ -116674,7 +111593,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17264 + - uid: 17296 components: - rot: 3.141592653589793 rad pos: -14.5,3.5 @@ -116682,7 +111601,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17265 + - uid: 17297 components: - rot: 3.141592653589793 rad pos: -14.5,4.5 @@ -116690,7 +111609,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17266 + - uid: 17298 components: - rot: 3.141592653589793 rad pos: -14.5,5.5 @@ -116698,7 +111617,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17267 + - uid: 17299 components: - rot: -1.5707963267948966 rad pos: -15.5,6.5 @@ -116706,7 +111625,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17268 + - uid: 17300 components: - rot: -1.5707963267948966 rad pos: -16.5,6.5 @@ -116714,7 +111633,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17269 + - uid: 17301 components: - rot: -1.5707963267948966 rad pos: -17.5,6.5 @@ -116722,7 +111641,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17270 + - uid: 17302 components: - rot: 3.141592653589793 rad pos: -18.5,7.5 @@ -116730,7 +111649,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17271 + - uid: 17303 components: - rot: 3.141592653589793 rad pos: -18.5,8.5 @@ -116738,7 +111657,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17272 + - uid: 17304 components: - rot: 3.141592653589793 rad pos: -18.5,9.5 @@ -116746,7 +111665,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17273 + - uid: 17305 components: - rot: 3.141592653589793 rad pos: -18.5,10.5 @@ -116754,7 +111673,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17274 + - uid: 17306 components: - rot: 3.141592653589793 rad pos: -18.5,11.5 @@ -116762,7 +111681,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17275 + - uid: 17307 components: - rot: 3.141592653589793 rad pos: -20.5,8.5 @@ -116770,7 +111689,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17276 + - uid: 17308 components: - rot: 3.141592653589793 rad pos: -20.5,9.5 @@ -116778,7 +111697,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17277 + - uid: 17309 components: - rot: 3.141592653589793 rad pos: -20.5,10.5 @@ -116786,7 +111705,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17278 + - uid: 17310 components: - rot: 3.141592653589793 rad pos: -20.5,11.5 @@ -116794,7 +111713,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17279 + - uid: 17311 components: - rot: -1.5707963267948966 rad pos: -19.5,-4.5 @@ -116802,7 +111721,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17280 + - uid: 17312 components: - rot: -1.5707963267948966 rad pos: -20.5,-4.5 @@ -116810,7 +111729,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17281 + - uid: 17313 components: - rot: -1.5707963267948966 rad pos: -21.5,-4.5 @@ -116818,7 +111737,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17282 + - uid: 17314 components: - rot: -1.5707963267948966 rad pos: -22.5,-4.5 @@ -116826,7 +111745,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17283 + - uid: 17315 components: - rot: -1.5707963267948966 rad pos: -23.5,-4.5 @@ -116834,7 +111753,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17284 + - uid: 17316 components: - rot: -1.5707963267948966 rad pos: -21.5,-5.5 @@ -116842,7 +111761,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17285 + - uid: 17317 components: - rot: -1.5707963267948966 rad pos: -22.5,-5.5 @@ -116850,7 +111769,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17286 + - uid: 17318 components: - rot: -1.5707963267948966 rad pos: -23.5,-5.5 @@ -116858,7 +111777,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17287 + - uid: 17319 components: - rot: -1.5707963267948966 rad pos: -24.5,-5.5 @@ -116866,7 +111785,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17288 + - uid: 17320 components: - rot: -1.5707963267948966 rad pos: -25.5,-5.5 @@ -116874,7 +111793,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17289 + - uid: 17321 components: - rot: -1.5707963267948966 rad pos: -29.5,-13.5 @@ -116882,7 +111801,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17290 + - uid: 17322 components: - rot: -1.5707963267948966 rad pos: -30.5,-13.5 @@ -116890,9 +111809,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17291 + - uid: 17323 components: - rot: -1.5707963267948966 rad pos: -29.5,-10.5 @@ -116900,7 +111817,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17292 + - uid: 17324 components: - rot: -1.5707963267948966 rad pos: -30.5,-10.5 @@ -116908,7 +111825,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17293 + - uid: 17325 components: - rot: -1.5707963267948966 rad pos: -31.5,-10.5 @@ -116916,156 +111833,152 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17294 + - uid: 17326 components: - rot: -1.5707963267948966 rad pos: 51.5,-60.5 parent: 2 type: Transform - - uid: 17295 + - uid: 17327 components: - rot: -1.5707963267948966 rad pos: 52.5,-60.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17296 + - uid: 17328 components: - pos: -18.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17297 + - uid: 17329 components: - pos: -18.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17298 + - uid: 17330 components: - pos: -18.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17299 + - uid: 17331 components: - pos: -18.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17300 + - uid: 17332 components: - pos: -18.5,-37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17301 + - uid: 17333 components: - pos: -18.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17302 + - uid: 17334 components: - pos: -18.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17303 + - uid: 17335 components: - pos: -18.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17304 + - uid: 17336 components: - pos: -18.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17305 + - uid: 17337 components: - pos: -18.5,-32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17306 + - uid: 17338 components: - pos: -20.5,-34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17307 + - uid: 17339 components: - pos: -20.5,-35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17308 + - uid: 17340 components: - pos: -20.5,-36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17309 + - uid: 17341 components: - pos: -20.5,-37.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17310 + - uid: 17342 components: - pos: -20.5,-38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17311 + - uid: 17343 components: - pos: -20.5,-39.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17312 + - uid: 17344 components: - pos: -20.5,-40.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17313 + - uid: 17345 components: - pos: -18.5,-44.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17314 + - uid: 17346 components: - pos: -18.5,-45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17315 + - uid: 17347 components: - rot: 3.141592653589793 rad pos: -20.5,-42.5 @@ -117073,7 +111986,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17316 + - uid: 17348 components: - rot: 3.141592653589793 rad pos: -20.5,-44.5 @@ -117081,9 +111994,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17317 + - uid: 17349 components: - rot: 3.141592653589793 rad pos: -20.5,-45.5 @@ -117091,7 +112002,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17318 + - uid: 17350 components: - rot: 3.141592653589793 rad pos: -20.5,-46.5 @@ -117099,7 +112010,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17319 + - uid: 17351 components: - rot: 1.5707963267948966 rad pos: 45.5,-72.5 @@ -117107,7 +112018,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17320 + - uid: 17352 components: - rot: 3.141592653589793 rad pos: 29.5,-79.5 @@ -117115,7 +112026,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17321 + - uid: 17353 components: - rot: 3.141592653589793 rad pos: 29.5,-84.5 @@ -117123,7 +112034,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17322 + - uid: 17354 components: - rot: 3.141592653589793 rad pos: 48.5,-79.5 @@ -117131,7 +112042,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17323 + - uid: 17355 components: - rot: 3.141592653589793 rad pos: 48.5,-75.5 @@ -117139,7 +112050,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17324 + - uid: 17356 components: - rot: 1.5707963267948966 rad pos: 41.5,-72.5 @@ -117147,7 +112058,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17325 + - uid: 17357 components: - rot: 1.5707963267948966 rad pos: 39.5,-72.5 @@ -117155,35 +112066,35 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17326 + - uid: 17358 components: - pos: 38.5,-70.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17327 + - uid: 17359 components: - pos: 38.5,-69.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17328 + - uid: 17360 components: - pos: 40.5,-69.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17329 + - uid: 17361 components: - pos: 40.5,-70.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17330 + - uid: 17362 components: - rot: 1.5707963267948966 rad pos: 44.5,-73.5 @@ -117191,7 +112102,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17331 + - uid: 17363 components: - rot: 1.5707963267948966 rad pos: 43.5,-73.5 @@ -117199,7 +112110,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17332 + - uid: 17364 components: - rot: 1.5707963267948966 rad pos: 42.5,-73.5 @@ -117207,7 +112118,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17333 + - uid: 17365 components: - rot: 3.141592653589793 rad pos: 30.5,-81.5 @@ -117215,7 +112126,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17334 + - uid: 17366 components: - rot: 3.141592653589793 rad pos: 29.5,-80.5 @@ -117223,7 +112134,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17335 + - uid: 17367 components: - rot: 1.5707963267948966 rad pos: 46.5,-72.5 @@ -117231,7 +112142,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17336 + - uid: 17368 components: - rot: 3.141592653589793 rad pos: 47.5,-79.5 @@ -117239,7 +112150,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17337 + - uid: 17369 components: - rot: 1.5707963267948966 rad pos: 40.5,-72.5 @@ -117247,7 +112158,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17338 + - uid: 17370 components: - rot: 3.141592653589793 rad pos: 47.5,-73.5 @@ -117255,7 +112166,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17339 + - uid: 17371 components: - rot: 3.141592653589793 rad pos: 29.5,-78.5 @@ -117263,7 +112174,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17340 + - uid: 17372 components: - rot: 3.141592653589793 rad pos: 30.5,-73.5 @@ -117271,7 +112182,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17341 + - uid: 17373 components: - rot: 3.141592653589793 rad pos: 29.5,-81.5 @@ -117279,7 +112190,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17342 + - uid: 17374 components: - rot: 3.141592653589793 rad pos: 2.5,-59.5 @@ -117287,7 +112198,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17343 + - uid: 17375 components: - rot: 3.141592653589793 rad pos: 2.5,-58.5 @@ -117295,9 +112206,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17344 + - uid: 17376 components: - rot: 3.141592653589793 rad pos: 3.5,-60.5 @@ -117305,7 +112214,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17345 + - uid: 17377 components: - rot: 3.141592653589793 rad pos: 3.5,-59.5 @@ -117313,7 +112222,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17346 + - uid: 17378 components: - rot: 3.141592653589793 rad pos: 3.5,-58.5 @@ -117321,7 +112230,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17347 + - uid: 17379 components: - rot: 3.141592653589793 rad pos: 2.5,-57.5 @@ -117329,7 +112238,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17348 + - uid: 17380 components: - rot: 3.141592653589793 rad pos: -41.5,-7.5 @@ -117337,14 +112246,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17349 + - uid: 17381 components: - pos: -31.5,-12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17350 + - uid: 17382 components: - rot: 1.5707963267948966 rad pos: -29.5,-17.5 @@ -117352,7 +112261,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17351 + - uid: 17383 components: - rot: 1.5707963267948966 rad pos: -30.5,-17.5 @@ -117360,7 +112269,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17352 + - uid: 17384 components: - rot: -1.5707963267948966 rad pos: -30.5,-16.5 @@ -117368,7 +112277,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17353 + - uid: 17385 components: - rot: -1.5707963267948966 rad pos: -31.5,-16.5 @@ -117376,28 +112285,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17354 + - uid: 17386 components: - pos: -31.5,-18.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17355 + - uid: 17387 components: - pos: -31.5,-16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17356 + - uid: 17388 components: - pos: -31.5,-14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17357 + - uid: 17389 components: - rot: 3.141592653589793 rad pos: -32.5,-11.5 @@ -117405,7 +112314,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17358 + - uid: 17390 components: - rot: 3.141592653589793 rad pos: -32.5,-12.5 @@ -117413,7 +112322,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17359 + - uid: 17391 components: - rot: 3.141592653589793 rad pos: -32.5,-13.5 @@ -117421,7 +112330,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17360 + - uid: 17392 components: - rot: 3.141592653589793 rad pos: -32.5,-14.5 @@ -117429,7 +112338,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17361 + - uid: 17393 components: - rot: 3.141592653589793 rad pos: -32.5,-15.5 @@ -117437,7 +112346,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17362 + - uid: 17394 components: - rot: 1.5707963267948966 rad pos: -32.5,-11.5 @@ -117445,7 +112354,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17363 + - uid: 17395 components: - rot: 1.5707963267948966 rad pos: -33.5,-11.5 @@ -117453,7 +112362,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17364 + - uid: 17396 components: - rot: 1.5707963267948966 rad pos: -34.5,-11.5 @@ -117461,7 +112370,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17365 + - uid: 17397 components: - rot: 1.5707963267948966 rad pos: -35.5,-11.5 @@ -117469,7 +112378,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17366 + - uid: 17398 components: - rot: 1.5707963267948966 rad pos: -33.5,-10.5 @@ -117477,7 +112386,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17367 + - uid: 17399 components: - rot: 1.5707963267948966 rad pos: -34.5,-10.5 @@ -117485,112 +112394,112 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17368 + - uid: 17400 components: - pos: -32.5,-18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17369 + - uid: 17401 components: - pos: -32.5,-19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17370 + - uid: 17402 components: - pos: -32.5,-20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17371 + - uid: 17403 components: - pos: -31.5,-19.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17372 + - uid: 17404 components: - pos: -31.5,-20.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17373 + - uid: 17405 components: - pos: -31.5,-21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17374 + - uid: 17406 components: - pos: -32.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17375 + - uid: 17407 components: - pos: -32.5,-22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17376 + - uid: 17408 components: - pos: -32.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17377 + - uid: 17409 components: - pos: -32.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17378 + - uid: 17410 components: - pos: -31.5,-22.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17379 + - uid: 17411 components: - pos: -31.5,-23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17380 + - uid: 17412 components: - pos: -31.5,-24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17381 + - uid: 17413 components: - pos: -31.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17382 + - uid: 17414 components: - pos: -31.5,-26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17383 + - uid: 17415 components: - rot: 3.141592653589793 rad pos: -32.5,-26.5 @@ -117598,7 +112507,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17384 + - uid: 17416 components: - rot: 3.141592653589793 rad pos: -32.5,-27.5 @@ -117606,7 +112515,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17385 + - uid: 17417 components: - rot: 3.141592653589793 rad pos: -32.5,-28.5 @@ -117614,7 +112523,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17386 + - uid: 17418 components: - rot: 3.141592653589793 rad pos: -32.5,-29.5 @@ -117622,7 +112531,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17387 + - uid: 17419 components: - rot: 3.141592653589793 rad pos: -32.5,-30.5 @@ -117630,7 +112539,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17388 + - uid: 17420 components: - rot: 3.141592653589793 rad pos: -31.5,-28.5 @@ -117638,7 +112547,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17389 + - uid: 17421 components: - rot: 3.141592653589793 rad pos: -31.5,-29.5 @@ -117646,7 +112555,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17390 + - uid: 17422 components: - rot: 3.141592653589793 rad pos: -31.5,-30.5 @@ -117654,7 +112563,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17391 + - uid: 17423 components: - rot: 1.5707963267948966 rad pos: -32.5,-15.5 @@ -117662,7 +112571,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17392 + - uid: 17424 components: - rot: 1.5707963267948966 rad pos: -33.5,-15.5 @@ -117670,9 +112579,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17393 + - uid: 17425 components: - rot: 1.5707963267948966 rad pos: -33.5,-17.5 @@ -117680,7 +112587,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17394 + - uid: 17426 components: - rot: -1.5707963267948966 rad pos: -37.5,-11.5 @@ -117688,7 +112595,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17395 + - uid: 17427 components: - rot: -1.5707963267948966 rad pos: -38.5,-11.5 @@ -117696,7 +112603,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17396 + - uid: 17428 components: - rot: -1.5707963267948966 rad pos: -39.5,-11.5 @@ -117704,7 +112611,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17397 + - uid: 17429 components: - rot: -1.5707963267948966 rad pos: -40.5,-11.5 @@ -117712,7 +112619,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17398 + - uid: 17430 components: - rot: -1.5707963267948966 rad pos: -36.5,-10.5 @@ -117720,7 +112627,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17399 + - uid: 17431 components: - rot: -1.5707963267948966 rad pos: -37.5,-10.5 @@ -117728,7 +112635,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17400 + - uid: 17432 components: - rot: -1.5707963267948966 rad pos: -38.5,-10.5 @@ -117736,7 +112643,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17401 + - uid: 17433 components: - rot: -1.5707963267948966 rad pos: -39.5,-10.5 @@ -117744,7 +112651,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17402 + - uid: 17434 components: - rot: -1.5707963267948966 rad pos: -40.5,-10.5 @@ -117752,7 +112659,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17403 + - uid: 17435 components: - rot: -1.5707963267948966 rad pos: -41.5,-10.5 @@ -117760,72 +112667,70 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17404 + - uid: 17436 components: - pos: -42.5,-11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17405 + - uid: 17437 components: - pos: -42.5,-12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17406 + - uid: 17438 components: - pos: -42.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17407 + - uid: 17439 components: - pos: -42.5,-14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17408 + - uid: 17440 components: - pos: -41.5,-12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17409 + - uid: 17441 components: - pos: -41.5,-13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17410 + - uid: 17442 components: - pos: -41.5,-14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17411 + - uid: 17443 components: - pos: -41.5,-15.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17412 + - uid: 17444 components: - pos: -20.5,12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17413 + - uid: 17445 components: - rot: -1.5707963267948966 rad pos: -19.5,6.5 @@ -117833,7 +112738,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17414 + - uid: 17446 components: - rot: -1.5707963267948966 rad pos: -20.5,6.5 @@ -117841,7 +112746,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17415 + - uid: 17447 components: - rot: -1.5707963267948966 rad pos: -21.5,6.5 @@ -117849,7 +112754,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17416 + - uid: 17448 components: - rot: -1.5707963267948966 rad pos: -22.5,6.5 @@ -117857,7 +112762,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17417 + - uid: 17449 components: - rot: -1.5707963267948966 rad pos: -23.5,6.5 @@ -117865,7 +112770,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17418 + - uid: 17450 components: - rot: -1.5707963267948966 rad pos: -21.5,7.5 @@ -117873,7 +112778,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17419 + - uid: 17451 components: - rot: -1.5707963267948966 rad pos: -22.5,7.5 @@ -117881,7 +112786,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17420 + - uid: 17452 components: - rot: -1.5707963267948966 rad pos: -23.5,7.5 @@ -117889,7 +112794,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17421 + - uid: 17453 components: - rot: -1.5707963267948966 rad pos: -24.5,6.5 @@ -117897,7 +112802,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17422 + - uid: 17454 components: - rot: -1.5707963267948966 rad pos: -25.5,6.5 @@ -117905,7 +112810,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17423 + - uid: 17455 components: - rot: 3.141592653589793 rad pos: -26.5,-3.5 @@ -117913,7 +112818,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17424 + - uid: 17456 components: - rot: 3.141592653589793 rad pos: -26.5,-2.5 @@ -117921,7 +112826,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17425 + - uid: 17457 components: - rot: 3.141592653589793 rad pos: -26.5,-1.5 @@ -117929,7 +112834,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17426 + - uid: 17458 components: - rot: 3.141592653589793 rad pos: -26.5,-0.5 @@ -117937,7 +112842,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17427 + - uid: 17459 components: - rot: 3.141592653589793 rad pos: -26.5,0.5 @@ -117945,7 +112850,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17428 + - uid: 17460 components: - rot: 3.141592653589793 rad pos: -26.5,2.5 @@ -117953,7 +112858,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17429 + - uid: 17461 components: - rot: 3.141592653589793 rad pos: -26.5,3.5 @@ -117961,7 +112866,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17430 + - uid: 17462 components: - rot: 3.141592653589793 rad pos: -26.5,4.5 @@ -117969,7 +112874,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17431 + - uid: 17463 components: - rot: 3.141592653589793 rad pos: -26.5,5.5 @@ -117977,7 +112882,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17432 + - uid: 17464 components: - rot: 3.141592653589793 rad pos: -24.5,6.5 @@ -117985,7 +112890,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17433 + - uid: 17465 components: - rot: 3.141592653589793 rad pos: -24.5,5.5 @@ -117993,7 +112898,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17434 + - uid: 17466 components: - rot: 3.141592653589793 rad pos: -24.5,4.5 @@ -118001,7 +112906,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17435 + - uid: 17467 components: - rot: 3.141592653589793 rad pos: -24.5,3.5 @@ -118009,7 +112914,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17436 + - uid: 17468 components: - rot: 3.141592653589793 rad pos: -24.5,2.5 @@ -118017,7 +112922,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17437 + - uid: 17469 components: - rot: 3.141592653589793 rad pos: -24.5,1.5 @@ -118025,7 +112930,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17438 + - uid: 17470 components: - rot: 3.141592653589793 rad pos: -24.5,-0.5 @@ -118033,7 +112938,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17439 + - uid: 17471 components: - rot: 3.141592653589793 rad pos: -24.5,-1.5 @@ -118041,7 +112946,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17440 + - uid: 17472 components: - rot: 3.141592653589793 rad pos: -24.5,-3.5 @@ -118049,7 +112954,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17441 + - uid: 17473 components: - rot: -1.5707963267948966 rad pos: -43.5,-10.5 @@ -118057,7 +112962,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17442 + - uid: 17474 components: - rot: -1.5707963267948966 rad pos: -42.5,-11.5 @@ -118065,7 +112970,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17443 + - uid: 17475 components: - rot: -1.5707963267948966 rad pos: -43.5,-11.5 @@ -118073,7 +112978,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17444 + - uid: 17476 components: - rot: 3.141592653589793 rad pos: -41.5,-10.5 @@ -118081,7 +112986,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17445 + - uid: 17477 components: - rot: 3.141592653589793 rad pos: -42.5,-7.5 @@ -118089,7 +112994,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17446 + - uid: 17478 components: - rot: 1.5707963267948966 rad pos: -42.5,-5.5 @@ -118097,7 +113002,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17447 + - uid: 17479 components: - rot: 1.5707963267948966 rad pos: -43.5,-5.5 @@ -118105,7 +113010,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17448 + - uid: 17480 components: - rot: 1.5707963267948966 rad pos: -44.5,-5.5 @@ -118113,7 +113018,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17449 + - uid: 17481 components: - rot: 1.5707963267948966 rad pos: -45.5,-5.5 @@ -118121,7 +113026,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17450 + - uid: 17482 components: - rot: 3.141592653589793 rad pos: -41.5,-9.5 @@ -118129,7 +113034,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17451 + - uid: 17483 components: - rot: 3.141592653589793 rad pos: -42.5,-9.5 @@ -118137,7 +113042,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17452 + - uid: 17484 components: - rot: 3.141592653589793 rad pos: -42.5,-8.5 @@ -118145,7 +113050,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17453 + - uid: 17485 components: - rot: 1.5707963267948966 rad pos: -43.5,-6.5 @@ -118153,7 +113058,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17454 + - uid: 17486 components: - rot: 1.5707963267948966 rad pos: -44.5,-6.5 @@ -118161,7 +113066,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17455 + - uid: 17487 components: - rot: 1.5707963267948966 rad pos: -45.5,-6.5 @@ -118169,7 +113074,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17456 + - uid: 17488 components: - rot: 1.5707963267948966 rad pos: -46.5,-6.5 @@ -118177,7 +113082,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17457 + - uid: 17489 components: - rot: 1.5707963267948966 rad pos: -47.5,-5.5 @@ -118185,7 +113090,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17458 + - uid: 17490 components: - rot: 1.5707963267948966 rad pos: -48.5,-5.5 @@ -118193,7 +113098,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17459 + - uid: 17491 components: - rot: 1.5707963267948966 rad pos: -49.5,-5.5 @@ -118201,7 +113106,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17460 + - uid: 17492 components: - rot: 1.5707963267948966 rad pos: -50.5,-5.5 @@ -118209,7 +113114,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17461 + - uid: 17493 components: - rot: 1.5707963267948966 rad pos: -51.5,-5.5 @@ -118217,7 +113122,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17462 + - uid: 17494 components: - rot: 1.5707963267948966 rad pos: -52.5,-5.5 @@ -118225,7 +113130,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17463 + - uid: 17495 components: - rot: 1.5707963267948966 rad pos: -48.5,-6.5 @@ -118233,7 +113138,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17464 + - uid: 17496 components: - rot: 1.5707963267948966 rad pos: -49.5,-6.5 @@ -118241,7 +113146,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17465 + - uid: 17497 components: - rot: 1.5707963267948966 rad pos: -50.5,-6.5 @@ -118249,7 +113154,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17466 + - uid: 17498 components: - rot: 1.5707963267948966 rad pos: -51.5,-6.5 @@ -118257,119 +113162,119 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17467 + - uid: 17499 components: - pos: -53.5,-6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17468 + - uid: 17500 components: - pos: -53.5,-7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17469 + - uid: 17501 components: - pos: -53.5,-8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17470 + - uid: 17502 components: - pos: -53.5,-9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17471 + - uid: 17503 components: - pos: -53.5,-10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17472 + - uid: 17504 components: - pos: -53.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17473 + - uid: 17505 components: - pos: -53.5,-12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17474 + - uid: 17506 components: - pos: -52.5,-7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17475 + - uid: 17507 components: - pos: -52.5,-8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17476 + - uid: 17508 components: - pos: -52.5,-9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17477 + - uid: 17509 components: - pos: -52.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17478 + - uid: 17510 components: - pos: -52.5,-11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17479 + - uid: 17511 components: - pos: -52.5,-12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17480 + - uid: 17512 components: - pos: -52.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17481 + - uid: 17513 components: - pos: -52.5,-14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17482 + - uid: 17514 components: - pos: -52.5,-15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17483 + - uid: 17515 components: - rot: 3.141592653589793 rad pos: -53.5,-14.5 @@ -118377,7 +113282,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17484 + - uid: 17516 components: - rot: 3.141592653589793 rad pos: -53.5,-15.5 @@ -118385,7 +113290,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17485 + - uid: 17517 components: - rot: 3.141592653589793 rad pos: -53.5,-16.5 @@ -118393,7 +113298,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17486 + - uid: 17518 components: - rot: 3.141592653589793 rad pos: -53.5,-17.5 @@ -118401,7 +113306,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17487 + - uid: 17519 components: - rot: 3.141592653589793 rad pos: -53.5,-18.5 @@ -118409,7 +113314,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17488 + - uid: 17520 components: - rot: 1.5707963267948966 rad pos: -51.5,-17.5 @@ -118417,7 +113322,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17489 + - uid: 17521 components: - rot: 1.5707963267948966 rad pos: -52.5,-19.5 @@ -118425,58 +113330,56 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17490 + - uid: 17522 components: - pos: -50.5,-18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17491 + - uid: 17523 components: - pos: -50.5,-20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17492 + - uid: 17524 components: - pos: -50.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17493 + - uid: 17525 components: - pos: -51.5,-20.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17494 + - uid: 17526 components: - pos: -51.5,-21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17495 + - uid: 17527 components: - pos: -51.5,-22.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17496 + - uid: 17528 components: - pos: -47.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17497 + - uid: 17529 components: - rot: 1.5707963267948966 rad pos: -48.5,-19.5 @@ -118484,7 +113387,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17498 + - uid: 17530 components: - rot: 1.5707963267948966 rad pos: -49.5,-19.5 @@ -118492,9 +113395,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17499 + - uid: 17531 components: - rot: 3.141592653589793 rad pos: -41.5,-6.5 @@ -118502,7 +113403,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17500 + - uid: 17532 components: - rot: -1.5707963267948966 rad pos: -60.5,-23.5 @@ -118510,7 +113411,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17501 + - uid: 17533 components: - rot: -1.5707963267948966 rad pos: -62.5,-23.5 @@ -118518,77 +113419,77 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17502 + - uid: 17534 components: - pos: -53.5,-20.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17503 + - uid: 17535 components: - pos: -53.5,-21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17504 + - uid: 17536 components: - pos: -53.5,-22.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17505 + - uid: 17537 components: - pos: -53.5,-23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17506 + - uid: 17538 components: - pos: -53.5,-24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17507 + - uid: 17539 components: - pos: -54.5,-18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17508 + - uid: 17540 components: - pos: -54.5,-19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17509 + - uid: 17541 components: - pos: -54.5,-20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17510 + - uid: 17542 components: - pos: -54.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17511 + - uid: 17543 components: - pos: -54.5,-22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17512 + - uid: 17544 components: - rot: -1.5707963267948966 rad pos: -53.5,-17.5 @@ -118596,7 +113497,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17513 + - uid: 17545 components: - rot: 1.5707963267948966 rad pos: -54.5,-25.5 @@ -118604,7 +113505,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17514 + - uid: 17546 components: - rot: 1.5707963267948966 rad pos: -55.5,-25.5 @@ -118612,7 +113513,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17515 + - uid: 17547 components: - rot: 1.5707963267948966 rad pos: -56.5,-25.5 @@ -118620,7 +113521,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17516 + - uid: 17548 components: - rot: 1.5707963267948966 rad pos: -57.5,-25.5 @@ -118628,7 +113529,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17517 + - uid: 17549 components: - rot: 1.5707963267948966 rad pos: -58.5,-25.5 @@ -118636,7 +113537,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17518 + - uid: 17550 components: - rot: 1.5707963267948966 rad pos: -55.5,-23.5 @@ -118644,7 +113545,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17519 + - uid: 17551 components: - rot: 1.5707963267948966 rad pos: -57.5,-23.5 @@ -118652,7 +113553,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17520 + - uid: 17552 components: - rot: 1.5707963267948966 rad pos: -58.5,-23.5 @@ -118660,7 +113561,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17521 + - uid: 17553 components: - rot: -1.5707963267948966 rad pos: -59.5,-23.5 @@ -118668,7 +113569,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17522 + - uid: 17554 components: - rot: -1.5707963267948966 rad pos: -61.5,-23.5 @@ -118676,7 +113577,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17523 + - uid: 17555 components: - rot: -1.5707963267948966 rad pos: -63.5,-23.5 @@ -118684,7 +113585,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17524 + - uid: 17556 components: - rot: -1.5707963267948966 rad pos: -64.5,-23.5 @@ -118692,7 +113593,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17525 + - uid: 17557 components: - rot: -1.5707963267948966 rad pos: -65.5,-23.5 @@ -118700,7 +113601,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17526 + - uid: 17558 components: - rot: -1.5707963267948966 rad pos: -66.5,-23.5 @@ -118708,7 +113609,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17527 + - uid: 17559 components: - rot: -1.5707963267948966 rad pos: -67.5,-23.5 @@ -118716,49 +113617,49 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17528 + - uid: 17560 components: - pos: -68.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17529 + - uid: 17561 components: - pos: -68.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17530 + - uid: 17562 components: - pos: -68.5,-26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17531 + - uid: 17563 components: - pos: -68.5,-28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17532 + - uid: 17564 components: - pos: -68.5,-29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17533 + - uid: 17565 components: - pos: -68.5,-30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17534 + - uid: 17566 components: - rot: -1.5707963267948966 rad pos: -60.5,-25.5 @@ -118766,7 +113667,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17535 + - uid: 17567 components: - rot: -1.5707963267948966 rad pos: -61.5,-25.5 @@ -118774,7 +113675,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17536 + - uid: 17568 components: - rot: -1.5707963267948966 rad pos: -62.5,-25.5 @@ -118782,7 +113683,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17537 + - uid: 17569 components: - rot: -1.5707963267948966 rad pos: -63.5,-25.5 @@ -118790,16 +113691,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17538 + - uid: 17570 components: - pos: -64.5,-26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17539 + - uid: 17571 components: - rot: 3.141592653589793 rad pos: -64.5,-28.5 @@ -118807,7 +113706,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17540 + - uid: 17572 components: - rot: 3.141592653589793 rad pos: -64.5,-29.5 @@ -118815,7 +113714,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17541 + - uid: 17573 components: - rot: 3.141592653589793 rad pos: -64.5,-30.5 @@ -118823,650 +113722,486 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17542 + - uid: 17574 components: - rot: 1.5707963267948966 rad pos: -47.5,-42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17543 + - uid: 17575 components: - rot: 1.5707963267948966 rad pos: -47.5,-44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17544 + - uid: 17576 components: - rot: 1.5707963267948966 rad pos: -47.5,-46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17545 + - uid: 17577 components: - rot: 1.5707963267948966 rad pos: -47.5,-48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17546 + - uid: 17578 components: - rot: 1.5707963267948966 rad pos: -47.5,-50.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17547 + - uid: 17579 components: - rot: 1.5707963267948966 rad pos: -47.5,-52.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17548 + - uid: 17580 components: - rot: 1.5707963267948966 rad pos: -47.5,-54.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17549 + - uid: 17581 components: - rot: 1.5707963267948966 rad pos: -49.5,-55.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17550 + - uid: 17582 components: - rot: 1.5707963267948966 rad pos: -48.5,-55.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17551 + - uid: 17583 components: - rot: 1.5707963267948966 rad pos: -47.5,-55.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17552 + - uid: 17584 components: - rot: 1.5707963267948966 rad pos: -49.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17553 + - uid: 17585 components: - rot: 1.5707963267948966 rad pos: -48.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17554 + - uid: 17586 components: - rot: 1.5707963267948966 rad pos: -47.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17555 + - uid: 17587 components: - rot: 1.5707963267948966 rad pos: -49.5,-51.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17556 + - uid: 17588 components: - rot: 1.5707963267948966 rad pos: -48.5,-51.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17557 + - uid: 17589 components: - rot: 1.5707963267948966 rad pos: -47.5,-51.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17558 + - uid: 17590 components: - rot: 1.5707963267948966 rad pos: -49.5,-49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17559 + - uid: 17591 components: - rot: 1.5707963267948966 rad pos: -48.5,-49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17560 + - uid: 17592 components: - rot: 1.5707963267948966 rad pos: -47.5,-49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17561 + - uid: 17593 components: - rot: 1.5707963267948966 rad pos: -49.5,-47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17562 + - uid: 17594 components: - rot: 1.5707963267948966 rad pos: -48.5,-47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17563 + - uid: 17595 components: - rot: 1.5707963267948966 rad pos: -47.5,-47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17564 + - uid: 17596 components: - rot: 1.5707963267948966 rad pos: -49.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17565 + - uid: 17597 components: - rot: 1.5707963267948966 rad pos: -48.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17566 + - uid: 17598 components: - rot: 1.5707963267948966 rad pos: -47.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17567 + - uid: 17599 components: - rot: 1.5707963267948966 rad pos: -49.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17568 + - uid: 17600 components: - rot: 1.5707963267948966 rad pos: -48.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17569 + - uid: 17601 components: - rot: 1.5707963267948966 rad pos: -47.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17570 + - uid: 17602 components: - rot: 1.5707963267948966 rad pos: -46.5,-52.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17571 + - uid: 17603 components: - rot: 1.5707963267948966 rad pos: -45.5,-52.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17572 + - uid: 17604 components: - rot: 1.5707963267948966 rad pos: -46.5,-54.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17573 + - uid: 17605 components: - rot: 1.5707963267948966 rad pos: -45.5,-54.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17574 + - uid: 17606 components: - rot: 1.5707963267948966 rad pos: -46.5,-50.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17575 + - uid: 17607 components: - rot: 1.5707963267948966 rad pos: -45.5,-50.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17576 + - uid: 17608 components: - rot: 1.5707963267948966 rad pos: -46.5,-48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17577 + - uid: 17609 components: - rot: 1.5707963267948966 rad pos: -45.5,-48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17578 + - uid: 17610 components: - rot: 1.5707963267948966 rad pos: -46.5,-46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17579 + - uid: 17611 components: - rot: 1.5707963267948966 rad pos: -45.5,-46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17580 + - uid: 17612 components: - rot: 1.5707963267948966 rad pos: -46.5,-44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17581 + - uid: 17613 components: - rot: 1.5707963267948966 rad pos: -45.5,-44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17582 + - uid: 17614 components: - rot: 1.5707963267948966 rad pos: -46.5,-42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17583 + - uid: 17615 components: - rot: 1.5707963267948966 rad pos: -45.5,-42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17584 + - uid: 17616 components: - rot: 1.5707963267948966 rad pos: -45.5,-55.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17585 + - uid: 17617 components: - rot: 1.5707963267948966 rad pos: -46.5,-55.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17586 + - uid: 17618 components: - rot: 1.5707963267948966 rad pos: -46.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17587 + - uid: 17619 components: - rot: 1.5707963267948966 rad pos: -45.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17588 + - uid: 17620 components: - rot: 1.5707963267948966 rad pos: -43.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17589 + - uid: 17621 components: - rot: 1.5707963267948966 rad pos: -46.5,-51.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17590 + - uid: 17622 components: - rot: 1.5707963267948966 rad pos: -45.5,-51.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17591 + - uid: 17623 components: - rot: 1.5707963267948966 rad pos: -43.5,-51.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17592 + - uid: 17624 components: - rot: 1.5707963267948966 rad pos: -46.5,-49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17593 + - uid: 17625 components: - rot: 1.5707963267948966 rad pos: -45.5,-49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17594 + - uid: 17626 components: - rot: 1.5707963267948966 rad pos: -43.5,-49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17595 + - uid: 17627 components: - rot: 1.5707963267948966 rad pos: -46.5,-47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17596 + - uid: 17628 components: - rot: 1.5707963267948966 rad pos: -45.5,-47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17597 + - uid: 17629 components: - rot: 1.5707963267948966 rad pos: -43.5,-47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17598 + - uid: 17630 components: - rot: 1.5707963267948966 rad pos: -46.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17599 + - uid: 17631 components: - rot: 1.5707963267948966 rad pos: -45.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17600 + - uid: 17632 components: - rot: 1.5707963267948966 rad pos: -43.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17601 + - uid: 17633 components: - rot: 1.5707963267948966 rad pos: -46.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17602 + - uid: 17634 components: - rot: 1.5707963267948966 rad pos: -45.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17603 + - uid: 17635 components: - rot: 1.5707963267948966 rad pos: -43.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17604 + - uid: 17636 components: - rot: 3.141592653589793 rad pos: -42.5,-54.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17605 + - uid: 17637 components: - rot: 3.141592653589793 rad pos: -43.5,-54.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17606 + - uid: 17638 components: - rot: 3.141592653589793 rad pos: -43.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17607 + - uid: 17639 components: - pos: -42.5,-50.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17608 + - uid: 17640 components: - pos: -42.5,-48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17609 + - uid: 17641 components: - pos: -42.5,-46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17610 + - uid: 17642 components: - pos: -42.5,-44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17611 + - uid: 17643 components: - pos: -42.5,-42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17612 + - uid: 17644 components: - pos: -44.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17613 + - uid: 17645 components: - pos: -44.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17614 + - uid: 17646 components: - pos: -44.5,-47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17615 + - uid: 17647 components: - pos: -44.5,-49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17616 + - uid: 17648 components: - pos: -44.5,-51.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17617 + - uid: 17649 components: - pos: -44.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17618 + - uid: 17650 components: - pos: -44.5,-55.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17619 + - uid: 17651 components: - pos: -44.5,-56.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17620 + - uid: 17652 components: - rot: 1.5707963267948966 rad pos: -43.5,-57.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17621 + - uid: 17653 components: - rot: 1.5707963267948966 rad pos: -42.5,-57.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17622 + - uid: 17654 components: - rot: 1.5707963267948966 rad pos: -41.5,-57.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17623 + - uid: 17655 components: - rot: 1.5707963267948966 rad pos: -40.5,-57.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17624 + - uid: 17656 components: - rot: 1.5707963267948966 rad pos: -41.5,-55.5 @@ -119474,9 +114209,7 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17625 + - uid: 17657 components: - rot: 1.5707963267948966 rad pos: -36.5,-57.5 @@ -119484,41 +114217,37 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17626 + - uid: 17658 components: - rot: 3.141592653589793 rad pos: -42.5,-39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17627 + - uid: 17659 components: - rot: 3.141592653589793 rad pos: -42.5,-38.5 parent: 2 type: Transform - - uid: 17628 + - uid: 17660 components: - rot: 3.141592653589793 rad pos: -42.5,-37.5 parent: 2 type: Transform - - uid: 17629 + - uid: 17661 components: - rot: 3.141592653589793 rad pos: -42.5,-36.5 parent: 2 type: Transform - - uid: 17630 + - uid: 17662 components: - rot: 3.141592653589793 rad pos: -38.5,-59.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 17631 + - uid: 17663 components: - rot: 3.141592653589793 rad pos: -40.5,-52.5 @@ -119526,9 +114255,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17632 + - uid: 17664 components: - rot: 3.141592653589793 rad pos: -37.5,-52.5 @@ -119536,9 +114263,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17633 + - uid: 17665 components: - rot: 1.5707963267948966 rad pos: -37.5,-55.5 @@ -119546,9 +114271,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17634 + - uid: 17666 components: - rot: -1.5707963267948966 rad pos: -38.5,-55.5 @@ -119556,9 +114279,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17635 + - uid: 17667 components: - rot: 1.5707963267948966 rad pos: -39.5,-48.5 @@ -119566,9 +114287,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17636 + - uid: 17668 components: - rot: 3.141592653589793 rad pos: -38.5,-47.5 @@ -119576,9 +114295,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17637 + - uid: 17669 components: - rot: 3.141592653589793 rad pos: -38.5,-46.5 @@ -119586,9 +114303,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17638 + - uid: 17670 components: - rot: 1.5707963267948966 rad pos: -35.5,-57.5 @@ -119596,35 +114311,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17639 + - uid: 17671 components: - pos: -31.5,-31.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17640 + - uid: 17672 components: - pos: -32.5,-31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17641 + - uid: 17673 components: - pos: -32.5,-32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17642 + - uid: 17674 components: - pos: -31.5,-32.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17643 + - uid: 17675 components: - rot: 3.141592653589793 rad pos: -31.5,-33.5 @@ -119632,7 +114347,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17644 + - uid: 17676 components: - rot: 3.141592653589793 rad pos: -32.5,-34.5 @@ -119640,7 +114355,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17645 + - uid: 17677 components: - rot: 1.5707963267948966 rad pos: -31.5,-33.5 @@ -119648,7 +114363,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17646 + - uid: 17678 components: - rot: 1.5707963267948966 rad pos: -30.5,-33.5 @@ -119656,7 +114371,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17647 + - uid: 17679 components: - rot: 1.5707963267948966 rad pos: -29.5,-33.5 @@ -119664,7 +114379,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17648 + - uid: 17680 components: - rot: 1.5707963267948966 rad pos: -28.5,-33.5 @@ -119672,7 +114387,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17649 + - uid: 17681 components: - rot: 1.5707963267948966 rad pos: -27.5,-33.5 @@ -119680,7 +114395,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17650 + - uid: 17682 components: - rot: 1.5707963267948966 rad pos: -26.5,-33.5 @@ -119688,7 +114403,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17651 + - uid: 17683 components: - rot: 1.5707963267948966 rad pos: -25.5,-33.5 @@ -119696,7 +114411,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17652 + - uid: 17684 components: - rot: 1.5707963267948966 rad pos: -34.5,-33.5 @@ -119704,7 +114419,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17653 + - uid: 17685 components: - rot: 1.5707963267948966 rad pos: -35.5,-33.5 @@ -119712,7 +114427,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17654 + - uid: 17686 components: - rot: 1.5707963267948966 rad pos: -36.5,-33.5 @@ -119720,7 +114435,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17655 + - uid: 17687 components: - rot: 1.5707963267948966 rad pos: -37.5,-33.5 @@ -119728,7 +114443,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17656 + - uid: 17688 components: - rot: 1.5707963267948966 rad pos: -32.5,-34.5 @@ -119736,7 +114451,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17657 + - uid: 17689 components: - rot: 1.5707963267948966 rad pos: -33.5,-34.5 @@ -119744,7 +114459,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17658 + - uid: 17690 components: - rot: 1.5707963267948966 rad pos: -34.5,-34.5 @@ -119752,7 +114467,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17659 + - uid: 17691 components: - rot: 1.5707963267948966 rad pos: -35.5,-34.5 @@ -119760,7 +114475,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17660 + - uid: 17692 components: - rot: 1.5707963267948966 rad pos: -36.5,-34.5 @@ -119768,7 +114483,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17661 + - uid: 17693 components: - rot: 1.5707963267948966 rad pos: -37.5,-34.5 @@ -119776,70 +114491,70 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17662 + - uid: 17694 components: - pos: -32.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17663 + - uid: 17695 components: - pos: -32.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17664 + - uid: 17696 components: - pos: -32.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17665 + - uid: 17697 components: - pos: -31.5,-35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17666 + - uid: 17698 components: - pos: -31.5,-36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17667 + - uid: 17699 components: - pos: -31.5,-38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17668 + - uid: 17700 components: - pos: -31.5,-37.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17669 + - uid: 17701 components: - pos: -31.5,-40.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17670 + - uid: 17702 components: - pos: -32.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17671 + - uid: 17703 components: - rot: -1.5707963267948966 rad pos: -29.5,-34.5 @@ -119847,7 +114562,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17672 + - uid: 17704 components: - rot: -1.5707963267948966 rad pos: -28.5,-34.5 @@ -119855,7 +114570,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17673 + - uid: 17705 components: - rot: -1.5707963267948966 rad pos: -27.5,-34.5 @@ -119863,7 +114578,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17674 + - uid: 17706 components: - rot: -1.5707963267948966 rad pos: -26.5,-34.5 @@ -119871,7 +114586,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17675 + - uid: 17707 components: - rot: -1.5707963267948966 rad pos: -25.5,-34.5 @@ -119879,7 +114594,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17676 + - uid: 17708 components: - rot: -1.5707963267948966 rad pos: -24.5,-34.5 @@ -119887,25 +114602,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17677 + - uid: 17709 components: - pos: -37.5,-55.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17678 + - uid: 17710 components: - pos: -37.5,-56.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17679 + - uid: 17711 components: - rot: 1.5707963267948966 rad pos: -36.5,-55.5 @@ -119913,7 +114624,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17680 + - uid: 17712 components: - rot: 3.141592653589793 rad pos: -35.5,-54.5 @@ -119921,7 +114632,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17681 + - uid: 17713 components: - rot: 3.141592653589793 rad pos: -35.5,-52.5 @@ -119929,7 +114640,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17682 + - uid: 17714 components: - rot: 3.141592653589793 rad pos: -35.5,-51.5 @@ -119937,7 +114648,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17683 + - uid: 17715 components: - rot: 3.141592653589793 rad pos: -35.5,-50.5 @@ -119945,7 +114656,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17684 + - uid: 17716 components: - rot: 3.141592653589793 rad pos: -35.5,-49.5 @@ -119953,7 +114664,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17685 + - uid: 17717 components: - rot: 3.141592653589793 rad pos: -35.5,-48.5 @@ -119961,7 +114672,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17686 + - uid: 17718 components: - rot: 3.141592653589793 rad pos: -35.5,-47.5 @@ -119969,7 +114680,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17687 + - uid: 17719 components: - rot: 3.141592653589793 rad pos: -35.5,-46.5 @@ -119977,7 +114688,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17688 + - uid: 17720 components: - rot: 3.141592653589793 rad pos: -35.5,-45.5 @@ -119985,7 +114696,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17689 + - uid: 17721 components: - rot: 3.141592653589793 rad pos: -35.5,-43.5 @@ -119993,7 +114704,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17690 + - uid: 17722 components: - rot: 3.141592653589793 rad pos: -35.5,-42.5 @@ -120001,7 +114712,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17691 + - uid: 17723 components: - rot: 3.141592653589793 rad pos: -34.5,-56.5 @@ -120009,7 +114720,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17692 + - uid: 17724 components: - rot: 3.141592653589793 rad pos: -34.5,-55.5 @@ -120017,7 +114728,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17693 + - uid: 17725 components: - rot: 3.141592653589793 rad pos: -34.5,-54.5 @@ -120025,7 +114736,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17694 + - uid: 17726 components: - rot: 3.141592653589793 rad pos: -34.5,-53.5 @@ -120033,7 +114744,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17695 + - uid: 17727 components: - rot: 3.141592653589793 rad pos: -34.5,-52.5 @@ -120041,7 +114752,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17696 + - uid: 17728 components: - rot: 3.141592653589793 rad pos: -34.5,-51.5 @@ -120049,7 +114760,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17697 + - uid: 17729 components: - rot: 3.141592653589793 rad pos: -34.5,-50.5 @@ -120057,7 +114768,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17698 + - uid: 17730 components: - rot: 3.141592653589793 rad pos: -34.5,-49.5 @@ -120065,7 +114776,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17699 + - uid: 17731 components: - rot: 3.141592653589793 rad pos: -34.5,-48.5 @@ -120073,7 +114784,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17700 + - uid: 17732 components: - rot: 3.141592653589793 rad pos: -34.5,-47.5 @@ -120081,7 +114792,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17701 + - uid: 17733 components: - rot: 3.141592653589793 rad pos: -34.5,-46.5 @@ -120089,7 +114800,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17702 + - uid: 17734 components: - rot: -1.5707963267948966 rad pos: -33.5,-40.5 @@ -120097,14 +114808,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17703 + - uid: 17735 components: - pos: -34.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17704 + - uid: 17736 components: - rot: -1.5707963267948966 rad pos: -34.5,-41.5 @@ -120112,7 +114823,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17705 + - uid: 17737 components: - rot: -1.5707963267948966 rad pos: -33.5,-41.5 @@ -120120,7 +114831,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17706 + - uid: 17738 components: - rot: -1.5707963267948966 rad pos: -32.5,-41.5 @@ -120128,69 +114839,63 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17707 + - uid: 17739 components: - pos: -38.5,-44.5 parent: 2 type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17708 + - uid: 17740 components: - pos: -38.5,-43.5 parent: 2 type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17709 + - uid: 17741 components: - pos: -38.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17710 + - uid: 17742 components: - pos: -38.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17711 + - uid: 17743 components: - pos: -38.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17712 + - uid: 17744 components: - pos: -38.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17713 + - uid: 17745 components: - pos: -38.5,-37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17714 + - uid: 17746 components: - pos: -38.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17715 + - uid: 17747 components: - rot: -1.5707963267948966 rad pos: -39.5,-35.5 @@ -120198,7 +114903,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17716 + - uid: 17748 components: - rot: -1.5707963267948966 rad pos: -41.5,-34.5 @@ -120206,9 +114911,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17717 + - uid: 17749 components: - rot: -1.5707963267948966 rad pos: -42.5,-34.5 @@ -120216,7 +114919,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17718 + - uid: 17750 components: - rot: 3.141592653589793 rad pos: -41.5,-8.5 @@ -120224,7 +114927,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17719 + - uid: 17751 components: - rot: -1.5707963267948966 rad pos: -23.5,-57.5 @@ -120232,7 +114935,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17720 + - uid: 17752 components: - rot: -1.5707963267948966 rad pos: -22.5,-57.5 @@ -120240,7 +114943,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17721 + - uid: 17753 components: - rot: -1.5707963267948966 rad pos: -20.5,-57.5 @@ -120248,7 +114951,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17722 + - uid: 17754 components: - rot: -1.5707963267948966 rad pos: -21.5,-57.5 @@ -120256,9 +114959,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17723 + - uid: 17755 components: - rot: -1.5707963267948966 rad pos: -19.5,-60.5 @@ -120266,7 +114967,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17724 + - uid: 17756 components: - rot: -1.5707963267948966 rad pos: -19.5,-71.5 @@ -120274,7 +114975,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17725 + - uid: 17757 components: - rot: -1.5707963267948966 rad pos: -20.5,-71.5 @@ -120282,7 +114983,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17726 + - uid: 17758 components: - rot: -1.5707963267948966 rad pos: -21.5,-71.5 @@ -120290,7 +114991,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17727 + - uid: 17759 components: - rot: -1.5707963267948966 rad pos: -22.5,-71.5 @@ -120298,7 +114999,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17728 + - uid: 17760 components: - rot: -1.5707963267948966 rad pos: -23.5,-71.5 @@ -120306,7 +115007,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17729 + - uid: 17761 components: - rot: -1.5707963267948966 rad pos: -24.5,-71.5 @@ -120314,7 +115015,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17730 + - uid: 17762 components: - rot: -1.5707963267948966 rad pos: -25.5,-71.5 @@ -120322,7 +115023,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17731 + - uid: 17763 components: - rot: -1.5707963267948966 rad pos: -26.5,-71.5 @@ -120330,9 +115031,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17732 + - uid: 17764 components: - rot: 3.141592653589793 rad pos: -28.5,-71.5 @@ -120340,7 +115039,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17733 + - uid: 17765 components: - rot: -1.5707963267948966 rad pos: -27.5,-71.5 @@ -120348,7 +115047,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17734 + - uid: 17766 components: - rot: 3.141592653589793 rad pos: -28.5,-70.5 @@ -120356,7 +115055,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17735 + - uid: 17767 components: - rot: -1.5707963267948966 rad pos: -31.5,-71.5 @@ -120364,7 +115063,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17736 + - uid: 17768 components: - rot: -1.5707963267948966 rad pos: -32.5,-71.5 @@ -120372,9 +115071,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17737 + - uid: 17769 components: - rot: -1.5707963267948966 rad pos: -33.5,-71.5 @@ -120382,9 +115079,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17738 + - uid: 17770 components: - rot: -1.5707963267948966 rad pos: -34.5,-71.5 @@ -120392,7 +115087,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17739 + - uid: 17771 components: - rot: -1.5707963267948966 rad pos: -35.5,-71.5 @@ -120400,9 +115095,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17740 + - uid: 17772 components: - rot: -1.5707963267948966 rad pos: -36.5,-71.5 @@ -120410,9 +115103,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17741 + - uid: 17773 components: - rot: -1.5707963267948966 rad pos: -37.5,-71.5 @@ -120420,9 +115111,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17742 + - uid: 17774 components: - rot: -1.5707963267948966 rad pos: -38.5,-71.5 @@ -120430,7 +115119,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17743 + - uid: 17775 components: - rot: -1.5707963267948966 rad pos: -39.5,-71.5 @@ -120438,9 +115127,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17744 + - uid: 17776 components: - rot: -1.5707963267948966 rad pos: -21.5,-69.5 @@ -120448,7 +115135,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17745 + - uid: 17777 components: - rot: -1.5707963267948966 rad pos: -22.5,-69.5 @@ -120456,7 +115143,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17746 + - uid: 17778 components: - rot: -1.5707963267948966 rad pos: -23.5,-69.5 @@ -120464,7 +115151,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17747 + - uid: 17779 components: - rot: -1.5707963267948966 rad pos: -24.5,-69.5 @@ -120472,7 +115159,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17748 + - uid: 17780 components: - rot: -1.5707963267948966 rad pos: -25.5,-69.5 @@ -120480,7 +115167,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17749 + - uid: 17781 components: - rot: -1.5707963267948966 rad pos: -26.5,-69.5 @@ -120488,9 +115175,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17750 + - uid: 17782 components: - rot: -1.5707963267948966 rad pos: -28.5,-71.5 @@ -120498,7 +115183,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17751 + - uid: 17783 components: - rot: -1.5707963267948966 rad pos: -29.5,-69.5 @@ -120506,7 +115191,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17752 + - uid: 17784 components: - rot: -1.5707963267948966 rad pos: -31.5,-69.5 @@ -120514,7 +115199,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17753 + - uid: 17785 components: - rot: -1.5707963267948966 rad pos: -32.5,-69.5 @@ -120522,7 +115207,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17754 + - uid: 17786 components: - rot: -1.5707963267948966 rad pos: -33.5,-69.5 @@ -120530,7 +115215,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17755 + - uid: 17787 components: - rot: -1.5707963267948966 rad pos: -34.5,-69.5 @@ -120538,7 +115223,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17756 + - uid: 17788 components: - rot: -1.5707963267948966 rad pos: -35.5,-69.5 @@ -120546,9 +115231,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17757 + - uid: 17789 components: - rot: -1.5707963267948966 rad pos: -36.5,-69.5 @@ -120556,9 +115239,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17758 + - uid: 17790 components: - rot: -1.5707963267948966 rad pos: -37.5,-69.5 @@ -120566,9 +115247,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17759 + - uid: 17791 components: - rot: -1.5707963267948966 rad pos: -38.5,-69.5 @@ -120576,9 +115255,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17760 + - uid: 17792 components: - rot: -1.5707963267948966 rad pos: -39.5,-69.5 @@ -120586,9 +115263,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17761 + - uid: 17793 components: - rot: -1.5707963267948966 rad pos: -40.5,-69.5 @@ -120596,9 +115271,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17762 + - uid: 17794 components: - rot: -1.5707963267948966 rad pos: -41.5,-69.5 @@ -120606,14 +115279,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17763 + - uid: 17795 components: - pos: -42.5,-70.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17764 + - uid: 17796 components: - rot: 1.5707963267948966 rad pos: -22.5,-58.5 @@ -120621,7 +115294,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17765 + - uid: 17797 components: - rot: 1.5707963267948966 rad pos: -21.5,-58.5 @@ -120629,9 +115302,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17766 + - uid: 17798 components: - rot: 3.141592653589793 rad pos: 21.5,-28.5 @@ -120639,14 +115310,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17767 + - uid: 17799 components: - pos: 23.5,-28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17768 + - uid: 17800 components: - rot: 1.5707963267948966 rad pos: -35.5,20.5 @@ -120654,9 +115325,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17769 + - uid: 17801 components: - rot: -1.5707963267948966 rad pos: -13.5,39.5 @@ -120664,7 +115333,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17770 + - uid: 17802 components: - rot: -1.5707963267948966 rad pos: -15.5,39.5 @@ -120672,7 +115341,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17771 + - uid: 17803 components: - rot: -1.5707963267948966 rad pos: -14.5,39.5 @@ -120680,7 +115349,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17772 + - uid: 17804 components: - rot: -1.5707963267948966 rad pos: -20.5,23.5 @@ -120688,91 +115357,91 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17773 + - uid: 17805 components: - pos: -20.5,14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17774 + - uid: 17806 components: - pos: -20.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17775 + - uid: 17807 components: - pos: -20.5,17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17776 + - uid: 17808 components: - pos: -20.5,18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17777 + - uid: 17809 components: - pos: -20.5,19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17778 + - uid: 17810 components: - pos: -18.5,13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17779 + - uid: 17811 components: - pos: -18.5,14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17780 + - uid: 17812 components: - pos: -18.5,15.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17781 + - uid: 17813 components: - pos: -18.5,16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17782 + - uid: 17814 components: - pos: -18.5,17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17783 + - uid: 17815 components: - pos: -18.5,18.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17784 + - uid: 17816 components: - pos: -18.5,20.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17785 + - uid: 17817 components: - rot: 3.141592653589793 rad pos: -18.5,21.5 @@ -120780,7 +115449,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17786 + - uid: 17818 components: - rot: -1.5707963267948966 rad pos: -21.5,20.5 @@ -120788,7 +115457,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17787 + - uid: 17819 components: - rot: -1.5707963267948966 rad pos: -22.5,20.5 @@ -120796,7 +115465,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17788 + - uid: 17820 components: - rot: 3.141592653589793 rad pos: -18.5,22.5 @@ -120804,7 +115473,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17789 + - uid: 17821 components: - rot: -1.5707963267948966 rad pos: -19.5,23.5 @@ -120812,7 +115481,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17790 + - uid: 17822 components: - rot: -1.5707963267948966 rad pos: -21.5,23.5 @@ -120820,9 +115489,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17791 + - uid: 17823 components: - rot: -1.5707963267948966 rad pos: -22.5,23.5 @@ -120830,7 +115497,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17792 + - uid: 17824 components: - rot: -1.5707963267948966 rad pos: -23.5,23.5 @@ -120838,7 +115505,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17793 + - uid: 17825 components: - rot: -1.5707963267948966 rad pos: -25.5,23.5 @@ -120846,7 +115513,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17794 + - uid: 17826 components: - rot: -1.5707963267948966 rad pos: -26.5,23.5 @@ -120854,9 +115521,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17795 + - uid: 17827 components: - rot: -1.5707963267948966 rad pos: -27.5,23.5 @@ -120864,7 +115529,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17796 + - uid: 17828 components: - rot: 1.5707963267948966 rad pos: -27.5,20.5 @@ -120872,9 +115537,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17797 + - uid: 17829 components: - rot: 1.5707963267948966 rad pos: -26.5,20.5 @@ -120882,9 +115545,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17798 + - uid: 17830 components: - rot: 1.5707963267948966 rad pos: -25.5,20.5 @@ -120892,7 +115553,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17799 + - uid: 17831 components: - rot: 1.5707963267948966 rad pos: -24.5,20.5 @@ -120900,7 +115561,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17800 + - uid: 17832 components: - rot: 1.5707963267948966 rad pos: -29.5,23.5 @@ -120908,9 +115569,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17801 + - uid: 17833 components: - rot: 1.5707963267948966 rad pos: -30.5,23.5 @@ -120918,7 +115577,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17802 + - uid: 17834 components: - rot: 1.5707963267948966 rad pos: -31.5,23.5 @@ -120926,7 +115585,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17803 + - uid: 17835 components: - rot: 1.5707963267948966 rad pos: -29.5,20.5 @@ -120934,9 +115593,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17804 + - uid: 17836 components: - rot: 1.5707963267948966 rad pos: -30.5,20.5 @@ -120944,7 +115601,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17805 + - uid: 17837 components: - rot: 1.5707963267948966 rad pos: -31.5,20.5 @@ -120952,7 +115609,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17806 + - uid: 17838 components: - rot: 1.5707963267948966 rad pos: -33.5,23.5 @@ -120960,7 +115617,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17807 + - uid: 17839 components: - rot: 1.5707963267948966 rad pos: -34.5,23.5 @@ -120968,7 +115625,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17808 + - uid: 17840 components: - rot: 1.5707963267948966 rad pos: -35.5,23.5 @@ -120976,9 +115633,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17809 + - uid: 17841 components: - rot: 1.5707963267948966 rad pos: -36.5,23.5 @@ -120986,86 +115641,84 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17810 + - uid: 17842 components: - pos: -32.5,24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17811 + - uid: 17843 components: - pos: -32.5,25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17812 + - uid: 17844 components: - pos: -32.5,26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17813 + - uid: 17845 components: - pos: -32.5,27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17814 + - uid: 17846 components: - pos: -33.5,21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17815 + - uid: 17847 components: - pos: -33.5,22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17816 + - uid: 17848 components: - pos: -33.5,23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17817 + - uid: 17849 components: - pos: -33.5,24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17818 + - uid: 17850 components: - pos: -33.5,25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17819 + - uid: 17851 components: - pos: -33.5,26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17820 + - uid: 17852 components: - pos: -33.5,27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17821 + - uid: 17853 components: - rot: 1.5707963267948966 rad pos: -37.5,23.5 @@ -121073,7 +115726,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17822 + - uid: 17854 components: - rot: 1.5707963267948966 rad pos: -38.5,23.5 @@ -121081,7 +115734,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17823 + - uid: 17855 components: - rot: 1.5707963267948966 rad pos: -39.5,23.5 @@ -121089,7 +115742,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17824 + - uid: 17856 components: - rot: 1.5707963267948966 rad pos: -37.5,20.5 @@ -121097,7 +115750,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17825 + - uid: 17857 components: - rot: 1.5707963267948966 rad pos: -38.5,20.5 @@ -121105,7 +115758,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17826 + - uid: 17858 components: - rot: 1.5707963267948966 rad pos: -39.5,20.5 @@ -121113,7 +115766,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17827 + - uid: 17859 components: - rot: 1.5707963267948966 rad pos: -40.5,20.5 @@ -121121,86 +115774,84 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17828 + - uid: 17860 components: - pos: -40.5,24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17829 + - uid: 17861 components: - pos: -40.5,25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17830 + - uid: 17862 components: - pos: -40.5,26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17831 + - uid: 17863 components: - pos: -40.5,27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17832 + - uid: 17864 components: - pos: -41.5,21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17833 + - uid: 17865 components: - pos: -41.5,22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17834 + - uid: 17866 components: - pos: -41.5,23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17835 + - uid: 17867 components: - pos: -41.5,24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17836 + - uid: 17868 components: - pos: -41.5,25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17837 + - uid: 17869 components: - pos: -41.5,26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17838 + - uid: 17870 components: - pos: -41.5,27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17839 + - uid: 17871 components: - rot: -1.5707963267948966 rad pos: -12.5,39.5 @@ -121208,49 +115859,49 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17840 + - uid: 17872 components: - pos: -40.5,32.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17841 + - uid: 17873 components: - pos: -40.5,31.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17842 + - uid: 17874 components: - pos: -41.5,30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17843 + - uid: 17875 components: - pos: -40.5,29.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17844 + - uid: 17876 components: - pos: -40.5,28.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17845 + - uid: 17877 components: - pos: -41.5,28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17846 + - uid: 17878 components: - rot: -1.5707963267948966 rad pos: -40.5,29.5 @@ -121258,7 +115909,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17847 + - uid: 17879 components: - rot: -1.5707963267948966 rad pos: -39.5,29.5 @@ -121266,7 +115917,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17848 + - uid: 17880 components: - rot: -1.5707963267948966 rad pos: -38.5,29.5 @@ -121274,7 +115925,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17849 + - uid: 17881 components: - rot: -1.5707963267948966 rad pos: -39.5,30.5 @@ -121282,9 +115933,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17850 + - uid: 17882 components: - rot: -1.5707963267948966 rad pos: -38.5,30.5 @@ -121292,7 +115941,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17851 + - uid: 17883 components: - rot: -1.5707963267948966 rad pos: -41.5,33.5 @@ -121300,7 +115949,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17852 + - uid: 17884 components: - rot: -1.5707963267948966 rad pos: -42.5,33.5 @@ -121308,7 +115957,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17853 + - uid: 17885 components: - rot: -1.5707963267948966 rad pos: -43.5,33.5 @@ -121316,7 +115965,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17854 + - uid: 17886 components: - rot: -1.5707963267948966 rad pos: -42.5,31.5 @@ -121324,7 +115973,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17855 + - uid: 17887 components: - rot: -1.5707963267948966 rad pos: -43.5,31.5 @@ -121332,16 +115981,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17856 + - uid: 17888 components: - pos: -49.5,32.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17857 + - uid: 17889 components: - rot: 1.5707963267948966 rad pos: -48.5,33.5 @@ -121349,7 +115996,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17858 + - uid: 17890 components: - rot: 1.5707963267948966 rad pos: -47.5,33.5 @@ -121357,7 +116004,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17859 + - uid: 17891 components: - rot: 1.5707963267948966 rad pos: -46.5,33.5 @@ -121365,7 +116012,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17860 + - uid: 17892 components: - rot: 1.5707963267948966 rad pos: -45.5,31.5 @@ -121373,7 +116020,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17861 + - uid: 17893 components: - rot: -1.5707963267948966 rad pos: -21.5,13.5 @@ -121381,9 +116028,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17862 + - uid: 17894 components: - rot: -1.5707963267948966 rad pos: -22.5,13.5 @@ -121391,7 +116036,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17863 + - uid: 17895 components: - rot: -1.5707963267948966 rad pos: -23.5,13.5 @@ -121399,7 +116044,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17864 + - uid: 17896 components: - rot: -1.5707963267948966 rad pos: -24.5,13.5 @@ -121407,7 +116052,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17865 + - uid: 17897 components: - rot: -1.5707963267948966 rad pos: -19.5,12.5 @@ -121415,7 +116060,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17866 + - uid: 17898 components: - rot: -1.5707963267948966 rad pos: -20.5,12.5 @@ -121423,7 +116068,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17867 + - uid: 17899 components: - rot: -1.5707963267948966 rad pos: -21.5,12.5 @@ -121431,9 +116076,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17868 + - uid: 17900 components: - rot: -1.5707963267948966 rad pos: -22.5,12.5 @@ -121441,7 +116084,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17869 + - uid: 17901 components: - rot: -1.5707963267948966 rad pos: -23.5,12.5 @@ -121449,7 +116092,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17870 + - uid: 17902 components: - rot: -1.5707963267948966 rad pos: -24.5,12.5 @@ -121457,7 +116100,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17871 + - uid: 17903 components: - rot: -1.5707963267948966 rad pos: -25.5,12.5 @@ -121465,16 +116108,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17872 + - uid: 17904 components: - pos: 71.5,-30.5 parent: 2 type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17873 + - uid: 17905 components: - rot: -1.5707963267948966 rad pos: -27.5,1.5 @@ -121482,7 +116123,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17874 + - uid: 17906 components: - rot: -1.5707963267948966 rad pos: -29.5,1.5 @@ -121490,7 +116131,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17875 + - uid: 17907 components: - rot: -1.5707963267948966 rad pos: -30.5,1.5 @@ -121498,7 +116139,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17876 + - uid: 17908 components: - rot: -1.5707963267948966 rad pos: -31.5,1.5 @@ -121506,7 +116147,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17877 + - uid: 17909 components: - rot: -1.5707963267948966 rad pos: -32.5,1.5 @@ -121514,7 +116155,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17878 + - uid: 17910 components: - rot: -1.5707963267948966 rad pos: -33.5,1.5 @@ -121522,7 +116163,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17879 + - uid: 17911 components: - rot: -1.5707963267948966 rad pos: -34.5,1.5 @@ -121530,7 +116171,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17880 + - uid: 17912 components: - rot: -1.5707963267948966 rad pos: -35.5,1.5 @@ -121538,7 +116179,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17881 + - uid: 17913 components: - rot: -1.5707963267948966 rad pos: -36.5,1.5 @@ -121546,7 +116187,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17882 + - uid: 17914 components: - rot: -1.5707963267948966 rad pos: -25.5,0.5 @@ -121554,7 +116195,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17883 + - uid: 17915 components: - rot: -1.5707963267948966 rad pos: -26.5,0.5 @@ -121562,7 +116203,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17884 + - uid: 17916 components: - rot: -1.5707963267948966 rad pos: -27.5,0.5 @@ -121570,7 +116211,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17885 + - uid: 17917 components: - rot: -1.5707963267948966 rad pos: -28.5,0.5 @@ -121578,7 +116219,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17886 + - uid: 17918 components: - rot: -1.5707963267948966 rad pos: -30.5,0.5 @@ -121586,7 +116227,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17887 + - uid: 17919 components: - rot: -1.5707963267948966 rad pos: -31.5,0.5 @@ -121594,7 +116235,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17888 + - uid: 17920 components: - rot: -1.5707963267948966 rad pos: -32.5,0.5 @@ -121602,7 +116243,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17889 + - uid: 17921 components: - rot: -1.5707963267948966 rad pos: -33.5,0.5 @@ -121610,7 +116251,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17890 + - uid: 17922 components: - rot: -1.5707963267948966 rad pos: -34.5,0.5 @@ -121618,7 +116259,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17891 + - uid: 17923 components: - rot: -1.5707963267948966 rad pos: -35.5,0.5 @@ -121626,7 +116267,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17892 + - uid: 17924 components: - rot: -1.5707963267948966 rad pos: -36.5,0.5 @@ -121634,7 +116275,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17893 + - uid: 17925 components: - rot: -1.5707963267948966 rad pos: -37.5,0.5 @@ -121642,58 +116283,56 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17894 + - uid: 17926 components: - pos: -28.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17895 + - uid: 17927 components: - pos: -28.5,-0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17896 + - uid: 17928 components: - pos: -28.5,-1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17897 + - uid: 17929 components: - pos: -28.5,-2.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17898 + - uid: 17930 components: - pos: -29.5,-0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17899 + - uid: 17931 components: - pos: -29.5,-1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17900 + - uid: 17932 components: - pos: -29.5,-2.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17901 + - uid: 17933 components: - rot: 3.141592653589793 rad pos: -37.5,2.5 @@ -121701,7 +116340,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17902 + - uid: 17934 components: - rot: 3.141592653589793 rad pos: -37.5,3.5 @@ -121709,7 +116348,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17903 + - uid: 17935 components: - rot: 3.141592653589793 rad pos: -37.5,4.5 @@ -121717,7 +116356,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17904 + - uid: 17936 components: - rot: 3.141592653589793 rad pos: -37.5,6.5 @@ -121725,7 +116364,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17905 + - uid: 17937 components: - rot: 3.141592653589793 rad pos: -37.5,7.5 @@ -121733,7 +116372,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17906 + - uid: 17938 components: - rot: 3.141592653589793 rad pos: -38.5,1.5 @@ -121741,7 +116380,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17907 + - uid: 17939 components: - rot: 3.141592653589793 rad pos: -38.5,2.5 @@ -121749,7 +116388,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17908 + - uid: 17940 components: - rot: 3.141592653589793 rad pos: -38.5,4.5 @@ -121757,7 +116396,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17909 + - uid: 17941 components: - rot: 3.141592653589793 rad pos: -38.5,5.5 @@ -121765,7 +116404,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17910 + - uid: 17942 components: - rot: 3.141592653589793 rad pos: -38.5,6.5 @@ -121773,7 +116412,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17911 + - uid: 17943 components: - rot: 3.141592653589793 rad pos: -38.5,7.5 @@ -121781,7 +116420,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17912 + - uid: 17944 components: - rot: 3.141592653589793 rad pos: -37.5,9.5 @@ -121789,7 +116428,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17913 + - uid: 17945 components: - rot: 3.141592653589793 rad pos: -37.5,10.5 @@ -121797,7 +116436,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17914 + - uid: 17946 components: - rot: 3.141592653589793 rad pos: -37.5,11.5 @@ -121805,7 +116444,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17915 + - uid: 17947 components: - rot: 3.141592653589793 rad pos: -37.5,12.5 @@ -121813,7 +116452,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17916 + - uid: 17948 components: - rot: 3.141592653589793 rad pos: -38.5,9.5 @@ -121821,7 +116460,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17917 + - uid: 17949 components: - rot: 3.141592653589793 rad pos: -38.5,10.5 @@ -121829,7 +116468,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17918 + - uid: 17950 components: - rot: 3.141592653589793 rad pos: -38.5,11.5 @@ -121837,7 +116476,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17919 + - uid: 17951 components: - rot: 3.141592653589793 rad pos: -38.5,12.5 @@ -121845,14 +116484,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17920 + - uid: 17952 components: - pos: -38.5,13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17921 + - uid: 17953 components: - rot: 1.5707963267948966 rad pos: -37.5,14.5 @@ -121860,7 +116499,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17922 + - uid: 17954 components: - rot: 1.5707963267948966 rad pos: -36.5,14.5 @@ -121868,7 +116507,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17923 + - uid: 17955 components: - rot: 1.5707963267948966 rad pos: -35.5,14.5 @@ -121876,7 +116515,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17924 + - uid: 17956 components: - rot: 1.5707963267948966 rad pos: -34.5,14.5 @@ -121884,7 +116523,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17925 + - uid: 17957 components: - rot: 1.5707963267948966 rad pos: -33.5,14.5 @@ -121892,7 +116531,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17926 + - uid: 17958 components: - rot: 1.5707963267948966 rad pos: -32.5,14.5 @@ -121900,7 +116539,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17927 + - uid: 17959 components: - rot: 1.5707963267948966 rad pos: -31.5,14.5 @@ -121908,7 +116547,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17928 + - uid: 17960 components: - rot: 1.5707963267948966 rad pos: -36.5,13.5 @@ -121916,7 +116555,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17929 + - uid: 17961 components: - rot: 1.5707963267948966 rad pos: -35.5,13.5 @@ -121924,7 +116563,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17930 + - uid: 17962 components: - rot: 1.5707963267948966 rad pos: -34.5,13.5 @@ -121932,7 +116571,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17931 + - uid: 17963 components: - rot: 1.5707963267948966 rad pos: -33.5,13.5 @@ -121940,7 +116579,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17932 + - uid: 17964 components: - rot: 1.5707963267948966 rad pos: -32.5,13.5 @@ -121948,9 +116587,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17933 + - uid: 17965 components: - rot: 1.5707963267948966 rad pos: -31.5,13.5 @@ -121958,7 +116595,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17934 + - uid: 17966 components: - rot: -1.5707963267948966 rad pos: -38.5,1.5 @@ -121966,7 +116603,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17935 + - uid: 17967 components: - rot: -1.5707963267948966 rad pos: -39.5,1.5 @@ -121974,7 +116611,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17936 + - uid: 17968 components: - rot: -1.5707963267948966 rad pos: -40.5,1.5 @@ -121982,7 +116619,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17937 + - uid: 17969 components: - rot: -1.5707963267948966 rad pos: -40.5,0.5 @@ -121990,7 +116627,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17938 + - uid: 17970 components: - rot: -1.5707963267948966 rad pos: -41.5,0.5 @@ -121998,7 +116635,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17939 + - uid: 17971 components: - rot: -1.5707963267948966 rad pos: -42.5,0.5 @@ -122006,7 +116643,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17940 + - uid: 17972 components: - rot: -1.5707963267948966 rad pos: -43.5,0.5 @@ -122014,7 +116651,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17941 + - uid: 17973 components: - rot: -1.5707963267948966 rad pos: -42.5,1.5 @@ -122022,7 +116659,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17942 + - uid: 17974 components: - rot: -1.5707963267948966 rad pos: -43.5,1.5 @@ -122030,7 +116667,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17943 + - uid: 17975 components: - rot: -1.5707963267948966 rad pos: -30.5,13.5 @@ -122038,7 +116675,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17944 + - uid: 17976 components: - rot: 3.141592653589793 rad pos: -30.5,13.5 @@ -122046,7 +116683,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17945 + - uid: 17977 components: - rot: 3.141592653589793 rad pos: -30.5,12.5 @@ -122054,7 +116691,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17946 + - uid: 17978 components: - rot: 3.141592653589793 rad pos: -30.5,11.5 @@ -122062,7 +116699,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17947 + - uid: 17979 components: - rot: 3.141592653589793 rad pos: -30.5,10.5 @@ -122070,7 +116707,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17948 + - uid: 17980 components: - rot: 3.141592653589793 rad pos: -29.5,12.5 @@ -122078,7 +116715,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17949 + - uid: 17981 components: - rot: 3.141592653589793 rad pos: -29.5,11.5 @@ -122086,9 +116723,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17950 + - uid: 17982 components: - rot: 3.141592653589793 rad pos: -29.5,10.5 @@ -122096,7 +116731,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17951 + - uid: 17983 components: - rot: 3.141592653589793 rad pos: -29.5,14.5 @@ -122104,7 +116739,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17952 + - uid: 17984 components: - rot: -1.5707963267948966 rad pos: -44.5,1.5 @@ -122112,7 +116747,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17953 + - uid: 17985 components: - rot: -1.5707963267948966 rad pos: -44.5,0.5 @@ -122120,7 +116755,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17954 + - uid: 17986 components: - rot: -1.5707963267948966 rad pos: -45.5,0.5 @@ -122128,7 +116763,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17955 + - uid: 17987 components: - rot: -1.5707963267948966 rad pos: -46.5,0.5 @@ -122136,49 +116771,49 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17956 + - uid: 17988 components: - pos: -45.5,2.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17957 + - uid: 17989 components: - pos: -45.5,3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17958 + - uid: 17990 components: - pos: -45.5,4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17959 + - uid: 17991 components: - pos: -45.5,5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17960 + - uid: 17992 components: - pos: -47.5,1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17961 + - uid: 17993 components: - pos: -47.5,2.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17962 + - uid: 17994 components: - rot: 3.141592653589793 rad pos: -47.5,4.5 @@ -122186,7 +116821,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17963 + - uid: 17995 components: - rot: 3.141592653589793 rad pos: -47.5,5.5 @@ -122194,7 +116829,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17964 + - uid: 17996 components: - rot: 3.141592653589793 rad pos: -47.5,6.5 @@ -122202,7 +116837,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17965 + - uid: 17997 components: - rot: 3.141592653589793 rad pos: -47.5,7.5 @@ -122210,7 +116845,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17966 + - uid: 17998 components: - rot: 3.141592653589793 rad pos: -47.5,8.5 @@ -122218,7 +116853,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17967 + - uid: 17999 components: - rot: 3.141592653589793 rad pos: -47.5,9.5 @@ -122226,9 +116861,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17968 + - uid: 18000 components: - rot: -1.5707963267948966 rad pos: -48.5,10.5 @@ -122236,7 +116869,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17969 + - uid: 18001 components: - rot: 3.141592653589793 rad pos: -46.5,11.5 @@ -122244,7 +116877,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17970 + - uid: 18002 components: - rot: 3.141592653589793 rad pos: -46.5,12.5 @@ -122252,7 +116885,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17971 + - uid: 18003 components: - rot: 3.141592653589793 rad pos: -46.5,13.5 @@ -122260,9 +116893,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17972 + - uid: 18004 components: - rot: 1.5707963267948966 rad pos: -49.5,10.5 @@ -122270,7 +116901,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17973 + - uid: 18005 components: - rot: 1.5707963267948966 rad pos: -50.5,10.5 @@ -122278,44 +116909,42 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17974 + - uid: 18006 components: - pos: -52.5,11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17975 + - uid: 18007 components: - pos: -52.5,12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17976 + - uid: 18008 components: - pos: -52.5,13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17977 + - uid: 18009 components: - pos: -52.5,9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17978 + - uid: 18010 components: - pos: -52.5,8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17979 + - uid: 18011 components: - rot: -1.5707963267948966 rad pos: -45.5,10.5 @@ -122323,7 +116952,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17980 + - uid: 18012 components: - rot: -1.5707963267948966 rad pos: -44.5,10.5 @@ -122331,9 +116960,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17981 + - uid: 18013 components: - rot: -1.5707963267948966 rad pos: -43.5,10.5 @@ -122341,7 +116968,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17982 + - uid: 18014 components: - rot: 1.5707963267948966 rad pos: -46.5,7.5 @@ -122349,7 +116976,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17983 + - uid: 18015 components: - rot: 1.5707963267948966 rad pos: -47.5,7.5 @@ -122357,7 +116984,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17984 + - uid: 18016 components: - rot: 1.5707963267948966 rad pos: -48.5,7.5 @@ -122365,7 +116992,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17985 + - uid: 18017 components: - rot: 1.5707963267948966 rad pos: -49.5,7.5 @@ -122373,7 +117000,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17986 + - uid: 18018 components: - rot: 1.5707963267948966 rad pos: -50.5,7.5 @@ -122381,30 +117008,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 17987 + - uid: 18019 components: - pos: -45.5,8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17988 + - uid: 18020 components: - pos: -45.5,9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17989 + - uid: 18021 components: - pos: -45.5,10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17990 + - uid: 18022 components: - rot: 3.141592653589793 rad pos: -45.5,12.5 @@ -122412,7 +117037,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17991 + - uid: 18023 components: - rot: 3.141592653589793 rad pos: -45.5,13.5 @@ -122420,7 +117045,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17992 + - uid: 18024 components: - rot: 1.5707963267948966 rad pos: -44.5,11.5 @@ -122428,7 +117053,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17993 + - uid: 18025 components: - rot: 1.5707963267948966 rad pos: -46.5,11.5 @@ -122436,7 +117061,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17994 + - uid: 18026 components: - rot: 1.5707963267948966 rad pos: -47.5,11.5 @@ -122444,7 +117069,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17995 + - uid: 18027 components: - rot: 1.5707963267948966 rad pos: -48.5,11.5 @@ -122452,7 +117077,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17996 + - uid: 18028 components: - rot: -1.5707963267948966 rad pos: -49.5,11.5 @@ -122460,7 +117085,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17997 + - uid: 18029 components: - rot: 1.5707963267948966 rad pos: -50.5,11.5 @@ -122468,7 +117093,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17998 + - uid: 18030 components: - rot: 3.141592653589793 rad pos: -51.5,12.5 @@ -122476,7 +117101,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17999 + - uid: 18031 components: - rot: 3.141592653589793 rad pos: -51.5,13.5 @@ -122484,14 +117109,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18000 + - uid: 18032 components: - pos: -46.5,14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18001 + - uid: 18033 components: - rot: 3.141592653589793 rad pos: -18.5,25.5 @@ -122499,7 +117124,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18002 + - uid: 18034 components: - rot: 3.141592653589793 rad pos: -20.5,21.5 @@ -122507,7 +117132,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18003 + - uid: 18035 components: - rot: 3.141592653589793 rad pos: -20.5,22.5 @@ -122515,7 +117140,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18004 + - uid: 18036 components: - rot: 3.141592653589793 rad pos: -20.5,23.5 @@ -122523,7 +117148,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18005 + - uid: 18037 components: - rot: 3.141592653589793 rad pos: -20.5,24.5 @@ -122531,7 +117156,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18006 + - uid: 18038 components: - rot: 1.5707963267948966 rad pos: 37.5,-72.5 @@ -122539,7 +117164,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18007 + - uid: 18039 components: - rot: 1.5707963267948966 rad pos: 22.5,-54.5 @@ -122547,7 +117172,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18008 + - uid: 18040 components: - rot: 1.5707963267948966 rad pos: 25.5,-53.5 @@ -122555,7 +117180,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18009 + - uid: 18041 components: - rot: 1.5707963267948966 rad pos: 24.5,-53.5 @@ -122563,7 +117188,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18010 + - uid: 18042 components: - rot: 1.5707963267948966 rad pos: 23.5,-53.5 @@ -122571,7 +117196,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18011 + - uid: 18043 components: - rot: 1.5707963267948966 rad pos: 22.5,-53.5 @@ -122579,9 +117204,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18012 + - uid: 18044 components: - rot: 1.5707963267948966 rad pos: 21.5,-53.5 @@ -122589,9 +117212,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18013 + - uid: 18045 components: - rot: 1.5707963267948966 rad pos: 20.5,-53.5 @@ -122599,7 +117220,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18014 + - uid: 18046 components: - rot: -1.5707963267948966 rad pos: -43.5,-71.5 @@ -122607,9 +117228,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18015 + - uid: 18047 components: - rot: -1.5707963267948966 rad pos: -44.5,-71.5 @@ -122617,37 +117236,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18016 + - uid: 18048 components: - pos: -45.5,-72.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18017 + - uid: 18049 components: - pos: -45.5,-73.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18018 + - uid: 18050 components: - pos: -45.5,-74.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18019 + - uid: 18051 components: - pos: -45.5,-75.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18020 + - uid: 18052 components: - rot: -1.5707963267948966 rad pos: -46.5,-76.5 @@ -122655,9 +117272,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18021 + - uid: 18053 components: - rot: -1.5707963267948966 rad pos: -47.5,-76.5 @@ -122665,7 +117280,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18022 + - uid: 18054 components: - rot: -1.5707963267948966 rad pos: -48.5,-76.5 @@ -122673,7 +117288,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18023 + - uid: 18055 components: - rot: -1.5707963267948966 rad pos: -49.5,-76.5 @@ -122681,7 +117296,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18024 + - uid: 18056 components: - rot: -1.5707963267948966 rad pos: -50.5,-76.5 @@ -122689,7 +117304,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18025 + - uid: 18057 components: - rot: -1.5707963267948966 rad pos: -51.5,-76.5 @@ -122697,7 +117312,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18026 + - uid: 18058 components: - rot: -1.5707963267948966 rad pos: -52.5,-76.5 @@ -122705,7 +117320,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18027 + - uid: 18059 components: - rot: -1.5707963267948966 rad pos: -53.5,-76.5 @@ -122713,7 +117328,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18028 + - uid: 18060 components: - rot: -1.5707963267948966 rad pos: -41.5,-72.5 @@ -122721,7 +117336,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18029 + - uid: 18061 components: - rot: -1.5707963267948966 rad pos: -42.5,-72.5 @@ -122729,7 +117344,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18030 + - uid: 18062 components: - rot: -1.5707963267948966 rad pos: -43.5,-72.5 @@ -122737,7 +117352,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18031 + - uid: 18063 components: - rot: -1.5707963267948966 rad pos: -44.5,-72.5 @@ -122745,7 +117360,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18032 + - uid: 18064 components: - rot: -1.5707963267948966 rad pos: -45.5,-72.5 @@ -122753,7 +117368,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18033 + - uid: 18065 components: - rot: 3.141592653589793 rad pos: -46.5,-73.5 @@ -122761,7 +117376,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18034 + - uid: 18066 components: - rot: 3.141592653589793 rad pos: -46.5,-74.5 @@ -122769,7 +117384,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18035 + - uid: 18067 components: - rot: 1.5707963267948966 rad pos: -47.5,-75.5 @@ -122777,7 +117392,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18036 + - uid: 18068 components: - rot: 1.5707963267948966 rad pos: -48.5,-75.5 @@ -122785,9 +117400,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18037 + - uid: 18069 components: - rot: 1.5707963267948966 rad pos: -49.5,-75.5 @@ -122795,9 +117408,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18038 + - uid: 18070 components: - rot: 1.5707963267948966 rad pos: -50.5,-75.5 @@ -122805,9 +117416,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18039 + - uid: 18071 components: - rot: 1.5707963267948966 rad pos: -51.5,-75.5 @@ -122815,7 +117424,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18040 + - uid: 18072 components: - rot: 1.5707963267948966 rad pos: -52.5,-75.5 @@ -122823,7 +117432,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18041 + - uid: 18073 components: - rot: 1.5707963267948966 rad pos: -53.5,-75.5 @@ -122831,9 +117440,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18042 + - uid: 18074 components: - rot: 1.5707963267948966 rad pos: -18.5,-41.5 @@ -122841,7 +117448,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18043 + - uid: 18075 components: - rot: 1.5707963267948966 rad pos: -17.5,-41.5 @@ -122849,7 +117456,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18044 + - uid: 18076 components: - rot: 1.5707963267948966 rad pos: -16.5,-41.5 @@ -122857,21 +117464,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18045 + - uid: 18077 components: - pos: -15.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18046 + - uid: 18078 components: - pos: -19.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18047 + - uid: 18079 components: - rot: 3.141592653589793 rad pos: 1.5,12.5 @@ -122879,7 +117486,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18048 + - uid: 18080 components: - rot: 3.141592653589793 rad pos: 1.5,13.5 @@ -122887,7 +117494,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18049 + - uid: 18081 components: - rot: 3.141592653589793 rad pos: 1.5,14.5 @@ -122895,7 +117502,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18050 + - uid: 18082 components: - rot: 3.141592653589793 rad pos: 1.5,15.5 @@ -122903,9 +117510,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18051 + - uid: 18083 components: - rot: 3.141592653589793 rad pos: 1.5,16.5 @@ -122913,7 +117518,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18052 + - uid: 18084 components: - rot: 3.141592653589793 rad pos: 1.5,17.5 @@ -122921,7 +117526,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18053 + - uid: 18085 components: - rot: 3.141592653589793 rad pos: 1.5,18.5 @@ -122929,7 +117534,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18054 + - uid: 18086 components: - rot: 3.141592653589793 rad pos: 1.5,19.5 @@ -122937,7 +117542,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18055 + - uid: 18087 components: - rot: 3.141592653589793 rad pos: 1.5,20.5 @@ -122945,7 +117550,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18056 + - uid: 18088 components: - rot: 3.141592653589793 rad pos: 1.5,21.5 @@ -122953,7 +117558,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18057 + - uid: 18089 components: - rot: 3.141592653589793 rad pos: 1.5,22.5 @@ -122961,9 +117566,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18058 + - uid: 18090 components: - rot: 3.141592653589793 rad pos: 1.5,23.5 @@ -122971,7 +117574,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18059 + - uid: 18091 components: - rot: 3.141592653589793 rad pos: 1.5,24.5 @@ -122979,9 +117582,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18060 + - uid: 18092 components: - rot: 3.141592653589793 rad pos: 1.5,25.5 @@ -122989,9 +117590,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18061 + - uid: 18093 components: - rot: -1.5707963267948966 rad pos: 28.5,1.5 @@ -122999,14 +117598,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18062 + - uid: 18094 components: - pos: -20.5,-59.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18063 + - uid: 18095 components: - rot: -1.5707963267948966 rad pos: -69.5,-23.5 @@ -123014,7 +117613,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18064 + - uid: 18096 components: - rot: -1.5707963267948966 rad pos: -70.5,-23.5 @@ -123022,7 +117621,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18065 + - uid: 18097 components: - rot: -1.5707963267948966 rad pos: -71.5,-23.5 @@ -123030,7 +117629,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18066 + - uid: 18098 components: - rot: -1.5707963267948966 rad pos: -65.5,-25.5 @@ -123038,9 +117637,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18067 + - uid: 18099 components: - rot: -1.5707963267948966 rad pos: -66.5,-25.5 @@ -123048,9 +117645,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18068 + - uid: 18100 components: - rot: -1.5707963267948966 rad pos: -67.5,-25.5 @@ -123058,9 +117653,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18069 + - uid: 18101 components: - rot: -1.5707963267948966 rad pos: -68.5,-25.5 @@ -123068,7 +117661,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18070 + - uid: 18102 components: - rot: -1.5707963267948966 rad pos: -69.5,-25.5 @@ -123076,9 +117669,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18071 + - uid: 18103 components: - rot: -1.5707963267948966 rad pos: -70.5,-25.5 @@ -123086,7 +117677,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18072 + - uid: 18104 components: - rot: 1.5707963267948966 rad pos: 18.5,-30.5 @@ -123094,9 +117685,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18073 + - uid: 18105 components: - rot: 3.141592653589793 rad pos: -23.5,-61.5 @@ -123104,7 +117693,7 @@ entities: type: Transform - color: '#97C3FCCC' type: AtmosPipeColor - - uid: 18074 + - uid: 18106 components: - rot: 3.141592653589793 rad pos: 30.5,-83.5 @@ -123112,7 +117701,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18075 + - uid: 18107 components: - rot: 3.141592653589793 rad pos: 25.5,-58.5 @@ -123120,7 +117709,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18076 + - uid: 18108 components: - rot: 3.141592653589793 rad pos: 25.5,-57.5 @@ -123128,7 +117717,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18077 + - uid: 18109 components: - rot: 3.141592653589793 rad pos: 47.5,-80.5 @@ -123136,7 +117725,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18078 + - uid: 18110 components: - rot: 3.141592653589793 rad pos: 42.5,5.5 @@ -123144,7 +117733,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18079 + - uid: 18111 components: - rot: 3.141592653589793 rad pos: 42.5,2.5 @@ -123152,7 +117741,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18080 + - uid: 18112 components: - rot: 3.141592653589793 rad pos: 42.5,4.5 @@ -123160,7 +117749,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18081 + - uid: 18113 components: - rot: 3.141592653589793 rad pos: 42.5,3.5 @@ -123168,7 +117757,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18082 + - uid: 18114 components: - rot: -1.5707963267948966 rad pos: 25.5,-42.5 @@ -123176,7 +117765,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18083 + - uid: 18115 components: - rot: 3.141592653589793 rad pos: 45.5,21.5 @@ -123184,7 +117773,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18084 + - uid: 18116 components: - rot: 3.141592653589793 rad pos: 45.5,22.5 @@ -123192,9 +117781,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18085 + - uid: 18117 components: - rot: 3.141592653589793 rad pos: 45.5,23.5 @@ -123202,9 +117789,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18086 + - uid: 18118 components: - rot: 3.141592653589793 rad pos: 45.5,24.5 @@ -123212,9 +117797,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18087 + - uid: 18119 components: - rot: 3.141592653589793 rad pos: 45.5,25.5 @@ -123222,9 +117805,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18088 + - uid: 18120 components: - rot: 3.141592653589793 rad pos: 45.5,26.5 @@ -123232,7 +117813,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18089 + - uid: 18121 components: - rot: 3.141592653589793 rad pos: 44.5,21.5 @@ -123240,7 +117821,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18090 + - uid: 18122 components: - rot: 3.141592653589793 rad pos: 44.5,22.5 @@ -123248,9 +117829,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18091 + - uid: 18123 components: - rot: 3.141592653589793 rad pos: 44.5,23.5 @@ -123258,9 +117837,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18092 + - uid: 18124 components: - rot: 3.141592653589793 rad pos: 44.5,24.5 @@ -123268,7 +117845,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18093 + - uid: 18125 components: - rot: 3.141592653589793 rad pos: 44.5,25.5 @@ -123276,7 +117853,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18094 + - uid: 18126 components: - rot: 3.141592653589793 rad pos: 44.5,20.5 @@ -123284,7 +117861,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18095 + - uid: 18127 components: - rot: 1.5707963267948966 rad pos: 46.5,27.5 @@ -123292,9 +117869,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18096 + - uid: 18128 components: - rot: 1.5707963267948966 rad pos: 47.5,27.5 @@ -123302,9 +117877,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18097 + - uid: 18129 components: - rot: 1.5707963267948966 rad pos: 45.5,26.5 @@ -123312,7 +117885,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18098 + - uid: 18130 components: - rot: 1.5707963267948966 rad pos: 46.5,26.5 @@ -123320,7 +117893,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18099 + - uid: 18131 components: - rot: 1.5707963267948966 rad pos: 47.5,26.5 @@ -123328,7 +117901,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18100 + - uid: 18132 components: - rot: 1.5707963267948966 rad pos: 48.5,26.5 @@ -123336,7 +117909,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18101 + - uid: 18133 components: - rot: 1.5707963267948966 rad pos: 49.5,26.5 @@ -123344,7 +117917,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18102 + - uid: 18134 components: - rot: 1.5707963267948966 rad pos: 50.5,26.5 @@ -123352,7 +117925,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18103 + - uid: 18135 components: - rot: 1.5707963267948966 rad pos: 51.5,26.5 @@ -123360,7 +117933,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18104 + - uid: 18136 components: - rot: 1.5707963267948966 rad pos: 52.5,26.5 @@ -123368,7 +117941,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18105 + - uid: 18137 components: - rot: 1.5707963267948966 rad pos: 53.5,26.5 @@ -123376,7 +117949,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18106 + - uid: 18138 components: - rot: 1.5707963267948966 rad pos: 48.5,27.5 @@ -123384,7 +117957,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18107 + - uid: 18139 components: - rot: 1.5707963267948966 rad pos: 49.5,27.5 @@ -123392,9 +117965,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18108 + - uid: 18140 components: - rot: 1.5707963267948966 rad pos: 50.5,27.5 @@ -123402,9 +117973,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18109 + - uid: 18141 components: - rot: 1.5707963267948966 rad pos: 51.5,27.5 @@ -123412,9 +117981,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18110 + - uid: 18142 components: - rot: 3.141592653589793 rad pos: 52.5,28.5 @@ -123422,7 +117989,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18111 + - uid: 18143 components: - rot: 3.141592653589793 rad pos: 52.5,29.5 @@ -123430,7 +117997,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18112 + - uid: 18144 components: - rot: 3.141592653589793 rad pos: 52.5,30.5 @@ -123438,9 +118005,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18113 + - uid: 18145 components: - rot: 3.141592653589793 rad pos: 52.5,31.5 @@ -123448,9 +118013,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18114 + - uid: 18146 components: - rot: 3.141592653589793 rad pos: 52.5,32.5 @@ -123458,9 +118021,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18115 + - uid: 18147 components: - rot: 3.141592653589793 rad pos: 52.5,33.5 @@ -123468,9 +118029,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18116 + - uid: 18148 components: - rot: 3.141592653589793 rad pos: 52.5,34.5 @@ -123478,7 +118037,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18117 + - uid: 18149 components: - rot: 3.141592653589793 rad pos: 52.5,35.5 @@ -123486,7 +118045,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18118 + - uid: 18150 components: - rot: 3.141592653589793 rad pos: 52.5,36.5 @@ -123494,7 +118053,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18119 + - uid: 18151 components: - rot: 3.141592653589793 rad pos: 52.5,37.5 @@ -123502,7 +118061,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18120 + - uid: 18152 components: - rot: 3.141592653589793 rad pos: 52.5,38.5 @@ -123510,9 +118069,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18121 + - uid: 18153 components: - rot: 3.141592653589793 rad pos: 52.5,39.5 @@ -123520,7 +118077,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18122 + - uid: 18154 components: - rot: 3.141592653589793 rad pos: 52.5,40.5 @@ -123528,7 +118085,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18123 + - uid: 18155 components: - rot: 3.141592653589793 rad pos: 52.5,41.5 @@ -123536,9 +118093,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18124 + - uid: 18156 components: - rot: 3.141592653589793 rad pos: 52.5,42.5 @@ -123546,7 +118101,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18125 + - uid: 18157 components: - rot: 3.141592653589793 rad pos: 54.5,27.5 @@ -123554,7 +118109,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18126 + - uid: 18158 components: - rot: 3.141592653589793 rad pos: 54.5,28.5 @@ -123562,7 +118117,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18127 + - uid: 18159 components: - rot: 3.141592653589793 rad pos: 54.5,29.5 @@ -123570,7 +118125,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18128 + - uid: 18160 components: - rot: 3.141592653589793 rad pos: 54.5,30.5 @@ -123578,9 +118133,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18129 + - uid: 18161 components: - rot: 3.141592653589793 rad pos: 54.5,31.5 @@ -123588,7 +118141,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18130 + - uid: 18162 components: - rot: 3.141592653589793 rad pos: 54.5,32.5 @@ -123596,7 +118149,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18131 + - uid: 18163 components: - rot: 3.141592653589793 rad pos: 54.5,33.5 @@ -123604,7 +118157,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18132 + - uid: 18164 components: - rot: 3.141592653589793 rad pos: 54.5,34.5 @@ -123612,9 +118165,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18133 + - uid: 18165 components: - rot: 3.141592653589793 rad pos: 54.5,35.5 @@ -123622,7 +118173,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18134 + - uid: 18166 components: - rot: 3.141592653589793 rad pos: 54.5,36.5 @@ -123630,7 +118181,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18135 + - uid: 18167 components: - rot: 3.141592653589793 rad pos: 54.5,37.5 @@ -123638,7 +118189,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18136 + - uid: 18168 components: - rot: 3.141592653589793 rad pos: 54.5,38.5 @@ -123646,7 +118197,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18137 + - uid: 18169 components: - rot: 3.141592653589793 rad pos: 54.5,39.5 @@ -123654,7 +118205,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18138 + - uid: 18170 components: - rot: 3.141592653589793 rad pos: 54.5,40.5 @@ -123662,7 +118213,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18139 + - uid: 18171 components: - rot: 3.141592653589793 rad pos: 54.5,41.5 @@ -123670,7 +118221,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18140 + - uid: 18172 components: - rot: 3.141592653589793 rad pos: 54.5,42.5 @@ -123678,7 +118229,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18141 + - uid: 18173 components: - rot: 3.141592653589793 rad pos: 54.5,44.5 @@ -123686,9 +118237,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18142 + - uid: 18174 components: - rot: 3.141592653589793 rad pos: 54.5,45.5 @@ -123696,7 +118245,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18143 + - uid: 18175 components: - rot: 3.141592653589793 rad pos: 54.5,46.5 @@ -123704,9 +118253,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18144 + - uid: 18176 components: - rot: 3.141592653589793 rad pos: 54.5,47.5 @@ -123714,7 +118261,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18145 + - uid: 18177 components: - rot: 3.141592653589793 rad pos: 54.5,48.5 @@ -123722,9 +118269,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18146 + - uid: 18178 components: - rot: 3.141592653589793 rad pos: 54.5,49.5 @@ -123732,7 +118277,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18147 + - uid: 18179 components: - rot: 3.141592653589793 rad pos: 54.5,51.5 @@ -123740,9 +118285,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18148 + - uid: 18180 components: - rot: 3.141592653589793 rad pos: 54.5,52.5 @@ -123750,9 +118293,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18149 + - uid: 18181 components: - rot: 3.141592653589793 rad pos: 54.5,53.5 @@ -123760,7 +118301,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18150 + - uid: 18182 components: - rot: 3.141592653589793 rad pos: 54.5,54.5 @@ -123768,9 +118309,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18151 + - uid: 18183 components: - rot: 3.141592653589793 rad pos: 54.5,55.5 @@ -123778,7 +118317,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18152 + - uid: 18184 components: - rot: 3.141592653589793 rad pos: 52.5,44.5 @@ -123786,9 +118325,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18153 + - uid: 18185 components: - rot: 3.141592653589793 rad pos: 52.5,45.5 @@ -123796,7 +118333,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18154 + - uid: 18186 components: - rot: 3.141592653589793 rad pos: 52.5,46.5 @@ -123804,9 +118341,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18155 + - uid: 18187 components: - rot: 3.141592653589793 rad pos: 52.5,47.5 @@ -123814,7 +118349,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18156 + - uid: 18188 components: - rot: 3.141592653589793 rad pos: 52.5,48.5 @@ -123822,9 +118357,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18157 + - uid: 18189 components: - rot: 3.141592653589793 rad pos: 52.5,50.5 @@ -123832,7 +118365,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18158 + - uid: 18190 components: - rot: 3.141592653589793 rad pos: 52.5,51.5 @@ -123840,7 +118373,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18159 + - uid: 18191 components: - rot: 3.141592653589793 rad pos: 52.5,52.5 @@ -123848,7 +118381,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18160 + - uid: 18192 components: - rot: 3.141592653589793 rad pos: 52.5,53.5 @@ -123856,7 +118389,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18161 + - uid: 18193 components: - rot: 3.141592653589793 rad pos: 52.5,54.5 @@ -123864,9 +118397,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18162 + - uid: 18194 components: - rot: 3.141592653589793 rad pos: 52.5,55.5 @@ -123874,49 +118405,49 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18163 + - uid: 18195 components: - pos: -16.5,31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18164 + - uid: 18196 components: - pos: -15.5,30.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18165 + - uid: 18197 components: - pos: -15.5,31.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18166 + - uid: 18198 components: - pos: -15.5,32.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18167 + - uid: 18199 components: - pos: -16.5,32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18168 + - uid: 18200 components: - pos: -16.5,33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18169 + - uid: 18201 components: - rot: 1.5707963267948966 rad pos: -15.5,34.5 @@ -123924,7 +118455,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18170 + - uid: 18202 components: - rot: 1.5707963267948966 rad pos: -14.5,34.5 @@ -123932,7 +118463,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18171 + - uid: 18203 components: - rot: 1.5707963267948966 rad pos: -13.5,34.5 @@ -123940,7 +118471,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18172 + - uid: 18204 components: - rot: 1.5707963267948966 rad pos: -14.5,33.5 @@ -123948,7 +118479,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18173 + - uid: 18205 components: - rot: 1.5707963267948966 rad pos: -13.5,33.5 @@ -123956,135 +118487,133 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18174 + - uid: 18206 components: - pos: -16.5,35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18175 + - uid: 18207 components: - pos: -16.5,36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18176 + - uid: 18208 components: - pos: -16.5,37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18177 + - uid: 18209 components: - pos: -16.5,38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18178 + - uid: 18210 components: - pos: -16.5,40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18179 + - uid: 18211 components: - pos: -16.5,41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18180 + - uid: 18212 components: - pos: -16.5,42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18181 + - uid: 18213 components: - pos: -15.5,34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18182 + - uid: 18214 components: - pos: -15.5,35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18183 + - uid: 18215 components: - pos: -15.5,36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18184 + - uid: 18216 components: - pos: -15.5,37.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18185 + - uid: 18217 components: - pos: -15.5,39.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18186 + - uid: 18218 components: - pos: -15.5,40.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18187 + - uid: 18219 components: - pos: -15.5,41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18188 + - uid: 18220 components: - pos: -15.5,42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18189 + - uid: 18221 components: - pos: -15.5,43.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18190 + - uid: 18222 components: - pos: -16.5,44.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18191 + - uid: 18223 components: - pos: -16.5,45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18192 + - uid: 18224 components: - rot: 1.5707963267948966 rad pos: -17.5,43.5 @@ -124092,7 +118621,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18193 + - uid: 18225 components: - rot: 1.5707963267948966 rad pos: -18.5,43.5 @@ -124100,7 +118629,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18194 + - uid: 18226 components: - rot: 1.5707963267948966 rad pos: -19.5,43.5 @@ -124108,7 +118637,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18195 + - uid: 18227 components: - rot: 1.5707963267948966 rad pos: -16.5,44.5 @@ -124116,7 +118645,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18196 + - uid: 18228 components: - rot: 1.5707963267948966 rad pos: -17.5,44.5 @@ -124124,7 +118653,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18197 + - uid: 18229 components: - rot: 1.5707963267948966 rad pos: -18.5,44.5 @@ -124132,7 +118661,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18198 + - uid: 18230 components: - rot: 1.5707963267948966 rad pos: -19.5,44.5 @@ -124140,9 +118669,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18199 + - uid: 18231 components: - rot: -1.5707963267948966 rad pos: -16.5,45.5 @@ -124150,7 +118677,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18200 + - uid: 18232 components: - rot: 3.141592653589793 rad pos: -17.5,46.5 @@ -124158,7 +118685,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18201 + - uid: 18233 components: - rot: 3.141592653589793 rad pos: -17.5,47.5 @@ -124166,7 +118693,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18202 + - uid: 18234 components: - rot: 3.141592653589793 rad pos: -17.5,48.5 @@ -124174,7 +118701,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18203 + - uid: 18235 components: - rot: 3.141592653589793 rad pos: -17.5,49.5 @@ -124182,7 +118709,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18204 + - uid: 18236 components: - rot: 3.141592653589793 rad pos: -16.5,47.5 @@ -124190,7 +118717,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18205 + - uid: 18237 components: - rot: 3.141592653589793 rad pos: -16.5,48.5 @@ -124198,7 +118725,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18206 + - uid: 18238 components: - rot: 3.141592653589793 rad pos: -16.5,49.5 @@ -124206,7 +118733,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18207 + - uid: 18239 components: - rot: 1.5707963267948966 rad pos: -15.5,43.5 @@ -124214,7 +118741,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18208 + - uid: 18240 components: - rot: -1.5707963267948966 rad pos: -15.5,46.5 @@ -124222,7 +118749,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18209 + - uid: 18241 components: - rot: -1.5707963267948966 rad pos: -14.5,46.5 @@ -124230,7 +118757,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18210 + - uid: 18242 components: - rot: -1.5707963267948966 rad pos: -13.5,46.5 @@ -124238,7 +118765,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18211 + - uid: 18243 components: - rot: -1.5707963267948966 rad pos: -12.5,46.5 @@ -124246,7 +118773,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18212 + - uid: 18244 components: - rot: -1.5707963267948966 rad pos: -13.5,44.5 @@ -124254,7 +118781,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18213 + - uid: 18245 components: - rot: -1.5707963267948966 rad pos: -12.5,44.5 @@ -124262,34 +118789,32 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18214 + - uid: 18246 components: - pos: 1.5,47.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18215 + - uid: 18247 components: - rot: 3.141592653589793 rad pos: 70.5,35.5 parent: 2 type: Transform - - uid: 18216 + - uid: 18248 components: - rot: 3.141592653589793 rad pos: 70.5,34.5 parent: 2 type: Transform - - uid: 18217 + - uid: 18249 components: - rot: 3.141592653589793 rad pos: 70.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 18218 + - uid: 18250 components: - rot: -1.5707963267948966 rad pos: -14.5,38.5 @@ -124297,7 +118822,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18219 + - uid: 18251 components: - rot: -1.5707963267948966 rad pos: -13.5,38.5 @@ -124305,7 +118830,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18220 + - uid: 18252 components: - rot: -1.5707963267948966 rad pos: -12.5,38.5 @@ -124313,7 +118838,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18221 + - uid: 18253 components: - rot: -1.5707963267948966 rad pos: 53.5,50.5 @@ -124321,7 +118846,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18222 + - uid: 18254 components: - rot: -1.5707963267948966 rad pos: 52.5,50.5 @@ -124329,7 +118854,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18223 + - uid: 18255 components: - rot: -1.5707963267948966 rad pos: 51.5,50.5 @@ -124337,7 +118862,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18224 + - uid: 18256 components: - rot: -1.5707963267948966 rad pos: 50.5,50.5 @@ -124345,9 +118870,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18225 + - uid: 18257 components: - rot: -1.5707963267948966 rad pos: 49.5,50.5 @@ -124355,9 +118878,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18226 + - uid: 18258 components: - rot: -1.5707963267948966 rad pos: 48.5,50.5 @@ -124365,7 +118886,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18227 + - uid: 18259 components: - rot: -1.5707963267948966 rad pos: 51.5,49.5 @@ -124373,7 +118894,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18228 + - uid: 18260 components: - rot: -1.5707963267948966 rad pos: 50.5,49.5 @@ -124381,7 +118902,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18229 + - uid: 18261 components: - rot: -1.5707963267948966 rad pos: 49.5,49.5 @@ -124389,9 +118910,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18230 + - uid: 18262 components: - rot: -1.5707963267948966 rad pos: 48.5,49.5 @@ -124399,7 +118918,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18231 + - uid: 18263 components: - rot: -1.5707963267948966 rad pos: 47.5,49.5 @@ -124407,7 +118926,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18232 + - uid: 18264 components: - rot: -1.5707963267948966 rad pos: 46.5,49.5 @@ -124415,53 +118934,49 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18233 + - uid: 18265 components: - pos: 47.5,49.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18234 + - uid: 18266 components: - pos: 47.5,48.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18235 + - uid: 18267 components: - pos: 47.5,47.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18236 + - uid: 18268 components: - pos: 45.5,48.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18237 + - uid: 18269 components: - pos: 45.5,47.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18238 + - uid: 18270 components: - pos: 45.5,46.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18239 + - uid: 18271 components: - rot: -1.5707963267948966 rad pos: 46.5,46.5 @@ -124469,7 +118984,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18240 + - uid: 18272 components: - rot: -1.5707963267948966 rad pos: 45.5,46.5 @@ -124477,9 +118992,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18241 + - uid: 18273 components: - rot: -1.5707963267948966 rad pos: 43.5,46.5 @@ -124487,7 +119000,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18242 + - uid: 18274 components: - rot: -1.5707963267948966 rad pos: 44.5,46.5 @@ -124495,7 +119008,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18243 + - uid: 18275 components: - rot: -1.5707963267948966 rad pos: 42.5,46.5 @@ -124503,7 +119016,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18244 + - uid: 18276 components: - rot: -1.5707963267948966 rad pos: 41.5,46.5 @@ -124511,9 +119024,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18245 + - uid: 18277 components: - rot: -1.5707963267948966 rad pos: 44.5,45.5 @@ -124521,7 +119032,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18246 + - uid: 18278 components: - rot: -1.5707963267948966 rad pos: 43.5,45.5 @@ -124529,7 +119040,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18247 + - uid: 18279 components: - rot: -1.5707963267948966 rad pos: 42.5,45.5 @@ -124537,7 +119048,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18248 + - uid: 18280 components: - rot: -1.5707963267948966 rad pos: 41.5,45.5 @@ -124545,9 +119056,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18249 + - uid: 18281 components: - rot: 3.141592653589793 rad pos: 2.5,67.5 @@ -124555,7 +119064,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18250 + - uid: 18282 components: - rot: 3.141592653589793 rad pos: 2.5,66.5 @@ -124563,7 +119072,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18251 + - uid: 18283 components: - rot: 3.141592653589793 rad pos: 2.5,65.5 @@ -124571,9 +119080,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18252 + - uid: 18284 components: - rot: 3.141592653589793 rad pos: 2.5,64.5 @@ -124581,9 +119088,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18253 + - uid: 18285 components: - rot: 3.141592653589793 rad pos: -5.5,67.5 @@ -124591,7 +119096,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18254 + - uid: 18286 components: - rot: 3.141592653589793 rad pos: -5.5,66.5 @@ -124599,7 +119104,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18255 + - uid: 18287 components: - rot: 3.141592653589793 rad pos: -5.5,65.5 @@ -124607,9 +119112,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18256 + - uid: 18288 components: - rot: 3.141592653589793 rad pos: -5.5,64.5 @@ -124617,9 +119120,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18257 + - uid: 18289 components: - rot: 3.141592653589793 rad pos: -6.5,68.5 @@ -124627,7 +119128,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18258 + - uid: 18290 components: - rot: 3.141592653589793 rad pos: -6.5,67.5 @@ -124635,7 +119136,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18259 + - uid: 18291 components: - rot: 3.141592653589793 rad pos: -6.5,66.5 @@ -124643,7 +119144,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18260 + - uid: 18292 components: - rot: 3.141592653589793 rad pos: -6.5,65.5 @@ -124651,9 +119152,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18261 + - uid: 18293 components: - rot: 3.141592653589793 rad pos: 3.5,68.5 @@ -124661,7 +119160,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18262 + - uid: 18294 components: - rot: 3.141592653589793 rad pos: 3.5,67.5 @@ -124669,7 +119168,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18263 + - uid: 18295 components: - rot: 3.141592653589793 rad pos: 3.5,66.5 @@ -124677,7 +119176,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18264 + - uid: 18296 components: - rot: 3.141592653589793 rad pos: 3.5,65.5 @@ -124685,9 +119184,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18265 + - uid: 18297 components: - rot: 1.5707963267948966 rad pos: 0.5,69.5 @@ -124695,7 +119192,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18266 + - uid: 18298 components: - rot: 1.5707963267948966 rad pos: -3.5,69.5 @@ -124703,95 +119200,91 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18267 + - uid: 18299 components: - pos: -2.5,66.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18268 + - uid: 18300 components: - pos: -2.5,65.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18269 + - uid: 18301 components: - pos: -2.5,64.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18270 + - uid: 18302 components: - pos: -2.5,63.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18271 + - uid: 18303 components: - pos: -2.5,61.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18272 + - uid: 18304 components: - pos: -2.5,60.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18273 + - uid: 18305 components: - pos: -2.5,59.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18274 + - uid: 18306 components: - pos: -1.5,65.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18275 + - uid: 18307 components: - pos: -1.5,64.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18276 + - uid: 18308 components: - pos: -1.5,63.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18277 + - uid: 18309 components: - pos: -1.5,62.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18278 + - uid: 18310 components: - pos: -1.5,60.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18279 + - uid: 18311 components: - rot: -1.5707963267948966 rad pos: -11.5,46.5 @@ -124799,7 +119292,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18280 + - uid: 18312 components: - rot: -1.5707963267948966 rad pos: -10.5,46.5 @@ -124807,7 +119300,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18281 + - uid: 18313 components: - rot: -1.5707963267948966 rad pos: -9.5,46.5 @@ -124815,7 +119308,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18282 + - uid: 18314 components: - rot: -1.5707963267948966 rad pos: -8.5,46.5 @@ -124823,7 +119316,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18283 + - uid: 18315 components: - rot: -1.5707963267948966 rad pos: -7.5,46.5 @@ -124831,7 +119324,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18284 + - uid: 18316 components: - rot: -1.5707963267948966 rad pos: -6.5,46.5 @@ -124839,7 +119332,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18285 + - uid: 18317 components: - rot: -1.5707963267948966 rad pos: -5.5,46.5 @@ -124847,7 +119340,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18286 + - uid: 18318 components: - rot: -1.5707963267948966 rad pos: -4.5,46.5 @@ -124855,7 +119348,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18287 + - uid: 18319 components: - rot: -1.5707963267948966 rad pos: -3.5,46.5 @@ -124863,7 +119356,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18288 + - uid: 18320 components: - rot: -1.5707963267948966 rad pos: -2.5,46.5 @@ -124871,7 +119364,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18289 + - uid: 18321 components: - rot: -1.5707963267948966 rad pos: -1.5,46.5 @@ -124879,7 +119372,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18290 + - uid: 18322 components: - rot: -1.5707963267948966 rad pos: -11.5,44.5 @@ -124887,7 +119380,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18291 + - uid: 18323 components: - rot: -1.5707963267948966 rad pos: -10.5,44.5 @@ -124895,7 +119388,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18292 + - uid: 18324 components: - rot: -1.5707963267948966 rad pos: -9.5,44.5 @@ -124903,7 +119396,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18293 + - uid: 18325 components: - rot: -1.5707963267948966 rad pos: -8.5,44.5 @@ -124911,7 +119404,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18294 + - uid: 18326 components: - rot: -1.5707963267948966 rad pos: -7.5,44.5 @@ -124919,7 +119412,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18295 + - uid: 18327 components: - rot: -1.5707963267948966 rad pos: -6.5,44.5 @@ -124927,7 +119420,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18296 + - uid: 18328 components: - rot: -1.5707963267948966 rad pos: -5.5,44.5 @@ -124935,7 +119428,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18297 + - uid: 18329 components: - rot: -1.5707963267948966 rad pos: -4.5,44.5 @@ -124943,7 +119436,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18298 + - uid: 18330 components: - rot: -1.5707963267948966 rad pos: -3.5,44.5 @@ -124951,7 +119444,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18299 + - uid: 18331 components: - rot: -1.5707963267948966 rad pos: -2.5,44.5 @@ -124959,7 +119452,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18300 + - uid: 18332 components: - rot: -1.5707963267948966 rad pos: -1.5,44.5 @@ -124967,7 +119460,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18301 + - uid: 18333 components: - rot: -1.5707963267948966 rad pos: -0.5,44.5 @@ -124975,7 +119468,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18302 + - uid: 18334 components: - rot: -1.5707963267948966 rad pos: 0.5,44.5 @@ -124983,7 +119476,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18303 + - uid: 18335 components: - rot: 3.141592653589793 rad pos: 1.5,45.5 @@ -124991,7 +119484,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18304 + - uid: 18336 components: - rot: 3.141592653589793 rad pos: -0.5,47.5 @@ -124999,98 +119492,98 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18305 + - uid: 18337 components: - pos: 1.5,48.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18306 + - uid: 18338 components: - pos: 1.5,49.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18307 + - uid: 18339 components: - pos: 1.5,50.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18308 + - uid: 18340 components: - pos: 1.5,51.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18309 + - uid: 18341 components: - pos: 1.5,52.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18310 + - uid: 18342 components: - pos: 1.5,53.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18311 + - uid: 18343 components: - pos: 1.5,54.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18312 + - uid: 18344 components: - pos: -0.5,49.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18313 + - uid: 18345 components: - pos: -0.5,50.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18314 + - uid: 18346 components: - pos: -0.5,51.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18315 + - uid: 18347 components: - pos: -0.5,52.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18316 + - uid: 18348 components: - pos: -0.5,53.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18317 + - uid: 18349 components: - pos: -0.5,54.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18318 + - uid: 18350 components: - rot: -1.5707963267948966 rad pos: -17.5,51.5 @@ -125098,7 +119591,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18319 + - uid: 18351 components: - rot: -1.5707963267948966 rad pos: -18.5,51.5 @@ -125106,7 +119599,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18320 + - uid: 18352 components: - rot: -1.5707963267948966 rad pos: -19.5,51.5 @@ -125114,7 +119607,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18321 + - uid: 18353 components: - rot: -1.5707963267948966 rad pos: -18.5,50.5 @@ -125122,7 +119615,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18322 + - uid: 18354 components: - rot: -1.5707963267948966 rad pos: -19.5,50.5 @@ -125130,7 +119623,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18323 + - uid: 18355 components: - rot: -1.5707963267948966 rad pos: -20.5,50.5 @@ -125138,7 +119631,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18324 + - uid: 18356 components: - rot: 3.141592653589793 rad pos: -20.5,50.5 @@ -125146,7 +119639,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18325 + - uid: 18357 components: - rot: 3.141592653589793 rad pos: -20.5,49.5 @@ -125154,9 +119647,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18326 + - uid: 18358 components: - rot: 3.141592653589793 rad pos: -21.5,49.5 @@ -125164,9 +119655,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18327 + - uid: 18359 components: - rot: 3.141592653589793 rad pos: -16.5,50.5 @@ -125174,7 +119663,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18328 + - uid: 18360 components: - rot: 1.5707963267948966 rad pos: -16.5,50.5 @@ -125182,7 +119671,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18329 + - uid: 18361 components: - rot: 1.5707963267948966 rad pos: -15.5,50.5 @@ -125190,7 +119679,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18330 + - uid: 18362 components: - rot: 1.5707963267948966 rad pos: -14.5,50.5 @@ -125198,7 +119687,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18331 + - uid: 18363 components: - rot: 1.5707963267948966 rad pos: -13.5,50.5 @@ -125206,7 +119695,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18332 + - uid: 18364 components: - rot: 1.5707963267948966 rad pos: -15.5,51.5 @@ -125214,7 +119703,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18333 + - uid: 18365 components: - rot: 1.5707963267948966 rad pos: -14.5,51.5 @@ -125222,140 +119711,140 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18334 + - uid: 18366 components: - pos: -21.5,52.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18335 + - uid: 18367 components: - pos: -21.5,53.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18336 + - uid: 18368 components: - pos: -21.5,54.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18337 + - uid: 18369 components: - pos: -21.5,55.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18338 + - uid: 18370 components: - pos: -21.5,56.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18339 + - uid: 18371 components: - pos: -21.5,57.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18340 + - uid: 18372 components: - pos: -22.5,51.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18341 + - uid: 18373 components: - pos: -22.5,52.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18342 + - uid: 18374 components: - pos: -22.5,53.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18343 + - uid: 18375 components: - pos: -22.5,54.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18344 + - uid: 18376 components: - pos: -22.5,55.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18345 + - uid: 18377 components: - pos: -22.5,56.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18346 + - uid: 18378 components: - pos: -22.5,57.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18347 + - uid: 18379 components: - pos: -22.5,58.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18348 + - uid: 18380 components: - pos: -22.5,59.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18349 + - uid: 18381 components: - pos: -21.5,59.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18350 + - uid: 18382 components: - pos: -21.5,60.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18351 + - uid: 18383 components: - pos: -21.5,61.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18352 + - uid: 18384 components: - pos: -22.5,62.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18353 + - uid: 18385 components: - rot: -1.5707963267948966 rad pos: -20.5,62.5 @@ -125363,9 +119852,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18354 + - uid: 18386 components: - rot: -1.5707963267948966 rad pos: -19.5,62.5 @@ -125373,9 +119860,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18355 + - uid: 18387 components: - rot: -1.5707963267948966 rad pos: -18.5,62.5 @@ -125383,7 +119868,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18356 + - uid: 18388 components: - rot: -1.5707963267948966 rad pos: -21.5,61.5 @@ -125391,7 +119876,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18357 + - uid: 18389 components: - rot: -1.5707963267948966 rad pos: -20.5,61.5 @@ -125399,9 +119884,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18358 + - uid: 18390 components: - rot: -1.5707963267948966 rad pos: -19.5,61.5 @@ -125409,7 +119892,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18359 + - uid: 18391 components: - rot: -1.5707963267948966 rad pos: -18.5,61.5 @@ -125417,142 +119900,140 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18360 + - uid: 18392 components: - pos: -22.5,63.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18361 + - uid: 18393 components: - pos: -22.5,64.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18362 + - uid: 18394 components: - pos: -22.5,65.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18363 + - uid: 18395 components: - pos: -22.5,67.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18364 + - uid: 18396 components: - pos: -22.5,68.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18365 + - uid: 18397 components: - pos: -22.5,69.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18366 + - uid: 18398 components: - pos: -22.5,70.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18367 + - uid: 18399 components: - pos: -22.5,71.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18368 + - uid: 18400 components: - pos: -22.5,72.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18369 + - uid: 18401 components: - pos: -21.5,63.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18370 + - uid: 18402 components: - pos: -21.5,64.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18371 + - uid: 18403 components: - pos: -21.5,65.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18372 + - uid: 18404 components: - pos: -21.5,66.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18373 + - uid: 18405 components: - pos: -21.5,67.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18374 + - uid: 18406 components: - pos: -21.5,68.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18375 + - uid: 18407 components: - pos: -21.5,69.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18376 + - uid: 18408 components: - pos: -21.5,70.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18377 + - uid: 18409 components: - pos: -21.5,71.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18378 + - uid: 18410 components: - pos: -21.5,72.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18379 + - uid: 18411 components: - rot: -1.5707963267948966 rad pos: -16.5,62.5 @@ -125560,7 +120041,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18380 + - uid: 18412 components: - rot: -1.5707963267948966 rad pos: -15.5,62.5 @@ -125568,7 +120049,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18381 + - uid: 18413 components: - rot: -1.5707963267948966 rad pos: -14.5,62.5 @@ -125576,9 +120057,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18382 + - uid: 18414 components: - rot: -1.5707963267948966 rad pos: -16.5,61.5 @@ -125586,7 +120065,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18383 + - uid: 18415 components: - rot: -1.5707963267948966 rad pos: -15.5,61.5 @@ -125594,7 +120073,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18384 + - uid: 18416 components: - rot: -1.5707963267948966 rad pos: -14.5,61.5 @@ -125602,9 +120081,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18385 + - uid: 18417 components: - rot: -1.5707963267948966 rad pos: -13.5,61.5 @@ -125612,168 +120089,168 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18386 + - uid: 18418 components: - pos: -13.5,61.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18387 + - uid: 18419 components: - pos: -13.5,60.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18388 + - uid: 18420 components: - pos: -13.5,59.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18389 + - uid: 18421 components: - pos: -12.5,62.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18390 + - uid: 18422 components: - pos: -12.5,63.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18391 + - uid: 18423 components: - pos: -12.5,64.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18392 + - uid: 18424 components: - pos: -12.5,65.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18393 + - uid: 18425 components: - pos: -12.5,66.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18394 + - uid: 18426 components: - pos: -12.5,67.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18395 + - uid: 18427 components: - pos: -12.5,68.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18396 + - uid: 18428 components: - pos: -12.5,69.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18397 + - uid: 18429 components: - pos: -12.5,70.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18398 + - uid: 18430 components: - pos: -12.5,71.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18399 + - uid: 18431 components: - pos: -12.5,72.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18400 + - uid: 18432 components: - pos: -13.5,63.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18401 + - uid: 18433 components: - pos: -13.5,64.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18402 + - uid: 18434 components: - pos: -13.5,65.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18403 + - uid: 18435 components: - pos: -13.5,67.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18404 + - uid: 18436 components: - pos: -13.5,68.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18405 + - uid: 18437 components: - pos: -13.5,69.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18406 + - uid: 18438 components: - pos: -13.5,70.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18407 + - uid: 18439 components: - pos: -13.5,71.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18408 + - uid: 18440 components: - pos: -13.5,72.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18409 + - uid: 18441 components: - rot: 1.5707963267948966 rad pos: -11.5,59.5 @@ -125781,7 +120258,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18410 + - uid: 18442 components: - rot: 1.5707963267948966 rad pos: -10.5,59.5 @@ -125789,7 +120266,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18411 + - uid: 18443 components: - rot: 1.5707963267948966 rad pos: -9.5,59.5 @@ -125797,7 +120274,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18412 + - uid: 18444 components: - rot: 1.5707963267948966 rad pos: -8.5,59.5 @@ -125805,7 +120282,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18413 + - uid: 18445 components: - rot: 1.5707963267948966 rad pos: -7.5,59.5 @@ -125813,7 +120290,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18414 + - uid: 18446 components: - rot: 1.5707963267948966 rad pos: -6.5,59.5 @@ -125821,7 +120298,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18415 + - uid: 18447 components: - rot: 1.5707963267948966 rad pos: -5.5,59.5 @@ -125829,7 +120306,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18416 + - uid: 18448 components: - rot: 1.5707963267948966 rad pos: -4.5,59.5 @@ -125837,7 +120314,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18417 + - uid: 18449 components: - rot: 1.5707963267948966 rad pos: -12.5,58.5 @@ -125845,7 +120322,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18418 + - uid: 18450 components: - rot: 1.5707963267948966 rad pos: -11.5,58.5 @@ -125853,7 +120330,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18419 + - uid: 18451 components: - rot: 1.5707963267948966 rad pos: -10.5,58.5 @@ -125861,7 +120338,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18420 + - uid: 18452 components: - rot: 1.5707963267948966 rad pos: -9.5,58.5 @@ -125869,7 +120346,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18421 + - uid: 18453 components: - rot: 1.5707963267948966 rad pos: -8.5,58.5 @@ -125877,7 +120354,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18422 + - uid: 18454 components: - rot: 1.5707963267948966 rad pos: -7.5,58.5 @@ -125885,7 +120362,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18423 + - uid: 18455 components: - rot: 1.5707963267948966 rad pos: -6.5,58.5 @@ -125893,7 +120370,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18424 + - uid: 18456 components: - rot: 1.5707963267948966 rad pos: -5.5,58.5 @@ -125901,98 +120378,98 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18425 + - uid: 18457 components: - pos: -12.5,58.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18426 + - uid: 18458 components: - pos: -12.5,57.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18427 + - uid: 18459 components: - pos: -12.5,56.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18428 + - uid: 18460 components: - pos: -12.5,55.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18429 + - uid: 18461 components: - pos: -12.5,54.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18430 + - uid: 18462 components: - pos: -12.5,53.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18431 + - uid: 18463 components: - pos: -12.5,52.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18432 + - uid: 18464 components: - pos: -12.5,51.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18433 + - uid: 18465 components: - pos: -13.5,56.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18434 + - uid: 18466 components: - pos: -13.5,55.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18435 + - uid: 18467 components: - pos: -13.5,54.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18436 + - uid: 18468 components: - pos: -13.5,53.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18437 + - uid: 18469 components: - pos: -13.5,52.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18438 + - uid: 18470 components: - rot: 1.5707963267948966 rad pos: -3.5,59.5 @@ -126000,7 +120477,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18439 + - uid: 18471 components: - rot: 1.5707963267948966 rad pos: -2.5,59.5 @@ -126008,7 +120485,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18440 + - uid: 18472 components: - rot: 1.5707963267948966 rad pos: -4.5,58.5 @@ -126016,7 +120493,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18441 + - uid: 18473 components: - rot: 1.5707963267948966 rad pos: -3.5,58.5 @@ -126024,7 +120501,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18442 + - uid: 18474 components: - rot: -1.5707963267948966 rad pos: 0.5,59.5 @@ -126032,7 +120509,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18443 + - uid: 18475 components: - rot: 1.5707963267948966 rad pos: -1.5,58.5 @@ -126040,14 +120517,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18444 + - uid: 18476 components: - pos: -0.5,57.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18445 + - uid: 18477 components: - rot: 1.5707963267948966 rad pos: -0.5,59.5 @@ -126055,35 +120532,35 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18446 + - uid: 18478 components: - pos: -0.5,55.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18447 + - uid: 18479 components: - pos: 1.5,58.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18448 + - uid: 18480 components: - pos: 1.5,56.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18449 + - uid: 18481 components: - pos: 1.5,55.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18450 + - uid: 18482 components: - rot: -1.5707963267948966 rad pos: 39.5,47.5 @@ -126091,7 +120568,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18451 + - uid: 18483 components: - rot: -1.5707963267948966 rad pos: 38.5,47.5 @@ -126099,9 +120576,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18452 + - uid: 18484 components: - rot: -1.5707963267948966 rad pos: 37.5,47.5 @@ -126109,7 +120584,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18453 + - uid: 18485 components: - rot: -1.5707963267948966 rad pos: 36.5,47.5 @@ -126117,7 +120592,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18454 + - uid: 18486 components: - rot: -1.5707963267948966 rad pos: 35.5,47.5 @@ -126125,7 +120600,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18455 + - uid: 18487 components: - rot: -1.5707963267948966 rad pos: 34.5,47.5 @@ -126133,7 +120608,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18456 + - uid: 18488 components: - rot: -1.5707963267948966 rad pos: 33.5,47.5 @@ -126141,7 +120616,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18457 + - uid: 18489 components: - rot: -1.5707963267948966 rad pos: 32.5,47.5 @@ -126149,7 +120624,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18458 + - uid: 18490 components: - rot: -1.5707963267948966 rad pos: 31.5,47.5 @@ -126157,9 +120632,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18459 + - uid: 18491 components: - rot: -1.5707963267948966 rad pos: 30.5,47.5 @@ -126167,7 +120640,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18460 + - uid: 18492 components: - rot: -1.5707963267948966 rad pos: 28.5,45.5 @@ -126175,7 +120648,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18461 + - uid: 18493 components: - rot: -1.5707963267948966 rad pos: 27.5,45.5 @@ -126183,7 +120656,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18462 + - uid: 18494 components: - rot: -1.5707963267948966 rad pos: 26.5,45.5 @@ -126191,7 +120664,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18463 + - uid: 18495 components: - rot: -1.5707963267948966 rad pos: 25.5,45.5 @@ -126199,7 +120672,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18464 + - uid: 18496 components: - rot: -1.5707963267948966 rad pos: 28.5,46.5 @@ -126207,7 +120680,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18465 + - uid: 18497 components: - rot: -1.5707963267948966 rad pos: 27.5,46.5 @@ -126215,9 +120688,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18466 + - uid: 18498 components: - rot: -1.5707963267948966 rad pos: 26.5,46.5 @@ -126225,7 +120696,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18467 + - uid: 18499 components: - rot: -1.5707963267948966 rad pos: 25.5,46.5 @@ -126233,7 +120704,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18468 + - uid: 18500 components: - rot: -1.5707963267948966 rad pos: 24.5,46.5 @@ -126241,7 +120712,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18469 + - uid: 18501 components: - rot: 1.5707963267948966 rad pos: 30.5,44.5 @@ -126249,7 +120720,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18470 + - uid: 18502 components: - rot: 1.5707963267948966 rad pos: 31.5,44.5 @@ -126257,9 +120728,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18471 + - uid: 18503 components: - rot: 1.5707963267948966 rad pos: 32.5,44.5 @@ -126267,7 +120736,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18472 + - uid: 18504 components: - rot: 1.5707963267948966 rad pos: 33.5,44.5 @@ -126275,7 +120744,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18473 + - uid: 18505 components: - rot: 1.5707963267948966 rad pos: 34.5,44.5 @@ -126283,7 +120752,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18474 + - uid: 18506 components: - rot: 1.5707963267948966 rad pos: 35.5,44.5 @@ -126291,7 +120760,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18475 + - uid: 18507 components: - rot: 1.5707963267948966 rad pos: 36.5,44.5 @@ -126299,7 +120768,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18476 + - uid: 18508 components: - rot: 1.5707963267948966 rad pos: 37.5,44.5 @@ -126307,7 +120776,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18477 + - uid: 18509 components: - rot: 1.5707963267948966 rad pos: 38.5,44.5 @@ -126315,7 +120784,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18478 + - uid: 18510 components: - rot: 1.5707963267948966 rad pos: 39.5,44.5 @@ -126323,7 +120792,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18479 + - uid: 18511 components: - rot: 3.141592653589793 rad pos: -6.5,-91.5 @@ -126331,114 +120800,98 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18480 + - uid: 18512 components: - pos: -22.5,-90.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18481 + - uid: 18513 components: - pos: -22.5,-91.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18482 + - uid: 18514 components: - pos: -22.5,-92.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18483 + - uid: 18515 components: - pos: -22.5,-93.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18484 + - uid: 18516 components: - pos: -22.5,-94.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18485 + - uid: 18517 components: - pos: -22.5,-95.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18486 + - uid: 18518 components: - pos: -20.5,-89.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18487 + - uid: 18519 components: - pos: -20.5,-90.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18488 + - uid: 18520 components: - pos: -20.5,-91.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18489 + - uid: 18521 components: - pos: -20.5,-92.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18490 + - uid: 18522 components: - pos: -20.5,-93.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18491 + - uid: 18523 components: - pos: -20.5,-94.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18492 + - uid: 18524 components: - pos: -20.5,-95.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18493 + - uid: 18525 components: - rot: 3.141592653589793 rad pos: -22.5,-97.5 @@ -126446,7 +120899,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18494 + - uid: 18526 components: - rot: 1.5707963267948966 rad pos: -21.5,-97.5 @@ -126454,7 +120907,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18495 + - uid: 18527 components: - rot: 1.5707963267948966 rad pos: -22.5,-97.5 @@ -126462,7 +120915,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18496 + - uid: 18528 components: - rot: 1.5707963267948966 rad pos: -23.5,-97.5 @@ -126470,7 +120923,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18497 + - uid: 18529 components: - rot: 1.5707963267948966 rad pos: -24.5,-97.5 @@ -126478,7 +120931,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18498 + - uid: 18530 components: - rot: 1.5707963267948966 rad pos: -25.5,-97.5 @@ -126486,7 +120939,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18499 + - uid: 18531 components: - rot: 1.5707963267948966 rad pos: -26.5,-97.5 @@ -126494,9 +120947,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18500 + - uid: 18532 components: - rot: 1.5707963267948966 rad pos: -27.5,-97.5 @@ -126504,7 +120955,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18501 + - uid: 18533 components: - rot: 1.5707963267948966 rad pos: -28.5,-97.5 @@ -126512,7 +120963,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18502 + - uid: 18534 components: - rot: 1.5707963267948966 rad pos: -29.5,-97.5 @@ -126520,7 +120971,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18503 + - uid: 18535 components: - rot: 1.5707963267948966 rad pos: -30.5,-97.5 @@ -126528,7 +120979,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18504 + - uid: 18536 components: - rot: 1.5707963267948966 rad pos: -23.5,-96.5 @@ -126536,7 +120987,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18505 + - uid: 18537 components: - rot: 1.5707963267948966 rad pos: -24.5,-96.5 @@ -126544,7 +120995,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18506 + - uid: 18538 components: - rot: 1.5707963267948966 rad pos: -25.5,-96.5 @@ -126552,7 +121003,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18507 + - uid: 18539 components: - rot: 1.5707963267948966 rad pos: -26.5,-96.5 @@ -126560,7 +121011,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18508 + - uid: 18540 components: - rot: 1.5707963267948966 rad pos: -27.5,-96.5 @@ -126568,7 +121019,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18509 + - uid: 18541 components: - rot: 1.5707963267948966 rad pos: -28.5,-96.5 @@ -126576,9 +121027,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18510 + - uid: 18542 components: - rot: 1.5707963267948966 rad pos: -29.5,-96.5 @@ -126586,7 +121035,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18511 + - uid: 18543 components: - rot: 1.5707963267948966 rad pos: -30.5,-96.5 @@ -126594,7 +121043,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18512 + - uid: 18544 components: - rot: 1.5707963267948966 rad pos: -20.5,-98.5 @@ -126602,7 +121051,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18513 + - uid: 18545 components: - rot: 1.5707963267948966 rad pos: -19.5,-98.5 @@ -126610,7 +121059,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18514 + - uid: 18546 components: - rot: 1.5707963267948966 rad pos: -18.5,-98.5 @@ -126618,7 +121067,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18515 + - uid: 18547 components: - rot: 1.5707963267948966 rad pos: -17.5,-98.5 @@ -126626,7 +121075,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18516 + - uid: 18548 components: - rot: 1.5707963267948966 rad pos: -16.5,-98.5 @@ -126634,7 +121083,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18517 + - uid: 18549 components: - rot: 1.5707963267948966 rad pos: -19.5,-97.5 @@ -126642,7 +121091,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18518 + - uid: 18550 components: - rot: 1.5707963267948966 rad pos: -18.5,-97.5 @@ -126650,9 +121099,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18519 + - uid: 18551 components: - rot: 1.5707963267948966 rad pos: -17.5,-97.5 @@ -126660,7 +121107,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18520 + - uid: 18552 components: - rot: 1.5707963267948966 rad pos: -16.5,-97.5 @@ -126668,7 +121115,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18521 + - uid: 18553 components: - rot: 1.5707963267948966 rad pos: -15.5,-97.5 @@ -126676,7 +121123,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18522 + - uid: 18554 components: - rot: 1.5707963267948966 rad pos: -14.5,-97.5 @@ -126684,7 +121131,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18523 + - uid: 18555 components: - rot: 1.5707963267948966 rad pos: -13.5,-97.5 @@ -126692,7 +121139,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18524 + - uid: 18556 components: - rot: 1.5707963267948966 rad pos: -12.5,-97.5 @@ -126700,7 +121147,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18525 + - uid: 18557 components: - rot: 1.5707963267948966 rad pos: -11.5,-97.5 @@ -126708,7 +121155,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18526 + - uid: 18558 components: - rot: 1.5707963267948966 rad pos: -10.5,-97.5 @@ -126716,7 +121163,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18527 + - uid: 18559 components: - rot: 1.5707963267948966 rad pos: -15.5,-98.5 @@ -126724,7 +121171,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18528 + - uid: 18560 components: - rot: 1.5707963267948966 rad pos: -14.5,-98.5 @@ -126732,7 +121179,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18529 + - uid: 18561 components: - rot: 1.5707963267948966 rad pos: -13.5,-98.5 @@ -126740,9 +121187,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18530 + - uid: 18562 components: - rot: 1.5707963267948966 rad pos: -12.5,-98.5 @@ -126750,7 +121195,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18531 + - uid: 18563 components: - rot: 1.5707963267948966 rad pos: -11.5,-98.5 @@ -126758,7 +121203,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18532 + - uid: 18564 components: - rot: 1.5707963267948966 rad pos: -10.5,-98.5 @@ -126766,7 +121211,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18533 + - uid: 18565 components: - rot: 1.5707963267948966 rad pos: -9.5,-98.5 @@ -126774,7 +121219,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18534 + - uid: 18566 components: - rot: 1.5707963267948966 rad pos: -8.5,-98.5 @@ -126782,7 +121227,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18535 + - uid: 18567 components: - rot: 1.5707963267948966 rad pos: -9.5,-97.5 @@ -126790,118 +121235,112 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18536 + - uid: 18568 components: - pos: -8.5,-96.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18537 + - uid: 18569 components: - pos: -8.5,-95.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18538 + - uid: 18570 components: - pos: -8.5,-94.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18539 + - uid: 18571 components: - pos: -8.5,-93.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18540 + - uid: 18572 components: - pos: -8.5,-92.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18541 + - uid: 18573 components: - pos: -7.5,-97.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18542 + - uid: 18574 components: - pos: -7.5,-96.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18543 + - uid: 18575 components: - pos: -7.5,-95.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18544 + - uid: 18576 components: - pos: -7.5,-94.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18545 + - uid: 18577 components: - pos: -8.5,-90.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18546 + - uid: 18578 components: - pos: -8.5,-89.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18547 + - uid: 18579 components: - pos: -8.5,-88.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18548 + - uid: 18580 components: - pos: -8.5,-87.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18549 + - uid: 18581 components: - pos: -8.5,-86.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18550 + - uid: 18582 components: - pos: -8.5,-85.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18551 + - uid: 18583 components: - rot: 3.141592653589793 rad pos: -6.5,-89.5 @@ -126909,9 +121348,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18552 + - uid: 18584 components: - rot: 3.141592653589793 rad pos: -6.5,-90.5 @@ -126919,7 +121356,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18553 + - uid: 18585 components: - rot: 3.141592653589793 rad pos: -6.5,-92.5 @@ -126927,7 +121364,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18554 + - uid: 18586 components: - rot: 3.141592653589793 rad pos: -6.5,-88.5 @@ -126935,9 +121372,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18555 + - uid: 18587 components: - rot: 3.141592653589793 rad pos: -6.5,-87.5 @@ -126945,9 +121380,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18556 + - uid: 18588 components: - rot: 3.141592653589793 rad pos: -6.5,-86.5 @@ -126955,9 +121388,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18557 + - uid: 18589 components: - rot: 3.141592653589793 rad pos: -6.5,-85.5 @@ -126965,7 +121396,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18558 + - uid: 18590 components: - rot: -1.5707963267948966 rad pos: -31.5,-96.5 @@ -126973,9 +121404,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18559 + - uid: 18591 components: - rot: -1.5707963267948966 rad pos: -31.5,-97.5 @@ -126983,7 +121412,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18560 + - uid: 18592 components: - rot: -1.5707963267948966 rad pos: -32.5,-96.5 @@ -126991,7 +121420,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18561 + - uid: 18593 components: - rot: -1.5707963267948966 rad pos: -32.5,-97.5 @@ -126999,7 +121428,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18562 + - uid: 18594 components: - rot: -1.5707963267948966 rad pos: -33.5,-96.5 @@ -127007,7 +121436,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18563 + - uid: 18595 components: - rot: -1.5707963267948966 rad pos: -33.5,-97.5 @@ -127015,7 +121444,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18564 + - uid: 18596 components: - rot: 1.5707963267948966 rad pos: 36.5,-72.5 @@ -127023,7 +121452,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18565 + - uid: 18597 components: - rot: 1.5707963267948966 rad pos: 63.5,-34.5 @@ -127031,14 +121460,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18566 + - uid: 18598 components: - pos: 70.5,-48.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18567 + - uid: 18599 components: - rot: -1.5707963267948966 rad pos: 61.5,-33.5 @@ -127046,7 +121475,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18568 + - uid: 18600 components: - rot: -1.5707963267948966 rad pos: 62.5,-33.5 @@ -127054,7 +121483,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18569 + - uid: 18601 components: - rot: -1.5707963267948966 rad pos: 63.5,-33.5 @@ -127062,7 +121491,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18570 + - uid: 18602 components: - rot: -1.5707963267948966 rad pos: 64.5,-33.5 @@ -127070,7 +121499,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18571 + - uid: 18603 components: - rot: -1.5707963267948966 rad pos: 66.5,-33.5 @@ -127078,7 +121507,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18572 + - uid: 18604 components: - rot: -1.5707963267948966 rad pos: 67.5,-33.5 @@ -127086,7 +121515,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18573 + - uid: 18605 components: - rot: -1.5707963267948966 rad pos: 66.5,-34.5 @@ -127094,7 +121523,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18574 + - uid: 18606 components: - rot: -1.5707963267948966 rad pos: 68.5,-34.5 @@ -127102,7 +121531,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18575 + - uid: 18607 components: - rot: -1.5707963267948966 rad pos: 69.5,-34.5 @@ -127110,7 +121539,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18576 + - uid: 18608 components: - rot: -1.5707963267948966 rad pos: 69.5,-33.5 @@ -127118,7 +121547,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18577 + - uid: 18609 components: - rot: -1.5707963267948966 rad pos: 70.5,-33.5 @@ -127126,7 +121555,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18578 + - uid: 18610 components: - rot: -1.5707963267948966 rad pos: 70.5,-34.5 @@ -127134,14 +121563,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18579 + - uid: 18611 components: - pos: 72.5,-32.5 parent: 2 type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 18580 + - uid: 18612 components: - rot: -1.5707963267948966 rad pos: 71.5,-34.5 @@ -127149,7 +121578,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18581 + - uid: 18613 components: - rot: -1.5707963267948966 rad pos: 72.5,-34.5 @@ -127157,70 +121586,70 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18582 + - uid: 18614 components: - pos: 74.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18583 + - uid: 18615 components: - pos: 74.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18584 + - uid: 18616 components: - pos: 74.5,-37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18585 + - uid: 18617 components: - pos: 74.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18586 + - uid: 18618 components: - pos: 74.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18587 + - uid: 18619 components: - pos: 74.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18588 + - uid: 18620 components: - pos: 75.5,-34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18589 + - uid: 18621 components: - pos: 75.5,-35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18590 + - uid: 18622 components: - pos: 75.5,-36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18591 + - uid: 18623 components: - rot: 1.5707963267948966 rad pos: 74.5,-37.5 @@ -127228,21 +121657,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18592 + - uid: 18624 components: - pos: 75.5,-38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18593 + - uid: 18625 components: - pos: 75.5,-39.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18594 + - uid: 18626 components: - rot: 3.141592653589793 rad pos: 72.5,-30.5 @@ -127250,7 +121679,7 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 18595 + - uid: 18627 components: - rot: 3.141592653589793 rad pos: 75.5,-41.5 @@ -127258,7 +121687,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18596 + - uid: 18628 components: - rot: 3.141592653589793 rad pos: 75.5,-42.5 @@ -127266,7 +121695,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18597 + - uid: 18629 components: - rot: 3.141592653589793 rad pos: 74.5,-42.5 @@ -127274,7 +121703,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18598 + - uid: 18630 components: - rot: 3.141592653589793 rad pos: 74.5,-43.5 @@ -127282,7 +121711,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18599 + - uid: 18631 components: - rot: 3.141592653589793 rad pos: 74.5,-44.5 @@ -127290,7 +121719,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18600 + - uid: 18632 components: - rot: 3.141592653589793 rad pos: 75.5,-43.5 @@ -127298,7 +121727,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18601 + - uid: 18633 components: - rot: 3.141592653589793 rad pos: 75.5,-44.5 @@ -127306,7 +121735,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18602 + - uid: 18634 components: - rot: 3.141592653589793 rad pos: 75.5,-45.5 @@ -127314,7 +121743,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18603 + - uid: 18635 components: - rot: 1.5707963267948966 rad pos: 71.5,-48.5 @@ -127322,7 +121751,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18604 + - uid: 18636 components: - rot: 1.5707963267948966 rad pos: 74.5,-46.5 @@ -127330,7 +121759,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18605 + - uid: 18637 components: - rot: 1.5707963267948966 rad pos: 69.5,-47.5 @@ -127338,7 +121767,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18606 + - uid: 18638 components: - rot: -1.5707963267948966 rad pos: 73.5,-45.5 @@ -127346,7 +121775,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18607 + - uid: 18639 components: - rot: -1.5707963267948966 rad pos: 72.5,-45.5 @@ -127354,21 +121783,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18608 + - uid: 18640 components: - pos: 5.5,-26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18609 + - uid: 18641 components: - pos: 5.5,-27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18610 + - uid: 18642 components: - rot: -1.5707963267948966 rad pos: 4.5,-25.5 @@ -127376,7 +121805,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18611 + - uid: 18643 components: - rot: -1.5707963267948966 rad pos: 62.5,-11.5 @@ -127384,16 +121813,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18612 + - uid: 18644 components: - pos: 66.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18613 + - uid: 18645 components: - rot: 1.5707963267948966 rad pos: 73.5,-37.5 @@ -127401,7 +121828,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18614 + - uid: 18646 components: - rot: -1.5707963267948966 rad pos: 70.5,-36.5 @@ -127409,7 +121836,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18615 + - uid: 18647 components: - rot: -1.5707963267948966 rad pos: 68.5,-36.5 @@ -127417,7 +121844,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18616 + - uid: 18648 components: - rot: -1.5707963267948966 rad pos: 69.5,-37.5 @@ -127425,7 +121852,7 @@ entities: type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 18617 + - uid: 18649 components: - rot: -1.5707963267948966 rad pos: 69.5,-36.5 @@ -127433,16 +121860,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18618 + - uid: 18650 components: - pos: 71.5,-32.5 parent: 2 type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 18619 + - uid: 18651 components: - rot: 1.5707963267948966 rad pos: 71.5,-33.5 @@ -127450,7 +121875,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18620 + - uid: 18652 components: - rot: 1.5707963267948966 rad pos: 72.5,-33.5 @@ -127458,12 +121883,12 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18621 + - uid: 18653 components: - pos: -55.5,-62.5 parent: 2 type: Transform - - uid: 18622 + - uid: 18654 components: - rot: -1.5707963267948966 rad pos: 71.5,-38.5 @@ -127471,7 +121896,7 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 18623 + - uid: 18655 components: - rot: -1.5707963267948966 rad pos: 69.5,-38.5 @@ -127479,9 +121904,7 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18624 + - uid: 18656 components: - rot: 3.141592653589793 rad pos: 73.5,-31.5 @@ -127489,7 +121912,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18625 + - uid: 18657 components: - rot: 3.141592653589793 rad pos: 73.5,-30.5 @@ -127497,25 +121920,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18626 + - uid: 18658 components: - pos: 5.5,-28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18627 + - uid: 18659 components: - pos: 5.5,-29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18628 + - uid: 18660 components: - rot: 1.5707963267948966 rad pos: 60.5,-34.5 @@ -127523,39 +121942,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18629 + - uid: 18661 components: - rot: 3.141592653589793 rad pos: 55.5,-50.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 18630 + - uid: 18662 components: - rot: 3.141592653589793 rad pos: 55.5,-49.5 parent: 2 type: Transform - - uid: 18631 + - uid: 18663 components: - rot: 1.5707963267948966 rad pos: 54.5,-48.5 parent: 2 type: Transform - - uid: 18632 + - uid: 18664 components: - pos: -54.5,-62.5 parent: 2 type: Transform - - uid: 18633 + - uid: 18665 components: - pos: -54.5,-61.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 18634 + - uid: 18666 components: - rot: -1.5707963267948966 rad pos: 61.5,-11.5 @@ -127563,7 +121978,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18635 + - uid: 18667 components: - rot: -1.5707963267948966 rad pos: 60.5,-11.5 @@ -127571,7 +121986,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18636 + - uid: 18668 components: - rot: -1.5707963267948966 rad pos: 59.5,-11.5 @@ -127579,7 +121994,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18637 + - uid: 18669 components: - rot: -1.5707963267948966 rad pos: 58.5,-11.5 @@ -127587,7 +122002,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18638 + - uid: 18670 components: - rot: -1.5707963267948966 rad pos: 57.5,-11.5 @@ -127595,7 +122010,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18639 + - uid: 18671 components: - rot: -1.5707963267948966 rad pos: 56.5,-11.5 @@ -127603,7 +122018,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18640 + - uid: 18672 components: - rot: 1.5707963267948966 rad pos: 54.5,-6.5 @@ -127611,7 +122026,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18641 + - uid: 18673 components: - rot: 1.5707963267948966 rad pos: 55.5,-6.5 @@ -127619,7 +122034,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18642 + - uid: 18674 components: - rot: 1.5707963267948966 rad pos: 56.5,-6.5 @@ -127627,7 +122042,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18643 + - uid: 18675 components: - rot: 1.5707963267948966 rad pos: 57.5,-6.5 @@ -127635,7 +122050,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18644 + - uid: 18676 components: - rot: 1.5707963267948966 rad pos: 58.5,-6.5 @@ -127643,7 +122058,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18645 + - uid: 18677 components: - rot: 1.5707963267948966 rad pos: 59.5,-6.5 @@ -127651,7 +122066,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18646 + - uid: 18678 components: - rot: 1.5707963267948966 rad pos: 60.5,-6.5 @@ -127659,7 +122074,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18647 + - uid: 18679 components: - rot: 1.5707963267948966 rad pos: 31.5,-72.5 @@ -127667,7 +122082,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18648 + - uid: 18680 components: - rot: 1.5707963267948966 rad pos: 35.5,-72.5 @@ -127675,7 +122090,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18649 + - uid: 18681 components: - rot: 1.5707963267948966 rad pos: -19.5,25.5 @@ -127683,7 +122098,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18650 + - uid: 18682 components: - rot: 1.5707963267948966 rad pos: -18.5,25.5 @@ -127691,7 +122106,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18651 + - uid: 18683 components: - rot: 1.5707963267948966 rad pos: -17.5,25.5 @@ -127699,7 +122114,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18652 + - uid: 18684 components: - rot: 1.5707963267948966 rad pos: -16.5,25.5 @@ -127707,7 +122122,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18653 + - uid: 18685 components: - rot: 1.5707963267948966 rad pos: -17.5,24.5 @@ -127715,9 +122130,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18654 + - uid: 18686 components: - rot: 1.5707963267948966 rad pos: -16.5,24.5 @@ -127725,7 +122138,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18655 + - uid: 18687 components: - rot: -1.5707963267948966 rad pos: 71.5,-36.5 @@ -127733,7 +122146,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18656 + - uid: 18688 components: - rot: -1.5707963267948966 rad pos: 71.5,-37.5 @@ -127741,14 +122154,14 @@ entities: type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 18657 + - uid: 18689 components: - pos: -5.5,-9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18658 + - uid: 18690 components: - rot: -1.5707963267948966 rad pos: -4.5,-12.5 @@ -127756,7 +122169,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18659 + - uid: 18691 components: - rot: -1.5707963267948966 rad pos: -5.5,-12.5 @@ -127764,7 +122177,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18660 + - uid: 18692 components: - rot: -1.5707963267948966 rad pos: -6.5,-12.5 @@ -127772,9 +122185,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18661 + - uid: 18693 components: - rot: -1.5707963267948966 rad pos: -7.5,-12.5 @@ -127782,7 +122193,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18662 + - uid: 18694 components: - rot: -1.5707963267948966 rad pos: -6.5,-14.5 @@ -127790,7 +122201,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18663 + - uid: 18695 components: - rot: -1.5707963267948966 rad pos: -7.5,-14.5 @@ -127798,7 +122209,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18664 + - uid: 18696 components: - rot: 3.141592653589793 rad pos: -11.5,-23.5 @@ -127806,7 +122217,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18665 + - uid: 18697 components: - rot: 3.141592653589793 rad pos: -11.5,-21.5 @@ -127814,7 +122225,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18666 + - uid: 18698 components: - rot: 3.141592653589793 rad pos: -11.5,-20.5 @@ -127822,9 +122233,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18667 + - uid: 18699 components: - rot: 3.141592653589793 rad pos: -11.5,-19.5 @@ -127832,7 +122241,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18668 + - uid: 18700 components: - rot: 3.141592653589793 rad pos: -10.5,-19.5 @@ -127840,7 +122249,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18669 + - uid: 18701 components: - rot: 3.141592653589793 rad pos: -10.5,-20.5 @@ -127848,9 +122257,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18670 + - uid: 18702 components: - rot: -1.5707963267948966 rad pos: -9.5,-21.5 @@ -127858,16 +122265,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18671 + - uid: 18703 components: - pos: -25.5,-58.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18672 + - uid: 18704 components: - rot: 3.141592653589793 rad pos: -28.5,-72.5 @@ -127875,9 +122280,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18673 + - uid: 18705 components: - rot: 3.141592653589793 rad pos: -28.5,-73.5 @@ -127885,7 +122288,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18674 + - uid: 18706 components: - rot: 3.141592653589793 rad pos: -30.5,-72.5 @@ -127893,9 +122296,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18675 + - uid: 18707 components: - rot: 3.141592653589793 rad pos: -30.5,-73.5 @@ -127903,7 +122304,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18676 + - uid: 18708 components: - rot: 1.5707963267948966 rad pos: 34.5,-72.5 @@ -127911,7 +122312,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18677 + - uid: 18709 components: - rot: 1.5707963267948966 rad pos: 33.5,-72.5 @@ -127919,31 +122320,25 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18678 + - uid: 18710 components: - rot: -1.5707963267948966 rad pos: -45.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 18679 + - uid: 18711 components: - rot: -1.5707963267948966 rad pos: -46.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 18680 + - uid: 18712 components: - rot: -1.5707963267948966 rad pos: -47.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 18681 + - uid: 18713 components: - rot: 3.141592653589793 rad pos: 30.5,-80.5 @@ -127951,7 +122346,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18682 + - uid: 18714 components: - rot: 3.141592653589793 rad pos: 47.5,-76.5 @@ -127959,7 +122354,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18683 + - uid: 18715 components: - rot: 3.141592653589793 rad pos: 47.5,-77.5 @@ -127967,7 +122362,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18684 + - uid: 18716 components: - rot: 3.141592653589793 rad pos: 47.5,-78.5 @@ -127975,7 +122370,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18685 + - uid: 18717 components: - rot: 3.141592653589793 rad pos: 29.5,-82.5 @@ -127983,7 +122378,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18686 + - uid: 18718 components: - rot: 1.5707963267948966 rad pos: 47.5,-73.5 @@ -127991,7 +122386,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18687 + - uid: 18719 components: - rot: 3.141592653589793 rad pos: 48.5,-80.5 @@ -127999,7 +122394,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18688 + - uid: 18720 components: - rot: 1.5707963267948966 rad pos: 43.5,-72.5 @@ -128007,7 +122402,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18689 + - uid: 18721 components: - rot: 3.141592653589793 rad pos: 29.5,-75.5 @@ -128015,7 +122410,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18690 + - uid: 18722 components: - rot: 1.5707963267948966 rad pos: 29.5,-72.5 @@ -128023,7 +122418,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18691 + - uid: 18723 components: - rot: 1.5707963267948966 rad pos: 28.5,-72.5 @@ -128031,7 +122426,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18692 + - uid: 18724 components: - rot: 1.5707963267948966 rad pos: 27.5,-72.5 @@ -128039,7 +122434,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18693 + - uid: 18725 components: - rot: 1.5707963267948966 rad pos: 26.5,-72.5 @@ -128047,7 +122442,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18694 + - uid: 18726 components: - rot: 1.5707963267948966 rad pos: 39.5,-73.5 @@ -128055,7 +122450,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18695 + - uid: 18727 components: - rot: 1.5707963267948966 rad pos: 38.5,-73.5 @@ -128063,7 +122458,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18696 + - uid: 18728 components: - rot: 1.5707963267948966 rad pos: 37.5,-73.5 @@ -128071,7 +122466,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18697 + - uid: 18729 components: - rot: 1.5707963267948966 rad pos: 36.5,-73.5 @@ -128079,7 +122474,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18698 + - uid: 18730 components: - rot: 1.5707963267948966 rad pos: 35.5,-73.5 @@ -128087,7 +122482,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18699 + - uid: 18731 components: - rot: 1.5707963267948966 rad pos: 34.5,-73.5 @@ -128095,7 +122490,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18700 + - uid: 18732 components: - rot: 1.5707963267948966 rad pos: 33.5,-73.5 @@ -128103,7 +122498,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18701 + - uid: 18733 components: - rot: 1.5707963267948966 rad pos: 31.5,-73.5 @@ -128111,7 +122506,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18702 + - uid: 18734 components: - rot: 1.5707963267948966 rad pos: 30.5,-73.5 @@ -128119,7 +122514,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18703 + - uid: 18735 components: - rot: 3.141592653589793 rad pos: 29.5,-74.5 @@ -128127,7 +122522,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18704 + - uid: 18736 components: - rot: 1.5707963267948966 rad pos: 28.5,-73.5 @@ -128135,7 +122530,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18705 + - uid: 18737 components: - rot: 1.5707963267948966 rad pos: 27.5,-73.5 @@ -128143,7 +122538,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18706 + - uid: 18738 components: - rot: 1.5707963267948966 rad pos: 26.5,-73.5 @@ -128151,7 +122546,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18707 + - uid: 18739 components: - rot: -1.5707963267948966 rad pos: 25.5,-73.5 @@ -128159,7 +122554,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18708 + - uid: 18740 components: - rot: 1.5707963267948966 rad pos: 26.5,-82.5 @@ -128167,7 +122562,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18709 + - uid: 18741 components: - rot: 3.141592653589793 rad pos: 29.5,-76.5 @@ -128175,7 +122570,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18710 + - uid: 18742 components: - rot: 3.141592653589793 rad pos: 29.5,-77.5 @@ -128183,7 +122578,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18711 + - uid: 18743 components: - rot: 1.5707963267948966 rad pos: 27.5,-82.5 @@ -128191,7 +122586,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18712 + - uid: 18744 components: - rot: 1.5707963267948966 rad pos: 28.5,-82.5 @@ -128199,7 +122594,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18713 + - uid: 18745 components: - rot: 1.5707963267948966 rad pos: 24.5,-83.5 @@ -128207,7 +122602,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18714 + - uid: 18746 components: - rot: 1.5707963267948966 rad pos: 25.5,-83.5 @@ -128215,7 +122610,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18715 + - uid: 18747 components: - rot: 1.5707963267948966 rad pos: 26.5,-83.5 @@ -128223,7 +122618,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18716 + - uid: 18748 components: - rot: 1.5707963267948966 rad pos: 27.5,-83.5 @@ -128231,7 +122626,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18717 + - uid: 18749 components: - rot: 1.5707963267948966 rad pos: 28.5,-83.5 @@ -128239,7 +122634,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18718 + - uid: 18750 components: - rot: -1.5707963267948966 rad pos: 23.5,-82.5 @@ -128247,9 +122642,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18719 + - uid: 18751 components: - rot: -1.5707963267948966 rad pos: 22.5,-82.5 @@ -128257,9 +122650,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18720 + - uid: 18752 components: - rot: -1.5707963267948966 rad pos: 21.5,-82.5 @@ -128267,9 +122658,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18721 + - uid: 18753 components: - rot: -1.5707963267948966 rad pos: 20.5,-82.5 @@ -128277,9 +122666,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18722 + - uid: 18754 components: - rot: -1.5707963267948966 rad pos: 19.5,-82.5 @@ -128287,7 +122674,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18723 + - uid: 18755 components: - rot: -1.5707963267948966 rad pos: 23.5,-83.5 @@ -128295,7 +122682,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18724 + - uid: 18756 components: - rot: -1.5707963267948966 rad pos: 22.5,-83.5 @@ -128303,7 +122690,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18725 + - uid: 18757 components: - rot: -1.5707963267948966 rad pos: 21.5,-83.5 @@ -128311,7 +122698,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18726 + - uid: 18758 components: - rot: -1.5707963267948966 rad pos: 20.5,-83.5 @@ -128319,7 +122706,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18727 + - uid: 18759 components: - rot: -1.5707963267948966 rad pos: 29.5,-82.5 @@ -128327,7 +122714,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18728 + - uid: 18760 components: - rot: 1.5707963267948966 rad pos: 25.5,-82.5 @@ -128335,7 +122722,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18729 + - uid: 18761 components: - rot: 1.5707963267948966 rad pos: 24.5,-82.5 @@ -128343,7 +122730,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18730 + - uid: 18762 components: - rot: 3.141592653589793 rad pos: 30.5,-74.5 @@ -128351,7 +122738,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18731 + - uid: 18763 components: - rot: 3.141592653589793 rad pos: 30.5,-78.5 @@ -128359,7 +122746,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18732 + - uid: 18764 components: - rot: 3.141592653589793 rad pos: 30.5,-77.5 @@ -128367,7 +122754,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18733 + - uid: 18765 components: - rot: 3.141592653589793 rad pos: 30.5,-75.5 @@ -128375,7 +122762,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18734 + - uid: 18766 components: - rot: 3.141592653589793 rad pos: 30.5,-76.5 @@ -128383,7 +122770,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18735 + - uid: 18767 components: - rot: 3.141592653589793 rad pos: 30.5,-79.5 @@ -128391,7 +122778,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18736 + - uid: 18768 components: - rot: 1.5707963267948966 rad pos: 41.5,-73.5 @@ -128399,7 +122786,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18737 + - uid: 18769 components: - rot: 3.141592653589793 rad pos: 48.5,-74.5 @@ -128407,7 +122794,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18738 + - uid: 18770 components: - rot: 3.141592653589793 rad pos: 48.5,-76.5 @@ -128415,7 +122802,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18739 + - uid: 18771 components: - rot: 3.141592653589793 rad pos: 48.5,-83.5 @@ -128423,7 +122810,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18740 + - uid: 18772 components: - rot: 3.141592653589793 rad pos: 48.5,-84.5 @@ -128431,7 +122818,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18741 + - uid: 18773 components: - rot: 3.141592653589793 rad pos: 48.5,-77.5 @@ -128439,7 +122826,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18742 + - uid: 18774 components: - rot: 3.141592653589793 rad pos: 48.5,-78.5 @@ -128447,7 +122834,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18743 + - uid: 18775 components: - rot: 3.141592653589793 rad pos: 48.5,-81.5 @@ -128455,7 +122842,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18744 + - uid: 18776 components: - rot: 3.141592653589793 rad pos: 48.5,-82.5 @@ -128463,7 +122850,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18745 + - uid: 18777 components: - rot: 1.5707963267948966 rad pos: 44.5,-72.5 @@ -128471,7 +122858,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18746 + - uid: 18778 components: - rot: 1.5707963267948966 rad pos: 42.5,-72.5 @@ -128479,7 +122866,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18747 + - uid: 18779 components: - rot: 3.141592653589793 rad pos: 47.5,-84.5 @@ -128487,7 +122874,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18748 + - uid: 18780 components: - rot: 3.141592653589793 rad pos: 47.5,-74.5 @@ -128495,7 +122882,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18749 + - uid: 18781 components: - rot: 3.141592653589793 rad pos: 47.5,-75.5 @@ -128503,7 +122890,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18750 + - uid: 18782 components: - rot: 1.5707963267948966 rad pos: 45.5,-73.5 @@ -128511,7 +122898,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18751 + - uid: 18783 components: - rot: 1.5707963267948966 rad pos: 46.5,-73.5 @@ -128519,7 +122906,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18752 + - uid: 18784 components: - rot: 3.141592653589793 rad pos: 47.5,-85.5 @@ -128527,7 +122914,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18753 + - uid: 18785 components: - rot: 3.141592653589793 rad pos: 47.5,-81.5 @@ -128535,7 +122922,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18754 + - uid: 18786 components: - rot: 3.141592653589793 rad pos: 47.5,-82.5 @@ -128543,7 +122930,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18755 + - uid: 18787 components: - rot: 3.141592653589793 rad pos: 47.5,-83.5 @@ -128551,7 +122938,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18756 + - uid: 18788 components: - rot: 1.5707963267948966 rad pos: -21.5,66.5 @@ -128559,7 +122946,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18757 + - uid: 18789 components: - rot: 1.5707963267948966 rad pos: -20.5,66.5 @@ -128567,7 +122954,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18758 + - uid: 18790 components: - rot: 1.5707963267948966 rad pos: -19.5,66.5 @@ -128575,7 +122962,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18759 + - uid: 18791 components: - rot: 1.5707963267948966 rad pos: -15.5,66.5 @@ -128583,7 +122970,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18760 + - uid: 18792 components: - rot: 1.5707963267948966 rad pos: -14.5,66.5 @@ -128591,7 +122978,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18761 + - uid: 18793 components: - rot: -1.5707963267948966 rad pos: 32.5,-72.5 @@ -128599,7 +122986,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18762 + - uid: 18794 components: - rot: -1.5707963267948966 rad pos: 32.5,-73.5 @@ -128607,7 +122994,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18763 + - uid: 18795 components: - rot: -1.5707963267948966 rad pos: 14.5,-22.5 @@ -128615,7 +123002,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18764 + - uid: 18796 components: - rot: -1.5707963267948966 rad pos: 13.5,-22.5 @@ -128623,9 +123010,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18765 + - uid: 18797 components: - rot: -1.5707963267948966 rad pos: 12.5,-22.5 @@ -128633,7 +123018,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18766 + - uid: 18798 components: - rot: -1.5707963267948966 rad pos: 11.5,-22.5 @@ -128641,7 +123026,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18767 + - uid: 18799 components: - rot: -1.5707963267948966 rad pos: 10.5,-22.5 @@ -128649,7 +123034,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18768 + - uid: 18800 components: - rot: -1.5707963267948966 rad pos: 9.5,-22.5 @@ -128657,7 +123042,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18769 + - uid: 18801 components: - rot: -1.5707963267948966 rad pos: 8.5,-22.5 @@ -128665,37 +123050,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18770 + - uid: 18802 components: - pos: 12.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18771 + - uid: 18803 components: - pos: 12.5,-26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18772 + - uid: 18804 components: - pos: 12.5,-23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18773 + - uid: 18805 components: - pos: 12.5,-24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18774 + - uid: 18806 components: - rot: 3.141592653589793 rad pos: 40.5,9.5 @@ -128703,7 +123086,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18775 + - uid: 18807 components: - rot: 3.141592653589793 rad pos: 40.5,8.5 @@ -128711,7 +123094,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18776 + - uid: 18808 components: - rot: 1.5707963267948966 rad pos: 43.5,6.5 @@ -128719,7 +123102,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18777 + - uid: 18809 components: - rot: 1.5707963267948966 rad pos: 44.5,6.5 @@ -128727,7 +123110,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18778 + - uid: 18810 components: - rot: 1.5707963267948966 rad pos: 41.5,5.5 @@ -128735,7 +123118,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18779 + - uid: 18811 components: - rot: 1.5707963267948966 rad pos: 42.5,5.5 @@ -128743,7 +123126,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18780 + - uid: 18812 components: - rot: 1.5707963267948966 rad pos: 43.5,5.5 @@ -128751,9 +123134,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18781 + - uid: 18813 components: - rot: 1.5707963267948966 rad pos: 44.5,5.5 @@ -128761,7 +123142,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18782 + - uid: 18814 components: - rot: 1.5707963267948966 rad pos: -46.5,31.5 @@ -128769,147 +123150,147 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18783 + - uid: 18815 components: - pos: -47.5,33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18784 + - uid: 18816 components: - pos: -47.5,32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18785 + - uid: 18817 components: - pos: -45.5,34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18786 + - uid: 18818 components: - pos: -45.5,35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18787 + - uid: 18819 components: - pos: -45.5,36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18788 + - uid: 18820 components: - pos: -45.5,37.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18789 + - uid: 18821 components: - pos: -45.5,38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18790 + - uid: 18822 components: - pos: -45.5,39.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18791 + - uid: 18823 components: - pos: -45.5,40.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18792 + - uid: 18824 components: - pos: -45.5,41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18793 + - uid: 18825 components: - pos: -45.5,42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18794 + - uid: 18826 components: - pos: -46.5,35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18795 + - uid: 18827 components: - pos: -46.5,36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18796 + - uid: 18828 components: - pos: -46.5,37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18797 + - uid: 18829 components: - pos: -46.5,38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18798 + - uid: 18830 components: - pos: -46.5,39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18799 + - uid: 18831 components: - pos: -46.5,40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18800 + - uid: 18832 components: - pos: -46.5,41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18801 + - uid: 18833 components: - pos: -46.5,42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18802 + - uid: 18834 components: - pos: 68.5,-32.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18803 + - uid: 18835 components: - rot: 1.5707963267948966 rad pos: 64.5,-31.5 @@ -128917,7 +123298,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18804 + - uid: 18836 components: - rot: 1.5707963267948966 rad pos: 65.5,-31.5 @@ -128925,9 +123306,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18805 + - uid: 18837 components: - rot: 1.5707963267948966 rad pos: 66.5,-31.5 @@ -128935,9 +123314,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18806 + - uid: 18838 components: - rot: 3.141592653589793 rad pos: -3.5,10.5 @@ -128945,14 +123322,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18807 + - uid: 18839 components: - pos: -3.5,14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18808 + - uid: 18840 components: - rot: -1.5707963267948966 rad pos: -70.5,-40.5 @@ -128960,34 +123337,26 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18809 + - uid: 18841 components: - rot: -1.5707963267948966 rad pos: -64.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 18810 + - uid: 18842 components: - pos: -70.5,-45.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18811 + - uid: 18843 components: - rot: 1.5707963267948966 rad pos: -74.5,-41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 18812 + - uid: 18844 components: - rot: 1.5707963267948966 rad pos: -74.5,-42.5 @@ -128995,9 +123364,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18813 + - uid: 18845 components: - rot: 1.5707963267948966 rad pos: -75.5,-42.5 @@ -129005,7 +123372,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18814 + - uid: 18846 components: - rot: 1.5707963267948966 rad pos: -75.5,-40.5 @@ -129013,7 +123380,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18815 + - uid: 18847 components: - rot: 1.5707963267948966 rad pos: -73.5,-40.5 @@ -129021,9 +123388,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18816 + - uid: 18848 components: - rot: 1.5707963267948966 rad pos: -74.5,-40.5 @@ -129031,9 +123396,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18817 + - uid: 18849 components: - rot: 1.5707963267948966 rad pos: -68.5,-41.5 @@ -129041,9 +123404,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18818 + - uid: 18850 components: - rot: 1.5707963267948966 rad pos: -69.5,-41.5 @@ -129051,28 +123412,22 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18819 + - uid: 18851 components: - pos: -44.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 18820 + - uid: 18852 components: - pos: -44.5,-39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 18821 + - uid: 18853 components: - pos: -44.5,-38.5 parent: 2 type: Transform - - uid: 18822 + - uid: 18854 components: - rot: -1.5707963267948966 rad pos: -50.5,-23.5 @@ -129080,7 +123435,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18823 + - uid: 18855 components: - rot: -1.5707963267948966 rad pos: -48.5,-23.5 @@ -129088,7 +123443,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18824 + - uid: 18856 components: - rot: -1.5707963267948966 rad pos: -47.5,-23.5 @@ -129096,7 +123451,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18825 + - uid: 18857 components: - rot: -1.5707963267948966 rad pos: -46.5,-23.5 @@ -129104,60 +123459,56 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18826 + - uid: 18858 components: - pos: 2.5,-3.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18827 + - uid: 18859 components: - pos: -0.5,-3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18828 + - uid: 18860 components: - pos: -1.5,-2.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18829 + - uid: 18861 components: - pos: -0.5,-2.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18830 + - uid: 18862 components: - pos: -0.5,-1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18831 + - uid: 18863 components: - pos: -0.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18832 + - uid: 18864 components: - pos: -0.5,-0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18833 + - uid: 18865 components: - rot: 1.5707963267948966 rad pos: -3.5,-21.5 @@ -129165,7 +123516,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18834 + - uid: 18866 components: - rot: 1.5707963267948966 rad pos: -4.5,-21.5 @@ -129173,7 +123524,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18835 + - uid: 18867 components: - rot: 3.141592653589793 rad pos: -1.5,-23.5 @@ -129181,7 +123532,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18836 + - uid: 18868 components: - rot: 1.5707963267948966 rad pos: -2.5,-21.5 @@ -129189,9 +123540,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18837 + - uid: 18869 components: - rot: 3.141592653589793 rad pos: -1.5,-24.5 @@ -129199,30 +123548,46 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18838 + - uid: 18870 components: - pos: 28.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18839 + - uid: 18871 components: - pos: 28.5,-37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18840 + - uid: 18872 components: - pos: 22.5,-36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor + - uid: 18873 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,17.5 + parent: 2 + type: Transform + - uid: 18874 + components: + - pos: 17.5,16.5 + parent: 2 + type: Transform - proto: GasPipeTJunction entities: - - uid: 18841 + - uid: 18875 + components: + - pos: 18.5,17.5 + parent: 2 + type: Transform + - uid: 18876 components: - rot: 3.141592653589793 rad pos: 26.5,-30.5 @@ -129230,7 +123595,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18842 + - uid: 18877 components: - rot: 3.141592653589793 rad pos: 24.5,-29.5 @@ -129238,7 +123603,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18843 + - uid: 18878 components: - rot: 3.141592653589793 rad pos: -1.5,-25.5 @@ -129246,7 +123611,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18844 + - uid: 18879 components: - rot: 1.5707963267948966 rad pos: -5.5,-21.5 @@ -129254,21 +123619,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18845 + - uid: 18880 components: - pos: -0.5,1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18846 + - uid: 18881 components: - pos: -1.5,-1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18847 + - uid: 18882 components: - rot: 1.5707963267948966 rad pos: -50.5,-19.5 @@ -129276,7 +123641,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18848 + - uid: 18883 components: - rot: 1.5707963267948966 rad pos: -51.5,-23.5 @@ -129284,16 +123649,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18849 + - uid: 18884 components: - pos: -71.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18850 + - uid: 18885 components: - rot: 1.5707963267948966 rad pos: -70.5,-39.5 @@ -129301,9 +123664,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18851 + - uid: 18886 components: - rot: 1.5707963267948966 rad pos: -72.5,-37.5 @@ -129311,7 +123672,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18852 + - uid: 18887 components: - rot: -1.5707963267948966 rad pos: -73.5,-31.5 @@ -129319,7 +123680,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18853 + - uid: 18888 components: - rot: 3.141592653589793 rad pos: -69.5,-39.5 @@ -129327,9 +123688,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18854 + - uid: 18889 components: - rot: 3.141592653589793 rad pos: -66.5,-39.5 @@ -129337,9 +123696,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18855 + - uid: 18890 components: - rot: 3.141592653589793 rad pos: -68.5,-39.5 @@ -129347,9 +123704,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18856 + - uid: 18891 components: - rot: 3.141592653589793 rad pos: -67.5,-39.5 @@ -129357,9 +123712,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18857 + - uid: 18892 components: - rot: 1.5707963267948966 rad pos: -71.5,-31.5 @@ -129367,7 +123720,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18858 + - uid: 18893 components: - rot: 3.141592653589793 rad pos: -71.5,-46.5 @@ -129375,9 +123728,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18859 + - uid: 18894 components: - rot: 1.5707963267948966 rad pos: -68.5,-43.5 @@ -129385,9 +123736,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18860 + - uid: 18895 components: - rot: 3.141592653589793 rad pos: -67.5,-46.5 @@ -129395,9 +123744,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18861 + - uid: 18896 components: - rot: 1.5707963267948966 rad pos: -67.5,-44.5 @@ -129405,9 +123752,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18862 + - uid: 18897 components: - rot: 1.5707963267948966 rad pos: -3.5,11.5 @@ -129415,7 +123760,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18863 + - uid: 18898 components: - rot: 1.5707963267948966 rad pos: 63.5,-31.5 @@ -129423,7 +123768,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18864 + - uid: 18899 components: - rot: 1.5707963267948966 rad pos: 40.5,5.5 @@ -129431,28 +123776,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18865 + - uid: 18900 components: - pos: 28.5,-29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18866 + - uid: 18901 components: - pos: -8.5,-53.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18867 + - uid: 18902 components: - pos: -12.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18868 + - uid: 18903 components: - rot: -1.5707963267948966 rad pos: 26.5,-7.5 @@ -129460,7 +123805,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18869 + - uid: 18904 components: - rot: 1.5707963267948966 rad pos: 8.5,10.5 @@ -129468,7 +123813,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18870 + - uid: 18905 components: - rot: 1.5707963267948966 rad pos: 8.5,0.5 @@ -129476,7 +123821,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18871 + - uid: 18906 components: - rot: -1.5707963267948966 rad pos: -11.5,-38.5 @@ -129484,7 +123829,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18872 + - uid: 18907 components: - rot: -1.5707963267948966 rad pos: 7.5,14.5 @@ -129492,7 +123837,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18873 + - uid: 18908 components: - rot: 3.141592653589793 rad pos: 22.5,21.5 @@ -129500,7 +123845,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18874 + - uid: 18909 components: - rot: 3.141592653589793 rad pos: 2.5,-60.5 @@ -129508,21 +123853,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18875 + - uid: 18910 components: - pos: -5.5,-60.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18876 + - uid: 18911 components: - pos: -8.5,-61.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18877 + - uid: 18912 components: - rot: 1.5707963267948966 rad pos: -8.5,-64.5 @@ -129530,7 +123875,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18878 + - uid: 18913 components: - rot: 3.141592653589793 rad pos: -24.5,-80.5 @@ -129538,7 +123883,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18879 + - uid: 18914 components: - rot: -1.5707963267948966 rad pos: 20.5,13.5 @@ -129546,7 +123891,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18880 + - uid: 18915 components: - rot: 3.141592653589793 rad pos: 31.5,-43.5 @@ -129554,7 +123899,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18881 + - uid: 18916 components: - rot: 3.141592653589793 rad pos: 17.5,-43.5 @@ -129562,7 +123907,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18882 + - uid: 18917 components: - rot: 1.5707963267948966 rad pos: 35.5,8.5 @@ -129570,9 +123915,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18883 + - uid: 18918 components: - rot: -1.5707963267948966 rad pos: 26.5,10.5 @@ -129580,14 +123923,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18884 + - uid: 18919 components: - pos: 7.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18885 + - uid: 18920 components: - rot: -1.5707963267948966 rad pos: 0.5,13.5 @@ -129595,14 +123938,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18886 + - uid: 18921 components: - pos: -24.5,-57.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18887 + - uid: 18922 components: - rot: -1.5707963267948966 rad pos: 2.5,-1.5 @@ -129610,7 +123953,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18888 + - uid: 18923 components: - rot: 1.5707963267948966 rad pos: 2.5,0.5 @@ -129618,7 +123961,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18889 + - uid: 18924 components: - rot: 1.5707963267948966 rad pos: -20.5,-33.5 @@ -129626,7 +123969,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18890 + - uid: 18925 components: - rot: 1.5707963267948966 rad pos: 15.5,-29.5 @@ -129634,7 +123977,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18891 + - uid: 18926 components: - rot: 3.141592653589793 rad pos: -11.5,-41.5 @@ -129642,7 +123985,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18892 + - uid: 18927 components: - rot: -1.5707963267948966 rad pos: -14.5,-43.5 @@ -129650,7 +123993,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18893 + - uid: 18928 components: - rot: 3.141592653589793 rad pos: -17.5,-60.5 @@ -129658,7 +124001,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18894 + - uid: 18929 components: - rot: 3.141592653589793 rad pos: -9.5,-42.5 @@ -129666,21 +124009,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18895 + - uid: 18930 components: - pos: -0.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18896 + - uid: 18931 components: - pos: -8.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18897 + - uid: 18932 components: - rot: -1.5707963267948966 rad pos: -7.5,-60.5 @@ -129688,7 +124031,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18898 + - uid: 18933 components: - rot: -1.5707963267948966 rad pos: -3.5,-59.5 @@ -129696,7 +124039,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18899 + - uid: 18934 components: - rot: 1.5707963267948966 rad pos: 35.5,5.5 @@ -129704,9 +124047,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18900 + - uid: 18935 components: - rot: 3.141592653589793 rad pos: 28.5,9.5 @@ -129714,9 +124055,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18901 + - uid: 18936 components: - rot: -1.5707963267948966 rad pos: 17.5,-0.5 @@ -129724,14 +124063,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18902 + - uid: 18937 components: - pos: 41.5,14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18903 + - uid: 18938 components: - rot: 3.141592653589793 rad pos: 33.5,1.5 @@ -129739,7 +124078,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18904 + - uid: 18939 components: - rot: 1.5707963267948966 rad pos: 23.5,17.5 @@ -129747,7 +124086,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18905 + - uid: 18940 components: - rot: 1.5707963267948966 rad pos: 7.5,16.5 @@ -129755,14 +124094,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18906 + - uid: 18941 components: - pos: 44.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18907 + - uid: 18942 components: - rot: 3.141592653589793 rad pos: -3.5,-42.5 @@ -129770,7 +124109,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18908 + - uid: 18943 components: - rot: 3.141592653589793 rad pos: 12.5,-27.5 @@ -129778,14 +124117,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18909 + - uid: 18944 components: - pos: -7.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18910 + - uid: 18945 components: - rot: 3.141592653589793 rad pos: 33.5,-16.5 @@ -129793,7 +124132,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18911 + - uid: 18946 components: - rot: 1.5707963267948966 rad pos: -18.5,-25.5 @@ -129801,7 +124140,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18912 + - uid: 18947 components: - rot: 3.141592653589793 rad pos: -8.5,1.5 @@ -129809,7 +124148,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18913 + - uid: 18948 components: - rot: 3.141592653589793 rad pos: 17.5,13.5 @@ -129817,14 +124156,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18914 + - uid: 18949 components: - pos: 28.5,12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18915 + - uid: 18950 components: - rot: -1.5707963267948966 rad pos: 38.5,8.5 @@ -129832,7 +124171,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18916 + - uid: 18951 components: - rot: -1.5707963267948966 rad pos: 38.5,5.5 @@ -129840,7 +124179,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18917 + - uid: 18952 components: - rot: -1.5707963267948966 rad pos: 38.5,11.5 @@ -129848,14 +124187,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18918 + - uid: 18953 components: - pos: 34.5,12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18919 + - uid: 18954 components: - rot: 3.141592653589793 rad pos: -8.5,-27.5 @@ -129863,7 +124202,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18920 + - uid: 18955 components: - rot: -1.5707963267948966 rad pos: -8.5,2.5 @@ -129871,7 +124210,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18921 + - uid: 18956 components: - rot: 3.141592653589793 rad pos: 2.5,-27.5 @@ -129879,7 +124218,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18922 + - uid: 18957 components: - rot: 3.141592653589793 rad pos: 12.5,16.5 @@ -129887,7 +124226,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18923 + - uid: 18958 components: - rot: 3.141592653589793 rad pos: -5.5,-41.5 @@ -129895,14 +124234,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18924 + - uid: 18959 components: - pos: 3.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18925 + - uid: 18960 components: - rot: 3.141592653589793 rad pos: 8.5,-0.5 @@ -129910,7 +124249,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18926 + - uid: 18961 components: - rot: 3.141592653589793 rad pos: 16.5,16.5 @@ -129918,7 +124257,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18927 + - uid: 18962 components: - rot: 3.141592653589793 rad pos: 25.5,7.5 @@ -129926,7 +124265,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18928 + - uid: 18963 components: - rot: 3.141592653589793 rad pos: 28.5,17.5 @@ -129934,7 +124273,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18929 + - uid: 18964 components: - rot: 1.5707963267948966 rad pos: 20.5,10.5 @@ -129942,14 +124281,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18930 + - uid: 18965 components: - pos: 4.5,17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18931 + - uid: 18966 components: - rot: -1.5707963267948966 rad pos: 9.5,1.5 @@ -129957,7 +124296,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18932 + - uid: 18967 components: - rot: 1.5707963267948966 rad pos: 19.5,18.5 @@ -129965,9 +124304,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18933 + - uid: 18968 components: - rot: -1.5707963267948966 rad pos: 30.5,18.5 @@ -129975,14 +124312,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18934 + - uid: 18969 components: - pos: 21.5,-5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18935 + - uid: 18970 components: - rot: -1.5707963267948966 rad pos: 26.5,-12.5 @@ -129990,7 +124327,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18936 + - uid: 18971 components: - rot: 1.5707963267948966 rad pos: 26.5,-24.5 @@ -129998,7 +124335,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18937 + - uid: 18972 components: - rot: -1.5707963267948966 rad pos: 21.5,-17.5 @@ -130006,14 +124343,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18938 + - uid: 18973 components: - pos: 20.5,-17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18939 + - uid: 18974 components: - rot: 3.141592653589793 rad pos: 23.5,-29.5 @@ -130021,7 +124358,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18940 + - uid: 18975 components: - rot: 1.5707963267948966 rad pos: -8.5,-22.5 @@ -130029,21 +124366,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18941 + - uid: 18976 components: - pos: -10.5,1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18942 + - uid: 18977 components: - pos: -2.5,-61.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18943 + - uid: 18978 components: - rot: 3.141592653589793 rad pos: -9.5,-61.5 @@ -130051,21 +124388,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18944 + - uid: 18979 components: - pos: -15.5,-61.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18945 + - uid: 18980 components: - pos: -0.5,-60.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18946 + - uid: 18981 components: - rot: 3.141592653589793 rad pos: -1.5,-60.5 @@ -130073,14 +124410,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18947 + - uid: 18982 components: - pos: -12.5,-60.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18948 + - uid: 18983 components: - rot: 3.141592653589793 rad pos: 3.5,-61.5 @@ -130088,14 +124425,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18949 + - uid: 18984 components: - pos: 5.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18950 + - uid: 18985 components: - rot: 1.5707963267948966 rad pos: -8.5,-46.5 @@ -130103,14 +124440,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18951 + - uid: 18986 components: - pos: 5.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18952 + - uid: 18987 components: - rot: 3.141592653589793 rad pos: -11.5,-27.5 @@ -130118,21 +124455,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18953 + - uid: 18988 components: - pos: 24.5,-43.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18954 + - uid: 18989 components: - pos: 20.5,-43.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18955 + - uid: 18990 components: - rot: 3.141592653589793 rad pos: 31.5,9.5 @@ -130140,9 +124477,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18956 + - uid: 18991 components: - rot: -1.5707963267948966 rad pos: -23.5,-78.5 @@ -130150,7 +124485,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18957 + - uid: 18992 components: - rot: -1.5707963267948966 rad pos: -23.5,-80.5 @@ -130158,7 +124493,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18958 + - uid: 18993 components: - rot: 3.141592653589793 rad pos: 34.5,9.5 @@ -130166,9 +124501,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18959 + - uid: 18994 components: - rot: -1.5707963267948966 rad pos: 1.5,6.5 @@ -130176,7 +124509,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18960 + - uid: 18995 components: - rot: 1.5707963267948966 rad pos: 2.5,1.5 @@ -130184,14 +124517,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18961 + - uid: 18996 components: - pos: 10.5,-0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18962 + - uid: 18997 components: - rot: 1.5707963267948966 rad pos: -9.5,-39.5 @@ -130199,21 +124532,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18963 - components: - - pos: 15.5,17.5 - parent: 2 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 18964 + - uid: 18998 components: - pos: 0.5,17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18965 + - uid: 18999 components: - rot: 3.141592653589793 rad pos: -7.5,8.5 @@ -130221,7 +124547,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18966 + - uid: 19000 components: - rot: -1.5707963267948966 rad pos: -20.5,-84.5 @@ -130229,7 +124555,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18967 + - uid: 19001 components: - rot: 3.141592653589793 rad pos: 15.5,-43.5 @@ -130237,7 +124563,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18968 + - uid: 19002 components: - rot: 1.5707963267948966 rad pos: 14.5,-32.5 @@ -130245,7 +124571,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18969 + - uid: 19003 components: - rot: 3.141592653589793 rad pos: 21.5,-30.5 @@ -130253,7 +124579,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18970 + - uid: 19004 components: - rot: 1.5707963267948966 rad pos: 15.5,-23.5 @@ -130261,7 +124587,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18971 + - uid: 19005 components: - rot: 1.5707963267948966 rad pos: 14.5,-30.5 @@ -130269,14 +124595,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18972 + - uid: 19006 components: - pos: 22.5,-30.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18973 + - uid: 19007 components: - rot: 3.141592653589793 rad pos: -8.5,-25.5 @@ -130284,7 +124610,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18974 + - uid: 19008 components: - rot: -1.5707963267948966 rad pos: 15.5,-25.5 @@ -130292,7 +124618,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18975 + - uid: 19009 components: - rot: -1.5707963267948966 rad pos: 15.5,-22.5 @@ -130300,7 +124626,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18976 + - uid: 19010 components: - rot: -1.5707963267948966 rad pos: -0.5,-46.5 @@ -130308,14 +124634,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18977 + - uid: 19011 components: - pos: 0.5,11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18978 + - uid: 19012 components: - rot: -1.5707963267948966 rad pos: -3.5,-11.5 @@ -130323,7 +124649,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18979 + - uid: 19013 components: - rot: 1.5707963267948966 rad pos: -5.5,-10.5 @@ -130331,7 +124657,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18980 + - uid: 19014 components: - rot: -1.5707963267948966 rad pos: 36.5,-31.5 @@ -130339,14 +124665,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18981 + - uid: 19015 components: - pos: -5.5,7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18982 + - uid: 19016 components: - rot: 1.5707963267948966 rad pos: -4.5,13.5 @@ -130354,9 +124680,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 18983 + - uid: 19017 components: - rot: -1.5707963267948966 rad pos: -3.5,-12.5 @@ -130364,14 +124688,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18984 + - uid: 19018 components: - pos: -20.5,-88.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18985 + - uid: 19019 components: - rot: -1.5707963267948966 rad pos: 10.5,3.5 @@ -130379,7 +124703,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18986 + - uid: 19020 components: - rot: 1.5707963267948966 rad pos: -11.5,-22.5 @@ -130387,7 +124711,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18987 + - uid: 19021 components: - rot: 3.141592653589793 rad pos: 44.5,-24.5 @@ -130395,7 +124719,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18988 + - uid: 19022 components: - rot: 1.5707963267948966 rad pos: 34.5,3.5 @@ -130403,7 +124727,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18989 + - uid: 19023 components: - rot: 3.141592653589793 rad pos: -19.5,-61.5 @@ -130411,14 +124735,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18990 + - uid: 19024 components: - pos: -5.5,1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18991 + - uid: 19025 components: - rot: 3.141592653589793 rad pos: -8.5,-1.5 @@ -130426,7 +124750,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18992 + - uid: 19026 components: - rot: -1.5707963267948966 rad pos: -11.5,-39.5 @@ -130434,7 +124758,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18993 + - uid: 19027 components: - rot: 3.141592653589793 rad pos: 5.5,17.5 @@ -130442,7 +124766,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18994 + - uid: 19028 components: - rot: 3.141592653589793 rad pos: -2.5,-53.5 @@ -130450,7 +124774,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18995 + - uid: 19029 components: - rot: -1.5707963267948966 rad pos: 21.5,-14.5 @@ -130458,7 +124782,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18996 + - uid: 19030 components: - rot: 3.141592653589793 rad pos: 31.5,-18.5 @@ -130466,7 +124790,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18997 + - uid: 19031 components: - rot: -1.5707963267948966 rad pos: -18.5,-64.5 @@ -130474,7 +124798,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18998 + - uid: 19032 components: - rot: 1.5707963267948966 rad pos: 21.5,-16.5 @@ -130482,7 +124806,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18999 + - uid: 19033 components: - rot: -1.5707963267948966 rad pos: 20.5,-41.5 @@ -130490,7 +124814,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19000 + - uid: 19034 components: - rot: -1.5707963267948966 rad pos: 10.5,8.5 @@ -130498,7 +124822,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19001 + - uid: 19035 components: - rot: -1.5707963267948966 rad pos: 11.5,11.5 @@ -130506,35 +124830,35 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19002 + - uid: 19036 components: - pos: -22.5,-89.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19003 + - uid: 19037 components: - pos: 26.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19004 + - uid: 19038 components: - pos: 10.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19005 + - uid: 19039 components: - pos: 9.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19006 + - uid: 19040 components: - rot: 3.141592653589793 rad pos: 14.5,-41.5 @@ -130542,14 +124866,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19007 + - uid: 19041 components: - pos: 5.5,16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19008 + - uid: 19042 components: - rot: 1.5707963267948966 rad pos: -24.5,-88.5 @@ -130557,7 +124881,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19009 + - uid: 19043 components: - rot: -1.5707963267948966 rad pos: 24.5,-24.5 @@ -130565,35 +124889,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19010 + - uid: 19044 components: - pos: 7.5,19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19011 + - uid: 19045 components: - pos: -3.5,-1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19012 + - uid: 19046 components: - pos: -19.5,-57.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19013 + - uid: 19047 components: - pos: 41.5,-26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19014 + - uid: 19048 components: - rot: 3.141592653589793 rad pos: 41.5,-25.5 @@ -130601,7 +124925,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19015 + - uid: 19049 components: - rot: 1.5707963267948966 rad pos: 36.5,-25.5 @@ -130609,7 +124933,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19016 + - uid: 19050 components: - rot: 1.5707963267948966 rad pos: 34.5,-26.5 @@ -130617,14 +124941,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19017 + - uid: 19051 components: - pos: -27.5,-77.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19018 + - uid: 19052 components: - rot: 3.141592653589793 rad pos: -25.5,-77.5 @@ -130632,7 +124956,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19019 + - uid: 19053 components: - rot: -1.5707963267948966 rad pos: -23.5,-85.5 @@ -130640,7 +124964,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19020 + - uid: 19054 components: - rot: 1.5707963267948966 rad pos: -18.5,-72.5 @@ -130648,7 +124972,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19021 + - uid: 19055 components: - rot: -1.5707963267948966 rad pos: -18.5,-73.5 @@ -130656,7 +124980,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19022 + - uid: 19056 components: - rot: -1.5707963267948966 rad pos: -20.5,-72.5 @@ -130664,7 +124988,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19023 + - uid: 19057 components: - rot: -1.5707963267948966 rad pos: -20.5,-69.5 @@ -130672,7 +124996,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19024 + - uid: 19058 components: - rot: 1.5707963267948966 rad pos: -20.5,-75.5 @@ -130680,7 +125004,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19025 + - uid: 19059 components: - rot: 1.5707963267948966 rad pos: -20.5,-70.5 @@ -130688,7 +125012,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19026 + - uid: 19060 components: - rot: -1.5707963267948966 rad pos: -18.5,-71.5 @@ -130696,7 +125020,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19027 + - uid: 19061 components: - rot: -1.5707963267948966 rad pos: -21.5,-89.5 @@ -130704,7 +125028,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19028 + - uid: 19062 components: - rot: -1.5707963267948966 rad pos: -18.5,-67.5 @@ -130712,7 +125036,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19029 + - uid: 19063 components: - rot: 1.5707963267948966 rad pos: -20.5,-66.5 @@ -130720,7 +125044,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19030 + - uid: 19064 components: - rot: 1.5707963267948966 rad pos: -20.5,-63.5 @@ -130728,14 +125052,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19031 + - uid: 19065 components: - pos: -18.5,-60.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19032 + - uid: 19066 components: - rot: 1.5707963267948966 rad pos: 34.5,-23.5 @@ -130743,7 +125067,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19033 + - uid: 19067 components: - rot: 3.141592653589793 rad pos: 36.5,-43.5 @@ -130751,7 +125075,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19034 + - uid: 19068 components: - rot: 3.141592653589793 rad pos: 34.5,-41.5 @@ -130759,14 +125083,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19035 + - uid: 19069 components: - pos: 33.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19036 + - uid: 19070 components: - rot: 3.141592653589793 rad pos: 10.5,17.5 @@ -130774,7 +125098,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19037 + - uid: 19071 components: - rot: 3.141592653589793 rad pos: 11.5,16.5 @@ -130782,7 +125106,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19038 + - uid: 19072 components: - rot: -1.5707963267948966 rad pos: -9.5,-37.5 @@ -130790,7 +125114,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19039 + - uid: 19073 components: - rot: 1.5707963267948966 rad pos: -3.5,-14.5 @@ -130798,14 +125122,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19040 + - uid: 19074 components: - pos: 21.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19041 + - uid: 19075 components: - rot: 3.141592653589793 rad pos: 56.5,21.5 @@ -130813,14 +125137,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19042 + - uid: 19076 components: - pos: 40.5,10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19043 + - uid: 19077 components: - rot: 1.5707963267948966 rad pos: 28.5,22.5 @@ -130828,7 +125152,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19044 + - uid: 19078 components: - rot: -1.5707963267948966 rad pos: 30.5,19.5 @@ -130836,21 +125160,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19045 + - uid: 19079 components: - pos: 42.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19046 + - uid: 19080 components: - pos: 44.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19047 + - uid: 19081 components: - rot: 3.141592653589793 rad pos: 45.5,14.5 @@ -130858,14 +125182,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19048 + - uid: 19082 components: - pos: 47.5,14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19049 + - uid: 19083 components: - rot: 3.141592653589793 rad pos: 47.5,15.5 @@ -130873,7 +125197,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19050 + - uid: 19084 components: - rot: -1.5707963267948966 rad pos: 49.5,15.5 @@ -130881,7 +125205,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19051 + - uid: 19085 components: - rot: -1.5707963267948966 rad pos: 50.5,14.5 @@ -130889,7 +125213,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19052 + - uid: 19086 components: - rot: -1.5707963267948966 rad pos: 50.5,19.5 @@ -130897,7 +125221,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19053 + - uid: 19087 components: - rot: 3.141592653589793 rad pos: 46.5,20.5 @@ -130905,7 +125229,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19054 + - uid: 19088 components: - rot: 3.141592653589793 rad pos: 53.5,21.5 @@ -130913,7 +125237,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19055 + - uid: 19089 components: - rot: -1.5707963267948966 rad pos: 58.5,20.5 @@ -130921,7 +125245,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19056 + - uid: 19090 components: - rot: 3.141592653589793 rad pos: 55.5,20.5 @@ -130929,7 +125253,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19057 + - uid: 19091 components: - rot: 3.141592653589793 rad pos: 52.5,20.5 @@ -130937,7 +125261,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19058 + - uid: 19092 components: - rot: -1.5707963267948966 rad pos: 59.5,21.5 @@ -130945,7 +125269,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19059 + - uid: 19093 components: - rot: 1.5707963267948966 rad pos: 59.5,18.5 @@ -130953,7 +125277,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19060 + - uid: 19094 components: - rot: 1.5707963267948966 rad pos: 59.5,15.5 @@ -130961,7 +125285,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19061 + - uid: 19095 components: - rot: 1.5707963267948966 rad pos: 58.5,16.5 @@ -130969,7 +125293,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19062 + - uid: 19096 components: - rot: 1.5707963267948966 rad pos: 58.5,19.5 @@ -130977,14 +125301,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19063 + - uid: 19097 components: - pos: 40.5,20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19064 + - uid: 19098 components: - rot: 3.141592653589793 rad pos: 45.5,20.5 @@ -130992,7 +125316,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19065 + - uid: 19099 components: - rot: 3.141592653589793 rad pos: 39.5,19.5 @@ -131000,7 +125324,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19066 + - uid: 19100 components: - rot: 3.141592653589793 rad pos: 40.5,0.5 @@ -131008,14 +125332,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19067 + - uid: 19101 components: - pos: 44.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19068 + - uid: 19102 components: - rot: 3.141592653589793 rad pos: 45.5,0.5 @@ -131023,21 +125347,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19069 + - uid: 19103 components: - pos: 53.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19070 + - uid: 19104 components: - pos: 52.5,1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19071 + - uid: 19105 components: - rot: 1.5707963267948966 rad pos: 53.5,-5.5 @@ -131045,7 +125369,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19072 + - uid: 19106 components: - rot: -1.5707963267948966 rad pos: 42.5,-1.5 @@ -131053,7 +125377,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19073 + - uid: 19107 components: - rot: 3.141592653589793 rad pos: 42.5,-2.5 @@ -131061,7 +125385,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19074 + - uid: 19108 components: - rot: -1.5707963267948966 rad pos: 41.5,10.5 @@ -131069,7 +125393,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19075 + - uid: 19109 components: - rot: -1.5707963267948966 rad pos: 42.5,9.5 @@ -131077,7 +125401,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19076 + - uid: 19110 components: - rot: -1.5707963267948966 rad pos: 26.5,-53.5 @@ -131085,7 +125409,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19077 + - uid: 19111 components: - rot: -1.5707963267948966 rad pos: 26.5,-56.5 @@ -131093,7 +125417,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19078 + - uid: 19112 components: - rot: 3.141592653589793 rad pos: 61.5,-6.5 @@ -131101,7 +125425,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19079 + - uid: 19113 components: - rot: -1.5707963267948966 rad pos: 63.5,-11.5 @@ -131109,7 +125433,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19080 + - uid: 19114 components: - rot: -1.5707963267948966 rad pos: 62.5,-39.5 @@ -131117,7 +125441,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19081 + - uid: 19115 components: - rot: 3.141592653589793 rad pos: 42.5,-41.5 @@ -131125,7 +125449,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19082 + - uid: 19116 components: - rot: 3.141592653589793 rad pos: 43.5,-43.5 @@ -131133,7 +125457,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19083 + - uid: 19117 components: - rot: 3.141592653589793 rad pos: 45.5,-43.5 @@ -131141,28 +125465,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19084 + - uid: 19118 components: - pos: 44.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19085 + - uid: 19119 components: - pos: 49.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19086 + - uid: 19120 components: - pos: 49.5,-43.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19087 + - uid: 19121 components: - rot: 3.141592653589793 rad pos: 49.5,-45.5 @@ -131170,21 +125494,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19088 + - uid: 19122 components: - pos: 50.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19089 + - uid: 19123 components: - pos: 56.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19090 + - uid: 19124 components: - rot: 3.141592653589793 rad pos: 56.5,-45.5 @@ -131192,7 +125516,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19091 + - uid: 19125 components: - rot: 3.141592653589793 rad pos: 55.5,-45.5 @@ -131200,7 +125524,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19092 + - uid: 19126 components: - rot: -1.5707963267948966 rad pos: 50.5,-46.5 @@ -131208,7 +125532,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19093 + - uid: 19127 components: - rot: 1.5707963267948966 rad pos: 49.5,-54.5 @@ -131216,7 +125540,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19094 + - uid: 19128 components: - rot: 1.5707963267948966 rad pos: 57.5,-44.5 @@ -131224,7 +125548,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19095 + - uid: 19129 components: - rot: -1.5707963267948966 rad pos: 63.5,-45.5 @@ -131232,7 +125556,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19096 + - uid: 19130 components: - rot: -1.5707963267948966 rad pos: 61.5,-44.5 @@ -131240,7 +125564,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19097 + - uid: 19131 components: - rot: 1.5707963267948966 rad pos: 63.5,-46.5 @@ -131248,7 +125572,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19098 + - uid: 19132 components: - rot: -1.5707963267948966 rad pos: 61.5,-46.5 @@ -131256,7 +125580,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19099 + - uid: 19133 components: - rot: 1.5707963267948966 rad pos: 60.5,-33.5 @@ -131264,14 +125588,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19100 + - uid: 19134 components: - pos: 60.5,-32.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19101 + - uid: 19135 components: - rot: -1.5707963267948966 rad pos: 63.5,-26.5 @@ -131279,9 +125603,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 19102 + - uid: 19136 components: - rot: 1.5707963267948966 rad pos: 61.5,-24.5 @@ -131289,16 +125611,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 19103 + - uid: 19137 components: - pos: 55.5,-11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19104 + - uid: 19138 components: - rot: 1.5707963267948966 rad pos: 60.5,-48.5 @@ -131306,7 +125626,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19105 + - uid: 19139 components: - rot: 1.5707963267948966 rad pos: 64.5,-47.5 @@ -131314,7 +125634,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19106 + - uid: 19140 components: - rot: 1.5707963267948966 rad pos: 50.5,-52.5 @@ -131322,7 +125642,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19107 + - uid: 19141 components: - rot: 3.141592653589793 rad pos: 29.5,-58.5 @@ -131330,7 +125650,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19108 + - uid: 19142 components: - rot: 3.141592653589793 rad pos: 32.5,-60.5 @@ -131338,7 +125658,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19109 + - uid: 19143 components: - rot: 1.5707963267948966 rad pos: 29.5,-56.5 @@ -131346,7 +125666,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19110 + - uid: 19144 components: - rot: 1.5707963267948966 rad pos: 29.5,-52.5 @@ -131354,7 +125674,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19111 + - uid: 19145 components: - rot: 1.5707963267948966 rad pos: 32.5,-56.5 @@ -131362,7 +125682,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19112 + - uid: 19146 components: - rot: -1.5707963267948966 rad pos: 34.5,-48.5 @@ -131370,14 +125690,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19113 + - uid: 19147 components: - pos: 32.5,-52.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19114 + - uid: 19148 components: - rot: -1.5707963267948966 rad pos: 34.5,-49.5 @@ -131385,19 +125705,19 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19115 + - uid: 19149 components: - rot: -1.5707963267948966 rad pos: 51.5,-58.5 parent: 2 type: Transform - - uid: 19116 + - uid: 19150 components: - rot: -1.5707963267948966 rad pos: 48.5,-58.5 parent: 2 type: Transform - - uid: 19117 + - uid: 19151 components: - rot: 1.5707963267948966 rad pos: 49.5,-61.5 @@ -131405,14 +125725,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19118 + - uid: 19152 components: - pos: -19.5,7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19119 + - uid: 19153 components: - rot: 3.141592653589793 rad pos: -13.5,1.5 @@ -131420,7 +125740,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19120 + - uid: 19154 components: - rot: 3.141592653589793 rad pos: -14.5,1.5 @@ -131428,14 +125748,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19121 + - uid: 19155 components: - pos: -13.5,7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19122 + - uid: 19156 components: - rot: 1.5707963267948966 rad pos: -20.5,-27.5 @@ -131443,7 +125763,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19123 + - uid: 19157 components: - rot: -1.5707963267948966 rad pos: -18.5,-19.5 @@ -131451,7 +125771,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19124 + - uid: 19158 components: - rot: -1.5707963267948966 rad pos: -20.5,-22.5 @@ -131459,7 +125779,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19125 + - uid: 19159 components: - rot: -1.5707963267948966 rad pos: -18.5,-21.5 @@ -131467,7 +125787,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19126 + - uid: 19160 components: - rot: 1.5707963267948966 rad pos: -20.5,-14.5 @@ -131475,7 +125795,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19127 + - uid: 19161 components: - rot: -1.5707963267948966 rad pos: -20.5,-13.5 @@ -131483,7 +125803,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19128 + - uid: 19162 components: - rot: -1.5707963267948966 rad pos: -18.5,-10.5 @@ -131491,14 +125811,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19129 + - uid: 19163 components: - pos: -23.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19130 + - uid: 19164 components: - rot: 3.141592653589793 rad pos: -24.5,-10.5 @@ -131506,21 +125826,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19131 + - uid: 19165 components: - pos: -24.5,-13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19132 + - uid: 19166 components: - pos: -28.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19133 + - uid: 19167 components: - rot: 3.141592653589793 rad pos: -28.5,-13.5 @@ -131528,14 +125848,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19134 + - uid: 19168 components: - pos: -25.5,-13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19135 + - uid: 19169 components: - rot: 3.141592653589793 rad pos: -28.5,-17.5 @@ -131543,7 +125863,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19136 + - uid: 19170 components: - rot: 1.5707963267948966 rad pos: -18.5,-42.5 @@ -131551,7 +125871,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19137 + - uid: 19171 components: - rot: -1.5707963267948966 rad pos: 38.5,-58.5 @@ -131559,7 +125879,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19138 + - uid: 19172 components: - rot: -1.5707963267948966 rad pos: 40.5,-60.5 @@ -131567,7 +125887,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19139 + - uid: 19173 components: - rot: 1.5707963267948966 rad pos: 38.5,-63.5 @@ -131575,7 +125895,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19140 + - uid: 19174 components: - rot: -1.5707963267948966 rad pos: 40.5,-65.5 @@ -131583,7 +125903,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19141 + - uid: 19175 components: - rot: 3.141592653589793 rad pos: -18.5,6.5 @@ -131591,7 +125911,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19142 + - uid: 19176 components: - rot: 3.141592653589793 rad pos: -20.5,7.5 @@ -131599,7 +125919,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19143 + - uid: 19177 components: - rot: 1.5707963267948966 rad pos: -31.5,-13.5 @@ -131607,7 +125927,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19144 + - uid: 19178 components: - rot: -1.5707963267948966 rad pos: -18.5,-31.5 @@ -131615,7 +125935,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19145 + - uid: 19179 components: - rot: 1.5707963267948966 rad pos: -20.5,-41.5 @@ -131623,7 +125943,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19146 + - uid: 19180 components: - rot: 1.5707963267948966 rad pos: -18.5,-43.5 @@ -131631,7 +125951,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19147 + - uid: 19181 components: - rot: 1.5707963267948966 rad pos: -20.5,-43.5 @@ -131639,14 +125959,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19148 + - uid: 19182 components: - pos: 48.5,-73.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19149 + - uid: 19183 components: - rot: 1.5707963267948966 rad pos: 40.5,-71.5 @@ -131654,7 +125974,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19150 + - uid: 19184 components: - rot: -1.5707963267948966 rad pos: 38.5,-71.5 @@ -131662,7 +125982,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19151 + - uid: 19185 components: - rot: -1.5707963267948966 rad pos: 29.5,-83.5 @@ -131670,21 +125990,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19152 + - uid: 19186 components: - pos: 47.5,-72.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19153 + - uid: 19187 components: - pos: -29.5,-16.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19154 + - uid: 19188 components: - rot: 1.5707963267948966 rad pos: -32.5,-16.5 @@ -131692,7 +126012,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19155 + - uid: 19189 components: - rot: 1.5707963267948966 rad pos: -31.5,-17.5 @@ -131700,7 +126020,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19156 + - uid: 19190 components: - rot: -1.5707963267948966 rad pos: -32.5,-17.5 @@ -131708,7 +126028,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19157 + - uid: 19191 components: - rot: -1.5707963267948966 rad pos: -31.5,-15.5 @@ -131716,7 +126036,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19158 + - uid: 19192 components: - rot: 1.5707963267948966 rad pos: -32.5,-25.5 @@ -131724,7 +126044,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19159 + - uid: 19193 components: - rot: -1.5707963267948966 rad pos: -31.5,-27.5 @@ -131732,7 +126052,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19160 + - uid: 19194 components: - rot: 3.141592653589793 rad pos: -35.5,-10.5 @@ -131740,14 +126060,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19161 + - uid: 19195 components: - pos: -36.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19162 + - uid: 19196 components: - rot: 1.5707963267948966 rad pos: 42.5,6.5 @@ -131755,7 +126075,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19163 + - uid: 19197 components: - rot: -1.5707963267948966 rad pos: -24.5,-2.5 @@ -131763,7 +126083,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19164 + - uid: 19198 components: - rot: -1.5707963267948966 rad pos: -24.5,0.5 @@ -131771,7 +126091,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19165 + - uid: 19199 components: - rot: -1.5707963267948966 rad pos: -26.5,1.5 @@ -131779,7 +126099,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19166 + - uid: 19200 components: - rot: -1.5707963267948966 rad pos: -18.5,12.5 @@ -131787,7 +126107,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19167 + - uid: 19201 components: - rot: 3.141592653589793 rad pos: -52.5,-17.5 @@ -131795,21 +126115,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19168 + - uid: 19202 components: - pos: -32.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19169 + - uid: 19203 components: - pos: -46.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19170 + - uid: 19204 components: - rot: 3.141592653589793 rad pos: -47.5,-6.5 @@ -131817,7 +126137,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19171 + - uid: 19205 components: - rot: -1.5707963267948966 rad pos: -53.5,-13.5 @@ -131825,7 +126145,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19172 + - uid: 19206 components: - rot: -1.5707963267948966 rad pos: -52.5,-16.5 @@ -131833,7 +126153,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19173 + - uid: 19207 components: - rot: 1.5707963267948966 rad pos: -53.5,-19.5 @@ -131841,7 +126161,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19174 + - uid: 19208 components: - rot: 3.141592653589793 rad pos: -59.5,-25.5 @@ -131849,21 +126169,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19175 + - uid: 19209 components: - pos: -56.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19176 + - uid: 19210 components: - pos: -68.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19177 + - uid: 19211 components: - rot: 1.5707963267948966 rad pos: -68.5,-27.5 @@ -131871,14 +126191,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19178 + - uid: 19212 components: - pos: -64.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19179 + - uid: 19213 components: - rot: -1.5707963267948966 rad pos: -64.5,-27.5 @@ -131886,23 +126206,19 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19180 + - uid: 19214 components: - rot: 3.141592653589793 rad pos: -43.5,-55.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 19181 + - uid: 19215 components: - rot: -1.5707963267948966 rad pos: -42.5,-53.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 19182 + - uid: 19216 components: - rot: 3.141592653589793 rad pos: -40.5,-55.5 @@ -131910,9 +126226,7 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 19183 + - uid: 19217 components: - rot: 1.5707963267948966 rad pos: -44.5,-41.5 @@ -131920,17 +126234,13 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 19184 + - uid: 19218 components: - rot: -1.5707963267948966 rad pos: -42.5,-41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - - uid: 19185 + - uid: 19219 components: - rot: 3.141592653589793 rad pos: -37.5,-57.5 @@ -131938,9 +126248,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 19186 + - uid: 19220 components: - rot: -1.5707963267948966 rad pos: -37.5,-51.5 @@ -131948,9 +126256,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 19187 + - uid: 19221 components: - rot: 1.5707963267948966 rad pos: -40.5,-51.5 @@ -131958,9 +126264,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 19188 + - uid: 19222 components: - rot: 1.5707963267948966 rad pos: -40.5,-50.5 @@ -131968,9 +126272,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 19189 + - uid: 19223 components: - rot: 1.5707963267948966 rad pos: -40.5,-49.5 @@ -131978,9 +126280,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 19190 + - uid: 19224 components: - rot: -1.5707963267948966 rad pos: -37.5,-49.5 @@ -131988,9 +126288,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 19191 + - uid: 19225 components: - rot: -1.5707963267948966 rad pos: -37.5,-50.5 @@ -131998,18 +126296,14 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 19192 + - uid: 19226 components: - pos: -38.5,-57.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 19193 + - uid: 19227 components: - rot: 3.141592653589793 rad pos: -38.5,-48.5 @@ -132017,16 +126311,14 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 19194 + - uid: 19228 components: - pos: -33.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19195 + - uid: 19229 components: - rot: 3.141592653589793 rad pos: -30.5,-34.5 @@ -132034,7 +126326,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19196 + - uid: 19230 components: - rot: 1.5707963267948966 rad pos: -32.5,-37.5 @@ -132042,7 +126334,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19197 + - uid: 19231 components: - rot: -1.5707963267948966 rad pos: -31.5,-39.5 @@ -132050,7 +126342,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19198 + - uid: 19232 components: - rot: 3.141592653589793 rad pos: -35.5,-55.5 @@ -132058,7 +126350,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19199 + - uid: 19233 components: - rot: 1.5707963267948966 rad pos: -35.5,-53.5 @@ -132066,7 +126358,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19200 + - uid: 19234 components: - rot: -1.5707963267948966 rad pos: -35.5,-44.5 @@ -132074,7 +126366,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19201 + - uid: 19235 components: - rot: 1.5707963267948966 rad pos: -34.5,-43.5 @@ -132082,7 +126374,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19202 + - uid: 19236 components: - rot: 1.5707963267948966 rad pos: -34.5,-45.5 @@ -132090,7 +126382,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19203 + - uid: 19237 components: - rot: 1.5707963267948966 rad pos: -34.5,-44.5 @@ -132098,7 +126390,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19204 + - uid: 19238 components: - rot: -1.5707963267948966 rad pos: -34.5,-42.5 @@ -132106,7 +126398,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19205 + - uid: 19239 components: - rot: -1.5707963267948966 rad pos: -23.5,-60.5 @@ -132114,23 +126406,21 @@ entities: type: Transform - color: '#97C3FCCC' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 19206 + - uid: 19240 components: - pos: -27.5,-69.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19207 + - uid: 19241 components: - pos: -40.5,-71.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19208 + - uid: 19242 components: - rot: 3.141592653589793 rad pos: -29.5,-71.5 @@ -132138,14 +126428,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19209 + - uid: 19243 components: - pos: -30.5,-69.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19210 + - uid: 19244 components: - rot: -1.5707963267948966 rad pos: -42.5,-71.5 @@ -132153,7 +126443,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19211 + - uid: 19245 components: - rot: 1.5707963267948966 rad pos: -23.5,-58.5 @@ -132161,9 +126451,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 19212 + - uid: 19246 components: - rot: -1.5707963267948966 rad pos: -20.5,13.5 @@ -132171,7 +126459,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19213 + - uid: 19247 components: - rot: 1.5707963267948966 rad pos: -20.5,16.5 @@ -132179,7 +126467,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19214 + - uid: 19248 components: - rot: -1.5707963267948966 rad pos: -18.5,19.5 @@ -132187,7 +126475,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19215 + - uid: 19249 components: - rot: -1.5707963267948966 rad pos: -20.5,20.5 @@ -132195,7 +126483,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19216 + - uid: 19250 components: - rot: -1.5707963267948966 rad pos: -18.5,23.5 @@ -132203,28 +126491,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19217 + - uid: 19251 components: - pos: -24.5,23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19218 + - uid: 19252 components: - pos: -23.5,20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19219 + - uid: 19253 components: - pos: -28.5,23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19220 + - uid: 19254 components: - rot: 3.141592653589793 rad pos: -28.5,20.5 @@ -132232,9 +126520,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 19221 + - uid: 19255 components: - rot: 3.141592653589793 rad pos: -40.5,23.5 @@ -132242,7 +126528,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19222 + - uid: 19256 components: - rot: 3.141592653589793 rad pos: -41.5,20.5 @@ -132250,7 +126536,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19223 + - uid: 19257 components: - rot: 1.5707963267948966 rad pos: -40.5,30.5 @@ -132258,7 +126544,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19224 + - uid: 19258 components: - rot: 1.5707963267948966 rad pos: -41.5,29.5 @@ -132266,7 +126552,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19225 + - uid: 19259 components: - rot: 3.141592653589793 rad pos: -44.5,33.5 @@ -132274,28 +126560,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19226 + - uid: 19260 components: - pos: -49.5,33.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19227 + - uid: 19261 components: - pos: -28.5,1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19228 + - uid: 19262 components: - pos: -29.5,0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19229 + - uid: 19263 components: - rot: 3.141592653589793 rad pos: -37.5,1.5 @@ -132303,7 +126589,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19230 + - uid: 19264 components: - rot: 3.141592653589793 rad pos: -38.5,0.5 @@ -132311,7 +126597,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19231 + - uid: 19265 components: - rot: 1.5707963267948966 rad pos: -38.5,3.5 @@ -132319,7 +126605,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19232 + - uid: 19266 components: - rot: -1.5707963267948966 rad pos: -37.5,5.5 @@ -132327,7 +126613,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19233 + - uid: 19267 components: - rot: 1.5707963267948966 rad pos: -37.5,8.5 @@ -132335,7 +126621,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19234 + - uid: 19268 components: - rot: -1.5707963267948966 rad pos: -38.5,8.5 @@ -132343,21 +126629,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19235 + - uid: 19269 components: - pos: -39.5,0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19236 + - uid: 19270 components: - pos: -41.5,1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19237 + - uid: 19271 components: - rot: -1.5707963267948966 rad pos: -30.5,14.5 @@ -132365,7 +126651,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19238 + - uid: 19272 components: - rot: -1.5707963267948966 rad pos: -29.5,13.5 @@ -132373,7 +126659,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19239 + - uid: 19273 components: - rot: 1.5707963267948966 rad pos: -47.5,0.5 @@ -132381,7 +126667,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19240 + - uid: 19274 components: - rot: 1.5707963267948966 rad pos: -45.5,1.5 @@ -132389,7 +126675,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19241 + - uid: 19275 components: - rot: -1.5707963267948966 rad pos: -47.5,3.5 @@ -132397,14 +126683,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19242 + - uid: 19276 components: - pos: -47.5,10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19243 + - uid: 19277 components: - rot: 3.141592653589793 rad pos: -46.5,10.5 @@ -132412,7 +126698,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19244 + - uid: 19278 components: - rot: 3.141592653589793 rad pos: -51.5,10.5 @@ -132420,7 +126706,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19245 + - uid: 19279 components: - rot: 1.5707963267948966 rad pos: -52.5,10.5 @@ -132428,7 +126714,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19246 + - uid: 19280 components: - rot: 1.5707963267948966 rad pos: -45.5,6.5 @@ -132436,7 +126722,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19247 + - uid: 19281 components: - rot: -1.5707963267948966 rad pos: -45.5,7.5 @@ -132444,7 +126730,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19248 + - uid: 19282 components: - rot: 3.141592653589793 rad pos: -51.5,11.5 @@ -132452,7 +126738,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19249 + - uid: 19283 components: - rot: 1.5707963267948966 rad pos: -20.5,25.5 @@ -132460,7 +126746,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19250 + - uid: 19284 components: - rot: 1.5707963267948966 rad pos: -18.5,24.5 @@ -132468,7 +126754,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19251 + - uid: 19285 components: - rot: 3.141592653589793 rad pos: -4.5,-41.5 @@ -132476,14 +126762,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19252 + - uid: 19286 components: - pos: -4.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19253 + - uid: 19287 components: - rot: 1.5707963267948966 rad pos: -26.5,-4.5 @@ -132491,7 +126777,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19254 + - uid: 19288 components: - rot: -1.5707963267948966 rad pos: 25.5,-52.5 @@ -132499,7 +126785,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19255 + - uid: 19289 components: - rot: 3.141592653589793 rad pos: 44.5,19.5 @@ -132507,7 +126793,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19256 + - uid: 19290 components: - rot: 1.5707963267948966 rad pos: 54.5,43.5 @@ -132515,7 +126801,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19257 + - uid: 19291 components: - rot: -1.5707963267948966 rad pos: 52.5,43.5 @@ -132523,7 +126809,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19258 + - uid: 19292 components: - rot: -1.5707963267948966 rad pos: 54.5,50.5 @@ -132531,7 +126817,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19259 + - uid: 19293 components: - rot: -1.5707963267948966 rad pos: 52.5,49.5 @@ -132539,7 +126825,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19260 + - uid: 19294 components: - rot: 1.5707963267948966 rad pos: -16.5,34.5 @@ -132547,7 +126833,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19261 + - uid: 19295 components: - rot: 1.5707963267948966 rad pos: -15.5,33.5 @@ -132555,7 +126841,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19262 + - uid: 19296 components: - rot: 1.5707963267948966 rad pos: -16.5,39.5 @@ -132563,7 +126849,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19263 + - uid: 19297 components: - rot: 1.5707963267948966 rad pos: -15.5,38.5 @@ -132571,7 +126857,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19264 + - uid: 19298 components: - rot: 1.5707963267948966 rad pos: -16.5,46.5 @@ -132579,7 +126865,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19265 + - uid: 19299 components: - rot: 3.141592653589793 rad pos: -14.5,44.5 @@ -132587,7 +126873,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19266 + - uid: 19300 components: - rot: 3.141592653589793 rad pos: 40.5,46.5 @@ -132595,14 +126881,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19267 + - uid: 19301 components: - pos: 40.5,45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19268 + - uid: 19302 components: - rot: 1.5707963267948966 rad pos: -1.5,61.5 @@ -132610,7 +126896,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19269 + - uid: 19303 components: - rot: 1.5707963267948966 rad pos: -2.5,62.5 @@ -132618,7 +126904,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19270 + - uid: 19304 components: - rot: 3.141592653589793 rad pos: -1.5,59.5 @@ -132626,7 +126912,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19271 + - uid: 19305 components: - rot: -1.5707963267948966 rad pos: 1.5,46.5 @@ -132634,7 +126920,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19272 + - uid: 19306 components: - rot: 1.5707963267948966 rad pos: -0.5,48.5 @@ -132642,35 +126928,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19273 + - uid: 19307 components: - pos: -17.5,50.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19274 + - uid: 19308 components: - pos: -16.5,51.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19275 + - uid: 19309 components: - pos: -21.5,50.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19276 + - uid: 19310 components: - pos: -20.5,51.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19277 + - uid: 19311 components: - rot: -1.5707963267948966 rad pos: -21.5,58.5 @@ -132678,7 +126964,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19278 + - uid: 19312 components: - rot: 1.5707963267948966 rad pos: -22.5,60.5 @@ -132686,7 +126972,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19279 + - uid: 19313 components: - rot: 1.5707963267948966 rad pos: -22.5,61.5 @@ -132694,7 +126980,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19280 + - uid: 19314 components: - rot: 1.5707963267948966 rad pos: -21.5,62.5 @@ -132702,7 +126988,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19281 + - uid: 19315 components: - rot: 3.141592653589793 rad pos: -17.5,62.5 @@ -132710,18 +126996,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 19282 + - uid: 19316 components: - pos: -17.5,61.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 19283 + - uid: 19317 components: - rot: 1.5707963267948966 rad pos: -22.5,66.5 @@ -132729,7 +127011,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19284 + - uid: 19318 components: - rot: -1.5707963267948966 rad pos: -13.5,62.5 @@ -132737,7 +127019,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19285 + - uid: 19319 components: - rot: -1.5707963267948966 rad pos: -12.5,61.5 @@ -132745,7 +127027,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19286 + - uid: 19320 components: - rot: -1.5707963267948966 rad pos: -12.5,60.5 @@ -132753,7 +127035,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19287 + - uid: 19321 components: - rot: 1.5707963267948966 rad pos: -13.5,58.5 @@ -132761,7 +127043,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19288 + - uid: 19322 components: - rot: -1.5707963267948966 rad pos: -13.5,66.5 @@ -132769,7 +127051,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19289 + - uid: 19323 components: - rot: 1.5707963267948966 rad pos: -12.5,59.5 @@ -132777,7 +127059,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19290 + - uid: 19324 components: - rot: 1.5707963267948966 rad pos: -13.5,57.5 @@ -132785,7 +127067,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19291 + - uid: 19325 components: - rot: 3.141592653589793 rad pos: -2.5,58.5 @@ -132793,7 +127075,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19292 + - uid: 19326 components: - rot: 1.5707963267948966 rad pos: -0.5,56.5 @@ -132801,7 +127083,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19293 + - uid: 19327 components: - rot: -1.5707963267948966 rad pos: 1.5,57.5 @@ -132809,7 +127091,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19294 + - uid: 19328 components: - rot: 3.141592653589793 rad pos: 29.5,46.5 @@ -132817,14 +127099,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19295 + - uid: 19329 components: - pos: 29.5,45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19296 + - uid: 19330 components: - rot: -1.5707963267948966 rad pos: -22.5,-96.5 @@ -132832,7 +127114,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19297 + - uid: 19331 components: - rot: -1.5707963267948966 rad pos: -20.5,-96.5 @@ -132840,7 +127122,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19298 + - uid: 19332 components: - rot: 3.141592653589793 rad pos: -20.5,-97.5 @@ -132848,7 +127130,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19299 + - uid: 19333 components: - rot: 3.141592653589793 rad pos: -21.5,-98.5 @@ -132856,7 +127138,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19300 + - uid: 19334 components: - rot: 3.141592653589793 rad pos: -8.5,-97.5 @@ -132864,7 +127146,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19301 + - uid: 19335 components: - rot: 3.141592653589793 rad pos: -7.5,-98.5 @@ -132872,7 +127154,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19302 + - uid: 19336 components: - rot: 1.5707963267948966 rad pos: -8.5,-91.5 @@ -132880,7 +127162,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19303 + - uid: 19337 components: - rot: 1.5707963267948966 rad pos: -7.5,-93.5 @@ -132888,7 +127170,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19304 + - uid: 19338 components: - rot: 3.141592653589793 rad pos: 65.5,-33.5 @@ -132896,14 +127178,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19305 + - uid: 19339 components: - pos: 65.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19306 + - uid: 19340 components: - rot: 3.141592653589793 rad pos: 67.5,-34.5 @@ -132911,14 +127193,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19307 + - uid: 19341 components: - pos: 73.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19308 + - uid: 19342 components: - rot: 3.141592653589793 rad pos: 73.5,-33.5 @@ -132926,7 +127208,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19309 + - uid: 19343 components: - rot: -1.5707963267948966 rad pos: 75.5,-40.5 @@ -132934,7 +127216,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19310 + - uid: 19344 components: - rot: 1.5707963267948966 rad pos: 74.5,-41.5 @@ -132942,14 +127224,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19311 + - uid: 19345 components: - pos: 72.5,-48.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19312 + - uid: 19346 components: - rot: 1.5707963267948966 rad pos: 73.5,-47.5 @@ -132957,14 +127239,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19313 + - uid: 19347 components: - pos: 70.5,-47.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19314 + - uid: 19348 components: - rot: 1.5707963267948966 rad pos: 71.5,-46.5 @@ -132972,7 +127254,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19315 + - uid: 19349 components: - rot: -1.5707963267948966 rad pos: 75.5,-37.5 @@ -132980,7 +127262,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19316 + - uid: 19350 components: - rot: 3.141592653589793 rad pos: 74.5,-33.5 @@ -132988,13 +127270,13 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19317 + - uid: 19351 components: - rot: -1.5707963267948966 rad pos: -56.5,-60.5 parent: 2 type: Transform - - uid: 19318 + - uid: 19352 components: - rot: 1.5707963267948966 rad pos: 61.5,-38.5 @@ -133002,14 +127284,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19319 + - uid: 19353 components: - pos: 3.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19320 + - uid: 19354 components: - rot: 3.141592653589793 rad pos: 38.5,-72.5 @@ -133017,7 +127299,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19321 + - uid: 19355 components: - rot: 3.141592653589793 rad pos: 40.5,-73.5 @@ -133025,21 +127307,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19322 + - uid: 19356 components: - pos: -30.5,-71.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19323 + - uid: 19357 components: - pos: -28.5,-69.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19324 + - uid: 19358 components: - rot: -1.5707963267948966 rad pos: 30.5,-82.5 @@ -133047,28 +127329,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19325 + - uid: 19359 components: - pos: 30.5,-72.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19326 + - uid: 19360 components: - pos: 29.5,-73.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19327 + - uid: 19361 components: - pos: -44.5,31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19328 + - uid: 19362 components: - rot: 1.5707963267948966 rad pos: -6.5,14.5 @@ -133076,14 +127358,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19329 + - uid: 19363 components: - pos: -71.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19330 + - uid: 19364 components: - rot: -1.5707963267948966 rad pos: -73.5,-24.5 @@ -133091,25 +127373,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19331 + - uid: 19365 components: - pos: -68.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 19332 + - uid: 19366 components: - pos: -71.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 19333 + - uid: 19367 components: - rot: 1.5707963267948966 rad pos: -70.5,-41.5 @@ -133117,17 +127395,15 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - proto: GasPort entities: - - uid: 19334 + - uid: 19368 components: - rot: -1.5707963267948966 rad pos: -66.5,-41.5 parent: 2 type: Transform - - uid: 19335 + - uid: 19369 components: - rot: -1.5707963267948966 rad pos: -66.5,-46.5 @@ -133135,52 +127411,52 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19336 + - uid: 19370 components: - pos: 45.5,-58.5 parent: 2 type: Transform - - uid: 19337 + - uid: 19371 components: - rot: -1.5707963267948966 rad pos: 46.5,-59.5 parent: 2 type: Transform - - uid: 19338 + - uid: 19372 components: - rot: 3.141592653589793 rad pos: 45.5,-60.5 parent: 2 type: Transform - - uid: 19339 + - uid: 19373 components: - pos: 47.5,-56.5 parent: 2 type: Transform - - uid: 19340 + - uid: 19374 components: - pos: 50.5,-56.5 parent: 2 type: Transform - - uid: 19341 + - uid: 19375 components: - rot: 3.141592653589793 rad pos: 55.5,-61.5 parent: 2 type: Transform - - uid: 19342 + - uid: 19376 components: - rot: 1.5707963267948966 rad pos: 53.5,-59.5 parent: 2 type: Transform - - uid: 19343 + - uid: 19377 components: - rot: -1.5707963267948966 rad pos: 57.5,-59.5 parent: 2 type: Transform - - uid: 19344 + - uid: 19378 components: - name: scrubber to connector port type: MetaData @@ -133188,7 +127464,7 @@ entities: pos: 54.5,-60.5 parent: 2 type: Transform - - uid: 19345 + - uid: 19379 components: - rot: -1.5707963267948966 rad pos: -39.5,-49.5 @@ -133196,7 +127472,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19346 + - uid: 19380 components: - rot: -1.5707963267948966 rad pos: -39.5,-50.5 @@ -133204,7 +127480,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19347 + - uid: 19381 components: - rot: -1.5707963267948966 rad pos: -39.5,-51.5 @@ -133212,7 +127488,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19348 + - uid: 19382 components: - rot: 1.5707963267948966 rad pos: -38.5,-49.5 @@ -133220,7 +127496,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19349 + - uid: 19383 components: - rot: 1.5707963267948966 rad pos: -38.5,-50.5 @@ -133228,7 +127504,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19350 + - uid: 19384 components: - rot: 1.5707963267948966 rad pos: -38.5,-51.5 @@ -133236,13 +127512,13 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19351 + - uid: 19385 components: - rot: 3.141592653589793 rad pos: -24.5,-62.5 parent: 2 type: Transform - - uid: 19352 + - uid: 19386 components: - rot: 3.141592653589793 rad pos: -5.5,-65.5 @@ -133250,7 +127526,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19353 + - uid: 19387 components: - rot: -1.5707963267948966 rad pos: -33.5,-43.5 @@ -133258,7 +127534,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19354 + - uid: 19388 components: - rot: -1.5707963267948966 rad pos: -33.5,-44.5 @@ -133266,7 +127542,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19355 + - uid: 19389 components: - rot: -1.5707963267948966 rad pos: -33.5,-45.5 @@ -133274,12 +127550,12 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19356 + - uid: 19390 components: - pos: 70.5,38.5 parent: 2 type: Transform - - uid: 19357 + - uid: 19391 components: - rot: -1.5707963267948966 rad pos: 72.5,-37.5 @@ -133287,7 +127563,7 @@ entities: type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 19358 + - uid: 19392 components: - rot: -1.5707963267948966 rad pos: 72.5,-38.5 @@ -133295,7 +127571,7 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 19359 + - uid: 19393 components: - rot: 3.141592653589793 rad pos: 71.5,-33.5 @@ -133303,7 +127579,7 @@ entities: type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 19360 + - uid: 19394 components: - rot: 3.141592653589793 rad pos: 72.5,-33.5 @@ -133311,30 +127587,30 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 19361 + - uid: 19395 components: - rot: 1.5707963267948966 rad pos: -57.5,-58.5 parent: 2 type: Transform - - uid: 19362 + - uid: 19396 components: - pos: -54.5,-59.5 parent: 2 type: Transform - - uid: 19363 + - uid: 19397 components: - rot: 3.141592653589793 rad pos: -48.5,-38.5 parent: 2 type: Transform - - uid: 19364 + - uid: 19398 components: - rot: -1.5707963267948966 rad pos: -66.5,-40.5 parent: 2 type: Transform - - uid: 19365 + - uid: 19399 components: - rot: 1.5707963267948966 rad pos: -72.5,-46.5 @@ -133344,7 +127620,7 @@ entities: type: AtmosPipeColor - proto: GasPressurePump entities: - - uid: 19366 + - uid: 19400 components: - rot: -1.5707963267948966 rad pos: -67.5,-41.5 @@ -133352,92 +127628,92 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19367 + - uid: 19401 components: - rot: 1.5707963267948966 rad pos: -73.5,-41.5 parent: 2 type: Transform - - uid: 19368 + - uid: 19402 components: - pos: -70.5,-38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19369 + - uid: 19403 components: - pos: -68.5,-45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19370 + - uid: 19404 components: - rot: 3.141592653589793 rad pos: 50.5,-57.5 parent: 2 type: Transform - - uid: 19371 + - uid: 19405 components: - pos: 47.5,-57.5 parent: 2 type: Transform - - uid: 19372 + - uid: 19406 components: - rot: 3.141592653589793 rad pos: 55.5,-60.5 parent: 2 type: Transform - - uid: 19373 + - uid: 19407 components: - rot: 1.5707963267948966 rad pos: 54.5,-59.5 parent: 2 type: Transform - - uid: 19374 + - uid: 19408 components: - rot: 1.5707963267948966 rad pos: -44.5,-53.5 parent: 2 type: Transform - - uid: 19375 + - uid: 19409 components: - rot: 1.5707963267948966 rad pos: -44.5,-55.5 parent: 2 type: Transform - - uid: 19376 + - uid: 19410 components: - rot: 1.5707963267948966 rad pos: -44.5,-51.5 parent: 2 type: Transform - - uid: 19377 + - uid: 19411 components: - rot: 1.5707963267948966 rad pos: -44.5,-49.5 parent: 2 type: Transform - - uid: 19378 + - uid: 19412 components: - rot: 1.5707963267948966 rad pos: -44.5,-47.5 parent: 2 type: Transform - - uid: 19379 + - uid: 19413 components: - rot: 1.5707963267948966 rad pos: -44.5,-45.5 parent: 2 type: Transform - - uid: 19380 + - uid: 19414 components: - rot: 1.5707963267948966 rad pos: -44.5,-43.5 parent: 2 type: Transform - - uid: 19381 + - uid: 19415 components: - rot: 1.5707963267948966 rad pos: -39.5,-55.5 @@ -133445,34 +127721,34 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19382 + - uid: 19416 components: - pos: -40.5,-54.5 parent: 2 type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 19383 + - uid: 19417 components: - rot: 3.141592653589793 rad pos: -42.5,-40.5 parent: 2 type: Transform - - uid: 19384 + - uid: 19418 components: - pos: -37.5,-54.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19385 + - uid: 19419 components: - pos: -38.5,-45.5 parent: 2 type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19386 + - uid: 19420 components: - rot: 3.141592653589793 rad pos: -24.5,-61.5 @@ -133480,7 +127756,7 @@ entities: type: Transform - color: '#97C3FCCC' type: AtmosPipeColor - - uid: 19387 + - uid: 19421 components: - rot: 3.141592653589793 rad pos: -25.5,-59.5 @@ -133488,14 +127764,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19388 + - uid: 19422 components: - pos: -23.5,-59.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19389 + - uid: 19423 components: - rot: 3.141592653589793 rad pos: 72.5,-31.5 @@ -133503,19 +127779,19 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 19390 + - uid: 19424 components: - pos: 71.5,-31.5 parent: 2 type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 19391 + - uid: 19425 components: - pos: -56.5,-59.5 parent: 2 type: Transform - - uid: 19392 + - uid: 19426 components: - rot: -1.5707963267948966 rad pos: 70.5,-38.5 @@ -133523,13 +127799,13 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 19393 + - uid: 19427 components: - rot: 3.141592653589793 rad pos: -54.5,-60.5 parent: 2 type: Transform - - uid: 19394 + - uid: 19428 components: - rot: 1.5707963267948966 rad pos: 70.5,-37.5 @@ -133537,12 +127813,12 @@ entities: type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 19395 + - uid: 19429 components: - pos: -48.5,-37.5 parent: 2 type: Transform - - uid: 19396 + - uid: 19430 components: - rot: 3.141592653589793 rad pos: -70.5,-43.5 @@ -133550,7 +127826,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19397 + - uid: 19431 components: - rot: -1.5707963267948966 rad pos: -67.5,-40.5 @@ -133560,62 +127836,62 @@ entities: type: AtmosPipeColor - proto: GasRecyclerMachineCircuitboard entities: - - uid: 19398 + - uid: 19432 components: - pos: 53.993114,35.55658 parent: 2 type: Transform - proto: GasThermoMachineFreezer entities: - - uid: 19399 + - uid: 19433 components: - pos: 51.5,-57.5 parent: 2 type: Transform - - uid: 19400 + - uid: 19434 components: - pos: 2.5,14.5 parent: 2 type: Transform - - uid: 19401 + - uid: 19435 components: - pos: -33.5,-52.5 parent: 2 type: Transform - - uid: 19402 + - uid: 19436 components: - pos: 2.5,68.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19403 + - uid: 19437 components: - pos: 2.5,70.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19404 + - uid: 19438 components: - pos: -5.5,68.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19405 + - uid: 19439 components: - pos: -5.5,70.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19406 + - uid: 19440 components: - pos: 53.5,-47.5 parent: 2 type: Transform - - uid: 19407 + - uid: 19441 components: - pos: -22.5,-61.5 parent: 2 @@ -133624,28 +127900,28 @@ entities: type: AtmosPipeColor - proto: GasThermoMachineFreezerEnabled entities: - - uid: 19408 + - uid: 19442 components: - pos: -66.5,-38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19409 + - uid: 19443 components: - pos: -69.5,-38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19410 + - uid: 19444 components: - pos: -67.5,-38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19411 + - uid: 19445 components: - pos: -68.5,-38.5 parent: 2 @@ -133654,33 +127930,31 @@ entities: type: AtmosPipeColor - proto: GasThermoMachineHeater entities: - - uid: 19412 + - uid: 19446 components: - pos: 48.5,-57.5 parent: 2 type: Transform - - uid: 19413 + - uid: 19447 components: - pos: -33.5,-54.5 parent: 2 type: Transform - - uid: 19414 + - uid: 19448 components: - pos: -57.5,-59.5 parent: 2 type: Transform - proto: GasValve entities: - - uid: 19415 + - uid: 19449 components: - pos: -44.5,-40.5 parent: 2 type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - - uid: 19416 + - uid: 19450 components: - rot: 1.5707963267948966 rad pos: -72.5,-41.5 @@ -133688,11 +127962,9 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19417 + - uid: 19451 components: - rot: -1.5707963267948966 rad pos: -72.5,-40.5 @@ -133700,11 +127972,9 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19418 + - uid: 19452 components: - rot: -1.5707963267948966 rad pos: -72.5,-42.5 @@ -133712,11 +127982,9 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19419 + - uid: 19453 components: - rot: -1.5707963267948966 rad pos: 56.5,-59.5 @@ -133724,9 +127992,7 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - - uid: 19420 + - uid: 19454 components: - rot: 1.5707963267948966 rad pos: 53.5,-60.5 @@ -133734,9 +128000,7 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - - uid: 19421 + - uid: 19455 components: - rot: -1.5707963267948966 rad pos: -43.5,-41.5 @@ -133744,18 +128008,16 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19422 + - uid: 19456 components: - pos: -40.5,-53.5 parent: 2 type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#947507FF' type: AtmosPipeColor - - uid: 19423 + - uid: 19457 components: - rot: 3.141592653589793 rad pos: -38.5,-58.5 @@ -133763,33 +128025,27 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19424 + - uid: 19458 components: - pos: -37.5,-53.5 parent: 2 type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#947507FF' type: AtmosPipeColor - - uid: 19425 + - uid: 19459 components: - pos: -38.5,-42.5 parent: 2 type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19426 + - uid: 19460 components: - rot: -1.5707963267948966 rad pos: -34.5,-53.5 @@ -133797,11 +128053,9 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19427 + - uid: 19461 components: - rot: 1.5707963267948966 rad pos: -34.5,-55.5 @@ -133809,20 +128063,16 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19428 + - uid: 19462 components: - pos: -48.5,-36.5 parent: 2 type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - - uid: 19429 + - uid: 19463 components: - rot: 1.5707963267948966 rad pos: -66.5,-44.5 @@ -133830,11 +128080,9 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19430 + - uid: 19464 components: - rot: 1.5707963267948966 rad pos: -71.5,-37.5 @@ -133842,13 +128090,17 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - proto: GasVentPump entities: - - uid: 19431 + - uid: 19465 + components: + - rot: 3.141592653589793 rad + pos: 18.5,16.5 + parent: 2 + type: Transform + - uid: 19466 components: - rot: 3.141592653589793 rad pos: -0.5,-4.5 @@ -133857,11 +128109,9 @@ entities: - ShutdownSubscribers: - 99 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19432 + - uid: 19467 components: - rot: 3.141592653589793 rad pos: 1.5,-5.5 @@ -133870,1887 +128120,1491 @@ entities: - ShutdownSubscribers: - 98 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19433 + - uid: 19468 components: - rot: -1.5707963267948966 rad pos: -70.5,-31.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19434 + - uid: 19469 components: - rot: 3.141592653589793 rad pos: -72.5,-38.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19435 + - uid: 19470 components: - rot: 1.5707963267948966 rad pos: -72.5,-25.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19436 + - uid: 19471 components: - rot: 1.5707963267948966 rad pos: -9.5,2.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19437 + - uid: 19472 components: - pos: -1.5,-59.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19438 + - uid: 19473 components: - rot: 3.141592653589793 rad pos: -14.5,-46.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19439 + - uid: 19474 components: - pos: 25.5,-5.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19440 + - uid: 19475 components: - rot: 1.5707963267948966 rad pos: -12.5,-39.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19441 + - uid: 19476 components: - rot: 3.141592653589793 rad pos: -0.5,-65.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19442 + - uid: 19477 components: - rot: 3.141592653589793 rad pos: -23.5,-86.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19443 + - uid: 19478 components: - pos: 2.5,-26.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19444 + - uid: 19479 components: - pos: 20.5,-40.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19445 + - uid: 19480 components: - rot: -1.5707963267948966 rad pos: 6.5,16.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19446 + - uid: 19481 components: - pos: 26.5,11.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19447 + - uid: 19482 components: - rot: 1.5707963267948966 rad pos: 5.5,8.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19448 + - uid: 19483 components: - rot: -1.5707963267948966 rad pos: -4.5,-14.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19449 + - uid: 19484 components: - pos: -17.5,-57.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19450 + - uid: 19485 components: - rot: -1.5707963267948966 rad pos: 32.5,10.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19451 + - uid: 19486 components: - rot: 1.5707963267948966 rad pos: 16.5,13.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19452 + - uid: 19487 components: - rot: -1.5707963267948966 rad pos: 45.5,-27.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19453 + - uid: 19488 components: - pos: 10.5,19.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19454 + - uid: 19489 components: - rot: -1.5707963267948966 rad pos: 29.5,10.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19455 + - uid: 19490 components: - rot: 3.141592653589793 rad pos: 18.5,3.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19456 + - uid: 19491 components: - rot: 1.5707963267948966 rad pos: 8.5,1.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19457 + - uid: 19492 components: - rot: 1.5707963267948966 rad pos: 8.5,-9.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19458 + - uid: 19493 components: - pos: 22.5,22.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 19459 - components: - - rot: 3.141592653589793 rad - pos: 15.5,16.5 - parent: 2 - type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19460 + - uid: 19494 components: - rot: 1.5707963267948966 rad pos: -0.5,17.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19461 + - uid: 19495 components: - rot: -1.5707963267948966 rad pos: -10.5,-22.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19462 + - uid: 19496 components: - rot: -1.5707963267948966 rad pos: -9.5,-6.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19463 + - uid: 19497 components: - rot: 3.141592653589793 rad pos: -6.5,-65.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19464 + - uid: 19498 components: - rot: 3.141592653589793 rad pos: -12.5,-65.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19465 + - uid: 19499 components: - pos: -2.5,-52.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19466 + - uid: 19500 components: - rot: 3.141592653589793 rad pos: 5.5,-45.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19467 + - uid: 19501 components: - rot: 3.141592653589793 rad pos: -0.5,-47.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19468 + - uid: 19502 components: - rot: -1.5707963267948966 rad pos: 9.5,-60.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19469 + - uid: 19503 components: - rot: -1.5707963267948966 rad pos: 35.5,10.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19470 + - uid: 19504 components: - rot: 1.5707963267948966 rad pos: -30.5,-80.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19471 + - uid: 19505 components: - rot: 3.141592653589793 rad pos: 36.5,7.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19472 + - uid: 19506 components: - rot: 3.141592653589793 rad pos: 11.5,9.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19473 + - uid: 19507 components: - rot: 1.5707963267948966 rad pos: 9.5,3.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19474 + - uid: 19508 components: - pos: 20.5,14.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19475 + - uid: 19509 components: - pos: 5.5,19.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19476 + - uid: 19510 components: - rot: 3.141592653589793 rad pos: 0.5,12.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19477 + - uid: 19511 components: - pos: -24.5,-79.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19478 + - uid: 19512 components: - rot: 3.141592653589793 rad pos: -18.5,-78.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19479 + - uid: 19513 components: - rot: -1.5707963267948966 rad pos: 20.5,18.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19480 + - uid: 19514 components: - pos: 17.5,20.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19481 + - uid: 19515 components: - rot: 1.5707963267948966 rad pos: 33.5,5.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19482 + - uid: 19516 components: - pos: -4.5,-40.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19483 + - uid: 19517 components: - rot: 3.141592653589793 rad pos: -4.5,12.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19484 + - uid: 19518 components: - pos: -29.5,-70.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19485 + - uid: 19519 components: - rot: 1.5707963267948966 rad pos: -23.5,29.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19486 + - uid: 19520 components: - pos: 47.5,-23.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19487 + - uid: 19521 components: - rot: 1.5707963267948966 rad pos: 27.5,0.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19488 + - uid: 19522 components: - pos: -7.5,9.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19489 + - uid: 19523 components: - rot: -1.5707963267948966 rad pos: 15.5,-32.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19490 + - uid: 19524 components: - rot: 1.5707963267948966 rad pos: 17.5,-12.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19491 + - uid: 19525 components: - pos: 30.5,-17.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19492 + - uid: 19526 components: - pos: -18.5,33.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19493 + - uid: 19527 components: - rot: 3.141592653589793 rad pos: 36.5,4.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19494 + - uid: 19528 components: - rot: -1.5707963267948966 rad pos: 27.5,-24.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19495 + - uid: 19529 components: - rot: 3.141592653589793 rad pos: -24.5,-89.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19496 + - uid: 19530 components: - rot: 1.5707963267948966 rad pos: -19.5,-64.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19497 + - uid: 19531 components: - pos: 31.5,-14.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19498 + - uid: 19532 components: - rot: -1.5707963267948966 rad pos: 42.5,-26.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19499 + - uid: 19533 components: - rot: -1.5707963267948966 rad pos: -17.5,-72.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19500 + - uid: 19534 components: - rot: 1.5707963267948966 rad pos: -19.5,-67.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19501 + - uid: 19535 components: - rot: -1.5707963267948966 rad pos: -19.5,-88.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19502 + - uid: 19536 components: - rot: 3.141592653589793 rad pos: 10.5,-46.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19503 + - uid: 19537 components: - rot: -1.5707963267948966 rad pos: 35.5,-23.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19504 + - uid: 19538 components: - pos: -16.5,-37.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19505 + - uid: 19539 components: - pos: -11.5,-32.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19506 + - uid: 19540 components: - rot: -1.5707963267948966 rad pos: -0.5,-10.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19507 + - uid: 19541 components: - rot: 3.141592653589793 rad pos: 21.5,-46.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19508 + - uid: 19542 components: - pos: 30.5,28.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19509 + - uid: 19543 components: - pos: 45.5,15.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19510 + - uid: 19544 components: - rot: -1.5707963267948966 rad pos: 61.5,15.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19511 + - uid: 19545 components: - rot: -1.5707963267948966 rad pos: 52.5,13.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19512 + - uid: 19546 components: - rot: -1.5707963267948966 rad pos: 61.5,18.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19513 + - uid: 19547 components: - pos: 59.5,23.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19514 + - uid: 19548 components: - pos: 56.5,23.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19515 + - uid: 19549 components: - pos: 53.5,23.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19516 + - uid: 19550 components: - pos: 50.5,23.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19517 + - uid: 19551 components: - pos: 47.5,23.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19518 + - uid: 19552 components: - rot: 3.141592653589793 rad pos: 47.5,13.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19519 + - uid: 19553 components: - rot: -1.5707963267948966 rad pos: 60.5,11.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19520 + - uid: 19554 components: - pos: 39.5,20.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19521 + - uid: 19555 components: - rot: 1.5707963267948966 rad pos: 34.5,19.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19522 + - uid: 19556 components: - pos: 45.5,1.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19523 + - uid: 19557 components: - rot: -1.5707963267948966 rad pos: 57.5,0.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19524 + - uid: 19558 components: - rot: 1.5707963267948966 rad pos: 43.5,-1.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19525 + - uid: 19559 components: - rot: 1.5707963267948966 rad pos: 36.5,-3.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19526 + - uid: 19560 components: - rot: 3.141592653589793 rad pos: 41.5,8.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19527 + - uid: 19561 components: - rot: 1.5707963267948966 rad pos: 29.5,19.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19528 + - uid: 19562 components: - rot: 1.5707963267948966 rad pos: 38.5,10.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19529 + - uid: 19563 components: - rot: -1.5707963267948966 rad pos: 46.5,-1.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19530 + - uid: 19564 components: - rot: -1.5707963267948966 rad pos: 57.5,-5.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19531 + - uid: 19565 components: - rot: 3.141592653589793 rad pos: 49.5,-42.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19532 + - uid: 19566 components: - rot: 3.141592653589793 rad pos: 56.5,-42.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19533 + - uid: 19567 components: - rot: 3.141592653589793 rad pos: 44.5,-42.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19534 + - uid: 19568 components: - rot: 3.141592653589793 rad pos: 57.5,-45.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19535 + - uid: 19569 components: - rot: 3.141592653589793 rad pos: 61.5,-47.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19536 + - uid: 19570 components: - rot: 1.5707963267948966 rad pos: 59.5,-32.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19537 + - uid: 19571 components: - rot: -1.5707963267948966 rad pos: 62.5,-24.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19538 + - uid: 19572 components: - pos: 61.5,-2.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19539 + - uid: 19573 components: - rot: 3.141592653589793 rad pos: 60.5,-52.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19540 + - uid: 19574 components: - rot: 1.5707963267948966 rad pos: 44.5,-46.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19541 + - uid: 19575 components: - rot: -1.5707963267948966 rad pos: 51.5,-52.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19542 + - uid: 19576 components: - rot: 1.5707963267948966 rad pos: 25.5,-56.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19543 + - uid: 19577 components: - rot: -1.5707963267948966 rad pos: 30.5,-56.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19544 + - uid: 19578 components: - rot: -1.5707963267948966 rad pos: 30.5,-52.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19545 + - uid: 19579 components: - rot: 1.5707963267948966 rad pos: 28.5,-47.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19546 + - uid: 19580 components: - rot: -1.5707963267948966 rad pos: 33.5,-47.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19547 + - uid: 19581 components: - pos: 29.5,-45.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19548 + - uid: 19582 components: - rot: -1.5707963267948966 rad pos: 53.5,-57.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19549 + - uid: 19583 components: - pos: -13.5,2.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19550 + - uid: 19584 components: - rot: 1.5707963267948966 rad pos: -17.5,1.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19551 + - uid: 19585 components: - rot: 3.141592653589793 rad pos: -24.5,-14.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19552 + - uid: 19586 components: - pos: -28.5,-12.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19553 + - uid: 19587 components: - rot: -1.5707963267948966 rad pos: -19.5,-14.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19554 + - uid: 19588 components: - rot: 3.141592653589793 rad pos: -24.5,-23.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19555 + - uid: 19589 components: - pos: 38.5,-55.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19556 + - uid: 19590 components: - rot: -1.5707963267948966 rad pos: 39.5,-63.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19557 + - uid: 19591 components: - rot: -1.5707963267948966 rad pos: -19.5,-41.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19558 + - uid: 19592 components: - rot: -1.5707963267948966 rad pos: -19.5,-47.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19559 + - uid: 19593 components: - rot: -1.5707963267948966 rad pos: -19.5,-33.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19560 + - uid: 19594 components: - rot: 1.5707963267948966 rad pos: 37.5,-71.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19561 + - uid: 19595 components: - rot: -1.5707963267948966 rad pos: 3.5,-56.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19562 + - uid: 19596 components: - pos: -28.5,-16.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19563 + - uid: 19597 components: - rot: 1.5707963267948966 rad pos: -32.5,-27.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19564 + - uid: 19598 components: - rot: 1.5707963267948966 rad pos: -34.5,-15.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19565 + - uid: 19599 components: - rot: 3.141592653589793 rad pos: -36.5,-12.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19566 + - uid: 19600 components: - rot: 3.141592653589793 rad pos: -41.5,-16.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19567 + - uid: 19601 components: - rot: -1.5707963267948966 rad pos: -25.5,-4.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19568 + - uid: 19602 components: - rot: 3.141592653589793 rad pos: -44.5,-12.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19569 + - uid: 19603 components: - rot: 3.141592653589793 rad pos: -46.5,-6.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19570 + - uid: 19604 components: - rot: 1.5707963267948966 rad pos: -54.5,-13.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19571 + - uid: 19605 components: - rot: -1.5707963267948966 rad pos: -50.5,-24.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19572 + - uid: 19606 components: - pos: -45.5,-22.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19573 + - uid: 19607 components: - pos: -59.5,-24.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19574 + - uid: 19608 components: - rot: 1.5707963267948966 rad pos: -65.5,-27.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19575 + - uid: 19609 components: - rot: 3.141592653589793 rad pos: -64.5,-31.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19576 + - uid: 19610 components: - rot: 1.5707963267948966 rad pos: -32.5,-39.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19577 + - uid: 19611 components: - pos: -30.5,-33.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19578 + - uid: 19612 components: - rot: 1.5707963267948966 rad pos: -38.5,-34.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19579 + - uid: 19613 components: - rot: -1.5707963267948966 rad pos: -23.5,-34.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19580 + - uid: 19614 components: - pos: -23.5,-57.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19581 + - uid: 19615 components: - rot: 1.5707963267948966 rad pos: -41.5,-71.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19582 + - uid: 19616 components: - pos: 21.5,-27.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19583 + - uid: 19617 components: - rot: -1.5707963267948966 rad pos: 29.5,-30.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19584 + - uid: 19618 components: - rot: 1.5707963267948966 rad pos: -19.5,19.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19585 + - uid: 19619 components: - rot: 3.141592653589793 rad pos: -28.5,22.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19586 + - uid: 19620 components: - rot: 3.141592653589793 rad pos: -32.5,22.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19587 + - uid: 19621 components: - pos: -32.5,28.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19588 + - uid: 19622 components: - rot: 1.5707963267948966 rad pos: -41.5,23.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19589 + - uid: 19623 components: - rot: 3.141592653589793 rad pos: -24.5,22.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19590 + - uid: 19624 components: - rot: 1.5707963267948966 rad pos: -50.5,33.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19591 + - uid: 19625 components: - rot: 1.5707963267948966 rad pos: -50.5,31.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19592 + - uid: 19626 components: - pos: -44.5,34.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19593 + - uid: 19627 components: - rot: -1.5707963267948966 rad pos: -37.5,30.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19594 + - uid: 19628 components: - rot: 1.5707963267948966 rad pos: -26.5,12.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19595 + - uid: 19629 components: - rot: 3.141592653589793 rad pos: -28.5,-3.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19596 + - uid: 19630 components: - rot: 3.141592653589793 rad pos: -29.5,9.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19597 + - uid: 19631 components: - pos: -29.5,15.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19598 + - uid: 19632 components: - rot: -1.5707963267948966 rad pos: -36.5,8.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19599 + - uid: 19633 components: - rot: 1.5707963267948966 rad pos: -38.5,5.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19600 + - uid: 19634 components: - rot: 3.141592653589793 rad pos: -41.5,0.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19601 + - uid: 19635 components: - rot: 3.141592653589793 rad pos: -45.5,0.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19602 + - uid: 19636 components: - rot: -1.5707963267948966 rad pos: -44.5,6.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19603 + - uid: 19637 components: - rot: 1.5707963267948966 rad pos: -51.5,7.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19604 + - uid: 19638 components: - rot: -1.5707963267948966 rad pos: -43.5,11.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19605 + - uid: 19639 components: - pos: -45.5,14.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19606 + - uid: 19640 components: - pos: -51.5,14.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19607 + - uid: 19641 components: - rot: 1.5707963267948966 rad pos: -52.5,11.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19608 + - uid: 19642 components: - rot: 3.141592653589793 rad pos: 19.5,-54.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19609 + - uid: 19643 components: - rot: 3.141592653589793 rad pos: 19.5,-54.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19610 + - uid: 19644 components: - pos: -54.5,-74.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19611 + - uid: 19645 components: - pos: -8.5,-26.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19612 + - uid: 19646 components: - rot: 3.141592653589793 rad pos: 33.5,-42.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19613 + - uid: 19647 components: - rot: 1.5707963267948966 rad pos: -36.5,-44.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19614 + - uid: 19648 components: - rot: 1.5707963267948966 rad pos: -30.5,-78.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19615 + - uid: 19649 components: - rot: 1.5707963267948966 rad pos: 39.5,46.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19616 + - uid: 19650 components: - pos: 54.5,56.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19617 + - uid: 19651 components: - rot: -1.5707963267948966 rad pos: 55.5,43.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19618 + - uid: 19652 components: - rot: -1.5707963267948966 rad pos: -12.5,33.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19619 + - uid: 19653 components: - rot: 1.5707963267948966 rad pos: -20.5,44.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19620 + - uid: 19654 components: - pos: -14.5,45.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19621 + - uid: 19655 components: - rot: 3.141592653589793 rad pos: 70.5,37.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 19622 + - uid: 19656 components: - rot: -1.5707963267948966 rad pos: -11.5,38.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19623 + - uid: 19657 components: - pos: -1.5,66.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19624 + - uid: 19658 components: - rot: -1.5707963267948966 rad pos: -0.5,61.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19625 + - uid: 19659 components: - rot: 1.5707963267948966 rad pos: 0.5,46.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19626 + - uid: 19660 components: - rot: 1.5707963267948966 rad pos: -13.5,60.5 @@ -135759,360 +129613,286 @@ entities: - ShutdownSubscribers: - 73 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19627 + - uid: 19661 components: - rot: 3.141592653589793 rad pos: -17.5,60.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19628 + - uid: 19662 components: - pos: -12.5,73.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19629 + - uid: 19663 components: - pos: -22.5,73.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19630 + - uid: 19664 components: - rot: -1.5707963267948966 rad pos: -21.5,60.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19631 + - uid: 19665 components: - rot: 1.5707963267948966 rad pos: 0.5,57.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19632 + - uid: 19666 components: - rot: -1.5707963267948966 rad pos: 30.5,46.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19633 + - uid: 19667 components: - rot: 3.141592653589793 rad pos: 23.5,45.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19634 + - uid: 19668 components: - rot: -1.5707963267948966 rad pos: -7.5,-91.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19635 + - uid: 19669 components: - rot: 1.5707963267948966 rad pos: -21.5,-96.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19636 + - uid: 19670 components: - rot: -1.5707963267948966 rad pos: -7.5,-97.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19637 + - uid: 19671 components: - pos: -8.5,-84.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19638 + - uid: 19672 components: - rot: 1.5707963267948966 rad pos: -34.5,-97.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19639 + - uid: 19673 components: - pos: 65.5,-32.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19640 + - uid: 19674 components: - rot: 3.141592653589793 rad pos: 68.5,-34.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19641 + - uid: 19675 components: - rot: 1.5707963267948966 rad pos: 74.5,-40.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19642 + - uid: 19676 components: - rot: -1.5707963267948966 rad pos: 74.5,-47.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19643 + - uid: 19677 components: - rot: 1.5707963267948966 rad pos: 66.5,-37.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19644 + - uid: 19678 components: - pos: 74.5,-32.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19645 + - uid: 19679 components: - pos: 73.5,-29.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19646 + - uid: 19680 components: - rot: 3.141592653589793 rad pos: 3.5,-30.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19647 + - uid: 19681 components: - rot: -1.5707963267948966 rad pos: -18.5,66.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19648 + - uid: 19682 components: - rot: 3.141592653589793 rad pos: 72.5,-49.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19649 + - uid: 19683 components: - rot: -1.5707963267948966 rad pos: -15.5,24.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19650 + - uid: 19684 components: - rot: 1.5707963267948966 rad pos: -8.5,-14.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19651 + - uid: 19685 components: - pos: -11.5,-18.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19652 + - uid: 19686 components: - rot: 3.141592653589793 rad pos: -30.5,-74.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19653 + - uid: 19687 components: - rot: -1.5707963267948966 rad pos: 62.5,-38.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19654 + - uid: 19688 components: - rot: 3.141592653589793 rad pos: 30.5,-84.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19655 + - uid: 19689 components: - rot: -1.5707963267948966 rad pos: 48.5,-72.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19656 + - uid: 19690 components: - pos: 25.5,-71.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19657 + - uid: 19691 components: - rot: 3.141592653589793 rad pos: 18.5,-83.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19658 + - uid: 19692 components: - rot: -1.5707963267948966 rad pos: 48.5,-86.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19659 + - uid: 19693 components: - pos: 12.5,-22.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19660 + - uid: 19694 components: - rot: -1.5707963267948966 rad pos: 45.5,5.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19661 + - uid: 19695 components: - pos: -45.5,43.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19662 + - uid: 19696 components: - pos: 68.5,-31.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19663 + - uid: 19697 components: - rot: -1.5707963267948966 rad pos: -5.5,16.5 @@ -136121,11 +129901,9 @@ entities: - ShutdownSubscribers: - 94 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19664 + - uid: 19698 components: - rot: -1.5707963267948966 rad pos: -1.5,-21.5 @@ -136134,11 +129912,9 @@ entities: - ShutdownSubscribers: - 100 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19665 + - uid: 19699 components: - rot: 3.141592653589793 rad pos: 22.5,-37.5 @@ -136147,20 +129923,16 @@ entities: - ShutdownSubscribers: - 78 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19666 + - uid: 19700 components: - pos: 42.5,-37.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - proto: GasVentScrubber entities: - - uid: 19667 + - uid: 19701 components: - rot: 1.5707963267948966 rad pos: 1.5,-6.5 @@ -136169,1481 +129941,1177 @@ entities: - ShutdownSubscribers: - 98 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19668 + - uid: 19702 components: - rot: 1.5707963267948966 rad pos: -74.5,-24.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19669 + - uid: 19703 components: - rot: 3.141592653589793 rad pos: -73.5,-38.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19670 + - uid: 19704 components: - rot: -1.5707963267948966 rad pos: -2.5,11.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19671 + - uid: 19705 components: - pos: 25.5,-51.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19672 + - uid: 19706 components: - pos: 22.5,-4.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19673 + - uid: 19707 components: - pos: 11.5,19.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19674 + - uid: 19708 components: - rot: 1.5707963267948966 rad pos: 27.5,1.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19675 + - uid: 19709 components: - rot: 3.141592653589793 rad pos: 7.5,-26.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19676 + - uid: 19710 components: - pos: -8.5,-0.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19677 + - uid: 19711 components: - pos: 31.5,-41.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19678 + - uid: 19712 components: - pos: 31.5,16.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19679 + - uid: 19713 components: - rot: 3.141592653589793 rad pos: -5.5,6.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19680 + - uid: 19714 components: - rot: -1.5707963267948966 rad pos: -8.5,-39.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19681 + - uid: 19715 components: - rot: 3.141592653589793 rad pos: 31.5,11.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19682 + - uid: 19716 components: - rot: 1.5707963267948966 rad pos: 37.5,8.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19683 + - uid: 19717 components: - rot: 1.5707963267948966 rad pos: 37.5,5.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19684 + - uid: 19718 components: - rot: 3.141592653589793 rad pos: 28.5,11.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19685 + - uid: 19719 components: - pos: 38.5,12.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19686 + - uid: 19720 components: - rot: 3.141592653589793 rad pos: -4.5,-43.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19687 + - uid: 19721 components: - rot: 1.5707963267948966 rad pos: 16.5,12.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19688 + - uid: 19722 components: - rot: 3.141592653589793 rad pos: 34.5,11.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19689 + - uid: 19723 components: - rot: -1.5707963267948966 rad pos: 26.5,7.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19690 + - uid: 19724 components: - rot: -1.5707963267948966 rad pos: 8.5,19.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19691 + - uid: 19725 components: - rot: -1.5707963267948966 rad pos: 22.5,-18.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19692 + - uid: 19726 components: - rot: -1.5707963267948966 rad pos: 29.5,-29.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19693 + - uid: 19727 components: - pos: 23.5,-27.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19694 + - uid: 19728 components: - rot: -1.5707963267948966 rad pos: -8.5,-5.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19695 + - uid: 19729 components: - rot: 3.141592653589793 rad pos: -2.5,-65.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19696 + - uid: 19730 components: - rot: 3.141592653589793 rad pos: -8.5,-65.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19697 + - uid: 19731 components: - rot: 3.141592653589793 rad pos: -15.5,-65.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19698 + - uid: 19732 components: - rot: 3.141592653589793 rad pos: -5.5,-61.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19699 + - uid: 19733 components: - rot: 3.141592653589793 rad pos: -8.5,-54.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19700 + - uid: 19734 components: - rot: 3.141592653589793 rad pos: 3.5,-45.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19701 + - uid: 19735 components: - rot: 3.141592653589793 rad pos: -8.5,-47.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19702 + - uid: 19736 components: - rot: -1.5707963267948966 rad pos: 9.5,-61.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19703 + - uid: 19737 components: - rot: 3.141592653589793 rad pos: -12.5,-47.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19704 + - uid: 19738 components: - rot: 3.141592653589793 rad pos: -20.5,-85.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19705 + - uid: 19739 components: - rot: -1.5707963267948966 rad pos: -24.5,-77.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19706 + - uid: 19740 components: - rot: 1.5707963267948966 rad pos: -28.5,-77.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19707 + - uid: 19741 components: - pos: 17.5,0.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19708 + - uid: 19742 components: - pos: 33.5,2.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19709 + - uid: 19743 components: - rot: -1.5707963267948966 rad pos: 1.5,11.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19710 + - uid: 19744 components: - rot: -1.5707963267948966 rad pos: 9.5,0.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19711 + - uid: 19745 components: - rot: 1.5707963267948966 rad pos: -23.5,-89.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19712 + - uid: 19746 components: - rot: 3.141592653589793 rad pos: -21.5,-90.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19713 + - uid: 19747 components: - pos: 33.5,-14.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19714 + - uid: 19748 components: - rot: 3.141592653589793 rad pos: 10.5,-4.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19715 + - uid: 19749 components: - pos: 25.5,22.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19716 + - uid: 19750 components: - pos: 16.5,22.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19717 + - uid: 19751 components: - rot: -1.5707963267948966 rad pos: 16.5,-23.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19718 + - uid: 19752 components: - rot: 1.5707963267948966 rad pos: -4.5,-11.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19719 + - uid: 19753 components: - rot: -1.5707963267948966 rad pos: 22.5,12.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19720 + - uid: 19754 components: - rot: 3.141592653589793 rad pos: 46.5,-30.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19721 + - uid: 19755 components: - rot: -1.5707963267948966 rad pos: 45.5,-24.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19722 + - uid: 19756 components: - pos: -20.5,33.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19723 + - uid: 19757 components: - rot: -1.5707963267948966 rad pos: 3.5,1.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19724 + - uid: 19758 components: - pos: 21.5,17.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19725 + - uid: 19759 components: - rot: 1.5707963267948966 rad pos: 0.5,6.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19726 + - uid: 19760 components: - rot: 1.5707963267948966 rad pos: -28.5,-79.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19727 + - uid: 19761 components: - rot: 1.5707963267948966 rad pos: 20.5,-14.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19728 + - uid: 19762 components: - pos: 12.5,17.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19729 + - uid: 19763 components: - rot: 1.5707963267948966 rad pos: 23.5,-24.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19730 + - uid: 19764 components: - rot: 1.5707963267948966 rad pos: 6.5,14.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19731 + - uid: 19765 components: - rot: -1.5707963267948966 rad pos: 42.5,-25.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19732 + - uid: 19766 components: - rot: -1.5707963267948966 rad pos: -19.5,-75.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19733 + - uid: 19767 components: - rot: -1.5707963267948966 rad pos: -19.5,-70.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19734 + - uid: 19768 components: - rot: -1.5707963267948966 rad pos: -19.5,-66.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19735 + - uid: 19769 components: - rot: -1.5707963267948966 rad pos: -19.5,-63.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19736 + - uid: 19770 components: - rot: 3.141592653589793 rad pos: 9.5,-46.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19737 + - uid: 19771 components: - rot: 1.5707963267948966 rad pos: 35.5,-31.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19738 + - uid: 19772 components: - rot: -1.5707963267948966 rad pos: 9.5,10.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19739 + - uid: 19773 components: - rot: 1.5707963267948966 rad pos: -14.5,-37.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19740 + - uid: 19774 components: - pos: -9.5,-32.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19741 + - uid: 19775 components: - rot: 1.5707963267948966 rad pos: 0.5,19.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19742 + - uid: 19776 components: - pos: -0.5,-13.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19743 + - uid: 19777 components: - rot: 3.141592653589793 rad pos: 20.5,-47.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19744 + - uid: 19778 components: - pos: 28.5,28.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19745 + - uid: 19779 components: - rot: 3.141592653589793 rad pos: 44.5,14.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19746 + - uid: 19780 components: - pos: 47.5,16.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19747 + - uid: 19781 components: - rot: -1.5707963267948966 rad pos: 52.5,12.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19748 + - uid: 19782 components: - pos: 46.5,23.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19749 + - uid: 19783 components: - pos: 49.5,23.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19750 + - uid: 19784 components: - pos: 52.5,23.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19751 + - uid: 19785 components: - pos: 55.5,23.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19752 + - uid: 19786 components: - pos: 58.5,23.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19753 + - uid: 19787 components: - rot: -1.5707963267948966 rad pos: 61.5,19.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19754 + - uid: 19788 components: - rot: -1.5707963267948966 rad pos: 61.5,16.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19755 + - uid: 19789 components: - rot: 1.5707963267948966 rad pos: 57.5,12.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19756 + - uid: 19790 components: - rot: 3.141592653589793 rad pos: 40.5,19.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19757 + - uid: 19791 components: - rot: 1.5707963267948966 rad pos: 34.5,20.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19758 + - uid: 19792 components: - rot: -1.5707963267948966 rad pos: 56.5,1.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19759 + - uid: 19793 components: - rot: 1.5707963267948966 rad pos: 41.5,-1.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19760 + - uid: 19794 components: - rot: 1.5707963267948966 rad pos: 36.5,-2.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19761 + - uid: 19795 components: - rot: -1.5707963267948966 rad pos: 29.5,22.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19762 + - uid: 19796 components: - rot: 3.141592653589793 rad pos: 38.5,0.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19763 + - uid: 19797 components: - rot: -1.5707963267948966 rad pos: 46.5,-2.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19764 + - uid: 19798 components: - rot: 1.5707963267948966 rad pos: 41.5,9.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19765 + - uid: 19799 components: - rot: -1.5707963267948966 rad pos: 57.5,-12.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19766 + - uid: 19800 components: - rot: 3.141592653589793 rad pos: 73.5,-28.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19767 + - uid: 19801 components: - pos: 43.5,-37.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19768 + - uid: 19802 components: - rot: -1.5707963267948966 rad pos: 50.5,-43.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19769 + - uid: 19803 components: - pos: 55.5,-42.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19770 + - uid: 19804 components: - pos: 45.5,-42.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19771 + - uid: 19805 components: - pos: 56.5,-44.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19772 + - uid: 19806 components: - rot: 3.141592653589793 rad pos: 63.5,-47.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19773 + - uid: 19807 components: - rot: 1.5707963267948966 rad pos: 62.5,-26.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19774 + - uid: 19808 components: - pos: 63.5,-2.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19775 + - uid: 19809 components: - rot: 3.141592653589793 rad pos: 64.5,-52.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19776 + - uid: 19810 components: - rot: 3.141592653589793 rad pos: 42.5,-46.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19777 + - uid: 19811 components: - rot: -1.5707963267948966 rad pos: 50.5,-54.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19778 + - uid: 19812 components: - rot: 1.5707963267948966 rad pos: 48.5,-52.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19779 + - uid: 19813 components: - rot: 3.141592653589793 rad pos: 70.5,-49.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19780 + - uid: 19814 components: - rot: 1.5707963267948966 rad pos: 31.5,-52.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19781 + - uid: 19815 components: - rot: -1.5707963267948966 rad pos: 33.5,-56.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19782 + - uid: 19816 components: - rot: 1.5707963267948966 rad pos: 33.5,-48.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19783 + - uid: 19817 components: - pos: 34.5,-45.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19784 + - uid: 19818 components: - pos: 28.5,-48.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19785 + - uid: 19819 components: - rot: 3.141592653589793 rad pos: -13.5,6.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19786 + - uid: 19820 components: - rot: 3.141592653589793 rad pos: -19.5,4.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19787 + - uid: 19821 components: - pos: -24.5,-9.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19788 + - uid: 19822 components: - rot: 3.141592653589793 rad pos: -28.5,-11.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19789 + - uid: 19823 components: - rot: 1.5707963267948966 rad pos: -19.5,-19.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19790 + - uid: 19824 components: - rot: 3.141592653589793 rad pos: -23.5,-22.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19791 + - uid: 19825 components: - rot: -1.5707963267948966 rad pos: 54.5,-61.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19792 + - uid: 19826 components: - rot: 1.5707963267948966 rad pos: 50.5,-60.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 19793 + - uid: 19827 components: - pos: 40.5,-55.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19794 + - uid: 19828 components: - rot: 1.5707963267948966 rad pos: 39.5,-65.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19795 + - uid: 19829 components: - rot: -1.5707963267948966 rad pos: -17.5,-43.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19796 + - uid: 19830 components: - rot: 1.5707963267948966 rad pos: -19.5,-31.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19797 + - uid: 19831 components: - rot: 1.5707963267948966 rad pos: -19.5,-46.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19798 + - uid: 19832 components: - rot: -1.5707963267948966 rad pos: 30.5,-85.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19799 + - uid: 19833 components: - rot: -1.5707963267948966 rad pos: 49.5,-73.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19800 + - uid: 19834 components: - rot: -1.5707963267948966 rad pos: 41.5,-71.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19801 + - uid: 19835 components: - pos: 3.5,-57.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19802 + - uid: 19836 components: - rot: 3.141592653589793 rad pos: -29.5,-17.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19803 + - uid: 19837 components: - rot: -1.5707963267948966 rad pos: -31.5,-25.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19804 + - uid: 19838 components: - rot: 1.5707963267948966 rad pos: -34.5,-17.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19805 + - uid: 19839 components: - pos: -35.5,-9.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19806 + - uid: 19840 components: - rot: -1.5707963267948966 rad pos: -41.5,-15.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19807 + - uid: 19841 components: - pos: -44.5,-9.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19808 + - uid: 19842 components: - rot: 3.141592653589793 rad pos: -47.5,-22.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19809 + - uid: 19843 components: - rot: 3.141592653589793 rad pos: -50.5,-22.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19810 + - uid: 19844 components: - rot: 1.5707963267948966 rad pos: -53.5,-16.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19811 + - uid: 19845 components: - pos: -47.5,-5.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19812 + - uid: 19846 components: - rot: 3.141592653589793 rad pos: -56.5,-24.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19813 + - uid: 19847 components: - rot: -1.5707963267948966 rad pos: -67.5,-27.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19814 + - uid: 19848 components: - rot: 3.141592653589793 rad pos: -68.5,-31.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19815 + - uid: 19849 components: - rot: -1.5707963267948966 rad pos: -31.5,-37.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19816 + - uid: 19850 components: - rot: 3.141592653589793 rad pos: -33.5,-34.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19817 + - uid: 19851 components: - rot: 1.5707963267948966 rad pos: -38.5,-33.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19818 + - uid: 19852 components: - rot: -1.5707963267948966 rad pos: -24.5,-33.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19819 + - uid: 19853 components: - rot: 1.5707963267948966 rad pos: -43.5,-34.5 @@ -137652,486 +131120,386 @@ entities: - ShutdownSubscribers: - 97 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19820 + - uid: 19854 components: - rot: 3.141592653589793 rad pos: -24.5,-58.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19821 + - uid: 19855 components: - rot: 3.141592653589793 rad pos: -27.5,-70.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19822 + - uid: 19856 components: - rot: -1.5707963267948966 rad pos: -18.5,-57.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19823 + - uid: 19857 components: - rot: 3.141592653589793 rad pos: -42.5,-72.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19824 + - uid: 19858 components: - rot: -1.5707963267948966 rad pos: -19.5,16.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19825 + - uid: 19859 components: - rot: 3.141592653589793 rad pos: -23.5,19.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19826 + - uid: 19860 components: - pos: -28.5,21.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19827 + - uid: 19861 components: - rot: 3.141592653589793 rad pos: -33.5,19.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19828 + - uid: 19862 components: - rot: 1.5707963267948966 rad pos: -42.5,20.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19829 + - uid: 19863 components: - pos: -33.5,28.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19830 + - uid: 19864 components: - rot: -1.5707963267948966 rad pos: -37.5,29.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19831 + - uid: 19865 components: - rot: 1.5707963267948966 rad pos: -25.5,13.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19832 + - uid: 19866 components: - rot: 3.141592653589793 rad pos: -29.5,-3.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19833 + - uid: 19867 components: - rot: 3.141592653589793 rad pos: -39.5,-0.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19834 + - uid: 19868 components: - rot: -1.5707963267948966 rad pos: -37.5,3.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19835 + - uid: 19869 components: - rot: 1.5707963267948966 rad pos: -39.5,8.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19836 + - uid: 19870 components: - pos: -30.5,15.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19837 + - uid: 19871 components: - rot: 3.141592653589793 rad pos: -30.5,9.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19838 + - uid: 19872 components: - rot: 3.141592653589793 rad pos: -52.5,7.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19839 + - uid: 19873 components: - pos: -51.5,11.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19840 + - uid: 19874 components: - pos: -52.5,14.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19841 + - uid: 19875 components: - rot: -1.5707963267948966 rad pos: -42.5,10.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19842 + - uid: 19876 components: - rot: 1.5707963267948966 rad pos: -48.5,3.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19843 + - uid: 19877 components: - rot: 3.141592653589793 rad pos: -47.5,-0.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19844 + - uid: 19878 components: - pos: -46.5,15.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19845 + - uid: 19879 components: - rot: 1.5707963267948966 rad pos: 21.5,-54.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19846 + - uid: 19880 components: - rot: 3.141592653589793 rad pos: -54.5,-77.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19847 + - uid: 19881 components: - rot: 3.141592653589793 rad pos: -7.5,-26.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19848 + - uid: 19882 components: - pos: 17.5,-42.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19849 + - uid: 19883 components: - rot: 1.5707963267948966 rad pos: -25.5,-2.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19850 + - uid: 19884 components: - rot: 1.5707963267948966 rad pos: -35.5,-42.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19851 + - uid: 19885 components: - rot: 1.5707963267948966 rad pos: 39.5,45.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19852 + - uid: 19886 components: - rot: 1.5707963267948966 rad pos: 51.5,43.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19853 + - uid: 19887 components: - pos: 52.5,56.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19854 + - uid: 19888 components: - rot: -1.5707963267948966 rad pos: -12.5,34.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19855 + - uid: 19889 components: - rot: 1.5707963267948966 rad pos: -24.5,30.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19856 + - uid: 19890 components: - rot: -1.5707963267948966 rad pos: -14.5,43.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19857 + - uid: 19891 components: - rot: 1.5707963267948966 rad pos: -20.5,43.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19858 + - uid: 19892 components: - pos: 70.5,36.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 19859 + - uid: 19893 components: - rot: -1.5707963267948966 rad pos: -11.5,39.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19860 + - uid: 19894 components: - rot: -1.5707963267948966 rad pos: 1.5,69.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19861 + - uid: 19895 components: - rot: 1.5707963267948966 rad pos: -4.5,69.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19862 + - uid: 19896 components: - rot: -1.5707963267948966 rad pos: -1.5,62.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19863 + - uid: 19897 components: - pos: -1.5,68.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19864 + - uid: 19898 components: - rot: -1.5707963267948966 rad pos: 0.5,48.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19865 + - uid: 19899 components: - rot: 1.5707963267948966 rad pos: -22.5,58.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19866 + - uid: 19900 components: - pos: -17.5,63.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19867 + - uid: 19901 components: - pos: -21.5,73.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19868 + - uid: 19902 components: - pos: -13.5,73.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19869 + - uid: 19903 components: - rot: -1.5707963267948966 rad pos: -12.5,57.5 @@ -138140,330 +131508,262 @@ entities: - ShutdownSubscribers: - 73 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19870 + - uid: 19904 components: - rot: -1.5707963267948966 rad pos: 0.5,56.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19871 + - uid: 19905 components: - rot: -1.5707963267948966 rad pos: 30.5,45.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19872 + - uid: 19906 components: - rot: 1.5707963267948966 rad pos: 24.5,45.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19873 + - uid: 19907 components: - pos: -7.5,-92.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19874 + - uid: 19908 components: - pos: -21.5,-97.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19875 + - uid: 19909 components: - rot: -1.5707963267948966 rad pos: -6.5,-98.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19876 + - uid: 19910 components: - pos: -6.5,-84.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19877 + - uid: 19911 components: - rot: 1.5707963267948966 rad pos: -34.5,-96.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19878 + - uid: 19912 components: - rot: 3.141592653589793 rad pos: 65.5,-35.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19879 + - uid: 19913 components: - pos: 67.5,-33.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19880 + - uid: 19914 components: - rot: 3.141592653589793 rad pos: 73.5,-35.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19881 + - uid: 19915 components: - rot: -1.5707963267948966 rad pos: 75.5,-41.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19882 + - uid: 19916 components: - rot: -1.5707963267948966 rad pos: 72.5,-46.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19883 + - uid: 19917 components: - pos: 66.5,-38.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19884 + - uid: 19918 components: - rot: 3.141592653589793 rad pos: 5.5,-30.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19885 + - uid: 19919 components: - rot: 1.5707963267948966 rad pos: 59.5,-34.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19886 + - uid: 19920 components: - rot: 3.141592653589793 rad pos: -54.5,-63.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 19887 + - uid: 19921 components: - rot: -1.5707963267948966 rad pos: -15.5,25.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19888 + - uid: 19922 components: - rot: 1.5707963267948966 rad pos: -8.5,-12.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19889 + - uid: 19923 components: - rot: -1.5707963267948966 rad pos: -7.5,-22.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19890 + - uid: 19924 components: - pos: -10.5,-18.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19891 + - uid: 19925 components: - rot: 3.141592653589793 rad pos: -30.5,-70.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19892 + - uid: 19926 components: - rot: 3.141592653589793 rad pos: -28.5,-74.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19893 + - uid: 19927 components: - rot: 1.5707963267948966 rad pos: 61.5,-39.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19894 + - uid: 19928 components: - rot: 1.5707963267948966 rad pos: 19.5,-83.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19895 + - uid: 19929 components: - pos: 24.5,-72.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19896 + - uid: 19930 components: - rot: 3.141592653589793 rad pos: 48.5,-85.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19897 + - uid: 19931 components: - rot: 1.5707963267948966 rad pos: -16.5,66.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19898 + - uid: 19932 components: - rot: 1.5707963267948966 rad pos: 7.5,-22.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19899 + - uid: 19933 components: - pos: 45.5,7.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19900 + - uid: 19934 components: - rot: 3.141592653589793 rad pos: -44.5,30.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19901 + - uid: 19935 components: - pos: -46.5,43.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19902 + - uid: 19936 components: - rot: -1.5707963267948966 rad pos: 67.5,-31.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19903 + - uid: 19937 components: - rot: 1.5707963267948966 rad pos: -4.5,16.5 @@ -138472,11 +131772,9 @@ entities: - ShutdownSubscribers: - 94 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19904 + - uid: 19938 components: - rot: 1.5707963267948966 rad pos: -75.5,-41.5 @@ -138485,9 +131783,7 @@ entities: - ShutdownSubscribers: - 96 type: DeviceNetwork - - enabled: False - type: AmbientSound - - uid: 19905 + - uid: 19939 components: - rot: 3.141592653589793 rad pos: -1.5,-3.5 @@ -138496,11 +131792,9 @@ entities: - ShutdownSubscribers: - 99 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19906 + - uid: 19940 components: - pos: -1.5,-22.5 parent: 2 @@ -138508,11 +131802,9 @@ entities: - ShutdownSubscribers: - 100 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - - uid: 19907 + - uid: 19941 components: - rot: 3.141592653589793 rad pos: 28.5,-38.5 @@ -138521,13 +131813,11 @@ entities: - ShutdownSubscribers: - 78 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - proto: GasVolumePump entities: - - uid: 19908 + - uid: 19942 components: - rot: -1.5707963267948966 rad pos: -39.5,-57.5 @@ -138537,5239 +131827,5294 @@ entities: type: AtmosPipeColor - proto: Gauze1 entities: - - uid: 19909 + - uid: 19943 components: - pos: -6.3074856,-49.39305 parent: 2 type: Transform - proto: GeneratorBasic15kW entities: - - uid: 19910 + - uid: 19944 components: - pos: -58.5,-88.5 parent: 2 type: Transform - proto: Girder entities: - - uid: 19911 + - uid: 19945 components: - pos: -36.5,-68.5 parent: 2 type: Transform - - uid: 19912 + - uid: 19946 components: - pos: 20.5,-54.5 parent: 2 type: Transform - - uid: 19913 + - uid: 19947 components: - pos: -22.5,-64.5 parent: 2 type: Transform - - uid: 19914 + - uid: 19948 components: - pos: -23.5,-42.5 parent: 2 type: Transform - - uid: 19915 + - uid: 19949 components: - pos: -28.5,-39.5 parent: 2 type: Transform - - uid: 19916 + - uid: 19950 components: - pos: -16.5,13.5 parent: 2 type: Transform - proto: GoldOre1 entities: - - uid: 19917 + - uid: 19951 components: - rot: 3.141592653589793 rad pos: 19.789879,45.273663 parent: 2 type: Transform - - uid: 19918 + - uid: 19952 components: - pos: 79.30878,-64.25522 parent: 2 type: Transform - proto: GrassBattlemap entities: - - uid: 19919 + - uid: 19953 components: - pos: 10.688803,-6.590752 parent: 2 type: Transform - proto: GravityGenerator entities: - - uid: 19920 + - uid: 19954 components: - pos: -19.5,2.5 parent: 2 type: Transform - proto: GrenadeFlashBang entities: - - uid: 19921 + - uid: 19955 components: - pos: 52.279568,11.553763 parent: 2 type: Transform - proto: Grille entities: - - uid: 19922 + - uid: 19956 + components: + - pos: -51.5,-21.5 + parent: 2 + type: Transform + - uid: 19957 + components: + - pos: 9.5,29.5 + parent: 2 + type: Transform + - uid: 19958 components: - pos: -62.5,-35.5 parent: 2 type: Transform - - uid: 19923 + - uid: 19959 components: - pos: -44.5,-37.5 parent: 2 type: Transform - - uid: 19924 + - uid: 19960 components: - rot: -1.5707963267948966 rad pos: -77.5,-43.5 parent: 2 type: Transform - - uid: 19925 + - uid: 19961 components: - rot: 3.141592653589793 rad pos: -71.5,-27.5 parent: 2 type: Transform - - uid: 19926 + - uid: 19962 components: - rot: -1.5707963267948966 rad pos: -74.5,-42.5 parent: 2 type: Transform - - uid: 19927 + - uid: 19963 components: - pos: -76.5,-32.5 parent: 2 type: Transform - - uid: 19928 + - uid: 19964 components: - rot: 1.5707963267948966 rad pos: -64.5,-42.5 parent: 2 type: Transform - - uid: 19929 + - uid: 19965 components: - rot: 1.5707963267948966 rad pos: -64.5,-41.5 parent: 2 type: Transform - - uid: 19930 + - uid: 19966 components: - rot: 1.5707963267948966 rad pos: -64.5,-40.5 parent: 2 type: Transform - - uid: 19931 + - uid: 19967 components: - rot: 1.5707963267948966 rad pos: -64.5,-39.5 parent: 2 type: Transform - - uid: 19932 + - uid: 19968 components: - rot: 1.5707963267948966 rad pos: -74.5,-35.5 parent: 2 type: Transform - - uid: 19933 + - uid: 19969 components: - rot: 1.5707963267948966 rad pos: -74.5,-34.5 parent: 2 type: Transform - - uid: 19934 + - uid: 19970 components: - rot: -1.5707963267948966 rad pos: -75.5,-43.5 parent: 2 type: Transform - - uid: 19935 + - uid: 19971 components: - rot: -1.5707963267948966 rad pos: -77.5,-39.5 parent: 2 type: Transform - - uid: 19936 + - uid: 19972 components: - rot: -1.5707963267948966 rad pos: -75.5,-39.5 parent: 2 type: Transform - - uid: 19937 + - uid: 19973 components: - rot: -1.5707963267948966 rad pos: -76.5,-43.5 parent: 2 type: Transform - - uid: 19938 + - uid: 19974 components: - pos: -5.5,20.5 parent: 2 type: Transform - - uid: 19939 + - uid: 19975 components: - rot: 1.5707963267948966 rad pos: -7.5,13.5 parent: 2 type: Transform - - uid: 19940 + - uid: 19976 components: - pos: -4.5,20.5 parent: 2 type: Transform - - uid: 19941 + - uid: 19977 components: - rot: 3.141592653589793 rad pos: 5.5,18.5 parent: 2 type: Transform - - uid: 19942 + - uid: 19978 components: - rot: -1.5707963267948966 rad pos: -46.5,45.5 parent: 2 type: Transform - - uid: 19943 + - uid: 19979 components: - rot: -1.5707963267948966 rad pos: -45.5,45.5 parent: 2 type: Transform - - uid: 19944 + - uid: 19980 components: - rot: -1.5707963267948966 rad pos: -47.5,45.5 parent: 2 type: Transform - - uid: 19945 + - uid: 19981 components: - pos: 32.5,-9.5 parent: 2 type: Transform - - uid: 19946 + - uid: 19982 components: - rot: 3.141592653589793 rad pos: 28.5,-63.5 parent: 2 type: Transform - - uid: 19947 + - uid: 19983 components: - pos: 19.5,-0.5 parent: 2 type: Transform - - uid: 19948 + - uid: 19984 components: - pos: -24.5,-91.5 parent: 2 type: Transform - - uid: 19949 + - uid: 19985 components: - pos: -18.5,-88.5 parent: 2 type: Transform - - uid: 19950 + - uid: 19986 components: - pos: -18.5,-58.5 parent: 2 type: Transform - - uid: 19951 + - uid: 19987 components: - pos: 31.5,-15.5 parent: 2 type: Transform - - uid: 19952 + - uid: 19988 components: - pos: -9.5,-55.5 parent: 2 type: Transform - - uid: 19953 + - uid: 19989 components: - pos: -12.5,-55.5 parent: 2 type: Transform - - uid: 19954 + - uid: 19990 components: - pos: -4.5,-56.5 parent: 2 type: Transform - - uid: 19955 + - uid: 19991 components: - pos: 22.5,-20.5 parent: 2 type: Transform - - uid: 19956 + - uid: 19992 components: - pos: 21.5,5.5 parent: 2 type: Transform - - uid: 19957 + - uid: 19993 components: - pos: 23.5,5.5 parent: 2 type: Transform - - uid: 19958 + - uid: 19994 components: - pos: 25.5,5.5 parent: 2 type: Transform - - uid: 19959 + - uid: 19995 components: - pos: 3.5,-39.5 parent: 2 type: Transform - - uid: 19960 + - uid: 19996 components: - pos: -7.5,-56.5 parent: 2 type: Transform - - uid: 19961 + - uid: 19997 components: - pos: 1.5,-47.5 parent: 2 type: Transform - - uid: 19962 + - uid: 19998 components: - pos: 29.5,26.5 parent: 2 type: Transform - - uid: 19963 + - uid: 19999 components: - pos: -13.5,-56.5 parent: 2 type: Transform - - uid: 19964 + - uid: 20000 components: - pos: -7.5,-57.5 parent: 2 type: Transform - - uid: 19965 + - uid: 20001 components: - pos: 7.5,-59.5 parent: 2 type: Transform - - uid: 19966 + - uid: 20002 components: - pos: -18.5,-68.5 parent: 2 type: Transform - - uid: 19967 + - uid: 20003 components: - pos: -20.5,-68.5 parent: 2 type: Transform - - uid: 19968 + - uid: 20004 components: - pos: -3.5,-44.5 parent: 2 type: Transform - - uid: 19969 + - uid: 20005 components: - pos: 12.5,-34.5 parent: 2 type: Transform - - uid: 19970 + - uid: 20006 components: - pos: -1.5,49.5 parent: 2 type: Transform - - uid: 19971 + - uid: 20007 components: - rot: 3.141592653589793 rad pos: 3.5,-44.5 parent: 2 type: Transform - - uid: 19972 + - uid: 20008 components: - pos: 7.5,18.5 parent: 2 type: Transform - - uid: 19973 + - uid: 20009 components: - rot: 1.5707963267948966 rad pos: 23.5,-46.5 parent: 2 type: Transform - - uid: 19974 + - uid: 20010 components: - pos: 2.5,-62.5 parent: 2 type: Transform - - uid: 19975 + - uid: 20011 components: - pos: 3.5,-78.5 parent: 2 type: Transform - - uid: 19976 + - uid: 20012 components: - pos: -6.5,-55.5 parent: 2 type: Transform - - uid: 19977 + - uid: 20013 components: - pos: -12.5,-58.5 parent: 2 type: Transform - - uid: 19978 + - uid: 20014 components: - rot: 1.5707963267948966 rad pos: -17.5,26.5 parent: 2 type: Transform - - uid: 19979 + - uid: 20015 components: - pos: -1.5,-35.5 parent: 2 type: Transform - - uid: 19980 + - uid: 20016 components: - pos: -28.5,-47.5 parent: 2 type: Transform - - uid: 19981 + - uid: 20017 components: - pos: 24.5,-60.5 parent: 2 type: Transform - - uid: 19982 + - uid: 20018 components: - rot: 3.141592653589793 rad pos: 22.5,30.5 parent: 2 type: Transform - - uid: 19983 + - uid: 20019 components: - pos: 21.5,-3.5 parent: 2 type: Transform - - uid: 19984 + - uid: 20020 components: - pos: 23.5,-3.5 parent: 2 type: Transform - - uid: 19985 + - uid: 20021 components: - pos: -6.5,-58.5 parent: 2 type: Transform - - uid: 19986 + - uid: 20022 components: - pos: 25.5,24.5 parent: 2 type: Transform - - uid: 19987 + - uid: 20023 components: - pos: -10.5,-57.5 parent: 2 type: Transform - - uid: 19988 + - uid: 20024 components: - pos: 29.5,9.5 parent: 2 type: Transform - - uid: 19989 + - uid: 20025 components: - rot: 3.141592653589793 rad pos: 22.5,32.5 parent: 2 type: Transform - - uid: 19990 + - uid: 20026 components: - pos: 15.5,18.5 parent: 2 type: Transform - - uid: 19991 + - uid: 20027 components: - pos: -13.5,-11.5 parent: 2 type: Transform - - uid: 19992 + - uid: 20028 components: - rot: 3.141592653589793 rad pos: 33.5,-63.5 parent: 2 type: Transform - - uid: 19993 + - uid: 20029 components: - rot: 3.141592653589793 rad pos: 22.5,-55.5 parent: 2 type: Transform - - uid: 19994 + - uid: 20030 components: - pos: -9.5,-62.5 parent: 2 type: Transform - - uid: 19995 + - uid: 20031 components: - pos: 4.5,-85.5 parent: 2 type: Transform - - uid: 19996 + - uid: 20032 components: - pos: 18.5,-38.5 parent: 2 type: Transform - - uid: 19997 + - uid: 20033 components: - pos: 17.5,-36.5 parent: 2 type: Transform - - uid: 19998 + - uid: 20034 components: - pos: 17.5,-34.5 parent: 2 type: Transform - - uid: 19999 + - uid: 20035 components: - pos: -27.5,-89.5 parent: 2 type: Transform - - uid: 20000 + - uid: 20036 components: - pos: -1.5,-33.5 parent: 2 type: Transform - - uid: 20001 + - uid: 20037 components: - pos: 4.5,-84.5 parent: 2 type: Transform - - uid: 20002 + - uid: 20038 components: - pos: -14.5,-77.5 parent: 2 type: Transform - - uid: 20003 + - uid: 20039 components: - pos: -21.5,-91.5 parent: 2 type: Transform - - uid: 20004 + - uid: 20040 components: - pos: 4.5,-88.5 parent: 2 type: Transform - - uid: 20005 + - uid: 20041 components: - pos: -25.5,-91.5 parent: 2 type: Transform - - uid: 20006 + - uid: 20042 components: - pos: 4.5,-81.5 parent: 2 type: Transform - - uid: 20007 + - uid: 20043 components: - pos: -18.5,-89.5 parent: 2 type: Transform - - uid: 20008 + - uid: 20044 components: - pos: 4.5,-87.5 parent: 2 type: Transform - - uid: 20009 + - uid: 20045 components: - pos: 19.5,0.5 parent: 2 type: Transform - - uid: 20010 + - uid: 20046 components: - pos: 19.5,-38.5 parent: 2 type: Transform - - uid: 20011 + - uid: 20047 components: - pos: 23.5,-12.5 parent: 2 type: Transform - - uid: 20012 + - uid: 20048 components: - pos: 21.5,-15.5 parent: 2 type: Transform - - uid: 20013 + - uid: 20049 components: - pos: 19.5,1.5 parent: 2 type: Transform - - uid: 20014 + - uid: 20050 components: - pos: 28.5,-20.5 parent: 2 type: Transform - - uid: 20015 + - uid: 20051 components: - rot: 3.141592653589793 rad pos: 20.5,-55.5 parent: 2 type: Transform - - uid: 20016 + - uid: 20052 components: - rot: 3.141592653589793 rad pos: 21.5,-55.5 parent: 2 type: Transform - - uid: 20017 + - uid: 20053 components: - pos: 18.5,-66.5 parent: 2 type: Transform - - uid: 20018 + - uid: 20054 components: - pos: 18.5,-65.5 parent: 2 type: Transform - - uid: 20019 + - uid: 20055 components: - rot: 3.141592653589793 rad pos: 28.5,-62.5 parent: 2 type: Transform - - uid: 20020 + - uid: 20056 components: - pos: 42.5,-23.5 parent: 2 type: Transform - - uid: 20021 + - uid: 20057 components: - pos: 41.5,-23.5 parent: 2 type: Transform - - uid: 20022 + - uid: 20058 components: - rot: 3.141592653589793 rad pos: 31.5,-64.5 parent: 2 type: Transform - - uid: 20023 + - uid: 20059 components: - pos: -21.5,11.5 parent: 2 type: Transform - - uid: 20024 + - uid: 20060 components: - pos: -10.5,-11.5 parent: 2 type: Transform - - uid: 20025 + - uid: 20061 components: - pos: -12.5,-16.5 parent: 2 type: Transform - - uid: 20026 + - uid: 20062 components: - rot: -1.5707963267948966 rad pos: -26.5,-9.5 parent: 2 type: Transform - - uid: 20027 + - uid: 20063 components: - pos: 12.5,-33.5 parent: 2 type: Transform - - uid: 20028 + - uid: 20064 components: - pos: 12.5,-32.5 parent: 2 type: Transform - - uid: 20029 + - uid: 20065 components: - rot: 3.141592653589793 rad pos: 26.5,-20.5 parent: 2 type: Transform - - uid: 20030 + - uid: 20066 components: - pos: 3.5,-36.5 parent: 2 type: Transform - - uid: 20031 + - uid: 20067 components: - pos: 2.5,-39.5 parent: 2 type: Transform - - uid: 20032 + - uid: 20068 components: - rot: 3.141592653589793 rad pos: 22.5,29.5 parent: 2 type: Transform - - uid: 20033 + - uid: 20069 components: - rot: 3.141592653589793 rad pos: 22.5,31.5 parent: 2 type: Transform - - uid: 20034 + - uid: 20070 components: - rot: 3.141592653589793 rad pos: 22.5,33.5 parent: 2 type: Transform - - uid: 20035 + - uid: 20071 components: - rot: 3.141592653589793 rad pos: 22.5,37.5 parent: 2 type: Transform - - uid: 20036 + - uid: 20072 components: - pos: 5.5,-58.5 parent: 2 type: Transform - - uid: 20037 + - uid: 20073 components: - rot: -1.5707963267948966 rad pos: 43.5,5.5 parent: 2 type: Transform - - uid: 20038 + - uid: 20074 components: - pos: 4.5,-86.5 parent: 2 type: Transform - - uid: 20039 + - uid: 20075 components: - pos: 4.5,-83.5 parent: 2 type: Transform - - uid: 20040 + - uid: 20076 components: - pos: 18.5,33.5 parent: 2 type: Transform - - uid: 20041 + - uid: 20077 components: - pos: -1.5,-31.5 parent: 2 type: Transform - - uid: 20042 + - uid: 20078 components: - pos: 15.5,-68.5 parent: 2 type: Transform - - uid: 20043 + - uid: 20079 components: - pos: 42.5,-28.5 parent: 2 type: Transform - - uid: 20044 + - uid: 20080 components: - pos: 41.5,-28.5 parent: 2 type: Transform - - uid: 20045 + - uid: 20081 components: - rot: -1.5707963267948966 rad pos: -31.5,-77.5 parent: 2 type: Transform - - uid: 20046 + - uid: 20082 components: - pos: -1.5,-32.5 parent: 2 type: Transform - - uid: 20047 + - uid: 20083 components: - rot: 3.141592653589793 rad pos: 6.5,-20.5 parent: 2 type: Transform - - uid: 20048 + - uid: 20084 components: - pos: 0.5,-62.5 parent: 2 type: Transform - - uid: 20049 + - uid: 20085 components: - pos: 7.5,-61.5 parent: 2 type: Transform - - uid: 20050 + - uid: 20086 components: - pos: 26.5,-3.5 parent: 2 type: Transform - - uid: 20051 + - uid: 20087 components: - pos: -13.5,37.5 parent: 2 type: Transform - - uid: 20052 + - uid: 20088 components: - pos: -15.5,-77.5 parent: 2 type: Transform - - uid: 20053 + - uid: 20089 components: - pos: 3.5,-79.5 parent: 2 type: Transform - - uid: 20054 + - uid: 20090 components: - pos: 19.5,2.5 parent: 2 type: Transform - - uid: 20055 + - uid: 20091 components: - rot: -1.5707963267948966 rad pos: -21.5,-20.5 parent: 2 type: Transform - - uid: 20056 + - uid: 20092 components: - pos: 34.5,9.5 parent: 2 type: Transform - - uid: 20057 + - uid: 20093 components: - pos: 35.5,4.5 parent: 2 type: Transform - - uid: 20058 + - uid: 20094 components: - pos: 1.5,-56.5 parent: 2 type: Transform - - uid: 20059 + - uid: 20095 components: - pos: 1.5,-57.5 parent: 2 type: Transform - - uid: 20060 + - uid: 20096 components: - pos: -10.5,-56.5 parent: 2 type: Transform - - uid: 20061 + - uid: 20097 components: - pos: -13.5,-57.5 parent: 2 type: Transform - - uid: 20062 + - uid: 20098 components: - pos: -4.5,-44.5 parent: 2 type: Transform - - uid: 20063 + - uid: 20099 components: - pos: -5.5,-44.5 parent: 2 type: Transform - - uid: 20064 + - uid: 20100 components: - pos: 5.5,-44.5 parent: 2 type: Transform - - uid: 20065 + - uid: 20101 components: - pos: 4.5,-44.5 parent: 2 type: Transform - - uid: 20066 + - uid: 20102 components: - pos: 18.5,32.5 parent: 2 type: Transform - - uid: 20067 + - uid: 20103 components: - pos: -0.5,-62.5 parent: 2 type: Transform - - uid: 20068 + - uid: 20104 components: - pos: -8.5,-62.5 parent: 2 type: Transform - - uid: 20069 + - uid: 20105 components: - pos: 3.5,-77.5 parent: 2 type: Transform - - uid: 20070 + - uid: 20106 components: - rot: 3.141592653589793 rad pos: 33.5,-62.5 parent: 2 type: Transform - - uid: 20071 + - uid: 20107 components: - rot: 3.141592653589793 rad pos: 30.5,-64.5 parent: 2 type: Transform - - uid: 20072 + - uid: 20108 components: - pos: 9.5,14.5 parent: 2 type: Transform - - uid: 20073 + - uid: 20109 components: - rot: 3.141592653589793 rad pos: 22.5,28.5 parent: 2 type: Transform - - uid: 20074 + - uid: 20110 components: - pos: 68.5,-56.5 parent: 2 type: Transform - - uid: 20075 + - uid: 20111 components: - pos: -1.5,-57.5 parent: 2 type: Transform - - uid: 20076 + - uid: 20112 components: - pos: -1.5,-56.5 parent: 2 type: Transform - - uid: 20077 + - uid: 20113 components: - pos: 2.5,-58.5 parent: 2 type: Transform - - uid: 20078 + - uid: 20114 components: - pos: -3.5,-58.5 parent: 2 type: Transform - - uid: 20079 + - uid: 20115 components: - pos: 4.5,-62.5 parent: 2 type: Transform - - uid: 20080 + - uid: 20116 components: - pos: -0.5,-58.5 parent: 2 type: Transform - - uid: 20081 + - uid: 20117 components: - pos: 31.5,-38.5 parent: 2 type: Transform - - uid: 20082 + - uid: 20118 components: - pos: 33.5,-36.5 parent: 2 type: Transform - - uid: 20083 + - uid: 20119 components: - pos: 33.5,-34.5 parent: 2 type: Transform - - uid: 20084 + - uid: 20120 components: - pos: 26.5,5.5 parent: 2 type: Transform - - uid: 20085 + - uid: 20121 components: - pos: 9.5,13.5 parent: 2 type: Transform - - uid: 20086 + - uid: 20122 components: - pos: 17.5,18.5 parent: 2 type: Transform - - uid: 20087 + - uid: 20123 components: - rot: 3.141592653589793 rad pos: -7.5,-76.5 parent: 2 type: Transform - - uid: 20088 + - uid: 20124 components: - pos: 24.5,-59.5 parent: 2 type: Transform - - uid: 20089 + - uid: 20125 components: - pos: -29.5,45.5 parent: 2 type: Transform - - uid: 20090 + - uid: 20126 components: - pos: 24.5,-58.5 parent: 2 type: Transform - - uid: 20091 + - uid: 20127 components: - pos: -6.5,-36.5 parent: 2 type: Transform - - uid: 20092 + - uid: 20128 components: - pos: 19.5,-1.5 parent: 2 type: Transform - - uid: 20093 + - uid: 20129 components: - pos: -1.5,-34.5 parent: 2 type: Transform - - uid: 20094 + - uid: 20130 components: - pos: -27.5,-88.5 parent: 2 type: Transform - - uid: 20095 + - uid: 20131 components: - pos: -20.5,-91.5 parent: 2 type: Transform - - uid: 20096 + - uid: 20132 components: - pos: 17.5,-35.5 parent: 2 type: Transform - - uid: 20097 + - uid: 20133 components: - pos: 33.5,-35.5 parent: 2 type: Transform - - uid: 20098 + - uid: 20134 components: - pos: 22.5,5.5 parent: 2 type: Transform - - uid: 20099 + - uid: 20135 components: - pos: 27.5,5.5 parent: 2 type: Transform - - uid: 20100 + - uid: 20136 components: - pos: 35.5,7.5 parent: 2 type: Transform - - uid: 20101 + - uid: 20137 components: - pos: 32.5,9.5 parent: 2 type: Transform - - uid: 20102 + - uid: 20138 components: - rot: 3.141592653589793 rad pos: 22.5,34.5 parent: 2 type: Transform - - uid: 20103 + - uid: 20139 components: - pos: -3.5,-55.5 parent: 2 type: Transform - - uid: 20104 + - uid: 20140 components: - pos: -0.5,-55.5 parent: 2 type: Transform - - uid: 20105 + - uid: 20141 components: - pos: 2.5,-55.5 parent: 2 type: Transform - - uid: 20106 + - uid: 20142 components: - pos: -20.5,-58.5 parent: 2 type: Transform - - uid: 20107 + - uid: 20143 components: - pos: -9.5,-58.5 parent: 2 type: Transform - - uid: 20108 + - uid: 20144 components: - rot: -1.5707963267948966 rad pos: -31.5,-79.5 parent: 2 type: Transform - - uid: 20109 + - uid: 20145 components: - rot: 3.141592653589793 rad pos: 37.5,-35.5 parent: 2 type: Transform - - uid: 20110 + - uid: 20146 components: - pos: 33.5,-15.5 parent: 2 type: Transform - - uid: 20111 + - uid: 20147 components: - pos: -13.5,39.5 parent: 2 type: Transform - - uid: 20112 + - uid: 20148 components: - pos: -4.5,-57.5 parent: 2 type: Transform - - uid: 20113 + - uid: 20149 components: - pos: 19.5,3.5 parent: 2 type: Transform - - uid: 20114 + - uid: 20150 components: - pos: 4.5,-82.5 parent: 2 type: Transform - - uid: 20115 + - uid: 20151 components: - pos: 32.5,-38.5 parent: 2 type: Transform - - uid: 20116 + - uid: 20152 components: - rot: 3.141592653589793 rad pos: 6.5,-19.5 parent: 2 type: Transform - - uid: 20117 + - uid: 20153 components: - pos: 23.5,-20.5 parent: 2 type: Transform - - uid: 20118 + - uid: 20154 components: - pos: 25.5,-20.5 parent: 2 type: Transform - - uid: 20119 + - uid: 20155 components: - pos: 27.5,-20.5 parent: 2 type: Transform - - uid: 20120 + - uid: 20156 components: - pos: 19.5,-15.5 parent: 2 type: Transform - - uid: 20121 + - uid: 20157 components: - pos: 23.5,-11.5 parent: 2 type: Transform - - uid: 20122 + - uid: 20158 components: - pos: 25.5,-3.5 parent: 2 type: Transform - - uid: 20123 + - uid: 20159 components: - pos: 27.5,-3.5 parent: 2 type: Transform - - uid: 20124 + - uid: 20160 components: - pos: 22.5,-3.5 parent: 2 type: Transform - - uid: 20125 + - uid: 20161 components: - rot: 3.141592653589793 rad pos: -9.5,-76.5 parent: 2 type: Transform - - uid: 20126 + - uid: 20162 components: - rot: 3.141592653589793 rad pos: 24.5,-20.5 parent: 2 type: Transform - - uid: 20127 + - uid: 20163 components: - pos: 16.5,-68.5 parent: 2 type: Transform - - uid: 20128 + - uid: 20164 components: - rot: 3.141592653589793 rad pos: 31.5,13.5 parent: 2 type: Transform - - uid: 20129 + - uid: 20165 components: - rot: 3.141592653589793 rad pos: 34.5,13.5 parent: 2 type: Transform - - uid: 20130 + - uid: 20166 components: - pos: -6.5,-37.5 parent: 2 type: Transform - - uid: 20131 + - uid: 20167 components: - pos: -6.5,-38.5 parent: 2 type: Transform - - uid: 20132 + - uid: 20168 components: - pos: -9.5,-40.5 parent: 2 type: Transform - - uid: 20133 + - uid: 20169 components: - pos: -10.5,-40.5 parent: 2 type: Transform - - uid: 20134 + - uid: 20170 components: - pos: -11.5,-40.5 parent: 2 type: Transform - - uid: 20135 + - uid: 20171 components: - rot: -1.5707963267948966 rad pos: 68.5,-4.5 parent: 2 type: Transform - - uid: 20136 + - uid: 20172 components: - pos: -12.5,-11.5 parent: 2 type: Transform - - uid: 20137 + - uid: 20173 components: - pos: -9.5,-11.5 parent: 2 type: Transform - - uid: 20138 + - uid: 20174 components: - pos: -8.5,-11.5 parent: 2 type: Transform - - uid: 20139 + - uid: 20175 components: - pos: -10.5,-16.5 parent: 2 type: Transform - - uid: 20140 + - uid: 20176 components: - rot: 3.141592653589793 rad pos: 28.5,13.5 parent: 2 type: Transform - - uid: 20141 + - uid: 20177 components: - rot: 3.141592653589793 rad pos: 39.5,8.5 parent: 2 type: Transform - - uid: 20142 + - uid: 20178 components: - rot: 3.141592653589793 rad pos: 39.5,5.5 parent: 2 type: Transform - - uid: 20143 + - uid: 20179 components: - pos: -12.5,14.5 parent: 2 type: Transform - - uid: 20144 + - uid: 20180 components: - rot: 1.5707963267948966 rad pos: 20.5,-44.5 parent: 2 type: Transform - - uid: 20145 + - uid: 20181 components: - pos: 37.5,-36.5 parent: 2 type: Transform - - uid: 20146 + - uid: 20182 components: - pos: 33.5,37.5 parent: 2 type: Transform - - uid: 20147 + - uid: 20183 components: - pos: 32.5,37.5 parent: 2 type: Transform - - uid: 20148 + - uid: 20184 components: - pos: 31.5,37.5 parent: 2 type: Transform - - uid: 20149 + - uid: 20185 components: - pos: 30.5,37.5 parent: 2 type: Transform - - uid: 20150 + - uid: 20186 components: - pos: 29.5,37.5 parent: 2 type: Transform - - uid: 20151 + - uid: 20187 components: - pos: 28.5,37.5 parent: 2 type: Transform - - uid: 20152 + - uid: 20188 components: - pos: 27.5,37.5 parent: 2 type: Transform - - uid: 20153 + - uid: 20189 components: - pos: 26.5,37.5 parent: 2 type: Transform - - uid: 20154 + - uid: 20190 components: - pos: 25.5,37.5 parent: 2 type: Transform - - uid: 20155 + - uid: 20191 components: - rot: 3.141592653589793 rad pos: 23.5,37.5 parent: 2 type: Transform - - uid: 20156 + - uid: 20192 components: - pos: 43.5,11.5 parent: 2 type: Transform - - uid: 20157 + - uid: 20193 components: - pos: 43.5,10.5 parent: 2 type: Transform - - uid: 20158 + - uid: 20194 components: - pos: 53.5,14.5 parent: 2 type: Transform - - uid: 20159 + - uid: 20195 components: - pos: 52.5,14.5 parent: 2 type: Transform - - uid: 20160 + - uid: 20196 components: - pos: 54.5,14.5 parent: 2 type: Transform - - uid: 20161 + - uid: 20197 components: - pos: 51.5,13.5 parent: 2 type: Transform - - uid: 20162 + - uid: 20198 components: - pos: 51.5,11.5 parent: 2 type: Transform - - uid: 20163 + - uid: 20199 components: - pos: 55.5,13.5 parent: 2 type: Transform - - uid: 20164 + - uid: 20200 components: - pos: 55.5,12.5 parent: 2 type: Transform - - uid: 20165 + - uid: 20201 components: - pos: 55.5,11.5 parent: 2 type: Transform - - uid: 20166 + - uid: 20202 components: - pos: 52.5,10.5 parent: 2 type: Transform - - uid: 20167 + - uid: 20203 components: - pos: 54.5,10.5 parent: 2 type: Transform - - uid: 20168 + - uid: 20204 components: - pos: 27.5,22.5 parent: 2 type: Transform - - uid: 20169 + - uid: 20205 components: - pos: -15.5,2.5 parent: 2 type: Transform - - uid: 20170 + - uid: 20206 components: - pos: 48.5,-0.5 parent: 2 type: Transform - - uid: 20171 + - uid: 20207 components: - pos: 43.5,-0.5 parent: 2 type: Transform - - uid: 20172 + - uid: 20208 components: - pos: 42.5,-0.5 parent: 2 type: Transform - - uid: 20173 + - uid: 20209 components: - pos: 41.5,-0.5 parent: 2 type: Transform - - uid: 20174 + - uid: 20210 components: - pos: 39.5,-0.5 parent: 2 type: Transform - - uid: 20175 + - uid: 20211 components: - pos: 37.5,-0.5 parent: 2 type: Transform - - uid: 20176 + - uid: 20212 components: - pos: 35.5,-1.5 parent: 2 type: Transform - - uid: 20177 + - uid: 20213 components: - pos: 35.5,-2.5 parent: 2 type: Transform - - uid: 20178 + - uid: 20214 components: - pos: 35.5,-4.5 parent: 2 type: Transform - - uid: 20179 + - uid: 20215 components: - pos: 35.5,-5.5 parent: 2 type: Transform - - uid: 20180 + - uid: 20216 components: - rot: -1.5707963267948966 rad pos: 36.5,24.5 parent: 2 type: Transform - - uid: 20181 + - uid: 20217 components: - rot: -1.5707963267948966 rad pos: 38.5,24.5 parent: 2 type: Transform - - uid: 20182 + - uid: 20218 components: - rot: -1.5707963267948966 rad pos: 40.5,24.5 parent: 2 type: Transform - - uid: 20183 + - uid: 20219 components: - rot: -1.5707963267948966 rad pos: 42.5,24.5 parent: 2 type: Transform - - uid: 20184 + - uid: 20220 components: - rot: 3.141592653589793 rad pos: 22.5,27.5 parent: 2 type: Transform - - uid: 20185 + - uid: 20221 components: - pos: 43.5,7.5 parent: 2 type: Transform - - uid: 20186 + - uid: 20222 components: - pos: 66.5,25.5 parent: 2 type: Transform - - uid: 20187 + - uid: 20223 components: - pos: 66.5,23.5 parent: 2 type: Transform - - uid: 20188 + - uid: 20224 components: - pos: 64.5,27.5 parent: 2 type: Transform - - uid: 20189 + - uid: 20225 components: - pos: 62.5,27.5 parent: 2 type: Transform - - uid: 20190 + - uid: 20226 components: - rot: -1.5707963267948966 rad pos: 42.5,-44.5 parent: 2 type: Transform - - uid: 20191 + - uid: 20227 components: - pos: 46.5,9.5 parent: 2 type: Transform - - uid: 20192 + - uid: 20228 components: - rot: -1.5707963267948966 rad pos: 67.5,-7.5 parent: 2 type: Transform - - uid: 20193 + - uid: 20229 components: - rot: -1.5707963267948966 rad pos: 66.5,-0.5 parent: 2 type: Transform - - uid: 20194 + - uid: 20230 components: - rot: -1.5707963267948966 rad pos: 66.5,-1.5 parent: 2 type: Transform - - uid: 20195 + - uid: 20231 components: - pos: 60.5,-4.5 parent: 2 type: Transform - - uid: 20196 + - uid: 20232 components: - rot: -1.5707963267948966 rad pos: 67.5,-8.5 parent: 2 type: Transform - - uid: 20197 + - uid: 20233 components: - rot: -1.5707963267948966 rad pos: 67.5,-9.5 parent: 2 type: Transform - - uid: 20198 + - uid: 20234 components: - rot: -1.5707963267948966 rad pos: 68.5,-2.5 parent: 2 type: Transform - - uid: 20199 + - uid: 20235 components: - rot: -1.5707963267948966 rad pos: 68.5,-10.5 parent: 2 type: Transform - - uid: 20200 + - uid: 20236 components: - rot: -1.5707963267948966 rad pos: 68.5,-12.5 parent: 2 type: Transform - - uid: 20201 + - uid: 20237 components: - rot: -1.5707963267948966 rad pos: 68.5,-6.5 parent: 2 type: Transform - - uid: 20202 + - uid: 20238 components: - pos: 61.5,-18.5 parent: 2 type: Transform - - uid: 20203 + - uid: 20239 components: - pos: 63.5,-18.5 parent: 2 type: Transform - - uid: 20204 + - uid: 20240 components: - pos: 61.5,-20.5 parent: 2 type: Transform - - uid: 20205 + - uid: 20241 components: - pos: 63.5,-20.5 parent: 2 type: Transform - - uid: 20206 + - uid: 20242 components: - pos: 61.5,-22.5 parent: 2 type: Transform - - uid: 20207 + - uid: 20243 components: - pos: 63.5,-22.5 parent: 2 type: Transform - - uid: 20208 + - uid: 20244 components: - pos: 61.5,-24.5 parent: 2 type: Transform - - uid: 20209 + - uid: 20245 components: - pos: 63.5,-24.5 parent: 2 type: Transform - - uid: 20210 + - uid: 20246 components: - pos: 63.5,-26.5 parent: 2 type: Transform - - uid: 20211 + - uid: 20247 components: - pos: 49.5,-62.5 parent: 2 type: Transform - - uid: 20212 + - uid: 20248 components: - pos: 56.5,-46.5 parent: 2 type: Transform - - uid: 20213 + - uid: 20249 components: - pos: 63.5,-50.5 parent: 2 type: Transform - - uid: 20214 + - uid: 20250 components: - pos: 61.5,-50.5 parent: 2 type: Transform - - uid: 20215 + - uid: 20251 components: - pos: 58.5,-51.5 parent: 2 type: Transform - - uid: 20216 + - uid: 20252 components: - pos: 58.5,-52.5 parent: 2 type: Transform - - uid: 20217 + - uid: 20253 components: - pos: 54.5,-51.5 parent: 2 type: Transform - - uid: 20218 + - uid: 20254 components: - pos: 54.5,-52.5 parent: 2 type: Transform - - uid: 20219 + - uid: 20255 components: - pos: 54.5,-53.5 parent: 2 type: Transform - - uid: 20220 + - uid: 20256 components: - pos: 61.5,-56.5 parent: 2 type: Transform - - uid: 20221 + - uid: 20257 components: - pos: 62.5,-56.5 parent: 2 type: Transform - - uid: 20222 + - uid: 20258 components: - pos: 63.5,-56.5 parent: 2 type: Transform - - uid: 20223 + - uid: 20259 components: - pos: 66.5,-51.5 parent: 2 type: Transform - - uid: 20224 + - uid: 20260 components: - pos: 66.5,-52.5 parent: 2 type: Transform - - uid: 20225 + - uid: 20261 components: - pos: 36.5,33.5 parent: 2 type: Transform - - uid: 20226 + - uid: 20262 components: - pos: 36.5,32.5 parent: 2 type: Transform - - uid: 20227 + - uid: 20263 components: - pos: 36.5,31.5 parent: 2 type: Transform - - uid: 20228 + - uid: 20264 components: - pos: 36.5,30.5 parent: 2 type: Transform - - uid: 20229 + - uid: 20265 components: - pos: 36.5,29.5 parent: 2 type: Transform - - uid: 20230 + - uid: 20266 components: - pos: 36.5,28.5 parent: 2 type: Transform - - uid: 20231 + - uid: 20267 components: - pos: 36.5,27.5 parent: 2 type: Transform - - uid: 20232 + - uid: 20268 components: - pos: 51.5,-62.5 parent: 2 type: Transform - - uid: 20233 + - uid: 20269 components: - rot: -1.5707963267948966 rad pos: 71.5,-50.5 parent: 2 type: Transform - - uid: 20234 + - uid: 20270 components: - pos: 68.5,-42.5 parent: 2 type: Transform - - uid: 20235 + - uid: 20271 components: - pos: 77.5,-38.5 parent: 2 type: Transform - - uid: 20236 + - uid: 20272 components: - pos: 78.5,-46.5 parent: 2 type: Transform - - uid: 20237 + - uid: 20273 components: - rot: 1.5707963267948966 rad pos: 33.5,-57.5 parent: 2 type: Transform - - uid: 20238 + - uid: 20274 components: - rot: 1.5707963267948966 rad pos: 32.5,-57.5 parent: 2 type: Transform - - uid: 20239 + - uid: 20275 components: - rot: 1.5707963267948966 rad pos: 30.5,-57.5 parent: 2 type: Transform - - uid: 20240 + - uid: 20276 components: - rot: 1.5707963267948966 rad pos: 29.5,-57.5 parent: 2 type: Transform - - uid: 20241 + - uid: 20277 components: - rot: 1.5707963267948966 rad pos: 27.5,-54.5 parent: 2 type: Transform - - uid: 20242 + - uid: 20278 components: - rot: 1.5707963267948966 rad pos: 27.5,-55.5 parent: 2 type: Transform - - uid: 20243 + - uid: 20279 components: - rot: 1.5707963267948966 rad pos: 27.5,-51.5 parent: 2 type: Transform - - uid: 20244 + - uid: 20280 components: - rot: 1.5707963267948966 rad pos: 27.5,-47.5 parent: 2 type: Transform - - uid: 20245 + - uid: 20281 components: - rot: 3.141592653589793 rad pos: 64.5,-37.5 parent: 2 type: Transform - - uid: 20246 + - uid: 20282 components: - pos: -12.5,-44.5 parent: 2 type: Transform - - uid: 20247 + - uid: 20283 components: - pos: -13.5,-44.5 parent: 2 type: Transform - - uid: 20248 + - uid: 20284 components: - pos: -14.5,-44.5 parent: 2 type: Transform - - uid: 20249 + - uid: 20285 components: - rot: 3.141592653589793 rad pos: 49.5,-59.5 parent: 2 type: Transform - - uid: 20250 + - uid: 20286 components: - rot: 3.141592653589793 rad pos: 50.5,-59.5 parent: 2 type: Transform - - uid: 20251 + - uid: 20287 components: - pos: -19.5,5.5 parent: 2 type: Transform - - uid: 20252 + - uid: 20288 components: - pos: -23.5,2.5 parent: 2 type: Transform - - uid: 20253 + - uid: 20289 components: - pos: -2.5,42.5 parent: 2 type: Transform - - uid: 20254 + - uid: 20290 components: - rot: -1.5707963267948966 rad pos: -21.5,-22.5 parent: 2 type: Transform - - uid: 20255 + - uid: 20291 components: - pos: -21.5,-13.5 parent: 2 type: Transform - - uid: 20256 + - uid: 20292 components: - pos: -21.5,-14.5 parent: 2 type: Transform - - uid: 20257 + - uid: 20293 components: - pos: -21.5,-9.5 parent: 2 type: Transform - - uid: 20258 + - uid: 20294 components: - pos: -21.5,-10.5 parent: 2 type: Transform - - uid: 20259 + - uid: 20295 components: - pos: -26.5,-10.5 parent: 2 type: Transform - - uid: 20260 + - uid: 20296 components: - pos: -26.5,-11.5 parent: 2 type: Transform - - uid: 20261 + - uid: 20297 components: - pos: -30.5,-12.5 parent: 2 type: Transform - - uid: 20262 + - uid: 20298 components: - pos: -30.5,-13.5 parent: 2 type: Transform - - uid: 20263 + - uid: 20299 components: - pos: -22.5,-3.5 parent: 2 type: Transform - - uid: 20264 + - uid: 20300 components: - pos: -21.5,-3.5 parent: 2 type: Transform - - uid: 20265 + - uid: 20301 components: - pos: -22.5,-1.5 parent: 2 type: Transform - - uid: 20266 + - uid: 20302 components: - pos: -21.5,-1.5 parent: 2 type: Transform - - uid: 20267 + - uid: 20303 components: - pos: -17.5,-1.5 parent: 2 type: Transform - - uid: 20268 + - uid: 20304 components: - pos: -16.5,-1.5 parent: 2 type: Transform - - uid: 20269 + - uid: 20305 components: - pos: -19.5,0.5 parent: 2 type: Transform - - uid: 20270 + - uid: 20306 components: - pos: -17.5,0.5 parent: 2 type: Transform - - uid: 20271 + - uid: 20307 components: - pos: -16.5,0.5 parent: 2 type: Transform - - uid: 20272 + - uid: 20308 components: - pos: -17.5,-3.5 parent: 2 type: Transform - - uid: 20273 + - uid: 20309 components: - pos: -16.5,-3.5 parent: 2 type: Transform - - uid: 20274 + - uid: 20310 components: - rot: 1.5707963267948966 rad pos: -26.5,-13.5 parent: 2 type: Transform - - uid: 20275 + - uid: 20311 components: - rot: -1.5707963267948966 rad pos: -24.5,-18.5 parent: 2 type: Transform - - uid: 20276 + - uid: 20312 components: - pos: 52.5,-57.5 parent: 2 type: Transform - - uid: 20277 + - uid: 20313 components: - rot: 3.141592653589793 rad pos: 56.5,-55.5 parent: 2 type: Transform - - uid: 20278 + - uid: 20314 components: - rot: 3.141592653589793 rad pos: 59.5,-54.5 parent: 2 type: Transform - - uid: 20279 + - uid: 20315 components: - rot: 3.141592653589793 rad pos: 65.5,-54.5 parent: 2 type: Transform - - uid: 20280 + - uid: 20316 components: - pos: 41.5,-74.5 parent: 2 type: Transform - - uid: 20281 + - uid: 20317 components: - pos: 32.5,-77.5 parent: 2 type: Transform - - uid: 20282 + - uid: 20318 components: - pos: 32.5,-78.5 parent: 2 type: Transform - - uid: 20283 + - uid: 20319 components: - pos: 32.5,-79.5 parent: 2 type: Transform - - uid: 20284 + - uid: 20320 components: - rot: 3.141592653589793 rad pos: 25.5,-80.5 parent: 2 type: Transform - - uid: 20285 + - uid: 20321 components: - rot: 3.141592653589793 rad pos: 51.5,-73.5 parent: 2 type: Transform - - uid: 20286 + - uid: 20322 components: - rot: 1.5707963267948966 rad pos: 34.5,-84.5 parent: 2 type: Transform - - uid: 20287 + - uid: 20323 components: - pos: 17.5,-71.5 parent: 2 type: Transform - - uid: 20288 + - uid: 20324 components: - pos: 18.5,-71.5 parent: 2 type: Transform - - uid: 20289 + - uid: 20325 components: - rot: 1.5707963267948966 rad pos: 34.5,-85.5 parent: 2 type: Transform - - uid: 20290 + - uid: 20326 components: - rot: 1.5707963267948966 rad pos: 34.5,-86.5 parent: 2 type: Transform - - uid: 20291 + - uid: 20327 components: - pos: 15.5,-71.5 parent: 2 type: Transform - - uid: 20292 + - uid: 20328 components: - pos: 18.5,-74.5 parent: 2 type: Transform - - uid: 20293 + - uid: 20329 components: - pos: 17.5,-74.5 parent: 2 type: Transform - - uid: 20294 + - uid: 20330 components: - pos: 14.5,-71.5 parent: 2 type: Transform - - uid: 20295 + - uid: 20331 components: - pos: 14.5,-74.5 parent: 2 type: Transform - - uid: 20296 + - uid: 20332 components: - pos: 15.5,-74.5 parent: 2 type: Transform - - uid: 20297 + - uid: 20333 components: - rot: 1.5707963267948966 rad pos: 44.5,-86.5 parent: 2 type: Transform - - uid: 20298 + - uid: 20334 components: - rot: 1.5707963267948966 rad pos: 44.5,-87.5 parent: 2 type: Transform - - uid: 20299 + - uid: 20335 components: - rot: 1.5707963267948966 rad pos: 34.5,-87.5 parent: 2 type: Transform - - uid: 20300 + - uid: 20336 components: - rot: 1.5707963267948966 rad pos: 44.5,-84.5 parent: 2 type: Transform - - uid: 20301 + - uid: 20337 components: - rot: 1.5707963267948966 rad pos: 44.5,-85.5 parent: 2 type: Transform - - uid: 20302 + - uid: 20338 components: - rot: 1.5707963267948966 rad pos: 42.5,-69.5 parent: 2 type: Transform - - uid: 20303 + - uid: 20339 components: - rot: 1.5707963267948966 rad pos: 43.5,-69.5 parent: 2 type: Transform - - uid: 20304 + - uid: 20340 components: - rot: 1.5707963267948966 rad pos: 44.5,-69.5 parent: 2 type: Transform - - uid: 20305 + - uid: 20341 components: - rot: 1.5707963267948966 rad pos: 34.5,-69.5 parent: 2 type: Transform - - uid: 20306 + - uid: 20342 components: - rot: 1.5707963267948966 rad pos: 35.5,-69.5 parent: 2 type: Transform - - uid: 20307 + - uid: 20343 components: - rot: 1.5707963267948966 rad pos: 36.5,-69.5 parent: 2 type: Transform - - uid: 20308 + - uid: 20344 components: - rot: 1.5707963267948966 rad pos: 37.5,-66.5 parent: 2 type: Transform - - uid: 20309 + - uid: 20345 components: - rot: -1.5707963267948966 rad pos: -37.5,-14.5 parent: 2 type: Transform - - uid: 20310 + - uid: 20346 components: - pos: -33.5,-17.5 parent: 2 type: Transform - - uid: 20311 + - uid: 20347 components: - pos: -33.5,-15.5 parent: 2 type: Transform - - uid: 20312 + - uid: 20348 components: - rot: 3.141592653589793 rad pos: -33.5,-12.5 parent: 2 type: Transform - - uid: 20313 + - uid: 20349 components: - rot: 3.141592653589793 rad pos: -33.5,-9.5 parent: 2 type: Transform - - uid: 20314 + - uid: 20350 components: - rot: 3.141592653589793 rad pos: -40.5,-9.5 parent: 2 type: Transform - - uid: 20315 + - uid: 20351 components: - rot: 3.141592653589793 rad pos: -40.5,-12.5 parent: 2 type: Transform - - uid: 20316 + - uid: 20352 components: - pos: 50.5,-31.5 parent: 2 type: Transform - - uid: 20317 + - uid: 20353 components: - pos: 51.5,-31.5 parent: 2 type: Transform - - uid: 20318 + - uid: 20354 components: - rot: -1.5707963267948966 rad pos: -21.5,-35.5 parent: 2 type: Transform - - uid: 20319 + - uid: 20355 components: - pos: -38.5,-37.5 parent: 2 type: Transform - - uid: 20320 + - uid: 20356 components: - pos: -37.5,-37.5 parent: 2 type: Transform - - uid: 20321 + - uid: 20357 components: - pos: -45.5,-18.5 parent: 2 type: Transform - - uid: 20322 + - uid: 20358 components: - rot: 3.141592653589793 rad pos: -43.5,-13.5 parent: 2 type: Transform - - uid: 20323 + - uid: 20359 components: - rot: 3.141592653589793 rad pos: -46.5,-7.5 parent: 2 type: Transform - - uid: 20324 + - uid: 20360 components: - rot: 3.141592653589793 rad pos: -49.5,-19.5 parent: 2 type: Transform - - uid: 20325 + - uid: 20361 components: - pos: -68.5,-22.5 parent: 2 type: Transform - - uid: 20326 + - uid: 20362 components: - pos: -67.5,-22.5 parent: 2 type: Transform - - uid: 20327 + - uid: 20363 components: - pos: -66.5,-22.5 parent: 2 type: Transform - - uid: 20328 + - uid: 20364 components: - pos: -65.5,-22.5 parent: 2 type: Transform - - uid: 20329 + - uid: 20365 components: - pos: -64.5,-22.5 parent: 2 type: Transform - - uid: 20330 + - uid: 20366 components: - pos: -66.5,-29.5 parent: 2 type: Transform - - uid: 20331 + - uid: 20367 components: - pos: -56.5,-11.5 parent: 2 type: Transform - - uid: 20332 + - uid: 20368 components: - pos: -56.5,-12.5 parent: 2 type: Transform - - uid: 20333 + - uid: 20369 components: - pos: -56.5,-13.5 parent: 2 type: Transform - - uid: 20334 + - uid: 20370 components: - pos: -56.5,-14.5 parent: 2 type: Transform - - uid: 20335 + - uid: 20371 components: - pos: -56.5,-15.5 parent: 2 type: Transform - - uid: 20336 + - uid: 20372 components: - pos: -61.5,-35.5 parent: 2 type: Transform - - uid: 20337 + - uid: 20373 components: - pos: -60.5,-35.5 parent: 2 type: Transform - - uid: 20338 + - uid: 20374 components: - pos: -62.5,-38.5 parent: 2 type: Transform - - uid: 20339 + - uid: 20375 components: - pos: -61.5,-31.5 parent: 2 type: Transform - - uid: 20340 + - uid: 20376 components: - pos: -47.5,-54.5 parent: 2 type: Transform - - uid: 20341 + - uid: 20377 components: - pos: -47.5,-52.5 parent: 2 type: Transform - - uid: 20342 + - uid: 20378 components: - pos: -47.5,-50.5 parent: 2 type: Transform - - uid: 20343 + - uid: 20379 components: - pos: -47.5,-48.5 parent: 2 type: Transform - - uid: 20344 + - uid: 20380 components: - pos: -47.5,-46.5 parent: 2 type: Transform - - uid: 20345 + - uid: 20381 components: - pos: -47.5,-44.5 parent: 2 type: Transform - - uid: 20346 + - uid: 20382 components: - pos: -47.5,-42.5 parent: 2 type: Transform - - uid: 20347 + - uid: 20383 components: - pos: -41.5,-34.5 parent: 2 type: Transform - - uid: 20348 + - uid: 20384 components: - pos: -41.5,-35.5 parent: 2 type: Transform - - uid: 20349 + - uid: 20385 components: - pos: -59.5,-3.5 parent: 2 type: Transform - - uid: 20350 + - uid: 20386 components: - pos: -60.5,-3.5 parent: 2 type: Transform - - uid: 20351 + - uid: 20387 components: - pos: -61.5,-3.5 parent: 2 type: Transform - - uid: 20352 + - uid: 20388 components: - pos: -62.5,-3.5 parent: 2 type: Transform - - uid: 20353 + - uid: 20389 components: - pos: -66.5,-3.5 parent: 2 type: Transform - - uid: 20354 + - uid: 20390 components: - pos: -67.5,-3.5 parent: 2 type: Transform - - uid: 20355 + - uid: 20391 components: - pos: -68.5,-3.5 parent: 2 type: Transform - - uid: 20356 + - uid: 20392 components: - pos: -69.5,-3.5 parent: 2 type: Transform - - uid: 20357 + - uid: 20393 components: - pos: -76.5,-3.5 parent: 2 type: Transform - - uid: 20358 + - uid: 20394 components: - pos: -73.5,-3.5 parent: 2 type: Transform - - uid: 20359 + - uid: 20395 components: - pos: -74.5,-3.5 parent: 2 type: Transform - - uid: 20360 + - uid: 20396 components: - pos: -75.5,-3.5 parent: 2 type: Transform - - uid: 20361 + - uid: 20397 components: - pos: -76.5,-7.5 parent: 2 type: Transform - - uid: 20362 + - uid: 20398 components: - pos: -76.5,-8.5 parent: 2 type: Transform - - uid: 20363 + - uid: 20399 components: - pos: -76.5,-9.5 parent: 2 type: Transform - - uid: 20364 + - uid: 20400 components: - pos: -76.5,-10.5 parent: 2 type: Transform - - uid: 20365 + - uid: 20401 components: - pos: -76.5,-14.5 parent: 2 type: Transform - - uid: 20366 + - uid: 20402 components: - pos: -76.5,-15.5 parent: 2 type: Transform - - uid: 20367 + - uid: 20403 components: - pos: -76.5,-16.5 parent: 2 type: Transform - - uid: 20368 + - uid: 20404 components: - pos: -76.5,-17.5 parent: 2 type: Transform - - uid: 20369 + - uid: 20405 components: - pos: -76.5,-21.5 parent: 2 type: Transform - - uid: 20370 + - uid: 20406 components: - pos: -76.5,-22.5 parent: 2 type: Transform - - uid: 20371 + - uid: 20407 components: - rot: -1.5707963267948966 rad pos: -76.5,-24.5 parent: 2 type: Transform - - uid: 20372 + - uid: 20408 components: - pos: -76.5,-23.5 parent: 2 type: Transform - - uid: 20373 + - uid: 20409 components: - pos: -35.5,-58.5 parent: 2 type: Transform - - uid: 20374 + - uid: 20410 components: - rot: 3.141592653589793 rad pos: -38.5,-59.5 parent: 2 type: Transform - - uid: 20375 + - uid: 20411 components: - pos: -41.5,-58.5 parent: 2 type: Transform - - uid: 20376 + - uid: 20412 components: - pos: -42.5,-58.5 parent: 2 type: Transform - - uid: 20377 + - uid: 20413 components: - pos: -44.5,-58.5 parent: 2 type: Transform - - uid: 20378 + - uid: 20414 components: - pos: -21.5,-61.5 parent: 2 type: Transform - - uid: 20379 + - uid: 20415 components: - rot: -1.5707963267948966 rad pos: -53.5,-83.5 parent: 2 type: Transform - - uid: 20380 + - uid: 20416 components: - pos: -28.5,-72.5 parent: 2 type: Transform - - uid: 20381 + - uid: 20417 components: - pos: -35.5,-76.5 parent: 2 type: Transform - - uid: 20382 + - uid: 20418 components: - pos: -35.5,-77.5 parent: 2 type: Transform - - uid: 20383 + - uid: 20419 components: - pos: -35.5,-78.5 parent: 2 type: Transform - - uid: 20384 + - uid: 20420 components: - pos: -35.5,-81.5 parent: 2 type: Transform - - uid: 20385 + - uid: 20421 components: - pos: -35.5,-82.5 parent: 2 type: Transform - - uid: 20386 + - uid: 20422 components: - pos: -35.5,-83.5 parent: 2 type: Transform - - uid: 20387 + - uid: 20423 components: - pos: -40.5,-86.5 parent: 2 type: Transform - - uid: 20388 + - uid: 20424 components: - pos: -43.5,-86.5 parent: 2 type: Transform - - uid: 20389 + - uid: 20425 components: - pos: -21.5,-59.5 parent: 2 type: Transform - - uid: 20390 + - uid: 20426 components: - rot: -1.5707963267948966 rad pos: -55.5,-83.5 parent: 2 type: Transform - - uid: 20391 + - uid: 20427 components: - pos: -57.5,-75.5 parent: 2 type: Transform - - uid: 20392 + - uid: 20428 components: - pos: -57.5,-76.5 parent: 2 type: Transform - - uid: 20393 + - uid: 20429 components: - pos: -57.5,-77.5 parent: 2 type: Transform - - uid: 20394 + - uid: 20430 components: - pos: -58.5,-52.5 parent: 2 type: Transform - - uid: 20395 + - uid: 20431 components: - pos: -58.5,-51.5 parent: 2 type: Transform - - uid: 20396 + - uid: 20432 components: - pos: -58.5,-48.5 parent: 2 type: Transform - - uid: 20397 + - uid: 20433 components: - pos: -58.5,-47.5 parent: 2 type: Transform - - uid: 20398 + - uid: 20434 components: - pos: -55.5,-85.5 parent: 2 type: Transform - - uid: 20399 + - uid: 20435 components: - rot: 1.5707963267948966 rad pos: -58.5,-59.5 parent: 2 type: Transform - - uid: 20400 + - uid: 20436 components: - pos: -48.5,-81.5 parent: 2 type: Transform - - uid: 20401 + - uid: 20437 components: - pos: 50.5,58.5 parent: 2 type: Transform - - uid: 20402 + - uid: 20438 components: - rot: -1.5707963267948966 rad pos: -3.5,27.5 parent: 2 type: Transform - - uid: 20403 + - uid: 20439 components: - pos: 50.5,57.5 parent: 2 type: Transform - - uid: 20404 + - uid: 20440 components: - pos: 58.5,58.5 parent: 2 type: Transform - - uid: 20405 + - uid: 20441 components: - pos: -2.5,35.5 parent: 2 type: Transform - - uid: 20406 + - uid: 20442 components: - pos: -1.5,35.5 parent: 2 type: Transform - - uid: 20407 + - uid: 20443 components: - pos: -0.5,35.5 parent: 2 type: Transform - - uid: 20408 + - uid: 20444 components: - pos: 6.5,25.5 parent: 2 type: Transform - - uid: 20409 + - uid: 20445 components: - pos: 4.5,25.5 parent: 2 type: Transform - - uid: 20410 + - uid: 20446 components: - pos: 2.5,25.5 parent: 2 type: Transform - - uid: 20411 + - uid: 20447 components: - pos: 58.5,56.5 parent: 2 type: Transform - - uid: 20412 + - uid: 20448 components: - rot: -1.5707963267948966 rad pos: -1.5,27.5 parent: 2 type: Transform - - uid: 20413 + - uid: 20449 components: - pos: -21.5,24.5 parent: 2 type: Transform - - uid: 20414 + - uid: 20450 components: - pos: -21.5,23.5 parent: 2 type: Transform - - uid: 20415 + - uid: 20451 components: - pos: -26.5,21.5 parent: 2 type: Transform - - uid: 20416 + - uid: 20452 components: - rot: -1.5707963267948966 rad pos: -26.5,23.5 parent: 2 type: Transform - - uid: 20417 + - uid: 20453 components: - pos: -1.5,42.5 parent: 2 type: Transform - - uid: 20418 + - uid: 20454 components: - pos: -29.5,23.5 parent: 2 type: Transform - - uid: 20419 + - uid: 20455 components: - pos: -29.5,21.5 parent: 2 type: Transform - - uid: 20420 + - uid: 20456 components: - rot: 1.5707963267948966 rad pos: -50.5,21.5 parent: 2 type: Transform - - uid: 20421 + - uid: 20457 components: - rot: 1.5707963267948966 rad pos: -49.5,21.5 parent: 2 type: Transform - - uid: 20422 + - uid: 20458 components: - rot: -1.5707963267948966 rad pos: -50.5,18.5 parent: 2 type: Transform - - uid: 20423 + - uid: 20459 components: - rot: -1.5707963267948966 rad pos: -50.5,24.5 parent: 2 type: Transform - - uid: 20424 + - uid: 20460 components: - pos: 58.5,57.5 parent: 2 type: Transform - - uid: 20425 + - uid: 20461 components: - pos: 50.5,56.5 parent: 2 type: Transform - - uid: 20426 + - uid: 20462 components: - pos: -33.5,27.5 parent: 2 type: Transform - - uid: 20427 + - uid: 20463 components: - pos: -33.5,32.5 parent: 2 type: Transform - - uid: 20428 + - uid: 20464 components: - pos: -32.5,32.5 parent: 2 type: Transform - - uid: 20429 + - uid: 20465 components: - pos: -31.5,32.5 parent: 2 type: Transform - - uid: 20430 + - uid: 20466 components: - pos: -31.5,27.5 parent: 2 type: Transform - - uid: 20431 + - uid: 20467 components: - pos: -30.5,27.5 parent: 2 type: Transform - - uid: 20432 + - uid: 20468 components: - rot: -1.5707963267948966 rad pos: -52.5,21.5 parent: 2 type: Transform - - uid: 20433 + - uid: 20469 components: - rot: -1.5707963267948966 rad pos: -53.5,21.5 parent: 2 type: Transform - - uid: 20434 + - uid: 20470 components: - rot: -1.5707963267948966 rad pos: -49.5,29.5 parent: 2 type: Transform - - uid: 20435 + - uid: 20471 components: - rot: -1.5707963267948966 rad pos: -52.5,29.5 parent: 2 type: Transform - - uid: 20436 + - uid: 20472 components: - rot: -1.5707963267948966 rad pos: -52.5,35.5 parent: 2 type: Transform - - uid: 20437 + - uid: 20473 components: - rot: -1.5707963267948966 rad pos: -49.5,35.5 parent: 2 type: Transform - - uid: 20438 + - uid: 20474 components: - pos: -52.5,24.5 parent: 2 type: Transform - - uid: 20439 + - uid: 20475 components: - pos: -52.5,18.5 parent: 2 type: Transform - - uid: 20440 + - uid: 20476 components: - pos: -39.5,31.5 parent: 2 type: Transform - - uid: 20441 + - uid: 20477 components: - rot: 1.5707963267948966 rad pos: -17.5,24.5 parent: 2 type: Transform - - uid: 20442 + - uid: 20478 components: - rot: 1.5707963267948966 rad pos: -21.5,12.5 parent: 2 type: Transform - - uid: 20443 + - uid: 20479 components: - rot: 1.5707963267948966 rad pos: -22.5,9.5 parent: 2 type: Transform - - uid: 20444 + - uid: 20480 components: - rot: 1.5707963267948966 rad pos: -23.5,9.5 parent: 2 type: Transform - - uid: 20445 + - uid: 20481 components: - rot: 1.5707963267948966 rad pos: -25.5,9.5 parent: 2 type: Transform - - uid: 20446 + - uid: 20482 components: - rot: 1.5707963267948966 rad pos: -26.5,9.5 parent: 2 type: Transform - - uid: 20447 + - uid: 20483 components: - pos: -36.5,7.5 parent: 2 type: Transform - - uid: 20448 + - uid: 20484 components: - pos: -41.5,2.5 parent: 2 type: Transform - - uid: 20449 + - uid: 20485 components: - pos: -35.5,2.5 parent: 2 type: Transform - - uid: 20450 + - uid: 20486 components: - pos: -34.5,2.5 parent: 2 type: Transform - - uid: 20451 + - uid: 20487 components: - pos: -40.5,2.5 parent: 2 type: Transform - - uid: 20452 + - uid: 20488 components: - pos: -39.5,2.5 parent: 2 type: Transform - - uid: 20453 + - uid: 20489 components: - pos: -36.5,2.5 parent: 2 type: Transform - - uid: 20454 + - uid: 20490 components: - pos: -39.5,7.5 parent: 2 type: Transform - - uid: 20455 + - uid: 20491 components: - pos: -1.5,50.5 parent: 2 type: Transform - - uid: 20456 + - uid: 20492 components: - pos: 29.5,24.5 parent: 2 type: Transform - - uid: 20457 + - uid: 20493 components: - rot: -1.5707963267948966 rad pos: -49.5,13.5 parent: 2 type: Transform - - uid: 20458 + - uid: 20494 components: - pos: -46.5,13.5 parent: 2 type: Transform - - uid: 20459 + - uid: 20495 components: - pos: -53.5,11.5 parent: 2 type: Transform - - uid: 20460 + - uid: 20496 components: - pos: -53.5,10.5 parent: 2 type: Transform - - uid: 20461 + - uid: 20497 components: - rot: -1.5707963267948966 rad pos: -48.5,13.5 parent: 2 type: Transform - - uid: 20462 + - uid: 20498 components: - rot: 1.5707963267948966 rad pos: -52.5,-0.5 parent: 2 type: Transform - - uid: 20463 + - uid: 20499 components: - pos: 2.5,-94.5 parent: 2 type: Transform - - uid: 20464 + - uid: 20500 components: - pos: 2.5,-95.5 parent: 2 type: Transform - - uid: 20465 + - uid: 20501 components: - pos: 2.5,-96.5 parent: 2 type: Transform - - uid: 20466 + - uid: 20502 components: - pos: 2.5,-97.5 parent: 2 type: Transform - - uid: 20467 + - uid: 20503 components: - pos: 2.5,-98.5 parent: 2 type: Transform - - uid: 20468 + - uid: 20504 components: - pos: 2.5,-99.5 parent: 2 type: Transform - - uid: 20469 + - uid: 20505 components: - pos: 2.5,-100.5 parent: 2 type: Transform - - uid: 20470 + - uid: 20506 components: - pos: 2.5,-101.5 parent: 2 type: Transform - - uid: 20471 + - uid: 20507 components: - pos: 2.5,-102.5 parent: 2 type: Transform - - uid: 20472 + - uid: 20508 components: - pos: 2.5,-103.5 parent: 2 type: Transform - - uid: 20473 + - uid: 20509 components: - pos: 2.5,-104.5 parent: 2 type: Transform - - uid: 20474 + - uid: 20510 components: - pos: 4.5,-107.5 parent: 2 type: Transform - - uid: 20475 + - uid: 20511 components: - pos: 5.5,-107.5 parent: 2 type: Transform - - uid: 20476 + - uid: 20512 components: - pos: 6.5,-107.5 parent: 2 type: Transform - - uid: 20477 + - uid: 20513 components: - pos: 7.5,-107.5 parent: 2 type: Transform - - uid: 20478 + - uid: 20514 components: - pos: 8.5,-107.5 parent: 2 type: Transform - - uid: 20479 + - uid: 20515 components: - pos: 9.5,-107.5 parent: 2 type: Transform - - uid: 20480 + - uid: 20516 components: - pos: 10.5,-107.5 parent: 2 type: Transform - - uid: 20481 + - uid: 20517 components: - pos: 11.5,-107.5 parent: 2 type: Transform - - uid: 20482 + - uid: 20518 components: - pos: 12.5,-107.5 parent: 2 type: Transform - - uid: 20483 + - uid: 20519 components: - pos: 13.5,-107.5 parent: 2 type: Transform - - uid: 20484 + - uid: 20520 components: - pos: 14.5,-107.5 parent: 2 type: Transform - - uid: 20485 + - uid: 20521 components: - pos: 15.5,-107.5 parent: 2 type: Transform - - uid: 20486 + - uid: 20522 components: - pos: 16.5,-107.5 parent: 2 type: Transform - - uid: 20487 + - uid: 20523 components: - pos: 17.5,-107.5 parent: 2 type: Transform - - uid: 20488 + - uid: 20524 components: - pos: 20.5,-105.5 parent: 2 type: Transform - - uid: 20489 + - uid: 20525 components: - pos: 20.5,-104.5 parent: 2 type: Transform - - uid: 20490 + - uid: 20526 components: - pos: 20.5,-103.5 parent: 2 type: Transform - - uid: 20491 + - uid: 20527 components: - pos: 20.5,-102.5 parent: 2 type: Transform - - uid: 20492 + - uid: 20528 components: - pos: 20.5,-101.5 parent: 2 type: Transform - - uid: 20493 + - uid: 20529 components: - pos: 20.5,-100.5 parent: 2 type: Transform - - uid: 20494 + - uid: 20530 components: - pos: 20.5,-99.5 parent: 2 type: Transform - - uid: 20495 + - uid: 20531 components: - pos: 20.5,-98.5 parent: 2 type: Transform - - uid: 20496 + - uid: 20532 components: - pos: 20.5,-97.5 parent: 2 type: Transform - - uid: 20497 + - uid: 20533 components: - pos: 20.5,-96.5 parent: 2 type: Transform - - uid: 20498 + - uid: 20534 components: - pos: 20.5,-95.5 parent: 2 type: Transform - - uid: 20499 + - uid: 20535 components: - pos: 20.5,-94.5 parent: 2 type: Transform - - uid: 20500 + - uid: 20536 components: - pos: 13.5,-92.5 parent: 2 type: Transform - - uid: 20501 + - uid: 20537 components: - pos: 14.5,-92.5 parent: 2 type: Transform - - uid: 20502 + - uid: 20538 components: - pos: 15.5,-92.5 parent: 2 type: Transform - - uid: 20503 + - uid: 20539 components: - pos: 16.5,-92.5 parent: 2 type: Transform - - uid: 20504 + - uid: 20540 components: - pos: 17.5,-92.5 parent: 2 type: Transform - - uid: 20505 + - uid: 20541 components: - pos: 18.5,-92.5 parent: 2 type: Transform - - uid: 20506 + - uid: 20542 components: - pos: 38.5,-57.5 parent: 2 type: Transform - - uid: 20507 + - uid: 20543 components: - pos: 40.5,-57.5 parent: 2 type: Transform - - uid: 20508 + - uid: 20544 components: - pos: 37.5,-21.5 parent: 2 type: Transform - - uid: 20509 + - uid: 20545 components: - pos: 37.5,-22.5 parent: 2 type: Transform - - uid: 20510 + - uid: 20546 components: - rot: -1.5707963267948966 rad pos: -76.5,-11.5 parent: 2 type: Transform - - uid: 20511 + - uid: 20547 components: - rot: -1.5707963267948966 rad pos: -76.5,-13.5 parent: 2 type: Transform - - uid: 20512 + - uid: 20548 components: - pos: 55.5,-15.5 parent: 2 type: Transform - - uid: 20513 + - uid: 20549 components: - pos: 56.5,-15.5 parent: 2 type: Transform - - uid: 20514 + - uid: 20550 components: - pos: 58.5,-15.5 parent: 2 type: Transform - - uid: 20515 + - uid: 20551 components: - pos: 59.5,-15.5 parent: 2 type: Transform - - uid: 20516 + - uid: 20552 components: - pos: 58.5,-59.5 parent: 2 type: Transform - - uid: 20517 + - uid: 20553 components: - pos: 58.5,-60.5 parent: 2 type: Transform - - uid: 20518 + - uid: 20554 components: - pos: 42.5,-31.5 parent: 2 type: Transform - - uid: 20519 + - uid: 20555 components: - pos: 37.5,-64.5 parent: 2 type: Transform - - uid: 20520 + - uid: 20556 components: - rot: 3.141592653589793 rad pos: 24.5,37.5 parent: 2 type: Transform - - uid: 20521 + - uid: 20557 components: - rot: 3.141592653589793 rad pos: 21.5,37.5 parent: 2 type: Transform - - uid: 20522 + - uid: 20558 components: - pos: 32.5,35.5 parent: 2 type: Transform - - uid: 20523 + - uid: 20559 components: - pos: 26.5,35.5 parent: 2 type: Transform - - uid: 20524 + - uid: 20560 components: - pos: 34.5,37.5 parent: 2 type: Transform - - uid: 20525 + - uid: 20561 components: - pos: 35.5,37.5 parent: 2 type: Transform - - uid: 20526 + - uid: 20562 components: - pos: 36.5,37.5 parent: 2 type: Transform - - uid: 20527 + - uid: 20563 components: - pos: 36.5,36.5 parent: 2 type: Transform - - uid: 20528 + - uid: 20564 components: - pos: 36.5,35.5 parent: 2 type: Transform - - uid: 20529 + - uid: 20565 components: - pos: 36.5,34.5 parent: 2 type: Transform - - uid: 20530 + - uid: 20566 components: - pos: -45.5,-42.5 parent: 2 type: Transform - - uid: 20531 + - uid: 20567 components: - pos: -45.5,-43.5 parent: 2 type: Transform - - uid: 20532 + - uid: 20568 components: - pos: -45.5,-44.5 parent: 2 type: Transform - - uid: 20533 + - uid: 20569 components: - pos: -45.5,-45.5 parent: 2 type: Transform - - uid: 20534 + - uid: 20570 components: - pos: -45.5,-46.5 parent: 2 type: Transform - - uid: 20535 + - uid: 20571 components: - pos: -45.5,-47.5 parent: 2 type: Transform - - uid: 20536 + - uid: 20572 components: - pos: -45.5,-48.5 parent: 2 type: Transform - - uid: 20537 + - uid: 20573 components: - pos: -45.5,-49.5 parent: 2 type: Transform - - uid: 20538 + - uid: 20574 components: - pos: -45.5,-50.5 parent: 2 type: Transform - - uid: 20539 + - uid: 20575 components: - pos: -45.5,-51.5 parent: 2 type: Transform - - uid: 20540 + - uid: 20576 components: - pos: -45.5,-52.5 parent: 2 type: Transform - - uid: 20541 + - uid: 20577 components: - pos: -45.5,-53.5 parent: 2 type: Transform - - uid: 20542 + - uid: 20578 components: - pos: -45.5,-54.5 parent: 2 type: Transform - - uid: 20543 + - uid: 20579 components: - pos: -45.5,-55.5 parent: 2 type: Transform - - uid: 20544 + - uid: 20580 components: - rot: 3.141592653589793 rad pos: 46.5,3.5 parent: 2 type: Transform - - uid: 20545 + - uid: 20581 components: - rot: -1.5707963267948966 rad pos: 27.5,20.5 parent: 2 type: Transform - - uid: 20546 + - uid: 20582 components: - pos: 41.5,-31.5 parent: 2 type: Transform - - uid: 20547 + - uid: 20583 components: - pos: -48.5,-82.5 parent: 2 type: Transform - - uid: 20548 + - uid: 20584 components: - pos: -48.5,-83.5 parent: 2 type: Transform - - uid: 20549 + - uid: 20585 components: - pos: 54.5,61.5 parent: 2 type: Transform - - uid: 20550 + - uid: 20586 components: - pos: 55.5,61.5 parent: 2 type: Transform - - uid: 20551 + - uid: 20587 components: - pos: 53.5,61.5 parent: 2 type: Transform - - uid: 20552 + - uid: 20588 components: - pos: 20.5,-35.5 parent: 2 type: Transform - - uid: 20553 + - uid: 20589 components: - pos: 20.5,-36.5 parent: 2 type: Transform - - uid: 20554 + - uid: 20590 components: - pos: -30.5,-72.5 parent: 2 type: Transform - - uid: 20555 + - uid: 20591 components: - pos: 10.5,18.5 parent: 2 type: Transform - - uid: 20556 + - uid: 20592 components: - pos: 12.5,18.5 parent: 2 type: Transform - - uid: 20557 + - uid: 20593 components: - rot: -1.5707963267948966 rad pos: 59.5,33.5 parent: 2 type: Transform - - uid: 20558 + - uid: 20594 components: - rot: -1.5707963267948966 rad pos: 59.5,32.5 parent: 2 type: Transform - - uid: 20559 + - uid: 20595 components: - rot: 3.141592653589793 rad pos: 59.5,43.5 parent: 2 type: Transform - - uid: 20560 + - uid: 20596 components: - pos: 2.5,51.5 parent: 2 type: Transform - - uid: 20561 + - uid: 20597 components: - pos: -14.5,65.5 parent: 2 type: Transform - - uid: 20562 + - uid: 20598 components: - rot: 3.141592653589793 rad pos: -14.5,67.5 parent: 2 type: Transform - - uid: 20563 + - uid: 20599 components: - rot: -1.5707963267948966 rad pos: 7.5,35.5 parent: 2 type: Transform - - uid: 20564 + - uid: 20600 components: - rot: -1.5707963267948966 rad pos: 8.5,35.5 parent: 2 type: Transform - - uid: 20565 + - uid: 20601 components: - rot: -1.5707963267948966 rad pos: 7.5,29.5 parent: 2 type: Transform - - uid: 20566 + - uid: 20602 components: - rot: -1.5707963267948966 rad pos: 8.5,29.5 parent: 2 type: Transform - - uid: 20567 + - uid: 20603 components: - rot: -1.5707963267948966 rad pos: 68.5,11.5 parent: 2 type: Transform - - uid: 20568 + - uid: 20604 components: - rot: -1.5707963267948966 rad pos: 68.5,10.5 parent: 2 type: Transform - - uid: 20569 + - uid: 20605 components: - rot: -1.5707963267948966 rad pos: 68.5,8.5 parent: 2 type: Transform - - uid: 20570 + - uid: 20606 components: - rot: -1.5707963267948966 rad pos: 68.5,7.5 parent: 2 type: Transform - - uid: 20571 + - uid: 20607 components: - rot: -1.5707963267948966 rad pos: -7.5,28.5 parent: 2 type: Transform - - uid: 20572 + - uid: 20608 components: - rot: -1.5707963267948966 rad pos: -7.5,27.5 parent: 2 type: Transform - - uid: 20573 + - uid: 20609 components: - rot: -1.5707963267948966 rad pos: -33.5,35.5 parent: 2 type: Transform - - uid: 20574 + - uid: 20610 components: - rot: -1.5707963267948966 rad pos: -32.5,35.5 parent: 2 type: Transform - - uid: 20575 + - uid: 20611 components: - rot: -1.5707963267948966 rad pos: -31.5,35.5 parent: 2 type: Transform - - uid: 20576 + - uid: 20612 components: - rot: 1.5707963267948966 rad pos: 46.5,-17.5 parent: 2 type: Transform - - uid: 20577 + - uid: 20613 components: - rot: 1.5707963267948966 rad pos: 45.5,-17.5 parent: 2 type: Transform - - uid: 20578 + - uid: 20614 components: - rot: 3.141592653589793 rad pos: -19.5,44.5 parent: 2 type: Transform - - uid: 20579 + - uid: 20615 components: - pos: 2.5,50.5 parent: 2 type: Transform - - uid: 20580 + - uid: 20616 components: - pos: 2.5,47.5 parent: 2 type: Transform - - uid: 20581 + - uid: 20617 components: - rot: 3.141592653589793 rad pos: 41.5,32.5 parent: 2 type: Transform - - uid: 20582 + - uid: 20618 components: - rot: 3.141592653589793 rad pos: 41.5,31.5 parent: 2 type: Transform - - uid: 20583 + - uid: 20619 components: - rot: 3.141592653589793 rad pos: 41.5,30.5 parent: 2 type: Transform - - uid: 20584 + - uid: 20620 components: - rot: 1.5707963267948966 rad pos: 45.5,40.5 parent: 2 type: Transform - - uid: 20585 + - uid: 20621 components: - rot: 1.5707963267948966 rad pos: 47.5,40.5 parent: 2 type: Transform - - uid: 20586 + - uid: 20622 components: - rot: -1.5707963267948966 rad pos: 41.5,42.5 parent: 2 type: Transform - - uid: 20587 + - uid: 20623 components: - rot: -1.5707963267948966 rad pos: 40.5,42.5 parent: 2 type: Transform - - uid: 20588 + - uid: 20624 components: - rot: -1.5707963267948966 rad pos: 39.5,42.5 parent: 2 type: Transform - - uid: 20589 + - uid: 20625 components: - rot: 3.141592653589793 rad pos: -20.5,65.5 parent: 2 type: Transform - - uid: 20590 + - uid: 20626 components: - pos: -2.5,60.5 parent: 2 type: Transform - - uid: 20591 + - uid: 20627 components: - pos: -0.5,60.5 parent: 2 type: Transform - - uid: 20592 + - uid: 20628 components: - pos: 71.5,39.5 parent: 2 type: Transform - - uid: 20593 + - uid: 20629 components: - pos: 73.5,39.5 parent: 2 type: Transform - - uid: 20594 + - uid: 20630 components: - pos: 73.5,33.5 parent: 2 type: Transform - - uid: 20595 + - uid: 20631 components: - pos: 71.5,33.5 parent: 2 type: Transform - - uid: 20596 + - uid: 20632 components: - pos: 5.5,69.5 parent: 2 type: Transform - - uid: 20597 + - uid: 20633 components: - pos: -8.5,69.5 parent: 2 type: Transform - - uid: 20598 + - uid: 20634 components: - pos: -3.5,42.5 parent: 2 type: Transform - - uid: 20599 + - uid: 20635 components: - pos: 78.5,46.5 parent: 2 type: Transform - - uid: 20600 + - uid: 20636 components: - pos: 79.5,46.5 parent: 2 type: Transform - - uid: 20601 + - uid: 20637 components: - pos: 80.5,46.5 parent: 2 type: Transform - - uid: 20602 + - uid: 20638 components: - pos: 81.5,46.5 parent: 2 type: Transform - - uid: 20603 + - uid: 20639 components: - pos: 82.5,46.5 parent: 2 type: Transform - - uid: 20604 + - uid: 20640 components: - pos: 86.5,46.5 parent: 2 type: Transform - - uid: 20605 + - uid: 20641 components: - pos: 87.5,46.5 parent: 2 type: Transform - - uid: 20606 + - uid: 20642 components: - pos: 88.5,46.5 parent: 2 type: Transform - - uid: 20607 + - uid: 20643 components: - pos: 89.5,46.5 parent: 2 type: Transform - - uid: 20608 + - uid: 20644 components: - pos: 90.5,46.5 parent: 2 type: Transform - - uid: 20609 + - uid: 20645 components: - pos: 93.5,41.5 parent: 2 type: Transform - - uid: 20610 + - uid: 20646 components: - pos: 93.5,40.5 parent: 2 type: Transform - - uid: 20611 + - uid: 20647 components: - pos: 93.5,39.5 parent: 2 type: Transform - - uid: 20612 + - uid: 20648 components: - pos: 93.5,38.5 parent: 2 type: Transform - - uid: 20613 + - uid: 20649 components: - pos: 93.5,37.5 parent: 2 type: Transform - - uid: 20614 + - uid: 20650 components: - pos: 93.5,36.5 parent: 2 type: Transform - - uid: 20615 + - uid: 20651 components: - pos: 93.5,35.5 parent: 2 type: Transform - - uid: 20616 + - uid: 20652 components: - pos: 93.5,34.5 parent: 2 type: Transform - - uid: 20617 + - uid: 20653 components: - pos: 93.5,33.5 parent: 2 type: Transform - - uid: 20618 + - uid: 20654 components: - pos: 93.5,32.5 parent: 2 type: Transform - - uid: 20619 + - uid: 20655 components: - pos: 93.5,31.5 parent: 2 type: Transform - - uid: 20620 + - uid: 20656 components: - pos: 93.5,30.5 parent: 2 type: Transform - - uid: 20621 + - uid: 20657 components: - pos: 90.5,26.5 parent: 2 type: Transform - - uid: 20622 + - uid: 20658 components: - pos: 89.5,26.5 parent: 2 type: Transform - - uid: 20623 + - uid: 20659 components: - pos: 88.5,26.5 parent: 2 type: Transform - - uid: 20624 + - uid: 20660 components: - pos: 87.5,26.5 parent: 2 type: Transform - - uid: 20625 + - uid: 20661 components: - pos: 86.5,26.5 parent: 2 type: Transform - - uid: 20626 + - uid: 20662 components: - pos: 85.5,26.5 parent: 2 type: Transform - - uid: 20627 + - uid: 20663 components: - pos: 81.5,26.5 parent: 2 type: Transform - - uid: 20628 + - uid: 20664 components: - pos: 80.5,26.5 parent: 2 type: Transform - - uid: 20629 + - uid: 20665 components: - pos: 79.5,26.5 parent: 2 type: Transform - - uid: 20630 + - uid: 20666 components: - pos: 78.5,26.5 parent: 2 type: Transform - - uid: 20631 + - uid: 20667 components: - pos: 77.5,26.5 parent: 2 type: Transform - - uid: 20632 + - uid: 20668 components: - pos: 70.5,29.5 parent: 2 type: Transform - - uid: 20633 + - uid: 20669 components: - pos: 71.5,29.5 parent: 2 type: Transform - - uid: 20634 + - uid: 20670 components: - pos: 72.5,29.5 parent: 2 type: Transform - - uid: 20635 + - uid: 20671 components: - pos: 73.5,29.5 parent: 2 type: Transform - - uid: 20636 + - uid: 20672 components: - pos: 74.5,29.5 parent: 2 type: Transform - - uid: 20637 + - uid: 20673 components: - pos: -33.5,40.5 parent: 2 type: Transform - - uid: 20638 + - uid: 20674 components: - pos: -32.5,40.5 parent: 2 type: Transform - - uid: 20639 + - uid: 20675 components: - pos: -32.5,37.5 parent: 2 type: Transform - - uid: 20640 + - uid: 20676 components: - pos: -16.5,55.5 parent: 2 type: Transform - - uid: 20641 + - uid: 20677 components: - pos: -16.5,56.5 parent: 2 type: Transform - - uid: 20642 + - uid: 20678 components: - pos: -14.5,56.5 parent: 2 type: Transform - - uid: 20643 + - uid: 20679 components: - pos: -14.5,55.5 parent: 2 type: Transform - - uid: 20644 + - uid: 20680 components: - pos: -20.5,62.5 parent: 2 type: Transform - - uid: 20645 + - uid: 20681 components: - pos: -14.5,62.5 parent: 2 type: Transform - - uid: 20646 + - uid: 20682 components: - pos: -11.5,69.5 parent: 2 type: Transform - - uid: 20647 + - uid: 20683 components: - pos: -11.5,68.5 parent: 2 type: Transform - - uid: 20648 + - uid: 20684 components: - pos: -11.5,67.5 parent: 2 type: Transform - - uid: 20649 + - uid: 20685 components: - pos: -11.5,73.5 parent: 2 type: Transform - - uid: 20650 + - uid: 20686 components: - pos: -14.5,73.5 parent: 2 type: Transform - - uid: 20651 + - uid: 20687 components: - pos: -20.5,73.5 parent: 2 type: Transform - - uid: 20652 + - uid: 20688 components: - pos: -23.5,73.5 parent: 2 type: Transform - - uid: 20653 + - uid: 20689 components: - pos: -23.5,63.5 parent: 2 type: Transform - - uid: 20654 + - uid: 20690 components: - pos: -23.5,62.5 parent: 2 type: Transform - - uid: 20655 + - uid: 20691 components: - pos: -23.5,61.5 parent: 2 type: Transform - - uid: 20656 + - uid: 20692 components: - rot: 1.5707963267948966 rad pos: 39.5,52.5 parent: 2 type: Transform - - uid: 20657 + - uid: 20693 components: - rot: 3.141592653589793 rad pos: -11.5,51.5 parent: 2 type: Transform - - uid: 20658 + - uid: 20694 components: - rot: 3.141592653589793 rad pos: -11.5,53.5 parent: 2 type: Transform - - uid: 20659 + - uid: 20695 components: - rot: 3.141592653589793 rad pos: -5.5,47.5 parent: 2 type: Transform - - uid: 20660 + - uid: 20696 components: - rot: 3.141592653589793 rad pos: -3.5,47.5 parent: 2 type: Transform - - uid: 20661 + - uid: 20697 components: - rot: 3.141592653589793 rad pos: -5.5,57.5 parent: 2 type: Transform - - uid: 20662 + - uid: 20698 components: - rot: 3.141592653589793 rad pos: -7.5,57.5 parent: 2 type: Transform - - uid: 20663 + - uid: 20699 components: - rot: 3.141592653589793 rad pos: -20.5,67.5 parent: 2 type: Transform - - uid: 20664 + - uid: 20700 components: - rot: -1.5707963267948966 rad pos: -26.5,54.5 parent: 2 type: Transform - - uid: 20665 + - uid: 20701 components: - rot: -1.5707963267948966 rad pos: -26.5,53.5 parent: 2 type: Transform - - uid: 20666 + - uid: 20702 components: - pos: 46.5,43.5 parent: 2 type: Transform - - uid: 20667 + - uid: 20703 components: - rot: -1.5707963267948966 rad pos: -16.5,-88.5 parent: 2 type: Transform - - uid: 20668 + - uid: 20704 components: - rot: -1.5707963267948966 rad pos: -2.5,-82.5 parent: 2 type: Transform - - uid: 20669 + - uid: 20705 components: - rot: -1.5707963267948966 rad pos: -0.5,-82.5 parent: 2 type: Transform - - uid: 20670 + - uid: 20706 components: - pos: -26.5,-97.5 parent: 2 type: Transform - - uid: 20671 + - uid: 20707 components: - pos: -18.5,-97.5 parent: 2 type: Transform - - uid: 20672 + - uid: 20708 components: - pos: -21.5,-94.5 parent: 2 type: Transform - - uid: 20673 + - uid: 20709 components: - pos: -22.5,-94.5 parent: 2 type: Transform - - uid: 20674 + - uid: 20710 components: - pos: -23.5,-94.5 parent: 2 type: Transform - - uid: 20675 + - uid: 20711 components: - pos: -3.5,-97.5 parent: 2 type: Transform - - uid: 20676 + - uid: 20712 components: - pos: -3.5,-98.5 parent: 2 type: Transform - - uid: 20677 + - uid: 20713 components: - pos: -5.5,-101.5 parent: 2 type: Transform - - uid: 20678 + - uid: 20714 components: - pos: -6.5,-101.5 parent: 2 type: Transform - - uid: 20679 + - uid: 20715 components: - pos: -8.5,-101.5 parent: 2 type: Transform - - uid: 20680 + - uid: 20716 components: - pos: -9.5,-101.5 parent: 2 type: Transform - - uid: 20681 + - uid: 20717 components: - rot: 3.141592653589793 rad pos: -44.5,-89.5 parent: 2 type: Transform - - uid: 20682 + - uid: 20718 components: - rot: 3.141592653589793 rad pos: -44.5,-90.5 parent: 2 type: Transform - - uid: 20683 + - uid: 20719 components: - pos: -36.5,-100.5 parent: 2 type: Transform - - uid: 20684 + - uid: 20720 components: - pos: -21.5,-101.5 parent: 2 type: Transform - - uid: 20685 + - uid: 20721 components: - pos: -34.5,-100.5 parent: 2 type: Transform - - uid: 20686 + - uid: 20722 components: - rot: 1.5707963267948966 rad pos: -39.5,-89.5 parent: 2 type: Transform - - uid: 20687 + - uid: 20723 components: - rot: 1.5707963267948966 rad pos: -39.5,-90.5 parent: 2 type: Transform - - uid: 20688 + - uid: 20724 components: - rot: 1.5707963267948966 rad pos: -44.5,-95.5 parent: 2 type: Transform - - uid: 20689 + - uid: 20725 components: - rot: 1.5707963267948966 rad pos: -44.5,-96.5 parent: 2 type: Transform - - uid: 20690 + - uid: 20726 components: - rot: 1.5707963267948966 rad pos: -42.5,-98.5 parent: 2 type: Transform - - uid: 20691 + - uid: 20727 components: - rot: 1.5707963267948966 rad pos: -41.5,-98.5 parent: 2 type: Transform - - uid: 20692 + - uid: 20728 components: - pos: -23.5,-101.5 parent: 2 type: Transform - - uid: 20693 + - uid: 20729 components: - pos: -22.5,-101.5 parent: 2 type: Transform - - uid: 20694 + - uid: 20730 components: - rot: 3.141592653589793 rad pos: -73.5,-27.5 parent: 2 type: Transform - - uid: 20695 + - uid: 20731 components: - pos: 78.5,-38.5 parent: 2 type: Transform - - uid: 20696 + - uid: 20732 components: - pos: 76.5,-35.5 parent: 2 type: Transform - - uid: 20697 + - uid: 20733 components: - pos: 77.5,-35.5 parent: 2 type: Transform - - uid: 20698 + - uid: 20734 components: - pos: 78.5,-35.5 parent: 2 type: Transform - - uid: 20699 + - uid: 20735 components: - pos: 79.5,-35.5 parent: 2 type: Transform - - uid: 20700 + - uid: 20736 components: - pos: 77.5,-32.5 parent: 2 type: Transform - - uid: 20701 + - uid: 20737 components: - pos: 78.5,-32.5 parent: 2 type: Transform - - uid: 20702 + - uid: 20738 components: - pos: 78.5,-44.5 parent: 2 type: Transform - - uid: 20703 + - uid: 20739 components: - pos: 78.5,-45.5 parent: 2 type: Transform - - uid: 20704 + - uid: 20740 components: - pos: 69.5,-42.5 parent: 2 type: Transform - - uid: 20705 + - uid: 20741 components: - pos: 70.5,-42.5 parent: 2 type: Transform - - uid: 20706 + - uid: 20742 components: - rot: -1.5707963267948966 rad pos: 72.5,-50.5 parent: 2 type: Transform - - uid: 20707 + - uid: 20743 components: - pos: 63.5,-61.5 parent: 2 type: Transform - - uid: 20708 + - uid: 20744 components: - pos: 62.5,-61.5 parent: 2 type: Transform - - uid: 20709 + - uid: 20745 components: - pos: 61.5,-61.5 parent: 2 type: Transform - - uid: 20710 + - uid: 20746 components: - pos: 52.5,-61.5 parent: 2 type: Transform - - uid: 20711 + - uid: 20747 components: - pos: 50.5,-64.5 parent: 2 type: Transform - - uid: 20712 + - uid: 20748 components: - pos: 3.5,-28.5 parent: 2 type: Transform - - uid: 20713 + - uid: 20749 components: - pos: 1.5,-30.5 parent: 2 type: Transform - - uid: 20714 + - uid: 20750 components: - pos: 61.5,-70.5 parent: 2 type: Transform - - uid: 20715 + - uid: 20751 components: - pos: 5.5,-28.5 parent: 2 type: Transform - - uid: 20716 + - uid: 20752 components: - pos: 1.5,-31.5 parent: 2 type: Transform - - uid: 20717 + - uid: 20753 components: - pos: 9.5,-31.5 parent: 2 type: Transform - - uid: 20718 + - uid: 20754 components: - pos: 9.5,-34.5 parent: 2 type: Transform - - uid: 20719 + - uid: 20755 components: - rot: -1.5707963267948966 rad pos: 69.5,-36.5 parent: 2 type: Transform - - uid: 20720 + - uid: 20756 components: - rot: -1.5707963267948966 rad pos: 69.5,-38.5 parent: 2 type: Transform - - uid: 20721 + - uid: 20757 components: - rot: 3.141592653589793 rad pos: 68.5,-39.5 parent: 2 type: Transform - - uid: 20722 + - uid: 20758 components: - rot: 3.141592653589793 rad pos: 66.5,-39.5 parent: 2 type: Transform - - uid: 20723 + - uid: 20759 components: - rot: 3.141592653589793 rad pos: 73.5,-30.5 parent: 2 type: Transform - - uid: 20724 + - uid: 20760 components: - rot: 3.141592653589793 rad pos: 71.5,-27.5 parent: 2 type: Transform - - uid: 20725 + - uid: 20761 components: - rot: 3.141592653589793 rad pos: 73.5,-27.5 parent: 2 type: Transform - - uid: 20726 + - uid: 20762 components: - rot: 1.5707963267948966 rad pos: -58.5,-60.5 parent: 2 type: Transform - - uid: 20727 + - uid: 20763 components: - rot: 1.5707963267948966 rad pos: -54.5,-57.5 parent: 2 type: Transform - - uid: 20728 + - uid: 20764 components: - rot: 1.5707963267948966 rad pos: -52.5,-60.5 parent: 2 type: Transform - - uid: 20729 + - uid: 20765 components: - rot: 3.141592653589793 rad pos: 31.5,-33.5 parent: 2 type: Transform - - uid: 20730 + - uid: 20766 components: - rot: 3.141592653589793 rad pos: 19.5,-33.5 parent: 2 type: Transform - - uid: 20731 + - uid: 20767 components: - pos: 60.5,-70.5 parent: 2 type: Transform - - uid: 20732 + - uid: 20768 components: - pos: 2.5,-36.5 parent: 2 type: Transform - - uid: 20733 + - uid: 20769 components: - pos: 51.5,-68.5 parent: 2 type: Transform - - uid: 20734 + - uid: 20770 components: - pos: 50.5,-68.5 parent: 2 type: Transform - - uid: 20735 + - uid: 20771 components: - rot: -1.5707963267948966 rad pos: 43.5,-44.5 parent: 2 type: Transform - - uid: 20736 + - uid: 20772 components: - rot: -1.5707963267948966 rad pos: 44.5,-44.5 parent: 2 type: Transform - - uid: 20737 + - uid: 20773 components: - rot: -1.5707963267948966 rad pos: 16.5,38.5 parent: 2 type: Transform - - uid: 20738 + - uid: 20774 components: - rot: -1.5707963267948966 rad pos: 18.5,37.5 parent: 2 type: Transform - - uid: 20739 + - uid: 20775 components: - rot: -1.5707963267948966 rad pos: 14.5,37.5 parent: 2 type: Transform - - uid: 20740 + - uid: 20776 components: - pos: 62.5,-70.5 parent: 2 type: Transform - - uid: 20741 + - uid: 20777 components: - pos: 71.5,-64.5 parent: 2 type: Transform - - uid: 20742 + - uid: 20778 components: - rot: -1.5707963267948966 rad pos: 54.5,-68.5 parent: 2 type: Transform - - uid: 20743 + - uid: 20779 components: - rot: -1.5707963267948966 rad pos: 55.5,-68.5 parent: 2 type: Transform - - uid: 20744 + - uid: 20780 components: - rot: -1.5707963267948966 rad pos: 56.5,-68.5 parent: 2 type: Transform - - uid: 20745 + - uid: 20781 components: - pos: 54.5,-25.5 parent: 2 type: Transform - - uid: 20746 + - uid: 20782 components: - pos: 56.5,-25.5 parent: 2 type: Transform - - uid: 20747 + - uid: 20783 components: - pos: 58.5,-25.5 parent: 2 type: Transform - - uid: 20748 + - uid: 20784 components: - pos: 68.5,-57.5 parent: 2 type: Transform - - uid: 20749 + - uid: 20785 components: - pos: 71.5,-54.5 parent: 2 type: Transform - - uid: 20750 + - uid: 20786 components: - pos: 70.5,-54.5 parent: 2 type: Transform - - uid: 20751 + - uid: 20787 components: - pos: -12.5,43.5 parent: 2 type: Transform - - uid: 20752 + - uid: 20788 components: - pos: -8.5,43.5 parent: 2 type: Transform - - uid: 20753 + - uid: 20789 components: - pos: 73.5,46.5 parent: 2 type: Transform - - uid: 20754 + - uid: 20790 components: - pos: 72.5,46.5 parent: 2 type: Transform - - uid: 20755 + - uid: 20791 components: - rot: -1.5707963267948966 rad pos: 70.5,-50.5 parent: 2 type: Transform - - uid: 20756 + - uid: 20792 components: - rot: -1.5707963267948966 rad pos: -25.5,-18.5 parent: 2 type: Transform - - uid: 20757 + - uid: 20793 components: - pos: 36.5,18.5 parent: 2 type: Transform - - uid: 20758 + - uid: 20794 components: - pos: 35.5,18.5 parent: 2 type: Transform - - uid: 20759 + - uid: 20795 components: - pos: 34.5,18.5 parent: 2 type: Transform - - uid: 20760 + - uid: 20796 components: - rot: 3.141592653589793 rad pos: 71.5,-30.5 parent: 2 type: Transform - - uid: 20761 + - uid: 20797 components: - rot: 1.5707963267948966 rad pos: -52.5,-85.5 parent: 2 type: Transform - - uid: 20762 + - uid: 20798 components: - rot: 1.5707963267948966 rad pos: -52.5,-89.5 parent: 2 type: Transform - - uid: 20763 + - uid: 20799 components: - rot: 1.5707963267948966 rad pos: -49.5,-87.5 parent: 2 type: Transform - - uid: 20764 + - uid: 20800 components: - rot: 1.5707963267948966 rad pos: -50.5,-87.5 parent: 2 type: Transform - - uid: 20765 + - uid: 20801 components: - pos: -31.5,72.5 parent: 2 type: Transform - - uid: 20766 + - uid: 20802 components: - pos: -30.5,72.5 parent: 2 type: Transform - - uid: 20767 + - uid: 20803 components: - pos: -29.5,72.5 parent: 2 type: Transform - - uid: 20768 + - uid: 20804 components: - pos: -28.5,72.5 parent: 2 type: Transform - - uid: 20769 + - uid: 20805 components: - pos: -27.5,72.5 parent: 2 type: Transform - - uid: 20770 + - uid: 20806 components: - pos: -26.5,72.5 parent: 2 type: Transform - - uid: 20771 + - uid: 20807 components: - pos: -40.5,-62.5 parent: 2 type: Transform - - uid: 20772 + - uid: 20808 components: - pos: -41.5,-62.5 parent: 2 type: Transform - - uid: 20773 + - uid: 20809 components: - pos: -47.5,-34.5 parent: 2 type: Transform - - uid: 20774 + - uid: 20810 components: - pos: -47.5,-35.5 parent: 2 type: Transform - - uid: 20775 + - uid: 20811 components: - pos: 46.5,-78.5 parent: 2 type: Transform - - uid: 20776 + - uid: 20812 components: - pos: 46.5,-77.5 parent: 2 type: Transform - - uid: 20777 + - uid: 20813 components: - pos: 46.5,-79.5 parent: 2 type: Transform - - uid: 20778 + - uid: 20814 components: - rot: 3.141592653589793 rad pos: 24.5,-80.5 parent: 2 type: Transform - - uid: 20779 + - uid: 20815 components: - rot: 3.141592653589793 rad pos: 28.5,-89.5 parent: 2 type: Transform - - uid: 20780 + - uid: 20816 components: - rot: 3.141592653589793 rad pos: 25.5,-75.5 parent: 2 type: Transform - - uid: 20781 + - uid: 20817 components: - rot: 3.141592653589793 rad pos: 26.5,-75.5 parent: 2 type: Transform - - uid: 20782 + - uid: 20818 components: - rot: 3.141592653589793 rad pos: 28.5,-90.5 parent: 2 type: Transform - - uid: 20783 + - uid: 20819 components: - rot: 3.141592653589793 rad pos: 14.5,-78.5 parent: 2 type: Transform - - uid: 20784 + - uid: 20820 components: - rot: 3.141592653589793 rad pos: 13.5,-78.5 parent: 2 type: Transform - - uid: 20785 + - uid: 20821 components: - rot: 3.141592653589793 rad pos: 25.5,-86.5 parent: 2 type: Transform - - uid: 20786 + - uid: 20822 components: - rot: 3.141592653589793 rad pos: 25.5,-67.5 parent: 2 type: Transform - - uid: 20787 + - uid: 20823 components: - rot: 1.5707963267948966 rad pos: 37.5,-74.5 parent: 2 type: Transform - - uid: 20788 + - uid: 20824 components: - rot: 3.141592653589793 rad pos: 26.5,-67.5 parent: 2 type: Transform - - uid: 20789 + - uid: 20825 components: - rot: 3.141592653589793 rad pos: 17.5,-78.5 parent: 2 type: Transform - - uid: 20790 + - uid: 20826 components: - rot: 3.141592653589793 rad pos: 16.5,-78.5 parent: 2 type: Transform - - uid: 20791 + - uid: 20827 components: - rot: 3.141592653589793 rad pos: 14.5,-88.5 parent: 2 type: Transform - - uid: 20792 + - uid: 20828 components: - rot: 3.141592653589793 rad pos: 13.5,-88.5 parent: 2 type: Transform - - uid: 20793 + - uid: 20829 components: - rot: 3.141592653589793 rad pos: 17.5,-88.5 parent: 2 type: Transform - - uid: 20794 + - uid: 20830 components: - rot: 3.141592653589793 rad pos: 16.5,-88.5 parent: 2 type: Transform - - uid: 20795 + - uid: 20831 components: - rot: 3.141592653589793 rad pos: 24.5,-86.5 parent: 2 type: Transform - - uid: 20796 + - uid: 20832 components: - rot: 3.141592653589793 rad pos: 51.5,-72.5 parent: 2 type: Transform - - uid: 20797 + - uid: 20833 components: - rot: 3.141592653589793 rad pos: 51.5,-71.5 parent: 2 type: Transform - - uid: 20798 + - uid: 20834 components: - pos: 9.5,-18.5 parent: 2 type: Transform - - uid: 20799 + - uid: 20835 components: - rot: 3.141592653589793 rad pos: 6.5,-22.5 parent: 2 type: Transform - - uid: 20800 + - uid: 20836 components: - rot: 3.141592653589793 rad pos: 6.5,-23.5 parent: 2 type: Transform - - uid: 20801 + - uid: 20837 components: - pos: 45.5,9.5 parent: 2 type: Transform - - uid: 20802 + - uid: 20838 components: - pos: 48.5,7.5 parent: 2 type: Transform - - uid: 20803 + - uid: 20839 components: - rot: -1.5707963267948966 rad pos: 1.5,-74.5 parent: 2 type: Transform - - uid: 20804 + - uid: 20840 components: - pos: -76.5,-25.5 parent: 2 type: Transform - - uid: 20805 + - uid: 20841 components: - pos: -76.5,-12.5 parent: 2 type: Transform - - uid: 20806 + - uid: 20842 components: - rot: -1.5707963267948966 rad pos: 31.5,35.5 parent: 2 type: Transform - - uid: 20807 + - uid: 20843 components: - rot: -1.5707963267948966 rad pos: 30.5,35.5 parent: 2 type: Transform - - uid: 20808 + - uid: 20844 components: - rot: -1.5707963267948966 rad pos: 29.5,35.5 parent: 2 type: Transform - - uid: 20809 + - uid: 20845 components: - rot: -1.5707963267948966 rad pos: 28.5,35.5 parent: 2 type: Transform - - uid: 20810 + - uid: 20846 components: - rot: -1.5707963267948966 rad pos: 27.5,35.5 parent: 2 type: Transform - - uid: 20811 + - uid: 20847 components: - pos: 67.5,-32.5 parent: 2 type: Transform - - uid: 20812 + - uid: 20848 components: - rot: 1.5707963267948966 rad pos: -77.5,-51.5 parent: 2 type: Transform - - uid: 20813 + - uid: 20849 components: - rot: 1.5707963267948966 rad pos: 38.5,-74.5 parent: 2 type: Transform - - uid: 20814 + - uid: 20850 components: - rot: 1.5707963267948966 rad pos: 39.5,-74.5 parent: 2 type: Transform - - uid: 20815 + - uid: 20851 components: - rot: 1.5707963267948966 rad pos: 40.5,-74.5 parent: 2 type: Transform - - uid: 20816 + - uid: 20852 components: - rot: 1.5707963267948966 rad pos: -80.5,-54.5 parent: 2 type: Transform - - uid: 20817 + - uid: 20853 components: - rot: 1.5707963267948966 rad pos: -8.5,13.5 parent: 2 type: Transform - - uid: 20818 + - uid: 20854 components: - rot: 1.5707963267948966 rad pos: -78.5,-56.5 parent: 2 type: Transform - - uid: 20819 + - uid: 20855 components: - pos: -72.5,-50.5 parent: 2 type: Transform - - uid: 20820 + - uid: 20856 components: - rot: 1.5707963267948966 rad pos: -77.5,-56.5 parent: 2 type: Transform - - uid: 20821 + - uid: 20857 components: - rot: 1.5707963267948966 rad pos: -80.5,-53.5 parent: 2 type: Transform - - uid: 20822 + - uid: 20858 components: - rot: 1.5707963267948966 rad pos: -78.5,-51.5 parent: 2 type: Transform - - uid: 20823 + - uid: 20859 components: - rot: -1.5707963267948966 rad pos: -72.5,-57.5 parent: 2 type: Transform - - uid: 20824 + - uid: 20860 components: - rot: -1.5707963267948966 rad pos: -74.5,-40.5 parent: 2 type: Transform - - uid: 20825 + - uid: 20861 components: - pos: -70.5,-47.5 parent: 2 type: Transform - - uid: 20826 + - uid: 20862 components: - pos: -69.5,-47.5 parent: 2 type: Transform - - uid: 20827 + - uid: 20863 components: - pos: -68.5,-47.5 parent: 2 type: Transform - - uid: 20828 + - uid: 20864 components: - pos: -64.5,-43.5 parent: 2 type: Transform - - uid: 20829 + - uid: 20865 components: - pos: -82.5,-28.5 parent: 2 type: Transform - - uid: 20830 + - uid: 20866 components: - pos: -82.5,-29.5 parent: 2 type: Transform - - uid: 20831 + - uid: 20867 components: - pos: -82.5,-30.5 parent: 2 type: Transform - - uid: 20832 + - uid: 20868 components: - pos: -82.5,-31.5 parent: 2 type: Transform - - uid: 20833 + - uid: 20869 components: - pos: -82.5,-32.5 parent: 2 type: Transform - - uid: 20834 + - uid: 20870 components: - pos: -82.5,-33.5 parent: 2 type: Transform - - uid: 20835 + - uid: 20871 components: - pos: -82.5,-34.5 parent: 2 type: Transform - - uid: 20836 + - uid: 20872 components: - pos: -82.5,-35.5 parent: 2 type: Transform - - uid: 20837 + - uid: 20873 components: - pos: -82.5,-36.5 parent: 2 type: Transform - - uid: 20838 + - uid: 20874 components: - pos: -82.5,-37.5 parent: 2 type: Transform - - uid: 20839 + - uid: 20875 components: - pos: -82.5,-38.5 parent: 2 type: Transform - - uid: 20840 + - uid: 20876 components: - pos: -82.5,-39.5 parent: 2 type: Transform - - uid: 20841 + - uid: 20877 components: - pos: -82.5,-40.5 parent: 2 type: Transform - - uid: 20842 + - uid: 20878 components: - pos: -82.5,-41.5 parent: 2 type: Transform - - uid: 20843 + - uid: 20879 components: - pos: -82.5,-42.5 parent: 2 type: Transform - - uid: 20844 + - uid: 20880 components: - pos: -82.5,-43.5 parent: 2 type: Transform - - uid: 20845 + - uid: 20881 components: - pos: -82.5,-44.5 parent: 2 type: Transform - - uid: 20846 + - uid: 20882 components: - pos: -82.5,-45.5 parent: 2 type: Transform - - uid: 20847 + - uid: 20883 components: - pos: -82.5,-46.5 parent: 2 type: Transform - - uid: 20848 + - uid: 20884 components: - pos: -82.5,-47.5 parent: 2 type: Transform - - uid: 20849 + - uid: 20885 components: - pos: -82.5,-48.5 parent: 2 type: Transform - - uid: 20850 + - uid: 20886 components: - pos: -82.5,-27.5 parent: 2 type: Transform - - uid: 20851 + - uid: 20887 components: - pos: -82.5,-26.5 parent: 2 type: Transform - - uid: 20852 + - uid: 20888 components: - pos: -81.5,-26.5 parent: 2 type: Transform - - uid: 20853 + - uid: 20889 components: - rot: 1.5707963267948966 rad pos: -15.5,9.5 parent: 2 type: Transform - - uid: 20854 + - uid: 20890 components: - pos: -51.5,-13.5 parent: 2 type: Transform - - uid: 20855 + - uid: 20891 components: - rot: 1.5707963267948966 rad pos: -14.5,9.5 parent: 2 type: Transform - - uid: 20856 + - uid: 20892 components: - rot: 3.141592653589793 rad pos: -61.5,-44.5 parent: 2 type: Transform - - uid: 20857 + - uid: 20893 components: - rot: 1.5707963267948966 rad pos: -13.5,9.5 parent: 2 type: Transform - - uid: 20858 + - uid: 20894 components: - pos: -60.5,-38.5 parent: 2 type: Transform - - uid: 20859 + - uid: 20895 components: - rot: -1.5707963267948966 rad pos: -46.5,-38.5 parent: 2 type: Transform - - uid: 20860 + - uid: 20896 components: - pos: -52.5,-38.5 parent: 2 type: Transform - - uid: 20861 + - uid: 20897 components: - rot: 3.141592653589793 rad pos: -78.5,-45.5 parent: 2 type: Transform - - uid: 20862 + - uid: 20898 components: - pos: -42.5,-37.5 parent: 2 type: Transform - - uid: 20863 + - uid: 20899 components: - rot: -1.5707963267948966 rad pos: -53.5,-31.5 parent: 2 type: Transform - - uid: 20864 + - uid: 20900 components: - rot: -1.5707963267948966 rad pos: -53.5,-32.5 parent: 2 type: Transform - - uid: 20865 + - uid: 20901 components: - rot: 3.141592653589793 rad pos: 20.5,-34.5 parent: 2 type: Transform - - uid: 20866 + - uid: 20902 components: - rot: -1.5707963267948966 rad pos: 2.5,-3.5 parent: 2 type: Transform - - uid: 20867 + - uid: 20903 components: - rot: -1.5707963267948966 rad pos: 1.5,-3.5 parent: 2 type: Transform - - uid: 20868 + - uid: 20904 components: - pos: 3.5,-3.5 parent: 2 type: Transform - - uid: 20869 + - uid: 20905 components: - rot: -1.5707963267948966 rad pos: 23.5,-40.5 parent: 2 type: Transform - - uid: 20870 + - uid: 20906 components: - rot: -1.5707963267948966 rad pos: 24.5,-40.5 parent: 2 type: Transform - - uid: 20871 + - uid: 20907 components: - rot: -1.5707963267948966 rad pos: 26.5,-40.5 parent: 2 type: Transform - - uid: 20872 + - uid: 20908 components: - rot: -1.5707963267948966 rad pos: 27.5,-40.5 parent: 2 type: Transform + - uid: 20909 + components: + - pos: 8.5,27.5 + parent: 2 + type: Transform + - uid: 20910 + components: + - pos: 10.5,29.5 + parent: 2 + type: Transform + - uid: 20911 + components: + - pos: 10.5,27.5 + parent: 2 + type: Transform + - uid: 20912 + components: + - pos: 9.5,27.5 + parent: 2 + type: Transform + - uid: 20913 + components: + - rot: -1.5707963267948966 rad + pos: 54.5,-40.5 + parent: 2 + type: Transform + - uid: 20914 + components: + - rot: -1.5707963267948966 rad + pos: 54.5,-42.5 + parent: 2 + type: Transform + - uid: 31312 + components: + - pos: -29.5,-63.5 + parent: 2 + type: Transform - proto: GrilleBroken entities: - - uid: 20873 + - uid: 20915 components: - rot: 3.141592653589793 rad pos: -2.5,-71.5 parent: 2 type: Transform - - uid: 20874 + - uid: 20916 components: - pos: -2.5,-71.5 parent: 2 type: Transform - - uid: 20875 + - uid: 20917 components: - rot: -1.5707963267948966 rad pos: -54.5,-83.5 parent: 2 type: Transform - - uid: 20876 + - uid: 20918 components: - rot: 1.5707963267948966 rad pos: -54.5,-83.5 parent: 2 type: Transform - - uid: 20877 + - uid: 20919 components: - rot: -1.5707963267948966 rad pos: 2.5,49.5 parent: 2 type: Transform - - uid: 20878 + - uid: 20920 components: - rot: 1.5707963267948966 rad pos: 2.5,49.5 parent: 2 type: Transform - - uid: 20879 + - uid: 20921 components: - rot: 3.141592653589793 rad pos: 2.5,48.5 parent: 2 type: Transform - - uid: 20880 + - uid: 20922 components: - pos: 2.5,48.5 parent: 2 type: Transform +- proto: GrilleSpawner + entities: + - uid: 20923 + components: + - rot: 3.141592653589793 rad + pos: -47.5,-30.5 + parent: 2 + type: Transform - proto: GunpetInstrument entities: - - uid: 20881 + - uid: 20924 components: - pos: 18.804333,-20.357145 parent: 2 type: Transform - proto: GunSafeDisabler entities: - - uid: 20882 + - uid: 20925 components: - pos: 23.5,20.5 parent: 2 type: Transform - proto: Handcuffs entities: - - uid: 20883 + - uid: 20926 components: - pos: -1.4479281,19.547018 parent: 2 type: Transform - - uid: 20884 + - uid: 20927 components: - pos: -15.367192,-23.36869 parent: 2 type: Transform - proto: HandheldHealthAnalyzer entities: - - uid: 20885 + - uid: 20928 components: - pos: 10.274347,-58.341446 parent: 2 type: Transform - - uid: 20886 + - uid: 20929 components: - pos: 10.539972,-58.60707 parent: 2 type: Transform - - uid: 20887 + - uid: 20930 components: - pos: 45.505707,8.483616 parent: 2 type: Transform - proto: HandLabeler entities: - - uid: 20888 + - uid: 20931 components: - pos: 7.5090528,-45.828945 parent: 2 type: Transform - - uid: 20889 + - uid: 20932 components: - pos: 39.184,-39.455414 parent: 2 type: Transform - - uid: 20890 + - uid: 20933 components: - pos: -33.328754,17.574179 parent: 2 type: Transform - - uid: 20891 + - uid: 20934 components: - pos: -28.559744,21.679361 parent: 2 type: Transform - - uid: 20892 + - uid: 20935 components: - rot: 3.141592653589793 rad pos: -32.198154,29.656374 @@ -143777,21 +137122,21 @@ entities: type: Transform - proto: HappyHonkNukie entities: - - uid: 20893 + - uid: 20936 components: - pos: 22.60001,-29.307062 parent: 2 type: Transform - proto: HarmonicaInstrument entities: - - uid: 20894 + - uid: 20937 components: - pos: 53.479427,24.562923 parent: 2 type: Transform - proto: HeatExchanger entities: - - uid: 20895 + - uid: 20938 components: - rot: -1.5707963267948966 rad pos: -63.5,-42.5 @@ -143799,7 +137144,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 20896 + - uid: 20939 components: - rot: -1.5707963267948966 rad pos: -63.5,-39.5 @@ -143807,14 +137152,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 20897 + - uid: 20940 components: - pos: -62.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 20898 + - uid: 20941 components: - pos: -62.5,-40.5 parent: 2 @@ -143823,60 +137168,60 @@ entities: type: AtmosPipeColor - proto: Hemostat entities: - - uid: 20899 + - uid: 20942 components: - pos: 0.5210637,-64.93571 parent: 2 type: Transform - - uid: 20900 + - uid: 20943 components: - pos: 73.5331,-48.317677 parent: 2 type: Transform - proto: HighSecArmoryLocked entities: - - uid: 20901 + - uid: 20944 components: - pos: 28.5,26.5 parent: 2 type: Transform - - uid: 20902 + - uid: 20945 components: - pos: 30.5,26.5 parent: 2 type: Transform - - uid: 20903 + - uid: 20946 components: - pos: 30.5,24.5 parent: 2 type: Transform - - uid: 20904 + - uid: 20947 components: - pos: 28.5,24.5 parent: 2 type: Transform - proto: HighSecCaptainLocked entities: - - uid: 20905 + - uid: 20948 components: - name: vault type: MetaData - pos: 43.5,-24.5 parent: 2 type: Transform - - uid: 20906 + - uid: 20949 components: - name: vault type: MetaData - pos: 43.5,-27.5 parent: 2 type: Transform - - uid: 20907 + - uid: 20950 components: - pos: -1.5,64.5 parent: 2 type: Transform - - uid: 20908 + - uid: 20951 components: - name: AI type: MetaData @@ -143885,34 +137230,32 @@ entities: type: Transform - proto: HighSecCommandLocked entities: - - uid: 20909 + - uid: 20952 components: - pos: 13.5,-21.5 parent: 2 type: Transform - proto: HolofanProjector entities: - - uid: 20910 - components: - - pos: -42.447636,35.63477 - parent: 2 - type: Transform - - uid: 20911 + - uid: 20953 components: - pos: -37.369167,-8.432599 parent: 2 type: Transform - proto: HospitalCurtains entities: - - uid: 20912 + - uid: 20954 components: - pos: 60.5,21.5 parent: 2 type: Transform - - SecondsUntilStateChange: -565415.56 - state: Opening + - enabled: False + type: Occluder + - state: Open type: Door - - uid: 20913 + - canCollide: False + type: Physics + - uid: 20955 components: - rot: 3.141592653589793 rad pos: 60.5,13.5 @@ -143920,122 +137263,125 @@ entities: type: Transform - proto: HospitalCurtainsOpen entities: - - uid: 20914 + - uid: 20956 components: - pos: -2.5,-55.5 parent: 2 type: Transform - - uid: 20915 + - uid: 20957 components: - pos: -5.5,-55.5 parent: 2 type: Transform - - uid: 20916 + - uid: 20958 components: - pos: -11.5,-55.5 parent: 2 type: Transform - - uid: 20917 + - uid: 20959 components: - pos: 3.5,-62.5 parent: 2 type: Transform - - SecondsUntilStateChange: -639977.25 - state: Closing + - state: Closed type: Door - - uid: 20918 + - enabled: True + type: Occluder + - canCollide: True + type: Physics + - uid: 20960 components: - pos: 0.5,-55.5 parent: 2 type: Transform - - uid: 20919 + - uid: 20961 components: - pos: -8.5,-55.5 parent: 2 type: Transform - proto: hydroponicsSoil entities: - - uid: 20920 + - uid: 20962 components: - pos: 9.5,55.5 parent: 2 type: Transform - - uid: 20921 + - uid: 20963 components: - pos: 8.5,55.5 parent: 2 type: Transform - - uid: 20922 + - uid: 20964 components: - pos: 10.5,55.5 parent: 2 type: Transform - - uid: 20923 + - uid: 20965 components: - pos: 11.5,55.5 parent: 2 type: Transform - - uid: 20924 + - uid: 20966 components: - pos: 7.5,55.5 parent: 2 type: Transform - - uid: 20925 + - uid: 20967 components: - pos: 11.5,52.5 parent: 2 type: Transform - - uid: 20926 + - uid: 20968 components: - pos: 10.5,52.5 parent: 2 type: Transform - - uid: 20927 + - uid: 20969 components: - pos: 9.5,52.5 parent: 2 type: Transform - - uid: 20928 + - uid: 20970 components: - pos: -6.5,49.5 parent: 2 type: Transform - - uid: 20929 + - uid: 20971 components: - pos: -4.5,55.5 parent: 2 type: Transform - - uid: 20930 + - uid: 20972 components: - rot: -1.5707963267948966 rad pos: -28.5,4.5 parent: 2 type: Transform - - uid: 20931 + - uid: 20973 components: - rot: -1.5707963267948966 rad pos: -28.5,3.5 parent: 2 type: Transform - - uid: 20932 + - uid: 20974 components: - rot: -1.5707963267948966 rad pos: -4.5,19.5 parent: 2 type: Transform - - uid: 20933 + - uid: 20975 components: - rot: -1.5707963267948966 rad pos: -7.5,19.5 parent: 2 type: Transform - - uid: 20934 + - uid: 20976 components: - rot: 1.5707963267948966 rad pos: -54.5,-68.5 parent: 2 type: Transform - - uid: 20935 + - uid: 20977 components: - rot: 1.5707963267948966 rad pos: -55.5,-68.5 @@ -144043,296 +137389,296 @@ entities: type: Transform - proto: HydroponicsToolClippers entities: - - uid: 20936 + - uid: 20978 components: - pos: -47.467487,-3.558907 parent: 2 type: Transform - proto: HydroponicsToolHatchet entities: - - uid: 20937 + - uid: 20979 components: - pos: 9.725508,-56.44578 parent: 2 type: Transform - proto: HydroponicsToolMiniHoe entities: - - uid: 20938 + - uid: 20980 components: - pos: 57.497448,6.490094 parent: 2 type: Transform - - uid: 20939 + - uid: 20981 components: - pos: -28.501194,4.4131045 parent: 2 type: Transform - - uid: 20940 + - uid: 20982 components: - pos: 55.4544,56.501 parent: 2 type: Transform - - uid: 20941 + - uid: 20983 components: - pos: 7.1714664,53.671818 parent: 2 type: Transform - proto: HydroponicsToolScythe entities: - - uid: 20942 + - uid: 20984 components: - pos: -2.5396576,10.576576 parent: 2 type: Transform - proto: HydroponicsToolSpade entities: - - uid: 20943 + - uid: 20985 components: - pos: 57.622448,6.583844 parent: 2 type: Transform - - uid: 20944 + - uid: 20986 components: - pos: -28.61099,3.5269613 parent: 2 type: Transform - - uid: 20945 + - uid: 20987 components: - pos: 55.54815,56.53225 parent: 2 type: Transform - proto: hydroponicsTray entities: - - uid: 20946 + - uid: 20988 components: - pos: -10.5,11.5 parent: 2 type: Transform - - uid: 20947 + - uid: 20989 components: - pos: -6.5,10.5 parent: 2 type: Transform - - uid: 20948 + - uid: 20990 components: - pos: -10.5,10.5 parent: 2 type: Transform - - uid: 20949 + - uid: 20991 components: - pos: -4.5,7.5 parent: 2 type: Transform - - uid: 20950 + - uid: 20992 components: - pos: -8.5,9.5 parent: 2 type: Transform - - uid: 20951 + - uid: 20993 components: - pos: -6.5,7.5 parent: 2 type: Transform - - uid: 20952 + - uid: 20994 components: - pos: -6.5,9.5 parent: 2 type: Transform - - uid: 20953 + - uid: 20995 components: - pos: -8.5,8.5 parent: 2 type: Transform - - uid: 20954 + - uid: 20996 components: - pos: -4.5,8.5 parent: 2 type: Transform - - uid: 20955 + - uid: 20997 components: - pos: -8.5,10.5 parent: 2 type: Transform - - uid: 20956 + - uid: 20998 components: - pos: -6.5,11.5 parent: 2 type: Transform - - uid: 20957 + - uid: 20999 components: - pos: -6.5,8.5 parent: 2 type: Transform - - uid: 20958 + - uid: 21000 components: - pos: -10.5,8.5 parent: 2 type: Transform - - uid: 20959 + - uid: 21001 components: - pos: -8.5,7.5 parent: 2 type: Transform - - uid: 20960 + - uid: 21002 components: - pos: -10.5,7.5 parent: 2 type: Transform - - uid: 20961 + - uid: 21003 components: - pos: -10.5,9.5 parent: 2 type: Transform - - uid: 20962 + - uid: 21004 components: - pos: -8.5,11.5 parent: 2 type: Transform - - uid: 20963 + - uid: 21005 components: - pos: 58.5,8.5 parent: 2 type: Transform - - uid: 20964 + - uid: 21006 components: - pos: 58.5,7.5 parent: 2 type: Transform - - uid: 20965 + - uid: 21007 components: - pos: 58.5,6.5 parent: 2 type: Transform - - uid: 20966 + - uid: 21008 components: - pos: 56.5,8.5 parent: 2 type: Transform - - uid: 20967 + - uid: 21009 components: - pos: 56.5,7.5 parent: 2 type: Transform - - uid: 20968 + - uid: 21010 components: - pos: 56.5,6.5 parent: 2 type: Transform - - uid: 20969 + - uid: 21011 components: - pos: 52.5,55.5 parent: 2 type: Transform - - uid: 20970 + - uid: 21012 components: - pos: 56.5,55.5 parent: 2 type: Transform - proto: HydroponicsTrayMachineCircuitboard entities: - - uid: 20971 + - uid: 21013 components: - pos: 38.518326,-56.124916 parent: 2 type: Transform - proto: InflatableDoorStack1 entities: - - uid: 20972 + - uid: 21014 components: - pos: 41.577766,-55.382984 parent: 2 type: Transform - proto: InflatableWall entities: - - uid: 20973 + - uid: 21015 components: - pos: -51.5,-66.5 parent: 2 type: Transform - - uid: 20974 + - uid: 21016 components: - pos: -51.5,-67.5 parent: 2 type: Transform - - uid: 20975 + - uid: 21017 components: - pos: -49.5,-72.5 parent: 2 type: Transform - proto: InflatableWallStack entities: - - uid: 20976 + - uid: 21018 components: - pos: 7.4753633,-16.474928 parent: 2 type: Transform - proto: InflatableWallStack1 entities: - - uid: 20977 + - uid: 21019 components: - pos: -38.56672,-98.45029 parent: 2 type: Transform - proto: IngotGold entities: - - uid: 20978 + - uid: 21020 components: - pos: 48.54513,-24.041304 parent: 2 type: Transform - - uid: 20979 + - uid: 21021 components: - pos: 48.16234,-27.566782 parent: 2 type: Transform - proto: IngotGold1 entities: - - uid: 20980 + - uid: 21022 components: - pos: 14.545005,56.593597 parent: 2 type: Transform - - uid: 20981 + - uid: 21023 components: - pos: 59.385517,-51.41954 parent: 2 type: Transform - - uid: 20982 + - uid: 21024 components: - pos: 59.432392,-51.591415 parent: 2 type: Transform - proto: IntercomAll entities: - - uid: 20983 + - uid: 21025 components: - pos: 20.5,-20.5 parent: 2 type: Transform - proto: IntercomCommand entities: - - uid: 20984 + - uid: 21026 components: - pos: -34.5,-14.5 parent: 2 type: Transform - - uid: 20985 + - uid: 21027 components: - pos: 64.5,0.5 parent: 2 type: Transform - - uid: 20986 + - uid: 21028 components: - pos: 64.5,-50.5 parent: 2 type: Transform - - uid: 20987 + - uid: 21029 components: - rot: -1.5707963267948966 rad pos: 9.5,21.5 parent: 2 type: Transform - - uid: 20988 + - uid: 21030 components: - rot: -1.5707963267948966 rad pos: -16.5,-57.5 @@ -144340,147 +137686,147 @@ entities: type: Transform - proto: IntercomCommon entities: - - uid: 20989 + - uid: 21031 components: - pos: -38.5,-70.5 parent: 2 type: Transform - - uid: 20990 + - uid: 21032 components: - rot: 1.5707963267948966 rad pos: -14.5,57.5 parent: 2 type: Transform - - uid: 20991 + - uid: 21033 components: - pos: 37.5,-69.5 parent: 2 type: Transform - - uid: 20992 + - uid: 21034 components: - rot: -1.5707963267948966 rad pos: 29.5,-2.5 parent: 2 type: Transform - - uid: 20993 + - uid: 21035 components: - rot: -1.5707963267948966 rad pos: 7.5,6.5 parent: 2 type: Transform - - uid: 20994 + - uid: 21036 components: - pos: 14.5,4.5 parent: 2 type: Transform - - uid: 20995 + - uid: 21037 components: - pos: 9.5,11.5 parent: 2 type: Transform - - uid: 20996 + - uid: 21038 components: - rot: 1.5707963267948966 rad pos: 15.5,-3.5 parent: 2 type: Transform - - uid: 20997 + - uid: 21039 components: - pos: -31.5,11.5 parent: 2 type: Transform - - uid: 20998 + - uid: 21040 components: - pos: -30.5,2.5 parent: 2 type: Transform - - uid: 20999 + - uid: 21041 components: - pos: -15.5,-24.5 parent: 2 type: Transform - - uid: 21000 + - uid: 21042 components: - pos: 4.5,-39.5 parent: 2 type: Transform - - uid: 21001 + - uid: 21043 components: - pos: 39.5,-40.5 parent: 2 type: Transform - - uid: 21002 + - uid: 21044 components: - pos: 29.5,-15.5 parent: 2 type: Transform - - uid: 21003 + - uid: 21045 components: - pos: 39.5,3.5 parent: 2 type: Transform - - uid: 21004 + - uid: 21046 components: - pos: 54.5,-4.5 parent: 2 type: Transform - - uid: 21005 + - uid: 21047 components: - rot: -1.5707963267948966 rad pos: 13.5,-8.5 parent: 2 type: Transform - - uid: 21006 + - uid: 21048 components: - rot: 1.5707963267948966 rad pos: -1.5,48.5 parent: 2 type: Transform - - uid: 21007 + - uid: 21049 components: - rot: 1.5707963267948966 rad pos: -19.5,40.5 parent: 2 type: Transform - - uid: 21008 + - uid: 21050 components: - rot: -1.5707963267948966 rad pos: -2.5,-18.5 parent: 2 type: Transform - - uid: 21009 + - uid: 21051 components: - pos: -14.5,-40.5 parent: 2 type: Transform - - uid: 21010 + - uid: 21052 components: - rot: -1.5707963267948966 rad pos: 17.5,-28.5 parent: 2 type: Transform - - uid: 21011 + - uid: 21053 components: - pos: 17.5,-51.5 parent: 2 type: Transform - - uid: 21012 + - uid: 21054 components: - pos: -25.5,-94.5 parent: 2 type: Transform - - uid: 21013 + - uid: 21055 components: - rot: 1.5707963267948966 rad pos: -21.5,29.5 parent: 2 type: Transform - - uid: 21014 + - uid: 21056 components: - pos: 23.5,-69.5 parent: 2 type: Transform - - uid: 21015 + - uid: 21057 components: - rot: -1.5707963267948966 rad pos: 20.5,-84.5 @@ -144488,198 +137834,204 @@ entities: type: Transform - proto: IntercomEngineering entities: - - uid: 21016 + - uid: 21058 components: - pos: -24.5,-7.5 parent: 2 type: Transform - - uid: 21017 + - uid: 21059 components: - pos: -35.5,-4.5 parent: 2 type: Transform - - uid: 21018 + - uid: 21060 components: - rot: -1.5707963267948966 rad pos: -52.5,-9.5 parent: 2 type: Transform - - uid: 21019 + - uid: 21061 components: - pos: -61.5,-26.5 parent: 2 type: Transform - - uid: 21020 + - uid: 21062 components: - pos: -28.5,-32.5 parent: 2 type: Transform - - uid: 21021 + - uid: 21063 components: - rot: -1.5707963267948966 rad pos: -32.5,-49.5 parent: 2 type: Transform - - uid: 21022 + - uid: 21064 components: - pos: -67.5,-35.5 parent: 2 type: Transform + - uid: 21065 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,-22.5 + parent: 2 + type: Transform - proto: IntercomMedical entities: - - uid: 21023 + - uid: 21066 components: - pos: -13.5,-58.5 parent: 2 type: Transform - - uid: 21024 + - uid: 21067 components: - rot: 1.5707963267948966 rad pos: -32.5,-70.5 parent: 2 type: Transform - - uid: 21025 + - uid: 21068 components: - pos: -24.5,-56.5 parent: 2 type: Transform - - uid: 21026 + - uid: 21069 components: - pos: 2.5,-51.5 parent: 2 type: Transform - - uid: 21027 + - uid: 21070 components: - pos: -25.5,-68.5 parent: 2 type: Transform - - uid: 21028 + - uid: 21071 components: - rot: -1.5707963267948966 rad pos: -4.5,-64.5 parent: 2 type: Transform - - uid: 21029 + - uid: 21072 components: - rot: 1.5707963267948966 rad pos: -13.5,-36.5 parent: 2 type: Transform - - uid: 21030 + - uid: 21073 components: - rot: 1.5707963267948966 rad pos: -27.5,-85.5 parent: 2 type: Transform - - uid: 21031 + - uid: 21074 components: - rot: -1.5707963267948966 rad pos: -21.5,-80.5 parent: 2 type: Transform - - uid: 21032 + - uid: 21075 components: - pos: -19.5,-74.5 parent: 2 type: Transform - proto: IntercomScience entities: - - uid: 21033 + - uid: 21076 components: - pos: 42.5,-34.5 parent: 2 type: Transform - - uid: 21034 + - uid: 21077 components: - pos: 44.5,-40.5 parent: 2 type: Transform - - uid: 21035 + - uid: 21078 components: - rot: 1.5707963267948966 rad pos: 40.5,-45.5 parent: 2 type: Transform - - uid: 21036 + - uid: 21079 components: - rot: -1.5707963267948966 rad pos: 53.5,-55.5 parent: 2 type: Transform - - uid: 21037 + - uid: 21080 components: - pos: 67.5,-42.5 parent: 2 type: Transform - - uid: 21038 + - uid: 21081 components: - rot: -1.5707963267948966 rad pos: 76.5,-40.5 parent: 2 type: Transform - - uid: 21039 + - uid: 21082 components: - pos: 60.5,-30.5 parent: 2 type: Transform - - uid: 21040 + - uid: 21083 components: - - pos: 53.5,-38.5 + - pos: 49.5,-36.5 parent: 2 type: Transform - proto: IntercomSecurity entities: - - uid: 21041 + - uid: 21084 components: - rot: 1.5707963267948966 rad pos: 3.5,14.5 parent: 2 type: Transform - - uid: 21042 + - uid: 21085 components: - rot: -1.5707963267948966 rad pos: -13.5,24.5 parent: 2 type: Transform - - uid: 21043 + - uid: 21086 components: - pos: -16.5,-19.5 parent: 2 type: Transform - - uid: 21044 + - uid: 21087 components: - rot: 1.5707963267948966 rad pos: -2.5,18.5 parent: 2 type: Transform - - uid: 21045 + - uid: 21088 components: - pos: 26.5,24.5 parent: 2 type: Transform - - uid: 21046 + - uid: 21089 components: - pos: 16.5,24.5 parent: 2 type: Transform - - uid: 21047 + - uid: 21090 components: - rot: 1.5707963267948966 rad pos: 18.5,-45.5 parent: 2 type: Transform - - uid: 21048 + - uid: 21091 components: - rot: 1.5707963267948966 rad pos: 16.5,-13.5 parent: 2 type: Transform - - uid: 21049 + - uid: 21092 components: - pos: 4.5,-55.5 parent: 2 type: Transform - - uid: 21050 + - uid: 21093 components: - rot: -1.5707963267948966 rad pos: 43.5,9.5 @@ -144687,58 +138039,58 @@ entities: type: Transform - proto: IntercomService entities: - - uid: 21051 + - uid: 21094 components: - pos: 20.5,15.5 parent: 2 type: Transform - - uid: 21052 + - uid: 21095 components: - pos: -26.5,16.5 parent: 2 type: Transform - - uid: 21053 + - uid: 21096 components: - rot: 1.5707963267948966 rad pos: -11.5,5.5 parent: 2 type: Transform - - uid: 21054 + - uid: 21097 components: - pos: 1.5,-18.5 parent: 2 type: Transform - proto: IntercomSupply entities: - - uid: 21055 + - uid: 21098 components: - rot: -1.5707963267948966 rad pos: -29.5,24.5 parent: 2 type: Transform - - uid: 21056 + - uid: 21099 components: - pos: -48.5,17.5 parent: 2 type: Transform - - uid: 21057 + - uid: 21100 components: - rot: 1.5707963267948966 rad pos: -26.5,20.5 parent: 2 type: Transform - - uid: 21058 + - uid: 21101 components: - rot: 1.5707963267948966 rad pos: -35.5,30.5 parent: 2 type: Transform - - uid: 21059 + - uid: 21102 components: - pos: -43.5,26.5 parent: 2 type: Transform - - uid: 21060 + - uid: 21103 components: - rot: -1.5707963267948966 rad pos: -39.5,28.5 @@ -144746,7 +138098,7 @@ entities: type: Transform - proto: JanitorialTrolley entities: - - uid: 21061 + - uid: 21104 components: - rot: -1.5707963267948966 rad pos: -7.5,-22.5 @@ -144754,19 +138106,19 @@ entities: type: Transform - proto: JetpackBlueFilled entities: - - uid: 21062 + - uid: 21105 components: - rot: 3.141592653589793 rad pos: 33.468403,-14.391748 parent: 2 type: Transform - - uid: 21063 + - uid: 21106 components: - rot: 3.141592653589793 rad pos: 33.499653,-14.469873 parent: 2 type: Transform - - uid: 21064 + - uid: 21107 components: - rot: 3.141592653589793 rad pos: 33.640278,-14.579248 @@ -144774,152 +138126,152 @@ entities: type: Transform - proto: KitchenMicrowave entities: - - uid: 21065 + - uid: 21108 components: - pos: -31.5,-69.5 parent: 2 type: Transform - - uid: 21066 + - uid: 21109 components: - pos: 2.5,7.5 parent: 2 type: Transform - - uid: 21067 + - uid: 21110 components: - pos: 4.5,6.5 parent: 2 type: Transform - - uid: 21068 + - uid: 21111 components: - pos: 31.5,-20.5 parent: 2 type: Transform - - uid: 21069 + - uid: 21112 components: - pos: 52.5,18.5 parent: 2 type: Transform - - uid: 21070 + - uid: 21113 components: - pos: 45.5,-49.5 parent: 2 type: Transform - - uid: 21071 + - uid: 21114 components: - pos: -38.5,-32.5 parent: 2 type: Transform - - uid: 21072 + - uid: 21115 components: - pos: -22.5,45.5 parent: 2 type: Transform - - uid: 21073 + - uid: 21116 components: - pos: -8.5,41.5 parent: 2 type: Transform - proto: KitchenReagentGrinder entities: - - uid: 21074 + - uid: 21117 components: - pos: -3.5,5.5 parent: 2 type: Transform - - uid: 21075 + - uid: 21118 components: - pos: 3.5,-47.5 parent: 2 type: Transform - - uid: 21076 + - uid: 21119 components: - pos: 3.5,7.5 parent: 2 type: Transform - - uid: 21077 + - uid: 21120 components: - pos: 53.5,18.5 parent: 2 type: Transform - proto: KitchenSpike entities: - - uid: 21078 + - uid: 21121 components: - pos: -0.5,11.5 parent: 2 type: Transform - proto: Lamp entities: - - uid: 21079 + - uid: 21122 components: - rot: -1.5707963267948966 rad pos: -3.8543606,-48.096176 parent: 2 type: Transform - - uid: 21080 + - uid: 21123 components: - rot: 1.5707963267948966 rad pos: 24.558033,-21.226107 parent: 2 type: Transform - - uid: 21081 + - uid: 21124 components: - pos: 21.425192,-12.111239 parent: 2 type: Transform - - uid: 21082 + - uid: 21125 components: - rot: -1.5707963267948966 rad pos: 7.6524577,20.90233 parent: 2 type: Transform - - uid: 21083 + - uid: 21126 components: - rot: -1.5707963267948966 rad pos: -9.565374,-37.00866 parent: 2 type: Transform - - uid: 21084 + - uid: 21127 components: - rot: 1.5707963267948966 rad pos: 51.608532,-40.935013 parent: 2 type: Transform - - uid: 21085 + - uid: 21128 components: - pos: 59.696476,-1.1797758 parent: 2 type: Transform - - uid: 21086 + - uid: 21129 components: - rot: 1.5707963267948966 rad pos: -33.336697,29.910027 parent: 2 type: Transform - - uid: 21087 + - uid: 21130 components: - pos: -24.34436,11.920202 parent: 2 type: Transform - - uid: 21088 + - uid: 21131 components: - rot: 1.5707963267948966 rad pos: -28.600471,45.10426 parent: 2 type: Transform - - uid: 21089 + - uid: 21132 components: - pos: -12.458234,-18.122696 parent: 2 type: Transform - proto: LampBanana entities: - - uid: 21090 + - uid: 21133 components: - pos: -22.53235,37.89803 parent: 2 type: Transform - - uid: 21091 + - uid: 21134 components: - rot: -1.5707963267948966 rad pos: 2.6784086,-21.06689 @@ -144927,142 +138279,120 @@ entities: type: Transform - proto: LampGold entities: - - uid: 21092 + - uid: 21135 components: - pos: -22.537891,-69.31316 parent: 2 type: Transform - - uid: 21093 + - uid: 21136 components: - pos: -18.78946,-56.159798 parent: 2 type: Transform - - uid: 21094 + - uid: 21137 components: - pos: -10.485052,-3.11381 parent: 2 type: Transform - - uid: 21095 + - uid: 21138 components: - rot: 1.5707963267948966 rad pos: 43.557644,-4.1465535 parent: 2 type: Transform - - uid: 21096 + - uid: 21139 components: - pos: 37.53909,-2.5487528 parent: 2 type: Transform - - uid: 21097 + - uid: 21140 components: - pos: 32.892563,-50.10114 parent: 2 type: Transform - - uid: 21098 + - uid: 21141 components: - pos: 28.845686,-50.06989 parent: 2 type: Transform - - uid: 21099 + - uid: 21142 components: - rot: 1.5707963267948966 rad pos: -22.520432,-96.69095 parent: 2 type: Transform - - uid: 21100 + - uid: 21143 components: - rot: 1.5707963267948966 rad pos: 3.3403625,-9.918977 parent: 2 type: Transform -- proto: LandMineExplosive - entities: - - uid: 21101 - components: - - pos: 32.5,36.5 - parent: 2 - type: Transform - - uid: 21102 - components: - - pos: 36.5,26.5 - parent: 2 - type: Transform - - uid: 21103 - components: - - pos: 26.5,36.5 - parent: 2 - type: Transform - - uid: 21104 - components: - - pos: 22.5,35.5 - parent: 2 - type: Transform - proto: LargeBeaker entities: - - uid: 21105 + - uid: 21144 components: - pos: 3.6272888,-45.59047 parent: 2 type: Transform - - uid: 21106 + - uid: 21145 components: - pos: 3.2216597,-45.50144 parent: 2 type: Transform - - uid: 21107 + - uid: 21146 components: - pos: 3.6444578,-45.294815 parent: 2 type: Transform - - uid: 21108 + - uid: 21147 components: - pos: 4.621125,7.7027445 parent: 2 type: Transform - - uid: 21109 + - uid: 21148 components: - pos: -25.403534,-78.32023 parent: 2 type: Transform - - uid: 21110 + - uid: 21149 components: - pos: -25.716034,-78.71085 parent: 2 type: Transform - - uid: 21111 + - uid: 21150 components: - pos: -25.591316,-84.223625 parent: 2 type: Transform - proto: LauncherCreamPie entities: - - uid: 21112 + - uid: 21151 components: - pos: 0.32515657,-23.45843 parent: 2 type: Transform - proto: Lighter entities: - - uid: 21113 + - uid: 21152 components: - pos: 13.70992,-34.538578 parent: 2 type: Transform - - uid: 21114 + - uid: 21153 components: - pos: 15.667978,-79.47625 parent: 2 type: Transform - proto: LightTube entities: - - uid: 21115 + - uid: 21154 components: - pos: -39.78844,-85.422134 parent: 2 type: Transform - proto: LockerAtmosphericsFilled entities: - - uid: 21116 + - uid: 21155 components: - pos: -33.5,-32.5 parent: 2 @@ -145085,7 +138415,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21117 + - uid: 21156 components: - pos: -39.5,-36.5 parent: 2 @@ -145108,7 +138438,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21118 + - uid: 21157 components: - pos: -37.5,-36.5 parent: 2 @@ -145131,7 +138461,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21119 + - uid: 21158 components: - pos: -35.5,-36.5 parent: 2 @@ -145156,7 +138486,7 @@ entities: type: EntityStorage - proto: LockerBoozeFilled entities: - - uid: 21120 + - uid: 21159 components: - pos: 22.5,12.5 parent: 2 @@ -145181,7 +138511,7 @@ entities: type: EntityStorage - proto: LockerBotanistFilled entities: - - uid: 21121 + - uid: 21160 components: - pos: -4.5,11.5 parent: 2 @@ -145206,7 +138536,7 @@ entities: type: EntityStorage - proto: LockerCaptainFilled entities: - - uid: 21122 + - uid: 21161 components: - pos: 29.5,-27.5 parent: 2 @@ -145231,14 +138561,14 @@ entities: type: EntityStorage - proto: LockerChemistryFilled entities: - - uid: 21123 + - uid: 21162 components: - pos: 7.5,-50.5 parent: 2 type: Transform - proto: LockerChiefEngineerFilled entities: - - uid: 21124 + - uid: 21163 components: - pos: -37.5,-15.5 parent: 2 @@ -145263,7 +138593,7 @@ entities: type: EntityStorage - proto: LockerChiefMedicalOfficerFilled entities: - - uid: 21125 + - uid: 21164 components: - pos: -18.5,-54.5 parent: 2 @@ -145288,7 +138618,7 @@ entities: type: EntityStorage - proto: LockerDetectiveFilled entities: - - uid: 21126 + - uid: 21165 components: - pos: 17.5,-10.5 parent: 2 @@ -145313,7 +138643,7 @@ entities: type: EntityStorage - proto: LockerElectricalSupplies entities: - - uid: 21127 + - uid: 21166 components: - pos: -7.5,-17.5 parent: 2 @@ -145338,7 +138668,7 @@ entities: type: EntityStorage - proto: LockerElectricalSuppliesFilled entities: - - uid: 21128 + - uid: 21167 components: - pos: 46.5,-3.5 parent: 2 @@ -145361,7 +138691,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21129 + - uid: 21168 components: - pos: -53.5,0.5 parent: 2 @@ -145384,7 +138714,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21130 + - uid: 21169 components: - pos: 32.5,25.5 parent: 2 @@ -145407,7 +138737,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21131 + - uid: 21170 components: - pos: 39.5,-28.5 parent: 2 @@ -145432,7 +138762,7 @@ entities: type: EntityStorage - proto: LockerEngineerFilled entities: - - uid: 21132 + - uid: 21171 components: - pos: -39.5,-7.5 parent: 2 @@ -145455,7 +138785,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21133 + - uid: 21172 components: - pos: -39.5,-12.5 parent: 2 @@ -145478,7 +138808,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21134 + - uid: 21173 components: - pos: -39.5,-8.5 parent: 2 @@ -145501,7 +138831,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21135 + - uid: 21174 components: - pos: -39.5,-9.5 parent: 2 @@ -145524,7 +138854,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21136 + - uid: 21175 components: - pos: -50.5,-20.5 parent: 2 @@ -145549,7 +138879,7 @@ entities: type: EntityStorage - proto: LockerEvidence entities: - - uid: 21137 + - uid: 21176 components: - pos: 4.5,-57.5 parent: 2 @@ -145572,7 +138902,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21138 + - uid: 21177 components: - pos: 34.5,-45.5 parent: 2 @@ -145595,7 +138925,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21139 + - uid: 21178 components: - pos: 18.5,23.5 parent: 2 @@ -145618,17 +138948,17 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21140 + - uid: 21179 components: - pos: 37.5,12.5 parent: 2 type: Transform - - uid: 21141 + - uid: 21180 components: - pos: 37.5,11.5 parent: 2 type: Transform - - uid: 21142 + - uid: 21181 components: - pos: 41.5,16.5 parent: 2 @@ -145651,7 +138981,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21143 + - uid: 21182 components: - pos: 40.5,16.5 parent: 2 @@ -145674,7 +139004,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21144 + - uid: 21183 components: - pos: 39.5,16.5 parent: 2 @@ -145697,7 +139027,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21145 + - uid: 21184 components: - pos: 38.5,16.5 parent: 2 @@ -145720,7 +139050,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21146 + - uid: 21185 components: - pos: 42.5,16.5 parent: 2 @@ -145743,7 +139073,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21147 + - uid: 21186 components: - pos: 37.5,16.5 parent: 2 @@ -145766,14 +139096,14 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21148 + - uid: 21187 components: - pos: 37.5,10.5 parent: 2 type: Transform - proto: LockerFreezer entities: - - uid: 21149 + - uid: 21188 components: - pos: -38.5,37.5 parent: 2 @@ -145796,7 +139126,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21150 + - uid: 21189 components: - pos: -38.5,36.5 parent: 2 @@ -145819,7 +139149,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21151 + - uid: 21190 components: - pos: 1.5,14.5 parent: 2 @@ -145842,7 +139172,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21152 + - uid: 21191 components: - pos: -5.5,-95.5 parent: 2 @@ -145867,14 +139197,14 @@ entities: type: EntityStorage - proto: LockerHeadOfPersonnelFilled entities: - - uid: 21153 + - uid: 21192 components: - pos: -1.5,-3.5 parent: 2 type: Transform - proto: LockerHeadOfSecurityFilled entities: - - uid: 12248 + - uid: 12278 components: - pos: 4.5,22.5 parent: 2 @@ -145902,8 +139232,8 @@ entities: showEnts: False occludes: True ents: - - 12250 - - 12249 + - 12280 + - 12279 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -145911,7 +139241,7 @@ entities: type: ContainerContainer - proto: LockerMedicalFilled entities: - - uid: 21154 + - uid: 21193 components: - pos: -15.5,-49.5 parent: 2 @@ -145934,7 +139264,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21155 + - uid: 21194 components: - pos: -15.5,-47.5 parent: 2 @@ -145957,7 +139287,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21156 + - uid: 21195 components: - pos: -15.5,-45.5 parent: 2 @@ -145980,26 +139310,26 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21157 + - uid: 21196 components: - pos: -15.5,-61.5 parent: 2 type: Transform - - uid: 21158 + - uid: 21197 components: - pos: -14.5,-61.5 parent: 2 type: Transform - proto: LockerParamedicFilled entities: - - uid: 21159 + - uid: 21198 components: - pos: 2.5,-64.5 parent: 2 type: Transform - proto: LockerQuarterMasterFilled entities: - - uid: 21160 + - uid: 21199 components: - pos: -34.5,31.5 parent: 2 @@ -146024,7 +139354,7 @@ entities: type: EntityStorage - proto: LockerResearchDirectorFilled entities: - - uid: 21161 + - uid: 21200 components: - pos: 63.5,-55.5 parent: 2 @@ -146049,7 +139379,7 @@ entities: type: EntityStorage - proto: LockerSalvageSpecialistFilled entities: - - uid: 21162 + - uid: 21201 components: - pos: -36.5,32.5 parent: 2 @@ -146072,7 +139402,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21163 + - uid: 21202 components: - pos: -36.5,30.5 parent: 2 @@ -146095,7 +139425,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21164 + - uid: 21203 components: - pos: -36.5,28.5 parent: 2 @@ -146118,14 +139448,14 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21165 + - uid: 21204 components: - pos: -45.5,44.5 parent: 2 type: Transform - proto: LockerScienceFilled entities: - - uid: 21166 + - uid: 21205 components: - pos: 44.5,-45.5 parent: 2 @@ -146148,7 +139478,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21167 + - uid: 21206 components: - pos: 42.5,-45.5 parent: 2 @@ -146171,7 +139501,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21168 + - uid: 21207 components: - pos: 41.5,-45.5 parent: 2 @@ -146196,7 +139526,7 @@ entities: type: EntityStorage - proto: LockerSecurity entities: - - uid: 21169 + - uid: 21208 components: - pos: 19.5,-47.5 parent: 2 @@ -146219,7 +139549,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21170 + - uid: 21209 components: - pos: 52.5,13.5 parent: 2 @@ -146244,17 +139574,17 @@ entities: type: EntityStorage - proto: LockerSecurityFilled entities: - - uid: 21171 + - uid: 21210 components: - pos: 31.5,19.5 parent: 2 type: Transform - - uid: 21172 + - uid: 21211 components: - pos: 32.5,19.5 parent: 2 type: Transform - - uid: 21173 + - uid: 21212 components: - pos: -0.5,17.5 parent: 2 @@ -146277,7 +139607,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21174 + - uid: 21213 components: - pos: -0.5,19.5 parent: 2 @@ -146300,19 +139630,19 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21175 + - uid: 21214 components: - pos: -14.5,23.5 parent: 2 type: Transform - - uid: 21176 + - uid: 21215 components: - pos: -0.5,21.5 parent: 2 type: Transform - proto: LockerSyndicatePersonal entities: - - uid: 12409 + - uid: 12439 components: - pos: -53.5,-86.5 parent: 2 @@ -146340,9 +139670,9 @@ entities: showEnts: False occludes: True ents: - - 12411 - - 12412 - - 12410 + - 12441 + - 12442 + - 12440 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -146350,19 +139680,19 @@ entities: type: ContainerContainer - proto: LockerWallMedicalDoctorFilled entities: - - uid: 21177 + - uid: 21216 components: - pos: 6.5,-58.5 parent: 2 type: Transform - - uid: 21178 + - uid: 21217 components: - pos: -15.5,-51.5 parent: 2 type: Transform - proto: LockerWallMedicalFilled entities: - - uid: 21179 + - uid: 21218 components: - pos: -26.5,-56.5 parent: 2 @@ -146387,7 +139717,7 @@ entities: type: EntityStorage - proto: LockerWardenFilled entities: - - uid: 21180 + - uid: 21219 components: - pos: 20.5,23.5 parent: 2 @@ -146412,7 +139742,7 @@ entities: type: EntityStorage - proto: LockerWeldingSuppliesFilled entities: - - uid: 21181 + - uid: 21220 components: - pos: 38.5,-53.5 parent: 2 @@ -146435,7 +139765,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21182 + - uid: 21221 components: - pos: 13.5,-47.5 parent: 2 @@ -146458,7 +139788,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21183 + - uid: 21222 components: - pos: -53.5,-61.5 parent: 2 @@ -146483,47 +139813,45 @@ entities: type: EntityStorage - proto: Machete entities: - - uid: 21184 + - uid: 21223 components: - pos: -18.481012,-81.49154 parent: 2 type: Transform - proto: MachineAnomalyGenerator entities: - - uid: 21185 + - uid: 21224 components: - pos: 62.5,-30.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - proto: MachineAnomalyVessel entities: - - uid: 21186 + - uid: 21225 components: - pos: 58.5,-32.5 parent: 2 type: Transform - - uid: 21187 + - uid: 21226 components: - pos: 57.5,-32.5 parent: 2 type: Transform - proto: MachineAPE entities: - - uid: 21188 + - uid: 21227 components: - rot: 1.5707963267948966 rad pos: 57.5,-34.5 parent: 2 type: Transform - - uid: 21189 + - uid: 21228 components: - rot: 1.5707963267948966 rad pos: 57.5,-35.5 parent: 2 type: Transform - - uid: 21190 + - uid: 21229 components: - rot: 1.5707963267948966 rad pos: 58.5,-35.5 @@ -146531,105 +139859,105 @@ entities: type: Transform - proto: MachineArtifactAnalyzer entities: - - uid: 21191 + - uid: 21230 components: - rot: -1.5707963267948966 rad pos: 72.5,-28.5 parent: 2 type: Transform - links: - - 12490 + - 12526 type: DeviceLinkSink - proto: MachineFrame entities: - - uid: 21192 + - uid: 21231 components: - pos: -7.5,-63.5 parent: 2 type: Transform - - uid: 21193 + - uid: 21232 components: - pos: -9.5,-63.5 parent: 2 type: Transform - proto: MachineFrameDestroyed entities: - - uid: 21194 + - uid: 21233 components: - pos: 45.5,44.5 parent: 2 type: Transform - - uid: 21195 + - uid: 21234 components: - pos: -16.5,-8.5 parent: 2 type: Transform - - uid: 21196 + - uid: 21235 components: - pos: -36.5,-29.5 parent: 2 type: Transform - proto: MagazinePistol entities: - - uid: 21197 + - uid: 21236 components: - pos: 32.305683,32.48245 parent: 2 type: Transform - - uid: 21198 + - uid: 21237 components: - pos: 32.32131,32.48245 parent: 2 type: Transform - - uid: 21199 + - uid: 21238 components: - pos: 32.32131,32.48245 parent: 2 type: Transform - - uid: 21200 + - uid: 21239 components: - pos: 32.305683,32.48245 parent: 2 type: Transform - - uid: 21201 + - uid: 21240 components: - pos: 32.42361,32.439632 parent: 2 type: Transform - - uid: 21202 + - uid: 21241 components: - pos: 32.439236,32.392757 parent: 2 type: Transform - proto: MagazinePistolSubMachineGun entities: - - uid: 21203 + - uid: 21242 components: - pos: 29.960567,32.527683 parent: 2 type: Transform - - uid: 21204 + - uid: 21243 components: - pos: 29.952528,32.56383 parent: 2 type: Transform - - uid: 21205 + - uid: 21244 components: - pos: 29.936903,32.548206 parent: 2 type: Transform - - uid: 21206 + - uid: 21245 components: - pos: 29.968153,32.610706 parent: 2 type: Transform - - uid: 21207 + - uid: 21246 components: - rot: 3.141592653589793 rad pos: 29.992437,32.514297 parent: 2 type: Transform - - uid: 21208 + - uid: 21247 components: - rot: 3.141592653589793 rad pos: 29.976812,32.483047 @@ -146637,719 +139965,714 @@ entities: type: Transform - proto: MagazinePistolSubMachineGunTopMounted entities: - - uid: 21209 + - uid: 21248 components: - pos: 6.551134,22.646631 parent: 2 type: Transform - - uid: 21210 + - uid: 21249 components: - pos: 6.5377827,22.587479 parent: 2 type: Transform - proto: MagicDiceBag entities: - - uid: 21211 + - uid: 21250 components: - pos: -47.440662,5.801874 parent: 2 type: Transform - proto: MaintenanceFluffSpawner entities: - - uid: 21212 + - uid: 21251 components: - rot: 3.141592653589793 rad pos: 30.5,46.5 parent: 2 type: Transform - - uid: 21213 + - uid: 21252 components: - rot: 3.141592653589793 rad pos: 54.5,60.5 parent: 2 type: Transform - - uid: 21214 + - uid: 21253 components: - rot: 3.141592653589793 rad pos: 22.5,51.5 parent: 2 type: Transform - - uid: 21215 + - uid: 21254 components: - rot: 3.141592653589793 rad pos: 70.5,-66.5 parent: 2 type: Transform - - uid: 21216 + - uid: 21255 components: - pos: 15.5,-66.5 parent: 2 type: Transform - - uid: 21217 + - uid: 21256 components: - pos: 12.5,-53.5 parent: 2 type: Transform - - uid: 21218 + - uid: 21257 components: - pos: -15.5,-29.5 parent: 2 type: Transform - - uid: 21219 + - uid: 21258 components: - rot: -1.5707963267948966 rad pos: -16.5,-16.5 parent: 2 type: Transform - - uid: 21220 + - uid: 21259 components: - rot: -1.5707963267948966 rad pos: -8.5,-10.5 parent: 2 type: Transform - - uid: 21221 + - uid: 21260 components: - rot: -1.5707963267948966 rad pos: -11.5,-8.5 parent: 2 type: Transform - - uid: 21222 + - uid: 21261 components: - pos: -35.5,-22.5 parent: 2 type: Transform - - uid: 21223 + - uid: 21262 components: - pos: 43.5,-8.5 parent: 2 type: Transform - - uid: 21224 + - uid: 21263 components: - pos: -50.5,-62.5 parent: 2 type: Transform - - uid: 21225 + - uid: 21264 components: - pos: -36.5,-69.5 parent: 2 type: Transform - - uid: 21226 + - uid: 21265 components: - pos: 57.5,-3.5 parent: 2 type: Transform - - uid: 21227 + - uid: 21266 components: - pos: -3.5,30.5 parent: 2 type: Transform - - uid: 21228 + - uid: 21267 components: - pos: -15.5,21.5 parent: 2 type: Transform - - uid: 21229 + - uid: 21268 components: - pos: -49.5,15.5 parent: 2 type: Transform - - uid: 21230 + - uid: 21269 components: - pos: 15.5,57.5 parent: 2 type: Transform - - uid: 21231 + - uid: 21270 components: - pos: -14.5,-82.5 parent: 2 type: Transform - - uid: 21232 + - uid: 21271 components: - rot: 3.141592653589793 rad pos: 43.5,-62.5 parent: 2 type: Transform - - uid: 21233 + - uid: 21272 components: - pos: -32.5,-7.5 parent: 2 type: Transform - - uid: 21234 + - uid: 21273 components: - pos: 6.5,-13.5 parent: 2 type: Transform - proto: MaintenancePlantSpawner entities: - - uid: 21235 + - uid: 21274 components: - pos: -55.5,-66.5 parent: 2 type: Transform - - uid: 21236 + - uid: 21275 components: - pos: -52.5,-68.5 parent: 2 type: Transform - - uid: 21237 + - uid: 21276 components: - pos: -53.5,-68.5 parent: 2 type: Transform - - uid: 21238 + - uid: 21277 components: - pos: -56.5,-68.5 parent: 2 type: Transform - - uid: 21239 + - uid: 21278 components: - pos: -53.5,-66.5 parent: 2 type: Transform - - uid: 21240 + - uid: 21279 components: - pos: -54.5,-67.5 parent: 2 type: Transform - - uid: 21241 + - uid: 21280 components: - pos: -26.5,31.5 parent: 2 type: Transform - - uid: 21242 + - uid: 21281 components: - pos: 52.5,39.5 parent: 2 type: Transform - - uid: 21243 + - uid: 21282 components: - pos: -7.5,49.5 parent: 2 type: Transform - - uid: 21244 + - uid: 21283 components: - pos: -28.5,-98.5 parent: 2 type: Transform - - uid: 21245 + - uid: 21284 components: - pos: -54.5,-66.5 parent: 2 type: Transform - - uid: 21246 + - uid: 21285 components: - pos: 22.5,-50.5 parent: 2 type: Transform - - uid: 21247 + - uid: 21286 components: - pos: -4.5,53.5 parent: 2 type: Transform - - uid: 21248 + - uid: 21287 components: - pos: 10.5,53.5 parent: 2 type: Transform - - uid: 21249 + - uid: 21288 components: - pos: 8.5,53.5 parent: 2 type: Transform - - uid: 21250 + - uid: 21289 components: - pos: 7.5,54.5 parent: 2 type: Transform - proto: MaintenanceToolSpawner entities: - - uid: 21251 + - uid: 21290 components: - pos: -13.5,12.5 parent: 2 type: Transform - - uid: 21252 + - uid: 21291 components: - pos: 36.5,-50.5 parent: 2 type: Transform - - uid: 21253 + - uid: 21292 components: - rot: 1.5707963267948966 rad pos: -55.5,-6.5 parent: 2 type: Transform - - uid: 21254 + - uid: 21293 components: - pos: -52.5,-15.5 parent: 2 type: Transform - - uid: 21255 + - uid: 21294 components: - pos: -24.5,-52.5 parent: 2 type: Transform - - uid: 21256 + - uid: 21295 components: - pos: 0.5,23.5 parent: 2 type: Transform - - uid: 21257 + - uid: 21296 components: - pos: -3.5,34.5 parent: 2 type: Transform - - uid: 21258 + - uid: 21297 components: - pos: -49.5,14.5 parent: 2 type: Transform - - uid: 21259 + - uid: 21298 components: - pos: 3.5,-17.5 parent: 2 type: Transform - - uid: 21260 + - uid: 21299 components: - pos: 59.5,2.5 parent: 2 type: Transform - - uid: 21261 + - uid: 21300 components: - pos: 53.5,47.5 parent: 2 type: Transform - - uid: 21262 + - uid: 21301 components: - pos: 67.5,8.5 parent: 2 type: Transform - - uid: 21263 + - uid: 21302 components: - pos: 18.5,39.5 parent: 2 type: Transform - - uid: 21264 + - uid: 21303 components: - pos: 16.5,56.5 parent: 2 type: Transform - - uid: 21265 + - uid: 21304 components: - pos: -4.5,-82.5 parent: 2 type: Transform - - uid: 21266 + - uid: 21305 components: - pos: -8.5,-82.5 parent: 2 type: Transform - - uid: 21267 + - uid: 21306 components: - pos: 58.5,-30.5 parent: 2 type: Transform - - uid: 21268 + - uid: 21307 components: - pos: 53.5,-28.5 parent: 2 type: Transform - - uid: 21269 + - uid: 21308 components: - pos: 46.5,-63.5 parent: 2 type: Transform - - uid: 21270 + - uid: 21309 components: - pos: 44.5,-8.5 parent: 2 type: Transform - - uid: 21271 + - uid: 21310 components: - pos: 5.5,-13.5 parent: 2 type: Transform - proto: MaintenanceWeaponSpawner entities: - - uid: 21272 + - uid: 21311 components: - rot: 3.141592653589793 rad pos: 55.5,60.5 parent: 2 type: Transform - - uid: 21273 + - uid: 21312 components: - pos: -49.5,-74.5 parent: 2 type: Transform - - uid: 21274 + - uid: 21313 components: - pos: -52.5,-86.5 parent: 2 type: Transform - - uid: 21275 + - uid: 21314 components: - pos: -52.5,-88.5 parent: 2 type: Transform - - uid: 21276 + - uid: 21315 components: - pos: 35.5,-12.5 parent: 2 type: Transform - - uid: 21277 + - uid: 21316 components: - pos: -29.5,-28.5 parent: 2 type: Transform - - uid: 21278 + - uid: 21317 components: - pos: -12.5,17.5 parent: 2 type: Transform - - uid: 21279 + - uid: 21318 components: - pos: 51.5,45.5 parent: 2 type: Transform - - uid: 21280 + - uid: 21319 components: - pos: 43.5,37.5 parent: 2 type: Transform - - uid: 21281 + - uid: 21320 components: - pos: -6.5,-88.5 parent: 2 type: Transform - - uid: 21282 + - uid: 21321 components: - rot: 3.141592653589793 rad pos: 49.5,-66.5 parent: 2 type: Transform - - uid: 21283 + - uid: 21322 components: - rot: 3.141592653589793 rad pos: 66.5,-61.5 parent: 2 type: Transform - - uid: 21284 + - uid: 21323 components: - pos: -48.5,16.5 parent: 2 type: Transform - - uid: 21285 + - uid: 21324 components: - pos: -28.5,-5.5 parent: 2 type: Transform - - uid: 21286 + - uid: 21325 components: - pos: 42.5,-7.5 parent: 2 type: Transform - proto: Matchbox entities: - - uid: 21287 + - uid: 21326 components: - pos: 61.092392,-1.3427626 parent: 2 type: Transform - - uid: 21288 + - uid: 21327 components: - pos: -38.035473,16.606607 parent: 2 type: Transform - proto: MaterialCloth entities: - - uid: 21289 + - uid: 21328 components: - pos: 2.4694777,-7.332773 parent: 2 type: Transform - - uid: 21290 + - uid: 21329 components: - pos: 2.5319777,-7.395273 parent: 2 type: Transform - - uid: 21291 + - uid: 21330 components: - pos: 2.4851027,-7.379648 parent: 2 type: Transform - proto: MaterialDiamond1 entities: - - uid: 21292 + - uid: 21331 components: - pos: 59.45189,-51.928257 parent: 2 type: Transform - proto: MaterialDurathread entities: - - uid: 21293 + - uid: 21332 components: - pos: 2.6569777,-7.614023 parent: 2 type: Transform - proto: MaterialReclaimer entities: - - uid: 21294 + - uid: 21333 components: - pos: -39.5,18.5 parent: 2 type: Transform - proto: MaterialWoodPlank entities: - - uid: 21295 + - uid: 21334 components: - rot: 3.141592653589793 rad pos: 38.425755,46.464603 parent: 2 type: Transform - - uid: 21296 + - uid: 21335 components: - pos: -32.447933,-98.42257 parent: 2 type: Transform - proto: MaterialWoodPlank1 entities: - - uid: 21297 + - uid: 21336 components: - pos: 50.46261,24.730665 parent: 2 type: Transform - - uid: 21298 + - uid: 21337 components: - pos: 17.500986,29.51836 parent: 2 type: Transform - proto: MedicalBed entities: - - uid: 21299 + - uid: 21338 components: - pos: 44.5,5.5 parent: 2 type: Transform - - uid: 21300 + - uid: 21339 components: - pos: -9.5,-57.5 parent: 2 type: Transform - - uid: 21301 + - uid: 21340 components: - pos: -12.5,-57.5 parent: 2 type: Transform - - uid: 21302 + - uid: 21341 components: - pos: -3.5,-57.5 parent: 2 type: Transform - - uid: 21303 + - uid: 21342 components: - pos: -0.5,-57.5 parent: 2 type: Transform - - uid: 21304 + - uid: 21343 components: - pos: -21.5,-54.5 parent: 2 type: Transform - - uid: 21305 + - uid: 21344 components: - pos: 44.5,4.5 parent: 2 type: Transform - - uid: 21306 + - uid: 21345 components: - pos: -6.5,-57.5 parent: 2 type: Transform - - uid: 21307 + - uid: 21346 components: - pos: 6.5,-56.5 parent: 2 type: Transform - proto: MedicalTechFab entities: - - uid: 21308 + - uid: 21347 components: - pos: -16.5,-48.5 parent: 2 type: Transform - proto: MedkitBruteFilled entities: - - uid: 21309 + - uid: 21348 components: - pos: 45.394405,8.60885 parent: 2 type: Transform - - uid: 21310 + - uid: 21349 components: - pos: 19.413246,-20.453436 parent: 2 type: Transform - - uid: 21311 + - uid: 21350 components: - pos: 9.446222,-62.560196 parent: 2 type: Transform - - uid: 21312 + - uid: 21351 components: - pos: 29.573622,4.6594224 parent: 2 type: Transform - - uid: 21313 + - uid: 21352 components: - pos: 9.774347,-62.35707 parent: 2 type: Transform - - uid: 21314 + - uid: 21353 components: - pos: 55.59084,42.504738 parent: 2 type: Transform - proto: MedkitBurnFilled entities: - - uid: 21315 + - uid: 21354 components: - pos: 9.368097,-58.216446 parent: 2 type: Transform - - uid: 21316 + - uid: 21355 components: - pos: 9.633722,-58.372696 parent: 2 type: Transform - - uid: 21317 + - uid: 21356 components: - pos: 18.55885,-21.682238 parent: 2 type: Transform - proto: MedkitCombatFilled entities: - - uid: 21318 + - uid: 21357 components: - pos: -22.488134,-54.362434 parent: 2 type: Transform - proto: MedkitFilled entities: - - uid: 21319 + - uid: 21358 components: - pos: 18.506996,-21.230959 parent: 2 type: Transform - - uid: 21320 - components: - - pos: 24.82079,23.494219 - parent: 2 - type: Transform - - uid: 21321 + - uid: 21359 components: - pos: 52.41982,-43.535877 parent: 2 type: Transform - proto: MedkitOxygenFilled entities: - - uid: 21322 + - uid: 21360 components: - pos: 10.352472,-61.403946 parent: 2 type: Transform - - uid: 21323 + - uid: 21361 components: - pos: 10.649347,-61.57582 parent: 2 type: Transform - - uid: 21324 + - uid: 21362 components: - pos: 18.533411,-22.207966 parent: 2 type: Transform - - uid: 21325 + - uid: 21363 components: - pos: -23.768847,-36.553474 parent: 2 type: Transform - - uid: 21326 + - uid: 21364 components: - pos: 59.446957,-3.3832169 parent: 2 type: Transform - - uid: 21327 + - uid: 21365 components: - pos: 65.55114,-6.3846307 parent: 2 type: Transform - - uid: 21328 + - uid: 21366 components: - pos: -34.54821,20.589455 parent: 2 type: Transform - - uid: 21329 + - uid: 21367 components: - pos: 64.63776,28.514448 parent: 2 type: Transform - - uid: 21330 + - uid: 21368 components: - pos: -70.47538,-28.482313 parent: 2 type: Transform - proto: MedkitRadiationFilled entities: - - uid: 21331 + - uid: 21369 components: - pos: 10.352472,-60.278946 parent: 2 type: Transform - - uid: 21332 + - uid: 21370 components: - pos: 10.649347,-60.466446 parent: 2 type: Transform - - uid: 21333 + - uid: 21371 components: - pos: -62.43085,-27.543978 parent: 2 type: Transform - proto: MedkitToxinFilled entities: - - uid: 21334 + - uid: 21372 components: - pos: 10.350285,-59.237457 parent: 2 type: Transform - - uid: 21335 + - uid: 21373 components: - pos: 10.649347,-59.372696 parent: 2 type: Transform - proto: MicroManipulatorStockPart entities: - - uid: 21336 + - uid: 21374 components: - pos: 57.42882,-47.52101 parent: 2 type: Transform - proto: MicrowaveMachineCircuitboard entities: - - uid: 21337 + - uid: 21375 components: - pos: 41.53089,-54.195484 parent: 2 type: Transform - proto: Mirror entities: - - uid: 21338 + - uid: 21376 components: - rot: -1.5707963267948966 rad pos: -32.5,-3.5 parent: 2 type: Transform - - uid: 21339 + - uid: 21377 components: - rot: -1.5707963267948966 rad pos: -32.5,-2.5 @@ -147357,14 +140680,14 @@ entities: type: Transform - proto: ModularGrenade entities: - - uid: 21340 + - uid: 21378 components: - pos: 65.475975,-29.06539 parent: 2 type: Transform - proto: MonkeyCube entities: - - uid: 21341 + - uid: 21379 components: - rot: -1.5707963267948966 rad pos: -10.530531,-95.43873 @@ -147372,93 +140695,93 @@ entities: type: Transform - proto: MonkeyCubeBox entities: - - uid: 21342 + - uid: 21380 components: - pos: -24.421421,-84.24069 parent: 2 type: Transform - proto: MonkeyCubeWrapped entities: - - uid: 21343 + - uid: 21381 components: - pos: 73.2274,-38.215343 parent: 2 type: Transform - - uid: 21344 + - uid: 21382 components: - pos: 73.19615,-38.35597 parent: 2 type: Transform - - uid: 21345 + - uid: 21383 components: - pos: -6.631571,49.76703 parent: 2 type: Transform - - uid: 21346 + - uid: 21384 components: - pos: -6.787821,49.64203 parent: 2 type: Transform - proto: MoonBattlemap entities: - - uid: 21347 + - uid: 21385 components: - pos: 10.548178,-6.825127 parent: 2 type: Transform - proto: MopBucket entities: - - uid: 21348 + - uid: 21386 components: - pos: -9.522026,-69.41262 parent: 2 type: Transform - - uid: 21349 + - uid: 21387 components: - pos: -7.441774,-23.373123 parent: 2 type: Transform - - uid: 21350 + - uid: 21388 components: - pos: 52.057404,15.557394 parent: 2 type: Transform - - uid: 21351 + - uid: 21389 components: - pos: 15.4907,31.562498 parent: 2 type: Transform - - uid: 21352 + - uid: 21390 components: - pos: -8.510638,-21.457159 parent: 2 type: Transform - proto: MopItem entities: - - uid: 21353 + - uid: 21391 components: - rot: -1.5707963267948966 rad pos: -9.459526,-68.63137 parent: 2 type: Transform - - uid: 21354 + - uid: 21392 components: - pos: -13.596031,-22.66943 parent: 2 type: Transform - - uid: 21355 + - uid: 21393 components: - pos: -13.473024,-22.732498 parent: 2 type: Transform - - uid: 21356 + - uid: 21394 components: - pos: 51.744904,15.651144 parent: 2 type: Transform - proto: Morgue entities: - - uid: 21357 + - uid: 21395 components: - rot: -1.5707963267948966 rad pos: -11.5,-65.5 @@ -147482,7 +140805,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21358 + - uid: 21396 components: - rot: -1.5707963267948966 rad pos: -11.5,-64.5 @@ -147506,7 +140829,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21359 + - uid: 21397 components: - rot: 1.5707963267948966 rad pos: -13.5,-64.5 @@ -147530,7 +140853,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21360 + - uid: 21398 components: - rot: 1.5707963267948966 rad pos: -13.5,-65.5 @@ -147554,7 +140877,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21361 + - uid: 21399 components: - rot: 1.5707963267948966 rad pos: -13.5,-66.5 @@ -147578,7 +140901,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21362 + - uid: 21400 components: - rot: -1.5707963267948966 rad pos: -14.5,-64.5 @@ -147602,7 +140925,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21363 + - uid: 21401 components: - rot: -1.5707963267948966 rad pos: -14.5,-65.5 @@ -147626,7 +140949,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21364 + - uid: 21402 components: - rot: -1.5707963267948966 rad pos: -14.5,-66.5 @@ -147650,7 +140973,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21365 + - uid: 21403 components: - rot: -1.5707963267948966 rad pos: -11.5,-66.5 @@ -147674,7 +140997,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21366 + - uid: 21404 components: - rot: -1.5707963267948966 rad pos: -11.5,-63.5 @@ -147698,7 +141021,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21367 + - uid: 21405 components: - rot: 1.5707963267948966 rad pos: -16.5,-63.5 @@ -147722,7 +141045,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21368 + - uid: 21406 components: - rot: 1.5707963267948966 rad pos: -16.5,-64.5 @@ -147746,7 +141069,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21369 + - uid: 21407 components: - rot: 1.5707963267948966 rad pos: -16.5,-65.5 @@ -147770,7 +141093,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21370 + - uid: 21408 components: - rot: 1.5707963267948966 rad pos: -16.5,-66.5 @@ -147794,7 +141117,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21371 + - uid: 21409 components: - rot: -1.5707963267948966 rad pos: -28.5,10.5 @@ -147818,7 +141141,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21372 + - uid: 21410 components: - rot: -1.5707963267948966 rad pos: -28.5,9.5 @@ -147844,259 +141167,265 @@ entities: type: EntityStorage - proto: MouseTimedSpawner entities: - - uid: 21373 + - uid: 21411 components: - pos: -56.5,-48.5 parent: 2 type: Transform - - uid: 21374 + - uid: 21412 components: - pos: 43.5,-10.5 parent: 2 type: Transform - - uid: 21375 + - uid: 21413 components: - pos: 62.5,13.5 parent: 2 type: Transform - - uid: 21376 + - uid: 21414 components: - pos: 5.5,-70.5 parent: 2 type: Transform - proto: Multitool entities: - - uid: 21377 + - uid: 21415 + components: + - rot: 1.5707963267948966 rad + pos: 12.526134,20.708286 + parent: 2 + type: Transform + - uid: 21416 components: - pos: 53.354275,-43.443607 parent: 2 type: Transform - - uid: 21378 + - uid: 21417 components: - pos: -25.14612,-19.37103 parent: 2 type: Transform - - uid: 21379 + - uid: 21418 components: - pos: -23.347115,-36.422188 parent: 2 type: Transform - - uid: 21380 + - uid: 21419 components: - rot: -1.5707963267948966 rad pos: -36.559425,-33.012554 parent: 2 type: Transform - - uid: 21381 + - uid: 21420 components: - pos: -56.47646,-35.42343 parent: 2 type: Transform - - uid: 21382 + - uid: 21421 components: - pos: -40.522213,25.653383 parent: 2 type: Transform - - uid: 21383 + - uid: 21422 components: - rot: 3.141592653589793 rad pos: -32.80296,29.595348 parent: 2 type: Transform - - uid: 21384 + - uid: 21423 components: - pos: -27.507483,24.649845 parent: 2 type: Transform - - uid: 21385 + - uid: 21424 components: - pos: 73.29074,-44.41717 parent: 2 type: Transform - - uid: 21386 + - uid: 21425 components: - pos: 58.474205,51.52541 parent: 2 type: Transform - - uid: 21387 + - uid: 21426 components: - pos: -57.653404,-25.398897 parent: 2 type: Transform - devices: - 'UID: 31532': 12562 + 'UID: 31532': 12599 type: NetworkConfigurator - - uid: 21388 + - uid: 21427 components: - pos: -9.540877,-65.36475 parent: 2 type: Transform - - uid: 21389 + - uid: 21428 components: - pos: 72.48785,36.5135 parent: 2 type: Transform - - uid: 21390 + - uid: 21429 components: - pos: -29.3818,-98.32888 parent: 2 type: Transform - devices: - 'UID: 39451': 19638 - 'UID: 39450': 19877 + 'UID: 39451': 19672 + 'UID: 39450': 19911 'UID: 39636': 911 type: NetworkConfigurator - - uid: 21391 + - uid: 21430 components: - pos: 65.54721,-51.514313 parent: 2 type: Transform - - uid: 21392 + - uid: 21431 components: - pos: -28.40416,-19.522995 parent: 2 type: Transform - - uid: 21393 + - uid: 21432 components: - pos: -26.512882,-61.421627 parent: 2 type: Transform - - uid: 21394 + - uid: 21433 components: - pos: -71.37105,-28.43189 parent: 2 type: Transform - devices: 'UID: 32940': 928 - 'UID: 32944': 15115 - 'UID: 32945': 15116 + 'UID: 32944': 15149 + 'UID: 32945': 15150 linkModeActive: False type: NetworkConfigurator - proto: NitrogenCanister entities: - - uid: 21395 + - uid: 21434 components: - pos: -8.5,-72.5 parent: 2 type: Transform - - uid: 21396 + - uid: 21435 components: - pos: 45.5,-51.5 parent: 2 type: Transform - - uid: 21397 + - uid: 21436 components: - pos: -50.5,-54.5 parent: 2 type: Transform - - uid: 21398 + - uid: 21437 components: - pos: -39.5,-38.5 parent: 2 type: Transform - - uid: 21399 + - uid: 21438 components: - pos: -51.5,-70.5 parent: 2 type: Transform - - uid: 21400 + - uid: 21439 components: - pos: -26.5,37.5 parent: 2 type: Transform - - uid: 21401 + - uid: 21440 components: - pos: -28.5,41.5 parent: 2 type: Transform - - uid: 21402 + - uid: 21441 components: - pos: 72.5,-35.5 parent: 2 type: Transform - - uid: 21403 + - uid: 21442 components: - pos: 46.5,-51.5 parent: 2 type: Transform - - uid: 21404 + - uid: 21443 components: - pos: -22.5,-62.5 parent: 2 type: Transform - - uid: 21405 + - uid: 21444 components: - pos: 3.5,-73.5 parent: 2 type: Transform - proto: NitrogenTankFilled entities: - - uid: 21406 + - uid: 21445 components: - pos: -22.469156,-57.61924 parent: 2 type: Transform - - uid: 21407 + - uid: 21446 components: - pos: -54.344475,0.46202505 parent: 2 type: Transform - - uid: 21408 + - uid: 21447 components: - pos: -49.491314,1.5773844 parent: 2 type: Transform - - uid: 21409 + - uid: 21448 components: - pos: -70.575325,-25.445038 parent: 2 type: Transform - - uid: 21410 + - uid: 21449 components: - pos: 64.52838,29.170698 parent: 2 type: Transform - proto: NitrousOxideCanister entities: - - uid: 21411 + - uid: 21450 components: - pos: -38.5,-38.5 parent: 2 type: Transform - - uid: 21412 + - uid: 21451 components: - pos: 54.5,-55.5 parent: 2 type: Transform - - uid: 21413 + - uid: 21452 components: - pos: -76.5,-46.5 parent: 2 type: Transform - proto: NitrousOxideTank entities: - - uid: 21414 + - uid: 21453 components: - pos: -3.498691,-65.92361 parent: 2 type: Transform - proto: NitrousOxideTankFilled entities: - - uid: 21415 + - uid: 21454 components: - pos: -15.868101,-35.49305 parent: 2 type: Transform - proto: NodeScanner entities: - - uid: 21416 + - uid: 21455 components: - pos: 73.66279,-38.523205 parent: 2 type: Transform - proto: NuclearBomb entities: - - uid: 21417 + - uid: 21456 components: - rot: -1.5707963267948966 rad pos: 46.5,-22.5 @@ -148104,856 +141433,868 @@ entities: type: Transform - proto: NuclearBombKeg entities: - - uid: 21418 + - uid: 21457 components: - pos: 46.5,-29.5 parent: 2 type: Transform - proto: Ointment entities: - - uid: 21419 + - uid: 21458 components: - rot: -1.5707963267948966 rad pos: 47.628784,4.507307 parent: 2 type: Transform - - uid: 21420 + - uid: 21459 components: - pos: -12.245195,-56.394966 parent: 2 type: Transform - - uid: 21421 + - uid: 21460 components: - pos: -9.307695,-56.332466 parent: 2 type: Transform - - uid: 21422 + - uid: 21461 components: - pos: -6.2759557,-56.37934 parent: 2 type: Transform - - uid: 21423 + - uid: 21462 components: - pos: -3.256374,-56.363716 parent: 2 type: Transform - - uid: 21424 + - uid: 21463 components: - pos: -0.2810341,-56.37934 parent: 2 type: Transform - proto: OnionRedSeeds entities: - - uid: 21425 + - uid: 21464 components: - pos: -32.362232,6.029836 parent: 2 type: Transform - proto: OnionSeeds entities: - - uid: 21426 + - uid: 21465 components: - pos: -32.52041,6.4317174 parent: 2 type: Transform - proto: OperatingTable entities: - - uid: 21427 + - uid: 21466 components: - pos: -15.5,-33.5 parent: 2 type: Transform - - uid: 21428 + - uid: 21467 components: - pos: -1.5,-65.5 parent: 2 type: Transform - - uid: 21429 + - uid: 21468 components: - pos: -7.5,-97.5 parent: 2 type: Transform - - uid: 21430 + - uid: 21469 components: - pos: 71.5,-48.5 parent: 2 type: Transform - proto: OreBag entities: - - uid: 21431 + - uid: 21470 components: - pos: -41.057323,35.546143 parent: 2 type: Transform +- proto: OreBox + entities: + - uid: 21471 + components: + - pos: -43.5,35.5 + parent: 2 + type: Transform + - uid: 21472 + components: + - pos: -42.5,35.5 + parent: 2 + type: Transform - proto: OreProcessor entities: - - uid: 21432 + - uid: 21473 components: - pos: -41.5,26.5 parent: 2 type: Transform - proto: OxygenCanister entities: - - uid: 21433 + - uid: 21474 components: - pos: -76.5,-44.5 parent: 2 type: Transform - - uid: 21434 + - uid: 21475 components: - pos: -9.5,-72.5 parent: 2 type: Transform - - uid: 21435 + - uid: 21476 components: - pos: 59.5,29.5 parent: 2 type: Transform - - uid: 21436 + - uid: 21477 components: - pos: 45.5,-52.5 parent: 2 type: Transform - - uid: 21437 + - uid: 21478 components: - pos: -25.5,-31.5 parent: 2 type: Transform - - uid: 21438 + - uid: 21479 components: - pos: -50.5,-52.5 parent: 2 type: Transform - - uid: 21439 + - uid: 21480 components: - pos: -37.5,-38.5 parent: 2 type: Transform - - uid: 21440 + - uid: 21481 components: - pos: -25.5,-55.5 parent: 2 type: Transform - - uid: 21441 + - uid: 21482 components: - pos: -34.5,-30.5 parent: 2 type: Transform - - uid: 21442 + - uid: 21483 components: - pos: -48.5,28.5 parent: 2 type: Transform - - uid: 21443 + - uid: 21484 components: - pos: -31.5,17.5 parent: 2 type: Transform - - uid: 21444 + - uid: 21485 components: - pos: -29.5,41.5 parent: 2 type: Transform - - uid: 21445 + - uid: 21486 components: - pos: 73.5,-35.5 parent: 2 type: Transform - - uid: 21446 + - uid: 21487 components: - pos: 46.5,-52.5 parent: 2 type: Transform - - uid: 21447 + - uid: 21488 components: - pos: -25.5,-62.5 parent: 2 type: Transform - - uid: 21448 + - uid: 21489 components: - pos: 4.5,-73.5 parent: 2 type: Transform - proto: OxygenTankFilled entities: - - uid: 21449 + - uid: 21490 components: - pos: -54.60223,0.49364984 parent: 2 type: Transform - - uid: 21450 + - uid: 21491 components: - pos: -22.609781,-57.353615 parent: 2 type: Transform - proto: PaintingAmogusTriptych entities: - - uid: 21451 + - uid: 21492 components: - pos: -16.5,-36.5 parent: 2 type: Transform - - uid: 21452 + - uid: 21493 components: - pos: 45.5,-12.5 parent: 2 type: Transform - proto: PaintingMonkey entities: - - uid: 21453 + - uid: 21494 components: - pos: 13.5,-9.5 parent: 2 type: Transform - proto: PaintingNightHawks entities: - - uid: 21454 + - uid: 21495 components: - pos: -9.5,-34.5 parent: 2 type: Transform - proto: PaintingSkeletonBoof entities: - - uid: 21455 + - uid: 21496 components: - pos: 9.5,-3.5 parent: 2 type: Transform - proto: PaintingSkeletonCigarette entities: - - uid: 21456 + - uid: 21497 components: - pos: -14.5,-36.5 parent: 2 type: Transform - proto: PaintingTheGreatWave entities: - - uid: 21457 + - uid: 21498 components: - pos: 30.5,-26.5 parent: 2 type: Transform - proto: PaintingTheScream entities: - - uid: 21458 + - uid: 21499 components: - pos: -7.5,-35.5 parent: 2 type: Transform - proto: PaintingTheSonOfMan entities: - - uid: 21459 + - uid: 21500 components: - pos: -25.5,16.5 parent: 2 type: Transform - proto: Paper entities: - - uid: 21460 + - uid: 21501 components: - pos: 20.483978,-12.296361 parent: 2 type: Transform - - uid: 21461 + - uid: 21502 components: - pos: 20.661783,-12.471693 parent: 2 type: Transform - - uid: 21462 + - uid: 21503 components: - pos: 24.486351,19.53259 parent: 2 type: Transform - - uid: 21463 + - uid: 21504 components: - pos: 6.351438,20.675463 parent: 2 type: Transform - - uid: 21464 + - uid: 21505 components: - rot: -1.5707963267948966 rad pos: -12.583234,-18.98207 parent: 2 type: Transform - - uid: 21465 + - uid: 21506 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21466 + - uid: 21507 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21467 + - uid: 21508 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21468 + - uid: 21509 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21469 + - uid: 21510 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21470 + - uid: 21511 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21471 + - uid: 21512 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21472 + - uid: 21513 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21473 + - uid: 21514 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21474 + - uid: 21515 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21475 + - uid: 21516 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21476 + - uid: 21517 components: - rot: 3.141592653589793 rad pos: -10.57877,-37.384254 parent: 2 type: Transform - - uid: 21477 + - uid: 21518 components: - rot: 3.141592653589793 rad pos: -10.57877,-37.384254 parent: 2 type: Transform - - uid: 21478 + - uid: 21519 components: - rot: 3.141592653589793 rad pos: -10.57877,-37.384254 parent: 2 type: Transform - - uid: 21479 + - uid: 21520 components: - rot: 3.141592653589793 rad pos: -10.57877,-37.384254 parent: 2 type: Transform - - uid: 21480 + - uid: 21521 components: - rot: 3.141592653589793 rad pos: -10.57877,-37.384254 parent: 2 type: Transform - - uid: 21481 + - uid: 21522 components: - pos: 24.486351,19.53259 parent: 2 type: Transform - - uid: 21482 + - uid: 21523 components: - pos: 24.486351,19.53259 parent: 2 type: Transform - - uid: 21483 + - uid: 21524 components: - pos: 24.486351,19.53259 parent: 2 type: Transform - - uid: 21484 + - uid: 21525 components: - pos: 24.486351,19.53259 parent: 2 type: Transform - - uid: 21485 + - uid: 21526 components: - pos: 24.486351,19.53259 parent: 2 type: Transform - - uid: 21486 + - uid: 21527 components: - pos: 24.486351,19.53259 parent: 2 type: Transform - - uid: 21487 + - uid: 21528 components: - rot: 3.141592653589793 rad pos: 16.421602,22.571196 parent: 2 type: Transform - - uid: 21488 + - uid: 21529 components: - rot: 3.141592653589793 rad pos: 16.515352,22.55557 parent: 2 type: Transform - - uid: 21489 + - uid: 21530 components: - rot: 3.141592653589793 rad pos: 16.499727,22.571196 parent: 2 type: Transform - - uid: 21490 + - uid: 21531 components: - rot: 3.141592653589793 rad pos: 16.499727,22.571196 parent: 2 type: Transform - - uid: 21491 + - uid: 21532 components: - rot: 3.141592653589793 rad pos: 16.499727,22.571196 parent: 2 type: Transform - - uid: 21492 + - uid: 21533 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21493 + - uid: 21534 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21494 + - uid: 21535 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21495 + - uid: 21536 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21496 + - uid: 21537 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21497 + - uid: 21538 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21498 + - uid: 21539 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21499 + - uid: 21540 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21500 + - uid: 21541 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21501 + - uid: 21542 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21502 + - uid: 21543 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21503 + - uid: 21544 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21504 + - uid: 21545 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21505 + - uid: 21546 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21506 + - uid: 21547 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21507 + - uid: 21548 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21508 + - uid: 21549 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21509 + - uid: 21550 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21510 + - uid: 21551 components: - rot: 1.5707963267948966 rad pos: 37.488216,-3.5194297 parent: 2 type: Transform - - uid: 21511 + - uid: 21552 components: - rot: 1.5707963267948966 rad pos: 37.488216,-3.5194297 parent: 2 type: Transform - - uid: 21512 + - uid: 21553 components: - rot: 1.5707963267948966 rad pos: 37.488216,-3.5194297 parent: 2 type: Transform - - uid: 21513 + - uid: 21554 components: - rot: 1.5707963267948966 rad pos: 37.488216,-3.5194297 parent: 2 type: Transform - - uid: 21514 + - uid: 21555 components: - rot: 1.5707963267948966 rad pos: 37.59759,-3.6288047 parent: 2 type: Transform - - uid: 21515 + - uid: 21556 components: - rot: 1.5707963267948966 rad pos: 37.59759,-3.6288047 parent: 2 type: Transform - - uid: 21516 + - uid: 21557 components: - rot: 1.5707963267948966 rad pos: 37.550716,-3.6131797 parent: 2 type: Transform - - uid: 21517 + - uid: 21558 components: - rot: 1.5707963267948966 rad pos: 37.550716,-3.6131797 parent: 2 type: Transform - - uid: 21518 + - uid: 21559 components: - rot: 1.5707963267948966 rad pos: 37.56634,-3.6131797 parent: 2 type: Transform - - uid: 21519 + - uid: 21560 components: - rot: 1.5707963267948966 rad pos: 37.59759,-3.6288047 parent: 2 type: Transform - - uid: 21520 + - uid: 21561 components: - rot: 1.5707963267948966 rad pos: 37.59759,-3.6288047 parent: 2 type: Transform - - uid: 21521 + - uid: 21562 components: - rot: 1.5707963267948966 rad pos: 37.59759,-3.6288047 parent: 2 type: Transform - - uid: 21522 + - uid: 21563 components: - pos: 38.47659,-2.4393778 parent: 2 type: Transform - - uid: 21523 + - uid: 21564 components: - pos: 38.47659,-2.4393778 parent: 2 type: Transform - - uid: 21524 + - uid: 21565 components: - pos: 38.47659,-2.4393778 parent: 2 type: Transform - - uid: 21525 + - uid: 21566 components: - pos: 38.47659,-2.4393778 parent: 2 type: Transform - - uid: 21526 + - uid: 21567 components: - pos: 38.47659,-2.4393778 parent: 2 type: Transform - - uid: 21527 + - uid: 21568 components: - pos: 38.47659,-2.4393778 parent: 2 type: Transform - - uid: 21528 + - uid: 21569 components: - pos: 38.47659,-2.4393778 parent: 2 type: Transform - - uid: 21529 + - uid: 21570 components: - rot: 1.5707963267948966 rad pos: 51.483532,-41.966263 parent: 2 type: Transform - - uid: 21530 + - uid: 21571 components: - rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 type: Transform - - uid: 21531 + - uid: 21572 components: - rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 type: Transform - - uid: 21532 + - uid: 21573 components: - rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 type: Transform - - uid: 21533 + - uid: 21574 components: - rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 type: Transform - - uid: 21534 + - uid: 21575 components: - rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 type: Transform - - uid: 21535 + - uid: 21576 components: - rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 type: Transform - - uid: 21536 + - uid: 21577 components: - rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 type: Transform - - uid: 21537 + - uid: 21578 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21538 + - uid: 21579 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21539 + - uid: 21580 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21540 + - uid: 21581 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21541 + - uid: 21582 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21542 + - uid: 21583 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21543 + - uid: 21584 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21544 + - uid: 21585 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21545 + - uid: 21586 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21546 + - uid: 21587 components: - rot: -1.5707963267948966 rad pos: -35.467735,-16.567335 parent: 2 type: Transform - - uid: 21547 + - uid: 21588 components: - rot: -1.5707963267948966 rad pos: -35.467735,-16.567335 parent: 2 type: Transform - - uid: 21548 + - uid: 21589 components: - rot: -1.5707963267948966 rad pos: -35.467735,-16.567335 parent: 2 type: Transform - - uid: 21549 + - uid: 21590 components: - rot: -1.5707963267948966 rad pos: -35.467735,-16.567335 parent: 2 type: Transform - - uid: 21550 + - uid: 21591 components: - pos: 1.3868889,23.62748 parent: 2 type: Transform - - uid: 21551 + - uid: 21592 components: - pos: 1.3868889,23.643105 parent: 2 type: Transform - - uid: 21552 + - uid: 21593 components: - rot: 3.141592653589793 rad pos: -26.49969,14.6061535 parent: 2 type: Transform - - uid: 21553 + - uid: 21594 components: - rot: 3.141592653589793 rad pos: -26.49969,14.6061535 parent: 2 type: Transform - - uid: 21554 + - uid: 21595 components: - rot: 3.141592653589793 rad pos: -26.49969,14.6061535 parent: 2 type: Transform - - uid: 21555 + - uid: 21596 components: - rot: 3.141592653589793 rad pos: -26.49969,14.6061535 parent: 2 type: Transform - - uid: 21556 + - uid: 21597 components: - rot: 3.141592653589793 rad pos: -26.49969,14.6061535 parent: 2 type: Transform - - uid: 21557 + - uid: 21598 components: - rot: 3.141592653589793 rad pos: -26.49969,14.6061535 parent: 2 type: Transform - - uid: 21558 + - uid: 21599 components: - pos: -31.206972,15.691786 parent: 2 type: Transform - - uid: 21559 + - uid: 21600 components: - pos: -31.206972,15.691786 parent: 2 type: Transform - - uid: 21560 + - uid: 21601 components: - pos: -31.363222,15.551161 parent: 2 type: Transform - - uid: 21561 + - uid: 21602 components: - pos: -31.363222,15.551161 parent: 2 type: Transform - - uid: 21562 + - uid: 21603 components: - pos: 10.165828,-6.3936543 parent: 2 type: Transform - - uid: 21563 + - uid: 21604 components: - pos: 10.165828,-6.3936543 parent: 2 type: Transform - - uid: 21564 + - uid: 21605 components: - pos: 9.367039,-7.0613875 parent: 2 type: Transform - - uid: 21565 + - uid: 21606 components: - pos: -11.489469,-13.479897 parent: 2 @@ -148963,7 +142304,7 @@ entities: Anything suspicious, please inform security. type: Paper - - uid: 21566 + - uid: 21607 components: - pos: -42.540462,17.447073 parent: 2 @@ -148973,53 +142314,53 @@ entities: type: Paper - proto: PaperBin10 entities: - - uid: 21567 + - uid: 21608 components: - rot: -1.5707963267948966 rad pos: 22.5,-21.5 parent: 2 type: Transform - - uid: 21568 + - uid: 21609 components: - pos: -22.48288,-97.58025 parent: 2 type: Transform - proto: PaperBin5 entities: - - uid: 21569 + - uid: 21610 components: - pos: -19.490406,-56.387535 parent: 2 type: Transform - - uid: 21570 + - uid: 21611 components: - pos: -34.544167,24.426237 parent: 2 type: Transform - - uid: 21571 + - uid: 21612 components: - rot: 3.141592653589793 rad pos: -25.63709,-36.050198 parent: 2 type: Transform - - uid: 21572 + - uid: 21613 components: - pos: -27.800707,-9.411719 parent: 2 type: Transform - - uid: 21573 + - uid: 21614 components: - pos: 39.827625,-39.412262 parent: 2 type: Transform - - uid: 21574 + - uid: 21615 components: - pos: -17.5,-61.5 parent: 2 type: Transform - proto: PaperCaptainsThoughts entities: - - uid: 21575 + - uid: 21616 components: - rot: 1.5707963267948966 rad pos: 30.690884,-28.507551 @@ -149027,21 +142368,21 @@ entities: type: Transform - proto: PaperRolling entities: - - uid: 21576 + - uid: 21617 components: - pos: 51.67759,57.788548 parent: 2 type: Transform - proto: ParticleAcceleratorControlBoxUnfinished entities: - - uid: 21577 + - uid: 21618 components: - pos: -66.5,-30.5 parent: 2 type: Transform - proto: ParticleAcceleratorEmitterForeUnfinished entities: - - uid: 21578 + - uid: 21619 components: - rot: 3.141592653589793 rad pos: -66.5,-24.5 @@ -149049,7 +142390,7 @@ entities: type: Transform - proto: ParticleAcceleratorEmitterPortUnfinished entities: - - uid: 21579 + - uid: 21620 components: - rot: 3.141592653589793 rad pos: -67.5,-24.5 @@ -149057,7 +142398,7 @@ entities: type: Transform - proto: ParticleAcceleratorEmitterStarboard entities: - - uid: 21580 + - uid: 21621 components: - rot: 3.141592653589793 rad pos: -65.5,-24.5 @@ -149065,7 +142406,7 @@ entities: type: Transform - proto: ParticleAcceleratorEndCapUnfinished entities: - - uid: 21581 + - uid: 21622 components: - rot: 3.141592653589793 rad pos: -66.5,-27.5 @@ -149073,7 +142414,7 @@ entities: type: Transform - proto: ParticleAcceleratorFuelChamberUnfinished entities: - - uid: 21582 + - uid: 21623 components: - rot: 3.141592653589793 rad pos: -65.5,-26.5 @@ -149081,7 +142422,7 @@ entities: type: Transform - proto: ParticleAcceleratorPowerBoxUnfinished entities: - - uid: 21583 + - uid: 21624 components: - rot: 3.141592653589793 rad pos: -66.5,-25.5 @@ -149089,40 +142430,40 @@ entities: type: Transform - proto: PartRodMetal entities: - - uid: 21584 + - uid: 21625 components: - pos: -40.15428,-18.425268 parent: 2 type: Transform - - uid: 21585 + - uid: 21626 components: - pos: -39.68701,25.670773 parent: 2 type: Transform - - uid: 21586 + - uid: 21627 components: - pos: -40.541622,33.38082 parent: 2 type: Transform - - uid: 21587 + - uid: 21628 components: - pos: -47.52058,40.270145 parent: 2 type: Transform - proto: PartRodMetal1 entities: - - uid: 21588 + - uid: 21629 components: - pos: -34.56476,-25.498856 parent: 2 type: Transform - - uid: 21589 + - uid: 21630 components: - rot: -1.5707963267948966 rad pos: 3.9014397,49.543682 parent: 2 type: Transform - - uid: 21590 + - uid: 21631 components: - rot: 3.141592653589793 rad pos: 1.4099668,48.504288 @@ -149130,46 +142471,46 @@ entities: type: Transform - proto: Pen entities: - - uid: 21591 + - uid: 21632 components: - rot: -1.5707963267948966 rad pos: -4.7918606,-48.471176 parent: 2 type: Transform - - uid: 21592 + - uid: 21633 components: - rot: 3.141592653589793 rad pos: -10.781895,-37.52488 parent: 2 type: Transform - - uid: 21593 + - uid: 21634 components: - rot: 3.141592653589793 rad pos: 16.218477,22.61807 parent: 2 type: Transform - - uid: 21594 + - uid: 21635 components: - pos: 16.327852,21.55557 parent: 2 type: Transform - - uid: 21595 + - uid: 21636 components: - pos: 43.66009,-3.5506787 parent: 2 type: Transform - - uid: 21596 + - uid: 21637 components: - pos: 37.66009,-3.7069297 parent: 2 type: Transform - - uid: 21597 + - uid: 21638 components: - rot: -1.5707963267948966 rad pos: -35.775307,-16.265104 parent: 2 type: Transform - - uid: 21598 + - uid: 21639 components: - rot: 1.5707963267948966 rad pos: 3.6684875,-10.184602 @@ -149177,51 +142518,51 @@ entities: type: Transform - proto: PersonalAI entities: - - uid: 21599 + - uid: 21640 components: - flags: SessionSpecific type: MetaData - pos: 26.517971,-21.50738 parent: 2 type: Transform - - uid: 21600 + - uid: 21641 components: - flags: SessionSpecific type: MetaData - pos: 11.402888,8.363556 parent: 2 type: Transform - - uid: 21601 + - uid: 21642 components: - flags: SessionSpecific type: MetaData - pos: 12.500859,-4.4425125 parent: 2 type: Transform - - uid: 21602 + - uid: 21643 components: - flags: SessionSpecific type: MetaData - - pos: 56.49031,-41.437515 + - pos: -48.458683,6.4665513 parent: 2 type: Transform - - uid: 21603 + - uid: 21644 components: - flags: SessionSpecific type: MetaData - - pos: -48.458683,6.4665513 + - pos: 56.523212,-40.57079 parent: 2 type: Transform - proto: PhoneInstrument entities: - - uid: 21604 + - uid: 21645 components: - pos: 60.321476,-1.3655583 parent: 2 type: Transform - proto: PianoInstrument entities: - - uid: 21605 + - uid: 21646 components: - rot: -1.5707963267948966 rad pos: 8.5,0.5 @@ -149229,229 +142570,229 @@ entities: type: Transform - proto: Pickaxe entities: - - uid: 21606 + - uid: 21647 components: - pos: -38.26402,27.606245 parent: 2 type: Transform - - uid: 21607 + - uid: 21648 components: - pos: -38.54527,27.71562 parent: 2 type: Transform - - uid: 21608 + - uid: 21649 components: - pos: -47.972298,26.558094 parent: 2 type: Transform - - uid: 21609 + - uid: 21650 components: - pos: 68.4767,50.00708 parent: 2 type: Transform - - uid: 21610 + - uid: 21651 components: - pos: 20.350138,46.202785 parent: 2 type: Transform - - uid: 21611 + - uid: 21652 components: - pos: -47.48462,39.252865 parent: 2 type: Transform - proto: PillCanister entities: - - uid: 21612 + - uid: 21653 components: - pos: -10.04752,-37.290504 parent: 2 type: Transform - proto: PillDexalin entities: - - uid: 21613 + - uid: 21654 components: - pos: -10.034681,-32.27196 parent: 2 type: Transform - - uid: 21614 + - uid: 21655 components: - pos: -10.034681,-32.27196 parent: 2 type: Transform - - uid: 21615 + - uid: 21656 components: - pos: -10.019056,-32.27196 parent: 2 type: Transform - - uid: 21616 + - uid: 21657 components: - pos: -10.019056,-32.27196 parent: 2 type: Transform - proto: PillDylovene entities: - - uid: 21617 + - uid: 21658 components: - pos: -9.519056,-32.52196 parent: 2 type: Transform - - uid: 21618 + - uid: 21659 components: - pos: -9.519056,-32.52196 parent: 2 type: Transform - - uid: 21619 + - uid: 21660 components: - pos: -9.503431,-32.52196 parent: 2 type: Transform - - uid: 21620 + - uid: 21661 components: - pos: -9.487806,-32.537586 parent: 2 type: Transform - proto: PillHyronalin entities: - - uid: 21621 + - uid: 21662 components: - pos: -9.534681,-32.256336 parent: 2 type: Transform - - uid: 21622 + - uid: 21663 components: - pos: -9.534681,-32.256336 parent: 2 type: Transform - - uid: 21623 + - uid: 21664 components: - pos: -9.534681,-32.256336 parent: 2 type: Transform - - uid: 21624 + - uid: 21665 components: - pos: -9.534681,-32.256336 parent: 2 type: Transform - proto: PillIron entities: - - uid: 21625 + - uid: 21666 components: - pos: -9.034681,-32.506336 parent: 2 type: Transform - - uid: 21626 + - uid: 21667 components: - pos: -9.034681,-32.506336 parent: 2 type: Transform - - uid: 21627 + - uid: 21668 components: - pos: -9.034681,-32.506336 parent: 2 type: Transform - - uid: 21628 + - uid: 21669 components: - pos: -9.034681,-32.506336 parent: 2 type: Transform - proto: PillKelotane entities: - - uid: 21629 + - uid: 21670 components: - pos: -9.034681,-32.24071 parent: 2 type: Transform - - uid: 21630 + - uid: 21671 components: - pos: -9.034681,-32.24071 parent: 2 type: Transform - - uid: 21631 + - uid: 21672 components: - pos: -9.034681,-32.24071 parent: 2 type: Transform - - uid: 21632 + - uid: 21673 components: - pos: -9.034681,-32.24071 parent: 2 type: Transform - proto: PillSpaceDrugs entities: - - uid: 21633 + - uid: 21674 components: - pos: -8.5,-32.5 parent: 2 type: Transform - - uid: 21634 + - uid: 21675 components: - pos: -8.5,-32.5 parent: 2 type: Transform - - uid: 21635 + - uid: 21676 components: - pos: -8.5,-32.5 parent: 2 type: Transform - - uid: 21636 + - uid: 21677 components: - pos: -8.5,-32.5 parent: 2 type: Transform - proto: PillTricordrazine entities: - - uid: 21637 + - uid: 21678 components: - pos: -8.519056,-32.256336 parent: 2 type: Transform - - uid: 21638 + - uid: 21679 components: - pos: -8.503431,-32.256336 parent: 2 type: Transform - - uid: 21639 + - uid: 21680 components: - pos: -8.519056,-32.256336 parent: 2 type: Transform - - uid: 21640 + - uid: 21681 components: - pos: -8.519056,-32.256336 parent: 2 type: Transform - proto: PinpointerNuclear entities: - - uid: 21641 + - uid: 21682 components: - pos: 47.542713,-21.502851 parent: 2 type: Transform - proto: PlasmaCanister entities: - - uid: 21642 + - uid: 21683 components: - pos: 55.5,-55.5 parent: 2 type: Transform - - uid: 21643 + - uid: 21684 components: - pos: -40.5,-39.5 parent: 2 type: Transform - - uid: 21644 + - uid: 21685 components: - pos: -50.5,-46.5 parent: 2 type: Transform - - uid: 21645 + - uid: 21686 components: - pos: -75.5,-44.5 parent: 2 type: Transform - proto: PlasmaOre1 entities: - - uid: 21646 + - uid: 21687 components: - rot: 3.141592653589793 rad pos: 13.8918705,48.240677 @@ -149459,47 +142800,47 @@ entities: type: Transform - proto: PlasticFlapsAirtightClear entities: - - uid: 21647 + - uid: 21688 components: - pos: -49.5,19.5 parent: 2 type: Transform - - uid: 21648 + - uid: 21689 components: - pos: -49.5,23.5 parent: 2 type: Transform - - uid: 21649 + - uid: 21690 components: - pos: -49.5,30.5 parent: 2 type: Transform - - uid: 21650 + - uid: 21691 components: - pos: -49.5,34.5 parent: 2 type: Transform - - uid: 21651 + - uid: 21692 components: - pos: -52.5,34.5 parent: 2 type: Transform - - uid: 21652 + - uid: 21693 components: - pos: -52.5,30.5 parent: 2 type: Transform - - uid: 21653 + - uid: 21694 components: - pos: -53.5,23.5 parent: 2 type: Transform - - uid: 21654 + - uid: 21695 components: - pos: -53.5,19.5 parent: 2 type: Transform - - uid: 21655 + - uid: 21696 components: - rot: -1.5707963267948966 rad pos: 18.5,-56.5 @@ -149507,12 +142848,12 @@ entities: type: Transform - proto: PlasticFlapsAirtightOpaque entities: - - uid: 21656 + - uid: 21697 components: - pos: -35.5,25.5 parent: 2 type: Transform - - uid: 21657 + - uid: 21698 components: - rot: -1.5707963267948966 rad pos: -37.5,-99.5 @@ -149520,35 +142861,35 @@ entities: type: Transform - proto: PlasticFlapsClear entities: - - uid: 21658 + - uid: 21699 components: - pos: -26.5,25.5 parent: 2 type: Transform - - uid: 21659 + - uid: 21700 components: - pos: -29.5,25.5 parent: 2 type: Transform - - uid: 21660 + - uid: 21701 components: - rot: -1.5707963267948966 rad pos: -47.5,13.5 parent: 2 type: Transform - - uid: 21661 + - uid: 21702 components: - rot: 1.5707963267948966 rad pos: -42.5,16.5 parent: 2 type: Transform - - uid: 21662 + - uid: 21703 components: - rot: -1.5707963267948966 rad pos: -11.5,-11.5 parent: 2 type: Transform - - uid: 21663 + - uid: 21704 components: - rot: 1.5707963267948966 rad pos: -16.5,9.5 @@ -149556,29 +142897,29 @@ entities: type: Transform - proto: PlasticFlapsOpaque entities: - - uid: 21664 + - uid: 21705 components: - pos: -11.5,27.5 parent: 2 type: Transform - - uid: 21665 + - uid: 21706 components: - rot: -1.5707963267948966 rad pos: -9.5,25.5 parent: 2 type: Transform - - uid: 21666 + - uid: 21707 components: - pos: -7.5,22.5 parent: 2 type: Transform - - uid: 21667 + - uid: 21708 components: - rot: 3.141592653589793 rad pos: 44.5,37.5 parent: 2 type: Transform - - uid: 21668 + - uid: 21709 components: - rot: 1.5707963267948966 rad pos: 48.5,37.5 @@ -149586,114 +142927,114 @@ entities: type: Transform - proto: PlushieAtmosian entities: - - uid: 21669 + - uid: 21710 components: - pos: -22.54358,-34.49993 parent: 2 type: Transform - proto: PlushieBee entities: - - uid: 21670 + - uid: 21711 components: - pos: 10.893783,54.42024 parent: 2 type: Transform - - uid: 21671 + - uid: 21712 components: - pos: 8.284408,54.20149 parent: 2 type: Transform - - uid: 21672 + - uid: 21713 components: - pos: -7.8529105,54.918877 parent: 2 type: Transform - - uid: 21673 + - uid: 21714 components: - pos: -6.6029105,50.731377 parent: 2 type: Transform - proto: PlushieCarp entities: - - uid: 21674 + - uid: 21715 components: - pos: -38.3623,28.544445 parent: 2 type: Transform - proto: PlushieDiona entities: - - uid: 21675 + - uid: 21716 components: - pos: 17.550053,-79.57761 parent: 2 type: Transform - proto: PlushieHampter entities: - - uid: 21676 + - uid: 21717 components: - pos: -46.5,-30.5 parent: 2 type: Transform - - uid: 21677 + - uid: 21718 components: - pos: 2.519814,7.511129 parent: 2 type: Transform - proto: PlushieLizard entities: - - uid: 21678 + - uid: 21719 components: - pos: 61.496056,-69.34596 parent: 2 type: Transform - proto: PlushieNar entities: - - uid: 21679 + - uid: 21720 components: - pos: 44.413727,31.423994 parent: 2 type: Transform - proto: PlushieNuke entities: - - uid: 21680 + - uid: 21721 components: - pos: -14.485033,-78.68338 parent: 2 type: Transform - - uid: 21681 + - uid: 21722 components: - pos: 54.50363,58.48181 parent: 2 type: Transform - proto: PlushieRatvar entities: - - uid: 21682 + - uid: 21723 components: - pos: 22.555937,-28.535349 parent: 2 type: Transform - proto: PlushieRGBee entities: - - uid: 21683 + - uid: 21724 components: - pos: 56.511868,-8.541915 parent: 2 type: Transform - proto: PlushieSharkGrey entities: - - uid: 21684 + - uid: 21725 components: - pos: -56.49192,-87.62071 parent: 2 type: Transform - proto: PlushieSharkPink entities: - - uid: 21685 + - uid: 21726 components: - pos: -44.508965,16.421295 parent: 2 type: Transform - - uid: 21686 + - uid: 21727 components: - desc: It eerily feels... cute? name: Cult shark plushie @@ -149701,190 +143042,190 @@ entities: - pos: -17.592062,-82.49987 parent: 2 type: Transform - - radius: 2 - energy: 0.4 + - energy: 0.4 color: '#FC7CC7FF' + radius: 2 type: PointLight - proto: PlushieSlime entities: - - uid: 21687 + - uid: 21728 components: - pos: 44.49185,33.486496 parent: 2 type: Transform - proto: PlushieSnake entities: - - uid: 21688 + - uid: 21729 components: - pos: 43.507477,33.486496 parent: 2 type: Transform - - uid: 21689 + - uid: 21730 components: - pos: -55.49481,-49.261024 parent: 2 type: Transform - proto: PlushieSpaceLizard entities: - - uid: 21690 + - uid: 21731 components: - pos: -44.46209,15.43692 parent: 2 type: Transform - - uid: 21691 + - uid: 21732 components: - pos: 42.55435,33.392746 parent: 2 type: Transform - proto: PlushieVox entities: - - uid: 21692 + - uid: 21733 components: - pos: 32.421734,-47.539772 parent: 2 type: Transform - proto: PortableFlasher entities: - - uid: 21693 + - uid: 21734 components: - pos: 32.5,31.5 parent: 2 type: Transform - proto: PortableGeneratorJrPacman entities: - - uid: 21694 + - uid: 21735 components: - pos: -30.5,-61.5 parent: 2 type: Transform - - uid: 21695 + - uid: 21736 components: - pos: 15.5,-72.5 parent: 2 type: Transform - - uid: 21696 + - uid: 21737 components: - pos: -54.5,-30.5 parent: 2 type: Transform - - uid: 21697 + - uid: 21738 components: - pos: 30.5,44.5 parent: 2 type: Transform - proto: PortableGeneratorPacman entities: - - uid: 21698 + - uid: 21739 components: - pos: -58.5,-86.5 parent: 2 type: Transform - - uid: 21699 + - uid: 21740 components: - pos: -65.5,-51.5 parent: 2 type: Transform - - uid: 21700 + - uid: 21741 components: - pos: 4.5,-22.5 parent: 2 type: Transform - - uid: 21701 + - uid: 21742 components: - pos: 4.5,-23.5 parent: 2 type: Transform - proto: PortableScrubber entities: - - uid: 21702 + - uid: 21743 components: - pos: -9.5,-68.5 parent: 2 type: Transform - - uid: 21703 + - uid: 21744 components: - pos: -33.5,-43.5 parent: 2 type: Transform - - uid: 21704 + - uid: 21745 components: - pos: -33.5,-44.5 parent: 2 type: Transform - - uid: 21705 + - uid: 21746 components: - pos: -33.5,-45.5 parent: 2 type: Transform - proto: PosterBroken entities: - - uid: 21706 + - uid: 21747 components: - pos: 0.5,-70.5 parent: 2 type: Transform - proto: PosterContrabandAmbrosiaVulgaris entities: - - uid: 21707 + - uid: 21748 components: - pos: -10.5,-34.5 parent: 2 type: Transform - proto: PosterContrabandAtmosiaDeclarationIndependence entities: - - uid: 21708 + - uid: 21749 components: - pos: -36.5,-52.5 parent: 2 type: Transform - proto: PosterContrabandBeachStarYamamoto entities: - - uid: 21709 + - uid: 21750 components: - pos: -9.5,-31.5 parent: 2 type: Transform - proto: PosterContrabandBorgFancy entities: - - uid: 21710 + - uid: 21751 components: - pos: 16.5,-4.5 parent: 2 type: Transform - proto: PosterContrabandBountyHunters entities: - - uid: 21711 + - uid: 21752 components: - pos: 14.5,-56.5 parent: 2 type: Transform - - uid: 21712 + - uid: 21753 components: - pos: -42.5,26.5 parent: 2 type: Transform - proto: PosterContrabandCC64KAd entities: - - uid: 21713 + - uid: 21754 components: - pos: 20.5,-3.5 parent: 2 type: Transform - proto: PosterContrabandClown entities: - - uid: 21714 + - uid: 21755 components: - rot: 1.5707963267948966 rad pos: -23.5,39.5 parent: 2 type: Transform - - uid: 21715 + - uid: 21756 components: - rot: -1.5707963267948966 rad pos: 0.5,-24.5 parent: 2 type: Transform - - uid: 21716 + - uid: 21757 components: - rot: -1.5707963267948966 rad pos: -0.5,-18.5 @@ -149892,19 +143233,19 @@ entities: type: Transform - proto: PosterContrabandCommunistState entities: - - uid: 21717 + - uid: 21758 components: - pos: 0.5,-15.5 parent: 2 type: Transform - - uid: 21718 + - uid: 21759 components: - pos: 53.5,-64.5 parent: 2 type: Transform - proto: PosterContrabandCybersun600 entities: - - uid: 21719 + - uid: 21760 components: - rot: 1.5707963267948966 rad pos: -15.5,48.5 @@ -149912,28 +143253,28 @@ entities: type: Transform - proto: PosterContrabandDDayPromo entities: - - uid: 21720 + - uid: 21761 components: - pos: 14.5,33.5 parent: 2 type: Transform - proto: PosterContrabandDonutCorp entities: - - uid: 21721 + - uid: 21762 components: - pos: 49.5,34.5 parent: 2 type: Transform - proto: PosterContrabandEAT entities: - - uid: 21722 + - uid: 21763 components: - pos: 4.5,4.5 parent: 2 type: Transform - proto: PosterContrabandEnlistGorlex entities: - - uid: 21723 + - uid: 21764 components: - rot: 1.5707963267948966 rad pos: 53.5,54.5 @@ -149941,247 +143282,255 @@ entities: type: Transform - proto: PosterContrabandFreeSyndicateEncryptionKey entities: - - uid: 21724 + - uid: 21765 components: - pos: -53.5,-85.5 parent: 2 type: Transform - proto: PosterContrabandFreeTonto entities: - - uid: 21725 + - uid: 21766 components: - pos: -6.5,-14.5 parent: 2 type: Transform - proto: PosterContrabandFunPolice entities: - - uid: 21726 + - uid: 21767 components: - pos: 4.5,18.5 parent: 2 type: Transform - proto: PosterContrabandGreyTide entities: - - uid: 21727 + - uid: 21768 components: - pos: 55.5,-9.5 parent: 2 type: Transform - - uid: 21728 + - uid: 21769 components: - pos: 41.5,-57.5 parent: 2 type: Transform - - uid: 21729 + - uid: 21770 components: - pos: -19.5,64.5 parent: 2 type: Transform - proto: PosterContrabandHackingGuide entities: - - uid: 21730 + - uid: 21771 components: - pos: 15.5,40.5 parent: 2 type: Transform - proto: PosterContrabandHighEffectEngineering entities: - - uid: 21731 + - uid: 21772 components: - pos: -48.5,-7.5 parent: 2 type: Transform +- proto: PosterContrabandInterdyne + entities: + - uid: 21773 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-44.5 + parent: 2 + type: Transform - proto: PosterContrabandKosmicheskayaStantsiya entities: - - uid: 21732 + - uid: 21774 components: - pos: -25.5,-63.5 parent: 2 type: Transform - proto: PosterContrabandLamarr entities: - - uid: 21733 + - uid: 21775 components: - pos: 10.5,35.5 parent: 2 type: Transform - proto: PosterContrabandLustyExomorph entities: - - uid: 21734 + - uid: 21776 components: - pos: -9.5,-73.5 parent: 2 type: Transform - - uid: 21735 + - uid: 21777 components: - pos: 45.5,50.5 parent: 2 type: Transform - proto: PosterContrabandMaskedMen entities: - - uid: 21736 + - uid: 21778 components: - pos: 47.5,51.5 parent: 2 type: Transform - proto: PosterContrabandMissingGloves entities: - - uid: 21737 + - uid: 21779 components: - pos: 20.5,19.5 parent: 2 type: Transform - - uid: 21738 + - uid: 21780 components: - pos: 41.5,-52.5 parent: 2 type: Transform - - uid: 21739 + - uid: 21781 components: - pos: -26.5,-18.5 parent: 2 type: Transform - proto: PosterContrabandNuclearDeviceInformational entities: - - uid: 21740 + - uid: 21782 components: - pos: 39.5,-24.5 parent: 2 type: Transform - proto: PosterContrabandPower entities: - - uid: 21741 + - uid: 21783 components: - pos: -61.5,-22.5 parent: 2 type: Transform - - uid: 21742 + - uid: 21784 components: - pos: -23.5,-7.5 parent: 2 type: Transform - proto: PosterContrabandRebelsUnite entities: - - uid: 21743 + - uid: 21785 components: - pos: -0.5,-72.5 parent: 2 type: Transform - - uid: 21744 + - uid: 21786 components: - pos: -42.5,-73.5 parent: 2 type: Transform - proto: PosterContrabandRedRum entities: - - uid: 21745 + - uid: 21787 components: - pos: 13.5,4.5 parent: 2 type: Transform - - uid: 21746 + - uid: 21788 components: - pos: 11.5,15.5 parent: 2 type: Transform - - uid: 21747 + - uid: 21789 components: - pos: 35.5,49.5 parent: 2 type: Transform - proto: PosterContrabandRevolt entities: - - uid: 21748 + - uid: 21790 components: - pos: -40.5,-73.5 parent: 2 type: Transform - - uid: 21749 + - uid: 21791 components: - pos: -7.5,-73.5 parent: 2 type: Transform - - uid: 21750 + - uid: 21792 components: - pos: 57.5,55.5 parent: 2 type: Transform - - uid: 21751 + - uid: 21793 components: - pos: 51.5,55.5 parent: 2 type: Transform - - uid: 21752 + - uid: 21794 components: - pos: 56.5,60.5 parent: 2 type: Transform - - uid: 21753 + - uid: 21795 components: - pos: 52.5,60.5 parent: 2 type: Transform - - uid: 21754 + - uid: 21796 components: - pos: 51.5,59.5 parent: 2 type: Transform - - uid: 21755 + - uid: 21797 components: - pos: 57.5,59.5 parent: 2 type: Transform - proto: PosterContrabandRevolver entities: - - uid: 21756 + - uid: 21798 components: - pos: -30.5,-42.5 parent: 2 type: Transform - - uid: 21757 + - uid: 21799 components: - pos: 42.5,49.5 parent: 2 type: Transform - proto: PosterContrabandRIPBadger entities: - - uid: 21758 + - uid: 21800 components: - pos: -41.5,-27.5 parent: 2 type: Transform - proto: PosterContrabandRise entities: - - uid: 21759 + - uid: 21801 components: - pos: 63.5,10.5 parent: 2 type: Transform - - uid: 21760 + - uid: 21802 components: - pos: -28.5,-50.5 parent: 2 type: Transform - - uid: 21761 + - uid: 21803 components: - pos: -40.5,-69.5 parent: 2 type: Transform - - uid: 21762 + - uid: 21804 components: - pos: 57.5,53.5 parent: 2 type: Transform - proto: PosterContrabandRobustSoftdrinks entities: - - uid: 21763 + - uid: 21805 components: - pos: -6.5,-31.5 parent: 2 type: Transform - proto: PosterContrabandShamblersJuice entities: - - uid: 21764 + - uid: 21806 components: - name: changs type: MetaData @@ -150191,274 +143540,274 @@ entities: type: Transform - proto: PosterContrabandSmoke entities: - - uid: 21765 + - uid: 21807 components: - pos: -6.5,-51.5 parent: 2 type: Transform - proto: PosterContrabandSyndicatePistol entities: - - uid: 21766 + - uid: 21808 components: - pos: -46.5,-71.5 parent: 2 type: Transform - proto: PosterContrabandSyndicateRecruitment entities: - - uid: 21767 + - uid: 21809 components: - pos: -44.5,-74.5 parent: 2 type: Transform - - uid: 21768 + - uid: 21810 components: - pos: 30.5,48.5 parent: 2 type: Transform - proto: PosterContrabandTheGriffin entities: - - uid: 21769 + - uid: 21811 components: - pos: -43.5,-73.5 parent: 2 type: Transform - proto: PosterContrabandTools entities: - - uid: 21770 + - uid: 21812 components: - pos: -54.5,-69.5 parent: 2 type: Transform - - uid: 21771 + - uid: 21813 components: - pos: -22.5,-19.5 parent: 2 type: Transform - proto: PosterContrabandVoteWeh entities: - - uid: 21772 + - uid: 21814 components: - pos: -46.5,-65.5 parent: 2 type: Transform - - uid: 21773 + - uid: 21815 components: - pos: 59.5,41.5 parent: 2 type: Transform - proto: PosterContrabandWehWatches entities: - - uid: 21774 + - uid: 21816 components: - pos: 55.5,-4.5 parent: 2 type: Transform - proto: PosterLegit12Gauge entities: - - uid: 21775 + - uid: 21817 components: - pos: 31.5,23.5 parent: 2 type: Transform - proto: PosterLegit50thAnniversaryVintageReprint entities: - - uid: 21776 + - uid: 21818 components: - pos: 44.5,-34.5 parent: 2 type: Transform - proto: PosterLegitAnatomyPoster entities: - - uid: 21777 + - uid: 21819 components: - pos: -4.5,-63.5 parent: 2 type: Transform - proto: PosterLegitBlessThisSpess entities: - - uid: 21778 + - uid: 21820 components: - pos: 61.5,-4.5 parent: 2 type: Transform - proto: PosterLegitBuild entities: - - uid: 21779 + - uid: 21821 components: - pos: -34.5,-4.5 parent: 2 type: Transform - proto: PosterLegitCarbonDioxide entities: - - uid: 21780 + - uid: 21822 components: - pos: 46.5,-55.5 parent: 2 type: Transform - proto: PosterLegitCarpMount entities: - - uid: 21781 + - uid: 21823 components: - pos: 24.5,-26.5 parent: 2 type: Transform - proto: PosterLegitCleanliness entities: - - uid: 21782 + - uid: 21824 components: - pos: -10.5,-24.5 parent: 2 type: Transform - - uid: 21783 + - uid: 21825 components: - pos: 1.5,-58.5 parent: 2 type: Transform - proto: PosterLegitCohibaRobustoAd entities: - - uid: 21784 + - uid: 21826 components: - pos: 13.5,-30.5 parent: 2 type: Transform - - uid: 21785 + - uid: 21827 components: - pos: 57.5,-9.5 parent: 2 type: Transform - proto: PosterLegitDickGumshue entities: - - uid: 21786 + - uid: 21828 components: - pos: 17.5,-15.5 parent: 2 type: Transform - proto: PosterLegitDoNotQuestion entities: - - uid: 21787 + - uid: 21829 components: - pos: 23.5,19.5 parent: 2 type: Transform - - uid: 21788 + - uid: 21830 components: - pos: -17.5,-21.5 parent: 2 type: Transform - proto: PosterLegitEnlist entities: - - uid: 21789 + - uid: 21831 components: - pos: -17.5,-31.5 parent: 2 type: Transform - - uid: 21790 + - uid: 21832 components: - pos: 59.5,-9.5 parent: 2 type: Transform - - uid: 21791 + - uid: 21833 components: - pos: -13.5,27.5 parent: 2 type: Transform - proto: PosterLegitFoamForceAd entities: - - uid: 21792 + - uid: 21834 components: - pos: 1.5,-39.5 parent: 2 type: Transform - proto: PosterLegitFruitBowl entities: - - uid: 21793 + - uid: 21835 components: - pos: -4.5,9.5 parent: 2 type: Transform - - uid: 21794 + - uid: 21836 components: - pos: -22.5,49.5 parent: 2 type: Transform - proto: PosterLegitGetYourLEGS entities: - - uid: 21795 + - uid: 21837 components: - pos: -16.5,64.5 parent: 2 type: Transform - proto: PosterLegitHelpOthers entities: - - uid: 21796 + - uid: 21838 components: - pos: -7.5,-40.5 parent: 2 type: Transform - proto: PosterLegitHereForYourSafety entities: - - uid: 21797 + - uid: 21839 components: - pos: 28.5,9.5 parent: 2 type: Transform - proto: PosterLegitHighClassMartini entities: - - uid: 21798 + - uid: 21840 components: - pos: 8.5,11.5 parent: 2 type: Transform - - uid: 21799 + - uid: 21841 components: - pos: -39.5,-74.5 parent: 2 type: Transform - proto: PosterLegitIan entities: - - uid: 21800 + - uid: 21842 components: - rot: 3.141592653589793 rad pos: 5.5,-2.5 parent: 2 type: Transform - - uid: 21801 + - uid: 21843 components: - pos: 21.5,-40.5 parent: 2 type: Transform - proto: PosterLegitIonRifle entities: - - uid: 21802 + - uid: 21844 components: - pos: 27.5,33.5 parent: 2 type: Transform - proto: PosterLegitJustAWeekAway entities: - - uid: 21803 + - uid: 21845 components: - pos: 27.5,-33.5 parent: 2 type: Transform - - uid: 21804 + - uid: 21846 components: - pos: -37.5,-31.5 parent: 2 type: Transform - - uid: 21805 + - uid: 21847 components: - pos: 30.5,-35.5 parent: 2 type: Transform - proto: PosterLegitLoveIan entities: - - uid: 21806 + - uid: 21848 components: - pos: 21.5,-33.5 parent: 2 type: Transform - - uid: 21807 + - uid: 21849 components: - rot: 3.141592653589793 rad pos: 0.5,-2.5 @@ -150466,7 +143815,7 @@ entities: type: Transform - proto: PosterLegitMime entities: - - uid: 21808 + - uid: 21850 components: - rot: 1.5707963267948966 rad pos: -27.5,47.5 @@ -150474,37 +143823,37 @@ entities: type: Transform - proto: PosterLegitNanomichiAd entities: - - uid: 21809 + - uid: 21851 components: - pos: -21.5,-27.5 parent: 2 type: Transform - proto: PosterLegitNanotrasenLogo entities: - - uid: 21810 + - uid: 21852 components: - pos: 28.5,-31.5 parent: 2 type: Transform - - uid: 21811 + - uid: 21853 components: - pos: 25.5,-33.5 parent: 2 type: Transform - proto: PosterLegitNoERP entities: - - uid: 21812 + - uid: 21854 components: - pos: 40.5,49.5 parent: 2 type: Transform - - uid: 21813 + - uid: 21855 components: - rot: 3.141592653589793 rad pos: -15.5,-36.5 parent: 2 type: Transform - - uid: 21814 + - uid: 21856 components: - rot: 3.141592653589793 rad pos: -47.5,9.5 @@ -150512,52 +143861,52 @@ entities: type: Transform - proto: PosterLegitObey entities: - - uid: 21815 + - uid: 21857 components: - pos: 31.5,-3.5 parent: 2 type: Transform - proto: PosterLegitPDAAd entities: - - uid: 21816 + - uid: 21858 components: - pos: 29.5,-40.5 parent: 2 type: Transform - proto: PosterLegitReportCrimes entities: - - uid: 21817 + - uid: 21859 components: - pos: 18.5,-15.5 parent: 2 type: Transform - - uid: 21818 + - uid: 21860 components: - pos: 30.5,-46.5 parent: 2 type: Transform - proto: PosterLegitSafetyEyeProtection entities: - - uid: 21819 + - uid: 21861 components: - pos: -33.5,-31.5 parent: 2 type: Transform - proto: PosterLegitSafetyInternals entities: - - uid: 21820 + - uid: 21862 components: - pos: -39.5,-31.5 parent: 2 type: Transform - - uid: 21821 + - uid: 21863 components: - pos: 24.5,-54.5 parent: 2 type: Transform - proto: PosterLegitSafetyMothHardhat entities: - - uid: 21822 + - uid: 21864 components: - rot: 1.5707963267948966 rad pos: -28.5,-15.5 @@ -150565,17 +143914,17 @@ entities: type: Transform - proto: PosterLegitSecWatch entities: - - uid: 21823 + - uid: 21865 components: - pos: 10.5,15.5 parent: 2 type: Transform - - uid: 21824 + - uid: 21866 components: - pos: 18.5,-9.5 parent: 2 type: Transform - - uid: 21825 + - uid: 21867 components: - rot: 3.141592653589793 rad pos: -18.5,-44.5 @@ -150583,19 +143932,19 @@ entities: type: Transform - proto: PosterLegitStateLaws entities: - - uid: 21826 + - uid: 21868 components: - pos: 37.5,-32.5 parent: 2 type: Transform - - uid: 21827 + - uid: 21869 components: - pos: -17.5,27.5 parent: 2 type: Transform - proto: PosterLegitThereIsNoGasGiant entities: - - uid: 21828 + - uid: 21870 components: - rot: -1.5707963267948966 rad pos: -41.5,-40.5 @@ -150603,7 +143952,7 @@ entities: type: Transform - proto: PosterLegitVacation entities: - - uid: 21829 + - uid: 21871 components: - rot: 1.5707963267948966 rad pos: 47.5,-70.5 @@ -150611,361 +143960,347 @@ entities: type: Transform - proto: PosterLegitWalk entities: - - uid: 21830 + - uid: 21872 components: - pos: -7.5,-28.5 parent: 2 type: Transform - proto: PottedPlant1 entities: - - uid: 21831 + - uid: 21873 components: - pos: -2.5,-40.5 parent: 2 type: Transform - proto: PottedPlant14 entities: - - uid: 21832 + - uid: 21874 components: - pos: 36.5,-16.5 parent: 2 type: Transform - proto: PottedPlant24 entities: - - uid: 21833 + - uid: 21875 components: - pos: -6.5,-40.5 parent: 2 type: Transform - proto: PottedPlant26 entities: - - uid: 21834 + - uid: 21876 components: - pos: 6.5,-52.5 parent: 2 type: Transform - proto: PottedPlant27 entities: - - uid: 21835 + - uid: 21877 components: - pos: 46.5,31.5 parent: 2 type: Transform - - uid: 21836 + - uid: 21878 components: - pos: -43.5,-87.5 parent: 2 type: Transform - proto: PottedPlant28 entities: - - uid: 21837 + - uid: 21879 components: - pos: 46.5,30.5 parent: 2 type: Transform - - uid: 21838 + - uid: 21880 components: - pos: -54.5,-47.5 parent: 2 type: Transform - proto: PottedPlant29 entities: - - uid: 21839 + - uid: 21881 components: - pos: 46.5,29.5 parent: 2 type: Transform - - uid: 21840 + - uid: 21882 components: - pos: -54.5,-50.5 parent: 2 type: Transform - - uid: 21841 + - uid: 21883 components: - pos: -40.5,-87.5 parent: 2 type: Transform - proto: PottedPlant3 entities: - - uid: 21842 + - uid: 21884 components: - pos: 14.5,-16.5 parent: 2 type: Transform - - uid: 21843 + - uid: 21885 components: - pos: 54.5,-1.5 parent: 2 type: Transform - proto: PottedPlant5 entities: - - uid: 21844 + - uid: 21886 components: - pos: -26.5,8.5 parent: 2 type: Transform - - uid: 21845 + - uid: 21887 components: - pos: 50.5,-1.5 parent: 2 type: Transform - proto: PottedPlant8 entities: - - uid: 21846 + - uid: 21888 components: - pos: -22.5,8.5 parent: 2 type: Transform - proto: PottedPlantBioluminscent entities: - - uid: 21847 + - uid: 21889 components: - pos: -27.5,17.5 parent: 2 type: Transform - proto: PottedPlantRandom entities: - - uid: 21848 + - uid: 21890 components: - pos: 20.5,18.5 parent: 2 type: Transform - - uid: 21849 + - uid: 21891 components: - pos: 1.5,-40.5 parent: 2 type: Transform - - uid: 21850 + - uid: 21892 components: - pos: 24.5,-81.5 parent: 2 type: Transform - - uid: 21851 + - uid: 21893 components: - pos: -44.5,8.5 parent: 2 type: Transform - - uid: 21852 + - uid: 21894 components: - pos: -49.5,8.5 parent: 2 type: Transform - - uid: 21853 + - uid: 21895 components: - pos: 23.5,-43.5 parent: 2 type: Transform - - uid: 21854 + - uid: 21896 components: - pos: 27.5,-43.5 parent: 2 type: Transform - - uid: 21855 + - uid: 21897 components: - pos: -23.5,-73.5 parent: 2 type: Transform - - uid: 21856 + - uid: 21898 components: - pos: -49.5,12.5 parent: 2 type: Transform - - uid: 21857 + - uid: 21899 components: - pos: -19.5,-73.5 parent: 2 type: Transform - - uid: 21858 + - uid: 21900 components: - pos: -2.5,46.5 parent: 2 type: Transform - - uid: 21859 + - uid: 21901 components: - pos: -14.5,42.5 parent: 2 type: Transform - - uid: 21860 + - uid: 21902 components: - pos: -6.5,46.5 parent: 2 type: Transform - - uid: 21861 + - uid: 21903 components: - pos: 24.5,-85.5 parent: 2 type: Transform - - uid: 21862 + - uid: 21904 components: - pos: 25.5,-74.5 parent: 2 type: Transform - - uid: 21863 + - uid: 21905 components: - pos: -20.5,-66.5 parent: 2 type: Transform - - uid: 21864 + - uid: 21906 components: - pos: -18.5,-66.5 parent: 2 type: Transform - proto: PottedPlantRandomPlastic entities: - - uid: 21865 + - uid: 21907 components: - pos: -6.5,-45.5 parent: 2 type: Transform - - uid: 21866 + - uid: 21908 components: - pos: -55.5,-58.5 parent: 2 type: Transform - - uid: 21867 + - uid: 21909 components: - pos: 54.5,31.5 parent: 2 type: Transform - - uid: 21868 + - uid: 21910 components: - pos: -12.5,-96.5 parent: 2 type: Transform - - uid: 21869 + - uid: 21911 components: - pos: -57.5,-60.5 parent: 2 type: Transform - proto: PowerCellRecharger entities: - - uid: 21870 + - uid: 21912 components: - pos: -10.5,-61.5 parent: 2 type: Transform - - uid: 21871 + - uid: 21913 components: - pos: -11.5,-61.5 parent: 2 type: Transform - - uid: 21872 + - uid: 21914 components: - pos: -26.5,-20.5 parent: 2 type: Transform - - uid: 21873 + - uid: 21915 components: - pos: 8.5,14.5 parent: 2 type: Transform - - uid: 21874 + - uid: 21916 components: - pos: -23.5,-8.5 parent: 2 type: Transform - - uid: 21875 + - uid: 21917 components: - pos: -35.5,-13.5 parent: 2 type: Transform - - uid: 21876 + - uid: 21918 components: - pos: -32.5,17.5 parent: 2 type: Transform - - uid: 21877 + - uid: 21919 components: - pos: -22.5,-33.5 parent: 2 type: Transform - - uid: 21878 + - uid: 21920 components: - pos: 38.5,-55.5 parent: 2 type: Transform - - uid: 21879 + - uid: 21921 components: - pos: -22.5,17.5 parent: 2 type: Transform - - uid: 21880 + - uid: 21922 components: - pos: 43.5,-40.5 parent: 2 type: Transform - proto: PowerDrill entities: - - uid: 21881 + - uid: 21923 components: - pos: 62.617344,-53.460384 parent: 2 type: Transform - - uid: 21882 + - uid: 21924 components: - pos: -52.61403,65.565544 parent: 2 type: Transform - proto: Poweredlight entities: - - uid: 21883 + - uid: 21925 components: - rot: 1.5707963267948966 rad pos: 20.5,-28.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 21884 + - uid: 21926 components: - rot: -1.5707963267948966 rad pos: 5.5,-5.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - links: - - 23910 + - 23960 type: DeviceLinkSink - - uid: 21885 + - uid: 21927 components: - rot: 3.141592653589793 rad pos: -35.5,-18.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 21886 + - uid: 21928 components: - pos: 62.5,-28.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 21887 + - uid: 21929 components: - rot: 3.141592653589793 rad pos: -61.5,-37.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 21888 + - uid: 21930 components: - pos: -44.5,-8.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 21889 + - uid: 21931 components: - rot: 3.141592653589793 rad pos: -5.5,14.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 21890 + - uid: 21932 components: - rot: -1.5707963267948966 rad pos: -22.5,-77.5 @@ -150973,7 +144308,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21891 + - uid: 21933 components: - rot: 1.5707963267948966 rad pos: -42.5,-9.5 @@ -150981,7 +144316,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21892 + - uid: 21934 components: - rot: -1.5707963267948966 rad pos: 48.5,-29.5 @@ -150989,7 +144324,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21893 + - uid: 21935 components: - rot: -1.5707963267948966 rad pos: 14.5,8.5 @@ -150997,7 +144332,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21894 + - uid: 21936 components: - rot: 3.141592653589793 rad pos: -10.5,-1.5 @@ -151005,7 +144340,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21895 + - uid: 21937 components: - rot: 3.141592653589793 rad pos: -2.5,-1.5 @@ -151013,14 +144348,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21896 + - uid: 21938 components: - pos: 4.5,-59.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21897 + - uid: 21939 components: - rot: 1.5707963267948966 rad pos: -5.5,-31.5 @@ -151028,7 +144363,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21898 + - uid: 21940 components: - rot: -1.5707963267948966 rad pos: 16.5,-22.5 @@ -151036,21 +144371,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21899 + - uid: 21941 components: - pos: 30.5,-47.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21900 + - uid: 21942 components: - pos: 40.5,-25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21901 + - uid: 21943 components: - rot: 1.5707963267948966 rad pos: 44.5,-23.5 @@ -151058,7 +144393,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21902 + - uid: 21944 components: - rot: 3.141592653589793 rad pos: -10.5,-61.5 @@ -151066,7 +144401,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21903 + - uid: 21945 components: - rot: 3.141592653589793 rad pos: -4.5,-61.5 @@ -151074,7 +144409,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21904 + - uid: 21946 components: - rot: 1.5707963267948966 rad pos: -20.5,-77.5 @@ -151082,7 +144417,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21905 + - uid: 21947 components: - rot: 3.141592653589793 rad pos: -9.5,-27.5 @@ -151090,7 +144425,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21906 + - uid: 21948 components: - rot: 3.141592653589793 rad pos: 12.5,-27.5 @@ -151098,21 +144433,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21907 + - uid: 21949 components: - pos: 21.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21908 + - uid: 21950 components: - pos: 29.5,-45.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21909 + - uid: 21951 components: - rot: -1.5707963267948966 rad pos: 42.5,8.5 @@ -151120,7 +144455,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21910 + - uid: 21952 components: - rot: 3.141592653589793 rad pos: 24.5,-2.5 @@ -151128,14 +144463,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21911 + - uid: 21953 components: - pos: 33.5,-45.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21912 + - uid: 21954 components: - rot: 3.141592653589793 rad pos: 2.5,-43.5 @@ -151143,7 +144478,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21913 + - uid: 21955 components: - rot: -1.5707963267948966 rad pos: 7.5,-46.5 @@ -151151,7 +144486,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21914 + - uid: 21956 components: - rot: -1.5707963267948966 rad pos: -27.5,-70.5 @@ -151159,7 +144494,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21915 + - uid: 21957 components: - rot: -1.5707963267948966 rad pos: 30.5,0.5 @@ -151167,14 +144502,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21916 + - uid: 21958 components: - pos: -23.5,-8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21917 + - uid: 21959 components: - rot: -1.5707963267948966 rad pos: 10.5,-60.5 @@ -151182,7 +144517,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21918 + - uid: 21960 components: - rot: 1.5707963267948966 rad pos: -5.5,-35.5 @@ -151190,7 +144525,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21919 + - uid: 21961 components: - rot: 3.141592653589793 rad pos: -8.5,44.5 @@ -151198,7 +144533,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21920 + - uid: 21962 components: - rot: -1.5707963267948966 rad pos: -0.5,62.5 @@ -151206,14 +144541,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21921 + - uid: 21963 components: - pos: 4.5,3.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21922 + - uid: 21964 components: - rot: 1.5707963267948966 rad pos: 44.5,-28.5 @@ -151221,7 +144556,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21923 + - uid: 21965 components: - rot: -1.5707963267948966 rad pos: 42.5,-25.5 @@ -151229,7 +144564,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21924 + - uid: 21966 components: - rot: -1.5707963267948966 rad pos: 32.5,-29.5 @@ -151237,7 +144572,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21925 + - uid: 21967 components: - rot: 1.5707963267948966 rad pos: 8.5,-9.5 @@ -151245,28 +144580,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21926 + - uid: 21968 components: - pos: -21.5,-84.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21927 + - uid: 21969 components: - pos: 12.5,3.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21928 + - uid: 21970 components: - pos: 29.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21929 + - uid: 21971 components: - rot: -1.5707963267948966 rad pos: -18.5,-9.5 @@ -151274,14 +144609,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21930 + - uid: 21972 components: - pos: 4.5,-56.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21931 + - uid: 21973 components: - rot: -1.5707963267948966 rad pos: 34.5,3.5 @@ -151291,7 +144626,7 @@ entities: type: PointLight - powerLoad: 0 type: ApcPowerReceiver - - uid: 21932 + - uid: 21974 components: - rot: 1.5707963267948966 rad pos: -35.5,-50.5 @@ -151299,7 +144634,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21933 + - uid: 21975 components: - rot: -1.5707963267948966 rad pos: 65.5,-2.5 @@ -151307,14 +144642,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21934 + - uid: 21976 components: - pos: 27.5,-16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21935 + - uid: 21977 components: - rot: 1.5707963267948966 rad pos: -3.5,-65.5 @@ -151322,7 +144657,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21936 + - uid: 21978 components: - rot: 1.5707963267948966 rad pos: -9.5,-64.5 @@ -151330,7 +144665,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21937 + - uid: 21979 components: - rot: -1.5707963267948966 rad pos: 0.5,-45.5 @@ -151338,7 +144673,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21938 + - uid: 21980 components: - rot: 1.5707963267948966 rad pos: -9.5,-48.5 @@ -151346,14 +144681,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21939 + - uid: 21981 components: - pos: -23.5,-69.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21940 + - uid: 21982 components: - rot: 3.141592653589793 rad pos: -22.5,-73.5 @@ -151361,14 +144696,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21941 + - uid: 21983 components: - pos: 16.5,-16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21942 + - uid: 21984 components: - rot: 1.5707963267948966 rad pos: -5.5,-11.5 @@ -151376,7 +144711,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21943 + - uid: 21985 components: - rot: -1.5707963267948966 rad pos: 48.5,-22.5 @@ -151384,14 +144719,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21944 + - uid: 21986 components: - pos: 24.5,4.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21945 + - uid: 21987 components: - rot: 1.5707963267948966 rad pos: 10.5,11.5 @@ -151399,14 +144734,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21946 + - uid: 21988 components: - pos: 16.5,14.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21947 + - uid: 21989 components: - rot: 1.5707963267948966 rad pos: -12.5,-37.5 @@ -151414,14 +144749,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21948 + - uid: 21990 components: - pos: -8.5,-35.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21949 + - uid: 21991 components: - rot: 1.5707963267948966 rad pos: -10.5,8.5 @@ -151429,14 +144764,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21950 + - uid: 21992 components: - pos: 6.5,22.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21951 + - uid: 21993 components: - rot: 1.5707963267948966 rad pos: 24.5,-47.5 @@ -151444,14 +144779,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21952 + - uid: 21994 components: - pos: 13.5,17.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21953 + - uid: 21995 components: - rot: 1.5707963267948966 rad pos: 14.5,21.5 @@ -151459,14 +144794,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21954 + - uid: 21996 components: - pos: 44.5,8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21955 + - uid: 21997 components: - rot: 3.141592653589793 rad pos: 47.5,4.5 @@ -151474,28 +144809,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21956 + - uid: 21998 components: - pos: 44.5,2.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21957 + - uid: 21999 components: - pos: -4.5,3.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21958 - components: - - pos: 11.5,22.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 21959 + - uid: 22000 components: - rot: -1.5707963267948966 rad pos: -3.5,-6.5 @@ -151503,7 +144831,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21960 + - uid: 22001 components: - rot: 3.141592653589793 rad pos: -2.5,-27.5 @@ -151511,7 +144839,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21961 + - uid: 22002 components: - rot: 1.5707963267948966 rad pos: -5.5,-18.5 @@ -151519,14 +144847,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21962 + - uid: 22003 components: - pos: -9.5,-21.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21963 + - uid: 22004 components: - rot: 1.5707963267948966 rad pos: -13.5,-22.5 @@ -151534,7 +144862,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21964 + - uid: 22005 components: - rot: -1.5707963267948966 rad pos: 39.5,-2.5 @@ -151542,7 +144870,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21965 + - uid: 22006 components: - rot: 3.141592653589793 rad pos: 36.5,-6.5 @@ -151550,7 +144878,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21966 + - uid: 22007 components: - rot: 1.5707963267948966 rad pos: 26.5,31.5 @@ -151558,7 +144886,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21967 + - uid: 22008 components: - rot: 3.141592653589793 rad pos: 29.5,27.5 @@ -151566,7 +144894,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21968 + - uid: 22009 components: - rot: -1.5707963267948966 rad pos: 30.5,20.5 @@ -151574,7 +144902,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21969 + - uid: 22010 components: - rot: 1.5707963267948966 rad pos: 28.5,14.5 @@ -151582,35 +144910,35 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21970 + - uid: 22011 components: - pos: 33.5,16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21971 + - uid: 22012 components: - pos: 39.5,16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21972 + - uid: 22013 components: - pos: 55.5,9.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21973 + - uid: 22014 components: - pos: 51.5,9.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21974 + - uid: 22015 components: - rot: 3.141592653589793 rad pos: 55.5,15.5 @@ -151618,7 +144946,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21975 + - uid: 22016 components: - rot: 3.141592653589793 rad pos: 51.5,15.5 @@ -151626,7 +144954,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21976 + - uid: 22017 components: - rot: 3.141592653589793 rad pos: 48.5,12.5 @@ -151634,7 +144962,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21977 + - uid: 22018 components: - rot: 3.141592653589793 rad pos: 58.5,12.5 @@ -151642,7 +144970,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21978 + - uid: 22019 components: - rot: -1.5707963267948966 rad pos: 59.5,20.5 @@ -151650,7 +144978,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21979 + - uid: 22020 components: - rot: 3.141592653589793 rad pos: 59.5,4.5 @@ -151658,7 +144986,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21980 + - uid: 22021 components: - rot: 3.141592653589793 rad pos: 48.5,18.5 @@ -151666,7 +144994,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21981 + - uid: 22022 components: - rot: 1.5707963267948966 rad pos: 32.5,-3.5 @@ -151674,7 +145002,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21982 + - uid: 22023 components: - rot: 3.141592653589793 rad pos: 24.5,6.5 @@ -151682,7 +145010,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21983 + - uid: 22024 components: - rot: 3.141592653589793 rad pos: 29.5,6.5 @@ -151690,7 +145018,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21984 + - uid: 22025 components: - rot: 1.5707963267948966 rad pos: 24.5,-13.5 @@ -151698,7 +145026,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21985 + - uid: 22026 components: - rot: 3.141592653589793 rad pos: 21.5,-6.5 @@ -151706,7 +145034,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21986 + - uid: 22027 components: - rot: -1.5707963267948966 rad pos: 26.5,-9.5 @@ -151714,7 +145042,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21987 + - uid: 22028 components: - rot: 3.141592653589793 rad pos: 57.5,-6.5 @@ -151722,14 +145050,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21988 + - uid: 22029 components: - pos: 57.5,-10.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21989 + - uid: 22030 components: - rot: -1.5707963267948966 rad pos: 54.5,-8.5 @@ -151737,7 +145065,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21990 + - uid: 22031 components: - rot: 1.5707963267948966 rad pos: 59.5,-1.5 @@ -151745,7 +145073,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21991 + - uid: 22032 components: - rot: 3.141592653589793 rad pos: 57.5,-14.5 @@ -151753,7 +145081,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21992 + - uid: 22033 components: - rot: 3.141592653589793 rad pos: 33.5,-60.5 @@ -151761,7 +145089,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21993 + - uid: 22034 components: - rot: 3.141592653589793 rad pos: 45.5,-43.5 @@ -151769,14 +145097,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21994 + - uid: 22035 components: - pos: 72.5,-43.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21995 + - uid: 22036 components: - rot: 3.141592653589793 rad pos: 67.5,-49.5 @@ -151784,7 +145112,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21996 + - uid: 22037 components: - rot: 3.141592653589793 rad pos: 60.5,-49.5 @@ -151792,30 +145120,13 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21997 + - uid: 22038 components: - rot: 3.141592653589793 rad pos: 57.5,-45.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 21998 - components: - - pos: 56.5,-41.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 21999 - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-42.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 22000 + - uid: 22039 components: - rot: 1.5707963267948966 rad pos: 48.5,-38.5 @@ -151823,7 +145134,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22001 + - uid: 22040 components: - rot: 1.5707963267948966 rad pos: 48.5,-47.5 @@ -151831,21 +145142,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22002 + - uid: 22041 components: - pos: 39.5,-35.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22003 + - uid: 22042 components: - pos: 44.5,-35.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22004 + - uid: 22043 components: - rot: 3.141592653589793 rad pos: 10.5,-43.5 @@ -151853,7 +145164,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22005 + - uid: 22044 components: - rot: 3.141592653589793 rad pos: 35.5,-43.5 @@ -151861,7 +145172,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22006 + - uid: 22045 components: - rot: 3.141592653589793 rad pos: 28.5,-6.5 @@ -151869,7 +145180,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22007 + - uid: 22046 components: - rot: 3.141592653589793 rad pos: 16.5,-43.5 @@ -151877,21 +145188,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22008 + - uid: 22047 components: - pos: 33.5,-39.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22009 + - uid: 22048 components: - pos: 45.5,-45.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22010 + - uid: 22049 components: - rot: 3.141592653589793 rad pos: 42.5,-49.5 @@ -151899,7 +145210,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22011 + - uid: 22050 components: - rot: 3.141592653589793 rad pos: 65.5,-35.5 @@ -151907,7 +145218,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22012 + - uid: 22051 components: - rot: -1.5707963267948966 rad pos: 64.5,-53.5 @@ -151915,14 +145226,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22013 + - uid: 22052 components: - pos: 32.5,-47.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22014 + - uid: 22053 components: - rot: -1.5707963267948966 rad pos: 34.5,-51.5 @@ -151930,7 +145241,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22015 + - uid: 22054 components: - rot: 1.5707963267948966 rad pos: 28.5,-50.5 @@ -151938,7 +145249,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22016 + - uid: 22055 components: - rot: -1.5707963267948966 rad pos: 34.5,-55.5 @@ -151946,7 +145257,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22017 + - uid: 22056 components: - rot: 1.5707963267948966 rad pos: 28.5,-56.5 @@ -151954,7 +145265,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22018 + - uid: 22057 components: - rot: 1.5707963267948966 rad pos: 24.5,-52.5 @@ -151962,7 +145273,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22019 + - uid: 22058 components: - rot: -1.5707963267948966 rad pos: 26.5,-56.5 @@ -151970,21 +145281,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22020 + - uid: 22059 components: - pos: 28.5,-58.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22021 + - uid: 22060 components: - pos: -15.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22022 + - uid: 22061 components: - rot: 3.141592653589793 rad pos: 37.5,-60.5 @@ -151992,15 +145303,13 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22023 + - uid: 22062 components: - rot: 3.141592653589793 rad pos: -27.5,-17.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 22024 + - uid: 22063 components: - rot: -1.5707963267948966 rad pos: 16.5,-31.5 @@ -152008,7 +145317,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22025 + - uid: 22064 components: - rot: 1.5707963267948966 rad pos: -20.5,-15.5 @@ -152016,7 +145325,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22026 + - uid: 22065 components: - rot: 1.5707963267948966 rad pos: -20.5,-19.5 @@ -152024,7 +145333,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22027 + - uid: 22066 components: - rot: 1.5707963267948966 rad pos: -26.5,-21.5 @@ -152032,14 +145341,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22028 + - uid: 22067 components: - pos: -30.5,-16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22029 + - uid: 22068 components: - rot: 3.141592653589793 rad pos: -28.5,-14.5 @@ -152047,7 +145356,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22030 + - uid: 22069 components: - rot: 1.5707963267948966 rad pos: -39.5,-8.5 @@ -152055,7 +145364,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22031 + - uid: 22070 components: - rot: 1.5707963267948966 rad pos: 38.5,-54.5 @@ -152063,14 +145372,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22032 + - uid: 22071 components: - pos: 56.5,-58.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22033 + - uid: 22072 components: - rot: -1.5707963267948966 rad pos: 51.5,-56.5 @@ -152078,14 +145387,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22034 + - uid: 22073 components: - pos: 45.5,-56.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22035 + - uid: 22074 components: - rot: -1.5707963267948966 rad pos: 52.5,-50.5 @@ -152093,7 +145402,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22036 + - uid: 22075 components: - rot: 1.5707963267948966 rad pos: 48.5,-61.5 @@ -152101,7 +145410,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22037 + - uid: 22076 components: - rot: -1.5707963267948966 rad pos: 12.5,-5.5 @@ -152109,7 +145418,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22038 + - uid: 22077 components: - rot: -1.5707963267948966 rad pos: 49.5,-86.5 @@ -152117,7 +145426,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22039 + - uid: 22078 components: - rot: 1.5707963267948966 rad pos: 24.5,-84.5 @@ -152125,7 +145434,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22040 + - uid: 22079 components: - rot: -1.5707963267948966 rad pos: 49.5,-91.5 @@ -152133,21 +145442,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22041 + - uid: 22080 components: - pos: 41.5,-70.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22042 + - uid: 22081 components: - pos: 37.5,-70.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22043 + - uid: 22082 components: - rot: 1.5707963267948966 rad pos: 38.5,-61.5 @@ -152155,7 +145464,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22044 + - uid: 22083 components: - rot: 3.141592653589793 rad pos: -35.5,-13.5 @@ -152163,21 +145472,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22045 + - uid: 22084 components: - pos: -35.5,-5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22046 + - uid: 22085 components: - pos: -16.5,-25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22047 + - uid: 22086 components: - rot: 1.5707963267948966 rad pos: -20.5,-29.5 @@ -152185,7 +145494,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22048 + - uid: 22087 components: - rot: 1.5707963267948966 rad pos: -20.5,-37.5 @@ -152193,7 +145502,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22049 + - uid: 22088 components: - rot: 1.5707963267948966 rad pos: -20.5,-41.5 @@ -152201,7 +145510,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22050 + - uid: 22089 components: - rot: -1.5707963267948966 rad pos: 44.5,-3.5 @@ -152209,7 +145518,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22051 + - uid: 22090 components: - rot: -1.5707963267948966 rad pos: -6.5,11.5 @@ -152217,36 +145526,34 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22052 + - uid: 22091 components: - pos: -41.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22053 + - uid: 22092 components: - pos: -36.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22054 + - uid: 22093 components: - pos: -36.5,-53.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22055 + - uid: 22094 components: - rot: 3.141592653589793 rad pos: -43.5,-57.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 22056 + - uid: 22095 components: - rot: 1.5707963267948966 rad pos: -46.5,-43.5 @@ -152254,7 +145561,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22057 + - uid: 22096 components: - rot: 1.5707963267948966 rad pos: -46.5,-45.5 @@ -152262,7 +145569,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22058 + - uid: 22097 components: - rot: 1.5707963267948966 rad pos: -46.5,-47.5 @@ -152270,7 +145577,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22059 + - uid: 22098 components: - rot: 1.5707963267948966 rad pos: -46.5,-49.5 @@ -152278,7 +145585,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22060 + - uid: 22099 components: - rot: 1.5707963267948966 rad pos: -46.5,-51.5 @@ -152286,7 +145593,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22061 + - uid: 22100 components: - rot: 1.5707963267948966 rad pos: -46.5,-53.5 @@ -152294,7 +145601,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22062 + - uid: 22101 components: - rot: 1.5707963267948966 rad pos: -46.5,-55.5 @@ -152302,7 +145609,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22063 + - uid: 22102 components: - rot: -1.5707963267948966 rad pos: -31.5,-39.5 @@ -152310,14 +145617,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22064 + - uid: 22103 components: - pos: -27.5,-33.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22065 + - uid: 22104 components: - rot: -1.5707963267948966 rad pos: -22.5,-33.5 @@ -152325,7 +145632,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22066 + - uid: 22105 components: - rot: 3.141592653589793 rad pos: -33.5,-35.5 @@ -152333,7 +145640,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22067 + - uid: 22106 components: - rot: 3.141592653589793 rad pos: -39.5,-36.5 @@ -152341,7 +145648,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22068 + - uid: 22107 components: - rot: -1.5707963267948966 rad pos: -33.5,-47.5 @@ -152349,7 +145656,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22069 + - uid: 22108 components: - rot: -1.5707963267948966 rad pos: -54.5,-48.5 @@ -152357,7 +145664,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22070 + - uid: 22109 components: - rot: -1.5707963267948966 rad pos: 18.5,5.5 @@ -152365,7 +145672,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22071 + - uid: 22110 components: - rot: 1.5707963267948966 rad pos: 16.5,1.5 @@ -152373,7 +145680,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22072 + - uid: 22111 components: - rot: -1.5707963267948966 rad pos: -12.5,5.5 @@ -152381,14 +145688,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22073 + - uid: 22112 components: - pos: -18.5,-4.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22074 + - uid: 22113 components: - rot: 3.141592653589793 rad pos: -14.5,-6.5 @@ -152396,7 +145703,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22075 + - uid: 22114 components: - rot: 3.141592653589793 rad pos: -19.5,6.5 @@ -152404,7 +145711,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22076 + - uid: 22115 components: - rot: 1.5707963267948966 rad pos: -26.5,5.5 @@ -152412,7 +145719,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22077 + - uid: 22116 components: - rot: 1.5707963267948966 rad pos: -26.5,-1.5 @@ -152420,29 +145727,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22078 + - uid: 22117 components: - pos: -72.5,-23.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22079 + - uid: 22118 components: - pos: -66.5,-30.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22080 - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-24.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 22081 + - uid: 22119 components: - rot: 1.5707963267948966 rad pos: -68.5,-25.5 @@ -152450,7 +145749,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22082 + - uid: 22120 components: - rot: -1.5707963267948966 rad pos: -52.5,-14.5 @@ -152458,7 +145757,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22083 + - uid: 22121 components: - rot: 1.5707963267948966 rad pos: -55.5,-8.5 @@ -152466,29 +145765,27 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22084 + - uid: 22122 components: - pos: -51.5,-5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22085 + - uid: 22123 components: - rot: -1.5707963267948966 rad pos: -50.5,-18.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 22086 + - uid: 22124 components: - pos: -46.5,-19.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22087 + - uid: 22125 components: - rot: 1.5707963267948966 rad pos: -42.5,-21.5 @@ -152496,7 +145793,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22088 + - uid: 22126 components: - rot: 1.5707963267948966 rad pos: -48.5,-11.5 @@ -152504,7 +145801,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22089 + - uid: 22127 components: - rot: 1.5707963267948966 rad pos: -48.5,-15.5 @@ -152512,14 +145809,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22090 + - uid: 22128 components: - pos: -45.5,-5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22091 + - uid: 22129 components: - rot: -1.5707963267948966 rad pos: -31.5,-13.5 @@ -152527,7 +145824,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22092 + - uid: 22130 components: - rot: 1.5707963267948966 rad pos: -32.5,-24.5 @@ -152535,7 +145832,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22093 + - uid: 22131 components: - rot: -1.5707963267948966 rad pos: 2.5,13.5 @@ -152543,7 +145840,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22094 + - uid: 22132 components: - rot: -1.5707963267948966 rad pos: -2.5,11.5 @@ -152551,14 +145848,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22095 + - uid: 22133 components: - pos: -4.5,8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22096 + - uid: 22134 components: - rot: 3.141592653589793 rad pos: 3.5,5.5 @@ -152566,7 +145863,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22097 + - uid: 22135 components: - rot: -1.5707963267948966 rad pos: 6.5,10.5 @@ -152574,29 +145871,27 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22098 + - uid: 22136 components: - rot: 1.5707963267948966 rad pos: -1.5,18.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 22099 + - uid: 22137 components: - pos: 1.5,21.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22100 + - uid: 22138 components: - pos: -42.5,1.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22101 + - uid: 22139 components: - rot: -1.5707963267948966 rad pos: 8.5,15.5 @@ -152604,7 +145899,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22102 + - uid: 22140 components: - rot: 3.141592653589793 rad pos: 23.5,16.5 @@ -152612,21 +145907,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22103 + - uid: 22141 components: - pos: 25.5,23.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22104 + - uid: 22142 components: - pos: 38.5,2.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22105 + - uid: 22143 components: - rot: 3.141592653589793 rad pos: 49.5,0.5 @@ -152634,7 +145929,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22106 + - uid: 22144 components: - rot: -1.5707963267948966 rad pos: 54.5,0.5 @@ -152642,7 +145937,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22107 + - uid: 22145 components: - rot: 3.141592653589793 rad pos: -23.5,17.5 @@ -152650,7 +145945,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22108 + - uid: 22146 components: - rot: 3.141592653589793 rad pos: -50.5,29.5 @@ -152658,14 +145953,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22109 + - uid: 22147 components: - pos: -22.5,25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22110 + - uid: 22148 components: - rot: -1.5707963267948966 rad pos: -18.5,15.5 @@ -152673,7 +145968,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22111 + - uid: 22149 components: - rot: -1.5707963267948966 rad pos: -18.5,22.5 @@ -152681,14 +145976,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22112 + - uid: 22150 components: - pos: -27.5,23.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22113 + - uid: 22151 components: - rot: 1.5707963267948966 rad pos: -34.5,23.5 @@ -152696,7 +145991,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22114 + - uid: 22152 components: - rot: 3.141592653589793 rad pos: -29.5,17.5 @@ -152704,7 +145999,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22115 + - uid: 22153 components: - rot: -1.5707963267948966 rad pos: -30.5,30.5 @@ -152712,7 +146007,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22116 + - uid: 22154 components: - rot: 3.141592653589793 rad pos: -39.5,18.5 @@ -152720,7 +146015,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22117 + - uid: 22155 components: - rot: -1.5707963267948966 rad pos: -36.5,23.5 @@ -152728,14 +146023,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22118 + - uid: 22156 components: - pos: -43.5,25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22119 + - uid: 22157 components: - rot: 1.5707963267948966 rad pos: -48.5,21.5 @@ -152743,7 +146038,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22120 + - uid: 22158 components: - rot: 1.5707963267948966 rad pos: -48.5,26.5 @@ -152751,7 +146046,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22121 + - uid: 22159 components: - rot: -1.5707963267948966 rad pos: -36.5,30.5 @@ -152759,7 +146054,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22122 + - uid: 22160 components: - rot: 3.141592653589793 rad pos: -47.5,28.5 @@ -152767,14 +146062,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22123 + - uid: 22161 components: - pos: -47.5,36.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22124 + - uid: 22162 components: - rot: 1.5707963267948966 rad pos: -48.5,32.5 @@ -152782,7 +146077,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22125 + - uid: 22163 components: - rot: 3.141592653589793 rad pos: -51.5,19.5 @@ -152790,21 +146085,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22126 + - uid: 22164 components: - pos: -7.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22127 + - uid: 22165 components: - pos: -1.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22128 + - uid: 22166 components: - rot: -1.5707963267948966 rad pos: -11.5,-47.5 @@ -152812,7 +146107,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22129 + - uid: 22167 components: - rot: 3.141592653589793 rad pos: 1.5,-54.5 @@ -152820,14 +146115,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22130 + - uid: 22168 components: - pos: -3.5,-52.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22131 + - uid: 22169 components: - rot: 3.141592653589793 rad pos: -7.5,-54.5 @@ -152835,14 +146130,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22132 + - uid: 22170 components: - pos: -11.5,-52.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22133 + - uid: 22171 components: - rot: 1.5707963267948966 rad pos: -15.5,-53.5 @@ -152850,21 +146145,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22134 + - uid: 22172 components: - pos: -17.5,-54.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22135 + - uid: 22173 components: - pos: -17.5,-59.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22136 + - uid: 22174 components: - rot: -1.5707963267948966 rad pos: -22.5,11.5 @@ -152872,14 +146167,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22137 + - uid: 22175 components: - pos: -26.5,15.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22138 + - uid: 22176 components: - rot: -1.5707963267948966 rad pos: 26.5,11.5 @@ -152887,7 +146182,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22139 + - uid: 22177 components: - rot: 1.5707963267948966 rad pos: -48.5,16.5 @@ -152895,14 +146190,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22140 + - uid: 22178 components: - pos: -47.5,8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22141 + - uid: 22179 components: - rot: 3.141592653589793 rad pos: -46.5,-0.5 @@ -152910,21 +146205,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22142 + - uid: 22180 components: - pos: 8.5,-25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22143 + - uid: 22181 components: - pos: 1.5,-25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22144 + - uid: 22182 components: - rot: -1.5707963267948966 rad pos: 36.5,-34.5 @@ -152932,7 +146227,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22145 + - uid: 22183 components: - rot: 1.5707963267948966 rad pos: 34.5,-29.5 @@ -152940,7 +146235,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22146 + - uid: 22184 components: - rot: -1.5707963267948966 rad pos: 36.5,-24.5 @@ -152948,28 +146243,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22147 + - uid: 22185 components: - pos: 21.5,-21.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22148 + - uid: 22186 components: - pos: 29.5,-21.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22149 + - uid: 22187 components: - pos: -29.5,1.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22150 + - uid: 22188 components: - rot: 3.141592653589793 rad pos: -38.5,-0.5 @@ -152977,7 +146272,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22151 + - uid: 22189 components: - rot: 3.141592653589793 rad pos: -51.5,10.5 @@ -152985,7 +146280,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22152 + - uid: 22190 components: - rot: 1.5707963267948966 rad pos: 19.5,-46.5 @@ -152993,14 +146288,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22153 + - uid: 22191 components: - pos: 32.5,19.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22154 + - uid: 22192 components: - rot: -1.5707963267948966 rad pos: 13.5,-11.5 @@ -153008,7 +146303,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22155 + - uid: 22193 components: - rot: 3.141592653589793 rad pos: 3.5,-65.5 @@ -153016,7 +146311,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22156 + - uid: 22194 components: - rot: 1.5707963267948966 rad pos: 38.5,19.5 @@ -153024,14 +146319,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22157 + - uid: 22195 components: - pos: 64.5,-43.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22158 + - uid: 22196 components: - rot: 3.141592653589793 rad pos: -24.5,-6.5 @@ -153039,7 +146334,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22159 + - uid: 22197 components: - rot: 1.5707963267948966 rad pos: -26.5,-60.5 @@ -153047,14 +146342,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22160 + - uid: 22198 components: - pos: -23.5,-57.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22161 + - uid: 22199 components: - rot: 1.5707963267948966 rad pos: -31.5,-73.5 @@ -153062,7 +146357,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22162 + - uid: 22200 components: - rot: -1.5707963267948966 rad pos: 18.5,9.5 @@ -153070,7 +146365,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22163 + - uid: 22201 components: - rot: 3.141592653589793 rad pos: -18.5,65.5 @@ -153078,14 +146373,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22164 + - uid: 22202 components: - pos: -21.5,45.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22165 + - uid: 22203 components: - rot: 1.5707963267948966 rad pos: -16.5,32.5 @@ -153093,7 +146388,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22166 + - uid: 22204 components: - rot: -1.5707963267948966 rad pos: -14.5,40.5 @@ -153101,7 +146396,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22167 + - uid: 22205 components: - rot: 1.5707963267948966 rad pos: -18.5,46.5 @@ -153109,7 +146404,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22168 + - uid: 22206 components: - rot: 1.5707963267948966 rad pos: -20.5,28.5 @@ -153117,7 +146412,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22169 + - uid: 22207 components: - rot: -1.5707963267948966 rad pos: -2.5,52.5 @@ -153125,7 +146420,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22170 + - uid: 22208 components: - rot: 1.5707963267948966 rad pos: -10.5,55.5 @@ -153133,7 +146428,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22171 + - uid: 22209 components: - rot: 1.5707963267948966 rad pos: -10.5,49.5 @@ -153141,7 +146436,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22172 + - uid: 22210 components: - rot: -1.5707963267948966 rad pos: -40.5,32.5 @@ -153149,14 +146444,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22173 + - uid: 22211 components: - pos: -1.5,46.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22174 + - uid: 22212 components: - rot: 1.5707963267948966 rad pos: -0.5,51.5 @@ -153164,7 +146459,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22175 + - uid: 22213 components: - rot: 1.5707963267948966 rad pos: -0.5,57.5 @@ -153172,21 +146467,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22176 + - uid: 22214 components: - pos: -6.5,59.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22177 + - uid: 22215 components: - pos: -19.5,51.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22178 + - uid: 22216 components: - rot: 1.5707963267948966 rad pos: -22.5,55.5 @@ -153194,7 +146489,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22179 + - uid: 22217 components: - rot: 1.5707963267948966 rad pos: -22.5,66.5 @@ -153202,7 +146497,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22180 + - uid: 22218 components: - rot: -1.5707963267948966 rad pos: -12.5,66.5 @@ -153210,7 +146505,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22181 + - uid: 22219 components: - rot: 1.5707963267948966 rad pos: -13.5,60.5 @@ -153218,7 +146513,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22182 + - uid: 22220 components: - rot: -1.5707963267948966 rad pos: -12.5,54.5 @@ -153226,7 +146521,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22183 + - uid: 22221 components: - rot: 3.141592653589793 rad pos: 28.5,44.5 @@ -153234,7 +146529,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22184 + - uid: 22222 components: - rot: 3.141592653589793 rad pos: -44.5,-85.5 @@ -153242,7 +146537,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22185 + - uid: 22223 components: - rot: -1.5707963267948966 rad pos: -35.5,-95.5 @@ -153250,7 +146545,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22186 + - uid: 22224 components: - rot: 3.141592653589793 rad pos: -71.5,-32.5 @@ -153258,7 +146553,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22187 + - uid: 22225 components: - rot: -1.5707963267948966 rad pos: 18.5,-2.5 @@ -153266,7 +146561,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22188 + - uid: 22226 components: - rot: 1.5707963267948966 rad pos: 60.5,-8.5 @@ -153274,7 +146569,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22189 + - uid: 22227 components: - rot: 1.5707963267948966 rad pos: 57.5,-33.5 @@ -153282,7 +146577,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22190 + - uid: 22228 components: - rot: -1.5707963267948966 rad pos: 75.5,-35.5 @@ -153290,7 +146585,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22191 + - uid: 22229 components: - rot: -1.5707963267948966 rad pos: -5.5,-65.5 @@ -153298,7 +146593,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22192 + - uid: 22230 components: - rot: -1.5707963267948966 rad pos: -15.5,-21.5 @@ -153306,14 +146601,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22193 + - uid: 22231 components: - pos: 67.5,-36.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22194 + - uid: 22232 components: - rot: 1.5707963267948966 rad pos: 60.5,-31.5 @@ -153321,14 +146616,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22195 + - uid: 22233 components: - pos: -62.5,-23.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22196 + - uid: 22234 components: - rot: -1.5707963267948966 rad pos: 73.5,-28.5 @@ -153336,7 +146631,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22197 + - uid: 22235 components: - rot: -1.5707963267948966 rad pos: -53.5,-59.5 @@ -153344,7 +146639,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22198 + - uid: 22236 components: - rot: 1.5707963267948966 rad pos: 71.5,-31.5 @@ -153352,7 +146647,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22199 + - uid: 22237 components: - rot: 3.141592653589793 rad pos: 4.5,-35.5 @@ -153360,7 +146655,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22200 + - uid: 22238 components: - rot: -1.5707963267948966 rad pos: 32.5,28.5 @@ -153368,21 +146663,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22201 + - uid: 22239 components: - pos: 58.5,-28.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22202 + - uid: 22240 components: - pos: 34.5,-16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22203 + - uid: 22241 components: - rot: -1.5707963267948966 rad pos: 6.5,-30.5 @@ -153390,14 +146685,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22204 + - uid: 22242 components: - pos: 55.5,-47.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22205 + - uid: 22243 components: - rot: -1.5707963267948966 rad pos: -43.5,4.5 @@ -153405,7 +146700,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22206 + - uid: 22244 components: - rot: -1.5707963267948966 rad pos: 76.5,-49.5 @@ -153413,7 +146708,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22207 + - uid: 22245 components: - rot: -1.5707963267948966 rad pos: -60.5,-28.5 @@ -153421,14 +146716,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22208 + - uid: 22246 components: - pos: -50.5,35.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22209 + - uid: 22247 components: - rot: -1.5707963267948966 rad pos: -14.5,25.5 @@ -153436,7 +146731,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22210 + - uid: 22248 components: - rot: 1.5707963267948966 rad pos: -0.5,6.5 @@ -153444,7 +146739,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22211 + - uid: 22249 components: - rot: 3.141592653589793 rad pos: 25.5,-25.5 @@ -153452,14 +146747,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22212 + - uid: 22250 components: - pos: -21.5,8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22213 + - uid: 22251 components: - rot: 3.141592653589793 rad pos: -33.5,-0.5 @@ -153467,14 +146762,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22214 + - uid: 22252 components: - pos: -51.5,23.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22215 + - uid: 22253 components: - rot: -1.5707963267948966 rad pos: -44.5,15.5 @@ -153482,7 +146777,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22216 + - uid: 22254 components: - rot: -1.5707963267948966 rad pos: -10.5,-18.5 @@ -153490,7 +146785,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22217 + - uid: 22255 components: - rot: 1.5707963267948966 rad pos: -25.5,-15.5 @@ -153498,7 +146793,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22218 + - uid: 22256 components: - rot: 1.5707963267948966 rad pos: -14.5,-0.5 @@ -153506,7 +146801,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22219 + - uid: 22257 components: - rot: -1.5707963267948966 rad pos: -45.5,10.5 @@ -153514,7 +146809,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22220 + - uid: 22258 components: - rot: 1.5707963267948966 rad pos: 2.5,-49.5 @@ -153522,7 +146817,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22221 + - uid: 22259 components: - rot: -1.5707963267948966 rad pos: 32.5,-21.5 @@ -153530,7 +146825,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22222 + - uid: 22260 components: - rot: 1.5707963267948966 rad pos: 18.5,-21.5 @@ -153538,7 +146833,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22223 + - uid: 22261 components: - rot: 1.5707963267948966 rad pos: -0.5,9.5 @@ -153546,7 +146841,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22224 + - uid: 22262 components: - rot: -1.5707963267948966 rad pos: 6.5,5.5 @@ -153554,7 +146849,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22225 + - uid: 22263 components: - rot: 3.141592653589793 rad pos: 9.5,-1.5 @@ -153562,7 +146857,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22226 + - uid: 22264 components: - rot: 1.5707963267948966 rad pos: -50.5,-38.5 @@ -153570,21 +146865,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22227 + - uid: 22265 components: - pos: -49.5,-34.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22228 + - uid: 22266 components: - pos: 28.5,-80.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22229 + - uid: 22267 components: - rot: -1.5707963267948966 rad pos: 31.5,-88.5 @@ -153592,7 +146887,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22230 + - uid: 22268 components: - rot: -1.5707963267948966 rad pos: 49.5,-80.5 @@ -153600,14 +146895,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22231 + - uid: 22269 components: - pos: 48.5,-71.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22232 + - uid: 22270 components: - rot: -1.5707963267948966 rad pos: 19.5,-82.5 @@ -153615,7 +146910,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22233 + - uid: 22271 components: - rot: 3.141592653589793 rad pos: 12.5,-86.5 @@ -153623,7 +146918,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22234 + - uid: 22272 components: - rot: 1.5707963267948966 rad pos: 22.5,-72.5 @@ -153631,14 +146926,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22235 + - uid: 22273 components: - pos: 29.5,-71.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22236 + - uid: 22274 components: - rot: -1.5707963267948966 rad pos: 40.5,-66.5 @@ -153646,21 +146941,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22237 + - uid: 22275 components: - pos: 24.5,-69.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22238 + - uid: 22276 components: - pos: 15.5,-79.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22239 + - uid: 22277 components: - rot: 1.5707963267948966 rad pos: 37.5,11.5 @@ -153668,7 +146963,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22240 + - uid: 22278 components: - rot: 3.141592653589793 rad pos: 28.5,-2.5 @@ -153676,214 +146971,191 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22241 + - uid: 22279 components: - rot: -1.5707963267948966 rad pos: -38.5,-47.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 22242 + - uid: 22280 components: - rot: 1.5707963267948966 rad pos: -44.5,-41.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 22243 + - uid: 22281 components: - rot: 1.5707963267948966 rad pos: 20.5,22.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 22244 + - uid: 22282 components: - rot: -1.5707963267948966 rad pos: -45.5,41.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 22245 + - uid: 22283 components: - rot: 1.5707963267948966 rad pos: -50.5,44.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 22246 + - uid: 22284 components: - rot: 3.141592653589793 rad pos: 67.5,-31.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 22247 + - uid: 22285 components: - rot: 1.5707963267948966 rad pos: 65.5,-29.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 22248 + - uid: 22286 components: - rot: -1.5707963267948966 rad pos: -3.5,17.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 22249 + - uid: 22287 components: - rot: 1.5707963267948966 rad pos: -8.5,17.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 22250 + - uid: 22288 components: - rot: 3.141592653589793 rad pos: -44.5,-17.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 22251 + - uid: 22289 components: - pos: 77.5,-43.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 22252 + - uid: 22290 components: - pos: -71.5,-37.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 22253 + - uid: 22291 components: - rot: 3.141592653589793 rad pos: -65.5,-46.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 22254 + - uid: 22292 components: - rot: 3.141592653589793 rad pos: -71.5,-46.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 22255 + - uid: 22293 components: - pos: -65.5,-36.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 22256 + - uid: 22294 components: - rot: 3.141592653589793 rad pos: -66.5,-34.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 22257 + - uid: 22295 components: - rot: -1.5707963267948966 rad pos: -30.5,-32.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 22258 + - uid: 22296 components: - pos: -35.5,-15.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 22259 + - uid: 22297 components: - rot: 1.5707963267948966 rad pos: -1.5,-4.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 22260 + - uid: 22298 components: - rot: 1.5707963267948966 rad pos: 1.5,-7.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - links: - - 23910 + - 23960 type: DeviceLinkSink - - uid: 22261 + - uid: 22299 components: - rot: -1.5707963267948966 rad pos: 29.5,-38.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 22262 + - uid: 22300 components: - rot: 3.141592653589793 rad pos: 21.5,-37.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 22263 + - uid: 22301 components: - pos: 24.5,-34.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 22264 + - uid: 22302 components: - rot: 3.141592653589793 rad pos: 1.5,-23.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 22265 + - uid: 22303 components: - pos: -1.5,-19.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - - uid: 22266 + - uid: 22304 components: - rot: 3.141592653589793 rad pos: 5.5,-11.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound + - uid: 22305 + components: + - rot: -1.5707963267948966 rad + pos: 57.5,-41.5 + parent: 2 + type: Transform + - uid: 22306 + components: + - rot: 3.141592653589793 rad + pos: -52.5,-25.5 + parent: 2 + type: Transform + - uid: 22307 + components: + - rot: -1.5707963267948966 rad + pos: 53.5,-43.5 + parent: 2 + type: Transform + - uid: 22308 + components: + - rot: -1.5707963267948966 rad + pos: 53.5,-39.5 + parent: 2 + type: Transform + - uid: 22309 + components: + - pos: 11.5,23.5 + parent: 2 + type: Transform - proto: PoweredlightEmpty entities: - - uid: 22267 + - uid: 22310 components: - rot: 3.141592653589793 rad pos: -39.5,-85.5 @@ -153891,7 +147163,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22268 + - uid: 22311 components: - rot: 3.141592653589793 rad pos: -40.5,-92.5 @@ -153899,7 +147171,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22269 + - uid: 22312 components: - rot: 3.141592653589793 rad pos: -40.5,-97.5 @@ -153907,7 +147179,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22270 + - uid: 22313 components: - rot: 3.141592653589793 rad pos: -28.5,-98.5 @@ -153915,7 +147187,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22271 + - uid: 22314 components: - rot: 3.141592653589793 rad pos: -16.5,-98.5 @@ -153923,21 +147195,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22272 + - uid: 22315 components: - pos: -13.5,13.5 parent: 2 type: Transform - proto: PoweredlightExterior entities: - - uid: 22273 + - uid: 22316 components: - pos: -1.5,72.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22274 + - uid: 22317 components: - rot: 1.5707963267948966 rad pos: -7.5,68.5 @@ -153945,7 +147217,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22275 + - uid: 22318 components: - rot: -1.5707963267948966 rad pos: 4.5,68.5 @@ -153953,7 +147225,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22276 + - uid: 22319 components: - rot: -1.5707963267948966 rad pos: -54.5,-85.5 @@ -153961,7 +147233,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22277 + - uid: 22320 components: - rot: -1.5707963267948966 rad pos: -54.5,-89.5 @@ -153971,19 +147243,19 @@ entities: type: ApcPowerReceiver - proto: PoweredLightPostSmall entities: - - uid: 22278 + - uid: 22321 components: - pos: -0.5,-85.5 parent: 2 type: Transform - - uid: 22279 + - uid: 22322 components: - pos: -2.5,-85.5 parent: 2 type: Transform - proto: PoweredlightSodium entities: - - uid: 22280 + - uid: 22323 components: - rot: 3.141592653589793 rad pos: 72.5,34.5 @@ -153991,7 +147263,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22281 + - uid: 22324 components: - rot: 1.5707963267948966 rad pos: 14.5,-65.5 @@ -153999,28 +147271,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22282 + - uid: 22325 components: - pos: -18.5,4.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22283 + - uid: 22326 components: - pos: -40.5,-15.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22284 + - uid: 22327 components: - pos: -20.5,-95.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22285 + - uid: 22328 components: - rot: 3.141592653589793 rad pos: -7.5,-100.5 @@ -154028,7 +147300,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22286 + - uid: 22329 components: - rot: -1.5707963267948966 rad pos: 12.5,-20.5 @@ -154038,35 +147310,40 @@ entities: type: ApcPowerReceiver - proto: PoweredSmallLight entities: - - uid: 22287 + - uid: 22330 + components: + - pos: 12.5,25.5 + parent: 2 + type: Transform + - uid: 22331 components: - pos: -43.5,-34.5 parent: 2 type: Transform - - uid: 22288 + - uid: 22332 components: - pos: -76.5,-31.5 parent: 2 type: Transform - - uid: 22289 + - uid: 22333 components: - pos: 51.5,-82.5 parent: 2 type: Transform - - uid: 22290 + - uid: 22334 components: - rot: -1.5707963267948966 rad pos: -49.5,46.5 parent: 2 type: Transform - - uid: 22291 + - uid: 22335 components: - pos: 20.5,-52.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22292 + - uid: 22336 components: - rot: 3.141592653589793 rad pos: 16.5,-55.5 @@ -154074,21 +147351,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22293 + - uid: 22337 components: - pos: 16.5,-52.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22294 + - uid: 22338 components: - pos: 1.5,-40.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22295 + - uid: 22339 components: - rot: 1.5707963267948966 rad pos: -31.5,-47.5 @@ -154096,7 +147373,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22296 + - uid: 22340 components: - rot: 3.141592653589793 rad pos: 20.5,-32.5 @@ -154104,7 +147381,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22297 + - uid: 22341 components: - rot: -1.5707963267948966 rad pos: -4.5,-74.5 @@ -154112,21 +147389,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22298 + - uid: 22342 components: - pos: 0.5,-73.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22299 + - uid: 22343 components: - pos: 33.5,-10.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22300 + - uid: 22344 components: - rot: 3.141592653589793 rad pos: 10.5,-17.5 @@ -154134,7 +147411,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22301 + - uid: 22345 components: - rot: 1.5707963267948966 rad pos: 17.5,-12.5 @@ -154142,7 +147419,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22302 + - uid: 22346 components: - rot: -1.5707963267948966 rad pos: 22.5,-13.5 @@ -154150,7 +147427,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22303 + - uid: 22347 components: - rot: 1.5707963267948966 rad pos: -74.5,-12.5 @@ -154158,7 +147435,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22304 + - uid: 22348 components: - rot: 1.5707963267948966 rad pos: 6.5,49.5 @@ -154166,14 +147443,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22305 + - uid: 22349 components: - pos: 33.5,-89.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22306 + - uid: 22350 components: - rot: -1.5707963267948966 rad pos: -7.5,-5.5 @@ -154181,7 +147458,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22307 + - uid: 22351 components: - rot: -1.5707963267948966 rad pos: 26.5,-29.5 @@ -154189,7 +147466,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22308 + - uid: 22352 components: - rot: 1.5707963267948966 rad pos: -2.5,-78.5 @@ -154197,14 +147474,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22309 + - uid: 22353 components: - pos: -15.5,-63.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22310 + - uid: 22354 components: - rot: 3.141592653589793 rad pos: -13.5,-67.5 @@ -154212,14 +147489,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22311 + - uid: 22355 components: - pos: -20.5,-66.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22312 + - uid: 22356 components: - rot: 3.141592653589793 rad pos: -5.5,-50.5 @@ -154227,28 +147504,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22313 + - uid: 22357 components: - pos: -20.5,-63.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22314 + - uid: 22358 components: - pos: -15.5,-75.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22315 + - uid: 22359 components: - pos: -15.5,-69.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22316 + - uid: 22360 components: - rot: 3.141592653589793 rad pos: -15.5,-79.5 @@ -154256,7 +147533,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22317 + - uid: 22361 components: - rot: 1.5707963267948966 rad pos: -30.5,-80.5 @@ -154264,7 +147541,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22318 + - uid: 22362 components: - rot: 1.5707963267948966 rad pos: -30.5,-78.5 @@ -154272,7 +147549,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22319 + - uid: 22363 components: - rot: 3.141592653589793 rad pos: -26.5,-90.5 @@ -154280,7 +147557,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22320 + - uid: 22364 components: - rot: 3.141592653589793 rad pos: -22.5,-90.5 @@ -154288,7 +147565,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22321 + - uid: 22365 components: - rot: 3.141592653589793 rad pos: -30.5,-7.5 @@ -154296,7 +147573,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22322 + - uid: 22366 components: - rot: -1.5707963267948966 rad pos: 22.5,12.5 @@ -154304,7 +147581,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22323 + - uid: 22367 components: - rot: -1.5707963267948966 rad pos: -14.5,-37.5 @@ -154312,7 +147589,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22324 + - uid: 22368 components: - rot: -1.5707963267948966 rad pos: 55.5,29.5 @@ -154320,28 +147597,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22325 + - uid: 22369 components: - pos: 49.5,-33.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22326 + - uid: 22370 components: - pos: -8.5,-29.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22327 + - uid: 22371 components: - pos: -16.5,-29.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22328 + - uid: 22372 components: - rot: -1.5707963267948966 rad pos: 30.5,25.5 @@ -154349,21 +147626,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22329 + - uid: 22373 components: - pos: 37.5,8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22330 + - uid: 22374 components: - pos: 37.5,5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22331 + - uid: 22375 components: - rot: 1.5707963267948966 rad pos: 34.5,11.5 @@ -154371,7 +147648,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22332 + - uid: 22376 components: - rot: 1.5707963267948966 rad pos: 31.5,11.5 @@ -154379,7 +147656,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22333 + - uid: 22377 components: - rot: 1.5707963267948966 rad pos: 28.5,11.5 @@ -154387,7 +147664,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22334 + - uid: 22378 components: - rot: 3.141592653589793 rad pos: 45.5,14.5 @@ -154395,7 +147672,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22335 + - uid: 22379 components: - rot: 1.5707963267948966 rad pos: 58.5,23.5 @@ -154403,7 +147680,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22336 + - uid: 22380 components: - rot: 1.5707963267948966 rad pos: 55.5,23.5 @@ -154411,7 +147688,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22337 + - uid: 22381 components: - rot: 1.5707963267948966 rad pos: 52.5,23.5 @@ -154419,7 +147696,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22338 + - uid: 22382 components: - rot: 1.5707963267948966 rad pos: 49.5,23.5 @@ -154427,7 +147704,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22339 + - uid: 22383 components: - rot: 1.5707963267948966 rad pos: 46.5,23.5 @@ -154435,21 +147712,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22340 + - uid: 22384 components: - pos: 61.5,19.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22341 + - uid: 22385 components: - pos: 61.5,16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22342 + - uid: 22386 components: - rot: 1.5707963267948966 rad pos: 62.5,11.5 @@ -154457,14 +147734,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22343 + - uid: 22387 components: - pos: 62.5,22.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22344 + - uid: 22388 components: - rot: -1.5707963267948966 rad pos: 54.5,12.5 @@ -154472,7 +147749,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22345 + - uid: 22389 components: - rot: 1.5707963267948966 rad pos: 62.5,6.5 @@ -154480,14 +147757,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22346 + - uid: 22390 components: - pos: 60.5,2.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22347 + - uid: 22391 components: - rot: 1.5707963267948966 rad pos: 56.5,-1.5 @@ -154495,14 +147772,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22348 + - uid: 22392 components: - pos: 35.5,20.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22349 + - uid: 22393 components: - rot: 1.5707963267948966 rad pos: 44.5,18.5 @@ -154510,7 +147787,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22350 + - uid: 22394 components: - rot: -1.5707963267948966 rad pos: 48.5,-2.5 @@ -154518,14 +147795,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22351 + - uid: 22395 components: - pos: 49.5,-7.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22352 + - uid: 22396 components: - rot: -1.5707963267948966 rad pos: 62.5,-38.5 @@ -154533,7 +147810,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22353 + - uid: 22397 components: - rot: -1.5707963267948966 rad pos: 39.5,-45.5 @@ -154541,7 +147818,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22354 + - uid: 22398 components: - rot: 1.5707963267948966 rad pos: 62.5,-19.5 @@ -154549,7 +147826,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22355 + - uid: 22399 components: - rot: -1.5707963267948966 rad pos: 62.5,-15.5 @@ -154557,14 +147834,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22356 + - uid: 22400 components: - pos: -18.5,-0.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22357 + - uid: 22401 components: - rot: -1.5707963267948966 rad pos: -28.5,-21.5 @@ -154572,28 +147849,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22358 + - uid: 22402 components: - pos: 46.5,-51.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22359 + - uid: 22403 components: - pos: 12.5,-72.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22360 + - uid: 22404 components: - pos: 45.5,-89.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22361 + - uid: 22405 components: - rot: 1.5707963267948966 rad pos: 48.5,-94.5 @@ -154601,14 +147878,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22362 + - uid: 22406 components: - pos: 20.5,-73.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22363 + - uid: 22407 components: - rot: 1.5707963267948966 rad pos: -32.5,-5.5 @@ -154616,28 +147893,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22364 + - uid: 22408 components: - pos: -20.5,-45.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22365 + - uid: 22409 components: - pos: -26.5,-26.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22366 + - uid: 22410 components: - pos: 43.5,-51.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22367 + - uid: 22411 components: - rot: 1.5707963267948966 rad pos: 36.5,-51.5 @@ -154645,7 +147922,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22368 + - uid: 22412 components: - rot: -1.5707963267948966 rad pos: 15.5,-48.5 @@ -154653,42 +147930,42 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22369 + - uid: 22413 components: - pos: 10.5,-55.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22370 + - uid: 22414 components: - pos: 15.5,-57.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22371 + - uid: 22415 components: - pos: 9.5,-64.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22372 + - uid: 22416 components: - pos: -5.5,-68.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22373 + - uid: 22417 components: - pos: -33.5,-69.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22374 + - uid: 22418 components: - rot: 1.5707963267948966 rad pos: -56.5,-78.5 @@ -154696,7 +147973,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22375 + - uid: 22419 components: - rot: 3.141592653589793 rad pos: -51.5,-79.5 @@ -154704,14 +147981,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22376 + - uid: 22420 components: - pos: -26.5,-66.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22377 + - uid: 22421 components: - rot: 1.5707963267948966 rad pos: -28.5,-61.5 @@ -154719,7 +147996,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22378 + - uid: 22422 components: - rot: 1.5707963267948966 rad pos: -50.5,-68.5 @@ -154727,21 +148004,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22379 + - uid: 22423 components: - pos: -37.5,-63.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22380 + - uid: 22424 components: - pos: -44.5,-63.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22381 + - uid: 22425 components: - rot: 1.5707963267948966 rad pos: -22.5,-55.5 @@ -154749,14 +148026,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22382 + - uid: 22426 components: - pos: -29.5,-43.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22383 + - uid: 22427 components: - rot: 1.5707963267948966 rad pos: -28.5,-53.5 @@ -154764,14 +148041,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22384 + - uid: 22428 components: - pos: -22.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22385 + - uid: 22429 components: - rot: 1.5707963267948966 rad pos: -29.5,-41.5 @@ -154779,14 +148056,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22386 + - uid: 22430 components: - pos: 44.5,-13.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22387 + - uid: 22431 components: - rot: 1.5707963267948966 rad pos: 35.5,-13.5 @@ -154794,21 +148071,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22388 + - uid: 22432 components: - pos: 39.5,-7.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22389 + - uid: 22433 components: - pos: 31.5,-8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22390 + - uid: 22434 components: - rot: 1.5707963267948966 rad pos: 46.5,-7.5 @@ -154816,7 +148093,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22391 + - uid: 22435 components: - rot: 1.5707963267948966 rad pos: 65.5,24.5 @@ -154824,14 +148101,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22392 + - uid: 22436 components: - pos: 57.5,26.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22393 + - uid: 22437 components: - rot: 3.141592653589793 rad pos: 49.5,26.5 @@ -154839,28 +148116,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22394 + - uid: 22438 components: - pos: -41.5,-24.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22395 + - uid: 22439 components: - pos: -39.5,-28.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22396 + - uid: 22440 components: - pos: -45.5,-27.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22397 + - uid: 22441 components: - rot: 1.5707963267948966 rad pos: -44.5,-30.5 @@ -154868,7 +148145,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22398 + - uid: 22442 components: - rot: -1.5707963267948966 rad pos: -35.5,-29.5 @@ -154876,7 +148153,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22399 + - uid: 22443 components: - rot: -1.5707963267948966 rad pos: -54.5,-33.5 @@ -154884,7 +148161,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22400 + - uid: 22444 components: - rot: 1.5707963267948966 rad pos: -57.5,-38.5 @@ -154892,7 +148169,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22401 + - uid: 22445 components: - rot: 1.5707963267948966 rad pos: -29.5,-29.5 @@ -154900,14 +148177,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22402 + - uid: 22446 components: - pos: -29.5,-25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22403 + - uid: 22447 components: - rot: 3.141592653589793 rad pos: -35.5,-26.5 @@ -154915,14 +148192,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22404 + - uid: 22448 components: - pos: 15.5,-8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22405 + - uid: 22449 components: - rot: 1.5707963267948966 rad pos: 14.5,-4.5 @@ -154930,7 +148207,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22406 + - uid: 22450 components: - rot: 3.141592653589793 rad pos: 14.5,-14.5 @@ -154938,7 +148215,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22407 + - uid: 22451 components: - rot: 1.5707963267948966 rad pos: -0.5,-13.5 @@ -154946,20 +148223,20 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22408 + - uid: 22452 components: - pos: 1.5,-16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22409 + - uid: 22453 components: - rot: -1.5707963267948966 rad pos: -72.5,-34.5 parent: 2 type: Transform - - uid: 22410 + - uid: 22454 components: - rot: 1.5707963267948966 rad pos: -32.5,-7.5 @@ -154967,7 +148244,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22411 + - uid: 22455 components: - rot: 1.5707963267948966 rad pos: 62.5,28.5 @@ -154975,56 +148252,56 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22412 + - uid: 22456 components: - pos: -49.5,-42.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22413 + - uid: 22457 components: - pos: -49.5,-44.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22414 + - uid: 22458 components: - pos: -49.5,-46.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22415 + - uid: 22459 components: - pos: -49.5,-48.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22416 + - uid: 22460 components: - pos: -49.5,-50.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22417 + - uid: 22461 components: - pos: -49.5,-52.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22418 + - uid: 22462 components: - pos: -49.5,-54.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22419 + - uid: 22463 components: - rot: 1.5707963267948966 rad pos: 15.5,33.5 @@ -155032,29 +148309,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22420 + - uid: 22464 components: - pos: 21.5,25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22421 - components: - - rot: 3.141592653589793 rad - pos: 11.5,24.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 22422 + - uid: 22465 components: - pos: -6.5,32.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22423 + - uid: 22466 components: - rot: -1.5707963267948966 rad pos: 0.5,33.5 @@ -155062,7 +148331,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22424 + - uid: 22467 components: - rot: 1.5707963267948966 rad pos: -0.5,-10.5 @@ -155070,7 +148339,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22425 + - uid: 22468 components: - rot: 1.5707963267948966 rad pos: -54.5,-0.5 @@ -155078,7 +148347,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22426 + - uid: 22469 components: - rot: -1.5707963267948966 rad pos: -28.5,-3.5 @@ -155086,7 +148355,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22427 + - uid: 22470 components: - rot: 1.5707963267948966 rad pos: -41.5,4.5 @@ -155094,7 +148363,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22428 + - uid: 22471 components: - rot: 3.141592653589793 rad pos: -30.5,3.5 @@ -155102,7 +148371,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22429 + - uid: 22472 components: - rot: 1.5707963267948966 rad pos: -33.5,9.5 @@ -155110,7 +148379,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22430 + - uid: 22473 components: - rot: -1.5707963267948966 rad pos: -28.5,9.5 @@ -155118,7 +148387,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22431 + - uid: 22474 components: - rot: -1.5707963267948966 rad pos: -29.5,14.5 @@ -155126,14 +148395,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22432 + - uid: 22475 components: - pos: -35.5,15.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22433 + - uid: 22476 components: - rot: -1.5707963267948966 rad pos: -35.5,9.5 @@ -155141,7 +148410,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22434 + - uid: 22477 components: - rot: 1.5707963267948966 rad pos: -40.5,9.5 @@ -155149,7 +148418,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22435 + - uid: 22478 components: - rot: -1.5707963267948966 rad pos: -12.5,19.5 @@ -155157,7 +148426,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22436 + - uid: 22479 components: - rot: 1.5707963267948966 rad pos: -16.5,21.5 @@ -155165,7 +148434,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22437 + - uid: 22480 components: - rot: 3.141592653589793 rad pos: -9.5,21.5 @@ -155173,14 +148442,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22438 + - uid: 22481 components: - pos: -0.5,24.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22439 + - uid: 22482 components: - rot: -1.5707963267948966 rad pos: -42.5,10.5 @@ -155188,7 +148457,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22440 + - uid: 22483 components: - rot: 1.5707963267948966 rad pos: -52.5,14.5 @@ -155196,7 +148465,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22441 + - uid: 22484 components: - rot: -1.5707963267948966 rad pos: -51.5,7.5 @@ -155204,28 +148473,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22442 + - uid: 22485 components: - pos: -44.5,-2.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22443 + - uid: 22486 components: - pos: -40.5,-2.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22444 + - uid: 22487 components: - pos: -49.5,1.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22445 + - uid: 22488 components: - rot: -1.5707963267948966 rad pos: -37.5,-39.5 @@ -155233,14 +148502,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22446 + - uid: 22489 components: - pos: -35.5,-38.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22447 + - uid: 22490 components: - rot: -1.5707963267948966 rad pos: 2.5,-69.5 @@ -155248,7 +148517,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22448 + - uid: 22491 components: - rot: 3.141592653589793 rad pos: -63.5,-21.5 @@ -155256,7 +148525,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22449 + - uid: 22492 components: - rot: 3.141592653589793 rad pos: -69.5,-21.5 @@ -155264,21 +148533,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22450 + - uid: 22493 components: - pos: -68.5,-5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22451 + - uid: 22494 components: - pos: -64.5,-5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22452 + - uid: 22495 components: - rot: -1.5707963267948966 rad pos: -57.5,-10.5 @@ -155286,7 +148555,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22453 + - uid: 22496 components: - rot: -1.5707963267948966 rad pos: -57.5,-16.5 @@ -155294,7 +148563,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22454 + - uid: 22497 components: - rot: -1.5707963267948966 rad pos: 61.5,24.5 @@ -155302,7 +148571,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22455 + - uid: 22498 components: - rot: -1.5707963267948966 rad pos: 63.5,24.5 @@ -155310,7 +148579,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22456 + - uid: 22499 components: - rot: 3.141592653589793 rad pos: 63.5,13.5 @@ -155318,7 +148587,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22457 + - uid: 22500 components: - rot: 3.141592653589793 rad pos: 63.5,11.5 @@ -155326,7 +148595,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22458 + - uid: 22501 components: - rot: 3.141592653589793 rad pos: 63.5,9.5 @@ -155334,7 +148603,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22459 + - uid: 22502 components: - rot: 3.141592653589793 rad pos: -47.5,53.5 @@ -155342,7 +148611,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22460 + - uid: 22503 components: - rot: 3.141592653589793 rad pos: -41.5,53.5 @@ -155350,7 +148619,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22461 + - uid: 22504 components: - rot: 1.5707963267948966 rad pos: -40.5,52.5 @@ -155358,7 +148627,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22462 + - uid: 22505 components: - rot: 1.5707963267948966 rad pos: -46.5,52.5 @@ -155366,7 +148635,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22463 + - uid: 22506 components: - rot: -1.5707963267948966 rad pos: 23.5,34.5 @@ -155374,7 +148643,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22464 + - uid: 22507 components: - rot: 1.5707963267948966 rad pos: 13.5,-45.5 @@ -155382,21 +148651,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22465 + - uid: 22508 components: - pos: -51.5,-73.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22466 + - uid: 22509 components: - pos: -8.5,-71.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22467 + - uid: 22510 components: - rot: 1.5707963267948966 rad pos: 7.5,-17.5 @@ -155404,7 +148673,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22468 + - uid: 22511 components: - rot: 3.141592653589793 rad pos: 39.5,-30.5 @@ -155412,14 +148681,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22469 + - uid: 22512 components: - pos: -30.5,-54.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22470 + - uid: 22513 components: - rot: 3.141592653589793 rad pos: 10.5,-47.5 @@ -155427,14 +148696,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22471 + - uid: 22514 components: - pos: 56.5,59.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22472 + - uid: 22515 components: - rot: 3.141592653589793 rad pos: 52.5,55.5 @@ -155442,7 +148711,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22473 + - uid: 22516 components: - rot: 3.141592653589793 rad pos: 58.5,42.5 @@ -155450,7 +148719,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22474 + - uid: 22517 components: - rot: 3.141592653589793 rad pos: 51.5,42.5 @@ -155458,14 +148727,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22475 + - uid: 22518 components: - pos: 15.5,39.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22476 + - uid: 22519 components: - rot: 1.5707963267948966 rad pos: 60.5,46.5 @@ -155473,7 +148742,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22477 + - uid: 22520 components: - rot: 1.5707963267948966 rad pos: 65.5,9.5 @@ -155481,21 +148750,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22478 + - uid: 22521 components: - pos: 9.5,34.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22479 + - uid: 22522 components: - pos: -23.5,31.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22480 + - uid: 22523 components: - rot: 3.141592653589793 rad pos: 57.5,28.5 @@ -155503,7 +148772,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22481 + - uid: 22524 components: - rot: 1.5707963267948966 rad pos: -21.5,33.5 @@ -155511,28 +148780,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22482 + - uid: 22525 components: - pos: 46.5,39.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22483 + - uid: 22526 components: - pos: 54.5,50.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22484 + - uid: 22527 components: - pos: 45.5,32.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22485 + - uid: 22528 components: - rot: -1.5707963267948966 rad pos: 48.5,46.5 @@ -155540,7 +148809,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22486 + - uid: 22529 components: - rot: -1.5707963267948966 rad pos: -11.5,33.5 @@ -155548,14 +148817,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22487 + - uid: 22530 components: - pos: -11.5,39.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22488 + - uid: 22531 components: - rot: 3.141592653589793 rad pos: 43.5,44.5 @@ -155563,7 +148832,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22489 + - uid: 22532 components: - rot: 3.141592653589793 rad pos: -20.5,37.5 @@ -155571,14 +148840,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22490 + - uid: 22533 components: - pos: -27.5,46.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22491 + - uid: 22534 components: - rot: -1.5707963267948966 rad pos: -20.5,48.5 @@ -155586,14 +148855,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22492 + - uid: 22535 components: - pos: -10.5,29.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22493 + - uid: 22536 components: - rot: -1.5707963267948966 rad pos: -17.5,69.5 @@ -155601,7 +148870,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22494 + - uid: 22537 components: - rot: -1.5707963267948966 rad pos: -12.5,74.5 @@ -155609,7 +148878,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22495 + - uid: 22538 components: - rot: 1.5707963267948966 rad pos: -22.5,74.5 @@ -155617,7 +148886,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22496 + - uid: 22539 components: - rot: 3.141592653589793 rad pos: -15.5,60.5 @@ -155625,14 +148894,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22497 + - uid: 22540 components: - pos: -18.5,55.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22498 + - uid: 22541 components: - rot: -1.5707963267948966 rad pos: -24.5,42.5 @@ -155640,7 +148909,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22499 + - uid: 22542 components: - rot: 3.141592653589793 rad pos: -25.5,33.5 @@ -155648,21 +148917,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22500 + - uid: 22543 components: - pos: -30.5,39.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22501 + - uid: 22544 components: - pos: -42.5,39.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22502 + - uid: 22545 components: - rot: 3.141592653589793 rad pos: -28.5,27.5 @@ -155670,7 +148939,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22503 + - uid: 22546 components: - rot: 3.141592653589793 rad pos: 54.5,52.5 @@ -155678,7 +148947,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22504 + - uid: 22547 components: - rot: -1.5707963267948966 rad pos: -45.5,-87.5 @@ -155686,7 +148955,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22505 + - uid: 22548 components: - rot: 1.5707963267948966 rad pos: 8.5,-37.5 @@ -155694,7 +148963,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22506 + - uid: 22549 components: - rot: 1.5707963267948966 rad pos: 74.5,-40.5 @@ -155702,28 +148971,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22507 + - uid: 22550 components: - pos: 67.5,-33.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22508 + - uid: 22551 components: - pos: 67.5,-11.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22509 + - uid: 22552 components: - pos: 67.5,-3.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22510 + - uid: 22553 components: - rot: -1.5707963267948966 rad pos: -5.5,-56.5 @@ -155731,21 +149000,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22511 + - uid: 22554 components: - pos: 67.5,-5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22512 + - uid: 22555 components: - pos: 67.5,-13.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22513 + - uid: 22556 components: - rot: -1.5707963267948966 rad pos: -8.5,-56.5 @@ -155753,7 +149022,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22514 + - uid: 22557 components: - rot: -1.5707963267948966 rad pos: -11.5,-56.5 @@ -155761,7 +149030,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22515 + - uid: 22558 components: - rot: -1.5707963267948966 rad pos: 0.5,-56.5 @@ -155769,7 +149038,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22516 + - uid: 22559 components: - rot: -1.5707963267948966 rad pos: -2.5,-56.5 @@ -155777,21 +149046,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22517 + - uid: 22560 components: - pos: 78.5,-33.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22518 + - uid: 22561 components: - pos: 78.5,-36.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22519 + - uid: 22562 components: - rot: 1.5707963267948966 rad pos: 54.5,-55.5 @@ -155799,7 +149068,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22520 + - uid: 22563 components: - rot: 3.141592653589793 rad pos: 41.5,-33.5 @@ -155807,7 +149076,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22521 + - uid: 22564 components: - rot: 1.5707963267948966 rad pos: 77.5,-57.5 @@ -155815,7 +149084,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22522 + - uid: 22565 components: - rot: -1.5707963267948966 rad pos: 43.5,-63.5 @@ -155823,7 +149092,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22523 + - uid: 22566 components: - rot: -1.5707963267948966 rad pos: 56.5,-66.5 @@ -155831,7 +149100,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22524 + - uid: 22567 components: - rot: 3.141592653589793 rad pos: 54.5,-37.5 @@ -155839,7 +149108,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22525 + - uid: 22568 components: - rot: 1.5707963267948966 rad pos: 53.5,-26.5 @@ -155847,14 +149116,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22526 + - uid: 22569 components: - pos: 59.5,-26.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22527 + - uid: 22570 components: - rot: -1.5707963267948966 rad pos: 63.5,-68.5 @@ -155862,7 +149131,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22528 + - uid: 22571 components: - rot: 1.5707963267948966 rad pos: 58.5,-66.5 @@ -155870,7 +149139,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22529 + - uid: 22572 components: - rot: 3.141592653589793 rad pos: 67.5,-66.5 @@ -155878,7 +149147,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22530 + - uid: 22573 components: - rot: 1.5707963267948966 rad pos: 72.5,-67.5 @@ -155886,7 +149155,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22531 + - uid: 22574 components: - rot: 1.5707963267948966 rad pos: 75.5,-53.5 @@ -155894,7 +149163,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22532 + - uid: 22575 components: - rot: 1.5707963267948966 rad pos: 73.5,-63.5 @@ -155902,7 +149171,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22533 + - uid: 22576 components: - rot: -1.5707963267948966 rad pos: 72.5,-55.5 @@ -155910,7 +149179,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22534 + - uid: 22577 components: - rot: 3.141592653589793 rad pos: -11.5,41.5 @@ -155918,7 +149187,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22535 + - uid: 22578 components: - rot: 1.5707963267948966 rad pos: -42.5,13.5 @@ -155926,7 +149195,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22536 + - uid: 22579 components: - rot: -1.5707963267948966 rad pos: 30.5,-94.5 @@ -155934,7 +149203,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22537 + - uid: 22580 components: - rot: 1.5707963267948966 rad pos: -8.5,-18.5 @@ -155942,7 +149211,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22538 + - uid: 22581 components: - rot: -1.5707963267948966 rad pos: -7.5,-12.5 @@ -155950,7 +149219,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22539 + - uid: 22582 components: - rot: 1.5707963267948966 rad pos: -13.5,-13.5 @@ -155958,21 +149227,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22540 + - uid: 22583 components: - pos: -8.5,-8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22541 + - uid: 22584 components: - pos: -12.5,-8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22542 + - uid: 22585 components: - rot: 1.5707963267948966 rad pos: -16.5,-9.5 @@ -155980,14 +149249,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22543 + - uid: 22586 components: - pos: -15.5,-12.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22544 + - uid: 22587 components: - rot: -1.5707963267948966 rad pos: -28.5,-5.5 @@ -155995,7 +149264,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22545 + - uid: 22588 components: - rot: -1.5707963267948966 rad pos: -28.5,-7.5 @@ -156003,7 +149272,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22546 + - uid: 22589 components: - rot: -1.5707963267948966 rad pos: -8.5,-68.5 @@ -156011,21 +149280,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22547 + - uid: 22590 components: - pos: 13.5,-31.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22548 + - uid: 22591 components: - pos: -19.5,-51.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22549 + - uid: 22592 components: - rot: 3.141592653589793 rad pos: -19.5,-49.5 @@ -156033,7 +149302,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22550 + - uid: 22593 components: - rot: 1.5707963267948966 rad pos: 28.5,-14.5 @@ -156041,7 +149310,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22551 + - uid: 22594 components: - rot: 1.5707963267948966 rad pos: 29.5,-12.5 @@ -156049,14 +149318,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22552 + - uid: 22595 components: - pos: 22.5,-83.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22553 + - uid: 22596 components: - rot: 3.141592653589793 rad pos: 5.5,-23.5 @@ -156064,14 +149333,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22554 + - uid: 22597 components: - pos: -57.5,-18.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22555 + - uid: 22598 components: - rot: 1.5707963267948966 rad pos: 6.5,-78.5 @@ -156079,14 +149348,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22556 + - uid: 22599 components: - pos: 3.5,-73.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22557 + - uid: 22600 components: - rot: -1.5707963267948966 rad pos: 6.5,-85.5 @@ -156094,104 +149363,98 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22558 + - uid: 22601 components: - rot: 3.141592653589793 rad pos: 32.5,-25.5 parent: 2 type: Transform - - uid: 22559 + - uid: 22602 components: - rot: 3.141592653589793 rad pos: 18.5,-25.5 parent: 2 type: Transform - - uid: 22560 + - uid: 22603 components: - pos: -52.5,43.5 parent: 2 type: Transform - - uid: 22561 + - uid: 22604 components: - rot: -1.5707963267948966 rad pos: -37.5,42.5 parent: 2 type: Transform - - uid: 22562 + - uid: 22605 components: - rot: 3.141592653589793 rad pos: -10.5,-33.5 parent: 2 type: Transform - - uid: 22563 + - uid: 22606 components: - pos: -15.5,-33.5 parent: 2 type: Transform - - uid: 22564 + - uid: 22607 components: - pos: 51.5,-89.5 parent: 2 type: Transform - - uid: 22565 + - uid: 22608 components: - rot: 3.141592653589793 rad pos: 33.5,-82.5 parent: 2 type: Transform - - uid: 22566 + - uid: 22609 components: - rot: 3.141592653589793 rad pos: 45.5,-82.5 parent: 2 type: Transform - - uid: 22567 + - uid: 22610 components: - pos: -59.5,-54.5 parent: 2 type: Transform - - uid: 22568 + - uid: 22611 components: - pos: -76.5,-40.5 parent: 2 type: Transform - - uid: 22569 + - uid: 22612 components: - rot: 3.141592653589793 rad pos: -76.5,-46.5 parent: 2 type: Transform - - uid: 22570 - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-23.5 - parent: 2 - type: Transform - - uid: 22571 + - uid: 22613 components: - rot: 3.141592653589793 rad pos: -63.5,-45.5 parent: 2 type: Transform - - uid: 22572 + - uid: 22614 components: - pos: -53.5,-27.5 parent: 2 type: Transform - - uid: 22573 + - uid: 22615 components: - rot: 1.5707963267948966 rad pos: 18.5,-28.5 parent: 2 type: Transform - - uid: 22574 + - uid: 22616 components: - pos: 31.5,-32.5 parent: 2 type: Transform - proto: PoweredSmallLightEmpty entities: - - uid: 22575 + - uid: 22617 components: - rot: -1.5707963267948966 rad pos: -36.5,-79.5 @@ -156199,7 +149462,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22576 + - uid: 22618 components: - rot: 3.141592653589793 rad pos: -37.5,-84.5 @@ -156207,7 +149470,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22577 + - uid: 22619 components: - rot: 3.141592653589793 rad pos: -46.5,-84.5 @@ -156215,7 +149478,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22578 + - uid: 22620 components: - rot: 1.5707963267948966 rad pos: -47.5,-79.5 @@ -156223,14 +149486,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22579 + - uid: 22621 components: - pos: -42.5,-74.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22580 + - uid: 22622 components: - rot: -1.5707963267948966 rad pos: -36.5,-72.5 @@ -156238,7 +149501,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22581 + - uid: 22623 components: - rot: 1.5707963267948966 rad pos: -47.5,-72.5 @@ -156246,7 +149509,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22582 + - uid: 22624 components: - rot: 1.5707963267948966 rad pos: -56.5,-80.5 @@ -156254,7 +149517,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22583 + - uid: 22625 components: - rot: 1.5707963267948966 rad pos: -56.5,-74.5 @@ -156262,7 +149525,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22584 + - uid: 22626 components: - rot: 1.5707963267948966 rad pos: -56.5,-72.5 @@ -156270,7 +149533,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22585 + - uid: 22627 components: - rot: -1.5707963267948966 rad pos: -27.5,-36.5 @@ -156278,14 +149541,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22586 + - uid: 22628 components: - pos: 57.5,34.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22587 + - uid: 22629 components: - rot: -1.5707963267948966 rad pos: 43.5,47.5 @@ -156293,7 +149556,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22588 + - uid: 22630 components: - rot: 1.5707963267948966 rad pos: 36.5,50.5 @@ -156301,7 +149564,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22589 + - uid: 22631 components: - rot: 3.141592653589793 rad pos: 37.5,43.5 @@ -156309,7 +149572,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22590 + - uid: 22632 components: - pos: 34.5,47.5 parent: 2 @@ -156318,7 +149581,7 @@ entities: type: ApcPowerReceiver - proto: Protolathe entities: - - uid: 22591 + - uid: 22633 components: - pos: 43.5,-35.5 parent: 2 @@ -156332,1096 +149595,1091 @@ entities: type: MaterialStorage - proto: ProtolatheMachineCircuitboard entities: - - uid: 22592 + - uid: 22634 components: - pos: -37.545918,-18.274307 parent: 2 type: Transform - proto: ProximitySensor entities: - - uid: 22593 + - uid: 22635 components: - pos: 59.550594,-52.45363 parent: 2 type: Transform - proto: Rack entities: - - uid: 22594 - components: - - pos: 26.5,30.5 - parent: 2 - type: Transform - - uid: 22595 + - uid: 22636 components: - pos: 26.5,29.5 parent: 2 type: Transform - - uid: 22596 + - uid: 22637 components: - pos: 29.5,-13.5 parent: 2 type: Transform - - uid: 22597 + - uid: 22638 components: - pos: 13.5,-72.5 parent: 2 type: Transform - - uid: 22598 + - uid: 22639 components: - pos: 10.5,-16.5 parent: 2 type: Transform - - uid: 22599 + - uid: 22640 components: - pos: 31.5,-11.5 parent: 2 type: Transform - - uid: 22600 + - uid: 22641 components: - pos: 22.5,-54.5 parent: 2 type: Transform - - uid: 22601 + - uid: 22642 components: - pos: 33.5,-11.5 parent: 2 type: Transform - - uid: 22602 + - uid: 22643 components: - pos: 33.5,-13.5 parent: 2 type: Transform - - uid: 22603 + - uid: 22644 components: - pos: 31.5,-13.5 parent: 2 type: Transform - - uid: 22604 + - uid: 22645 components: - pos: 29.5,-11.5 parent: 2 type: Transform - - uid: 22605 + - uid: 22646 components: - pos: -6.5,-68.5 parent: 2 type: Transform - - uid: 22606 + - uid: 22647 components: - pos: 4.5,-69.5 parent: 2 type: Transform - - uid: 22607 + - uid: 22648 components: - pos: 6.5,-69.5 parent: 2 type: Transform - - uid: 22608 + - uid: 22649 components: - rot: 3.141592653589793 rad pos: -28.5,-19.5 parent: 2 type: Transform - - uid: 22609 + - uid: 22650 components: - pos: -16.5,-15.5 parent: 2 type: Transform - - uid: 22610 + - uid: 22651 components: - pos: 36.5,-50.5 parent: 2 type: Transform - - uid: 22611 + - uid: 22652 components: - pos: 37.5,-50.5 parent: 2 type: Transform - - uid: 22612 + - uid: 22653 components: - pos: 42.5,-7.5 parent: 2 type: Transform - - uid: 22613 + - uid: 22654 components: - pos: -8.5,-10.5 parent: 2 type: Transform - - uid: 22614 + - uid: 22655 components: - pos: -16.5,-16.5 parent: 2 type: Transform - - uid: 22615 + - uid: 22656 components: - pos: -9.5,-10.5 parent: 2 type: Transform - - uid: 22616 + - uid: 22657 components: - pos: -11.5,-8.5 parent: 2 type: Transform - - uid: 22617 + - uid: 22658 components: - pos: -50.5,-29.5 parent: 2 type: Transform - - uid: 22618 + - uid: 22659 components: - pos: -50.5,-28.5 parent: 2 type: Transform - - uid: 22619 + - uid: 22660 components: - pos: -50.5,-27.5 parent: 2 type: Transform - - uid: 22620 + - uid: 22661 components: - pos: -45.5,-19.5 parent: 2 type: Transform - - uid: 22621 + - uid: 22662 components: - pos: -47.5,-19.5 parent: 2 type: Transform - - uid: 22622 + - uid: 22663 components: - pos: -55.5,-6.5 parent: 2 type: Transform - - uid: 22623 + - uid: 22664 components: - pos: -31.5,-56.5 parent: 2 type: Transform - - uid: 22624 + - uid: 22665 components: - pos: -56.5,-70.5 parent: 2 type: Transform - - uid: 22625 + - uid: 22666 components: - pos: -38.5,-67.5 parent: 2 type: Transform - - uid: 22626 + - uid: 22667 components: - pos: -32.5,-62.5 parent: 2 type: Transform - - uid: 22627 + - uid: 22668 components: - pos: -31.5,-62.5 parent: 2 type: Transform - - uid: 22628 + - uid: 22669 components: - pos: -46.5,-30.5 parent: 2 type: Transform - - uid: 22629 + - uid: 22670 components: - pos: -44.5,-25.5 parent: 2 type: Transform - - uid: 22630 + - uid: 22671 components: - pos: -42.5,-24.5 parent: 2 type: Transform - - uid: 22631 + - uid: 22672 components: - pos: 35.5,-12.5 parent: 2 type: Transform - - uid: 22632 + - uid: 22673 components: - pos: -31.5,-43.5 parent: 2 type: Transform - - uid: 22633 + - uid: 22674 components: - pos: -29.5,-46.5 parent: 2 type: Transform - - uid: 22634 + - uid: 22675 components: - pos: -28.5,-28.5 parent: 2 type: Transform - - uid: 22635 + - uid: 22676 components: - pos: -23.5,-28.5 parent: 2 type: Transform - - uid: 22636 + - uid: 22677 components: - pos: -34.5,-25.5 parent: 2 type: Transform - - uid: 22637 + - uid: 22678 components: - pos: -42.5,-20.5 parent: 2 type: Transform - - uid: 22638 + - uid: 22679 components: - pos: -42.5,-21.5 parent: 2 type: Transform - - uid: 22639 + - uid: 22680 components: - pos: 4.5,-17.5 parent: 2 type: Transform - - uid: 22640 + - uid: 22681 components: - pos: 3.5,-17.5 parent: 2 type: Transform - - uid: 22641 + - uid: 22682 components: - pos: -44.5,16.5 parent: 2 type: Transform - - uid: 22642 + - uid: 22683 components: - pos: -3.5,21.5 parent: 2 type: Transform - - uid: 22643 + - uid: 22684 components: - pos: 0.5,23.5 parent: 2 type: Transform - - uid: 22644 + - uid: 22685 components: - pos: -3.5,34.5 parent: 2 type: Transform - - uid: 22645 + - uid: 22686 components: - pos: 15.5,34.5 parent: 2 type: Transform - - uid: 22646 + - uid: 22687 components: - pos: -12.5,17.5 parent: 2 type: Transform - - uid: 22647 + - uid: 22688 components: - pos: -49.5,15.5 parent: 2 type: Transform - - uid: 22648 + - uid: 22689 components: - pos: -49.5,14.5 parent: 2 type: Transform - - uid: 22649 + - uid: 22690 components: - pos: -44.5,15.5 parent: 2 type: Transform - - uid: 22650 + - uid: 22691 components: - pos: -47.5,-3.5 parent: 2 type: Transform - - uid: 22651 + - uid: 22692 components: - pos: -52.5,2.5 parent: 2 type: Transform - - uid: 22652 + - uid: 22693 components: - pos: -56.5,-4.5 parent: 2 type: Transform - - uid: 22653 + - uid: 22694 components: - pos: 18.5,39.5 parent: 2 type: Transform - - uid: 22654 + - uid: 22695 components: - pos: -24.5,-67.5 parent: 2 type: Transform - - uid: 22655 + - uid: 22696 components: - pos: -23.5,-67.5 parent: 2 type: Transform - - uid: 22656 + - uid: 22697 components: - pos: 9.5,-16.5 parent: 2 type: Transform - - uid: 22657 + - uid: 22698 components: - pos: 39.5,-30.5 parent: 2 type: Transform - - uid: 22658 + - uid: 22699 components: - pos: 59.5,2.5 parent: 2 type: Transform - - uid: 22659 + - uid: 22700 components: - pos: -34.5,-72.5 parent: 2 type: Transform - - uid: 22660 + - uid: 22701 components: - pos: -33.5,-72.5 parent: 2 type: Transform - - uid: 22661 + - uid: 22702 components: - pos: -41.5,37.5 parent: 2 type: Transform - - uid: 22662 + - uid: 22703 components: - pos: -36.5,35.5 parent: 2 type: Transform - - uid: 22663 + - uid: 22704 components: - pos: -26.5,39.5 parent: 2 type: Transform - - uid: 22664 + - uid: 22705 components: - pos: -26.5,30.5 parent: 2 type: Transform - - uid: 22665 + - uid: 22706 components: - pos: -8.5,-82.5 parent: 2 type: Transform - - uid: 22666 + - uid: 22707 components: - pos: -14.5,-82.5 parent: 2 type: Transform - - uid: 22667 + - uid: 22708 components: - pos: -4.5,-82.5 parent: 2 type: Transform - - uid: 22668 + - uid: 22709 components: - pos: -6.5,-88.5 parent: 2 type: Transform - - uid: 22669 + - uid: 22710 components: - pos: -19.5,53.5 parent: 2 type: Transform - - uid: 22670 + - uid: 22711 components: - pos: 42.5,-32.5 parent: 2 type: Transform - - uid: 22671 + - uid: 22712 components: - pos: 54.5,-63.5 parent: 2 type: Transform - - uid: 22672 + - uid: 22713 components: - pos: 54.5,-64.5 parent: 2 type: Transform - - uid: 22673 + - uid: 22714 components: - pos: 54.5,-30.5 parent: 2 type: Transform - - uid: 22674 + - uid: 22715 components: - pos: 37.5,-10.5 parent: 2 type: Transform - - uid: 22675 + - uid: 22716 components: - pos: -8.5,-17.5 parent: 2 type: Transform - - uid: 22676 + - uid: 22717 components: - rot: 1.5707963267948966 rad pos: -28.5,-20.5 parent: 2 type: Transform - - uid: 22677 + - uid: 22718 components: - pos: -48.5,16.5 parent: 2 type: Transform - - uid: 22678 + - uid: 22719 components: - pos: -13.5,-13.5 parent: 2 type: Transform - - uid: 22679 + - uid: 22720 components: - pos: -13.5,-12.5 parent: 2 type: Transform - - uid: 22680 + - uid: 22721 components: - pos: -20.5,-51.5 parent: 2 type: Transform - - uid: 22681 + - uid: 22722 components: - pos: 44.5,-8.5 parent: 2 type: Transform - - uid: 22682 + - uid: 22723 components: - pos: 7.5,-80.5 parent: 2 type: Transform - - uid: 22683 + - uid: 22724 components: - pos: 31.5,27.5 parent: 2 type: Transform - - uid: 22684 + - uid: 22725 components: - pos: 27.5,27.5 parent: 2 type: Transform - - uid: 22685 + - uid: 22726 components: - pos: 6.5,-13.5 parent: 2 type: Transform - proto: RadiationCollector entities: - - uid: 22686 + - uid: 22727 components: - pos: -63.5,-20.5 parent: 2 type: Transform - - uid: 22687 + - uid: 22728 components: - pos: -64.5,-20.5 parent: 2 type: Transform - - uid: 22688 + - uid: 22729 components: - pos: -65.5,-20.5 parent: 2 type: Transform - - uid: 22689 + - uid: 22730 components: - pos: -67.5,-20.5 parent: 2 type: Transform - - uid: 22690 + - uid: 22731 components: - pos: -68.5,-20.5 parent: 2 type: Transform - - uid: 22691 + - uid: 22732 components: - pos: -69.5,-20.5 parent: 2 type: Transform - - uid: 22692 + - uid: 22733 components: - pos: -63.5,-6.5 parent: 2 type: Transform - - uid: 22693 + - uid: 22734 components: - pos: -64.5,-6.5 parent: 2 type: Transform - - uid: 22694 + - uid: 22735 components: - pos: -65.5,-6.5 parent: 2 type: Transform - - uid: 22695 + - uid: 22736 components: - pos: -69.5,-6.5 parent: 2 type: Transform - - uid: 22696 + - uid: 22737 components: - pos: -68.5,-6.5 parent: 2 type: Transform - - uid: 22697 + - uid: 22738 components: - pos: -67.5,-6.5 parent: 2 type: Transform - proto: RadioHandheld entities: - - uid: 22698 + - uid: 22739 components: - pos: -21.414516,35.539524 parent: 2 type: Transform - proto: Railing entities: - - uid: 22699 + - uid: 22740 components: - rot: -1.5707963267948966 rad pos: -8.5,18.5 parent: 2 type: Transform - - uid: 22700 + - uid: 22741 components: - pos: 24.5,-1.5 parent: 2 type: Transform - - uid: 22701 + - uid: 22742 components: - pos: 25.5,-1.5 parent: 2 type: Transform - - uid: 22702 + - uid: 22743 components: - rot: -1.5707963267948966 rad pos: 21.5,1.5 parent: 2 type: Transform - - uid: 22703 + - uid: 22744 components: - rot: 3.141592653589793 rad pos: 24.5,-19.5 parent: 2 type: Transform - - uid: 22704 + - uid: 22745 components: - rot: -1.5707963267948966 rad pos: 21.5,0.5 parent: 2 type: Transform - - uid: 22705 + - uid: 22746 components: - rot: 3.141592653589793 rad pos: 25.5,3.5 parent: 2 type: Transform - - uid: 22706 + - uid: 22747 components: - rot: 3.141592653589793 rad pos: 11.5,1.5 parent: 2 type: Transform - - uid: 22707 + - uid: 22748 components: - pos: 22.5,-1.5 parent: 2 type: Transform - - uid: 22708 + - uid: 22749 components: - pos: 10.5,0.5 parent: 2 type: Transform - - uid: 22709 + - uid: 22750 components: - rot: 1.5707963267948966 rad pos: 26.5,2.5 parent: 2 type: Transform - - uid: 22710 + - uid: 22751 components: - rot: 3.141592653589793 rad pos: 24.5,3.5 parent: 2 type: Transform - - uid: 22711 + - uid: 22752 components: - pos: 6.5,0.5 parent: 2 type: Transform - - uid: 22712 + - uid: 22753 components: - rot: 3.141592653589793 rad pos: 22.5,3.5 parent: 2 type: Transform - - uid: 22713 + - uid: 22754 components: - rot: 3.141592653589793 rad pos: 10.5,1.5 parent: 2 type: Transform - - uid: 22714 + - uid: 22755 components: - rot: 3.141592653589793 rad pos: 26.5,-19.5 parent: 2 type: Transform - - uid: 22715 + - uid: 22756 components: - rot: 1.5707963267948966 rad pos: 26.5,-0.5 parent: 2 type: Transform - - uid: 22716 + - uid: 22757 components: - rot: 3.141592653589793 rad pos: 25.5,-19.5 parent: 2 type: Transform - - uid: 22717 + - uid: 22758 components: - rot: 3.141592653589793 rad pos: 23.5,-19.5 parent: 2 type: Transform - - uid: 22718 + - uid: 22759 components: - pos: 23.5,-1.5 parent: 2 type: Transform - - uid: 22719 + - uid: 22760 components: - rot: 3.141592653589793 rad pos: 28.5,-19.5 parent: 2 type: Transform - - uid: 22720 + - uid: 22761 components: - rot: -1.5707963267948966 rad pos: 21.5,-0.5 parent: 2 type: Transform - - uid: 22721 + - uid: 22762 components: - rot: -1.5707963267948966 rad pos: 21.5,2.5 parent: 2 type: Transform - - uid: 22722 + - uid: 22763 components: - pos: 11.5,0.5 parent: 2 type: Transform - - uid: 22723 + - uid: 22764 components: - rot: 3.141592653589793 rad pos: 6.5,1.5 parent: 2 type: Transform - - uid: 22724 + - uid: 22765 components: - rot: 3.141592653589793 rad pos: 7.5,1.5 parent: 2 type: Transform - - uid: 22725 + - uid: 22766 components: - pos: 7.5,0.5 parent: 2 type: Transform - - uid: 22726 + - uid: 22767 components: - rot: 3.141592653589793 rad pos: 23.5,3.5 parent: 2 type: Transform - - uid: 22727 + - uid: 22768 components: - rot: 3.141592653589793 rad pos: 27.5,-19.5 parent: 2 type: Transform - - uid: 22728 + - uid: 22769 components: - rot: 1.5707963267948966 rad pos: 26.5,1.5 parent: 2 type: Transform - - uid: 22729 + - uid: 22770 components: - rot: 3.141592653589793 rad pos: 22.5,-19.5 parent: 2 type: Transform - - uid: 22730 + - uid: 22771 components: - rot: 3.141592653589793 rad pos: 54.5,19.5 parent: 2 type: Transform - - uid: 22731 + - uid: 22772 components: - rot: 3.141592653589793 rad pos: 53.5,19.5 parent: 2 type: Transform - - uid: 22732 + - uid: 22773 components: - rot: 3.141592653589793 rad pos: 52.5,19.5 parent: 2 type: Transform - - uid: 22733 + - uid: 22774 components: - rot: -1.5707963267948966 rad pos: 51.5,18.5 parent: 2 type: Transform - - uid: 22734 + - uid: 22775 components: - rot: -1.5707963267948966 rad pos: 51.5,17.5 parent: 2 type: Transform - - uid: 22735 + - uid: 22776 components: - rot: -1.5707963267948966 rad pos: 51.5,15.5 parent: 2 type: Transform - - uid: 22736 + - uid: 22777 components: - rot: 1.5707963267948966 rad pos: 55.5,18.5 parent: 2 type: Transform - - uid: 22737 + - uid: 22778 components: - rot: 1.5707963267948966 rad pos: 55.5,17.5 parent: 2 type: Transform - - uid: 22738 + - uid: 22779 components: - rot: 1.5707963267948966 rad pos: 55.5,15.5 parent: 2 type: Transform - - uid: 22739 + - uid: 22780 components: - rot: 3.141592653589793 rad pos: 58.5,8.5 parent: 2 type: Transform - - uid: 22740 + - uid: 22781 components: - rot: 3.141592653589793 rad pos: 56.5,8.5 parent: 2 type: Transform - - uid: 22741 + - uid: 22782 components: - rot: -1.5707963267948966 rad pos: 55.5,6.5 parent: 2 type: Transform - - uid: 22742 + - uid: 22783 components: - rot: 1.5707963267948966 rad pos: 59.5,7.5 parent: 2 type: Transform - - uid: 22743 + - uid: 22784 components: - rot: 1.5707963267948966 rad pos: 59.5,6.5 parent: 2 type: Transform - - uid: 22744 + - uid: 22785 components: - pos: 58.5,5.5 parent: 2 type: Transform - - uid: 22745 + - uid: 22786 components: - pos: 56.5,5.5 parent: 2 type: Transform - - uid: 22746 + - uid: 22787 components: - rot: 3.141592653589793 rad pos: 57.5,8.5 parent: 2 type: Transform - - uid: 22747 + - uid: 22788 components: - rot: 1.5707963267948966 rad pos: 61.5,-8.5 parent: 2 type: Transform - - uid: 22748 + - uid: 22789 components: - pos: 54.5,-9.5 parent: 2 type: Transform - - uid: 22749 + - uid: 22790 components: - rot: 3.141592653589793 rad pos: 54.5,-7.5 parent: 2 type: Transform - - uid: 22750 + - uid: 22791 components: - rot: 1.5707963267948966 rad pos: 50.5,-5.5 parent: 2 type: Transform - - uid: 22751 + - uid: 22792 components: - rot: 1.5707963267948966 rad pos: 50.5,-11.5 parent: 2 type: Transform - - uid: 22752 + - uid: 22793 components: - rot: -1.5707963267948966 rad pos: 53.5,-8.5 parent: 2 type: Transform - - uid: 22753 + - uid: 22794 components: - rot: 1.5707963267948966 rad pos: 46.5,-86.5 parent: 2 type: Transform - - uid: 22754 + - uid: 22795 components: - rot: -1.5707963267948966 rad pos: 32.5,-84.5 parent: 2 type: Transform - - uid: 22755 + - uid: 22796 components: - rot: -1.5707963267948966 rad pos: 32.5,-85.5 parent: 2 type: Transform - - uid: 22756 + - uid: 22797 components: - rot: 1.5707963267948966 rad pos: 46.5,-87.5 parent: 2 type: Transform - - uid: 22757 + - uid: 22798 components: - rot: -1.5707963267948966 rad pos: 32.5,-86.5 parent: 2 type: Transform - - uid: 22758 + - uid: 22799 components: - rot: 1.5707963267948966 rad pos: 46.5,-84.5 parent: 2 type: Transform - - uid: 22759 + - uid: 22800 components: - rot: -1.5707963267948966 rad pos: 32.5,-87.5 parent: 2 type: Transform - - uid: 22760 + - uid: 22801 components: - rot: 3.141592653589793 rad pos: -39.5,-29.5 parent: 2 type: Transform - - uid: 22761 + - uid: 22802 components: - rot: 3.141592653589793 rad pos: -38.5,-29.5 parent: 2 type: Transform - - uid: 22762 + - uid: 22803 components: - rot: -1.5707963267948966 rad pos: 66.5,-8.5 parent: 2 type: Transform - - uid: 22763 + - uid: 22804 components: - rot: -1.5707963267948966 rad pos: 66.5,-7.5 parent: 2 type: Transform - - uid: 22764 + - uid: 22805 components: - rot: -1.5707963267948966 rad pos: 66.5,-9.5 parent: 2 type: Transform - - uid: 22765 + - uid: 22806 components: - rot: 3.141592653589793 rad pos: -40.5,38.5 parent: 2 type: Transform - - uid: 22766 + - uid: 22807 components: - rot: 3.141592653589793 rad pos: -43.5,38.5 parent: 2 type: Transform - - uid: 22767 + - uid: 22808 components: - pos: 60.5,-9.5 parent: 2 type: Transform - - uid: 22768 + - uid: 22809 components: - rot: 3.141592653589793 rad pos: 60.5,-7.5 parent: 2 type: Transform - - uid: 22769 + - uid: 22810 components: - rot: 1.5707963267948966 rad pos: -39.5,3.5 parent: 2 type: Transform - - uid: 22770 + - uid: 22811 components: - rot: 1.5707963267948966 rad pos: -39.5,4.5 parent: 2 type: Transform - - uid: 22771 + - uid: 22812 components: - pos: 31.5,-40.5 parent: 2 type: Transform - - uid: 22772 + - uid: 22813 components: - rot: 1.5707963267948966 rad pos: 32.5,-39.5 parent: 2 type: Transform - - uid: 22773 + - uid: 22814 components: - rot: 1.5707963267948966 rad pos: -39.5,5.5 parent: 2 type: Transform - - uid: 22774 + - uid: 22815 components: - rot: 1.5707963267948966 rad pos: -39.5,6.5 parent: 2 type: Transform - - uid: 22775 + - uid: 22816 components: - rot: -1.5707963267948966 rad pos: -36.5,6.5 parent: 2 type: Transform - - uid: 22776 + - uid: 22817 components: - rot: -1.5707963267948966 rad pos: -36.5,5.5 parent: 2 type: Transform - - uid: 22777 + - uid: 22818 components: - rot: -1.5707963267948966 rad pos: -36.5,4.5 parent: 2 type: Transform - - uid: 22778 + - uid: 22819 components: - rot: -1.5707963267948966 rad pos: -36.5,3.5 parent: 2 type: Transform - - uid: 22779 + - uid: 22820 components: - rot: 1.5707963267948966 rad pos: 46.5,-85.5 parent: 2 type: Transform - - uid: 22780 + - uid: 22821 components: - rot: 1.5707963267948966 rad pos: 13.5,-84.5 parent: 2 type: Transform - - uid: 22781 + - uid: 22822 components: - rot: 1.5707963267948966 rad pos: 13.5,-83.5 parent: 2 type: Transform - - uid: 22782 + - uid: 22823 components: - rot: 1.5707963267948966 rad pos: 13.5,-82.5 parent: 2 type: Transform - - uid: 22783 + - uid: 22824 components: - rot: -1.5707963267948966 rad pos: 17.5,-82.5 parent: 2 type: Transform - - uid: 22784 + - uid: 22825 components: - rot: -1.5707963267948966 rad pos: 17.5,-83.5 parent: 2 type: Transform - - uid: 22785 + - uid: 22826 components: - rot: -1.5707963267948966 rad pos: 17.5,-84.5 parent: 2 type: Transform - - uid: 22786 + - uid: 22827 components: - rot: 3.141592653589793 rad pos: 16.5,-85.5 parent: 2 type: Transform - - uid: 22787 + - uid: 22828 components: - rot: 3.141592653589793 rad pos: 15.5,-85.5 parent: 2 type: Transform - - uid: 22788 + - uid: 22829 components: - rot: 3.141592653589793 rad pos: 14.5,-85.5 parent: 2 type: Transform - - uid: 22789 + - uid: 22830 components: - pos: 14.5,-81.5 parent: 2 type: Transform - - uid: 22790 + - uid: 22831 components: - pos: 15.5,-81.5 parent: 2 type: Transform - - uid: 22791 + - uid: 22832 components: - pos: 16.5,-81.5 parent: 2 type: Transform - - uid: 22792 + - uid: 22833 components: - rot: -1.5707963267948966 rad pos: 67.5,-28.5 @@ -157430,7 +150688,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 22793 + - uid: 22834 components: - rot: -1.5707963267948966 rad pos: 67.5,-27.5 @@ -157439,7 +150697,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 22794 + - uid: 22835 components: - pos: 68.5,-29.5 parent: 2 @@ -157447,7 +150705,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 22795 + - uid: 22836 components: - pos: 69.5,-29.5 parent: 2 @@ -157455,31 +150713,31 @@ entities: missingComponents: - Damageable - Destructible - - uid: 22796 + - uid: 22837 components: - rot: 1.5707963267948966 rad pos: -6.5,18.5 parent: 2 type: Transform - - uid: 22797 + - uid: 22838 components: - rot: 1.5707963267948966 rad pos: -3.5,18.5 parent: 2 type: Transform - - uid: 22798 + - uid: 22839 components: - rot: -1.5707963267948966 rad pos: -5.5,18.5 parent: 2 type: Transform - - uid: 22799 + - uid: 22840 components: - rot: 3.141592653589793 rad pos: -7.5,19.5 parent: 2 type: Transform - - uid: 22800 + - uid: 22841 components: - rot: 3.141592653589793 rad pos: -4.5,19.5 @@ -157487,162 +150745,162 @@ entities: type: Transform - proto: RailingCorner entities: - - uid: 22801 + - uid: 22842 components: - rot: -1.5707963267948966 rad pos: -5.5,17.5 parent: 2 type: Transform - - uid: 22802 + - uid: 22843 components: - rot: -1.5707963267948966 rad pos: -8.5,17.5 parent: 2 type: Transform - - uid: 22803 + - uid: 22844 components: - rot: 3.141592653589793 rad pos: -8.5,19.5 parent: 2 type: Transform - - uid: 22804 + - uid: 22845 components: - pos: -6.5,17.5 parent: 2 type: Transform - - uid: 22805 + - uid: 22846 components: - rot: 1.5707963267948966 rad pos: 61.5,-7.5 parent: 2 type: Transform - - uid: 22806 + - uid: 22847 components: - rot: -1.5707963267948966 rad pos: 5.5,0.5 parent: 2 type: Transform - - uid: 22807 + - uid: 22848 components: - pos: 26.5,-1.5 parent: 2 type: Transform - - uid: 22808 + - uid: 22849 components: - rot: 1.5707963267948966 rad pos: 26.5,3.5 parent: 2 type: Transform - - uid: 22809 + - uid: 22850 components: - rot: 3.141592653589793 rad pos: 5.5,1.5 parent: 2 type: Transform - - uid: 22810 + - uid: 22851 components: - pos: 12.5,0.5 parent: 2 type: Transform - - uid: 22811 + - uid: 22852 components: - rot: 3.141592653589793 rad pos: 21.5,3.5 parent: 2 type: Transform - - uid: 22812 + - uid: 22853 components: - rot: 1.5707963267948966 rad pos: 12.5,1.5 parent: 2 type: Transform - - uid: 22813 + - uid: 22854 components: - rot: -1.5707963267948966 rad pos: 21.5,-1.5 parent: 2 type: Transform - - uid: 22814 + - uid: 22855 components: - rot: 1.5707963267948966 rad pos: 29.5,-19.5 parent: 2 type: Transform - - uid: 22815 + - uid: 22856 components: - rot: 3.141592653589793 rad pos: 21.5,-19.5 parent: 2 type: Transform - - uid: 22816 + - uid: 22857 components: - pos: 32.5,-40.5 parent: 2 type: Transform - - uid: 22817 + - uid: 22858 components: - rot: 3.141592653589793 rad pos: 51.5,19.5 parent: 2 type: Transform - - uid: 22818 + - uid: 22859 components: - rot: 1.5707963267948966 rad pos: 55.5,19.5 parent: 2 type: Transform - - uid: 22819 + - uid: 22860 components: - pos: 59.5,5.5 parent: 2 type: Transform - - uid: 22820 + - uid: 22861 components: - rot: -1.5707963267948966 rad pos: 55.5,5.5 parent: 2 type: Transform - - uid: 22821 + - uid: 22862 components: - rot: 3.141592653589793 rad pos: 55.5,8.5 parent: 2 type: Transform - - uid: 22822 + - uid: 22863 components: - rot: 1.5707963267948966 rad pos: 59.5,8.5 parent: 2 type: Transform - - uid: 22823 + - uid: 22864 components: - rot: 1.5707963267948966 rad pos: 50.5,-10.5 parent: 2 type: Transform - - uid: 22824 + - uid: 22865 components: - pos: 50.5,-6.5 parent: 2 type: Transform - - uid: 22825 + - uid: 22866 components: - rot: -1.5707963267948966 rad pos: 53.5,-9.5 parent: 2 type: Transform - - uid: 22826 + - uid: 22867 components: - rot: 3.141592653589793 rad pos: 53.5,-7.5 parent: 2 type: Transform - - uid: 22827 + - uid: 22868 components: - pos: 61.5,-9.5 parent: 2 type: Transform - - uid: 22828 + - uid: 22869 components: - rot: -1.5707963267948966 rad pos: 67.5,-29.5 @@ -157651,24 +150909,24 @@ entities: missingComponents: - Damageable - Destructible - - uid: 22829 + - uid: 22870 components: - pos: -3.5,17.5 parent: 2 type: Transform - - uid: 22830 + - uid: 22871 components: - rot: 1.5707963267948966 rad pos: -6.5,19.5 parent: 2 type: Transform - - uid: 22831 + - uid: 22872 components: - rot: 3.141592653589793 rad pos: -5.5,19.5 parent: 2 type: Transform - - uid: 22832 + - uid: 22873 components: - rot: 1.5707963267948966 rad pos: -3.5,19.5 @@ -157676,24 +150934,24 @@ entities: type: Transform - proto: RailingCornerSmall entities: - - uid: 22833 + - uid: 22874 components: - pos: 17.5,-85.5 parent: 2 type: Transform - - uid: 22834 + - uid: 22875 components: - rot: 3.141592653589793 rad pos: 13.5,-81.5 parent: 2 type: Transform - - uid: 22835 + - uid: 22876 components: - rot: 1.5707963267948966 rad pos: 17.5,-81.5 parent: 2 type: Transform - - uid: 22836 + - uid: 22877 components: - rot: -1.5707963267948966 rad pos: 13.5,-85.5 @@ -157701,650 +150959,650 @@ entities: type: Transform - proto: RandomArcade entities: - - uid: 22837 + - uid: 22878 components: - pos: 44.5,12.5 parent: 2 type: Transform - - uid: 22838 + - uid: 22879 components: - pos: 45.5,12.5 parent: 2 type: Transform - - uid: 22839 + - uid: 22880 components: - pos: 9.5,34.5 parent: 2 type: Transform - - uid: 22840 + - uid: 22881 components: - pos: 7.5,34.5 parent: 2 type: Transform - - uid: 22841 + - uid: 22882 components: - rot: 3.141592653589793 rad pos: 9.5,30.5 parent: 2 type: Transform - - uid: 22842 + - uid: 22883 components: - rot: 3.141592653589793 rad pos: 7.5,30.5 parent: 2 type: Transform - - uid: 22843 + - uid: 22884 components: - pos: 4.5,-32.5 parent: 2 type: Transform - - uid: 22844 + - uid: 22885 components: - pos: 4.5,-30.5 parent: 2 type: Transform - - uid: 22845 + - uid: 22886 components: - pos: 2.5,-30.5 parent: 2 type: Transform - - uid: 22846 + - uid: 22887 components: - pos: 2.5,-32.5 parent: 2 type: Transform - - uid: 22847 + - uid: 22888 components: - pos: 6.5,-30.5 parent: 2 type: Transform - - uid: 22848 + - uid: 22889 components: - pos: 6.5,-32.5 parent: 2 type: Transform - proto: RandomArtifactSpawner entities: - - uid: 22849 + - uid: 22890 components: - pos: 67.5,-37.5 parent: 2 type: Transform - - uid: 22850 + - uid: 22891 components: - pos: -46.5,65.5 parent: 2 type: Transform - - uid: 22851 + - uid: 22892 components: - pos: 71.5,-28.5 parent: 2 type: Transform - proto: RandomArtifactSpawner20 entities: - - uid: 22852 + - uid: 22893 components: - pos: 50.5,51.5 parent: 2 type: Transform - - uid: 22853 + - uid: 22894 components: - pos: -20.5,-99.5 parent: 2 type: Transform - - uid: 22854 + - uid: 22895 components: - pos: 11.5,53.5 parent: 2 type: Transform - - uid: 22855 + - uid: 22896 components: - pos: -51.5,22.5 parent: 2 type: Transform - - uid: 22856 + - uid: 22897 components: - pos: 78.5,-34.5 parent: 2 type: Transform - proto: RandomDrinkBottle entities: - - uid: 22857 + - uid: 22898 components: - pos: 15.5,13.5 parent: 2 type: Transform - proto: RandomDrinkGlass entities: - - uid: 22858 + - uid: 22899 components: - pos: 15.5,11.5 parent: 2 type: Transform - - uid: 22859 + - uid: 22900 components: - pos: 15.5,11.5 parent: 2 type: Transform - - uid: 22860 + - uid: 22901 components: - pos: 18.5,15.5 parent: 2 type: Transform - - uid: 22861 + - uid: 22902 components: - pos: -8.5,1.5 parent: 2 type: Transform - - uid: 22862 + - uid: 22903 components: - pos: 27.5,-35.5 parent: 2 type: Transform - - uid: 22863 + - uid: 22904 components: - pos: 27.5,-37.5 parent: 2 type: Transform - - uid: 22864 + - uid: 22905 components: - pos: 22.5,-38.5 parent: 2 type: Transform - proto: RandomFoodBakedSingle entities: - - uid: 22865 + - uid: 22906 components: - pos: 2.5,0.5 parent: 2 type: Transform - - uid: 22866 + - uid: 22907 components: - pos: -4.5,1.5 parent: 2 type: Transform - - uid: 22867 + - uid: 22908 components: - pos: -8.5,0.5 parent: 2 type: Transform - proto: RandomFoodMeal entities: - - uid: 22868 + - uid: 22909 components: - pos: 25.5,-68.5 parent: 2 type: Transform - proto: RandomFoodSingle entities: - - uid: 22869 + - uid: 22910 components: - pos: 11.5,7.5 parent: 2 type: Transform - - uid: 22870 + - uid: 22911 components: - pos: 67.5,10.5 parent: 2 type: Transform - proto: RandomInstruments entities: - - uid: 22871 + - uid: 22912 components: - pos: -0.5,-8.5 parent: 2 type: Transform - - uid: 22872 + - uid: 22913 components: - pos: 54.5,-28.5 parent: 2 type: Transform - proto: RandomPainting entities: - - uid: 22873 + - uid: 22914 components: - pos: 49.5,48.5 parent: 2 type: Transform - proto: RandomPosterAny entities: - - uid: 22874 + - uid: 22915 components: - pos: -52.5,-61.5 parent: 2 type: Transform - - uid: 22875 + - uid: 22916 components: - pos: -55.5,-57.5 parent: 2 type: Transform - - uid: 22876 + - uid: 22917 components: - pos: -57.5,-57.5 parent: 2 type: Transform - proto: RandomPosterContraband entities: - - uid: 22877 + - uid: 22918 components: - pos: 7.5,-68.5 parent: 2 type: Transform - - uid: 22878 + - uid: 22919 components: - pos: -30.5,-45.5 parent: 2 type: Transform - - uid: 22879 + - uid: 22920 components: - pos: -24.5,-50.5 parent: 2 type: Transform - - uid: 22880 + - uid: 22921 components: - pos: -26.5,-50.5 parent: 2 type: Transform - - uid: 22881 + - uid: 22922 components: - pos: -5.5,-94.5 parent: 2 type: Transform - - uid: 22882 + - uid: 22923 components: - pos: -36.5,-92.5 parent: 2 type: Transform - - uid: 22883 + - uid: 22924 components: - pos: -48.5,-73.5 parent: 2 type: Transform - - uid: 22884 + - uid: 22925 components: - pos: -41.5,-65.5 parent: 2 type: Transform - - uid: 22885 + - uid: 22926 components: - pos: -39.5,-88.5 parent: 2 type: Transform - - uid: 22886 + - uid: 22927 components: - pos: -20.5,-94.5 parent: 2 type: Transform - - uid: 22887 + - uid: 22928 components: - pos: -29.5,-53.5 parent: 2 type: Transform - - uid: 22888 + - uid: 22929 components: - pos: -11.5,-99.5 parent: 2 type: Transform - - uid: 22889 + - uid: 22930 components: - pos: -27.5,-95.5 parent: 2 type: Transform - - uid: 22890 + - uid: 22931 components: - pos: -15.5,14.5 parent: 2 type: Transform - - uid: 22891 + - uid: 22932 components: - pos: -9.5,14.5 parent: 2 type: Transform - - uid: 22892 + - uid: 22933 components: - pos: 11.5,-54.5 parent: 2 type: Transform - - uid: 22893 + - uid: 22934 components: - pos: 15.5,-46.5 parent: 2 type: Transform - - uid: 22894 + - uid: 22935 components: - pos: 11.5,-48.5 parent: 2 type: Transform - - uid: 22895 + - uid: 22936 components: - pos: -24.5,-43.5 parent: 2 type: Transform - - uid: 22896 + - uid: 22937 components: - pos: -25.5,-37.5 parent: 2 type: Transform - - uid: 22897 + - uid: 22938 components: - pos: -13.5,-32.5 parent: 2 type: Transform - - uid: 22898 + - uid: 22939 components: - pos: -15.5,-30.5 parent: 2 type: Transform - - uid: 22899 + - uid: 22940 components: - pos: 16.5,-49.5 parent: 2 type: Transform - - uid: 22900 + - uid: 22941 components: - pos: 11.5,-48.5 parent: 2 type: Transform - - uid: 22901 + - uid: 22942 components: - pos: 12.5,-54.5 parent: 2 type: Transform - - uid: 22902 + - uid: 22943 components: - pos: 13.5,-63.5 parent: 2 type: Transform - - uid: 22903 + - uid: 22944 components: - pos: 41.5,-50.5 parent: 2 type: Transform - - uid: 22904 + - uid: 22945 components: - pos: 37.5,-47.5 parent: 2 type: Transform - - uid: 22905 + - uid: 22946 components: - pos: 61.5,-16.5 parent: 2 type: Transform - - uid: 22906 + - uid: 22947 components: - pos: 55.5,1.5 parent: 2 type: Transform - - uid: 22907 + - uid: 22948 components: - pos: 54.5,30.5 parent: 2 type: Transform - - uid: 22908 + - uid: 22949 components: - pos: 52.5,30.5 parent: 2 type: Transform - - uid: 22909 + - uid: 22950 components: - pos: 59.5,30.5 parent: 2 type: Transform - - uid: 22910 + - uid: 22951 components: - pos: 60.5,27.5 parent: 2 type: Transform - - uid: 22911 + - uid: 22952 components: - pos: 12.5,-13.5 parent: 2 type: Transform - - uid: 22912 + - uid: 22953 components: - pos: 8.5,-13.5 parent: 2 type: Transform - - uid: 22913 + - uid: 22954 components: - pos: -9.5,-94.5 parent: 2 type: Transform - - uid: 22914 + - uid: 22955 components: - pos: -17.5,-95.5 parent: 2 type: Transform - - uid: 22915 + - uid: 22956 components: - pos: -24.5,-94.5 parent: 2 type: Transform - - uid: 22916 + - uid: 22957 components: - pos: -11.5,63.5 parent: 2 type: Transform - - uid: 22917 + - uid: 22958 components: - pos: 53.5,-66.5 parent: 2 type: Transform - - uid: 22918 + - uid: 22959 components: - pos: 6.5,-28.5 parent: 2 type: Transform - - uid: 22919 + - uid: 22960 components: - pos: 1.5,-29.5 parent: 2 type: Transform - - uid: 22920 + - uid: 22961 components: - pos: 52.5,-34.5 parent: 2 type: Transform - - uid: 22921 + - uid: 22962 components: - pos: 59.5,-27.5 parent: 2 type: Transform - - uid: 22922 + - uid: 22963 components: - pos: 44.5,-32.5 parent: 2 type: Transform - - uid: 22923 + - uid: 22964 components: - pos: 69.5,-62.5 parent: 2 type: Transform - - uid: 22924 + - uid: 22965 components: - pos: 58.5,-61.5 parent: 2 type: Transform - - uid: 22925 + - uid: 22966 components: - pos: 57.5,-67.5 parent: 2 type: Transform - - uid: 22926 + - uid: 22967 components: - pos: 48.5,-64.5 parent: 2 type: Transform - - uid: 22927 + - uid: 22968 components: - pos: -29.5,-62.5 parent: 2 type: Transform - - uid: 22928 + - uid: 22969 components: - rot: 3.141592653589793 rad pos: 15.5,-78.5 parent: 2 type: Transform - - uid: 22929 + - uid: 22970 components: - rot: 3.141592653589793 rad pos: 15.5,-88.5 parent: 2 type: Transform - - uid: 22930 + - uid: 22971 components: - pos: 4.5,-72.5 parent: 2 type: Transform - proto: RandomPosterLegit entities: - - uid: 22931 + - uid: 22972 components: - pos: -40.5,-7.5 parent: 2 type: Transform - - uid: 22932 + - uid: 22973 components: - pos: -24.5,14.5 parent: 2 type: Transform - - uid: 22933 + - uid: 22974 components: - pos: -21.5,-40.5 parent: 2 type: Transform - - uid: 22934 + - uid: 22975 components: - rot: 3.141592653589793 rad pos: -19.5,32.5 parent: 2 type: Transform - - uid: 22935 + - uid: 22976 components: - rot: 3.141592653589793 rad pos: -13.5,35.5 parent: 2 type: Transform - - uid: 22936 + - uid: 22977 components: - rot: 3.141592653589793 rad pos: -8.5,47.5 parent: 2 type: Transform - - uid: 22937 + - uid: 22978 components: - rot: 3.141592653589793 rad pos: 23.5,-74.5 parent: 2 type: Transform - - uid: 22938 + - uid: 22979 components: - pos: 50.5,-80.5 parent: 2 type: Transform - - uid: 22939 + - uid: 22980 components: - pos: 49.5,-70.5 parent: 2 type: Transform - - uid: 22940 + - uid: 22981 components: - rot: 3.141592653589793 rad pos: -1.5,55.5 parent: 2 type: Transform - - uid: 22941 + - uid: 22982 components: - rot: 3.141592653589793 rad pos: -7.5,60.5 parent: 2 type: Transform - - uid: 22942 + - uid: 22983 components: - rot: 3.141592653589793 rad pos: -5.5,60.5 parent: 2 type: Transform - - uid: 22943 + - uid: 22984 components: - rot: 3.141592653589793 rad pos: -14.5,58.5 parent: 2 type: Transform - - uid: 22944 + - uid: 22985 components: - rot: 3.141592653589793 rad pos: -20.5,57.5 parent: 2 type: Transform - - uid: 22945 + - uid: 22986 components: - rot: 3.141592653589793 rad pos: -23.5,60.5 parent: 2 type: Transform - - uid: 22946 + - uid: 22987 components: - rot: 3.141592653589793 rad pos: -23.5,67.5 parent: 2 type: Transform - - uid: 22947 + - uid: 22988 components: - rot: 3.141592653589793 rad pos: -11.5,65.5 parent: 2 type: Transform - - uid: 22948 + - uid: 22989 components: - pos: 2.5,-28.5 parent: 2 type: Transform - - uid: 22949 + - uid: 22990 components: - pos: 32.5,-91.5 parent: 2 type: Transform - - uid: 22950 + - uid: 22991 components: - pos: 66.5,-62.5 parent: 2 type: Transform - - uid: 22951 + - uid: 22992 components: - pos: 34.5,-57.5 parent: 2 type: Transform - - uid: 22952 + - uid: 22993 components: - pos: 41.5,-65.5 parent: 2 type: Transform - - uid: 22953 + - uid: 22994 components: - pos: -44.5,12.5 parent: 2 type: Transform - - uid: 22954 + - uid: 22995 components: - pos: 28.5,-79.5 parent: 2 type: Transform - - uid: 22955 + - uid: 22996 components: - rot: 3.141592653589793 rad pos: 31.5,-70.5 parent: 2 type: Transform - - uid: 22956 + - uid: 22997 components: - pos: 5.5,-75.5 parent: 2 type: Transform - proto: RandomSnacks entities: - - uid: 22957 + - uid: 22998 components: - rot: -1.5707963267948966 rad pos: 37.5,-50.5 @@ -158352,416 +151610,416 @@ entities: type: Transform - proto: RandomSoap entities: - - uid: 22958 + - uid: 22999 components: - pos: -6.5,-68.5 parent: 2 type: Transform - - uid: 22959 + - uid: 23000 components: - pos: -50.5,62.5 parent: 2 type: Transform - - uid: 22960 + - uid: 23001 components: - pos: -56.5,-62.5 parent: 2 type: Transform - proto: RandomSpawner entities: - - uid: 22961 + - uid: 23002 components: - pos: 34.5,15.5 parent: 2 type: Transform - - uid: 22962 + - uid: 23003 components: - pos: 16.5,-65.5 parent: 2 type: Transform - - uid: 22963 + - uid: 23004 components: - pos: -5.5,-26.5 parent: 2 type: Transform - - uid: 22964 + - uid: 23005 components: - pos: 25.5,7.5 parent: 2 type: Transform - - uid: 22965 + - uid: 23006 components: - pos: -6.5,-74.5 parent: 2 type: Transform - - uid: 22966 + - uid: 23007 components: - pos: 35.5,-72.5 parent: 2 type: Transform - - uid: 22967 + - uid: 23008 components: - pos: 22.5,17.5 parent: 2 type: Transform - - uid: 22968 + - uid: 23009 components: - pos: 5.5,13.5 parent: 2 type: Transform - - uid: 22969 + - uid: 23010 components: - pos: 6.5,15.5 parent: 2 type: Transform - - uid: 22970 + - uid: 23011 components: - pos: 17.5,0.5 parent: 2 type: Transform - - uid: 22971 + - uid: 23012 components: - pos: 33.5,0.5 parent: 2 type: Transform - - uid: 22972 + - uid: 23013 components: - pos: 32.5,-2.5 parent: 2 type: Transform - - uid: 22973 + - uid: 23014 components: - pos: 26.5,-11.5 parent: 2 type: Transform - - uid: 22974 + - uid: 23015 components: - pos: -5.5,-32.5 parent: 2 type: Transform - - uid: 22975 + - uid: 23016 components: - pos: -2.5,-46.5 parent: 2 type: Transform - - uid: 22976 + - uid: 23017 components: - pos: 35.5,-17.5 parent: 2 type: Transform - - uid: 22977 + - uid: 23018 components: - pos: 49.5,32.5 parent: 2 type: Transform - - uid: 22978 + - uid: 23019 components: - pos: 49.5,33.5 parent: 2 type: Transform - - uid: 22979 + - uid: 23020 components: - pos: 50.5,32.5 parent: 2 type: Transform - - uid: 22980 + - uid: 23021 components: - pos: 48.5,32.5 parent: 2 type: Transform - - uid: 22981 + - uid: 23022 components: - pos: 50.5,33.5 parent: 2 type: Transform - - uid: 22982 + - uid: 23023 components: - pos: 54.5,-12.5 parent: 2 type: Transform - - uid: 22983 + - uid: 23024 components: - pos: 52.5,-6.5 parent: 2 type: Transform - - uid: 22984 + - uid: 23025 components: - pos: 52.5,0.5 parent: 2 type: Transform - - uid: 22985 + - uid: 23026 components: - pos: 50.5,-45.5 parent: 2 type: Transform - - uid: 22986 + - uid: 23027 components: - pos: 42.5,-49.5 parent: 2 type: Transform - - uid: 22987 + - uid: 23028 components: - pos: -4.5,-0.5 parent: 2 type: Transform - - uid: 22988 + - uid: 23029 components: - pos: 7.5,2.5 parent: 2 type: Transform - - uid: 22989 + - uid: 23030 components: - pos: 17.5,-41.5 parent: 2 type: Transform - - uid: 22990 + - uid: 23031 components: - pos: -7.5,-53.5 parent: 2 type: Transform - - uid: 22991 + - uid: 23032 components: - rot: 3.141592653589793 rad pos: 29.5,-72.5 parent: 2 type: Transform - - uid: 22992 + - uid: 23033 components: - pos: -37.5,-6.5 parent: 2 type: Transform - - uid: 22993 + - uid: 23034 components: - pos: -25.5,-67.5 parent: 2 type: Transform - - uid: 22994 + - uid: 23035 components: - pos: -24.5,-53.5 parent: 2 type: Transform - - uid: 22995 + - uid: 23036 components: - pos: -26.5,-46.5 parent: 2 type: Transform - - uid: 22996 + - uid: 23037 components: - pos: -20.5,-29.5 parent: 2 type: Transform - - uid: 22997 + - uid: 23038 components: - pos: -32.5,-23.5 parent: 2 type: Transform - - uid: 22998 + - uid: 23039 components: - pos: -23.5,-13.5 parent: 2 type: Transform - - uid: 22999 + - uid: 23040 components: - pos: -53.5,-18.5 parent: 2 type: Transform - - uid: 23000 + - uid: 23041 components: - pos: -32.5,-34.5 parent: 2 type: Transform - - uid: 23001 + - uid: 23042 components: - pos: -33.5,-46.5 parent: 2 type: Transform - - uid: 23002 + - uid: 23043 components: - pos: -37.5,-76.5 parent: 2 type: Transform - - uid: 23003 + - uid: 23044 components: - pos: -46.5,-78.5 parent: 2 type: Transform - - uid: 23004 + - uid: 23045 components: - pos: -45.5,-73.5 parent: 2 type: Transform - - uid: 23005 + - uid: 23046 components: - pos: -52.5,-74.5 parent: 2 type: Transform - - uid: 23006 + - uid: 23047 components: - pos: -45.5,-28.5 parent: 2 type: Transform - - uid: 23007 + - uid: 23048 components: - pos: -57.5,-33.5 parent: 2 type: Transform - - uid: 23008 + - uid: 23049 components: - pos: -31.5,-51.5 parent: 2 type: Transform - - uid: 23009 + - uid: 23050 components: - rot: 3.141592653589793 rad pos: -47.5,11.5 parent: 2 type: Transform - - uid: 23010 + - uid: 23051 components: - rot: 3.141592653589793 rad pos: -45.5,6.5 parent: 2 type: Transform - - uid: 23011 + - uid: 23052 components: - rot: 3.141592653589793 rad pos: -46.5,3.5 parent: 2 type: Transform - - uid: 23012 + - uid: 23053 components: - rot: 3.141592653589793 rad pos: -34.5,0.5 parent: 2 type: Transform - - uid: 23013 + - uid: 23054 components: - rot: 3.141592653589793 rad pos: 25.5,-71.5 parent: 2 type: Transform - - uid: 23014 + - uid: 23055 components: - rot: 3.141592653589793 rad pos: 17.5,-84.5 parent: 2 type: Transform - - uid: 23015 + - uid: 23056 components: - pos: 48.5,33.5 parent: 2 type: Transform - - uid: 23016 + - uid: 23057 components: - pos: 22.5,7.5 parent: 2 type: Transform - - uid: 23017 + - uid: 23058 components: - pos: 26.5,-18.5 parent: 2 type: Transform - - uid: 23018 + - uid: 23059 components: - rot: -1.5707963267948966 rad pos: 14.5,-27.5 parent: 2 type: Transform - - uid: 23019 + - uid: 23060 components: - pos: -15.5,36.5 parent: 2 type: Transform - - uid: 23020 + - uid: 23061 components: - pos: -19.5,26.5 parent: 2 type: Transform - - uid: 23021 + - uid: 23062 components: - pos: -17.5,44.5 parent: 2 type: Transform - - uid: 23022 + - uid: 23063 components: - pos: -14.5,45.5 parent: 2 type: Transform - - uid: 23023 + - uid: 23064 components: - pos: 0.5,32.5 parent: 2 type: Transform - - uid: 23024 + - uid: 23065 components: - pos: 53.5,36.5 parent: 2 type: Transform - - uid: 23025 + - uid: 23066 components: - pos: 65.5,22.5 parent: 2 type: Transform - - uid: 23026 + - uid: 23067 components: - pos: -23.5,-98.5 parent: 2 type: Transform - - uid: 23027 + - uid: 23068 components: - pos: -33.5,-97.5 parent: 2 type: Transform - - uid: 23028 + - uid: 23069 components: - pos: -41.5,-89.5 parent: 2 type: Transform - - uid: 23029 + - uid: 23070 components: - pos: -43.5,-91.5 parent: 2 type: Transform - - uid: 23030 + - uid: 23071 components: - pos: -10.5,-97.5 parent: 2 type: Transform - - uid: 23031 + - uid: 23072 components: - pos: -8.5,-85.5 parent: 2 type: Transform - - uid: 23032 + - uid: 23073 components: - rot: 3.141592653589793 rad pos: 29.5,-81.5 parent: 2 type: Transform - - uid: 23033 + - uid: 23074 components: - rot: 3.141592653589793 rad pos: 30.5,-84.5 parent: 2 type: Transform - - uid: 23034 + - uid: 23075 components: - rot: 3.141592653589793 rad pos: 49.5,-88.5 parent: 2 type: Transform - - uid: 23035 + - uid: 23076 components: - rot: 3.141592653589793 rad pos: 48.5,-80.5 parent: 2 type: Transform - - uid: 23036 + - uid: 23077 components: - pos: 13.5,7.5 parent: 2 type: Transform - - uid: 23037 + - uid: 23078 components: - rot: 3.141592653589793 rad pos: 49.5,-73.5 @@ -158769,407 +152027,407 @@ entities: type: Transform - proto: RCD entities: - - uid: 23038 + - uid: 23079 components: - pos: -35.581818,-15.369191 parent: 2 type: Transform - proto: RCDAmmo entities: - - uid: 23039 + - uid: 23080 components: - pos: -35.753693,-15.681691 parent: 2 type: Transform - proto: ReagentContainerFlour entities: - - uid: 23040 + - uid: 23081 components: - pos: 2.337051,6.9047713 parent: 2 type: Transform - - uid: 23041 + - uid: 23082 components: - pos: 2.696426,6.7797713 parent: 2 type: Transform - - uid: 23042 + - uid: 23083 components: - pos: 2.399551,6.5610213 parent: 2 type: Transform - - uid: 23043 + - uid: 23084 components: - pos: 54.086075,18.83411 parent: 2 type: Transform - - uid: 23044 + - uid: 23085 components: - pos: 53.9767,18.568485 parent: 2 type: Transform - - uid: 23045 + - uid: 23086 components: - pos: 54.2892,18.568485 parent: 2 type: Transform - proto: ReagentContainerRice entities: - - uid: 23046 + - uid: 23087 components: - pos: -22.276304,44.96307 parent: 2 type: Transform - - uid: 23047 + - uid: 23088 components: - pos: -22.620054,44.759945 parent: 2 type: Transform - proto: ReagentContainerSugar entities: - - uid: 23048 + - uid: 23089 components: - pos: 4.6055,7.306335 parent: 2 type: Transform - proto: Recycler entities: - - uid: 23049 + - uid: 23090 components: - rot: 1.5707963267948966 rad pos: 17.5,-55.5 parent: 2 type: Transform - links: - - 25518 + - 25598 type: DeviceLinkSink - proto: ReinforcedPlasmaWindow entities: - - uid: 23050 + - uid: 23091 components: - pos: -42.5,-37.5 parent: 2 type: Transform - - uid: 23051 + - uid: 23092 components: - rot: -1.5707963267948966 rad pos: -77.5,-43.5 parent: 2 type: Transform - - uid: 23052 + - uid: 23093 components: - rot: -1.5707963267948966 rad pos: -76.5,-43.5 parent: 2 type: Transform - - uid: 23053 + - uid: 23094 components: - rot: -1.5707963267948966 rad pos: -75.5,-43.5 parent: 2 type: Transform - - uid: 23054 + - uid: 23095 components: - rot: -1.5707963267948966 rad pos: -74.5,-42.5 parent: 2 type: Transform - - uid: 23055 + - uid: 23096 components: - rot: 3.141592653589793 rad pos: 28.5,-20.5 parent: 2 type: Transform - - uid: 23056 + - uid: 23097 components: - pos: -23.5,2.5 parent: 2 type: Transform - - uid: 23057 + - uid: 23098 components: - pos: 71.5,-27.5 parent: 2 type: Transform - - uid: 23058 + - uid: 23099 components: - pos: 29.5,26.5 parent: 2 type: Transform - - uid: 23059 + - uid: 23100 components: - pos: -15.5,2.5 parent: 2 type: Transform - - uid: 23060 + - uid: 23101 components: - rot: 3.141592653589793 rad pos: 23.5,-20.5 parent: 2 type: Transform - - uid: 23061 + - uid: 23102 components: - pos: 29.5,24.5 parent: 2 type: Transform - - uid: 23062 + - uid: 23103 components: - rot: 3.141592653589793 rad pos: 25.5,-20.5 parent: 2 type: Transform - - uid: 23063 + - uid: 23104 components: - pos: -19.5,5.5 parent: 2 type: Transform - - uid: 23064 + - uid: 23105 components: - rot: 3.141592653589793 rad pos: 22.5,-20.5 parent: 2 type: Transform - - uid: 23065 + - uid: 23106 components: - rot: 3.141592653589793 rad pos: 27.5,-20.5 parent: 2 type: Transform - - uid: 23066 + - uid: 23107 components: - rot: 3.141592653589793 rad pos: 6.5,-20.5 parent: 2 type: Transform - - uid: 23067 + - uid: 23108 components: - rot: 3.141592653589793 rad pos: 26.5,-20.5 parent: 2 type: Transform - - uid: 23068 + - uid: 23109 components: - rot: 3.141592653589793 rad pos: 24.5,-20.5 parent: 2 type: Transform - - uid: 23069 + - uid: 23110 components: - pos: 66.5,-39.5 parent: 2 type: Transform - - uid: 23070 + - uid: 23111 components: - pos: -41.5,-35.5 parent: 2 type: Transform - - uid: 23071 + - uid: 23112 components: - pos: -41.5,-34.5 parent: 2 type: Transform - - uid: 23072 + - uid: 23113 components: - pos: -56.5,-11.5 parent: 2 type: Transform - - uid: 23073 + - uid: 23114 components: - pos: -56.5,-12.5 parent: 2 type: Transform - - uid: 23074 + - uid: 23115 components: - pos: -56.5,-13.5 parent: 2 type: Transform - - uid: 23075 + - uid: 23116 components: - pos: -56.5,-14.5 parent: 2 type: Transform - - uid: 23076 + - uid: 23117 components: - pos: -68.5,-22.5 parent: 2 type: Transform - - uid: 23077 + - uid: 23118 components: - pos: -67.5,-22.5 parent: 2 type: Transform - - uid: 23078 + - uid: 23119 components: - pos: -66.5,-22.5 parent: 2 type: Transform - - uid: 23079 + - uid: 23120 components: - pos: -65.5,-22.5 parent: 2 type: Transform - - uid: 23080 + - uid: 23121 components: - pos: -64.5,-22.5 parent: 2 type: Transform - - uid: 23081 + - uid: 23122 components: - pos: -47.5,-54.5 parent: 2 type: Transform - - uid: 23082 + - uid: 23123 components: - pos: -47.5,-50.5 parent: 2 type: Transform - - uid: 23083 + - uid: 23124 components: - pos: -47.5,-52.5 parent: 2 type: Transform - - uid: 23084 + - uid: 23125 components: - pos: -47.5,-48.5 parent: 2 type: Transform - - uid: 23085 + - uid: 23126 components: - pos: -47.5,-46.5 parent: 2 type: Transform - - uid: 23086 + - uid: 23127 components: - pos: -47.5,-44.5 parent: 2 type: Transform - - uid: 23087 + - uid: 23128 components: - pos: -47.5,-42.5 parent: 2 type: Transform - - uid: 23088 + - uid: 23129 components: - rot: 1.5707963267948966 rad pos: -52.5,-85.5 parent: 2 type: Transform - - uid: 23089 + - uid: 23130 components: - rot: 1.5707963267948966 rad pos: -52.5,-89.5 parent: 2 type: Transform - - uid: 23090 + - uid: 23131 components: - pos: -49.5,-87.5 parent: 2 type: Transform - - uid: 23091 + - uid: 23132 components: - pos: -50.5,-87.5 parent: 2 type: Transform - - uid: 23092 + - uid: 23133 components: - pos: -0.5,60.5 parent: 2 type: Transform - - uid: 23093 + - uid: 23134 components: - pos: -2.5,60.5 parent: 2 type: Transform - - uid: 23094 + - uid: 23135 components: - pos: 5.5,69.5 parent: 2 type: Transform - - uid: 23095 + - uid: 23136 components: - pos: -8.5,69.5 parent: 2 type: Transform - - uid: 23096 + - uid: 23137 components: - pos: -56.5,-15.5 parent: 2 type: Transform - - uid: 23097 + - uid: 23138 components: - pos: 68.5,-39.5 parent: 2 type: Transform - - uid: 23098 + - uid: 23139 components: - pos: 73.5,-30.5 parent: 2 type: Transform - - uid: 23099 + - uid: 23140 components: - pos: 73.5,-27.5 parent: 2 type: Transform - - uid: 23100 + - uid: 23141 components: - pos: 69.5,-36.5 parent: 2 type: Transform - - uid: 23101 + - uid: 23142 components: - pos: 69.5,-38.5 parent: 2 type: Transform - - uid: 23102 + - uid: 23143 components: - pos: -44.5,-37.5 parent: 2 type: Transform - - uid: 23103 + - uid: 23144 components: - pos: 71.5,-30.5 parent: 2 type: Transform - - uid: 23104 + - uid: 23145 components: - rot: 3.141592653589793 rad pos: 6.5,-22.5 parent: 2 type: Transform - - uid: 23105 + - uid: 23146 components: - rot: 3.141592653589793 rad pos: 6.5,-23.5 parent: 2 type: Transform - - uid: 23106 + - uid: 23147 components: - pos: 9.5,-18.5 parent: 2 type: Transform - - uid: 23107 + - uid: 23148 components: - rot: 3.141592653589793 rad pos: 6.5,-19.5 parent: 2 type: Transform - - uid: 23108 + - uid: 23149 components: - pos: 67.5,-32.5 parent: 2 type: Transform - - uid: 23109 + - uid: 23150 components: - rot: -1.5707963267948966 rad pos: -75.5,-39.5 parent: 2 type: Transform - - uid: 23110 + - uid: 23151 components: - rot: -1.5707963267948966 rad pos: -74.5,-40.5 parent: 2 type: Transform - - uid: 23111 + - uid: 23152 components: - rot: -1.5707963267948966 rad pos: -77.5,-39.5 @@ -159177,3005 +152435,3052 @@ entities: type: Transform - proto: ReinforcedWindow entities: - - uid: 23112 + - uid: 23153 + components: + - pos: -51.5,-21.5 + parent: 2 + type: Transform + - uid: 23154 components: - rot: -1.5707963267948966 rad pos: 26.5,-40.5 parent: 2 type: Transform - - uid: 23113 + - uid: 23155 components: - rot: 3.141592653589793 rad pos: 20.5,-34.5 parent: 2 type: Transform - - uid: 23114 + - uid: 23156 components: - pos: -61.5,-35.5 parent: 2 type: Transform - - uid: 23115 + - uid: 23157 components: - rot: 1.5707963267948966 rad pos: -13.5,9.5 parent: 2 type: Transform - - uid: 23116 + - uid: 23158 components: - rot: 1.5707963267948966 rad pos: -64.5,-39.5 parent: 2 type: Transform - - uid: 23117 + - uid: 23159 components: - rot: 1.5707963267948966 rad pos: -74.5,-35.5 parent: 2 type: Transform - - uid: 23118 + - uid: 23160 components: - rot: 1.5707963267948966 rad pos: -74.5,-34.5 parent: 2 type: Transform - - uid: 23119 + - uid: 23161 components: - rot: 1.5707963267948966 rad pos: -64.5,-42.5 parent: 2 type: Transform - - uid: 23120 + - uid: 23162 components: - rot: 1.5707963267948966 rad pos: -64.5,-41.5 parent: 2 type: Transform - - uid: 23121 + - uid: 23163 components: - rot: 1.5707963267948966 rad pos: -64.5,-40.5 parent: 2 type: Transform - - uid: 23122 + - uid: 23164 components: - pos: -64.5,-43.5 parent: 2 type: Transform - - uid: 23123 + - uid: 23165 components: - pos: -76.5,-32.5 parent: 2 type: Transform - - uid: 23124 + - uid: 23166 components: - rot: 1.5707963267948966 rad pos: -7.5,13.5 parent: 2 type: Transform - - uid: 23125 + - uid: 23167 components: - rot: 1.5707963267948966 rad pos: 40.5,-74.5 parent: 2 type: Transform - - uid: 23126 + - uid: 23168 components: - rot: 1.5707963267948966 rad pos: 39.5,-74.5 parent: 2 type: Transform - - uid: 23127 + - uid: 23169 components: - rot: 1.5707963267948966 rad pos: 38.5,-74.5 parent: 2 type: Transform - - uid: 23128 + - uid: 23170 components: - rot: 3.141592653589793 rad pos: 5.5,18.5 parent: 2 type: Transform - - uid: 23129 + - uid: 23171 components: - rot: -1.5707963267948966 rad pos: -46.5,45.5 parent: 2 type: Transform - - uid: 23130 + - uid: 23172 components: - rot: -1.5707963267948966 rad pos: -47.5,45.5 parent: 2 type: Transform - - uid: 23131 + - uid: 23173 components: - pos: 69.5,-42.5 parent: 2 type: Transform - - uid: 23132 + - uid: 23174 components: - pos: 68.5,-42.5 parent: 2 type: Transform - - uid: 23133 + - uid: 23175 components: - pos: 78.5,-45.5 parent: 2 type: Transform - - uid: 23134 + - uid: 23176 components: - pos: 3.5,-39.5 parent: 2 type: Transform - - uid: 23135 + - uid: 23177 components: - pos: 70.5,-42.5 parent: 2 type: Transform - - uid: 23136 + - uid: 23178 components: - rot: 3.141592653589793 rad pos: 28.5,-62.5 parent: 2 type: Transform - - uid: 23137 + - uid: 23179 components: - rot: 3.141592653589793 rad pos: 31.5,-64.5 parent: 2 type: Transform - - uid: 23138 + - uid: 23180 components: - rot: 3.141592653589793 rad pos: 22.5,-55.5 parent: 2 type: Transform - - uid: 23139 + - uid: 23181 components: - rot: 3.141592653589793 rad pos: 33.5,-63.5 parent: 2 type: Transform - - uid: 23140 + - uid: 23182 components: - pos: 32.5,-9.5 parent: 2 type: Transform - - uid: 23141 + - uid: 23183 components: - pos: 3.5,-28.5 parent: 2 type: Transform - - uid: 23142 + - uid: 23184 components: - rot: -1.5707963267948966 rad pos: -15.5,-77.5 parent: 2 type: Transform - - uid: 23143 + - uid: 23185 components: - pos: 19.5,-15.5 parent: 2 type: Transform - - uid: 23144 + - uid: 23186 components: - pos: -18.5,-89.5 parent: 2 type: Transform - - uid: 23145 + - uid: 23187 components: - rot: 3.141592653589793 rad pos: 31.5,-33.5 parent: 2 type: Transform - - uid: 23146 + - uid: 23188 components: - pos: 7.5,-59.5 parent: 2 type: Transform - - uid: 23147 + - uid: 23189 components: - rot: 3.141592653589793 rad pos: -9.5,-76.5 parent: 2 type: Transform - - uid: 23148 + - uid: 23190 components: - rot: -1.5707963267948966 rad pos: 35.5,4.5 parent: 2 type: Transform - - uid: 23149 + - uid: 23191 components: - pos: -20.5,-91.5 parent: 2 type: Transform - - uid: 23150 + - uid: 23192 components: - pos: -1.5,-35.5 parent: 2 type: Transform - - uid: 23151 + - uid: 23193 components: - rot: 1.5707963267948966 rad pos: 39.5,52.5 parent: 2 type: Transform - - uid: 23152 + - uid: 23194 components: - rot: 1.5707963267948966 rad pos: 23.5,-46.5 parent: 2 type: Transform - - uid: 23153 + - uid: 23195 components: - pos: -17.5,-1.5 parent: 2 type: Transform - - uid: 23154 + - uid: 23196 components: - rot: -1.5707963267948966 rad pos: -13.5,-11.5 parent: 2 type: Transform - - uid: 23155 + - uid: 23197 components: - pos: -45.5,-50.5 parent: 2 type: Transform - - uid: 23156 + - uid: 23198 components: - rot: -1.5707963267948966 rad pos: -14.5,-77.5 parent: 2 type: Transform - - uid: 23157 + - uid: 23199 components: - pos: 20.5,-35.5 parent: 2 type: Transform - - uid: 23158 + - uid: 23200 components: - pos: 20.5,-36.5 parent: 2 type: Transform - - uid: 23159 + - uid: 23201 components: - pos: 43.5,11.5 parent: 2 type: Transform - - uid: 23160 + - uid: 23202 components: - pos: -16.5,-1.5 parent: 2 type: Transform - - uid: 23161 + - uid: 23203 components: - rot: -1.5707963267948966 rad pos: 5.5,-44.5 parent: 2 type: Transform - - uid: 23162 + - uid: 23204 components: - rot: -1.5707963267948966 rad pos: -10.5,-11.5 parent: 2 type: Transform - - uid: 23163 + - uid: 23205 components: - pos: 17.5,18.5 parent: 2 type: Transform - - uid: 23164 + - uid: 23206 components: - pos: -1.5,-32.5 parent: 2 type: Transform - - uid: 23165 + - uid: 23207 components: - pos: 23.5,-12.5 parent: 2 type: Transform - - uid: 23166 + - uid: 23208 components: - pos: -1.5,-34.5 parent: 2 type: Transform - - uid: 23167 + - uid: 23209 components: - rot: -1.5707963267948966 rad pos: 32.5,9.5 parent: 2 type: Transform - - uid: 23168 + - uid: 23210 components: - rot: 3.141592653589793 rad pos: 28.5,13.5 parent: 2 type: Transform - - uid: 23169 + - uid: 23211 components: - pos: 31.5,-38.5 parent: 2 type: Transform - - uid: 23170 + - uid: 23212 components: - pos: 18.5,-38.5 parent: 2 type: Transform - - uid: 23171 + - uid: 23213 components: - rot: 3.141592653589793 rad pos: 10.5,18.5 parent: 2 type: Transform - - uid: 23172 + - uid: 23214 components: - rot: 3.141592653589793 rad pos: 21.5,-55.5 parent: 2 type: Transform - - uid: 23173 + - uid: 23215 components: - rot: 3.141592653589793 rad pos: 33.5,-15.5 parent: 2 type: Transform - - uid: 23174 + - uid: 23216 components: - rot: 3.141592653589793 rad pos: 37.5,-35.5 parent: 2 type: Transform - - uid: 23175 + - uid: 23217 components: - rot: -1.5707963267948966 rad pos: 34.5,9.5 parent: 2 type: Transform - - uid: 23176 + - uid: 23218 components: - pos: 43.5,7.5 parent: 2 type: Transform - - uid: 23177 + - uid: 23219 components: - pos: 23.5,-11.5 parent: 2 type: Transform - - uid: 23178 + - uid: 23220 components: - pos: 35.5,18.5 parent: 2 type: Transform - - uid: 23179 + - uid: 23221 components: - rot: 3.141592653589793 rad pos: 39.5,5.5 parent: 2 type: Transform - - uid: 23180 + - uid: 23222 components: - rot: 3.141592653589793 rad pos: 34.5,13.5 parent: 2 type: Transform - - uid: 23181 + - uid: 23223 components: - rot: 3.141592653589793 rad pos: 31.5,-15.5 parent: 2 type: Transform - - uid: 23182 + - uid: 23224 components: - pos: 37.5,-21.5 parent: 2 type: Transform - - uid: 23183 + - uid: 23225 components: - pos: 37.5,-22.5 parent: 2 type: Transform - - uid: 23184 + - uid: 23226 components: - pos: 43.5,10.5 parent: 2 type: Transform - - uid: 23185 + - uid: 23227 components: - pos: 17.5,-34.5 parent: 2 type: Transform - - uid: 23186 + - uid: 23228 components: - pos: 17.5,-35.5 parent: 2 type: Transform - - uid: 23187 + - uid: 23229 components: - pos: 17.5,-36.5 parent: 2 type: Transform - - uid: 23188 + - uid: 23230 components: - pos: 19.5,-38.5 parent: 2 type: Transform - - uid: 23189 + - uid: 23231 components: - pos: 32.5,-38.5 parent: 2 type: Transform - - uid: 23190 + - uid: 23232 components: - pos: 33.5,-34.5 parent: 2 type: Transform - - uid: 23191 + - uid: 23233 components: - pos: 33.5,-36.5 parent: 2 type: Transform - - uid: 23192 + - uid: 23234 components: - pos: 33.5,-35.5 parent: 2 type: Transform - - uid: 23193 + - uid: 23235 components: - rot: -1.5707963267948966 rad pos: -9.5,-11.5 parent: 2 type: Transform - - uid: 23194 + - uid: 23236 components: - pos: 48.5,-0.5 parent: 2 type: Transform - - uid: 23195 + - uid: 23237 components: - rot: -1.5707963267948966 rad pos: -26.5,-10.5 parent: 2 type: Transform - - uid: 23196 + - uid: 23238 components: - rot: 1.5707963267948966 rad pos: -26.5,-13.5 parent: 2 type: Transform - - uid: 23197 + - uid: 23239 components: - rot: -1.5707963267948966 rad pos: 4.5,-44.5 parent: 2 type: Transform - - uid: 23198 + - uid: 23240 components: - pos: 12.5,-33.5 parent: 2 type: Transform - - uid: 23199 + - uid: 23241 components: - pos: 12.5,-32.5 parent: 2 type: Transform - - uid: 23200 + - uid: 23242 components: - pos: 2.5,-39.5 parent: 2 type: Transform - - uid: 23201 + - uid: 23243 components: - pos: -18.5,-58.5 parent: 2 type: Transform - - uid: 23202 + - uid: 23244 components: - pos: -20.5,-58.5 parent: 2 type: Transform - - uid: 23203 + - uid: 23245 components: - pos: 27.5,22.5 parent: 2 type: Transform - - uid: 23204 + - uid: 23246 components: - pos: -27.5,-89.5 parent: 2 type: Transform - - uid: 23205 + - uid: 23247 components: - pos: -48.5,-81.5 parent: 2 type: Transform - - uid: 23206 + - uid: 23248 components: - pos: -48.5,-82.5 parent: 2 type: Transform - - uid: 23207 + - uid: 23249 components: - pos: 21.5,-15.5 parent: 2 type: Transform - - uid: 23208 + - uid: 23250 components: - pos: -22.5,-3.5 parent: 2 type: Transform - - uid: 23209 + - uid: 23251 components: - pos: -16.5,-3.5 parent: 2 type: Transform - - uid: 23210 + - uid: 23252 components: - pos: 9.5,13.5 parent: 2 type: Transform - - uid: 23211 + - uid: 23253 components: - rot: -1.5707963267948966 rad pos: 27.5,20.5 parent: 2 type: Transform - - uid: 23212 + - uid: 23254 components: - rot: -1.5707963267948966 rad pos: -12.5,-11.5 parent: 2 type: Transform - - uid: 23213 + - uid: 23255 components: - rot: 3.141592653589793 rad pos: 31.5,13.5 parent: 2 type: Transform - - uid: 23214 + - uid: 23256 components: - pos: -24.5,-91.5 parent: 2 type: Transform - - uid: 23215 + - uid: 23257 components: - rot: -1.5707963267948966 rad pos: -0.5,-82.5 parent: 2 type: Transform - - uid: 23216 + - uid: 23258 components: - rot: 3.141592653589793 rad pos: 39.5,8.5 parent: 2 type: Transform - - uid: 23217 + - uid: 23259 components: - pos: 42.5,-28.5 parent: 2 type: Transform - - uid: 23218 + - uid: 23260 components: - pos: 16.5,-68.5 parent: 2 type: Transform - - uid: 23219 + - uid: 23261 components: - rot: 3.141592653589793 rad pos: -7.5,-76.5 parent: 2 type: Transform - - uid: 23220 + - uid: 23262 components: - rot: -1.5707963267948966 rad pos: -8.5,-11.5 parent: 2 type: Transform - - uid: 23221 + - uid: 23263 components: - pos: -27.5,-88.5 parent: 2 type: Transform - - uid: 23222 + - uid: 23264 components: - rot: -1.5707963267948966 rad pos: -26.5,-11.5 parent: 2 type: Transform - - uid: 23223 + - uid: 23265 components: - pos: -1.5,-31.5 parent: 2 type: Transform - - uid: 23224 + - uid: 23266 components: - pos: 1.5,-30.5 parent: 2 type: Transform - - uid: 23225 + - uid: 23267 components: - rot: 3.141592653589793 rad pos: 3.5,-44.5 parent: 2 type: Transform - - uid: 23226 + - uid: 23268 components: - rot: -1.5707963267948966 rad pos: 29.5,9.5 parent: 2 type: Transform - - uid: 23227 + - uid: 23269 components: - rot: -1.5707963267948966 rad pos: 7.5,18.5 parent: 2 type: Transform - - uid: 23228 + - uid: 23270 components: - pos: -21.5,-3.5 parent: 2 type: Transform - - uid: 23229 + - uid: 23271 components: - pos: 37.5,-36.5 parent: 2 type: Transform - - uid: 23230 + - uid: 23272 components: - rot: -1.5707963267948966 rad pos: 1.5,-74.5 parent: 2 type: Transform - - uid: 23231 + - uid: 23273 components: - pos: -29.5,45.5 parent: 2 type: Transform - - uid: 23232 + - uid: 23274 components: - pos: 9.5,14.5 parent: 2 type: Transform - - uid: 23233 + - uid: 23275 components: - pos: -25.5,-91.5 parent: 2 type: Transform - - uid: 23234 + - uid: 23276 components: - pos: -21.5,-91.5 parent: 2 type: Transform - - uid: 23235 + - uid: 23277 components: - rot: -1.5707963267948966 rad pos: 35.5,7.5 parent: 2 type: Transform - - uid: 23236 + - uid: 23278 components: - rot: -1.5707963267948966 rad pos: -31.5,-79.5 parent: 2 type: Transform - - uid: 23237 + - uid: 23279 components: - rot: -1.5707963267948966 rad pos: -31.5,-77.5 parent: 2 type: Transform - - uid: 23238 + - uid: 23280 components: - pos: 15.5,18.5 parent: 2 type: Transform - - uid: 23239 + - uid: 23281 components: - pos: 5.5,-28.5 parent: 2 type: Transform - - uid: 23240 + - uid: 23282 components: - pos: 18.5,-65.5 parent: 2 type: Transform - - uid: 23241 + - uid: 23283 components: - rot: 3.141592653589793 rad pos: 28.5,-63.5 parent: 2 type: Transform - - uid: 23242 + - uid: 23284 components: - pos: -45.5,-49.5 parent: 2 type: Transform - - uid: 23243 + - uid: 23285 components: - pos: 7.5,-61.5 parent: 2 type: Transform - - uid: 23244 + - uid: 23286 components: - rot: 3.141592653589793 rad pos: 12.5,18.5 parent: 2 type: Transform - - uid: 23245 + - uid: 23287 components: - pos: 1.5,-31.5 parent: 2 type: Transform - - uid: 23246 + - uid: 23288 components: - rot: -1.5707963267948966 rad pos: -13.5,37.5 parent: 2 type: Transform - - uid: 23247 + - uid: 23289 components: - pos: 15.5,-68.5 parent: 2 type: Transform - - uid: 23248 + - uid: 23290 components: - rot: 3.141592653589793 rad pos: 30.5,-64.5 parent: 2 type: Transform - - uid: 23249 + - uid: 23291 components: - rot: 3.141592653589793 rad pos: 33.5,-62.5 parent: 2 type: Transform - - uid: 23250 + - uid: 23292 components: - rot: -1.5707963267948966 rad pos: -2.5,-82.5 parent: 2 type: Transform - - uid: 23251 + - uid: 23293 components: - pos: -18.5,-88.5 parent: 2 type: Transform - - uid: 23252 + - uid: 23294 components: - rot: -1.5707963267948966 rad pos: 1.5,-47.5 parent: 2 type: Transform - - uid: 23253 + - uid: 23295 components: - pos: -1.5,-33.5 parent: 2 type: Transform - - uid: 23254 + - uid: 23296 components: - pos: -22.5,-1.5 parent: 2 type: Transform - - uid: 23255 + - uid: 23297 components: - pos: -21.5,-1.5 parent: 2 type: Transform - - uid: 23256 + - uid: 23298 components: - pos: -17.5,-3.5 parent: 2 type: Transform - - uid: 23257 + - uid: 23299 components: - pos: 12.5,-34.5 parent: 2 type: Transform - - uid: 23258 + - uid: 23300 components: - rot: 3.141592653589793 rad pos: 20.5,-55.5 parent: 2 type: Transform - - uid: 23259 + - uid: 23301 components: - pos: 18.5,-66.5 parent: 2 type: Transform - - uid: 23260 + - uid: 23302 components: - pos: 42.5,-23.5 parent: 2 type: Transform - - uid: 23261 + - uid: 23303 components: - pos: 41.5,-28.5 parent: 2 type: Transform - - uid: 23262 + - uid: 23304 components: - pos: 41.5,-23.5 parent: 2 type: Transform - - uid: 23263 + - uid: 23305 components: - pos: -2.5,42.5 parent: 2 type: Transform - - uid: 23264 + - uid: 23306 components: - pos: 6.5,25.5 parent: 2 type: Transform - - uid: 23265 + - uid: 23307 components: - pos: 2.5,25.5 parent: 2 type: Transform - - uid: 23266 + - uid: 23308 components: - pos: 54.5,61.5 parent: 2 type: Transform - - uid: 23267 + - uid: 23309 components: - pos: 18.5,32.5 parent: 2 type: Transform - - uid: 23268 + - uid: 23310 components: - pos: 18.5,33.5 parent: 2 type: Transform - - uid: 23269 + - uid: 23311 components: - rot: -1.5707963267948966 rad pos: 7.5,35.5 parent: 2 type: Transform - - uid: 23270 + - uid: 23312 components: - pos: 4.5,25.5 parent: 2 type: Transform - - uid: 23271 + - uid: 23313 components: - rot: -1.5707963267948966 rad pos: 36.5,24.5 parent: 2 type: Transform - - uid: 23272 + - uid: 23314 components: - rot: -1.5707963267948966 rad pos: 38.5,24.5 parent: 2 type: Transform - - uid: 23273 + - uid: 23315 components: - rot: -1.5707963267948966 rad pos: 40.5,24.5 parent: 2 type: Transform - - uid: 23274 + - uid: 23316 components: - rot: 3.141592653589793 rad pos: 52.5,14.5 parent: 2 type: Transform - - uid: 23275 + - uid: 23317 components: - rot: 3.141592653589793 rad pos: 53.5,14.5 parent: 2 type: Transform - - uid: 23276 + - uid: 23318 components: - rot: 3.141592653589793 rad pos: 54.5,14.5 parent: 2 type: Transform - - uid: 23277 + - uid: 23319 components: - rot: 3.141592653589793 rad pos: 51.5,13.5 parent: 2 type: Transform - - uid: 23278 + - uid: 23320 components: - rot: 3.141592653589793 rad pos: 51.5,11.5 parent: 2 type: Transform - - uid: 23279 + - uid: 23321 components: - rot: 3.141592653589793 rad pos: 52.5,10.5 parent: 2 type: Transform - - uid: 23280 + - uid: 23322 components: - rot: 3.141592653589793 rad pos: 54.5,10.5 parent: 2 type: Transform - - uid: 23281 + - uid: 23323 components: - rot: 3.141592653589793 rad pos: 55.5,11.5 parent: 2 type: Transform - - uid: 23282 + - uid: 23324 components: - rot: 3.141592653589793 rad pos: 55.5,12.5 parent: 2 type: Transform - - uid: 23283 + - uid: 23325 components: - rot: 3.141592653589793 rad pos: 55.5,13.5 parent: 2 type: Transform - - uid: 23284 + - uid: 23326 components: - pos: 46.5,9.5 parent: 2 type: Transform - - uid: 23285 + - uid: 23327 components: - rot: -1.5707963267948966 rad pos: 42.5,24.5 parent: 2 type: Transform - - uid: 23286 + - uid: 23328 components: - rot: -1.5707963267948966 rad pos: 43.5,5.5 parent: 2 type: Transform - - uid: 23287 + - uid: 23329 components: - pos: 24.5,-58.5 parent: 2 type: Transform - - uid: 23288 + - uid: 23330 components: - pos: 24.5,-59.5 parent: 2 type: Transform - - uid: 23289 + - uid: 23331 components: - pos: 66.5,25.5 parent: 2 type: Transform - - uid: 23290 + - uid: 23332 components: - pos: 66.5,23.5 parent: 2 type: Transform - - uid: 23291 + - uid: 23333 components: - pos: 64.5,27.5 parent: 2 type: Transform - - uid: 23292 + - uid: 23334 components: - pos: 62.5,27.5 parent: 2 type: Transform - - uid: 23293 + - uid: 23335 components: - rot: 1.5707963267948966 rad pos: 68.5,-6.5 parent: 2 type: Transform - - uid: 23294 + - uid: 23336 components: - pos: 60.5,-4.5 parent: 2 type: Transform - - uid: 23295 + - uid: 23337 components: - rot: 1.5707963267948966 rad pos: 68.5,-12.5 parent: 2 type: Transform - - uid: 23296 + - uid: 23338 components: - rot: 1.5707963267948966 rad pos: 68.5,-10.5 parent: 2 type: Transform - - uid: 23297 + - uid: 23339 components: - rot: 1.5707963267948966 rad pos: 68.5,-4.5 parent: 2 type: Transform - - uid: 23298 + - uid: 23340 components: - pos: 59.5,-15.5 parent: 2 type: Transform - - uid: 23299 + - uid: 23341 components: - pos: 58.5,-15.5 parent: 2 type: Transform - - uid: 23300 + - uid: 23342 components: - pos: 56.5,-15.5 parent: 2 type: Transform - - uid: 23301 + - uid: 23343 components: - pos: 55.5,-15.5 parent: 2 type: Transform - - uid: 23302 + - uid: 23344 components: - pos: 63.5,-26.5 parent: 2 type: Transform - - uid: 23303 + - uid: 23345 components: - pos: 63.5,-24.5 parent: 2 type: Transform - - uid: 23304 + - uid: 23346 components: - pos: 61.5,-22.5 parent: 2 type: Transform - - uid: 23305 + - uid: 23347 components: - pos: 61.5,-20.5 parent: 2 type: Transform - - uid: 23306 + - uid: 23348 components: - pos: 63.5,-18.5 parent: 2 type: Transform - - uid: 23307 + - uid: 23349 components: - pos: 61.5,-24.5 parent: 2 type: Transform - - uid: 23308 + - uid: 23350 components: - pos: 63.5,-22.5 parent: 2 type: Transform - - uid: 23309 + - uid: 23351 components: - pos: 63.5,-20.5 parent: 2 type: Transform - - uid: 23310 + - uid: 23352 components: - pos: 61.5,-18.5 parent: 2 type: Transform - - uid: 23311 + - uid: 23353 components: - rot: 1.5707963267948966 rad pos: 68.5,-2.5 parent: 2 type: Transform - - uid: 23312 + - uid: 23354 components: - pos: 64.5,-37.5 parent: 2 type: Transform - - uid: 23313 + - uid: 23355 components: - pos: 78.5,-38.5 parent: 2 type: Transform - - uid: 23314 + - uid: 23356 components: - pos: 77.5,-32.5 parent: 2 type: Transform - - uid: 23315 + - uid: 23357 components: - pos: 78.5,-32.5 parent: 2 type: Transform - - uid: 23316 + - uid: 23358 components: - pos: 77.5,-38.5 parent: 2 type: Transform - - uid: 23317 + - uid: 23359 components: - rot: -1.5707963267948966 rad pos: 42.5,-31.5 parent: 2 type: Transform - - uid: 23318 + - uid: 23360 components: - pos: 56.5,-46.5 parent: 2 type: Transform - - uid: 23319 + - uid: 23361 components: - pos: 61.5,-56.5 parent: 2 type: Transform - - uid: 23320 + - uid: 23362 components: - pos: 61.5,-50.5 parent: 2 type: Transform - - uid: 23321 + - uid: 23363 components: - pos: 63.5,-50.5 parent: 2 type: Transform - - uid: 23322 + - uid: 23364 components: - pos: 62.5,-56.5 parent: 2 type: Transform - - uid: 23323 + - uid: 23365 components: - pos: 58.5,-52.5 parent: 2 type: Transform - - uid: 23324 + - uid: 23366 components: - pos: 58.5,-51.5 parent: 2 type: Transform - - uid: 23325 + - uid: 23367 components: - pos: 66.5,-52.5 parent: 2 type: Transform - - uid: 23326 + - uid: 23368 components: - pos: 66.5,-51.5 parent: 2 type: Transform - - uid: 23327 + - uid: 23369 components: - pos: 63.5,-56.5 parent: 2 type: Transform - - uid: 23328 + - uid: 23370 components: - pos: 54.5,-51.5 parent: 2 type: Transform - - uid: 23329 + - uid: 23371 components: - pos: 54.5,-52.5 parent: 2 type: Transform - - uid: 23330 + - uid: 23372 components: - pos: 54.5,-53.5 parent: 2 type: Transform - - uid: 23331 + - uid: 23373 components: - pos: 50.5,-31.5 parent: 2 type: Transform - - uid: 23332 + - uid: 23374 components: - pos: 51.5,-31.5 parent: 2 type: Transform - - uid: 23333 + - uid: 23375 components: - pos: 79.5,-35.5 parent: 2 type: Transform - - uid: 23334 + - uid: 23376 components: - pos: 58.5,-25.5 parent: 2 type: Transform - - uid: 23335 + - uid: 23377 components: - pos: 76.5,-35.5 parent: 2 type: Transform - - uid: 23336 + - uid: 23378 components: - pos: 77.5,-35.5 parent: 2 type: Transform - - uid: 23337 + - uid: 23379 components: - pos: 78.5,-35.5 parent: 2 type: Transform - - uid: 23338 + - uid: 23380 components: - pos: 78.5,-46.5 parent: 2 type: Transform - - uid: 23339 + - uid: 23381 components: - pos: -45.5,-51.5 parent: 2 type: Transform - - uid: 23340 + - uid: 23382 components: - pos: 49.5,-59.5 parent: 2 type: Transform - - uid: 23341 + - uid: 23383 components: - pos: 50.5,-59.5 parent: 2 type: Transform - - uid: 23342 + - uid: 23384 components: - pos: 52.5,-61.5 parent: 2 type: Transform - - uid: 23343 + - uid: 23385 components: - pos: 49.5,-62.5 parent: 2 type: Transform - - uid: 23344 + - uid: 23386 components: - pos: 51.5,-62.5 parent: 2 type: Transform - - uid: 23345 + - uid: 23387 components: - pos: 43.5,-69.5 parent: 2 type: Transform - - uid: 23346 + - uid: 23388 components: - pos: 42.5,-69.5 parent: 2 type: Transform - - uid: 23347 + - uid: 23389 components: - pos: 35.5,-69.5 parent: 2 type: Transform - - uid: 23348 + - uid: 23390 components: - pos: 44.5,-69.5 parent: 2 type: Transform - - uid: 23349 + - uid: 23391 components: - rot: 1.5707963267948966 rad pos: 20.5,-44.5 parent: 2 type: Transform - - uid: 23350 + - uid: 23392 components: - pos: -40.5,-12.5 parent: 2 type: Transform - - uid: 23351 + - uid: 23393 components: - pos: -40.5,-9.5 parent: 2 type: Transform - - uid: 23352 + - uid: 23394 components: - pos: -33.5,-17.5 parent: 2 type: Transform - - uid: 23353 + - uid: 23395 components: - pos: -33.5,-15.5 parent: 2 type: Transform - - uid: 23354 + - uid: 23396 components: - rot: -1.5707963267948966 rad pos: -30.5,-12.5 parent: 2 type: Transform - - uid: 23355 + - uid: 23397 components: - rot: -1.5707963267948966 rad pos: -30.5,-13.5 parent: 2 type: Transform - - uid: 23356 + - uid: 23398 components: - pos: -26.5,-9.5 parent: 2 type: Transform - - uid: 23357 + - uid: 23399 components: - rot: -1.5707963267948966 rad pos: -21.5,-35.5 parent: 2 type: Transform - - uid: 23358 + - uid: 23400 components: - pos: 58.5,-59.5 parent: 2 type: Transform - - uid: 23359 + - uid: 23401 components: - pos: 58.5,-60.5 parent: 2 type: Transform - - uid: 23360 + - uid: 23402 components: - pos: 54.5,-25.5 parent: 2 type: Transform - - uid: 23361 + - uid: 23403 components: - rot: 3.141592653589793 rad pos: 56.5,-55.5 parent: 2 type: Transform - - uid: 23362 + - uid: 23404 components: - rot: 3.141592653589793 rad pos: 59.5,-54.5 parent: 2 type: Transform - - uid: 23363 + - uid: 23405 components: - rot: 3.141592653589793 rad pos: 65.5,-54.5 parent: 2 type: Transform - - uid: 23364 + - uid: 23406 components: - rot: 1.5707963267948966 rad pos: 44.5,-85.5 parent: 2 type: Transform - - uid: 23365 + - uid: 23407 components: - pos: 41.5,-74.5 parent: 2 type: Transform - - uid: 23366 + - uid: 23408 components: - rot: -1.5707963267948966 rad pos: 37.5,-74.5 parent: 2 type: Transform - - uid: 23367 + - uid: 23409 components: - pos: 37.5,-66.5 parent: 2 type: Transform - - uid: 23368 + - uid: 23410 components: - pos: 36.5,-69.5 parent: 2 type: Transform - - uid: 23369 + - uid: 23411 components: - pos: 34.5,-69.5 parent: 2 type: Transform - - uid: 23370 + - uid: 23412 components: - pos: 37.5,-64.5 parent: 2 type: Transform - - uid: 23371 + - uid: 23413 components: - rot: 1.5707963267948966 rad pos: 34.5,-86.5 parent: 2 type: Transform - - uid: 23372 + - uid: 23414 components: - rot: 1.5707963267948966 rad pos: 34.5,-87.5 parent: 2 type: Transform - - uid: 23373 + - uid: 23415 components: - rot: 1.5707963267948966 rad pos: 46.5,-78.5 parent: 2 type: Transform - - uid: 23374 + - uid: 23416 components: - rot: 1.5707963267948966 rad pos: 16.5,-88.5 parent: 2 type: Transform - - uid: 23375 + - uid: 23417 components: - rot: 1.5707963267948966 rad pos: 13.5,-78.5 parent: 2 type: Transform - - uid: 23376 + - uid: 23418 components: - rot: 1.5707963267948966 rad pos: 14.5,-88.5 parent: 2 type: Transform - - uid: 23377 + - uid: 23419 components: - rot: 1.5707963267948966 rad pos: 17.5,-78.5 parent: 2 type: Transform - - uid: 23378 + - uid: 23420 components: - rot: 1.5707963267948966 rad pos: 44.5,-84.5 parent: 2 type: Transform - - uid: 23379 + - uid: 23421 components: - pos: 17.5,-74.5 parent: 2 type: Transform - - uid: 23380 + - uid: 23422 components: - pos: 18.5,-74.5 parent: 2 type: Transform - - uid: 23381 + - uid: 23423 components: - pos: 14.5,-74.5 parent: 2 type: Transform - - uid: 23382 + - uid: 23424 components: - pos: 17.5,-71.5 parent: 2 type: Transform - - uid: 23383 + - uid: 23425 components: - rot: 1.5707963267948966 rad pos: 44.5,-86.5 parent: 2 type: Transform - - uid: 23384 + - uid: 23426 components: - pos: 15.5,-71.5 parent: 2 type: Transform - - uid: 23385 + - uid: 23427 components: - pos: 15.5,-74.5 parent: 2 type: Transform - - uid: 23386 + - uid: 23428 components: - rot: 3.141592653589793 rad pos: 26.5,-67.5 parent: 2 type: Transform - - uid: 23387 + - uid: 23429 components: - rot: 3.141592653589793 rad pos: 28.5,-90.5 parent: 2 type: Transform - - uid: 23388 + - uid: 23430 components: - rot: 3.141592653589793 rad pos: 24.5,-80.5 parent: 2 type: Transform - - uid: 23389 + - uid: 23431 components: - pos: 14.5,-71.5 parent: 2 type: Transform - - uid: 23390 + - uid: 23432 components: - pos: 18.5,-71.5 parent: 2 type: Transform - - uid: 23391 + - uid: 23433 components: - rot: 3.141592653589793 rad pos: 25.5,-80.5 parent: 2 type: Transform - - uid: 23392 + - uid: 23434 components: - rot: 1.5707963267948966 rad pos: 46.5,-79.5 parent: 2 type: Transform - - uid: 23393 + - uid: 23435 components: - rot: 1.5707963267948966 rad pos: 13.5,-88.5 parent: 2 type: Transform - - uid: 23394 + - uid: 23436 components: - rot: 1.5707963267948966 rad pos: 17.5,-88.5 parent: 2 type: Transform - - uid: 23395 + - uid: 23437 components: - rot: 1.5707963267948966 rad pos: 32.5,-77.5 parent: 2 type: Transform - - uid: 23396 + - uid: 23438 components: - rot: 1.5707963267948966 rad pos: 16.5,-78.5 parent: 2 type: Transform - - uid: 23397 + - uid: 23439 components: - rot: 1.5707963267948966 rad pos: 14.5,-78.5 parent: 2 type: Transform - - uid: 23398 + - uid: 23440 components: - rot: 3.141592653589793 rad pos: 25.5,-67.5 parent: 2 type: Transform - - uid: 23399 + - uid: 23441 components: - rot: -1.5707963267948966 rad pos: 50.5,-64.5 parent: 2 type: Transform - - uid: 23400 + - uid: 23442 components: - pos: -33.5,-9.5 parent: 2 type: Transform - - uid: 23401 + - uid: 23443 components: - pos: -33.5,-12.5 parent: 2 type: Transform - - uid: 23402 + - uid: 23444 components: - pos: -45.5,-47.5 parent: 2 type: Transform - - uid: 23403 + - uid: 23445 components: - rot: -1.5707963267948966 rad pos: -37.5,-14.5 parent: 2 type: Transform - - uid: 23404 + - uid: 23446 components: - pos: -45.5,-48.5 parent: 2 type: Transform - - uid: 23405 + - uid: 23447 components: - pos: 78.5,-44.5 parent: 2 type: Transform - - uid: 23406 + - uid: 23448 components: - pos: 68.5,-56.5 parent: 2 type: Transform - - uid: 23407 + - uid: 23449 components: - pos: -43.5,-13.5 parent: 2 type: Transform - - uid: 23408 + - uid: 23450 components: - pos: 48.5,7.5 parent: 2 type: Transform - - uid: 23409 + - uid: 23451 components: - pos: 70.5,-54.5 parent: 2 type: Transform - - uid: 23410 + - uid: 23452 components: - pos: 61.5,-61.5 parent: 2 type: Transform - - uid: 23411 + - uid: 23453 components: - pos: 62.5,-61.5 parent: 2 type: Transform - - uid: 23412 + - uid: 23454 components: - pos: 63.5,-61.5 parent: 2 type: Transform - - uid: 23413 + - uid: 23455 components: - pos: 71.5,-64.5 parent: 2 type: Transform - - uid: 23414 + - uid: 23456 components: - pos: -38.5,-37.5 parent: 2 type: Transform - - uid: 23415 + - uid: 23457 components: - pos: -37.5,-37.5 parent: 2 type: Transform - - uid: 23416 + - uid: 23458 components: - pos: -46.5,-7.5 parent: 2 type: Transform - - uid: 23417 + - uid: 23459 components: - pos: -45.5,-18.5 parent: 2 type: Transform - - uid: 23418 + - uid: 23460 components: - rot: 3.141592653589793 rad pos: -49.5,-19.5 parent: 2 type: Transform - - uid: 23419 + - uid: 23461 components: - pos: -61.5,-31.5 parent: 2 type: Transform - - uid: 23420 + - uid: 23462 components: - rot: 3.141592653589793 rad pos: -61.5,-44.5 parent: 2 type: Transform - - uid: 23421 + - uid: 23463 components: - pos: -45.5,-43.5 parent: 2 type: Transform - - uid: 23422 + - uid: 23464 components: - pos: -45.5,-45.5 parent: 2 type: Transform - - uid: 23423 + - uid: 23465 components: - pos: -45.5,-46.5 parent: 2 type: Transform - - uid: 23424 + - uid: 23466 components: - pos: -45.5,-44.5 parent: 2 type: Transform - - uid: 23425 + - uid: 23467 components: - pos: -45.5,-42.5 parent: 2 type: Transform - - uid: 23426 + - uid: 23468 components: - pos: -35.5,-58.5 parent: 2 type: Transform - - uid: 23427 + - uid: 23469 components: - rot: 3.141592653589793 rad pos: -38.5,-59.5 parent: 2 type: Transform - - uid: 23428 + - uid: 23470 components: - pos: -44.5,-58.5 parent: 2 type: Transform - - uid: 23429 + - uid: 23471 components: - pos: -42.5,-58.5 parent: 2 type: Transform - - uid: 23430 + - uid: 23472 components: - pos: -41.5,-58.5 parent: 2 type: Transform - - uid: 23431 + - uid: 23473 components: - rot: 3.141592653589793 rad pos: -73.5,-27.5 parent: 2 type: Transform - - uid: 23432 + - uid: 23474 components: - pos: -62.5,-35.5 parent: 2 type: Transform - - uid: 23433 + - uid: 23475 components: - rot: 1.5707963267948966 rad pos: -52.5,-60.5 parent: 2 type: Transform - - uid: 23434 + - uid: 23476 components: - rot: 1.5707963267948966 rad pos: -58.5,-60.5 parent: 2 type: Transform - - uid: 23435 + - uid: 23477 components: - rot: 1.5707963267948966 rad pos: -58.5,-59.5 parent: 2 type: Transform - - uid: 23436 + - uid: 23478 components: - pos: -58.5,-52.5 parent: 2 type: Transform - - uid: 23437 + - uid: 23479 components: - pos: -58.5,-51.5 parent: 2 type: Transform - - uid: 23438 + - uid: 23480 components: - pos: -58.5,-48.5 parent: 2 type: Transform - - uid: 23439 + - uid: 23481 components: - pos: -58.5,-47.5 parent: 2 type: Transform - - uid: 23440 + - uid: 23482 components: - pos: -41.5,-62.5 parent: 2 type: Transform - - uid: 23441 + - uid: 23483 components: - pos: -40.5,-62.5 parent: 2 type: Transform - - uid: 23442 + - uid: 23484 components: - rot: -1.5707963267948966 rad pos: -55.5,-83.5 parent: 2 type: Transform - - uid: 23443 + - uid: 23485 components: - rot: -1.5707963267948966 rad pos: -53.5,-83.5 parent: 2 type: Transform - - uid: 23444 + - uid: 23486 components: - pos: -57.5,-75.5 parent: 2 type: Transform - - uid: 23445 + - uid: 23487 components: - pos: -57.5,-76.5 parent: 2 type: Transform - - uid: 23446 + - uid: 23488 components: - pos: -57.5,-77.5 parent: 2 type: Transform - - uid: 23447 + - uid: 23489 components: - pos: -48.5,-83.5 parent: 2 type: Transform - - uid: 23448 + - uid: 23490 components: - pos: -35.5,-82.5 parent: 2 type: Transform - - uid: 23449 + - uid: 23491 components: - pos: -35.5,-81.5 parent: 2 type: Transform - - uid: 23450 + - uid: 23492 components: - pos: -35.5,-77.5 parent: 2 type: Transform - - uid: 23451 + - uid: 23493 components: - pos: -35.5,-83.5 parent: 2 type: Transform - - uid: 23452 + - uid: 23494 components: - pos: -35.5,-76.5 parent: 2 type: Transform - - uid: 23453 + - uid: 23495 components: - pos: -35.5,-78.5 parent: 2 type: Transform - - uid: 23454 + - uid: 23496 components: - pos: -40.5,-86.5 parent: 2 type: Transform - - uid: 23455 + - uid: 23497 components: - pos: -43.5,-86.5 parent: 2 type: Transform - - uid: 23456 + - uid: 23498 components: - rot: 3.141592653589793 rad pos: 19.5,-33.5 parent: 2 type: Transform - - uid: 23457 + - uid: 23499 components: - rot: -1.5707963267948966 rad pos: -46.5,-38.5 parent: 2 type: Transform - - uid: 23458 + - uid: 23500 components: - rot: -1.5707963267948966 rad pos: 8.5,35.5 parent: 2 type: Transform - - uid: 23459 + - uid: 23501 components: - pos: 53.5,61.5 parent: 2 type: Transform - - uid: 23460 + - uid: 23502 components: - pos: 50.5,56.5 parent: 2 type: Transform - - uid: 23461 + - uid: 23503 components: - rot: -1.5707963267948966 rad pos: -7.5,28.5 parent: 2 type: Transform - - uid: 23462 + - uid: 23504 components: - rot: -1.5707963267948966 rad pos: -7.5,27.5 parent: 2 type: Transform - - uid: 23463 + - uid: 23505 components: - pos: 55.5,61.5 parent: 2 type: Transform - - uid: 23464 + - uid: 23506 components: - pos: -0.5,35.5 parent: 2 type: Transform - - uid: 23465 + - uid: 23507 components: - pos: -1.5,35.5 parent: 2 type: Transform - - uid: 23466 + - uid: 23508 components: - pos: -2.5,35.5 parent: 2 type: Transform - - uid: 23467 + - uid: 23509 components: - pos: 50.5,57.5 parent: 2 type: Transform - - uid: 23468 + - uid: 23510 components: - pos: 58.5,56.5 parent: 2 type: Transform - - uid: 23469 + - uid: 23511 components: - rot: -1.5707963267948966 rad pos: 7.5,29.5 parent: 2 type: Transform - - uid: 23470 + - uid: 23512 components: - rot: -1.5707963267948966 rad pos: -26.5,23.5 parent: 2 type: Transform - - uid: 23471 + - uid: 23513 components: - pos: -3.5,42.5 parent: 2 type: Transform - - uid: 23472 + - uid: 23514 components: - pos: 45.5,9.5 parent: 2 type: Transform - - uid: 23473 + - uid: 23515 components: - pos: -29.5,21.5 parent: 2 type: Transform - - uid: 23474 + - uid: 23516 components: - pos: -29.5,23.5 parent: 2 type: Transform - - uid: 23475 + - uid: 23517 components: - pos: -26.5,21.5 parent: 2 type: Transform - - uid: 23476 + - uid: 23518 components: - pos: -31.5,27.5 parent: 2 type: Transform - - uid: 23477 + - uid: 23519 components: - pos: -33.5,27.5 parent: 2 type: Transform - - uid: 23478 + - uid: 23520 components: - pos: -30.5,27.5 parent: 2 type: Transform - - uid: 23479 + - uid: 23521 components: - rot: 1.5707963267948966 rad pos: -49.5,21.5 parent: 2 type: Transform - - uid: 23480 + - uid: 23522 components: - rot: 1.5707963267948966 rad pos: -50.5,21.5 parent: 2 type: Transform - - uid: 23481 + - uid: 23523 components: - rot: -1.5707963267948966 rad pos: -50.5,18.5 parent: 2 type: Transform - - uid: 23482 + - uid: 23524 components: - rot: -1.5707963267948966 rad pos: -50.5,24.5 parent: 2 type: Transform - - uid: 23483 + - uid: 23525 components: - rot: -1.5707963267948966 rad pos: 8.5,29.5 parent: 2 type: Transform - - uid: 23484 + - uid: 23526 components: - pos: 58.5,57.5 parent: 2 type: Transform - - uid: 23485 + - uid: 23527 components: - pos: 50.5,58.5 parent: 2 type: Transform - - uid: 23486 + - uid: 23528 components: - pos: 58.5,58.5 parent: 2 type: Transform - - uid: 23487 + - uid: 23529 components: - rot: 1.5707963267948966 rad pos: 67.5,-8.5 parent: 2 type: Transform - - uid: 23488 + - uid: 23530 components: - pos: -33.5,32.5 parent: 2 type: Transform - - uid: 23489 + - uid: 23531 components: - pos: -32.5,32.5 parent: 2 type: Transform - - uid: 23490 + - uid: 23532 components: - pos: -31.5,32.5 parent: 2 type: Transform - - uid: 23491 + - uid: 23533 components: - pos: -49.5,29.5 parent: 2 type: Transform - - uid: 23492 + - uid: 23534 components: - pos: -49.5,35.5 parent: 2 type: Transform - - uid: 23493 + - uid: 23535 components: - pos: -52.5,35.5 parent: 2 type: Transform - - uid: 23494 + - uid: 23536 components: - pos: -52.5,29.5 parent: 2 type: Transform - - uid: 23495 + - uid: 23537 components: - pos: -52.5,18.5 parent: 2 type: Transform - - uid: 23496 + - uid: 23538 components: - pos: -52.5,24.5 parent: 2 type: Transform - - uid: 23497 + - uid: 23539 components: - rot: -1.5707963267948966 rad pos: -52.5,21.5 parent: 2 type: Transform - - uid: 23498 + - uid: 23540 components: - rot: -1.5707963267948966 rad pos: -53.5,21.5 parent: 2 type: Transform - - uid: 23499 + - uid: 23541 components: - rot: -1.5707963267948966 rad pos: -31.5,35.5 parent: 2 type: Transform - - uid: 23500 + - uid: 23542 components: - pos: -39.5,31.5 parent: 2 type: Transform - - uid: 23501 + - uid: 23543 components: - rot: -1.5707963267948966 rad pos: -32.5,35.5 parent: 2 type: Transform - - uid: 23502 + - uid: 23544 components: - rot: -1.5707963267948966 rad pos: -17.5,26.5 parent: 2 type: Transform - - uid: 23503 + - uid: 23545 components: - rot: 1.5707963267948966 rad pos: 66.5,-1.5 parent: 2 type: Transform - - uid: 23504 + - uid: 23546 components: - pos: -53.5,11.5 parent: 2 type: Transform - - uid: 23505 + - uid: 23547 components: - pos: -53.5,10.5 parent: 2 type: Transform - - uid: 23506 + - uid: 23548 components: - rot: -1.5707963267948966 rad pos: -49.5,13.5 parent: 2 type: Transform - - uid: 23507 + - uid: 23549 components: - rot: -1.5707963267948966 rad pos: -48.5,13.5 parent: 2 type: Transform - - uid: 23508 + - uid: 23550 components: - pos: 56.5,-25.5 parent: 2 type: Transform - - uid: 23509 + - uid: 23551 components: - rot: 1.5707963267948966 rad pos: 67.5,-7.5 parent: 2 type: Transform - - uid: 23510 + - uid: 23552 components: - rot: 1.5707963267948966 rad pos: 67.5,-9.5 parent: 2 type: Transform - - uid: 23511 + - uid: 23553 components: - rot: 1.5707963267948966 rad pos: 66.5,-0.5 parent: 2 type: Transform - - uid: 23512 + - uid: 23554 components: - rot: 1.5707963267948966 rad pos: 46.5,-77.5 parent: 2 type: Transform - - uid: 23513 + - uid: 23555 components: - pos: 25.5,24.5 parent: 2 type: Transform - - uid: 23514 + - uid: 23556 components: - pos: -45.5,-52.5 parent: 2 type: Transform - - uid: 23515 + - uid: 23557 components: - pos: -45.5,-53.5 parent: 2 type: Transform - - uid: 23516 + - uid: 23558 components: - pos: -45.5,-54.5 parent: 2 type: Transform - - uid: 23517 + - uid: 23559 components: - pos: -45.5,-55.5 parent: 2 type: Transform - - uid: 23518 + - uid: 23560 components: - pos: 24.5,-60.5 parent: 2 type: Transform - - uid: 23519 + - uid: 23561 components: - pos: 46.5,43.5 parent: 2 type: Transform - - uid: 23520 + - uid: 23562 components: - rot: 3.141592653589793 rad pos: 46.5,3.5 parent: 2 type: Transform - - uid: 23521 + - uid: 23563 components: - rot: 3.141592653589793 rad pos: 59.5,43.5 parent: 2 type: Transform - - uid: 23522 + - uid: 23564 components: - rot: -1.5707963267948966 rad pos: -13.5,39.5 parent: 2 type: Transform - - uid: 23523 + - uid: 23565 components: - pos: -14.5,56.5 parent: 2 type: Transform - - uid: 23524 + - uid: 23566 components: - pos: -11.5,69.5 parent: 2 type: Transform - - uid: 23525 + - uid: 23567 components: - pos: -14.5,55.5 parent: 2 type: Transform - - uid: 23526 + - uid: 23568 components: - pos: -16.5,55.5 parent: 2 type: Transform - - uid: 23527 + - uid: 23569 components: - pos: -16.5,56.5 parent: 2 type: Transform - - uid: 23528 + - uid: 23570 components: - pos: -23.5,61.5 parent: 2 type: Transform - - uid: 23529 + - uid: 23571 components: - pos: -23.5,62.5 parent: 2 type: Transform - - uid: 23530 + - uid: 23572 components: - pos: -11.5,68.5 parent: 2 type: Transform - - uid: 23531 + - uid: 23573 components: - pos: -11.5,67.5 parent: 2 type: Transform - - uid: 23532 + - uid: 23574 components: - pos: -14.5,73.5 parent: 2 type: Transform - - uid: 23533 + - uid: 23575 components: - pos: -20.5,73.5 parent: 2 type: Transform - - uid: 23534 + - uid: 23576 components: - pos: -11.5,73.5 parent: 2 type: Transform - - uid: 23535 + - uid: 23577 components: - pos: -23.5,63.5 parent: 2 type: Transform - - uid: 23536 + - uid: 23578 components: - pos: -23.5,73.5 parent: 2 type: Transform - - uid: 23537 + - uid: 23579 components: - rot: -1.5707963267948966 rad pos: -17.5,24.5 parent: 2 type: Transform - - uid: 23538 + - uid: 23580 components: - rot: -1.5707963267948966 rad pos: 68.5,11.5 parent: 2 type: Transform - - uid: 23539 + - uid: 23581 components: - rot: -1.5707963267948966 rad pos: 68.5,10.5 parent: 2 type: Transform - - uid: 23540 + - uid: 23582 components: - rot: -1.5707963267948966 rad pos: 68.5,8.5 parent: 2 type: Transform - - uid: 23541 + - uid: 23583 components: - rot: -1.5707963267948966 rad pos: 68.5,7.5 parent: 2 type: Transform - - uid: 23542 + - uid: 23584 components: - rot: -1.5707963267948966 rad pos: 59.5,33.5 parent: 2 type: Transform - - uid: 23543 + - uid: 23585 components: - rot: -1.5707963267948966 rad pos: 59.5,32.5 parent: 2 type: Transform - - uid: 23544 + - uid: 23586 components: - rot: -1.5707963267948966 rad pos: -1.5,27.5 parent: 2 type: Transform - - uid: 23545 + - uid: 23587 components: - rot: -1.5707963267948966 rad pos: -3.5,27.5 parent: 2 type: Transform - - uid: 23546 + - uid: 23588 components: - rot: -1.5707963267948966 rad pos: -33.5,35.5 parent: 2 type: Transform - - uid: 23547 + - uid: 23589 components: - rot: 3.141592653589793 rad pos: -32.5,37.5 parent: 2 type: Transform - - uid: 23548 + - uid: 23590 components: - rot: 1.5707963267948966 rad pos: 46.5,-17.5 parent: 2 type: Transform - - uid: 23549 + - uid: 23591 components: - rot: 1.5707963267948966 rad pos: 45.5,-17.5 parent: 2 type: Transform - - uid: 23550 + - uid: 23592 components: - pos: -46.5,13.5 parent: 2 type: Transform - - uid: 23551 + - uid: 23593 components: - pos: -1.5,42.5 parent: 2 type: Transform - - uid: 23552 + - uid: 23594 components: - rot: 1.5707963267948966 rad pos: 47.5,40.5 parent: 2 type: Transform - - uid: 23553 + - uid: 23595 components: - rot: 1.5707963267948966 rad pos: 45.5,40.5 parent: 2 type: Transform - - uid: 23554 + - uid: 23596 components: - rot: -1.5707963267948966 rad pos: 41.5,42.5 parent: 2 type: Transform - - uid: 23555 + - uid: 23597 components: - rot: 3.141592653589793 rad pos: 41.5,32.5 parent: 2 type: Transform - - uid: 23556 + - uid: 23598 components: - rot: 3.141592653589793 rad pos: 41.5,31.5 parent: 2 type: Transform - - uid: 23557 + - uid: 23599 components: - rot: 3.141592653589793 rad pos: 41.5,30.5 parent: 2 type: Transform - - uid: 23558 + - uid: 23600 components: - rot: -1.5707963267948966 rad pos: 40.5,42.5 parent: 2 type: Transform - - uid: 23559 + - uid: 23601 components: - rot: -1.5707963267948966 rad pos: 39.5,42.5 parent: 2 type: Transform - - uid: 23560 + - uid: 23602 components: - pos: 71.5,39.5 parent: 2 type: Transform - - uid: 23561 + - uid: 23603 components: - pos: 73.5,39.5 parent: 2 type: Transform - - uid: 23562 + - uid: 23604 components: - pos: 73.5,33.5 parent: 2 type: Transform - - uid: 23563 + - uid: 23605 components: - pos: 71.5,33.5 parent: 2 type: Transform - - uid: 23564 + - uid: 23606 components: - pos: -33.5,40.5 parent: 2 type: Transform - - uid: 23565 + - uid: 23607 components: - pos: -32.5,40.5 parent: 2 type: Transform - - uid: 23566 + - uid: 23608 components: - pos: -26.5,54.5 parent: 2 type: Transform - - uid: 23567 + - uid: 23609 components: - pos: -26.5,53.5 parent: 2 type: Transform - - uid: 23568 + - uid: 23610 components: - rot: -1.5707963267948966 rad pos: -16.5,-88.5 parent: 2 type: Transform - - uid: 23569 + - uid: 23611 components: - pos: -18.5,-97.5 parent: 2 type: Transform - - uid: 23570 + - uid: 23612 components: - pos: -26.5,-97.5 parent: 2 type: Transform - - uid: 23571 + - uid: 23613 components: - pos: -23.5,-94.5 parent: 2 type: Transform - - uid: 23572 + - uid: 23614 components: - pos: -22.5,-94.5 parent: 2 type: Transform - - uid: 23573 + - uid: 23615 components: - pos: -21.5,-94.5 parent: 2 type: Transform - - uid: 23574 + - uid: 23616 components: - pos: -9.5,-101.5 parent: 2 type: Transform - - uid: 23575 + - uid: 23617 components: - pos: -8.5,-101.5 parent: 2 type: Transform - - uid: 23576 + - uid: 23618 components: - pos: -6.5,-101.5 parent: 2 type: Transform - - uid: 23577 + - uid: 23619 components: - pos: -5.5,-101.5 parent: 2 type: Transform - - uid: 23578 + - uid: 23620 components: - pos: -3.5,-97.5 parent: 2 type: Transform - - uid: 23579 + - uid: 23621 components: - pos: -3.5,-98.5 parent: 2 type: Transform - - uid: 23580 + - uid: 23622 components: - rot: 3.141592653589793 rad pos: -44.5,-90.5 parent: 2 type: Transform - - uid: 23581 + - uid: 23623 components: - rot: 3.141592653589793 rad pos: -44.5,-89.5 parent: 2 type: Transform - - uid: 23582 + - uid: 23624 components: - pos: -39.5,-90.5 parent: 2 type: Transform - - uid: 23583 + - uid: 23625 components: - pos: -39.5,-89.5 parent: 2 type: Transform - - uid: 23584 + - uid: 23626 components: - pos: -34.5,-100.5 parent: 2 type: Transform - - uid: 23585 + - uid: 23627 components: - pos: -36.5,-100.5 parent: 2 type: Transform - - uid: 23586 + - uid: 23628 components: - rot: 1.5707963267948966 rad pos: -44.5,-95.5 parent: 2 type: Transform - - uid: 23587 + - uid: 23629 components: - rot: 1.5707963267948966 rad pos: -44.5,-96.5 parent: 2 type: Transform - - uid: 23588 + - uid: 23630 components: - rot: 1.5707963267948966 rad pos: -42.5,-98.5 parent: 2 type: Transform - - uid: 23589 + - uid: 23631 components: - rot: 1.5707963267948966 rad pos: -41.5,-98.5 parent: 2 type: Transform - - uid: 23590 + - uid: 23632 components: - pos: -23.5,-101.5 parent: 2 type: Transform - - uid: 23591 + - uid: 23633 components: - pos: -22.5,-101.5 parent: 2 type: Transform - - uid: 23592 + - uid: 23634 components: - pos: -21.5,-101.5 parent: 2 type: Transform - - uid: 23593 + - uid: 23635 components: - rot: -1.5707963267948966 rad pos: 72.5,-50.5 parent: 2 type: Transform - - uid: 23594 + - uid: 23636 components: - rot: -1.5707963267948966 rad pos: 70.5,-50.5 parent: 2 type: Transform - - uid: 23595 + - uid: 23637 components: - rot: -1.5707963267948966 rad pos: 71.5,-50.5 parent: 2 type: Transform - - uid: 23596 + - uid: 23638 components: - pos: 51.5,-68.5 parent: 2 type: Transform - - uid: 23597 + - uid: 23639 components: - rot: 3.141592653589793 rad pos: 55.5,-68.5 parent: 2 type: Transform - - uid: 23598 + - uid: 23640 components: - rot: 3.141592653589793 rad pos: 56.5,-68.5 parent: 2 type: Transform - - uid: 23599 + - uid: 23641 components: - pos: 61.5,-70.5 parent: 2 type: Transform - - uid: 23600 + - uid: 23642 components: - pos: 62.5,-70.5 parent: 2 type: Transform - - uid: 23601 + - uid: 23643 components: - rot: 3.141592653589793 rad pos: 54.5,-68.5 parent: 2 type: Transform - - uid: 23602 + - uid: 23644 components: - pos: 50.5,-68.5 parent: 2 type: Transform - - uid: 23603 + - uid: 23645 components: - pos: 3.5,-36.5 parent: 2 type: Transform - - uid: 23604 + - uid: 23646 components: - pos: 68.5,-57.5 parent: 2 type: Transform - - uid: 23605 + - uid: 23647 components: - pos: 71.5,-54.5 parent: 2 type: Transform - - uid: 23606 + - uid: 23648 components: - rot: 1.5707963267948966 rad pos: -54.5,-57.5 parent: 2 type: Transform - - uid: 23607 + - uid: 23649 components: - rot: -1.5707963267948966 rad pos: 41.5,-31.5 parent: 2 type: Transform - - uid: 23608 + - uid: 23650 components: - pos: 60.5,-70.5 parent: 2 type: Transform - - uid: 23609 + - uid: 23651 components: - pos: 9.5,-31.5 parent: 2 type: Transform - - uid: 23610 + - uid: 23652 components: - pos: 9.5,-34.5 parent: 2 type: Transform - - uid: 23611 + - uid: 23653 components: - pos: 2.5,-36.5 parent: 2 type: Transform - - uid: 23612 + - uid: 23654 components: - pos: 36.5,18.5 parent: 2 type: Transform - - uid: 23613 + - uid: 23655 components: - pos: 34.5,18.5 parent: 2 type: Transform - - uid: 23614 + - uid: 23656 components: - pos: 52.5,-57.5 parent: 2 type: Transform - - uid: 23615 + - uid: 23657 components: - pos: -60.5,-35.5 parent: 2 type: Transform - - uid: 23616 + - uid: 23658 components: - pos: -52.5,-38.5 parent: 2 type: Transform - - uid: 23617 + - uid: 23659 components: - pos: -47.5,-34.5 parent: 2 type: Transform - - uid: 23618 + - uid: 23660 components: - pos: -47.5,-35.5 parent: 2 type: Transform - - uid: 23619 + - uid: 23661 components: - rot: 3.141592653589793 rad pos: 51.5,-72.5 parent: 2 type: Transform - - uid: 23620 + - uid: 23662 components: - rot: 3.141592653589793 rad pos: 51.5,-71.5 parent: 2 type: Transform - - uid: 23621 + - uid: 23663 components: - rot: 3.141592653589793 rad pos: 24.5,-86.5 parent: 2 type: Transform - - uid: 23622 + - uid: 23664 components: - rot: 3.141592653589793 rad pos: 25.5,-86.5 parent: 2 type: Transform - - uid: 23623 + - uid: 23665 components: - rot: 3.141592653589793 rad pos: 25.5,-75.5 parent: 2 type: Transform - - uid: 23624 + - uid: 23666 components: - rot: 3.141592653589793 rad pos: 28.5,-89.5 parent: 2 type: Transform - - uid: 23625 + - uid: 23667 components: - rot: 1.5707963267948966 rad pos: 32.5,-79.5 parent: 2 type: Transform - - uid: 23626 + - uid: 23668 components: - rot: 1.5707963267948966 rad pos: 34.5,-84.5 parent: 2 type: Transform - - uid: 23627 + - uid: 23669 components: - rot: 1.5707963267948966 rad pos: 34.5,-85.5 parent: 2 type: Transform - - uid: 23628 + - uid: 23670 components: - rot: 3.141592653589793 rad pos: 26.5,-75.5 parent: 2 type: Transform - - uid: 23629 + - uid: 23671 components: - rot: 3.141592653589793 rad pos: 51.5,-73.5 parent: 2 type: Transform - - uid: 23630 + - uid: 23672 components: - rot: 1.5707963267948966 rad pos: 32.5,-78.5 parent: 2 type: Transform - - uid: 23631 + - uid: 23673 components: - rot: 1.5707963267948966 rad pos: 44.5,-87.5 parent: 2 type: Transform - - uid: 23632 + - uid: 23674 components: - rot: -1.5707963267948966 rad pos: -45.5,45.5 parent: 2 type: Transform - - uid: 23633 + - uid: 23675 components: - rot: 1.5707963267948966 rad pos: -8.5,13.5 parent: 2 type: Transform - - uid: 23634 + - uid: 23676 components: - pos: -4.5,20.5 parent: 2 type: Transform - - uid: 23635 + - uid: 23677 components: - pos: -5.5,20.5 parent: 2 type: Transform - - uid: 23636 + - uid: 23678 components: - rot: 3.141592653589793 rad pos: -71.5,-27.5 parent: 2 type: Transform - - uid: 23637 + - uid: 23679 components: - pos: -70.5,-47.5 parent: 2 type: Transform - - uid: 23638 + - uid: 23680 components: - pos: -69.5,-47.5 parent: 2 type: Transform - - uid: 23639 + - uid: 23681 components: - pos: -68.5,-47.5 parent: 2 type: Transform - - uid: 23640 + - uid: 23682 components: - pos: -60.5,-38.5 parent: 2 type: Transform - - uid: 23641 + - uid: 23683 components: - pos: -62.5,-38.5 parent: 2 type: Transform - - uid: 23642 + - uid: 23684 components: - pos: -51.5,-13.5 parent: 2 type: Transform - - uid: 23643 + - uid: 23685 components: - rot: 3.141592653589793 rad pos: -78.5,-45.5 parent: 2 type: Transform - - uid: 23644 + - uid: 23686 components: - rot: 1.5707963267948966 rad pos: -15.5,9.5 parent: 2 type: Transform - - uid: 23645 + - uid: 23687 components: - rot: 1.5707963267948966 rad pos: -14.5,9.5 parent: 2 type: Transform - - uid: 23646 + - uid: 23688 components: - pos: 3.5,-3.5 parent: 2 type: Transform - - uid: 23647 + - uid: 23689 components: - rot: 3.141592653589793 rad pos: 2.5,-3.5 parent: 2 type: Transform - - uid: 23648 + - uid: 23690 components: - rot: 3.141592653589793 rad pos: 1.5,-3.5 parent: 2 type: Transform - - uid: 23649 + - uid: 23691 components: - rot: -1.5707963267948966 rad pos: 23.5,-40.5 parent: 2 type: Transform - - uid: 23650 + - uid: 23692 components: - rot: -1.5707963267948966 rad pos: 27.5,-40.5 parent: 2 type: Transform - - uid: 23651 + - uid: 23693 components: - rot: -1.5707963267948966 rad pos: 24.5,-40.5 parent: 2 type: Transform + - uid: 23694 + components: + - rot: -1.5707963267948966 rad + pos: 54.5,-40.5 + parent: 2 + type: Transform + - uid: 23695 + components: + - rot: -1.5707963267948966 rad + pos: 54.5,-42.5 + parent: 2 + type: Transform + - uid: 23696 + components: + - pos: 10.5,29.5 + parent: 2 + type: Transform + - uid: 23697 + components: + - pos: 8.5,27.5 + parent: 2 + type: Transform + - uid: 23698 + components: + - pos: 10.5,27.5 + parent: 2 + type: Transform + - uid: 23699 + components: + - pos: 9.5,27.5 + parent: 2 + type: Transform + - uid: 23700 + components: + - pos: 9.5,29.5 + parent: 2 + type: Transform + - uid: 29885 + components: + - pos: -29.5,-63.5 + parent: 2 + type: Transform - proto: RemoteSignaller entities: - - uid: 23652 + - uid: 23701 components: - pos: 4.3008337,-7.3968306 parent: 2 type: Transform - linkedPorts: - 552: + 554: - Pressed: DoorBolt - 553: + 555: - Pressed: DoorBolt - 623: + 625: - Pressed: DoorBolt type: DeviceLinkSource - proto: ResearchAndDevelopmentServer entities: - - uid: 23653 + - uid: 23702 components: - pos: 55.5,-49.5 parent: 2 type: Transform - proto: Retractor entities: - - uid: 23654 + - uid: 23703 components: - pos: 0.5210637,-65.43571 parent: 2 type: Transform - - uid: 23655 + - uid: 23704 components: - pos: 73.5331,-48.86455 parent: 2 type: Transform - proto: RevolverCapGun entities: - - uid: 23656 + - uid: 23705 components: - pos: 48.521713,-29.492037 parent: 2 type: Transform - - uid: 23657 + - uid: 23706 components: - pos: 3.523116,-35.41609 parent: 2 type: Transform - proto: RiceSeeds entities: - - uid: 23658 + - uid: 23707 components: - pos: -32.424732,6.232961 parent: 2 type: Transform - proto: RockGuitarInstrument entities: - - uid: 23659 + - uid: 23708 components: - pos: -10.563177,-6.285685 parent: 2 type: Transform - proto: RollerBed entities: - - uid: 23660 + - uid: 23709 components: - pos: -29.534147,-77.30682 parent: 2 type: Transform - - uid: 23661 + - uid: 23710 components: - pos: -29.534147,-79.2912 parent: 2 type: Transform - proto: SalvageHumanCorpseSpawner entities: - - uid: 23662 + - uid: 23711 components: - pos: -7.5,-97.5 parent: 2 type: Transform - proto: SalvageMagnet entities: - - uid: 23663 + - uid: 23712 components: - rot: -1.5707963267948966 rad pos: -46.5,32.5 @@ -162183,91 +155488,97 @@ entities: type: Transform - proto: Saw entities: - - uid: 23664 + - uid: 23713 components: - pos: 0.4741887,-64.29508 parent: 2 type: Transform - - uid: 23665 + - uid: 23714 components: - pos: 73.565475,-49.416637 parent: 2 type: Transform - proto: SawElectric entities: - - uid: 23666 + - uid: 23715 components: - pos: 0.5054387,-66.18094 parent: 2 type: Transform - proto: Scalpel entities: - - uid: 23667 + - uid: 23716 components: - pos: 69.49932,-48.836205 parent: 2 type: Transform - - uid: 23668 + - uid: 23717 components: - pos: 0.4585637,-63.810703 parent: 2 type: Transform - proto: ScalpelShiv entities: - - uid: 23669 + - uid: 23718 components: - rot: -1.5707963267948966 rad pos: -7.55561,-100.43354 parent: 2 type: Transform - - uid: 23670 + - uid: 23719 components: - pos: 54.135303,18.76531 parent: 2 type: Transform - proto: ScreenTimerElectronics entities: - - uid: 23671 + - uid: 23720 components: - pos: -8.601834,37.95101 parent: 2 type: Transform - proto: Screwdriver entities: - - uid: 23672 + - uid: 23721 components: - pos: 43.519844,-49.259262 parent: 2 type: Transform - - uid: 23673 + - uid: 23722 components: - pos: -25.458826,-24.443584 parent: 2 type: Transform - - uid: 23674 + - uid: 23723 components: - pos: -9.599733,-10.450774 parent: 2 type: Transform - - uid: 23675 + - uid: 23724 components: - pos: -62.449627,-28.095568 parent: 2 type: Transform - - uid: 23676 + - uid: 23725 components: - pos: -38.450848,-27.350416 parent: 2 type: Transform - - uid: 23677 + - uid: 23726 components: - rot: 12.566370614359172 rad pos: 72.048706,-43.392498 parent: 2 type: Transform + - uid: 23727 + components: + - rot: 3.141592653589793 rad + pos: 12.463634,20.302036 + parent: 2 + type: Transform - proto: SecurityTechFab entities: - - uid: 23678 + - uid: 23728 components: - pos: 20.5,22.5 parent: 2 @@ -162279,49 +155590,49 @@ entities: type: MaterialStorage - proto: SeedExtractor entities: - - uid: 23679 + - uid: 23729 components: - pos: -9.5,12.5 parent: 2 type: Transform - - uid: 23680 + - uid: 23730 components: - pos: 57.5,8.5 parent: 2 type: Transform - proto: ShardGlass entities: - - uid: 23681 + - uid: 23731 components: - pos: -54.711452,-83.287796 parent: 2 type: Transform - proto: ShardGlassReinforced entities: - - uid: 23682 + - uid: 23732 components: - rot: 1.5707963267948966 rad pos: -54.638016,-82.45104 parent: 2 type: Transform - - uid: 23683 + - uid: 23733 components: - rot: 3.141592653589793 rad pos: 2.3392181,49.47093 parent: 2 type: Transform - - uid: 23684 + - uid: 23734 components: - rot: 3.141592653589793 rad pos: 1.651718,49.767803 parent: 2 type: Transform - - uid: 23685 + - uid: 23735 components: - pos: 3.3860931,48.767803 parent: 2 type: Transform - - uid: 23686 + - uid: 23736 components: - rot: -1.5707963267948966 rad pos: 1.745468,48.361553 @@ -162329,31 +155640,31 @@ entities: type: Transform - proto: SheetGlass entities: - - uid: 23687 + - uid: 23737 components: - pos: 38.525932,-39.04589 parent: 2 type: Transform - count: 28 type: Stack - - uid: 23688 + - uid: 23738 components: - pos: -42.541218,-17.668886 parent: 2 type: Transform - - uid: 23689 + - uid: 23739 components: - pos: -55.463116,-25.47082 parent: 2 type: Transform - - uid: 23690 + - uid: 23740 components: - pos: -24.799974,-52.361668 parent: 2 type: Transform - proto: SheetGlass1 entities: - - uid: 23691 + - uid: 23741 components: - rot: 12.566370614359172 rad pos: 77.45773,-46.509197 @@ -162363,1786 +155674,1129 @@ entities: type: Stack - proto: SheetPaper1 entities: - - uid: 23692 + - uid: 23742 components: - pos: -4.555317,-48.4215 parent: 2 type: Transform - proto: SheetPlasma entities: - - uid: 23693 + - uid: 23743 components: - pos: 62.516293,-33.369144 parent: 2 type: Transform - proto: SheetPlasma1 entities: - - uid: 23694 + - uid: 23744 components: - pos: 7.512034,-46.1751 parent: 2 type: Transform - - uid: 23695 + - uid: 23745 components: - pos: 39.28695,-35.266556 parent: 2 type: Transform - - uid: 23696 + - uid: 23746 components: - pos: 39.583824,-35.40718 parent: 2 type: Transform - proto: SheetPlasteel entities: - - uid: 23697 + - uid: 23747 components: - pos: -42.49803,-16.612768 parent: 2 type: Transform - - uid: 23698 + - uid: 23748 components: - pos: -43.304523,25.592714 parent: 2 type: Transform - proto: SheetPlastic entities: - - uid: 23699 + - uid: 23749 components: - pos: 38.479057,-36.60921 parent: 2 type: Transform - - uid: 23700 + - uid: 23750 components: - pos: -42.44606,-18.09971 parent: 2 type: Transform - proto: SheetRGlass entities: - - uid: 23701 + - uid: 23751 components: - pos: -42.558216,-17.530426 parent: 2 type: Transform - proto: SheetSteel entities: - - uid: 23702 + - uid: 23752 components: - rot: 3.141592653589793 rad pos: -37.461926,-7.6284776 parent: 2 type: Transform - - uid: 23703 + - uid: 23753 components: - pos: 38.51507,-38.238213 parent: 2 type: Transform - - uid: 23704 + - uid: 23754 components: - pos: 38.494682,-37.42171 parent: 2 type: Transform - - uid: 23705 + - uid: 23755 components: - pos: -27.53877,-10.535285 parent: 2 type: Transform - - uid: 23706 + - uid: 23756 components: - pos: -39.513657,-16.565893 parent: 2 type: Transform - - uid: 23707 + - uid: 23757 components: - pos: -39.544514,-17.164497 parent: 2 type: Transform - - uid: 23708 + - uid: 23758 components: - pos: 58.50727,52.410095 parent: 2 type: Transform - - uid: 23709 + - uid: 23759 components: - pos: 77.369896,-46.771843 parent: 2 type: Transform - - uid: 23710 + - uid: 23760 components: - pos: -42.505978,14.552313 parent: 2 type: Transform - - uid: 23711 + - uid: 23761 components: - pos: -72.541214,-39.47832 parent: 2 type: Transform - proto: ShipBattlemap entities: - - uid: 23712 + - uid: 23762 components: - pos: 12.360678,-6.028252 parent: 2 type: Transform - proto: Shovel entities: - - uid: 23713 + - uid: 23763 components: - pos: -52.711685,-67.34979 parent: 2 type: Transform - - uid: 23714 + - uid: 23764 components: - pos: -40.5417,35.280518 parent: 2 type: Transform - - uid: 23715 + - uid: 23765 components: - pos: -40.51045,34.905518 parent: 2 type: Transform - - uid: 23716 + - uid: 23766 components: - pos: -48.500484,26.545332 parent: 2 type: Transform - proto: ShowcaseRobot entities: - - uid: 23717 + - uid: 23767 components: - pos: 62.5,-45.5 parent: 2 type: Transform - - uid: 23718 + - uid: 23768 components: - pos: -0.5,63.5 parent: 2 type: Transform - - uid: 23719 + - uid: 23769 components: - pos: -2.5,63.5 parent: 2 type: Transform - proto: ShowcaseRobotAntique entities: - - uid: 23720 + - uid: 23770 components: - pos: 61.5,-46.5 parent: 2 type: Transform - proto: ShowcaseRobotMarauder entities: - - uid: 23721 + - uid: 23771 components: - pos: 63.5,-46.5 parent: 2 type: Transform - proto: ShowcaseRobotWhite entities: - - uid: 23722 + - uid: 23772 components: - pos: 62.5,-47.5 parent: 2 type: Transform - proto: ShuttersNormal entities: - - uid: 23723 + - uid: 23773 components: - pos: -9.5,-24.5 parent: 2 type: Transform - - uid: 23724 + - uid: 23774 components: - pos: -8.5,-24.5 parent: 2 type: Transform - - uid: 23725 + - uid: 23775 components: - rot: -1.5707963267948966 rad pos: 66.5,-45.5 parent: 2 type: Transform - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - SecondsUntilStateChange: -175499.72 - state: Closing - type: Door - - airBlocked: False - type: Airtight - links: - - 23858 + - 23908 type: DeviceLinkSink - - uid: 23726 + - uid: 23776 components: - rot: -1.5707963267948966 rad pos: 66.5,-46.5 parent: 2 type: Transform - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - SecondsUntilStateChange: -175499.72 - state: Closing - type: Door - - airBlocked: False - type: Airtight - links: - - 23858 + - 23908 type: DeviceLinkSink - proto: ShuttersNormalOpen entities: - - uid: 23727 + - uid: 23777 components: - pos: -4.5,20.5 parent: 2 type: Transform - invokeCounter: 4 links: - - 23906 + - 23956 type: DeviceLinkSink - - uid: 23728 + - uid: 23778 components: - pos: -5.5,20.5 parent: 2 type: Transform - invokeCounter: 4 links: - - 23906 + - 23956 type: DeviceLinkSink - - uid: 23729 + - uid: 23779 components: - rot: -1.5707963267948966 rad pos: 15.5,13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -156554.78 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23855 + - 23905 type: DeviceLinkSink - - uid: 23730 + - uid: 23780 components: - rot: -1.5707963267948966 rad pos: 15.5,9.5 parent: 2 type: Transform - - uid: 23731 + - uid: 23781 components: - pos: -32.5,32.5 parent: 2 type: Transform - - SecondsUntilStateChange: -186113.2 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23886 + - 23936 type: DeviceLinkSink - - uid: 23732 + - uid: 23782 components: - pos: 37.5,-0.5 parent: 2 type: Transform - - SecondsUntilStateChange: -94203.05 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23857 + - 23907 type: DeviceLinkSink - - uid: 23733 + - uid: 23783 components: - pos: -8.5,4.5 parent: 2 type: Transform - links: - - 23902 + - 23952 type: DeviceLinkSink - - uid: 23734 + - uid: 23784 components: - rot: -1.5707963267948966 rad pos: 15.5,11.5 parent: 2 type: Transform - - SecondsUntilStateChange: -156554.78 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23855 + - 23905 type: DeviceLinkSink - - uid: 23735 + - uid: 23785 components: - rot: -1.5707963267948966 rad pos: 15.5,10.5 parent: 2 type: Transform - - SecondsUntilStateChange: -156554.78 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23855 + - 23905 type: DeviceLinkSink - - uid: 23736 + - uid: 23786 components: - pos: 18.5,15.5 parent: 2 type: Transform - - SecondsUntilStateChange: -156554.78 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23855 + - 23905 type: DeviceLinkSink - - uid: 23737 + - uid: 23787 components: - pos: 17.5,15.5 parent: 2 type: Transform - - SecondsUntilStateChange: -156554.78 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23855 + - 23905 type: DeviceLinkSink - - uid: 23738 + - uid: 23788 components: - pos: -6.5,4.5 parent: 2 type: Transform - links: - - 23902 + - 23952 type: DeviceLinkSink - - uid: 23739 + - uid: 23789 components: - rot: 1.5707963267948966 rad pos: 48.5,6.5 parent: 2 type: Transform - - SecondsUntilStateChange: -91748.875 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23854 + - 23904 type: DeviceLinkSink - - uid: 23740 + - uid: 23790 components: - rot: -1.5707963267948966 rad pos: 35.5,4.5 parent: 2 type: Transform - - SecondsUntilStateChange: -155642.05 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23896 + - 23946 type: DeviceLinkSink - - uid: 23741 + - uid: 23791 components: - rot: -1.5707963267948966 rad pos: 15.5,12.5 parent: 2 type: Transform - - SecondsUntilStateChange: -156554.78 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23855 + - 23905 type: DeviceLinkSink - - uid: 23742 + - uid: 23792 components: - pos: 61.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -186027.47 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23897 + - 23947 type: DeviceLinkSink - - uid: 23743 + - uid: 23793 components: - rot: -1.5707963267948966 rad pos: 15.5,14.5 parent: 2 type: Transform - - SecondsUntilStateChange: -156554.78 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23855 + - 23905 type: DeviceLinkSink - - uid: 23744 + - uid: 23794 components: - pos: 45.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -91748.875 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23854 + - 23904 type: DeviceLinkSink - - uid: 23745 + - uid: 23795 components: - pos: 43.5,7.5 parent: 2 type: Transform - - SecondsUntilStateChange: -91748.875 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23854 + - 23904 type: DeviceLinkSink - - uid: 23746 + - uid: 23796 components: - pos: 62.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -186027.47 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23897 + - 23947 type: DeviceLinkSink - - uid: 23747 + - uid: 23797 components: - pos: 63.5,-56.5 parent: 2 type: Transform - - SecondsUntilStateChange: -186027.47 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23897 + - 23947 type: DeviceLinkSink - - uid: 23748 + - uid: 23798 components: - pos: -30.5,27.5 parent: 2 type: Transform - - SecondsUntilStateChange: -186113.2 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23886 + - 23936 type: DeviceLinkSink - - uid: 23749 + - uid: 23799 components: - pos: 29.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -155642.05 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23896 + - 23946 type: DeviceLinkSink - - uid: 23750 + - uid: 23800 components: - pos: 34.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -155642.05 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23896 + - 23946 type: DeviceLinkSink - - uid: 23751 + - uid: 23801 components: - pos: -31.5,27.5 parent: 2 type: Transform - - SecondsUntilStateChange: -186113.2 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23886 + - 23936 type: DeviceLinkSink - - uid: 23752 + - uid: 23802 components: - rot: -1.5707963267948966 rad pos: 35.5,7.5 parent: 2 type: Transform - - SecondsUntilStateChange: -155642.05 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23896 + - 23946 type: DeviceLinkSink - - uid: 23753 + - uid: 23803 components: - pos: -33.5,27.5 parent: 2 type: Transform - - SecondsUntilStateChange: -186113.2 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23886 + - 23936 type: DeviceLinkSink - - uid: 23754 + - uid: 23804 components: - pos: -49.5,13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -146291.98 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23872 + - 23922 type: DeviceLinkSink - - uid: 23755 + - uid: 23805 components: - pos: -48.5,13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -146291.98 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23872 + - 23922 type: DeviceLinkSink - - uid: 23756 + - uid: 23806 components: - pos: -31.5,32.5 parent: 2 type: Transform - - SecondsUntilStateChange: -186113.2 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23886 + - 23936 type: DeviceLinkSink - - uid: 23757 + - uid: 23807 components: - pos: 32.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -155642.05 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23896 + - 23946 type: DeviceLinkSink - - uid: 23758 + - uid: 23808 components: - pos: 39.5,-0.5 parent: 2 type: Transform - - SecondsUntilStateChange: -94203.05 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23857 + - 23907 type: DeviceLinkSink - - uid: 23759 + - uid: 23809 components: - pos: -33.5,32.5 parent: 2 type: Transform - - SecondsUntilStateChange: -186113.2 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23886 + - 23936 type: DeviceLinkSink - - uid: 23760 + - uid: 23810 components: - pos: -46.5,13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -146291.98 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23872 + - 23922 type: DeviceLinkSink - - uid: 23761 + - uid: 23811 components: - pos: -47.5,13.5 parent: 2 type: Transform - - SecondsUntilStateChange: -146291.98 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23872 + - 23922 type: DeviceLinkSink - - uid: 23762 + - uid: 23812 components: - pos: 43.5,5.5 parent: 2 type: Transform - - SecondsUntilStateChange: -91748.875 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23854 + - 23904 type: DeviceLinkSink - - uid: 23763 + - uid: 23813 components: - pos: 59.5,-54.5 parent: 2 type: Transform - - SecondsUntilStateChange: -186027.47 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23897 + - 23947 type: DeviceLinkSink - - uid: 23764 + - uid: 23814 components: - pos: 65.5,-54.5 parent: 2 type: Transform - - SecondsUntilStateChange: -186027.47 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23897 + - 23947 type: DeviceLinkSink - - uid: 23765 + - uid: 23815 components: - rot: 1.5707963267948966 rad pos: 66.5,-51.5 parent: 2 type: Transform - - SecondsUntilStateChange: -186027.47 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23897 + - 23947 type: DeviceLinkSink - - uid: 23766 + - uid: 23816 components: - rot: 1.5707963267948966 rad pos: 66.5,-52.5 parent: 2 type: Transform - - SecondsUntilStateChange: -186027.47 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23897 + - 23947 type: DeviceLinkSink - - uid: 23767 + - uid: 23817 components: - rot: -1.5707963267948966 rad pos: 58.5,-51.5 parent: 2 type: Transform - - SecondsUntilStateChange: -186027.47 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23897 + - 23947 type: DeviceLinkSink - - uid: 23768 + - uid: 23818 components: - rot: -1.5707963267948966 rad pos: 58.5,-52.5 parent: 2 type: Transform - - SecondsUntilStateChange: -186027.47 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23897 + - 23947 type: DeviceLinkSink - - uid: 23769 + - uid: 23819 components: - pos: 61.5,-50.5 parent: 2 type: Transform - - SecondsUntilStateChange: -186027.47 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23897 + - 23947 type: DeviceLinkSink - - uid: 23770 + - uid: 23820 components: - pos: 63.5,-50.5 parent: 2 type: Transform - - SecondsUntilStateChange: -186027.47 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23897 + - 23947 type: DeviceLinkSink - - uid: 23771 + - uid: 23821 components: - pos: -20.5,-58.5 parent: 2 type: Transform - - SecondsUntilStateChange: -185968.27 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23898 + - 23948 type: DeviceLinkSink - - uid: 23772 + - uid: 23822 components: - pos: -18.5,-58.5 parent: 2 type: Transform - - SecondsUntilStateChange: -185968.27 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23898 + - 23948 type: DeviceLinkSink - - uid: 23773 + - uid: 23823 components: - pos: -37.5,-14.5 parent: 2 type: Transform - - SecondsUntilStateChange: -136181.1 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - uid: 23774 + - uid: 23824 components: - rot: -1.5707963267948966 rad pos: -33.5,-15.5 parent: 2 type: Transform - - SecondsUntilStateChange: -136181.1 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23852 + - 23902 type: DeviceLinkSink - - uid: 23775 + - uid: 23825 components: - rot: -1.5707963267948966 rad pos: -33.5,-17.5 parent: 2 type: Transform - - SecondsUntilStateChange: -136181.1 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23852 + - 23902 type: DeviceLinkSink - - uid: 23776 + - uid: 23826 components: - rot: -1.5707963267948966 rad pos: 7.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -125377.03 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23900 + - 23950 type: DeviceLinkSink - - uid: 23777 + - uid: 23827 components: - rot: -1.5707963267948966 rad pos: 7.5,8.5 parent: 2 type: Transform - - SecondsUntilStateChange: -125377.03 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23900 + - 23950 type: DeviceLinkSink - - uid: 23778 + - uid: 23828 components: - rot: -1.5707963267948966 rad pos: 7.5,7.5 parent: 2 type: Transform - - SecondsUntilStateChange: -125377.03 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23900 + - 23950 type: DeviceLinkSink - - uid: 23779 + - uid: 23829 components: - pos: 2.5,4.5 parent: 2 type: Transform - - SecondsUntilStateChange: -125377.03 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23900 + - 23950 type: DeviceLinkSink - - uid: 23780 + - uid: 23830 components: - pos: 1.5,4.5 parent: 2 type: Transform - links: - - 23900 + - 23950 type: DeviceLinkSink - - uid: 23781 + - uid: 23831 components: - pos: 0.5,4.5 parent: 2 type: Transform - - SecondsUntilStateChange: -125377.03 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23900 + - 23950 type: DeviceLinkSink - - uid: 23782 + - uid: 23832 components: - pos: 5.5,11.5 parent: 2 type: Transform - - SecondsUntilStateChange: -125377.03 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23900 + - 23950 type: DeviceLinkSink - - uid: 23783 + - uid: 23833 components: - pos: 4.5,11.5 parent: 2 type: Transform - - SecondsUntilStateChange: -125377.03 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23900 + - 23950 type: DeviceLinkSink - - uid: 23784 + - uid: 23834 components: - rot: -1.5707963267948966 rad pos: 1.5,-46.5 parent: 2 type: Transform - - SecondsUntilStateChange: -91618.63 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23853 + - 23903 type: DeviceLinkSink - - uid: 23785 + - uid: 23835 components: - pos: 34.5,18.5 parent: 2 type: Transform - - SecondsUntilStateChange: -154137.64 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23901 + - 23951 type: DeviceLinkSink - - uid: 23786 + - uid: 23836 components: - pos: 35.5,18.5 parent: 2 type: Transform - - SecondsUntilStateChange: -154137.64 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23901 + - 23951 type: DeviceLinkSink - - uid: 23787 + - uid: 23837 components: - pos: 36.5,18.5 parent: 2 type: Transform - - SecondsUntilStateChange: -154137.64 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23901 + - 23951 type: DeviceLinkSink - - uid: 23788 + - uid: 23838 components: - pos: -7.5,4.5 parent: 2 type: Transform - links: - - 23902 + - 23952 type: DeviceLinkSink - - uid: 23789 + - uid: 23839 components: - rot: 1.5707963267948966 rad pos: 48.5,7.5 parent: 2 type: Transform - - SecondsUntilStateChange: -91748.875 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23854 + - 23904 type: DeviceLinkSink - - uid: 23790 + - uid: 23840 components: - pos: 46.5,9.5 parent: 2 type: Transform - - SecondsUntilStateChange: -91748.875 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23854 + - 23904 type: DeviceLinkSink - - uid: 23791 + - uid: 23841 components: - rot: 1.5707963267948966 rad pos: 35.5,-1.5 parent: 2 type: Transform - - SecondsUntilStateChange: -94203.05 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23857 + - 23907 type: DeviceLinkSink - - uid: 23792 + - uid: 23842 components: - rot: 1.5707963267948966 rad pos: 35.5,-2.5 parent: 2 type: Transform - - SecondsUntilStateChange: -94203.05 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23857 + - 23907 type: DeviceLinkSink - - uid: 23793 + - uid: 23843 components: - rot: 1.5707963267948966 rad pos: 35.5,-4.5 parent: 2 type: Transform - - SecondsUntilStateChange: -94203.05 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23857 + - 23907 type: DeviceLinkSink - - uid: 23794 + - uid: 23844 components: - rot: 1.5707963267948966 rad pos: 35.5,-5.5 parent: 2 type: Transform - - SecondsUntilStateChange: -94203.05 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23857 + - 23907 type: DeviceLinkSink - - uid: 23795 + - uid: 23845 components: - pos: 41.5,-0.5 parent: 2 type: Transform - - SecondsUntilStateChange: -94198.55 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23903 + - 23953 type: DeviceLinkSink - - uid: 23796 + - uid: 23846 components: - pos: 42.5,-0.5 parent: 2 type: Transform - - SecondsUntilStateChange: -94198.55 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23903 + - 23953 type: DeviceLinkSink - - uid: 23797 + - uid: 23847 components: - pos: 43.5,-0.5 parent: 2 type: Transform - - SecondsUntilStateChange: -94198.55 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23903 + - 23953 type: DeviceLinkSink - - uid: 23798 + - uid: 23848 components: - pos: 46.5,3.5 parent: 2 type: Transform - - SecondsUntilStateChange: -91748.875 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23854 + - 23904 type: DeviceLinkSink - - uid: 23799 + - uid: 23849 components: - rot: -1.5707963267948966 rad pos: 1.5,-47.5 parent: 2 type: Transform - - SecondsUntilStateChange: -91618.63 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23853 + - 23903 type: DeviceLinkSink - - uid: 23800 + - uid: 23850 components: - rot: -1.5707963267948966 rad pos: 1.5,-48.5 parent: 2 type: Transform - - SecondsUntilStateChange: -91618.63 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23853 + - 23903 type: DeviceLinkSink - - uid: 23801 + - uid: 23851 components: - pos: 3.5,-44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -91618.63 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23853 + - 23903 type: DeviceLinkSink - - uid: 23802 + - uid: 23852 components: - pos: 4.5,-44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -91618.63 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23853 + - 23903 type: DeviceLinkSink - - uid: 23803 + - uid: 23853 components: - pos: 5.5,-44.5 parent: 2 type: Transform - - SecondsUntilStateChange: -91618.63 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23853 + - 23903 type: DeviceLinkSink - - uid: 23804 + - uid: 23854 components: - pos: 3.5,-51.5 parent: 2 type: Transform - - SecondsUntilStateChange: -91618.63 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - links: - - 23853 + - 23903 type: DeviceLinkSink - - uid: 23805 + - uid: 23855 components: - pos: 23.5,5.5 parent: 2 type: Transform - links: - - 23904 + - 23954 type: DeviceLinkSink - - uid: 23806 + - uid: 23856 components: - pos: 22.5,5.5 parent: 2 type: Transform - links: - - 23904 + - 23954 type: DeviceLinkSink - - uid: 23807 + - uid: 23857 components: - pos: 21.5,5.5 parent: 2 type: Transform - links: - - 23904 + - 23954 type: DeviceLinkSink - - uid: 23808 + - uid: 23858 components: - pos: 25.5,5.5 parent: 2 type: Transform - links: - - 23904 + - 23954 type: DeviceLinkSink - - uid: 23809 + - uid: 23859 components: - pos: 26.5,5.5 parent: 2 type: Transform - links: - - 23904 + - 23954 type: DeviceLinkSink - - uid: 23810 + - uid: 23860 components: - pos: 27.5,5.5 parent: 2 type: Transform - links: - - 23904 + - 23954 type: DeviceLinkSink - - uid: 23811 + - uid: 23861 components: - pos: 27.5,-3.5 parent: 2 type: Transform - links: - - 23904 + - 23954 type: DeviceLinkSink - - uid: 23812 + - uid: 23862 components: - pos: 26.5,-3.5 parent: 2 type: Transform - links: - - 23904 + - 23954 type: DeviceLinkSink - - uid: 23813 + - uid: 23863 components: - pos: 25.5,-3.5 parent: 2 type: Transform - links: - - 23904 + - 23954 type: DeviceLinkSink - - uid: 23814 + - uid: 23864 components: - pos: 23.5,-3.5 parent: 2 type: Transform - links: - - 23904 + - 23954 type: DeviceLinkSink - - uid: 23815 + - uid: 23865 components: - pos: 22.5,-3.5 parent: 2 type: Transform - - uid: 23816 + - uid: 23866 components: - pos: 21.5,-3.5 parent: 2 type: Transform - links: - - 23904 + - 23954 type: DeviceLinkSink - - uid: 23817 + - uid: 23867 components: - rot: 1.5707963267948966 rad pos: 19.5,3.5 parent: 2 type: Transform - links: - - 23904 + - 23954 type: DeviceLinkSink - - uid: 23818 + - uid: 23868 components: - rot: 1.5707963267948966 rad pos: 19.5,2.5 parent: 2 type: Transform - links: - - 23904 + - 23954 type: DeviceLinkSink - - uid: 23819 + - uid: 23869 components: - rot: 1.5707963267948966 rad pos: 19.5,1.5 parent: 2 type: Transform - links: - - 23904 + - 23954 type: DeviceLinkSink - - uid: 23820 + - uid: 23870 components: - rot: 1.5707963267948966 rad pos: 19.5,0.5 parent: 2 type: Transform - links: - - 23904 + - 23954 type: DeviceLinkSink - - uid: 23821 + - uid: 23871 components: - rot: 1.5707963267948966 rad pos: 19.5,-0.5 parent: 2 type: Transform - links: - - 23904 + - 23954 type: DeviceLinkSink - - uid: 23822 + - uid: 23872 components: - rot: 1.5707963267948966 rad pos: 19.5,-1.5 parent: 2 type: Transform - links: - - 23904 + - 23954 type: DeviceLinkSink - - uid: 23823 + - uid: 23873 components: - pos: 22.5,-20.5 parent: 2 type: Transform - - uid: 23824 + - uid: 23874 components: - pos: 23.5,-20.5 parent: 2 type: Transform - - uid: 23825 + - uid: 23875 components: - pos: 24.5,-20.5 parent: 2 type: Transform - - uid: 23826 + - uid: 23876 components: - pos: 25.5,-20.5 parent: 2 type: Transform - - uid: 23827 + - uid: 23877 components: - pos: 26.5,-20.5 parent: 2 type: Transform - - uid: 23828 + - uid: 23878 components: - pos: 27.5,-20.5 parent: 2 type: Transform - - uid: 23829 + - uid: 23879 components: - pos: 28.5,-20.5 parent: 2 type: Transform - - uid: 23830 + - uid: 23880 components: - pos: 4.5,-3.5 parent: 2 type: Transform - links: - - 23910 + - 23960 type: DeviceLinkSink - - uid: 23831 + - uid: 23881 components: - pos: 1.5,-3.5 parent: 2 type: Transform - links: - - 23910 + - 23960 type: DeviceLinkSink - - uid: 23832 + - uid: 23882 components: - pos: 3.5,-3.5 parent: 2 type: Transform - links: - - 23910 + - 23960 type: DeviceLinkSink - - uid: 23833 + - uid: 23883 components: - pos: 2.5,-3.5 parent: 2 type: Transform - links: - - 23910 + - 23960 type: DeviceLinkSink - proto: ShuttleConsoleCircuitboard entities: - - uid: 23834 + - uid: 23884 components: - pos: 8.934531,42.902378 parent: 2 type: Transform - proto: ShuttleWindow entities: - - uid: 23835 + - uid: 23885 components: - rot: -1.5707963267948966 rad pos: -72.5,-57.5 parent: 2 type: Transform - - uid: 23836 + - uid: 23886 components: - rot: 1.5707963267948966 rad pos: -77.5,-51.5 parent: 2 type: Transform - - uid: 23837 + - uid: 23887 components: - rot: 3.141592653589793 rad pos: -80.5,-53.5 parent: 2 type: Transform - - uid: 23838 + - uid: 23888 components: - rot: 1.5707963267948966 rad pos: -77.5,-56.5 parent: 2 type: Transform - - uid: 23839 + - uid: 23889 components: - rot: 1.5707963267948966 rad pos: -80.5,-54.5 parent: 2 type: Transform - - uid: 23840 + - uid: 23890 components: - pos: -72.5,-50.5 parent: 2 type: Transform - - uid: 23841 + - uid: 23891 components: - rot: 3.141592653589793 rad pos: -78.5,-51.5 parent: 2 type: Transform - - uid: 23842 + - uid: 23892 components: - rot: 1.5707963267948966 rad pos: -78.5,-56.5 @@ -164150,14 +156804,14 @@ entities: type: Transform - proto: SignAi entities: - - uid: 23843 + - uid: 23893 components: - pos: -3.5,60.5 parent: 2 type: Transform - proto: SignalButtonDirectional entities: - - uid: 23844 + - uid: 23894 components: - rot: -1.5707963267948966 rad pos: -50.5,13.5 @@ -164167,7 +156821,7 @@ entities: 112: - Pressed: DoorBolt type: DeviceLinkSource - - uid: 23845 + - uid: 23895 components: - rot: 1.5707963267948966 rad pos: -53.5,8.5 @@ -164177,7 +156831,7 @@ entities: 113: - Pressed: DoorBolt type: DeviceLinkSource - - uid: 23846 + - uid: 23896 components: - rot: 1.5707963267948966 rad pos: -44.5,10.5 @@ -164187,7 +156841,7 @@ entities: 111: - Pressed: DoorBolt type: DeviceLinkSource - - uid: 23847 + - uid: 23897 components: - pos: -22.5,40.5 parent: 2 @@ -164196,7 +156850,7 @@ entities: 793: - Pressed: DoorBolt type: DeviceLinkSource - - uid: 23848 + - uid: 23898 components: - rot: 3.141592653589793 rad pos: -22.5,28.5 @@ -164206,7 +156860,7 @@ entities: 114: - Pressed: DoorBolt type: DeviceLinkSource - - uid: 23849 + - uid: 23899 components: - rot: -1.5707963267948966 rad pos: -17.5,35.5 @@ -164215,10 +156869,10 @@ entities: - linkedPorts: 115: - Pressed: DoorBolt - 673: + 675: - Pressed: DoorBolt type: DeviceLinkSource - - uid: 23850 + - uid: 23900 components: - rot: -1.5707963267948966 rad pos: -25.5,44.5 @@ -164228,7 +156882,7 @@ entities: 792: - Pressed: DoorBolt type: DeviceLinkSource - - uid: 23851 + - uid: 23901 components: - rot: 1.5707963267948966 rad pos: -13.5,33.5 @@ -164238,21 +156892,21 @@ entities: 116: - Pressed: DoorBolt type: DeviceLinkSource - - uid: 23852 + - uid: 23902 components: - rot: -1.5707963267948966 rad pos: -33.5,-18.5 parent: 2 type: Transform - linkedPorts: - 23775: + 23825: - Pressed: Toggle - 23774: + 23824: - Pressed: Toggle type: DeviceLinkSource - proto: SignalSwitch entities: - - uid: 23853 + - uid: 23903 components: - rot: -1.5707963267948966 rad pos: 8.5,-48.5 @@ -164261,30 +156915,30 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23804: + 23854: - On: Open - Off: Close - 23800: + 23850: - On: Open - Off: Close - 23799: + 23849: - On: Open - Off: Close - 23784: + 23834: - On: Open - Off: Close - 23801: + 23851: - On: Open - Off: Close - 23802: + 23852: - On: Open - Off: Close - 23803: + 23853: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23854 + - uid: 23904 components: - rot: -1.5707963267948966 rad pos: 47.5,8.5 @@ -164293,30 +156947,30 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23739: + 23789: - On: Open - Off: Close - 23789: + 23839: - On: Open - Off: Close - 23790: + 23840: - On: Open - Off: Close - 23744: + 23794: - On: Open - Off: Close - 23745: + 23795: - On: Open - Off: Close - 23762: + 23812: - On: Open - Off: Close - 23798: + 23848: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23855 + - uid: 23905 components: - pos: 16.5,15.5 parent: 2 @@ -164324,42 +156978,42 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23729: + 23779: - On: Open - Off: Close - 23734: + 23784: - On: Open - Off: Close - 23735: + 23785: - On: Open - Off: Close - 23741: + 23791: - On: Open - Off: Close - 23737: + 23787: - On: Open - Off: Close - 23736: + 23786: - On: Open - Off: Close - 23743: + 23793: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23856 + - uid: 23906 components: - rot: 3.141592653589793 rad pos: -13.5,-16.5 parent: 2 type: Transform - linkedPorts: - 2111: + 2126: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23857 + - uid: 23907 components: - rot: -1.5707963267948966 rad pos: 40.5,-3.5 @@ -164368,141 +157022,141 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23758: + 23808: - On: Open - Off: Close - 23732: + 23782: - On: Open - Off: Close - 23791: + 23841: - On: Open - Off: Close - 23792: + 23842: - On: Open - Off: Close - 23793: + 23843: - On: Open - Off: Close - 23794: + 23844: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23858 + - uid: 23908 components: - rot: 1.5707963267948966 rad pos: 66.5,-44.5 parent: 2 type: Transform - linkedPorts: - 23725: + 23775: - On: Open - Off: Close - 23726: + 23776: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23859 + - uid: 23909 components: - rot: 3.141592653589793 rad pos: 70.5,-39.5 parent: 2 type: Transform - linkedPorts: - 2090: + 2105: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23860 + - uid: 23910 components: - pos: 47.5,-55.5 parent: 2 type: Transform - linkedPorts: - 2048: + 2063: - On: Open - Off: Close - 2047: + 2062: - On: Open - Off: Close - 2046: + 2061: - On: Open - Off: Close - 2045: + 2060: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23861 + - uid: 23911 components: - rot: -1.5707963267948966 rad pos: 52.5,-56.5 parent: 2 type: Transform - linkedPorts: - 2049: + 2064: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23862 + - uid: 23912 components: - pos: -51.5,32.5 parent: 2 type: Transform - linkedPorts: - 2063: + 2078: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23863 + - uid: 23913 components: - rot: 3.141592653589793 rad pos: 60.5,-55.5 parent: 2 type: Transform - linkedPorts: - 2051: + 2066: - On: Open - Off: Close - 2052: + 2067: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23864 + - uid: 23914 components: - pos: 16.5,-51.5 parent: 2 type: Transform - linkedPorts: - 2044: + 2059: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23865 + - uid: 23915 components: - pos: -62.5,-26.5 parent: 2 type: Transform - linkedPorts: - 2121: + 2136: - On: Open - Off: Close - 2120: + 2135: - On: Open - Off: Close - 2119: + 2134: - On: Open - Off: Close - 2118: + 2133: - On: Open - Off: Close - 2117: + 2132: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23866 + - uid: 23916 components: - pos: -52.5,-11.5 parent: 2 @@ -164510,69 +157164,69 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2112: + 2127: - On: Open - Off: Close - 2113: + 2128: - On: Open - Off: Close - 2114: + 2129: - On: Open - Off: Close - 2115: + 2130: - On: Open - Off: Close - 2116: + 2131: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23867 + - uid: 23917 components: - pos: -36.5,-40.5 parent: 2 type: Transform - linkedPorts: - 2057: + 2072: - On: Open - Off: Close - 2056: + 2071: - On: Open - Off: Close - 2055: + 2070: - On: Open - Off: Close - 2054: + 2069: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23868 + - uid: 23918 components: - pos: -51.5,21.5 parent: 2 type: Transform - linkedPorts: - 2064: + 2079: - On: Open - Off: Close - 2065: + 2080: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23869 + - uid: 23919 components: - pos: -49.5,24.5 parent: 2 type: Transform - linkedPorts: - 2059: + 2074: - On: Open - Off: Close - 2058: + 2073: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23870 + - uid: 23920 components: - pos: 50.5,48.5 parent: 2 @@ -164580,14 +157234,14 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2070: + 2085: - On: Open - Off: Close - 2072: + 2087: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23871 + - uid: 23921 components: - pos: 52.5,48.5 parent: 2 @@ -164595,14 +157249,14 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2074: + 2089: - On: Open - Off: Close - 2066: + 2081: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23872 + - uid: 23922 components: - pos: -46.5,17.5 parent: 2 @@ -164610,21 +157264,21 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23754: + 23804: - On: Open - Off: Close - 23755: + 23805: - On: Open - Off: Close - 23760: + 23810: - On: Open - Off: Close - 23761: + 23811: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23873 + - uid: 23923 components: - pos: 58.5,48.5 parent: 2 @@ -164632,40 +157286,40 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2068: + 2083: - On: Open - Off: Close - 2085: + 2100: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23874 + - uid: 23924 components: - pos: 54.5,46.5 parent: 2 type: Transform - linkedPorts: - 2075: + 2090: - On: Open - Off: Close - 2079: + 2094: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23875 + - uid: 23925 components: - pos: 52.5,46.5 parent: 2 type: Transform - linkedPorts: - 2067: + 2082: - On: Open - Off: Close - 2061: + 2076: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23876 + - uid: 23926 components: - pos: 54.5,48.5 parent: 2 @@ -164673,14 +157327,14 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2079: + 2094: - On: Open - Off: Close - 2084: + 2099: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23877 + - uid: 23927 components: - pos: 56.5,44.5 parent: 2 @@ -164688,14 +157342,14 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2061: + 2076: - On: Open - Off: Close - 2060: + 2075: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23878 + - uid: 23928 components: - pos: 50.5,44.5 parent: 2 @@ -164703,14 +157357,14 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2081: + 2096: - On: Open - Off: Close - 2067: + 2082: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23879 + - uid: 23929 components: - pos: 52.5,44.5 parent: 2 @@ -164718,27 +157372,27 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2060: + 2075: - On: Close - Off: Open - 2069: + 2084: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23880 + - uid: 23930 components: - pos: 58.5,46.5 parent: 2 type: Transform - linkedPorts: - 2066: + 2081: - On: Open - Off: Close - 2082: + 2097: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23881 + - uid: 23931 components: - pos: 54.5,44.5 parent: 2 @@ -164746,27 +157400,27 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2077: + 2092: - On: Open - Off: Close - 2076: + 2091: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23882 + - uid: 23932 components: - pos: 50.5,46.5 parent: 2 type: Transform - linkedPorts: - 2078: + 2093: - On: Close - Off: Open - 2084: + 2099: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23883 + - uid: 23933 components: - pos: 56.5,46.5 parent: 2 @@ -164774,14 +157428,14 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2085: + 2100: - On: Open - Off: Close - 2075: + 2090: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23884 + - uid: 23934 components: - pos: 58.5,44.5 parent: 2 @@ -164789,36 +157443,36 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2077: + 2092: - On: Open - Off: Close - 2083: + 2098: - On: Open - Off: Close - 2060: + 2075: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23885 + - uid: 23935 components: - pos: 56.5,48.5 parent: 2 type: Transform - linkedPorts: - 2073: + 2088: - On: Open - Off: Close - 2072: + 2087: - On: Open - Off: Close - 2079: + 2094: - On: Close - Off: Open - 2083: + 2098: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23886 + - uid: 23936 components: - rot: 1.5707963267948966 rad pos: -35.5,29.5 @@ -164827,60 +157481,60 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23753: + 23803: - On: Open - Off: Close - 23751: + 23801: - On: Open - Off: Close - 23748: + 23798: - On: Open - Off: Close - 23759: + 23809: - On: Open - Off: Close - 23731: + 23781: - On: Open - Off: Close - 23756: + 23806: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23887 + - uid: 23937 components: - pos: 54.5,51.5 parent: 2 type: Transform - linkedPorts: - 2072: + 2087: - On: Open - Off: Close - 2066: + 2081: - On: Open - Off: Close - 2076: + 2091: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23888 + - uid: 23938 components: - pos: 5.5,49.5 parent: 2 type: Transform - linkedPorts: - 2042: + 2057: - On: Open - Off: Close - 2043: + 2058: - On: Open - Off: Close - 2041: + 2056: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23889 + - uid: 23939 components: - pos: 27.5,44.5 parent: 2 @@ -164888,64 +157542,64 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2096: + 2111: - On: Open - Off: Close - 2099: + 2114: - On: Open - Off: Close - 2100: + 2115: - On: Open - Off: Close - 2095: + 2110: - On: Open - Off: Close - 2093: + 2108: - On: Open - Off: Close - 2094: + 2109: - On: Open - Off: Close - 2102: + 2117: - On: Open - Off: Close - 2101: + 2116: - On: Open - Off: Close - 2098: + 2113: - On: Open - Off: Close - 2097: + 2112: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23890 + - uid: 23940 components: - pos: -28.5,-96.5 parent: 2 type: Transform - linkedPorts: - 2086: + 2101: - On: Open - Off: Close - 2087: + 2102: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23891 + - uid: 23941 components: - pos: -16.5,-96.5 parent: 2 type: Transform - linkedPorts: - 2088: + 2103: - On: Open - Off: Close - 2089: + 2104: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23892 + - uid: 23942 components: - rot: 3.141592653589793 rad pos: -5.5,-89.5 @@ -164954,32 +157608,32 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2110: + 2125: - On: Open - Off: Close - 2103: + 2118: - On: Open - Off: Close - 2104: + 2119: - On: Open - Off: Close - 2107: + 2122: - On: Open - Off: Close - 2105: + 2120: - On: Open - Off: Close - 2106: + 2121: - On: Open - Off: Close - 2108: + 2123: - On: Open - Off: Close - 2109: + 2124: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23893 + - uid: 23943 components: - pos: -8.5,-94.5 parent: 2 @@ -164987,53 +157641,53 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2110: + 2125: - On: Open - Off: Close - 2103: + 2118: - On: Open - Off: Close - 2104: + 2119: - On: Open - Off: Close - 2105: + 2120: - On: Open - Off: Close - 2107: + 2122: - On: Open - Off: Close - 2106: + 2121: - On: Open - Off: Close - 2108: + 2123: - On: Open - Off: Close - 2109: + 2124: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23894 + - uid: 23944 components: - rot: 3.141592653589793 rad pos: 48.5,-59.5 parent: 2 type: Transform - linkedPorts: - 2050: + 2065: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23895 + - uid: 23945 components: - pos: 69.5,-32.5 parent: 2 type: Transform - linkedPorts: - 2091: + 2106: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23896 + - uid: 23946 components: - pos: 33.483017,17.346874 parent: 2 @@ -165041,24 +157695,24 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23749: + 23799: - On: Open - Off: Close - 23757: + 23807: - On: Open - Off: Close - 23750: + 23800: - On: Open - Off: Close - 23752: + 23802: - On: Open - Off: Close - 23740: + 23790: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23897 + - uid: 23947 components: - rot: 3.141592653589793 rad pos: 64.5,-55.5 @@ -165067,42 +157721,42 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23747: + 23797: - On: Open - Off: Close - 23746: + 23796: - On: Open - Off: Close - 23742: + 23792: - On: Open - Off: Close - 23764: + 23814: - On: Open - Off: Close - 23763: + 23813: - On: Open - Off: Close - 23766: + 23816: - On: Open - Off: Close - 23765: + 23815: - On: Open - Off: Close - 23767: + 23817: - On: Open - Off: Close - 23768: + 23818: - On: Open - Off: Close - 23769: + 23819: - On: Open - Off: Close - 23770: + 23820: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23898 + - uid: 23948 components: - rot: -1.5707963267948966 rad pos: -16.5,-55.5 @@ -165111,26 +157765,26 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23772: + 23822: - On: Open - Off: Close - 23771: + 23821: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23899 + - uid: 23949 components: - pos: -51.5,36.5 parent: 2 type: Transform - linkedPorts: - 2062: + 2077: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23900 + - uid: 23950 components: - rot: 1.5707963267948966 rad pos: 3.5,10.5 @@ -165139,33 +157793,33 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23776: + 23826: - On: Open - Off: Close - 23777: + 23827: - On: Open - Off: Close - 23778: + 23828: - On: Open - Off: Close - 23783: + 23833: - On: Open - Off: Close - 23782: + 23832: - On: Open - Off: Close - 23781: + 23831: - On: Open - Off: Close - 23780: + 23830: - On: Open - Off: Close - 23779: + 23829: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23901 + - uid: 23951 components: - pos: 33.487907,17.698355 parent: 2 @@ -165173,35 +157827,35 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23785: + 23835: - On: Open - Off: Close - 23786: + 23836: - On: Open - Off: Close - 23787: + 23837: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23902 + - uid: 23952 components: - rot: -1.5707963267948966 rad pos: -5.5,10.5 parent: 2 type: Transform - linkedPorts: - 23733: + 23783: - On: Open - Off: Close - 23788: + 23838: - On: Open - Off: Close - 23738: + 23788: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23903 + - uid: 23953 components: - rot: -1.5707963267948966 rad pos: 45.5,-2.5 @@ -165210,211 +157864,211 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23797: + 23847: - On: Open - Off: Close - 23796: + 23846: - On: Open - Off: Close - 23795: + 23845: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23904 + - uid: 23954 components: - rot: -1.5707963267948966 rad pos: 29.5,-1.5 parent: 2 type: Transform - linkedPorts: - 23807: + 23857: - On: Open - Off: Close - 23806: + 23856: - On: Open - Off: Close - 23805: + 23855: - On: Open - Off: Close - 23808: + 23858: - On: Open - Off: Close - 23809: + 23859: - On: Open - Off: Close - 23810: + 23860: - On: Open - Off: Close - 23811: + 23861: - On: Open - Off: Close - 23812: + 23862: - On: Open - Off: Close - 23813: + 23863: - On: Open - Off: Close - 23814: + 23864: - On: Open - Off: Close - 23816: + 23866: - On: Open - Off: Close - 23822: + 23872: - On: Open - Off: Close - 23821: + 23871: - On: Open - Off: Close - 23820: + 23870: - On: Open - Off: Close - 23819: + 23869: - On: Open - Off: Close - 23818: + 23868: - On: Open - Off: Close - 23817: + 23867: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23905 + - uid: 23955 components: - rot: -1.5707963267948966 rad pos: 31.5,-23.5 parent: 2 type: Transform - - uid: 23906 + - uid: 23956 components: - pos: -2.5,16.5 parent: 2 type: Transform - linkedPorts: - 23727: + 23777: - On: Open - Off: Close - Status: Toggle - 23728: + 23778: - On: Open - Off: Close - Status: Toggle type: DeviceLinkSource - type: ItemCooldown - - uid: 23907 + - uid: 23957 components: - pos: -74.5,-43.5 parent: 2 type: Transform - linkedPorts: - 2039: + 2054: - On: Open - Off: Close - Status: Toggle - 2040: + 2055: - On: Open - Off: Close - Status: Toggle - 2038: + 2053: - On: Open - Off: Close - Status: Toggle type: DeviceLinkSource - - uid: 23908 + - uid: 23958 components: - pos: -74.5,-38.5 parent: 2 type: Transform - linkedPorts: - 2036: + 2051: - On: Open - Off: Close - Status: Toggle - 2035: + 2050: - On: Open - Off: Close - Status: Toggle - 2037: + 2052: - On: Open - Off: Close - Status: Toggle type: DeviceLinkSource - - uid: 23909 + - uid: 23959 components: - rot: -1.5707963267948966 rad pos: -41.5,-39.5 parent: 2 type: Transform - linkedPorts: - 2092: + 2107: - On: Open - Off: Close - Status: Toggle - 2053: + 2068: - On: Open - Off: Close - Status: Toggle type: DeviceLinkSource - proto: SignalSwitchDirectional entities: - - uid: 23910 + - uid: 23960 components: - rot: 1.5707963267948966 rad pos: 0.5,-7.5 parent: 2 type: Transform - linkedPorts: - 23832: + 23882: - On: Open - Off: Close - Status: Toggle - 23830: + 23880: - Off: Close - On: Open - Status: Toggle - 23833: + 23883: - On: Open - Off: Close - Status: Toggle - 23831: + 23881: - On: Open - Off: Close - Status: Toggle - 22260: + 22298: - Status: Toggle - 21884: + 21926: - Status: Toggle type: DeviceLinkSource - proto: SignAnomaly entities: - - uid: 23911 + - uid: 23961 components: - pos: 76.5,-42.5 parent: 2 type: Transform - proto: SignAnomaly2 entities: - - uid: 23912 + - uid: 23962 components: - pos: 63.5,-41.5 parent: 2 type: Transform - proto: SignArmory entities: - - uid: 23913 + - uid: 23963 components: - pos: 29.5,24.5 parent: 2 type: Transform - proto: SignAtmos entities: - - uid: 23914 + - uid: 23964 components: - pos: -21.5,-31.5 parent: 2 type: Transform - - uid: 23915 + - uid: 23965 components: - name: Thermoelectric Generator type: MetaData @@ -165422,7 +158076,7 @@ entities: pos: -71.5,-33.5 parent: 2 type: Transform - - uid: 23916 + - uid: 23966 components: - name: Thermo-Electric Generator type: MetaData @@ -165432,24 +158086,24 @@ entities: type: Transform - proto: SignAtmosMinsky entities: - - uid: 23917 + - uid: 23967 components: - pos: -30.5,-29.5 parent: 2 type: Transform - - uid: 23918 + - uid: 23968 components: - pos: -21.5,-33.5 parent: 2 type: Transform - proto: SignBar entities: - - uid: 23919 + - uid: 23969 components: - pos: 15.5,5.5 parent: 2 type: Transform - - uid: 23920 + - uid: 23970 components: - rot: 1.5707963267948966 rad pos: 12.5,4.5 @@ -165457,97 +158111,97 @@ entities: type: Transform - proto: SignBiohazardMed entities: - - uid: 23921 + - uid: 23971 components: - pos: -23.5,-74.5 parent: 2 type: Transform - proto: SignBridge entities: - - uid: 23922 + - uid: 23972 components: - pos: 17.5,-26.5 parent: 2 type: Transform - - uid: 23923 + - uid: 23973 components: - pos: 33.5,-26.5 parent: 2 type: Transform - proto: SignCanisters entities: - - uid: 23924 + - uid: 23974 components: - pos: -36.5,-39.5 parent: 2 type: Transform - - uid: 23925 + - uid: 23975 components: - pos: 47.5,-50.5 parent: 2 type: Transform - proto: SignCargo entities: - - uid: 23926 + - uid: 23976 components: - pos: -21.5,22.5 parent: 2 type: Transform - proto: SignCargoDock entities: - - uid: 23927 + - uid: 23977 components: - pos: -35.532974,23.594805 parent: 2 type: Transform - proto: SignChem entities: - - uid: 23928 + - uid: 23978 components: - pos: 2.5,-44.5 parent: 2 type: Transform - proto: SignCloning entities: - - uid: 23929 + - uid: 23979 components: - pos: -7.5,-62.5 parent: 2 type: Transform - proto: SignConference entities: - - uid: 23930 + - uid: 23980 components: - pos: 22.5,-26.5 parent: 2 type: Transform - proto: SignDangerMed entities: - - uid: 23931 + - uid: 23981 components: - pos: 15.5,35.5 parent: 2 type: Transform - proto: SignDirectionalBar entities: - - uid: 23932 + - uid: 23982 components: - pos: -19.478512,48.31118 parent: 2 type: Transform - - uid: 23933 + - uid: 23983 components: - rot: 1.5707963267948966 rad pos: -17.472397,9.2931385 parent: 2 type: Transform - - uid: 23934 + - uid: 23984 components: - rot: 3.141592653589793 rad pos: 23.49888,-45.152493 parent: 2 type: Transform - - uid: 23935 + - uid: 23985 components: - rot: 1.5707963267948966 rad pos: -27.50719,3.4686704 @@ -165555,52 +158209,52 @@ entities: type: Transform - proto: SignDirectionalBridge entities: - - uid: 23936 + - uid: 23986 components: - pos: -19.478844,48.09307 parent: 2 type: Transform - - uid: 23937 + - uid: 23987 components: - rot: 1.5707963267948966 rad pos: -1.5055174,1.4292434 parent: 2 type: Transform - - uid: 23938 + - uid: 23988 components: - rot: 1.5707963267948966 rad pos: -2.4872613,-24.496803 parent: 2 type: Transform - - uid: 23939 + - uid: 23989 components: - pos: 27.5,-7.5 parent: 2 type: Transform - - uid: 23940 + - uid: 23990 components: - pos: 15.5507345,4.4965997 parent: 2 type: Transform - - uid: 23941 + - uid: 23991 components: - rot: 1.5707963267948966 rad pos: -11.506838,1.2987667 parent: 2 type: Transform - - uid: 23942 + - uid: 23992 components: - rot: 1.5707963267948966 rad pos: -1.4898663,-40.13394 parent: 2 type: Transform - - uid: 23943 + - uid: 23993 components: - rot: 1.5707963267948966 rad pos: -17.465254,8.332064 parent: 2 type: Transform - - uid: 23944 + - uid: 23994 components: - rot: 1.5707963267948966 rad pos: -27.50719,3.2186704 @@ -165608,19 +158262,19 @@ entities: type: Transform - proto: SignDirectionalChapel entities: - - uid: 23945 + - uid: 23995 components: - rot: -1.5707963267948966 rad pos: -27.5,2.5 parent: 2 type: Transform - - uid: 23946 + - uid: 23996 components: - rot: 3.141592653589793 rad pos: -17.448181,-40.311073 parent: 2 type: Transform - - uid: 23947 + - uid: 23997 components: - rot: -1.5707963267948966 rad pos: -21.478504,9.770466 @@ -165628,238 +158282,238 @@ entities: type: Transform - proto: SignDirectionalEng entities: - - uid: 23948 + - uid: 23998 components: - rot: -1.5707963267948966 rad pos: 23.456676,-44.465714 parent: 2 type: Transform - - uid: 23949 + - uid: 23999 components: - rot: -1.5707963267948966 rad pos: 13.481093,-40.52887 parent: 2 type: Transform - - uid: 23950 + - uid: 24000 components: - rot: -1.5707963267948966 rad pos: -1.5094987,0.23005629 parent: 2 type: Transform - - uid: 23951 + - uid: 24001 components: - rot: -1.5707963267948966 rad pos: 15.5186825,0.3410281 parent: 2 type: Transform - - uid: 23952 + - uid: 24002 components: - rot: -1.5707963267948966 rad pos: -6.468719,-24.535433 parent: 2 type: Transform - - uid: 23953 + - uid: 24003 components: - rot: -1.5707963267948966 rad pos: 13.494198,-28.706446 parent: 2 type: Transform - - uid: 23954 + - uid: 24004 components: - rot: -1.5707963267948966 rad pos: 27.506605,-7.2696166 parent: 2 type: Transform - - uid: 23955 + - uid: 24005 components: - pos: -11.54485,0.20892155 parent: 2 type: Transform - - uid: 23956 + - uid: 24006 components: - rot: -1.5707963267948966 rad pos: -12.525326,-40.537384 parent: 2 type: Transform - - uid: 23957 + - uid: 24007 components: - rot: -1.5707963267948966 rad pos: 37.56283,-40.519398 parent: 2 type: Transform - - uid: 23958 + - uid: 24008 components: - pos: -19.479143,47.185772 parent: 2 type: Transform - - uid: 23959 + - uid: 24009 components: - pos: -21.4735,10.205865 parent: 2 type: Transform - - uid: 23960 + - uid: 24010 components: - rot: 3.141592653589793 rad pos: -17.5,-33.5 parent: 2 type: Transform - - uid: 23961 + - uid: 24011 components: - pos: -27.491566,-1.4688294 parent: 2 type: Transform - proto: SignDirectionalEvac entities: - - uid: 23962 + - uid: 24012 components: - rot: 1.5707963267948966 rad pos: 23.453842,-7.240517 parent: 2 type: Transform - - uid: 23963 + - uid: 24013 components: - rot: 3.141592653589793 rad pos: 13.494197,-24.550196 parent: 2 type: Transform - - uid: 23964 + - uid: 24014 components: - rot: 3.141592653589793 rad pos: 17.50633,-38.506306 parent: 2 type: Transform - - uid: 23965 + - uid: 24015 components: - rot: 3.141592653589793 rad pos: 27.469652,-44.466072 parent: 2 type: Transform - - uid: 23966 + - uid: 24016 components: - rot: 3.141592653589793 rad pos: 33.56561,-38.47694 parent: 2 type: Transform - - uid: 23967 + - uid: 24017 components: - rot: 1.5707963267948966 rad pos: 15.500585,1.4258997 parent: 2 type: Transform - - uid: 23968 + - uid: 24018 components: - rot: 1.5707963267948966 rad pos: -2.4941144,-24.735882 parent: 2 type: Transform - - uid: 23969 + - uid: 24019 components: - rot: 1.5707963267948966 rad pos: -1.5055175,1.6636184 parent: 2 type: Transform - - uid: 23970 + - uid: 24020 components: - rot: 1.5707963267948966 rad pos: -11.506838,1.7987667 parent: 2 type: Transform - - uid: 23971 + - uid: 24021 components: - rot: 1.5707963267948966 rad pos: -1.4898663,-40.82144 parent: 2 type: Transform - - uid: 23972 + - uid: 24022 components: - rot: 1.5707963267948966 rad pos: 35.5,3.5 parent: 2 type: Transform - - uid: 23973 + - uid: 24023 components: - pos: -19.483376,48.548702 parent: 2 type: Transform - - uid: 23974 + - uid: 24024 components: - rot: 1.5707963267948966 rad pos: -17.48425,-7.298242 parent: 2 type: Transform - - uid: 23975 + - uid: 24025 components: - rot: 1.5707963267948966 rad pos: -17.5155,-24.43221 parent: 2 type: Transform - - uid: 23976 + - uid: 24026 components: - rot: 1.5707963267948966 rad pos: -17.453,-40.550083 parent: 2 type: Transform - - uid: 23977 + - uid: 24027 components: - rot: 1.5707963267948966 rad pos: -17.465254,9.066439 parent: 2 type: Transform - - uid: 23978 + - uid: 24028 components: - rot: 3.141592653589793 rad pos: 60.5,-42.5 parent: 2 type: Transform - - uid: 23979 + - uid: 24029 components: - pos: -17.5,22.5 parent: 2 type: Transform - - uid: 23980 + - uid: 24030 components: - pos: -17.5,33.5 parent: 2 type: Transform - proto: SignDirectionalFood entities: - - uid: 23981 + - uid: 24031 components: - rot: -1.5707963267948966 rad pos: 23.455772,-7.472424 parent: 2 type: Transform - - uid: 23982 + - uid: 24032 components: - rot: 3.141592653589793 rad pos: -6.442209,-23.658274 parent: 2 type: Transform - - uid: 23983 + - uid: 24033 components: - rot: -1.5707963267948966 rad pos: 13.515763,-23.596605 parent: 2 type: Transform - - uid: 23984 + - uid: 24034 components: - rot: 3.141592653589793 rad pos: 13.482204,-40.04481 parent: 2 type: Transform - - uid: 23985 + - uid: 24035 components: - rot: 3.141592653589793 rad pos: -6.4057527,-39.46833 parent: 2 type: Transform - - uid: 23986 + - uid: 24036 components: - rot: 3.141592653589793 rad pos: 23.49562,-45.402493 parent: 2 type: Transform - - uid: 23987 + - uid: 24037 components: - rot: 1.5707963267948966 rad pos: -27.50719,2.7655454 @@ -165867,43 +158521,43 @@ entities: type: Transform - proto: SignDirectionalHop entities: - - uid: 23988 + - uid: 24038 components: - rot: 3.141592653589793 rad pos: -6.407528,-39.689182 parent: 2 type: Transform - - uid: 23989 + - uid: 24039 components: - rot: 3.141592653589793 rad pos: -2.5195708,-23.764477 parent: 2 type: Transform - - uid: 23990 + - uid: 24040 components: - rot: -1.5707963267948966 rad pos: 13.506188,-24.076977 parent: 2 type: Transform - - uid: 23991 + - uid: 24041 components: - rot: 3.141592653589793 rad pos: 13.449441,-39.80865 parent: 2 type: Transform - - uid: 23992 + - uid: 24042 components: - rot: 1.5707963267948966 rad pos: -2.5029292,-2.2492237 parent: 2 type: Transform - - uid: 23993 + - uid: 24043 components: - rot: -1.5707963267948966 rad pos: 28.50559,-7.2209973 parent: 2 type: Transform - - uid: 23994 + - uid: 24044 components: - rot: -1.5707963267948966 rad pos: 23.500246,-45.63412 @@ -165911,24 +158565,24 @@ entities: type: Transform - proto: SignDirectionalJanitor entities: - - uid: 23995 + - uid: 24045 components: - pos: -6.5,-2.5 parent: 2 type: Transform - - uid: 23996 + - uid: 24046 components: - rot: -1.5707963267948966 rad pos: 13.511264,-23.825424 parent: 2 type: Transform - - uid: 23997 + - uid: 24047 components: - rot: -1.5707963267948966 rad pos: 13.468106,-40.766113 parent: 2 type: Transform - - uid: 23998 + - uid: 24048 components: - rot: 3.141592653589793 rad pos: -6.4057527,-39.226246 @@ -165936,230 +158590,230 @@ entities: type: Transform - proto: SignDirectionalMed entities: - - uid: 23999 + - uid: 24049 components: - pos: -19.479143,47.404522 parent: 2 type: Transform - - uid: 24000 + - uid: 24050 components: - rot: -1.5707963267948966 rad pos: 13.494197,-24.31582 parent: 2 type: Transform - - uid: 24001 + - uid: 24051 components: - rot: -1.5707963267948966 rad pos: 23.456676,-44.23134 parent: 2 type: Transform - - uid: 24002 + - uid: 24052 components: - rot: -1.5707963267948966 rad pos: 13.481093,-40.279392 parent: 2 type: Transform - - uid: 24003 + - uid: 24053 components: - rot: -1.5707963267948966 rad pos: 15.518682,0.809778 parent: 2 type: Transform - - uid: 24004 + - uid: 24054 components: - pos: -1.509499,0.7144314 parent: 2 type: Transform - - uid: 24005 + - uid: 24055 components: - pos: -6.468719,-24.785433 parent: 2 type: Transform - - uid: 24006 + - uid: 24056 components: - pos: -11.538088,0.45501685 parent: 2 type: Transform - - uid: 24007 + - uid: 24057 components: - rot: -1.5707963267948966 rad pos: 37.560596,-40.278557 parent: 2 type: Transform - - uid: 24008 + - uid: 24058 components: - pos: -17.51201,-24.680704 parent: 2 type: Transform - - uid: 24009 + - uid: 24059 components: - pos: -21.471863,9.993778 parent: 2 type: Transform - - uid: 24010 + - uid: 24060 components: - pos: -17.494442,-12.803106 parent: 2 type: Transform - - uid: 24011 + - uid: 24061 components: - pos: -27.491566,-1.7032045 parent: 2 type: Transform - proto: SignDirectionalSci entities: - - uid: 24012 + - uid: 24062 components: - rot: 1.5707963267948966 rad pos: -2.4872613,-24.231178 parent: 2 type: Transform - - uid: 24013 + - uid: 24063 components: - rot: 1.5707963267948966 rad pos: 27.465042,-44.22285 parent: 2 type: Transform - - uid: 24014 + - uid: 24064 components: - pos: 15.550735,4.2699327 parent: 2 type: Transform - - uid: 24015 + - uid: 24065 components: - pos: 13.494197,-28.22207 parent: 2 type: Transform - - uid: 24016 + - uid: 24066 components: - pos: 27.506117,-7.7341094 parent: 2 type: Transform - - uid: 24017 + - uid: 24067 components: - rot: 1.5707963267948966 rad pos: -11.506838,1.5487667 parent: 2 type: Transform - - uid: 24018 + - uid: 24068 components: - rot: 1.5707963267948966 rad pos: -1.4898663,-40.368317 parent: 2 type: Transform - - uid: 24019 + - uid: 24069 components: - pos: -19.479143,47.623272 parent: 2 type: Transform - - uid: 24020 + - uid: 24070 components: - rot: 1.5707963267948966 rad pos: -17.465254,8.816439 parent: 2 type: Transform - - uid: 24021 + - uid: 24071 components: - rot: 1.5707963267948966 rad pos: -17.460167,-40.790154 parent: 2 type: Transform - - uid: 24022 + - uid: 24072 components: - pos: -17.507042,-24.18393 parent: 2 type: Transform - - uid: 24023 + - uid: 24073 components: - pos: -27.491566,-1.2344544 parent: 2 type: Transform - proto: SignDirectionalSec entities: - - uid: 24024 + - uid: 24074 components: - rot: 3.141592653589793 rad pos: 23.45433,-7.7213244 parent: 2 type: Transform - - uid: 24025 + - uid: 24075 components: - rot: 3.141592653589793 rad pos: 27.468637,-44.695934 parent: 2 type: Transform - - uid: 24026 + - uid: 24076 components: - rot: 3.141592653589793 rad pos: 33.55467,-38.221992 parent: 2 type: Transform - - uid: 24027 + - uid: 24077 components: - rot: 3.141592653589793 rad pos: 17.50898,-38.26922 parent: 2 type: Transform - - uid: 24028 + - uid: 24078 components: - rot: 3.141592653589793 rad pos: 15.5581455,4.7444477 parent: 2 type: Transform - - uid: 24029 + - uid: 24079 components: - rot: 3.141592653589793 rad pos: 13.4980955,-24.785376 parent: 2 type: Transform - - uid: 24030 + - uid: 24080 components: - rot: 1.5707963267948966 rad pos: -6.4826374,-24.301481 parent: 2 type: Transform - - uid: 24031 + - uid: 24081 components: - rot: 1.5707963267948966 rad pos: -1.4980723,1.197365 parent: 2 type: Transform - - uid: 24032 + - uid: 24082 components: - rot: 1.5707963267948966 rad pos: -11.517976,1.041115 parent: 2 type: Transform - - uid: 24033 + - uid: 24083 components: - rot: 1.5707963267948966 rad pos: -1.4758278,-40.604027 parent: 2 type: Transform - - uid: 24034 + - uid: 24084 components: - pos: -19.471409,47.857254 parent: 2 type: Transform - - uid: 24035 + - uid: 24085 components: - rot: 1.5707963267948966 rad pos: -17.523046,-28.22695 parent: 2 type: Transform - - uid: 24036 + - uid: 24086 components: - rot: 1.5707963267948966 rad pos: -17.476206,8.574429 parent: 2 type: Transform - - uid: 24037 + - uid: 24087 components: - rot: 1.5707963267948966 rad pos: -17.478817,-7.5615916 parent: 2 type: Transform - - uid: 24038 + - uid: 24088 components: - rot: 1.5707963267948966 rad pos: -27.522816,2.2499206 @@ -166167,12 +158821,12 @@ entities: type: Transform - proto: SignDirectionalSolar entities: - - uid: 24039 + - uid: 24089 components: - pos: -0.5,-76.5 parent: 2 type: Transform - - uid: 24040 + - uid: 24090 components: - rot: 3.141592653589793 rad pos: 65.5,27.5 @@ -166180,225 +158834,225 @@ entities: type: Transform - proto: SignDirectionalSupply entities: - - uid: 24041 + - uid: 24091 components: - rot: -1.5707963267948966 rad pos: 23.453947,-44.6932 parent: 2 type: Transform - - uid: 24042 + - uid: 24092 components: - rot: -1.5707963267948966 rad pos: 15.5186825,0.5754031 parent: 2 type: Transform - - uid: 24043 + - uid: 24093 components: - rot: -1.5707963267948966 rad pos: -1.5094988,0.4800564 parent: 2 type: Transform - - uid: 24044 + - uid: 24094 components: - rot: -1.5707963267948966 rad pos: 13.494197,-28.47207 parent: 2 type: Transform - - uid: 24045 + - uid: 24095 components: - rot: 3.141592653589793 rad pos: -11.522463,0.70501685 parent: 2 type: Transform - - uid: 24046 + - uid: 24096 components: - rot: -1.5707963267948966 rad pos: -12.525326,-40.287384 parent: 2 type: Transform - - uid: 24047 + - uid: 24097 components: - rot: -1.5707963267948966 rad pos: 37.56283,-40.753773 parent: 2 type: Transform - - uid: 24048 + - uid: 24098 components: - rot: 3.141592653589793 rad pos: -21.4735,9.533642 parent: 2 type: Transform - - uid: 24049 + - uid: 24099 components: - rot: 3.141592653589793 rad pos: -2.5,-23.5 parent: 2 type: Transform - - uid: 24050 + - uid: 24100 components: - rot: 3.141592653589793 rad pos: -17.496458,-33.756527 parent: 2 type: Transform - - uid: 24051 + - uid: 24101 components: - rot: 3.141592653589793 rad pos: -17.5,-12.5 parent: 2 type: Transform - - uid: 24052 + - uid: 24102 components: - rot: 3.141592653589793 rad pos: -27.491566,3.7030454 parent: 2 type: Transform - - uid: 24053 + - uid: 24103 components: - pos: -19.471409,48.794754 parent: 2 type: Transform - proto: SignDisposalSpace entities: - - uid: 24054 + - uid: 24104 components: - pos: 23.5,-52.5 parent: 2 type: Transform - proto: SignElectrical entities: - - uid: 24055 + - uid: 24105 components: - pos: -78.5,-5.5 parent: 2 type: Transform - - uid: 24056 + - uid: 24106 components: - pos: -78.5,-19.5 parent: 2 type: Transform - - uid: 24057 + - uid: 24107 components: - pos: -71.5,-2.5 parent: 2 type: Transform - - uid: 24058 + - uid: 24108 components: - pos: -64.5,-2.5 parent: 2 type: Transform - - uid: 24059 + - uid: 24109 components: - pos: 24.5,39.5 parent: 2 type: Transform - - uid: 24060 + - uid: 24110 components: - pos: 32.5,39.5 parent: 2 type: Transform - - uid: 24061 + - uid: 24111 components: - pos: 38.5,31.5 parent: 2 type: Transform - proto: SignElectricalMed entities: - - uid: 24062 + - uid: 24112 components: - pos: -12.5,-70.5 parent: 2 type: Transform - - uid: 24063 + - uid: 24113 components: - pos: 42.5,-60.5 parent: 2 type: Transform - - uid: 24064 + - uid: 24114 components: - pos: 8.5,-44.5 parent: 2 type: Transform - - uid: 24065 + - uid: 24115 components: - pos: 37.5,-44.5 parent: 2 type: Transform - - uid: 24066 + - uid: 24116 components: - pos: 37.5,-29.5 parent: 2 type: Transform - - uid: 24067 + - uid: 24117 components: - pos: 46.5,-6.5 parent: 2 type: Transform - - uid: 24068 + - uid: 24118 components: - pos: 47.5,-0.5 parent: 2 type: Transform - - uid: 24069 + - uid: 24119 components: - pos: 33.5,23.5 parent: 2 type: Transform - - uid: 24070 + - uid: 24120 components: - pos: -29.5,-54.5 parent: 2 type: Transform - proto: SignEngine entities: - - uid: 24071 + - uid: 24121 components: - pos: -43.5,-9.5 parent: 2 type: Transform - - uid: 24072 + - uid: 24122 components: - pos: -49.5,-18.5 parent: 2 type: Transform - proto: SignEngineering entities: - - uid: 24073 + - uid: 24123 components: - pos: -21.5,-8.5 parent: 2 type: Transform - - uid: 24074 + - uid: 24124 components: - pos: -21.5,-15.5 parent: 2 type: Transform - proto: SignEscapePods entities: - - uid: 24075 + - uid: 24125 components: - pos: 29.5,-93.5 parent: 2 type: Transform - - uid: 24076 + - uid: 24126 components: - pos: -16.5,68.5 parent: 2 type: Transform - - uid: 24077 + - uid: 24127 components: - pos: 49.5,-93.5 parent: 2 type: Transform - proto: SignEVA entities: - - uid: 24078 + - uid: 24128 components: - pos: 34.5,-15.5 parent: 2 type: Transform - proto: SignExplosives entities: - - uid: 24079 + - uid: 24129 components: - rot: 1.5707963267948966 rad pos: 68.5,-26.5 @@ -166406,98 +159060,98 @@ entities: type: Transform - proto: SignFlammableMed entities: - - uid: 24080 + - uid: 24130 components: - pos: -42.5,-63.5 parent: 2 type: Transform - proto: SignGravity entities: - - uid: 24081 + - uid: 24131 components: - pos: -18.5,-3.5 parent: 2 type: Transform - proto: SignHydro3 entities: - - uid: 24082 + - uid: 24132 components: - pos: -5.5,4.5 parent: 2 type: Transform - proto: SignInterrogation entities: - - uid: 24083 + - uid: 24133 components: - pos: 18.5,18.5 parent: 2 type: Transform - proto: SignLaserMed entities: - - uid: 24084 + - uid: 24134 components: - rot: 3.141592653589793 rad pos: -63.5,-29.5 parent: 2 type: Transform - - uid: 24085 + - uid: 24135 components: - pos: -62.5,-22.5 parent: 2 type: Transform - - uid: 24086 + - uid: 24136 components: - pos: -70.5,-22.5 parent: 2 type: Transform - proto: SignLibrary entities: - - uid: 24087 + - uid: 24137 components: - pos: 9.5,-2.5 parent: 2 type: Transform - proto: SignMagneticsMed entities: - - uid: 24088 + - uid: 24138 components: - pos: -47.5,27.5 parent: 2 type: Transform - proto: SignMedical entities: - - uid: 24089 + - uid: 24139 components: - pos: -2.5,-44.5 parent: 2 type: Transform - proto: SignMinerDock entities: - - uid: 24090 + - uid: 24140 components: - pos: -44.5,27.5 parent: 2 type: Transform - proto: SignMorgue entities: - - uid: 24091 + - uid: 24141 components: - pos: -15.5,-68.5 parent: 2 type: Transform - - uid: 24092 + - uid: 24142 components: - pos: -12.5,-62.5 parent: 2 type: Transform - proto: SignPrison entities: - - uid: 24093 + - uid: 24143 components: - pos: 39.5,24.5 parent: 2 type: Transform - - uid: 24094 + - uid: 24144 components: - name: open prison sign type: MetaData @@ -166506,24 +159160,24 @@ entities: type: Transform - proto: SignRadiationMed entities: - - uid: 24095 + - uid: 24145 components: - pos: -63.5,-25.5 parent: 2 type: Transform - proto: SignRedFive entities: - - uid: 24096 + - uid: 24146 components: - pos: 57.5,22.5 parent: 2 type: Transform - - uid: 24097 + - uid: 24147 components: - pos: 41.5,17.5 parent: 2 type: Transform - - uid: 24098 + - uid: 24148 components: - rot: 3.141592653589793 rad pos: 39.5,5.5 @@ -166531,17 +159185,17 @@ entities: type: Transform - proto: SignRedFour entities: - - uid: 24099 + - uid: 24149 components: - pos: 40.5,17.5 parent: 2 type: Transform - - uid: 24100 + - uid: 24150 components: - pos: 54.5,22.5 parent: 2 type: Transform - - uid: 24101 + - uid: 24151 components: - rot: 3.141592653589793 rad pos: 39.5,8.5 @@ -166549,71 +159203,71 @@ entities: type: Transform - proto: SignRedNine entities: - - uid: 24102 + - uid: 24152 components: - pos: 51.62568,41.505035 parent: 2 type: Transform - proto: SignRedOne entities: - - uid: 24103 + - uid: 24153 components: - pos: 45.5,22.5 parent: 2 type: Transform - - uid: 24104 + - uid: 24154 components: - rot: 3.141592653589793 rad pos: 28.5,13.5 parent: 2 type: Transform - - uid: 24105 + - uid: 24155 components: - pos: 30.70196,-15.491432 parent: 2 type: Transform - - uid: 24106 + - uid: 24156 components: - pos: 37.5,17.5 parent: 2 type: Transform - proto: SignRedSeven entities: - - uid: 24107 + - uid: 24157 components: - pos: 60.5,17.5 parent: 2 type: Transform - proto: SignRedSix entities: - - uid: 24108 + - uid: 24158 components: - pos: 42.5,17.5 parent: 2 type: Transform - - uid: 24109 + - uid: 24159 components: - pos: 60.5,20.5 parent: 2 type: Transform - - uid: 24110 + - uid: 24160 components: - pos: 51.40693,41.505035 parent: 2 type: Transform - proto: SignRedThree entities: - - uid: 24111 + - uid: 24161 components: - pos: 51.5,22.5 parent: 2 type: Transform - - uid: 24112 + - uid: 24162 components: - pos: 39.5,17.5 parent: 2 type: Transform - - uid: 24113 + - uid: 24163 components: - rot: 3.141592653589793 rad pos: 34.5,13.5 @@ -166621,18 +159275,18 @@ entities: type: Transform - proto: SignRedTwo entities: - - uid: 24114 + - uid: 24164 components: - pos: 48.5,22.5 parent: 2 type: Transform - - uid: 24115 + - uid: 24165 components: - rot: 3.141592653589793 rad pos: 38.5,17.5 parent: 2 type: Transform - - uid: 24116 + - uid: 24166 components: - rot: 3.141592653589793 rad pos: 31.5,13.5 @@ -166640,130 +159294,130 @@ entities: type: Transform - proto: SignRedZero entities: - - uid: 24117 + - uid: 24167 components: - pos: 30.467585,-15.491432 parent: 2 type: Transform - - uid: 24118 + - uid: 24168 components: - pos: 30.23321,-15.491432 parent: 2 type: Transform - proto: SignRND entities: - - uid: 24119 + - uid: 24169 components: - pos: 47.5,-38.5 parent: 2 type: Transform - proto: SignRobo entities: - - uid: 24120 + - uid: 24170 components: - pos: 66.5,-47.5 parent: 2 type: Transform - proto: SignScience1 entities: - - uid: 24121 + - uid: 24171 components: - pos: 38.5,-40.5 parent: 2 type: Transform - proto: SignShipDock entities: - - uid: 24122 + - uid: 24172 components: - name: docking arm type: MetaData - pos: -14.5,70.5 parent: 2 type: Transform - - uid: 24123 + - uid: 24173 components: - name: docking arm type: MetaData - pos: -20.5,70.5 parent: 2 type: Transform - - uid: 24124 + - uid: 24174 components: - pos: 76.5,-32.5 parent: 2 type: Transform - proto: SignShock entities: - - uid: 24125 + - uid: 24175 components: - pos: 17.5,-30.5 parent: 2 type: Transform - - uid: 24126 + - uid: 24176 components: - pos: 11.5,-15.5 parent: 2 type: Transform - proto: SignSmoking entities: - - uid: 24127 + - uid: 24177 components: - pos: 1.5,-49.5 parent: 2 type: Transform - - uid: 24128 + - uid: 24178 components: - pos: -10.5,-49.5 parent: 2 type: Transform - proto: SignSomethingOld entities: - - uid: 24129 + - uid: 24179 components: - pos: -29.5,2.5 parent: 2 type: Transform - proto: SignSpace entities: - - uid: 24130 + - uid: 24180 components: - pos: -2.5,-76.5 parent: 2 type: Transform - - uid: 24131 + - uid: 24181 components: - pos: -58.5,-53.5 parent: 2 type: Transform - - uid: 24132 + - uid: 24182 components: - pos: -49.5,18.5 parent: 2 type: Transform - proto: SignSurgery entities: - - uid: 24133 + - uid: 24183 components: - pos: -1.5,-62.5 parent: 2 type: Transform - proto: SignTelecomms entities: - - uid: 24134 + - uid: 24184 components: - pos: 13.5,-22.5 parent: 2 type: Transform - proto: SignToolStorage entities: - - uid: 24135 + - uid: 24185 components: - pos: -33.5,-13.5 parent: 2 type: Transform - proto: SignToxins2 entities: - - uid: 24136 + - uid: 24186 components: - name: toxin lab sign type: MetaData @@ -166772,40 +159426,45 @@ entities: type: Transform - proto: SignVirology entities: - - uid: 24137 + - uid: 24187 components: - pos: -18.5,-62.5 parent: 2 type: Transform - proto: SilverOre1 entities: - - uid: 24138 + - uid: 24188 components: - pos: 73.48065,-67.68085 parent: 2 type: Transform - proto: SingularityGenerator entities: - - uid: 24139 + - uid: 24189 components: - pos: -66.5,-13.5 parent: 2 type: Transform + - uid: 24190 + components: + - pos: -72.5,-23.5 + parent: 2 + type: Transform - proto: SinkStemlessWater entities: - - uid: 24140 + - uid: 24191 components: - rot: 1.5707963267948966 rad pos: -31.5,-3.5 parent: 2 type: Transform - - uid: 24141 + - uid: 24192 components: - rot: 1.5707963267948966 rad pos: -31.5,-2.5 parent: 2 type: Transform - - uid: 24142 + - uid: 24193 components: - rot: -1.5707963267948966 rad pos: -4.5,-96.5 @@ -166813,86 +159472,86 @@ entities: type: Transform - proto: SinkWide entities: - - uid: 24143 + - uid: 24194 components: - rot: 3.141592653589793 rad pos: -9.5,-33.5 parent: 2 type: Transform - - uid: 24144 + - uid: 24195 components: - rot: -1.5707963267948966 rad pos: 7.5,-48.5 parent: 2 type: Transform - - uid: 24145 + - uid: 24196 components: - pos: 1.5,9.5 parent: 2 type: Transform - - uid: 24146 + - uid: 24197 components: - rot: 3.141592653589793 rad pos: 17.5,9.5 parent: 2 type: Transform - - uid: 24147 + - uid: 24198 components: - rot: -1.5707963267948966 rad pos: -8.5,-69.5 parent: 2 type: Transform - - uid: 24148 + - uid: 24199 components: - rot: -1.5707963267948966 rad pos: -2.5,5.5 parent: 2 type: Transform - - uid: 24149 + - uid: 24200 components: - rot: -1.5707963267948966 rad pos: -2.5,6.5 parent: 2 type: Transform - - uid: 24150 + - uid: 24201 components: - rot: 3.141592653589793 rad pos: -21.5,41.5 parent: 2 type: Transform - - uid: 24151 + - uid: 24202 components: - rot: 3.141592653589793 rad pos: 62.5,21.5 parent: 2 type: Transform - - uid: 24152 + - uid: 24203 components: - pos: 63.5,13.5 parent: 2 type: Transform - - uid: 24153 + - uid: 24204 components: - pos: 63.5,11.5 parent: 2 type: Transform - - uid: 24154 + - uid: 24205 components: - pos: 63.5,9.5 parent: 2 type: Transform - - uid: 24155 + - uid: 24206 components: - rot: 1.5707963267948966 rad pos: -33.5,9.5 parent: 2 type: Transform - - uid: 24156 + - uid: 24207 components: - pos: -3.5,56.5 parent: 2 type: Transform - - uid: 24157 + - uid: 24208 components: - rot: 3.141592653589793 rad pos: 46.5,-39.5 @@ -166900,7 +159559,7 @@ entities: type: Transform - proto: SmallLight entities: - - uid: 24158 + - uid: 24209 components: - rot: -1.5707963267948966 rad pos: 17.5,-48.5 @@ -166908,133 +159567,169 @@ entities: type: Transform - proto: SMESBasic entities: - - uid: 24159 + - uid: 24210 components: + - name: shuttle smes + type: MetaData - pos: -65.5,-53.5 parent: 2 type: Transform - - uid: 24160 + - uid: 24211 components: + - name: teg smes + type: MetaData - pos: -69.5,-35.5 parent: 2 type: Transform - - uid: 24161 + - uid: 24212 components: + - name: telecoms smes + type: MetaData - pos: 4.5,-20.5 parent: 2 type: Transform - - uid: 24162 + - uid: 24213 components: + - name: south solar smes 2 + type: MetaData - pos: -2.5,-78.5 parent: 2 type: Transform - - uid: 24163 + - uid: 24214 components: + - name: brig smes + type: MetaData - pos: 48.5,-3.5 parent: 2 type: Transform - - uid: 24164 + - uid: 24215 components: + - name: engineering smes 1 + type: MetaData - pos: -48.5,-21.5 parent: 2 type: Transform - - uid: 24165 + - uid: 24216 components: + - name: engineering smes 2 + type: MetaData - pos: -46.5,-21.5 parent: 2 type: Transform - - uid: 24166 + - uid: 24217 components: + - name: engineering smes 3 + type: MetaData - pos: -44.5,-21.5 parent: 2 type: Transform - - uid: 24167 + - uid: 24218 components: + - name: singularity substation + type: MetaData - pos: -50.5,-9.5 parent: 2 type: Transform - - uid: 24168 + - uid: 24219 components: + - name: PA smes + type: MetaData - pos: -56.5,-20.5 parent: 2 type: Transform - - uid: 24169 + - uid: 24220 components: + - name: atmos smes + type: MetaData - pos: -28.5,-37.5 parent: 2 type: Transform - - uid: 24170 + - uid: 24221 components: + - name: syndicate shuttle smes + type: MetaData - pos: -55.5,-88.5 parent: 2 type: Transform - - uid: 24171 + - uid: 24222 components: + - name: north solars smes 1 + type: MetaData - pos: 73.5,38.5 parent: 2 type: Transform - - uid: 24172 + - uid: 24223 components: + - name: north solars smes 2 + type: MetaData - pos: 73.5,34.5 parent: 2 type: Transform - - uid: 24173 + - uid: 24224 components: + - name: south solar smes 1 + type: MetaData - pos: -0.5,-78.5 parent: 2 type: Transform - - uid: 24174 + - uid: 24225 components: + - name: engineering smes 6 + type: MetaData - pos: -70.5,-30.5 parent: 2 type: Transform - - uid: 24175 + - uid: 24226 components: + - name: engineering smes 4 + type: MetaData - pos: -74.5,-30.5 parent: 2 type: Transform - - uid: 24176 + - uid: 24227 components: + - name: engineering smes 5 + type: MetaData - pos: -72.5,-30.5 parent: 2 type: Transform - proto: Soap entities: - - uid: 24177 + - uid: 24228 components: - pos: -13.533843,-21.411894 parent: 2 type: Transform - - uid: 24178 + - uid: 24229 components: - pos: -13.440093,-21.677519 parent: 2 type: Transform - proto: soda_dispenser entities: - - uid: 24179 + - uid: 24230 components: - rot: -1.5707963267948966 rad pos: 18.5,11.5 parent: 2 type: Transform - - uid: 24180 + - uid: 24231 components: - pos: -40.5,-74.5 parent: 2 type: Transform - - uid: 24181 + - uid: 24232 components: - pos: 37.5,51.5 parent: 2 type: Transform - - uid: 24182 + - uid: 24233 components: - rot: 3.141592653589793 rad pos: -20.5,47.5 parent: 2 type: Transform - - uid: 24183 + - uid: 24234 components: - rot: -1.5707963267948966 rad pos: 29.5,-34.5 @@ -167042,653 +159737,653 @@ entities: type: Transform - proto: SodiumLightTube entities: - - uid: 24184 + - uid: 24235 components: - pos: -42.50719,-90.42425 parent: 2 type: Transform - - uid: 24185 + - uid: 24236 components: - pos: -13.634616,12.467242 parent: 2 type: Transform - proto: SolarPanel entities: - - uid: 24186 + - uid: 24237 components: - pos: 10.5,-101.5 parent: 2 type: Transform - - uid: 24187 + - uid: 24238 components: - pos: 16.5,-95.5 parent: 2 type: Transform - - uid: 24188 + - uid: 24239 components: - pos: 18.5,-95.5 parent: 2 type: Transform - - uid: 24189 + - uid: 24240 components: - pos: 6.5,-104.5 parent: 2 type: Transform - - uid: 24190 + - uid: 24241 components: - pos: 10.5,-95.5 parent: 2 type: Transform - - uid: 24191 + - uid: 24242 components: - pos: 12.5,-101.5 parent: 2 type: Transform - - uid: 24192 + - uid: 24243 components: - pos: 8.5,-104.5 parent: 2 type: Transform - - uid: 24193 + - uid: 24244 components: - pos: 14.5,-98.5 parent: 2 type: Transform - - uid: 24194 + - uid: 24245 components: - pos: 10.5,-98.5 parent: 2 type: Transform - - uid: 24195 + - uid: 24246 components: - pos: 8.5,-98.5 parent: 2 type: Transform - - uid: 24196 + - uid: 24247 components: - pos: 8.5,-95.5 parent: 2 type: Transform - - uid: 24197 + - uid: 24248 components: - pos: 12.5,-95.5 parent: 2 type: Transform - - uid: 24198 + - uid: 24249 components: - pos: 12.5,-98.5 parent: 2 type: Transform - - uid: 24199 + - uid: 24250 components: - pos: 14.5,-101.5 parent: 2 type: Transform - - uid: 24200 + - uid: 24251 components: - pos: 14.5,-95.5 parent: 2 type: Transform - - uid: 24201 + - uid: 24252 components: - pos: 6.5,-95.5 parent: 2 type: Transform - - uid: 24202 + - uid: 24253 components: - pos: 8.5,-101.5 parent: 2 type: Transform - - uid: 24203 + - uid: 24254 components: - pos: 4.5,-95.5 parent: 2 type: Transform - - uid: 24204 + - uid: 24255 components: - pos: 12.5,-104.5 parent: 2 type: Transform - - uid: 24205 + - uid: 24256 components: - pos: 16.5,-101.5 parent: 2 type: Transform - - uid: 24206 + - uid: 24257 components: - pos: 18.5,-101.5 parent: 2 type: Transform - - uid: 24207 + - uid: 24258 components: - pos: 18.5,-98.5 parent: 2 type: Transform - - uid: 24208 + - uid: 24259 components: - pos: 16.5,-98.5 parent: 2 type: Transform - - uid: 24209 + - uid: 24260 components: - pos: 18.5,-104.5 parent: 2 type: Transform - - uid: 24210 + - uid: 24261 components: - pos: 16.5,-104.5 parent: 2 type: Transform - - uid: 24211 + - uid: 24262 components: - pos: 4.5,-104.5 parent: 2 type: Transform - - uid: 24212 + - uid: 24263 components: - pos: 4.5,-101.5 parent: 2 type: Transform - - uid: 24213 + - uid: 24264 components: - pos: 6.5,-101.5 parent: 2 type: Transform - - uid: 24214 + - uid: 24265 components: - pos: 4.5,-98.5 parent: 2 type: Transform - - uid: 24215 + - uid: 24266 components: - pos: 6.5,-98.5 parent: 2 type: Transform - - uid: 24216 + - uid: 24267 components: - pos: 14.5,-104.5 parent: 2 type: Transform - - uid: 24217 + - uid: 24268 components: - pos: 10.5,-104.5 parent: 2 type: Transform - - uid: 24218 + - uid: 24269 components: - rot: 1.5707963267948966 rad pos: 90.5,44.5 parent: 2 type: Transform - - uid: 24219 + - uid: 24270 components: - rot: 1.5707963267948966 rad pos: 90.5,43.5 parent: 2 type: Transform - - uid: 24220 + - uid: 24271 components: - rot: 1.5707963267948966 rad pos: 90.5,41.5 parent: 2 type: Transform - - uid: 24221 + - uid: 24272 components: - rot: 1.5707963267948966 rad pos: 90.5,42.5 parent: 2 type: Transform - - uid: 24222 + - uid: 24273 components: - rot: 1.5707963267948966 rad pos: 90.5,40.5 parent: 2 type: Transform - - uid: 24223 + - uid: 24274 components: - rot: 1.5707963267948966 rad pos: 90.5,39.5 parent: 2 type: Transform - - uid: 24224 + - uid: 24275 components: - rot: 1.5707963267948966 rad pos: 90.5,38.5 parent: 2 type: Transform - - uid: 24225 + - uid: 24276 components: - rot: 1.5707963267948966 rad pos: 90.5,37.5 parent: 2 type: Transform - - uid: 24226 + - uid: 24277 components: - rot: 1.5707963267948966 rad pos: 87.5,44.5 parent: 2 type: Transform - - uid: 24227 + - uid: 24278 components: - rot: 1.5707963267948966 rad pos: 87.5,43.5 parent: 2 type: Transform - - uid: 24228 + - uid: 24279 components: - rot: 1.5707963267948966 rad pos: 87.5,42.5 parent: 2 type: Transform - - uid: 24229 + - uid: 24280 components: - rot: 1.5707963267948966 rad pos: 87.5,41.5 parent: 2 type: Transform - - uid: 24230 + - uid: 24281 components: - rot: 1.5707963267948966 rad pos: 87.5,40.5 parent: 2 type: Transform - - uid: 24231 + - uid: 24282 components: - rot: 1.5707963267948966 rad pos: 87.5,39.5 parent: 2 type: Transform - - uid: 24232 + - uid: 24283 components: - rot: 1.5707963267948966 rad pos: 87.5,38.5 parent: 2 type: Transform - - uid: 24233 + - uid: 24284 components: - rot: 1.5707963267948966 rad pos: 87.5,37.5 parent: 2 type: Transform - - uid: 24234 + - uid: 24285 components: - rot: 1.5707963267948966 rad pos: 84.5,44.5 parent: 2 type: Transform - - uid: 24235 + - uid: 24286 components: - rot: 1.5707963267948966 rad pos: 84.5,43.5 parent: 2 type: Transform - - uid: 24236 + - uid: 24287 components: - rot: 1.5707963267948966 rad pos: 84.5,42.5 parent: 2 type: Transform - - uid: 24237 + - uid: 24288 components: - rot: 1.5707963267948966 rad pos: 84.5,41.5 parent: 2 type: Transform - - uid: 24238 + - uid: 24289 components: - rot: 1.5707963267948966 rad pos: 84.5,40.5 parent: 2 type: Transform - - uid: 24239 + - uid: 24290 components: - rot: 1.5707963267948966 rad pos: 84.5,39.5 parent: 2 type: Transform - - uid: 24240 + - uid: 24291 components: - rot: 1.5707963267948966 rad pos: 84.5,38.5 parent: 2 type: Transform - - uid: 24241 + - uid: 24292 components: - rot: 1.5707963267948966 rad pos: 84.5,37.5 parent: 2 type: Transform - - uid: 24242 + - uid: 24293 components: - rot: 1.5707963267948966 rad pos: 81.5,44.5 parent: 2 type: Transform - - uid: 24243 + - uid: 24294 components: - rot: 1.5707963267948966 rad pos: 81.5,43.5 parent: 2 type: Transform - - uid: 24244 + - uid: 24295 components: - rot: 1.5707963267948966 rad pos: 81.5,42.5 parent: 2 type: Transform - - uid: 24245 + - uid: 24296 components: - rot: 1.5707963267948966 rad pos: 81.5,41.5 parent: 2 type: Transform - - uid: 24246 + - uid: 24297 components: - rot: 1.5707963267948966 rad pos: 81.5,40.5 parent: 2 type: Transform - - uid: 24247 + - uid: 24298 components: - rot: 1.5707963267948966 rad pos: 81.5,39.5 parent: 2 type: Transform - - uid: 24248 + - uid: 24299 components: - rot: 1.5707963267948966 rad pos: 81.5,38.5 parent: 2 type: Transform - - uid: 24249 + - uid: 24300 components: - rot: 1.5707963267948966 rad pos: 81.5,37.5 parent: 2 type: Transform - - uid: 24250 + - uid: 24301 components: - rot: 1.5707963267948966 rad pos: 78.5,44.5 parent: 2 type: Transform - - uid: 24251 + - uid: 24302 components: - rot: 1.5707963267948966 rad pos: 78.5,43.5 parent: 2 type: Transform - - uid: 24252 + - uid: 24303 components: - rot: 1.5707963267948966 rad pos: 78.5,42.5 parent: 2 type: Transform - - uid: 24253 + - uid: 24304 components: - rot: 1.5707963267948966 rad pos: 78.5,41.5 parent: 2 type: Transform - - uid: 24254 + - uid: 24305 components: - rot: 1.5707963267948966 rad pos: 78.5,40.5 parent: 2 type: Transform - - uid: 24255 + - uid: 24306 components: - rot: 1.5707963267948966 rad pos: 78.5,39.5 parent: 2 type: Transform - - uid: 24256 + - uid: 24307 components: - rot: 1.5707963267948966 rad pos: 78.5,38.5 parent: 2 type: Transform - - uid: 24257 + - uid: 24308 components: - rot: 1.5707963267948966 rad pos: 78.5,37.5 parent: 2 type: Transform - - uid: 24258 + - uid: 24309 components: - rot: 1.5707963267948966 rad pos: 78.5,35.5 parent: 2 type: Transform - - uid: 24259 + - uid: 24310 components: - rot: 1.5707963267948966 rad pos: 78.5,34.5 parent: 2 type: Transform - - uid: 24260 + - uid: 24311 components: - rot: 1.5707963267948966 rad pos: 78.5,33.5 parent: 2 type: Transform - - uid: 24261 + - uid: 24312 components: - rot: 1.5707963267948966 rad pos: 78.5,32.5 parent: 2 type: Transform - - uid: 24262 + - uid: 24313 components: - rot: 1.5707963267948966 rad pos: 78.5,31.5 parent: 2 type: Transform - - uid: 24263 + - uid: 24314 components: - rot: 1.5707963267948966 rad pos: 78.5,30.5 parent: 2 type: Transform - - uid: 24264 + - uid: 24315 components: - rot: 1.5707963267948966 rad pos: 78.5,29.5 parent: 2 type: Transform - - uid: 24265 + - uid: 24316 components: - rot: 1.5707963267948966 rad pos: 78.5,28.5 parent: 2 type: Transform - - uid: 24266 + - uid: 24317 components: - rot: 1.5707963267948966 rad pos: 81.5,35.5 parent: 2 type: Transform - - uid: 24267 + - uid: 24318 components: - rot: 1.5707963267948966 rad pos: 81.5,34.5 parent: 2 type: Transform - - uid: 24268 + - uid: 24319 components: - rot: 1.5707963267948966 rad pos: 81.5,33.5 parent: 2 type: Transform - - uid: 24269 + - uid: 24320 components: - rot: 1.5707963267948966 rad pos: 81.5,32.5 parent: 2 type: Transform - - uid: 24270 + - uid: 24321 components: - rot: 1.5707963267948966 rad pos: 81.5,31.5 parent: 2 type: Transform - - uid: 24271 + - uid: 24322 components: - rot: 1.5707963267948966 rad pos: 81.5,30.5 parent: 2 type: Transform - - uid: 24272 + - uid: 24323 components: - rot: 1.5707963267948966 rad pos: 81.5,29.5 parent: 2 type: Transform - - uid: 24273 + - uid: 24324 components: - rot: 1.5707963267948966 rad pos: 81.5,28.5 parent: 2 type: Transform - - uid: 24274 + - uid: 24325 components: - rot: 1.5707963267948966 rad pos: 84.5,35.5 parent: 2 type: Transform - - uid: 24275 + - uid: 24326 components: - rot: 1.5707963267948966 rad pos: 84.5,34.5 parent: 2 type: Transform - - uid: 24276 + - uid: 24327 components: - rot: 1.5707963267948966 rad pos: 84.5,33.5 parent: 2 type: Transform - - uid: 24277 + - uid: 24328 components: - rot: 1.5707963267948966 rad pos: 84.5,32.5 parent: 2 type: Transform - - uid: 24278 + - uid: 24329 components: - rot: 1.5707963267948966 rad pos: 84.5,31.5 parent: 2 type: Transform - - uid: 24279 + - uid: 24330 components: - rot: 1.5707963267948966 rad pos: 84.5,30.5 parent: 2 type: Transform - - uid: 24280 + - uid: 24331 components: - rot: 1.5707963267948966 rad pos: 84.5,29.5 parent: 2 type: Transform - - uid: 24281 + - uid: 24332 components: - rot: 1.5707963267948966 rad pos: 84.5,28.5 parent: 2 type: Transform - - uid: 24282 + - uid: 24333 components: - rot: 1.5707963267948966 rad pos: 87.5,35.5 parent: 2 type: Transform - - uid: 24283 + - uid: 24334 components: - rot: 1.5707963267948966 rad pos: 87.5,34.5 parent: 2 type: Transform - - uid: 24284 + - uid: 24335 components: - rot: 1.5707963267948966 rad pos: 87.5,33.5 parent: 2 type: Transform - - uid: 24285 + - uid: 24336 components: - rot: 1.5707963267948966 rad pos: 87.5,32.5 parent: 2 type: Transform - - uid: 24286 + - uid: 24337 components: - rot: 1.5707963267948966 rad pos: 87.5,31.5 parent: 2 type: Transform - - uid: 24287 + - uid: 24338 components: - rot: 1.5707963267948966 rad pos: 87.5,30.5 parent: 2 type: Transform - - uid: 24288 + - uid: 24339 components: - rot: 1.5707963267948966 rad pos: 87.5,29.5 parent: 2 type: Transform - - uid: 24289 + - uid: 24340 components: - rot: 1.5707963267948966 rad pos: 87.5,28.5 parent: 2 type: Transform - - uid: 24290 + - uid: 24341 components: - rot: 1.5707963267948966 rad pos: 90.5,35.5 parent: 2 type: Transform - - uid: 24291 + - uid: 24342 components: - rot: 1.5707963267948966 rad pos: 90.5,34.5 parent: 2 type: Transform - - uid: 24292 + - uid: 24343 components: - rot: 1.5707963267948966 rad pos: 90.5,33.5 parent: 2 type: Transform - - uid: 24293 + - uid: 24344 components: - rot: 1.5707963267948966 rad pos: 90.5,32.5 parent: 2 type: Transform - - uid: 24294 + - uid: 24345 components: - rot: 1.5707963267948966 rad pos: 90.5,31.5 parent: 2 type: Transform - - uid: 24295 + - uid: 24346 components: - rot: 1.5707963267948966 rad pos: 90.5,30.5 parent: 2 type: Transform - - uid: 24296 + - uid: 24347 components: - rot: 1.5707963267948966 rad pos: 90.5,29.5 parent: 2 type: Transform - - uid: 24297 + - uid: 24348 components: - rot: 1.5707963267948966 rad pos: 90.5,28.5 @@ -167696,72 +160391,77 @@ entities: type: Transform - proto: SolarPanelBroken entities: - - uid: 24298 + - uid: 24349 components: - pos: -4.5,-73.5 parent: 2 type: Transform - - uid: 24299 + - uid: 24350 components: - rot: 3.141592653589793 rad pos: 62.5,29.5 parent: 2 type: Transform - - uid: 24300 + - uid: 24351 components: - pos: 46.5,-62.5 parent: 2 type: Transform - proto: SolarTracker entities: - - uid: 24301 + - uid: 24352 components: - pos: 11.5,-105.5 parent: 2 type: Transform - - uid: 24302 + - uid: 24353 components: - pos: 91.5,36.5 parent: 2 type: Transform - proto: SolidSecretDoor entities: - - uid: 24303 + - uid: 24354 components: - pos: -36.5,-19.5 parent: 2 type: Transform - - SecondsUntilStateChange: -40500.195 - state: Opening + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight + - enabled: False + type: Occluder - proto: SpaceCash entities: - - uid: 24304 + - uid: 24355 components: - rot: 1.5707963267948966 rad pos: 53.352566,29.426033 parent: 2 type: Transform - - uid: 24305 + - uid: 24356 components: - pos: 53.49319,28.910408 parent: 2 type: Transform - - uid: 24306 + - uid: 24357 components: - pos: 53.58694,28.691658 parent: 2 type: Transform - proto: SpaceCash1000 entities: - - uid: 24307 + - uid: 24358 components: - pos: 59.59177,-29.360462 parent: 2 type: Transform - proto: SpaceMedipen entities: - - uid: 24308 + - uid: 24359 components: - rot: -1.5707963267948966 rad pos: -55.678448,-39.42407 @@ -167769,152 +160469,152 @@ entities: type: Transform - proto: SpaceQuartz1 entities: - - uid: 24309 + - uid: 24360 components: - pos: -31.635456,29.591772 parent: 2 type: Transform - proto: SpaceVillainArcadeComputerCircuitboard entities: - - uid: 24310 + - uid: 24361 components: - pos: -12.610414,35.61681 parent: 2 type: Transform - proto: SpawnMobAlexander entities: - - uid: 24311 + - uid: 24362 components: - pos: 3.5,5.5 parent: 2 type: Transform - proto: SpawnMobBear entities: - - uid: 24312 + - uid: 24363 components: - - pos: -37.5,63.5 + - pos: -37.5,62.5 parent: 2 type: Transform - proto: SpawnMobButterfly entities: - - uid: 31265 + - uid: 24364 components: - pos: -5.5,54.5 parent: 2 type: Transform - - uid: 31266 + - uid: 24365 components: - pos: -8.5,51.5 parent: 2 type: Transform - proto: SpawnMobCat entities: - - uid: 24313 + - uid: 24366 components: - pos: -12.5,-38.5 parent: 2 type: Transform - - uid: 24314 + - uid: 24367 components: - pos: 57.5,16.5 parent: 2 type: Transform - proto: SpawnMobCatGeneric entities: - - uid: 24315 + - uid: 24368 components: - pos: -55.5,-64.5 parent: 2 type: Transform - proto: SpawnMobCleanBot entities: - - uid: 24316 + - uid: 24369 components: - pos: 15.5,-42.5 parent: 2 type: Transform - proto: SpawnMobCorgi entities: - - uid: 24317 + - uid: 24370 components: - pos: 3.5,-7.5 parent: 2 type: Transform - proto: SpawnMobCow entities: - - uid: 24318 + - uid: 24371 components: - pos: -7.5,18.5 parent: 2 type: Transform - - uid: 24319 + - uid: 24372 components: - pos: -4.5,18.5 parent: 2 type: Transform - proto: SpawnMobFoxRenault entities: - - uid: 24320 + - uid: 24373 components: - pos: 32.5,-28.5 parent: 2 type: Transform - proto: SpawnMobFrog entities: - - uid: 31263 + - uid: 24374 components: - pos: 11.5,53.5 parent: 2 type: Transform - - uid: 31264 + - uid: 24375 components: - pos: 8.5,54.5 parent: 2 type: Transform - proto: SpawnMobHamsterHamlet entities: - - uid: 24321 + - uid: 24376 components: - pos: 30.5,-23.5 parent: 2 type: Transform - proto: SpawnMobKangaroo entities: - - uid: 24322 + - uid: 24377 components: - - pos: -54.5,62.5 + - pos: -53.5,61.5 parent: 2 type: Transform - proto: SpawnMobKangarooWillow entities: - - uid: 24323 + - uid: 24378 components: - pos: 25.5,-0.5 parent: 2 type: Transform - proto: SpawnMobMcGriff entities: - - uid: 24324 + - uid: 24379 components: - pos: 26.5,23.5 parent: 2 type: Transform - proto: SpawnMobMedibot entities: - - uid: 24325 + - uid: 24380 components: - pos: -8.5,-46.5 parent: 2 type: Transform - proto: SpawnMobMonkey entities: - - uid: 24326 + - uid: 24381 components: - rot: -1.5707963267948966 rad pos: -24.5,-89.5 parent: 2 type: Transform - - uid: 24327 + - uid: 24382 components: - rot: -1.5707963267948966 rad pos: -21.5,-89.5 @@ -167922,939 +160622,1047 @@ entities: type: Transform - proto: SpawnMobMonkeyPunpun entities: - - uid: 24328 + - uid: 24383 components: - pos: 16.5,9.5 parent: 2 type: Transform - proto: SpawnMobMouse entities: - - uid: 24329 + - uid: 24384 components: - pos: 2.5,-69.5 parent: 2 type: Transform - - uid: 24330 + - uid: 24385 components: - pos: -0.5,33.5 parent: 2 type: Transform - - uid: 24331 + - uid: 24386 components: - pos: -28.5,-41.5 parent: 2 type: Transform - - uid: 24332 + - uid: 24387 components: - pos: -29.5,-47.5 parent: 2 type: Transform - - uid: 24333 + - uid: 24388 components: - pos: 49.5,-33.5 parent: 2 type: Transform - - uid: 24334 + - uid: 24389 components: - pos: -7.5,-81.5 parent: 2 type: Transform - - uid: 24335 + - uid: 24390 components: - pos: 6.5,32.5 parent: 2 type: Transform - - uid: 24336 + - uid: 24391 components: - pos: 35.5,22.5 parent: 2 type: Transform - - uid: 24337 + - uid: 24392 components: - pos: -15.5,13.5 parent: 2 type: Transform - - uid: 24338 + - uid: 24393 components: - pos: 52.5,36.5 parent: 2 type: Transform - - uid: 24339 + - uid: 24394 components: - pos: -51.5,-0.5 parent: 2 type: Transform - - uid: 24340 + - uid: 24395 components: - pos: -38.5,-64.5 parent: 2 type: Transform - - uid: 24341 + - uid: 24396 components: - pos: -40.5,-81.5 parent: 2 type: Transform - - uid: 24342 + - uid: 24397 components: - pos: -45.5,-77.5 parent: 2 type: Transform - - uid: 24343 + - uid: 24398 components: - pos: 48.5,-65.5 parent: 2 type: Transform - proto: SpawnMobPossumMorty entities: - - uid: 24344 + - uid: 24399 components: - pos: -15.5,-63.5 parent: 2 type: Transform - proto: SpawnMobRaccoonMorticia entities: - - uid: 24345 + - uid: 24400 components: - pos: -33.5,31.5 parent: 2 type: Transform - proto: SpawnMobShiva entities: - - uid: 24346 + - uid: 24401 components: - pos: 4.5,19.5 parent: 2 type: Transform - proto: SpawnMobSlothPaperwork entities: - - uid: 24347 + - uid: 24402 components: - pos: 12.5,-7.5 parent: 2 type: Transform +- proto: SpawnMobSmile + entities: + - uid: 24403 + components: + - pos: 62.5,-43.5 + parent: 2 + type: Transform - proto: SpawnMobSpaceSpider entities: - - uid: 24348 + - uid: 24404 components: - pos: -47.5,68.5 parent: 2 type: Transform - proto: SpawnMobWalter entities: - - uid: 24349 + - uid: 24405 components: - pos: -0.5,-53.5 parent: 2 type: Transform - proto: SpawnPointAssistant entities: - - uid: 24350 + - uid: 24406 components: - pos: -25.5,-22.5 parent: 2 type: Transform - - uid: 24351 + - uid: 24407 components: - pos: -23.5,-22.5 parent: 2 type: Transform - - uid: 24352 + - uid: 24408 components: - pos: 41.5,-72.5 parent: 2 type: Transform - - uid: 24353 + - uid: 24409 components: - pos: 38.5,-72.5 parent: 2 type: Transform - - uid: 24354 + - uid: 24410 components: - pos: 40.5,-55.5 parent: 2 type: Transform - - uid: 24355 + - uid: 24411 components: - pos: -51.5,14.5 parent: 2 type: Transform - - uid: 24356 + - uid: 24412 components: - pos: -45.5,5.5 parent: 2 type: Transform - - uid: 24357 + - uid: 24413 components: - pos: -52.5,7.5 parent: 2 type: Transform - - uid: 24358 + - uid: 24414 components: - pos: 39.5,-54.5 parent: 2 type: Transform - - uid: 24359 + - uid: 24415 components: - pos: -46.5,7.5 parent: 2 type: Transform - - uid: 24360 + - uid: 24416 components: - pos: -19.5,34.5 parent: 2 type: Transform - - uid: 24361 + - uid: 24417 components: - pos: -11.5,32.5 parent: 2 type: Transform - - uid: 24362 + - uid: 24418 components: - pos: -23.5,30.5 parent: 2 type: Transform - - uid: 24363 + - uid: 24419 components: - pos: -42.5,10.5 parent: 2 type: Transform - - uid: 24364 + - uid: 24420 components: - pos: -24.5,-20.5 parent: 2 type: Transform - - uid: 24365 + - uid: 24421 components: - pos: -44.5,3.5 parent: 2 type: Transform - - uid: 24366 + - uid: 24422 components: - pos: 43.5,-72.5 parent: 2 type: Transform - - uid: 24367 + - uid: 24423 components: - pos: 36.5,-72.5 parent: 2 type: Transform - proto: SpawnPointAtmos entities: - - uid: 24368 + - uid: 24424 components: - pos: -39.5,-34.5 parent: 2 type: Transform - - uid: 24369 + - uid: 24425 components: - pos: -37.5,-35.5 parent: 2 type: Transform - - uid: 24370 + - uid: 24426 components: - pos: -36.5,-34.5 parent: 2 type: Transform - proto: SpawnPointBartender entities: - - uid: 24371 + - uid: 24427 components: - pos: 17.5,13.5 parent: 2 type: Transform - - uid: 24372 + - uid: 24428 components: - pos: 17.5,11.5 parent: 2 type: Transform - proto: SpawnPointBorg entities: - - uid: 24373 + - uid: 24429 components: - pos: 64.5,-44.5 parent: 2 type: Transform - - uid: 24374 + - uid: 24430 components: - pos: 60.5,-44.5 parent: 2 type: Transform - proto: SpawnPointBotanist entities: - - uid: 24375 + - uid: 24431 components: - pos: -5.5,7.5 parent: 2 type: Transform - - uid: 24376 + - uid: 24432 components: - pos: -7.5,7.5 parent: 2 type: Transform - - uid: 24377 + - uid: 24433 components: - pos: -9.5,7.5 parent: 2 type: Transform - proto: SpawnPointBoxer entities: - - uid: 24378 + - uid: 24434 components: - pos: 22.5,2.5 parent: 2 type: Transform - proto: SpawnPointCaptain entities: - - uid: 24379 + - uid: 24435 components: - pos: 26.5,-22.5 parent: 2 type: Transform - proto: SpawnPointCargoTechnician entities: - - uid: 24380 + - uid: 24436 components: - pos: -46.5,16.5 parent: 2 type: Transform - - uid: 24381 + - uid: 24437 components: - pos: -31.5,24.5 parent: 2 type: Transform - - uid: 24382 + - uid: 24438 components: - pos: -33.5,22.5 parent: 2 type: Transform - - uid: 24383 + - uid: 24439 components: - pos: -31.5,19.5 parent: 2 type: Transform - - uid: 24384 + - uid: 24440 components: - pos: -31.5,21.5 parent: 2 type: Transform - proto: SpawnPointChaplain entities: - - uid: 24385 + - uid: 24441 components: - pos: -30.5,13.5 parent: 2 type: Transform - - uid: 24386 + - uid: 24442 components: - pos: -30.5,14.5 parent: 2 type: Transform - proto: SpawnPointChef entities: - - uid: 24387 + - uid: 24443 components: - pos: 0.5,7.5 parent: 2 type: Transform - - uid: 24388 + - uid: 24444 components: - pos: 5.5,7.5 parent: 2 type: Transform - - uid: 24389 + - uid: 24445 components: - pos: 5.5,9.5 parent: 2 type: Transform - proto: SpawnPointChemist entities: - - uid: 24390 + - uid: 24446 components: - pos: 3.5,-50.5 parent: 2 type: Transform - - uid: 24391 + - uid: 24447 components: - pos: 3.5,-48.5 parent: 2 type: Transform - - uid: 24392 + - uid: 24448 components: - pos: 3.5,-46.5 parent: 2 type: Transform - proto: SpawnPointChiefEngineer entities: - - uid: 24393 + - uid: 24449 components: - pos: -36.5,-17.5 parent: 2 type: Transform - proto: SpawnPointChiefMedicalOfficer entities: - - uid: 24394 + - uid: 24450 components: - pos: -18.5,-55.5 parent: 2 type: Transform - proto: SpawnPointClown entities: - - uid: 24395 + - uid: 24451 components: - pos: -21.5,38.5 parent: 2 type: Transform - - uid: 24396 + - uid: 24452 components: - pos: 0.5,-21.5 parent: 2 type: Transform - proto: SpawnPointDetective entities: - - uid: 24397 + - uid: 24453 components: - pos: 19.5,-11.5 parent: 2 type: Transform - proto: SpawnPointHeadOfPersonnel entities: - - uid: 24398 + - uid: 24454 components: - pos: 4.5,-5.5 parent: 2 type: Transform - proto: SpawnPointHeadOfSecurity entities: - - uid: 24399 + - uid: 24455 components: - pos: 5.5,21.5 parent: 2 type: Transform - proto: SpawnPointJanitor entities: - - uid: 24400 + - uid: 24456 components: - pos: -11.5,-18.5 parent: 2 type: Transform - - uid: 24401 + - uid: 24457 components: - pos: -10.5,-22.5 parent: 2 type: Transform - - uid: 24402 + - uid: 24458 components: - pos: -12.5,-22.5 parent: 2 type: Transform - proto: SpawnPointLatejoin entities: - - uid: 24403 + - uid: 24459 components: - pos: 39.5,-72.5 parent: 2 type: Transform - - uid: 24404 + - uid: 24460 components: - pos: 40.5,-72.5 parent: 2 type: Transform - - uid: 24405 + - uid: 24461 components: - pos: 42.5,-72.5 parent: 2 type: Transform - - uid: 24406 + - uid: 24462 components: - pos: 37.5,-72.5 parent: 2 type: Transform - proto: SpawnPointLawyer entities: - - uid: 24407 + - uid: 24463 components: - pos: 42.5,-2.5 parent: 2 type: Transform - - uid: 24408 + - uid: 24464 components: - pos: 39.5,-4.5 parent: 2 type: Transform - proto: SpawnPointLibrarian entities: - - uid: 24409 + - uid: 24465 components: - pos: 11.5,-9.5 parent: 2 type: Transform - - uid: 24410 + - uid: 24466 components: - pos: 9.5,-9.5 parent: 2 type: Transform - proto: SpawnPointMedicalDoctor entities: - - uid: 24411 + - uid: 24467 components: - pos: -14.5,-46.5 parent: 2 type: Transform - - uid: 24412 + - uid: 24468 components: - pos: -12.5,-46.5 parent: 2 type: Transform - - uid: 24413 + - uid: 24469 components: - pos: -12.5,-48.5 parent: 2 type: Transform - - uid: 24414 + - uid: 24470 components: - pos: -14.5,-48.5 parent: 2 type: Transform - - uid: 24415 + - uid: 24471 components: - pos: -28.5,-74.5 parent: 2 type: Transform - proto: SpawnPointMedicalIntern entities: - - uid: 24416 + - uid: 24472 components: - pos: -1.5,-47.5 parent: 2 type: Transform - proto: SpawnPointMime entities: - - uid: 24417 + - uid: 24473 components: - pos: -27.5,45.5 parent: 2 type: Transform - proto: SpawnPointMusician entities: - - uid: 24418 + - uid: 24474 components: - pos: -9.5,-5.5 parent: 2 type: Transform - - uid: 24419 + - uid: 24475 components: - pos: -7.5,-5.5 parent: 2 type: Transform - proto: SpawnPointObserver entities: - - uid: 24420 + - uid: 24476 components: - pos: -4.5,-41.5 parent: 2 type: Transform - proto: SpawnPointParamedic entities: - - uid: 24421 + - uid: 24477 components: - pos: 3.5,-64.5 parent: 2 type: Transform - proto: SpawnPointPsychologist entities: - - uid: 24422 + - uid: 24478 components: - pos: -11.5,-36.5 parent: 2 type: Transform - proto: SpawnPointQuartermaster entities: - - uid: 24423 + - uid: 24479 components: - pos: -31.5,30.5 parent: 2 type: Transform - proto: SpawnPointReporter entities: - - uid: 24424 + - uid: 24480 components: - pos: -25.5,11.5 parent: 2 type: Transform - proto: SpawnPointResearchAssistant entities: - - uid: 24425 + - uid: 24481 components: - pos: 49.5,-40.5 parent: 2 type: Transform - proto: SpawnPointResearchDirector entities: - - uid: 24426 + - uid: 24482 components: - pos: 63.5,-52.5 parent: 2 type: Transform - proto: SpawnPointSalvageSpecialist entities: - - uid: 24427 + - uid: 24483 components: - pos: -37.5,32.5 parent: 2 type: Transform - - uid: 24428 + - uid: 24484 components: - pos: -37.5,30.5 parent: 2 type: Transform - - uid: 24429 + - uid: 24485 components: - pos: -37.5,28.5 parent: 2 type: Transform - proto: SpawnPointScientist entities: - - uid: 24430 + - uid: 24486 components: - pos: 45.5,-46.5 parent: 2 type: Transform - - uid: 24431 + - uid: 24487 components: - pos: 43.5,-46.5 parent: 2 type: Transform - - uid: 24432 + - uid: 24488 components: - pos: 41.5,-46.5 parent: 2 type: Transform - - uid: 24433 + - uid: 24489 components: - pos: 44.5,-47.5 parent: 2 type: Transform - - uid: 24434 + - uid: 24490 components: - pos: 74.5,-34.5 parent: 2 type: Transform - proto: SpawnPointSecurityCadet entities: - - uid: 24435 + - uid: 24491 components: - pos: 23.5,18.5 parent: 2 type: Transform - - uid: 24436 + - uid: 24492 components: - pos: 25.5,18.5 parent: 2 type: Transform - proto: SpawnPointSecurityOfficer entities: - - uid: 24437 + - uid: 24493 components: - pos: 1.5,19.5 parent: 2 type: Transform - - uid: 24438 + - uid: 24494 components: - pos: 7.5,16.5 parent: 2 type: Transform - - uid: 24439 + - uid: 24495 components: - pos: 5.5,16.5 parent: 2 type: Transform - - uid: 24440 + - uid: 24496 components: - pos: 0.5,18.5 parent: 2 type: Transform - - uid: 24441 + - uid: 24497 components: - pos: 1.5,17.5 parent: 2 type: Transform - - uid: 24442 + - uid: 24498 components: - pos: 6.5,13.5 parent: 2 type: Transform - proto: SpawnPointSeniorEngineer entities: - - uid: 24443 + - uid: 24499 components: - pos: -38.5,-8.5 parent: 2 type: Transform - proto: SpawnPointSeniorOfficer entities: - - uid: 24444 + - uid: 24500 components: - pos: 6.5,17.5 parent: 2 type: Transform - proto: SpawnPointSeniorPhysician entities: - - uid: 24445 + - uid: 24501 components: - pos: -13.5,-47.5 parent: 2 type: Transform - proto: SpawnPointSeniorResearcher entities: - - uid: 24446 + - uid: 24502 components: - pos: 45.5,-37.5 parent: 2 type: Transform - proto: SpawnPointServiceWorker entities: - - uid: 24447 + - uid: 24503 components: - pos: -21.5,44.5 parent: 2 type: Transform - - uid: 24448 + - uid: 24504 components: - pos: -10.5,42.5 parent: 2 type: Transform - - uid: 24449 + - uid: 24505 components: - pos: -21.5,48.5 parent: 2 type: Transform - proto: SpawnPointStationEngineer entities: - - uid: 24450 + - uid: 24506 components: - pos: -37.5,-10.5 parent: 2 type: Transform - - uid: 24451 + - uid: 24507 components: - pos: -38.5,-12.5 parent: 2 type: Transform - - uid: 24452 + - uid: 24508 components: - pos: -36.5,-12.5 parent: 2 type: Transform - - uid: 24453 + - uid: 24509 components: - pos: -35.5,-10.5 parent: 2 type: Transform - - uid: 24454 + - uid: 24510 components: - pos: -35.5,-7.5 parent: 2 type: Transform - proto: SpawnPointTechnicalAssistant entities: - - uid: 24455 + - uid: 24511 components: - pos: -23.5,-10.5 parent: 2 type: Transform - - uid: 24456 + - uid: 24512 components: - pos: -24.5,-12.5 parent: 2 type: Transform - proto: SpawnPointWarden entities: - - uid: 24457 + - uid: 24513 components: - pos: 23.5,21.5 parent: 2 type: Transform - proto: SpawnVehicleJanicart entities: - - uid: 24458 + - uid: 24514 components: - pos: -12.5,-23.5 parent: 2 type: Transform - proto: SpawnVehicleSecway entities: - - uid: 24459 + - uid: 24515 components: - pos: 10.5,22.5 parent: 2 type: Transform - - uid: 24460 + - uid: 24516 components: - pos: 10.5,21.5 parent: 2 type: Transform - - uid: 24461 + - uid: 24517 components: - pos: 10.5,20.5 parent: 2 type: Transform - proto: SpawnVendingMachineRestockFoodDrink entities: - - uid: 24462 + - uid: 24518 components: - pos: 37.5,-10.5 parent: 2 type: Transform - - uid: 24463 + - uid: 24519 components: - pos: -13.5,-12.5 parent: 2 type: Transform - proto: SpiderWeb entities: - - uid: 31249 + - uid: 24520 components: - pos: -38.5,-71.5 parent: 2 type: Transform - - uid: 31250 + - uid: 24521 components: - pos: -39.5,-70.5 parent: 2 type: Transform - - uid: 31251 + - uid: 24522 components: - pos: -46.5,-72.5 parent: 2 type: Transform - - uid: 31252 + - uid: 24523 components: - pos: -47.5,-73.5 parent: 2 type: Transform - - uid: 31253 + - uid: 24524 components: - pos: -52.5,-68.5 parent: 2 type: Transform - - uid: 31254 + - uid: 24525 components: - pos: -50.5,-62.5 parent: 2 type: Transform - proto: SprayBottle entities: - - uid: 24464 + - uid: 24526 components: - pos: 53.44381,-51.454926 parent: 2 type: Transform - proto: SprayBottleSpaceCleaner entities: - - uid: 24465 + - uid: 24527 components: - pos: -13.517906,-22.26318 parent: 2 type: Transform - - uid: 24466 + - uid: 24528 components: - pos: -13.721031,-22.20068 parent: 2 type: Transform - - uid: 24467 + - uid: 24529 components: - pos: -13.62392,-22.29671 parent: 2 type: Transform - - uid: 24468 + - uid: 24530 components: - pos: -13.389545,-22.218584 parent: 2 type: Transform +- proto: Stairs + entities: + - uid: 24531 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-8.5 + parent: 2 + type: Transform + - uid: 24532 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-8.5 + parent: 2 + type: Transform + - uid: 24533 + components: + - pos: -20.5,-23.5 + parent: 2 + type: Transform + - uid: 24534 + components: + - pos: -19.5,-23.5 + parent: 2 + type: Transform + - uid: 24535 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-8.5 + parent: 2 + type: Transform + - uid: 24536 + components: + - pos: -18.5,-23.5 + parent: 2 + type: Transform + - uid: 24537 + components: + - pos: -31.5,-20.5 + parent: 2 + type: Transform + - uid: 24538 + components: + - pos: -32.5,-20.5 + parent: 2 + type: Transform + - uid: 24539 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-32.5 + parent: 2 + type: Transform + - uid: 24540 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-31.5 + parent: 2 + type: Transform + - uid: 24541 + components: + - rot: 1.5707963267948966 rad + pos: -63.5,-36.5 + parent: 2 + type: Transform + - uid: 24542 + components: + - rot: 1.5707963267948966 rad + pos: -63.5,-37.5 + parent: 2 + type: Transform + - uid: 24543 + components: + - rot: -1.5707963267948966 rad + pos: -54.5,-27.5 + parent: 2 + type: Transform + - uid: 24544 + components: + - rot: -1.5707963267948966 rad + pos: -54.5,-28.5 + parent: 2 + type: Transform + - uid: 24545 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-22.5 + parent: 2 + type: Transform +- proto: StairStage + entities: + - uid: 24546 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-2.5 + parent: 2 + type: Transform + - uid: 24547 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,-3.5 + parent: 2 + type: Transform - proto: StasisBed entities: - - uid: 24469 + - uid: 24548 components: - pos: 4.5,-64.5 parent: 2 type: Transform - - uid: 24470 + - uid: 24549 components: - pos: 4.5,-63.5 parent: 2 type: Transform - proto: StationMap entities: - - uid: 24471 + - uid: 24550 components: - pos: 5.5,-24.5 parent: 2 type: Transform - - uid: 24472 + - uid: 24551 components: - pos: 12.5,-40.5 parent: 2 type: Transform - - uid: 24473 + - uid: 24552 components: - pos: -32.5,2.5 parent: 2 type: Transform - - uid: 24474 + - uid: 24553 components: - pos: -0.5,4.5 parent: 2 type: Transform - - uid: 24475 + - uid: 24554 components: - pos: -18.5,52.5 parent: 2 type: Transform - - uid: 24476 + - uid: 24555 components: - pos: 45.5,-70.5 parent: 2 type: Transform - - uid: 24477 + - uid: 24556 components: - pos: 41.5,-40.5 parent: 2 type: Transform - - uid: 24478 + - uid: 24557 components: - pos: 48.5,3.5 parent: 2 type: Transform - - uid: 24479 + - uid: 24558 components: - pos: 20.5,9.5 parent: 2 type: Transform - - uid: 24480 + - uid: 24559 components: - pos: -8.5,47.5 parent: 2 type: Transform - - uid: 24481 + - uid: 24560 components: - pos: 12.5,-79.5 parent: 2 type: Transform - - uid: 24482 + - uid: 24561 components: - pos: -69.5,-36.5 parent: 2 type: Transform - proto: StationMapCircuitboard entities: - - uid: 24483 + - uid: 24562 components: - pos: -8.453156,37.616253 parent: 2 type: Transform - proto: SteelOre1 entities: - - uid: 24484 + - uid: 24563 components: - rot: 3.141592653589793 rad pos: 20.04077,49.432205 @@ -168862,13 +161670,13 @@ entities: type: Transform - proto: Stool entities: - - uid: 24485 + - uid: 24564 components: - rot: -1.5707963267948966 rad pos: 9.5,5.5 parent: 2 type: Transform - - uid: 24486 + - uid: 24565 components: - rot: -1.5707963267948966 rad pos: -33.5,13.5 @@ -168876,13 +161684,13 @@ entities: type: Transform - proto: StoolBar entities: - - uid: 24487 + - uid: 24566 components: - rot: 1.5707963267948966 rad pos: 14.5,10.5 parent: 2 type: Transform - - uid: 24488 + - uid: 24567 components: - name: stool type: MetaData @@ -168890,7 +161698,7 @@ entities: pos: -6.5,3.5 parent: 2 type: Transform - - uid: 24489 + - uid: 24568 components: - name: stool type: MetaData @@ -168898,24 +161706,24 @@ entities: pos: 1.5,3.5 parent: 2 type: Transform - - uid: 24490 + - uid: 24569 components: - rot: 1.5707963267948966 rad pos: 14.5,13.5 parent: 2 type: Transform - - uid: 24491 + - uid: 24570 components: - rot: 1.5707963267948966 rad pos: 14.5,12.5 parent: 2 type: Transform - - uid: 24492 + - uid: 24571 components: - pos: 5.5,12.5 parent: 2 type: Transform - - uid: 24493 + - uid: 24572 components: - name: stool type: MetaData @@ -168923,7 +161731,7 @@ entities: pos: 0.5,3.5 parent: 2 type: Transform - - uid: 24494 + - uid: 24573 components: - name: stool type: MetaData @@ -168931,78 +161739,78 @@ entities: pos: 2.5,3.5 parent: 2 type: Transform - - uid: 24495 + - uid: 24574 components: - rot: 1.5707963267948966 rad pos: 14.5,11.5 parent: 2 type: Transform - - uid: 24496 + - uid: 24575 components: - rot: -1.5707963267948966 rad pos: 8.5,9.5 parent: 2 type: Transform - - uid: 24497 + - uid: 24576 components: - rot: -1.5707963267948966 rad pos: 8.5,8.5 parent: 2 type: Transform - - uid: 24498 + - uid: 24577 components: - rot: -1.5707963267948966 rad pos: 8.5,7.5 parent: 2 type: Transform - - uid: 24499 + - uid: 24578 components: - rot: 1.5707963267948966 rad pos: 14.5,9.5 parent: 2 type: Transform - - uid: 24500 + - uid: 24579 components: - rot: 3.141592653589793 rad pos: -40.5,-79.5 parent: 2 type: Transform - - uid: 24501 + - uid: 24580 components: - rot: 3.141592653589793 rad pos: -41.5,-79.5 parent: 2 type: Transform - - uid: 24502 + - uid: 24581 components: - rot: 3.141592653589793 rad pos: -42.5,-79.5 parent: 2 type: Transform - - uid: 24503 + - uid: 24582 components: - rot: 3.141592653589793 rad pos: -43.5,-79.5 parent: 2 type: Transform - - uid: 24504 + - uid: 24583 components: - rot: -1.5707963267948966 rad pos: -39.5,-78.5 parent: 2 type: Transform - - uid: 24505 + - uid: 24584 components: - rot: 1.5707963267948966 rad pos: -44.5,-78.5 parent: 2 type: Transform - - uid: 24506 + - uid: 24585 components: - pos: 4.5,12.5 parent: 2 type: Transform - - uid: 24507 + - uid: 24586 components: - name: stool type: MetaData @@ -169010,7 +161818,7 @@ entities: pos: -7.5,3.5 parent: 2 type: Transform - - uid: 24508 + - uid: 24587 components: - name: stool type: MetaData @@ -169018,75 +161826,75 @@ entities: pos: -8.5,3.5 parent: 2 type: Transform - - uid: 24509 + - uid: 24588 components: - rot: 3.141592653589793 rad pos: 39.5,48.5 parent: 2 type: Transform - - uid: 24510 + - uid: 24589 components: - rot: 3.141592653589793 rad pos: 38.5,48.5 parent: 2 type: Transform - - uid: 24511 + - uid: 24590 components: - rot: 3.141592653589793 rad pos: 37.5,48.5 parent: 2 type: Transform - - uid: 24512 + - uid: 24591 components: - rot: 3.141592653589793 rad pos: 36.5,48.5 parent: 2 type: Transform - - uid: 24513 + - uid: 24592 components: - name: donk stool type: MetaData - pos: -9.5,44.5 parent: 2 type: Transform - - uid: 24514 + - uid: 24593 components: - name: donk stool type: MetaData - pos: -10.5,44.5 parent: 2 type: Transform - - uid: 24515 + - uid: 24594 components: - pos: -30.5,-96.5 parent: 2 type: Transform - - uid: 24516 + - uid: 24595 components: - name: donk stool type: MetaData - pos: -11.5,44.5 parent: 2 type: Transform - - uid: 24517 + - uid: 24596 components: - rot: 1.5707963267948966 rad pos: 26.5,-34.5 parent: 2 type: Transform - - uid: 24518 + - uid: 24597 components: - rot: 1.5707963267948966 rad pos: 26.5,-35.5 parent: 2 type: Transform - - uid: 24519 + - uid: 24598 components: - rot: 1.5707963267948966 rad pos: 26.5,-36.5 parent: 2 type: Transform - - uid: 24520 + - uid: 24599 components: - rot: 1.5707963267948966 rad pos: 26.5,-37.5 @@ -169094,439 +161902,508 @@ entities: type: Transform - proto: StorageCanister entities: - - uid: 24521 + - uid: 24600 components: - pos: -75.5,-45.5 parent: 2 type: Transform - - uid: 24522 + - uid: 24601 components: - pos: 45.5,-54.5 parent: 2 type: Transform - - uid: 24523 + - uid: 24602 components: - pos: 45.5,-58.5 parent: 2 type: Transform - - uid: 24524 + - uid: 24603 components: - pos: -16.5,-10.5 parent: 2 type: Transform - - uid: 24525 + - uid: 24604 components: - pos: -38.5,-51.5 parent: 2 type: Transform - - uid: 24526 + - uid: 24605 components: - pos: -38.5,-50.5 parent: 2 type: Transform - - uid: 24527 + - uid: 24606 components: - pos: -38.5,-49.5 parent: 2 type: Transform - - uid: 24528 + - uid: 24607 components: - pos: -34.5,-39.5 parent: 2 type: Transform - - uid: 24529 + - uid: 24608 components: - pos: -35.5,-39.5 parent: 2 type: Transform - - uid: 24530 + - uid: 24609 components: - pos: -50.5,-44.5 parent: 2 type: Transform - - uid: 24531 + - uid: 24610 components: - pos: -50.5,-42.5 parent: 2 type: Transform - - uid: 24532 + - uid: 24611 components: - pos: 53.5,-37.5 parent: 2 type: Transform - - uid: 24533 + - uid: 24612 components: - pos: -24.5,-55.5 parent: 2 type: Transform - - uid: 24534 + - uid: 24613 components: - pos: -26.5,-55.5 parent: 2 type: Transform - - uid: 24535 + - uid: 24614 components: - pos: 51.5,-35.5 parent: 2 type: Transform - - uid: 24536 + - uid: 24615 components: - pos: -50.5,-35.5 parent: 2 type: Transform - - uid: 24537 + - uid: 24616 components: - pos: -50.5,-34.5 parent: 2 type: Transform - - uid: 24538 + - uid: 24617 components: - pos: -35.5,-38.5 parent: 2 type: Transform - - uid: 24539 + - uid: 24618 components: - pos: -75.5,-46.5 parent: 2 type: Transform - proto: Stunbaton entities: - - uid: 24540 + - uid: 24619 components: - pos: 8.313212,12.723815 parent: 2 type: Transform - - uid: 24541 + - uid: 24620 components: - pos: 8.262076,12.8623 parent: 2 type: Transform - proto: SubstationBasic entities: - - uid: 24542 + - uid: 24621 components: + - name: command substation + type: MetaData - pos: 18.5,-27.5 parent: 2 type: Transform - - uid: 24543 + - uid: 24622 components: + - name: teg substation + type: MetaData - pos: -69.5,-34.5 parent: 2 type: Transform - - uid: 24544 + - uid: 24623 components: + - name: chapel substation + type: MetaData - pos: -34.5,-3.5 parent: 2 type: Transform - - uid: 24545 + - uid: 24624 components: + - name: virology substation + type: MetaData - pos: -12.5,-69.5 parent: 2 type: Transform - - uid: 24546 + - uid: 24625 components: + - name: medical substation 3 + type: MetaData - pos: 15.5,-58.5 parent: 2 type: Transform - - uid: 24547 + - uid: 24626 components: + - name: boxing substation + type: MetaData - pos: 30.5,-2.5 parent: 2 type: Transform - - uid: 24548 + - uid: 24627 components: + - name: janitorial substation + type: MetaData - pos: -8.5,-19.5 parent: 2 type: Transform - - uid: 24549 + - uid: 24628 components: + - name: vault substation + type: MetaData - pos: 38.5,-28.5 parent: 2 type: Transform - - uid: 24550 + - uid: 24629 components: + - name: robotics substation + type: MetaData - pos: 69.5,-59.5 parent: 2 type: Transform - - uid: 24551 + - uid: 24630 components: + - name: sec substation + type: MetaData - pos: 33.5,25.5 parent: 2 type: Transform - - uid: 24552 + - uid: 24631 components: + - name: prison substation + type: MetaData - pos: 63.5,7.5 parent: 2 type: Transform - - uid: 24553 + - uid: 24632 components: + - name: brig substation + type: MetaData - pos: 47.5,-3.5 parent: 2 type: Transform - - uid: 24554 + - uid: 24633 components: + - name: evac substation + type: MetaData - pos: 48.5,-5.5 parent: 2 type: Transform - - uid: 24555 + - uid: 24634 components: + - name: science substation + type: MetaData - pos: 38.5,-46.5 parent: 2 type: Transform - - uid: 24556 + - uid: 24635 components: + - name: gravity substation + type: MetaData - pos: -16.5,-0.5 parent: 2 type: Transform - - uid: 24557 + - uid: 24636 components: + - name: engineering substation + type: MetaData - pos: -28.5,-23.5 parent: 2 type: Transform - - uid: 24558 + - uid: 24637 components: + - name: arrivals substation + type: MetaData - pos: 43.5,-58.5 parent: 2 type: Transform - - uid: 24559 + - uid: 24638 components: + - name: singularity substation + type: MetaData - pos: -50.5,-8.5 parent: 2 type: Transform - - uid: 24560 + - uid: 24639 components: + - name: PA substation + type: MetaData - pos: -57.5,-20.5 parent: 2 type: Transform - - uid: 24561 + - uid: 24640 components: + - name: atmos substation + type: MetaData - pos: -27.5,-37.5 parent: 2 type: Transform - - uid: 24562 + - uid: 24641 components: + - name: maints bar substation + type: MetaData - pos: -31.5,-54.5 parent: 2 type: Transform - - uid: 24563 + - uid: 24642 components: + - name: syndicate shuttle substation + type: MetaData - pos: -55.5,-89.5 parent: 2 type: Transform - - uid: 24564 + - uid: 24643 components: + - name: north maints substation + type: MetaData - pos: -8.5,35.5 parent: 2 type: Transform - - uid: 24565 + - uid: 24644 components: + - name: cargo substation + type: MetaData - pos: -23.5,15.5 parent: 2 type: Transform - - uid: 24566 + missingComponents: + - Anchorable + - uid: 24645 components: + - name: telecoms substation + type: MetaData - pos: 4.5,-19.5 parent: 2 type: Transform - - uid: 24567 + - uid: 24646 components: + - name: medical substation 1 + type: MetaData - pos: 11.5,-45.5 parent: 2 type: Transform - - uid: 24568 + - uid: 24647 components: + - name: medical substation 2 + type: MetaData - pos: 11.5,-47.5 parent: 2 type: Transform - - uid: 24569 + - uid: 24648 components: + - name: sec maints substation + type: MetaData - pos: 50.5,29.5 parent: 2 type: Transform - - uid: 24570 + - uid: 24649 components: + - name: ai substation + type: MetaData - pos: -10.5,62.5 parent: 2 type: Transform - - uid: 24571 + - uid: 24650 components: + - name: detective substation + type: MetaData - pos: 8.5,-16.5 parent: 2 type: Transform - - uid: 24572 + - uid: 24651 components: + - name: shuttle substation + type: MetaData - pos: -65.5,-54.5 parent: 2 type: Transform - proto: SuitStorageAtmos entities: - - uid: 24573 + - uid: 24652 components: - pos: -40.5,-36.5 parent: 2 type: Transform - - uid: 24574 + - uid: 24653 components: - pos: -36.5,-36.5 parent: 2 type: Transform - - uid: 24575 + - uid: 24654 components: - pos: -38.5,-36.5 parent: 2 type: Transform - proto: SuitStorageCaptain entities: - - uid: 24576 + - uid: 24655 components: - pos: 28.5,-29.5 parent: 2 type: Transform - proto: SuitStorageCE entities: - - uid: 24577 + - uid: 24656 components: - pos: -37.5,-16.5 parent: 2 type: Transform - proto: SuitStorageCMO entities: - - uid: 24578 + - uid: 24657 components: - pos: -22.5,-55.5 parent: 2 type: Transform - proto: SuitStorageEngi entities: - - uid: 24579 + - uid: 24658 components: - pos: -34.5,-5.5 parent: 2 type: Transform - - uid: 24580 + - uid: 24659 components: - pos: -34.5,-7.5 parent: 2 type: Transform - - uid: 24581 + - uid: 24660 components: - pos: -34.5,-8.5 parent: 2 type: Transform - - uid: 24582 + - uid: 24661 components: - pos: -34.5,-6.5 parent: 2 type: Transform - - uid: 24583 + - uid: 24662 components: - pos: -55.5,-15.5 parent: 2 type: Transform - proto: SuitStorageEVA entities: - - uid: 24584 + - uid: 24663 components: - pos: 29.5,-10.5 parent: 2 type: Transform - - uid: 24585 + - uid: 24664 components: - pos: 29.5,-12.5 parent: 2 type: Transform - - uid: 24586 + - uid: 24665 components: - pos: 33.5,-10.5 parent: 2 type: Transform - - uid: 24587 + - uid: 24666 components: - pos: 31.5,-12.5 parent: 2 type: Transform - - uid: 24588 + - uid: 24667 components: - pos: 31.5,-10.5 parent: 2 type: Transform - - uid: 24589 + - uid: 24668 components: - pos: 33.5,-12.5 parent: 2 type: Transform - proto: SuitStorageEVAPrisoner entities: - - uid: 24590 + - uid: 24669 components: - pos: 63.5,4.5 parent: 2 type: Transform - - uid: 24591 + - uid: 24670 components: - pos: 63.5,5.5 parent: 2 type: Transform - proto: SuitStorageHOS entities: - - uid: 24592 + - uid: 24671 components: - pos: 5.5,22.5 parent: 2 type: Transform - proto: SuitStorageRD entities: - - uid: 24593 + - uid: 24672 components: - pos: 65.5,-52.5 parent: 2 type: Transform - proto: SuitStorageSalv entities: - - uid: 24594 + - uid: 24673 components: - pos: -36.5,33.5 parent: 2 type: Transform - - uid: 24595 + - uid: 24674 components: - pos: -36.5,29.5 parent: 2 type: Transform - - uid: 24596 + - uid: 24675 components: - pos: -36.5,31.5 parent: 2 type: Transform - proto: SuitStorageSec entities: - - uid: 24597 + - uid: 24676 + components: + - pos: 26.5,30.5 + parent: 2 + type: Transform + - uid: 24677 components: - pos: 26.5,27.5 parent: 2 type: Transform - - uid: 24598 + - uid: 24678 components: - pos: 32.5,27.5 parent: 2 type: Transform - proto: SuitStorageWarden entities: - - uid: 24599 + - uid: 24679 components: - pos: 20.5,20.5 parent: 2 type: Transform - proto: SuperMatterBinStockPart entities: - - uid: 24600 + - uid: 24680 components: - pos: -50.47893,-29.292162 parent: 2 type: Transform - proto: SurveillanceCameraCommand entities: - - uid: 24601 + - uid: 24681 components: - rot: 1.5707963267948966 rad pos: -17.5,-55.5 @@ -169537,7 +162414,7 @@ entities: nameSet: True id: chief medical officer type: SurveillanceCamera - - uid: 24602 + - uid: 24682 components: - rot: -1.5707963267948966 rad pos: 4.5,21.5 @@ -169548,7 +162425,7 @@ entities: nameSet: True id: 'head of security ' type: SurveillanceCamera - - uid: 24603 + - uid: 24683 components: - rot: 3.141592653589793 rad pos: 46.5,-27.5 @@ -169559,7 +162436,7 @@ entities: nameSet: True id: vault b type: SurveillanceCamera - - uid: 24604 + - uid: 24684 components: - rot: 3.141592653589793 rad pos: 46.5,-21.5 @@ -169570,7 +162447,7 @@ entities: nameSet: True id: vault a type: SurveillanceCamera - - uid: 24605 + - uid: 24685 components: - pos: 31.5,-22.5 parent: 2 @@ -169580,7 +162457,7 @@ entities: nameSet: True id: bridge type: SurveillanceCamera - - uid: 24606 + - uid: 24686 components: - rot: 3.141592653589793 rad pos: 64.5,-51.5 @@ -169591,7 +162468,7 @@ entities: nameSet: True id: research director type: SurveillanceCamera - - uid: 24607 + - uid: 24687 components: - rot: -1.5707963267948966 rad pos: 31.5,-10.5 @@ -169602,7 +162479,7 @@ entities: nameSet: True id: EVA closet type: SurveillanceCamera - - uid: 24608 + - uid: 24688 components: - pos: 28.5,-43.5 parent: 2 @@ -169612,7 +162489,7 @@ entities: nameSet: True id: personnel type: SurveillanceCamera - - uid: 24609 + - uid: 24689 components: - rot: 1.5707963267948966 rad pos: 5.5,-6.5 @@ -169625,7 +162502,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraEngineering entities: - - uid: 24610 + - uid: 24690 components: - rot: -1.5707963267948966 rad pos: -44.5,-41.5 @@ -169636,7 +162513,7 @@ entities: nameSet: True id: atmospherics type: SurveillanceCamera - - uid: 24611 + - uid: 24691 components: - rot: 3.141592653589793 rad pos: -29.5,-16.5 @@ -169647,7 +162524,7 @@ entities: nameSet: True id: engineering main corridor type: SurveillanceCamera - - uid: 24612 + - uid: 24692 components: - pos: -38.5,-13.5 parent: 2 @@ -169657,7 +162534,7 @@ entities: nameSet: True id: engineer canteen type: SurveillanceCamera - - uid: 24613 + - uid: 24693 components: - rot: -1.5707963267948966 rad pos: -48.5,-9.5 @@ -169668,7 +162545,7 @@ entities: nameSet: True id: 'AME ' type: SurveillanceCamera - - uid: 24614 + - uid: 24694 components: - pos: -52.5,-20.5 parent: 2 @@ -169678,7 +162555,7 @@ entities: nameSet: True id: engineering console room type: SurveillanceCamera - - uid: 24615 + - uid: 24695 components: - pos: -67.5,-28.5 parent: 2 @@ -169688,7 +162565,7 @@ entities: nameSet: True id: particle accelerator type: SurveillanceCamera - - uid: 24616 + - uid: 24696 components: - rot: -1.5707963267948966 rad pos: -22.5,4.5 @@ -169701,7 +162578,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraGeneral entities: - - uid: 24617 + - uid: 24697 components: - pos: -6.5,-27.5 parent: 2 @@ -169711,7 +162588,7 @@ entities: nameSet: True id: janitorial closet type: SurveillanceCamera - - uid: 24618 + - uid: 24698 components: - rot: 1.5707963267948966 rad pos: -22.5,-23.5 @@ -169722,7 +162599,7 @@ entities: nameSet: True id: north youtool type: SurveillanceCamera - - uid: 24619 + - uid: 24699 components: - rot: 3.141592653589793 rad pos: 8.5,3.5 @@ -169733,7 +162610,7 @@ entities: nameSet: True id: food court type: SurveillanceCamera - - uid: 24620 + - uid: 24700 components: - rot: 1.5707963267948966 rad pos: 41.5,-56.5 @@ -169744,7 +162621,7 @@ entities: nameSet: True id: south youtool type: SurveillanceCamera - - uid: 24621 + - uid: 24701 components: - pos: 37.5,-73.5 parent: 2 @@ -169754,7 +162631,7 @@ entities: nameSet: True id: arrivals type: SurveillanceCamera - - uid: 24622 + - uid: 24702 components: - rot: -1.5707963267948966 rad pos: 60.5,-7.5 @@ -169765,7 +162642,7 @@ entities: nameSet: True id: evac type: SurveillanceCamera - - uid: 24623 + - uid: 24703 components: - rot: 3.141592653589793 rad pos: -12.5,-8.5 @@ -169778,7 +162655,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraMedical entities: - - uid: 24624 + - uid: 24704 components: - rot: -1.5707963267948966 rad pos: -20.5,-61.5 @@ -169789,7 +162666,7 @@ entities: nameSet: True id: medbay corridor type: SurveillanceCamera - - uid: 24625 + - uid: 24705 components: - rot: 1.5707963267948966 rad pos: 0.5,-47.5 @@ -169800,7 +162677,7 @@ entities: nameSet: True id: medbay reception type: SurveillanceCamera - - uid: 24626 + - uid: 24706 components: - pos: -10.5,-61.5 parent: 2 @@ -169810,7 +162687,7 @@ entities: nameSet: True id: medical doctors corridor type: SurveillanceCamera - - uid: 24627 + - uid: 24707 components: - rot: 3.141592653589793 rad pos: -6.5,-52.5 @@ -169821,7 +162698,7 @@ entities: nameSet: True id: medical beds type: SurveillanceCamera - - uid: 24628 + - uid: 24708 components: - rot: -1.5707963267948966 rad pos: -25.5,-70.5 @@ -169832,7 +162709,7 @@ entities: nameSet: True id: virology reception type: SurveillanceCamera - - uid: 24629 + - uid: 24709 components: - pos: -26.5,-80.5 parent: 2 @@ -169842,7 +162719,7 @@ entities: nameSet: True id: virology treatment type: SurveillanceCamera - - uid: 24630 + - uid: 24710 components: - rot: -1.5707963267948966 rad pos: -23.5,-83.5 @@ -169855,63 +162732,63 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraRouterCommand entities: - - uid: 24631 + - uid: 24711 components: - pos: -18.5,-48.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterEngineering entities: - - uid: 24632 + - uid: 24712 components: - pos: -21.5,-47.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterGeneral entities: - - uid: 24633 + - uid: 24713 components: - pos: -18.5,-45.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterMedical entities: - - uid: 24634 + - uid: 24714 components: - pos: -18.5,-46.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterScience entities: - - uid: 24635 + - uid: 24715 components: - pos: -21.5,-45.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterSecurity entities: - - uid: 24636 + - uid: 24716 components: - pos: -21.5,-48.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterService entities: - - uid: 24637 + - uid: 24717 components: - pos: -18.5,-47.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterSupply entities: - - uid: 24638 + - uid: 24718 components: - pos: -21.5,-46.5 parent: 2 type: Transform - proto: SurveillanceCameraScience entities: - - uid: 24639 + - uid: 24719 components: - rot: 1.5707963267948966 rad pos: 76.5,-48.5 @@ -169922,7 +162799,7 @@ entities: nameSet: True id: robotics type: SurveillanceCamera - - uid: 24640 + - uid: 24720 components: - rot: 1.5707963267948966 rad pos: 46.5,-36.5 @@ -169933,7 +162810,7 @@ entities: nameSet: True id: r&d type: SurveillanceCamera - - uid: 24641 + - uid: 24721 components: - rot: 1.5707963267948966 rad pos: 65.5,-47.5 @@ -169944,7 +162821,7 @@ entities: nameSet: True id: science robotics showcase type: SurveillanceCamera - - uid: 24642 + - uid: 24722 components: - rot: 3.141592653589793 rad pos: 37.5,-41.5 @@ -169955,7 +162832,7 @@ entities: nameSet: True id: science entrance type: SurveillanceCamera - - uid: 24643 + - uid: 24723 components: - rot: 1.5707963267948966 rad pos: 75.5,-38.5 @@ -169968,7 +162845,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraSecurity entities: - - uid: 24644 + - uid: 24724 components: - rot: 1.5707963267948966 rad pos: 23.5,34.5 @@ -169979,7 +162856,7 @@ entities: nameSet: True id: space armory type: SurveillanceCamera - - uid: 24645 + - uid: 24725 components: - rot: 1.5707963267948966 rad pos: 50.5,14.5 @@ -169990,7 +162867,7 @@ entities: nameSet: True id: open prison north west type: SurveillanceCamera - - uid: 24646 + - uid: 24726 components: - rot: -1.5707963267948966 rad pos: 56.5,10.5 @@ -170001,7 +162878,7 @@ entities: nameSet: True id: open prison south type: SurveillanceCamera - - uid: 24647 + - uid: 24727 components: - rot: 1.5707963267948966 rad pos: 42.5,9.5 @@ -170012,7 +162889,7 @@ entities: nameSet: True id: brig south type: SurveillanceCamera - - uid: 24648 + - uid: 24728 components: - rot: 3.141592653589793 rad pos: 33.5,16.5 @@ -170023,7 +162900,7 @@ entities: nameSet: True id: brig type: SurveillanceCamera - - uid: 24649 + - uid: 24729 components: - rot: 1.5707963267948966 rad pos: 32.5,31.5 @@ -170034,7 +162911,7 @@ entities: nameSet: True id: armory type: SurveillanceCamera - - uid: 24650 + - uid: 24730 components: - rot: 3.141592653589793 rad pos: 8.5,17.5 @@ -170045,7 +162922,7 @@ entities: nameSet: True id: security canteen type: SurveillanceCamera - - uid: 24651 + - uid: 24731 components: - rot: -1.5707963267948966 rad pos: 17.5,-11.5 @@ -170058,7 +162935,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraService entities: - - uid: 24652 + - uid: 24732 components: - rot: 1.5707963267948966 rad pos: 12.5,-6.5 @@ -170069,7 +162946,7 @@ entities: nameSet: True id: library type: SurveillanceCamera - - uid: 24653 + - uid: 24733 components: - rot: 1.5707963267948966 rad pos: 6.5,6.5 @@ -170080,7 +162957,7 @@ entities: nameSet: True id: Kitchen type: SurveillanceCamera - - uid: 24654 + - uid: 24734 components: - rot: 1.5707963267948966 rad pos: 14.5,8.5 @@ -170091,7 +162968,7 @@ entities: nameSet: True id: bar type: SurveillanceCamera - - uid: 24655 + - uid: 24735 components: - rot: 1.5707963267948966 rad pos: -6.5,9.5 @@ -170104,7 +162981,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraSupply entities: - - uid: 24656 + - uid: 24736 components: - pos: -43.5,18.5 parent: 2 @@ -170114,7 +162991,7 @@ entities: nameSet: True id: cargo dock type: SurveillanceCamera - - uid: 24657 + - uid: 24737 components: - rot: 1.5707963267948966 rad pos: -30.5,22.5 @@ -170125,7 +163002,7 @@ entities: nameSet: True id: cargo type: SurveillanceCamera - - uid: 24658 + - uid: 24738 components: - pos: -43.5,28.5 parent: 2 @@ -170135,7 +163012,7 @@ entities: nameSet: True id: salvage magnet type: SurveillanceCamera - - uid: 24659 + - uid: 24739 components: - rot: 3.141592653589793 rad pos: -44.5,16.5 @@ -170148,14 +163025,14 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraWirelessRouterEntertainment entities: - - uid: 24660 + - uid: 24740 components: - pos: -27.5,12.5 parent: 2 type: Transform - proto: SurveillanceWirelessCameraAnchoredConstructed entities: - - uid: 24661 + - uid: 24741 components: - rot: 3.141592653589793 rad pos: -26.5,13.5 @@ -170166,7 +163043,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceWirelessCameraMovableEntertainment entities: - - uid: 24662 + - uid: 24742 components: - pos: -24.5,13.5 parent: 2 @@ -170176,7 +163053,7 @@ entities: nameSet: True id: news camera type: SurveillanceCamera - - uid: 24663 + - uid: 24743 components: - rot: -1.5707963267948966 rad pos: 29.5,3.5 @@ -170184,2254 +163061,2259 @@ entities: type: Transform - proto: SynthesizerInstrument entities: - - uid: 24664 + - uid: 24744 components: - pos: -10.500677,-5.723185 parent: 2 type: Transform - proto: Syringe entities: - - uid: 24665 + - uid: 24745 components: - pos: -25.497284,-79.35806 parent: 2 type: Transform - proto: Table entities: - - uid: 24666 + - uid: 24746 + components: + - rot: -1.5707963267948966 rad + pos: 55.5,-40.5 + parent: 2 + type: Transform + - uid: 24747 + components: + - rot: -1.5707963267948966 rad + pos: 52.5,-39.5 + parent: 2 + type: Transform + - uid: 24748 + components: + - rot: -1.5707963267948966 rad + pos: 53.5,-39.5 + parent: 2 + type: Transform + - uid: 24749 components: - pos: -37.5,-18.5 parent: 2 type: Transform - - uid: 24667 + - uid: 24750 components: - rot: -1.5707963267948966 rad pos: -66.5,-34.5 parent: 2 type: Transform - - uid: 24668 + - uid: 24751 components: - rot: -1.5707963267948966 rad pos: -67.5,-34.5 parent: 2 type: Transform - - uid: 24669 + - uid: 24752 components: - pos: -25.5,-52.5 parent: 2 type: Transform - - uid: 24670 + - uid: 24753 components: - rot: 3.141592653589793 rad pos: -37.5,-7.5 parent: 2 type: Transform - - uid: 24671 + - uid: 24754 components: - rot: 3.141592653589793 rad pos: -36.5,-7.5 parent: 2 type: Transform - - uid: 24672 + - uid: 24755 components: - rot: 1.5707963267948966 rad pos: 2.5,7.5 parent: 2 type: Transform - - uid: 24673 - components: - - pos: 4.5,15.5 - parent: 2 - type: Transform - - uid: 24674 + - uid: 24756 components: - rot: 3.141592653589793 rad pos: 18.5,11.5 parent: 2 type: Transform - - uid: 24675 + - uid: 24757 components: - rot: 3.141592653589793 rad pos: 18.5,13.5 parent: 2 type: Transform - - uid: 24676 + - uid: 24758 components: - pos: 7.5,-46.5 parent: 2 type: Transform - - uid: 24677 + - uid: 24759 components: - pos: -25.5,-78.5 parent: 2 type: Transform - - uid: 24678 + - uid: 24760 components: - pos: -19.5,-85.5 parent: 2 type: Transform - - uid: 24679 + - uid: 24761 components: - rot: 1.5707963267948966 rad pos: 2.5,6.5 parent: 2 type: Transform - - uid: 24680 + - uid: 24762 components: - rot: 3.141592653589793 rad pos: 4.5,-50.5 parent: 2 type: Transform - - uid: 24681 + - uid: 24763 components: - rot: -1.5707963267948966 rad pos: 6.5,12.5 parent: 2 type: Transform - - uid: 24682 + - uid: 24764 components: - pos: 10.5,-56.5 parent: 2 type: Transform - - uid: 24683 + - uid: 24765 components: - pos: -28.5,21.5 parent: 2 type: Transform - - uid: 24684 + - uid: 24766 components: - rot: 3.141592653589793 rad pos: 73.5,-38.5 parent: 2 type: Transform - - uid: 24685 + - uid: 24767 components: - rot: 1.5707963267948966 rad pos: 4.5,6.5 parent: 2 type: Transform - - uid: 24686 + - uid: 24768 components: - pos: 3.5,-45.5 parent: 2 type: Transform - - uid: 24687 + - uid: 24769 components: - rot: 3.141592653589793 rad pos: 18.5,12.5 parent: 2 type: Transform - - uid: 24688 + - uid: 24770 components: - rot: -1.5707963267948966 rad pos: -12.5,-56.5 parent: 2 type: Transform - - uid: 24689 + - uid: 24771 components: - rot: -1.5707963267948966 rad pos: -9.5,-56.5 parent: 2 type: Transform - - uid: 24690 + - uid: 24772 components: - rot: -1.5707963267948966 rad pos: -6.5,-56.5 parent: 2 type: Transform - - uid: 24691 + - uid: 24773 components: - rot: -1.5707963267948966 rad pos: -3.5,-56.5 parent: 2 type: Transform - - uid: 24692 + - uid: 24774 components: - rot: -1.5707963267948966 rad pos: -0.5,-56.5 parent: 2 type: Transform - - uid: 24693 + - uid: 24775 components: - rot: -1.5707963267948966 rad pos: 2.5,-56.5 parent: 2 type: Transform - - uid: 24694 + - uid: 24776 components: - rot: 3.141592653589793 rad pos: 64.5,-36.5 parent: 2 type: Transform - - uid: 24695 + - uid: 24777 components: - pos: 10.5,-58.5 parent: 2 type: Transform - - uid: 24696 + - uid: 24778 components: - pos: 10.5,-59.5 parent: 2 type: Transform - - uid: 24697 + - uid: 24779 components: - pos: 10.5,-61.5 parent: 2 type: Transform - - uid: 24698 + - uid: 24780 components: - pos: 10.5,-62.5 parent: 2 type: Transform - - uid: 24699 + - uid: 24781 components: - pos: 9.5,-62.5 parent: 2 type: Transform - - uid: 24700 + - uid: 24782 components: - pos: 8.5,-62.5 parent: 2 type: Transform - - uid: 24701 + - uid: 24783 components: - pos: -13.5,-21.5 parent: 2 type: Transform - - uid: 24702 + - uid: 24784 components: - pos: -13.5,-23.5 parent: 2 type: Transform - - uid: 24703 + - uid: 24785 components: - pos: -12.5,-19.5 parent: 2 type: Transform - - uid: 24704 + - uid: 24786 components: - pos: 3.5,-47.5 parent: 2 type: Transform - - uid: 24705 + - uid: 24787 components: - pos: 8.5,13.5 parent: 2 type: Transform - - uid: 24706 + - uid: 24788 components: - pos: 7.5,12.5 parent: 2 type: Transform - - uid: 24707 + - uid: 24789 components: - pos: -22.5,-78.5 parent: 2 type: Transform - - uid: 24708 + - uid: 24790 components: - pos: -20.5,-78.5 parent: 2 type: Transform - - uid: 24709 + - uid: 24791 components: - rot: 1.5707963267948966 rad pos: 3.5,7.5 parent: 2 type: Transform - - uid: 24710 + - uid: 24792 components: - rot: 1.5707963267948966 rad pos: 3.5,6.5 parent: 2 type: Transform - - uid: 24711 + - uid: 24793 components: - pos: 10.5,-60.5 parent: 2 type: Transform - - uid: 24712 + - uid: 24794 components: - rot: -1.5707963267948966 rad pos: 8.5,14.5 parent: 2 type: Transform - - uid: 24713 - components: - - pos: 56.5,-41.5 - parent: 2 - type: Transform - - uid: 24714 + - uid: 24795 components: - pos: -25.5,-79.5 parent: 2 type: Transform - - uid: 24715 + - uid: 24796 components: - pos: -26.5,-20.5 parent: 2 type: Transform - - uid: 24716 + - uid: 24797 components: - pos: 5.5,15.5 parent: 2 type: Transform - - uid: 24717 + - uid: 24798 components: - pos: -62.5,-28.5 parent: 2 type: Transform - - uid: 24718 - components: - - pos: -43.5,35.5 - parent: 2 - type: Transform - - uid: 24719 + - uid: 24799 components: - pos: -22.5,-76.5 parent: 2 type: Transform - - uid: 24720 + - uid: 24800 components: - pos: -20.5,-77.5 parent: 2 type: Transform - - uid: 24721 + - uid: 24801 components: - pos: -6.5,-73.5 parent: 2 type: Transform - - uid: 24722 + - uid: 24802 components: - pos: 9.5,-56.5 parent: 2 type: Transform - - uid: 24723 + - uid: 24803 components: - pos: -23.5,-71.5 parent: 2 type: Transform - - uid: 24724 + - uid: 24804 components: - pos: -11.5,-67.5 parent: 2 type: Transform - - uid: 24725 + - uid: 24805 components: - pos: -24.5,-71.5 parent: 2 type: Transform - - uid: 24726 + - uid: 24806 components: - pos: -22.5,-71.5 parent: 2 type: Transform - - uid: 24727 + - uid: 24807 components: - pos: -22.5,-70.5 parent: 2 type: Transform - - uid: 24728 + - uid: 24808 components: - pos: -13.5,-22.5 parent: 2 type: Transform - - uid: 24729 + - uid: 24809 components: - pos: -22.5,-69.5 parent: 2 type: Transform - - uid: 24730 + - uid: 24810 components: - pos: -30.5,-69.5 parent: 2 type: Transform - - uid: 24731 + - uid: 24811 components: - rot: 3.141592653589793 rad pos: -31.5,-69.5 parent: 2 type: Transform - - uid: 24732 + - uid: 24812 components: - pos: -8.5,-15.5 parent: 2 type: Transform - - uid: 24733 + - uid: 24813 components: - pos: 15.5,-64.5 parent: 2 type: Transform - - uid: 24734 + - uid: 24814 components: - pos: 16.5,-64.5 parent: 2 type: Transform - - uid: 24735 + - uid: 24815 components: - rot: 1.5707963267948966 rad pos: 4.5,7.5 parent: 2 type: Transform - - uid: 24736 + - uid: 24816 components: - rot: 3.141592653589793 rad pos: 18.5,11.5 parent: 2 type: Transform - - uid: 24737 + - uid: 24817 components: - pos: 8.5,12.5 parent: 2 type: Transform - - uid: 24738 + - uid: 24818 components: - pos: 9.5,-58.5 parent: 2 type: Transform - - uid: 24739 + - uid: 24819 components: - pos: -7.5,-15.5 parent: 2 type: Transform - - uid: 24740 + - uid: 24820 components: - pos: -19.5,-87.5 parent: 2 type: Transform - - uid: 24741 + - uid: 24821 components: - pos: -19.5,-84.5 parent: 2 type: Transform - - uid: 24742 + - uid: 24822 components: - pos: -26.5,-86.5 parent: 2 type: Transform - - uid: 24743 + - uid: 24823 components: - pos: -26.5,-84.5 parent: 2 type: Transform - - uid: 24744 + - uid: 24824 components: - pos: -25.5,-84.5 parent: 2 type: Transform - - uid: 24745 + - uid: 24825 components: - pos: -24.5,-84.5 parent: 2 type: Transform - - uid: 24746 + - uid: 24826 components: - pos: 12.5,20.5 parent: 2 type: Transform - - uid: 24747 + - uid: 24827 components: - pos: 12.5,19.5 parent: 2 type: Transform - - uid: 24748 + - uid: 24828 components: - pos: 12.5,21.5 parent: 2 type: Transform - - uid: 24749 + - uid: 24829 components: - pos: -10.5,-32.5 parent: 2 type: Transform - - uid: 24750 + - uid: 24830 components: - pos: -9.5,-32.5 parent: 2 type: Transform - - uid: 24751 + - uid: 24831 components: - pos: -8.5,-32.5 parent: 2 type: Transform - - uid: 24752 + - uid: 24832 components: - pos: -8.5,-33.5 parent: 2 type: Transform - - uid: 24753 + - uid: 24833 components: - rot: 3.141592653589793 rad pos: 17.5,22.5 parent: 2 type: Transform - - uid: 24754 + - uid: 24834 components: - pos: 17.5,21.5 parent: 2 type: Transform - - uid: 24755 + - uid: 24835 components: - pos: 16.5,21.5 parent: 2 type: Transform - - uid: 24756 + - uid: 24836 components: - pos: 15.5,21.5 parent: 2 type: Transform - - uid: 24757 + - uid: 24837 components: - rot: 3.141592653589793 rad pos: 15.5,22.5 parent: 2 type: Transform - - uid: 24758 + - uid: 24838 components: - rot: 3.141592653589793 rad pos: 16.5,22.5 parent: 2 type: Transform - - uid: 24759 + - uid: 24839 components: - pos: -9.5,-15.5 parent: 2 type: Transform - - uid: 24760 + - uid: 24840 components: - pos: 53.5,35.5 parent: 2 type: Transform - - uid: 24761 + - uid: 24841 components: - pos: 54.5,35.5 parent: 2 type: Transform - - uid: 24762 + - uid: 24842 components: - rot: 1.5707963267948966 rad pos: 54.5,18.5 parent: 2 type: Transform - - uid: 24763 + - uid: 24843 components: - rot: 1.5707963267948966 rad pos: 53.5,18.5 parent: 2 type: Transform - - uid: 24764 + - uid: 24844 components: - rot: 1.5707963267948966 rad pos: 52.5,18.5 parent: 2 type: Transform - - uid: 24765 + - uid: 24845 components: - pos: 45.5,8.5 parent: 2 type: Transform - - uid: 24766 + - uid: 24846 components: - pos: 62.5,18.5 parent: 2 type: Transform - - uid: 24767 + - uid: 24847 components: - pos: 62.5,15.5 parent: 2 type: Transform - - uid: 24768 + - uid: 24848 components: - pos: 59.5,24.5 parent: 2 type: Transform - - uid: 24769 + - uid: 24849 components: - pos: 47.5,24.5 parent: 2 type: Transform - - uid: 24770 + - uid: 24850 components: - pos: 53.5,24.5 parent: 2 type: Transform - - uid: 24771 + - uid: 24851 components: - pos: 50.5,24.5 parent: 2 type: Transform - - uid: 24772 + - uid: 24852 components: - pos: 56.5,24.5 parent: 2 type: Transform - - uid: 24773 + - uid: 24853 components: - pos: 48.5,18.5 parent: 2 type: Transform - - uid: 24774 + - uid: 24854 components: - pos: 57.5,20.5 parent: 2 type: Transform - - uid: 24775 + - uid: 24855 components: - pos: 57.5,19.5 parent: 2 type: Transform - - uid: 24776 + - uid: 24856 components: - pos: 58.5,19.5 parent: 2 type: Transform - - uid: 24777 + - uid: 24857 components: - pos: 51.5,7.5 parent: 2 type: Transform - - uid: 24778 + - uid: 24858 components: - pos: 52.5,7.5 parent: 2 type: Transform - - uid: 24779 + - uid: 24859 components: - pos: 52.5,6.5 parent: 2 type: Transform - - uid: 24780 + - uid: 24860 components: - pos: 51.5,6.5 parent: 2 type: Transform - - uid: 24781 + - uid: 24861 components: - rot: 3.141592653589793 rad pos: 52.5,11.5 parent: 2 type: Transform - - uid: 24782 + - uid: 24862 components: - pos: 58.5,20.5 parent: 2 type: Transform - - uid: 24783 + - uid: 24863 components: - rot: -1.5707963267948966 rad pos: 47.5,4.5 parent: 2 type: Transform - - uid: 24784 + - uid: 24864 components: - rot: -1.5707963267948966 rad pos: 65.5,-6.5 parent: 2 type: Transform - - uid: 24785 + - uid: 24865 components: - pos: 41.5,-39.5 parent: 2 type: Transform - - uid: 24786 + - uid: 24866 components: - pos: 40.5,-39.5 parent: 2 type: Transform - - uid: 24787 + - uid: 24867 components: - pos: 39.5,-39.5 parent: 2 type: Transform - - uid: 24788 + - uid: 24868 components: - pos: 38.5,-39.5 parent: 2 type: Transform - - uid: 24789 + - uid: 24869 components: - pos: 38.5,-38.5 parent: 2 type: Transform - - uid: 24790 + - uid: 24870 components: - pos: 38.5,-37.5 parent: 2 type: Transform - - uid: 24791 - components: - - pos: 53.5,-40.5 - parent: 2 - type: Transform - - uid: 24792 - components: - - pos: 52.5,-40.5 - parent: 2 - type: Transform - - uid: 24793 + - uid: 24871 components: - pos: 51.5,-40.5 parent: 2 type: Transform - - uid: 24794 + - uid: 24872 components: - pos: 51.5,-41.5 parent: 2 type: Transform - - uid: 24795 + - uid: 24873 components: - pos: 51.5,-42.5 parent: 2 type: Transform - - uid: 24796 + - uid: 24874 components: - pos: 51.5,-43.5 parent: 2 type: Transform - - uid: 24797 + - uid: 24875 components: - pos: 53.5,-43.5 parent: 2 type: Transform - - uid: 24798 + - uid: 24876 components: - rot: -1.5707963267948966 rad pos: 52.5,-43.5 parent: 2 type: Transform - - uid: 24799 + - uid: 24877 components: - rot: 3.141592653589793 rad pos: 77.5,-46.5 parent: 2 type: Transform - - uid: 24800 + - uid: 24878 components: - pos: 38.5,-36.5 parent: 2 type: Transform - - uid: 24801 + - uid: 24879 components: - pos: 42.5,-35.5 parent: 2 type: Transform - - uid: 24802 + - uid: 24880 components: - pos: 41.5,-35.5 parent: 2 type: Transform - - uid: 24803 + - uid: 24881 components: - pos: 46.5,-49.5 parent: 2 type: Transform - - uid: 24804 + - uid: 24882 components: - pos: 45.5,-49.5 parent: 2 type: Transform - - uid: 24805 + - uid: 24883 components: - pos: 44.5,-49.5 parent: 2 type: Transform - - uid: 24806 + - uid: 24884 components: - pos: 43.5,-49.5 parent: 2 type: Transform - - uid: 24807 + - uid: 24885 components: - pos: 42.5,-49.5 parent: 2 type: Transform - - uid: 24808 + - uid: 24886 components: - pos: 42.5,-48.5 parent: 2 type: Transform - - uid: 24809 + - uid: 24887 components: - pos: 71.5,-43.5 parent: 2 type: Transform - - uid: 24810 + - uid: 24888 components: - pos: 73.5,-44.5 parent: 2 type: Transform - - uid: 24811 + - uid: 24889 components: - rot: -1.5707963267948966 rad pos: 73.5,-47.5 parent: 2 type: Transform - - uid: 24812 + - uid: 24890 components: - pos: 69.5,-49.5 parent: 2 type: Transform - - uid: 24813 + - uid: 24891 components: - rot: -1.5707963267948966 rad pos: 69.5,-47.5 parent: 2 type: Transform - - uid: 24814 + - uid: 24892 components: - pos: 73.5,-43.5 parent: 2 type: Transform - - uid: 24815 + - uid: 24893 components: - pos: 72.5,-43.5 parent: 2 type: Transform - - uid: 24816 + - uid: 24894 components: - pos: -11.5,-48.5 parent: 2 type: Transform - - uid: 24817 + - uid: 24895 components: - pos: -11.5,-49.5 parent: 2 type: Transform - - uid: 24818 + - uid: 24896 components: - pos: -11.5,-50.5 parent: 2 type: Transform - - uid: 24819 + - uid: 24897 components: - pos: -12.5,-50.5 parent: 2 type: Transform - - uid: 24820 + - uid: 24898 components: - pos: 53.5,-51.5 parent: 2 type: Transform - - uid: 24821 + - uid: 24899 components: - pos: 53.5,-52.5 parent: 2 type: Transform - - uid: 24822 + - uid: 24900 components: - pos: 53.5,-53.5 parent: 2 type: Transform - - uid: 24823 + - uid: 24901 components: - rot: 3.141592653589793 rad pos: -24.5,-19.5 parent: 2 type: Transform - - uid: 24824 + - uid: 24902 components: - rot: 3.141592653589793 rad pos: -25.5,-19.5 parent: 2 type: Transform - - uid: 24825 + - uid: 24903 components: - pos: -22.5,-20.5 parent: 2 type: Transform - - uid: 24826 + - uid: 24904 components: - rot: 1.5707963267948966 rad pos: -23.5,-24.5 parent: 2 type: Transform - - uid: 24827 + - uid: 24905 components: - rot: 1.5707963267948966 rad pos: -24.5,-24.5 parent: 2 type: Transform - - uid: 24828 + - uid: 24906 components: - rot: 1.5707963267948966 rad pos: -25.5,-24.5 parent: 2 type: Transform - - uid: 24829 + - uid: 24907 components: - pos: -26.5,-19.5 parent: 2 type: Transform - - uid: 24830 + - uid: 24908 components: - pos: 30.5,-61.5 parent: 2 type: Transform - - uid: 24831 + - uid: 24909 components: - pos: 31.5,-61.5 parent: 2 type: Transform - - uid: 24832 + - uid: 24910 components: - pos: 40.5,-53.5 parent: 2 type: Transform - - uid: 24833 + - uid: 24911 components: - pos: 41.5,-53.5 parent: 2 type: Transform - - uid: 24834 + - uid: 24912 components: - pos: 41.5,-54.5 parent: 2 type: Transform - - uid: 24835 + - uid: 24913 components: - pos: 41.5,-55.5 parent: 2 type: Transform - - uid: 24836 + - uid: 24914 components: - rot: 3.141592653589793 rad pos: 26.5,-68.5 parent: 2 type: Transform - - uid: 24837 + - uid: 24915 components: - pos: -34.5,-13.5 parent: 2 type: Transform - - uid: 24838 + - uid: 24916 components: - pos: -35.5,-13.5 parent: 2 type: Transform - - uid: 24839 + - uid: 24917 components: - pos: -36.5,-8.5 parent: 2 type: Transform - - uid: 24840 + - uid: 24918 components: - pos: -34.5,-12.5 parent: 2 type: Transform - - uid: 24841 + - uid: 24919 components: - pos: -39.5,-16.5 parent: 2 type: Transform - - uid: 24842 + - uid: 24920 components: - pos: -39.5,-17.5 parent: 2 type: Transform - - uid: 24843 + - uid: 24921 components: - pos: -39.5,-18.5 parent: 2 type: Transform - - uid: 24844 + - uid: 24922 components: - pos: -40.5,-18.5 parent: 2 type: Transform - - uid: 24845 + - uid: 24923 components: - pos: -42.5,-18.5 parent: 2 type: Transform - - uid: 24846 + - uid: 24924 components: - pos: -42.5,-17.5 parent: 2 type: Transform - - uid: 24847 + - uid: 24925 components: - pos: -42.5,-16.5 parent: 2 type: Transform - - uid: 24848 + - uid: 24926 components: - rot: 1.5707963267948966 rad pos: -12.5,-5.5 parent: 2 type: Transform - - uid: 24849 + - uid: 24927 components: - pos: -30.5,-37.5 parent: 2 type: Transform - - uid: 24850 + - uid: 24928 components: - rot: 3.141592653589793 rad pos: -52.5,-13.5 parent: 2 type: Transform - - uid: 24851 + - uid: 24929 components: - pos: -57.5,-30.5 parent: 2 type: Transform - - uid: 24852 + - uid: 24930 components: - pos: -62.5,-27.5 parent: 2 type: Transform - - uid: 24853 + - uid: 24931 components: - pos: -35.5,-46.5 parent: 2 type: Transform - - uid: 24854 + - uid: 24932 components: - pos: -35.5,-47.5 parent: 2 type: Transform - - uid: 24855 + - uid: 24933 components: - pos: -35.5,-48.5 parent: 2 type: Transform - - uid: 24856 + - uid: 24934 components: - pos: -35.5,-49.5 parent: 2 type: Transform - - uid: 24857 + - uid: 24935 components: - pos: -35.5,-50.5 parent: 2 type: Transform - - uid: 24858 + - uid: 24936 components: - pos: -52.5,-15.5 parent: 2 type: Transform - - uid: 24859 + - uid: 24937 components: - pos: -52.5,-14.5 parent: 2 type: Transform - - uid: 24860 + - uid: 24938 components: - pos: -52.5,-12.5 parent: 2 type: Transform - - uid: 24861 + - uid: 24939 components: - pos: -70.5,-25.5 parent: 2 type: Transform - - uid: 24862 + - uid: 24940 components: - pos: -70.5,-26.5 parent: 2 type: Transform - - uid: 24863 + - uid: 24941 components: - pos: -71.5,-26.5 parent: 2 type: Transform - - uid: 24864 + - uid: 24942 components: - rot: 3.141592653589793 rad pos: 20.5,-45.5 parent: 2 type: Transform - - uid: 24865 + - uid: 24943 components: - pos: -28.5,-52.5 parent: 2 type: Transform - - uid: 24866 + - uid: 24944 components: - pos: -27.5,-52.5 parent: 2 type: Transform - - uid: 24867 + - uid: 24945 components: - pos: -24.5,-52.5 parent: 2 type: Transform - - uid: 24868 + - uid: 24946 components: - pos: -38.5,-27.5 parent: 2 type: Transform - - uid: 24869 + - uid: 24947 components: - pos: -43.5,-27.5 parent: 2 type: Transform - - uid: 24870 + - uid: 24948 components: - pos: -54.5,-38.5 parent: 2 type: Transform - - uid: 24871 + - uid: 24949 components: - pos: -54.5,-39.5 parent: 2 type: Transform - - uid: 24872 + - uid: 24950 components: - pos: -55.5,-39.5 parent: 2 type: Transform - - uid: 24873 + - uid: 24951 components: - pos: -57.5,-35.5 parent: 2 type: Transform - - uid: 24874 + - uid: 24952 components: - pos: -56.5,-35.5 parent: 2 type: Transform - - uid: 24875 + - uid: 24953 components: - pos: -22.5,-33.5 parent: 2 type: Transform - - uid: 24876 + - uid: 24954 components: - pos: 38.5,-55.5 parent: 2 type: Transform - - uid: 24877 + - uid: 24955 components: - pos: 38.5,-56.5 parent: 2 type: Transform - - uid: 24878 + - uid: 24956 components: - pos: -34.5,17.5 parent: 2 type: Transform - - uid: 24879 + - uid: 24957 components: - pos: -27.5,24.5 parent: 2 type: Transform - - uid: 24880 + - uid: 24958 components: - pos: -22.5,17.5 parent: 2 type: Transform - - uid: 24881 + - uid: 24959 components: - pos: -39.5,25.5 parent: 2 type: Transform - - uid: 24882 + - uid: 24960 components: - pos: -40.5,25.5 parent: 2 type: Transform - - uid: 24883 + - uid: 24961 components: - pos: -43.5,25.5 parent: 2 type: Transform - - uid: 24884 + - uid: 24962 components: - rot: 1.5707963267948966 rad pos: 33.5,-14.5 parent: 2 type: Transform - - uid: 24885 + - uid: 24963 components: - pos: -3.5,31.5 parent: 2 type: Transform - - uid: 24886 + - uid: 24964 components: - pos: -3.5,30.5 parent: 2 type: Transform - - uid: 24887 + - uid: 24965 components: - pos: 2.5,23.5 parent: 2 type: Transform - - uid: 24888 + - uid: 24966 components: - pos: 1.5,23.5 parent: 2 type: Transform - - uid: 24889 + - uid: 24967 components: - pos: -33.5,17.5 parent: 2 type: Transform - - uid: 24890 + - uid: 24968 components: - pos: -32.5,17.5 parent: 2 type: Transform - - uid: 24891 + - uid: 24969 components: - pos: -34.5,26.5 parent: 2 type: Transform - - uid: 24892 + - uid: 24970 components: - pos: -33.5,29.5 parent: 2 type: Transform - - uid: 24893 + - uid: 24971 components: - rot: -1.5707963267948966 rad pos: -38.5,18.5 parent: 2 type: Transform - - uid: 24894 + - uid: 24972 components: - pos: -32.5,29.5 parent: 2 type: Transform - - uid: 24895 + - uid: 24973 components: - pos: -31.5,29.5 parent: 2 type: Transform - - uid: 24896 + - uid: 24974 components: - rot: -1.5707963267948966 rad pos: -37.5,18.5 parent: 2 type: Transform - - uid: 24897 - components: - - pos: -42.5,35.5 - parent: 2 - type: Transform - - uid: 24898 + - uid: 24975 components: - pos: -41.5,35.5 parent: 2 type: Transform - - uid: 24899 + - uid: 24976 components: - pos: -40.5,35.5 parent: 2 type: Transform - - uid: 24900 + - uid: 24977 components: - pos: -40.5,34.5 parent: 2 type: Transform - - uid: 24901 + - uid: 24978 components: - pos: -40.5,33.5 parent: 2 type: Transform - - uid: 24902 + - uid: 24979 components: - pos: -40.5,32.5 parent: 2 type: Transform - - uid: 24903 + - uid: 24980 components: - pos: -38.5,28.5 parent: 2 type: Transform - - uid: 24904 + - uid: 24981 components: - pos: -38.5,27.5 parent: 2 type: Transform - - uid: 24905 + - uid: 24982 components: - pos: -37.5,27.5 parent: 2 type: Transform - - uid: 24906 + - uid: 24983 components: - pos: -36.5,27.5 parent: 2 type: Transform - - uid: 24907 + - uid: 24984 components: - rot: 3.141592653589793 rad pos: -22.5,11.5 parent: 2 type: Transform - - uid: 24908 + - uid: 24985 components: - rot: 3.141592653589793 rad pos: -23.5,11.5 parent: 2 type: Transform - - uid: 24909 + - uid: 24986 components: - rot: 3.141592653589793 rad pos: -24.5,11.5 parent: 2 type: Transform - - uid: 24910 + - uid: 24987 components: - pos: -15.5,23.5 parent: 2 type: Transform - - uid: 24911 + - uid: 24988 components: - pos: -16.5,21.5 parent: 2 type: Transform - - uid: 24912 + - uid: 24989 components: - pos: -16.5,20.5 parent: 2 type: Transform - - uid: 24913 + - uid: 24990 components: - pos: -15.5,21.5 parent: 2 type: Transform - - uid: 24914 + - uid: 24991 components: - pos: -48.5,26.5 parent: 2 type: Transform - - uid: 24915 + - uid: 24992 components: - pos: -47.5,26.5 parent: 2 type: Transform - - uid: 24916 + - uid: 24993 components: - pos: -28.5,8.5 parent: 2 type: Transform - - uid: 24917 + - uid: 24994 components: - pos: -29.5,8.5 parent: 2 type: Transform - - uid: 24918 + - uid: 24995 components: - pos: -54.5,0.5 parent: 2 type: Transform - - uid: 24919 + - uid: 24996 components: - pos: 54.5,12.5 parent: 2 type: Transform - - uid: 24920 + - uid: 24997 components: - pos: -25.5,-67.5 parent: 2 type: Transform - - uid: 24921 + - uid: 24998 components: - rot: 1.5707963267948966 rad pos: -12.5,-6.5 parent: 2 type: Transform - - uid: 24922 + - uid: 24999 components: - pos: -34.5,20.5 parent: 2 type: Transform - - uid: 24923 + - uid: 25000 components: - rot: -1.5707963267948966 rad pos: 2.5,-65.5 parent: 2 type: Transform - - uid: 24924 + - uid: 25001 components: - pos: -58.5,-27.5 parent: 2 type: Transform - - uid: 24925 + - uid: 25002 components: - pos: -57.5,-27.5 parent: 2 type: Transform - - uid: 24926 + - uid: 25003 components: - pos: -56.5,-27.5 parent: 2 type: Transform - - uid: 24927 + - uid: 25004 components: - pos: 7.5,-45.5 parent: 2 type: Transform - - uid: 24928 + - uid: 25005 components: - rot: 3.141592653589793 rad pos: 34.5,-35.5 parent: 2 type: Transform - - uid: 24929 + - uid: 25006 components: - pos: 41.5,-58.5 parent: 2 type: Transform - - uid: 24930 + - uid: 25007 components: - pos: 77.5,-47.5 parent: 2 type: Transform - - uid: 24931 + - uid: 25008 components: - rot: 1.5707963267948966 rad pos: -9.5,-65.5 parent: 2 type: Transform - - uid: 24932 + - uid: 25009 components: - pos: -2.5,-33.5 parent: 2 type: Transform - - uid: 24933 + - uid: 25010 components: - pos: 11.5,-66.5 parent: 2 type: Transform - - uid: 24934 + - uid: 25011 components: - pos: 12.5,-66.5 parent: 2 type: Transform - - uid: 24935 + - uid: 25012 components: - pos: 7.5,-16.5 parent: 2 type: Transform - - uid: 24936 + - uid: 25013 components: - pos: -7.5,-30.5 parent: 2 type: Transform - - uid: 24937 + - uid: 25014 components: - rot: 3.141592653589793 rad pos: -29.5,-69.5 parent: 2 type: Transform - - uid: 24938 + - uid: 25015 components: - pos: 53.5,60.5 parent: 2 type: Transform - - uid: 24939 + - uid: 25016 components: - pos: 54.5,60.5 parent: 2 type: Transform - - uid: 24940 + - uid: 25017 components: - pos: 55.5,60.5 parent: 2 type: Transform - - uid: 24941 + - uid: 25018 components: - pos: 57.5,42.5 parent: 2 type: Transform - - uid: 24942 + - uid: 25019 components: - pos: 56.5,42.5 parent: 2 type: Transform - - uid: 24943 + - uid: 25020 components: - pos: 55.5,42.5 parent: 2 type: Transform - - uid: 24944 + - uid: 25021 components: - pos: 50.5,42.5 parent: 2 type: Transform - - uid: 24945 + - uid: 25022 components: - pos: 58.5,52.5 parent: 2 type: Transform - - uid: 24946 + - uid: 25023 components: - pos: 58.5,51.5 parent: 2 type: Transform - - uid: 24947 + - uid: 25024 components: - pos: -8.5,39.5 parent: 2 type: Transform - - uid: 24948 + - uid: 25025 components: - pos: -8.5,38.5 parent: 2 type: Transform - - uid: 24949 + - uid: 25026 components: - pos: -8.5,37.5 parent: 2 type: Transform - - uid: 24950 + - uid: 25027 components: - pos: -9.5,39.5 parent: 2 type: Transform - - uid: 24951 + - uid: 25028 components: - pos: -9.5,37.5 parent: 2 type: Transform - - uid: 24952 + - uid: 25029 components: - rot: 3.141592653589793 rad pos: 67.5,8.5 parent: 2 type: Transform - - uid: 24953 + - uid: 25030 components: - pos: -22.5,45.5 parent: 2 type: Transform - - uid: 24954 + - uid: 25031 components: - pos: -22.5,44.5 parent: 2 type: Transform - - uid: 24955 + - uid: 25032 components: - pos: -22.5,43.5 parent: 2 type: Transform - - uid: 24956 + - uid: 25033 components: - pos: 64.5,29.5 parent: 2 type: Transform - - uid: 24957 + - uid: 25034 components: - pos: 64.5,28.5 parent: 2 type: Transform - - uid: 24958 + - uid: 25035 components: - pos: -0.5,-77.5 parent: 2 type: Transform - - uid: 24959 + - uid: 25036 components: - pos: 72.5,36.5 parent: 2 type: Transform - - uid: 24960 + - uid: 25037 components: - pos: 73.5,36.5 parent: 2 type: Transform - - uid: 24961 + - uid: 25038 components: - pos: 71.5,36.5 parent: 2 type: Transform - - uid: 24962 + - uid: 25039 components: - rot: -1.5707963267948966 rad pos: -11.5,37.5 parent: 2 type: Transform - - uid: 24963 + - uid: 25040 components: - rot: -1.5707963267948966 rad pos: -12.5,37.5 parent: 2 type: Transform - - uid: 24964 + - uid: 25041 components: - rot: 3.141592653589793 rad pos: 37.5,51.5 parent: 2 type: Transform - - uid: 24965 + - uid: 25042 components: - rot: 3.141592653589793 rad pos: 38.5,51.5 parent: 2 type: Transform - - uid: 24966 + - uid: 25043 components: - pos: -2.5,43.5 parent: 2 type: Transform - - uid: 24967 + - uid: 25044 components: - rot: 1.5707963267948966 rad pos: -9.5,41.5 parent: 2 type: Transform - - uid: 24968 + - uid: 25045 components: - rot: 1.5707963267948966 rad pos: -8.5,41.5 parent: 2 type: Transform - - uid: 24969 + - uid: 25046 components: - pos: -10.5,41.5 parent: 2 type: Transform - - uid: 24970 + - uid: 25047 components: - pos: -20.5,47.5 parent: 2 type: Transform - - uid: 24971 + - uid: 25048 components: - pos: -21.5,47.5 parent: 2 type: Transform - - uid: 24972 + - uid: 25049 components: - pos: -16.5,24.5 parent: 2 type: Transform - - uid: 24973 + - uid: 25050 components: - pos: -16.5,23.5 parent: 2 type: Transform - - uid: 24974 + - uid: 25051 components: - pos: 30.5,47.5 parent: 2 type: Transform - - uid: 24975 + - uid: 25052 components: - pos: 30.5,46.5 parent: 2 type: Transform - - uid: 24976 + - uid: 25053 components: - rot: 3.141592653589793 rad pos: -55.5,-48.5 parent: 2 type: Transform - - uid: 24977 + - uid: 25054 components: - rot: 3.141592653589793 rad pos: -55.5,-49.5 parent: 2 type: Transform - - uid: 24978 + - uid: 25055 components: - pos: -22.5,-100.5 parent: 2 type: Transform - - uid: 24979 + - uid: 25056 components: - pos: -14.5,-96.5 parent: 2 type: Transform - - uid: 24980 + - uid: 25057 components: - pos: -15.5,-96.5 parent: 2 type: Transform - - uid: 24981 + - uid: 25058 components: - pos: -30.5,-98.5 parent: 2 type: Transform - - uid: 24982 + - uid: 25059 components: - pos: -29.5,-98.5 parent: 2 type: Transform - - uid: 24983 + - uid: 25060 components: - pos: -21.5,-100.5 parent: 2 type: Transform - - uid: 24984 + - uid: 25061 components: - pos: -23.5,-100.5 parent: 2 type: Transform - - uid: 24985 + - uid: 25062 components: - pos: -10.5,-83.5 parent: 2 type: Transform - - uid: 24986 + - uid: 25063 components: - pos: -4.5,-85.5 parent: 2 type: Transform - - uid: 24987 + - uid: 25064 components: - pos: -12.5,-84.5 parent: 2 type: Transform - - uid: 24988 + - uid: 25065 components: - pos: -13.5,-88.5 parent: 2 type: Transform - - uid: 24989 + - uid: 25066 components: - pos: -38.5,-97.5 parent: 2 type: Transform - - uid: 24990 + - uid: 25067 components: - pos: -38.5,-98.5 parent: 2 type: Transform - - uid: 24991 + - uid: 25068 components: - rot: 3.141592653589793 rad pos: -70.5,-28.5 parent: 2 type: Transform - - uid: 24992 + - uid: 25069 components: - rot: 3.141592653589793 rad pos: -71.5,-28.5 parent: 2 type: Transform - - uid: 24993 + - uid: 25070 components: - pos: 69.5,-48.5 parent: 2 type: Transform - - uid: 24994 + - uid: 25071 components: - pos: 77.5,-44.5 parent: 2 type: Transform - - uid: 24995 + - uid: 25072 components: - pos: 77.5,-43.5 parent: 2 type: Transform - - uid: 24996 + - uid: 25073 components: - pos: 76.5,-43.5 parent: 2 type: Transform - - uid: 24997 + - uid: 25074 components: - pos: 73.5,-49.5 parent: 2 type: Transform - - uid: 24998 + - uid: 25075 components: - pos: 73.5,-48.5 parent: 2 type: Transform - - uid: 24999 + - uid: 25076 components: - rot: -1.5707963267948966 rad pos: 22.5,-47.5 parent: 2 type: Transform - - uid: 25000 + - uid: 25077 components: - rot: 3.141592653589793 rad pos: 6.5,-57.5 parent: 2 type: Transform - - uid: 25001 + - uid: 25078 components: - rot: 1.5707963267948966 rad pos: -16.5,-21.5 parent: 2 type: Transform - - uid: 25002 + - uid: 25079 components: - rot: -1.5707963267948966 rad pos: -15.5,-23.5 parent: 2 type: Transform - - uid: 25003 + - uid: 25080 components: - pos: 53.5,-67.5 parent: 2 type: Transform - - uid: 25004 + - uid: 25081 components: - rot: 3.141592653589793 rad pos: 63.5,-36.5 parent: 2 type: Transform - - uid: 25005 + - uid: 25082 components: - pos: 59.5,-29.5 parent: 2 type: Transform - - uid: 25006 + - uid: 25083 components: - pos: 53.5,-65.5 parent: 2 type: Transform - - uid: 25007 + - uid: 25084 components: - rot: 3.141592653589793 rad pos: 58.5,-37.5 parent: 2 type: Transform - - uid: 25008 + - uid: 25085 components: - rot: 3.141592653589793 rad pos: 57.5,-37.5 parent: 2 type: Transform - - uid: 25009 + - uid: 25086 components: - rot: 3.141592653589793 rad pos: 53.5,-28.5 parent: 2 type: Transform - - uid: 25010 + - uid: 25087 components: - rot: 3.141592653589793 rad pos: 54.5,-28.5 parent: 2 type: Transform - - uid: 25011 + - uid: 25088 components: - rot: 3.141592653589793 rad pos: 70.5,-65.5 parent: 2 type: Transform - - uid: 25012 + - uid: 25089 components: - rot: 3.141592653589793 rad pos: 70.5,-66.5 parent: 2 type: Transform - - uid: 25013 + - uid: 25090 components: - rot: 3.141592653589793 rad pos: 69.5,-66.5 parent: 2 type: Transform - - uid: 25014 + - uid: 25091 components: - rot: 3.141592653589793 rad pos: 43.5,-62.5 parent: 2 type: Transform - - uid: 25015 + - uid: 25092 components: - pos: 67.5,-64.5 parent: 2 type: Transform - - uid: 25016 + - uid: 25093 components: - pos: 67.5,-65.5 parent: 2 type: Transform - - uid: 25017 + - uid: 25094 components: - pos: 45.5,-63.5 parent: 2 type: Transform - - uid: 25018 + - uid: 25095 components: - pos: 46.5,-63.5 parent: 2 type: Transform - - uid: 25019 + - uid: 25096 components: - pos: 39.5,-35.5 parent: 2 type: Transform - - uid: 25020 + - uid: 25097 components: - pos: 38.5,-35.5 parent: 2 type: Transform - - uid: 25021 + - uid: 25098 components: - pos: -37.5,-8.5 parent: 2 type: Transform - - uid: 25022 + - uid: 25099 components: - rot: 3.141592653589793 rad pos: -25.5,-6.5 parent: 2 type: Transform - - uid: 25023 + - uid: 25100 components: - rot: -1.5707963267948966 rad pos: -36.5,18.5 parent: 2 type: Transform - - uid: 25024 + - uid: 25101 components: - pos: -12.5,-18.5 parent: 2 type: Transform - - uid: 25025 + - uid: 25102 components: - rot: -1.5707963267948966 rad pos: -26.5,-6.5 parent: 2 type: Transform - - uid: 25026 + - uid: 25103 components: - pos: -26.5,-61.5 parent: 2 type: Transform - - uid: 25027 + - uid: 25104 components: - pos: -22.5,-57.5 parent: 2 type: Transform - - uid: 25028 + - uid: 25105 components: - pos: -22.5,-58.5 parent: 2 type: Transform - - uid: 25029 + - uid: 25106 components: - pos: -26.5,-59.5 parent: 2 type: Transform - - uid: 25030 + - uid: 25107 components: - rot: -1.5707963267948966 rad pos: 7.5,-47.5 parent: 2 type: Transform - - uid: 25031 + - uid: 25108 components: - rot: 3.141592653589793 rad pos: 25.5,-68.5 parent: 2 type: Transform - - uid: 25032 + - uid: 25109 components: - rot: 3.141592653589793 rad pos: 50.5,-72.5 parent: 2 type: Transform - - uid: 25033 + - uid: 25110 components: - rot: -1.5707963267948966 rad pos: 4.5,-75.5 parent: 2 type: Transform - - uid: 25034 + - uid: 25111 components: - rot: -1.5707963267948966 rad pos: 3.5,-75.5 parent: 2 type: Transform - - uid: 25035 + - uid: 25112 components: - rot: -1.5707963267948966 rad pos: 2.5,-75.5 parent: 2 type: Transform - - uid: 25036 + - uid: 25113 components: - rot: 1.5707963267948966 rad pos: -47.5,38.5 parent: 2 type: Transform - - uid: 25037 + - uid: 25114 components: - rot: 1.5707963267948966 rad pos: -47.5,39.5 parent: 2 type: Transform - - uid: 25038 + - uid: 25115 components: - rot: 1.5707963267948966 rad pos: -47.5,40.5 parent: 2 type: Transform - - uid: 25039 + - uid: 25116 components: - pos: -2.5,10.5 parent: 2 type: Transform - - uid: 25040 + - uid: 25117 components: - pos: -72.5,-39.5 parent: 2 type: Transform - - uid: 25041 + - uid: 25118 components: - pos: -73.5,-39.5 parent: 2 type: Transform - - uid: 25042 + - uid: 25119 components: - rot: -1.5707963267948966 rad pos: -66.5,-43.5 parent: 2 type: Transform - - uid: 25043 + - uid: 25120 components: - rot: -1.5707963267948966 rad pos: -64.5,-34.5 parent: 2 type: Transform - - uid: 25044 + - uid: 25121 components: - rot: -1.5707963267948966 rad pos: -65.5,-34.5 parent: 2 type: Transform - - uid: 25045 + - uid: 25122 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-34.5 + parent: 2 + type: Transform + - uid: 25123 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-35.5 + parent: 2 + type: Transform + - uid: 25124 + components: + - pos: -0.5,-8.5 + parent: 2 + type: Transform + - uid: 25125 components: - - rot: -1.5707963267948966 rad - pos: 29.5,-34.5 + - pos: 5.5,-13.5 parent: 2 type: Transform - - uid: 25046 + - uid: 25126 components: - - rot: -1.5707963267948966 rad - pos: 29.5,-35.5 + - pos: 4.5,15.5 parent: 2 type: Transform - - uid: 25047 + - uid: 25127 components: - - pos: -0.5,-8.5 + - rot: -1.5707963267948966 rad + pos: 51.5,-39.5 parent: 2 type: Transform - - uid: 25048 + - uid: 25128 components: - - pos: 5.5,-13.5 + - rot: -1.5707963267948966 rad + pos: 56.5,-40.5 parent: 2 type: Transform - proto: TableCarpet entities: - - uid: 25049 + - uid: 25129 components: - pos: 23.5,-35.5 parent: 2 type: Transform - - uid: 25050 + - uid: 25130 components: - rot: -1.5707963267948966 rad pos: 10.5,-7.5 parent: 2 type: Transform - - uid: 25051 + - uid: 25131 components: - rot: -1.5707963267948966 rad pos: 10.5,-6.5 parent: 2 type: Transform - - uid: 25052 + - uid: 25132 components: - rot: -1.5707963267948966 rad pos: 9.5,-7.5 parent: 2 type: Transform - - uid: 25053 + - uid: 25133 components: - rot: -1.5707963267948966 rad pos: 9.5,-6.5 parent: 2 type: Transform - - uid: 25054 + - uid: 25134 components: - pos: -24.5,34.5 parent: 2 type: Transform - - uid: 25055 + - uid: 25135 components: - rot: 3.141592653589793 rad pos: -1.5,31.5 parent: 2 type: Transform - - uid: 25056 + - uid: 25136 components: - rot: 3.141592653589793 rad pos: -0.5,31.5 parent: 2 type: Transform - - uid: 25057 + - uid: 25137 components: - rot: 3.141592653589793 rad pos: -0.5,30.5 parent: 2 type: Transform - - uid: 25058 + - uid: 25138 components: - rot: 3.141592653589793 rad pos: -1.5,30.5 parent: 2 type: Transform - - uid: 25059 + - uid: 25139 components: - pos: 53.5,29.5 parent: 2 type: Transform - - uid: 25060 + - uid: 25140 components: - pos: 53.5,28.5 parent: 2 type: Transform - - uid: 25061 + - uid: 25141 components: - pos: 54.5,29.5 parent: 2 type: Transform - - uid: 25062 + - uid: 25142 components: - pos: 54.5,28.5 parent: 2 type: Transform - - uid: 25063 + - uid: 25143 components: - pos: 8.5,32.5 parent: 2 type: Transform - - uid: 25064 + - uid: 25144 components: - rot: 3.141592653589793 rad pos: -18.5,62.5 parent: 2 type: Transform - - uid: 25065 + - uid: 25145 components: - rot: 3.141592653589793 rad pos: -18.5,61.5 parent: 2 type: Transform - - uid: 25066 + - uid: 25146 components: - rot: 3.141592653589793 rad pos: -17.5,62.5 parent: 2 type: Transform - - uid: 25067 + - uid: 25147 components: - rot: 3.141592653589793 rad pos: -17.5,61.5 parent: 2 type: Transform - - uid: 25068 + - uid: 25148 components: - rot: 3.141592653589793 rad pos: -16.5,62.5 parent: 2 type: Transform - - uid: 25069 + - uid: 25149 components: - rot: 3.141592653589793 rad pos: -16.5,61.5 parent: 2 type: Transform - - uid: 25070 + - uid: 25150 components: - pos: 37.5,45.5 parent: 2 type: Transform - - uid: 25071 + - uid: 25151 components: - pos: 38.5,45.5 parent: 2 type: Transform - - uid: 25072 + - uid: 25152 components: - pos: 38.5,46.5 parent: 2 type: Transform - - uid: 25073 + - uid: 25153 components: - pos: 37.5,46.5 parent: 2 type: Transform - proto: TableCounterMetal entities: - - uid: 25074 + - uid: 25154 components: - pos: 32.5,30.5 parent: 2 type: Transform - - uid: 25075 + - uid: 25155 components: - pos: 32.5,29.5 parent: 2 type: Transform - - uid: 25076 + - uid: 25156 components: - pos: 0.5,-67.5 parent: 2 type: Transform - - uid: 25077 + - uid: 25157 components: - pos: -3.5,5.5 parent: 2 type: Transform - - uid: 25078 + - uid: 25158 components: - pos: 0.5,-64.5 parent: 2 type: Transform - - uid: 25079 + - uid: 25159 components: - pos: 0.5,-65.5 parent: 2 type: Transform - - uid: 25080 + - uid: 25160 components: - pos: 0.5,-66.5 parent: 2 type: Transform - - uid: 25081 + - uid: 25161 components: - pos: -3.5,-64.5 parent: 2 type: Transform - - uid: 25082 + - uid: 25162 components: - pos: -3.5,-65.5 parent: 2 type: Transform - - uid: 25083 + - uid: 25163 components: - pos: -3.5,-66.5 parent: 2 type: Transform - - uid: 25084 + - uid: 25164 components: - pos: -16.5,-77.5 parent: 2 type: Transform - - uid: 25085 + - uid: 25165 components: - pos: -4.5,5.5 parent: 2 type: Transform - - uid: 25086 + - uid: 25166 components: - pos: 4.5,11.5 parent: 2 type: Transform - - uid: 25087 + - uid: 25167 components: - pos: 5.5,11.5 parent: 2 type: Transform - - uid: 25088 + - uid: 25168 components: - pos: 0.5,-63.5 parent: 2 type: Transform - - uid: 25089 + - uid: 25169 components: - rot: 1.5707963267948966 rad pos: -21.5,-34.5 @@ -172439,69 +165321,69 @@ entities: type: Transform - proto: TableCounterWood entities: - - uid: 25090 + - uid: 25170 components: - pos: 3.5,-35.5 parent: 2 type: Transform - - uid: 25091 + - uid: 25171 components: - rot: -1.5707963267948966 rad pos: 37.5,-5.5 parent: 2 type: Transform - - uid: 25092 + - uid: 25172 components: - pos: 18.5,15.5 parent: 2 type: Transform - - uid: 25093 + - uid: 25173 components: - pos: 17.5,15.5 parent: 2 type: Transform - - uid: 25094 + - uid: 25174 components: - rot: -1.5707963267948966 rad pos: 37.5,-4.5 parent: 2 type: Transform - - uid: 25095 + - uid: 25175 components: - rot: -1.5707963267948966 rad pos: 37.5,-3.5 parent: 2 type: Transform - - uid: 25096 + - uid: 25176 components: - rot: -1.5707963267948966 rad pos: 37.5,-2.5 parent: 2 type: Transform - - uid: 25097 + - uid: 25177 components: - rot: -1.5707963267948966 rad pos: 38.5,-2.5 parent: 2 type: Transform - - uid: 25098 + - uid: 25178 components: - rot: -1.5707963267948966 rad pos: 39.5,-2.5 parent: 2 type: Transform - - uid: 25099 + - uid: 25179 components: - pos: 57.5,32.5 parent: 2 type: Transform - - uid: 25100 + - uid: 25180 components: - rot: 3.141592653589793 rad pos: -10.5,-95.5 parent: 2 type: Transform - - uid: 25101 + - uid: 25181 components: - rot: 3.141592653589793 rad pos: -9.5,-95.5 @@ -172509,64 +165391,64 @@ entities: type: Transform - proto: TableFrame entities: - - uid: 25102 + - uid: 25182 components: - pos: -25.5,-99.5 parent: 2 type: Transform - - uid: 25103 + - uid: 25183 components: - pos: -33.5,-98.5 parent: 2 type: Transform - - uid: 25104 + - uid: 25184 components: - pos: -34.5,-98.5 parent: 2 type: Transform - proto: TableGlass entities: - - uid: 25105 + - uid: 25185 components: - rot: -1.5707963267948966 rad pos: 30.5,4.5 parent: 2 type: Transform - - uid: 25106 + - uid: 25186 components: - rot: -1.5707963267948966 rad pos: 29.5,4.5 parent: 2 type: Transform - - uid: 25107 + - uid: 25187 components: - pos: -25.5,55.5 parent: 2 type: Transform - - uid: 25108 + - uid: 25188 components: - rot: 1.5707963267948966 rad pos: 63.5,-33.5 parent: 2 type: Transform - - uid: 25109 + - uid: 25189 components: - rot: 1.5707963267948966 rad pos: 62.5,-33.5 parent: 2 type: Transform - - uid: 25110 + - uid: 25190 components: - pos: 15.5,-79.5 parent: 2 type: Transform - - uid: 25111 + - uid: 25191 components: - rot: -1.5707963267948966 rad pos: 15.5,-87.5 parent: 2 type: Transform - - uid: 25112 + - uid: 25192 components: - rot: 3.141592653589793 rad pos: 26.5,-81.5 @@ -172574,725 +165456,720 @@ entities: type: Transform - proto: TableReinforced entities: - - uid: 25113 + - uid: 25193 + components: + - pos: 24.5,23.5 + parent: 2 + type: Transform + - uid: 25194 components: - rot: 3.141592653589793 rad pos: -14.5,-35.5 parent: 2 type: Transform - - uid: 25114 + - uid: 25195 components: - rot: 3.141592653589793 rad pos: 48.5,-30.5 parent: 2 type: Transform - - uid: 25115 + - uid: 25196 components: - pos: 2.5,4.5 parent: 2 type: Transform - - uid: 25116 + - uid: 25197 components: - pos: -8.5,4.5 parent: 2 type: Transform - - uid: 25117 + - uid: 25198 components: - rot: -1.5707963267948966 rad pos: 45.5,-26.5 parent: 2 type: Transform - - uid: 25118 + - uid: 25199 components: - pos: 26.5,32.5 parent: 2 type: Transform - - uid: 25119 + - uid: 25200 components: - pos: -6.5,4.5 parent: 2 type: Transform - - uid: 25120 + - uid: 25201 components: - pos: -28.5,-9.5 parent: 2 type: Transform - - uid: 25121 + - uid: 25202 components: - pos: 1.5,-48.5 parent: 2 type: Transform - - uid: 25122 + - uid: 25203 components: - rot: 1.5707963267948966 rad pos: 25.5,19.5 parent: 2 type: Transform - - uid: 25123 + - uid: 25204 components: - rot: 3.141592653589793 rad pos: 26.5,-21.5 parent: 2 type: Transform - - uid: 25124 + - uid: 25205 components: - pos: 37.5,49.5 parent: 2 type: Transform - - uid: 25125 + - uid: 25206 components: - rot: 3.141592653589793 rad pos: 48.5,-21.5 parent: 2 type: Transform - - uid: 25126 + - uid: 25207 components: - pos: 27.5,32.5 parent: 2 type: Transform - - uid: 25127 + - uid: 25208 components: - rot: -1.5707963267948966 rad pos: 32.5,-22.5 parent: 2 type: Transform - - uid: 25128 + - uid: 25209 components: - rot: 3.141592653589793 rad pos: 47.5,-30.5 parent: 2 type: Transform - - uid: 25129 + - uid: 25210 components: - rot: -1.5707963267948966 rad pos: 36.5,19.5 parent: 2 type: Transform - - uid: 25130 + - uid: 25211 components: - pos: -23.5,-87.5 parent: 2 type: Transform - - uid: 25131 + - uid: 25212 components: - pos: -7.5,4.5 parent: 2 type: Transform - - uid: 25132 + - uid: 25213 components: - rot: 1.5707963267948966 rad pos: 21.5,-44.5 parent: 2 type: Transform - - uid: 25133 + - uid: 25214 components: - pos: 0.5,4.5 parent: 2 type: Transform - - uid: 25134 + - uid: 25215 components: - rot: 1.5707963267948966 rad pos: 24.5,19.5 parent: 2 type: Transform - - uid: 25135 + - uid: 25216 components: - rot: -1.5707963267948966 rad pos: 32.5,-20.5 parent: 2 type: Transform - - uid: 25136 + - uid: 25217 components: - rot: -1.5707963267948966 rad pos: 31.5,-20.5 parent: 2 type: Transform - - uid: 25137 + - uid: 25218 components: - rot: -1.5707963267948966 rad pos: 32.5,-21.5 parent: 2 type: Transform - - uid: 25138 + - uid: 25219 components: - rot: -1.5707963267948966 rad pos: 32.5,-22.5 parent: 2 type: Transform - - uid: 25139 + - uid: 25220 components: - rot: -1.5707963267948966 rad pos: 19.5,-20.5 parent: 2 type: Transform - - uid: 25140 + - uid: 25221 components: - rot: -1.5707963267948966 rad pos: 18.5,-20.5 parent: 2 type: Transform - - uid: 25141 + - uid: 25222 components: - rot: -1.5707963267948966 rad pos: 18.5,-21.5 parent: 2 type: Transform - - uid: 25142 + - uid: 25223 components: - pos: 7.5,7.5 parent: 2 type: Transform - - uid: 25143 + - uid: 25224 components: - rot: 1.5707963267948966 rad pos: 22.5,-21.5 parent: 2 type: Transform - - uid: 25144 + - uid: 25225 components: - pos: 1.5,-46.5 parent: 2 type: Transform - - uid: 25145 + - uid: 25226 components: - pos: 28.5,32.5 parent: 2 type: Transform - - uid: 25146 + - uid: 25227 components: - pos: 30.5,32.5 parent: 2 type: Transform - - uid: 25147 + - uid: 25228 components: - pos: 31.5,32.5 parent: 2 type: Transform - - uid: 25148 + - uid: 25229 components: - pos: 18.5,-22.5 parent: 2 type: Transform - - uid: 25149 + - uid: 25230 components: - pos: 1.5,4.5 parent: 2 type: Transform - - uid: 25150 + - uid: 25231 components: - rot: 3.141592653589793 rad pos: 48.5,-28.5 parent: 2 type: Transform - - uid: 25151 + - uid: 25232 components: - rot: 1.5707963267948966 rad pos: 26.5,19.5 parent: 2 type: Transform - - uid: 25152 + - uid: 25233 components: - rot: -1.5707963267948966 rad pos: -26.5,-12.5 parent: 2 type: Transform - - uid: 25153 + - uid: 25234 components: - pos: 47.5,49.5 parent: 2 type: Transform - - uid: 25154 + - uid: 25235 components: - pos: 7.5,8.5 parent: 2 type: Transform - - uid: 25155 + - uid: 25236 components: - pos: 39.5,49.5 parent: 2 type: Transform - - uid: 25156 + - uid: 25237 components: - pos: 38.5,49.5 parent: 2 type: Transform - - uid: 25157 + - uid: 25238 components: - rot: 3.141592653589793 rad pos: 48.5,-22.5 parent: 2 type: Transform - - uid: 25158 + - uid: 25239 components: - rot: 3.141592653589793 rad pos: 48.5,-24.5 parent: 2 type: Transform - - uid: 25159 + - uid: 25240 components: - pos: 36.5,49.5 parent: 2 type: Transform - - uid: 25160 + - uid: 25241 components: - rot: 3.141592653589793 rad pos: 48.5,-29.5 parent: 2 type: Transform - - uid: 25161 + - uid: 25242 components: - rot: 3.141592653589793 rad pos: 47.5,-27.5 parent: 2 type: Transform - - uid: 25162 + - uid: 25243 components: - rot: 3.141592653589793 rad pos: 47.5,-21.5 parent: 2 type: Transform - - uid: 25163 + - uid: 25244 components: - pos: 32.5,32.5 parent: 2 type: Transform - - uid: 25164 + - uid: 25245 components: - rot: 3.141592653589793 rad pos: 3.5,-51.5 parent: 2 type: Transform - - uid: 25165 + - uid: 25246 components: - rot: 3.141592653589793 rad pos: 28.5,-21.5 parent: 2 type: Transform - - uid: 25166 + - uid: 25247 components: - pos: 7.5,9.5 parent: 2 type: Transform - - uid: 25167 + - uid: 25248 components: - rot: 3.141592653589793 rad pos: 48.5,-23.5 parent: 2 type: Transform - - uid: 25168 + - uid: 25249 components: - rot: 3.141592653589793 rad pos: 48.5,-27.5 parent: 2 type: Transform - - uid: 25169 + - uid: 25250 components: - pos: -34.5,23.5 parent: 2 type: Transform - - uid: 25170 + - uid: 25251 components: - rot: 3.141592653589793 rad pos: 24.5,-21.5 parent: 2 type: Transform - - uid: 25171 + - uid: 25252 components: - rot: -1.5707963267948966 rad pos: 44.5,-26.5 parent: 2 type: Transform - - uid: 25172 + - uid: 25253 components: - rot: -1.5707963267948966 rad pos: 47.5,-25.5 parent: 2 type: Transform - - uid: 25173 + - uid: 25254 components: - rot: -1.5707963267948966 rad pos: 48.5,-25.5 parent: 2 type: Transform - - uid: 25174 + - uid: 25255 components: - pos: -22.5,-87.5 parent: 2 type: Transform - - uid: 25175 - components: - - pos: 24.5,23.5 - parent: 2 - type: Transform - - uid: 25176 + - uid: 25256 components: - pos: 22.5,23.5 parent: 2 type: Transform - - uid: 25177 + - uid: 25257 components: - pos: 25.5,23.5 parent: 2 type: Transform - - uid: 25178 - components: - - pos: 23.5,23.5 - parent: 2 - type: Transform - - uid: 25179 + - uid: 25258 components: - pos: -11.5,43.5 parent: 2 type: Transform - - uid: 25180 + - uid: 25259 components: - rot: 1.5707963267948966 rad pos: -9.5,43.5 parent: 2 type: Transform - - uid: 25181 + - uid: 25260 components: - rot: 1.5707963267948966 rad pos: 48.5,6.5 parent: 2 type: Transform - - uid: 25182 + - uid: 25261 components: - rot: -1.5707963267948966 rad pos: 36.5,17.5 parent: 2 type: Transform - - uid: 25183 + - uid: 25262 components: - pos: -17.5,-22.5 parent: 2 type: Transform - - uid: 25184 + - uid: 25263 components: - pos: -17.5,-23.5 parent: 2 type: Transform - - uid: 25185 + - uid: 25264 components: - pos: 42.5,-40.5 parent: 2 type: Transform - - uid: 25186 + - uid: 25265 components: - pos: 43.5,-40.5 parent: 2 type: Transform - - uid: 25187 + - uid: 25266 components: - pos: -27.5,-9.5 parent: 2 type: Transform - - uid: 25188 + - uid: 25267 components: - pos: -22.5,-8.5 parent: 2 type: Transform - - uid: 25189 + - uid: 25268 components: - pos: -23.5,-8.5 parent: 2 type: Transform - - uid: 25190 + - uid: 25269 components: - pos: -27.5,-10.5 parent: 2 type: Transform - - uid: 25191 + - uid: 25270 components: - pos: -27.5,-11.5 parent: 2 type: Transform - - uid: 25192 + - uid: 25271 components: - pos: 57.5,-47.5 parent: 2 type: Transform - - uid: 25193 + - uid: 25272 components: - rot: 1.5707963267948966 rad pos: 22.5,-44.5 parent: 2 type: Transform - - uid: 25194 + - uid: 25273 components: - pos: -25.5,-35.5 parent: 2 type: Transform - - uid: 25195 + - uid: 25274 components: - pos: -25.5,-36.5 parent: 2 type: Transform - - uid: 25196 + - uid: 25275 components: - pos: -24.5,-36.5 parent: 2 type: Transform - - uid: 25197 + - uid: 25276 components: - pos: -23.5,-36.5 parent: 2 type: Transform - - uid: 25198 + - uid: 25277 components: - pos: -36.5,-33.5 parent: 2 type: Transform - - uid: 25199 + - uid: 25278 components: - pos: -36.5,-32.5 parent: 2 type: Transform - - uid: 25200 + - uid: 25279 components: - pos: -37.5,-32.5 parent: 2 type: Transform - - uid: 25201 + - uid: 25280 components: - pos: -38.5,-32.5 parent: 2 type: Transform - - uid: 25202 + - uid: 25281 components: - pos: -39.5,-32.5 parent: 2 type: Transform - - uid: 25203 + - uid: 25282 components: - pos: -58.5,-25.5 parent: 2 type: Transform - - uid: 25204 + - uid: 25283 components: - pos: -57.5,-25.5 parent: 2 type: Transform - - uid: 25205 + - uid: 25284 components: - pos: -56.5,-25.5 parent: 2 type: Transform - - uid: 25206 + - uid: 25285 components: - pos: -55.5,-25.5 parent: 2 type: Transform - - uid: 25207 + - uid: 25286 components: - pos: -54.5,-25.5 parent: 2 type: Transform - - uid: 25208 + - uid: 25287 components: - pos: -15.5,12.5 parent: 2 type: Transform - - uid: 25209 + - uid: 25288 components: - rot: -1.5707963267948966 rad pos: -52.5,-88.5 parent: 2 type: Transform - - uid: 25210 + - uid: 25289 components: - rot: -1.5707963267948966 rad pos: -52.5,-86.5 parent: 2 type: Transform - - uid: 25211 + - uid: 25290 components: - rot: -1.5707963267948966 rad pos: -17.5,25.5 parent: 2 type: Transform - - uid: 25212 + - uid: 25291 components: - rot: 3.141592653589793 rad pos: -26.5,22.5 parent: 2 type: Transform - - uid: 25213 + - uid: 25292 components: - pos: 17.5,32.5 parent: 2 type: Transform - - uid: 25214 + - uid: 25293 components: - pos: 17.5,31.5 parent: 2 type: Transform - - uid: 25215 + - uid: 25294 components: - pos: -34.5,24.5 parent: 2 type: Transform - - uid: 25216 + - uid: 25295 components: - pos: -14.5,12.5 parent: 2 type: Transform - - uid: 25217 + - uid: 25296 components: - pos: -13.5,12.5 parent: 2 type: Transform - - uid: 25218 + - uid: 25297 components: - pos: -16.5,12.5 parent: 2 type: Transform - - uid: 25219 + - uid: 25298 components: - pos: -10.5,-61.5 parent: 2 type: Transform - - uid: 25220 + - uid: 25299 components: - pos: 0.5,-61.5 parent: 2 type: Transform - - uid: 25221 + - uid: 25300 components: - pos: -0.5,-61.5 parent: 2 type: Transform - - uid: 25222 + - uid: 25301 components: - pos: -11.5,-61.5 parent: 2 type: Transform - - uid: 25223 + - uid: 25302 components: - pos: -16.5,-61.5 parent: 2 type: Transform - - uid: 25224 + - uid: 25303 components: - pos: -17.5,-61.5 parent: 2 type: Transform - - uid: 25225 + - uid: 25304 components: - rot: 3.141592653589793 rad pos: -15.5,-35.5 parent: 2 type: Transform - - uid: 25226 + - uid: 25305 components: - rot: 3.141592653589793 rad pos: -16.5,-35.5 parent: 2 type: Transform - - uid: 25227 + - uid: 25306 components: - rot: 1.5707963267948966 rad pos: -10.5,43.5 parent: 2 type: Transform - - uid: 25228 + - uid: 25307 components: - pos: -20.5,49.5 parent: 2 type: Transform - - uid: 25229 + - uid: 25308 components: - rot: 3.141592653589793 rad pos: -15.5,65.5 parent: 2 type: Transform - - uid: 25230 + - uid: 25309 components: - rot: 3.141592653589793 rad pos: -16.5,65.5 parent: 2 type: Transform - - uid: 25231 + - uid: 25310 components: - pos: -21.5,49.5 parent: 2 type: Transform - - uid: 25232 + - uid: 25311 components: - rot: 3.141592653589793 rad pos: -19.5,43.5 parent: 2 type: Transform - - uid: 25233 + - uid: 25312 components: - rot: 3.141592653589793 rad pos: -19.5,41.5 parent: 2 type: Transform - - uid: 25234 + - uid: 25313 components: - rot: 3.141592653589793 rad pos: -19.5,42.5 parent: 2 type: Transform - - uid: 25235 + - uid: 25314 components: - pos: 48.5,50.5 parent: 2 type: Transform - - uid: 25236 + - uid: 25315 components: - pos: 47.5,50.5 parent: 2 type: Transform - - uid: 25237 + - uid: 25316 components: - pos: 46.5,49.5 parent: 2 type: Transform - - uid: 25238 + - uid: 25317 components: - pos: 45.5,49.5 parent: 2 type: Transform - - uid: 25239 + - uid: 25318 components: - rot: 3.141592653589793 rad pos: -9.5,-100.5 parent: 2 type: Transform - - uid: 25240 + - uid: 25319 components: - rot: 1.5707963267948966 rad pos: 55.5,-67.5 parent: 2 type: Transform - - uid: 25241 + - uid: 25320 components: - pos: 29.5,32.5 parent: 2 type: Transform - - uid: 25242 + - uid: 25321 components: - pos: 65.5,-28.5 parent: 2 type: Transform - - uid: 25243 + - uid: 25322 components: - pos: 65.5,-29.5 parent: 2 type: Transform - - uid: 25244 + - uid: 25323 components: - pos: -7.5,14.5 parent: 2 type: Transform - - uid: 25245 + - uid: 25324 components: - pos: -8.5,14.5 parent: 2 type: Transform - - uid: 25246 + - uid: 25325 components: - rot: 3.141592653589793 rad pos: 4.5,-3.5 @@ -173300,1089 +166177,1089 @@ entities: type: Transform - proto: TableReinforcedGlass entities: - - uid: 25247 + - uid: 25326 components: - pos: -30.5,-77.5 parent: 2 type: Transform - - uid: 25248 + - uid: 25327 components: - pos: -30.5,-79.5 parent: 2 type: Transform - proto: TableWood entities: - - uid: 25249 + - uid: 25328 components: - pos: -1.5,-6.5 parent: 2 type: Transform - - uid: 25250 + - uid: 25329 components: - rot: -1.5707963267948966 rad pos: 3.5,-9.5 parent: 2 type: Transform - - uid: 25251 + - uid: 25330 components: - rot: -1.5707963267948966 rad pos: 3.5,-10.5 parent: 2 type: Transform - - uid: 25252 + - uid: 25331 components: - rot: -1.5707963267948966 rad pos: 2.5,-19.5 parent: 2 type: Transform - - uid: 25253 + - uid: 25332 components: - rot: -1.5707963267948966 rad pos: 2.5,-21.5 parent: 2 type: Transform - - uid: 25254 + - uid: 25333 components: - rot: -1.5707963267948966 rad pos: 2.5,-20.5 parent: 2 type: Transform - - uid: 25255 + - uid: 25334 components: - rot: 1.5707963267948966 rad pos: 27.5,-37.5 parent: 2 type: Transform - - uid: 25256 + - uid: 25335 components: - rot: 1.5707963267948966 rad pos: 27.5,-35.5 parent: 2 type: Transform - - uid: 25257 + - uid: 25336 components: - rot: 1.5707963267948966 rad pos: 21.5,-29.5 parent: 2 type: Transform - - uid: 25258 + - uid: 25337 components: - rot: 1.5707963267948966 rad pos: 4.5,-7.5 parent: 2 type: Transform - - uid: 25259 + - uid: 25338 components: - pos: -22.5,-54.5 parent: 2 type: Transform - - uid: 25260 + - uid: 25339 components: - pos: -27.5,46.5 parent: 2 type: Transform - - uid: 25261 + - uid: 25340 components: - rot: 3.141592653589793 rad pos: 5.5,20.5 parent: 2 type: Transform - - uid: 25262 + - uid: 25341 components: - pos: 22.5,10.5 parent: 2 type: Transform - - uid: 25263 + - uid: 25342 components: - pos: -19.5,-56.5 parent: 2 type: Transform - - uid: 25264 + - uid: 25343 components: - rot: -1.5707963267948966 rad pos: 9.5,-12.5 parent: 2 type: Transform - - uid: 25265 + - uid: 25344 components: - pos: 59.5,-1.5 parent: 2 type: Transform - - uid: 25266 + - uid: 25345 components: - rot: 1.5707963267948966 rad pos: 22.5,-29.5 parent: 2 type: Transform - - uid: 25267 + - uid: 25346 components: - pos: -4.5,-48.5 parent: 2 type: Transform - - uid: 25268 + - uid: 25347 components: - rot: -1.5707963267948966 rad pos: 2.5,21.5 parent: 2 type: Transform - - uid: 25269 + - uid: 25348 components: - rot: 1.5707963267948966 rad pos: 23.5,-29.5 parent: 2 type: Transform - - uid: 25270 + - uid: 25349 components: - pos: 15.5,13.5 parent: 2 type: Transform - - uid: 25271 + - uid: 25350 components: - rot: 1.5707963267948966 rad pos: 13.5,-34.5 parent: 2 type: Transform - - uid: 25272 + - uid: 25351 components: - pos: -28.5,46.5 parent: 2 type: Transform - - uid: 25273 + - uid: 25352 components: - pos: -20.5,-56.5 parent: 2 type: Transform - - uid: 25274 + - uid: 25353 components: - pos: -18.5,-56.5 parent: 2 type: Transform - - uid: 25275 + - uid: 25354 components: - rot: -1.5707963267948966 rad pos: 22.5,-28.5 parent: 2 type: Transform - - uid: 25276 + - uid: 25355 components: - pos: 15.5,10.5 parent: 2 type: Transform - - uid: 25277 + - uid: 25356 components: - pos: 15.5,9.5 parent: 2 type: Transform - - uid: 25278 + - uid: 25357 components: - pos: 15.5,12.5 parent: 2 type: Transform - - uid: 25279 + - uid: 25358 components: - pos: 20.5,-12.5 parent: 2 type: Transform - - uid: 25280 + - uid: 25359 components: - pos: 19.5,-12.5 parent: 2 type: Transform - - uid: 25281 + - uid: 25360 components: - rot: 3.141592653589793 rad pos: -3.5,52.5 parent: 2 type: Transform - - uid: 25282 + - uid: 25361 components: - rot: -1.5707963267948966 rad pos: 2.5,20.5 parent: 2 type: Transform - - uid: 25283 + - uid: 25362 components: - rot: -1.5707963267948966 rad pos: 1.5,21.5 parent: 2 type: Transform - - uid: 25284 + - uid: 25363 components: - pos: 6.5,20.5 parent: 2 type: Transform - - uid: 25285 + - uid: 25364 components: - pos: -2.5,-48.5 parent: 2 type: Transform - - uid: 25286 + - uid: 25365 components: - pos: -2.5,-49.5 parent: 2 type: Transform - - uid: 25287 + - uid: 25366 components: - pos: -5.5,-48.5 parent: 2 type: Transform - - uid: 25288 + - uid: 25367 components: - pos: -6.5,-48.5 parent: 2 type: Transform - - uid: 25289 + - uid: 25368 components: - pos: 7.5,20.5 parent: 2 type: Transform - - uid: 25290 + - uid: 25369 components: - rot: 1.5707963267948966 rad pos: 13.5,-32.5 parent: 2 type: Transform - - uid: 25291 + - uid: 25370 components: - pos: -6.5,-49.5 parent: 2 type: Transform - - uid: 25292 + - uid: 25371 components: - pos: 21.5,-12.5 parent: 2 type: Transform - - uid: 25293 + - uid: 25372 components: - pos: 22.5,-14.5 parent: 2 type: Transform - - uid: 25294 + - uid: 25373 components: - rot: -1.5707963267948966 rad pos: 8.5,-12.5 parent: 2 type: Transform - - uid: 25295 + - uid: 25374 components: - rot: 1.5707963267948966 rad pos: 2.5,0.5 parent: 2 type: Transform - - uid: 25296 + - uid: 25375 components: - rot: 1.5707963267948966 rad pos: 2.5,1.5 parent: 2 type: Transform - - uid: 25297 + - uid: 25376 components: - rot: 1.5707963267948966 rad pos: 12.5,-4.5 parent: 2 type: Transform - - uid: 25298 + - uid: 25377 components: - pos: -3.5,-48.5 parent: 2 type: Transform - - uid: 25299 + - uid: 25378 components: - pos: 15.5,11.5 parent: 2 type: Transform - - uid: 25300 + - uid: 25379 components: - pos: -1.5,17.5 parent: 2 type: Transform - - uid: 25301 + - uid: 25380 components: - pos: -28.5,44.5 parent: 2 type: Transform - - uid: 25302 + - uid: 25381 components: - rot: -1.5707963267948966 rad pos: 11.5,8.5 parent: 2 type: Transform - - uid: 25303 + - uid: 25382 components: - pos: -10.5,-5.5 parent: 2 type: Transform - - uid: 25304 + - uid: 25383 components: - pos: -28.5,45.5 parent: 2 type: Transform - - uid: 25305 + - uid: 25384 components: - pos: -10.5,-3.5 parent: 2 type: Transform - - uid: 25306 + - uid: 25385 components: - pos: -10.5,-4.5 parent: 2 type: Transform - - uid: 25307 + - uid: 25386 components: - pos: -10.5,-6.5 parent: 2 type: Transform - - uid: 25308 + - uid: 25387 components: - pos: 22.5,11.5 parent: 2 type: Transform - - uid: 25309 + - uid: 25388 components: - rot: -1.5707963267948966 rad pos: 11.5,7.5 parent: 2 type: Transform - - uid: 25310 + - uid: 25389 components: - rot: 3.141592653589793 rad pos: 12.5,11.5 parent: 2 type: Transform - - uid: 25311 + - uid: 25390 components: - rot: 3.141592653589793 rad pos: 11.5,11.5 parent: 2 type: Transform - - uid: 25312 + - uid: 25391 components: - rot: -1.5707963267948966 rad pos: -14.5,-37.5 parent: 2 type: Transform - - uid: 25313 + - uid: 25392 components: - rot: 3.141592653589793 rad pos: -9.5,-35.5 parent: 2 type: Transform - - uid: 25314 + - uid: 25393 components: - rot: 3.141592653589793 rad pos: -9.5,-36.5 parent: 2 type: Transform - - uid: 25315 + - uid: 25394 components: - rot: 3.141592653589793 rad pos: -9.5,-37.5 parent: 2 type: Transform - - uid: 25316 + - uid: 25395 components: - rot: 3.141592653589793 rad pos: -10.5,-37.5 parent: 2 type: Transform - - uid: 25317 + - uid: 25396 components: - rot: 3.141592653589793 rad pos: -11.5,-37.5 parent: 2 type: Transform - - uid: 25318 + - uid: 25397 components: - pos: -14.5,-39.5 parent: 2 type: Transform - - uid: 25319 + - uid: 25398 components: - pos: -12.5,-35.5 parent: 2 type: Transform - - uid: 25320 + - uid: 25399 components: - rot: 3.141592653589793 rad pos: 20.5,12.5 parent: 2 type: Transform - - uid: 25321 + - uid: 25400 components: - pos: 22.5,13.5 parent: 2 type: Transform - - uid: 25322 + - uid: 25401 components: - rot: 3.141592653589793 rad pos: -4.5,1.5 parent: 2 type: Transform - - uid: 25323 + - uid: 25402 components: - rot: 3.141592653589793 rad pos: -8.5,0.5 parent: 2 type: Transform - - uid: 25324 + - uid: 25403 components: - rot: 3.141592653589793 rad pos: -8.5,1.5 parent: 2 type: Transform - - uid: 25325 + - uid: 25404 components: - pos: -1.5,19.5 parent: 2 type: Transform - - uid: 25326 + - uid: 25405 components: - rot: -1.5707963267948966 rad pos: 2.5,19.5 parent: 2 type: Transform - - uid: 25327 + - uid: 25406 components: - pos: -17.5,41.5 parent: 2 type: Transform - - uid: 25328 + - uid: 25407 components: - pos: 40.5,21.5 parent: 2 type: Transform - - uid: 25329 + - uid: 25408 components: - pos: 38.5,21.5 parent: 2 type: Transform - - uid: 25330 + - uid: 25409 components: - pos: 38.5,18.5 parent: 2 type: Transform - - uid: 25331 + - uid: 25410 components: - pos: 40.5,18.5 parent: 2 type: Transform - - uid: 25332 + - uid: 25411 components: - rot: -1.5707963267948966 rad pos: 43.5,-4.5 parent: 2 type: Transform - - uid: 25333 + - uid: 25412 components: - rot: -1.5707963267948966 rad pos: 43.5,-3.5 parent: 2 type: Transform - - uid: 25334 + - uid: 25413 components: - rot: -1.5707963267948966 rad pos: 43.5,-2.5 parent: 2 type: Transform - - uid: 25335 + - uid: 25414 components: - rot: -1.5707963267948966 rad pos: 6.5,22.5 parent: 2 type: Transform - - uid: 25336 + - uid: 25415 components: - pos: 61.5,-53.5 parent: 2 type: Transform - - uid: 25337 + - uid: 25416 components: - pos: 62.5,-53.5 parent: 2 type: Transform - - uid: 25338 + - uid: 25417 components: - pos: 63.5,-53.5 parent: 2 type: Transform - - uid: 25339 + - uid: 25418 components: - pos: -16.5,-45.5 parent: 2 type: Transform - - uid: 25340 + - uid: 25419 components: - pos: -16.5,-47.5 parent: 2 type: Transform - - uid: 25341 + - uid: 25420 components: - pos: -16.5,-49.5 parent: 2 type: Transform - - uid: 25342 + - uid: 25421 components: - rot: 3.141592653589793 rad pos: 34.5,-50.5 parent: 2 type: Transform - - uid: 25343 + - uid: 25422 components: - rot: 3.141592653589793 rad pos: 33.5,-50.5 parent: 2 type: Transform - - uid: 25344 + - uid: 25423 components: - rot: 3.141592653589793 rad pos: 32.5,-50.5 parent: 2 type: Transform - - uid: 25345 + - uid: 25424 components: - rot: 3.141592653589793 rad pos: 30.5,-50.5 parent: 2 type: Transform - - uid: 25346 + - uid: 25425 components: - rot: 3.141592653589793 rad pos: 29.5,-50.5 parent: 2 type: Transform - - uid: 25347 + - uid: 25426 components: - rot: 3.141592653589793 rad pos: 28.5,-50.5 parent: 2 type: Transform - - uid: 25348 + - uid: 25427 components: - rot: 3.141592653589793 rad pos: 30.5,-48.5 parent: 2 type: Transform - - uid: 25349 + - uid: 25428 components: - rot: 3.141592653589793 rad pos: 31.5,-48.5 parent: 2 type: Transform - - uid: 25350 + - uid: 25429 components: - rot: 3.141592653589793 rad pos: 32.5,-48.5 parent: 2 type: Transform - - uid: 25351 + - uid: 25430 components: - pos: 60.5,-1.5 parent: 2 type: Transform - - uid: 25352 + - uid: 25431 components: - pos: 62.5,-1.5 parent: 2 type: Transform - - uid: 25353 + - uid: 25432 components: - pos: 61.5,-1.5 parent: 2 type: Transform - - uid: 25354 + - uid: 25433 components: - rot: 1.5707963267948966 rad pos: -35.5,-17.5 parent: 2 type: Transform - - uid: 25355 + - uid: 25434 components: - rot: 1.5707963267948966 rad pos: -35.5,-16.5 parent: 2 type: Transform - - uid: 25356 + - uid: 25435 components: - rot: 1.5707963267948966 rad pos: -35.5,-15.5 parent: 2 type: Transform - - uid: 25357 + - uid: 25436 components: - pos: 65.5,-51.5 parent: 2 type: Transform - - uid: 25358 + - uid: 25437 components: - pos: 59.5,-51.5 parent: 2 type: Transform - - uid: 25359 + - uid: 25438 components: - pos: 59.5,-52.5 parent: 2 type: Transform - - uid: 25360 + - uid: 25439 components: - pos: -39.5,-76.5 parent: 2 type: Transform - - uid: 25361 + - uid: 25440 components: - pos: -39.5,-77.5 parent: 2 type: Transform - - uid: 25362 + - uid: 25441 components: - pos: -40.5,-77.5 parent: 2 type: Transform - - uid: 25363 + - uid: 25442 components: - pos: -40.5,-78.5 parent: 2 type: Transform - - uid: 25364 + - uid: 25443 components: - pos: -41.5,-78.5 parent: 2 type: Transform - - uid: 25365 + - uid: 25444 components: - pos: -42.5,-78.5 parent: 2 type: Transform - - uid: 25366 + - uid: 25445 components: - pos: -43.5,-78.5 parent: 2 type: Transform - - uid: 25367 + - uid: 25446 components: - pos: -43.5,-77.5 parent: 2 type: Transform - - uid: 25368 + - uid: 25447 components: - pos: -44.5,-77.5 parent: 2 type: Transform - - uid: 25369 + - uid: 25448 components: - pos: -44.5,-76.5 parent: 2 type: Transform - - uid: 25370 + - uid: 25449 components: - rot: -1.5707963267948966 rad pos: -40.5,-74.5 parent: 2 type: Transform - - uid: 25371 + - uid: 25450 components: - rot: -1.5707963267948966 rad pos: -43.5,-74.5 parent: 2 type: Transform - - uid: 25372 + - uid: 25451 components: - pos: 23.5,-28.5 parent: 2 type: Transform - - uid: 25373 + - uid: 25452 components: - pos: 30.5,-28.5 parent: 2 type: Transform - - uid: 25374 + - uid: 25453 components: - pos: 30.5,-29.5 parent: 2 type: Transform - - uid: 25375 + - uid: 25454 components: - pos: 59.5,-3.5 parent: 2 type: Transform - - uid: 25376 + - uid: 25455 components: - rot: 3.141592653589793 rad pos: -27.5,14.5 parent: 2 type: Transform - - uid: 25377 + - uid: 25456 components: - rot: 3.141592653589793 rad pos: -26.5,14.5 parent: 2 type: Transform - - uid: 25378 + - uid: 25457 components: - rot: 3.141592653589793 rad pos: -36.5,16.5 parent: 2 type: Transform - - uid: 25379 + - uid: 25458 components: - rot: 3.141592653589793 rad pos: -37.5,16.5 parent: 2 type: Transform - - uid: 25380 + - uid: 25459 components: - rot: 3.141592653589793 rad pos: -38.5,16.5 parent: 2 type: Transform - - uid: 25381 + - uid: 25460 components: - rot: 3.141592653589793 rad pos: -39.5,16.5 parent: 2 type: Transform - - uid: 25382 + - uid: 25461 components: - rot: 3.141592653589793 rad pos: -31.5,15.5 parent: 2 type: Transform - - uid: 25383 + - uid: 25462 components: - rot: 3.141592653589793 rad pos: -30.5,15.5 parent: 2 type: Transform - - uid: 25384 + - uid: 25463 components: - rot: 3.141592653589793 rad pos: -29.5,15.5 parent: 2 type: Transform - - uid: 25385 + - uid: 25464 components: - rot: 1.5707963267948966 rad pos: -48.5,6.5 parent: 2 type: Transform - - uid: 25386 + - uid: 25465 components: - rot: 1.5707963267948966 rad pos: -48.5,5.5 parent: 2 type: Transform - - uid: 25387 + - uid: 25466 components: - rot: 1.5707963267948966 rad pos: -47.5,5.5 parent: 2 type: Transform - - uid: 25388 + - uid: 25467 components: - rot: 1.5707963267948966 rad pos: -47.5,6.5 parent: 2 type: Transform - - uid: 25389 + - uid: 25468 components: - pos: -52.5,13.5 parent: 2 type: Transform - - uid: 25390 + - uid: 25469 components: - pos: -42.5,8.5 parent: 2 type: Transform - - uid: 25391 + - uid: 25470 components: - pos: -51.5,8.5 parent: 2 type: Transform - - uid: 25392 + - uid: 25471 components: - pos: -17.5,42.5 parent: 2 type: Transform - - uid: 25393 + - uid: 25472 components: - pos: -14.5,47.5 parent: 2 type: Transform - - uid: 25394 + - uid: 25473 components: - pos: -16.5,42.5 parent: 2 type: Transform - - uid: 25395 + - uid: 25474 components: - pos: -16.5,41.5 parent: 2 type: Transform - - uid: 25396 + - uid: 25475 components: - rot: 3.141592653589793 rad pos: -5.5,-15.5 parent: 2 type: Transform - - uid: 25397 + - uid: 25476 components: - pos: -33.5,-67.5 parent: 2 type: Transform - - uid: 25398 + - uid: 25477 components: - rot: -1.5707963267948966 rad pos: 30.5,-27.5 parent: 2 type: Transform - - uid: 25399 + - uid: 25478 components: - pos: -31.5,-73.5 parent: 2 type: Transform - - uid: 25400 + - uid: 25479 components: - rot: 3.141592653589793 rad pos: 67.5,10.5 parent: 2 type: Transform - - uid: 25401 + - uid: 25480 components: - pos: -23.5,29.5 parent: 2 type: Transform - - uid: 25402 + - uid: 25481 components: - rot: 1.5707963267948966 rad pos: -24.5,29.5 parent: 2 type: Transform - - uid: 25403 + - uid: 25482 components: - pos: -18.5,33.5 parent: 2 type: Transform - - uid: 25404 + - uid: 25483 components: - pos: -21.5,35.5 parent: 2 type: Transform - - uid: 25405 + - uid: 25484 components: - pos: -12.5,35.5 parent: 2 type: Transform - - uid: 25406 + - uid: 25485 components: - pos: -12.5,32.5 parent: 2 type: Transform - - uid: 25407 + - uid: 25486 components: - pos: -12.5,31.5 parent: 2 type: Transform - - uid: 25408 + - uid: 25487 components: - pos: 65.5,-0.5 parent: 2 type: Transform - - uid: 25409 + - uid: 25488 components: - pos: 65.5,-1.5 parent: 2 type: Transform - - uid: 25410 + - uid: 25489 components: - rot: 1.5707963267948966 rad pos: 42.5,48.5 parent: 2 type: Transform - - uid: 25411 + - uid: 25490 components: - rot: 1.5707963267948966 rad pos: 43.5,48.5 parent: 2 type: Transform - - uid: 25412 + - uid: 25491 components: - rot: 1.5707963267948966 rad pos: 33.5,44.5 parent: 2 type: Transform - - uid: 25413 + - uid: 25492 components: - rot: 1.5707963267948966 rad pos: 32.5,47.5 parent: 2 type: Transform - - uid: 25414 + - uid: 25493 components: - rot: 1.5707963267948966 rad pos: 32.5,46.5 parent: 2 type: Transform - - uid: 25415 + - uid: 25494 components: - rot: 1.5707963267948966 rad pos: 40.5,43.5 parent: 2 type: Transform - - uid: 25416 + - uid: 25495 components: - rot: 3.141592653589793 rad pos: -21.5,37.5 parent: 2 type: Transform - - uid: 25417 + - uid: 25496 components: - rot: 3.141592653589793 rad pos: -22.5,37.5 parent: 2 type: Transform - - uid: 25418 + - uid: 25497 components: - pos: -19.5,37.5 parent: 2 type: Transform - - uid: 25419 + - uid: 25498 components: - pos: -22.5,-97.5 parent: 2 type: Transform - - uid: 25420 + - uid: 25499 components: - pos: -22.5,-98.5 parent: 2 type: Transform - - uid: 25421 + - uid: 25500 components: - rot: 3.141592653589793 rad pos: -7.5,-100.5 parent: 2 type: Transform - - uid: 25422 + - uid: 25501 components: - rot: 3.141592653589793 rad pos: -6.5,-100.5 parent: 2 type: Transform - - uid: 25423 + - uid: 25502 components: - pos: -22.5,-96.5 parent: 2 type: Transform - - uid: 25424 + - uid: 25503 components: - pos: -33.5,8.5 parent: 2 type: Transform - - uid: 25425 + - uid: 25504 components: - pos: -32.5,8.5 parent: 2 type: Transform - - uid: 25426 + - uid: 25505 components: - pos: 54.5,-35.5 parent: 2 type: Transform - - uid: 25427 + - uid: 25506 components: - pos: 58.5,-30.5 parent: 2 type: Transform - - uid: 25428 + - uid: 25507 components: - rot: 3.141592653589793 rad pos: 49.5,-66.5 parent: 2 type: Transform - - uid: 25429 + - uid: 25508 components: - rot: -1.5707963267948966 rad pos: 57.5,-30.5 parent: 2 type: Transform - - uid: 25430 + - uid: 25509 components: - pos: 12.5,-5.5 parent: 2 type: Transform - - uid: 25431 + - uid: 25510 components: - pos: 18.5,-14.5 parent: 2 type: Transform - - uid: 25432 + - uid: 25511 components: - rot: 1.5707963267948966 rad pos: -4.5,0.5 parent: 2 type: Transform - - uid: 25433 + - uid: 25512 components: - pos: -31.5,-74.5 parent: 2 type: Transform - - uid: 25434 + - uid: 25513 components: - pos: 12.5,-6.5 parent: 2 type: Transform - - uid: 25435 + - uid: 25514 components: - rot: 3.141592653589793 rad pos: 2.5,-7.5 parent: 2 type: Transform - - uid: 25436 + - uid: 25515 components: - rot: 1.5707963267948966 rad pos: 21.5,-28.5 parent: 2 type: Transform - - uid: 25437 + - uid: 25516 components: - pos: -0.5,-23.5 parent: 2 type: Transform - - uid: 25438 + - uid: 25517 components: - pos: 0.5,-23.5 parent: 2 type: Transform - - uid: 25439 + - uid: 25518 components: - rot: 1.5707963267948966 rad pos: 27.5,-36.5 parent: 2 type: Transform - - uid: 25440 + - uid: 25519 components: - rot: 1.5707963267948966 rad pos: 27.5,-34.5 parent: 2 type: Transform - - uid: 25441 + - uid: 25520 components: - rot: -1.5707963267948966 rad pos: 22.5,-38.5 parent: 2 type: Transform - - uid: 25442 + - uid: 25521 components: - rot: -1.5707963267948966 rad pos: 22.5,-39.5 parent: 2 type: Transform - - uid: 25443 + - uid: 25522 components: - pos: 28.5,-39.5 parent: 2 type: Transform - proto: TegCenter entities: - - uid: 25444 + - uid: 25523 components: - rot: -1.5707963267948966 rad pos: -69.5,-44.5 @@ -174390,7 +167267,7 @@ entities: type: Transform - proto: TegCirculator entities: - - uid: 25445 + - uid: 25524 components: - rot: 3.141592653589793 rad pos: -70.5,-44.5 @@ -174398,7 +167275,7 @@ entities: type: Transform - color: '#FF3300FF' type: PointLight - - uid: 25446 + - uid: 25525 components: - pos: -68.5,-44.5 parent: 2 @@ -174407,7 +167284,7 @@ entities: type: PointLight - proto: TelecomServer entities: - - uid: 14455 + - uid: 14492 components: - pos: 8.5,-20.5 parent: 2 @@ -174417,7 +167294,7 @@ entities: showEnts: False occludes: True ents: - - 14456 + - 14493 machine_board: !type:Container showEnts: False occludes: True @@ -174427,7 +167304,7 @@ entities: occludes: True ents: [] type: ContainerContainer - - uid: 14457 + - uid: 14494 components: - pos: 9.5,-20.5 parent: 2 @@ -174437,7 +167314,7 @@ entities: showEnts: False occludes: True ents: - - 14458 + - 14495 machine_board: !type:Container showEnts: False occludes: True @@ -174447,7 +167324,7 @@ entities: occludes: True ents: [] type: ContainerContainer - - uid: 14459 + - uid: 14496 components: - pos: 10.5,-20.5 parent: 2 @@ -174457,7 +167334,7 @@ entities: showEnts: False occludes: True ents: - - 14460 + - 14497 machine_board: !type:Container showEnts: False occludes: True @@ -174467,7 +167344,7 @@ entities: occludes: True ents: [] type: ContainerContainer - - uid: 14461 + - uid: 14498 components: - pos: 11.5,-20.5 parent: 2 @@ -174477,7 +167354,7 @@ entities: showEnts: False occludes: True ents: - - 14462 + - 14499 machine_board: !type:Container showEnts: False occludes: True @@ -174487,7 +167364,7 @@ entities: occludes: True ents: [] type: ContainerContainer - - uid: 14463 + - uid: 14500 components: - pos: 9.5,-22.5 parent: 2 @@ -174497,7 +167374,7 @@ entities: showEnts: False occludes: True ents: - - 14464 + - 14501 machine_board: !type:Container showEnts: False occludes: True @@ -174507,7 +167384,7 @@ entities: occludes: True ents: [] type: ContainerContainer - - uid: 14465 + - uid: 14502 components: - pos: 8.5,-22.5 parent: 2 @@ -174517,8 +167394,8 @@ entities: showEnts: False occludes: True ents: - - 14467 - - 14466 + - 14504 + - 14503 machine_board: !type:Container showEnts: False occludes: True @@ -174528,7 +167405,7 @@ entities: occludes: True ents: [] type: ContainerContainer - - uid: 14468 + - uid: 14505 components: - pos: 10.5,-22.5 parent: 2 @@ -174538,7 +167415,7 @@ entities: showEnts: False occludes: True ents: - - 14469 + - 14506 machine_board: !type:Container showEnts: False occludes: True @@ -174548,7 +167425,7 @@ entities: occludes: True ents: [] type: ContainerContainer - - uid: 14470 + - uid: 14507 components: - pos: 11.5,-22.5 parent: 2 @@ -174558,7 +167435,7 @@ entities: showEnts: False occludes: True ents: - - 14471 + - 14508 machine_board: !type:Container showEnts: False occludes: True @@ -174570,26 +167447,26 @@ entities: type: ContainerContainer - proto: ThermomachineFreezerMachineCircuitBoard entities: - - uid: 25447 + - uid: 25526 components: - pos: -36.51641,35.415855 parent: 2 type: Transform - proto: Thruster entities: - - uid: 25448 + - uid: 25527 components: - rot: 1.5707963267948966 rad pos: -58.5,-87.5 parent: 2 type: Transform - - uid: 25449 + - uid: 25528 components: - rot: 1.5707963267948966 rad pos: -56.5,-84.5 parent: 2 type: Transform - - uid: 25450 + - uid: 25529 components: - rot: 1.5707963267948966 rad pos: -56.5,-90.5 @@ -174597,39 +167474,39 @@ entities: type: Transform - proto: TimerTrigger entities: - - uid: 25451 + - uid: 25530 components: - pos: 65.507225,-28.362265 parent: 2 type: Transform - proto: TobaccoSeeds entities: - - uid: 25452 + - uid: 25531 components: - pos: -32.36416,6.3223424 parent: 2 type: Transform - proto: ToiletDirtyWater entities: - - uid: 25453 + - uid: 25532 components: - rot: 1.5707963267948966 rad pos: -32.5,-5.5 parent: 2 type: Transform - - uid: 25454 + - uid: 25533 components: - rot: 1.5707963267948966 rad pos: -32.5,-7.5 parent: 2 type: Transform - - uid: 25455 + - uid: 25534 components: - rot: -1.5707963267948966 rad pos: -28.5,-5.5 parent: 2 type: Transform - - uid: 25456 + - uid: 25535 components: - rot: -1.5707963267948966 rad pos: -28.5,-7.5 @@ -174637,12 +167514,12 @@ entities: type: Transform - proto: ToiletEmpty entities: - - uid: 25457 + - uid: 25536 components: - pos: 61.5,24.5 parent: 2 type: Transform - - uid: 25458 + - uid: 25537 components: - pos: 63.5,24.5 parent: 2 @@ -174651,360 +167528,365 @@ entities: type: Construction - proto: TomatoSeeds entities: - - uid: 25459 + - uid: 25538 components: - pos: -32.45791,6.4317174 parent: 2 type: Transform - proto: ToolboxElectrical entities: - - uid: 25460 + - uid: 25539 components: - pos: 46.470684,-5.411702 parent: 2 type: Transform - proto: ToolboxElectricalFilled entities: - - uid: 25461 + - uid: 25540 components: - pos: -36.493176,-7.9722276 parent: 2 type: Transform - - uid: 25462 + - uid: 25541 components: - pos: 32.521046,-20.990738 parent: 2 type: Transform - - uid: 25463 + - uid: 25542 components: - pos: -24.509478,-19.362955 parent: 2 type: Transform - - uid: 25464 + - uid: 25543 components: - pos: -12.493107,-98.55707 parent: 2 type: Transform - - uid: 25465 + - uid: 25544 components: - pos: 67.55947,-64.54127 parent: 2 type: Transform - proto: ToolboxEmergencyFilled entities: - - uid: 25466 + - uid: 25545 components: - pos: 32.521046,-22.058308 parent: 2 type: Transform - - uid: 25467 + - uid: 25546 components: - pos: 4.5177064,-69.50256 parent: 2 type: Transform - - uid: 25468 + - uid: 25547 components: - pos: -22.596659,-20.233759 parent: 2 type: Transform - - uid: 25469 + - uid: 25548 components: - pos: -28.343418,-52.353195 parent: 2 type: Transform - - uid: 25470 + - uid: 25549 components: - pos: -38.44295,-67.482124 parent: 2 type: Transform - - uid: 25471 + - uid: 25550 components: - pos: -35.451088,-50.209225 parent: 2 type: Transform - - uid: 25472 + - uid: 25551 components: - pos: 54.54983,-30.496807 parent: 2 type: Transform - - uid: 25473 + - uid: 25552 components: - pos: 65.53578,-10.518121 parent: 2 type: Transform - - uid: 25474 + - uid: 25553 components: - pos: -12.486199,-5.5686293 parent: 2 type: Transform - - uid: 25475 + - uid: 25554 components: - pos: -36.5088,-7.6284776 parent: 2 type: Transform - proto: ToolboxGoldFilled entities: - - uid: 25476 + - uid: 25555 components: - pos: 32.512478,-22.558695 parent: 2 type: Transform - proto: ToolboxMechanical entities: - - uid: 25477 + - uid: 25556 components: - pos: -22.637089,-8.36341 parent: 2 type: Transform - proto: ToolboxMechanicalFilled entities: - - uid: 25478 + - uid: 25557 components: - pos: -36.493176,-7.2222276 parent: 2 type: Transform - - uid: 25479 + - uid: 25558 components: - pos: -15.996035,12.5348 parent: 2 type: Transform - - uid: 25480 + - uid: 25559 components: - pos: 32.521046,-21.537613 parent: 2 type: Transform - - uid: 25481 + - uid: 25560 components: - pos: -22.52499,-67.50294 parent: 2 type: Transform - - uid: 25482 + - uid: 25561 components: - pos: 41.46839,-54.726734 parent: 2 type: Transform - - uid: 25483 + - uid: 25562 components: - pos: -36.497368,-32.593475 parent: 2 type: Transform - - uid: 25484 + - uid: 25563 components: - pos: -26.431704,-19.50094 parent: 2 type: Transform - proto: ToyAi entities: - - uid: 25485 + - uid: 25564 components: - pos: 48.41234,-27.902035 parent: 2 type: Transform - - uid: 25486 + - uid: 25565 components: - pos: -1.529743,69.62148 parent: 2 type: Transform - proto: ToyAmongPequeno entities: - - uid: 25487 + - uid: 25566 components: - pos: 64.471924,-66.472046 parent: 2 type: Transform - proto: ToyDurand entities: - - uid: 25488 + - uid: 25567 components: - pos: -18.14669,61.77462 parent: 2 type: Transform - proto: ToyFigurineClown entities: - - uid: 25489 + - uid: 25568 components: - pos: 2.672367,-19.349606 parent: 2 type: Transform - proto: ToyFigurineHamlet entities: - - uid: 25490 + - uid: 25569 components: - pos: 19.529411,-12.229433 parent: 2 type: Transform - proto: ToyFigurineMime entities: - - uid: 25491 + - uid: 25570 components: - pos: 2.266117,-19.537106 parent: 2 type: Transform - proto: ToyFigurinePassenger entities: - - uid: 25492 + - uid: 25571 components: - pos: -17.943565,62.415245 parent: 2 type: Transform - proto: ToyGygax entities: - - uid: 25493 + - uid: 25572 components: - pos: -17.318565,61.89962 parent: 2 type: Transform - proto: ToyHonk entities: - - uid: 25494 + - uid: 25573 components: - pos: 62.0246,-1.3985255 parent: 2 type: Transform - - uid: 25495 + - uid: 25574 components: - pos: -17.287315,62.508995 parent: 2 type: Transform - proto: ToyIan entities: - - uid: 25496 + - uid: 25575 components: - pos: 48.44359,-22.433285 parent: 2 type: Transform - proto: ToyNuke entities: - - uid: 25497 + - uid: 25576 components: - pos: 48.50609,-28.933285 parent: 2 type: Transform - proto: ToyRubberDuck entities: - - uid: 25498 + - uid: 25577 components: - pos: 48.59984,-28.457928 parent: 2 type: Transform - - uid: 25499 + - uid: 25578 components: - pos: 48.396713,-28.473553 parent: 2 type: Transform - - uid: 25500 + - uid: 25579 components: - pos: 48.50609,-28.286053 parent: 2 type: Transform - proto: ToySpawner entities: - - uid: 25501 + - uid: 25580 components: - pos: 53.5,-65.5 parent: 2 type: Transform - - uid: 25502 + - uid: 25581 components: - pos: 54.5,-35.5 parent: 2 type: Transform - proto: ToySword entities: - - uid: 12236 + - uid: 12266 components: - flags: InContainer type: MetaData - - parent: 12231 + - parent: 12261 type: Transform - proto: TrainingBomb entities: - - uid: 25503 + - uid: 25582 components: - - pos: 4.5,15.5 + - pos: 11.5,23.5 + parent: 2 + type: Transform + - uid: 25583 + components: + - pos: 10.5,23.5 parent: 2 type: Transform - proto: TrashBananaPeel entities: - - uid: 25504 + - uid: 25584 components: - pos: 46.551132,46.620934 parent: 2 type: Transform - - uid: 25505 + - uid: 25585 components: - pos: 48.49847,33.344906 parent: 2 type: Transform - - uid: 25506 + - uid: 25586 components: - pos: 50.451595,31.673027 parent: 2 type: Transform - - uid: 25507 + - uid: 25587 components: - pos: 5.4959826,24.50416 parent: 2 type: Transform - - uid: 25508 + - uid: 25588 components: - pos: 0.5065335,-21.863766 parent: 2 type: Transform - proto: trayScanner entities: - - uid: 25509 + - uid: 25589 components: - pos: -36.91505,-7.9878526 parent: 2 type: Transform - - uid: 25510 + - uid: 25590 components: - pos: -47.457436,-19.479069 parent: 2 type: Transform - - uid: 25511 + - uid: 25591 components: - pos: -42.463882,-20.49279 parent: 2 type: Transform - - uid: 25512 + - uid: 25592 components: - pos: 39.581177,-30.49341 parent: 2 type: Transform - - uid: 25513 + - uid: 25593 components: - pos: 73.06597,36.576 parent: 2 type: Transform - - uid: 25514 + - uid: 25594 components: - pos: 77.48675,-44.195305 parent: 2 type: Transform - - uid: 25515 + - uid: 25595 components: - pos: -26.403507,-59.437252 parent: 2 type: Transform - proto: TromboneInstrument entities: - - uid: 25516 + - uid: 25596 components: - pos: 68.56264,48.54323 parent: 2 type: Transform - proto: TrumpetInstrument entities: - - uid: 25517 + - uid: 25597 components: - pos: -10.547552,-5.035685 parent: 2 type: Transform - proto: TwoWayLever entities: - - uid: 25518 + - uid: 25598 components: - pos: 16.5,-53.5 parent: 2 @@ -175012,150 +167894,150 @@ entities: - nextSignalLeft: True type: TwoWayLever - linkedPorts: - 12598: + 12634: - Left: Forward - Right: Reverse - Middle: Off - 12596: + 12632: - Left: Forward - Right: Reverse - Middle: Off - 12597: + 12633: - Left: Forward - Right: Reverse - Middle: Off - 12594: + 12630: - Left: Forward - Right: Reverse - Middle: Off - 12591: + 12627: - Left: Forward - Right: Reverse - Middle: Off - 12588: + 12624: - Left: Forward - Right: Reverse - Middle: Off - 12590: + 12626: - Left: Forward - Right: Reverse - Middle: Off - 12592: + 12628: - Left: Forward - Right: Reverse - Middle: Off - 23049: + 23090: - Left: Forward - Right: Reverse - Middle: Off - 12589: + 12625: - Left: Forward - Right: Reverse - Middle: Off - 12595: + 12631: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 25519 + - uid: 25599 components: - pos: -28.5,24.5 parent: 2 type: Transform - linkedPorts: - 12606: + 12642: - Left: Forward - Right: Reverse - Middle: Off - 12607: + 12643: - Left: Forward - Right: Reverse - Middle: Off - 12605: + 12641: - Left: Forward - Right: Reverse - Middle: Off - 12604: + 12640: - Left: Forward - Right: Reverse - Middle: Off - 12603: + 12639: - Left: Forward - Right: Reverse - Middle: Off - 12602: + 12638: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - type: ItemCooldown - - uid: 25520 + - uid: 25600 components: - pos: -41.5,17.5 parent: 2 type: Transform - linkedPorts: - 12648: + 12684: - Left: Forward - Right: Reverse - Middle: Off - 12688: + 12724: - Left: Forward - Right: Reverse - Middle: Off - 12647: + 12683: - Left: Forward - Right: Reverse - Middle: Off - 12629: + 12665: - Left: Forward - Right: Reverse - Middle: Off - 12649: + 12685: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 25521 + - uid: 25601 components: - pos: -48.5,24.5 parent: 2 type: Transform - linkedPorts: - 12620: + 12656: - Left: Forward - Right: Reverse - Middle: Off - 12619: + 12655: - Left: Forward - Right: Reverse - Middle: Off - 12618: + 12654: - Left: Forward - Right: Reverse - Middle: Off - 12617: + 12653: - Left: Forward - Right: Reverse - Middle: Off - 12625: + 12661: - Left: Forward - Right: Reverse - Middle: Off - 12626: + 12662: - Left: Forward - Right: Reverse - Middle: Off - 12627: + 12663: - Left: Forward - Right: Reverse - Middle: Off - 12628: + 12664: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 25522 + - uid: 25602 components: - pos: -48.5,18.5 parent: 2 @@ -175163,40 +168045,40 @@ entities: - nextSignalLeft: True type: TwoWayLever - linkedPorts: - 12616: + 12652: - Left: Forward - Right: Reverse - Middle: Off - 12615: + 12651: - Left: Forward - Right: Reverse - Middle: Off - 12614: + 12650: - Left: Forward - Right: Reverse - Middle: Off - 12613: + 12649: - Left: Forward - Right: Reverse - Middle: Off - 12623: + 12659: - Left: Forward - Right: Reverse - Middle: Off - 12624: + 12660: - Left: Forward - Right: Reverse - Middle: Off - 12622: + 12658: - Left: Forward - Right: Reverse - Middle: Off - 12621: + 12657: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 25523 + - uid: 25603 components: - pos: -36.5,24.5 parent: 2 @@ -175204,99 +168086,99 @@ entities: - nextSignalLeft: True type: TwoWayLever - linkedPorts: - 12612: + 12648: - Left: Forward - Right: Reverse - Middle: Off - 12611: + 12647: - Left: Forward - Right: Reverse - Middle: Off - 12610: + 12646: - Left: Forward - Right: Reverse - Middle: Off - 12608: + 12644: - Left: Forward - Right: Reverse - Middle: Off - 12609: + 12645: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 25524 + - uid: 25604 components: - pos: -11.5,28.5 parent: 2 type: Transform - linkedPorts: - 12665: + 12701: - Left: Forward - Right: Reverse - Middle: Off - 12666: + 12702: - Left: Forward - Right: Reverse - Middle: Off - 12667: + 12703: - Left: Forward - Right: Reverse - Middle: Off - 12668: + 12704: - Left: Forward - Right: Reverse - Middle: Off - 12669: + 12705: - Left: Forward - Right: Reverse - Middle: Off - 12664: + 12700: - Left: Forward - Right: Reverse - Middle: Off - 12653: + 12689: - Left: Forward - Right: Reverse - Middle: Off - 12654: + 12690: - Left: Forward - Right: Reverse - Middle: Off - 12655: + 12691: - Left: Forward - Right: Reverse - Middle: Off - 12671: + 12707: - Left: Forward - Right: Reverse - Middle: Off - 12670: + 12706: - Left: Forward - Right: Reverse - Middle: Off - 12646: + 12682: - Left: Reverse - Right: Forward - Middle: Off - 12645: + 12681: - Left: Reverse - Right: Forward - Middle: Off - 12672: + 12708: - Left: Reverse - Right: Forward - Middle: Off - 12673: + 12709: - Left: Reverse - Right: Forward - Middle: Off - 12644: + 12680: - Left: Reverse - Right: Forward - Middle: Off type: DeviceLinkSource - - uid: 25525 + - uid: 25605 components: - pos: -48.5,29.5 parent: 2 @@ -175304,36 +168186,36 @@ entities: - nextSignalLeft: True type: TwoWayLever - linkedPorts: - 12641: + 12677: - Left: Forward - Right: Reverse - Middle: Off - 12631: + 12667: - Left: Forward - Right: Reverse - Middle: Off - 12630: + 12666: - Left: Forward - Right: Reverse - Middle: Off - 12632: + 12668: - Left: Forward - Right: Reverse - Middle: Off - 12633: + 12669: - Left: Forward - Right: Reverse - Middle: Off - 12634: + 12670: - Left: Forward - Right: Reverse - Middle: Off - 12643: + 12679: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 25526 + - uid: 25606 components: - pos: -48.5,35.5 parent: 2 @@ -175341,36 +168223,36 @@ entities: - nextSignalLeft: True type: TwoWayLever - linkedPorts: - 12640: + 12676: - Left: Forward - Right: Reverse - Middle: Off - 12635: + 12671: - Left: Forward - Right: Reverse - Middle: Off - 12636: + 12672: - Left: Forward - Right: Reverse - Middle: Off - 12637: + 12673: - Left: Forward - Right: Reverse - Middle: Off - 12638: + 12674: - Left: Forward - Right: Reverse - Middle: Off - 12639: + 12675: - Left: Forward - Right: Reverse - Middle: Off - 12642: + 12678: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 25527 + - uid: 25607 components: - pos: -46.5,14.5 parent: 2 @@ -175378,21 +168260,21 @@ entities: - nextSignalLeft: True type: TwoWayLever - linkedPorts: - 12651: + 12687: - Left: Forward - Right: Reverse - Middle: Off - 12650: + 12686: - Left: Forward - Right: Reverse - Middle: Off - 12652: + 12688: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - type: ItemCooldown - - uid: 25528 + - uid: 25608 components: - pos: 47.5,39.5 parent: 2 @@ -175400,177 +168282,177 @@ entities: - nextSignalLeft: True type: TwoWayLever - linkedPorts: - 12656: + 12692: - Left: Forward - Right: Reverse - Middle: Off - 12657: + 12693: - Left: Forward - Right: Reverse - Middle: Off - 12658: + 12694: - Left: Forward - Right: Reverse - Middle: Off - 12659: + 12695: - Left: Forward - Right: Reverse - Middle: Off - 12660: + 12696: - Left: Forward - Right: Reverse - Middle: Off - 12661: + 12697: - Left: Forward - Right: Reverse - Middle: Off - 12662: + 12698: - Left: Forward - Right: Reverse - Middle: Off - 12663: + 12699: - Left: Forward - Right: Reverse - Middle: Off - 12674: + 12710: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 25529 + - uid: 25609 components: - pos: -36.5,-98.5 parent: 2 type: Transform - linkedPorts: - 12676: + 12712: - Left: Forward - Right: Reverse - Middle: Off - 12675: + 12711: - Left: Forward - Right: Reverse - Middle: Off - 12677: + 12713: - Left: Forward - Right: Reverse - Middle: Off - 12678: + 12714: - Left: Forward - Right: Reverse - Middle: Off - 12679: + 12715: - Left: Forward - Right: Reverse - Middle: Off - 12680: + 12716: - Left: Forward - Right: Reverse - Middle: Off - 12681: + 12717: - Left: Forward - Right: Reverse - Middle: Off - 12685: + 12721: - Left: Forward - Right: Reverse - Middle: Off - 12684: + 12720: - Left: Forward - Right: Reverse - Middle: Off - 12682: + 12718: - Left: Forward - Right: Reverse - Middle: Off - 12683: + 12719: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 25530 + - uid: 25610 components: - pos: -36.5,-104.5 parent: 2 type: Transform - linkedPorts: - 12683: + 12719: - Left: Forward - Right: Reverse - Middle: Off - 12682: + 12718: - Left: Forward - Right: Reverse - Middle: Off - 12684: + 12720: - Left: Forward - Right: Reverse - Middle: Off - 12685: + 12721: - Left: Forward - Right: Reverse - Middle: Off - 12681: + 12717: - Left: Forward - Right: Reverse - Middle: Off - 12680: + 12716: - Left: Forward - Right: Reverse - Middle: Off - 12679: + 12715: - Left: Forward - Right: Reverse - Middle: Off - 12678: + 12714: - Left: Forward - Right: Reverse - Middle: Off - 12677: + 12713: - Left: Forward - Right: Reverse - Middle: Off - 12675: + 12711: - Left: Forward - Right: Reverse - Middle: Off - 12676: + 12712: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 25531 + - uid: 25611 components: - pos: -9.5,-12.5 parent: 2 type: Transform - linkedPorts: - 12599: + 12635: - Left: Reverse - Right: Reverse - Middle: Off - 12600: + 12636: - Left: Reverse - Right: Reverse - Middle: Off - 12593: + 12629: - Left: Reverse - Right: Reverse - Middle: Off - 12687: + 12723: - Left: Reverse - Right: Reverse - Middle: Off - 12686: + 12722: - Left: Reverse - Right: Reverse - Middle: Off - 12601: + 12637: - Left: Reverse - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 25532 + - uid: 25612 components: - pos: -15.5,10.5 parent: 2 @@ -175578,15 +168460,15 @@ entities: - nextSignalLeft: True type: TwoWayLever - linkedPorts: - 12689: + 12725: - Left: Reverse - Right: Forward - Middle: Off - 12690: + 12726: - Left: Reverse - Right: Forward - Middle: Off - 12691: + 12727: - Left: Reverse - Right: Forward - Middle: Off @@ -175594,44 +168476,44 @@ entities: - type: ItemCooldown - proto: UnfinishedMachineFrame entities: - - uid: 25533 + - uid: 25613 components: - pos: -26.5,-24.5 parent: 2 type: Transform - - uid: 25534 + - uid: 25614 components: - pos: -10.5,39.5 parent: 2 type: Transform - - uid: 25535 + - uid: 25615 components: - pos: 53.5,-30.5 parent: 2 type: Transform - proto: UniformPrinter entities: - - uid: 25536 + - uid: 25616 components: - pos: 2.5,-4.5 parent: 2 type: Transform - proto: UniformShortsRedWithTop entities: - - uid: 25537 + - uid: 25617 components: - pos: 30.57281,4.627015 parent: 2 type: Transform - proto: UprightPianoInstrument entities: - - uid: 25538 + - uid: 25618 components: - rot: -1.5707963267948966 rad pos: -47.5,-75.5 parent: 2 type: Transform - - uid: 25539 + - uid: 25619 components: - rot: -1.5707963267948966 rad pos: 8.5,5.5 @@ -175639,43 +168521,43 @@ entities: type: Transform - proto: Vaccinator entities: - - uid: 25540 + - uid: 25620 components: - pos: -22.5,-77.5 parent: 2 type: Transform - - uid: 25541 + - uid: 25621 components: - pos: -20.5,-76.5 parent: 2 type: Transform - proto: VehicleKeyJanicart entities: - - uid: 25542 + - uid: 25622 components: - pos: -13.519899,-23.451248 parent: 2 type: Transform - proto: VehicleKeySecway entities: - - uid: 25543 + - uid: 25623 components: - pos: 12.469265,19.745214 parent: 2 type: Transform - - uid: 25544 + - uid: 25624 components: - pos: 12.39114,19.557714 parent: 2 type: Transform - - uid: 25545 + - uid: 25625 components: - pos: 12.594265,19.82334 parent: 2 type: Transform - proto: VendingBarDrobe entities: - - uid: 25546 + - uid: 25626 components: - flags: SessionSpecific type: MetaData @@ -175684,7 +168566,7 @@ entities: type: Transform - proto: VendingMachineAtmosDrobe entities: - - uid: 25547 + - uid: 25627 components: - flags: SessionSpecific type: MetaData @@ -175693,28 +168575,28 @@ entities: type: Transform - proto: VendingMachineBooze entities: - - uid: 25548 + - uid: 25628 components: - flags: SessionSpecific type: MetaData - pos: -41.5,-74.5 parent: 2 type: Transform - - uid: 25549 + - uid: 25629 components: - flags: SessionSpecific type: MetaData - pos: 18.5,10.5 parent: 2 type: Transform - - uid: 25550 + - uid: 25630 components: - flags: SessionSpecific type: MetaData - pos: 36.5,51.5 parent: 2 type: Transform - - uid: 25551 + - uid: 25631 components: - flags: SessionSpecific type: MetaData @@ -175723,7 +168605,7 @@ entities: type: Transform - proto: VendingMachineCargoDrobe entities: - - uid: 25552 + - uid: 25632 components: - flags: SessionSpecific type: MetaData @@ -175732,7 +168614,7 @@ entities: type: Transform - proto: VendingMachineCart entities: - - uid: 25553 + - uid: 25633 components: - flags: SessionSpecific type: MetaData @@ -175741,21 +168623,21 @@ entities: type: Transform - proto: VendingMachineChang entities: - - uid: 25554 + - uid: 25634 components: - flags: SessionSpecific type: MetaData - pos: 53.5,3.5 parent: 2 type: Transform - - uid: 25555 + - uid: 25635 components: - flags: SessionSpecific type: MetaData - pos: -2.5,-31.5 parent: 2 type: Transform - - uid: 25556 + - uid: 25636 components: - flags: SessionSpecific type: MetaData @@ -175764,7 +168646,7 @@ entities: type: Transform - proto: VendingMachineChapel entities: - - uid: 25557 + - uid: 25637 components: - flags: SessionSpecific type: MetaData @@ -175773,7 +168655,7 @@ entities: type: Transform - proto: VendingMachineChefDrobe entities: - - uid: 25558 + - uid: 25638 components: - flags: SessionSpecific type: MetaData @@ -175782,7 +168664,7 @@ entities: type: Transform - proto: VendingMachineChefvend entities: - - uid: 25559 + - uid: 25639 components: - flags: SessionSpecific type: MetaData @@ -175791,7 +168673,7 @@ entities: type: Transform - proto: VendingMachineChemDrobe entities: - - uid: 25560 + - uid: 25640 components: - flags: SessionSpecific type: MetaData @@ -175800,7 +168682,7 @@ entities: type: Transform - proto: VendingMachineChemicals entities: - - uid: 25561 + - uid: 25641 components: - flags: SessionSpecific type: MetaData @@ -175809,42 +168691,42 @@ entities: type: Transform - proto: VendingMachineCigs entities: - - uid: 25562 + - uid: 25642 components: - flags: SessionSpecific type: MetaData - pos: 2.5,58.5 parent: 2 type: Transform - - uid: 25563 + - uid: 25643 components: - flags: SessionSpecific type: MetaData - pos: -6.5,-34.5 parent: 2 type: Transform - - uid: 25564 + - uid: 25644 components: - flags: SessionSpecific type: MetaData - pos: 7.5,-2.5 parent: 2 type: Transform - - uid: 25565 + - uid: 25645 components: - flags: SessionSpecific type: MetaData - pos: 61.5,-13.5 parent: 2 type: Transform - - uid: 25566 + - uid: 25646 components: - flags: SessionSpecific type: MetaData - pos: -13.5,8.5 parent: 2 type: Transform - - uid: 25567 + - uid: 25647 components: - flags: SessionSpecific type: MetaData @@ -175853,7 +168735,7 @@ entities: type: Transform - proto: VendingMachineClothing entities: - - uid: 25568 + - uid: 25648 components: - flags: SessionSpecific type: MetaData @@ -175862,77 +168744,77 @@ entities: type: Transform - proto: VendingMachineCoffee entities: - - uid: 25569 + - uid: 25649 components: - flags: SessionSpecific type: MetaData - pos: -10.5,-52.5 parent: 2 type: Transform - - uid: 25570 + - uid: 25650 components: - flags: SessionSpecific type: MetaData - pos: 37.5,-17.5 parent: 2 type: Transform - - uid: 25571 + - uid: 25651 components: - flags: SessionSpecific type: MetaData - pos: 45.5,17.5 parent: 2 type: Transform - - uid: 25572 + - uid: 25652 components: - flags: SessionSpecific type: MetaData - pos: 51.5,3.5 parent: 2 type: Transform - - uid: 25573 + - uid: 25653 components: - flags: SessionSpecific type: MetaData - pos: 60.5,-13.5 parent: 2 type: Transform - - uid: 25574 + - uid: 25654 components: - flags: SessionSpecific type: MetaData - pos: -33.5,-22.5 parent: 2 type: Transform - - uid: 25575 + - uid: 25655 components: - flags: SessionSpecific type: MetaData - pos: -43.5,4.5 parent: 2 type: Transform - - uid: 25576 + - uid: 25656 components: - flags: SessionSpecific type: MetaData - pos: -0.5,43.5 parent: 2 type: Transform - - uid: 25577 + - uid: 25657 components: - flags: SessionSpecific type: MetaData - pos: -14.5,49.5 parent: 2 type: Transform - - uid: 25578 + - uid: 25658 components: - flags: SessionSpecific type: MetaData - pos: 51.5,-37.5 parent: 2 type: Transform - - uid: 25579 + - uid: 25659 components: - flags: SessionSpecific type: MetaData @@ -175941,21 +168823,21 @@ entities: type: Transform - proto: VendingMachineCola entities: - - uid: 25580 + - uid: 25660 components: - flags: SessionSpecific type: MetaData - pos: 8.5,-2.5 parent: 2 type: Transform - - uid: 25581 + - uid: 25661 components: - flags: SessionSpecific type: MetaData - pos: 27.5,-11.5 parent: 2 type: Transform - - uid: 25582 + - uid: 25662 components: - flags: SessionSpecific type: MetaData @@ -175964,14 +168846,14 @@ entities: type: Transform - proto: VendingMachineCondiments entities: - - uid: 25583 + - uid: 25663 components: - flags: SessionSpecific type: MetaData - pos: 8.5,10.5 parent: 2 type: Transform - - uid: 25584 + - uid: 25664 components: - flags: SessionSpecific type: MetaData @@ -175980,7 +168862,7 @@ entities: type: Transform - proto: VendingMachineDetDrobe entities: - - uid: 25585 + - uid: 25665 components: - flags: SessionSpecific type: MetaData @@ -175989,14 +168871,14 @@ entities: type: Transform - proto: VendingMachineDinnerware entities: - - uid: 25586 + - uid: 25666 components: - flags: SessionSpecific type: MetaData - pos: -0.5,5.5 parent: 2 type: Transform - - uid: 25587 + - uid: 25667 components: - flags: SessionSpecific type: MetaData @@ -176005,28 +168887,28 @@ entities: type: Transform - proto: VendingMachineDiscount entities: - - uid: 25588 + - uid: 25668 components: - flags: SessionSpecific type: MetaData - pos: -6.5,-32.5 parent: 2 type: Transform - - uid: 25589 + - uid: 25669 components: - flags: SessionSpecific type: MetaData - pos: -33.5,-23.5 parent: 2 type: Transform - - uid: 25590 + - uid: 25670 components: - flags: SessionSpecific type: MetaData - pos: -43.5,3.5 parent: 2 type: Transform - - uid: 25591 + - uid: 25671 components: - flags: SessionSpecific type: MetaData @@ -176035,7 +168917,7 @@ entities: type: Transform - proto: VendingMachineEngiDrobe entities: - - uid: 25592 + - uid: 25672 components: - flags: SessionSpecific type: MetaData @@ -176044,7 +168926,7 @@ entities: type: Transform - proto: VendingMachineEngivend entities: - - uid: 25593 + - uid: 25673 components: - flags: SessionSpecific type: MetaData @@ -176053,7 +168935,7 @@ entities: type: Transform - proto: VendingMachineGames entities: - - uid: 25594 + - uid: 25674 components: - flags: SessionSpecific type: MetaData @@ -176062,7 +168944,7 @@ entities: type: Transform - proto: VendingMachineGeneDrobe entities: - - uid: 25595 + - uid: 25675 components: - flags: SessionSpecific type: MetaData @@ -176071,7 +168953,7 @@ entities: type: Transform - proto: VendingMachineHappyHonk entities: - - uid: 25596 + - uid: 25676 components: - flags: SessionSpecific type: MetaData @@ -176080,7 +168962,7 @@ entities: type: Transform - proto: VendingMachineHydrobe entities: - - uid: 25597 + - uid: 25677 components: - flags: SessionSpecific type: MetaData @@ -176089,7 +168971,7 @@ entities: type: Transform - proto: VendingMachineJaniDrobe entities: - - uid: 25598 + - uid: 25678 components: - flags: SessionSpecific type: MetaData @@ -176098,7 +168980,7 @@ entities: type: Transform - proto: VendingMachineLawDrobe entities: - - uid: 25599 + - uid: 25679 components: - flags: SessionSpecific type: MetaData @@ -176107,14 +168989,14 @@ entities: type: Transform - proto: VendingMachineMedical entities: - - uid: 25600 + - uid: 25680 components: - flags: SessionSpecific type: MetaData - pos: -28.5,-75.5 parent: 2 type: Transform - - uid: 25601 + - uid: 25681 components: - flags: SessionSpecific type: MetaData @@ -176123,7 +169005,7 @@ entities: type: Transform - proto: VendingMachineMediDrobe entities: - - uid: 25602 + - uid: 25682 components: - flags: SessionSpecific type: MetaData @@ -176132,7 +169014,7 @@ entities: type: Transform - proto: VendingMachineNutri entities: - - uid: 25603 + - uid: 25683 components: - flags: SessionSpecific type: MetaData @@ -176141,14 +169023,14 @@ entities: type: Transform - proto: VendingMachineRestockSmokes entities: - - uid: 25604 + - uid: 25684 components: - pos: -26.439571,39.52594 parent: 2 type: Transform - proto: VendingMachineRoboDrobe entities: - - uid: 25605 + - uid: 25685 components: - flags: SessionSpecific type: MetaData @@ -176157,7 +169039,7 @@ entities: type: Transform - proto: VendingMachineRobotics entities: - - uid: 25606 + - uid: 25686 components: - flags: SessionSpecific type: MetaData @@ -176166,7 +169048,7 @@ entities: type: Transform - proto: VendingMachineSalvage entities: - - uid: 25607 + - uid: 25687 components: - flags: SessionSpecific type: MetaData @@ -176175,7 +169057,7 @@ entities: type: Transform - proto: VendingMachineSciDrobe entities: - - uid: 25608 + - uid: 25688 components: - flags: SessionSpecific type: MetaData @@ -176184,7 +169066,7 @@ entities: type: Transform - proto: VendingMachineSec entities: - - uid: 25609 + - uid: 25689 components: - flags: SessionSpecific type: MetaData @@ -176193,7 +169075,7 @@ entities: type: Transform - proto: VendingMachineSecDrobe entities: - - uid: 25610 + - uid: 25690 components: - flags: SessionSpecific type: MetaData @@ -176202,14 +169084,14 @@ entities: type: Transform - proto: VendingMachineSeeds entities: - - uid: 25611 + - uid: 25691 components: - flags: SessionSpecific type: MetaData - pos: -8.5,12.5 parent: 2 type: Transform - - uid: 25612 + - uid: 25692 components: - flags: SessionSpecific type: MetaData @@ -176218,7 +169100,7 @@ entities: type: Transform - proto: VendingMachineSeedsUnlocked entities: - - uid: 25613 + - uid: 25693 components: - flags: SessionSpecific type: MetaData @@ -176227,7 +169109,7 @@ entities: type: Transform - proto: VendingMachineSmartFridge entities: - - uid: 25614 + - uid: 25694 components: - flags: SessionSpecific type: MetaData @@ -176236,14 +169118,14 @@ entities: type: Transform - proto: VendingMachineSnack entities: - - uid: 25615 + - uid: 25695 components: - flags: SessionSpecific type: MetaData - pos: 2.5,57.5 parent: 2 type: Transform - - uid: 25616 + - uid: 25696 components: - flags: SessionSpecific type: MetaData @@ -176252,42 +169134,42 @@ entities: type: Transform - proto: VendingMachineSovietSoda entities: - - uid: 25617 + - uid: 25697 components: - flags: SessionSpecific type: MetaData - pos: -1.5,-8.5 parent: 2 type: Transform - - uid: 25618 + - uid: 25698 components: - flags: SessionSpecific type: MetaData - pos: 61.5,-15.5 parent: 2 type: Transform - - uid: 25619 + - uid: 25699 components: - flags: SessionSpecific type: MetaData - pos: -37.5,-72.5 parent: 2 type: Transform - - uid: 25620 + - uid: 25700 components: - flags: SessionSpecific type: MetaData - pos: -40.5,27.5 parent: 2 type: Transform - - uid: 25621 + - uid: 25701 components: - flags: SessionSpecific type: MetaData - pos: 44.5,-15.5 parent: 2 type: Transform - - uid: 25622 + - uid: 25702 components: - flags: SessionSpecific type: MetaData @@ -176296,7 +169178,7 @@ entities: type: Transform - proto: VendingMachineTankDispenserEngineering entities: - - uid: 25623 + - uid: 25703 components: - flags: SessionSpecific type: MetaData @@ -176305,42 +169187,42 @@ entities: type: Transform - proto: VendingMachineTankDispenserEVA entities: - - uid: 25624 + - uid: 25704 components: - flags: SessionSpecific type: MetaData - pos: 28.5,-14.5 parent: 2 type: Transform - - uid: 25625 + - uid: 25705 components: - flags: SessionSpecific type: MetaData - pos: -22.5,-36.5 parent: 2 type: Transform - - uid: 25626 + - uid: 25706 components: - flags: SessionSpecific type: MetaData - pos: -35.5,-51.5 parent: 2 type: Transform - - uid: 25627 + - uid: 25707 components: - flags: SessionSpecific type: MetaData - pos: -48.5,36.5 parent: 2 type: Transform - - uid: 25628 + - uid: 25708 components: - flags: SessionSpecific type: MetaData - pos: 28.5,47.5 parent: 2 type: Transform - - uid: 25629 + - uid: 25709 components: - flags: SessionSpecific type: MetaData @@ -176349,28 +169231,28 @@ entities: type: Transform - proto: VendingMachineTheater entities: - - uid: 25630 + - uid: 25710 components: - flags: SessionSpecific type: MetaData - pos: -8.5,-4.5 parent: 2 type: Transform - - uid: 25631 + - uid: 25711 components: - flags: SessionSpecific type: MetaData - pos: -20.5,31.5 parent: 2 type: Transform - - uid: 25632 + - uid: 25712 components: - flags: SessionSpecific type: MetaData - pos: 11.5,-82.5 parent: 2 type: Transform - - uid: 25633 + - uid: 25713 components: - flags: SessionSpecific type: MetaData @@ -176379,28 +169261,28 @@ entities: type: Transform - proto: VendingMachineVendomat entities: - - uid: 25634 + - uid: 25714 components: - flags: SessionSpecific type: MetaData - pos: 27.5,-12.5 parent: 2 type: Transform - - uid: 25635 + - uid: 25715 components: - flags: SessionSpecific type: MetaData - pos: -27.5,-70.5 parent: 2 type: Transform - - uid: 25636 + - uid: 25716 components: - flags: SessionSpecific type: MetaData - pos: -43.5,6.5 parent: 2 type: Transform - - uid: 25637 + - uid: 25717 components: - flags: SessionSpecific type: MetaData @@ -176409,7 +169291,7 @@ entities: type: Transform - proto: VendingMachineViroDrobe entities: - - uid: 25638 + - uid: 25718 components: - flags: SessionSpecific type: MetaData @@ -176418,7 +169300,7 @@ entities: type: Transform - proto: VendingMachineWinter entities: - - uid: 25639 + - uid: 25719 components: - flags: SessionSpecific type: MetaData @@ -176427,28 +169309,28 @@ entities: type: Transform - proto: VendingMachineYouTool entities: - - uid: 25640 + - uid: 25720 components: - flags: SessionSpecific type: MetaData - pos: 39.5,-53.5 parent: 2 type: Transform - - uid: 25641 + - uid: 25721 components: - flags: SessionSpecific type: MetaData - pos: -37.5,-4.5 parent: 2 type: Transform - - uid: 25642 + - uid: 25722 components: - flags: SessionSpecific type: MetaData - pos: -23.5,-19.5 parent: 2 type: Transform - - uid: 25643 + - uid: 25723 components: - flags: SessionSpecific type: MetaData @@ -176457,14291 +169339,14252 @@ entities: type: Transform - proto: VoiceTrigger entities: - - uid: 25644 + - uid: 25724 components: - pos: 65.475975,-28.50289 parent: 2 type: Transform - proto: WallmountTelevision entities: - - uid: 25645 + - uid: 25725 components: - pos: 17.5,8.5 parent: 2 type: Transform - proto: WallPlastitanium entities: - - uid: 25646 + - uid: 25726 components: - pos: 62.5,-46.5 parent: 2 type: Transform - - uid: 25647 + - uid: 25727 components: - pos: -53.5,-84.5 parent: 2 type: Transform - - uid: 25648 + - uid: 25728 components: - pos: -55.5,-84.5 parent: 2 type: Transform - - uid: 25649 + - uid: 25729 components: - pos: -53.5,-85.5 parent: 2 type: Transform - - uid: 25650 + - uid: 25730 components: - pos: -51.5,-85.5 parent: 2 type: Transform - - uid: 25651 + - uid: 25731 components: - pos: -51.5,-86.5 parent: 2 type: Transform - - uid: 25652 + - uid: 25732 components: - rot: 1.5707963267948966 rad pos: -50.5,-88.5 parent: 2 type: Transform - - uid: 25653 + - uid: 25733 components: - rot: 1.5707963267948966 rad pos: -50.5,-86.5 parent: 2 type: Transform - - uid: 25654 + - uid: 25734 components: - pos: -51.5,-88.5 parent: 2 type: Transform - - uid: 25655 + - uid: 25735 components: - pos: -51.5,-89.5 parent: 2 type: Transform - - uid: 25656 + - uid: 25736 components: - pos: -56.5,-89.5 parent: 2 type: Transform - - uid: 25657 + - uid: 25737 components: - pos: -57.5,-89.5 parent: 2 type: Transform - - uid: 25658 + - uid: 25738 components: - pos: -55.5,-90.5 parent: 2 type: Transform - - uid: 25659 + - uid: 25739 components: - pos: -57.5,-87.5 parent: 2 type: Transform - - uid: 25660 + - uid: 25740 components: - pos: -53.5,-90.5 parent: 2 type: Transform - - uid: 25661 + - uid: 25741 components: - pos: -53.5,-89.5 parent: 2 type: Transform - - uid: 25662 + - uid: 25742 components: - pos: -57.5,-86.5 parent: 2 type: Transform - - uid: 25663 + - uid: 25743 components: - pos: -57.5,-88.5 parent: 2 type: Transform - - uid: 25664 + - uid: 25744 components: - pos: -57.5,-85.5 parent: 2 type: Transform - - uid: 25665 + - uid: 25745 components: - pos: -56.5,-85.5 parent: 2 type: Transform - proto: WallReinforced entities: - - uid: 25666 + - uid: 25746 + components: + - pos: 12.5,26.5 + parent: 2 + type: Transform + - uid: 25747 + components: + - pos: 11.5,27.5 + parent: 2 + type: Transform + - uid: 25748 + components: + - pos: 7.5,26.5 + parent: 2 + type: Transform + - uid: 25749 components: - rot: 3.141592653589793 rad pos: 24.5,-31.5 parent: 2 type: Transform - - uid: 25667 + - uid: 25750 components: - rot: 3.141592653589793 rad pos: 23.5,-31.5 parent: 2 type: Transform - - uid: 25668 + - uid: 25751 components: - rot: 3.141592653589793 rad pos: 23.5,-33.5 parent: 2 type: Transform - - uid: 25669 + - uid: 25752 components: - pos: 29.5,-33.5 parent: 2 type: Transform - - uid: 25670 + - uid: 25753 components: - pos: 6.5,-6.5 parent: 2 type: Transform - - uid: 25671 + - uid: 25754 components: - pos: -0.5,-7.5 parent: 2 type: Transform - - uid: 25672 + - uid: 25755 components: - rot: 1.5707963267948966 rad pos: 19.5,-31.5 parent: 2 type: Transform - - uid: 25673 + - uid: 25756 components: - pos: 0.5,-2.5 parent: 2 type: Transform - - uid: 25674 + - uid: 25757 components: - pos: 0.5,-3.5 parent: 2 type: Transform - - uid: 25675 + - uid: 25758 components: - pos: 0.5,-6.5 parent: 2 type: Transform - - uid: 25676 + - uid: 25759 components: - rot: 1.5707963267948966 rad pos: 0.5,-4.5 parent: 2 type: Transform - - uid: 25677 + - uid: 25760 components: - pos: -2.5,-6.5 parent: 2 type: Transform - - uid: 25678 + - uid: 25761 components: - rot: 1.5707963267948966 rad pos: 19.5,-30.5 parent: 2 type: Transform - - uid: 25679 + - uid: 25762 components: - pos: -0.5,-2.5 parent: 2 type: Transform - - uid: 25680 + - uid: 25763 components: - pos: 0.5,-7.5 parent: 2 type: Transform - - uid: 25681 + - uid: 25764 components: - rot: 1.5707963267948966 rad pos: 19.5,-29.5 parent: 2 type: Transform - - uid: 25682 + - uid: 25765 components: - pos: 4.5,-8.5 parent: 2 type: Transform - - uid: 25683 + - uid: 25766 components: - pos: -2.5,-4.5 parent: 2 type: Transform - - uid: 25684 + - uid: 25767 components: - pos: -1.5,-7.5 parent: 2 type: Transform - - uid: 25685 + - uid: 25768 components: - pos: -16.5,-56.5 parent: 2 type: Transform - - uid: 25686 + - uid: 25769 components: - pos: -23.5,-53.5 parent: 2 type: Transform - - uid: 25687 + - uid: 25770 components: - pos: 28.5,-40.5 parent: 2 type: Transform - - uid: 25688 + - uid: 25771 components: - pos: 2.5,-8.5 parent: 2 type: Transform - - uid: 25689 + - uid: 25772 components: - rot: 3.141592653589793 rad pos: 3.5,-8.5 parent: 2 type: Transform - - uid: 25690 + - uid: 25773 components: - pos: 5.5,-8.5 parent: 2 type: Transform - - uid: 25691 + - uid: 25774 components: - pos: 22.5,-40.5 parent: 2 type: Transform - - uid: 25692 + - uid: 25775 components: - pos: 0.5,-8.5 parent: 2 type: Transform - - uid: 25693 + - uid: 25776 components: - pos: -1.5,-2.5 parent: 2 type: Transform - - uid: 25694 + - uid: 25777 components: - pos: -38.5,-20.5 parent: 2 type: Transform - - uid: 25695 + - uid: 25778 components: - pos: 6.5,-4.5 parent: 2 type: Transform - - uid: 25696 + - uid: 25779 components: - pos: -2.5,-3.5 parent: 2 type: Transform - - uid: 25697 + - uid: 25780 components: - pos: 6.5,-5.5 parent: 2 type: Transform - - uid: 25698 + - uid: 25781 components: - pos: -2.5,-2.5 parent: 2 type: Transform - - uid: 25699 + - uid: 25782 components: - pos: -2.5,-7.5 parent: 2 type: Transform - - uid: 25700 + - uid: 25783 components: - pos: -38.5,-21.5 parent: 2 type: Transform - - uid: 25701 + - uid: 25784 components: - pos: -37.5,-21.5 parent: 2 type: Transform - - uid: 25702 + - uid: 25785 components: - pos: -36.5,-21.5 parent: 2 type: Transform - - uid: 25703 + - uid: 25786 components: - pos: -35.5,-21.5 parent: 2 type: Transform - - uid: 25704 + - uid: 25787 components: - pos: -34.5,-21.5 parent: 2 type: Transform - - uid: 25705 + - uid: 25788 components: - pos: -33.5,-21.5 parent: 2 type: Transform - - uid: 25706 + - uid: 25789 components: - pos: -33.5,-20.5 parent: 2 type: Transform - - uid: 25707 + - uid: 25790 components: - pos: -22.5,-53.5 parent: 2 type: Transform - - uid: 25708 + - uid: 25791 components: - pos: -23.5,-54.5 parent: 2 type: Transform - - uid: 25709 + - uid: 25792 components: - pos: -22.5,-56.5 parent: 2 type: Transform - - uid: 25710 + - uid: 25793 components: - pos: -23.5,-55.5 parent: 2 type: Transform - - uid: 25711 + - uid: 25794 components: - pos: -23.5,-56.5 parent: 2 type: Transform - - uid: 25712 + - uid: 25795 components: - rot: -1.5707963267948966 rad pos: -51.5,-33.5 parent: 2 type: Transform - - uid: 25713 + - uid: 25796 components: - rot: -1.5707963267948966 rad pos: -50.5,-33.5 parent: 2 type: Transform - - uid: 25714 + - uid: 25797 components: - rot: -1.5707963267948966 rad pos: -49.5,-33.5 parent: 2 type: Transform - - uid: 25715 + - uid: 25798 components: - rot: -1.5707963267948966 rad pos: -49.5,-24.5 parent: 2 type: Transform - - uid: 25716 + - uid: 25799 components: - rot: 1.5707963267948966 rad pos: -49.5,-25.5 parent: 2 type: Transform - - uid: 25717 + - uid: 25800 components: - rot: 1.5707963267948966 rad pos: -45.5,-24.5 parent: 2 type: Transform - - uid: 25718 + - uid: 25801 components: - rot: -1.5707963267948966 rad pos: -48.5,-24.5 parent: 2 type: Transform - - uid: 25719 + - uid: 25802 components: - rot: -1.5707963267948966 rad pos: -48.5,-33.5 parent: 2 type: Transform - - uid: 25720 + - uid: 25803 components: - rot: 1.5707963267948966 rad pos: -52.5,-35.5 parent: 2 type: Transform - - uid: 25721 + - uid: 25804 components: - pos: -42.5,-33.5 parent: 2 type: Transform - - uid: 25722 + - uid: 25805 components: - pos: -43.5,-33.5 parent: 2 type: Transform - - uid: 25723 + - uid: 25806 components: - pos: -45.5,-33.5 parent: 2 type: Transform - - uid: 25724 + - uid: 25807 components: - pos: -46.5,-24.5 parent: 2 type: Transform - - uid: 25725 + - uid: 25808 components: - rot: -1.5707963267948966 rad pos: -63.5,-33.5 parent: 2 type: Transform - - uid: 25726 + - uid: 25809 components: - rot: 3.141592653589793 rad pos: -41.5,-33.5 parent: 2 type: Transform - - uid: 25727 + - uid: 25810 components: - rot: 3.141592653589793 rad pos: -58.5,-43.5 parent: 2 type: Transform - - uid: 25728 + - uid: 25811 components: - rot: 1.5707963267948966 rad pos: -63.5,-38.5 parent: 2 type: Transform - - uid: 25729 + - uid: 25812 components: - rot: 1.5707963267948966 rad pos: -65.5,-35.5 parent: 2 type: Transform - - uid: 25730 + - uid: 25813 components: - rot: 1.5707963267948966 rad pos: -67.5,-35.5 parent: 2 type: Transform - - uid: 25731 + - uid: 25814 components: - rot: 1.5707963267948966 rad pos: -59.5,-38.5 parent: 2 type: Transform - - uid: 25732 + - uid: 25815 components: - pos: -44.5,-33.5 parent: 2 type: Transform - - uid: 25733 + - uid: 25816 components: - rot: 3.141592653589793 rad pos: -59.5,-44.5 parent: 2 type: Transform - - uid: 25734 + - uid: 25817 components: - pos: -61.5,-38.5 parent: 2 type: Transform - - uid: 25735 + - uid: 25818 components: - rot: 1.5707963267948966 rad pos: -59.5,-35.5 parent: 2 type: Transform - - uid: 25736 + - uid: 25819 components: - rot: 1.5707963267948966 rad pos: -66.5,-35.5 parent: 2 type: Transform - - uid: 25737 + - uid: 25820 components: - rot: 1.5707963267948966 rad pos: -64.5,-35.5 parent: 2 type: Transform - - uid: 25738 + - uid: 25821 components: - rot: 3.141592653589793 rad pos: -58.5,-44.5 parent: 2 type: Transform - - uid: 25739 + - uid: 25822 components: - pos: -64.5,-44.5 parent: 2 type: Transform - - uid: 25740 + - uid: 25823 components: - pos: -78.5,-44.5 parent: 2 type: Transform - - uid: 25741 + - uid: 25824 components: - pos: -76.5,-39.5 parent: 2 type: Transform - - uid: 25742 + - uid: 25825 components: - rot: 3.141592653589793 rad pos: -61.5,-26.5 parent: 2 type: Transform - - uid: 25743 + - uid: 25826 components: - pos: -71.5,-36.5 parent: 2 type: Transform - - uid: 25744 + - uid: 25827 components: - pos: -70.5,-36.5 parent: 2 type: Transform - - uid: 25745 + - uid: 25828 components: - pos: -69.5,-36.5 parent: 2 type: Transform - - uid: 25746 + - uid: 25829 components: - pos: -68.5,-36.5 parent: 2 type: Transform - - uid: 25747 + - uid: 25830 components: - pos: -74.5,-36.5 parent: 2 type: Transform - - uid: 25748 + - uid: 25831 components: - pos: -68.5,-35.5 parent: 2 type: Transform - - uid: 25749 + - uid: 25832 components: - pos: -68.5,-34.5 parent: 2 type: Transform - - uid: 25750 + - uid: 25833 components: - pos: -71.5,-34.5 parent: 2 type: Transform - - uid: 25751 + - uid: 25834 components: - rot: -1.5707963267948966 rad pos: -74.5,-43.5 parent: 2 type: Transform - - uid: 25752 + - uid: 25835 components: - rot: -1.5707963267948966 rad pos: -74.5,-39.5 parent: 2 type: Transform - - uid: 25753 + - uid: 25836 components: - rot: -1.5707963267948966 rad pos: -74.5,-38.5 parent: 2 type: Transform - - uid: 25754 + - uid: 25837 components: - rot: -1.5707963267948966 rad pos: -74.5,-37.5 parent: 2 type: Transform - - uid: 25755 + - uid: 25838 components: - pos: -76.5,-30.5 parent: 2 type: Transform - - uid: 25756 + - uid: 25839 components: - pos: -77.5,-30.5 parent: 2 type: Transform - - uid: 25757 + - uid: 25840 components: - pos: -64.5,-46.5 parent: 2 type: Transform - - uid: 25758 + - uid: 25841 components: - rot: 1.5707963267948966 rad pos: -64.5,-38.5 parent: 2 type: Transform - - uid: 25759 + - uid: 25842 components: - rot: -1.5707963267948966 rad pos: -78.5,-43.5 parent: 2 type: Transform - - uid: 25760 + - uid: 25843 components: - rot: -1.5707963267948966 rad pos: -78.5,-39.5 parent: 2 type: Transform - - uid: 25761 + - uid: 25844 components: - pos: -2.5,16.5 parent: 2 type: Transform - - uid: 25762 + - uid: 25845 components: - pos: 52.5,-88.5 parent: 2 type: Transform - - uid: 25763 + - uid: 25846 components: - pos: 51.5,-88.5 parent: 2 type: Transform - - uid: 25764 + - uid: 25847 components: - pos: 50.5,-88.5 parent: 2 type: Transform - - uid: 25765 + - uid: 25848 components: - pos: 50.5,-90.5 parent: 2 type: Transform - - uid: 25766 + - uid: 25849 components: - pos: 51.5,-90.5 parent: 2 type: Transform - - uid: 25767 + - uid: 25850 components: - pos: 52.5,-90.5 parent: 2 type: Transform - - uid: 25768 + - uid: 25851 components: - pos: 50.5,-83.5 parent: 2 type: Transform - - uid: 25769 + - uid: 25852 components: - pos: 52.5,-81.5 parent: 2 type: Transform - - uid: 25770 + - uid: 25853 components: - pos: 50.5,-81.5 parent: 2 type: Transform - - uid: 25771 + - uid: 25854 components: - pos: 51.5,-83.5 parent: 2 type: Transform - - uid: 25772 + - uid: 25855 components: - pos: 51.5,-81.5 parent: 2 type: Transform - - uid: 25773 + - uid: 25856 components: - pos: 52.5,-83.5 parent: 2 type: Transform - - uid: 25774 + - uid: 25857 components: - pos: 70.5,-26.5 parent: 2 type: Transform - - uid: 25775 + - uid: 25858 components: - pos: 64.5,-29.5 parent: 2 type: Transform - - uid: 25776 + - uid: 25859 components: - pos: 64.5,-28.5 parent: 2 type: Transform - - uid: 25777 + - uid: 25860 components: - pos: 66.5,-26.5 parent: 2 type: Transform - - uid: 25778 + - uid: 25861 components: - pos: 67.5,-26.5 parent: 2 type: Transform - - uid: 25779 + - uid: 25862 components: - rot: -1.5707963267948966 rad pos: -48.5,41.5 parent: 2 type: Transform - - uid: 25780 + - uid: 25863 components: - rot: -1.5707963267948966 rad pos: -49.5,41.5 parent: 2 type: Transform - - uid: 25781 + - uid: 25864 components: - rot: -1.5707963267948966 rad pos: -50.5,41.5 parent: 2 type: Transform - - uid: 25782 + - uid: 25865 components: - rot: -1.5707963267948966 rad pos: -50.5,45.5 parent: 2 type: Transform - - uid: 25783 + - uid: 25866 components: - rot: -1.5707963267948966 rad pos: -50.5,46.5 parent: 2 type: Transform - - uid: 25784 + - uid: 25867 components: - rot: -1.5707963267948966 rad pos: -53.5,41.5 parent: 2 type: Transform - - uid: 25785 + - uid: 25868 components: - rot: -1.5707963267948966 rad pos: -52.5,41.5 parent: 2 type: Transform - - uid: 25786 + - uid: 25869 components: - rot: -1.5707963267948966 rad pos: -51.5,41.5 parent: 2 type: Transform - - uid: 25787 + - uid: 25870 components: - rot: -1.5707963267948966 rad pos: -51.5,44.5 parent: 2 type: Transform - - uid: 25788 + - uid: 25871 components: - rot: -1.5707963267948966 rad pos: -52.5,44.5 parent: 2 type: Transform - - uid: 25789 + - uid: 25872 components: - rot: -1.5707963267948966 rad pos: -53.5,44.5 parent: 2 type: Transform - - uid: 25790 + - uid: 25873 components: - rot: -1.5707963267948966 rad pos: -48.5,45.5 parent: 2 type: Transform - - uid: 25791 + - uid: 25874 components: - rot: -1.5707963267948966 rad pos: -43.5,40.5 parent: 2 type: Transform - - uid: 25792 + - uid: 25875 components: - rot: -1.5707963267948966 rad pos: -44.5,40.5 parent: 2 type: Transform - - uid: 25793 + - uid: 25876 components: - rot: 1.5707963267948966 rad pos: 29.5,-64.5 parent: 2 type: Transform - - uid: 25794 + - uid: 25877 components: - rot: 3.141592653589793 rad pos: 34.5,-10.5 parent: 2 type: Transform - - uid: 25795 + - uid: 25878 components: - rot: 3.141592653589793 rad pos: 23.5,-57.5 parent: 2 type: Transform - - uid: 25796 + - uid: 25879 components: - pos: 11.5,-30.5 parent: 2 type: Transform - - uid: 25797 + - uid: 25880 components: - rot: -1.5707963267948966 rad pos: 37.5,3.5 parent: 2 type: Transform - - uid: 25798 + - uid: 25881 components: - pos: 72.5,-42.5 parent: 2 type: Transform - - uid: 25799 + - uid: 25882 components: - pos: 71.5,-42.5 parent: 2 type: Transform - - uid: 25800 + - uid: 25883 components: - rot: -1.5707963267948966 rad pos: 36.5,9.5 parent: 2 type: Transform - - uid: 25801 + - uid: 25884 components: - rot: -1.5707963267948966 rad pos: 0.5,-79.5 parent: 2 type: Transform - - uid: 25802 + - uid: 25885 components: - rot: 3.141592653589793 rad pos: 26.5,-61.5 parent: 2 type: Transform - - uid: 25803 + - uid: 25886 components: - rot: 3.141592653589793 rad pos: 30.5,-9.5 parent: 2 type: Transform - - uid: 25804 + - uid: 25887 components: - rot: 3.141592653589793 rad pos: 33.5,-61.5 parent: 2 type: Transform - - uid: 25805 + - uid: 25888 components: - rot: -1.5707963267948966 rad pos: 65.5,-38.5 parent: 2 type: Transform - - uid: 25806 + - uid: 25889 components: - rot: -1.5707963267948966 rad pos: 37.5,6.5 parent: 2 type: Transform - - uid: 25807 + - uid: 25890 components: - pos: 66.5,-42.5 parent: 2 type: Transform - - uid: 25808 + - uid: 25891 components: - rot: 3.141592653589793 rad pos: 24.5,-61.5 parent: 2 type: Transform - - uid: 25809 + - uid: 25892 components: - pos: 67.5,-42.5 parent: 2 type: Transform - - uid: 25810 + - uid: 25893 components: - rot: -1.5707963267948966 rad pos: 33.5,12.5 parent: 2 type: Transform - - uid: 25811 + - uid: 25894 components: - rot: -1.5707963267948966 rad pos: -25.5,-83.5 parent: 2 type: Transform - - uid: 25812 + - uid: 25895 components: - pos: 30.5,-26.5 parent: 2 type: Transform - - uid: 25813 + - uid: 25896 components: - pos: 19.5,-26.5 parent: 2 type: Transform - - uid: 25814 + - uid: 25897 components: - pos: 18.5,-67.5 parent: 2 type: Transform - - uid: 25815 + - uid: 25898 components: - rot: -1.5707963267948966 rad pos: 34.5,-83.5 parent: 2 type: Transform - - uid: 25816 + - uid: 25899 components: - rot: 3.141592653589793 rad pos: 26.5,24.5 parent: 2 type: Transform - - uid: 25817 + - uid: 25900 components: - pos: -16.5,-80.5 parent: 2 type: Transform - - uid: 25818 + - uid: 25901 components: - pos: -13.5,-80.5 parent: 2 type: Transform - - uid: 25819 + - uid: 25902 components: - rot: 3.141592653589793 rad pos: 31.5,-19.5 parent: 2 type: Transform - - uid: 25820 + - uid: 25903 components: - pos: 38.5,17.5 parent: 2 type: Transform - - uid: 25821 + - uid: 25904 components: - pos: 30.5,9.5 parent: 2 type: Transform - - uid: 25822 + - uid: 25905 components: - pos: -14.5,-80.5 parent: 2 type: Transform - - uid: 25823 + - uid: 25906 components: - pos: -16.5,-74.5 parent: 2 type: Transform - - uid: 25824 + - uid: 25907 components: - pos: -13.5,-75.5 parent: 2 type: Transform - - uid: 25825 + - uid: 25908 components: - rot: -1.5707963267948966 rad pos: -31.5,-80.5 parent: 2 type: Transform - - uid: 25826 + - uid: 25909 components: - pos: -27.5,-84.5 parent: 2 type: Transform - - uid: 25827 + - uid: 25910 components: - pos: -27.5,-85.5 parent: 2 type: Transform - - uid: 25828 + - uid: 25911 components: - rot: -1.5707963267948966 rad pos: -18.5,-83.5 parent: 2 type: Transform - - uid: 25829 + - uid: 25912 components: - pos: -27.5,-90.5 parent: 2 type: Transform - - uid: 25830 + - uid: 25913 components: - rot: -1.5707963267948966 rad pos: 43.5,49.5 parent: 2 type: Transform - - uid: 25831 + - uid: 25914 components: - rot: 3.141592653589793 rad pos: 24.5,24.5 parent: 2 type: Transform - - uid: 25832 + - uid: 25915 components: - rot: 1.5707963267948966 rad pos: 27.5,19.5 parent: 2 type: Transform - - uid: 25833 + - uid: 25916 components: - rot: 1.5707963267948966 rad pos: 33.5,32.5 parent: 2 type: Transform - - uid: 25834 + - uid: 25917 components: - rot: 1.5707963267948966 rad pos: 16.5,15.5 parent: 2 type: Transform - - uid: 25835 + - uid: 25918 components: - rot: 3.141592653589793 rad pos: 39.5,12.5 parent: 2 type: Transform - - uid: 25836 + - uid: 25919 components: - pos: 42.5,51.5 parent: 2 type: Transform - - uid: 25837 + - uid: 25920 components: - pos: -15.5,-2.5 parent: 2 type: Transform - - uid: 25838 + - uid: 25921 components: - pos: -18.5,-86.5 parent: 2 type: Transform - - uid: 25839 + - uid: 25922 components: - pos: -22.5,-48.5 parent: 2 type: Transform - - uid: 25840 + - uid: 25923 components: - pos: 3.5,15.5 parent: 2 type: Transform - - uid: 25841 + - uid: 25924 components: - pos: 7.5,-71.5 parent: 2 type: Transform - - uid: 25842 + - uid: 25925 components: - pos: -1.5,-30.5 parent: 2 type: Transform - - uid: 25843 + - uid: 25926 components: - pos: -23.5,5.5 parent: 2 type: Transform - - uid: 25844 + - uid: 25927 components: - pos: 44.5,-25.5 parent: 2 type: Transform - - uid: 25845 + - uid: 25928 components: - pos: 49.5,-25.5 parent: 2 type: Transform - - uid: 25846 + - uid: 25929 components: - pos: 49.5,-23.5 parent: 2 type: Transform - - uid: 25847 + - uid: 25930 components: - pos: 39.5,-24.5 parent: 2 type: Transform - - uid: 25848 + - uid: 25931 components: - pos: 27.5,26.5 parent: 2 type: Transform - - uid: 25849 + - uid: 25932 components: - pos: 31.5,26.5 parent: 2 type: Transform - - uid: 25850 + - uid: 25933 components: - pos: 31.5,25.5 parent: 2 type: Transform - - uid: 25851 + - uid: 25934 components: - rot: 3.141592653589793 rad pos: 30.5,33.5 parent: 2 type: Transform - - uid: 25852 + - uid: 25935 components: - rot: -1.5707963267948966 rad pos: 4.5,-18.5 parent: 2 type: Transform - - uid: 25853 + - uid: 25936 components: - pos: 19.5,15.5 parent: 2 type: Transform - - uid: 25854 + - uid: 25937 components: - rot: -1.5707963267948966 rad pos: 20.5,-31.5 parent: 2 type: Transform - - uid: 25855 + - uid: 25938 components: - pos: 3.5,18.5 parent: 2 type: Transform - - uid: 25856 + - uid: 25939 components: - pos: 4.5,18.5 parent: 2 type: Transform - - uid: 25857 + - uid: 25940 components: - pos: -15.5,-0.5 parent: 2 type: Transform - - uid: 25858 + - uid: 25941 components: - pos: 13.5,15.5 parent: 2 type: Transform - - uid: 25859 + - uid: 25942 components: - pos: -23.5,-1.5 parent: 2 type: Transform - - uid: 25860 + - uid: 25943 components: - pos: -23.5,-3.5 parent: 2 type: Transform - - uid: 25861 + - uid: 25944 components: - pos: -20.5,-3.5 parent: 2 type: Transform - - uid: 25862 + - uid: 25945 components: - pos: -20.5,-2.5 parent: 2 type: Transform - - uid: 25863 + - uid: 25946 components: - pos: -18.5,-1.5 parent: 2 type: Transform - - uid: 25864 + - uid: 25947 components: - rot: 3.141592653589793 rad pos: 29.5,-20.5 parent: 2 type: Transform - - uid: 25865 + - uid: 25948 components: - rot: -1.5707963267948966 rad pos: 44.5,49.5 parent: 2 type: Transform - - uid: 25866 + - uid: 25949 components: - rot: -1.5707963267948966 rad pos: 43.5,42.5 parent: 2 type: Transform - - uid: 25867 + - uid: 25950 components: - rot: -1.5707963267948966 rad pos: 38.5,42.5 parent: 2 type: Transform - - uid: 25868 + - uid: 25951 components: - rot: -1.5707963267948966 rad pos: 34.5,42.5 parent: 2 type: Transform - - uid: 25869 + - uid: 25952 components: - rot: -1.5707963267948966 rad pos: 33.5,43.5 parent: 2 type: Transform - - uid: 25870 + - uid: 25953 components: - pos: 35.5,50.5 parent: 2 type: Transform - - uid: 25871 + - uid: 25954 components: - pos: 35.5,52.5 parent: 2 type: Transform - - uid: 25872 + - uid: 25955 components: - pos: 36.5,52.5 parent: 2 type: Transform - - uid: 25873 + - uid: 25956 components: - pos: 34.5,48.5 parent: 2 type: Transform - - uid: 25874 + - uid: 25957 components: - pos: -15.5,-1.5 parent: 2 type: Transform - - uid: 25875 + - uid: 25958 components: - rot: -1.5707963267948966 rad pos: 36.5,11.5 parent: 2 type: Transform - - uid: 25876 + - uid: 25959 components: - rot: 3.141592653589793 rad pos: 33.5,-19.5 parent: 2 type: Transform - - uid: 25877 + - uid: 25960 components: - rot: 1.5707963267948966 rad pos: 29.5,-63.5 parent: 2 type: Transform - - uid: 25878 + - uid: 25961 components: - rot: -1.5707963267948966 rad pos: 39.5,3.5 parent: 2 type: Transform - - uid: 25879 + - uid: 25962 components: - rot: -1.5707963267948966 rad pos: 1.5,-76.5 parent: 2 type: Transform - - uid: 25880 + - uid: 25963 components: - rot: 3.141592653589793 rad pos: -15.5,5.5 parent: 2 type: Transform - - uid: 25881 + - uid: 25964 components: - rot: 3.141592653589793 rad pos: 17.5,-21.5 parent: 2 type: Transform - - uid: 25882 + - uid: 25965 components: - rot: 3.141592653589793 rad pos: 17.5,-22.5 parent: 2 type: Transform - - uid: 25883 + - uid: 25966 components: - rot: 3.141592653589793 rad pos: 30.5,-19.5 parent: 2 type: Transform - - uid: 25884 + - uid: 25967 components: - pos: 28.5,-13.5 parent: 2 type: Transform - - uid: 25885 + - uid: 25968 components: - rot: 3.141592653589793 rad pos: 20.5,-20.5 parent: 2 type: Transform - - uid: 25886 + - uid: 25969 components: - rot: 3.141592653589793 rad pos: 17.5,-23.5 parent: 2 type: Transform - - uid: 25887 + - uid: 25970 components: - rot: -1.5707963267948966 rad pos: -0.5,-84.5 parent: 2 type: Transform - - uid: 25888 + - uid: 25971 components: - rot: 3.141592653589793 rad pos: 28.5,-61.5 parent: 2 type: Transform - - uid: 25889 + - uid: 25972 components: - pos: -23.5,1.5 parent: 2 type: Transform - - uid: 25890 + - uid: 25973 components: - pos: 8.5,-71.5 parent: 2 type: Transform - - uid: 25891 + - uid: 25974 components: - pos: 5.5,-80.5 parent: 2 type: Transform - - uid: 25892 + - uid: 25975 components: - rot: -1.5707963267948966 rad pos: 0.5,-77.5 parent: 2 type: Transform - - uid: 25893 + - uid: 25976 components: - pos: -18.5,-2.5 parent: 2 type: Transform - - uid: 25894 + - uid: 25977 components: - rot: -1.5707963267948966 rad pos: 33.5,10.5 parent: 2 type: Transform - - uid: 25895 + - uid: 25978 components: - rot: -1.5707963267948966 rad pos: -28.5,-81.5 parent: 2 type: Transform - - uid: 25896 + - uid: 25979 components: - rot: -1.5707963267948966 rad pos: -19.5,-81.5 parent: 2 type: Transform - - uid: 25897 + - uid: 25980 components: - rot: -1.5707963267948966 rad pos: -24.5,-81.5 parent: 2 type: Transform - - uid: 25898 + - uid: 25981 components: - pos: -13.5,-78.5 parent: 2 type: Transform - - uid: 25899 + - uid: 25982 components: - pos: -21.5,-57.5 parent: 2 type: Transform - - uid: 25900 + - uid: 25983 components: - pos: 29.5,33.5 parent: 2 type: Transform - - uid: 25901 + - uid: 25984 components: - rot: 1.5707963267948966 rad pos: 38.5,-17.5 parent: 2 type: Transform - - uid: 25902 + - uid: 25985 components: - rot: 1.5707963267948966 rad pos: 37.5,-19.5 parent: 2 type: Transform - - uid: 25903 + - uid: 25986 components: - rot: 3.141592653589793 rad pos: 3.5,-18.5 parent: 2 type: Transform - - uid: 25904 + - uid: 25987 components: - pos: 33.5,-28.5 parent: 2 type: Transform - - uid: 25905 + - uid: 25988 components: - pos: 20.5,-33.5 parent: 2 type: Transform - - uid: 25906 + - uid: 25989 components: - pos: 33.5,-29.5 parent: 2 type: Transform - - uid: 25907 + - uid: 25990 components: - pos: 40.5,-30.5 parent: 2 type: Transform - - uid: 25908 + - uid: 25991 components: - pos: 3.5,22.5 parent: 2 type: Transform - - uid: 25909 + - uid: 25992 components: - pos: 40.5,-31.5 parent: 2 type: Transform - - uid: 25910 + - uid: 25993 components: - pos: 40.5,-29.5 parent: 2 type: Transform - - uid: 25911 + - uid: 25994 components: - pos: 32.5,-26.5 parent: 2 type: Transform - - uid: 25912 + - uid: 25995 components: - rot: 3.141592653589793 rad pos: 42.5,17.5 parent: 2 type: Transform - - uid: 25913 + - uid: 25996 components: - pos: 43.5,16.5 parent: 2 type: Transform - - uid: 25914 + - uid: 25997 components: - pos: 43.5,9.5 parent: 2 type: Transform - - uid: 25915 + - uid: 25998 components: - rot: 3.141592653589793 rad pos: 43.5,3.5 parent: 2 type: Transform - - uid: 25916 + - uid: 25999 components: - pos: 28.5,-10.5 parent: 2 type: Transform - - uid: 25917 + - uid: 26000 components: - rot: 3.141592653589793 rad pos: 13.5,-23.5 parent: 2 type: Transform - - uid: 25918 + - uid: 26001 components: - rot: 3.141592653589793 rad pos: 13.5,-20.5 parent: 2 type: Transform - - uid: 25919 + - uid: 26002 components: - rot: 3.141592653589793 rad pos: 13.5,-19.5 parent: 2 type: Transform - - uid: 25920 + - uid: 26003 components: - rot: 3.141592653589793 rad pos: 13.5,-17.5 parent: 2 type: Transform - - uid: 25921 + - uid: 26004 components: - rot: 3.141592653589793 rad pos: 13.5,-16.5 parent: 2 type: Transform - - uid: 25922 + - uid: 26005 components: - rot: 3.141592653589793 rad pos: 13.5,-15.5 parent: 2 type: Transform - - uid: 25923 + - uid: 26006 components: - pos: 25.5,-26.5 parent: 2 type: Transform - - uid: 25924 + - uid: 26007 components: - pos: 21.5,-26.5 parent: 2 type: Transform - - uid: 25925 + - uid: 26008 components: - rot: 1.5707963267948966 rad pos: 33.5,-33.5 parent: 2 type: Transform - - uid: 25926 + - uid: 26009 components: - rot: -1.5707963267948966 rad pos: 38.5,6.5 parent: 2 type: Transform - - uid: 25927 + - uid: 26010 components: - rot: -1.5707963267948966 rad pos: 39.5,6.5 parent: 2 type: Transform - - uid: 25928 + - uid: 26011 components: - rot: -1.5707963267948966 rad pos: 38.5,3.5 parent: 2 type: Transform - - uid: 25929 + - uid: 26012 components: - pos: 29.5,-9.5 parent: 2 type: Transform - - uid: 25930 + - uid: 26013 components: - rot: 3.141592653589793 rad pos: -15.5,-3.5 parent: 2 type: Transform - - uid: 25931 + - uid: 26014 components: - rot: 3.141592653589793 rad pos: -16.5,5.5 parent: 2 type: Transform - - uid: 25932 + - uid: 26015 components: - rot: -1.5707963267948966 rad pos: 36.5,10.5 parent: 2 type: Transform - - uid: 25933 + - uid: 26016 components: - pos: 38.5,-24.5 parent: 2 type: Transform - - uid: 25934 + - uid: 26017 components: - pos: -15.5,-2.5 parent: 2 type: Transform - - uid: 25935 + - uid: 26018 components: - pos: 41.5,52.5 parent: 2 type: Transform - - uid: 25936 + - uid: 26019 components: - rot: -1.5707963267948966 rad pos: 5.5,-24.5 parent: 2 type: Transform - - uid: 25937 + - uid: 26020 components: - rot: 3.141592653589793 rad pos: 27.5,24.5 parent: 2 type: Transform - - uid: 25938 + - uid: 26021 components: - rot: -1.5707963267948966 rad pos: 9.5,23.5 parent: 2 type: Transform - - uid: 25939 + - uid: 26022 components: - pos: -0.5,15.5 parent: 2 type: Transform - - uid: 25940 + - uid: 26023 components: - rot: -1.5707963267948966 rad pos: 5.5,23.5 parent: 2 type: Transform - - uid: 25941 + - uid: 26024 components: - rot: -1.5707963267948966 rad pos: 4.5,23.5 parent: 2 type: Transform - - uid: 25942 + - uid: 26025 components: - rot: -1.5707963267948966 rad pos: 3.5,23.5 parent: 2 type: Transform - - uid: 25943 + - uid: 26026 components: - pos: 42.5,50.5 parent: 2 type: Transform - - uid: 25944 + - uid: 26027 components: - pos: 27.5,-15.5 parent: 2 type: Transform - - uid: 25945 + - uid: 26028 components: - pos: 2.5,22.5 parent: 2 type: Transform - - uid: 25946 + - uid: 26029 components: - pos: 1.5,22.5 parent: 2 type: Transform - - uid: 25947 + - uid: 26030 components: - pos: -2.5,-30.5 parent: 2 type: Transform - - uid: 25948 + - uid: 26031 components: - pos: 1.5,-39.5 parent: 2 type: Transform - - uid: 25949 + - uid: 26032 components: - pos: 5.5,-40.5 parent: 2 type: Transform - - uid: 25950 + - uid: 26033 components: - rot: 3.141592653589793 rad pos: 3.5,12.5 parent: 2 type: Transform - - uid: 25951 + - uid: 26034 components: - rot: -1.5707963267948966 rad pos: 63.5,18.5 parent: 2 type: Transform - - uid: 25952 + - uid: 26035 components: - rot: -1.5707963267948966 rad pos: 30.5,11.5 parent: 2 type: Transform - - uid: 25953 + - uid: 26036 components: - pos: 7.5,-24.5 parent: 2 type: Transform - - uid: 25954 + - uid: 26037 components: - pos: 9.5,-24.5 parent: 2 type: Transform - - uid: 25955 + - uid: 26038 components: - rot: 3.141592653589793 rad pos: 3.5,-24.5 parent: 2 type: Transform - - uid: 25956 + - uid: 26039 components: - pos: 1.5,-29.5 parent: 2 type: Transform - - uid: 25957 + - uid: 26040 components: - pos: 27.5,-14.5 parent: 2 type: Transform - - uid: 25958 + - uid: 26041 components: - rot: -1.5707963267948966 rad pos: -16.5,-57.5 parent: 2 type: Transform - - uid: 25959 + - uid: 26042 components: - rot: 3.141592653589793 rad pos: 21.5,-33.5 parent: 2 type: Transform - - uid: 25960 + - uid: 26043 components: - pos: 13.5,-24.5 parent: 2 type: Transform - - uid: 25961 + - uid: 26044 components: - pos: 37.5,-24.5 parent: 2 type: Transform - - uid: 25962 + - uid: 26045 components: - rot: -1.5707963267948966 rad pos: 36.5,12.5 parent: 2 type: Transform - - uid: 25963 + - uid: 26046 components: - pos: 3.5,19.5 parent: 2 type: Transform - - uid: 25964 + - uid: 26047 components: - pos: 3.5,21.5 parent: 2 type: Transform - - uid: 25965 + - uid: 26048 components: - pos: 13.5,19.5 parent: 2 type: Transform - - uid: 25966 + - uid: 26049 components: - pos: 13.5,20.5 parent: 2 type: Transform - - uid: 25967 + - uid: 26050 components: - pos: 13.5,21.5 parent: 2 type: Transform - - uid: 25968 + - uid: 26051 components: - pos: 20.5,-38.5 parent: 2 type: Transform - - uid: 25969 + - uid: 26052 components: - pos: 6.5,-24.5 parent: 2 type: Transform - - uid: 25970 + - uid: 26053 components: - pos: -13.5,-77.5 parent: 2 type: Transform - - uid: 25971 + - uid: 26054 components: - rot: -1.5707963267948966 rad pos: -27.5,-83.5 parent: 2 type: Transform - - uid: 25972 + - uid: 26055 components: - rot: -1.5707963267948966 rad pos: -24.5,-82.5 parent: 2 type: Transform - - uid: 25973 + - uid: 26056 components: - rot: -1.5707963267948966 rad pos: -27.5,-81.5 parent: 2 type: Transform - - uid: 25974 + - uid: 26057 components: - pos: 1.5,-32.5 parent: 2 type: Transform - - uid: 25975 + - uid: 26058 components: - rot: 1.5707963267948966 rad pos: 22.5,25.5 parent: 2 type: Transform - - uid: 25976 + - uid: 26059 components: - rot: -1.5707963267948966 rad pos: 33.5,11.5 parent: 2 type: Transform - - uid: 25977 + - uid: 26060 components: - rot: -1.5707963267948966 rad pos: 30.5,13.5 parent: 2 type: Transform - - uid: 25978 + - uid: 26061 components: - rot: 3.141592653589793 rad pos: 23.5,-55.5 parent: 2 type: Transform - - uid: 25979 + - uid: 26062 components: - rot: 3.141592653589793 rad pos: 23.5,-56.5 parent: 2 type: Transform - - uid: 25980 + - uid: 26063 components: - pos: 18.5,-64.5 parent: 2 type: Transform - - uid: 25981 + - uid: 26064 components: - pos: 15.5,-62.5 parent: 2 type: Transform - - uid: 25982 + - uid: 26065 components: - pos: 15.5,-61.5 parent: 2 type: Transform - - uid: 25983 + - uid: 26066 components: - pos: 17.5,-56.5 parent: 2 type: Transform - - uid: 25984 + - uid: 26067 components: - pos: 15.5,-60.5 parent: 2 type: Transform - - uid: 25985 + - uid: 26068 components: - pos: 15.5,-59.5 parent: 2 type: Transform - - uid: 25986 + - uid: 26069 components: - pos: 16.5,-59.5 parent: 2 type: Transform - - uid: 25987 + - uid: 26070 components: - pos: 16.5,-58.5 parent: 2 type: Transform - - uid: 25988 + - uid: 26071 components: - pos: 16.5,-57.5 parent: 2 type: Transform - - uid: 25989 + - uid: 26072 components: - pos: 16.5,-56.5 parent: 2 type: Transform - - uid: 25990 + - uid: 26073 components: - pos: 17.5,-67.5 parent: 2 type: Transform - - uid: 25991 + - uid: 26074 components: - rot: 3.141592653589793 rad pos: 22.5,24.5 parent: 2 type: Transform - - uid: 25992 + - uid: 26075 components: - rot: 3.141592653589793 rad pos: 27.5,-61.5 parent: 2 type: Transform - - uid: 25993 + - uid: 26076 components: - rot: 1.5707963267948966 rad pos: 32.5,-64.5 parent: 2 type: Transform - - uid: 25994 + - uid: 26077 components: - rot: 3.141592653589793 rad pos: 34.5,-14.5 parent: 2 type: Transform - - uid: 25995 + - uid: 26078 components: - pos: 40.5,-23.5 parent: 2 type: Transform - - uid: 25996 + - uid: 26079 components: - pos: 40.5,-24.5 parent: 2 type: Transform - - uid: 25997 + - uid: 26080 components: - pos: 49.5,-24.5 parent: 2 type: Transform - - uid: 25998 + - uid: 26081 components: - pos: 43.5,-26.5 parent: 2 type: Transform - - uid: 25999 + - uid: 26082 components: - pos: 17.5,-63.5 parent: 2 type: Transform - - uid: 26000 + - uid: 26083 components: - rot: 3.141592653589793 rad pos: 23.5,24.5 parent: 2 type: Transform - - uid: 26001 + - uid: 26084 components: - pos: -2.5,18.5 parent: 2 type: Transform - - uid: 26002 + - uid: 26085 components: - rot: -1.5707963267948966 rad pos: -16.5,-58.5 parent: 2 type: Transform - - uid: 26003 + - uid: 26086 components: - rot: -1.5707963267948966 rad pos: 30.5,10.5 parent: 2 type: Transform - - uid: 26004 + - uid: 26087 components: - pos: 39.5,17.5 parent: 2 type: Transform - - uid: 26005 + - uid: 26088 components: - pos: 37.5,17.5 parent: 2 type: Transform - - uid: 26006 + - uid: 26089 components: - rot: -1.5707963267948966 rad pos: 33.5,18.5 parent: 2 type: Transform - - uid: 26007 + - uid: 26090 components: - rot: -1.5707963267948966 rad pos: 63.5,15.5 parent: 2 type: Transform - - uid: 26008 + - uid: 26091 components: - rot: 1.5707963267948966 rad pos: 27.5,16.5 parent: 2 type: Transform - - uid: 26009 + - uid: 26092 components: - rot: -1.5707963267948966 rad pos: 36.5,3.5 parent: 2 type: Transform - - uid: 26010 + - uid: 26093 components: - rot: 1.5707963267948966 rad pos: 38.5,9.5 parent: 2 type: Transform - - uid: 26011 + - uid: 26094 components: - rot: -1.5707963267948966 rad pos: 36.5,6.5 parent: 2 type: Transform - - uid: 26012 + - uid: 26095 components: - rot: 1.5707963267948966 rad pos: 32.5,-33.5 parent: 2 type: Transform - - uid: 26013 + - uid: 26096 components: - pos: 25.5,-28.5 parent: 2 type: Transform - - uid: 26014 + - uid: 26097 components: - pos: 20.5,-26.5 parent: 2 type: Transform - - uid: 26015 + - uid: 26098 components: - pos: 17.5,-26.5 parent: 2 type: Transform - - uid: 26016 + - uid: 26099 components: - pos: 18.5,-26.5 parent: 2 type: Transform - - uid: 26017 + - uid: 26100 components: - rot: 3.141592653589793 rad pos: 34.5,-15.5 parent: 2 type: Transform - - uid: 26018 + - uid: 26101 components: - rot: 3.141592653589793 rad pos: 37.5,-20.5 parent: 2 type: Transform - - uid: 26019 + - uid: 26102 components: - rot: 3.141592653589793 rad pos: 37.5,-20.5 parent: 2 type: Transform - - uid: 26020 + - uid: 26103 components: - rot: 3.141592653589793 rad pos: 37.5,-23.5 parent: 2 type: Transform - - uid: 26021 + - uid: 26104 components: - rot: 3.141592653589793 rad pos: 40.5,3.5 parent: 2 type: Transform - - uid: 26022 + - uid: 26105 components: - rot: 3.141592653589793 rad pos: 43.5,4.5 parent: 2 type: Transform - - uid: 26023 + - uid: 26106 components: - rot: 3.141592653589793 rad pos: 43.5,12.5 parent: 2 type: Transform - - uid: 26024 + - uid: 26107 components: - pos: 44.5,16.5 parent: 2 type: Transform - - uid: 26025 + - uid: 26108 components: - pos: 43.5,13.5 parent: 2 type: Transform - - uid: 26026 + - uid: 26109 components: - pos: 45.5,16.5 parent: 2 type: Transform - - uid: 26027 + - uid: 26110 components: - pos: 46.5,16.5 parent: 2 type: Transform - - uid: 26028 + - uid: 26111 components: - pos: 46.5,13.5 parent: 2 type: Transform - - uid: 26029 + - uid: 26112 components: - pos: 45.5,13.5 parent: 2 type: Transform - - uid: 26030 + - uid: 26113 components: - rot: 3.141592653589793 rad pos: 21.5,-39.5 parent: 2 type: Transform - - uid: 26031 + - uid: 26114 components: - pos: 20.5,-37.5 parent: 2 type: Transform - - uid: 26032 + - uid: 26115 components: - pos: 30.5,-34.5 parent: 2 type: Transform - - uid: 26033 + - uid: 26116 components: - pos: 30.5,-35.5 parent: 2 type: Transform - - uid: 26034 + - uid: 26117 components: - pos: 30.5,-36.5 parent: 2 type: Transform - - uid: 26035 + - uid: 26118 components: - pos: 30.5,-37.5 parent: 2 type: Transform - - uid: 26036 + - uid: 26119 components: - pos: 30.5,-33.5 parent: 2 type: Transform - - uid: 26037 + - uid: 26120 components: - pos: 24.5,-33.5 parent: 2 type: Transform - - uid: 26038 + - uid: 26121 components: - pos: 21.5,-31.5 parent: 2 type: Transform - - uid: 26039 + - uid: 26122 components: - pos: 28.5,9.5 parent: 2 type: Transform - - uid: 26040 + - uid: 26123 components: - pos: 31.5,9.5 parent: 2 type: Transform - - uid: 26041 + - uid: 26124 components: - pos: 35.5,9.5 parent: 2 type: Transform - - uid: 26042 + - uid: 26125 components: - pos: 35.5,8.5 parent: 2 type: Transform - - uid: 26043 + - uid: 26126 components: - pos: 35.5,6.5 parent: 2 type: Transform - - uid: 26044 + - uid: 26127 components: - pos: 23.5,19.5 parent: 2 type: Transform - - uid: 26045 + - uid: 26128 components: - pos: 17.5,-38.5 parent: 2 type: Transform - - uid: 26046 + - uid: 26129 components: - pos: 33.5,-38.5 parent: 2 type: Transform - - uid: 26047 + - uid: 26130 components: - rot: 3.141592653589793 rad pos: 17.5,-37.5 parent: 2 type: Transform - - uid: 26048 + - uid: 26131 components: - pos: 31.5,22.5 parent: 2 type: Transform - - uid: 26049 + - uid: 26132 components: - pos: 31.5,23.5 parent: 2 type: Transform - - uid: 26050 + - uid: 26133 components: - pos: 31.5,24.5 parent: 2 type: Transform - - uid: 26051 + - uid: 26134 components: - pos: 33.5,26.5 parent: 2 type: Transform - - uid: 26052 + - uid: 26135 components: - pos: 33.5,28.5 parent: 2 type: Transform - - uid: 26053 + - uid: 26136 components: - rot: 3.141592653589793 rad pos: 25.5,27.5 parent: 2 type: Transform - - uid: 26054 + - uid: 26137 components: - pos: 33.5,30.5 parent: 2 type: Transform - - uid: 26055 + - uid: 26138 components: - pos: -2.5,-29.5 parent: 2 type: Transform - - uid: 26056 + - uid: 26139 components: - pos: -2.5,-44.5 parent: 2 type: Transform - - uid: 26057 + - uid: 26140 components: - pos: 19.5,24.5 parent: 2 type: Transform - - uid: 26058 + - uid: 26141 components: - pos: 19.5,18.5 parent: 2 type: Transform - - uid: 26059 + - uid: 26142 components: - pos: 12.5,-35.5 parent: 2 type: Transform - - uid: 26060 + - uid: 26143 components: - pos: 12.5,-30.5 parent: 2 type: Transform - - uid: 26061 + - uid: 26144 components: - pos: 0.5,-28.5 parent: 2 type: Transform - - uid: 26062 + - uid: 26145 components: - pos: -2.5,-28.5 parent: 2 type: Transform - - uid: 26063 + - uid: 26146 components: - pos: -0.5,-28.5 parent: 2 type: Transform - - uid: 26064 + - uid: 26147 components: - pos: -1.5,-28.5 parent: 2 type: Transform - - uid: 26065 + - uid: 26148 components: - pos: 1.5,-28.5 parent: 2 type: Transform - - uid: 26066 + - uid: 26149 components: - pos: 1.5,-34.5 parent: 2 type: Transform - - uid: 26067 + - uid: 26150 components: - rot: -1.5707963267948966 rad pos: 13.5,-36.5 parent: 2 type: Transform - - uid: 26068 + - uid: 26151 components: - rot: -1.5707963267948966 rad pos: 13.5,-38.5 parent: 2 type: Transform - - uid: 26069 + - uid: 26152 components: - rot: -1.5707963267948966 rad pos: 10.5,-18.5 parent: 2 type: Transform - - uid: 26070 + - uid: 26153 components: - rot: -1.5707963267948966 rad pos: 6.5,-18.5 parent: 2 type: Transform - - uid: 26071 + - uid: 26154 components: - pos: -2.5,19.5 parent: 2 type: Transform - - uid: 26072 + - uid: 26155 components: - pos: -2.5,17.5 parent: 2 type: Transform - - uid: 26073 + - uid: 26156 components: - rot: 3.141592653589793 rad pos: 30.5,-20.5 parent: 2 type: Transform - - uid: 26074 + - uid: 26157 components: - pos: -1.5,-40.5 parent: 2 type: Transform - - uid: 26075 + - uid: 26158 components: - pos: 0.5,-40.5 parent: 2 type: Transform - - uid: 26076 + - uid: 26159 components: - pos: -0.5,-40.5 parent: 2 type: Transform - - uid: 26077 + - uid: 26160 components: - rot: 1.5707963267948966 rad pos: 38.5,-18.5 parent: 2 type: Transform - - uid: 26078 + - uid: 26161 components: - rot: 1.5707963267948966 rad pos: 38.5,-16.5 parent: 2 type: Transform - - uid: 26079 + - uid: 26162 components: - rot: 1.5707963267948966 rad pos: 38.5,-19.5 parent: 2 type: Transform - - uid: 26080 + - uid: 26163 components: - rot: 1.5707963267948966 rad pos: 33.5,31.5 parent: 2 type: Transform - - uid: 26081 + - uid: 26164 components: - rot: 1.5707963267948966 rad pos: 33.5,33.5 parent: 2 type: Transform - - uid: 26082 + - uid: 26165 components: - rot: 1.5707963267948966 rad pos: 25.5,31.5 parent: 2 type: Transform - - uid: 26083 + - uid: 26166 components: - rot: 1.5707963267948966 rad pos: 25.5,32.5 parent: 2 type: Transform - - uid: 26084 + - uid: 26167 components: - rot: 1.5707963267948966 rad pos: 25.5,33.5 parent: 2 type: Transform - - uid: 26085 + - uid: 26168 components: - rot: 1.5707963267948966 rad pos: 26.5,33.5 parent: 2 type: Transform - - uid: 26086 + - uid: 26169 components: - rot: 3.141592653589793 rad pos: 28.5,33.5 parent: 2 type: Transform - - uid: 26087 + - uid: 26170 components: - rot: 1.5707963267948966 rad pos: 32.5,33.5 parent: 2 type: Transform - - uid: 26088 + - uid: 26171 components: - pos: 13.5,-39.5 parent: 2 type: Transform - - uid: 26089 + - uid: 26172 components: - rot: -1.5707963267948966 rad pos: 33.5,13.5 parent: 2 type: Transform - - uid: 26090 + - uid: 26173 components: - rot: 1.5707963267948966 rad pos: -17.5,-53.5 parent: 2 type: Transform - - uid: 26091 + - uid: 26174 components: - rot: 1.5707963267948966 rad pos: -19.5,-53.5 parent: 2 type: Transform - - uid: 26092 + - uid: 26175 components: - rot: 1.5707963267948966 rad pos: -20.5,-53.5 parent: 2 type: Transform - - uid: 26093 + - uid: 26176 components: - rot: 1.5707963267948966 rad pos: -21.5,-53.5 parent: 2 type: Transform - - uid: 26094 + - uid: 26177 components: - pos: -21.5,-58.5 parent: 2 type: Transform - - uid: 26095 + - uid: 26178 components: - pos: 33.5,-26.5 parent: 2 type: Transform - - uid: 26096 + - uid: 26179 components: - pos: 27.5,-28.5 parent: 2 type: Transform - - uid: 26097 + - uid: 26180 components: - pos: -22.5,-49.5 parent: 2 type: Transform - - uid: 26098 + - uid: 26181 components: - rot: 1.5707963267948966 rad pos: 17.5,-33.5 parent: 2 type: Transform - - uid: 26099 + - uid: 26182 components: - rot: 3.141592653589793 rad pos: 33.5,-23.5 parent: 2 type: Transform - - uid: 26100 + - uid: 26183 components: - pos: 27.5,-29.5 parent: 2 type: Transform - - uid: 26101 + - uid: 26184 components: - rot: 3.141592653589793 rad pos: 30.5,-40.5 parent: 2 type: Transform - - uid: 26102 + - uid: 26185 components: - pos: 9.5,12.5 parent: 2 type: Transform - - uid: 26103 + - uid: 26186 components: - pos: 8.5,11.5 parent: 2 type: Transform - - uid: 26104 + - uid: 26187 components: - pos: 25.5,-33.5 parent: 2 type: Transform - - uid: 26105 + - uid: 26188 components: - pos: -17.5,-80.5 parent: 2 type: Transform - - uid: 26106 + - uid: 26189 components: - pos: -15.5,-80.5 parent: 2 type: Transform - - uid: 26107 + - uid: 26190 components: - pos: -14.5,-74.5 parent: 2 type: Transform - - uid: 26108 + - uid: 26191 components: - rot: -1.5707963267948966 rad pos: -31.5,-78.5 parent: 2 type: Transform - - uid: 26109 + - uid: 26192 components: - rot: -1.5707963267948966 rad pos: -25.5,-81.5 parent: 2 type: Transform - - uid: 26110 + - uid: 26193 components: - rot: -1.5707963267948966 rad pos: -26.5,-81.5 parent: 2 type: Transform - - uid: 26111 + - uid: 26194 components: - rot: -1.5707963267948966 rad pos: -19.5,-82.5 parent: 2 type: Transform - - uid: 26112 + - uid: 26195 components: - rot: -1.5707963267948966 rad pos: -29.5,-81.5 parent: 2 type: Transform - - uid: 26113 + - uid: 26196 components: - rot: -1.5707963267948966 rad pos: -30.5,-81.5 parent: 2 type: Transform - - uid: 26114 + - uid: 26197 components: - rot: -1.5707963267948966 rad pos: -31.5,-81.5 parent: 2 type: Transform - - uid: 26115 + - uid: 26198 components: - pos: -27.5,-86.5 parent: 2 type: Transform - - uid: 26116 + - uid: 26199 components: - rot: -1.5707963267948966 rad pos: -19.5,-83.5 parent: 2 type: Transform - - uid: 26117 + - uid: 26200 components: - pos: -22.5,-91.5 parent: 2 type: Transform - - uid: 26118 + - uid: 26201 components: - rot: -1.5707963267948966 rad pos: 44.5,-66.5 parent: 2 type: Transform - - uid: 26119 + - uid: 26202 components: - pos: 57.5,-50.5 parent: 2 type: Transform - - uid: 26120 + - uid: 26203 components: - pos: -51.5,-52.5 parent: 2 type: Transform - - uid: 26121 + - uid: 26204 components: - rot: 1.5707963267948966 rad pos: -17.5,-58.5 parent: 2 type: Transform - - uid: 26122 + - uid: 26205 components: - rot: 3.141592653589793 rad pos: 21.5,-20.5 parent: 2 type: Transform - - uid: 26123 + - uid: 26206 components: - pos: 29.5,-26.5 parent: 2 type: Transform - - uid: 26124 + - uid: 26207 components: - rot: 3.141592653589793 rad pos: 33.5,-21.5 parent: 2 type: Transform - - uid: 26125 + - uid: 26208 components: - rot: 3.141592653589793 rad pos: 33.5,-27.5 parent: 2 type: Transform - - uid: 26126 + - uid: 26209 components: - rot: 3.141592653589793 rad pos: 13.5,-18.5 parent: 2 type: Transform - - uid: 26127 + - uid: 26210 components: - rot: 3.141592653589793 rad pos: 41.5,17.5 parent: 2 type: Transform - - uid: 26128 + - uid: 26211 components: - rot: 3.141592653589793 rad pos: 43.5,17.5 parent: 2 type: Transform - - uid: 26129 + - uid: 26212 components: - rot: -1.5707963267948966 rad pos: 27.5,12.5 parent: 2 type: Transform - - uid: 26130 + - uid: 26213 components: - rot: -1.5707963267948966 rad pos: 27.5,13.5 parent: 2 type: Transform - - uid: 26131 + - uid: 26214 components: - rot: -1.5707963267948966 rad pos: 27.5,11.5 parent: 2 type: Transform - - uid: 26132 + - uid: 26215 components: - pos: 14.5,15.5 parent: 2 type: Transform - - uid: 26133 + - uid: 26216 components: - pos: 9.5,15.5 parent: 2 type: Transform - - uid: 26134 + - uid: 26217 components: - pos: 9.5,-71.5 parent: 2 type: Transform - - uid: 26135 + - uid: 26218 components: - pos: 5.5,-78.5 parent: 2 type: Transform - - uid: 26136 + - uid: 26219 components: - rot: 3.141592653589793 rad pos: 30.5,-39.5 parent: 2 type: Transform - - uid: 26137 + - uid: 26220 components: - pos: 28.5,-9.5 parent: 2 type: Transform - - uid: 26138 + - uid: 26221 components: - pos: 31.5,20.5 parent: 2 type: Transform - - uid: 26139 + - uid: 26222 components: - rot: -1.5707963267948966 rad pos: 30.5,12.5 parent: 2 type: Transform - - uid: 26140 + - uid: 26223 components: - pos: 0.5,15.5 parent: 2 type: Transform - - uid: 26141 + - uid: 26224 components: - rot: -1.5707963267948966 rad pos: 9.5,11.5 parent: 2 type: Transform - - uid: 26142 + - uid: 26225 components: - rot: 3.141592653589793 rad pos: 6.5,11.5 parent: 2 type: Transform - - uid: 26143 + - uid: 26226 components: - rot: 1.5707963267948966 rad pos: 3.5,14.5 parent: 2 type: Transform - - uid: 26144 + - uid: 26227 components: - pos: -1.5,15.5 parent: 2 type: Transform - - uid: 26145 + - uid: 26228 components: - pos: 9.5,-2.5 parent: 2 type: Transform - - uid: 26146 + - uid: 26229 components: - rot: 1.5707963267948966 rad pos: 18.5,-33.5 parent: 2 type: Transform - - uid: 26147 + - uid: 26230 components: - rot: 1.5707963267948966 rad pos: 15.5,15.5 parent: 2 type: Transform - - uid: 26148 + - uid: 26231 components: - rot: -1.5707963267948966 rad pos: 63.5,17.5 parent: 2 type: Transform - - uid: 26149 + - uid: 26232 components: - rot: -1.5707963267948966 rad pos: -2.5,-84.5 parent: 2 type: Transform - - uid: 26150 + - uid: 26233 components: - pos: 16.5,-63.5 parent: 2 type: Transform - - uid: 26151 + - uid: 26234 components: - pos: 17.5,-68.5 parent: 2 type: Transform - - uid: 26152 + - uid: 26235 components: - pos: -23.5,0.5 parent: 2 type: Transform - - uid: 26153 + - uid: 26236 components: - pos: 25.5,-29.5 parent: 2 type: Transform - - uid: 26154 + - uid: 26237 components: - pos: -23.5,-2.5 parent: 2 type: Transform - - uid: 26155 + - uid: 26238 components: - rot: 3.141592653589793 rad pos: 33.5,-20.5 parent: 2 type: Transform - - uid: 26156 + - uid: 26239 components: - pos: -23.5,3.5 parent: 2 type: Transform - - uid: 26157 + - uid: 26240 components: - pos: -23.5,4.5 parent: 2 type: Transform - - uid: 26158 + - uid: 26241 components: - pos: -21.5,5.5 parent: 2 type: Transform - - uid: 26159 + - uid: 26242 components: - pos: 49.5,-26.5 parent: 2 type: Transform - - uid: 26160 + - uid: 26243 components: - pos: 47.5,-20.5 parent: 2 type: Transform - - uid: 26161 + - uid: 26244 components: - pos: 44.5,-20.5 parent: 2 type: Transform - - uid: 26162 + - uid: 26245 components: - pos: 43.5,-22.5 parent: 2 type: Transform - - uid: 26163 + - uid: 26246 components: - pos: 43.5,-25.5 parent: 2 type: Transform - - uid: 26164 + - uid: 26247 components: - pos: 43.5,-23.5 parent: 2 type: Transform - - uid: 26165 + - uid: 26248 components: - pos: 43.5,-28.5 parent: 2 type: Transform - - uid: 26166 + - uid: 26249 components: - pos: 1.5,15.5 parent: 2 type: Transform - - uid: 26167 + - uid: 26250 components: - pos: 40.5,-28.5 parent: 2 type: Transform - - uid: 26168 + - uid: 26251 components: - pos: 26.5,26.5 parent: 2 type: Transform - - uid: 26169 + - uid: 26252 components: - pos: 25.5,26.5 parent: 2 type: Transform - - uid: 26170 + - uid: 26253 components: - pos: 25.5,28.5 parent: 2 type: Transform - - uid: 26171 + - uid: 26254 components: - rot: 3.141592653589793 rad pos: 33.5,29.5 parent: 2 type: Transform - - uid: 26172 + - uid: 26255 components: - pos: 25.5,30.5 parent: 2 type: Transform - - uid: 26173 + - uid: 26256 components: - pos: 32.5,26.5 parent: 2 type: Transform - - uid: 26174 + - uid: 26257 components: - rot: -1.5707963267948966 rad pos: 13.5,23.5 parent: 2 type: Transform - - uid: 26175 + - uid: 26258 components: - rot: -1.5707963267948966 rad pos: 8.5,23.5 parent: 2 type: Transform - - uid: 26176 + - uid: 26259 components: - pos: -2.5,-39.5 parent: 2 type: Transform - - uid: 26177 + - uid: 26260 components: - rot: -1.5707963267948966 rad pos: -1.5,-39.5 parent: 2 type: Transform - - uid: 26178 + - uid: 26261 components: - rot: -1.5707963267948966 rad pos: 12.5,-24.5 parent: 2 type: Transform - - uid: 26179 + - uid: 26262 components: - pos: 11.5,-24.5 parent: 2 type: Transform - - uid: 26180 + - uid: 26263 components: - pos: 10.5,-24.5 parent: 2 type: Transform - - uid: 26181 + - uid: 26264 components: - rot: -1.5707963267948966 rad pos: 4.5,-24.5 parent: 2 type: Transform - - uid: 26182 + - uid: 26265 components: - rot: -1.5707963267948966 rad pos: 5.5,-18.5 parent: 2 type: Transform - - uid: 26183 + - uid: 26266 components: - pos: -2.5,21.5 parent: 2 type: Transform - - uid: 26184 + - uid: 26267 components: - pos: -0.5,22.5 parent: 2 type: Transform - - uid: 26185 + - uid: 26268 components: - pos: 0.5,22.5 parent: 2 type: Transform - - uid: 26186 + - uid: 26269 components: - pos: -2.5,22.5 parent: 2 type: Transform - - uid: 26187 + - uid: 26270 components: - pos: -2.5,20.5 parent: 2 type: Transform - - uid: 26188 + - uid: 26271 components: - pos: 6.5,-40.5 parent: 2 type: Transform - - uid: 26189 + - uid: 26272 components: - pos: 5.5,-39.5 parent: 2 type: Transform - - uid: 26190 + - uid: 26273 components: - pos: 8.5,18.5 parent: 2 type: Transform - - uid: 26191 + - uid: 26274 components: - rot: 3.141592653589793 rad pos: 27.5,23.5 parent: 2 type: Transform - - uid: 26192 + - uid: 26275 components: - pos: -15.5,4.5 parent: 2 type: Transform - - uid: 26193 + - uid: 26276 components: - pos: -15.5,3.5 parent: 2 type: Transform - - uid: 26194 + - uid: 26277 components: - pos: 9.5,18.5 parent: 2 type: Transform - - uid: 26195 + - uid: 26278 components: - pos: -18.5,-85.5 parent: 2 type: Transform - - uid: 26196 + - uid: 26279 components: - rot: 3.141592653589793 rad pos: 3.5,11.5 parent: 2 type: Transform - - uid: 26197 + - uid: 26280 components: - rot: -1.5707963267948966 rad pos: 37.5,42.5 parent: 2 type: Transform - - uid: 26198 + - uid: 26281 components: - rot: 3.141592653589793 rad pos: 62.5,42.5 parent: 2 type: Transform - - uid: 26199 + - uid: 26282 components: - rot: -1.5707963267948966 rad pos: 32.5,43.5 parent: 2 type: Transform - - uid: 26200 + - uid: 26283 components: - rot: 3.141592653589793 rad pos: 18.5,-19.5 parent: 2 type: Transform - - uid: 26201 + - uid: 26284 components: - rot: -1.5707963267948966 rad pos: 42.5,49.5 parent: 2 type: Transform - - uid: 26202 + - uid: 26285 components: - rot: -1.5707963267948966 rad pos: 34.5,43.5 parent: 2 type: Transform - - uid: 26203 + - uid: 26286 components: - pos: -23.5,-0.5 parent: 2 type: Transform - - uid: 26204 + - uid: 26287 components: - rot: -1.5707963267948966 rad pos: 63.5,16.5 parent: 2 type: Transform - - uid: 26205 + - uid: 26288 components: - pos: -20.5,5.5 parent: 2 type: Transform - - uid: 26206 + - uid: 26289 components: - rot: 3.141592653589793 rad pos: 13.5,18.5 parent: 2 type: Transform - - uid: 26207 + - uid: 26290 components: - rot: -1.5707963267948966 rad pos: 64.5,14.5 parent: 2 type: Transform - - uid: 26208 + - uid: 26291 components: - rot: -1.5707963267948966 rad pos: -0.5,-80.5 parent: 2 type: Transform - - uid: 26209 + - uid: 26292 components: - rot: -1.5707963267948966 rad pos: 0.5,-78.5 parent: 2 type: Transform - - uid: 26210 + - uid: 26293 components: - rot: 3.141592653589793 rad pos: -17.5,5.5 parent: 2 type: Transform - - uid: 26211 + - uid: 26294 components: - rot: 3.141592653589793 rad pos: 19.5,-19.5 parent: 2 type: Transform - - uid: 26212 + - uid: 26295 components: - pos: 40.5,52.5 parent: 2 type: Transform - - uid: 26213 + - uid: 26296 components: - pos: -29.5,44.5 parent: 2 type: Transform - - uid: 26214 + - uid: 26297 components: - pos: 40.5,17.5 parent: 2 type: Transform - - uid: 26215 + - uid: 26298 components: - pos: -15.5,-74.5 parent: 2 type: Transform - - uid: 26216 + - uid: 26299 components: - rot: 3.141592653589793 rad pos: 30.5,-15.5 parent: 2 type: Transform - - uid: 26217 + - uid: 26300 components: - rot: -1.5707963267948966 rad pos: 27.5,10.5 parent: 2 type: Transform - - uid: 26218 + - uid: 26301 components: - pos: -15.5,1.5 parent: 2 type: Transform - - uid: 26219 + - uid: 26302 components: - pos: -15.5,0.5 parent: 2 type: Transform - - uid: 26220 + - uid: 26303 components: - pos: 38.5,52.5 parent: 2 type: Transform - - uid: 26221 + - uid: 26304 components: - rot: 3.141592653589793 rad pos: 34.5,-13.5 parent: 2 type: Transform - - uid: 26222 + - uid: 26305 components: - pos: 43.5,-20.5 parent: 2 type: Transform - - uid: 26223 + - uid: 26306 components: - rot: 1.5707963267948966 rad pos: 32.5,-63.5 parent: 2 type: Transform - - uid: 26224 + - uid: 26307 components: - pos: 0.5,-39.5 parent: 2 type: Transform - - uid: 26225 + - uid: 26308 components: - pos: 4.5,-39.5 parent: 2 type: Transform - - uid: 26226 + - uid: 26309 components: - pos: 2.5,15.5 parent: 2 type: Transform - - uid: 26227 + - uid: 26310 components: - rot: -1.5707963267948966 rad pos: 25.5,-31.5 parent: 2 type: Transform - - uid: 26228 + - uid: 26311 components: - rot: -1.5707963267948966 rad pos: 14.5,-68.5 parent: 2 type: Transform - - uid: 26229 + - uid: 26312 components: - pos: 7.5,11.5 parent: 2 type: Transform - - uid: 26230 + - uid: 26313 components: - pos: 10.5,15.5 parent: 2 type: Transform - - uid: 26231 + - uid: 26314 components: - rot: -1.5707963267948966 rad pos: 36.5,42.5 parent: 2 type: Transform - - uid: 26232 + - uid: 26315 components: - rot: -1.5707963267948966 rad pos: -0.5,-81.5 parent: 2 type: Transform - - uid: 26233 + - uid: 26316 components: - rot: -1.5707963267948966 rad pos: 37.5,9.5 parent: 2 type: Transform - - uid: 26234 + - uid: 26317 components: - rot: -1.5707963267948966 rad pos: -26.5,-83.5 parent: 2 type: Transform - - uid: 26235 + - uid: 26318 components: - rot: -1.5707963267948966 rad pos: -24.5,-83.5 parent: 2 type: Transform - - uid: 26236 + - uid: 26319 components: - pos: -22.5,5.5 parent: 2 type: Transform - - uid: 26237 + - uid: 26320 components: - rot: -1.5707963267948966 rad pos: 27.5,14.5 parent: 2 type: Transform - - uid: 26238 + - uid: 26321 components: - pos: -29.5,43.5 parent: 2 type: Transform - - uid: 26239 + - uid: 26322 components: - rot: 3.141592653589793 rad pos: 33.5,-22.5 parent: 2 type: Transform - - uid: 26240 + - uid: 26323 components: - rot: 3.141592653589793 rad pos: 20.5,24.5 parent: 2 type: Transform - - uid: 26241 + - uid: 26324 components: - rot: 1.5707963267948966 rad pos: 7.5,-18.5 parent: 2 type: Transform - - uid: 26242 + - uid: 26325 components: - - rot: -1.5707963267948966 rad - pos: 10.5,23.5 + - pos: 7.5,27.5 parent: 2 type: Transform - - uid: 26243 + - uid: 26326 components: - rot: -1.5707963267948966 rad pos: 27.5,15.5 parent: 2 type: Transform - - uid: 26244 + - uid: 26327 components: - pos: -15.5,3.5 parent: 2 type: Transform - - uid: 26245 + - uid: 26328 components: - rot: -1.5707963267948966 rad pos: -31.5,-76.5 parent: 2 type: Transform - - uid: 26246 + - uid: 26329 components: - pos: -18.5,-80.5 parent: 2 type: Transform - - uid: 26247 + - uid: 26330 components: - rot: -1.5707963267948966 rad pos: 12.5,-68.5 parent: 2 type: Transform - - uid: 26248 + - uid: 26331 components: - rot: -1.5707963267948966 rad pos: 14.5,18.5 parent: 2 type: Transform - - uid: 26249 + - uid: 26332 components: - pos: 27.5,25.5 parent: 2 type: Transform - - uid: 26250 + - uid: 26333 components: - - rot: -1.5707963267948966 rad - pos: 12.5,23.5 + - pos: 10.5,24.5 parent: 2 type: Transform - - uid: 26251 + - uid: 26334 components: - - rot: -1.5707963267948966 rad - pos: 11.5,23.5 + - pos: 9.5,24.5 parent: 2 type: Transform - - uid: 26252 + - uid: 26335 components: - pos: -13.5,-74.5 parent: 2 type: Transform - - uid: 26253 + - uid: 26336 components: - pos: -13.5,-79.5 parent: 2 type: Transform - - uid: 26254 + - uid: 26337 components: - pos: -19.5,-80.5 parent: 2 type: Transform - - uid: 26255 + - uid: 26338 components: - pos: -13.5,-76.5 parent: 2 type: Transform - - uid: 26256 + - uid: 26339 components: - pos: 9.5,20.5 parent: 2 type: Transform - - uid: 26257 + - uid: 26340 components: - rot: -1.5707963267948966 rad pos: 13.5,-68.5 parent: 2 type: Transform - - uid: 26258 + - uid: 26341 components: - pos: -18.5,-50.5 parent: 2 type: Transform - - uid: 26259 + - uid: 26342 components: - rot: -1.5707963267948966 rad pos: -16.5,-53.5 parent: 2 type: Transform - - uid: 26260 + - uid: 26343 components: - rot: 3.141592653589793 rad pos: 33.5,-37.5 parent: 2 type: Transform - - uid: 26261 + - uid: 26344 components: - rot: 3.141592653589793 rad pos: 34.5,-11.5 parent: 2 type: Transform - - uid: 26262 + - uid: 26345 components: - rot: 3.141592653589793 rad pos: 34.5,-12.5 parent: 2 type: Transform - - uid: 26263 + - uid: 26346 components: - pos: -16.5,-54.5 parent: 2 type: Transform - - uid: 26264 + - uid: 26347 components: - rot: 3.141592653589793 rad pos: 34.5,-9.5 parent: 2 type: Transform - - uid: 26265 + - uid: 26348 components: - rot: 3.141592653589793 rad pos: 33.5,-9.5 parent: 2 type: Transform - - uid: 26266 + - uid: 26349 components: - rot: -1.5707963267948966 rad pos: -16.5,-55.5 parent: 2 type: Transform - - uid: 26267 + - uid: 26350 components: - pos: 19.5,-56.5 parent: 2 type: Transform - - uid: 26268 + - uid: 26351 components: - pos: -21.5,-56.5 parent: 2 type: Transform - - uid: 26269 + - uid: 26352 components: - pos: 33.5,48.5 parent: 2 type: Transform - - uid: 26270 + - uid: 26353 components: - pos: 31.5,-26.5 parent: 2 type: Transform - - uid: 26271 + - uid: 26354 components: - pos: 11.5,15.5 parent: 2 type: Transform - - uid: 26272 + - uid: 26355 components: - rot: 3.141592653589793 rad pos: 17.5,-19.5 parent: 2 type: Transform - - uid: 26273 + - uid: 26356 components: - pos: -2.5,-38.5 parent: 2 type: Transform - - uid: 26274 + - uid: 26357 components: - rot: -1.5707963267948966 rad pos: 63.5,14.5 parent: 2 type: Transform - - uid: 26275 + - uid: 26358 components: - pos: 12.5,-36.5 parent: 2 type: Transform - - uid: 26276 + - uid: 26359 components: - rot: 3.141592653589793 rad pos: 27.5,33.5 parent: 2 type: Transform - - uid: 26277 + - uid: 26360 components: - pos: 35.5,51.5 parent: 2 type: Transform - - uid: 26278 + - uid: 26361 components: - pos: 5.5,-79.5 parent: 2 type: Transform - - uid: 26279 + - uid: 26362 components: - pos: 33.5,-30.5 parent: 2 type: Transform - - uid: 26280 + - uid: 26363 components: - pos: 28.5,-12.5 parent: 2 type: Transform - - uid: 26281 + - uid: 26364 components: - rot: 3.141592653589793 rad pos: 17.5,-20.5 parent: 2 type: Transform - - uid: 26282 + - uid: 26365 components: - pos: 37.5,52.5 parent: 2 type: Transform - - uid: 26283 + - uid: 26366 components: - pos: 29.5,-15.5 parent: 2 type: Transform - - uid: 26284 + - uid: 26367 components: - rot: 3.141592653589793 rad pos: 32.5,-19.5 parent: 2 type: Transform - - uid: 26285 + - uid: 26368 components: - rot: 3.141592653589793 rad pos: -18.5,-3.5 parent: 2 type: Transform - - uid: 26286 + - uid: 26369 components: - rot: 3.141592653589793 rad pos: 19.5,-55.5 parent: 2 type: Transform - - uid: 26287 + - uid: 26370 components: - rot: -1.5707963267948966 rad pos: 35.5,42.5 parent: 2 type: Transform - - uid: 26288 + - uid: 26371 components: - rot: 3.141592653589793 rad pos: -18.5,5.5 parent: 2 type: Transform - - uid: 26289 + - uid: 26372 components: - pos: 35.5,5.5 parent: 2 type: Transform - - uid: 26290 + - uid: 26373 components: - pos: 35.5,3.5 parent: 2 type: Transform - - uid: 26291 + - uid: 26374 components: - pos: 33.5,9.5 parent: 2 type: Transform - - uid: 26292 + - uid: 26375 components: - pos: 27.5,9.5 parent: 2 type: Transform - - uid: 26293 + - uid: 26376 components: - rot: 3.141592653589793 rad pos: 29.5,-40.5 parent: 2 type: Transform - - uid: 26294 + - uid: 26377 components: - pos: 30.5,-38.5 parent: 2 type: Transform - - uid: 26295 + - uid: 26378 components: - rot: 3.141592653589793 rad pos: 25.5,-61.5 parent: 2 type: Transform - - uid: 26296 + - uid: 26379 components: - rot: -1.5707963267948966 rad pos: 7.5,23.5 parent: 2 type: Transform - - uid: 26297 + - uid: 26380 components: - rot: -1.5707963267948966 rad pos: 6.5,23.5 parent: 2 type: Transform - - uid: 26298 + - uid: 26381 components: - pos: 9.5,22.5 parent: 2 type: Transform - - uid: 26299 + - uid: 26382 components: - pos: 9.5,21.5 parent: 2 type: Transform - - uid: 26300 + - uid: 26383 components: - rot: 3.141592653589793 rad pos: 36.5,13.5 parent: 2 type: Transform - - uid: 26301 + - uid: 26384 components: - pos: 3.5,20.5 parent: 2 type: Transform - - uid: 26302 + - uid: 26385 components: - pos: 8.5,-24.5 parent: 2 type: Transform - - uid: 26303 + - uid: 26386 components: - pos: 12.5,-31.5 parent: 2 type: Transform - - uid: 26304 + - uid: 26387 components: - pos: 1.5,-33.5 parent: 2 type: Transform - - uid: 26305 + - uid: 26388 components: - pos: -18.5,-87.5 parent: 2 type: Transform - - uid: 26306 + - uid: 26389 components: - pos: 28.5,-11.5 parent: 2 type: Transform - - uid: 26307 + - uid: 26390 components: - pos: 13.5,-22.5 parent: 2 type: Transform - - uid: 26308 + - uid: 26391 components: - pos: 12.5,-18.5 parent: 2 type: Transform - - uid: 26309 + - uid: 26392 components: - pos: 5.5,-82.5 parent: 2 type: Transform - - uid: 26310 + - uid: 26393 components: - pos: 12.5,-69.5 parent: 2 type: Transform - - uid: 26311 + - uid: 26394 components: - rot: 3.141592653589793 rad pos: 26.5,-33.5 parent: 2 type: Transform - - uid: 26312 + - uid: 26395 components: - pos: 27.5,-27.5 parent: 2 type: Transform - - uid: 26313 + - uid: 26396 components: - pos: -6.5,-44.5 parent: 2 type: Transform - - uid: 26314 + - uid: 26397 components: - rot: 1.5707963267948966 rad pos: -18.5,-53.5 parent: 2 type: Transform - - uid: 26315 + - uid: 26398 components: - pos: -2.5,-37.5 parent: 2 type: Transform - - uid: 26316 + - uid: 26399 components: - pos: 13.5,-40.5 parent: 2 type: Transform - - uid: 26317 + - uid: 26400 components: - pos: 12.5,-40.5 parent: 2 type: Transform - - uid: 26318 + - uid: 26401 components: - pos: 10.5,-40.5 parent: 2 type: Transform - - uid: 26319 + - uid: 26402 components: - pos: 11.5,-40.5 parent: 2 type: Transform - - uid: 26320 + - uid: 26403 components: - pos: -1.5,-36.5 parent: 2 type: Transform - - uid: 26321 + - uid: 26404 components: - pos: 27.5,-13.5 parent: 2 type: Transform - - uid: 26322 + - uid: 26405 components: - rot: 1.5707963267948966 rad pos: 12.5,15.5 parent: 2 type: Transform - - uid: 26323 + - uid: 26406 components: - rot: 3.141592653589793 rad pos: 31.5,-9.5 parent: 2 type: Transform - - uid: 26324 + - uid: 26407 components: - pos: 28.5,-15.5 parent: 2 type: Transform - - uid: 26325 + - uid: 26408 components: - pos: 42.5,52.5 parent: 2 type: Transform - - uid: 26326 + - uid: 26409 components: - rot: 3.141592653589793 rad pos: 20.5,-19.5 parent: 2 type: Transform - - uid: 26327 + - uid: 26410 components: - pos: -18.5,-84.5 parent: 2 type: Transform - - uid: 26328 + - uid: 26411 components: - pos: -20.5,-1.5 parent: 2 type: Transform - - uid: 26329 + - uid: 26412 components: - rot: -1.5707963267948966 rad pos: 0.5,-76.5 parent: 2 type: Transform - - uid: 26330 + - uid: 26413 components: - rot: 1.5707963267948966 rad pos: 3.5,13.5 parent: 2 type: Transform - - uid: 26331 + - uid: 26414 components: - pos: 18.5,18.5 parent: 2 type: Transform - - uid: 26332 + - uid: 26415 components: - rot: -1.5707963267948966 rad pos: -0.5,-83.5 parent: 2 type: Transform - - uid: 26333 + - uid: 26416 components: - rot: -1.5707963267948966 rad pos: 0.5,-80.5 parent: 2 type: Transform - - uid: 26334 + - uid: 26417 components: - pos: 15.5,-63.5 parent: 2 type: Transform - - uid: 26335 + - uid: 26418 components: - pos: 17.5,-64.5 parent: 2 type: Transform - - uid: 26336 + - uid: 26419 components: - pos: 49.5,-21.5 parent: 2 type: Transform - - uid: 26337 + - uid: 26420 components: - pos: 45.5,-20.5 parent: 2 type: Transform - - uid: 26338 + - uid: 26421 components: - pos: 46.5,-20.5 parent: 2 type: Transform - - uid: 26339 + - uid: 26422 components: - pos: 43.5,-29.5 parent: 2 type: Transform - - uid: 26340 + - uid: 26423 components: - pos: 43.5,-30.5 parent: 2 type: Transform - - uid: 26341 + - uid: 26424 components: - pos: 43.5,-31.5 parent: 2 type: Transform - - uid: 26342 + - uid: 26425 components: - pos: 44.5,-31.5 parent: 2 type: Transform - - uid: 26343 + - uid: 26426 components: - pos: 49.5,-31.5 parent: 2 type: Transform - - uid: 26344 + - uid: 26427 components: - pos: 49.5,-30.5 parent: 2 type: Transform - - uid: 26345 + - uid: 26428 components: - pos: 49.5,-29.5 parent: 2 type: Transform - - uid: 26346 + - uid: 26429 components: - pos: 49.5,-28.5 parent: 2 type: Transform - - uid: 26347 + - uid: 26430 components: - pos: 48.5,-20.5 parent: 2 type: Transform - - uid: 26348 + - uid: 26431 components: - pos: 48.5,-31.5 parent: 2 type: Transform - - uid: 26349 + - uid: 26432 components: - pos: 47.5,-31.5 parent: 2 type: Transform - - uid: 26350 + - uid: 26433 components: - pos: 46.5,-31.5 parent: 2 type: Transform - - uid: 26351 + - uid: 26434 components: - pos: 45.5,-31.5 parent: 2 type: Transform - - uid: 26352 + - uid: 26435 components: - pos: 49.5,-27.5 parent: 2 type: Transform - - uid: 26353 + - uid: 26436 components: - pos: 49.5,-20.5 parent: 2 type: Transform - - uid: 26354 + - uid: 26437 components: - pos: 43.5,-21.5 parent: 2 type: Transform - - uid: 26355 + - uid: 26438 components: - pos: 49.5,-22.5 parent: 2 type: Transform - - uid: 26356 + - uid: 26439 components: - pos: 48.5,-26.5 parent: 2 type: Transform - - uid: 26357 + - uid: 26440 components: - pos: 47.5,-26.5 parent: 2 type: Transform - - uid: 26358 + - uid: 26441 components: - rot: -1.5707963267948966 rad pos: 46.5,-25.5 parent: 2 type: Transform - - uid: 26359 + - uid: 26442 components: - rot: -1.5707963267948966 rad pos: 45.5,-25.5 parent: 2 type: Transform - - uid: 26360 + - uid: 26443 components: - rot: -1.5707963267948966 rad pos: 46.5,-26.5 parent: 2 type: Transform - - uid: 26361 + - uid: 26444 components: - rot: 3.141592653589793 rad pos: 47.5,3.5 parent: 2 type: Transform - - uid: 26362 + - uid: 26445 components: - pos: -27.5,-91.5 parent: 2 type: Transform - - uid: 26363 + - uid: 26446 components: - pos: -18.5,-90.5 parent: 2 type: Transform - - uid: 26364 + - uid: 26447 components: - pos: -18.5,-91.5 parent: 2 type: Transform - - uid: 26365 + - uid: 26448 components: - pos: -19.5,-91.5 parent: 2 type: Transform - - uid: 26366 + - uid: 26449 components: - pos: -23.5,-91.5 parent: 2 type: Transform - - uid: 26367 + - uid: 26450 components: - pos: -26.5,-91.5 parent: 2 type: Transform - - uid: 26368 + - uid: 26451 components: - pos: -27.5,-87.5 parent: 2 type: Transform - - uid: 26369 + - uid: 26452 components: - pos: 7.5,-37.5 parent: 2 type: Transform - - uid: 26370 + - uid: 26453 components: - rot: 1.5707963267948966 rad pos: 15.5,28.5 parent: 2 type: Transform - - uid: 26371 + - uid: 26454 components: - pos: 5.5,30.5 parent: 2 type: Transform - - uid: 26372 + - uid: 26455 components: - pos: 18.5,24.5 parent: 2 type: Transform - - uid: 26373 + - uid: 26456 components: - pos: 17.5,24.5 parent: 2 type: Transform - - uid: 26374 + - uid: 26457 components: - pos: 16.5,24.5 parent: 2 type: Transform - - uid: 26375 + - uid: 26458 components: - pos: 15.5,24.5 parent: 2 type: Transform - - uid: 26376 + - uid: 26459 components: - pos: 13.5,24.5 parent: 2 type: Transform - - uid: 26377 + - uid: 26460 components: - rot: 1.5707963267948966 rad pos: 15.5,29.5 parent: 2 type: Transform - - uid: 26378 + - uid: 26461 components: - pos: 44.5,-32.5 parent: 2 type: Transform - - uid: 26379 + - uid: 26462 components: - pos: 49.5,44.5 parent: 2 type: Transform - - uid: 26380 + - uid: 26463 components: - pos: 19.5,30.5 parent: 2 type: Transform - - uid: 26381 + - uid: 26464 components: - pos: 19.5,29.5 parent: 2 type: Transform - - uid: 26382 + - uid: 26465 components: - pos: 19.5,28.5 parent: 2 type: Transform - - uid: 26383 + - uid: 26466 components: - pos: 19.5,27.5 parent: 2 type: Transform - - uid: 26384 + - uid: 26467 components: - rot: 1.5707963267948966 rad pos: 20.5,26.5 parent: 2 type: Transform - - uid: 26385 + - uid: 26468 components: - rot: 1.5707963267948966 rad pos: 19.5,26.5 parent: 2 type: Transform - - uid: 26386 + - uid: 26469 components: - rot: 1.5707963267948966 rad pos: 21.5,26.5 parent: 2 type: Transform - - uid: 26387 + - uid: 26470 components: - rot: 1.5707963267948966 rad pos: 22.5,26.5 parent: 2 type: Transform - - uid: 26388 + - uid: 26471 components: - pos: 3.5,31.5 parent: 2 type: Transform - - uid: 26389 + - uid: 26472 components: - pos: 4.5,30.5 parent: 2 type: Transform - - uid: 26390 + - uid: 26473 components: - pos: 3.5,33.5 parent: 2 type: Transform - - uid: 26391 + - uid: 26474 components: - pos: 11.5,29.5 parent: 2 type: Transform - - uid: 26392 + - uid: 26475 components: - pos: 11.5,35.5 parent: 2 type: Transform - - uid: 26393 - components: - - pos: 9.5,29.5 - parent: 2 - type: Transform - - uid: 26394 + - uid: 26476 components: - pos: 4.5,31.5 parent: 2 type: Transform - - uid: 26395 + - uid: 26477 components: - pos: 11.5,33.5 parent: 2 type: Transform - - uid: 26396 + - uid: 26478 components: - pos: 6.5,35.5 parent: 2 type: Transform - - uid: 26397 + - uid: 26479 components: - pos: 66.5,4.5 parent: 2 type: Transform - - uid: 26398 + - uid: 26480 components: - pos: 66.5,5.5 parent: 2 type: Transform - - uid: 26399 + - uid: 26481 components: - pos: 66.5,3.5 parent: 2 type: Transform - - uid: 26400 + - uid: 26482 components: - pos: 66.5,2.5 parent: 2 type: Transform - - uid: 26401 + - uid: 26483 components: - pos: 66.5,1.5 parent: 2 type: Transform - - uid: 26402 + - uid: 26484 components: - rot: 1.5707963267948966 rad pos: 14.5,26.5 parent: 2 type: Transform - - uid: 26403 + - uid: 26485 components: - rot: 1.5707963267948966 rad pos: 15.5,26.5 parent: 2 type: Transform - - uid: 26404 + - uid: 26486 components: - rot: 1.5707963267948966 rad pos: 15.5,27.5 parent: 2 type: Transform - - uid: 26405 + - uid: 26487 components: - rot: 1.5707963267948966 rad pos: 13.5,26.5 parent: 2 type: Transform - - uid: 26406 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,26.5 - parent: 2 - type: Transform - - uid: 26407 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,26.5 - parent: 2 - type: Transform - - uid: 26408 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,26.5 - parent: 2 - type: Transform - - uid: 26409 + - uid: 26488 components: - - rot: 1.5707963267948966 rad - pos: 10.5,25.5 + - pos: 11.5,26.5 parent: 2 type: Transform - - uid: 26410 + - uid: 26489 components: - - rot: 1.5707963267948966 rad - pos: 9.5,25.5 + - pos: 12.5,24.5 parent: 2 type: Transform - - uid: 26411 + - uid: 26490 components: - - rot: 1.5707963267948966 rad - pos: 8.5,25.5 + - pos: 11.5,24.5 parent: 2 type: Transform - - uid: 26412 + - uid: 26491 components: - rot: 1.5707963267948966 rad pos: 7.5,25.5 parent: 2 type: Transform - - uid: 26413 + - uid: 26492 components: - rot: 1.5707963267948966 rad pos: 5.5,25.5 parent: 2 type: Transform - - uid: 26414 + - uid: 26493 components: - rot: 1.5707963267948966 rad pos: 3.5,25.5 parent: 2 type: Transform - - uid: 26415 + - uid: 26494 components: - rot: 1.5707963267948966 rad pos: 18.5,30.5 parent: 2 type: Transform - - uid: 26416 + - uid: 26495 components: - rot: 1.5707963267948966 rad pos: 15.5,30.5 parent: 2 type: Transform - - uid: 26417 + - uid: 26496 components: - rot: 1.5707963267948966 rad pos: 14.5,30.5 parent: 2 type: Transform - - uid: 26418 + - uid: 26497 components: - rot: 1.5707963267948966 rad pos: 14.5,31.5 parent: 2 type: Transform - - uid: 26419 + - uid: 26498 components: - rot: 1.5707963267948966 rad pos: 13.5,31.5 parent: 2 type: Transform - - uid: 26420 + - uid: 26499 components: - pos: 49.5,50.5 parent: 2 type: Transform - - uid: 26421 + - uid: 26500 components: - rot: 1.5707963267948966 rad pos: 14.5,33.5 parent: 2 type: Transform - - uid: 26422 + - uid: 26501 components: - rot: 1.5707963267948966 rad pos: 13.5,33.5 parent: 2 type: Transform - - uid: 26423 + - uid: 26502 components: - pos: -1.5,26.5 parent: 2 type: Transform - - uid: 26424 + - uid: 26503 components: - pos: 59.5,41.5 parent: 2 type: Transform - - uid: 26425 + - uid: 26504 components: - rot: 1.5707963267948966 rad pos: 14.5,34.5 parent: 2 type: Transform - - uid: 26426 + - uid: 26505 components: - rot: 1.5707963267948966 rad pos: 18.5,31.5 parent: 2 type: Transform - - uid: 26427 - components: - - pos: 10.5,29.5 - parent: 2 - type: Transform - - uid: 26428 + - uid: 26506 components: - pos: 11.5,34.5 parent: 2 type: Transform - - uid: 26429 + - uid: 26507 components: - pos: 5.5,35.5 parent: 2 type: Transform - - uid: 26430 + - uid: 26508 components: - pos: 18.5,34.5 parent: 2 type: Transform - - uid: 26431 + - uid: 26509 components: - pos: 10.5,35.5 parent: 2 type: Transform - - uid: 26432 + - uid: 26510 components: - pos: 11.5,30.5 parent: 2 type: Transform - - uid: 26433 + - uid: 26511 components: - pos: 1.5,25.5 parent: 2 type: Transform - - uid: 26434 + - uid: 26512 components: - pos: 0.5,25.5 parent: 2 type: Transform - - uid: 26435 + - uid: 26513 components: - pos: -0.5,25.5 parent: 2 type: Transform - - uid: 26436 + - uid: 26514 components: - pos: -1.5,25.5 parent: 2 type: Transform - - uid: 26437 + - uid: 26515 components: - pos: -1.5,28.5 parent: 2 type: Transform - - uid: 26438 + - uid: 26516 components: - pos: -3.5,25.5 parent: 2 type: Transform - - uid: 26439 + - uid: 26517 components: - pos: -3.5,24.5 parent: 2 type: Transform - - uid: 26440 + - uid: 26518 components: - pos: 59.5,48.5 parent: 2 type: Transform - - uid: 26441 + - uid: 26519 components: - pos: 34.5,26.5 parent: 2 type: Transform - - uid: 26442 + - uid: 26520 components: - pos: 34.5,25.5 parent: 2 type: Transform - - uid: 26443 + - uid: 26521 components: - pos: 34.5,24.5 parent: 2 type: Transform - - uid: 26444 + - uid: 26522 components: - rot: -1.5707963267948966 rad pos: 37.5,21.5 parent: 2 type: Transform - - uid: 26445 + - uid: 26523 components: - pos: 36.5,21.5 parent: 2 type: Transform - - uid: 26446 + - uid: 26524 components: - pos: 33.5,21.5 parent: 2 type: Transform - - uid: 26447 + - uid: 26525 components: - pos: 33.5,20.5 parent: 2 type: Transform - - uid: 26448 + - uid: 26526 components: - rot: -1.5707963267948966 rad pos: 37.5,22.5 parent: 2 type: Transform - - uid: 26449 + - uid: 26527 components: - rot: -1.5707963267948966 rad pos: 38.5,22.5 parent: 2 type: Transform - - uid: 26450 + - uid: 26528 components: - pos: 35.5,21.5 parent: 2 type: Transform - - uid: 26451 + - uid: 26529 components: - rot: -1.5707963267948966 rad pos: 37.5,19.5 parent: 2 type: Transform - - uid: 26452 + - uid: 26530 components: - rot: -1.5707963267948966 rad pos: 39.5,22.5 parent: 2 type: Transform - - uid: 26453 + - uid: 26531 components: - rot: -1.5707963267948966 rad pos: 40.5,22.5 parent: 2 type: Transform - - uid: 26454 + - uid: 26532 components: - rot: -1.5707963267948966 rad pos: 37.5,18.5 parent: 2 type: Transform - - uid: 26455 + - uid: 26533 components: - rot: 3.141592653589793 rad pos: 35.5,24.5 parent: 2 type: Transform - - uid: 26456 + - uid: 26534 components: - rot: 3.141592653589793 rad pos: 37.5,24.5 parent: 2 type: Transform - - uid: 26457 + - uid: 26535 components: - rot: -1.5707963267948966 rad pos: 39.5,24.5 parent: 2 type: Transform - - uid: 26458 + - uid: 26536 components: - rot: -1.5707963267948966 rad pos: 46.5,25.5 parent: 2 type: Transform - - uid: 26459 + - uid: 26537 components: - rot: -1.5707963267948966 rad pos: 61.5,25.5 parent: 2 type: Transform - - uid: 26460 + - uid: 26538 components: - rot: -1.5707963267948966 rad pos: 59.5,25.5 parent: 2 type: Transform - - uid: 26461 + - uid: 26539 components: - rot: -1.5707963267948966 rad pos: 58.5,25.5 parent: 2 type: Transform - - uid: 26462 + - uid: 26540 components: - rot: -1.5707963267948966 rad pos: 47.5,25.5 parent: 2 type: Transform - - uid: 26463 + - uid: 26541 components: - rot: -1.5707963267948966 rad pos: 60.5,25.5 parent: 2 type: Transform - - uid: 26464 + - uid: 26542 components: - rot: -1.5707963267948966 rad pos: 57.5,25.5 parent: 2 type: Transform - - uid: 26465 + - uid: 26543 components: - rot: -1.5707963267948966 rad pos: 54.5,25.5 parent: 2 type: Transform - - uid: 26466 + - uid: 26544 components: - rot: -1.5707963267948966 rad pos: 50.5,25.5 parent: 2 type: Transform - - uid: 26467 + - uid: 26545 components: - rot: -1.5707963267948966 rad pos: 45.5,25.5 parent: 2 type: Transform - - uid: 26468 + - uid: 26546 components: - rot: -1.5707963267948966 rad pos: 45.5,24.5 parent: 2 type: Transform - - uid: 26469 + - uid: 26547 components: - rot: -1.5707963267948966 rad pos: 45.5,23.5 parent: 2 type: Transform - - uid: 26470 + - uid: 26548 components: - rot: -1.5707963267948966 rad pos: 56.5,25.5 parent: 2 type: Transform - - uid: 26471 + - uid: 26549 components: - rot: -1.5707963267948966 rad pos: 55.5,25.5 parent: 2 type: Transform - - uid: 26472 + - uid: 26550 components: - rot: -1.5707963267948966 rad pos: 49.5,25.5 parent: 2 type: Transform - - uid: 26473 + - uid: 26551 components: - rot: -1.5707963267948966 rad pos: 48.5,25.5 parent: 2 type: Transform - - uid: 26474 + - uid: 26552 components: - rot: -1.5707963267948966 rad pos: 53.5,25.5 parent: 2 type: Transform - - uid: 26475 + - uid: 26553 components: - rot: -1.5707963267948966 rad pos: 62.5,25.5 parent: 2 type: Transform - - uid: 26476 + - uid: 26554 components: - rot: -1.5707963267948966 rad pos: 52.5,25.5 parent: 2 type: Transform - - uid: 26477 + - uid: 26555 components: - rot: -1.5707963267948966 rad pos: 51.5,25.5 parent: 2 type: Transform - - uid: 26478 + - uid: 26556 components: - rot: -1.5707963267948966 rad pos: 64.5,25.5 parent: 2 type: Transform - - uid: 26479 + - uid: 26557 components: - rot: -1.5707963267948966 rad pos: 63.5,25.5 parent: 2 type: Transform - - uid: 26480 + - uid: 26558 components: - rot: -1.5707963267948966 rad pos: 64.5,24.5 parent: 2 type: Transform - - uid: 26481 + - uid: 26559 components: - rot: -1.5707963267948966 rad pos: 64.5,23.5 parent: 2 type: Transform - - uid: 26482 + - uid: 26560 components: - rot: -1.5707963267948966 rad pos: 64.5,22.5 parent: 2 type: Transform - - uid: 26483 + - uid: 26561 components: - pos: 64.5,21.5 parent: 2 type: Transform - - uid: 26484 + - uid: 26562 components: - rot: -1.5707963267948966 rad pos: 64.5,20.5 parent: 2 type: Transform - - uid: 26485 + - uid: 26563 components: - rot: -1.5707963267948966 rad pos: 63.5,20.5 parent: 2 type: Transform - - uid: 26486 + - uid: 26564 components: - rot: -1.5707963267948966 rad pos: 63.5,19.5 parent: 2 type: Transform - - uid: 26487 + - uid: 26565 components: - rot: -1.5707963267948966 rad pos: 45.5,22.5 parent: 2 type: Transform - - uid: 26488 + - uid: 26566 components: - rot: -1.5707963267948966 rad pos: 44.5,22.5 parent: 2 type: Transform - - uid: 26489 + - uid: 26567 components: - rot: -1.5707963267948966 rad pos: 43.5,22.5 parent: 2 type: Transform - - uid: 26490 + - uid: 26568 components: - rot: -1.5707963267948966 rad pos: 41.5,22.5 parent: 2 type: Transform - - uid: 26491 + - uid: 26569 components: - rot: 3.141592653589793 rad pos: 31.5,33.5 parent: 2 type: Transform - - uid: 26492 + - uid: 26570 components: - pos: 43.5,24.5 parent: 2 type: Transform - - uid: 26493 + - uid: 26571 components: - pos: 43.5,25.5 parent: 2 type: Transform - - uid: 26494 + - uid: 26572 components: - pos: 43.5,26.5 parent: 2 type: Transform - - uid: 26495 + - uid: 26573 components: - pos: 43.5,27.5 parent: 2 type: Transform - - uid: 26496 + - uid: 26574 components: - pos: 51.5,59.5 parent: 2 type: Transform - - uid: 26497 + - uid: 26575 components: - pos: 50.5,59.5 parent: 2 type: Transform - - uid: 26498 + - uid: 26576 components: - pos: 50.5,55.5 parent: 2 type: Transform - - uid: 26499 + - uid: 26577 components: - pos: 51.5,55.5 parent: 2 type: Transform - - uid: 26500 + - uid: 26578 components: - pos: 51.5,54.5 parent: 2 type: Transform - - uid: 26501 + - uid: 26579 components: - pos: 57.5,54.5 parent: 2 type: Transform - - uid: 26502 + - uid: 26580 components: - pos: 57.5,55.5 parent: 2 type: Transform - - uid: 26503 + - uid: 26581 components: - pos: 57.5,59.5 parent: 2 type: Transform - - uid: 26504 + - uid: 26582 components: - pos: 58.5,59.5 parent: 2 type: Transform - - uid: 26505 + - uid: 26583 components: - pos: 58.5,55.5 parent: 2 type: Transform - - uid: 26506 + - uid: 26584 components: - pos: 51.5,60.5 parent: 2 type: Transform - - uid: 26507 + - uid: 26585 components: - pos: 52.5,60.5 parent: 2 type: Transform - - uid: 26508 + - uid: 26586 components: - pos: 52.5,61.5 parent: 2 type: Transform - - uid: 26509 + - uid: 26587 components: - pos: 56.5,61.5 parent: 2 type: Transform - - uid: 26510 + - uid: 26588 components: - pos: 56.5,60.5 parent: 2 type: Transform - - uid: 26511 + - uid: 26589 components: - pos: 65.5,27.5 parent: 2 type: Transform - - uid: 26512 + - uid: 26590 components: - rot: -1.5707963267948966 rad pos: 64.5,13.5 parent: 2 type: Transform - - uid: 26513 + - uid: 26591 components: - rot: -1.5707963267948966 rad pos: 64.5,12.5 parent: 2 type: Transform - - uid: 26514 + - uid: 26592 components: - rot: -1.5707963267948966 rad pos: 64.5,11.5 parent: 2 type: Transform - - uid: 26515 + - uid: 26593 components: - rot: -1.5707963267948966 rad pos: 64.5,10.5 parent: 2 type: Transform - - uid: 26516 + - uid: 26594 components: - rot: -1.5707963267948966 rad pos: 64.5,8.5 parent: 2 type: Transform - - uid: 26517 + - uid: 26595 components: - rot: -1.5707963267948966 rad pos: 64.5,9.5 parent: 2 type: Transform - - uid: 26518 + - uid: 26596 components: - rot: -1.5707963267948966 rad pos: 64.5,7.5 parent: 2 type: Transform - - uid: 26519 + - uid: 26597 components: - rot: -1.5707963267948966 rad pos: 64.5,6.5 parent: 2 type: Transform - - uid: 26520 + - uid: 26598 components: - pos: 66.5,27.5 parent: 2 type: Transform - - uid: 26521 + - uid: 26599 components: - pos: 66.5,27.5 parent: 2 type: Transform - - uid: 26522 + - uid: 26600 components: - pos: 66.5,26.5 parent: 2 type: Transform - - uid: 26523 + - uid: 26601 components: - pos: 66.5,24.5 parent: 2 type: Transform - - uid: 26524 + - uid: 26602 components: - pos: 66.5,22.5 parent: 2 type: Transform - - uid: 26525 + - uid: 26603 components: - pos: 66.5,21.5 parent: 2 type: Transform - - uid: 26526 + - uid: 26604 components: - pos: 66.5,20.5 parent: 2 type: Transform - - uid: 26527 + - uid: 26605 components: - pos: 66.5,19.5 parent: 2 type: Transform - - uid: 26528 + - uid: 26606 components: - pos: 66.5,18.5 parent: 2 type: Transform - - uid: 26529 + - uid: 26607 components: - pos: 65.5,18.5 parent: 2 type: Transform - - uid: 26530 + - uid: 26608 components: - pos: 65.5,17.5 parent: 2 type: Transform - - uid: 26531 + - uid: 26609 components: - pos: 65.5,16.5 parent: 2 type: Transform - - uid: 26532 + - uid: 26610 components: - pos: 66.5,16.5 parent: 2 type: Transform - - uid: 26533 + - uid: 26611 components: - pos: 66.5,15.5 parent: 2 type: Transform - - uid: 26534 + - uid: 26612 components: - pos: 66.5,14.5 parent: 2 type: Transform - - uid: 26535 + - uid: 26613 components: - pos: 66.5,13.5 parent: 2 type: Transform - - uid: 26536 + - uid: 26614 components: - pos: 67.5,5.5 parent: 2 type: Transform - - uid: 26537 + - uid: 26615 components: - pos: 68.5,9.5 parent: 2 type: Transform - - uid: 26538 + - uid: 26616 components: - pos: 67.5,13.5 parent: 2 type: Transform - - uid: 26539 + - uid: 26617 components: - pos: 67.5,12.5 parent: 2 type: Transform - - uid: 26540 + - uid: 26618 components: - pos: 67.5,6.5 parent: 2 type: Transform - - uid: 26541 + - uid: 26619 components: - pos: 43.5,8.5 parent: 2 type: Transform - - uid: 26542 + - uid: 26620 components: - pos: 48.5,4.5 parent: 2 type: Transform - - uid: 26543 + - uid: 26621 components: - pos: 48.5,5.5 parent: 2 type: Transform - - uid: 26544 + - uid: 26622 components: - pos: 49.5,3.5 parent: 2 type: Transform - - uid: 26545 + - uid: 26623 components: - pos: 50.5,3.5 parent: 2 type: Transform - - uid: 26546 + - uid: 26624 components: - pos: 50.5,4.5 parent: 2 type: Transform - - uid: 26547 + - uid: 26625 components: - pos: 51.5,4.5 parent: 2 type: Transform - - uid: 26548 + - uid: 26626 components: - pos: 52.5,4.5 parent: 2 type: Transform - - uid: 26549 + - uid: 26627 components: - pos: 53.5,4.5 parent: 2 type: Transform - - uid: 26550 + - uid: 26628 components: - pos: 54.5,4.5 parent: 2 type: Transform - - uid: 26551 + - uid: 26629 components: - pos: 54.5,3.5 parent: 2 type: Transform - - uid: 26552 + - uid: 26630 components: - pos: 55.5,3.5 parent: 2 type: Transform - - uid: 26553 + - uid: 26631 components: - pos: 56.5,3.5 parent: 2 type: Transform - - uid: 26554 + - uid: 26632 components: - pos: 57.5,3.5 parent: 2 type: Transform - - uid: 26555 + - uid: 26633 components: - pos: 58.5,3.5 parent: 2 type: Transform - - uid: 26556 + - uid: 26634 components: - pos: 64.5,5.5 parent: 2 type: Transform - - uid: 26557 + - uid: 26635 components: - pos: 64.5,4.5 parent: 2 type: Transform - - uid: 26558 + - uid: 26636 components: - pos: 64.5,3.5 parent: 2 type: Transform - - uid: 26559 + - uid: 26637 components: - pos: 63.5,3.5 parent: 2 type: Transform - - uid: 26560 + - uid: 26638 components: - pos: 62.5,3.5 parent: 2 type: Transform - - uid: 26561 + - uid: 26639 components: - pos: 61.5,3.5 parent: 2 type: Transform - - uid: 26562 + - uid: 26640 components: - pos: 60.5,3.5 parent: 2 type: Transform - - uid: 26563 + - uid: 26641 components: - pos: 59.5,3.5 parent: 2 type: Transform - - uid: 26564 + - uid: 26642 components: - rot: -1.5707963267948966 rad pos: 59.5,46.5 parent: 2 type: Transform - - uid: 26565 + - uid: 26643 components: - pos: 68.5,6.5 parent: 2 type: Transform - - uid: 26566 + - uid: 26644 components: - pos: 47.5,-17.5 parent: 2 type: Transform - - uid: 26567 + - uid: 26645 components: - pos: 44.5,13.5 parent: 2 type: Transform - - uid: 26568 + - uid: 26646 components: - pos: 47.5,9.5 parent: 2 type: Transform - - uid: 26569 + - uid: 26647 components: - pos: 44.5,3.5 parent: 2 type: Transform - - uid: 26570 + - uid: 26648 components: - rot: 3.141592653589793 rad pos: 39.5,10.5 parent: 2 type: Transform - - uid: 26571 + - uid: 26649 components: - pos: 48.5,8.5 parent: 2 type: Transform - - uid: 26572 + - uid: 26650 components: - pos: 33.5,19.5 parent: 2 type: Transform - - uid: 26573 + - uid: 26651 components: - rot: -1.5707963267948966 rad pos: 41.5,24.5 parent: 2 type: Transform - - uid: 26574 + - uid: 26652 components: - rot: 3.141592653589793 rad pos: 33.5,27.5 parent: 2 type: Transform - - uid: 26575 + - uid: 26653 components: - rot: 3.141592653589793 rad pos: 25.5,29.5 parent: 2 type: Transform - - uid: 26576 + - uid: 26654 components: - pos: 42.5,22.5 parent: 2 type: Transform - - uid: 26577 + - uid: 26655 components: - pos: 47.5,-16.5 parent: 2 type: Transform - - uid: 26578 + - uid: 26656 components: - rot: -1.5707963267948966 rad pos: 39.5,-16.5 parent: 2 type: Transform - - uid: 26579 + - uid: 26657 components: - rot: -1.5707963267948966 rad pos: 40.5,-16.5 parent: 2 type: Transform - - uid: 26580 + - uid: 26658 components: - rot: -1.5707963267948966 rad pos: 40.5,-15.5 parent: 2 type: Transform - - uid: 26581 + - uid: 26659 components: - rot: -1.5707963267948966 rad pos: 41.5,-15.5 parent: 2 type: Transform - - uid: 26582 + - uid: 26660 components: - pos: 48.5,-15.5 parent: 2 type: Transform - - uid: 26583 + - uid: 26661 components: - pos: 44.5,-17.5 parent: 2 type: Transform - - uid: 26584 + - uid: 26662 components: - pos: 44.5,-16.5 parent: 2 type: Transform - - uid: 26585 + - uid: 26663 components: - pos: 11.5,-18.5 parent: 2 type: Transform - - uid: 26586 + - uid: 26664 components: - pos: 44.5,9.5 parent: 2 type: Transform - - uid: 26587 + - uid: 26665 components: - rot: 1.5707963267948966 rad pos: 69.5,-12.5 parent: 2 type: Transform - - uid: 26588 + - uid: 26666 components: - rot: 1.5707963267948966 rad pos: 69.5,-10.5 parent: 2 type: Transform - - uid: 26589 + - uid: 26667 components: - rot: 1.5707963267948966 rad pos: 66.5,-14.5 parent: 2 type: Transform - - uid: 26590 + - uid: 26668 components: - rot: 1.5707963267948966 rad pos: 69.5,-14.5 parent: 2 type: Transform - - uid: 26591 + - uid: 26669 components: - pos: 48.5,-14.5 parent: 2 type: Transform - - uid: 26592 + - uid: 26670 components: - pos: 48.5,-16.5 parent: 2 type: Transform - - uid: 26593 + - uid: 26671 components: - pos: 43.5,-16.5 parent: 2 type: Transform - - uid: 26594 + - uid: 26672 components: - pos: 49.5,-14.5 parent: 2 type: Transform - - uid: 26595 + - uid: 26673 components: - pos: 50.5,-14.5 parent: 2 type: Transform - - uid: 26596 + - uid: 26674 components: - pos: 51.5,-14.5 parent: 2 type: Transform - - uid: 26597 + - uid: 26675 components: - rot: 3.141592653589793 rad pos: 54.5,-15.5 parent: 2 type: Transform - - uid: 26598 + - uid: 26676 components: - rot: 3.141592653589793 rad pos: 60.5,-15.5 parent: 2 type: Transform - - uid: 26599 + - uid: 26677 components: - rot: 3.141592653589793 rad pos: 57.5,-15.5 parent: 2 type: Transform - - uid: 26600 + - uid: 26678 components: - rot: 3.141592653589793 rad pos: 53.5,-15.5 parent: 2 type: Transform - - uid: 26601 + - uid: 26679 components: - rot: 3.141592653589793 rad pos: 53.5,-16.5 parent: 2 type: Transform - - uid: 26602 + - uid: 26680 components: - rot: 3.141592653589793 rad pos: 51.5,-15.5 parent: 2 type: Transform - - uid: 26603 + - uid: 26681 components: - pos: 63.5,-14.5 parent: 2 type: Transform - - uid: 26604 + - uid: 26682 components: - pos: 64.5,-14.5 parent: 2 type: Transform - - uid: 26605 + - uid: 26683 components: - pos: 65.5,-14.5 parent: 2 type: Transform - - uid: 26606 + - uid: 26684 components: - rot: 1.5707963267948966 rad pos: 69.5,-4.5 parent: 2 type: Transform - - uid: 26607 + - uid: 26685 components: - rot: 3.141592653589793 rad pos: 66.5,-2.5 parent: 2 type: Transform - - uid: 26608 + - uid: 26686 components: - pos: 68.5,-14.5 parent: 2 type: Transform - - uid: 26609 + - uid: 26687 components: - rot: 1.5707963267948966 rad pos: 69.5,-2.5 parent: 2 type: Transform - - uid: 26610 + - uid: 26688 components: - pos: 63.5,-15.5 parent: 2 type: Transform - - uid: 26611 + - uid: 26689 components: - rot: 3.141592653589793 rad pos: 51.5,-16.5 parent: 2 type: Transform - - uid: 26612 + - uid: 26690 components: - pos: 63.5,-16.5 parent: 2 type: Transform - - uid: 26613 + - uid: 26691 components: - pos: 63.5,-17.5 parent: 2 type: Transform - - uid: 26614 + - uid: 26692 components: - pos: 63.5,-19.5 parent: 2 type: Transform - - uid: 26615 + - uid: 26693 components: - pos: 63.5,-21.5 parent: 2 type: Transform - - uid: 26616 + - uid: 26694 components: - pos: 63.5,-23.5 parent: 2 type: Transform - - uid: 26617 + - uid: 26695 components: - pos: 63.5,-25.5 parent: 2 type: Transform - - uid: 26618 + - uid: 26696 components: - pos: 63.5,-27.5 parent: 2 type: Transform - - uid: 26619 + - uid: 26697 components: - pos: 64.5,-27.5 parent: 2 type: Transform - - uid: 26620 + - uid: 26698 components: - pos: 69.5,-31.5 parent: 2 type: Transform - - uid: 26621 + - uid: 26699 components: - pos: 61.5,-16.5 parent: 2 type: Transform - - uid: 26622 + - uid: 26700 components: - pos: 61.5,-17.5 parent: 2 type: Transform - - uid: 26623 + - uid: 26701 components: - pos: 61.5,-19.5 parent: 2 type: Transform - - uid: 26624 + - uid: 26702 components: - pos: 61.5,-21.5 parent: 2 type: Transform - - uid: 26625 + - uid: 26703 components: - pos: 61.5,-23.5 parent: 2 type: Transform - - uid: 26626 + - uid: 26704 components: - pos: 61.5,-25.5 parent: 2 type: Transform - - uid: 26627 + - uid: 26705 components: - pos: 69.5,-32.5 parent: 2 type: Transform - - uid: 26628 + - uid: 26706 components: - pos: 60.5,-16.5 parent: 2 type: Transform - - uid: 26629 + - uid: 26707 components: - pos: -2.5,-36.5 parent: 2 type: Transform - - uid: 26630 + - uid: 26708 components: - pos: 43.5,-15.5 parent: 2 type: Transform - - uid: 26631 + - uid: 26709 components: - pos: 42.5,-15.5 parent: 2 type: Transform - - uid: 26632 + - uid: 26710 components: - pos: 68.5,-15.5 parent: 2 type: Transform - - uid: 26633 + - uid: 26711 components: - rot: 1.5707963267948966 rad pos: 69.5,-6.5 parent: 2 type: Transform - - uid: 26634 + - uid: 26712 components: - rot: -1.5707963267948966 rad pos: 57.5,37.5 parent: 2 type: Transform - - uid: 26635 + - uid: 26713 components: - pos: 70.5,-30.5 parent: 2 type: Transform - - uid: 26636 + - uid: 26714 components: - pos: 72.5,-39.5 parent: 2 type: Transform - - uid: 26637 + - uid: 26715 components: - pos: 76.5,-32.5 parent: 2 type: Transform - - uid: 26638 + - uid: 26716 components: - pos: 65.5,-37.5 parent: 2 type: Transform - - uid: 26639 + - uid: 26717 components: - pos: 63.5,-40.5 parent: 2 type: Transform - - uid: 26640 + - uid: 26718 components: - pos: 63.5,-38.5 parent: 2 type: Transform - - uid: 26641 + - uid: 26719 components: - pos: 76.5,-31.5 parent: 2 type: Transform - - uid: 26642 + - uid: 26720 components: - rot: -1.5707963267948966 rad pos: 60.5,-25.5 parent: 2 type: Transform - - uid: 26643 + - uid: 26721 components: - pos: 52.5,-48.5 parent: 2 type: Transform - - uid: 26644 + - uid: 26722 components: - pos: 52.5,-47.5 parent: 2 type: Transform - - uid: 26645 + - uid: 26723 components: - pos: 52.5,-46.5 parent: 2 type: Transform - - uid: 26646 + - uid: 26724 components: - pos: 53.5,-46.5 parent: 2 type: Transform - - uid: 26647 + - uid: 26725 components: - pos: 54.5,-46.5 parent: 2 type: Transform - - uid: 26648 + - uid: 26726 components: - pos: 71.5,-66.5 parent: 2 type: Transform - - uid: 26649 + - uid: 26727 components: - pos: 75.5,-31.5 parent: 2 type: Transform - - uid: 26650 + - uid: 26728 components: - pos: 75.5,-30.5 parent: 2 type: Transform - - uid: 26651 + - uid: 26729 components: - pos: 74.5,-30.5 parent: 2 type: Transform - - uid: 26652 + - uid: 26730 components: - rot: -1.5707963267948966 rad pos: 70.5,-29.5 parent: 2 type: Transform - - uid: 26653 + - uid: 26731 components: - pos: 64.5,-42.5 parent: 2 type: Transform - - uid: 26654 + - uid: 26732 components: - pos: 55.5,-46.5 parent: 2 type: Transform - - uid: 26655 + - uid: 26733 components: - pos: 57.5,-46.5 parent: 2 type: Transform - - uid: 26656 + - uid: 26734 components: - pos: 58.5,-46.5 parent: 2 type: Transform - - uid: 26657 + - uid: 26735 components: - pos: 58.5,-47.5 parent: 2 type: Transform - - uid: 26658 + - uid: 26736 components: - pos: 58.5,-49.5 parent: 2 type: Transform - - uid: 26659 + - uid: 26737 components: - pos: 59.5,-50.5 parent: 2 type: Transform - - uid: 26660 + - uid: 26738 components: - pos: 60.5,-50.5 parent: 2 type: Transform - - uid: 26661 + - uid: 26739 components: - pos: 64.5,-50.5 parent: 2 type: Transform - - uid: 26662 + - uid: 26740 components: - pos: 65.5,-50.5 parent: 2 type: Transform - - uid: 26663 + - uid: 26741 components: - pos: 63.5,-37.5 parent: 2 type: Transform - - uid: 26664 + - uid: 26742 components: - pos: 7.5,-39.5 parent: 2 type: Transform - - uid: 26665 + - uid: 26743 components: - rot: -1.5707963267948966 rad pos: 53.5,-64.5 parent: 2 type: Transform - - uid: 26666 + - uid: 26744 components: - pos: 63.5,-39.5 parent: 2 type: Transform - - uid: 26667 + - uid: 26745 components: - pos: 63.5,-41.5 parent: 2 type: Transform - - uid: 26668 + - uid: 26746 components: - pos: 52.5,-49.5 parent: 2 type: Transform - - uid: 26669 + - uid: 26747 components: - pos: 53.5,-49.5 parent: 2 type: Transform - - uid: 26670 + - uid: 26748 components: - pos: 53.5,-50.5 parent: 2 type: Transform - - uid: 26671 + - uid: 26749 components: - pos: 54.5,-50.5 parent: 2 type: Transform - - uid: 26672 + - uid: 26750 components: - pos: 55.5,-54.5 parent: 2 type: Transform - - uid: 26673 + - uid: 26751 components: - pos: 65.5,-53.5 parent: 2 type: Transform - - uid: 26674 + - uid: 26752 components: - pos: 54.5,-54.5 parent: 2 type: Transform - - uid: 26675 + - uid: 26753 components: - pos: 59.5,-53.5 parent: 2 type: Transform - - uid: 26676 + - uid: 26754 components: - pos: 56.5,-54.5 parent: 2 type: Transform - - uid: 26677 + - uid: 26755 components: - pos: 64.5,-56.5 parent: 2 type: Transform - - uid: 26678 + - uid: 26756 components: - pos: 64.5,-55.5 parent: 2 type: Transform - - uid: 26679 + - uid: 26757 components: - pos: 60.5,-56.5 parent: 2 type: Transform - - uid: 26680 + - uid: 26758 components: - pos: 60.5,-55.5 parent: 2 type: Transform - - uid: 26681 + - uid: 26759 components: - pos: 66.5,-50.5 parent: 2 type: Transform - - uid: 26682 + - uid: 26760 components: - pos: 66.5,-53.5 parent: 2 type: Transform - - uid: 26683 + - uid: 26761 components: - pos: 65.5,-55.5 parent: 2 type: Transform - - uid: 26684 + - uid: 26762 components: - pos: 59.5,-55.5 parent: 2 type: Transform - - uid: 26685 + - uid: 26763 components: - pos: 58.5,-53.5 parent: 2 type: Transform - - uid: 26686 + - uid: 26764 components: - pos: 58.5,-50.5 parent: 2 type: Transform - - uid: 26687 + - uid: 26765 components: - pos: 76.5,-42.5 parent: 2 type: Transform - - uid: 26688 + - uid: 26766 components: - pos: 44.5,-65.5 parent: 2 type: Transform - - uid: 26689 + - uid: 26767 components: - pos: 70.5,-31.5 parent: 2 type: Transform - - uid: 26690 + - uid: 26768 components: - pos: 64.5,-30.5 parent: 2 type: Transform - - uid: 26691 + - uid: 26769 components: - pos: 73.5,-39.5 parent: 2 type: Transform - - uid: 26692 + - uid: 26770 components: - pos: 73.5,-42.5 parent: 2 type: Transform - - uid: 26693 + - uid: 26771 components: - pos: 73.5,-41.5 parent: 2 type: Transform - - uid: 26694 + - uid: 26772 components: - pos: 68.5,-50.5 parent: 2 type: Transform - - uid: 26695 + - uid: 26773 components: - pos: 67.5,-50.5 parent: 2 type: Transform - - uid: 26696 + - uid: 26774 components: - pos: 65.5,-27.5 parent: 2 type: Transform - - uid: 26697 + - uid: 26775 components: - pos: 65.5,-30.5 parent: 2 type: Transform - - uid: 26698 + - uid: 26776 components: - pos: 76.5,-39.5 parent: 2 type: Transform - - uid: 26699 + - uid: 26777 components: - pos: 76.5,-38.5 parent: 2 type: Transform - - uid: 26700 + - uid: 26778 components: - pos: 79.5,-32.5 parent: 2 type: Transform - - uid: 26701 + - uid: 26779 components: - pos: 79.5,-38.5 parent: 2 type: Transform - - uid: 26702 + - uid: 26780 components: - rot: -1.5707963267948966 rad pos: 74.5,-27.5 parent: 2 type: Transform - - uid: 26703 + - uid: 26781 components: - pos: 78.5,-43.5 parent: 2 type: Transform - - uid: 26704 + - uid: 26782 components: - pos: 76.5,-41.5 parent: 2 type: Transform - - uid: 26705 + - uid: 26783 components: - pos: 76.5,-40.5 parent: 2 type: Transform - - uid: 26706 + - uid: 26784 components: - pos: 24.5,-57.5 parent: 2 type: Transform - - uid: 26707 + - uid: 26785 components: - rot: -1.5707963267948966 rad pos: 32.5,-80.5 parent: 2 type: Transform - - uid: 26708 + - uid: 26786 components: - pos: -45.5,-38.5 parent: 2 type: Transform - - uid: 26709 + - uid: 26787 components: - pos: 53.5,-54.5 parent: 2 type: Transform - - uid: 26710 + - uid: 26788 components: - pos: 53.5,-55.5 parent: 2 type: Transform - - uid: 26711 + - uid: 26789 components: - pos: 53.5,-56.5 parent: 2 type: Transform - - uid: 26712 + - uid: 26790 components: - rot: 3.141592653589793 rad pos: 52.5,-62.5 parent: 2 type: Transform - - uid: 26713 + - uid: 26791 components: - rot: 3.141592653589793 rad pos: 48.5,-62.5 parent: 2 type: Transform - - uid: 26714 + - uid: 26792 components: - rot: 3.141592653589793 rad pos: 47.5,-62.5 parent: 2 type: Transform - - uid: 26715 + - uid: 26793 components: - pos: 34.5,-61.5 parent: 2 type: Transform - - uid: 26716 + - uid: 26794 components: - pos: 35.5,-61.5 parent: 2 type: Transform - - uid: 26717 + - uid: 26795 components: - pos: 36.5,-61.5 parent: 2 type: Transform - - uid: 26718 + - uid: 26796 components: - pos: 37.5,-61.5 parent: 2 type: Transform - - uid: 26719 + - uid: 26797 components: - pos: 37.5,-62.5 parent: 2 type: Transform - - uid: 26720 + - uid: 26798 components: - pos: 37.5,-63.5 parent: 2 type: Transform - - uid: 26721 + - uid: 26799 components: - pos: 37.5,-65.5 parent: 2 type: Transform - - uid: 26722 + - uid: 26800 components: - pos: 37.5,-67.5 parent: 2 type: Transform - - uid: 26723 + - uid: 26801 components: - pos: 37.5,-68.5 parent: 2 type: Transform - - uid: 26724 + - uid: 26802 components: - rot: -1.5707963267948966 rad pos: 48.5,-66.5 parent: 2 type: Transform - - uid: 26725 + - uid: 26803 components: - pos: 41.5,-67.5 parent: 2 type: Transform - - uid: 26726 + - uid: 26804 components: - pos: 41.5,-68.5 parent: 2 type: Transform - - uid: 26727 + - uid: 26805 components: - pos: -33.5,-14.5 parent: 2 type: Transform - - uid: 26728 + - uid: 26806 components: - pos: -33.5,-18.5 parent: 2 type: Transform - - uid: 26729 + - uid: 26807 components: - pos: -33.5,-19.5 parent: 2 type: Transform - - uid: 26730 + - uid: 26808 components: - rot: 1.5707963267948966 rad pos: 44.5,-81.5 parent: 2 type: Transform - - uid: 26731 + - uid: 26809 components: - rot: -1.5707963267948966 rad pos: 57.5,41.5 parent: 2 type: Transform - - uid: 26732 + - uid: 26810 components: - pos: -17.5,-47.5 parent: 2 type: Transform - - uid: 26733 + - uid: 26811 components: - pos: -22.5,-44.5 parent: 2 type: Transform - - uid: 26734 + - uid: 26812 components: - rot: 3.141592653589793 rad pos: 24.5,26.5 parent: 2 type: Transform - - uid: 26735 + - uid: 26813 components: - pos: 56.5,-56.5 parent: 2 type: Transform - - uid: 26736 + - uid: 26814 components: - pos: 56.5,-57.5 parent: 2 type: Transform - - uid: 26737 + - uid: 26815 components: - pos: 57.5,-57.5 parent: 2 type: Transform - - uid: 26738 + - uid: 26816 components: - pos: 57.5,-58.5 parent: 2 type: Transform - - uid: 26739 + - uid: 26817 components: - pos: 58.5,-58.5 parent: 2 type: Transform - - uid: 26740 + - uid: 26818 components: - pos: 58.5,-61.5 parent: 2 type: Transform - - uid: 26741 + - uid: 26819 components: - pos: 53.5,-62.5 parent: 2 type: Transform - - uid: 26742 + - uid: 26820 components: - pos: 53.5,-25.5 parent: 2 type: Transform - - uid: 26743 + - uid: 26821 components: - pos: 52.5,-26.5 parent: 2 type: Transform - - uid: 26744 + - uid: 26822 components: - pos: -17.5,-49.5 parent: 2 type: Transform - - uid: 26745 + - uid: 26823 components: - pos: -17.5,-48.5 parent: 2 type: Transform - - uid: 26746 + - uid: 26824 components: - pos: -22.5,-45.5 parent: 2 type: Transform - - uid: 26747 + - uid: 26825 components: - pos: -22.5,-46.5 parent: 2 type: Transform - - uid: 26748 + - uid: 26826 components: - pos: -22.5,-47.5 parent: 2 type: Transform - - uid: 26749 + - uid: 26827 components: - rot: 1.5707963267948966 rad pos: 33.5,-88.5 parent: 2 type: Transform - - uid: 26750 + - uid: 26828 components: - rot: -1.5707963267948966 rad pos: 36.5,-74.5 parent: 2 type: Transform - - uid: 26751 + - uid: 26829 components: - rot: -1.5707963267948966 rad pos: 36.5,-75.5 parent: 2 type: Transform - - uid: 26752 + - uid: 26830 components: - pos: 42.5,-74.5 parent: 2 type: Transform - - uid: 26753 + - uid: 26831 components: - rot: 3.141592653589793 rad pos: 45.5,-74.5 parent: 2 type: Transform - - uid: 26754 + - uid: 26832 components: - rot: 3.141592653589793 rad pos: 46.5,-74.5 parent: 2 type: Transform - - uid: 26755 + - uid: 26833 components: - rot: 1.5707963267948966 rad pos: 34.5,-90.5 parent: 2 type: Transform - - uid: 26756 + - uid: 26834 components: - rot: 3.141592653589793 rad pos: 46.5,-70.5 parent: 2 type: Transform - - uid: 26757 + - uid: 26835 components: - pos: 33.5,-70.5 parent: 2 type: Transform - - uid: 26758 + - uid: 26836 components: - pos: 32.5,-70.5 parent: 2 type: Transform - - uid: 26759 + - uid: 26837 components: - pos: 12.5,-70.5 parent: 2 type: Transform - - uid: 26760 + - uid: 26838 components: - pos: 45.5,-70.5 parent: 2 type: Transform - - uid: 26761 + - uid: 26839 components: - pos: 41.5,-69.5 parent: 2 type: Transform - - uid: 26762 + - uid: 26840 components: - rot: -1.5707963267948966 rad pos: 42.5,-65.5 parent: 2 type: Transform - - uid: 26763 + - uid: 26841 components: - rot: -1.5707963267948966 rad pos: 41.5,-65.5 parent: 2 type: Transform - - uid: 26764 + - uid: 26842 components: - pos: 45.5,-69.5 parent: 2 type: Transform - - uid: 26765 + - uid: 26843 components: - pos: 37.5,-69.5 parent: 2 type: Transform - - uid: 26766 + - uid: 26844 components: - pos: 33.5,-69.5 parent: 2 type: Transform - - uid: 26767 + - uid: 26845 components: - rot: 1.5707963267948966 rad pos: 28.5,-75.5 parent: 2 type: Transform - - uid: 26768 + - uid: 26846 components: - rot: -1.5707963267948966 rad pos: 31.5,-94.5 parent: 2 type: Transform - - uid: 26769 + - uid: 26847 components: - rot: -1.5707963267948966 rad pos: 32.5,-75.5 parent: 2 type: Transform - - uid: 26770 + - uid: 26848 components: - pos: 7.5,-77.5 parent: 2 type: Transform - - uid: 26771 + - uid: 26849 components: - rot: 3.141592653589793 rad pos: 20.5,-84.5 parent: 2 type: Transform - - uid: 26772 + - uid: 26850 components: - rot: -1.5707963267948966 rad pos: 28.5,-93.5 parent: 2 type: Transform - - uid: 26773 + - uid: 26851 components: - rot: 3.141592653589793 rad pos: 10.5,-86.5 parent: 2 type: Transform - - uid: 26774 + - uid: 26852 components: - rot: 3.141592653589793 rad pos: 11.5,-87.5 parent: 2 type: Transform - - uid: 26775 + - uid: 26853 components: - rot: 3.141592653589793 rad pos: 12.5,-87.5 parent: 2 type: Transform - - uid: 26776 + - uid: 26854 components: - rot: 1.5707963267948966 rad pos: 50.5,-85.5 parent: 2 type: Transform - - uid: 26777 + - uid: 26855 components: - rot: 3.141592653589793 rad pos: 21.5,-82.5 parent: 2 type: Transform - - uid: 26778 + - uid: 26856 components: - rot: -1.5707963267948966 rad pos: 46.5,-76.5 parent: 2 type: Transform - - uid: 26779 + - uid: 26857 components: - rot: 3.141592653589793 rad pos: 20.5,-82.5 parent: 2 type: Transform - - uid: 26780 + - uid: 26858 components: - rot: 1.5707963267948966 rad pos: 45.5,-83.5 parent: 2 type: Transform - - uid: 26781 + - uid: 26859 components: - rot: 3.141592653589793 rad pos: 15.5,-78.5 parent: 2 type: Transform - - uid: 26782 + - uid: 26860 components: - rot: 3.141592653589793 rad pos: 12.5,-88.5 parent: 2 type: Transform - - uid: 26783 + - uid: 26861 components: - rot: 3.141592653589793 rad pos: 18.5,-87.5 parent: 2 type: Transform - - uid: 26784 + - uid: 26862 components: - rot: 3.141592653589793 rad pos: 19.5,-87.5 parent: 2 type: Transform - - uid: 26785 + - uid: 26863 components: - rot: -1.5707963267948966 rad pos: 28.5,-87.5 parent: 2 type: Transform - - uid: 26786 + - uid: 26864 components: - rot: 3.141592653589793 rad pos: 19.5,-86.5 parent: 2 type: Transform - - uid: 26787 + - uid: 26865 components: - rot: 3.141592653589793 rad pos: 20.5,-86.5 parent: 2 type: Transform - - uid: 26788 + - uid: 26866 components: - rot: 3.141592653589793 rad pos: 20.5,-85.5 parent: 2 type: Transform - - uid: 26789 + - uid: 26867 components: - rot: 3.141592653589793 rad pos: 22.5,-84.5 parent: 2 type: Transform - - uid: 26790 + - uid: 26868 components: - rot: 1.5707963267948966 rad pos: 50.5,-75.5 parent: 2 type: Transform - - uid: 26791 + - uid: 26869 components: - rot: 3.141592653589793 rad pos: 20.5,-81.5 parent: 2 type: Transform - - uid: 26792 + - uid: 26870 components: - rot: 3.141592653589793 rad pos: 19.5,-80.5 parent: 2 type: Transform - - uid: 26793 + - uid: 26871 components: - rot: 3.141592653589793 rad pos: 18.5,-78.5 parent: 2 type: Transform - - uid: 26794 + - uid: 26872 components: - pos: 7.5,-75.5 parent: 2 type: Transform - - uid: 26795 + - uid: 26873 components: - rot: -1.5707963267948966 rad pos: 29.5,-93.5 parent: 2 type: Transform - - uid: 26796 + - uid: 26874 components: - rot: -1.5707963267948966 rad pos: 31.5,-95.5 parent: 2 type: Transform - - uid: 26797 + - uid: 26875 components: - rot: -1.5707963267948966 rad pos: 29.5,-95.5 parent: 2 type: Transform - - uid: 26798 + - uid: 26876 components: - rot: -1.5707963267948966 rad pos: 29.5,-94.5 parent: 2 type: Transform - - uid: 26799 + - uid: 26877 components: - rot: -1.5707963267948966 rad pos: 46.5,-80.5 parent: 2 type: Transform - - uid: 26800 + - uid: 26878 components: - pos: 8.5,-77.5 parent: 2 type: Transform - - uid: 26801 + - uid: 26879 components: - rot: 3.141592653589793 rad pos: 19.5,-79.5 parent: 2 type: Transform - - uid: 26802 + - uid: 26880 components: - rot: 3.141592653589793 rad pos: 18.5,-79.5 parent: 2 type: Transform - - uid: 26803 + - uid: 26881 components: - rot: 1.5707963267948966 rad pos: 34.5,-88.5 parent: 2 type: Transform - - uid: 26804 + - uid: 26882 components: - rot: -1.5707963267948966 rad pos: 44.5,-74.5 parent: 2 type: Transform - - uid: 26805 + - uid: 26883 components: - rot: 3.141592653589793 rad pos: 18.5,-88.5 parent: 2 type: Transform - - uid: 26806 + - uid: 26884 components: - pos: 12.5,-71.5 parent: 2 type: Transform - - uid: 26807 + - uid: 26885 components: - pos: 9.5,-72.5 parent: 2 type: Transform - - uid: 26808 + - uid: 26886 components: - pos: 9.5,-73.5 parent: 2 type: Transform - - uid: 26809 + - uid: 26887 components: - pos: 9.5,-74.5 parent: 2 type: Transform - - uid: 26810 + - uid: 26888 components: - pos: 10.5,-74.5 parent: 2 type: Transform - - uid: 26811 + - uid: 26889 components: - pos: 11.5,-74.5 parent: 2 type: Transform - - uid: 26812 + - uid: 26890 components: - pos: 12.5,-74.5 parent: 2 type: Transform - - uid: 26813 + - uid: 26891 components: - pos: 13.5,-74.5 parent: 2 type: Transform - - uid: 26814 + - uid: 26892 components: - pos: 16.5,-74.5 parent: 2 type: Transform - - uid: 26815 + - uid: 26893 components: - pos: 19.5,-74.5 parent: 2 type: Transform - - uid: 26816 + - uid: 26894 components: - pos: 21.5,-74.5 parent: 2 type: Transform - - uid: 26817 + - uid: 26895 components: - pos: 21.5,-72.5 parent: 2 type: Transform - - uid: 26818 + - uid: 26896 components: - pos: 20.5,-72.5 parent: 2 type: Transform - - uid: 26819 + - uid: 26897 components: - pos: 19.5,-72.5 parent: 2 type: Transform - - uid: 26820 + - uid: 26898 components: - pos: 31.5,-70.5 parent: 2 type: Transform - - uid: 26821 + - uid: 26899 components: - pos: 42.5,-75.5 parent: 2 type: Transform - - uid: 26822 + - uid: 26900 components: - pos: 44.5,-75.5 parent: 2 type: Transform - - uid: 26823 + - uid: 26901 components: - rot: -1.5707963267948966 rad pos: 27.5,-87.5 parent: 2 type: Transform - - uid: 26824 + - uid: 26902 components: - rot: -1.5707963267948966 rad pos: 33.5,-83.5 parent: 2 type: Transform - - uid: 26825 + - uid: 26903 components: - rot: 1.5707963267948966 rad pos: 46.5,-81.5 parent: 2 type: Transform - - uid: 26826 + - uid: 26904 components: - rot: -1.5707963267948966 rad pos: 26.5,-87.5 parent: 2 type: Transform - - uid: 26827 + - uid: 26905 components: - rot: -1.5707963267948966 rad pos: 34.5,-75.5 parent: 2 type: Transform - - uid: 26828 + - uid: 26906 components: - rot: 1.5707963267948966 rad pos: 46.5,-83.5 parent: 2 type: Transform - - uid: 26829 + - uid: 26907 components: - rot: -1.5707963267948966 rad pos: 27.5,-79.5 parent: 2 type: Transform - - uid: 26830 + - uid: 26908 components: - pos: 16.5,-71.5 parent: 2 type: Transform - - uid: 26831 + - uid: 26909 components: - pos: 29.5,-69.5 parent: 2 type: Transform - - uid: 26832 + - uid: 26910 components: - pos: 29.5,-70.5 parent: 2 type: Transform - - uid: 26833 + - uid: 26911 components: - pos: 28.5,-68.5 parent: 2 type: Transform - - uid: 26834 + - uid: 26912 components: - pos: 30.5,-70.5 parent: 2 type: Transform - - uid: 26835 + - uid: 26913 components: - pos: 20.5,-74.5 parent: 2 type: Transform - - uid: 26836 + - uid: 26914 components: - pos: 19.5,-71.5 parent: 2 type: Transform - - uid: 26837 + - uid: 26915 components: - pos: 22.5,-70.5 parent: 2 type: Transform - - uid: 26838 + - uid: 26916 components: - rot: -1.5707963267948966 rad pos: 32.5,-93.5 parent: 2 type: Transform - - uid: 26839 + - uid: 26917 components: - pos: 23.5,-82.5 parent: 2 type: Transform - - uid: 26840 + - uid: 26918 components: - rot: 3.141592653589793 rad pos: 22.5,-82.5 parent: 2 type: Transform - - uid: 26841 + - uid: 26919 components: - pos: 23.5,-84.5 parent: 2 type: Transform - - uid: 26842 + - uid: 26920 components: - pos: 21.5,-70.5 parent: 2 type: Transform - - uid: 26843 + - uid: 26921 components: - pos: 22.5,-74.5 parent: 2 type: Transform - - uid: 26844 + - uid: 26922 components: - pos: 23.5,-74.5 parent: 2 type: Transform - - uid: 26845 + - uid: 26923 components: - pos: 23.5,-75.5 parent: 2 type: Transform - - uid: 26846 + - uid: 26924 components: - rot: 1.5707963267948966 rad pos: 28.5,-78.5 parent: 2 type: Transform - - uid: 26847 + - uid: 26925 components: - rot: -1.5707963267948966 rad pos: 23.5,-86.5 parent: 2 type: Transform - - uid: 26848 + - uid: 26926 components: - rot: 1.5707963267948966 rad pos: 28.5,-88.5 parent: 2 type: Transform - - uid: 26849 + - uid: 26927 components: - rot: 1.5707963267948966 rad pos: 50.5,-86.5 parent: 2 type: Transform - - uid: 26850 + - uid: 26928 components: - rot: 3.141592653589793 rad pos: 11.5,-80.5 parent: 2 type: Transform - - uid: 26851 + - uid: 26929 components: - rot: 3.141592653589793 rad pos: 11.5,-86.5 parent: 2 type: Transform - - uid: 26852 + - uid: 26930 components: - pos: 7.5,-73.5 parent: 2 type: Transform - - uid: 26853 + - uid: 26931 components: - rot: 3.141592653589793 rad pos: 12.5,-78.5 parent: 2 type: Transform - - uid: 26854 + - uid: 26932 components: - rot: 3.141592653589793 rad pos: 21.5,-84.5 parent: 2 type: Transform - - uid: 26855 + - uid: 26933 components: - rot: 3.141592653589793 rad pos: 15.5,-88.5 parent: 2 type: Transform - - uid: 26856 + - uid: 26934 components: - rot: 3.141592653589793 rad pos: 20.5,-80.5 parent: 2 type: Transform - - uid: 26857 + - uid: 26935 components: - rot: 1.5707963267948966 rad pos: 28.5,-76.5 parent: 2 type: Transform - - uid: 26858 + - uid: 26936 components: - rot: 1.5707963267948966 rad pos: 32.5,-90.5 parent: 2 type: Transform - - uid: 26859 + - uid: 26937 components: - rot: 1.5707963267948966 rad pos: 32.5,-88.5 parent: 2 type: Transform - - uid: 26860 + - uid: 26938 components: - rot: -1.5707963267948966 rad pos: 41.5,-66.5 parent: 2 type: Transform - - uid: 26861 + - uid: 26939 components: - rot: 1.5707963267948966 rad pos: 46.5,-90.5 parent: 2 type: Transform - - uid: 26862 + - uid: 26940 components: - rot: -1.5707963267948966 rad pos: 23.5,-81.5 parent: 2 type: Transform - - uid: 26863 + - uid: 26941 components: - pos: 21.5,-71.5 parent: 2 type: Transform - - uid: 26864 + - uid: 26942 components: - rot: -1.5707963267948966 rad pos: 53.5,-63.5 parent: 2 type: Transform - - uid: 26865 + - uid: 26943 components: - rot: 1.5707963267948966 rad pos: 49.5,-70.5 parent: 2 type: Transform - - uid: 26866 + - uid: 26944 components: - rot: -1.5707963267948966 rad pos: 23.5,-85.5 parent: 2 type: Transform - - uid: 26867 + - uid: 26945 components: - pos: 23.5,-68.5 parent: 2 type: Transform - - uid: 26868 + - uid: 26946 components: - pos: -34.5,-14.5 parent: 2 type: Transform - - uid: 26869 + - uid: 26947 components: - pos: -35.5,-14.5 parent: 2 type: Transform - - uid: 26870 + - uid: 26948 components: - pos: -38.5,-14.5 parent: 2 type: Transform - - uid: 26871 + - uid: 26949 components: - pos: -39.5,-14.5 parent: 2 type: Transform - - uid: 26872 + - uid: 26950 components: - pos: -40.5,-14.5 parent: 2 type: Transform - - uid: 26873 + - uid: 26951 components: - pos: -17.5,-46.5 parent: 2 type: Transform - - uid: 26874 + - uid: 26952 components: - pos: -17.5,-45.5 parent: 2 type: Transform - - uid: 26875 + - uid: 26953 components: - pos: -17.5,-44.5 parent: 2 type: Transform - - uid: 26876 + - uid: 26954 components: - pos: -18.5,-44.5 parent: 2 type: Transform - - uid: 26877 + - uid: 26955 components: - pos: -20.5,-44.5 parent: 2 type: Transform - - uid: 26878 + - uid: 26956 components: - pos: -21.5,-44.5 parent: 2 type: Transform - - uid: 26879 + - uid: 26957 components: - pos: -38.5,-19.5 parent: 2 type: Transform - - uid: 26880 + - uid: 26958 components: - pos: -38.5,-18.5 parent: 2 type: Transform - - uid: 26881 + - uid: 26959 components: - pos: -38.5,-17.5 parent: 2 type: Transform - - uid: 26882 + - uid: 26960 components: - pos: -38.5,-16.5 parent: 2 type: Transform - - uid: 26883 + - uid: 26961 components: - pos: -38.5,-15.5 parent: 2 type: Transform - - uid: 26884 + - uid: 26962 components: - pos: 77.5,-49.5 parent: 2 type: Transform - - uid: 26885 + - uid: 26963 components: - pos: 73.5,-50.5 parent: 2 type: Transform - - uid: 26886 + - uid: 26964 components: - pos: 73.5,-52.5 parent: 2 type: Transform - - uid: 26887 + - uid: 26965 components: - pos: 73.5,-54.5 parent: 2 type: Transform - - uid: 26888 + - uid: 26966 components: - pos: 72.5,-54.5 parent: 2 type: Transform - - uid: 26889 + - uid: 26967 components: - pos: 69.5,-54.5 parent: 2 type: Transform - - uid: 26890 + - uid: 26968 components: - rot: -1.5707963267948966 rad pos: 69.5,-55.5 parent: 2 type: Transform - - uid: 26891 + - uid: 26969 components: - rot: 3.141592653589793 rad pos: -40.5,-21.5 parent: 2 type: Transform - - uid: 26892 + - uid: 26970 components: - rot: 3.141592653589793 rad pos: -40.5,-22.5 parent: 2 type: Transform - - uid: 26893 + - uid: 26971 components: - pos: -44.5,-24.5 parent: 2 type: Transform - - uid: 26894 + - uid: 26972 components: - pos: -42.5,-14.5 parent: 2 type: Transform - - uid: 26895 + - uid: 26973 components: - pos: -43.5,-14.5 parent: 2 type: Transform - - uid: 26896 + - uid: 26974 components: - pos: -43.5,-12.5 parent: 2 type: Transform - - uid: 26897 + - uid: 26975 components: - pos: -43.5,-9.5 parent: 2 type: Transform - - uid: 26898 + - uid: 26976 components: - pos: -43.5,-8.5 parent: 2 type: Transform - - uid: 26899 + - uid: 26977 components: - pos: -43.5,-7.5 parent: 2 type: Transform - - uid: 26900 + - uid: 26978 components: - pos: -43.5,-19.5 parent: 2 type: Transform - - uid: 26901 + - uid: 26979 components: - pos: -42.5,-19.5 parent: 2 type: Transform - - uid: 26902 + - uid: 26980 components: - pos: -40.5,-19.5 parent: 2 type: Transform - - uid: 26903 + - uid: 26981 components: - pos: -39.5,-19.5 parent: 2 type: Transform - - uid: 26904 + - uid: 26982 components: - pos: -43.5,-15.5 parent: 2 type: Transform - - uid: 26905 + - uid: 26983 components: - pos: -43.5,-16.5 parent: 2 type: Transform - - uid: 26906 + - uid: 26984 components: - pos: -43.5,-17.5 parent: 2 type: Transform - - uid: 26907 + - uid: 26985 components: - pos: -43.5,-18.5 parent: 2 type: Transform - - uid: 26908 + - uid: 26986 components: - pos: 59.5,-61.5 parent: 2 type: Transform - - uid: 26909 + - uid: 26987 components: - pos: 67.5,-58.5 parent: 2 type: Transform - - uid: 26910 + - uid: 26988 components: - rot: -1.5707963267948966 rad pos: 67.5,-60.5 parent: 2 type: Transform - - uid: 26911 + - uid: 26989 components: - pos: 68.5,-58.5 parent: 2 type: Transform - - uid: 26912 + - uid: 26990 components: - pos: 65.5,-61.5 parent: 2 type: Transform - - uid: 26913 + - uid: 26991 components: - pos: 60.5,-61.5 parent: 2 type: Transform - - uid: 26914 + - uid: 26992 components: - pos: 65.5,-60.5 parent: 2 type: Transform - - uid: 26915 + - uid: 26993 components: - pos: 67.5,-59.5 parent: 2 type: Transform - - uid: 26916 + - uid: 26994 components: - pos: 52.5,-29.5 parent: 2 type: Transform - - uid: 26917 + - uid: 26995 components: - pos: 52.5,-28.5 parent: 2 type: Transform - - uid: 26918 + - uid: 26996 components: - pos: 52.5,-27.5 parent: 2 type: Transform - - uid: 26919 + - uid: 26997 components: - pos: 52.5,-30.5 parent: 2 type: Transform - - uid: 26920 + - uid: 26998 components: - pos: 52.5,-31.5 parent: 2 type: Transform - - uid: 26921 + - uid: 26999 components: - pos: 43.5,-32.5 parent: 2 type: Transform - - uid: 26922 + - uid: 27000 components: - pos: 58.5,-68.5 parent: 2 type: Transform - - uid: 26923 + - uid: 27001 components: - pos: 49.5,-32.5 parent: 2 type: Transform - - uid: 26924 + - uid: 27002 components: - pos: 48.5,-32.5 parent: 2 type: Transform - - uid: 26925 + - uid: 27003 components: - pos: 46.5,-32.5 parent: 2 type: Transform - - uid: 26926 + - uid: 27004 components: - pos: 57.5,-68.5 parent: 2 type: Transform - - uid: 26927 + - uid: 27005 components: - pos: 45.5,-32.5 parent: 2 type: Transform - - uid: 26928 + - uid: 27006 components: - pos: 69.5,-67.5 parent: 2 type: Transform - - uid: 26929 + - uid: 27007 components: - pos: 70.5,-67.5 parent: 2 type: Transform - - uid: 26930 + - uid: 27008 components: - pos: 71.5,-67.5 parent: 2 type: Transform - - uid: 26931 + - uid: 27009 components: - pos: 71.5,-63.5 parent: 2 type: Transform - - uid: 26932 + - uid: 27010 components: - pos: 72.5,-63.5 parent: 2 type: Transform - - uid: 26933 + - uid: 27011 components: - pos: 72.5,-60.5 parent: 2 type: Transform - - uid: 26934 + - uid: 27012 components: - pos: 73.5,-60.5 parent: 2 type: Transform - - uid: 26935 + - uid: 27013 components: - pos: 72.5,-61.5 parent: 2 type: Transform - - uid: 26936 + - uid: 27014 components: - pos: 72.5,-62.5 parent: 2 type: Transform - - uid: 26937 + - uid: 27015 components: - pos: 73.5,-59.5 parent: 2 type: Transform - - uid: 26938 + - uid: 27016 components: - pos: 73.5,-58.5 parent: 2 type: Transform - - uid: 26939 + - uid: 27017 components: - pos: 74.5,-58.5 parent: 2 type: Transform - - uid: 26940 + - uid: 27018 components: - pos: 75.5,-58.5 parent: 2 type: Transform - - uid: 26941 + - uid: 27019 components: - pos: 10.5,-38.5 parent: 2 type: Transform - - uid: 26942 + - uid: 27020 components: - pos: -43.5,-23.5 parent: 2 type: Transform - - uid: 26943 + - uid: 27021 components: - rot: 3.141592653589793 rad pos: -59.5,-28.5 parent: 2 type: Transform - - uid: 26944 + - uid: 27022 components: - pos: -43.5,-24.5 parent: 2 type: Transform - - uid: 26945 + - uid: 27023 components: - rot: 3.141592653589793 rad pos: -40.5,-20.5 parent: 2 type: Transform - - uid: 26946 + - uid: 27024 components: - rot: -1.5707963267948966 rad pos: -34.5,-38.5 parent: 2 type: Transform - - uid: 26947 + - uid: 27025 components: - rot: -1.5707963267948966 rad pos: -40.5,-37.5 parent: 2 type: Transform - - uid: 26948 + - uid: 27026 components: - pos: 28.5,-69.5 parent: 2 type: Transform - - uid: 26949 + - uid: 27027 components: - pos: 22.5,-69.5 parent: 2 type: Transform - - uid: 26950 + - uid: 27028 components: - pos: 23.5,-69.5 parent: 2 type: Transform - - uid: 26951 + - uid: 27029 components: - rot: -1.5707963267948966 rad pos: -33.5,-39.5 parent: 2 type: Transform - - uid: 26952 + - uid: 27030 components: - rot: -1.5707963267948966 rad pos: -33.5,-38.5 parent: 2 type: Transform - - uid: 26953 + - uid: 27031 components: - pos: -41.5,-36.5 parent: 2 type: Transform - - uid: 26954 + - uid: 27032 components: - pos: -41.5,-37.5 parent: 2 type: Transform - - uid: 26955 + - uid: 27033 components: - rot: -1.5707963267948966 rad pos: -39.5,-37.5 parent: 2 type: Transform - - uid: 26956 + - uid: 27034 components: - rot: -1.5707963267948966 rad pos: -35.5,-37.5 parent: 2 type: Transform - - uid: 26957 + - uid: 27035 components: - rot: -1.5707963267948966 rad pos: -36.5,-37.5 parent: 2 type: Transform - - uid: 26958 + - uid: 27036 components: - rot: -1.5707963267948966 rad pos: -33.5,-42.5 parent: 2 type: Transform - - uid: 26959 + - uid: 27037 components: - rot: -1.5707963267948966 rad pos: -32.5,-42.5 parent: 2 type: Transform - - uid: 26960 + - uid: 27038 components: - pos: -44.5,-7.5 parent: 2 type: Transform - - uid: 26961 + - uid: 27039 components: - pos: -45.5,-7.5 parent: 2 type: Transform - - uid: 26962 + - uid: 27040 components: - pos: -47.5,-7.5 parent: 2 type: Transform - - uid: 26963 + - uid: 27041 components: - pos: -48.5,-7.5 parent: 2 type: Transform - - uid: 26964 + - uid: 27042 components: - pos: -49.5,-10.5 parent: 2 type: Transform - - uid: 26965 + - uid: 27043 components: - pos: -49.5,-9.5 parent: 2 type: Transform - - uid: 26966 + - uid: 27044 components: - pos: -49.5,-8.5 parent: 2 type: Transform - - uid: 26967 + - uid: 27045 components: - pos: -49.5,-7.5 parent: 2 type: Transform - - uid: 26968 + - uid: 27046 components: - pos: -49.5,-18.5 parent: 2 type: Transform - - uid: 26969 + - uid: 27047 components: - pos: -48.5,-18.5 parent: 2 type: Transform - - uid: 26970 + - uid: 27048 components: - pos: -47.5,-18.5 parent: 2 type: Transform - - uid: 26971 + - uid: 27049 components: - pos: -46.5,-18.5 parent: 2 type: Transform - - uid: 26972 + - uid: 27050 components: - pos: -49.5,-11.5 parent: 2 type: Transform - - uid: 26973 + - uid: 27051 components: - pos: -50.5,-11.5 parent: 2 type: Transform - - uid: 26974 + - uid: 27052 components: - pos: -51.5,-11.5 parent: 2 type: Transform - - uid: 26975 + - uid: 27053 components: - pos: -51.5,-12.5 parent: 2 type: Transform - - uid: 26976 + - uid: 27054 components: - pos: -51.5,-14.5 parent: 2 type: Transform - - uid: 26977 + - uid: 27055 components: - pos: -51.5,-15.5 parent: 2 type: Transform - - uid: 26978 + - uid: 27056 components: - pos: -50.5,-15.5 parent: 2 type: Transform - - uid: 26979 + - uid: 27057 components: - pos: -49.5,-15.5 parent: 2 type: Transform - - uid: 26980 + - uid: 27058 components: - pos: -49.5,-4.5 parent: 2 type: Transform - - uid: 26981 + - uid: 27059 components: - pos: -50.5,-4.5 parent: 2 type: Transform - - uid: 26982 + - uid: 27060 components: - pos: -51.5,-4.5 parent: 2 type: Transform - - uid: 26983 + - uid: 27061 components: - pos: -52.5,-4.5 parent: 2 type: Transform - - uid: 26984 + - uid: 27062 components: - pos: -53.5,-4.5 parent: 2 type: Transform - - uid: 26985 + - uid: 27063 components: - pos: -54.5,-4.5 parent: 2 type: Transform - - uid: 26986 + - uid: 27064 components: - pos: -55.5,-4.5 parent: 2 type: Transform - - uid: 26987 + - uid: 27065 components: - pos: -55.5,-5.5 parent: 2 type: Transform - - uid: 26988 + - uid: 27066 components: - pos: -56.5,-5.5 parent: 2 type: Transform - - uid: 26989 + - uid: 27067 components: - pos: -56.5,-6.5 parent: 2 type: Transform - - uid: 26990 + - uid: 27068 components: - pos: -56.5,-7.5 parent: 2 type: Transform - - uid: 26991 + - uid: 27069 components: - pos: -56.5,-8.5 parent: 2 type: Transform - - uid: 26992 + - uid: 27070 components: - pos: -56.5,-9.5 parent: 2 type: Transform - - uid: 26993 + - uid: 27071 components: - pos: -56.5,-10.5 parent: 2 type: Transform - - uid: 26994 + - uid: 27072 components: - pos: -56.5,-16.5 parent: 2 type: Transform - - uid: 26995 + - uid: 27073 components: - pos: -56.5,-17.5 parent: 2 type: Transform - - uid: 26996 + - uid: 27074 components: - rot: -1.5707963267948966 rad pos: -57.5,-17.5 parent: 2 type: Transform - - uid: 26997 + - uid: 27075 components: - pos: -56.5,-19.5 parent: 2 type: Transform - - uid: 26998 + - uid: 27076 components: - pos: -56.5,-19.5 parent: 2 type: Transform - - uid: 26999 + - uid: 27077 components: - pos: -52.5,-21.5 parent: 2 type: Transform - - uid: 27000 + - uid: 27078 components: - pos: -50.5,-21.5 parent: 2 type: Transform - - uid: 27001 + - uid: 27079 components: - pos: -49.5,-21.5 parent: 2 type: Transform - - uid: 27002 + - uid: 27080 components: - pos: -44.5,-18.5 parent: 2 type: Transform - - uid: 27003 + - uid: 27081 components: - pos: -44.5,-18.5 parent: 2 type: Transform - - uid: 27004 + - uid: 27082 components: - pos: 55.5,-50.5 parent: 2 type: Transform - - uid: 27005 + - uid: 27083 components: - pos: -49.5,-22.5 parent: 2 type: Transform - - uid: 27006 + - uid: 27084 components: - rot: -1.5707963267948966 rad pos: -47.5,-24.5 parent: 2 type: Transform - - uid: 27007 + - uid: 27085 components: - pos: 56.5,-50.5 parent: 2 type: Transform - - uid: 27008 + - uid: 27086 components: - pos: -52.5,-26.5 parent: 2 type: Transform - - uid: 27009 - components: - - pos: -52.5,-25.5 - parent: 2 - type: Transform - - uid: 27010 - components: - - pos: -52.5,-24.5 - parent: 2 - type: Transform - - uid: 27011 - components: - - pos: -52.5,-23.5 - parent: 2 - type: Transform - - uid: 27012 - components: - - pos: -52.5,-22.5 - parent: 2 - type: Transform - - uid: 27013 + - uid: 27087 components: - pos: -49.5,-20.5 parent: 2 type: Transform - - uid: 27014 + - uid: 27088 components: - rot: 3.141592653589793 rad pos: -58.5,-22.5 parent: 2 type: Transform - - uid: 27015 + - uid: 27089 components: - rot: 3.141592653589793 rad pos: -59.5,-22.5 parent: 2 type: Transform - - uid: 27016 + - uid: 27090 components: - rot: 3.141592653589793 rad pos: -60.5,-22.5 parent: 2 type: Transform - - uid: 27017 + - uid: 27091 components: - rot: 3.141592653589793 rad pos: -61.5,-22.5 parent: 2 type: Transform - - uid: 27018 + - uid: 27092 components: - rot: 3.141592653589793 rad pos: -62.5,-22.5 parent: 2 type: Transform - - uid: 27019 + - uid: 27093 components: - rot: 3.141592653589793 rad pos: -63.5,-22.5 parent: 2 type: Transform - - uid: 27020 + - uid: 27094 components: - rot: 3.141592653589793 rad pos: -69.5,-22.5 parent: 2 type: Transform - - uid: 27021 + - uid: 27095 components: - rot: 3.141592653589793 rad pos: -70.5,-22.5 parent: 2 type: Transform - - uid: 27022 + - uid: 27096 components: - rot: 3.141592653589793 rad pos: -53.5,-26.5 parent: 2 type: Transform - - uid: 27023 + - uid: 27097 components: - rot: 3.141592653589793 rad pos: -55.5,-26.5 parent: 2 type: Transform - - uid: 27024 + - uid: 27098 components: - rot: 1.5707963267948966 rad pos: -56.5,-26.5 parent: 2 type: Transform - - uid: 27025 + - uid: 27099 components: - rot: 3.141592653589793 rad pos: -57.5,-26.5 parent: 2 type: Transform - - uid: 27026 + - uid: 27100 components: - rot: 3.141592653589793 rad pos: -59.5,-26.5 parent: 2 type: Transform - - uid: 27027 + - uid: 27101 components: - pos: -59.5,-29.5 parent: 2 type: Transform - - uid: 27028 + - uid: 27102 components: - rot: 3.141592653589793 rad pos: -63.5,-29.5 parent: 2 type: Transform - - uid: 27029 + - uid: 27103 components: - pos: -62.5,-26.5 parent: 2 type: Transform - - uid: 27030 + - uid: 27104 components: - pos: -63.5,-27.5 parent: 2 type: Transform - - uid: 27031 + - uid: 27105 components: - pos: -63.5,-28.5 parent: 2 type: Transform - - uid: 27032 + - uid: 27106 components: - pos: -63.5,-26.5 parent: 2 type: Transform - - uid: 27033 + - uid: 27107 components: - pos: -59.5,-31.5 parent: 2 type: Transform - - uid: 27034 + - uid: 27108 components: - pos: -60.5,-31.5 parent: 2 type: Transform - - uid: 27035 + - uid: 27109 components: - pos: -57.5,-19.5 parent: 2 type: Transform - - uid: 27036 + - uid: 27110 components: - pos: -58.5,-19.5 parent: 2 type: Transform - - uid: 27037 + - uid: 27111 components: - pos: -58.5,-20.5 parent: 2 type: Transform - - uid: 27038 + - uid: 27112 components: - pos: -58.5,-21.5 parent: 2 type: Transform - - uid: 27039 + - uid: 27113 components: - pos: -62.5,-31.5 parent: 2 type: Transform - - uid: 27040 + - uid: 27114 components: - pos: -63.5,-31.5 parent: 2 type: Transform - - uid: 27041 + - uid: 27115 components: - pos: -63.5,-32.5 parent: 2 type: Transform - - uid: 27042 + - uid: 27116 components: - rot: 1.5707963267948966 rad pos: -58.5,-26.5 parent: 2 type: Transform - - uid: 27043 + - uid: 27117 components: - rot: 1.5707963267948966 rad pos: -54.5,-26.5 parent: 2 type: Transform - - uid: 27044 + - uid: 27118 components: - rot: 3.141592653589793 rad pos: -40.5,-23.5 parent: 2 type: Transform - - uid: 27045 + - uid: 27119 components: - rot: 3.141592653589793 rad pos: -41.5,-23.5 parent: 2 type: Transform - - uid: 27046 + - uid: 27120 components: - rot: 3.141592653589793 rad pos: -42.5,-23.5 parent: 2 type: Transform - - uid: 27047 + - uid: 27121 components: - pos: -59.5,-27.5 parent: 2 type: Transform - - uid: 27048 + - uid: 27122 components: - pos: -50.5,-55.5 parent: 2 type: Transform - - uid: 27049 + - uid: 27123 components: - pos: -50.5,-53.5 parent: 2 type: Transform - - uid: 27050 + - uid: 27124 components: - pos: -50.5,-51.5 parent: 2 type: Transform - - uid: 27051 + - uid: 27125 components: - pos: -50.5,-49.5 parent: 2 type: Transform - - uid: 27052 + - uid: 27126 components: - pos: -50.5,-47.5 parent: 2 type: Transform - - uid: 27053 + - uid: 27127 components: - pos: -50.5,-45.5 parent: 2 type: Transform - - uid: 27054 + - uid: 27128 components: - pos: -50.5,-43.5 parent: 2 type: Transform - - uid: 27055 + - uid: 27129 components: - pos: -50.5,-41.5 parent: 2 type: Transform - - uid: 27056 + - uid: 27130 components: - pos: -49.5,-41.5 parent: 2 type: Transform - - uid: 27057 + - uid: 27131 components: - pos: -48.5,-41.5 parent: 2 type: Transform - - uid: 27058 + - uid: 27132 components: - pos: -47.5,-41.5 parent: 2 type: Transform - - uid: 27059 + - uid: 27133 components: - pos: -49.5,-43.5 parent: 2 type: Transform - - uid: 27060 + - uid: 27134 components: - pos: -48.5,-43.5 parent: 2 type: Transform - - uid: 27061 + - uid: 27135 components: - pos: -47.5,-43.5 parent: 2 type: Transform - - uid: 27062 + - uid: 27136 components: - pos: -49.5,-45.5 parent: 2 type: Transform - - uid: 27063 + - uid: 27137 components: - pos: -48.5,-45.5 parent: 2 type: Transform - - uid: 27064 + - uid: 27138 components: - pos: -47.5,-45.5 parent: 2 type: Transform - - uid: 27065 + - uid: 27139 components: - pos: -49.5,-47.5 parent: 2 type: Transform - - uid: 27066 + - uid: 27140 components: - pos: -48.5,-47.5 parent: 2 type: Transform - - uid: 27067 + - uid: 27141 components: - pos: -47.5,-47.5 parent: 2 type: Transform - - uid: 27068 + - uid: 27142 components: - pos: -49.5,-49.5 parent: 2 type: Transform - - uid: 27069 + - uid: 27143 components: - pos: -48.5,-49.5 parent: 2 type: Transform - - uid: 27070 + - uid: 27144 components: - pos: -47.5,-49.5 parent: 2 type: Transform - - uid: 27071 + - uid: 27145 components: - pos: -49.5,-51.5 parent: 2 type: Transform - - uid: 27072 + - uid: 27146 components: - pos: -48.5,-51.5 parent: 2 type: Transform - - uid: 27073 + - uid: 27147 components: - pos: -47.5,-51.5 parent: 2 type: Transform - - uid: 27074 + - uid: 27148 components: - pos: -49.5,-53.5 parent: 2 type: Transform - - uid: 27075 + - uid: 27149 components: - pos: -48.5,-53.5 parent: 2 type: Transform - - uid: 27076 + - uid: 27150 components: - pos: -47.5,-53.5 parent: 2 type: Transform - - uid: 27077 + - uid: 27151 components: - pos: -49.5,-55.5 parent: 2 type: Transform - - uid: 27078 + - uid: 27152 components: - pos: -48.5,-55.5 parent: 2 type: Transform - - uid: 27079 + - uid: 27153 components: - pos: -47.5,-55.5 parent: 2 type: Transform - - uid: 27080 + - uid: 27154 components: - pos: -51.5,-55.5 parent: 2 type: Transform - - uid: 27081 + - uid: 27155 components: - pos: -51.5,-54.5 parent: 2 type: Transform - - uid: 27082 + - uid: 27156 components: - pos: -51.5,-53.5 parent: 2 type: Transform - - uid: 27083 + - uid: 27157 components: - pos: -51.5,-51.5 parent: 2 type: Transform - - uid: 27084 + - uid: 27158 components: - pos: -51.5,-50.5 parent: 2 type: Transform - - uid: 27085 + - uid: 27159 components: - pos: -51.5,-49.5 parent: 2 type: Transform - - uid: 27086 + - uid: 27160 components: - pos: -51.5,-48.5 parent: 2 type: Transform - - uid: 27087 + - uid: 27161 components: - pos: -51.5,-47.5 parent: 2 type: Transform - - uid: 27088 + - uid: 27162 components: - pos: -51.5,-46.5 parent: 2 type: Transform - - uid: 27089 + - uid: 27163 components: - pos: -51.5,-45.5 parent: 2 type: Transform - - uid: 27090 + - uid: 27164 components: - pos: -51.5,-44.5 parent: 2 type: Transform - - uid: 27091 + - uid: 27165 components: - pos: -51.5,-43.5 parent: 2 type: Transform - - uid: 27092 + - uid: 27166 components: - pos: -51.5,-42.5 parent: 2 type: Transform - - uid: 27093 + - uid: 27167 components: - pos: -51.5,-41.5 parent: 2 type: Transform - - uid: 27094 + - uid: 27168 components: - pos: -47.5,-38.5 parent: 2 type: Transform - - uid: 27095 + - uid: 27169 components: - pos: -41.5,-39.5 parent: 2 type: Transform - - uid: 27096 + - uid: 27170 components: - pos: -41.5,-38.5 parent: 2 type: Transform - - uid: 27097 + - uid: 27171 components: - rot: 1.5707963267948966 rad pos: -59.5,-30.5 parent: 2 type: Transform - - uid: 27098 + - uid: 27172 components: - rot: 3.141592653589793 rad pos: -58.5,-31.5 parent: 2 type: Transform - - uid: 27099 + - uid: 27173 components: - rot: 3.141592653589793 rad pos: -57.5,-5.5 parent: 2 type: Transform - - uid: 27100 + - uid: 27174 components: - rot: 3.141592653589793 rad pos: -57.5,-4.5 parent: 2 type: Transform - - uid: 27101 + - uid: 27175 components: - rot: 3.141592653589793 rad pos: -58.5,-4.5 parent: 2 type: Transform - - uid: 27102 + - uid: 27176 components: - rot: 3.141592653589793 rad pos: -59.5,-4.5 parent: 2 type: Transform - - uid: 27103 + - uid: 27177 components: - rot: 3.141592653589793 rad pos: -60.5,-4.5 parent: 2 type: Transform - - uid: 27104 + - uid: 27178 components: - rot: 3.141592653589793 rad pos: -61.5,-4.5 parent: 2 type: Transform - - uid: 27105 + - uid: 27179 components: - rot: 3.141592653589793 rad pos: -62.5,-4.5 parent: 2 type: Transform - - uid: 27106 + - uid: 27180 components: - rot: 3.141592653589793 rad pos: -63.5,-4.5 parent: 2 type: Transform - - uid: 27107 + - uid: 27181 components: - rot: 3.141592653589793 rad pos: -64.5,-4.5 parent: 2 type: Transform - - uid: 27108 + - uid: 27182 components: - rot: 3.141592653589793 rad pos: -65.5,-4.5 parent: 2 type: Transform - - uid: 27109 + - uid: 27183 components: - rot: 3.141592653589793 rad pos: -66.5,-4.5 parent: 2 type: Transform - - uid: 27110 + - uid: 27184 components: - rot: 3.141592653589793 rad pos: -67.5,-4.5 parent: 2 type: Transform - - uid: 27111 + - uid: 27185 components: - rot: 3.141592653589793 rad pos: -68.5,-4.5 parent: 2 type: Transform - - uid: 27112 + - uid: 27186 components: - rot: 3.141592653589793 rad pos: -69.5,-4.5 parent: 2 type: Transform - - uid: 27113 + - uid: 27187 components: - rot: 3.141592653589793 rad pos: -70.5,-4.5 parent: 2 type: Transform - - uid: 27114 + - uid: 27188 components: - rot: 3.141592653589793 rad pos: -71.5,-4.5 parent: 2 type: Transform - - uid: 27115 + - uid: 27189 components: - rot: 3.141592653589793 rad pos: -72.5,-4.5 parent: 2 type: Transform - - uid: 27116 + - uid: 27190 components: - rot: 3.141592653589793 rad pos: -73.5,-4.5 parent: 2 type: Transform - - uid: 27117 + - uid: 27191 components: - rot: 3.141592653589793 rad pos: -74.5,-4.5 parent: 2 type: Transform - - uid: 27118 + - uid: 27192 components: - rot: 3.141592653589793 rad pos: -75.5,-4.5 parent: 2 type: Transform - - uid: 27119 + - uid: 27193 components: - rot: 3.141592653589793 rad pos: -75.5,-5.5 parent: 2 type: Transform - - uid: 27120 + - uid: 27194 components: - rot: 3.141592653589793 rad pos: -75.5,-6.5 parent: 2 type: Transform - - uid: 27121 + - uid: 27195 components: - rot: 3.141592653589793 rad pos: -75.5,-7.5 parent: 2 type: Transform - - uid: 27122 + - uid: 27196 components: - rot: 3.141592653589793 rad pos: -75.5,-8.5 parent: 2 type: Transform - - uid: 27123 + - uid: 27197 components: - rot: 3.141592653589793 rad pos: -75.5,-9.5 parent: 2 type: Transform - - uid: 27124 + - uid: 27198 components: - rot: 3.141592653589793 rad pos: -75.5,-10.5 parent: 2 type: Transform - - uid: 27125 + - uid: 27199 components: - rot: 3.141592653589793 rad pos: -75.5,-11.5 parent: 2 type: Transform - - uid: 27126 + - uid: 27200 components: - rot: 3.141592653589793 rad pos: -75.5,-13.5 parent: 2 type: Transform - - uid: 27127 + - uid: 27201 components: - rot: 3.141592653589793 rad pos: -75.5,-14.5 parent: 2 type: Transform - - uid: 27128 + - uid: 27202 components: - rot: 3.141592653589793 rad pos: -75.5,-15.5 parent: 2 type: Transform - - uid: 27129 + - uid: 27203 components: - rot: 3.141592653589793 rad pos: -75.5,-16.5 parent: 2 type: Transform - - uid: 27130 + - uid: 27204 components: - rot: 3.141592653589793 rad pos: -75.5,-17.5 parent: 2 type: Transform - - uid: 27131 + - uid: 27205 components: - rot: 3.141592653589793 rad pos: -75.5,-18.5 parent: 2 type: Transform - - uid: 27132 + - uid: 27206 components: - rot: 3.141592653589793 rad pos: -75.5,-19.5 parent: 2 type: Transform - - uid: 27133 + - uid: 27207 components: - rot: 3.141592653589793 rad pos: -75.5,-20.5 parent: 2 type: Transform - - uid: 27134 + - uid: 27208 components: - rot: 3.141592653589793 rad pos: -75.5,-21.5 parent: 2 type: Transform - - uid: 27135 + - uid: 27209 components: - rot: 3.141592653589793 rad pos: -75.5,-22.5 parent: 2 type: Transform - - uid: 27136 + - uid: 27210 components: - rot: 3.141592653589793 rad pos: -74.5,-22.5 parent: 2 type: Transform - - uid: 27137 + - uid: 27211 components: - rot: 3.141592653589793 rad pos: -73.5,-22.5 parent: 2 type: Transform - - uid: 27138 + - uid: 27212 components: - rot: 3.141592653589793 rad pos: -72.5,-22.5 parent: 2 type: Transform - - uid: 27139 + - uid: 27213 components: - rot: 3.141592653589793 rad pos: -71.5,-22.5 parent: 2 type: Transform - - uid: 27140 + - uid: 27214 components: - pos: -45.5,-57.5 parent: 2 type: Transform - - uid: 27141 + - uid: 27215 components: - pos: -45.5,-56.5 parent: 2 type: Transform - - uid: 27142 + - uid: 27216 components: - pos: -45.5,-58.5 parent: 2 type: Transform - - uid: 27143 + - uid: 27217 components: - rot: 3.141592653589793 rad pos: -39.5,-59.5 parent: 2 type: Transform - - uid: 27144 + - uid: 27218 components: - pos: -43.5,-58.5 parent: 2 type: Transform - - uid: 27145 + - uid: 27219 components: - rot: 3.141592653589793 rad pos: -36.5,-58.5 parent: 2 type: Transform - - uid: 27146 + - uid: 27220 components: - pos: -40.5,-58.5 parent: 2 type: Transform - - uid: 27147 + - uid: 27221 components: - pos: -45.5,-32.5 parent: 2 type: Transform - - uid: 27148 + - uid: 27222 components: - pos: -45.5,-36.5 parent: 2 type: Transform - - uid: 27149 + - uid: 27223 components: - rot: 3.141592653589793 rad pos: -40.5,-59.5 parent: 2 type: Transform - - uid: 27150 + - uid: 27224 components: - rot: -1.5707963267948966 rad pos: -32.5,-43.5 parent: 2 type: Transform - - uid: 27151 + - uid: 27225 components: - rot: 1.5707963267948966 rad pos: -36.5,-38.5 parent: 2 type: Transform - - uid: 27152 + - uid: 27226 components: - rot: 1.5707963267948966 rad pos: -36.5,-39.5 parent: 2 type: Transform - - uid: 27153 + - uid: 27227 components: - rot: 1.5707963267948966 rad pos: -36.5,-40.5 parent: 2 type: Transform - - uid: 27154 + - uid: 27228 components: - rot: 1.5707963267948966 rad pos: -41.5,-40.5 parent: 2 type: Transform - - uid: 27155 + - uid: 27229 components: - pos: -32.5,-44.5 parent: 2 type: Transform - - uid: 27156 + - uid: 27230 components: - pos: -32.5,-45.5 parent: 2 type: Transform - - uid: 27157 + - uid: 27231 components: - pos: -32.5,-46.5 parent: 2 type: Transform - - uid: 27158 + - uid: 27232 components: - pos: -32.5,-47.5 parent: 2 type: Transform - - uid: 27159 + - uid: 27233 components: - pos: -32.5,-48.5 parent: 2 type: Transform - - uid: 27160 + - uid: 27234 components: - pos: -32.5,-49.5 parent: 2 type: Transform - - uid: 27161 + - uid: 27235 components: - pos: -32.5,-51.5 parent: 2 type: Transform - - uid: 27162 + - uid: 27236 components: - pos: -32.5,-52.5 parent: 2 type: Transform - - uid: 27163 + - uid: 27237 components: - pos: -32.5,-53.5 parent: 2 type: Transform - - uid: 27164 + - uid: 27238 components: - pos: -32.5,-54.5 parent: 2 type: Transform - - uid: 27165 + - uid: 27239 components: - pos: -32.5,-55.5 parent: 2 type: Transform - - uid: 27166 + - uid: 27240 components: - pos: -32.5,-56.5 parent: 2 type: Transform - - uid: 27167 + - uid: 27241 components: - pos: -32.5,-57.5 parent: 2 type: Transform - - uid: 27168 + - uid: 27242 components: - pos: -33.5,-57.5 parent: 2 type: Transform - - uid: 27169 + - uid: 27243 components: - pos: -33.5,-58.5 parent: 2 type: Transform - - uid: 27170 + - uid: 27244 components: - pos: -34.5,-58.5 parent: 2 type: Transform - - uid: 27171 + - uid: 27245 components: - pos: 65.5,-31.5 parent: 2 type: Transform - - uid: 27172 + - uid: 27246 components: - pos: -70.5,-3.5 parent: 2 type: Transform - - uid: 27173 + - uid: 27247 components: - pos: -71.5,-3.5 parent: 2 type: Transform - - uid: 27174 + - uid: 27248 components: - pos: -72.5,-3.5 parent: 2 type: Transform - - uid: 27175 + - uid: 27249 components: - pos: -76.5,-4.5 parent: 2 type: Transform - - uid: 27176 + - uid: 27250 components: - pos: -76.5,-5.5 parent: 2 type: Transform - - uid: 27177 + - uid: 27251 components: - pos: -76.5,-6.5 parent: 2 type: Transform - - uid: 27178 + - uid: 27252 components: - rot: -1.5707963267948966 rad pos: -58.5,-17.5 parent: 2 type: Transform - - uid: 27179 + - uid: 27253 components: - pos: -76.5,-18.5 parent: 2 type: Transform - - uid: 27180 + - uid: 27254 components: - pos: -76.5,-19.5 parent: 2 type: Transform - - uid: 27181 + - uid: 27255 components: - pos: -76.5,-20.5 parent: 2 type: Transform - - uid: 27182 + - uid: 27256 components: - pos: -75.5,-23.5 parent: 2 type: Transform - - uid: 27183 + - uid: 27257 components: - pos: -63.5,-3.5 parent: 2 type: Transform - - uid: 27184 + - uid: 27258 components: - pos: -64.5,-3.5 parent: 2 type: Transform - - uid: 27185 + - uid: 27259 components: - pos: -65.5,-3.5 parent: 2 type: Transform - - uid: 27186 + - uid: 27260 components: - pos: -58.5,-3.5 parent: 2 type: Transform - - uid: 27187 + - uid: 27261 components: - pos: -75.5,-24.5 parent: 2 type: Transform - - uid: 27188 + - uid: 27262 components: - pos: -75.5,-27.5 parent: 2 type: Transform - - uid: 27189 + - uid: 27263 components: - pos: -75.5,-26.5 parent: 2 type: Transform - - uid: 27190 + - uid: 27264 components: - pos: -76.5,-26.5 parent: 2 type: Transform - - uid: 27191 + - uid: 27265 components: - pos: -45.5,-31.5 parent: 2 type: Transform - - uid: 27192 + - uid: 27266 components: - rot: -1.5707963267948966 rad pos: -46.5,-31.5 parent: 2 type: Transform - - uid: 27193 + - uid: 27267 components: - rot: -1.5707963267948966 rad pos: -47.5,-31.5 parent: 2 type: Transform - - uid: 27194 + - uid: 27268 components: - rot: -1.5707963267948966 rad pos: -47.5,-32.5 parent: 2 type: Transform - - uid: 27195 + - uid: 27269 components: - rot: -1.5707963267948966 rad pos: -47.5,-33.5 parent: 2 type: Transform - - uid: 27196 + - uid: 27270 components: - rot: -1.5707963267948966 rad pos: -53.5,-35.5 parent: 2 type: Transform - - uid: 27197 + - uid: 27271 components: - rot: -1.5707963267948966 rad pos: -53.5,-38.5 parent: 2 type: Transform - - uid: 27198 + - uid: 27272 components: - rot: -1.5707963267948966 rad pos: -53.5,-39.5 parent: 2 type: Transform - - uid: 27199 + - uid: 27273 components: - rot: -1.5707963267948966 rad pos: -53.5,-40.5 parent: 2 type: Transform - - uid: 27200 + - uid: 27274 components: - rot: -1.5707963267948966 rad pos: -54.5,-40.5 parent: 2 type: Transform - - uid: 27201 + - uid: 27275 components: - rot: -1.5707963267948966 rad pos: -55.5,-40.5 parent: 2 type: Transform - - uid: 27202 + - uid: 27276 components: - rot: -1.5707963267948966 rad pos: -55.5,-41.5 parent: 2 type: Transform - - uid: 27203 + - uid: 27277 components: - rot: -1.5707963267948966 rad pos: -55.5,-42.5 parent: 2 type: Transform - - uid: 27204 + - uid: 27278 components: - rot: -1.5707963267948966 rad pos: -55.5,-43.5 parent: 2 type: Transform - - uid: 27205 + - uid: 27279 components: - rot: -1.5707963267948966 rad pos: -55.5,-44.5 parent: 2 type: Transform - - uid: 27206 + - uid: 27280 components: - rot: -1.5707963267948966 rad pos: -55.5,-45.5 parent: 2 type: Transform - - uid: 27207 + - uid: 27281 components: - rot: -1.5707963267948966 rad pos: -55.5,-46.5 parent: 2 type: Transform - - uid: 27208 + - uid: 27282 components: - pos: -53.5,-46.5 parent: 2 type: Transform - - uid: 27209 + - uid: 27283 components: - pos: -53.5,-51.5 parent: 2 type: Transform - - uid: 27210 + - uid: 27284 components: - pos: -54.5,-51.5 parent: 2 type: Transform - - uid: 27211 + - uid: 27285 components: - pos: -54.5,-46.5 parent: 2 type: Transform - - uid: 27212 + - uid: 27286 components: - rot: -1.5707963267948966 rad pos: -55.5,-51.5 parent: 2 type: Transform - - uid: 27213 + - uid: 27287 components: - rot: -1.5707963267948966 rad pos: -55.5,-52.5 parent: 2 type: Transform - - uid: 27214 + - uid: 27288 components: - rot: -1.5707963267948966 rad pos: -55.5,-53.5 parent: 2 type: Transform - - uid: 27215 + - uid: 27289 components: - rot: -1.5707963267948966 rad pos: -55.5,-54.5 parent: 2 type: Transform - - uid: 27216 + - uid: 27290 components: - rot: -1.5707963267948966 rad pos: -55.5,-55.5 parent: 2 type: Transform - - uid: 27217 + - uid: 27291 components: - rot: -1.5707963267948966 rad pos: -55.5,-56.5 parent: 2 type: Transform - - uid: 27218 + - uid: 27292 components: - rot: -1.5707963267948966 rad pos: -55.5,-57.5 parent: 2 type: Transform - - uid: 27219 + - uid: 27293 components: - rot: -1.5707963267948966 rad pos: -58.5,-32.5 parent: 2 type: Transform - - uid: 27220 + - uid: 27294 components: - rot: -1.5707963267948966 rad pos: -58.5,-33.5 parent: 2 type: Transform - - uid: 27221 + - uid: 27295 components: - rot: -1.5707963267948966 rad pos: -58.5,-34.5 parent: 2 type: Transform - - uid: 27222 + - uid: 27296 components: - rot: -1.5707963267948966 rad pos: -58.5,-35.5 parent: 2 type: Transform - - uid: 27223 + - uid: 27297 components: - rot: -1.5707963267948966 rad pos: -58.5,-38.5 parent: 2 type: Transform - - uid: 27224 + - uid: 27298 components: - rot: -1.5707963267948966 rad pos: -58.5,-39.5 parent: 2 type: Transform - - uid: 27225 + - uid: 27299 components: - rot: -1.5707963267948966 rad pos: -58.5,-40.5 parent: 2 type: Transform - - uid: 27226 + - uid: 27300 components: - rot: -1.5707963267948966 rad pos: -58.5,-41.5 parent: 2 type: Transform - - uid: 27227 + - uid: 27301 components: - rot: -1.5707963267948966 rad pos: -58.5,-42.5 parent: 2 type: Transform - - uid: 27228 + - uid: 27302 components: - rot: -1.5707963267948966 rad pos: -58.5,-45.5 parent: 2 type: Transform - - uid: 27229 + - uid: 27303 components: - rot: -1.5707963267948966 rad pos: -58.5,-46.5 parent: 2 type: Transform - - uid: 27230 + - uid: 27304 components: - rot: -1.5707963267948966 rad pos: -58.5,-49.5 parent: 2 type: Transform - - uid: 27231 + - uid: 27305 components: - rot: -1.5707963267948966 rad pos: -58.5,-50.5 parent: 2 type: Transform - - uid: 27232 + - uid: 27306 components: - rot: -1.5707963267948966 rad pos: -58.5,-53.5 parent: 2 type: Transform - - uid: 27233 + - uid: 27307 components: - rot: -1.5707963267948966 rad pos: -58.5,-55.5 parent: 2 type: Transform - - uid: 27234 + - uid: 27308 components: - rot: -1.5707963267948966 rad pos: -58.5,-56.5 parent: 2 type: Transform - - uid: 27235 + - uid: 27309 components: - rot: -1.5707963267948966 rad pos: -58.5,-57.5 parent: 2 type: Transform - - uid: 27236 + - uid: 27310 components: - rot: -1.5707963267948966 rad pos: -58.5,-58.5 parent: 2 type: Transform - - uid: 27237 + - uid: 27311 components: - rot: -1.5707963267948966 rad pos: -56.5,-64.5 parent: 2 type: Transform - - uid: 27238 + - uid: 27312 components: - rot: -1.5707963267948966 rad pos: -56.5,-65.5 parent: 2 type: Transform - - uid: 27239 + - uid: 27313 components: - rot: -1.5707963267948966 rad pos: -56.5,-66.5 parent: 2 type: Transform - - uid: 27240 + - uid: 27314 components: - rot: 3.141592653589793 rad pos: -36.5,-59.5 parent: 2 type: Transform - - uid: 27241 + - uid: 27315 components: - rot: 3.141592653589793 rad pos: -37.5,-59.5 parent: 2 type: Transform - - uid: 27242 + - uid: 27316 components: - pos: -45.5,-41.5 parent: 2 type: Transform - - uid: 27243 + - uid: 27317 components: - pos: -57.5,-70.5 parent: 2 type: Transform - - uid: 27244 + - uid: 27318 components: - pos: -57.5,-72.5 parent: 2 type: Transform - - uid: 27245 + - uid: 27319 components: - pos: -57.5,-74.5 parent: 2 type: Transform - - uid: 27246 + - uid: 27320 components: - pos: -57.5,-78.5 parent: 2 type: Transform - - uid: 27247 + - uid: 27321 components: - pos: -57.5,-80.5 parent: 2 type: Transform - - uid: 27248 + - uid: 27322 components: - pos: -57.5,-82.5 parent: 2 type: Transform - - uid: 27249 + - uid: 27323 components: - pos: -56.5,-67.5 parent: 2 type: Transform - - uid: 27250 + - uid: 27324 components: - pos: -57.5,-67.5 parent: 2 type: Transform - - uid: 27251 + - uid: 27325 components: - pos: -57.5,-68.5 parent: 2 type: Transform - - uid: 27252 + - uid: 27326 components: - pos: -57.5,-69.5 parent: 2 type: Transform - - uid: 27253 + - uid: 27327 components: - rot: 1.5707963267948966 rad pos: -51.5,-61.5 parent: 2 type: Transform - - uid: 27254 + - uid: 27328 components: - rot: 3.141592653589793 rad pos: -22.5,-50.5 parent: 2 type: Transform - - uid: 27255 + - uid: 27329 components: - pos: -31.5,-57.5 parent: 2 type: Transform - - uid: 27256 + - uid: 27330 components: - pos: -31.5,-58.5 parent: 2 type: Transform - - uid: 27257 + - uid: 27331 components: - pos: -30.5,-58.5 parent: 2 type: Transform - - uid: 27258 + - uid: 27332 components: - pos: -30.5,-59.5 parent: 2 type: Transform - - uid: 27259 + - uid: 27333 components: - pos: -30.5,-60.5 parent: 2 type: Transform - - uid: 27260 + - uid: 27334 components: - pos: -31.5,-60.5 parent: 2 type: Transform - - uid: 27261 + - uid: 27335 components: - pos: -31.5,-61.5 parent: 2 type: Transform - - uid: 27262 + - uid: 27336 components: - pos: -32.5,-61.5 parent: 2 type: Transform - - uid: 27263 + - uid: 27337 components: - pos: -33.5,-61.5 parent: 2 type: Transform - - uid: 27264 + - uid: 27338 components: - pos: -33.5,-62.5 parent: 2 type: Transform - - uid: 27265 + - uid: 27339 components: - pos: -34.5,-62.5 parent: 2 type: Transform - - uid: 27266 + - uid: 27340 components: - pos: -35.5,-62.5 parent: 2 type: Transform - - uid: 27267 + - uid: 27341 components: - pos: -36.5,-62.5 parent: 2 type: Transform - - uid: 27268 + - uid: 27342 components: - pos: -37.5,-62.5 parent: 2 type: Transform - - uid: 27269 + - uid: 27343 components: - pos: -38.5,-62.5 parent: 2 type: Transform - - uid: 27270 + - uid: 27344 components: - pos: -39.5,-62.5 parent: 2 type: Transform - - uid: 27271 + - uid: 27345 components: - pos: -42.5,-62.5 parent: 2 type: Transform - - uid: 27272 + - uid: 27346 components: - pos: -43.5,-62.5 parent: 2 type: Transform - - uid: 27273 + - uid: 27347 components: - pos: -44.5,-62.5 parent: 2 type: Transform - - uid: 27274 + - uid: 27348 components: - pos: -45.5,-62.5 parent: 2 type: Transform - - uid: 27275 + - uid: 27349 components: - pos: -46.5,-62.5 parent: 2 type: Transform - - uid: 27276 + - uid: 27350 components: - pos: -47.5,-62.5 parent: 2 type: Transform - - uid: 27277 + - uid: 27351 components: - pos: -48.5,-62.5 parent: 2 type: Transform - - uid: 27278 + - uid: 27352 components: - pos: -49.5,-62.5 parent: 2 type: Transform - - uid: 27279 + - uid: 27353 components: - pos: -50.5,-61.5 parent: 2 type: Transform - - uid: 27280 + - uid: 27354 components: - pos: -49.5,-61.5 parent: 2 type: Transform - - uid: 27281 + - uid: 27355 components: - pos: -59.5,-78.5 parent: 2 type: Transform - - uid: 27282 + - uid: 27356 components: - pos: -50.5,-77.5 parent: 2 type: Transform - - uid: 27283 + - uid: 27357 components: - pos: -50.5,-78.5 parent: 2 type: Transform - - uid: 27284 + - uid: 27358 components: - pos: -57.5,-83.5 parent: 2 type: Transform - - uid: 27285 + - uid: 27359 components: - pos: -56.5,-83.5 parent: 2 type: Transform - - uid: 27286 + - uid: 27360 components: - pos: -52.5,-83.5 parent: 2 type: Transform - - uid: 27287 + - uid: 27361 components: - pos: -52.5,-82.5 parent: 2 type: Transform - - uid: 27288 + - uid: 27362 components: - pos: -52.5,-81.5 parent: 2 type: Transform - - uid: 27289 + - uid: 27363 components: - pos: -51.5,-81.5 parent: 2 type: Transform - - uid: 27290 + - uid: 27364 components: - pos: -51.5,-80.5 parent: 2 type: Transform - - uid: 27291 + - uid: 27365 components: - pos: -50.5,-80.5 parent: 2 type: Transform - - uid: 27292 + - uid: 27366 components: - pos: -50.5,-79.5 parent: 2 type: Transform - - uid: 27293 + - uid: 27367 components: - pos: -59.5,-80.5 parent: 2 type: Transform - - uid: 27294 + - uid: 27368 components: - pos: -59.5,-82.5 parent: 2 type: Transform - - uid: 27295 + - uid: 27369 components: - pos: -58.5,-82.5 parent: 2 type: Transform - - uid: 27296 + - uid: 27370 components: - pos: -58.5,-78.5 parent: 2 type: Transform - - uid: 27297 + - uid: 27371 components: - pos: -58.5,-74.5 parent: 2 type: Transform - - uid: 27298 + - uid: 27372 components: - pos: -59.5,-74.5 parent: 2 type: Transform - - uid: 27299 + - uid: 27373 components: - pos: -59.5,-72.5 parent: 2 type: Transform - - uid: 27300 + - uid: 27374 components: - pos: -58.5,-70.5 parent: 2 type: Transform - - uid: 27301 + - uid: 27375 components: - pos: -59.5,-70.5 parent: 2 type: Transform - - uid: 27302 + - uid: 27376 components: - rot: 1.5707963267948966 rad pos: -34.5,-73.5 parent: 2 type: Transform - - uid: 27303 + - uid: 27377 components: - rot: 1.5707963267948966 rad pos: -48.5,-80.5 parent: 2 type: Transform - - uid: 27304 + - uid: 27378 components: - rot: 1.5707963267948966 rad pos: -48.5,-79.5 parent: 2 type: Transform - - uid: 27305 + - uid: 27379 components: - rot: 1.5707963267948966 rad pos: -49.5,-77.5 parent: 2 type: Transform - - uid: 27306 + - uid: 27380 components: - rot: 1.5707963267948966 rad pos: -46.5,-85.5 parent: 2 type: Transform - - uid: 27307 + - uid: 27381 components: - rot: 1.5707963267948966 rad pos: -47.5,-84.5 parent: 2 type: Transform - - uid: 27308 + - uid: 27382 components: - rot: 1.5707963267948966 rad pos: -45.5,-86.5 parent: 2 type: Transform - - uid: 27309 + - uid: 27383 components: - rot: 1.5707963267948966 rad pos: -46.5,-86.5 parent: 2 type: Transform - - uid: 27310 + - uid: 27384 components: - rot: 1.5707963267948966 rad pos: -35.5,-73.5 parent: 2 type: Transform - - uid: 27311 + - uid: 27385 components: - rot: 1.5707963267948966 rad pos: -48.5,-77.5 parent: 2 type: Transform - - uid: 27312 + - uid: 27386 components: - rot: 1.5707963267948966 rad pos: -35.5,-80.5 parent: 2 type: Transform - - uid: 27313 + - uid: 27387 components: - rot: 1.5707963267948966 rad pos: -35.5,-75.5 parent: 2 type: Transform - - uid: 27314 + - uid: 27388 components: - rot: 1.5707963267948966 rad pos: -35.5,-74.5 parent: 2 type: Transform - - uid: 27315 + - uid: 27389 components: - rot: 1.5707963267948966 rad pos: -48.5,-78.5 parent: 2 type: Transform - - uid: 27316 + - uid: 27390 components: - rot: 1.5707963267948966 rad pos: -47.5,-85.5 parent: 2 type: Transform - - uid: 27317 + - uid: 27391 components: - rot: 1.5707963267948966 rad pos: -38.5,-86.5 parent: 2 type: Transform - - uid: 27318 + - uid: 27392 components: - rot: 1.5707963267948966 rad pos: -37.5,-85.5 parent: 2 type: Transform - - uid: 27319 + - uid: 27393 components: - rot: 1.5707963267948966 rad pos: -37.5,-86.5 parent: 2 type: Transform - - uid: 27320 + - uid: 27394 components: - rot: 1.5707963267948966 rad pos: -48.5,-84.5 parent: 2 type: Transform - - uid: 27321 + - uid: 27395 components: - rot: 1.5707963267948966 rad pos: -35.5,-79.5 parent: 2 type: Transform - - uid: 27322 + - uid: 27396 components: - rot: 1.5707963267948966 rad pos: -35.5,-84.5 parent: 2 type: Transform - - uid: 27323 + - uid: 27397 components: - rot: 1.5707963267948966 rad pos: -36.5,-84.5 parent: 2 type: Transform - - uid: 27324 + - uid: 27398 components: - rot: 1.5707963267948966 rad pos: -36.5,-85.5 parent: 2 type: Transform - - uid: 27325 + - uid: 27399 components: - rot: 1.5707963267948966 rad pos: -33.5,-73.5 parent: 2 type: Transform - - uid: 27326 + - uid: 27400 components: - rot: 1.5707963267948966 rad pos: -32.5,-74.5 parent: 2 type: Transform - - uid: 27327 + - uid: 27401 components: - rot: 1.5707963267948966 rad pos: -32.5,-75.5 parent: 2 type: Transform - - uid: 27328 + - uid: 27402 components: - rot: 1.5707963267948966 rad pos: -31.5,-75.5 parent: 2 type: Transform - - uid: 27329 + - uid: 27403 components: - pos: -44.5,-86.5 parent: 2 type: Transform - - uid: 27330 + - uid: 27404 components: - pos: -39.5,-86.5 parent: 2 type: Transform - - uid: 27331 + - uid: 27405 components: - rot: 1.5707963267948966 rad pos: 48.5,-70.5 parent: 2 type: Transform - - uid: 27332 + - uid: 27406 components: - pos: -17.5,-50.5 parent: 2 type: Transform - - uid: 27333 + - uid: 27407 components: - rot: 1.5707963267948966 rad pos: -57.5,-62.5 parent: 2 type: Transform - - uid: 27334 + - uid: 27408 components: - rot: 1.5707963267948966 rad pos: -58.5,-61.5 parent: 2 type: Transform - - uid: 27335 + - uid: 27409 components: - rot: 1.5707963267948966 rad pos: -58.5,-62.5 parent: 2 type: Transform - - uid: 27336 + - uid: 27410 components: - pos: -19.5,-50.5 parent: 2 type: Transform - - uid: 27337 + - uid: 27411 components: - pos: 25.5,-30.5 parent: 2 type: Transform - - uid: 27338 + - uid: 27412 components: - pos: 27.5,-30.5 parent: 2 type: Transform - - uid: 27339 + - uid: 27413 components: - rot: -1.5707963267948966 rad pos: 30.5,-31.5 parent: 2 type: Transform - - uid: 27340 + - uid: 27414 components: - rot: -1.5707963267948966 rad pos: 31.5,-31.5 parent: 2 type: Transform - - uid: 27341 + - uid: 27415 components: - pos: 27.5,-31.5 parent: 2 type: Transform - - uid: 27342 + - uid: 27416 components: - pos: 28.5,-31.5 parent: 2 type: Transform - - uid: 27343 + - uid: 27417 components: - rot: -1.5707963267948966 rad pos: 32.5,-31.5 parent: 2 type: Transform - - uid: 27344 + - uid: 27418 components: - rot: -1.5707963267948966 rad pos: 33.5,-31.5 parent: 2 type: Transform - - uid: 27345 + - uid: 27419 components: - pos: -21.5,-50.5 parent: 2 type: Transform - - uid: 27346 + - uid: 27420 components: - pos: -53.5,-50.5 parent: 2 type: Transform - - uid: 27347 + - uid: 27421 components: - pos: -53.5,-47.5 parent: 2 type: Transform - - uid: 27348 + - uid: 27422 components: - pos: -53.5,-48.5 parent: 2 type: Transform - - uid: 27349 + - uid: 27423 components: - pos: -53.5,-49.5 parent: 2 type: Transform - - uid: 27350 + - uid: 27424 components: - pos: -59.5,-53.5 parent: 2 type: Transform - - uid: 27351 + - uid: 27425 components: - pos: -60.5,-53.5 parent: 2 type: Transform - - uid: 27352 + - uid: 27426 components: - pos: -59.5,-55.5 parent: 2 type: Transform - - uid: 27353 + - uid: 27427 components: - pos: -60.5,-55.5 parent: 2 type: Transform - - uid: 27354 + - uid: 27428 components: - pos: 25.5,-27.5 parent: 2 type: Transform - - uid: 27355 + - uid: 27429 components: - pos: 68.5,12.5 parent: 2 type: Transform - - uid: 27356 + - uid: 27430 components: - rot: 1.5707963267948966 rad pos: 8.5,-18.5 parent: 2 type: Transform - - uid: 27357 + - uid: 27431 components: - pos: 5.5,34.5 parent: 2 type: Transform - - uid: 27358 + - uid: 27432 components: - pos: 9.5,35.5 parent: 2 type: Transform - - uid: 27359 + - uid: 27433 components: - pos: 11.5,31.5 parent: 2 type: Transform - - uid: 27360 + - uid: 27434 components: - pos: -3.5,26.5 parent: 2 type: Transform - - uid: 27361 + - uid: 27435 components: - pos: -7.5,33.5 parent: 2 type: Transform - - uid: 27362 + - uid: 27436 components: - pos: -6.5,33.5 parent: 2 type: Transform - - uid: 27363 + - uid: 27437 components: - pos: -5.5,33.5 parent: 2 type: Transform - - uid: 27364 + - uid: 27438 components: - pos: -16.5,53.5 parent: 2 type: Transform - - uid: 27365 + - uid: 27439 components: - pos: -23.5,72.5 parent: 2 type: Transform - - uid: 27366 + - uid: 27440 components: - pos: -7.5,30.5 parent: 2 type: Transform - - uid: 27367 + - uid: 27441 components: - pos: -7.5,29.5 parent: 2 type: Transform - - uid: 27368 + - uid: 27442 components: - pos: -7.5,26.5 parent: 2 type: Transform - - uid: 27369 + - uid: 27443 components: - pos: -7.5,31.5 parent: 2 type: Transform - - uid: 27370 + - uid: 27444 components: - pos: -6.5,31.5 parent: 2 type: Transform - - uid: 27371 + - uid: 27445 components: - pos: -5.5,31.5 parent: 2 type: Transform - - uid: 27372 + - uid: 27446 components: - pos: -4.5,31.5 parent: 2 type: Transform - - uid: 27373 + - uid: 27447 components: - pos: -4.5,30.5 parent: 2 type: Transform - - uid: 27374 + - uid: 27448 components: - pos: -4.5,29.5 parent: 2 type: Transform - - uid: 27375 + - uid: 27449 components: - pos: -3.5,29.5 parent: 2 type: Transform - - uid: 27376 + - uid: 27450 components: - pos: -1.5,29.5 parent: 2 type: Transform - - uid: 27377 + - uid: 27451 components: - pos: -0.5,29.5 parent: 2 type: Transform - - uid: 27378 + - uid: 27452 components: - pos: 0.5,29.5 parent: 2 type: Transform - - uid: 27379 + - uid: 27453 components: - pos: 1.5,29.5 parent: 2 type: Transform - - uid: 27380 + - uid: 27454 components: - pos: 1.5,30.5 parent: 2 type: Transform - - uid: 27381 + - uid: 27455 components: - pos: 1.5,31.5 parent: 2 type: Transform - - uid: 27382 + - uid: 27456 components: - pos: 2.5,31.5 parent: 2 type: Transform - - uid: 27383 + - uid: 27457 components: - pos: 2.5,33.5 parent: 2 type: Transform - - uid: 27384 + - uid: 27458 components: - pos: 1.5,33.5 parent: 2 type: Transform - - uid: 27385 + - uid: 27459 components: - pos: 1.5,34.5 parent: 2 type: Transform - - uid: 27386 + - uid: 27460 components: - pos: 1.5,35.5 parent: 2 type: Transform - - uid: 27387 + - uid: 27461 components: - pos: 0.5,35.5 parent: 2 type: Transform - - uid: 27388 + - uid: 27462 components: - pos: -3.5,35.5 parent: 2 type: Transform - - uid: 27389 + - uid: 27463 components: - pos: -4.5,35.5 parent: 2 type: Transform - - uid: 27390 + - uid: 27464 components: - pos: -4.5,34.5 parent: 2 type: Transform - - uid: 27391 + - uid: 27465 components: - pos: -4.5,33.5 parent: 2 type: Transform - - uid: 27392 + - uid: 27466 components: - pos: -23.5,58.5 parent: 2 type: Transform - - uid: 27393 + - uid: 27467 components: - pos: -20.5,72.5 parent: 2 type: Transform - - uid: 27394 + - uid: 27468 components: - pos: -23.5,57.5 parent: 2 type: Transform - - uid: 27395 + - uid: 27469 components: - pos: 49.5,41.5 parent: 2 type: Transform - - uid: 27396 + - uid: 27470 components: - pos: 12.5,31.5 parent: 2 type: Transform - - uid: 27397 + - uid: 27471 components: - pos: 6.5,29.5 parent: 2 type: Transform - - uid: 27398 + - uid: 27472 components: - pos: 4.5,33.5 parent: 2 type: Transform - - uid: 27399 + - uid: 27473 components: - pos: -4.5,24.5 parent: 2 type: Transform - - uid: 27400 + - uid: 27474 components: - pos: -5.5,24.5 parent: 2 type: Transform - - uid: 27401 + - uid: 27475 components: - pos: -6.5,24.5 parent: 2 type: Transform - - uid: 27402 + - uid: 27476 components: - pos: -7.5,24.5 parent: 2 type: Transform - - uid: 27403 + - uid: 27477 components: - pos: -7.5,25.5 parent: 2 type: Transform - - uid: 27404 + - uid: 27478 components: - pos: -34.5,27.5 parent: 2 type: Transform - - uid: 27405 + - uid: 27479 components: - pos: -35.5,27.5 parent: 2 type: Transform - - uid: 27406 + - uid: 27480 components: - pos: -35.5,28.5 parent: 2 type: Transform - - uid: 27407 + - uid: 27481 components: - pos: -35.5,26.5 parent: 2 type: Transform - - uid: 27408 + - uid: 27482 components: - pos: -49.5,27.5 parent: 2 type: Transform - - uid: 27409 + - uid: 27483 components: - pos: -49.5,24.5 parent: 2 type: Transform - - uid: 27410 + - uid: 27484 components: - rot: -1.5707963267948966 rad pos: -49.5,16.5 parent: 2 type: Transform - - uid: 27411 + - uid: 27485 components: - pos: -49.5,25.5 parent: 2 type: Transform - - uid: 27412 + - uid: 27486 components: - pos: -49.5,26.5 parent: 2 type: Transform - - uid: 27413 + - uid: 27487 components: - pos: -49.5,17.5 parent: 2 type: Transform - - uid: 27414 + - uid: 27488 components: - pos: -49.5,18.5 parent: 2 type: Transform - - uid: 27415 + - uid: 27489 components: - pos: -51.5,18.5 parent: 2 type: Transform - - uid: 27416 + - uid: 27490 components: - pos: -51.5,24.5 parent: 2 type: Transform - - uid: 27417 + - uid: 27491 components: - pos: 4.5,34.5 parent: 2 type: Transform - - uid: 27418 + - uid: 27492 components: - pos: 5.5,29.5 parent: 2 type: Transform - - uid: 27419 + - uid: 27493 components: - pos: 12.5,33.5 parent: 2 type: Transform - - uid: 27420 + - uid: 27494 components: - pos: -3.5,28.5 parent: 2 type: Transform - - uid: 27421 + - uid: 27495 components: - pos: 58.5,41.5 parent: 2 type: Transform - - uid: 27422 + - uid: 27496 components: - rot: -1.5707963267948966 rad pos: 55.5,41.5 parent: 2 type: Transform - - uid: 27423 + - uid: 27497 components: - pos: 54.5,51.5 parent: 2 type: Transform - - uid: 27424 + - uid: 27498 components: - pos: 57.5,60.5 parent: 2 type: Transform - - uid: 27425 + - uid: 27499 components: - rot: -1.5707963267948966 rad pos: 56.5,41.5 parent: 2 type: Transform - - uid: 27426 + - uid: 27500 components: - rot: -1.5707963267948966 rad pos: 42.5,38.5 parent: 2 type: Transform - - uid: 27427 + - uid: 27501 components: - pos: -29.5,27.5 parent: 2 type: Transform - - uid: 27428 + - uid: 27502 components: - pos: -35.5,29.5 parent: 2 type: Transform - - uid: 27429 + - uid: 27503 components: - pos: -29.5,29.5 parent: 2 type: Transform - - uid: 27430 + - uid: 27504 components: - pos: -29.5,30.5 parent: 2 type: Transform - - uid: 27431 + - uid: 27505 components: - pos: -29.5,31.5 parent: 2 type: Transform - - uid: 27432 + - uid: 27506 components: - pos: -29.5,32.5 parent: 2 type: Transform - - uid: 27433 + - uid: 27507 components: - pos: -35.5,30.5 parent: 2 type: Transform - - uid: 27434 + - uid: 27508 components: - pos: -35.5,31.5 parent: 2 type: Transform - - uid: 27435 + - uid: 27509 components: - pos: -35.5,32.5 parent: 2 type: Transform - - uid: 27436 + - uid: 27510 components: - pos: -34.5,32.5 parent: 2 type: Transform - - uid: 27437 + - uid: 27511 components: - pos: -30.5,32.5 parent: 2 type: Transform - - uid: 27438 + - uid: 27512 components: - pos: -49.5,32.5 parent: 2 type: Transform - - uid: 27439 + - uid: 27513 components: - pos: -50.5,32.5 parent: 2 type: Transform - - uid: 27440 + - uid: 27514 components: - pos: -51.5,32.5 parent: 2 type: Transform - - uid: 27441 + - uid: 27515 components: - pos: -52.5,32.5 parent: 2 type: Transform - - uid: 27442 + - uid: 27516 components: - pos: -49.5,28.5 parent: 2 type: Transform - - uid: 27443 + - uid: 27517 components: - pos: -50.5,28.5 parent: 2 type: Transform - - uid: 27444 + - uid: 27518 components: - pos: -51.5,28.5 parent: 2 type: Transform - - uid: 27445 + - uid: 27519 components: - pos: -52.5,28.5 parent: 2 type: Transform - - uid: 27446 + - uid: 27520 components: - pos: -49.5,36.5 parent: 2 type: Transform - - uid: 27447 + - uid: 27521 components: - pos: -50.5,36.5 parent: 2 type: Transform - - uid: 27448 + - uid: 27522 components: - pos: -51.5,36.5 parent: 2 type: Transform - - uid: 27449 + - uid: 27523 components: - pos: -52.5,36.5 parent: 2 type: Transform - - uid: 27450 + - uid: 27524 components: - rot: -1.5707963267948966 rad pos: -53.5,24.5 parent: 2 type: Transform - - uid: 27451 + - uid: 27525 components: - rot: -1.5707963267948966 rad pos: -53.5,18.5 parent: 2 type: Transform - - uid: 27452 + - uid: 27526 components: - pos: -49.5,37.5 parent: 2 type: Transform - - uid: 27453 + - uid: 27527 components: - pos: -48.5,37.5 parent: 2 type: Transform - - uid: 27454 + - uid: 27528 components: - pos: -35.5,34.5 parent: 2 type: Transform - - uid: 27455 + - uid: 27529 components: - pos: -35.5,33.5 parent: 2 type: Transform - - uid: 27456 + - uid: 27530 components: - pos: 49.5,43.5 parent: 2 type: Transform - - uid: 27457 + - uid: 27531 components: - pos: 49.5,48.5 parent: 2 type: Transform - - uid: 27458 + - uid: 27532 components: - pos: 59.5,49.5 parent: 2 type: Transform - - uid: 27459 + - uid: 27533 components: - pos: 49.5,49.5 parent: 2 type: Transform - - uid: 27460 + - uid: 27534 components: - pos: 59.5,44.5 parent: 2 type: Transform - - uid: 27461 + - uid: 27535 components: - rot: 3.141592653589793 rad pos: 61.5,42.5 parent: 2 type: Transform - - uid: 27462 + - uid: 27536 components: - pos: 49.5,42.5 parent: 2 type: Transform - - uid: 27463 + - uid: 27537 components: - pos: 59.5,42.5 parent: 2 type: Transform - - uid: 27464 + - uid: 27538 components: - pos: 66.5,-31.5 parent: 2 type: Transform - - uid: 27465 + - uid: 27539 components: - pos: 66.5,-32.5 parent: 2 type: Transform - - uid: 27466 + - uid: 27540 components: - rot: -1.5707963267948966 rad pos: 59.5,-25.5 parent: 2 type: Transform - - uid: 27467 + - uid: 27541 components: - rot: 3.141592653589793 rad pos: 10.5,-80.5 parent: 2 type: Transform - - uid: 27468 + - uid: 27542 components: - pos: -57.5,-0.5 parent: 2 type: Transform - - uid: 27469 + - uid: 27543 components: - pos: -56.5,-0.5 parent: 2 type: Transform - - uid: 27470 + - uid: 27544 components: - pos: -55.5,-0.5 parent: 2 type: Transform - - uid: 27471 + - uid: 27545 components: - pos: -57.5,-2.5 parent: 2 type: Transform - - uid: 27472 + - uid: 27546 components: - rot: 3.141592653589793 rad pos: -53.5,1.5 parent: 2 type: Transform - - uid: 27473 + - uid: 27547 components: - rot: 3.141592653589793 rad pos: -54.5,1.5 parent: 2 type: Transform - - uid: 27474 + - uid: 27548 components: - pos: -55.5,1.5 parent: 2 type: Transform - - uid: 27475 + - uid: 27549 components: - pos: -55.5,0.5 parent: 2 type: Transform - - uid: 27476 + - uid: 27550 components: - pos: -50.5,16.5 parent: 2 type: Transform - - uid: 27477 + - uid: 27551 components: - pos: 58.5,48.5 parent: 2 type: Transform - - uid: 27478 + - uid: 27552 components: - pos: 56.5,44.5 parent: 2 type: Transform - - uid: 27479 + - uid: 27553 components: - pos: 50.5,48.5 parent: 2 type: Transform - - uid: 27480 + - uid: 27554 components: - pos: 54.5,46.5 parent: 2 type: Transform - - uid: 27481 + - uid: 27555 components: - pos: 54.5,48.5 parent: 2 type: Transform - - uid: 27482 + - uid: 27556 components: - rot: 3.141592653589793 rad pos: -53.5,2.5 parent: 2 type: Transform - - uid: 27483 + - uid: 27557 components: - rot: 3.141592653589793 rad pos: -53.5,3.5 parent: 2 type: Transform - - uid: 27484 + - uid: 27558 components: - rot: 3.141592653589793 rad pos: -53.5,4.5 parent: 2 type: Transform - - uid: 27485 + - uid: 27559 components: - rot: 3.141592653589793 rad pos: -53.5,5.5 parent: 2 type: Transform - - uid: 27486 + - uid: 27560 components: - rot: 3.141592653589793 rad pos: -53.5,6.5 parent: 2 type: Transform - - uid: 27487 + - uid: 27561 components: - rot: 3.141592653589793 rad pos: -53.5,7.5 parent: 2 type: Transform - - uid: 27488 + - uid: 27562 components: - rot: 3.141592653589793 rad pos: -53.5,8.5 parent: 2 type: Transform - - uid: 27489 + - uid: 27563 components: - rot: 3.141592653589793 rad pos: -53.5,9.5 parent: 2 type: Transform - - uid: 27490 + - uid: 27564 components: - rot: 3.141592653589793 rad pos: -53.5,12.5 parent: 2 type: Transform - - uid: 27491 + - uid: 27565 components: - rot: 3.141592653589793 rad pos: -53.5,13.5 parent: 2 type: Transform - - uid: 27492 + - uid: 27566 components: - rot: 3.141592653589793 rad pos: -53.5,15.5 parent: 2 type: Transform - - uid: 27493 + - uid: 27567 components: - rot: 3.141592653589793 rad pos: -53.5,14.5 parent: 2 type: Transform - - uid: 27494 + - uid: 27568 components: - rot: 3.141592653589793 rad pos: -53.5,16.5 parent: 2 type: Transform - - uid: 27495 + - uid: 27569 components: - rot: 3.141592653589793 rad pos: -52.5,16.5 parent: 2 type: Transform - - uid: 27496 + - uid: 27570 components: - rot: 3.141592653589793 rad pos: -51.5,16.5 parent: 2 type: Transform - - uid: 27497 + - uid: 27571 components: - pos: 56.5,46.5 parent: 2 type: Transform - - uid: 27498 + - uid: 27572 components: - rot: -1.5707963267948966 rad pos: 55.5,40.5 parent: 2 type: Transform - - uid: 27499 + - uid: 27573 components: - pos: -20.5,-50.5 parent: 2 type: Transform - - uid: 27500 + - uid: 27574 components: - pos: 58.5,44.5 parent: 2 type: Transform - - uid: 27501 + - uid: 27575 components: - pos: 58.5,46.5 parent: 2 type: Transform - - uid: 27502 + - uid: 27576 components: - pos: 50.5,44.5 parent: 2 type: Transform - - uid: 27503 + - uid: 27577 components: - pos: 52.5,44.5 parent: 2 type: Transform - - uid: 27504 + - uid: 27578 components: - rot: 1.5707963267948966 rad pos: 66.5,0.5 parent: 2 type: Transform - - uid: 27505 + - uid: 27579 components: - pos: 52.5,46.5 parent: 2 type: Transform - - uid: 27506 + - uid: 27580 components: - pos: 50.5,46.5 parent: 2 type: Transform - - uid: 27507 + - uid: 27581 components: - pos: 56.5,48.5 parent: 2 type: Transform - - uid: 27508 + - uid: 27582 components: - pos: 54.5,44.5 parent: 2 type: Transform - - uid: 27509 + - uid: 27583 components: - rot: 1.5707963267948966 rad pos: 67.5,-10.5 parent: 2 type: Transform - - uid: 27510 + - uid: 27584 components: - pos: 68.5,-16.5 parent: 2 type: Transform - - uid: 27511 + - uid: 27585 components: - rot: 1.5707963267948966 rad pos: 67.5,-6.5 parent: 2 type: Transform - - uid: 27512 + - uid: 27586 components: - rot: 1.5707963267948966 rad pos: 67.5,-2.5 parent: 2 type: Transform - - uid: 27513 + - uid: 27587 components: - pos: 52.5,48.5 parent: 2 type: Transform - - uid: 27514 + - uid: 27588 components: - rot: -1.5707963267948966 rad pos: -7.5,37.5 parent: 2 type: Transform - - uid: 27515 + - uid: 27589 components: - rot: -1.5707963267948966 rad pos: -7.5,39.5 parent: 2 type: Transform - - uid: 27516 + - uid: 27590 components: - rot: 3.141592653589793 rad pos: 21.5,-40.5 parent: 2 type: Transform - - uid: 27517 + - uid: 27591 components: - pos: 13.5,-71.5 parent: 2 type: Transform - - uid: 27518 + - uid: 27592 components: - pos: 24.5,-26.5 parent: 2 type: Transform - - uid: 27519 + - uid: 27593 components: - pos: 22.5,-26.5 parent: 2 type: Transform - - uid: 27520 + - uid: 27594 components: - rot: -1.5707963267948966 rad pos: -75.5,-25.5 parent: 2 type: Transform - - uid: 27521 + - uid: 27595 components: - rot: 3.141592653589793 rad pos: 24.5,27.5 parent: 2 type: Transform - - uid: 27522 + - uid: 27596 components: - pos: 64.5,-61.5 parent: 2 type: Transform - - uid: 27523 + - uid: 27597 components: - pos: 27.5,-33.5 parent: 2 type: Transform - - uid: 27524 + - uid: 27598 components: - pos: -47.5,52.5 parent: 2 type: Transform - - uid: 27525 + - uid: 27599 components: - pos: -41.5,52.5 parent: 2 type: Transform - - uid: 27526 + - uid: 27600 components: - pos: 52.5,-25.5 parent: 2 type: Transform - - uid: 27527 + - uid: 27601 components: - pos: 55.5,-25.5 parent: 2 type: Transform - - uid: 27528 + - uid: 27602 components: - rot: -1.5707963267948966 rad pos: 47.5,-63.5 parent: 2 type: Transform - - uid: 27529 + - uid: 27603 components: - rot: 1.5707963267948966 rad pos: 44.5,-83.5 parent: 2 type: Transform - - uid: 27530 + - uid: 27604 components: - rot: 3.141592653589793 rad pos: 24.5,28.5 parent: 2 type: Transform - - uid: 27531 + - uid: 27605 components: - rot: 3.141592653589793 rad pos: 24.5,29.5 parent: 2 type: Transform - - uid: 27532 + - uid: 27606 components: - rot: 3.141592653589793 rad pos: 24.5,30.5 parent: 2 type: Transform - - uid: 27533 + - uid: 27607 components: - rot: 3.141592653589793 rad pos: 24.5,31.5 parent: 2 type: Transform - - uid: 27534 + - uid: 27608 components: - rot: 3.141592653589793 rad pos: 24.5,32.5 parent: 2 type: Transform - - uid: 27535 + - uid: 27609 components: - rot: 3.141592653589793 rad pos: 24.5,33.5 parent: 2 type: Transform - - uid: 27536 + - uid: 27610 components: - rot: 3.141592653589793 rad pos: 24.5,34.5 parent: 2 type: Transform - - uid: 27537 + - uid: 27611 components: - rot: 3.141592653589793 rad pos: 25.5,34.5 parent: 2 type: Transform - - uid: 27538 + - uid: 27612 components: - rot: 3.141592653589793 rad pos: 26.5,34.5 parent: 2 type: Transform - - uid: 27539 + - uid: 27613 components: - rot: 3.141592653589793 rad pos: 27.5,34.5 parent: 2 type: Transform - - uid: 27540 + - uid: 27614 components: - rot: 3.141592653589793 rad pos: 28.5,34.5 parent: 2 type: Transform - - uid: 27541 + - uid: 27615 components: - rot: 3.141592653589793 rad pos: 30.5,34.5 parent: 2 type: Transform - - uid: 27542 + - uid: 27616 components: - rot: 3.141592653589793 rad pos: 31.5,34.5 parent: 2 type: Transform - - uid: 27543 + - uid: 27617 components: - rot: 3.141592653589793 rad pos: 32.5,34.5 parent: 2 type: Transform - - uid: 27544 + - uid: 27618 components: - rot: 3.141592653589793 rad pos: 33.5,34.5 parent: 2 type: Transform - - uid: 27545 + - uid: 27619 components: - rot: 3.141592653589793 rad pos: 34.5,34.5 parent: 2 type: Transform - - uid: 27546 + - uid: 27620 components: - rot: 3.141592653589793 rad pos: 34.5,33.5 parent: 2 type: Transform - - uid: 27547 + - uid: 27621 components: - rot: 3.141592653589793 rad pos: 34.5,32.5 parent: 2 type: Transform - - uid: 27548 + - uid: 27622 components: - rot: 3.141592653589793 rad pos: 34.5,31.5 parent: 2 type: Transform - - uid: 27549 + - uid: 27623 components: - rot: 3.141592653589793 rad pos: 34.5,30.5 parent: 2 type: Transform - - uid: 27550 + - uid: 27624 components: - rot: 3.141592653589793 rad pos: 34.5,29.5 parent: 2 type: Transform - - uid: 27551 + - uid: 27625 components: - rot: 3.141592653589793 rad pos: 34.5,28.5 parent: 2 type: Transform - - uid: 27552 + - uid: 27626 components: - rot: 3.141592653589793 rad pos: 34.5,27.5 parent: 2 type: Transform - - uid: 27553 + - uid: 27627 components: - rot: 3.141592653589793 rad pos: 12.5,-79.5 parent: 2 type: Transform - - uid: 27554 + - uid: 27628 components: - rot: 3.141592653589793 rad pos: 11.5,-79.5 parent: 2 type: Transform - - uid: 27555 + - uid: 27629 components: - rot: -1.5707963267948966 rad pos: 57.5,-25.5 parent: 2 type: Transform - - uid: 27556 + - uid: 27630 components: - rot: 1.5707963267948966 rad pos: 39.5,9.5 parent: 2 type: Transform - - uid: 27557 + - uid: 27631 components: - pos: 34.5,21.5 parent: 2 type: Transform - - uid: 27558 + - uid: 27632 components: - pos: 67.5,-67.5 parent: 2 type: Transform - - uid: 27559 + - uid: 27633 components: - pos: 69.5,-69.5 parent: 2 type: Transform - - uid: 27560 + - uid: 27634 components: - pos: -78.5,-19.5 parent: 2 type: Transform - - uid: 27561 + - uid: 27635 components: - pos: -78.5,-5.5 parent: 2 type: Transform - - uid: 27562 + - uid: 27636 components: - pos: -71.5,-2.5 parent: 2 type: Transform - - uid: 27563 + - uid: 27637 components: - pos: -64.5,-2.5 parent: 2 type: Transform - - uid: 27564 + - uid: 27638 components: - pos: -64.5,-47.5 parent: 2 type: Transform - - uid: 27565 + - uid: 27639 components: - pos: 38.5,31.5 parent: 2 type: Transform - - uid: 27566 + - uid: 27640 components: - pos: 32.5,39.5 parent: 2 type: Transform - - uid: 27567 + - uid: 27641 components: - pos: 24.5,39.5 parent: 2 type: Transform - - uid: 27568 + - uid: 27642 components: - pos: 73.5,-40.5 parent: 2 type: Transform - - uid: 27569 + - uid: 27643 components: - pos: 77.5,-42.5 parent: 2 type: Transform - - uid: 27570 + - uid: 27644 components: - pos: 77.5,-48.5 parent: 2 type: Transform - - uid: 27571 + - uid: 27645 components: - pos: 78.5,-48.5 parent: 2 type: Transform - - uid: 27572 + - uid: 27646 components: - pos: 78.5,-42.5 parent: 2 type: Transform - - uid: 27573 + - uid: 27647 components: - pos: 78.5,-47.5 parent: 2 type: Transform - - uid: 27574 + - uid: 27648 components: - pos: 27.5,-26.5 parent: 2 type: Transform - - uid: 27575 + - uid: 27649 components: - pos: 59.5,50.5 parent: 2 type: Transform - - uid: 27576 + - uid: 27650 components: - pos: -32.5,-73.5 parent: 2 type: Transform - - uid: 27577 + - uid: 27651 components: - rot: -1.5707963267948966 rad pos: 46.5,50.5 parent: 2 type: Transform - - uid: 27578 + - uid: 27652 components: - rot: -1.5707963267948966 rad pos: 45.5,50.5 parent: 2 type: Transform - - uid: 27579 + - uid: 27653 components: - rot: -1.5707963267948966 rad pos: 44.5,50.5 parent: 2 type: Transform - - uid: 27580 + - uid: 27654 components: - pos: 48.5,44.5 parent: 2 type: Transform - - uid: 27581 + - uid: 27655 components: - pos: 47.5,44.5 parent: 2 type: Transform - - uid: 27582 + - uid: 27656 components: - pos: 47.5,43.5 parent: 2 type: Transform - - uid: 27583 + - uid: 27657 components: - pos: 45.5,43.5 parent: 2 type: Transform - - uid: 27584 + - uid: 27658 components: - pos: 44.5,43.5 parent: 2 type: Transform - - uid: 27585 + - uid: 27659 components: - pos: 59.5,51.5 parent: 2 type: Transform - - uid: 27586 + - uid: 27660 components: - pos: 59.5,52.5 parent: 2 type: Transform - - uid: 27587 + - uid: 27661 components: - pos: 59.5,53.5 parent: 2 type: Transform - - uid: 27588 + - uid: 27662 components: - pos: 58.5,53.5 parent: 2 type: Transform - - uid: 27589 + - uid: 27663 components: - pos: 57.5,53.5 parent: 2 type: Transform - - uid: 27590 + - uid: 27664 components: - pos: 51.5,53.5 parent: 2 type: Transform - - uid: 27591 + - uid: 27665 components: - pos: 50.5,53.5 parent: 2 type: Transform - - uid: 27592 + - uid: 27666 components: - pos: 49.5,53.5 parent: 2 type: Transform - - uid: 27593 + - uid: 27667 components: - pos: 49.5,52.5 parent: 2 type: Transform - - uid: 27594 + - uid: 27668 components: - pos: 49.5,51.5 parent: 2 type: Transform - - uid: 27595 + - uid: 27669 components: - rot: -1.5707963267948966 rad pos: 55.5,39.5 parent: 2 type: Transform - - uid: 27596 + - uid: 27670 components: - rot: -1.5707963267948966 rad pos: 55.5,38.5 parent: 2 type: Transform - - uid: 27597 + - uid: 27671 components: - pos: 61.5,30.5 parent: 2 type: Transform - - uid: 27598 + - uid: 27672 components: - pos: 59.5,31.5 parent: 2 type: Transform - - uid: 27599 + - uid: 27673 components: - pos: 59.5,34.5 parent: 2 type: Transform - - uid: 27600 + - uid: 27674 components: - rot: -1.5707963267948966 rad pos: 58.5,35.5 parent: 2 type: Transform - - uid: 27601 + - uid: 27675 components: - rot: -1.5707963267948966 rad pos: 57.5,35.5 parent: 2 type: Transform - - uid: 27602 + - uid: 27676 components: - rot: -1.5707963267948966 rad pos: 43.5,-65.5 parent: 2 type: Transform - - uid: 27603 + - uid: 27677 components: - pos: 10.5,-36.5 parent: 2 type: Transform - - uid: 27604 + - uid: 27678 components: - rot: -1.5707963267948966 rad pos: 57.5,38.5 parent: 2 type: Transform - - uid: 27605 + - uid: 27679 components: - rot: 3.141592653589793 rad pos: 61.5,41.5 parent: 2 type: Transform - - uid: 27606 + - uid: 27680 components: - rot: 3.141592653589793 rad pos: 60.5,41.5 parent: 2 type: Transform - - uid: 27607 + - uid: 27681 components: - rot: -1.5707963267948966 rad pos: 42.5,42.5 parent: 2 type: Transform - - uid: 27608 + - uid: 27682 components: - rot: -1.5707963267948966 rad pos: 43.5,43.5 parent: 2 type: Transform - - uid: 27609 + - uid: 27683 components: - rot: -1.5707963267948966 rad pos: 49.5,46.5 parent: 2 type: Transform - - uid: 27610 + - uid: 27684 components: - rot: -1.5707963267948966 rad pos: -7.5,41.5 parent: 2 type: Transform - - uid: 27611 + - uid: 27685 components: - rot: -1.5707963267948966 rad pos: -7.5,40.5 parent: 2 type: Transform - - uid: 27612 + - uid: 27686 components: - rot: -1.5707963267948966 rad pos: -7.5,34.5 parent: 2 type: Transform - - uid: 27613 + - uid: 27687 components: - rot: -1.5707963267948966 rad pos: -7.5,35.5 parent: 2 type: Transform - - uid: 27614 + - uid: 27688 components: - rot: -1.5707963267948966 rad pos: -7.5,36.5 parent: 2 type: Transform - - uid: 27615 + - uid: 27689 components: - rot: 3.141592653589793 rad pos: 3.5,60.5 parent: 2 type: Transform - - uid: 27616 + - uid: 27690 components: - rot: -1.5707963267948966 rad pos: -7.5,42.5 parent: 2 type: Transform - - uid: 27617 + - uid: 27691 components: - pos: -18.5,68.5 parent: 2 type: Transform - - uid: 27618 + - uid: 27692 components: - pos: -16.5,59.5 parent: 2 type: Transform - - uid: 27619 + - uid: 27693 components: - pos: -16.5,58.5 parent: 2 type: Transform - - uid: 27620 + - uid: 27694 components: - pos: -23.5,59.5 parent: 2 type: Transform - - uid: 27621 + - uid: 27695 components: - pos: -23.5,64.5 parent: 2 type: Transform - - uid: 27622 + - uid: 27696 components: - pos: -23.5,65.5 parent: 2 type: Transform - - uid: 27623 + - uid: 27697 components: - pos: -16.5,54.5 parent: 2 type: Transform - - uid: 27624 + - uid: 27698 components: - pos: -14.5,52.5 parent: 2 type: Transform - - uid: 27625 + - uid: 27699 components: - pos: -14.5,53.5 parent: 2 type: Transform - - uid: 27626 + - uid: 27700 components: - pos: -16.5,52.5 parent: 2 type: Transform - - uid: 27627 + - uid: 27701 components: - pos: -15.5,52.5 parent: 2 type: Transform - - uid: 27628 + - uid: 27702 components: - pos: -23.5,71.5 parent: 2 type: Transform - - uid: 27629 + - uid: 27703 components: - pos: -23.5,70.5 parent: 2 type: Transform - - uid: 27630 + - uid: 27704 components: - pos: -23.5,69.5 parent: 2 type: Transform - - uid: 27631 + - uid: 27705 components: - pos: -20.5,71.5 parent: 2 type: Transform - - uid: 27632 + - uid: 27706 components: - pos: -20.5,70.5 parent: 2 type: Transform - - uid: 27633 + - uid: 27707 components: - pos: -16.5,69.5 parent: 2 type: Transform - - uid: 27634 + - uid: 27708 components: - pos: -23.5,60.5 parent: 2 type: Transform - - uid: 27635 + - uid: 27709 components: - pos: -23.5,74.5 parent: 2 type: Transform - - uid: 27636 + - uid: 27710 components: - pos: -23.5,75.5 parent: 2 type: Transform - - uid: 27637 + - uid: 27711 components: - pos: -20.5,75.5 parent: 2 type: Transform - - uid: 27638 + - uid: 27712 components: - pos: -20.5,74.5 parent: 2 type: Transform - - uid: 27639 + - uid: 27713 components: - pos: -15.5,59.5 parent: 2 type: Transform - - uid: 27640 + - uid: 27714 components: - pos: -14.5,59.5 parent: 2 type: Transform - - uid: 27641 + - uid: 27715 components: - pos: -11.5,74.5 parent: 2 type: Transform - - uid: 27642 + - uid: 27716 components: - pos: -11.5,75.5 parent: 2 type: Transform - - uid: 27643 + - uid: 27717 components: - pos: -14.5,75.5 parent: 2 type: Transform - - uid: 27644 + - uid: 27718 components: - pos: -14.5,74.5 parent: 2 type: Transform - - uid: 27645 + - uid: 27719 components: - pos: -14.5,57.5 parent: 2 type: Transform - - uid: 27646 + - uid: 27720 components: - pos: -16.5,57.5 parent: 2 type: Transform - - uid: 27647 + - uid: 27721 components: - pos: -14.5,54.5 parent: 2 type: Transform - - uid: 27648 + - uid: 27722 components: - pos: -23.5,67.5 parent: 2 type: Transform - - uid: 27649 + - uid: 27723 components: - pos: -23.5,68.5 parent: 2 type: Transform - - uid: 27650 + - uid: 27724 components: - pos: -16.5,70.5 parent: 2 type: Transform - - uid: 27651 + - uid: 27725 components: - pos: -11.5,66.5 parent: 2 type: Transform - - uid: 27652 + - uid: 27726 components: - pos: -23.5,66.5 parent: 2 type: Transform - - uid: 27653 + - uid: 27727 components: - pos: -18.5,69.5 parent: 2 type: Transform - - uid: 27654 + - uid: 27728 components: - pos: -11.5,65.5 parent: 2 type: Transform - - uid: 27655 + - uid: 27729 components: - pos: -11.5,64.5 parent: 2 type: Transform - - uid: 27656 + - uid: 27730 components: - pos: -10.5,63.5 parent: 2 type: Transform - - uid: 27657 + - uid: 27731 components: - pos: -14.5,70.5 parent: 2 type: Transform - - uid: 27658 + - uid: 27732 components: - pos: -14.5,72.5 parent: 2 type: Transform - - uid: 27659 + - uid: 27733 components: - pos: -11.5,72.5 parent: 2 type: Transform - - uid: 27660 + - uid: 27734 components: - pos: -11.5,71.5 parent: 2 type: Transform - - uid: 27661 + - uid: 27735 components: - pos: -11.5,70.5 parent: 2 type: Transform - - uid: 27662 + - uid: 27736 components: - pos: -14.5,69.5 parent: 2 type: Transform - - uid: 27663 + - uid: 27737 components: - rot: -1.5707963267948966 rad pos: -14.5,58.5 parent: 2 type: Transform - - uid: 27664 + - uid: 27738 components: - pos: -14.5,71.5 parent: 2 type: Transform - - uid: 27665 + - uid: 27739 components: - pos: -18.5,70.5 parent: 2 type: Transform - - uid: 27666 + - uid: 27740 components: - pos: -20.5,69.5 parent: 2 type: Transform - - uid: 27667 + - uid: 27741 components: - pos: -20.5,68.5 parent: 2 type: Transform - - uid: 27668 + - uid: 27742 components: - pos: -19.5,68.5 parent: 2 type: Transform - - uid: 27669 + - uid: 27743 components: - pos: -14.5,68.5 parent: 2 type: Transform - - uid: 27670 + - uid: 27744 components: - pos: -15.5,68.5 parent: 2 type: Transform - - uid: 27671 + - uid: 27745 components: - pos: -16.5,68.5 parent: 2 type: Transform - - uid: 27672 + - uid: 27746 components: - rot: -1.5707963267948966 rad pos: -28.5,33.5 parent: 2 type: Transform - - uid: 27673 + - uid: 27747 components: - rot: -1.5707963267948966 rad pos: -28.5,34.5 parent: 2 type: Transform - - uid: 27674 + - uid: 27748 components: - rot: -1.5707963267948966 rad pos: -29.5,35.5 parent: 2 type: Transform - - uid: 27675 + - uid: 27749 components: - rot: -1.5707963267948966 rad pos: -28.5,35.5 parent: 2 type: Transform - - uid: 27676 + - uid: 27750 components: - rot: -1.5707963267948966 rad pos: -30.5,35.5 parent: 2 type: Transform - - uid: 27677 + - uid: 27751 components: - rot: -1.5707963267948966 rad pos: -34.5,35.5 parent: 2 type: Transform - - uid: 27678 + - uid: 27752 components: - rot: -1.5707963267948966 rad pos: -35.5,35.5 parent: 2 type: Transform - - uid: 27679 + - uid: 27753 components: - rot: -1.5707963267948966 rad pos: -28.5,32.5 parent: 2 type: Transform - - uid: 27680 + - uid: 27754 components: - pos: 60.5,30.5 parent: 2 type: Transform - - uid: 27681 + - uid: 27755 components: - pos: 9.5,-35.5 parent: 2 type: Transform - - uid: 27682 + - uid: 27756 components: - pos: 3.5,58.5 parent: 2 type: Transform - - uid: 27683 + - uid: 27757 components: - pos: 2.5,45.5 parent: 2 type: Transform - - uid: 27684 + - uid: 27758 components: - pos: 2.5,44.5 parent: 2 type: Transform - - uid: 27685 + - uid: 27759 components: - pos: 2.5,52.5 parent: 2 type: Transform - - uid: 27686 + - uid: 27760 components: - pos: 2.5,53.5 parent: 2 type: Transform - - uid: 27687 + - uid: 27761 components: - pos: 2.5,54.5 parent: 2 type: Transform - - uid: 27688 + - uid: 27762 components: - pos: 2.5,55.5 parent: 2 type: Transform - - uid: 27689 + - uid: 27763 components: - pos: 3.5,56.5 parent: 2 type: Transform - - uid: 27690 + - uid: 27764 components: - pos: -7.5,43.5 parent: 2 type: Transform - - uid: 27691 + - uid: 27765 components: - pos: 3.5,59.5 parent: 2 type: Transform - - uid: 27692 + - uid: 27766 components: - pos: 2.5,56.5 parent: 2 type: Transform - - uid: 27693 + - uid: 27767 components: - pos: -4.5,42.5 parent: 2 type: Transform - - uid: 27694 + - uid: 27768 components: - pos: -5.5,42.5 parent: 2 type: Transform - - uid: 27695 + - uid: 27769 components: - pos: -0.5,42.5 parent: 2 type: Transform - - uid: 27696 + - uid: 27770 components: - pos: 0.5,42.5 parent: 2 type: Transform - - uid: 27697 + - uid: 27771 components: - pos: 2.5,60.5 parent: 2 type: Transform - - uid: 27698 + - uid: 27772 components: - pos: 5.5,49.5 parent: 2 type: Transform - - uid: 27699 + - uid: 27773 components: - pos: 10.5,50.5 parent: 2 type: Transform - - uid: 27700 + - uid: 27774 components: - pos: 10.5,46.5 parent: 2 type: Transform - - uid: 27701 + - uid: 27775 components: - pos: 34.5,49.5 parent: 2 type: Transform - - uid: 27702 + - uid: 27776 components: - pos: 35.5,49.5 parent: 2 type: Transform - - uid: 27703 + - uid: 27777 components: - rot: -1.5707963267948966 rad pos: 21.5,44.5 parent: 2 type: Transform - - uid: 27704 + - uid: 27778 components: - rot: -1.5707963267948966 rad pos: 21.5,46.5 parent: 2 type: Transform - - uid: 27705 + - uid: 27779 components: - pos: 59.5,35.5 parent: 2 type: Transform - - uid: 27706 + - uid: 27780 components: - rot: -1.5707963267948966 rad pos: 42.5,37.5 parent: 2 type: Transform - - uid: 27707 + - uid: 27781 components: - rot: -1.5707963267948966 rad pos: 44.5,34.5 parent: 2 type: Transform - - uid: 27708 + - uid: 27782 components: - rot: -1.5707963267948966 rad pos: 44.5,36.5 parent: 2 type: Transform - - uid: 27709 + - uid: 27783 components: - rot: -1.5707963267948966 rad pos: 44.5,35.5 parent: 2 type: Transform - - uid: 27710 + - uid: 27784 components: - rot: -1.5707963267948966 rad pos: 43.5,38.5 parent: 2 type: Transform - - uid: 27711 + - uid: 27785 components: - rot: 1.5707963267948966 rad pos: 44.5,40.5 parent: 2 type: Transform - - uid: 27712 + - uid: 27786 components: - rot: 1.5707963267948966 rad pos: 44.5,39.5 parent: 2 type: Transform - - uid: 27713 + - uid: 27787 components: - rot: 1.5707963267948966 rad pos: 44.5,38.5 parent: 2 type: Transform - - uid: 27714 + - uid: 27788 components: - rot: -1.5707963267948966 rad pos: 42.5,36.5 parent: 2 type: Transform - - uid: 27715 + - uid: 27789 components: - rot: 1.5707963267948966 rad pos: 46.5,40.5 parent: 2 type: Transform - - uid: 27716 + - uid: 27790 components: - rot: 1.5707963267948966 rad pos: 48.5,40.5 parent: 2 type: Transform - - uid: 27717 + - uid: 27791 components: - rot: 1.5707963267948966 rad pos: 48.5,41.5 parent: 2 type: Transform - - uid: 27718 + - uid: 27792 components: - rot: -1.5707963267948966 rad pos: 43.5,36.5 parent: 2 type: Transform - - uid: 27719 + - uid: 27793 components: - rot: 3.141592653589793 rad pos: 42.5,34.5 parent: 2 type: Transform - - uid: 27720 + - uid: 27794 components: - rot: 3.141592653589793 rad pos: 41.5,34.5 parent: 2 type: Transform - - uid: 27721 + - uid: 27795 components: - rot: 3.141592653589793 rad pos: 41.5,33.5 parent: 2 type: Transform - - uid: 27722 + - uid: 27796 components: - rot: 3.141592653589793 rad pos: 41.5,29.5 parent: 2 type: Transform - - uid: 27723 + - uid: 27797 components: - rot: 3.141592653589793 rad pos: 42.5,28.5 parent: 2 type: Transform - - uid: 27724 + - uid: 27798 components: - rot: 3.141592653589793 rad pos: 42.5,29.5 parent: 2 type: Transform - - uid: 27725 + - uid: 27799 components: - rot: 3.141592653589793 rad pos: 43.5,28.5 parent: 2 type: Transform - - uid: 27726 + - uid: 27800 components: - rot: -1.5707963267948966 rad pos: 57.5,36.5 parent: 2 type: Transform - - uid: 27727 + - uid: 27801 components: - rot: -1.5707963267948966 rad pos: 56.5,38.5 parent: 2 type: Transform - - uid: 27728 + - uid: 27802 components: - pos: 71.5,-65.5 parent: 2 type: Transform - - uid: 27729 + - uid: 27803 components: - rot: 1.5707963267948966 rad pos: 43.5,34.5 parent: 2 type: Transform - - uid: 27730 + - uid: 27804 components: - rot: -1.5707963267948966 rad pos: 62.5,30.5 parent: 2 type: Transform - - uid: 27731 + - uid: 27805 components: - rot: -1.5707963267948966 rad pos: 64.5,30.5 parent: 2 type: Transform - - uid: 27732 + - uid: 27806 components: - rot: -1.5707963267948966 rad pos: 65.5,30.5 parent: 2 type: Transform - - uid: 27733 + - uid: 27807 components: - rot: -1.5707963267948966 rad pos: 65.5,28.5 parent: 2 type: Transform - - uid: 27734 + - uid: 27808 components: - rot: -1.5707963267948966 rad pos: 65.5,29.5 parent: 2 type: Transform - - uid: 27735 + - uid: 27809 components: - pos: 30.5,48.5 parent: 2 type: Transform - - uid: 27736 + - uid: 27810 components: - rot: -1.5707963267948966 rad pos: 27.5,47.5 parent: 2 type: Transform - - uid: 27737 + - uid: 27811 components: - rot: -1.5707963267948966 rad pos: 27.5,43.5 parent: 2 type: Transform - - uid: 27738 + - uid: 27812 components: - rot: -1.5707963267948966 rad pos: 28.5,43.5 parent: 2 type: Transform - - uid: 27739 + - uid: 27813 components: - rot: -1.5707963267948966 rad pos: 30.5,43.5 parent: 2 type: Transform - - uid: 27740 + - uid: 27814 components: - rot: -1.5707963267948966 rad pos: 31.5,43.5 parent: 2 type: Transform - - uid: 27741 + - uid: 27815 components: - pos: 2.5,46.5 parent: 2 type: Transform - - uid: 27742 + - uid: 27816 components: - pos: -6.5,43.5 parent: 2 type: Transform - - uid: 27743 + - uid: 27817 components: - pos: -5.5,43.5 parent: 2 type: Transform - - uid: 27744 + - uid: 27818 components: - pos: 2.5,43.5 parent: 2 type: Transform - - uid: 27745 + - uid: 27819 components: - pos: 1.5,43.5 parent: 2 type: Transform - - uid: 27746 + - uid: 27820 components: - pos: 0.5,43.5 parent: 2 type: Transform - - uid: 27747 + - uid: 27821 components: - pos: -8.5,60.5 parent: 2 type: Transform - - uid: 27748 + - uid: 27822 components: - pos: -3.5,60.5 parent: 2 type: Transform - - uid: 27749 + - uid: 27823 components: - pos: -4.5,60.5 parent: 2 type: Transform - - uid: 27750 + - uid: 27824 components: - pos: -5.5,60.5 parent: 2 type: Transform - - uid: 27751 + - uid: 27825 components: - pos: -6.5,60.5 parent: 2 type: Transform - - uid: 27752 + - uid: 27826 components: - pos: -7.5,60.5 parent: 2 type: Transform - - uid: 27753 + - uid: 27827 components: - pos: 1.5,60.5 parent: 2 type: Transform - - uid: 27754 + - uid: 27828 components: - pos: 0.5,60.5 parent: 2 type: Transform - - uid: 27755 + - uid: 27829 components: - rot: -1.5707963267948966 rad pos: -7.5,38.5 parent: 2 type: Transform - - uid: 27756 + - uid: 27830 components: - pos: 18.5,35.5 parent: 2 type: Transform - - uid: 27757 + - uid: 27831 components: - pos: 19.5,35.5 parent: 2 type: Transform - - uid: 27758 + - uid: 27832 components: - pos: 19.5,36.5 parent: 2 type: Transform - - uid: 27759 + - uid: 27833 components: - pos: 19.5,37.5 parent: 2 type: Transform - - uid: 27760 + - uid: 27834 components: - pos: 19.5,38.5 parent: 2 type: Transform - - uid: 27761 + - uid: 27835 components: - pos: 19.5,39.5 parent: 2 type: Transform - - uid: 27762 + - uid: 27836 components: - pos: 19.5,40.5 parent: 2 type: Transform - - uid: 27763 + - uid: 27837 components: - pos: 18.5,40.5 parent: 2 type: Transform - - uid: 27764 + - uid: 27838 components: - pos: 17.5,40.5 parent: 2 type: Transform - - uid: 27765 + - uid: 27839 components: - pos: 17.5,41.5 parent: 2 type: Transform - - uid: 27766 + - uid: 27840 components: - pos: 15.5,41.5 parent: 2 type: Transform - - uid: 27767 + - uid: 27841 components: - pos: 15.5,40.5 parent: 2 type: Transform - - uid: 27768 + - uid: 27842 components: - pos: 14.5,40.5 parent: 2 type: Transform - - uid: 27769 + - uid: 27843 components: - pos: 13.5,40.5 parent: 2 type: Transform - - uid: 27770 + - uid: 27844 components: - pos: 13.5,39.5 parent: 2 type: Transform - - uid: 27771 + - uid: 27845 components: - pos: 13.5,38.5 parent: 2 type: Transform - - uid: 27772 + - uid: 27846 components: - pos: 13.5,37.5 parent: 2 type: Transform - - uid: 27773 + - uid: 27847 components: - pos: 13.5,36.5 parent: 2 type: Transform - - uid: 27774 + - uid: 27848 components: - pos: 13.5,35.5 parent: 2 type: Transform - - uid: 27775 + - uid: 27849 components: - pos: 14.5,35.5 parent: 2 type: Transform - - uid: 27776 + - uid: 27850 components: - pos: 0.5,61.5 parent: 2 type: Transform - - uid: 27777 + - uid: 27851 components: - pos: 0.5,63.5 parent: 2 type: Transform - - uid: 27778 + - uid: 27852 components: - pos: 0.5,62.5 parent: 2 type: Transform - - uid: 27779 + - uid: 27853 components: - pos: -3.5,63.5 parent: 2 type: Transform - - uid: 27780 + - uid: 27854 components: - pos: -3.5,62.5 parent: 2 type: Transform - - uid: 27781 + - uid: 27855 components: - pos: -3.5,61.5 parent: 2 type: Transform - - uid: 27782 + - uid: 27856 components: - pos: 0.5,64.5 parent: 2 type: Transform - - uid: 27783 + - uid: 27857 components: - pos: -0.5,64.5 parent: 2 type: Transform - - uid: 27784 + - uid: 27858 components: - pos: -2.5,64.5 parent: 2 type: Transform - - uid: 27785 + - uid: 27859 components: - pos: -3.5,64.5 parent: 2 type: Transform - - uid: 27786 + - uid: 27860 components: - pos: -4.5,64.5 parent: 2 type: Transform - - uid: 27787 + - uid: 27861 components: - pos: -5.5,64.5 parent: 2 type: Transform - - uid: 27788 + - uid: 27862 components: - pos: -5.5,65.5 parent: 2 type: Transform - - uid: 27789 + - uid: 27863 components: - pos: -5.5,65.5 parent: 2 type: Transform - - uid: 27790 + - uid: 27864 components: - pos: -6.5,65.5 parent: 2 type: Transform - - uid: 27791 + - uid: 27865 components: - pos: -7.5,65.5 parent: 2 type: Transform - - uid: 27792 + - uid: 27866 components: - pos: -7.5,66.5 parent: 2 type: Transform - - uid: 27793 + - uid: 27867 components: - pos: -8.5,66.5 parent: 2 type: Transform - - uid: 27794 + - uid: 27868 components: - pos: -8.5,67.5 parent: 2 type: Transform - - uid: 27795 + - uid: 27869 components: - pos: -8.5,68.5 parent: 2 type: Transform - - uid: 27796 + - uid: 27870 components: - pos: -8.5,70.5 parent: 2 type: Transform - - uid: 27797 + - uid: 27871 components: - pos: -8.5,71.5 parent: 2 type: Transform - - uid: 27798 + - uid: 27872 components: - pos: -8.5,72.5 parent: 2 type: Transform - - uid: 27799 + - uid: 27873 components: - pos: -7.5,72.5 parent: 2 type: Transform - - uid: 27800 + - uid: 27874 components: - pos: -7.5,73.5 parent: 2 type: Transform - - uid: 27801 + - uid: 27875 components: - pos: -6.5,73.5 parent: 2 type: Transform - - uid: 27802 + - uid: 27876 components: - pos: -6.5,74.5 parent: 2 type: Transform - - uid: 27803 + - uid: 27877 components: - pos: -5.5,74.5 parent: 2 type: Transform - - uid: 27804 + - uid: 27878 components: - pos: -4.5,74.5 parent: 2 type: Transform - - uid: 27805 + - uid: 27879 components: - pos: -3.5,74.5 parent: 2 type: Transform - - uid: 27806 + - uid: 27880 components: - pos: -2.5,74.5 parent: 2 type: Transform - - uid: 27807 + - uid: 27881 components: - pos: -1.5,74.5 parent: 2 type: Transform - - uid: 27808 + - uid: 27882 components: - pos: -0.5,74.5 parent: 2 type: Transform - - uid: 27809 + - uid: 27883 components: - pos: 0.5,74.5 parent: 2 type: Transform - - uid: 27810 + - uid: 27884 components: - pos: 1.5,74.5 parent: 2 type: Transform - - uid: 27811 + - uid: 27885 components: - pos: 2.5,74.5 parent: 2 type: Transform - - uid: 27812 + - uid: 27886 components: - pos: 3.5,74.5 parent: 2 type: Transform - - uid: 27813 + - uid: 27887 components: - pos: 3.5,73.5 parent: 2 type: Transform - - uid: 27814 + - uid: 27888 components: - pos: 4.5,73.5 parent: 2 type: Transform - - uid: 27815 + - uid: 27889 components: - pos: 4.5,72.5 parent: 2 type: Transform - - uid: 27816 + - uid: 27890 components: - pos: 5.5,72.5 parent: 2 type: Transform - - uid: 27817 + - uid: 27891 components: - pos: 5.5,71.5 parent: 2 type: Transform - - uid: 27818 + - uid: 27892 components: - pos: 5.5,70.5 parent: 2 type: Transform - - uid: 27819 + - uid: 27893 components: - pos: 5.5,68.5 parent: 2 type: Transform - - uid: 27820 + - uid: 27894 components: - pos: 5.5,67.5 parent: 2 type: Transform - - uid: 27821 + - uid: 27895 components: - pos: 5.5,66.5 parent: 2 type: Transform - - uid: 27822 + - uid: 27896 components: - pos: 4.5,66.5 parent: 2 type: Transform - - uid: 27823 + - uid: 27897 components: - pos: 4.5,65.5 parent: 2 type: Transform - - uid: 27824 + - uid: 27898 components: - pos: 3.5,65.5 parent: 2 type: Transform - - uid: 27825 + - uid: 27899 components: - pos: 2.5,64.5 parent: 2 type: Transform - - uid: 27826 + - uid: 27900 components: - pos: 2.5,65.5 parent: 2 type: Transform - - uid: 27827 + - uid: 27901 components: - pos: 1.5,64.5 parent: 2 type: Transform - - uid: 27828 + - uid: 27902 components: - rot: 3.141592653589793 rad pos: 69.5,39.5 parent: 2 type: Transform - - uid: 27829 + - uid: 27903 components: - rot: 3.141592653589793 rad pos: 69.5,38.5 parent: 2 type: Transform - - uid: 27830 + - uid: 27904 components: - rot: 3.141592653589793 rad pos: 69.5,37.5 parent: 2 type: Transform - - uid: 27831 + - uid: 27905 components: - rot: 3.141592653589793 rad pos: 75.5,39.5 parent: 2 type: Transform - - uid: 27832 + - uid: 27906 components: - rot: 3.141592653589793 rad pos: 75.5,38.5 parent: 2 type: Transform - - uid: 27833 + - uid: 27907 components: - rot: 3.141592653589793 rad pos: 75.5,37.5 parent: 2 type: Transform - - uid: 27834 + - uid: 27908 components: - rot: 3.141592653589793 rad pos: 74.5,39.5 parent: 2 type: Transform - - uid: 27835 + - uid: 27909 components: - rot: 3.141592653589793 rad pos: 72.5,39.5 parent: 2 type: Transform - - uid: 27836 + - uid: 27910 components: - rot: 3.141592653589793 rad pos: 70.5,39.5 parent: 2 type: Transform - - uid: 27837 + - uid: 27911 components: - rot: 3.141592653589793 rad pos: 69.5,35.5 parent: 2 type: Transform - - uid: 27838 + - uid: 27912 components: - rot: 3.141592653589793 rad pos: 69.5,34.5 parent: 2 type: Transform - - uid: 27839 + - uid: 27913 components: - rot: 3.141592653589793 rad pos: 69.5,33.5 parent: 2 type: Transform - - uid: 27840 + - uid: 27914 components: - rot: 3.141592653589793 rad pos: 70.5,33.5 parent: 2 type: Transform - - uid: 27841 + - uid: 27915 components: - rot: 3.141592653589793 rad pos: 72.5,33.5 parent: 2 type: Transform - - uid: 27842 + - uid: 27916 components: - rot: 3.141592653589793 rad pos: 74.5,33.5 parent: 2 type: Transform - - uid: 27843 + - uid: 27917 components: - rot: 3.141592653589793 rad pos: 75.5,33.5 parent: 2 type: Transform - - uid: 27844 + - uid: 27918 components: - rot: 3.141592653589793 rad pos: 75.5,34.5 parent: 2 type: Transform - - uid: 27845 + - uid: 27919 components: - rot: 3.141592653589793 rad pos: 75.5,35.5 parent: 2 type: Transform - - uid: 27846 + - uid: 27920 components: - pos: 76.5,37.5 parent: 2 type: Transform - - uid: 27847 + - uid: 27921 components: - pos: 77.5,37.5 parent: 2 type: Transform - - uid: 27848 + - uid: 27922 components: - pos: 76.5,35.5 parent: 2 type: Transform - - uid: 27849 + - uid: 27923 components: - pos: 77.5,35.5 parent: 2 type: Transform - - uid: 27850 + - uid: 27924 components: - pos: 68.5,37.5 parent: 2 type: Transform - - uid: 27851 + - uid: 27925 components: - pos: 67.5,37.5 parent: 2 type: Transform - - uid: 27852 + - uid: 27926 components: - pos: 67.5,35.5 parent: 2 type: Transform - - uid: 27853 + - uid: 27927 components: - pos: 68.5,35.5 parent: 2 type: Transform - - uid: 27854 + - uid: 27928 components: - pos: 64.5,32.5 parent: 2 type: Transform - - uid: 27855 + - uid: 27929 components: - pos: 64.5,31.5 parent: 2 type: Transform - - uid: 27856 + - uid: 27930 components: - pos: 62.5,32.5 parent: 2 type: Transform - - uid: 27857 + - uid: 27931 components: - pos: 62.5,31.5 parent: 2 type: Transform - - uid: 27858 + - uid: 27932 components: - pos: -38.5,43.5 parent: 2 type: Transform - - uid: 27859 + - uid: 27933 components: - pos: -38.5,42.5 parent: 2 type: Transform - - uid: 27860 + - uid: 27934 components: - pos: -38.5,41.5 parent: 2 type: Transform - - uid: 27861 + - uid: 27935 components: - pos: -36.5,43.5 parent: 2 type: Transform - - uid: 27862 + - uid: 27936 components: - pos: -36.5,42.5 parent: 2 type: Transform - - uid: 27863 + - uid: 27937 components: - pos: -36.5,41.5 parent: 2 type: Transform - - uid: 27864 + - uid: 27938 components: - pos: -38.5,40.5 parent: 2 type: Transform - - uid: 27865 + - uid: 27939 components: - pos: -39.5,40.5 parent: 2 type: Transform - - uid: 27866 + - uid: 27940 components: - pos: -40.5,40.5 parent: 2 type: Transform - - uid: 27867 + - uid: 27941 components: - pos: -41.5,40.5 parent: 2 type: Transform - - uid: 27868 + - uid: 27942 components: - pos: -42.5,40.5 parent: 2 type: Transform - - uid: 27869 + - uid: 27943 components: - rot: -1.5707963267948966 rad pos: -48.5,46.5 parent: 2 type: Transform - - uid: 27870 + - uid: 27944 components: - rot: -1.5707963267948966 rad pos: -48.5,47.5 parent: 2 type: Transform - - uid: 27871 + - uid: 27945 components: - rot: -1.5707963267948966 rad pos: -50.5,47.5 parent: 2 type: Transform - - uid: 27872 + - uid: 27946 components: - pos: -48.5,40.5 parent: 2 type: Transform - - uid: 27873 + - uid: 27947 components: - pos: -48.5,39.5 parent: 2 type: Transform - - uid: 27874 + - uid: 27948 components: - pos: -48.5,38.5 parent: 2 type: Transform - - uid: 27875 + - uid: 27949 components: - pos: -36.5,40.5 parent: 2 type: Transform - - uid: 27876 + - uid: 27950 components: - pos: -35.5,40.5 parent: 2 type: Transform - - uid: 27877 + - uid: 27951 components: - pos: -34.5,40.5 parent: 2 type: Transform - - uid: 27878 + - uid: 27952 components: - pos: -31.5,40.5 parent: 2 type: Transform - - uid: 27879 + - uid: 27953 components: - pos: -30.5,40.5 parent: 2 type: Transform - - uid: 27880 + - uid: 27954 components: - pos: -30.5,41.5 parent: 2 type: Transform - - uid: 27881 + - uid: 27955 components: - pos: -30.5,42.5 parent: 2 type: Transform - - uid: 27882 + - uid: 27956 components: - pos: -29.5,42.5 parent: 2 type: Transform - - uid: 27883 + - uid: 27957 components: - pos: -26.5,47.5 parent: 2 type: Transform - - uid: 27884 + - uid: 27958 components: - pos: -27.5,47.5 parent: 2 type: Transform - - uid: 27885 + - uid: 27959 components: - pos: -28.5,47.5 parent: 2 type: Transform - - uid: 27886 + - uid: 27960 components: - pos: -29.5,47.5 parent: 2 type: Transform - - uid: 27887 + - uid: 27961 components: - pos: -29.5,46.5 parent: 2 type: Transform - - uid: 27888 + - uid: 27962 components: - pos: -25.5,47.5 parent: 2 type: Transform - - uid: 27889 + - uid: 27963 components: - pos: -25.5,48.5 parent: 2 type: Transform - - uid: 27890 + - uid: 27964 components: - pos: 32.5,48.5 parent: 2 type: Transform - - uid: 27891 + - uid: 27965 components: - pos: 31.5,48.5 parent: 2 type: Transform - - uid: 27892 + - uid: 27966 components: - pos: 31.5,47.5 parent: 2 type: Transform - - uid: 27893 + - uid: 27967 components: - pos: 31.5,46.5 parent: 2 type: Transform - - uid: 27894 + - uid: 27968 components: - pos: 31.5,44.5 parent: 2 type: Transform - - uid: 27895 + - uid: 27969 components: - pos: 27.5,46.5 parent: 2 type: Transform - - uid: 27896 + - uid: 27970 components: - pos: 27.5,44.5 parent: 2 type: Transform - - uid: 27897 + - uid: 27971 components: - pos: 28.5,48.5 parent: 2 type: Transform - - uid: 27898 + - uid: 27972 components: - rot: -1.5707963267948966 rad pos: -1.5,73.5 parent: 2 type: Transform - - uid: 27899 + - uid: 27973 components: - pos: 46.5,51.5 parent: 2 type: Transform - - uid: 27900 + - uid: 27974 components: - pos: 47.5,51.5 parent: 2 type: Transform - - uid: 27901 + - uid: 27975 components: - pos: 48.5,51.5 parent: 2 type: Transform - - uid: 27902 + - uid: 27976 components: - pos: 30.5,42.5 parent: 2 type: Transform - - uid: 27903 + - uid: 27977 components: - pos: 30.5,41.5 parent: 2 type: Transform - - uid: 27904 + - uid: 27978 components: - pos: 28.5,42.5 parent: 2 type: Transform - - uid: 27905 + - uid: 27979 components: - pos: 28.5,41.5 parent: 2 type: Transform - - uid: 27906 + - uid: 27980 components: - pos: 27.5,48.5 parent: 2 type: Transform - - uid: 27907 + - uid: 27981 components: - pos: -8.5,63.5 parent: 2 type: Transform - - uid: 27908 + - uid: 27982 components: - pos: -9.5,63.5 parent: 2 type: Transform - - uid: 27909 + - uid: 27983 components: - pos: -11.5,63.5 parent: 2 type: Transform - - uid: 27910 + - uid: 27984 components: - pos: -8.5,62.5 parent: 2 type: Transform - - uid: 27911 + - uid: 27985 components: - pos: -8.5,61.5 parent: 2 type: Transform - - uid: 27912 + - uid: 27986 components: - pos: 10.5,-35.5 parent: 2 type: Transform - - uid: 27913 + - uid: 27987 components: - pos: 9.5,-30.5 parent: 2 type: Transform - - uid: 27914 + - uid: 27988 components: - pos: 10.5,-37.5 parent: 2 type: Transform - - uid: 27915 + - uid: 27989 components: - pos: -25.5,49.5 parent: 2 type: Transform - - uid: 27916 + - uid: 27990 components: - pos: -25.5,50.5 parent: 2 type: Transform - - uid: 27917 + - uid: 27991 components: - pos: -26.5,50.5 parent: 2 type: Transform - - uid: 27918 + - uid: 27992 components: - pos: -26.5,51.5 parent: 2 type: Transform - - uid: 27919 + - uid: 27993 components: - pos: -26.5,52.5 parent: 2 type: Transform - - uid: 27920 + - uid: 27994 components: - pos: -26.5,55.5 parent: 2 type: Transform - - uid: 27921 + - uid: 27995 components: - pos: -26.5,56.5 parent: 2 type: Transform - - uid: 27922 + - uid: 27996 components: - pos: -25.5,56.5 parent: 2 type: Transform - - uid: 27923 + - uid: 27997 components: - pos: -25.5,57.5 parent: 2 type: Transform - - uid: 27924 + - uid: 27998 components: - pos: -24.5,57.5 parent: 2 type: Transform - - uid: 27925 + - uid: 27999 components: - pos: 3.5,57.5 parent: 2 type: Transform - - uid: 27926 + - uid: 28000 components: - pos: 10.5,-30.5 parent: 2 type: Transform - - uid: 27927 + - uid: 28001 components: - pos: 9.5,-33.5 parent: 2 type: Transform - - uid: 27928 + - uid: 28002 components: - rot: 3.141592653589793 rad pos: -16.5,-81.5 parent: 2 type: Transform - - uid: 27929 + - uid: 28003 components: - rot: 3.141592653589793 rad pos: -16.5,-82.5 parent: 2 type: Transform - - uid: 27930 + - uid: 28004 components: - rot: 3.141592653589793 rad pos: -16.5,-83.5 parent: 2 type: Transform - - uid: 27931 + - uid: 28005 components: - rot: 3.141592653589793 rad pos: -16.5,-84.5 parent: 2 type: Transform - - uid: 27932 + - uid: 28006 components: - rot: 3.141592653589793 rad pos: -16.5,-85.5 parent: 2 type: Transform - - uid: 27933 + - uid: 28007 components: - rot: 3.141592653589793 rad pos: -16.5,-86.5 parent: 2 type: Transform - - uid: 27934 + - uid: 28008 components: - rot: 3.141592653589793 rad pos: -16.5,-87.5 parent: 2 type: Transform - - uid: 27935 + - uid: 28009 components: - rot: 3.141592653589793 rad pos: -16.5,-89.5 parent: 2 type: Transform - - uid: 27936 + - uid: 28010 components: - rot: 3.141592653589793 rad pos: -15.5,-89.5 parent: 2 type: Transform - - uid: 27937 + - uid: 28011 components: - rot: 3.141592653589793 rad pos: -14.5,-89.5 parent: 2 type: Transform - - uid: 27938 + - uid: 28012 components: - rot: 3.141592653589793 rad pos: -13.5,-89.5 parent: 2 type: Transform - - uid: 27939 + - uid: 28013 components: - rot: 3.141592653589793 rad pos: -12.5,-89.5 parent: 2 type: Transform - - uid: 27940 + - uid: 28014 components: - rot: 3.141592653589793 rad pos: -11.5,-89.5 parent: 2 type: Transform - - uid: 27941 + - uid: 28015 components: - rot: 3.141592653589793 rad pos: -10.5,-89.5 parent: 2 type: Transform - - uid: 27942 + - uid: 28016 components: - rot: 3.141592653589793 rad pos: -9.5,-89.5 parent: 2 type: Transform - - uid: 27943 + - uid: 28017 components: - rot: 3.141592653589793 rad pos: -8.5,-89.5 parent: 2 type: Transform - - uid: 27944 + - uid: 28018 components: - rot: 3.141592653589793 rad pos: -9.5,-94.5 parent: 2 type: Transform - - uid: 27945 + - uid: 28019 components: - pos: -5.5,-94.5 parent: 2 type: Transform - - uid: 27946 + - uid: 28020 components: - rot: 3.141592653589793 rad pos: -6.5,-89.5 parent: 2 type: Transform - - uid: 27947 + - uid: 28021 components: - rot: 3.141592653589793 rad pos: -5.5,-89.5 parent: 2 type: Transform - - uid: 27948 + - uid: 28022 components: - rot: 3.141592653589793 rad pos: -4.5,-89.5 parent: 2 type: Transform - - uid: 27949 + - uid: 28023 components: - rot: 3.141592653589793 rad pos: -3.5,-89.5 parent: 2 type: Transform - - uid: 27950 + - uid: 28024 components: - rot: 3.141592653589793 rad pos: -3.5,-85.5 parent: 2 type: Transform - - uid: 27951 + - uid: 28025 components: - rot: 3.141592653589793 rad pos: -3.5,-86.5 parent: 2 type: Transform - - uid: 27952 + - uid: 28026 components: - rot: 3.141592653589793 rad pos: -3.5,-87.5 parent: 2 type: Transform - - uid: 27953 + - uid: 28027 components: - rot: 3.141592653589793 rad pos: -3.5,-88.5 parent: 2 type: Transform - - uid: 27954 + - uid: 28028 components: - rot: 3.141592653589793 rad pos: -3.5,-84.5 parent: 2 type: Transform - - uid: 27955 + - uid: 28029 components: - rot: -1.5707963267948966 rad pos: 29.5,48.5 parent: 2 type: Transform - - uid: 27956 + - uid: 28030 components: - pos: -18.5,-95.5 parent: 2 type: Transform - - uid: 27957 + - uid: 28031 components: - pos: -18.5,-99.5 parent: 2 type: Transform - - uid: 27958 + - uid: 28032 components: - pos: -26.5,-95.5 parent: 2 type: Transform - - uid: 27959 + - uid: 28033 components: - pos: -26.5,-99.5 parent: 2 type: Transform - - uid: 27960 + - uid: 28034 components: - pos: -18.5,-94.5 parent: 2 type: Transform - - uid: 27961 + - uid: 28035 components: - pos: -19.5,-94.5 parent: 2 type: Transform - - uid: 27962 + - uid: 28036 components: - pos: -20.5,-94.5 parent: 2 type: Transform - - uid: 27963 + - uid: 28037 components: - pos: -24.5,-94.5 parent: 2 type: Transform - - uid: 27964 + - uid: 28038 components: - pos: -25.5,-94.5 parent: 2 type: Transform - - uid: 27965 + - uid: 28039 components: - pos: -26.5,-94.5 parent: 2 type: Transform - - uid: 27966 + - uid: 28040 components: - pos: -18.5,-100.5 parent: 2 type: Transform - - uid: 27967 + - uid: 28041 components: - pos: -19.5,-100.5 parent: 2 type: Transform - - uid: 27968 + - uid: 28042 components: - pos: -20.5,-100.5 parent: 2 type: Transform - - uid: 27969 + - uid: 28043 components: - pos: -26.5,-100.5 parent: 2 type: Transform - - uid: 27970 + - uid: 28044 components: - pos: -25.5,-100.5 parent: 2 type: Transform - - uid: 27971 + - uid: 28045 components: - pos: -24.5,-100.5 parent: 2 type: Transform - - uid: 27972 + - uid: 28046 components: - pos: -17.5,-95.5 parent: 2 type: Transform - - uid: 27973 + - uid: 28047 components: - pos: -16.5,-95.5 parent: 2 type: Transform - - uid: 27974 + - uid: 28048 components: - pos: -15.5,-95.5 parent: 2 type: Transform - - uid: 27975 + - uid: 28049 components: - pos: -14.5,-95.5 parent: 2 type: Transform - - uid: 27976 + - uid: 28050 components: - pos: -17.5,-99.5 parent: 2 type: Transform - - uid: 27977 + - uid: 28051 components: - pos: -16.5,-99.5 parent: 2 type: Transform - - uid: 27978 + - uid: 28052 components: - pos: -15.5,-99.5 parent: 2 type: Transform - - uid: 27979 + - uid: 28053 components: - pos: -14.5,-99.5 parent: 2 type: Transform - - uid: 27980 + - uid: 28054 components: - pos: -27.5,-95.5 parent: 2 type: Transform - - uid: 27981 + - uid: 28055 components: - pos: -28.5,-95.5 parent: 2 type: Transform - - uid: 27982 + - uid: 28056 components: - pos: -29.5,-95.5 parent: 2 type: Transform - - uid: 27983 + - uid: 28057 components: - pos: -30.5,-95.5 parent: 2 type: Transform - - uid: 27984 + - uid: 28058 components: - pos: -27.5,-99.5 parent: 2 type: Transform - - uid: 27985 + - uid: 28059 components: - pos: -28.5,-99.5 parent: 2 type: Transform - - uid: 27986 + - uid: 28060 components: - pos: -29.5,-99.5 parent: 2 type: Transform - - uid: 27987 + - uid: 28061 components: - pos: -30.5,-99.5 parent: 2 type: Transform - - uid: 27988 + - uid: 28062 components: - pos: -13.5,-95.5 parent: 2 type: Transform - - uid: 27989 + - uid: 28063 components: - pos: -13.5,-99.5 parent: 2 type: Transform - - uid: 27990 + - uid: 28064 components: - pos: -31.5,-95.5 parent: 2 type: Transform - - uid: 27991 + - uid: 28065 components: - pos: -31.5,-99.5 parent: 2 type: Transform - - uid: 27992 + - uid: 28066 components: - pos: -10.5,-94.5 parent: 2 type: Transform - - uid: 27993 + - uid: 28067 components: - pos: -11.5,-94.5 parent: 2 type: Transform - - uid: 27994 + - uid: 28068 components: - pos: -11.5,-95.5 parent: 2 type: Transform - - uid: 27995 + - uid: 28069 components: - pos: -12.5,-95.5 parent: 2 type: Transform - - uid: 27996 + - uid: 28070 components: - pos: -4.5,-94.5 parent: 2 type: Transform - - uid: 27997 + - uid: 28071 components: - pos: -4.5,-95.5 parent: 2 type: Transform - - uid: 27998 + - uid: 28072 components: - pos: -3.5,-95.5 parent: 2 type: Transform - - uid: 27999 + - uid: 28073 components: - pos: -7.5,-101.5 parent: 2 type: Transform - - uid: 28000 + - uid: 28074 components: - pos: -4.5,-101.5 parent: 2 type: Transform - - uid: 28001 + - uid: 28075 components: - pos: -4.5,-100.5 parent: 2 type: Transform - - uid: 28002 + - uid: 28076 components: - pos: -3.5,-100.5 parent: 2 type: Transform - - uid: 28003 + - uid: 28077 components: - pos: -10.5,-101.5 parent: 2 type: Transform - - uid: 28004 + - uid: 28078 components: - pos: -10.5,-100.5 parent: 2 type: Transform - - uid: 28005 + - uid: 28079 components: - pos: -11.5,-100.5 parent: 2 type: Transform - - uid: 28006 + - uid: 28080 components: - pos: -11.5,-99.5 parent: 2 type: Transform - - uid: 28007 + - uid: 28081 components: - pos: -12.5,-99.5 parent: 2 type: Transform - - uid: 28008 + - uid: 28082 components: - pos: -3.5,-96.5 parent: 2 type: Transform - - uid: 28009 + - uid: 28083 components: - pos: -3.5,-99.5 parent: 2 type: Transform - - uid: 28010 + - uid: 28084 components: - pos: -39.5,-87.5 parent: 2 type: Transform - - uid: 28011 + - uid: 28085 components: - pos: -39.5,-88.5 parent: 2 type: Transform - - uid: 28012 + - uid: 28086 components: - pos: -44.5,-87.5 parent: 2 type: Transform - - uid: 28013 + - uid: 28087 components: - pos: -44.5,-88.5 parent: 2 type: Transform - - uid: 28014 + - uid: 28088 components: - pos: -32.5,-99.5 parent: 2 type: Transform - - uid: 28015 + - uid: 28089 components: - pos: -33.5,-99.5 parent: 2 type: Transform - - uid: 28016 + - uid: 28090 components: - pos: -34.5,-99.5 parent: 2 type: Transform - - uid: 28017 + - uid: 28091 components: - pos: -36.5,-99.5 parent: 2 type: Transform - - uid: 28018 + - uid: 28092 components: - pos: -38.5,-99.5 parent: 2 type: Transform - - uid: 28019 + - uid: 28093 components: - pos: -39.5,-99.5 parent: 2 type: Transform - - uid: 28020 + - uid: 28094 components: - pos: -34.5,-101.5 parent: 2 type: Transform - - uid: 28021 + - uid: 28095 components: - pos: -36.5,-101.5 parent: 2 type: Transform - - uid: 28022 + - uid: 28096 components: - pos: -6.5,-94.5 parent: 2 type: Transform - - uid: 28023 + - uid: 28097 components: - pos: -8.5,-94.5 parent: 2 type: Transform - - uid: 28024 + - uid: 28098 components: - pos: 66.5,-15.5 parent: 2 type: Transform - - uid: 28025 + - uid: 28099 components: - pos: 66.5,-16.5 parent: 2 type: Transform - - uid: 28026 + - uid: 28100 components: - pos: -39.5,-91.5 parent: 2 type: Transform - - uid: 28027 + - uid: 28101 components: - pos: -44.5,-91.5 parent: 2 type: Transform - - uid: 28028 + - uid: 28102 components: - rot: 1.5707963267948966 rad pos: -32.5,-95.5 parent: 2 type: Transform - - uid: 28029 + - uid: 28103 components: - rot: 1.5707963267948966 rad pos: -33.5,-95.5 parent: 2 type: Transform - - uid: 28030 + - uid: 28104 components: - rot: 1.5707963267948966 rad pos: -34.5,-95.5 parent: 2 type: Transform - - uid: 28031 + - uid: 28105 components: - rot: 1.5707963267948966 rad pos: -34.5,-94.5 parent: 2 type: Transform - - uid: 28032 + - uid: 28106 components: - rot: 1.5707963267948966 rad pos: -34.5,-93.5 parent: 2 type: Transform - - uid: 28033 + - uid: 28107 components: - rot: 1.5707963267948966 rad pos: -34.5,-92.5 parent: 2 type: Transform - - uid: 28034 + - uid: 28108 components: - rot: 1.5707963267948966 rad pos: -35.5,-92.5 parent: 2 type: Transform - - uid: 28035 + - uid: 28109 components: - rot: 1.5707963267948966 rad pos: -36.5,-92.5 parent: 2 type: Transform - - uid: 28036 + - uid: 28110 components: - rot: 1.5707963267948966 rad pos: -37.5,-92.5 parent: 2 type: Transform - - uid: 28037 + - uid: 28111 components: - rot: 1.5707963267948966 rad pos: -38.5,-92.5 parent: 2 type: Transform - - uid: 28038 + - uid: 28112 components: - rot: 1.5707963267948966 rad pos: -39.5,-92.5 parent: 2 type: Transform - - uid: 28039 + - uid: 28113 components: - rot: 1.5707963267948966 rad pos: -39.5,-98.5 parent: 2 type: Transform - - uid: 28040 + - uid: 28114 components: - rot: 1.5707963267948966 rad pos: -40.5,-98.5 parent: 2 type: Transform - - uid: 28041 + - uid: 28115 components: - rot: 1.5707963267948966 rad pos: -43.5,-98.5 parent: 2 type: Transform - - uid: 28042 + - uid: 28116 components: - rot: 1.5707963267948966 rad pos: -44.5,-97.5 parent: 2 type: Transform - - uid: 28043 + - uid: 28117 components: - rot: 1.5707963267948966 rad pos: -44.5,-98.5 parent: 2 type: Transform - - uid: 28044 + - uid: 28118 components: - rot: 1.5707963267948966 rad pos: -44.5,-94.5 parent: 2 type: Transform - - uid: 28045 + - uid: 28119 components: - rot: 1.5707963267948966 rad pos: -44.5,-93.5 parent: 2 type: Transform - - uid: 28046 + - uid: 28120 components: - rot: 1.5707963267948966 rad pos: -44.5,-92.5 parent: 2 type: Transform - - uid: 28047 + - uid: 28121 components: - pos: -20.5,-101.5 parent: 2 type: Transform - - uid: 28048 + - uid: 28122 components: - pos: -24.5,-101.5 parent: 2 type: Transform - - uid: 28049 + - uid: 28123 components: - pos: -75.5,-28.5 parent: 2 type: Transform - - uid: 28050 + - uid: 28124 components: - pos: -75.5,-29.5 parent: 2 type: Transform - - uid: 28051 + - uid: 28125 components: - pos: -75.5,-30.5 parent: 2 type: Transform - - uid: 28052 + - uid: 28126 components: - pos: -75.5,-32.5 parent: 2 type: Transform - - uid: 28053 + - uid: 28127 components: - pos: -77.5,-32.5 parent: 2 type: Transform - - uid: 28054 + - uid: 28128 components: - pos: -69.5,-33.5 parent: 2 type: Transform - - uid: 28055 + - uid: 28129 components: - pos: -70.5,-33.5 parent: 2 type: Transform - - uid: 28056 + - uid: 28130 components: - pos: -71.5,-33.5 parent: 2 type: Transform - - uid: 28057 + - uid: 28131 components: - pos: -74.5,-33.5 parent: 2 type: Transform - - uid: 28058 + - uid: 28132 components: - pos: -75.5,-33.5 parent: 2 type: Transform - - uid: 28059 + - uid: 28133 components: - pos: 70.5,-39.5 parent: 2 type: Transform - - uid: 28060 + - uid: 28134 components: - pos: 71.5,-39.5 parent: 2 type: Transform - - uid: 28061 + - uid: 28135 components: - rot: -1.5707963267948966 rad pos: 65.5,-39.5 parent: 2 type: Transform - - uid: 28062 + - uid: 28136 components: - rot: -1.5707963267948966 rad pos: 74.5,-29.5 parent: 2 type: Transform - - uid: 28063 + - uid: 28137 components: - rot: -1.5707963267948966 rad pos: 69.5,-39.5 parent: 2 type: Transform - - uid: 28064 + - uid: 28138 components: - pos: 29.5,34.5 parent: 2 type: Transform - - uid: 28065 + - uid: 28139 components: - rot: -1.5707963267948966 rad pos: 77.5,-50.5 parent: 2 type: Transform - - uid: 28066 + - uid: 28140 components: - rot: -1.5707963267948966 rad pos: 53.5,-68.5 parent: 2 type: Transform - - uid: 28067 + - uid: 28141 components: - rot: -1.5707963267948966 rad pos: 46.5,-66.5 parent: 2 type: Transform - - uid: 28068 + - uid: 28142 components: - rot: -1.5707963267948966 rad pos: 49.5,-64.5 parent: 2 type: Transform - - uid: 28069 + - uid: 28143 components: - rot: -1.5707963267948966 rad pos: 52.5,-64.5 parent: 2 type: Transform - - uid: 28070 + - uid: 28144 components: - rot: -1.5707963267948966 rad pos: 47.5,-64.5 parent: 2 type: Transform - - uid: 28071 + - uid: 28145 components: - rot: -1.5707963267948966 rad pos: 45.5,-66.5 parent: 2 type: Transform - - uid: 28072 + - uid: 28146 components: - pos: 66.5,-67.5 parent: 2 type: Transform - - uid: 28073 + - uid: 28147 components: - pos: 65.5,-67.5 parent: 2 type: Transform - - uid: 28074 + - uid: 28148 components: - pos: 65.5,-68.5 parent: 2 type: Transform - - uid: 28075 + - uid: 28149 components: - pos: 64.5,-68.5 parent: 2 type: Transform - - uid: 28076 + - uid: 28150 components: - pos: 63.5,-69.5 parent: 2 type: Transform - - uid: 28077 + - uid: 28151 components: - pos: 69.5,-50.5 parent: 2 type: Transform - - uid: 28078 + - uid: 28152 components: - rot: -1.5707963267948966 rad pos: 70.5,-27.5 parent: 2 type: Transform - - uid: 28079 + - uid: 28153 components: - rot: -1.5707963267948966 rad pos: 52.5,-68.5 parent: 2 type: Transform - - uid: 28080 + - uid: 28154 components: - rot: -1.5707963267948966 rad pos: 47.5,-66.5 parent: 2 type: Transform - - uid: 28081 + - uid: 28155 components: - rot: -1.5707963267948966 rad pos: 49.5,-68.5 parent: 2 type: Transform - - uid: 28082 + - uid: 28156 components: - rot: -1.5707963267948966 rad pos: 76.5,-50.5 parent: 2 type: Transform - - uid: 28083 + - uid: 28157 components: - rot: -1.5707963267948966 rad pos: 48.5,-67.5 parent: 2 type: Transform - - uid: 28084 + - uid: 28158 components: - rot: -1.5707963267948966 rad pos: 48.5,-64.5 parent: 2 type: Transform - - uid: 28085 + - uid: 28159 components: - rot: -1.5707963267948966 rad pos: 49.5,-67.5 parent: 2 type: Transform - - uid: 28086 + - uid: 28160 components: - rot: -1.5707963267948966 rad pos: 51.5,-64.5 parent: 2 type: Transform - - uid: 28087 + - uid: 28161 components: - pos: 7.5,-38.5 parent: 2 type: Transform - - uid: 28088 + - uid: 28162 components: - rot: 3.141592653589793 rad pos: 74.5,-28.5 parent: 2 type: Transform - - uid: 28089 + - uid: 28163 components: - rot: 3.141592653589793 rad pos: 70.5,-28.5 parent: 2 type: Transform - - uid: 28090 + - uid: 28164 components: - pos: 5.5,-36.5 parent: 2 type: Transform - - uid: 28091 + - uid: 28165 components: - pos: 1.5,-36.5 parent: 2 type: Transform - - uid: 28092 + - uid: 28166 components: - pos: 5.5,-37.5 parent: 2 type: Transform - - uid: 28093 + - uid: 28167 components: - pos: 4.5,-36.5 parent: 2 type: Transform - - uid: 28094 + - uid: 28168 components: - pos: 6.5,-37.5 parent: 2 type: Transform - - uid: 28095 + - uid: 28169 components: - pos: 63.5,-70.5 parent: 2 type: Transform - - uid: 28096 + - uid: 28170 components: - pos: 1.5,-35.5 parent: 2 type: Transform - - uid: 28097 + - uid: 28171 components: - pos: 66.5,-60.5 parent: 2 type: Transform - - uid: 28098 + - uid: 28172 components: - pos: 76.5,-52.5 parent: 2 type: Transform - - uid: 28099 + - uid: 28173 components: - pos: 76.5,-51.5 parent: 2 type: Transform - - uid: 28100 + - uid: 28174 components: - pos: 73.5,-51.5 parent: 2 type: Transform - - uid: 28101 + - uid: 28175 components: - pos: 73.5,-53.5 parent: 2 type: Transform - - uid: 28102 + - uid: 28176 components: - pos: 75.5,-57.5 parent: 2 type: Transform - - uid: 28103 + - uid: 28177 components: - pos: 76.5,-57.5 parent: 2 type: Transform - - uid: 28104 + - uid: 28178 components: - pos: 68.5,-55.5 parent: 2 type: Transform - - uid: 28105 + - uid: 28179 components: - rot: 1.5707963267948966 rad pos: -53.5,-57.5 parent: 2 type: Transform - - uid: 28106 + - uid: 28180 components: - rot: 1.5707963267948966 rad pos: -52.5,-57.5 parent: 2 type: Transform - - uid: 28107 + - uid: 28181 components: - rot: 1.5707963267948966 rad pos: -51.5,-57.5 parent: 2 type: Transform - - uid: 28108 + - uid: 28182 components: - rot: 1.5707963267948966 rad pos: -50.5,-57.5 parent: 2 type: Transform - - uid: 28109 + - uid: 28183 components: - rot: 1.5707963267948966 rad pos: -50.5,-59.5 parent: 2 type: Transform - - uid: 28110 + - uid: 28184 components: - rot: 1.5707963267948966 rad pos: -51.5,-59.5 parent: 2 type: Transform - - uid: 28111 + - uid: 28185 components: - rot: 1.5707963267948966 rad pos: -52.5,-59.5 parent: 2 type: Transform - - uid: 28112 + - uid: 28186 components: - rot: 1.5707963267948966 rad pos: -52.5,-61.5 parent: 2 type: Transform - - uid: 28113 + - uid: 28187 components: - rot: 1.5707963267948966 rad pos: -57.5,-63.5 parent: 2 type: Transform - - uid: 28114 + - uid: 28188 components: - rot: 1.5707963267948966 rad pos: -56.5,-63.5 parent: 2 type: Transform - - uid: 28115 + - uid: 28189 components: - pos: 13.5,-37.5 parent: 2 type: Transform - - uid: 28116 + - uid: 28190 components: - pos: 59.5,-69.5 parent: 2 type: Transform - - uid: 28117 + - uid: 28191 components: - pos: 9.5,-32.5 parent: 2 type: Transform - - uid: 28118 + - uid: 28192 components: - rot: 1.5707963267948966 rad pos: 65.5,-42.5 parent: 2 type: Transform - - uid: 28119 + - uid: 28193 components: - pos: 10.5,-39.5 parent: 2 type: Transform - - uid: 28120 + - uid: 28194 components: - rot: -1.5707963267948966 rad pos: 7.5,-40.5 parent: 2 type: Transform - - uid: 28121 + - uid: 28195 components: - pos: 47.5,-32.5 parent: 2 type: Transform - - uid: 28122 + - uid: 28196 components: - pos: 69.5,-68.5 parent: 2 type: Transform - - uid: 28123 + - uid: 28197 components: - pos: 64.5,-69.5 parent: 2 type: Transform - - uid: 28124 + - uid: 28198 components: - pos: 59.5,-70.5 parent: 2 type: Transform - - uid: 28125 + - uid: 28199 components: - pos: 58.5,-69.5 parent: 2 type: Transform - - uid: 28126 + - uid: 28200 components: - pos: 67.5,-68.5 parent: 2 type: Transform - - uid: 28127 + - uid: 28201 components: - pos: 67.5,-69.5 parent: 2 type: Transform - - uid: 28128 + - uid: 28202 components: - pos: 76.5,-56.5 parent: 2 type: Transform - - uid: 28129 + - uid: 28203 components: - pos: 76.5,-55.5 parent: 2 type: Transform - - uid: 28130 + - uid: 28204 components: - pos: 76.5,-54.5 parent: 2 type: Transform - - uid: 28131 + - uid: 28205 components: - pos: 76.5,-53.5 parent: 2 type: Transform - - uid: 28132 + - uid: 28206 components: - rot: 3.141592653589793 rad pos: 48.5,3.5 parent: 2 type: Transform - - uid: 28133 + - uid: 28207 components: - pos: -45.5,-37.5 parent: 2 type: Transform - - uid: 28134 + - uid: 28208 components: - rot: 1.5707963267948966 rad pos: 32.5,20.5 parent: 2 type: Transform - - uid: 28135 + - uid: 28209 components: - rot: 1.5707963267948966 rad pos: 46.5,-88.5 parent: 2 type: Transform - - uid: 28136 + - uid: 28210 components: - pos: 35.5,-75.5 parent: 2 type: Transform - - uid: 28137 + - uid: 28211 components: - pos: 8.5,-84.5 parent: 2 type: Transform - - uid: 28138 + - uid: 28212 components: - pos: 7.5,-84.5 parent: 2 type: Transform - - uid: 28139 + - uid: 28213 components: - pos: 7.5,-85.5 parent: 2 type: Transform - - uid: 28140 + - uid: 28214 components: - pos: 9.5,-84.5 parent: 2 type: Transform - - uid: 28141 + - uid: 28215 components: - pos: 7.5,-86.5 parent: 2 type: Transform - - uid: 28142 + - uid: 28216 components: - pos: 5.5,-84.5 parent: 2 type: Transform - - uid: 28143 + - uid: 28217 components: - pos: 5.5,-85.5 parent: 2 type: Transform - - uid: 28144 + - uid: 28218 components: - pos: 5.5,-86.5 parent: 2 type: Transform - - uid: 28145 + - uid: 28219 components: - pos: 5.5,-81.5 parent: 2 type: Transform - - uid: 28146 + - uid: 28220 components: - pos: 5.5,-83.5 parent: 2 type: Transform - - uid: 28147 + - uid: 28221 components: - rot: 1.5707963267948966 rad pos: 47.5,-70.5 parent: 2 type: Transform - - uid: 28148 + - uid: 28222 components: - rot: 1.5707963267948966 rad pos: 28.5,-77.5 parent: 2 type: Transform - - uid: 28149 + - uid: 28223 components: - pos: 27.5,-75.5 parent: 2 type: Transform - - uid: 28150 + - uid: 28224 components: - rot: -1.5707963267948966 rad pos: 43.5,-75.5 parent: 2 type: Transform - - uid: 28151 + - uid: 28225 components: - pos: 64.5,-41.5 parent: 2 type: Transform - - uid: 28152 + - uid: 28226 components: - pos: -47.5,-37.5 parent: 2 type: Transform - - uid: 28153 + - uid: 28227 components: - pos: -47.5,-36.5 parent: 2 type: Transform - - uid: 28154 + - uid: 28228 components: - pos: -51.5,-34.5 parent: 2 type: Transform - - uid: 28155 + - uid: 28229 components: - pos: -51.5,-35.5 parent: 2 type: Transform - - uid: 28156 + - uid: 28230 components: - pos: -51.5,-38.5 parent: 2 type: Transform - - uid: 28157 + - uid: 28231 components: - pos: -51.5,-39.5 parent: 2 type: Transform - - uid: 28158 + - uid: 28232 components: - pos: -51.5,-40.5 parent: 2 type: Transform - - uid: 28159 + - uid: 28233 components: - rot: -1.5707963267948966 rad pos: -75.5,-12.5 parent: 2 type: Transform - - uid: 28160 + - uid: 28234 components: - rot: 1.5707963267948966 rad pos: 26.5,-86.5 parent: 2 type: Transform - - uid: 28161 + - uid: 28235 components: - rot: -1.5707963267948966 rad pos: 31.5,-93.5 parent: 2 type: Transform - - uid: 28162 + - uid: 28236 components: - rot: -1.5707963267948966 rad pos: 28.5,-91.5 parent: 2 type: Transform - - uid: 28163 + - uid: 28237 components: - rot: -1.5707963267948966 rad pos: 32.5,-92.5 parent: 2 type: Transform - - uid: 28164 + - uid: 28238 components: - rot: -1.5707963267948966 rad pos: 32.5,-91.5 parent: 2 type: Transform - - uid: 28165 + - uid: 28239 components: - rot: 1.5707963267948966 rad pos: 50.5,-70.5 parent: 2 type: Transform - - uid: 28166 + - uid: 28240 components: - rot: -1.5707963267948966 rad pos: 46.5,-75.5 parent: 2 type: Transform - - uid: 28167 + - uid: 28241 components: - rot: 1.5707963267948966 rad pos: 24.5,-75.5 parent: 2 type: Transform - - uid: 28168 + - uid: 28242 components: - rot: 1.5707963267948966 rad pos: 50.5,-76.5 parent: 2 type: Transform - - uid: 28169 + - uid: 28243 components: - rot: 1.5707963267948966 rad pos: 50.5,-78.5 parent: 2 type: Transform - - uid: 28170 + - uid: 28244 components: - rot: 1.5707963267948966 rad pos: 50.5,-79.5 parent: 2 type: Transform - - uid: 28171 + - uid: 28245 components: - pos: 49.5,-94.5 parent: 2 type: Transform - - uid: 28172 + - uid: 28246 components: - pos: 46.5,-91.5 parent: 2 type: Transform - - uid: 28173 + - uid: 28247 components: - pos: 47.5,-93.5 parent: 2 type: Transform - - uid: 28174 + - uid: 28248 components: - pos: 46.5,-93.5 parent: 2 type: Transform - - uid: 28175 + - uid: 28249 components: - pos: 50.5,-91.5 parent: 2 type: Transform - - uid: 28176 + - uid: 28250 components: - rot: -1.5707963267948966 rad pos: 23.5,-80.5 parent: 2 type: Transform - - uid: 28177 + - uid: 28251 components: - rot: 1.5707963267948966 rad pos: 50.5,-77.5 parent: 2 type: Transform - - uid: 28178 + - uid: 28252 components: - rot: 1.5707963267948966 rad pos: 50.5,-84.5 parent: 2 type: Transform - - uid: 28179 + - uid: 28253 components: - pos: 49.5,-95.5 parent: 2 type: Transform - - uid: 28180 + - uid: 28254 components: - pos: 47.5,-95.5 parent: 2 type: Transform - - uid: 28181 + - uid: 28255 components: - pos: 46.5,-92.5 parent: 2 type: Transform - - uid: 28182 + - uid: 28256 components: - pos: 50.5,-93.5 parent: 2 type: Transform - - uid: 28183 + - uid: 28257 components: - pos: 49.5,-93.5 parent: 2 type: Transform - - uid: 28184 + - uid: 28258 components: - rot: -1.5707963267948966 rad pos: 26.5,-80.5 parent: 2 type: Transform - - uid: 28185 + - uid: 28259 components: - rot: -1.5707963267948966 rad pos: 26.5,-79.5 parent: 2 type: Transform - - uid: 28186 + - uid: 28260 components: - rot: 1.5707963267948966 rad pos: 51.5,-74.5 parent: 2 type: Transform - - uid: 28187 + - uid: 28261 components: - rot: 1.5707963267948966 rad pos: 51.5,-70.5 parent: 2 type: Transform - - uid: 28188 + - uid: 28262 components: - pos: 47.5,-94.5 parent: 2 type: Transform - - uid: 28189 + - uid: 28263 components: - rot: -1.5707963267948966 rad pos: 28.5,-92.5 parent: 2 type: Transform - - uid: 28190 + - uid: 28264 components: - rot: -1.5707963267948966 rad pos: 2.5,-76.5 parent: 2 type: Transform - - uid: 28191 + - uid: 28265 components: - pos: 5.5,-76.5 parent: 2 type: Transform - - uid: 28192 + - uid: 28266 components: - rot: -1.5707963267948966 rad pos: 34.5,-74.5 parent: 2 type: Transform - - uid: 28193 + - uid: 28267 components: - rot: -1.5707963267948966 rad pos: 34.5,-81.5 parent: 2 type: Transform - - uid: 28194 + - uid: 28268 components: - rot: 1.5707963267948966 rad pos: 44.5,-90.5 parent: 2 type: Transform - - uid: 28195 + - uid: 28269 components: - rot: 1.5707963267948966 rad pos: 44.5,-88.5 parent: 2 type: Transform - - uid: 28196 + - uid: 28270 components: - pos: 8.5,-79.5 parent: 2 type: Transform - - uid: 28197 + - uid: 28271 components: - pos: 8.5,-80.5 parent: 2 type: Transform - - uid: 28198 + - uid: 28272 components: - pos: 50.5,-92.5 parent: 2 type: Transform - - uid: 28199 + - uid: 28273 components: - rot: 3.141592653589793 rad pos: 27.5,-67.5 parent: 2 type: Transform - - uid: 28200 + - uid: 28274 components: - rot: 3.141592653589793 rad pos: 24.5,-67.5 parent: 2 type: Transform - - uid: 28201 + - uid: 28275 components: - rot: 3.141592653589793 rad pos: 24.5,-68.5 parent: 2 type: Transform - - uid: 28202 + - uid: 28276 components: - rot: 3.141592653589793 rad pos: 27.5,-68.5 parent: 2 type: Transform - - uid: 28203 + - uid: 28277 components: - rot: -1.5707963267948966 rad pos: 32.5,-74.5 parent: 2 type: Transform - - uid: 28204 + - uid: 28278 components: - rot: -1.5707963267948966 rad pos: 28.5,-79.5 parent: 2 type: Transform - - uid: 28205 + - uid: 28279 components: - rot: -1.5707963267948966 rad pos: 33.5,-74.5 parent: 2 type: Transform - - uid: 28206 + - uid: 28280 components: - rot: 1.5707963267948966 rad pos: 50.5,-74.5 parent: 2 type: Transform - - uid: 28207 + - uid: 28281 components: - rot: 1.5707963267948966 rad pos: 45.5,-88.5 parent: 2 type: Transform - - uid: 28208 + - uid: 28282 components: - pos: 7.5,-74.5 parent: 2 type: Transform - - uid: 28209 + - uid: 28283 components: - pos: 7.5,-76.5 parent: 2 type: Transform - - uid: 28210 + - uid: 28284 components: - pos: 7.5,-72.5 parent: 2 type: Transform - - uid: 28211 + - uid: 28285 components: - pos: 10.5,-81.5 parent: 2 type: Transform - - uid: 28212 + - uid: 28286 components: - pos: 10.5,-82.5 parent: 2 type: Transform - - uid: 28213 + - uid: 28287 components: - pos: 10.5,-84.5 parent: 2 type: Transform - - uid: 28214 + - uid: 28288 components: - pos: 10.5,-85.5 parent: 2 type: Transform - - uid: 28215 + - uid: 28289 components: - pos: 5.5,-77.5 parent: 2 type: Transform - - uid: 28216 + - uid: 28290 components: - pos: 8.5,-78.5 parent: 2 type: Transform - - uid: 28217 + - uid: 28291 components: - rot: 1.5707963267948966 rad pos: 50.5,-87.5 parent: 2 type: Transform - - uid: 28218 + - uid: 28292 components: - rot: 1.5707963267948966 rad pos: 50.5,-80.5 parent: 2 type: Transform - - uid: 28219 + - uid: 28293 components: - rot: -1.5707963267948966 rad pos: 32.5,-81.5 parent: 2 type: Transform - - uid: 28220 + - uid: 28294 components: - rot: -1.5707963267948966 rad pos: 32.5,-76.5 parent: 2 type: Transform - - uid: 28221 + - uid: 28295 components: - rot: -1.5707963267948966 rad pos: 32.5,-83.5 parent: 2 type: Transform - - uid: 28222 + - uid: 28296 components: - rot: 3.141592653589793 rad pos: 3.5,-20.5 parent: 2 type: Transform - - uid: 28223 + - uid: 28297 components: - rot: 3.141592653589793 rad pos: 3.5,-22.5 parent: 2 type: Transform - - uid: 28224 + - uid: 28298 components: - rot: 3.141592653589793 rad pos: 3.5,-23.5 parent: 2 type: Transform - - uid: 28225 + - uid: 28299 components: - rot: 3.141592653589793 rad pos: 3.5,-21.5 parent: 2 type: Transform - - uid: 28226 + - uid: 28300 components: - rot: 3.141592653589793 rad pos: 3.5,-19.5 parent: 2 type: Transform - - uid: 28227 + - uid: 28301 components: - rot: 3.141592653589793 rad pos: 39.5,13.5 parent: 2 type: Transform - - uid: 28228 + - uid: 28302 components: - rot: 3.141592653589793 rad pos: 37.5,13.5 parent: 2 type: Transform - - uid: 28229 + - uid: 28303 components: - rot: 3.141592653589793 rad pos: 38.5,13.5 parent: 2 type: Transform - - uid: 28230 + - uid: 28304 components: - rot: 3.141592653589793 rad pos: 47.5,8.5 parent: 2 type: Transform - - uid: 28231 + - uid: 28305 components: - pos: 8.5,-81.5 parent: 2 type: Transform - - uid: 28232 + - uid: 28306 components: - pos: 8.5,-82.5 parent: 2 type: Transform - - uid: 28233 + - uid: 28307 components: - pos: 9.5,-82.5 parent: 2 type: Transform - - uid: 28234 + - uid: 28308 components: - rot: -1.5707963267948966 rad pos: 3.5,-76.5 parent: 2 type: Transform - - uid: 28235 + - uid: 28309 components: - rot: -1.5707963267948966 rad pos: 4.5,-76.5 parent: 2 type: Transform - - uid: 28236 + - uid: 28310 components: - rot: -1.5707963267948966 rad pos: -44.5,45.5 parent: 2 type: Transform - - uid: 28237 + - uid: 28311 components: - rot: -1.5707963267948966 rad pos: -51.5,45.5 parent: 2 type: Transform - - uid: 28238 + - uid: 28312 components: - rot: -1.5707963267948966 rad pos: -44.5,44.5 parent: 2 type: Transform - - uid: 28239 + - uid: 28313 components: - rot: -1.5707963267948966 rad pos: -44.5,43.5 parent: 2 type: Transform - - uid: 28240 + - uid: 28314 components: - rot: -1.5707963267948966 rad pos: -44.5,42.5 parent: 2 type: Transform - - uid: 28241 + - uid: 28315 components: - rot: -1.5707963267948966 rad pos: -44.5,41.5 parent: 2 type: Transform - - uid: 28242 + - uid: 28316 components: - pos: 65.5,-26.5 parent: 2 type: Transform - - uid: 28243 + - uid: 28317 components: - pos: 68.5,-26.5 parent: 2 type: Transform - - uid: 28244 + - uid: 28318 components: - pos: 69.5,-26.5 parent: 2 type: Transform - - uid: 28245 + - uid: 28319 components: - pos: -17.5,-83.5 parent: 2 type: Transform - - uid: 28246 + - uid: 28320 components: - rot: -1.5707963267948966 rad pos: -1.5,16.5 parent: 2 type: Transform - - uid: 28247 + - uid: 28321 components: - pos: -65.5,-47.5 parent: 2 type: Transform - - uid: 28248 + - uid: 28322 components: - pos: -66.5,-47.5 parent: 2 type: Transform - - uid: 28249 + - uid: 28323 components: - pos: -67.5,-47.5 parent: 2 type: Transform - - uid: 28250 + - uid: 28324 components: - pos: -71.5,-47.5 parent: 2 type: Transform - - uid: 28251 + - uid: 28325 components: - pos: -72.5,-47.5 parent: 2 type: Transform - - uid: 28252 + - uid: 28326 components: - pos: -73.5,-47.5 parent: 2 type: Transform - - uid: 28253 + - uid: 28327 components: - pos: -74.5,-47.5 parent: 2 type: Transform - - uid: 28254 + - uid: 28328 components: - rot: -1.5707963267948966 rad pos: -68.5,-33.5 parent: 2 type: Transform - - uid: 28255 + - uid: 28329 components: - rot: -1.5707963267948966 rad pos: -63.5,-46.5 parent: 2 type: Transform - - uid: 28256 + - uid: 28330 components: - rot: -1.5707963267948966 rad pos: -62.5,-46.5 parent: 2 type: Transform - - uid: 28257 + - uid: 28331 components: - rot: -1.5707963267948966 rad pos: -62.5,-44.5 parent: 2 type: Transform - - uid: 28258 + - uid: 28332 components: - pos: -78.5,-46.5 parent: 2 type: Transform - - uid: 28259 + - uid: 28333 components: - pos: -78.5,-47.5 parent: 2 type: Transform - - uid: 28260 + - uid: 28334 components: - pos: -77.5,-47.5 parent: 2 type: Transform - - uid: 28261 + - uid: 28335 components: - pos: -76.5,-47.5 parent: 2 type: Transform - - uid: 28262 + - uid: 28336 components: - pos: -75.5,-47.5 parent: 2 type: Transform - - uid: 28263 + - uid: 28337 components: - pos: -49.5,-26.5 parent: 2 type: Transform - - uid: 28264 + - uid: 28338 components: - pos: -50.5,-26.5 parent: 2 type: Transform - - uid: 28265 + - uid: 28339 components: - rot: -1.5707963267948966 rad pos: -63.5,-34.5 parent: 2 type: Transform - - uid: 28266 + - uid: 28340 components: - rot: 1.5707963267948966 rad pos: -63.5,-35.5 parent: 2 type: Transform - - uid: 28267 + - uid: 28341 components: - rot: 3.141592653589793 rad pos: -60.5,-44.5 parent: 2 type: Transform - - uid: 28268 + - uid: 28342 components: - pos: 6.5,-3.5 parent: 2 type: Transform - - uid: 28269 + - uid: 28343 components: - pos: 19.5,-27.5 parent: 2 type: Transform - - uid: 28270 + - uid: 28344 components: - pos: 5.5,-3.5 parent: 2 type: Transform - - uid: 28271 + - uid: 28345 components: - rot: 1.5707963267948966 rad pos: 21.5,-38.5 parent: 2 type: Transform - - uid: 28272 + - uid: 28346 components: - pos: 6.5,-8.5 parent: 2 type: Transform - - uid: 28273 + - uid: 28347 components: - pos: 19.5,-28.5 parent: 2 type: Transform - proto: WallShuttle entities: - - uid: 28274 + - uid: 28348 components: - rot: -1.5707963267948966 rad pos: -74.5,-57.5 parent: 2 type: Transform - - uid: 28275 + - uid: 28349 components: - rot: -1.5707963267948966 rad pos: -64.5,-56.5 parent: 2 type: Transform - - uid: 28276 + - uid: 28350 components: - rot: -1.5707963267948966 rad pos: -64.5,-57.5 parent: 2 type: Transform - - uid: 28277 + - uid: 28351 components: - rot: 1.5707963267948966 rad pos: -76.5,-51.5 parent: 2 type: Transform - - uid: 28278 + - uid: 28352 components: - rot: -1.5707963267948966 rad pos: -65.5,-57.5 parent: 2 type: Transform - - uid: 28279 + - uid: 28353 components: - rot: -1.5707963267948966 rad pos: -63.5,-57.5 parent: 2 type: Transform - - uid: 28280 + - uid: 28354 components: - rot: -1.5707963267948966 rad pos: -70.5,-57.5 parent: 2 type: Transform - - uid: 28281 + - uid: 28355 components: - rot: 1.5707963267948966 rad pos: -75.5,-55.5 parent: 2 type: Transform - - uid: 28282 + - uid: 28356 components: - rot: -1.5707963267948966 rad pos: -64.5,-54.5 parent: 2 type: Transform - - uid: 28283 + - uid: 28357 components: - rot: -1.5707963267948966 rad pos: -64.5,-51.5 parent: 2 type: Transform - - uid: 28284 + - uid: 28358 components: - rot: -1.5707963267948966 rad pos: -64.5,-53.5 parent: 2 type: Transform - - uid: 28285 + - uid: 28359 components: - rot: 1.5707963267948966 rad pos: -75.5,-51.5 parent: 2 type: Transform - - uid: 28286 + - uid: 28360 components: - rot: -1.5707963267948966 rad pos: -63.5,-50.5 parent: 2 type: Transform - - uid: 28287 + - uid: 28361 components: - rot: 1.5707963267948966 rad pos: -65.5,-50.5 parent: 2 type: Transform - - uid: 28288 + - uid: 28362 components: - rot: 1.5707963267948966 rad pos: -64.5,-50.5 parent: 2 type: Transform - - uid: 28289 + - uid: 28363 components: - rot: 1.5707963267948966 rad pos: -74.5,-50.5 parent: 2 type: Transform - - uid: 28290 + - uid: 28364 components: - rot: -1.5707963267948966 rad pos: -64.5,-55.5 parent: 2 type: Transform - - uid: 28291 + - uid: 28365 components: - rot: -1.5707963267948966 rad pos: -67.5,-55.5 parent: 2 type: Transform - - uid: 28292 + - uid: 28366 components: - rot: 1.5707963267948966 rad pos: -70.5,-50.5 parent: 2 type: Transform - - uid: 28293 + - uid: 28367 components: - rot: 1.5707963267948966 rad pos: -68.5,-51.5 parent: 2 type: Transform - - uid: 28294 + - uid: 28368 components: - rot: 1.5707963267948966 rad pos: -67.5,-51.5 parent: 2 type: Transform - - uid: 28295 + - uid: 28369 components: - rot: -1.5707963267948966 rad pos: -64.5,-52.5 parent: 2 type: Transform - - uid: 28296 + - uid: 28370 components: - rot: 1.5707963267948966 rad pos: -75.5,-56.5 parent: 2 type: Transform - - uid: 28297 + - uid: 28371 components: - rot: 1.5707963267948966 rad pos: -75.5,-52.5 parent: 2 type: Transform - - uid: 28298 + - uid: 28372 components: - rot: 1.5707963267948966 rad pos: -76.5,-56.5 parent: 2 type: Transform - - uid: 28299 + - uid: 28373 components: - rot: 1.5707963267948966 rad pos: -67.5,-52.5 parent: 2 type: Transform - - uid: 28300 + - uid: 28374 components: - rot: -1.5707963267948966 rad pos: -68.5,-56.5 parent: 2 type: Transform - - uid: 28301 + - uid: 28375 components: - rot: -1.5707963267948966 rad pos: -67.5,-56.5 @@ -190749,11797 +183592,11782 @@ entities: type: Transform - proto: WallShuttleDiagonal entities: - - uid: 28302 + - uid: 28376 components: - rot: 3.141592653589793 rad pos: -79.5,-52.5 parent: 2 type: Transform - - uid: 28303 + - uid: 28377 components: - pos: -80.5,-52.5 parent: 2 type: Transform - - uid: 28304 + - uid: 28378 components: - rot: 1.5707963267948966 rad pos: -75.5,-57.5 parent: 2 type: Transform - - uid: 28305 + - uid: 28379 components: - rot: 1.5707963267948966 rad pos: -66.5,-57.5 parent: 2 type: Transform - - uid: 28306 + - uid: 28380 components: - rot: 1.5707963267948966 rad pos: -80.5,-55.5 parent: 2 type: Transform - - uid: 28307 + - uid: 28381 components: - rot: 3.141592653589793 rad pos: -69.5,-57.5 parent: 2 type: Transform - - uid: 28308 + - uid: 28382 components: - rot: -1.5707963267948966 rad pos: -79.5,-55.5 parent: 2 type: Transform - - uid: 28309 + - uid: 28383 components: - pos: -75.5,-50.5 parent: 2 type: Transform - - uid: 28310 + - uid: 28384 components: - rot: -1.5707963267948966 rad pos: -69.5,-50.5 parent: 2 type: Transform - - uid: 28311 + - uid: 28385 components: - pos: -66.5,-50.5 parent: 2 type: Transform - - uid: 28312 + - uid: 28386 components: - rot: 1.5707963267948966 rad pos: -79.5,-56.5 parent: 2 type: Transform - - uid: 28313 + - uid: 28387 components: - rot: 1.5707963267948966 rad pos: -69.5,-51.5 parent: 2 type: Transform - - uid: 28314 + - uid: 28388 components: - rot: -1.5707963267948966 rad pos: -66.5,-56.5 parent: 2 type: Transform - - uid: 28315 + - uid: 28389 components: - rot: 3.141592653589793 rad pos: -66.5,-51.5 parent: 2 type: Transform - - uid: 28316 + - uid: 28390 components: - pos: -79.5,-51.5 parent: 2 type: Transform - - uid: 28317 + - uid: 28391 components: - pos: -69.5,-56.5 parent: 2 type: Transform - proto: WallSolid entities: - - uid: 28318 + - uid: 28392 + components: + - pos: 55.5,-39.5 + parent: 2 + type: Transform + - uid: 28393 components: - rot: -1.5707963267948966 rad pos: 2.5,-10.5 parent: 2 type: Transform - - uid: 28319 + - uid: 28394 components: - rot: -1.5707963267948966 rad pos: 2.5,-12.5 parent: 2 type: Transform - - uid: 28320 + - uid: 28395 components: - rot: -1.5707963267948966 rad pos: 2.5,-11.5 parent: 2 type: Transform - - uid: 28321 + - uid: 28396 components: - rot: -1.5707963267948966 rad pos: 8.5,-15.5 parent: 2 type: Transform - - uid: 28322 + - uid: 28397 components: - rot: -1.5707963267948966 rad pos: 1.5,-11.5 parent: 2 type: Transform - - uid: 28323 + - uid: 28398 components: - rot: -1.5707963267948966 rad pos: 6.5,-12.5 parent: 2 type: Transform - - uid: 28324 + - uid: 28399 components: - pos: 0.5,-24.5 parent: 2 type: Transform - - uid: 28325 + - uid: 28400 components: - pos: 1.5,-24.5 parent: 2 type: Transform - - uid: 28326 + - uid: 28401 components: - pos: -1.5,-18.5 parent: 2 type: Transform - - uid: 28327 + - uid: 28402 components: - pos: -0.5,-24.5 parent: 2 type: Transform - - uid: 28328 + - uid: 28403 components: - pos: 2.5,-18.5 parent: 2 type: Transform - - uid: 28329 + - uid: 28404 components: - pos: 1.5,-18.5 parent: 2 type: Transform - - uid: 28330 + - uid: 28405 components: - pos: -2.5,-20.5 parent: 2 type: Transform - - uid: 28331 + - uid: 28406 components: - pos: -0.5,-18.5 parent: 2 type: Transform - - uid: 28332 + - uid: 28407 components: - pos: -2.5,-24.5 parent: 2 type: Transform - - uid: 28333 + - uid: 28408 components: - pos: -2.5,-23.5 parent: 2 type: Transform - - uid: 28334 + - uid: 28409 components: - pos: -2.5,-21.5 parent: 2 type: Transform - - uid: 28335 + - uid: 28410 components: - pos: -2.5,-22.5 parent: 2 type: Transform - - uid: 28336 + - uid: 28411 components: - rot: -1.5707963267948966 rad pos: -1.5,-10.5 parent: 2 type: Transform - - uid: 28337 + - uid: 28412 components: - pos: -34.5,-19.5 parent: 2 type: Transform - - uid: 28338 + - uid: 28413 components: - pos: 0.5,-12.5 parent: 2 type: Transform - - uid: 28339 + - uid: 28414 components: - pos: 0.5,-11.5 parent: 2 type: Transform - - uid: 28340 + - uid: 28415 components: - pos: -37.5,-19.5 parent: 2 type: Transform - - uid: 28341 + - uid: 28416 components: - pos: -35.5,-19.5 parent: 2 type: Transform - - uid: 28342 + - uid: 28417 components: - pos: -2.5,-8.5 parent: 2 type: Transform - - uid: 28343 + - uid: 28418 components: - pos: 0.5,-13.5 parent: 2 type: Transform - - uid: 28344 + - uid: 28419 components: - rot: 3.141592653589793 rad pos: -48.5,-74.5 parent: 2 type: Transform - - uid: 28345 + - uid: 28420 components: - rot: -1.5707963267948966 rad pos: -42.5,-30.5 parent: 2 type: Transform - - uid: 28346 + - uid: 28421 components: - rot: -1.5707963267948966 rad pos: -37.5,-30.5 parent: 2 type: Transform - - uid: 28347 + - uid: 28422 components: - rot: 1.5707963267948966 rad pos: -17.5,10.5 parent: 2 type: Transform - - uid: 28348 + - uid: 28423 components: - rot: -1.5707963267948966 rad pos: -69.5,-32.5 parent: 2 type: Transform - - uid: 28349 + - uid: 28424 components: - rot: 3.141592653589793 rad pos: -41.5,-32.5 parent: 2 type: Transform - - uid: 28350 + - uid: 28425 components: - rot: 3.141592653589793 rad pos: -41.5,-31.5 parent: 2 type: Transform - - uid: 28351 + - uid: 28426 components: - pos: -42.5,-31.5 parent: 2 type: Transform - - uid: 28352 + - uid: 28427 components: - rot: -1.5707963267948966 rad pos: -53.5,-33.5 parent: 2 type: Transform - - uid: 28353 + - uid: 28428 components: - rot: -1.5707963267948966 rad pos: -53.5,-34.5 parent: 2 type: Transform - - uid: 28354 + - uid: 28429 components: - pos: -10.5,13.5 parent: 2 type: Transform - - uid: 28355 + - uid: 28430 components: - pos: -9.5,16.5 parent: 2 type: Transform - - uid: 28356 + - uid: 28431 components: - rot: 1.5707963267948966 rad pos: -8.5,20.5 parent: 2 type: Transform - - uid: 28357 + - uid: 28432 components: - pos: -11.5,12.5 parent: 2 type: Transform - - uid: 28358 + - uid: 28433 components: - pos: -9.5,18.5 parent: 2 type: Transform - - uid: 28359 + - uid: 28434 components: - rot: 3.141592653589793 rad pos: -16.5,-32.5 parent: 2 type: Transform - - uid: 28360 + - uid: 28435 components: - rot: 1.5707963267948966 rad pos: -16.5,-28.5 parent: 2 type: Transform - - uid: 28361 + - uid: 28436 components: - pos: 37.5,-56.5 parent: 2 type: Transform - - uid: 28362 + - uid: 28437 components: - pos: 17.5,-31.5 parent: 2 type: Transform - - uid: 28363 + - uid: 28438 components: - pos: -11.5,-3.5 parent: 2 type: Transform - - uid: 28364 + - uid: 28439 components: - rot: 3.141592653589793 rad pos: 15.5,8.5 parent: 2 type: Transform - - uid: 28365 + - uid: 28440 components: - pos: 40.5,-0.5 parent: 2 type: Transform - - uid: 28366 + - uid: 28441 components: - rot: 3.141592653589793 rad pos: 23.5,9.5 parent: 2 type: Transform - - uid: 28367 + - uid: 28442 components: - pos: -17.5,-34.5 parent: 2 type: Transform - - uid: 28368 + - uid: 28443 components: - rot: 1.5707963267948966 rad pos: -11.5,8.5 parent: 2 type: Transform - - uid: 28369 + - uid: 28444 components: - rot: 1.5707963267948966 rad pos: 28.5,-57.5 parent: 2 type: Transform - - uid: 28370 + - uid: 28445 components: - pos: 37.5,-53.5 parent: 2 type: Transform - - uid: 28371 + - uid: 28446 components: - rot: 1.5707963267948966 rad pos: 19.5,-23.5 parent: 2 type: Transform - - uid: 28372 + - uid: 28447 components: - rot: -1.5707963267948966 rad pos: 31.5,-2.5 parent: 2 type: Transform - - uid: 28373 + - uid: 28448 components: - rot: 3.141592653589793 rad pos: 15.5,-51.5 parent: 2 type: Transform - - uid: 28374 + - uid: 28449 components: - rot: -1.5707963267948966 rad pos: -14.5,-11.5 parent: 2 type: Transform - - uid: 28375 + - uid: 28450 components: - pos: -11.5,-72.5 parent: 2 type: Transform - - uid: 28376 + - uid: 28451 components: - rot: -1.5707963267948966 rad pos: -14.5,-20.5 parent: 2 type: Transform - - uid: 28377 + - uid: 28452 components: - pos: 11.5,-61.5 parent: 2 type: Transform - - uid: 28378 + - uid: 28453 components: - pos: 11.5,-63.5 parent: 2 type: Transform - - uid: 28379 + - uid: 28454 components: - pos: 9.5,-63.5 parent: 2 type: Transform - - uid: 28380 + - uid: 28455 components: - pos: 7.5,-63.5 parent: 2 type: Transform - - uid: 28381 + - uid: 28456 components: - rot: -1.5707963267948966 rad pos: -10.5,-70.5 parent: 2 type: Transform - - uid: 28382 + - uid: 28457 components: - rot: -1.5707963267948966 rad pos: -10.5,-69.5 parent: 2 type: Transform - - uid: 28383 + - uid: 28458 components: - rot: -1.5707963267948966 rad pos: -7.5,-70.5 parent: 2 type: Transform - - uid: 28384 + - uid: 28459 components: - rot: -1.5707963267948966 rad pos: -15.5,-68.5 parent: 2 type: Transform - - uid: 28385 + - uid: 28460 components: - rot: -1.5707963267948966 rad pos: -17.5,-68.5 parent: 2 type: Transform - - uid: 28386 + - uid: 28461 components: - rot: -1.5707963267948966 rad pos: -10.5,-68.5 parent: 2 type: Transform - - uid: 28387 + - uid: 28462 components: - rot: -1.5707963267948966 rad pos: -7.5,-67.5 parent: 2 type: Transform - - uid: 28388 + - uid: 28463 components: - rot: -1.5707963267948966 rad pos: -5.5,-67.5 parent: 2 type: Transform - - uid: 28389 + - uid: 28464 components: - pos: 1.5,-64.5 parent: 2 type: Transform - - uid: 28390 + - uid: 28465 components: - pos: 1.5,-63.5 parent: 2 type: Transform - - uid: 28391 + - uid: 28466 components: - pos: -17.5,-63.5 parent: 2 type: Transform - - uid: 28392 + - uid: 28467 components: - pos: 4.5,-51.5 parent: 2 type: Transform - - uid: 28393 + - uid: 28468 components: - pos: -12.5,-72.5 parent: 2 type: Transform - - uid: 28394 + - uid: 28469 components: - pos: -14.5,-70.5 parent: 2 type: Transform - - uid: 28395 + - uid: 28470 components: - pos: -3.5,-74.5 parent: 2 type: Transform - - uid: 28396 + - uid: 28471 components: - pos: 9.5,-68.5 parent: 2 type: Transform - - uid: 28397 + - uid: 28472 components: - rot: 3.141592653589793 rad pos: -1.5,9.5 parent: 2 type: Transform - - uid: 28398 + - uid: 28473 components: - rot: 1.5707963267948966 rad pos: -6.5,-21.5 parent: 2 type: Transform - - uid: 28399 + - uid: 28474 components: - rot: -1.5707963267948966 rad pos: 12.5,-44.5 parent: 2 type: Transform - - uid: 28400 + - uid: 28475 components: - rot: 1.5707963267948966 rad pos: 34.5,-44.5 parent: 2 type: Transform - - uid: 28401 + - uid: 28476 components: - pos: 1.5,-67.5 parent: 2 type: Transform - - uid: 28402 + - uid: 28477 components: - pos: 5.5,-63.5 parent: 2 type: Transform - - uid: 28403 + - uid: 28478 components: - pos: 13.5,-59.5 parent: 2 type: Transform - - uid: 28404 + - uid: 28479 components: - rot: 1.5707963267948966 rad pos: 18.5,-23.5 parent: 2 type: Transform - - uid: 28405 + - uid: 28480 components: - pos: -21.5,-64.5 parent: 2 type: Transform - - uid: 28406 + - uid: 28481 components: - pos: -21.5,-66.5 parent: 2 type: Transform - - uid: 28407 + - uid: 28482 components: - pos: -21.5,-67.5 parent: 2 type: Transform - - uid: 28408 + - uid: 28483 components: - pos: -21.5,-68.5 parent: 2 type: Transform - - uid: 28409 + - uid: 28484 components: - pos: -22.5,-68.5 parent: 2 type: Transform - - uid: 28410 + - uid: 28485 components: - pos: -25.5,-68.5 parent: 2 type: Transform - - uid: 28411 + - uid: 28486 components: - pos: -26.5,-69.5 parent: 2 type: Transform - - uid: 28412 + - uid: 28487 components: - pos: -23.5,-74.5 parent: 2 type: Transform - - uid: 28413 + - uid: 28488 components: - pos: -22.5,-74.5 parent: 2 type: Transform - - uid: 28414 + - uid: 28489 components: - pos: -16.5,-71.5 parent: 2 type: Transform - - uid: 28415 + - uid: 28490 components: - pos: -21.5,-75.5 parent: 2 type: Transform - - uid: 28416 + - uid: 28491 components: - pos: -10.5,-74.5 parent: 2 type: Transform - - uid: 28417 + - uid: 28492 components: - pos: -8.5,-73.5 parent: 2 type: Transform - - uid: 28418 + - uid: 28493 components: - pos: 3.5,-69.5 parent: 2 type: Transform - - uid: 28419 + - uid: 28494 components: - pos: 7.5,-68.5 parent: 2 type: Transform - - uid: 28420 + - uid: 28495 components: - pos: 7.5,-66.5 parent: 2 type: Transform - - uid: 28421 + - uid: 28496 components: - pos: 9.5,-66.5 parent: 2 type: Transform - - uid: 28422 + - uid: 28497 components: - pos: -19.5,-74.5 parent: 2 type: Transform - - uid: 28423 + - uid: 28498 components: - rot: 3.141592653589793 rad pos: 14.5,-15.5 parent: 2 type: Transform - - uid: 28424 + - uid: 28499 components: - pos: 9.5,-13.5 parent: 2 type: Transform - - uid: 28425 + - uid: 28500 components: - rot: -1.5707963267948966 rad pos: -16.5,-44.5 parent: 2 type: Transform - - uid: 28426 + - uid: 28501 components: - rot: 1.5707963267948966 rad pos: 31.5,-23.5 parent: 2 type: Transform - - uid: 28427 + - uid: 28502 components: - rot: -1.5707963267948966 rad pos: 31.5,3.5 parent: 2 type: Transform - - uid: 28428 + - uid: 28503 components: - pos: 7.5,6.5 parent: 2 type: Transform - - uid: 28429 + - uid: 28504 components: - rot: 3.141592653589793 rad pos: 62.5,14.5 parent: 2 type: Transform - - uid: 28430 + - uid: 28505 components: - rot: 3.141592653589793 rad pos: -1.5,8.5 parent: 2 type: Transform - - uid: 28431 + - uid: 28506 components: - pos: 6.5,-68.5 parent: 2 type: Transform - - uid: 28432 + - uid: 28507 components: - pos: 15.5,4.5 parent: 2 type: Transform - - uid: 28433 + - uid: 28508 components: - rot: 3.141592653589793 rad pos: 61.5,17.5 parent: 2 type: Transform - - uid: 28434 + - uid: 28509 components: - pos: -8.5,-34.5 parent: 2 type: Transform - - uid: 28435 + - uid: 28510 components: - rot: -1.5707963267948966 rad pos: 13.5,-4.5 parent: 2 type: Transform - - uid: 28436 + - uid: 28511 components: - pos: 2.5,-9.5 parent: 2 type: Transform - - uid: 28437 + - uid: 28512 components: - rot: -1.5707963267948966 rad pos: -13.5,36.5 parent: 2 type: Transform - - uid: 28438 + - uid: 28513 components: - pos: 7.5,-62.5 parent: 2 type: Transform - - uid: 28439 + - uid: 28514 components: - pos: 13.5,-54.5 parent: 2 type: Transform - - uid: 28440 + - uid: 28515 components: - pos: -17.5,-64.5 parent: 2 type: Transform - - uid: 28441 + - uid: 28516 components: - pos: 7.5,-55.5 parent: 2 type: Transform - - uid: 28442 + - uid: 28517 components: - pos: -10.5,-2.5 parent: 2 type: Transform - - uid: 28443 + - uid: 28518 components: - rot: 3.141592653589793 rad pos: 22.5,15.5 parent: 2 type: Transform - - uid: 28444 + - uid: 28519 components: - rot: 3.141592653589793 rad pos: 21.5,15.5 parent: 2 type: Transform - - uid: 28445 + - uid: 28520 components: - rot: -1.5707963267948966 rad pos: 13.5,-3.5 parent: 2 type: Transform - - uid: 28446 + - uid: 28521 components: - rot: 1.5707963267948966 rad pos: 66.5,-4.5 parent: 2 type: Transform - - uid: 28447 + - uid: 28522 components: - pos: 37.5,-39.5 parent: 2 type: Transform - - uid: 28448 + - uid: 28523 components: - pos: -6.5,-5.5 parent: 2 type: Transform - - uid: 28449 + - uid: 28524 components: - rot: 3.141592653589793 rad pos: 6.5,-16.5 parent: 2 type: Transform - - uid: 28450 + - uid: 28525 components: - pos: 43.5,-57.5 parent: 2 type: Transform - - uid: 28451 + - uid: 28526 components: - pos: 37.5,-27.5 parent: 2 type: Transform - - uid: 28452 + - uid: 28527 components: - pos: 13.5,-50.5 parent: 2 type: Transform - - uid: 28453 + - uid: 28528 components: - pos: -17.5,-28.5 parent: 2 type: Transform - - uid: 28454 + - uid: 28529 components: - rot: -1.5707963267948966 rad pos: -3.5,-78.5 parent: 2 type: Transform - - uid: 28455 + - uid: 28530 components: - rot: -1.5707963267948966 rad pos: -2.5,-83.5 parent: 2 type: Transform - - uid: 28456 + - uid: 28531 components: - rot: -1.5707963267948966 rad pos: -5.5,-76.5 parent: 2 type: Transform - - uid: 28457 + - uid: 28532 components: - pos: -9.5,-7.5 parent: 2 type: Transform - - uid: 28458 + - uid: 28533 components: - rot: -1.5707963267948966 rad pos: 29.5,-1.5 parent: 2 type: Transform - - uid: 28459 + - uid: 28534 components: - pos: -6.5,-16.5 parent: 2 type: Transform - - uid: 28460 + - uid: 28535 components: - rot: -1.5707963267948966 rad pos: -2.5,-10.5 parent: 2 type: Transform - - uid: 28461 + - uid: 28536 components: - pos: 13.5,-48.5 parent: 2 type: Transform - - uid: 28462 + - uid: 28537 components: - pos: -2.5,-18.5 parent: 2 type: Transform - - uid: 28463 + - uid: 28538 components: - pos: -0.5,-15.5 parent: 2 type: Transform - - uid: 28464 + - uid: 28539 components: - pos: -2.5,-14.5 parent: 2 type: Transform - - uid: 28465 + - uid: 28540 components: - pos: -2.5,-13.5 parent: 2 type: Transform - - uid: 28466 + - uid: 28541 components: - pos: -2.5,-19.5 parent: 2 type: Transform - - uid: 28467 + - uid: 28542 components: - rot: 1.5707963267948966 rad pos: 7.5,-10.5 parent: 2 type: Transform - - uid: 28468 + - uid: 28543 components: - rot: 3.141592653589793 rad pos: -10.5,-49.5 parent: 2 type: Transform - - uid: 28469 + - uid: 28544 components: - rot: 3.141592653589793 rad pos: -11.5,-44.5 parent: 2 type: Transform - - uid: 28470 + - uid: 28545 components: - rot: 3.141592653589793 rad pos: -10.5,-50.5 parent: 2 type: Transform - - uid: 28471 + - uid: 28546 components: - rot: 3.141592653589793 rad pos: 23.5,15.5 parent: 2 type: Transform - - uid: 28472 + - uid: 28547 components: - rot: 3.141592653589793 rad pos: 19.5,10.5 parent: 2 type: Transform - - uid: 28473 + - uid: 28548 components: - pos: 16.5,-13.5 parent: 2 type: Transform - - uid: 28474 + - uid: 28549 components: - pos: 7.5,-12.5 parent: 2 type: Transform - - uid: 28475 + - uid: 28550 components: - pos: -32.5,-69.5 parent: 2 type: Transform - - uid: 28476 + - uid: 28551 components: - pos: -32.5,-72.5 parent: 2 type: Transform - - uid: 28477 + - uid: 28552 components: - pos: 18.5,-44.5 parent: 2 type: Transform - - uid: 28478 + - uid: 28553 components: - pos: 42.5,-52.5 parent: 2 type: Transform - - uid: 28479 + - uid: 28554 components: - rot: -1.5707963267948966 rad pos: -9.5,57.5 parent: 2 type: Transform - - uid: 28480 + - uid: 28555 components: - pos: 38.5,-27.5 parent: 2 type: Transform - - uid: 28481 + - uid: 28556 components: - pos: 37.5,-28.5 parent: 2 type: Transform - - uid: 28482 + - uid: 28557 components: - pos: 0.5,-72.5 parent: 2 type: Transform - - uid: 28483 + - uid: 28558 components: - pos: -9.5,-17.5 parent: 2 type: Transform - - uid: 28484 + - uid: 28559 components: - rot: 3.141592653589793 rad pos: 16.5,-51.5 parent: 2 type: Transform - - uid: 28485 + - uid: 28560 components: - pos: -9.5,-18.5 parent: 2 type: Transform - - uid: 28486 + - uid: 28561 components: - rot: -1.5707963267948966 rad pos: -10.5,-76.5 parent: 2 type: Transform - - uid: 28487 + - uid: 28562 components: - rot: -1.5707963267948966 rad pos: 19.5,19.5 parent: 2 type: Transform - - uid: 28488 + - uid: 28563 components: - pos: 42.5,-56.5 parent: 2 type: Transform - - uid: 28489 + - uid: 28564 components: - pos: -17.5,-38.5 parent: 2 type: Transform - - uid: 28490 + - uid: 28565 components: - rot: -1.5707963267948966 rad pos: 20.5,19.5 parent: 2 type: Transform - - uid: 28491 + - uid: 28566 components: - pos: 1.5,-75.5 parent: 2 type: Transform - - uid: 28492 + - uid: 28567 components: - pos: 1.5,-73.5 parent: 2 type: Transform - - uid: 28493 + - uid: 28568 components: - pos: 7.5,-28.5 parent: 2 type: Transform - - uid: 28494 + - uid: 28569 components: - pos: -11.5,9.5 parent: 2 type: Transform - - uid: 28495 + - uid: 28570 components: - pos: -30.5,-76.5 parent: 2 type: Transform - - uid: 28496 + - uid: 28571 components: - rot: -1.5707963267948966 rad pos: -13.5,-20.5 parent: 2 type: Transform - - uid: 28497 + - uid: 28572 components: - pos: 11.5,-65.5 parent: 2 type: Transform - - uid: 28498 + - uid: 28573 components: - pos: 13.5,-63.5 parent: 2 type: Transform - - uid: 28499 + - uid: 28574 components: - pos: 15.5,-56.5 parent: 2 type: Transform - - uid: 28500 + - uid: 28575 components: - pos: 8.5,-63.5 parent: 2 type: Transform - - uid: 28501 + - uid: 28576 components: - pos: 11.5,-62.5 parent: 2 type: Transform - - uid: 28502 + - uid: 28577 components: - pos: 8.5,-57.5 parent: 2 type: Transform - - uid: 28503 + - uid: 28578 components: - pos: 11.5,-60.5 parent: 2 type: Transform - - uid: 28504 + - uid: 28579 components: - pos: 11.5,-59.5 parent: 2 type: Transform - - uid: 28505 + - uid: 28580 components: - pos: 11.5,-58.5 parent: 2 type: Transform - - uid: 28506 + - uid: 28581 components: - pos: 11.5,-57.5 parent: 2 type: Transform - - uid: 28507 + - uid: 28582 components: - pos: 10.5,-57.5 parent: 2 type: Transform - - uid: 28508 + - uid: 28583 components: - pos: 9.5,-57.5 parent: 2 type: Transform - - uid: 28509 + - uid: 28584 components: - rot: -1.5707963267948966 rad pos: -7.5,-69.5 parent: 2 type: Transform - - uid: 28510 + - uid: 28585 components: - rot: -1.5707963267948966 rad pos: -9.5,-70.5 parent: 2 type: Transform - - uid: 28511 + - uid: 28586 components: - rot: -1.5707963267948966 rad pos: -12.5,-68.5 parent: 2 type: Transform - - uid: 28512 + - uid: 28587 components: - rot: -1.5707963267948966 rad pos: -13.5,-68.5 parent: 2 type: Transform - - uid: 28513 + - uid: 28588 components: - rot: -1.5707963267948966 rad pos: -16.5,-68.5 parent: 2 type: Transform - - uid: 28514 + - uid: 28589 components: - rot: -1.5707963267948966 rad pos: -17.5,-67.5 parent: 2 type: Transform - - uid: 28515 + - uid: 28590 components: - rot: -1.5707963267948966 rad pos: -10.5,-67.5 parent: 2 type: Transform - - uid: 28516 + - uid: 28591 components: - rot: -1.5707963267948966 rad pos: -9.5,-67.5 parent: 2 type: Transform - - uid: 28517 + - uid: 28592 components: - rot: -1.5707963267948966 rad pos: -6.5,-67.5 parent: 2 type: Transform - - uid: 28518 + - uid: 28593 components: - pos: 1.5,-62.5 parent: 2 type: Transform - - uid: 28519 + - uid: 28594 components: - pos: 1.5,-65.5 parent: 2 type: Transform - - uid: 28520 + - uid: 28595 components: - pos: -1.5,-62.5 parent: 2 type: Transform - - uid: 28521 + - uid: 28596 components: - pos: -17.5,-65.5 parent: 2 type: Transform - - uid: 28522 + - uid: 28597 components: - pos: -7.5,-62.5 parent: 2 type: Transform - - uid: 28523 + - uid: 28598 components: - pos: 12.5,-50.5 parent: 2 type: Transform - - uid: 28524 + - uid: 28599 components: - rot: 1.5707963267948966 rad pos: -13.5,-55.5 parent: 2 type: Transform - - uid: 28525 + - uid: 28600 components: - rot: 1.5707963267948966 rad pos: 30.5,-44.5 parent: 2 type: Transform - - uid: 28526 + - uid: 28601 components: - pos: -23.5,-7.5 parent: 2 type: Transform - - uid: 28527 + - uid: 28602 components: - pos: -21.5,-7.5 parent: 2 type: Transform - - uid: 28528 + - uid: 28603 components: - pos: -26.5,-7.5 parent: 2 type: Transform - - uid: 28529 + - uid: 28604 components: - pos: -16.5,-7.5 parent: 2 type: Transform - - uid: 28530 + - uid: 28605 components: - pos: -14.5,-7.5 parent: 2 type: Transform - - uid: 28531 + - uid: 28606 components: - pos: -12.5,-7.5 parent: 2 type: Transform - - uid: 28532 + - uid: 28607 components: - pos: -11.5,-5.5 parent: 2 type: Transform - - uid: 28533 + - uid: 28608 components: - pos: -11.5,-7.5 parent: 2 type: Transform - - uid: 28534 + - uid: 28609 components: - rot: 3.141592653589793 rad pos: -17.5,9.5 parent: 2 type: Transform - - uid: 28535 + - uid: 28610 components: - rot: 3.141592653589793 rad pos: 23.5,-14.5 parent: 2 type: Transform - - uid: 28536 + - uid: 28611 components: - rot: 3.141592653589793 rad pos: 23.5,-13.5 parent: 2 type: Transform - - uid: 28537 + - uid: 28612 components: - rot: 3.141592653589793 rad pos: 17.5,-15.5 parent: 2 type: Transform - - uid: 28538 + - uid: 28613 components: - rot: 3.141592653589793 rad pos: 16.5,-15.5 parent: 2 type: Transform - - uid: 28539 + - uid: 28614 components: - rot: 3.141592653589793 rad pos: 22.5,-7.5 parent: 2 type: Transform - - uid: 28540 + - uid: 28615 components: - rot: 3.141592653589793 rad pos: 23.5,-9.5 parent: 2 type: Transform - - uid: 28541 + - uid: 28616 components: - rot: -1.5707963267948966 rad pos: 19.5,22.5 parent: 2 type: Transform - - uid: 28542 + - uid: 28617 components: - pos: 37.5,-31.5 parent: 2 type: Transform - - uid: 28543 + - uid: 28618 components: - pos: 28.5,-3.5 parent: 2 type: Transform - - uid: 28544 + - uid: 28619 components: - pos: -7.5,-34.5 parent: 2 type: Transform - - uid: 28545 + - uid: 28620 components: - pos: -20.5,-74.5 parent: 2 type: Transform - - uid: 28546 + - uid: 28621 components: - rot: -1.5707963267948966 rad pos: -17.5,-51.5 parent: 2 type: Transform - - uid: 28547 + - uid: 28622 components: - pos: 41.5,-52.5 parent: 2 type: Transform - - uid: 28548 + - uid: 28623 components: - pos: 13.5,-52.5 parent: 2 type: Transform - - uid: 28549 + - uid: 28624 components: - rot: -1.5707963267948966 rad pos: 37.5,-37.5 parent: 2 type: Transform - - uid: 28550 + - uid: 28625 components: - pos: 17.5,-28.5 parent: 2 type: Transform - - uid: 28551 + - uid: 28626 components: - pos: -12.5,-70.5 parent: 2 type: Transform - - uid: 28552 + - uid: 28627 components: - pos: -26.5,-70.5 parent: 2 type: Transform - - uid: 28553 + - uid: 28628 components: - pos: -24.5,-68.5 parent: 2 type: Transform - - uid: 28554 + - uid: 28629 components: - pos: 7.5,-44.5 parent: 2 type: Transform - - uid: 28555 + - uid: 28630 components: - rot: -1.5707963267948966 rad pos: 37.5,-34.5 parent: 2 type: Transform - - uid: 28556 + - uid: 28631 components: - pos: -6.5,-14.5 parent: 2 type: Transform - - uid: 28557 + - uid: 28632 components: - pos: -6.5,-28.5 parent: 2 type: Transform - - uid: 28558 + - uid: 28633 components: - pos: -22.5,-19.5 parent: 2 type: Transform - - uid: 28559 + - uid: 28634 components: - pos: -21.5,-19.5 parent: 2 type: Transform - - uid: 28560 + - uid: 28635 components: - pos: 37.5,-57.5 parent: 2 type: Transform - - uid: 28561 + - uid: 28636 components: - rot: -1.5707963267948966 rad pos: 8.5,-45.5 parent: 2 type: Transform - - uid: 28562 + - uid: 28637 components: - pos: 5.5,-12.5 parent: 2 type: Transform - - uid: 28563 + - uid: 28638 components: - pos: -1.5,5.5 parent: 2 type: Transform - - uid: 28564 + - uid: 28639 components: - rot: 1.5707963267948966 rad pos: -15.5,-28.5 parent: 2 type: Transform - - uid: 28565 + - uid: 28640 components: - rot: -1.5707963267948966 rad pos: 9.5,-3.5 parent: 2 type: Transform - - uid: 28566 + - uid: 28641 components: - rot: 1.5707963267948966 rad pos: -12.5,-20.5 parent: 2 type: Transform - - uid: 28567 + - uid: 28642 components: - rot: -1.5707963267948966 rad pos: 8.5,-47.5 parent: 2 type: Transform - - uid: 28568 + - uid: 28643 components: - pos: -3.5,-72.5 parent: 2 type: Transform - - uid: 28569 + - uid: 28644 components: - pos: -0.5,-72.5 parent: 2 type: Transform - - uid: 28570 + - uid: 28645 components: - pos: -13.5,-28.5 parent: 2 type: Transform - - uid: 28571 + - uid: 28646 components: - pos: -11.5,-6.5 parent: 2 type: Transform - - uid: 28572 + - uid: 28647 components: - rot: -1.5707963267948966 rad pos: -13.5,35.5 parent: 2 type: Transform - - uid: 28573 + - uid: 28648 components: - pos: 7.5,-13.5 parent: 2 type: Transform - - uid: 28574 + - uid: 28649 components: - rot: -1.5707963267948966 rad pos: 19.5,21.5 parent: 2 type: Transform - - uid: 28575 + - uid: 28650 components: - pos: 11.5,-48.5 parent: 2 type: Transform - - uid: 28576 + - uid: 28651 components: - rot: 3.141592653589793 rad pos: -2.5,9.5 parent: 2 type: Transform - - uid: 28577 + - uid: 28652 components: - pos: 10.5,-48.5 parent: 2 type: Transform - - uid: 28578 + - uid: 28653 components: - pos: 7.5,-56.5 parent: 2 type: Transform - - uid: 28579 + - uid: 28654 components: - pos: 7.5,-57.5 parent: 2 type: Transform - - uid: 28580 + - uid: 28655 components: - rot: -1.5707963267948966 rad pos: 13.5,-7.5 parent: 2 type: Transform - - uid: 28581 + - uid: 28656 components: - rot: -1.5707963267948966 rad pos: -9.5,14.5 parent: 2 type: Transform - - uid: 28582 + - uid: 28657 components: - pos: -6.5,-3.5 parent: 2 type: Transform - - uid: 28583 + - uid: 28658 components: - pos: -7.5,-3.5 parent: 2 type: Transform - - uid: 28584 + - uid: 28659 components: - pos: -8.5,-3.5 parent: 2 type: Transform - - uid: 28585 + - uid: 28660 components: - pos: -6.5,-2.5 parent: 2 type: Transform - - uid: 28586 + - uid: 28661 components: - rot: 3.141592653589793 rad pos: 2.5,-51.5 parent: 2 type: Transform - - uid: 28587 + - uid: 28662 components: - pos: 13.5,-2.5 parent: 2 type: Transform - - uid: 28588 + - uid: 28663 components: - pos: 12.5,-47.5 parent: 2 type: Transform - - uid: 28589 + - uid: 28664 components: - rot: 3.141592653589793 rad pos: 60.5,14.5 parent: 2 type: Transform - - uid: 28590 + - uid: 28665 components: - rot: 3.141592653589793 rad pos: 62.5,17.5 parent: 2 type: Transform - - uid: 28591 + - uid: 28666 components: - pos: 15.5,-3.5 parent: 2 type: Transform - - uid: 28592 + - uid: 28667 components: - pos: 12.5,-2.5 parent: 2 type: Transform - - uid: 28593 + - uid: 28668 components: - pos: -11.5,1.5 parent: 2 type: Transform - - uid: 28594 + - uid: 28669 components: - pos: 2.5,-28.5 parent: 2 type: Transform - - uid: 28595 + - uid: 28670 components: - pos: 11.5,-15.5 parent: 2 type: Transform - - uid: 28596 + - uid: 28671 components: - pos: 42.5,-57.5 parent: 2 type: Transform - - uid: 28597 + - uid: 28672 components: - rot: 1.5707963267948966 rad pos: -4.5,-62.5 parent: 2 type: Transform - - uid: 28598 + - uid: 28673 components: - rot: 3.141592653589793 rad pos: -12.5,-51.5 parent: 2 type: Transform - - uid: 28599 + - uid: 28674 components: - pos: 40.5,-27.5 parent: 2 type: Transform - - uid: 28600 + - uid: 28675 components: - pos: 13.5,-28.5 parent: 2 type: Transform - - uid: 28601 + - uid: 28676 components: - pos: -21.5,-81.5 parent: 2 type: Transform - - uid: 28602 + - uid: 28677 components: - pos: -4.5,13.5 parent: 2 type: Transform - - uid: 28603 + - uid: 28678 components: - rot: 3.141592653589793 rad pos: 23.5,10.5 parent: 2 type: Transform - - uid: 28604 + - uid: 28679 components: - rot: 3.141592653589793 rad pos: 22.5,9.5 parent: 2 type: Transform - - uid: 28605 + - uid: 28680 components: - rot: 3.141592653589793 rad pos: 60.5,17.5 parent: 2 type: Transform - - uid: 28606 + - uid: 28681 components: - pos: -6.5,-6.5 parent: 2 type: Transform - - uid: 28607 + - uid: 28682 components: - pos: 15.5,-6.5 parent: 2 type: Transform - - uid: 28608 + - uid: 28683 components: - pos: 15.5,-2.5 parent: 2 type: Transform - - uid: 28609 + - uid: 28684 components: - rot: 1.5707963267948966 rad pos: 27.5,-53.5 parent: 2 type: Transform - - uid: 28610 + - uid: 28685 components: - pos: 27.5,-56.5 parent: 2 type: Transform - - uid: 28611 + - uid: 28686 components: - pos: 27.5,-50.5 parent: 2 type: Transform - - uid: 28612 + - uid: 28687 components: - pos: 23.5,-50.5 parent: 2 type: Transform - - uid: 28613 + - uid: 28688 components: - pos: 23.5,-54.5 parent: 2 type: Transform - - uid: 28614 + - uid: 28689 components: - pos: 23.5,-52.5 parent: 2 type: Transform - - uid: 28615 + - uid: 28690 components: - pos: 23.5,-51.5 parent: 2 type: Transform - - uid: 28616 + - uid: 28691 components: - pos: 23.5,-49.5 parent: 2 type: Transform - - uid: 28617 + - uid: 28692 components: - rot: 3.141592653589793 rad pos: 22.5,-51.5 parent: 2 type: Transform - - uid: 28618 + - uid: 28693 components: - pos: -17.5,-31.5 parent: 2 type: Transform - - uid: 28619 + - uid: 28694 components: - rot: -1.5707963267948966 rad pos: 8.5,-3.5 parent: 2 type: Transform - - uid: 28620 + - uid: 28695 components: - pos: 19.5,-2.5 parent: 2 type: Transform - - uid: 28621 + - uid: 28696 components: - pos: 24.5,5.5 parent: 2 type: Transform - - uid: 28622 + - uid: 28697 components: - pos: 16.5,-7.5 parent: 2 type: Transform - - uid: 28623 + - uid: 28698 components: - pos: -9.5,-16.5 parent: 2 type: Transform - - uid: 28624 + - uid: 28699 components: - pos: 2.5,10.5 parent: 2 type: Transform - - uid: 28625 + - uid: 28700 components: - pos: 14.5,-44.5 parent: 2 type: Transform - - uid: 28626 + - uid: 28701 components: - rot: 3.141592653589793 rad pos: 33.5,-7.5 parent: 2 type: Transform - - uid: 28627 + - uid: 28702 components: - rot: 3.141592653589793 rad pos: 35.5,-7.5 parent: 2 type: Transform - - uid: 28628 + - uid: 28703 components: - rot: 3.141592653589793 rad pos: 31.5,-7.5 parent: 2 type: Transform - - uid: 28629 + - uid: 28704 components: - rot: 3.141592653589793 rad pos: 20.5,-7.5 parent: 2 type: Transform - - uid: 28630 + - uid: 28705 components: - rot: 3.141592653589793 rad pos: 22.5,-15.5 parent: 2 type: Transform - - uid: 28631 + - uid: 28706 components: - rot: 3.141592653589793 rad pos: 37.5,-16.5 parent: 2 type: Transform - - uid: 28632 + - uid: 28707 components: - rot: 3.141592653589793 rad pos: 37.5,-15.5 parent: 2 type: Transform - - uid: 28633 + - uid: 28708 components: - rot: 3.141592653589793 rad pos: 36.5,-15.5 parent: 2 type: Transform - - uid: 28634 + - uid: 28709 components: - pos: 59.5,0.5 parent: 2 type: Transform - - uid: 28635 + - uid: 28710 components: - rot: 3.141592653589793 rad pos: -12.5,9.5 parent: 2 type: Transform - - uid: 28636 + - uid: 28711 components: - pos: -27.5,10.5 parent: 2 type: Transform - - uid: 28637 + - uid: 28712 components: - pos: -21.5,9.5 parent: 2 type: Transform - - uid: 28638 + - uid: 28713 components: - pos: -14.5,-32.5 parent: 2 type: Transform - - uid: 28639 + - uid: 28714 components: - pos: -21.5,14.5 parent: 2 type: Transform - - uid: 28640 + - uid: 28715 components: - pos: -10.5,-7.5 parent: 2 type: Transform - - uid: 28641 + - uid: 28716 components: - pos: -11.5,-4.5 parent: 2 type: Transform - - uid: 28642 + - uid: 28717 components: - pos: -15.5,-7.5 parent: 2 type: Transform - - uid: 28643 + - uid: 28718 components: - pos: -17.5,-7.5 parent: 2 type: Transform - - uid: 28644 + - uid: 28719 components: - pos: -21.5,-8.5 parent: 2 type: Transform - - uid: 28645 + - uid: 28720 components: - pos: -22.5,-7.5 parent: 2 type: Transform - - uid: 28646 + - uid: 28721 components: - pos: -24.5,-7.5 parent: 2 type: Transform - - uid: 28647 + - uid: 28722 components: - pos: -17.5,-8.5 parent: 2 type: Transform - - uid: 28648 + - uid: 28723 components: - rot: -1.5707963267948966 rad pos: -23.5,-18.5 parent: 2 type: Transform - - uid: 28649 + - uid: 28724 components: - rot: 3.141592653589793 rad pos: 23.5,-15.5 parent: 2 type: Transform - - uid: 28650 + - uid: 28725 components: - rot: 3.141592653589793 rad pos: 23.5,-10.5 parent: 2 type: Transform - - uid: 28651 + - uid: 28726 components: - pos: 19.5,-3.5 parent: 2 type: Transform - - uid: 28652 + - uid: 28727 components: - rot: -1.5707963267948966 rad pos: 13.5,-9.5 parent: 2 type: Transform - - uid: 28653 + - uid: 28728 components: - pos: 1.5,10.5 parent: 2 type: Transform - - uid: 28654 + - uid: 28729 components: - pos: -11.5,-2.5 parent: 2 type: Transform - - uid: 28655 + - uid: 28730 components: - pos: -6.5,-7.5 parent: 2 type: Transform - - uid: 28656 + - uid: 28731 components: - pos: -8.5,-2.5 parent: 2 type: Transform - - uid: 28657 + - uid: 28732 components: - pos: -17.5,-9.5 parent: 2 type: Transform - - uid: 28658 + - uid: 28733 components: - pos: -17.5,-10.5 parent: 2 type: Transform - - uid: 28659 + - uid: 28734 components: - pos: -6.5,-17.5 parent: 2 type: Transform - - uid: 28660 + - uid: 28735 components: - rot: 1.5707963267948966 rad pos: -6.5,-20.5 parent: 2 type: Transform - - uid: 28661 + - uid: 28736 components: - pos: 35.5,-6.5 parent: 2 type: Transform - - uid: 28662 + - uid: 28737 components: - pos: 45.5,-0.5 parent: 2 type: Transform - - uid: 28663 + - uid: 28738 components: - pos: -2.5,-15.5 parent: 2 type: Transform - - uid: 28664 + - uid: 28739 components: - pos: -1.5,-15.5 parent: 2 type: Transform - - uid: 28665 + - uid: 28740 components: - pos: -6.5,-4.5 parent: 2 type: Transform - - uid: 28666 + - uid: 28741 components: - rot: 1.5707963267948966 rad pos: -6.5,-23.5 parent: 2 type: Transform - - uid: 28667 + - uid: 28742 components: - rot: 1.5707963267948966 rad pos: -6.5,-24.5 parent: 2 type: Transform - - uid: 28668 + - uid: 28743 components: - rot: 1.5707963267948966 rad pos: -10.5,-24.5 parent: 2 type: Transform - - uid: 28669 + - uid: 28744 components: - rot: 3.141592653589793 rad pos: 1.5,-44.5 parent: 2 type: Transform - - uid: 28670 + - uid: 28745 components: - rot: 3.141592653589793 rad pos: -10.5,-45.5 parent: 2 type: Transform - - uid: 28671 + - uid: 28746 components: - rot: 1.5707963267948966 rad pos: 29.5,-44.5 parent: 2 type: Transform - - uid: 28672 + - uid: 28747 components: - pos: -26.5,-8.5 parent: 2 type: Transform - - uid: 28673 + - uid: 28748 components: - rot: -1.5707963267948966 rad pos: 8.5,-44.5 parent: 2 type: Transform - - uid: 28674 + - uid: 28749 components: - pos: -8.5,-28.5 parent: 2 type: Transform - - uid: 28675 + - uid: 28750 components: - rot: 3.141592653589793 rad pos: 18.5,8.5 parent: 2 type: Transform - - uid: 28676 + - uid: 28751 components: - pos: 16.5,-44.5 parent: 2 type: Transform - - uid: 28677 + - uid: 28752 components: - pos: 16.5,-46.5 parent: 2 type: Transform - - uid: 28678 + - uid: 28753 components: - pos: 12.5,-28.5 parent: 2 type: Transform - - uid: 28679 + - uid: 28754 components: - pos: 11.5,-28.5 parent: 2 type: Transform - - uid: 28680 + - uid: 28755 components: - pos: 6.5,-28.5 parent: 2 type: Transform - - uid: 28681 + - uid: 28756 components: - pos: 12.5,-46.5 parent: 2 type: Transform - - uid: 28682 + - uid: 28757 components: - pos: 12.5,-45.5 parent: 2 type: Transform - - uid: 28683 + - uid: 28758 components: - pos: -9.5,-28.5 parent: 2 type: Transform - - uid: 28684 + - uid: 28759 components: - pos: 3.5,-12.5 parent: 2 type: Transform - - uid: 28685 + - uid: 28760 components: - pos: 9.5,-48.5 parent: 2 type: Transform - - uid: 28686 + - uid: 28761 components: - pos: 2.5,-44.5 parent: 2 type: Transform - - uid: 28687 + - uid: 28762 components: - pos: 8.5,-48.5 parent: 2 type: Transform - - uid: 28688 + - uid: 28763 components: - rot: 1.5707963267948966 rad pos: -13.5,-24.5 parent: 2 type: Transform - - uid: 28689 + - uid: 28764 components: - pos: -10.5,-34.5 parent: 2 type: Transform - - uid: 28690 + - uid: 28765 components: - pos: 35.5,-44.5 parent: 2 type: Transform - - uid: 28691 + - uid: 28766 components: - pos: 41.5,-49.5 parent: 2 type: Transform - - uid: 28692 + - uid: 28767 components: - pos: 39.5,-47.5 parent: 2 type: Transform - - uid: 28693 + - uid: 28768 components: - pos: 39.5,-44.5 parent: 2 type: Transform - - uid: 28694 + - uid: 28769 components: - pos: 41.5,-48.5 parent: 2 type: Transform - - uid: 28695 + - uid: 28770 components: - pos: -3.5,-51.5 parent: 2 type: Transform - - uid: 28696 + - uid: 28771 components: - pos: -5.5,-51.5 parent: 2 type: Transform - - uid: 28697 + - uid: 28772 components: - pos: -6.5,-51.5 parent: 2 type: Transform - - uid: 28698 + - uid: 28773 components: - pos: -2.5,-50.5 parent: 2 type: Transform - - uid: 28699 + - uid: 28774 components: - rot: 3.141592653589793 rad pos: 1.5,-45.5 parent: 2 type: Transform - - uid: 28700 + - uid: 28775 components: - pos: 7.5,-54.5 parent: 2 type: Transform - - uid: 28701 + - uid: 28776 components: - rot: -1.5707963267948966 rad pos: -14.5,-40.5 parent: 2 type: Transform - - uid: 28702 + - uid: 28777 components: - rot: -1.5707963267948966 rad pos: -12.5,-40.5 parent: 2 type: Transform - - uid: 28703 + - uid: 28778 components: - rot: 1.5707963267948966 rad pos: -4.5,-58.5 parent: 2 type: Transform - - uid: 28704 + - uid: 28779 components: - rot: 1.5707963267948966 rad pos: -1.5,-58.5 parent: 2 type: Transform - - uid: 28705 + - uid: 28780 components: - rot: 1.5707963267948966 rad pos: -7.5,-58.5 parent: 2 type: Transform - - uid: 28706 + - uid: 28781 components: - rot: 1.5707963267948966 rad pos: 4.5,-55.5 parent: 2 type: Transform - - uid: 28707 + - uid: 28782 components: - rot: 1.5707963267948966 rad pos: -10.5,-55.5 parent: 2 type: Transform - - uid: 28708 + - uid: 28783 components: - rot: 1.5707963267948966 rad pos: -13.5,-58.5 parent: 2 type: Transform - - uid: 28709 + - uid: 28784 components: - rot: 1.5707963267948966 rad pos: 4.5,-58.5 parent: 2 type: Transform - - uid: 28710 + - uid: 28785 components: - rot: 1.5707963267948966 rad pos: -1.5,-55.5 parent: 2 type: Transform - - uid: 28711 + - uid: 28786 components: - rot: 1.5707963267948966 rad pos: -4.5,-55.5 parent: 2 type: Transform - - uid: 28712 + - uid: 28787 components: - rot: 1.5707963267948966 rad pos: 1.5,-58.5 parent: 2 type: Transform - - uid: 28713 + - uid: 28788 components: - rot: 1.5707963267948966 rad pos: -7.5,-55.5 parent: 2 type: Transform - - uid: 28714 + - uid: 28789 components: - rot: 3.141592653589793 rad pos: -11.5,-51.5 parent: 2 type: Transform - - uid: 28715 + - uid: 28790 components: - rot: 3.141592653589793 rad pos: -14.5,-51.5 parent: 2 type: Transform - - uid: 28716 + - uid: 28791 components: - rot: 3.141592653589793 rad pos: -15.5,-51.5 parent: 2 type: Transform - - uid: 28717 + - uid: 28792 components: - pos: 9.5,-51.5 parent: 2 type: Transform - - uid: 28718 + - uid: 28793 components: - pos: 7.5,-52.5 parent: 2 type: Transform - - uid: 28719 + - uid: 28794 components: - pos: 9.5,-53.5 parent: 2 type: Transform - - uid: 28720 + - uid: 28795 components: - pos: 11.5,-50.5 parent: 2 type: Transform - - uid: 28721 + - uid: 28796 components: - pos: -17.5,-66.5 parent: 2 type: Transform - - uid: 28722 + - uid: 28797 components: - pos: -17.5,-62.5 parent: 2 type: Transform - - uid: 28723 + - uid: 28798 components: - pos: -16.5,-62.5 parent: 2 type: Transform - - uid: 28724 + - uid: 28799 components: - pos: -15.5,-62.5 parent: 2 type: Transform - - uid: 28725 + - uid: 28800 components: - pos: -14.5,-62.5 parent: 2 type: Transform - - uid: 28726 + - uid: 28801 components: - pos: -12.5,-62.5 parent: 2 type: Transform - - uid: 28727 + - uid: 28802 components: - pos: -11.5,-62.5 parent: 2 type: Transform - - uid: 28728 + - uid: 28803 components: - pos: 1.5,-66.5 parent: 2 type: Transform - - uid: 28729 + - uid: 28804 components: - pos: 1.5,-68.5 parent: 2 type: Transform - - uid: 28730 + - uid: 28805 components: - pos: 0.5,-68.5 parent: 2 type: Transform - - uid: 28731 + - uid: 28806 components: - pos: -0.5,-68.5 parent: 2 type: Transform - - uid: 28732 + - uid: 28807 components: - pos: -2.5,-68.5 parent: 2 type: Transform - - uid: 28733 + - uid: 28808 components: - pos: -3.5,-68.5 parent: 2 type: Transform - - uid: 28734 + - uid: 28809 components: - pos: -4.5,-68.5 parent: 2 type: Transform - - uid: 28735 + - uid: 28810 components: - pos: -4.5,-67.5 parent: 2 type: Transform - - uid: 28736 + - uid: 28811 components: - pos: 5.5,-62.5 parent: 2 type: Transform - - uid: 28737 + - uid: 28812 components: - pos: 5.5,-64.5 parent: 2 type: Transform - - uid: 28738 + - uid: 28813 components: - pos: 5.5,-65.5 parent: 2 type: Transform - - uid: 28739 + - uid: 28814 components: - pos: 5.5,-66.5 parent: 2 type: Transform - - uid: 28740 + - uid: 28815 components: - pos: 4.5,-66.5 parent: 2 type: Transform - - uid: 28741 + - uid: 28816 components: - pos: 3.5,-66.5 parent: 2 type: Transform - - uid: 28742 + - uid: 28817 components: - pos: 2.5,-66.5 parent: 2 type: Transform - - uid: 28743 + - uid: 28818 components: - rot: -1.5707963267948966 rad pos: -11.5,-68.5 parent: 2 type: Transform - - uid: 28744 + - uid: 28819 components: - rot: -1.5707963267948966 rad pos: -7.5,-68.5 parent: 2 type: Transform - - uid: 28745 + - uid: 28820 components: - pos: 56.5,-32.5 parent: 2 type: Transform - - uid: 28746 + - uid: 28821 components: - pos: 11.5,-54.5 parent: 2 type: Transform - - uid: 28747 + - uid: 28822 components: - pos: 10.5,-54.5 parent: 2 type: Transform - - uid: 28748 + - uid: 28823 components: - pos: -21.5,-62.5 parent: 2 type: Transform - - uid: 28749 + - uid: 28824 components: - pos: -20.5,-62.5 parent: 2 type: Transform - - uid: 28750 + - uid: 28825 components: - pos: -18.5,-62.5 parent: 2 type: Transform - - uid: 28751 + - uid: 28826 components: - pos: 12.5,-54.5 parent: 2 type: Transform - - uid: 28752 + - uid: 28827 components: - pos: 14.5,-56.5 parent: 2 type: Transform - - uid: 28753 + - uid: 28828 components: - pos: 14.5,-54.5 parent: 2 type: Transform - - uid: 28754 + - uid: 28829 components: - pos: 13.5,-60.5 parent: 2 type: Transform - - uid: 28755 + - uid: 28830 components: - pos: 13.5,-61.5 parent: 2 type: Transform - - uid: 28756 + - uid: 28831 components: - pos: 13.5,-62.5 parent: 2 type: Transform - - uid: 28757 + - uid: 28832 components: - pos: 13.5,-64.5 parent: 2 type: Transform - - uid: 28758 + - uid: 28833 components: - pos: 12.5,-65.5 parent: 2 type: Transform - - uid: 28759 + - uid: 28834 components: - pos: 10.5,-65.5 parent: 2 type: Transform - - uid: 28760 + - uid: 28835 components: - pos: 10.5,-66.5 parent: 2 type: Transform - - uid: 28761 + - uid: 28836 components: - pos: -8.5,-20.5 parent: 2 type: Transform - - uid: 28762 + - uid: 28837 components: - rot: -1.5707963267948966 rad pos: -10.5,-20.5 parent: 2 type: Transform - - uid: 28763 + - uid: 28838 components: - rot: -1.5707963267948966 rad pos: -9.5,-20.5 parent: 2 type: Transform - - uid: 28764 + - uid: 28839 components: - rot: -1.5707963267948966 rad pos: -7.5,-20.5 parent: 2 type: Transform - - uid: 28765 + - uid: 28840 components: - rot: -1.5707963267948966 rad pos: -14.5,-21.5 parent: 2 type: Transform - - uid: 28766 + - uid: 28841 components: - rot: -1.5707963267948966 rad pos: -14.5,-23.5 parent: 2 type: Transform - - uid: 28767 + - uid: 28842 components: - rot: -1.5707963267948966 rad pos: -14.5,-24.5 parent: 2 type: Transform - - uid: 28768 + - uid: 28843 components: - pos: 38.5,-52.5 parent: 2 type: Transform - - uid: 28769 + - uid: 28844 components: - pos: 37.5,-52.5 parent: 2 type: Transform - - uid: 28770 + - uid: 28845 components: - pos: -7.5,-16.5 parent: 2 type: Transform - - uid: 28771 + - uid: 28846 components: - pos: -6.5,-12.5 parent: 2 type: Transform - - uid: 28772 + - uid: 28847 components: - rot: -1.5707963267948966 rad pos: -14.5,-13.5 parent: 2 type: Transform - - uid: 28773 + - uid: 28848 components: - rot: -1.5707963267948966 rad pos: -15.5,-44.5 parent: 2 type: Transform - - uid: 28774 + - uid: 28849 components: - pos: 17.5,-30.5 parent: 2 type: Transform - - uid: 28775 + - uid: 28850 components: - pos: -21.5,-63.5 parent: 2 type: Transform - - uid: 28776 + - uid: 28851 components: - pos: -21.5,-65.5 parent: 2 type: Transform - - uid: 28777 + - uid: 28852 components: - pos: -26.5,-68.5 parent: 2 type: Transform - - uid: 28778 + - uid: 28853 components: - pos: -26.5,-74.5 parent: 2 type: Transform - - uid: 28779 + - uid: 28854 components: - pos: -25.5,-74.5 parent: 2 type: Transform - - uid: 28780 + - uid: 28855 components: - pos: -15.5,-70.5 parent: 2 type: Transform - - uid: 28781 + - uid: 28856 components: - pos: -16.5,-70.5 parent: 2 type: Transform - - uid: 28782 + - uid: 28857 components: - pos: -16.5,-73.5 parent: 2 type: Transform - - uid: 28783 + - uid: 28858 components: - pos: -21.5,-76.5 parent: 2 type: Transform - - uid: 28784 + - uid: 28859 components: - pos: -6.5,-72.5 parent: 2 type: Transform - - uid: 28785 + - uid: 28860 components: - pos: 36.5,-49.5 parent: 2 type: Transform - - uid: 28786 + - uid: 28861 components: - pos: -7.5,-72.5 parent: 2 type: Transform - - uid: 28787 + - uid: 28862 components: - pos: -10.5,-72.5 parent: 2 type: Transform - - uid: 28788 + - uid: 28863 components: - pos: -10.5,-73.5 parent: 2 type: Transform - - uid: 28789 + - uid: 28864 components: - pos: -9.5,-73.5 parent: 2 type: Transform - - uid: 28790 + - uid: 28865 components: - pos: -7.5,-73.5 parent: 2 type: Transform - - uid: 28791 + - uid: 28866 components: - pos: 3.5,-70.5 parent: 2 type: Transform - - uid: 28792 + - uid: 28867 components: - pos: 3.5,-68.5 parent: 2 type: Transform - - uid: 28793 + - uid: 28868 components: - pos: 4.5,-68.5 parent: 2 type: Transform - - uid: 28794 + - uid: 28869 components: - pos: 5.5,-68.5 parent: 2 type: Transform - - uid: 28795 + - uid: 28870 components: - pos: 7.5,-67.5 parent: 2 type: Transform - - uid: 28796 + - uid: 28871 components: - pos: 8.5,-66.5 parent: 2 type: Transform - - uid: 28797 + - uid: 28872 components: - pos: -21.5,-74.5 parent: 2 type: Transform - - uid: 28798 + - uid: 28873 components: - pos: -13.5,-69.5 parent: 2 type: Transform - - uid: 28799 + - uid: 28874 components: - pos: -21.5,-82.5 parent: 2 type: Transform - - uid: 28800 + - uid: 28875 components: - pos: -21.5,-83.5 parent: 2 type: Transform - - uid: 28801 + - uid: 28876 components: - pos: 10.5,-13.5 parent: 2 type: Transform - - uid: 28802 + - uid: 28877 components: - pos: -10.5,-63.5 parent: 2 type: Transform - - uid: 28803 + - uid: 28878 components: - pos: -10.5,-65.5 parent: 2 type: Transform - - uid: 28804 + - uid: 28879 components: - rot: 1.5707963267948966 rad pos: -4.5,-65.5 parent: 2 type: Transform - - uid: 28805 + - uid: 28880 components: - rot: 1.5707963267948966 rad pos: -4.5,-66.5 parent: 2 type: Transform - - uid: 28806 + - uid: 28881 components: - pos: 40.5,-52.5 parent: 2 type: Transform - - uid: 28807 + - uid: 28882 components: - rot: 1.5707963267948966 rad pos: -4.5,-64.5 parent: 2 type: Transform - - uid: 28808 + - uid: 28883 components: - rot: 1.5707963267948966 rad pos: -4.5,-63.5 parent: 2 type: Transform - - uid: 28809 + - uid: 28884 components: - pos: -6.5,-35.5 parent: 2 type: Transform - - uid: 28810 + - uid: 28885 components: - pos: -13.5,-32.5 parent: 2 type: Transform - - uid: 28811 + - uid: 28886 components: - pos: -25.5,-7.5 parent: 2 type: Transform - - uid: 28812 + - uid: 28887 components: - rot: 3.141592653589793 rad pos: 21.5,-9.5 parent: 2 type: Transform - - uid: 28813 + - uid: 28888 components: - pos: 12.5,-13.5 parent: 2 type: Transform - - uid: 28814 + - uid: 28889 components: - pos: 3.5,-72.5 parent: 2 type: Transform - - uid: 28815 + - uid: 28890 components: - pos: 10.5,-68.5 parent: 2 type: Transform - - uid: 28816 + - uid: 28891 components: - pos: 7.5,-51.5 parent: 2 type: Transform - - uid: 28817 + - uid: 28892 components: - rot: 3.141592653589793 rad pos: 16.5,-14.5 parent: 2 type: Transform - - uid: 28818 + - uid: 28893 components: - rot: 1.5707963267948966 rad pos: 1.5,-55.5 parent: 2 type: Transform - - uid: 28819 + - uid: 28894 components: - rot: 1.5707963267948966 rad pos: -10.5,-58.5 parent: 2 type: Transform - - uid: 28820 + - uid: 28895 components: - pos: -5.5,9.5 parent: 2 type: Transform - - uid: 28821 + - uid: 28896 components: - rot: -1.5707963267948966 rad pos: 13.5,-6.5 parent: 2 type: Transform - - uid: 28822 + - uid: 28897 components: - pos: 9.5,-28.5 parent: 2 type: Transform - - uid: 28823 + - uid: 28898 components: - pos: 5.5,-2.5 parent: 2 type: Transform - - uid: 28824 + - uid: 28899 components: - rot: 3.141592653589793 rad pos: -1.5,13.5 parent: 2 type: Transform - - uid: 28825 + - uid: 28900 components: - pos: -5.5,11.5 parent: 2 type: Transform - - uid: 28826 + - uid: 28901 components: - pos: 17.5,-7.5 parent: 2 type: Transform - - uid: 28827 + - uid: 28902 components: - pos: -9.5,13.5 parent: 2 type: Transform - - uid: 28828 + - uid: 28903 components: - pos: -5.5,12.5 parent: 2 type: Transform - - uid: 28829 + - uid: 28904 components: - pos: -11.5,5.5 parent: 2 type: Transform - - uid: 28830 + - uid: 28905 components: - pos: 13.5,-51.5 parent: 2 type: Transform - - uid: 28831 + - uid: 28906 components: - pos: 24.5,-3.5 parent: 2 type: Transform - - uid: 28832 + - uid: 28907 components: - pos: 15.5,-7.5 parent: 2 type: Transform - - uid: 28833 + - uid: 28908 components: - rot: -1.5707963267948966 rad pos: 31.5,-0.5 parent: 2 type: Transform - - uid: 28834 + - uid: 28909 components: - pos: 20.5,5.5 parent: 2 type: Transform - - uid: 28835 + - uid: 28910 components: - rot: -1.5707963267948966 rad pos: 31.5,2.5 parent: 2 type: Transform - - uid: 28836 + - uid: 28911 components: - pos: -1.5,0.5 parent: 2 type: Transform - - uid: 28837 + - uid: 28912 components: - pos: -1.5,1.5 parent: 2 type: Transform - - uid: 28838 + - uid: 28913 components: - pos: 15.5,5.5 parent: 2 type: Transform - - uid: 28839 + - uid: 28914 components: - pos: 30.5,-1.5 parent: 2 type: Transform - - uid: 28840 + - uid: 28915 components: - rot: 3.141592653589793 rad pos: 23.5,11.5 parent: 2 type: Transform - - uid: 28841 + - uid: 28916 components: - pos: 19.5,4.5 parent: 2 type: Transform - - uid: 28842 + - uid: 28917 components: - pos: -1.5,4.5 parent: 2 type: Transform - - uid: 28843 + - uid: 28918 components: - pos: 14.5,4.5 parent: 2 type: Transform - - uid: 28844 + - uid: 28919 components: - pos: -5.5,4.5 parent: 2 type: Transform - - uid: 28845 + - uid: 28920 components: - pos: 13.5,4.5 parent: 2 type: Transform - - uid: 28846 + - uid: 28921 components: - pos: 7.5,-3.5 parent: 2 type: Transform - - uid: 28847 + - uid: 28922 components: - pos: -13.5,-72.5 parent: 2 type: Transform - - uid: 28848 + - uid: 28923 components: - pos: 19.5,5.5 parent: 2 type: Transform - - uid: 28849 + - uid: 28924 components: - rot: 3.141592653589793 rad pos: 23.5,14.5 parent: 2 type: Transform - - uid: 28850 + - uid: 28925 components: - pos: -12.5,-28.5 parent: 2 type: Transform - - uid: 28851 + - uid: 28926 components: - pos: 15.5,-4.5 parent: 2 type: Transform - - uid: 28852 + - uid: 28927 components: - pos: 15.5,0.5 parent: 2 type: Transform - - uid: 28853 + - uid: 28928 components: - rot: 3.141592653589793 rad pos: -1.5,12.5 parent: 2 type: Transform - - uid: 28854 + - uid: 28929 components: - pos: 37.5,-38.5 parent: 2 type: Transform - - uid: 28855 + - uid: 28930 components: - rot: -1.5707963267948966 rad pos: -12.5,-76.5 parent: 2 type: Transform - - uid: 28856 + - uid: 28931 components: - rot: -1.5707963267948966 rad pos: -4.5,-76.5 parent: 2 type: Transform - - uid: 28857 + - uid: 28932 components: - rot: -1.5707963267948966 rad pos: -3.5,-79.5 parent: 2 type: Transform - - uid: 28858 + - uid: 28933 components: - rot: -1.5707963267948966 rad pos: -2.5,-76.5 parent: 2 type: Transform - - uid: 28859 + - uid: 28934 components: - rot: 1.5707963267948966 rad pos: 27.5,-52.5 parent: 2 type: Transform - - uid: 28860 + - uid: 28935 components: - pos: 8.5,4.5 parent: 2 type: Transform - - uid: 28861 + - uid: 28936 components: - pos: 37.5,-32.5 parent: 2 type: Transform - - uid: 28862 + - uid: 28937 components: - pos: 39.5,-27.5 parent: 2 type: Transform - - uid: 28863 + - uid: 28938 components: - pos: 39.5,-31.5 parent: 2 type: Transform - - uid: 28864 + - uid: 28939 components: - rot: -1.5707963267948966 rad pos: -17.5,-40.5 parent: 2 type: Transform - - uid: 28865 + - uid: 28940 components: - pos: -17.5,-39.5 parent: 2 type: Transform - - uid: 28866 + - uid: 28941 components: - rot: -1.5707963267948966 rad pos: -3.5,-77.5 parent: 2 type: Transform - - uid: 28867 + - uid: 28942 components: - rot: -1.5707963267948966 rad pos: -2.5,-81.5 parent: 2 type: Transform - - uid: 28868 + - uid: 28943 components: - rot: -1.5707963267948966 rad pos: -2.5,-80.5 parent: 2 type: Transform - - uid: 28869 + - uid: 28944 components: - rot: -1.5707963267948966 rad pos: -3.5,-80.5 parent: 2 type: Transform - - uid: 28870 + - uid: 28945 components: - rot: -1.5707963267948966 rad pos: -6.5,-76.5 parent: 2 type: Transform - - uid: 28871 + - uid: 28946 components: - pos: 7.5,4.5 parent: 2 type: Transform - - uid: 28872 + - uid: 28947 components: - rot: 1.5707963267948966 rad pos: -6.5,-22.5 parent: 2 type: Transform - - uid: 28873 + - uid: 28948 components: - pos: 38.5,-31.5 parent: 2 type: Transform - - uid: 28874 + - uid: 28949 components: - pos: -6.5,-18.5 parent: 2 type: Transform - - uid: 28875 + - uid: 28950 components: - pos: -6.5,-15.5 parent: 2 type: Transform - - uid: 28876 + - uid: 28951 components: - rot: 3.141592653589793 rad pos: -10.5,-47.5 parent: 2 type: Transform - - uid: 28877 + - uid: 28952 components: - rot: 1.5707963267948966 rad pos: -7.5,-24.5 parent: 2 type: Transform - - uid: 28878 + - uid: 28953 components: - pos: -4.5,9.5 parent: 2 type: Transform - - uid: 28879 + - uid: 28954 components: - rot: 1.5707963267948966 rad pos: 28.5,-44.5 parent: 2 type: Transform - - uid: 28880 + - uid: 28955 components: - pos: -21.5,-15.5 parent: 2 type: Transform - - uid: 28881 + - uid: 28956 components: - rot: -1.5707963267948966 rad pos: -27.5,-18.5 parent: 2 type: Transform - - uid: 28882 + - uid: 28957 components: - pos: -26.5,-15.5 parent: 2 type: Transform - - uid: 28883 + - uid: 28958 components: - pos: 19.5,23.5 parent: 2 type: Transform - - uid: 28884 + - uid: 28959 components: - pos: 27.5,-44.5 parent: 2 type: Transform - - uid: 28885 + - uid: 28960 components: - pos: -6.5,-30.5 parent: 2 type: Transform - - uid: 28886 + - uid: 28961 components: - pos: -6.5,-31.5 parent: 2 type: Transform - - uid: 28887 + - uid: 28962 components: - rot: -1.5707963267948966 rad pos: 10.5,-44.5 parent: 2 type: Transform - - uid: 28888 + - uid: 28963 components: - rot: -1.5707963267948966 rad pos: 11.5,-44.5 parent: 2 type: Transform - - uid: 28889 + - uid: 28964 components: - pos: 12.5,-48.5 parent: 2 type: Transform - - uid: 28890 + - uid: 28965 components: - pos: 9.5,-15.5 parent: 2 type: Transform - - uid: 28891 + - uid: 28966 components: - pos: 7.5,-15.5 parent: 2 type: Transform - - uid: 28892 + - uid: 28967 components: - pos: 6.5,-15.5 parent: 2 type: Transform - - uid: 28893 + - uid: 28968 components: - pos: 5.5,-15.5 parent: 2 type: Transform - - uid: 28894 + - uid: 28969 components: - pos: -10.5,-28.5 parent: 2 type: Transform - - uid: 28895 + - uid: 28970 components: - rot: 1.5707963267948966 rad pos: 7.5,-9.5 parent: 2 type: Transform - - uid: 28896 + - uid: 28971 components: - rot: 1.5707963267948966 rad pos: 7.5,-8.5 parent: 2 type: Transform - - uid: 28897 + - uid: 28972 components: - pos: 8.5,-40.5 parent: 2 type: Transform - - uid: 28898 + - uid: 28973 components: - rot: 3.141592653589793 rad pos: -10.5,-48.5 parent: 2 type: Transform - - uid: 28899 + - uid: 28974 components: - rot: 3.141592653589793 rad pos: 1.5,-49.5 parent: 2 type: Transform - - uid: 28900 + - uid: 28975 components: - rot: 3.141592653589793 rad pos: 1.5,-50.5 parent: 2 type: Transform - - uid: 28901 + - uid: 28976 components: - pos: -2.5,-51.5 parent: 2 type: Transform - - uid: 28902 + - uid: 28977 components: - rot: -1.5707963267948966 rad pos: -15.5,-40.5 parent: 2 type: Transform - - uid: 28903 + - uid: 28978 components: - rot: -1.5707963267948966 rad pos: -13.5,-40.5 parent: 2 type: Transform - - uid: 28904 + - uid: 28979 components: - rot: -1.5707963267948966 rad pos: 30.5,5.5 parent: 2 type: Transform - - uid: 28905 + - uid: 28980 components: - pos: 3.5,-15.5 parent: 2 type: Transform - - uid: 28906 + - uid: 28981 components: - pos: 14.5,-11.5 parent: 2 type: Transform - - uid: 28907 + - uid: 28982 components: - pos: 8.5,-13.5 parent: 2 type: Transform - - uid: 28908 + - uid: 28983 components: - rot: -1.5707963267948966 rad pos: 13.5,-5.5 parent: 2 type: Transform - - uid: 28909 + - uid: 28984 components: - pos: 8.5,-28.5 parent: 2 type: Transform - - uid: 28910 + - uid: 28985 components: - pos: 16.5,-12.5 parent: 2 type: Transform - - uid: 28911 + - uid: 28986 components: - pos: 16.5,-11.5 parent: 2 type: Transform - - uid: 28912 + - uid: 28987 components: - pos: 16.5,-10.5 parent: 2 type: Transform - - uid: 28913 + - uid: 28988 components: - pos: 16.5,-9.5 parent: 2 type: Transform - - uid: 28914 + - uid: 28989 components: - pos: 17.5,-9.5 parent: 2 type: Transform - - uid: 28915 + - uid: 28990 components: - pos: 0.5,-15.5 parent: 2 type: Transform - - uid: 28916 + - uid: 28991 components: - pos: 1.5,-15.5 parent: 2 type: Transform - - uid: 28917 + - uid: 28992 components: - pos: 11.5,-13.5 parent: 2 type: Transform - - uid: 28918 + - uid: 28993 components: - pos: 2.5,-15.5 parent: 2 type: Transform - - uid: 28919 + - uid: 28994 components: - pos: 14.5,-10.5 parent: 2 type: Transform - - uid: 28920 + - uid: 28995 components: - pos: 14.5,-9.5 parent: 2 type: Transform - - uid: 28921 + - uid: 28996 components: - pos: 19.5,-9.5 parent: 2 type: Transform - - uid: 28922 + - uid: 28997 components: - rot: 3.141592653589793 rad pos: 19.5,9.5 parent: 2 type: Transform - - uid: 28923 + - uid: 28998 components: - rot: 3.141592653589793 rad pos: 19.5,11.5 parent: 2 type: Transform - - uid: 28924 + - uid: 28999 components: - rot: 3.141592653589793 rad pos: 19.5,13.5 parent: 2 type: Transform - - uid: 28925 + - uid: 29000 components: - pos: -42.5,-29.5 parent: 2 type: Transform - - uid: 28926 + - uid: 29001 components: - pos: -37.5,-29.5 parent: 2 type: Transform - - uid: 28927 + - uid: 29002 components: - pos: 13.5,-13.5 parent: 2 type: Transform - - uid: 28928 + - uid: 29003 components: - pos: 14.5,-13.5 parent: 2 type: Transform - - uid: 28929 + - uid: 29004 components: - rot: 3.141592653589793 rad pos: 47.5,37.5 parent: 2 type: Transform - - uid: 28930 + - uid: 29005 components: - rot: 3.141592653589793 rad pos: 19.5,12.5 parent: 2 type: Transform - - uid: 28931 + - uid: 29006 components: - rot: 3.141592653589793 rad pos: 20.5,9.5 parent: 2 type: Transform - - uid: 28932 + - uid: 29007 components: - pos: 18.5,-9.5 parent: 2 type: Transform - - uid: 28933 + - uid: 29008 components: - rot: -1.5707963267948966 rad pos: 13.5,-8.5 parent: 2 type: Transform - - uid: 28934 + - uid: 29009 components: - pos: -5.5,10.5 parent: 2 type: Transform - - uid: 28935 + - uid: 29010 components: - rot: 3.141592653589793 rad pos: -1.5,11.5 parent: 2 type: Transform - - uid: 28936 + - uid: 29011 components: - pos: 4.5,4.5 parent: 2 type: Transform - - uid: 28937 + - uid: 29012 components: - pos: -1.5,6.5 parent: 2 type: Transform - - uid: 28938 + - uid: 29013 components: - rot: 3.141592653589793 rad pos: -1.5,10.5 parent: 2 type: Transform - - uid: 28939 + - uid: 29014 components: - pos: 7.5,5.5 parent: 2 type: Transform - - uid: 28940 + - uid: 29015 components: - rot: -1.5707963267948966 rad pos: -8.5,57.5 parent: 2 type: Transform - - uid: 28941 + - uid: 29016 components: - rot: 3.141592653589793 rad pos: 28.5,-7.5 parent: 2 type: Transform - - uid: 28942 + - uid: 29017 components: - pos: -3.5,-70.5 parent: 2 type: Transform - - uid: 28943 + - uid: 29018 components: - pos: 8.5,-50.5 parent: 2 type: Transform - - uid: 28944 + - uid: 29019 components: - pos: -17.5,-37.5 parent: 2 type: Transform - - uid: 28945 + - uid: 29020 components: - pos: -26.5,34.5 parent: 2 type: Transform - - uid: 28946 + - uid: 29021 components: - pos: -28.5,37.5 parent: 2 type: Transform - - uid: 28947 + - uid: 29022 components: - pos: 3.5,4.5 parent: 2 type: Transform - - uid: 28948 + - uid: 29023 components: - rot: 3.141592653589793 rad pos: 22.5,-9.5 parent: 2 type: Transform - - uid: 28949 + - uid: 29024 components: - pos: -9.5,4.5 parent: 2 type: Transform - - uid: 28950 + - uid: 29025 components: - pos: -9.5,-34.5 parent: 2 type: Transform - - uid: 28951 + - uid: 29026 components: - rot: -1.5707963267948966 rad pos: -16.5,-40.5 parent: 2 type: Transform - - uid: 28952 + - uid: 29027 components: - rot: -1.5707963267948966 rad pos: -7.5,-40.5 parent: 2 type: Transform - - uid: 28953 + - uid: 29028 components: - pos: -7.5,-28.5 parent: 2 type: Transform - - uid: 28954 + - uid: 29029 components: - pos: 15.5,1.5 parent: 2 type: Transform - - uid: 28955 + - uid: 29030 components: - rot: 1.5707963267948966 rad pos: -15.5,-24.5 parent: 2 type: Transform - - uid: 28956 + - uid: 29031 components: - pos: -17.5,-16.5 parent: 2 type: Transform - - uid: 28957 + - uid: 29032 components: - pos: 42.5,-6.5 parent: 2 type: Transform - - uid: 28958 + - uid: 29033 components: - pos: -17.5,-32.5 parent: 2 type: Transform - - uid: 28959 + - uid: 29034 components: - pos: -25.5,42.5 parent: 2 type: Transform - - uid: 28960 + - uid: 29035 components: - pos: -28.5,36.5 parent: 2 type: Transform - - uid: 28961 + - uid: 29036 components: - pos: -4.5,-70.5 parent: 2 type: Transform - - uid: 28962 + - uid: 29037 components: - pos: -4.5,-71.5 parent: 2 type: Transform - - uid: 28963 + - uid: 29038 components: - pos: 39.5,-52.5 parent: 2 type: Transform - - uid: 28964 + - uid: 29039 components: - pos: -0.5,4.5 parent: 2 type: Transform - - uid: 28965 + - uid: 29040 components: - pos: -4.5,-72.5 parent: 2 type: Transform - - uid: 28966 + - uid: 29041 components: - pos: 16.5,-49.5 parent: 2 type: Transform - - uid: 28967 + - uid: 29042 components: - pos: 16.5,-50.5 parent: 2 type: Transform - - uid: 28968 + - uid: 29043 components: - pos: 14.5,-55.5 parent: 2 type: Transform - - uid: 28969 + - uid: 29044 components: - pos: -17.5,-17.5 parent: 2 type: Transform - - uid: 28970 + - uid: 29045 components: - rot: 3.141592653589793 rad pos: 32.5,-7.5 parent: 2 type: Transform - - uid: 28971 + - uid: 29046 components: - pos: -21.5,-24.5 parent: 2 type: Transform - - uid: 28972 + - uid: 29047 components: - pos: 41.5,-57.5 parent: 2 type: Transform - - uid: 28973 + - uid: 29048 components: - rot: 1.5707963267948966 rad pos: -12.5,-24.5 parent: 2 type: Transform - - uid: 28974 + - uid: 29049 components: - pos: 36.5,-0.5 parent: 2 type: Transform - - uid: 28975 + - uid: 29050 components: - pos: 9.5,-54.5 parent: 2 type: Transform - - uid: 28976 + - uid: 29051 components: - pos: -17.5,-15.5 parent: 2 type: Transform - - uid: 28977 + - uid: 29052 components: - pos: 37.5,-40.5 parent: 2 type: Transform - - uid: 28978 + - uid: 29053 components: - pos: 38.5,-40.5 parent: 2 type: Transform - - uid: 28979 + - uid: 29054 components: - pos: 40.5,-40.5 parent: 2 type: Transform - - uid: 28980 + - uid: 29055 components: - pos: 27.5,-46.5 parent: 2 type: Transform - - uid: 28981 + - uid: 29056 components: - rot: 1.5707963267948966 rad pos: 27.5,-49.5 parent: 2 type: Transform - - uid: 28982 + - uid: 29057 components: - pos: 39.5,-40.5 parent: 2 type: Transform - - uid: 28983 + - uid: 29058 components: - pos: -11.5,4.5 parent: 2 type: Transform - - uid: 28984 + - uid: 29059 components: - pos: -2.5,13.5 parent: 2 type: Transform - - uid: 28985 + - uid: 29060 components: - rot: 3.141592653589793 rad pos: 23.5,12.5 parent: 2 type: Transform - - uid: 28986 + - uid: 29061 components: - rot: 3.141592653589793 rad pos: 23.5,13.5 parent: 2 type: Transform - - uid: 28987 + - uid: 29062 components: - pos: 28.5,5.5 parent: 2 type: Transform - - uid: 28988 + - uid: 29063 components: - rot: 3.141592653589793 rad pos: 3.5,10.5 parent: 2 type: Transform - - uid: 28989 + - uid: 29064 components: - rot: -1.5707963267948966 rad pos: 31.5,4.5 parent: 2 type: Transform - - uid: 28990 + - uid: 29065 components: - rot: -1.5707963267948966 rad pos: 31.5,-1.5 parent: 2 type: Transform - - uid: 28991 + - uid: 29066 components: - pos: -29.5,-76.5 parent: 2 type: Transform - - uid: 28992 + - uid: 29067 components: - pos: -11.5,11.5 parent: 2 type: Transform - - uid: 28993 + - uid: 29068 components: - pos: -2.5,4.5 parent: 2 type: Transform - - uid: 28994 + - uid: 29069 components: - rot: 3.141592653589793 rad pos: 61.5,14.5 parent: 2 type: Transform - - uid: 28995 + - uid: 29070 components: - rot: -1.5707963267948966 rad pos: 19.5,20.5 parent: 2 type: Transform - - uid: 28996 + - uid: 29071 components: - pos: 6.5,4.5 parent: 2 type: Transform - - uid: 28997 + - uid: 29072 components: - rot: -1.5707963267948966 rad pos: -18.5,38.5 parent: 2 type: Transform - - uid: 28998 + - uid: 29073 components: - pos: -17.5,-35.5 parent: 2 type: Transform - - uid: 28999 + - uid: 29074 components: - rot: 1.5707963267948966 rad pos: -14.5,-28.5 parent: 2 type: Transform - - uid: 29000 + - uid: 29075 components: - pos: -10.5,-62.5 parent: 2 type: Transform - - uid: 29001 + - uid: 29076 components: - pos: -10.5,-64.5 parent: 2 type: Transform - - uid: 29002 + - uid: 29077 components: - pos: -2.5,-70.5 parent: 2 type: Transform - - uid: 29003 + - uid: 29078 components: - pos: -1.5,-70.5 parent: 2 type: Transform - - uid: 29004 + - uid: 29079 components: - rot: 3.141592653589793 rad pos: 29.5,-7.5 parent: 2 type: Transform - - uid: 29005 + - uid: 29080 components: - pos: 13.5,-53.5 parent: 2 type: Transform - - uid: 29006 + - uid: 29081 components: - rot: -1.5707963267948966 rad pos: -10.5,57.5 parent: 2 type: Transform - - uid: 29007 + - uid: 29082 components: - pos: -5.5,-72.5 parent: 2 type: Transform - - uid: 29008 + - uid: 29083 components: - pos: 0.5,-70.5 parent: 2 type: Transform - - uid: 29009 + - uid: 29084 components: - pos: 1.5,-70.5 parent: 2 type: Transform - - uid: 29010 + - uid: 29085 components: - pos: 13.5,-46.5 parent: 2 type: Transform - - uid: 29011 + - uid: 29086 components: - pos: 42.5,-54.5 parent: 2 type: Transform - - uid: 29012 + - uid: 29087 components: - pos: -1.5,-11.5 parent: 2 type: Transform - - uid: 29013 + - uid: 29088 components: - pos: 13.5,-44.5 parent: 2 type: Transform - - uid: 29014 + - uid: 29089 components: - pos: 17.5,-44.5 parent: 2 type: Transform - - uid: 29015 + - uid: 29090 components: - pos: -28.5,-76.5 parent: 2 type: Transform - - uid: 29016 + - uid: 29091 components: - pos: -21.5,-80.5 parent: 2 type: Transform - - uid: 29017 + - uid: 29092 components: - pos: -11.5,10.5 parent: 2 type: Transform - - uid: 29018 + - uid: 29093 components: - pos: -0.5,-70.5 parent: 2 type: Transform - - uid: 29019 + - uid: 29094 components: - pos: -27.5,-76.5 parent: 2 type: Transform - - uid: 29020 + - uid: 29095 components: - pos: -20.5,-65.5 parent: 2 type: Transform - - uid: 29021 + - uid: 29096 components: - pos: -14.5,-72.5 parent: 2 type: Transform - - uid: 29022 + - uid: 29097 components: - pos: -17.5,-74.5 parent: 2 type: Transform - - uid: 29023 + - uid: 29098 components: - pos: -21.5,-79.5 parent: 2 type: Transform - - uid: 29024 + - uid: 29099 components: - pos: -21.5,-78.5 parent: 2 type: Transform - - uid: 29025 + - uid: 29100 components: - pos: -21.5,-77.5 parent: 2 type: Transform - - uid: 29026 + - uid: 29101 components: - pos: -26.5,-76.5 parent: 2 type: Transform - - uid: 29027 + - uid: 29102 components: - pos: -26.5,-75.5 parent: 2 type: Transform - - uid: 29028 + - uid: 29103 components: - rot: 3.141592653589793 rad pos: -10.5,-51.5 parent: 2 type: Transform - - uid: 29029 + - uid: 29104 components: - rot: 3.141592653589793 rad pos: -16.5,-51.5 parent: 2 type: Transform - - uid: 29030 + - uid: 29105 components: - pos: 16.5,-48.5 parent: 2 type: Transform - - uid: 29031 + - uid: 29106 components: - pos: -17.5,-67.5 parent: 2 type: Transform - - uid: 29032 + - uid: 29107 components: - pos: 10.5,-15.5 parent: 2 type: Transform - - uid: 29033 + - uid: 29108 components: - pos: 12.5,4.5 parent: 2 type: Transform - - uid: 29034 + - uid: 29109 components: - rot: 3.141592653589793 rad pos: 23.5,-7.5 parent: 2 type: Transform - - uid: 29035 + - uid: 29110 components: - pos: -32.5,-70.5 parent: 2 type: Transform - - uid: 29036 + - uid: 29111 components: - rot: 3.141592653589793 rad pos: 30.5,-7.5 parent: 2 type: Transform - - uid: 29037 + - uid: 29112 components: - pos: -27.5,-72.5 parent: 2 type: Transform - - uid: 29038 + - uid: 29113 components: - pos: 13.5,-65.5 parent: 2 type: Transform - - uid: 29039 + - uid: 29114 components: - pos: 10.5,-63.5 parent: 2 type: Transform - - uid: 29040 + - uid: 29115 components: - rot: 3.141592653589793 rad pos: 23.5,-8.5 parent: 2 type: Transform - - uid: 29041 + - uid: 29116 components: - pos: -6.5,-50.5 parent: 2 type: Transform - - uid: 29042 + - uid: 29117 components: - pos: -13.5,-70.5 parent: 2 type: Transform - - uid: 29043 + - uid: 29118 components: - pos: 14.5,-12.5 parent: 2 type: Transform - - uid: 29044 + - uid: 29119 components: - pos: 29.5,5.5 parent: 2 type: Transform - - uid: 29045 + - uid: 29120 components: - rot: -1.5707963267948966 rad pos: 31.5,5.5 parent: 2 type: Transform - - uid: 29046 + - uid: 29121 components: - rot: 1.5707963267948966 rad pos: 27.5,-48.5 parent: 2 type: Transform - - uid: 29047 + - uid: 29122 components: - pos: 27.5,-45.5 parent: 2 type: Transform - - uid: 29048 + - uid: 29123 components: - rot: 3.141592653589793 rad pos: 20.5,15.5 parent: 2 type: Transform - - uid: 29049 + - uid: 29124 components: - pos: -17.5,-13.5 parent: 2 type: Transform - - uid: 29050 + - uid: 29125 components: - pos: 43.5,-6.5 parent: 2 type: Transform - - uid: 29051 + - uid: 29126 components: - pos: 37.5,-54.5 parent: 2 type: Transform - - uid: 29052 + - uid: 29127 components: - pos: 17.5,-27.5 parent: 2 type: Transform - - uid: 29053 + - uid: 29128 components: - pos: -25.5,43.5 parent: 2 type: Transform - - uid: 29054 + - uid: 29129 components: - pos: -25.5,44.5 parent: 2 type: Transform - - uid: 29055 + - uid: 29130 components: - pos: -25.5,46.5 parent: 2 type: Transform - - uid: 29056 + - uid: 29131 components: - pos: -27.5,36.5 parent: 2 type: Transform - - uid: 29057 + - uid: 29132 components: - rot: 3.141592653589793 rad pos: 27.5,-7.5 parent: 2 type: Transform - - uid: 29058 + - uid: 29133 components: - rot: 3.141592653589793 rad pos: 21.5,-51.5 parent: 2 type: Transform - - uid: 29059 + - uid: 29134 components: - pos: -6.5,-39.5 parent: 2 type: Transform - - uid: 29060 + - uid: 29135 components: - rot: 1.5707963267948966 rad pos: -16.5,-24.5 parent: 2 type: Transform - - uid: 29061 + - uid: 29136 components: - pos: -17.5,-24.5 parent: 2 type: Transform - - uid: 29062 + - uid: 29137 components: - pos: 42.5,-55.5 parent: 2 type: Transform - - uid: 29063 + - uid: 29138 components: - pos: -26.5,32.5 parent: 2 type: Transform - - uid: 29064 + - uid: 29139 components: - pos: 37.5,-55.5 parent: 2 type: Transform - - uid: 29065 + - uid: 29140 components: - rot: 3.141592653589793 rad pos: 20.5,-51.5 parent: 2 type: Transform - - uid: 29066 + - uid: 29141 components: - pos: 15.5,-5.5 parent: 2 type: Transform - - uid: 29067 + - uid: 29142 components: - rot: 3.141592653589793 rad pos: 27.5,-9.5 parent: 2 type: Transform - - uid: 29068 + - uid: 29143 components: - rot: 3.141592653589793 rad pos: 21.5,-7.5 parent: 2 type: Transform - - uid: 29069 + - uid: 29144 components: - rot: -1.5707963267948966 rad pos: 6.5,-44.5 parent: 2 type: Transform - - uid: 29070 + - uid: 29145 components: - pos: 1.5,-72.5 parent: 2 type: Transform - - uid: 29071 + - uid: 29146 components: - rot: -1.5707963267948966 rad pos: 29.5,-2.5 parent: 2 type: Transform - - uid: 29072 + - uid: 29147 components: - rot: 3.141592653589793 rad pos: 34.5,-7.5 parent: 2 type: Transform - - uid: 29073 + - uid: 29148 components: - pos: 42.5,-53.5 parent: 2 type: Transform - - uid: 29074 + - uid: 29149 components: - rot: 3.141592653589793 rad pos: -10.5,-44.5 parent: 2 type: Transform - - uid: 29075 + - uid: 29150 components: - rot: 3.141592653589793 rad pos: 7.5,10.5 parent: 2 type: Transform - - uid: 29076 + - uid: 29151 components: - rot: -1.5707963267948966 rad pos: -11.5,-76.5 parent: 2 type: Transform - - uid: 29077 + - uid: 29152 components: - rot: 3.141592653589793 rad pos: 60.5,12.5 parent: 2 type: Transform - - uid: 29078 + - uid: 29153 components: - pos: 20.5,-3.5 parent: 2 type: Transform - - uid: 29079 + - uid: 29154 components: - pos: 2.5,-72.5 parent: 2 type: Transform - - uid: 29080 + - uid: 29155 components: - pos: 11.5,-68.5 parent: 2 type: Transform - - uid: 29081 + - uid: 29156 components: - pos: -18.5,-65.5 parent: 2 type: Transform - - uid: 29082 + - uid: 29157 components: - pos: 7.5,-58.5 parent: 2 type: Transform - - uid: 29083 + - uid: 29158 components: - rot: 1.5707963267948966 rad pos: 32.5,-44.5 parent: 2 type: Transform - - uid: 29084 + - uid: 29159 components: - rot: 1.5707963267948966 rad pos: 33.5,-44.5 parent: 2 type: Transform - - uid: 29085 + - uid: 29160 components: - pos: -2.5,-16.5 parent: 2 type: Transform - - uid: 29086 + - uid: 29161 components: - pos: -11.5,-28.5 parent: 2 type: Transform - - uid: 29087 + - uid: 29162 components: - pos: -7.5,-35.5 parent: 2 type: Transform - - uid: 29088 + - uid: 29163 components: - rot: 3.141592653589793 rad pos: 19.5,-7.5 parent: 2 type: Transform - - uid: 29089 + - uid: 29164 components: - pos: 29.5,-3.5 parent: 2 type: Transform - - uid: 29090 + - uid: 29165 components: - rot: -1.5707963267948966 rad pos: 31.5,-3.5 parent: 2 type: Transform - - uid: 29091 + - uid: 29166 components: - rot: 1.5707963267948966 rad pos: 27.5,-57.5 parent: 2 type: Transform - - uid: 29092 + - uid: 29167 components: - pos: -17.5,-33.5 parent: 2 type: Transform - - uid: 29093 + - uid: 29168 components: - pos: 35.5,-0.5 parent: 2 type: Transform - - uid: 29094 + - uid: 29169 components: - rot: -1.5707963267948966 rad pos: -11.5,14.5 parent: 2 type: Transform - - uid: 29095 + - uid: 29170 components: - pos: -23.5,36.5 parent: 2 type: Transform - - uid: 29096 + - uid: 29171 components: - pos: -23.5,37.5 parent: 2 type: Transform - - uid: 29097 + - uid: 29172 components: - pos: -23.5,39.5 parent: 2 type: Transform - - uid: 29098 + - uid: 29173 components: - pos: -5.5,13.5 parent: 2 type: Transform - - uid: 29099 + - uid: 29174 components: - pos: -10.5,-66.5 parent: 2 type: Transform - - uid: 29100 + - uid: 29175 components: - rot: -1.5707963267948966 rad pos: 21.5,19.5 parent: 2 type: Transform - - uid: 29101 + - uid: 29176 components: - pos: 20.5,-48.5 parent: 2 type: Transform - - uid: 29102 + - uid: 29177 components: - rot: -1.5707963267948966 rad pos: -3.5,-76.5 parent: 2 type: Transform - - uid: 29103 + - uid: 29178 components: - pos: -3.5,-73.5 parent: 2 type: Transform - - uid: 29104 + - uid: 29179 components: - pos: -2.5,-72.5 parent: 2 type: Transform - - uid: 29105 + - uid: 29180 components: - rot: 1.5707963267948966 rad pos: 32.5,-23.5 parent: 2 type: Transform - - uid: 29106 + - uid: 29181 components: - pos: 57.5,-64.5 parent: 2 type: Transform - - uid: 29107 + - uid: 29182 components: - pos: -14.5,-16.5 parent: 2 type: Transform - - uid: 29108 + - uid: 29183 components: - pos: -14.5,-19.5 parent: 2 type: Transform - - uid: 29109 + - uid: 29184 components: - pos: -17.5,-19.5 parent: 2 type: Transform - - uid: 29110 + - uid: 29185 components: - pos: -17.5,-18.5 parent: 2 type: Transform - - uid: 29111 + - uid: 29186 components: - pos: -17.5,-36.5 parent: 2 type: Transform - - uid: 29112 + - uid: 29187 components: - rot: -1.5707963267948966 rad pos: -7.5,-39.5 parent: 2 type: Transform - - uid: 29113 + - uid: 29188 components: - pos: 13.5,-30.5 parent: 2 type: Transform - - uid: 29114 + - uid: 29189 components: - pos: 16.5,-47.5 parent: 2 type: Transform - - uid: 29115 + - uid: 29190 components: - rot: 3.141592653589793 rad pos: 17.5,-51.5 parent: 2 type: Transform - - uid: 29116 + - uid: 29191 components: - pos: -14.5,-17.5 parent: 2 type: Transform - - uid: 29117 + - uid: 29192 components: - pos: 9.5,4.5 parent: 2 type: Transform - - uid: 29118 + - uid: 29193 components: - pos: 37.5,-29.5 parent: 2 type: Transform - - uid: 29119 + - uid: 29194 components: - pos: -23.5,-68.5 parent: 2 type: Transform - - uid: 29120 + - uid: 29195 components: - pos: 11.5,-56.5 parent: 2 type: Transform - - uid: 29121 + - uid: 29196 components: - pos: -7.5,-33.5 parent: 2 type: Transform - - uid: 29122 + - uid: 29197 components: - rot: 3.141592653589793 rad pos: -12.5,-32.5 parent: 2 type: Transform - - uid: 29123 + - uid: 29198 components: - pos: -12.5,-31.5 parent: 2 type: Transform - - uid: 29124 + - uid: 29199 components: - pos: -13.5,-34.5 parent: 2 type: Transform - - uid: 29125 + - uid: 29200 components: - pos: -13.5,-35.5 parent: 2 type: Transform - - uid: 29126 + - uid: 29201 components: - pos: -13.5,-36.5 parent: 2 type: Transform - - uid: 29127 + - uid: 29202 components: - pos: -13.5,-37.5 parent: 2 type: Transform - - uid: 29128 + - uid: 29203 components: - pos: -13.5,-39.5 parent: 2 type: Transform - - uid: 29129 + - uid: 29204 components: - pos: -16.5,-36.5 parent: 2 type: Transform - - uid: 29130 + - uid: 29205 components: - pos: -15.5,-36.5 parent: 2 type: Transform - - uid: 29131 + - uid: 29206 components: - pos: -14.5,-36.5 parent: 2 type: Transform - - uid: 29132 + - uid: 29207 components: - pos: -7.5,-32.5 parent: 2 type: Transform - - uid: 29133 + - uid: 29208 components: - pos: -7.5,-31.5 parent: 2 type: Transform - - uid: 29134 + - uid: 29209 components: - pos: -10.5,-31.5 parent: 2 type: Transform - - uid: 29135 + - uid: 29210 components: - pos: -9.5,-31.5 parent: 2 type: Transform - - uid: 29136 + - uid: 29211 components: - pos: -8.5,-31.5 parent: 2 type: Transform - - uid: 29137 + - uid: 29212 components: - pos: 10.5,-28.5 parent: 2 type: Transform - - uid: 29138 + - uid: 29213 components: - rot: 3.141592653589793 rad pos: 17.5,8.5 parent: 2 type: Transform - - uid: 29139 + - uid: 29214 components: - pos: 23.5,-47.5 parent: 2 type: Transform - - uid: 29140 + - uid: 29215 components: - rot: -1.5707963267948966 rad pos: 49.5,-36.5 parent: 2 type: Transform - - uid: 29141 + - uid: 29216 components: - rot: -1.5707963267948966 rad pos: 43.5,-34.5 parent: 2 type: Transform - - uid: 29142 + - uid: 29217 components: - rot: 1.5707963267948966 rad pos: 36.5,-9.5 parent: 2 type: Transform - - uid: 29143 + - uid: 29218 components: - rot: 1.5707963267948966 rad pos: 36.5,-10.5 parent: 2 type: Transform - - uid: 29144 + - uid: 29219 components: - rot: 1.5707963267948966 rad pos: 36.5,-11.5 parent: 2 type: Transform - - uid: 29145 + - uid: 29220 components: - rot: 1.5707963267948966 rad pos: 36.5,-7.5 parent: 2 type: Transform - - uid: 29146 + - uid: 29221 components: - pos: -6.5,-8.5 parent: 2 type: Transform - - uid: 29147 + - uid: 29222 components: - pos: -6.5,-10.5 parent: 2 type: Transform - - uid: 29148 + - uid: 29223 components: - pos: -17.5,-11.5 parent: 2 type: Transform - - uid: 29149 + - uid: 29224 components: - pos: -17.5,-12.5 parent: 2 type: Transform - - uid: 29150 + - uid: 29225 components: - pos: -11.5,0.5 parent: 2 type: Transform - - uid: 29151 + - uid: 29226 components: - pos: -13.5,14.5 parent: 2 type: Transform - - uid: 29152 + - uid: 29227 components: - pos: -15.5,14.5 parent: 2 type: Transform - - uid: 29153 + - uid: 29228 components: - pos: -21.5,13.5 parent: 2 type: Transform - - uid: 29154 + - uid: 29229 components: - pos: -21.5,10.5 parent: 2 type: Transform - - uid: 29155 + - uid: 29230 components: - pos: -17.5,13.5 parent: 2 type: Transform - - uid: 29156 + - uid: 29231 components: - pos: -17.5,12.5 parent: 2 type: Transform - - uid: 29157 + - uid: 29232 components: - pos: -17.5,14.5 parent: 2 type: Transform - - uid: 29158 + - uid: 29233 components: - pos: -16.5,14.5 parent: 2 type: Transform - - uid: 29159 + - uid: 29234 components: - pos: -15.5,-32.5 parent: 2 type: Transform - - uid: 29160 + - uid: 29235 components: - pos: -9.5,-30.5 parent: 2 type: Transform - - uid: 29161 + - uid: 29236 components: - pos: -15.5,-30.5 parent: 2 type: Transform - - uid: 29162 + - uid: 29237 components: - pos: -14.5,-30.5 parent: 2 type: Transform - - uid: 29163 + - uid: 29238 components: - pos: -14.5,-29.5 parent: 2 type: Transform - - uid: 29164 + - uid: 29239 components: - rot: -1.5707963267948966 rad pos: -15.5,16.5 parent: 2 type: Transform - - uid: 29165 + - uid: 29240 components: - rot: -1.5707963267948966 rad pos: -14.5,16.5 parent: 2 type: Transform - - uid: 29166 + - uid: 29241 components: - rot: -1.5707963267948966 rad pos: -13.5,16.5 parent: 2 type: Transform - - uid: 29167 + - uid: 29242 components: - rot: -1.5707963267948966 rad pos: -12.5,16.5 parent: 2 type: Transform - - uid: 29168 + - uid: 29243 components: - rot: -1.5707963267948966 rad pos: -11.5,16.5 parent: 2 type: Transform - - uid: 29169 + - uid: 29244 components: - rot: -1.5707963267948966 rad pos: -11.5,17.5 parent: 2 type: Transform - - uid: 29170 + - uid: 29245 components: - rot: -1.5707963267948966 rad pos: -9.5,17.5 parent: 2 type: Transform - - uid: 29171 + - uid: 29246 components: - pos: -15.5,-11.5 parent: 2 type: Transform - - uid: 29172 + - uid: 29247 components: - pos: -8.5,-16.5 parent: 2 type: Transform - - uid: 29173 + - uid: 29248 components: - pos: 23.5,-45.5 parent: 2 type: Transform - - uid: 29174 + - uid: 29249 components: - pos: 23.5,-44.5 parent: 2 type: Transform - - uid: 29175 + - uid: 29250 components: - pos: 23.5,-48.5 parent: 2 type: Transform - - uid: 29176 + - uid: 29251 components: - pos: 15.5,-46.5 parent: 2 type: Transform - - uid: 29177 + - uid: 29252 components: - pos: 18.5,-45.5 parent: 2 type: Transform - - uid: 29178 + - uid: 29253 components: - pos: 18.5,-46.5 parent: 2 type: Transform - - uid: 29179 + - uid: 29254 components: - pos: 18.5,-47.5 parent: 2 type: Transform - - uid: 29180 + - uid: 29255 components: - rot: -1.5707963267948966 rad pos: 31.5,0.5 parent: 2 type: Transform - - uid: 29181 + - uid: 29256 components: - pos: 61.5,7.5 parent: 2 type: Transform - - uid: 29182 + - uid: 29257 components: - pos: 61.5,5.5 parent: 2 type: Transform - - uid: 29183 + - uid: 29258 components: - pos: 64.5,1.5 parent: 2 type: Transform - - uid: 29184 + - uid: 29259 components: - pos: 65.5,0.5 parent: 2 type: Transform - - uid: 29185 + - uid: 29260 components: - pos: 60.5,0.5 parent: 2 type: Transform - - uid: 29186 + - uid: 29261 components: - pos: 17.5,30.5 parent: 2 type: Transform - - uid: 29187 + - uid: 29262 components: - rot: 1.5707963267948966 rad pos: 55.5,54.5 parent: 2 type: Transform - - uid: 29188 + - uid: 29263 components: - rot: 1.5707963267948966 rad pos: 56.5,54.5 parent: 2 type: Transform - - uid: 29189 + - uid: 29264 components: - rot: -1.5707963267948966 rad pos: -13.5,47.5 parent: 2 type: Transform - - uid: 29190 + - uid: 29265 components: - rot: -1.5707963267948966 rad pos: -13.5,48.5 parent: 2 type: Transform - - uid: 29191 + - uid: 29266 components: - pos: 47.5,34.5 parent: 2 type: Transform - - uid: 29192 + - uid: 29267 components: - pos: 47.5,33.5 parent: 2 type: Transform - - uid: 29193 + - uid: 29268 components: - pos: 47.5,31.5 parent: 2 type: Transform - - uid: 29194 + - uid: 29269 components: - pos: -9.5,47.5 parent: 2 type: Transform - - uid: 29195 + - uid: 29270 components: - pos: -10.5,47.5 parent: 2 type: Transform - - uid: 29196 + - uid: 29271 components: - rot: -1.5707963267948966 rad pos: -10.5,48.5 parent: 2 type: Transform - - uid: 29197 + - uid: 29272 components: - pos: -3.5,20.5 parent: 2 type: Transform - - uid: 29198 + - uid: 29273 components: - pos: -6.5,20.5 parent: 2 type: Transform - - uid: 29199 + - uid: 29274 components: - pos: -7.5,20.5 parent: 2 type: Transform - - uid: 29200 + - uid: 29275 components: - pos: -9.5,19.5 parent: 2 type: Transform - - uid: 29201 + - uid: 29276 components: - pos: -9.5,20.5 parent: 2 type: Transform - - uid: 29202 + - uid: 29277 components: - pos: -11.5,20.5 parent: 2 type: Transform - - uid: 29203 + - uid: 29278 components: - pos: -11.5,19.5 parent: 2 type: Transform - - uid: 29204 + - uid: 29279 components: - pos: 33.5,23.5 parent: 2 type: Transform - - uid: 29205 + - uid: 29280 components: - pos: 34.5,23.5 parent: 2 type: Transform - - uid: 29206 + - uid: 29281 components: - pos: 33.5,17.5 parent: 2 type: Transform - - uid: 29207 + - uid: 29282 components: - rot: 3.141592653589793 rad pos: 51.5,14.5 parent: 2 type: Transform - - uid: 29208 + - uid: 29283 components: - rot: 3.141592653589793 rad pos: 55.5,14.5 parent: 2 type: Transform - - uid: 29209 + - uid: 29284 components: - rot: 3.141592653589793 rad pos: 55.5,10.5 parent: 2 type: Transform - - uid: 29210 + - uid: 29285 components: - rot: 3.141592653589793 rad pos: 51.5,10.5 parent: 2 type: Transform - - uid: 29211 + - uid: 29286 components: - pos: 61.5,6.5 parent: 2 type: Transform - - uid: 29212 + - uid: 29287 components: - pos: 43.5,18.5 parent: 2 type: Transform - - uid: 29213 + - uid: 29288 components: - pos: 43.5,21.5 parent: 2 type: Transform - - uid: 29214 + - uid: 29289 components: - pos: 44.5,-0.5 parent: 2 type: Transform - - uid: 29215 + - uid: 29290 components: - pos: 47.5,-0.5 parent: 2 type: Transform - - uid: 29216 + - uid: 29291 components: - pos: 48.5,24.5 parent: 2 type: Transform - - uid: 29217 + - uid: 29292 components: - pos: 48.5,23.5 parent: 2 type: Transform - - uid: 29218 + - uid: 29293 components: - pos: 48.5,22.5 parent: 2 type: Transform - - uid: 29219 + - uid: 29294 components: - pos: 51.5,24.5 parent: 2 type: Transform - - uid: 29220 + - uid: 29295 components: - pos: 51.5,23.5 parent: 2 type: Transform - - uid: 29221 + - uid: 29296 components: - pos: 51.5,22.5 parent: 2 type: Transform - - uid: 29222 + - uid: 29297 components: - pos: 54.5,24.5 parent: 2 type: Transform - - uid: 29223 + - uid: 29298 components: - pos: 54.5,23.5 parent: 2 type: Transform - - uid: 29224 + - uid: 29299 components: - pos: 54.5,22.5 parent: 2 type: Transform - - uid: 29225 + - uid: 29300 components: - pos: 57.5,24.5 parent: 2 type: Transform - - uid: 29226 + - uid: 29301 components: - pos: 57.5,23.5 parent: 2 type: Transform - - uid: 29227 + - uid: 29302 components: - pos: 57.5,22.5 parent: 2 type: Transform - - uid: 29228 + - uid: 29303 components: - pos: 60.5,24.5 parent: 2 type: Transform - - uid: 29229 + - uid: 29304 components: - pos: 60.5,23.5 parent: 2 type: Transform - - uid: 29230 + - uid: 29305 components: - pos: 60.5,22.5 parent: 2 type: Transform - - uid: 29231 + - uid: 29306 components: - pos: 62.5,20.5 parent: 2 type: Transform - - uid: 29232 + - uid: 29307 components: - pos: 61.5,20.5 parent: 2 type: Transform - - uid: 29233 + - uid: 29308 components: - pos: 60.5,20.5 parent: 2 type: Transform - - uid: 29234 + - uid: 29309 components: - rot: 1.5707963267948966 rad pos: 46.5,27.5 parent: 2 type: Transform - - uid: 29235 + - uid: 29310 components: - rot: 1.5707963267948966 rad pos: 45.5,27.5 parent: 2 type: Transform - - uid: 29236 + - uid: 29311 components: - rot: 1.5707963267948966 rad pos: 44.5,27.5 parent: 2 type: Transform - - uid: 29237 + - uid: 29312 components: - rot: 1.5707963267948966 rad pos: 53.5,54.5 parent: 2 type: Transform - - uid: 29238 + - uid: 29313 components: - pos: 62.5,24.5 parent: 2 type: Transform - - uid: 29239 + - uid: 29314 components: - pos: 62.5,23.5 parent: 2 type: Transform - - uid: 29240 + - uid: 29315 components: - rot: 1.5707963267948966 rad pos: 48.5,11.5 parent: 2 type: Transform - - uid: 29241 + - uid: 29316 components: - rot: 1.5707963267948966 rad pos: 48.5,17.5 parent: 2 type: Transform - - uid: 29242 + - uid: 29317 components: - rot: 1.5707963267948966 rad pos: 58.5,17.5 parent: 2 type: Transform - - uid: 29243 + - uid: 29318 components: - rot: 1.5707963267948966 rad pos: 58.5,11.5 parent: 2 type: Transform - - uid: 29244 + - uid: 29319 components: - rot: 3.141592653589793 rad pos: 61.5,12.5 parent: 2 type: Transform - - uid: 29245 + - uid: 29320 components: - rot: 3.141592653589793 rad pos: 61.5,11.5 parent: 2 type: Transform - - uid: 29246 + - uid: 29321 components: - rot: 3.141592653589793 rad pos: 61.5,10.5 parent: 2 type: Transform - - uid: 29247 + - uid: 29322 components: - rot: 3.141592653589793 rad pos: 61.5,9.5 parent: 2 type: Transform - - uid: 29248 + - uid: 29323 components: - rot: 3.141592653589793 rad pos: 61.5,8.5 parent: 2 type: Transform - - uid: 29249 + - uid: 29324 components: - rot: 3.141592653589793 rad pos: 62.5,8.5 parent: 2 type: Transform - - uid: 29250 + - uid: 29325 components: - rot: 3.141592653589793 rad pos: 63.5,8.5 parent: 2 type: Transform - - uid: 29251 + - uid: 29326 components: - rot: 3.141592653589793 rad pos: 63.5,12.5 parent: 2 type: Transform - - uid: 29252 + - uid: 29327 components: - rot: 3.141592653589793 rad pos: 63.5,10.5 parent: 2 type: Transform - - uid: 29253 + - uid: 29328 components: - rot: -1.5707963267948966 rad pos: 51.5,12.5 parent: 2 type: Transform - - uid: 29254 + - uid: 29329 components: - pos: 58.5,-0.5 parent: 2 type: Transform - - uid: 29255 + - uid: 29330 components: - pos: 61.5,0.5 parent: 2 type: Transform - - uid: 29256 + - uid: 29331 components: - pos: 62.5,0.5 parent: 2 type: Transform - - uid: 29257 + - uid: 29332 components: - rot: 1.5707963267948966 rad pos: 55.5,2.5 parent: 2 type: Transform - - uid: 29258 + - uid: 29333 components: - rot: 1.5707963267948966 rad pos: 55.5,1.5 parent: 2 type: Transform - - uid: 29259 + - uid: 29334 components: - rot: 1.5707963267948966 rad pos: 55.5,0.5 parent: 2 type: Transform - - uid: 29260 + - uid: 29335 components: - rot: 1.5707963267948966 rad pos: 55.5,-1.5 parent: 2 type: Transform - - uid: 29261 + - uid: 29336 components: - rot: 1.5707963267948966 rad pos: 49.5,-0.5 parent: 2 type: Transform - - uid: 29262 + - uid: 29337 components: - rot: 1.5707963267948966 rad pos: 49.5,-2.5 parent: 2 type: Transform - - uid: 29263 + - uid: 29338 components: - rot: 1.5707963267948966 rad pos: 49.5,-1.5 parent: 2 type: Transform - - uid: 29264 + - uid: 29339 components: - rot: 1.5707963267948966 rad pos: 50.5,-2.5 parent: 2 type: Transform - - uid: 29265 + - uid: 29340 components: - rot: 1.5707963267948966 rad pos: 50.5,-3.5 parent: 2 type: Transform - - uid: 29266 + - uid: 29341 components: - rot: 1.5707963267948966 rad pos: 55.5,-2.5 parent: 2 type: Transform - - uid: 29267 + - uid: 29342 components: - rot: 1.5707963267948966 rad pos: 54.5,-2.5 parent: 2 type: Transform - - uid: 29268 + - uid: 29343 components: - rot: 1.5707963267948966 rad pos: 54.5,-3.5 parent: 2 type: Transform - - uid: 29269 + - uid: 29344 components: - rot: 1.5707963267948966 rad pos: 50.5,-4.5 parent: 2 type: Transform - - uid: 29270 + - uid: 29345 components: - rot: 1.5707963267948966 rad pos: 49.5,-4.5 parent: 2 type: Transform - - uid: 29271 + - uid: 29346 components: - rot: 1.5707963267948966 rad pos: 48.5,-4.5 parent: 2 type: Transform - - uid: 29272 + - uid: 29347 components: - rot: 1.5707963267948966 rad pos: 47.5,-4.5 parent: 2 type: Transform - - uid: 29273 + - uid: 29348 components: - rot: 1.5707963267948966 rad pos: 46.5,-4.5 parent: 2 type: Transform - - uid: 29274 + - uid: 29349 components: - rot: -1.5707963267948966 rad pos: 45.5,-2.5 parent: 2 type: Transform - - uid: 29275 + - uid: 29350 components: - pos: 49.5,-5.5 parent: 2 type: Transform - - uid: 29276 + - uid: 29351 components: - pos: 49.5,-6.5 parent: 2 type: Transform - - uid: 29277 + - uid: 29352 components: - pos: 49.5,-10.5 parent: 2 type: Transform - - uid: 29278 + - uid: 29353 components: - pos: 48.5,-10.5 parent: 2 type: Transform - - uid: 29279 + - uid: 29354 components: - rot: 1.5707963267948966 rad pos: 54.5,-4.5 parent: 2 type: Transform - - uid: 29280 + - uid: 29355 components: - rot: 1.5707963267948966 rad pos: 55.5,-4.5 parent: 2 type: Transform - - uid: 29281 + - uid: 29356 components: - rot: 1.5707963267948966 rad pos: 56.5,-4.5 parent: 2 type: Transform - - uid: 29282 + - uid: 29357 components: - rot: 1.5707963267948966 rad pos: 58.5,-4.5 parent: 2 type: Transform - - uid: 29283 + - uid: 29358 components: - pos: 19.5,-48.5 parent: 2 type: Transform - - uid: 29284 + - uid: 29359 components: - pos: 18.5,-48.5 parent: 2 type: Transform - - uid: 29285 + - uid: 29360 components: - rot: -1.5707963267948966 rad pos: 45.5,-4.5 parent: 2 type: Transform - - uid: 29286 + - uid: 29361 components: - rot: -1.5707963267948966 rad pos: 40.5,-2.5 parent: 2 type: Transform - - uid: 29287 + - uid: 29362 components: - rot: -1.5707963267948966 rad pos: 40.5,-3.5 parent: 2 type: Transform - - uid: 29288 + - uid: 29363 components: - rot: -1.5707963267948966 rad pos: 45.5,-1.5 parent: 2 type: Transform - - uid: 29289 + - uid: 29364 components: - rot: -1.5707963267948966 rad pos: 40.5,-5.5 parent: 2 type: Transform - - uid: 29290 + - uid: 29365 components: - rot: -1.5707963267948966 rad pos: 39.5,-6.5 parent: 2 type: Transform - - uid: 29291 + - uid: 29366 components: - rot: -1.5707963267948966 rad pos: 45.5,-5.5 parent: 2 type: Transform - - uid: 29292 + - uid: 29367 components: - rot: -1.5707963267948966 rad pos: 37.5,-6.5 parent: 2 type: Transform - - uid: 29293 + - uid: 29368 components: - rot: -1.5707963267948966 rad pos: 37.5,-7.5 parent: 2 type: Transform - - uid: 29294 + - uid: 29369 components: - rot: -1.5707963267948966 rad pos: 45.5,-3.5 parent: 2 type: Transform - - uid: 29295 + - uid: 29370 components: - pos: 40.5,-6.5 parent: 2 type: Transform - - uid: 29296 + - uid: 29371 components: - pos: -14.5,-18.5 parent: 2 type: Transform - - uid: 29297 + - uid: 29372 components: - pos: 24.5,-54.5 parent: 2 type: Transform - - uid: 29298 + - uid: 29373 components: - pos: -17.5,-21.5 parent: 2 type: Transform - - uid: 29299 + - uid: 29374 components: - pos: 55.5,-7.5 parent: 2 type: Transform - - uid: 29300 + - uid: 29375 components: - pos: 49.5,-3.5 parent: 2 type: Transform - - uid: 29301 + - uid: 29376 components: - pos: 58.5,0.5 parent: 2 type: Transform - - uid: 29302 + - uid: 29377 components: - pos: 58.5,-1.5 parent: 2 type: Transform - - uid: 29303 + - uid: 29378 components: - pos: 58.5,-2.5 parent: 2 type: Transform - - uid: 29304 + - uid: 29379 components: - pos: 57.5,-2.5 parent: 2 type: Transform - - uid: 29305 + - uid: 29380 components: - pos: 59.5,-4.5 parent: 2 type: Transform - - uid: 29306 + - uid: 29381 components: - pos: 48.5,-9.5 parent: 2 type: Transform - - uid: 29307 + - uid: 29382 components: - pos: 48.5,-6.5 parent: 2 type: Transform - - uid: 29308 + - uid: 29383 components: - pos: 48.5,-7.5 parent: 2 type: Transform - - uid: 29309 + - uid: 29384 components: - pos: 6.5,-17.5 parent: 2 type: Transform - - uid: 29310 + - uid: 29385 components: - rot: 1.5707963267948966 rad pos: 66.5,-6.5 parent: 2 type: Transform - - uid: 29311 + - uid: 29386 components: - rot: 1.5707963267948966 rad pos: 66.5,-12.5 parent: 2 type: Transform - - uid: 29312 + - uid: 29387 components: - rot: 1.5707963267948966 rad pos: 66.5,-10.5 parent: 2 type: Transform - - uid: 29313 + - uid: 29388 components: - pos: 65.5,-4.5 parent: 2 type: Transform - - uid: 29314 + - uid: 29389 components: - pos: 63.5,-4.5 parent: 2 type: Transform - - uid: 29315 + - uid: 29390 components: - pos: 61.5,-4.5 parent: 2 type: Transform - - uid: 29316 + - uid: 29391 components: - rot: -1.5707963267948966 rad pos: 62.5,-4.5 parent: 2 type: Transform - - uid: 29317 + - uid: 29392 components: - pos: 53.5,-14.5 parent: 2 type: Transform - - uid: 29318 + - uid: 29393 components: - pos: 61.5,-14.5 parent: 2 type: Transform - - uid: 29319 + - uid: 29394 components: - pos: 60.5,-14.5 parent: 2 type: Transform - - uid: 29320 + - uid: 29395 components: - pos: 59.5,-7.5 parent: 2 type: Transform - - uid: 29321 + - uid: 29396 components: - pos: 58.5,-7.5 parent: 2 type: Transform - - uid: 29322 + - uid: 29397 components: - pos: 57.5,-7.5 parent: 2 type: Transform - - uid: 29323 + - uid: 29398 components: - pos: 56.5,-7.5 parent: 2 type: Transform - - uid: 29324 + - uid: 29399 components: - pos: 59.5,-9.5 parent: 2 type: Transform - - uid: 29325 + - uid: 29400 components: - pos: 58.5,-9.5 parent: 2 type: Transform - - uid: 29326 + - uid: 29401 components: - pos: 57.5,-9.5 parent: 2 type: Transform - - uid: 29327 + - uid: 29402 components: - pos: 56.5,-9.5 parent: 2 type: Transform - - uid: 29328 + - uid: 29403 components: - pos: 55.5,-9.5 parent: 2 type: Transform - - uid: 29329 + - uid: 29404 components: - pos: 55.5,-8.5 parent: 2 type: Transform - - uid: 29330 + - uid: 29405 components: - rot: 3.141592653589793 rad pos: 58.5,-3.5 parent: 2 type: Transform - - uid: 29331 + - uid: 29406 components: - pos: 60.5,-29.5 parent: 2 type: Transform - - uid: 29332 + - uid: 29407 components: - pos: 60.5,-30.5 parent: 2 type: Transform - - uid: 29333 + - uid: 29408 components: - pos: 49.5,-11.5 parent: 2 type: Transform - - uid: 29334 + - uid: 29409 components: - pos: 49.5,-12.5 parent: 2 type: Transform - - uid: 29335 + - uid: 29410 components: - pos: 50.5,-12.5 parent: 2 type: Transform - - uid: 29336 + - uid: 29411 components: - pos: 35.5,-11.5 parent: 2 type: Transform - - uid: 29337 + - uid: 29412 components: - pos: 37.5,-9.5 parent: 2 type: Transform - - uid: 29338 + - uid: 29413 components: - pos: 38.5,-9.5 parent: 2 type: Transform - - uid: 29339 + - uid: 29414 components: - pos: 39.5,-9.5 parent: 2 type: Transform - - uid: 29340 + - uid: 29415 components: - pos: 39.5,-8.5 parent: 2 type: Transform - - uid: 29341 + - uid: 29416 components: - pos: 41.5,-6.5 parent: 2 type: Transform - - uid: 29342 + - uid: 29417 components: - pos: 41.5,-7.5 parent: 2 type: Transform - - uid: 29343 + - uid: 29418 components: - pos: 41.5,-8.5 parent: 2 type: Transform - - uid: 29344 + - uid: 29419 components: - pos: 41.5,-9.5 parent: 2 type: Transform - - uid: 29345 + - uid: 29420 components: - pos: 41.5,-10.5 parent: 2 type: Transform - - uid: 29346 + - uid: 29421 components: - pos: 39.5,-10.5 parent: 2 type: Transform - - uid: 29347 + - uid: 29422 components: - pos: 39.5,-11.5 parent: 2 type: Transform - - uid: 29348 + - uid: 29423 components: - pos: 37.5,-11.5 parent: 2 type: Transform - - uid: 29349 + - uid: 29424 components: - pos: 37.5,-12.5 parent: 2 type: Transform - - uid: 29350 + - uid: 29425 components: - pos: 37.5,-14.5 parent: 2 type: Transform - - uid: 29351 + - uid: 29426 components: - pos: 45.5,-6.5 parent: 2 type: Transform - - uid: 29352 + - uid: 29427 components: - pos: 45.5,-7.5 parent: 2 type: Transform - - uid: 29353 + - uid: 29428 components: - pos: 45.5,-8.5 parent: 2 type: Transform - - uid: 29354 + - uid: 29429 components: - pos: 45.5,-9.5 parent: 2 type: Transform - - uid: 29355 + - uid: 29430 components: - pos: 43.5,-9.5 parent: 2 type: Transform - - uid: 29356 + - uid: 29431 components: - pos: 45.5,-10.5 parent: 2 type: Transform - - uid: 29357 + - uid: 29432 components: - pos: 45.5,-12.5 parent: 2 type: Transform - - uid: 29358 + - uid: 29433 components: - pos: 44.5,-12.5 parent: 2 type: Transform - - uid: 29359 + - uid: 29434 components: - pos: 42.5,-12.5 parent: 2 type: Transform - - uid: 29360 + - uid: 29435 components: - pos: 41.5,-12.5 parent: 2 type: Transform - - uid: 29361 + - uid: 29436 components: - pos: 41.5,-13.5 parent: 2 type: Transform - - uid: 29362 + - uid: 29437 components: - pos: 40.5,-13.5 parent: 2 type: Transform - - uid: 29363 + - uid: 29438 components: - pos: 39.5,-13.5 parent: 2 type: Transform - - uid: 29364 + - uid: 29439 components: - pos: 46.5,-12.5 parent: 2 type: Transform - - uid: 29365 + - uid: 29440 components: - pos: 47.5,-12.5 parent: 2 type: Transform - - uid: 29366 + - uid: 29441 components: - pos: 47.5,-11.5 parent: 2 type: Transform - - uid: 29367 + - uid: 29442 components: - pos: 47.5,-10.5 parent: 2 type: Transform - - uid: 29368 + - uid: 29443 components: - pos: 46.5,-6.5 parent: 2 type: Transform - - uid: 29369 + - uid: 29444 components: - pos: 69.5,-35.5 parent: 2 type: Transform - - uid: 29370 + - uid: 29445 components: - pos: 66.5,-36.5 parent: 2 type: Transform - - uid: 29371 + - uid: 29446 components: - pos: 58.5,-40.5 parent: 2 type: Transform - - uid: 29372 + - uid: 29447 components: - pos: 58.5,-41.5 parent: 2 type: Transform - - uid: 29373 + - uid: 29448 components: - pos: 58.5,-42.5 parent: 2 type: Transform - - uid: 29374 + - uid: 29449 components: - pos: 65.5,-36.5 parent: 2 type: Transform - - uid: 29375 + - uid: 29450 components: - rot: 1.5707963267948966 rad pos: 60.5,-38.5 parent: 2 type: Transform - - uid: 29376 + - uid: 29451 components: - rot: 1.5707963267948966 rad pos: 60.5,-39.5 parent: 2 type: Transform - - uid: 29377 + - uid: 29452 components: - pos: 60.5,-41.5 parent: 2 type: Transform - - uid: 29378 + - uid: 29453 components: - pos: 41.5,-40.5 parent: 2 type: Transform - - uid: 29379 + - uid: 29454 components: - rot: -1.5707963267948966 rad pos: 44.5,-34.5 parent: 2 type: Transform - - uid: 29380 + - uid: 29455 components: - rot: -1.5707963267948966 rad pos: 47.5,-34.5 parent: 2 type: Transform - - uid: 29381 + - uid: 29456 components: - rot: -1.5707963267948966 rad pos: 42.5,-34.5 parent: 2 type: Transform - - uid: 29382 + - uid: 29457 components: - rot: -1.5707963267948966 rad pos: 51.5,-36.5 parent: 2 type: Transform - - uid: 29383 + - uid: 29458 components: - rot: 3.141592653589793 rad pos: 44.5,-40.5 parent: 2 type: Transform - - uid: 29384 + - uid: 29459 components: - pos: 47.5,-40.5 parent: 2 type: Transform - - uid: 29385 + - uid: 29460 components: - pos: 47.5,-44.5 parent: 2 type: Transform - - uid: 29386 + - uid: 29461 components: - pos: 46.5,-44.5 parent: 2 type: Transform - - uid: 29387 + - uid: 29462 components: - pos: 45.5,-44.5 parent: 2 type: Transform - - uid: 29388 + - uid: 29463 components: - pos: 41.5,-44.5 parent: 2 type: Transform - - uid: 29389 + - uid: 29464 components: - rot: -1.5707963267948966 rad pos: 40.5,-34.5 parent: 2 type: Transform - - uid: 29390 + - uid: 29465 components: - rot: -1.5707963267948966 rad pos: 52.5,-36.5 parent: 2 type: Transform - - uid: 29391 + - uid: 29466 components: - pos: 53.5,-38.5 parent: 2 type: Transform - - uid: 29392 + - uid: 29467 components: - rot: -1.5707963267948966 rad pos: 41.5,-34.5 parent: 2 type: Transform - - uid: 29393 + - uid: 29468 components: - pos: 47.5,-39.5 parent: 2 type: Transform - - uid: 29394 + - uid: 29469 components: - pos: 47.5,-38.5 parent: 2 type: Transform - - uid: 29395 + - uid: 29470 components: - pos: 54.5,-39.5 parent: 2 type: Transform - - uid: 29396 + - uid: 29471 components: - pos: 52.5,-38.5 parent: 2 type: Transform - - uid: 29397 + - uid: 29472 components: - pos: 54.5,-38.5 parent: 2 type: Transform - - uid: 29398 + - uid: 29473 components: - pos: 56.5,-33.5 parent: 2 type: Transform - - uid: 29399 + - uid: 29474 components: - pos: 59.5,-37.5 parent: 2 type: Transform - - uid: 29400 + - uid: 29475 components: - pos: 59.5,-36.5 parent: 2 type: Transform - - uid: 29401 + - uid: 29476 components: - pos: 58.5,-36.5 parent: 2 type: Transform - - uid: 29402 + - uid: 29477 components: - pos: 47.5,-47.5 parent: 2 type: Transform - - uid: 29403 - components: - - pos: 54.5,-40.5 - parent: 2 - type: Transform - - uid: 29404 - components: - - pos: 55.5,-40.5 - parent: 2 - type: Transform - - uid: 29405 - components: - - pos: 54.5,-42.5 - parent: 2 - type: Transform - - uid: 29406 + - uid: 29478 components: - pos: 54.5,-43.5 parent: 2 type: Transform - - uid: 29407 + - uid: 29479 components: - pos: 51.5,-48.5 parent: 2 type: Transform - - uid: 29408 + - uid: 29480 components: - pos: 48.5,-48.5 parent: 2 type: Transform - - uid: 29409 + - uid: 29481 components: - pos: 47.5,-48.5 parent: 2 type: Transform - - uid: 29410 + - uid: 29482 components: - - pos: 56.5,-40.5 + - pos: 56.5,-39.5 parent: 2 type: Transform - - uid: 29411 + - uid: 29483 components: - - pos: 57.5,-40.5 + - pos: 57.5,-39.5 parent: 2 type: Transform - - uid: 29412 + - uid: 29484 components: - rot: -1.5707963267948966 rad pos: 48.5,-36.5 parent: 2 type: Transform - - uid: 29413 + - uid: 29485 components: - pos: 58.5,-43.5 parent: 2 type: Transform - - uid: 29414 + - uid: 29486 components: - pos: 55.5,-43.5 parent: 2 type: Transform - - uid: 29415 + - uid: 29487 components: - pos: 56.5,-43.5 parent: 2 type: Transform - - uid: 29416 + - uid: 29488 components: - pos: 47.5,-49.5 parent: 2 type: Transform - - uid: 29417 + - uid: 29489 components: - pos: 47.5,-50.5 parent: 2 type: Transform - - uid: 29418 + - uid: 29490 components: - pos: 46.5,-50.5 parent: 2 type: Transform - - uid: 29419 + - uid: 29491 components: - pos: 45.5,-50.5 parent: 2 type: Transform - - uid: 29420 + - uid: 29492 components: - pos: 44.5,-50.5 parent: 2 type: Transform - - uid: 29421 + - uid: 29493 components: - pos: 43.5,-50.5 parent: 2 type: Transform - - uid: 29422 + - uid: 29494 components: - pos: 42.5,-50.5 parent: 2 type: Transform - - uid: 29423 + - uid: 29495 components: - pos: 41.5,-50.5 parent: 2 type: Transform - - uid: 29424 + - uid: 29496 components: - pos: 57.5,-31.5 parent: 2 type: Transform - - uid: 29425 + - uid: 29497 components: - pos: 47.5,-35.5 parent: 2 type: Transform - - uid: 29426 + - uid: 29498 components: - rot: -1.5707963267948966 rad pos: 46.5,-34.5 parent: 2 type: Transform - - uid: 29427 + - uid: 29499 components: - pos: 66.5,-49.5 parent: 2 type: Transform - - uid: 29428 + - uid: 29500 components: - pos: 66.5,-44.5 parent: 2 type: Transform - - uid: 29429 + - uid: 29501 components: - pos: 66.5,-43.5 parent: 2 type: Transform - - uid: 29430 + - uid: 29502 components: - pos: 37.5,-44.5 parent: 2 type: Transform - - uid: 29431 + - uid: 29503 components: - pos: 40.5,-45.5 parent: 2 type: Transform - - uid: 29432 + - uid: 29504 components: - pos: 40.5,-47.5 parent: 2 type: Transform - - uid: 29433 + - uid: 29505 components: - pos: 40.5,-44.5 parent: 2 type: Transform - - uid: 29434 + - uid: 29506 components: - pos: 40.5,-48.5 parent: 2 type: Transform - - uid: 29435 + - uid: 29507 components: - rot: -1.5707963267948966 rad pos: -17.5,23.5 parent: 2 type: Transform - - uid: 29436 + - uid: 29508 components: - pos: 46.5,-40.5 parent: 2 type: Transform - - uid: 29437 + - uid: 29509 components: - pos: 52.5,-59.5 parent: 2 type: Transform - - uid: 29438 + - uid: 29510 components: - pos: 52.5,-60.5 parent: 2 type: Transform - - uid: 29439 + - uid: 29511 components: - pos: 66.5,-35.5 parent: 2 type: Transform - - uid: 29440 + - uid: 29512 components: - pos: 67.5,-35.5 parent: 2 type: Transform - - uid: 29441 + - uid: 29513 components: - pos: 68.5,-35.5 parent: 2 type: Transform - - uid: 29442 + - uid: 29514 components: - rot: -1.5707963267948966 rad pos: 66.5,-47.5 parent: 2 type: Transform - - uid: 29443 + - uid: 29515 components: - rot: 3.141592653589793 rad pos: 40.5,-46.5 parent: 2 type: Transform - - uid: 29444 + - uid: 29516 components: - pos: 8.5,-51.5 parent: 2 type: Transform - - uid: 29445 + - uid: 29517 components: - pos: 38.5,-47.5 parent: 2 type: Transform - - uid: 29446 + - uid: 29518 components: - pos: 37.5,-47.5 parent: 2 type: Transform - - uid: 29447 + - uid: 29519 components: - pos: 37.5,-46.5 parent: 2 type: Transform - - uid: 29448 + - uid: 29520 components: - pos: 37.5,-45.5 parent: 2 type: Transform - - uid: 29449 + - uid: 29521 components: - pos: 57.5,-63.5 parent: 2 type: Transform - - uid: 29450 + - uid: 29522 components: - pos: 57.5,-36.5 parent: 2 type: Transform - - uid: 29451 + - uid: 29523 components: - pos: 74.5,-50.5 parent: 2 type: Transform - - uid: 29452 + - uid: 29524 components: - pos: 59.5,-30.5 parent: 2 type: Transform - - uid: 29453 + - uid: 29525 components: - pos: 56.5,-31.5 parent: 2 type: Transform - - uid: 29454 + - uid: 29526 components: - pos: 58.5,-31.5 parent: 2 type: Transform - - uid: 29455 + - uid: 29527 components: - rot: -1.5707963267948966 rad pos: 47.5,-36.5 parent: 2 type: Transform - - uid: 29456 + - uid: 29528 components: - rot: 1.5707963267948966 rad pos: 29.5,-46.5 parent: 2 type: Transform - - uid: 29457 + - uid: 29529 components: - rot: 1.5707963267948966 rad pos: 30.5,-46.5 parent: 2 type: Transform - - uid: 29458 + - uid: 29530 components: - rot: 1.5707963267948966 rad pos: 32.5,-46.5 parent: 2 type: Transform - - uid: 29459 + - uid: 29531 components: - rot: 1.5707963267948966 rad pos: 34.5,-46.5 parent: 2 type: Transform - - uid: 29460 + - uid: 29532 components: - rot: 1.5707963267948966 rad pos: 35.5,-46.5 parent: 2 type: Transform - - uid: 29461 + - uid: 29533 components: - rot: 1.5707963267948966 rad pos: 35.5,-45.5 parent: 2 type: Transform - - uid: 29462 + - uid: 29534 components: - rot: 1.5707963267948966 rad pos: 35.5,-47.5 parent: 2 type: Transform - - uid: 29463 + - uid: 29535 components: - rot: 1.5707963267948966 rad pos: 35.5,-48.5 parent: 2 type: Transform - - uid: 29464 + - uid: 29536 components: - rot: 1.5707963267948966 rad pos: 35.5,-49.5 parent: 2 type: Transform - - uid: 29465 + - uid: 29537 components: - rot: 1.5707963267948966 rad pos: 35.5,-50.5 parent: 2 type: Transform - - uid: 29466 + - uid: 29538 components: - rot: 1.5707963267948966 rad pos: 35.5,-51.5 parent: 2 type: Transform - - uid: 29467 + - uid: 29539 components: - rot: 1.5707963267948966 rad pos: 35.5,-53.5 parent: 2 type: Transform - - uid: 29468 + - uid: 29540 components: - pos: 35.5,-52.5 parent: 2 type: Transform - - uid: 29469 + - uid: 29541 components: - rot: 1.5707963267948966 rad pos: 35.5,-55.5 parent: 2 type: Transform - - uid: 29470 + - uid: 29542 components: - rot: 1.5707963267948966 rad pos: 35.5,-56.5 parent: 2 type: Transform - - uid: 29471 + - uid: 29543 components: - rot: 1.5707963267948966 rad pos: 35.5,-57.5 parent: 2 type: Transform - - uid: 29472 + - uid: 29544 components: - rot: 1.5707963267948966 rad pos: 34.5,-57.5 parent: 2 type: Transform - - uid: 29473 + - uid: 29545 components: - pos: 60.5,-37.5 parent: 2 type: Transform - - uid: 29474 + - uid: 29546 components: - pos: 44.5,-55.5 parent: 2 type: Transform - - uid: 29475 + - uid: 29547 components: - pos: 44.5,-54.5 parent: 2 type: Transform - - uid: 29476 + - uid: 29548 components: - pos: 44.5,-53.5 parent: 2 type: Transform - - uid: 29477 + - uid: 29549 components: - pos: 44.5,-52.5 parent: 2 type: Transform - - uid: 29478 + - uid: 29550 components: - pos: 44.5,-51.5 parent: 2 type: Transform - - uid: 29479 + - uid: 29551 components: - pos: 45.5,-55.5 parent: 2 type: Transform - - uid: 29480 + - uid: 29552 components: - rot: 3.141592653589793 rad pos: 46.5,-55.5 parent: 2 type: Transform - - uid: 29481 + - uid: 29553 components: - pos: 47.5,-55.5 parent: 2 type: Transform - - uid: 29482 + - uid: 29554 components: - rot: 3.141592653589793 rad pos: 44.5,-57.5 parent: 2 type: Transform - - uid: 29483 + - uid: 29555 components: - rot: 3.141592653589793 rad pos: 44.5,-58.5 parent: 2 type: Transform - - uid: 29484 + - uid: 29556 components: - rot: 3.141592653589793 rad pos: 44.5,-59.5 parent: 2 type: Transform - - uid: 29485 + - uid: 29557 components: - rot: 3.141592653589793 rad pos: 44.5,-60.5 parent: 2 type: Transform - - uid: 29486 + - uid: 29558 components: - pos: 41.5,-63.5 parent: 2 type: Transform - - uid: 29487 + - uid: 29559 components: - pos: 41.5,-62.5 parent: 2 type: Transform - - uid: 29488 + - uid: 29560 components: - pos: 46.5,-61.5 parent: 2 type: Transform - - uid: 29489 + - uid: 29561 components: - pos: 52.5,-56.5 parent: 2 type: Transform - - uid: 29490 + - uid: 29562 components: - pos: 48.5,-59.5 parent: 2 type: Transform - - uid: 29491 + - uid: 29563 components: - pos: 47.5,-59.5 parent: 2 type: Transform - - uid: 29492 + - uid: 29564 components: - pos: 47.5,-60.5 parent: 2 type: Transform - - uid: 29493 + - uid: 29565 components: - pos: 47.5,-61.5 parent: 2 type: Transform - - uid: 29494 + - uid: 29566 components: - pos: 45.5,-61.5 parent: 2 type: Transform - - uid: 29495 + - uid: 29567 components: - pos: 44.5,-61.5 parent: 2 type: Transform - - uid: 29496 + - uid: 29568 components: - pos: 43.5,-61.5 parent: 2 type: Transform - - uid: 29497 + - uid: 29569 components: - pos: 42.5,-61.5 parent: 2 type: Transform - - uid: 29498 + - uid: 29570 components: - pos: 41.5,-61.5 parent: 2 type: Transform - - uid: 29499 + - uid: 29571 components: - pos: -18.5,0.5 parent: 2 type: Transform - - uid: 29500 + - uid: 29572 components: - pos: -20.5,0.5 parent: 2 type: Transform - - uid: 29501 + - uid: 29573 components: - rot: -1.5707963267948966 rad pos: -22.5,-16.5 parent: 2 type: Transform - - uid: 29502 + - uid: 29574 components: - pos: -30.5,-9.5 parent: 2 type: Transform - - uid: 29503 + - uid: 29575 components: - pos: -27.5,-15.5 parent: 2 type: Transform - - uid: 29504 + - uid: 29576 components: - pos: -28.5,-15.5 parent: 2 type: Transform - - uid: 29505 + - uid: 29577 components: - pos: -29.5,-15.5 parent: 2 type: Transform - - uid: 29506 + - uid: 29578 components: - pos: -30.5,-15.5 parent: 2 type: Transform - - uid: 29507 + - uid: 29579 components: - pos: -30.5,-11.5 parent: 2 type: Transform - - uid: 29508 + - uid: 29580 components: - pos: -30.5,-14.5 parent: 2 type: Transform - - uid: 29509 + - uid: 29581 components: - pos: -33.5,-13.5 parent: 2 type: Transform - - uid: 29510 + - uid: 29582 components: - pos: -27.5,-19.5 parent: 2 type: Transform - - uid: 29511 + - uid: 29583 components: - rot: -1.5707963267948966 rad pos: -22.5,-18.5 parent: 2 type: Transform - - uid: 29512 + - uid: 29584 components: - pos: -30.5,-19.5 parent: 2 type: Transform - - uid: 29513 + - uid: 29585 components: - rot: -1.5707963267948966 rad pos: -27.5,-6.5 parent: 2 type: Transform - - uid: 29514 + - uid: 29586 components: - rot: -1.5707963267948966 rad pos: -27.5,-5.5 parent: 2 type: Transform - - uid: 29515 + - uid: 29587 components: - rot: -1.5707963267948966 rad pos: -27.5,-4.5 parent: 2 type: Transform - - uid: 29516 + - uid: 29588 components: - rot: -1.5707963267948966 rad pos: -27.5,-3.5 parent: 2 type: Transform - - uid: 29517 + - uid: 29589 components: - rot: -1.5707963267948966 rad pos: -27.5,-2.5 parent: 2 type: Transform - - uid: 29518 + - uid: 29590 components: - rot: -1.5707963267948966 rad pos: -27.5,-1.5 parent: 2 type: Transform - - uid: 29519 + - uid: 29591 components: - pos: -28.5,2.5 parent: 2 type: Transform - - uid: 29520 + - uid: 29592 components: - pos: -28.5,-1.5 parent: 2 type: Transform - - uid: 29521 + - uid: 29593 components: - rot: 3.141592653589793 rad pos: -27.5,-7.5 parent: 2 type: Transform - - uid: 29522 + - uid: 29594 components: - rot: -1.5707963267948966 rad pos: -27.5,2.5 parent: 2 type: Transform - - uid: 29523 + - uid: 29595 components: - rot: -1.5707963267948966 rad pos: -27.5,3.5 parent: 2 type: Transform - - uid: 29524 + - uid: 29596 components: - rot: -1.5707963267948966 rad pos: -27.5,4.5 parent: 2 type: Transform - - uid: 29525 + - uid: 29597 components: - rot: -1.5707963267948966 rad pos: -27.5,5.5 parent: 2 type: Transform - - uid: 29526 + - uid: 29598 components: - rot: -1.5707963267948966 rad pos: -27.5,7.5 parent: 2 type: Transform - - uid: 29527 + - uid: 29599 components: - rot: -1.5707963267948966 rad pos: -27.5,8.5 parent: 2 type: Transform - - uid: 29528 + - uid: 29600 components: - rot: -1.5707963267948966 rad pos: -27.5,9.5 parent: 2 type: Transform - - uid: 29529 + - uid: 29601 components: - pos: -28.5,12.5 parent: 2 type: Transform - - uid: 29530 + - uid: 29602 components: - rot: -1.5707963267948966 rad pos: -29.5,-18.5 parent: 2 type: Transform - - uid: 29531 + - uid: 29603 components: - rot: -1.5707963267948966 rad pos: -28.5,-18.5 parent: 2 type: Transform - - uid: 29532 + - uid: 29604 components: - pos: -22.5,-25.5 parent: 2 type: Transform - - uid: 29533 + - uid: 29605 components: - pos: -23.5,-25.5 parent: 2 type: Transform - - uid: 29534 + - uid: 29606 components: - pos: -24.5,-25.5 parent: 2 type: Transform - - uid: 29535 + - uid: 29607 components: - pos: -25.5,-25.5 parent: 2 type: Transform - - uid: 29536 + - uid: 29608 components: - pos: -26.5,-25.5 parent: 2 type: Transform - - uid: 29537 + - uid: 29609 components: - pos: -27.5,-25.5 parent: 2 type: Transform - - uid: 29538 + - uid: 29610 components: - pos: -27.5,-23.5 parent: 2 type: Transform - - uid: 29539 + - uid: 29611 components: - pos: -27.5,-24.5 parent: 2 type: Transform - - uid: 29540 + - uid: 29612 components: - pos: -27.5,-21.5 parent: 2 type: Transform - - uid: 29541 + - uid: 29613 components: - pos: -27.5,-20.5 parent: 2 type: Transform - - uid: 29542 + - uid: 29614 components: - rot: -1.5707963267948966 rad pos: -21.5,-23.5 parent: 2 type: Transform - - uid: 29543 + - uid: 29615 components: - rot: -1.5707963267948966 rad pos: -26.5,-18.5 parent: 2 type: Transform - - uid: 29544 + - uid: 29616 components: - rot: -1.5707963267948966 rad pos: -28.5,-24.5 parent: 2 type: Transform - - uid: 29545 + - uid: 29617 components: - rot: -1.5707963267948966 rad pos: -29.5,-24.5 parent: 2 type: Transform - - uid: 29546 + - uid: 29618 components: - rot: -1.5707963267948966 rad pos: -30.5,-24.5 parent: 2 type: Transform - - uid: 29547 + - uid: 29619 components: - rot: -1.5707963267948966 rad pos: -30.5,-20.5 parent: 2 type: Transform - - uid: 29548 + - uid: 29620 components: - pos: -30.5,-21.5 parent: 2 type: Transform - - uid: 29549 + - uid: 29621 components: - pos: -30.5,-22.5 parent: 2 type: Transform - - uid: 29550 + - uid: 29622 components: - pos: 50.5,41.5 parent: 2 type: Transform - - uid: 29551 + - uid: 29623 components: - pos: -21.5,-25.5 parent: 2 type: Transform - - uid: 29552 + - uid: 29624 components: - pos: -21.5,-27.5 parent: 2 type: Transform - - uid: 29553 + - uid: 29625 components: - pos: -21.5,-28.5 parent: 2 type: Transform - - uid: 29554 + - uid: 29626 components: - pos: -21.5,-29.5 parent: 2 type: Transform - - uid: 29555 + - uid: 29627 components: - pos: -21.5,-30.5 parent: 2 type: Transform - - uid: 29556 + - uid: 29628 components: - pos: -21.5,-31.5 parent: 2 type: Transform - - uid: 29557 + - uid: 29629 components: - pos: -21.5,-33.5 parent: 2 type: Transform - - uid: 29558 + - uid: 29630 components: - pos: -21.5,-36.5 parent: 2 type: Transform - - uid: 29559 + - uid: 29631 components: - pos: -21.5,-37.5 parent: 2 type: Transform - - uid: 29560 + - uid: 29632 components: - pos: -21.5,-38.5 parent: 2 type: Transform - - uid: 29561 + - uid: 29633 components: - pos: -21.5,-39.5 parent: 2 type: Transform - - uid: 29562 + - uid: 29634 components: - pos: -21.5,-40.5 parent: 2 type: Transform - - uid: 29563 + - uid: 29635 components: - pos: -21.5,-41.5 parent: 2 type: Transform - - uid: 29564 + - uid: 29636 components: - pos: -21.5,-43.5 parent: 2 type: Transform - - uid: 29565 + - uid: 29637 components: - pos: 37.5,-49.5 parent: 2 type: Transform - - uid: 29566 + - uid: 29638 components: - pos: 38.5,-49.5 parent: 2 type: Transform - - uid: 29567 + - uid: 29639 components: - pos: 39.5,-50.5 parent: 2 type: Transform - - uid: 29568 + - uid: 29640 components: - pos: 38.5,-50.5 parent: 2 type: Transform - - uid: 29569 + - uid: 29641 components: - pos: -1.5,-12.5 parent: 2 type: Transform - - uid: 29570 + - uid: 29642 components: - pos: -1.5,-13.5 parent: 2 type: Transform - - uid: 29571 + - uid: 29643 components: - pos: 57.5,-61.5 parent: 2 type: Transform - - uid: 29572 + - uid: 29644 components: - pos: 6.5,-58.5 parent: 2 type: Transform - - uid: 29573 + - uid: 29645 components: - pos: -22.5,-27.5 parent: 2 type: Transform - - uid: 29574 + - uid: 29646 components: - pos: -17.5,-30.5 parent: 2 type: Transform - - uid: 29575 + - uid: 29647 components: - rot: 3.141592653589793 rad pos: 42.5,-58.5 parent: 2 type: Transform - - uid: 29576 + - uid: 29648 components: - rot: 3.141592653589793 rad pos: 42.5,-60.5 parent: 2 type: Transform - - uid: 29577 + - uid: 29649 components: - pos: 9.5,-69.5 parent: 2 type: Transform - - uid: 29578 + - uid: 29650 components: - pos: 5.5,-72.5 parent: 2 type: Transform - - uid: 29579 + - uid: 29651 components: - pos: -40.5,-13.5 parent: 2 type: Transform - - uid: 29580 + - uid: 29652 components: - pos: -40.5,-8.5 parent: 2 type: Transform - - uid: 29581 + - uid: 29653 components: - pos: -40.5,-7.5 parent: 2 type: Transform - - uid: 29582 + - uid: 29654 components: - pos: -33.5,-8.5 parent: 2 type: Transform - - uid: 29583 + - uid: 29655 components: - pos: -30.5,-8.5 parent: 2 type: Transform - - uid: 29584 + - uid: 29656 components: - pos: -30.5,-25.5 parent: 2 type: Transform - - uid: 29585 + - uid: 29657 components: - pos: -33.5,-25.5 parent: 2 type: Transform - - uid: 29586 + - uid: 29658 components: - pos: -23.5,-27.5 parent: 2 type: Transform - - uid: 29587 + - uid: 29659 components: - pos: -24.5,-27.5 parent: 2 type: Transform - - uid: 29588 + - uid: 29660 components: - rot: 1.5707963267948966 rad pos: -26.5,-28.5 parent: 2 type: Transform - - uid: 29589 + - uid: 29661 components: - pos: -26.5,-27.5 parent: 2 type: Transform - - uid: 29590 + - uid: 29662 components: - pos: -27.5,-27.5 parent: 2 type: Transform - - uid: 29591 + - uid: 29663 components: - pos: -28.5,-27.5 parent: 2 type: Transform - - uid: 29592 + - uid: 29664 components: - pos: -29.5,-27.5 parent: 2 type: Transform - - uid: 29593 + - uid: 29665 components: - pos: -30.5,-27.5 parent: 2 type: Transform - - uid: 29594 + - uid: 29666 components: - pos: -33.5,-27.5 parent: 2 type: Transform - - uid: 29595 + - uid: 29667 components: - pos: -34.5,-27.5 parent: 2 type: Transform - - uid: 29596 + - uid: 29668 components: - pos: -35.5,-27.5 parent: 2 type: Transform - - uid: 29597 + - uid: 29669 components: - pos: -36.5,-27.5 parent: 2 type: Transform - - uid: 29598 + - uid: 29670 components: - pos: -33.5,-28.5 parent: 2 type: Transform - - uid: 29599 + - uid: 29671 components: - pos: -33.5,-29.5 parent: 2 type: Transform - - uid: 29600 + - uid: 29672 components: - pos: -33.5,-30.5 parent: 2 type: Transform - - uid: 29601 + - uid: 29673 components: - pos: -30.5,-28.5 parent: 2 type: Transform - - uid: 29602 + - uid: 29674 components: - pos: -30.5,-29.5 parent: 2 type: Transform - - uid: 29603 + - uid: 29675 components: - pos: -30.5,-30.5 parent: 2 type: Transform - - uid: 29604 + - uid: 29676 components: - pos: -45.5,-26.5 parent: 2 type: Transform - - uid: 29605 + - uid: 29677 components: - pos: -36.5,-26.5 parent: 2 type: Transform - - uid: 29606 + - uid: 29678 components: - pos: -36.5,-25.5 parent: 2 type: Transform - - uid: 29607 + - uid: 29679 components: - pos: -37.5,-25.5 parent: 2 type: Transform - - uid: 29608 + - uid: 29680 components: - pos: -38.5,-25.5 parent: 2 type: Transform - - uid: 29609 + - uid: 29681 components: - pos: -36.5,-22.5 parent: 2 type: Transform - - uid: 29610 + - uid: 29682 components: - pos: -36.5,-23.5 parent: 2 type: Transform - - uid: 29611 + - uid: 29683 components: - pos: -38.5,-23.5 parent: 2 type: Transform - - uid: 29612 + - uid: 29684 components: - pos: -38.5,-24.5 parent: 2 type: Transform - - uid: 29613 + - uid: 29685 components: - pos: 52.5,-35.5 parent: 2 type: Transform - - uid: 29614 + - uid: 29686 components: - pos: 53.5,-33.5 parent: 2 type: Transform - - uid: 29615 + - uid: 29687 components: - pos: 54.5,-62.5 parent: 2 type: Transform - - uid: 29616 + - uid: 29688 components: - pos: 44.5,-6.5 parent: 2 type: Transform - - uid: 29617 + - uid: 29689 components: - rot: 1.5707963267948966 rad pos: -28.5,7.5 parent: 2 type: Transform - - uid: 29618 + - uid: 29690 components: - rot: 1.5707963267948966 rad pos: -28.5,6.5 parent: 2 type: Transform - - uid: 29619 + - uid: 29691 components: - rot: 1.5707963267948966 rad pos: -28.5,5.5 parent: 2 type: Transform - - uid: 29620 + - uid: 29692 components: - pos: -49.5,-29.5 parent: 2 type: Transform - - uid: 29621 + - uid: 29693 components: - pos: -50.5,-30.5 parent: 2 type: Transform - - uid: 29622 + - uid: 29694 components: - pos: -43.5,-21.5 parent: 2 type: Transform - - uid: 29623 + - uid: 29695 components: - pos: -43.5,-20.5 parent: 2 type: Transform - - uid: 29624 + - uid: 29696 components: - rot: 1.5707963267948966 rad pos: -42.5,-25.5 parent: 2 type: Transform - - uid: 29625 + - uid: 29697 components: - rot: 1.5707963267948966 rad pos: -40.5,-25.5 parent: 2 type: Transform - - uid: 29626 + - uid: 29698 components: - rot: 1.5707963267948966 rad pos: -39.5,-25.5 parent: 2 type: Transform - - uid: 29627 + - uid: 29699 components: - rot: 1.5707963267948966 rad pos: -40.5,-27.5 parent: 2 type: Transform - - uid: 29628 + - uid: 29700 components: - rot: 1.5707963267948966 rad pos: -41.5,-27.5 parent: 2 type: Transform - - uid: 29629 + - uid: 29701 components: - rot: 1.5707963267948966 rad pos: -42.5,-27.5 parent: 2 type: Transform - - uid: 29630 + - uid: 29702 components: - rot: 1.5707963267948966 rad pos: -39.5,-27.5 parent: 2 type: Transform - - uid: 29631 + - uid: 29703 components: - rot: 1.5707963267948966 rad pos: -23.5,-30.5 parent: 2 type: Transform - - uid: 29632 + - uid: 29704 components: - rot: 1.5707963267948966 rad pos: -25.5,-30.5 parent: 2 type: Transform - - uid: 29633 + - uid: 29705 components: - rot: 1.5707963267948966 rad pos: -26.5,-30.5 parent: 2 type: Transform - - uid: 29634 + - uid: 29706 components: - rot: 1.5707963267948966 rad pos: -26.5,-31.5 parent: 2 type: Transform - - uid: 29635 + - uid: 29707 components: - rot: 1.5707963267948966 rad pos: -26.5,-32.5 parent: 2 type: Transform - - uid: 29636 + - uid: 29708 components: - rot: 1.5707963267948966 rad pos: -27.5,-32.5 parent: 2 type: Transform - - uid: 29637 + - uid: 29709 components: - rot: 1.5707963267948966 rad pos: -28.5,-32.5 parent: 2 type: Transform - - uid: 29638 + - uid: 29710 components: - rot: 1.5707963267948966 rad pos: -29.5,-32.5 parent: 2 type: Transform - - uid: 29639 + - uid: 29711 components: - rot: 1.5707963267948966 rad pos: -29.5,-31.5 parent: 2 type: Transform - - uid: 29640 + - uid: 29712 components: - rot: 1.5707963267948966 rad pos: -30.5,-31.5 parent: 2 type: Transform - - uid: 29641 + - uid: 29713 components: - rot: 1.5707963267948966 rad pos: -26.5,-35.5 parent: 2 type: Transform - - uid: 29642 + - uid: 29714 components: - rot: 1.5707963267948966 rad pos: -26.5,-36.5 parent: 2 type: Transform - - uid: 29643 + - uid: 29715 components: - pos: -29.5,-37.5 parent: 2 type: Transform - - uid: 29644 + - uid: 29716 components: - rot: 1.5707963267948966 rad pos: -28.5,-35.5 parent: 2 type: Transform - - uid: 29645 + - uid: 29717 components: - rot: 1.5707963267948966 rad pos: -29.5,-36.5 parent: 2 type: Transform - - uid: 29646 + - uid: 29718 components: - rot: 1.5707963267948966 rad pos: -30.5,-36.5 parent: 2 type: Transform - - uid: 29647 + - uid: 29719 components: - rot: 1.5707963267948966 rad pos: -33.5,-36.5 parent: 2 type: Transform - - uid: 29648 + - uid: 29720 components: - rot: 1.5707963267948966 rad pos: -34.5,-36.5 parent: 2 type: Transform - - uid: 29649 + - uid: 29721 components: - rot: 1.5707963267948966 rad pos: -34.5,-31.5 parent: 2 type: Transform - - uid: 29650 + - uid: 29722 components: - rot: 1.5707963267948966 rad pos: -34.5,-32.5 parent: 2 type: Transform - - uid: 29651 + - uid: 29723 components: - pos: -34.5,-37.5 parent: 2 type: Transform - - uid: 29652 + - uid: 29724 components: - rot: 1.5707963267948966 rad pos: -34.5,-35.5 parent: 2 type: Transform - - uid: 29653 + - uid: 29725 components: - rot: 1.5707963267948966 rad pos: -33.5,-31.5 parent: 2 type: Transform - - uid: 29654 + - uid: 29726 components: - rot: 1.5707963267948966 rad pos: -29.5,-35.5 parent: 2 type: Transform - - uid: 29655 + - uid: 29727 components: - rot: 1.5707963267948966 rad pos: -22.5,-30.5 parent: 2 type: Transform - - uid: 29656 + - uid: 29728 components: - rot: 1.5707963267948966 rad pos: -24.5,-28.5 parent: 2 type: Transform - - uid: 29657 + - uid: 29729 components: - rot: 3.141592653589793 rad pos: -28.5,-6.5 parent: 2 type: Transform - - uid: 29658 + - uid: 29730 components: - pos: -31.5,-4.5 parent: 2 type: Transform - - uid: 29659 + - uid: 29731 components: - pos: -32.5,-4.5 parent: 2 type: Transform - - uid: 29660 + - uid: 29732 components: - pos: -33.5,-4.5 parent: 2 type: Transform - - uid: 29661 + - uid: 29733 components: - pos: -34.5,-4.5 parent: 2 type: Transform - - uid: 29662 + - uid: 29734 components: - pos: -35.5,-4.5 parent: 2 type: Transform - - uid: 29663 + - uid: 29735 components: - pos: -38.5,-3.5 parent: 2 type: Transform - - uid: 29664 + - uid: 29736 components: - pos: -39.5,-3.5 parent: 2 type: Transform - - uid: 29665 + - uid: 29737 components: - pos: -35.5,-3.5 parent: 2 type: Transform - - uid: 29666 + - uid: 29738 components: - pos: -39.5,-4.5 parent: 2 type: Transform - - uid: 29667 + - uid: 29739 components: - pos: -40.5,-4.5 parent: 2 type: Transform - - uid: 29668 + - uid: 29740 components: - pos: -42.5,-4.5 parent: 2 type: Transform - - uid: 29669 + - uid: 29741 components: - pos: -43.5,-4.5 parent: 2 type: Transform - - uid: 29670 + - uid: 29742 components: - pos: -22.5,-40.5 parent: 2 type: Transform - - uid: 29671 + - uid: 29743 components: - pos: -23.5,-40.5 parent: 2 type: Transform - - uid: 29672 + - uid: 29744 components: - pos: -24.5,-40.5 parent: 2 type: Transform - - uid: 29673 + - uid: 29745 components: - pos: -24.5,-41.5 parent: 2 type: Transform - - uid: 29674 + - uid: 29746 components: - pos: -24.5,-42.5 parent: 2 type: Transform - - uid: 29675 + - uid: 29747 components: - pos: -24.5,-43.5 parent: 2 type: Transform - - uid: 29676 + - uid: 29748 components: - pos: -24.5,-44.5 parent: 2 type: Transform - - uid: 29677 + - uid: 29749 components: - pos: -24.5,-45.5 parent: 2 type: Transform - - uid: 29678 + - uid: 29750 components: - pos: -24.5,-46.5 parent: 2 type: Transform - - uid: 29679 + - uid: 29751 components: - pos: -24.5,-47.5 parent: 2 type: Transform - - uid: 29680 + - uid: 29752 components: - pos: -22.5,-37.5 parent: 2 type: Transform - - uid: 29681 + - uid: 29753 components: - pos: -23.5,-37.5 parent: 2 type: Transform - - uid: 29682 + - uid: 29754 components: - pos: -24.5,-37.5 parent: 2 type: Transform - - uid: 29683 + - uid: 29755 components: - pos: -25.5,-37.5 parent: 2 type: Transform - - uid: 29684 + - uid: 29756 components: - pos: -26.5,-37.5 parent: 2 type: Transform - - uid: 29685 + - uid: 29757 components: - pos: -35.5,-31.5 parent: 2 type: Transform - - uid: 29686 + - uid: 29758 components: - pos: -36.5,-31.5 parent: 2 type: Transform - - uid: 29687 + - uid: 29759 components: - pos: -37.5,-31.5 parent: 2 type: Transform - - uid: 29688 + - uid: 29760 components: - pos: -38.5,-31.5 parent: 2 type: Transform - - uid: 29689 + - uid: 29761 components: - pos: -39.5,-31.5 parent: 2 type: Transform - - uid: 29690 + - uid: 29762 components: - pos: -30.5,-38.5 parent: 2 type: Transform - - uid: 29691 + - uid: 29763 components: - pos: -30.5,-39.5 parent: 2 type: Transform - - uid: 29692 + - uid: 29764 components: - pos: -30.5,-41.5 parent: 2 type: Transform - - uid: 29693 + - uid: 29765 components: - pos: -30.5,-42.5 parent: 2 type: Transform - - uid: 29694 + - uid: 29766 components: - pos: -31.5,-42.5 parent: 2 type: Transform - - uid: 29695 + - uid: 29767 components: - pos: -48.5,-4.5 parent: 2 type: Transform - - uid: 29696 + - uid: 29768 components: - pos: -47.5,-4.5 parent: 2 type: Transform - - uid: 29697 + - uid: 29769 components: - pos: -46.5,-4.5 parent: 2 type: Transform - - uid: 29698 + - uid: 29770 components: - pos: -45.5,-4.5 parent: 2 type: Transform - - uid: 29699 + - uid: 29771 components: - pos: -44.5,-4.5 parent: 2 type: Transform - - uid: 29700 + - uid: 29772 components: - pos: -55.5,-19.5 parent: 2 type: Transform - - uid: 29701 + - uid: 29773 components: - pos: -55.5,-20.5 parent: 2 type: Transform - - uid: 29702 + - uid: 29774 components: - pos: -47.5,-26.5 parent: 2 type: Transform - - uid: 29703 + - uid: 29775 components: - rot: 3.141592653589793 rad pos: -41.5,15.5 parent: 2 type: Transform - - uid: 29704 + - uid: 29776 components: - pos: -31.5,-6.5 parent: 2 type: Transform - - uid: 29705 + - uid: 29777 components: - pos: -32.5,-6.5 parent: 2 type: Transform - - uid: 29706 + - uid: 29778 components: - pos: -32.5,-8.5 parent: 2 type: Transform - - uid: 29707 + - uid: 29779 components: - pos: -31.5,-8.5 parent: 2 type: Transform - - uid: 29708 + - uid: 29780 components: - pos: -33.5,-6.5 parent: 2 type: Transform - - uid: 29709 + - uid: 29781 components: - pos: -33.5,-5.5 parent: 2 type: Transform - - uid: 29710 + - uid: 29782 components: - pos: -37.5,-3.5 parent: 2 type: Transform - - uid: 29711 + - uid: 29783 components: - pos: -36.5,-3.5 parent: 2 type: Transform - - uid: 29712 + - uid: 29784 components: - pos: -65.5,-29.5 parent: 2 type: Transform - - uid: 29713 + - uid: 29785 components: - pos: -70.5,-27.5 parent: 2 type: Transform - - uid: 29714 + - uid: 29786 components: - pos: -74.5,-27.5 parent: 2 type: Transform - - uid: 29715 + - uid: 29787 components: - pos: -69.5,-28.5 parent: 2 type: Transform - - uid: 29716 + - uid: 29788 components: - pos: -69.5,-29.5 parent: 2 type: Transform - - uid: 29717 + - uid: 29789 components: - pos: -69.5,-30.5 parent: 2 type: Transform - - uid: 29718 + - uid: 29790 components: - pos: -57.5,-29.5 parent: 2 type: Transform - - uid: 29719 + - uid: 29791 components: - pos: -53.5,-29.5 parent: 2 type: Transform - - uid: 29720 + - uid: 29792 components: - pos: -49.5,-27.5 parent: 2 type: Transform - - uid: 29721 + - uid: 29793 components: - pos: -49.5,-28.5 parent: 2 type: Transform - - uid: 29722 + - uid: 29794 components: - pos: -56.5,-31.5 parent: 2 type: Transform - - uid: 29723 + - uid: 29795 components: - pos: -57.5,-31.5 parent: 2 type: Transform - - uid: 29724 + - uid: 29796 components: - pos: -63.5,-25.5 parent: 2 type: Transform - - uid: 29725 + - uid: 29797 components: - pos: -57.5,-22.5 parent: 2 type: Transform - - uid: 29726 + - uid: 29798 components: - pos: -55.5,-21.5 parent: 2 type: Transform - - uid: 29727 + - uid: 29799 components: - pos: -55.5,-22.5 parent: 2 type: Transform - - uid: 29728 + - uid: 29800 components: - pos: -49.5,-30.5 parent: 2 type: Transform - - uid: 29729 + - uid: 29801 components: - pos: -67.5,-29.5 parent: 2 type: Transform - - uid: 29730 + - uid: 29802 components: - pos: -54.5,-29.5 parent: 2 type: Transform - - uid: 29731 + - uid: 29803 components: - pos: -56.5,-29.5 parent: 2 type: Transform - - uid: 29732 + - uid: 29804 components: - pos: -36.5,-49.5 parent: 2 type: Transform - - uid: 29733 + - uid: 29805 components: - pos: -36.5,-50.5 parent: 2 type: Transform - - uid: 29734 + - uid: 29806 components: - pos: -36.5,-51.5 parent: 2 type: Transform - - uid: 29735 + - uid: 29807 components: - pos: -36.5,-52.5 parent: 2 type: Transform - - uid: 29736 + - uid: 29808 components: - pos: -36.5,-48.5 parent: 2 type: Transform - - uid: 29737 + - uid: 29809 components: - pos: -36.5,-47.5 parent: 2 type: Transform - - uid: 29738 + - uid: 29810 components: - pos: 69.5,-60.5 parent: 2 type: Transform - - uid: 29739 + - uid: 29811 components: - rot: -1.5707963267948966 rad pos: -30.5,-18.5 parent: 2 type: Transform - - uid: 29740 + - uid: 29812 components: - pos: -29.5,-38.5 parent: 2 type: Transform - - uid: 29741 + - uid: 29813 components: - pos: -28.5,-38.5 parent: 2 type: Transform - - uid: 29742 + - uid: 29814 components: - pos: -27.5,-38.5 parent: 2 type: Transform - - uid: 29743 + - uid: 29815 components: - pos: -26.5,-38.5 parent: 2 type: Transform - - uid: 29744 + - uid: 29816 components: - rot: -1.5707963267948966 rad pos: -21.5,-16.5 parent: 2 type: Transform - - uid: 29745 + - uid: 29817 components: - pos: -33.5,-7.5 parent: 2 type: Transform - - uid: 29746 + - uid: 29818 components: - pos: -57.5,-3.5 parent: 2 type: Transform - - uid: 29747 + - uid: 29819 components: - pos: -69.5,-25.5 parent: 2 type: Transform - - uid: 29748 + - uid: 29820 components: - pos: -69.5,-26.5 parent: 2 type: Transform - - uid: 29749 + - uid: 29821 components: - pos: -69.5,-27.5 parent: 2 type: Transform - - uid: 29750 + - uid: 29822 components: - rot: -1.5707963267948966 rad pos: -43.5,-25.5 parent: 2 type: Transform - - uid: 29751 + - uid: 29823 components: - rot: -1.5707963267948966 rad pos: -45.5,-29.5 parent: 2 type: Transform - - uid: 29752 + - uid: 29824 components: - rot: -1.5707963267948966 rad pos: -45.5,-30.5 parent: 2 type: Transform - - uid: 29753 + - uid: 29825 components: - pos: -46.5,-29.5 parent: 2 type: Transform - - uid: 29754 + - uid: 29826 components: - rot: -1.5707963267948966 rad pos: -47.5,-29.5 parent: 2 type: Transform - - uid: 29755 + - uid: 29827 components: - rot: -1.5707963267948966 rad pos: -47.5,-28.5 parent: 2 type: Transform - - uid: 29756 + - uid: 29828 components: - rot: -1.5707963267948966 rad pos: -57.5,-34.5 parent: 2 type: Transform - - uid: 29757 + - uid: 29829 components: - rot: -1.5707963267948966 rad pos: -56.5,-34.5 parent: 2 type: Transform - - uid: 29758 + - uid: 29830 components: - rot: -1.5707963267948966 rad pos: -54.5,-34.5 parent: 2 type: Transform - - uid: 29759 + - uid: 29831 components: - rot: -1.5707963267948966 rad pos: -57.5,-40.5 parent: 2 type: Transform - - uid: 29760 + - uid: 29832 components: - rot: -1.5707963267948966 rad pos: -34.5,-29.5 parent: 2 type: Transform - - uid: 29761 + - uid: 29833 components: - pos: -55.5,-65.5 parent: 2 type: Transform - - uid: 29762 + - uid: 29834 components: - pos: -54.5,-65.5 parent: 2 type: Transform - - uid: 29763 + - uid: 29835 components: - pos: -53.5,-65.5 parent: 2 type: Transform - - uid: 29764 + - uid: 29836 components: - pos: -51.5,-65.5 parent: 2 type: Transform - - uid: 29765 + - uid: 29837 components: - pos: -51.5,-64.5 parent: 2 type: Transform - - uid: 29766 + - uid: 29838 components: - pos: -51.5,-62.5 parent: 2 type: Transform - - uid: 29767 + - uid: 29839 components: - pos: -56.5,-69.5 parent: 2 type: Transform - - uid: 29768 + - uid: 29840 components: - pos: -23.5,-50.5 parent: 2 type: Transform - - uid: 29769 + - uid: 29841 components: - pos: -24.5,-50.5 parent: 2 type: Transform - - uid: 29770 + - uid: 29842 components: - pos: -25.5,-50.5 parent: 2 type: Transform - - uid: 29771 + - uid: 29843 components: - pos: -24.5,-48.5 parent: 2 type: Transform - - uid: 29772 + - uid: 29844 components: - pos: -26.5,-48.5 parent: 2 type: Transform - - uid: 29773 + - uid: 29845 components: - pos: -25.5,-48.5 parent: 2 type: Transform - - uid: 29774 + - uid: 29846 components: - pos: -26.5,-50.5 parent: 2 type: Transform - - uid: 29775 + - uid: 29847 components: - pos: -27.5,-50.5 parent: 2 type: Transform - - uid: 29776 + - uid: 29848 components: - pos: -28.5,-50.5 parent: 2 type: Transform - - uid: 29777 + - uid: 29849 components: - pos: -28.5,-49.5 parent: 2 type: Transform - - uid: 29778 + - uid: 29850 components: - pos: -28.5,-48.5 parent: 2 type: Transform - - uid: 29779 + - uid: 29851 components: - pos: -28.5,-46.5 parent: 2 type: Transform - - uid: 29780 + - uid: 29852 components: - pos: -28.5,-45.5 parent: 2 type: Transform - - uid: 29781 + - uid: 29853 components: - pos: -29.5,-45.5 parent: 2 type: Transform - - uid: 29782 + - uid: 29854 components: - pos: -29.5,-42.5 parent: 2 type: Transform - - uid: 29783 + - uid: 29855 components: - pos: -28.5,-42.5 parent: 2 type: Transform - - uid: 29784 + - uid: 29856 components: - pos: -27.5,-42.5 parent: 2 type: Transform - - uid: 29785 + - uid: 29857 components: - pos: -26.5,-42.5 parent: 2 type: Transform - - uid: 29786 + - uid: 29858 components: - pos: -26.5,-43.5 parent: 2 type: Transform - - uid: 29787 + - uid: 29859 components: - pos: -26.5,-44.5 parent: 2 type: Transform - - uid: 29788 + - uid: 29860 components: - pos: -26.5,-45.5 parent: 2 type: Transform - - uid: 29789 + - uid: 29861 components: - pos: -30.5,-45.5 parent: 2 type: Transform - - uid: 29790 + - uid: 29862 components: - pos: -29.5,-49.5 parent: 2 type: Transform - - uid: 29791 + - uid: 29863 components: - pos: -31.5,-49.5 parent: 2 type: Transform - - uid: 29792 + - uid: 29864 components: - pos: -27.5,-39.5 parent: 2 type: Transform - - uid: 29793 + - uid: 29865 components: - pos: -27.5,-40.5 parent: 2 type: Transform - - uid: 29794 + - uid: 29866 components: - pos: -23.5,-52.5 parent: 2 type: Transform - - uid: 29795 + - uid: 29867 components: - pos: -24.5,-56.5 parent: 2 type: Transform - - uid: 29796 + - uid: 29868 components: - pos: -25.5,-56.5 parent: 2 type: Transform - - uid: 29797 + - uid: 29869 components: - pos: -26.5,-56.5 parent: 2 type: Transform - - uid: 29798 + - uid: 29870 components: - pos: -27.5,-56.5 parent: 2 type: Transform - - uid: 29799 + - uid: 29871 components: - pos: -29.5,-56.5 parent: 2 type: Transform - - uid: 29800 + - uid: 29872 components: - pos: -30.5,-56.5 parent: 2 type: Transform - - uid: 29801 + - uid: 29873 components: - pos: -30.5,-57.5 parent: 2 type: Transform - - uid: 29802 + - uid: 29874 components: - pos: -52.5,-11.5 parent: 2 type: Transform - - uid: 29803 + - uid: 29875 components: - pos: -52.5,-10.5 parent: 2 type: Transform - - uid: 29804 + - uid: 29876 components: - pos: -52.5,-9.5 parent: 2 type: Transform - - uid: 29805 + - uid: 29877 components: - pos: -52.5,-7.5 parent: 2 type: Transform - - uid: 29806 + - uid: 29878 components: - pos: -51.5,-7.5 parent: 2 type: Transform - - uid: 29807 + - uid: 29879 components: - pos: -50.5,-7.5 parent: 2 type: Transform - - uid: 29808 + - uid: 29880 components: - pos: -27.5,-62.5 parent: 2 type: Transform - - uid: 29809 + - uid: 29881 components: - pos: -29.5,-60.5 parent: 2 type: Transform - - uid: 29810 + - uid: 29882 components: - pos: -29.5,-61.5 parent: 2 type: Transform - - uid: 29811 + - uid: 29883 components: - pos: -27.5,-61.5 parent: 2 type: Transform - - uid: 29812 + - uid: 29884 components: - pos: -29.5,-62.5 parent: 2 type: Transform - - uid: 29813 - components: - - pos: -29.5,-63.5 - parent: 2 - type: Transform - - uid: 29814 + - uid: 29886 components: - pos: -29.5,-64.5 parent: 2 type: Transform - - uid: 29815 + - uid: 29887 components: - pos: -28.5,-64.5 parent: 2 type: Transform - - uid: 29816 + - uid: 29888 components: - pos: -28.5,-65.5 parent: 2 type: Transform - - uid: 29817 + - uid: 29889 components: - pos: -27.5,-65.5 parent: 2 type: Transform - - uid: 29818 + - uid: 29890 components: - pos: -25.5,-63.5 parent: 2 type: Transform - - uid: 29819 + - uid: 29891 components: - pos: -24.5,-63.5 parent: 2 type: Transform - - uid: 29820 + - uid: 29892 components: - pos: -24.5,-65.5 parent: 2 type: Transform - - uid: 29821 + - uid: 29893 components: - pos: -27.5,-68.5 parent: 2 type: Transform - - uid: 29822 + - uid: 29894 components: - pos: -28.5,-68.5 parent: 2 type: Transform - - uid: 29823 + - uid: 29895 components: - pos: -29.5,-68.5 parent: 2 type: Transform - - uid: 29824 + - uid: 29896 components: - pos: -29.5,-67.5 parent: 2 type: Transform - - uid: 29825 + - uid: 29897 components: - pos: -31.5,-67.5 parent: 2 type: Transform - - uid: 29826 + - uid: 29898 components: - pos: -30.5,-64.5 parent: 2 type: Transform - - uid: 29827 + - uid: 29899 components: - pos: -30.5,-65.5 parent: 2 type: Transform - - uid: 29828 + - uid: 29900 components: - pos: -32.5,-65.5 parent: 2 type: Transform - - uid: 29829 + - uid: 29901 components: - pos: -32.5,-64.5 parent: 2 type: Transform - - uid: 29830 + - uid: 29902 components: - pos: -33.5,-64.5 parent: 2 type: Transform - - uid: 29831 + - uid: 29903 components: - pos: -55.5,-69.5 parent: 2 type: Transform - - uid: 29832 + - uid: 29904 components: - pos: -54.5,-69.5 parent: 2 type: Transform - - uid: 29833 + - uid: 29905 components: - pos: -52.5,-69.5 parent: 2 type: Transform - - uid: 29834 + - uid: 29906 components: - pos: -52.5,-70.5 parent: 2 type: Transform - - uid: 29835 + - uid: 29907 components: - pos: -52.5,-71.5 parent: 2 type: Transform - - uid: 29836 + - uid: 29908 components: - pos: -51.5,-71.5 parent: 2 type: Transform - - uid: 29837 + - uid: 29909 components: - pos: -51.5,-72.5 parent: 2 type: Transform - - uid: 29838 + - uid: 29910 components: - pos: -50.5,-72.5 parent: 2 type: Transform - - uid: 29839 + - uid: 29911 components: - pos: -50.5,-73.5 parent: 2 type: Transform - - uid: 29840 + - uid: 29912 components: - pos: -50.5,-74.5 parent: 2 type: Transform - - uid: 29841 + - uid: 29913 components: - pos: -50.5,-75.5 parent: 2 type: Transform - - uid: 29842 + - uid: 29914 components: - pos: -58.5,-80.5 parent: 2 type: Transform - - uid: 29843 + - uid: 29915 components: - pos: -58.5,-72.5 parent: 2 type: Transform - - uid: 29844 + - uid: 29916 components: - pos: -49.5,-75.5 parent: 2 type: Transform - - uid: 29845 + - uid: 29917 components: - pos: -48.5,-75.5 parent: 2 type: Transform - - uid: 29846 + - uid: 29918 components: - pos: -48.5,-72.5 parent: 2 type: Transform - - uid: 29847 + - uid: 29919 components: - pos: -48.5,-71.5 parent: 2 type: Transform - - uid: 29848 + - uid: 29920 components: - pos: -47.5,-71.5 parent: 2 type: Transform - - uid: 29849 + - uid: 29921 components: - pos: -46.5,-71.5 parent: 2 type: Transform - - uid: 29850 + - uid: 29922 components: - pos: -46.5,-70.5 parent: 2 type: Transform - - uid: 29851 + - uid: 29923 components: - pos: -45.5,-70.5 parent: 2 type: Transform - - uid: 29852 + - uid: 29924 components: - pos: -45.5,-69.5 parent: 2 type: Transform - - uid: 29853 + - uid: 29925 components: - pos: -44.5,-69.5 parent: 2 type: Transform - - uid: 29854 + - uid: 29926 components: - pos: -43.5,-69.5 parent: 2 type: Transform - - uid: 29855 + - uid: 29927 components: - pos: -40.5,-68.5 parent: 2 type: Transform - - uid: 29856 + - uid: 29928 components: - pos: -40.5,-67.5 parent: 2 type: Transform - - uid: 29857 + - uid: 29929 components: - pos: -40.5,-69.5 parent: 2 type: Transform - - uid: 29858 + - uid: 29930 components: - pos: -39.5,-69.5 parent: 2 type: Transform - - uid: 29859 + - uid: 29931 components: - pos: -38.5,-69.5 parent: 2 type: Transform - - uid: 29860 + - uid: 29932 components: - pos: -38.5,-70.5 parent: 2 type: Transform - - uid: 29861 + - uid: 29933 components: - pos: -37.5,-70.5 parent: 2 type: Transform - - uid: 29862 + - uid: 29934 components: - pos: -37.5,-71.5 parent: 2 type: Transform - - uid: 29863 + - uid: 29935 components: - pos: -36.5,-71.5 parent: 2 type: Transform - - uid: 29864 + - uid: 29936 components: - pos: -35.5,-71.5 parent: 2 type: Transform - - uid: 29865 + - uid: 29937 components: - pos: -35.5,-72.5 parent: 2 type: Transform - - uid: 29866 + - uid: 29938 components: - pos: -43.5,-68.5 parent: 2 type: Transform - - uid: 29867 + - uid: 29939 components: - pos: -40.5,-65.5 parent: 2 type: Transform - - uid: 29868 + - uid: 29940 components: - pos: -41.5,-65.5 parent: 2 type: Transform - - uid: 29869 + - uid: 29941 components: - pos: -42.5,-65.5 parent: 2 type: Transform - - uid: 29870 + - uid: 29942 components: - pos: -43.5,-65.5 parent: 2 type: Transform - - uid: 29871 + - uid: 29943 components: - pos: -44.5,-65.5 parent: 2 type: Transform - - uid: 29872 + - uid: 29944 components: - pos: -45.5,-65.5 parent: 2 type: Transform - - uid: 29873 + - uid: 29945 components: - pos: -46.5,-65.5 parent: 2 type: Transform - - uid: 29874 + - uid: 29946 components: - pos: -47.5,-65.5 parent: 2 type: Transform - - uid: 29875 + - uid: 29947 components: - pos: -48.5,-67.5 parent: 2 type: Transform - - uid: 29876 + - uid: 29948 components: - pos: -48.5,-68.5 parent: 2 type: Transform - - uid: 29877 + - uid: 29949 components: - pos: -48.5,-69.5 parent: 2 type: Transform - - uid: 29878 + - uid: 29950 components: - pos: -48.5,-70.5 parent: 2 type: Transform - - uid: 29879 + - uid: 29951 components: - pos: -48.5,-65.5 parent: 2 type: Transform - - uid: 29880 + - uid: 29952 components: - pos: -51.5,-69.5 parent: 2 type: Transform - - uid: 29881 + - uid: 29953 components: - pos: -51.5,-68.5 parent: 2 type: Transform - - uid: 29882 + - uid: 29954 components: - pos: -35.5,-63.5 parent: 2 type: Transform - - uid: 29883 + - uid: 29955 components: - pos: -35.5,-64.5 parent: 2 type: Transform - - uid: 29884 + - uid: 29956 components: - pos: -36.5,-66.5 parent: 2 type: Transform - - uid: 29885 + - uid: 29957 components: - pos: -36.5,-67.5 parent: 2 type: Transform - - uid: 29886 + - uid: 29958 components: - pos: -35.5,-67.5 parent: 2 type: Transform - - uid: 29887 + - uid: 29959 components: - pos: -35.5,-68.5 parent: 2 type: Transform - - uid: 29888 + - uid: 29960 components: - pos: -34.5,-68.5 parent: 2 type: Transform - - uid: 29889 + - uid: 29961 components: - pos: -38.5,-66.5 parent: 2 type: Transform - - uid: 29890 + - uid: 29962 components: - pos: -35.5,-69.5 parent: 2 type: Transform - - uid: 29891 + - uid: 29963 components: - pos: -33.5,-68.5 parent: 2 type: Transform - - uid: 29892 + - uid: 29964 components: - pos: -32.5,-68.5 parent: 2 type: Transform - - uid: 29893 + - uid: 29965 components: - pos: -31.5,-68.5 parent: 2 type: Transform - - uid: 29894 + - uid: 29966 components: - pos: -42.5,-63.5 parent: 2 type: Transform - - uid: 29895 + - uid: 29967 components: - pos: -46.5,-64.5 parent: 2 type: Transform - - uid: 29896 + - uid: 29968 components: - pos: -40.5,-73.5 parent: 2 type: Transform - - uid: 29897 + - uid: 29969 components: - pos: -44.5,-73.5 parent: 2 type: Transform - - uid: 29898 + - uid: 29970 components: - pos: -39.5,-74.5 parent: 2 type: Transform - - uid: 29899 + - uid: 29971 components: - pos: -42.5,-73.5 parent: 2 type: Transform - - uid: 29900 + - uid: 29972 components: - pos: -41.5,-73.5 parent: 2 type: Transform - - uid: 29901 + - uid: 29973 components: - pos: -43.5,-73.5 parent: 2 type: Transform - - uid: 29902 + - uid: 29974 components: - pos: -44.5,-74.5 parent: 2 type: Transform - - uid: 29903 + - uid: 29975 components: - pos: -39.5,-73.5 parent: 2 type: Transform - - uid: 29904 + - uid: 29976 components: - pos: -23.5,-63.5 parent: 2 type: Transform - - uid: 29905 + - uid: 29977 components: - rot: 3.141592653589793 rad pos: -30.5,-53.5 parent: 2 type: Transform - - uid: 29906 + - uid: 29978 components: - rot: 1.5707963267948966 rad pos: -29.5,-52.5 parent: 2 type: Transform - - uid: 29907 + - uid: 29979 components: - rot: 1.5707963267948966 rad pos: -29.5,-53.5 parent: 2 type: Transform - - uid: 29908 + - uid: 29980 components: - rot: 1.5707963267948966 rad pos: -29.5,-54.5 parent: 2 type: Transform - - uid: 29909 + - uid: 29981 components: - pos: -26.5,-62.5 parent: 2 type: Transform - - uid: 29910 + - uid: 29982 components: - pos: -45.5,-68.5 parent: 2 type: Transform - - uid: 29911 + - uid: 29983 components: - pos: -27.5,-59.5 parent: 2 type: Transform - - uid: 29912 + - uid: 29984 components: - pos: -37.5,-47.5 parent: 2 type: Transform - - uid: 29913 + - uid: 29985 components: - pos: -17.5,31.5 parent: 2 type: Transform - - uid: 29914 + - uid: 29986 components: - pos: -26.5,-63.5 parent: 2 type: Transform - - uid: 29915 + - uid: 29987 components: - pos: -22.5,-63.5 parent: 2 type: Transform - - uid: 29916 + - uid: 29988 components: - pos: 58.5,2.5 parent: 2 type: Transform - - uid: 29917 + - uid: 29989 components: - rot: 3.141592653589793 rad pos: -27.5,-57.5 parent: 2 type: Transform - - uid: 29918 + - uid: 29990 components: - pos: -33.5,-24.5 parent: 2 type: Transform - - uid: 29919 + - uid: 29991 components: - pos: -34.5,-24.5 parent: 2 type: Transform - - uid: 29920 + - uid: 29992 components: - pos: -34.5,-22.5 parent: 2 type: Transform - - uid: 29921 + - uid: 29993 components: - pos: -34.5,-23.5 parent: 2 type: Transform - - uid: 29922 + - uid: 29994 components: - rot: 1.5707963267948966 rad pos: 52.5,54.5 parent: 2 type: Transform - - uid: 29923 + - uid: 29995 components: - rot: -1.5707963267948966 rad pos: -9.5,33.5 parent: 2 type: Transform - - uid: 29924 + - uid: 29996 components: - rot: -1.5707963267948966 rad pos: -10.5,33.5 parent: 2 type: Transform - - uid: 29925 + - uid: 29997 components: - rot: -1.5707963267948966 rad pos: -9.5,30.5 parent: 2 type: Transform - - uid: 29926 + - uid: 29998 components: - rot: -1.5707963267948966 rad pos: -10.5,30.5 parent: 2 type: Transform - - uid: 29927 + - uid: 29999 components: - rot: -1.5707963267948966 rad pos: -11.5,30.5 parent: 2 type: Transform - - uid: 29928 + - uid: 30000 components: - rot: -1.5707963267948966 rad pos: -12.5,30.5 parent: 2 type: Transform - - uid: 29929 + - uid: 30001 components: - pos: -11.5,25.5 parent: 2 type: Transform - - uid: 29930 + - uid: 30002 components: - pos: -12.5,25.5 parent: 2 type: Transform - - uid: 29931 + - uid: 30003 components: - rot: -1.5707963267948966 rad pos: -10.5,34.5 parent: 2 type: Transform - - uid: 29932 + - uid: 30004 components: - pos: -21.5,16.5 parent: 2 type: Transform - - uid: 29933 + - uid: 30005 components: - pos: -21.5,17.5 parent: 2 type: Transform - - uid: 29934 + - uid: 30006 components: - pos: -21.5,18.5 parent: 2 type: Transform - - uid: 29935 + - uid: 30007 components: - pos: -21.5,19.5 parent: 2 type: Transform - - uid: 29936 + - uid: 30008 components: - pos: -17.5,15.5 parent: 2 type: Transform - - uid: 29937 + - uid: 30009 components: - pos: -17.5,16.5 parent: 2 type: Transform - - uid: 29938 + - uid: 30010 components: - pos: -17.5,17.5 parent: 2 type: Transform - - uid: 29939 + - uid: 30011 components: - pos: -17.5,18.5 parent: 2 type: Transform - - uid: 29940 + - uid: 30012 components: - pos: -21.5,22.5 parent: 2 type: Transform - - uid: 29941 + - uid: 30013 components: - pos: -21.5,25.5 parent: 2 type: Transform - - uid: 29942 + - uid: 30014 components: - rot: -1.5707963267948966 rad pos: -13.5,22.5 parent: 2 type: Transform - - uid: 29943 + - uid: 30015 components: - rot: -1.5707963267948966 rad pos: -17.5,27.5 parent: 2 type: Transform - - uid: 29944 + - uid: 30016 components: - pos: -17.5,22.5 parent: 2 type: Transform - - uid: 29945 + - uid: 30017 components: - pos: -17.5,21.5 parent: 2 type: Transform - - uid: 29946 + - uid: 30018 components: - pos: -17.5,20.5 parent: 2 type: Transform - - uid: 29947 + - uid: 30019 components: - pos: -23.5,16.5 parent: 2 type: Transform - - uid: 29948 + - uid: 30020 components: - pos: -26.5,17.5 parent: 2 type: Transform - - uid: 29949 + - uid: 30021 components: - pos: -26.5,26.5 parent: 2 type: Transform - - uid: 29950 + - uid: 30022 components: - pos: -25.5,26.5 parent: 2 type: Transform - - uid: 29951 + - uid: 30023 components: - pos: -26.5,20.5 parent: 2 type: Transform - - uid: 29952 + - uid: 30024 components: - pos: -27.5,26.5 parent: 2 type: Transform - - uid: 29953 + - uid: 30025 components: - pos: -28.5,26.5 parent: 2 type: Transform - - uid: 29954 + - uid: 30026 components: - pos: -26.5,24.5 parent: 2 type: Transform - - uid: 29955 + - uid: 30027 components: - rot: 3.141592653589793 rad pos: -27.5,20.5 parent: 2 type: Transform - - uid: 29956 + - uid: 30028 components: - rot: 3.141592653589793 rad pos: -28.5,20.5 parent: 2 type: Transform - - uid: 29957 + - uid: 30029 components: - rot: 3.141592653589793 rad pos: -29.5,20.5 parent: 2 type: Transform - - uid: 29958 + - uid: 30030 components: - rot: 3.141592653589793 rad pos: -29.5,24.5 parent: 2 type: Transform - - uid: 29959 + - uid: 30031 components: - pos: -26.5,16.5 parent: 2 type: Transform - - uid: 29960 + - uid: 30032 components: - pos: -27.5,16.5 parent: 2 type: Transform - - uid: 29961 + - uid: 30033 components: - pos: -28.5,16.5 parent: 2 type: Transform - - uid: 29962 + - uid: 30034 components: - pos: -29.5,16.5 parent: 2 type: Transform - - uid: 29963 + - uid: 30035 components: - pos: -22.5,14.5 parent: 2 type: Transform - - uid: 29964 + - uid: 30036 components: - pos: -23.5,14.5 parent: 2 type: Transform - - uid: 29965 + - uid: 30037 components: - pos: -24.5,16.5 parent: 2 type: Transform - - uid: 29966 + - uid: 30038 components: - pos: -23.5,26.5 parent: 2 type: Transform - - uid: 29967 + - uid: 30039 components: - pos: -36.5,34.5 parent: 2 type: Transform - - uid: 29968 + - uid: 30040 components: - pos: -24.5,15.5 parent: 2 type: Transform - - uid: 29969 + - uid: 30041 components: - pos: -34.5,16.5 parent: 2 type: Transform - - uid: 29970 + - uid: 30042 components: - pos: -35.5,16.5 parent: 2 type: Transform - - uid: 29971 + - uid: 30043 components: - pos: -35.5,17.5 parent: 2 type: Transform - - uid: 29972 + - uid: 30044 components: - pos: -35.5,23.5 parent: 2 type: Transform - - uid: 29973 + - uid: 30045 components: - pos: -35.5,24.5 parent: 2 type: Transform - - uid: 29974 + - uid: 30046 components: - pos: -33.5,16.5 parent: 2 type: Transform - - uid: 29975 + - uid: 30047 components: - pos: -32.5,16.5 parent: 2 type: Transform - - uid: 29976 + - uid: 30048 components: - pos: -31.5,16.5 parent: 2 type: Transform - - uid: 29977 + - uid: 30049 components: - pos: -30.5,16.5 parent: 2 type: Transform - - uid: 29978 + - uid: 30050 components: - rot: 1.5707963267948966 rad pos: -36.5,17.5 parent: 2 type: Transform - - uid: 29979 + - uid: 30051 components: - rot: 1.5707963267948966 rad pos: -37.5,17.5 parent: 2 type: Transform - - uid: 29980 + - uid: 30052 components: - rot: 1.5707963267948966 rad pos: -38.5,17.5 parent: 2 type: Transform - - uid: 29981 + - uid: 30053 components: - rot: 1.5707963267948966 rad pos: -39.5,17.5 parent: 2 type: Transform - - uid: 29982 + - uid: 30054 components: - rot: 1.5707963267948966 rad pos: -40.5,17.5 parent: 2 type: Transform - - uid: 29983 + - uid: 30055 components: - pos: -38.5,34.5 parent: 2 type: Transform - - uid: 29984 + - uid: 30056 components: - pos: -39.5,32.5 parent: 2 type: Transform - - uid: 29985 + - uid: 30057 components: - pos: -39.5,33.5 parent: 2 type: Transform - - uid: 29986 + - uid: 30058 components: - rot: 1.5707963267948966 rad pos: -40.5,26.5 parent: 2 type: Transform - - uid: 29987 + - uid: 30059 components: - rot: 1.5707963267948966 rad pos: -42.5,26.5 parent: 2 type: Transform - - uid: 29988 + - uid: 30060 components: - rot: 1.5707963267948966 rad pos: -43.5,17.5 parent: 2 type: Transform - - uid: 29989 + - uid: 30061 components: - rot: 1.5707963267948966 rad pos: -43.5,16.5 parent: 2 type: Transform - - uid: 29990 + - uid: 30062 components: - pos: -51.5,21.5 parent: 2 type: Transform - - uid: 29991 + - uid: 30063 components: - rot: 1.5707963267948966 rad pos: -47.5,27.5 parent: 2 type: Transform - - uid: 29992 + - uid: 30064 components: - rot: 1.5707963267948966 rad pos: -48.5,27.5 parent: 2 type: Transform - - uid: 29993 + - uid: 30065 components: - rot: 1.5707963267948966 rad pos: -44.5,27.5 parent: 2 type: Transform - - uid: 29994 + - uid: 30066 components: - rot: 1.5707963267948966 rad pos: -43.5,27.5 parent: 2 type: Transform - - uid: 29995 + - uid: 30067 components: - rot: 1.5707963267948966 rad pos: -43.5,26.5 parent: 2 type: Transform - - uid: 29996 + - uid: 30068 components: - pos: -17.5,35.5 parent: 2 type: Transform - - uid: 29997 + - uid: 30069 components: - rot: -1.5707963267948966 rad pos: -18.5,36.5 parent: 2 type: Transform - - uid: 29998 + - uid: 30070 components: - pos: -17.5,33.5 parent: 2 type: Transform - - uid: 29999 + - uid: 30071 components: - pos: -13.5,30.5 parent: 2 type: Transform - - uid: 30000 + - uid: 30072 components: - pos: -13.5,29.5 parent: 2 type: Transform - - uid: 30001 + - uid: 30073 components: - pos: -13.5,28.5 parent: 2 type: Transform - - uid: 30002 + - uid: 30074 components: - pos: -14.5,28.5 parent: 2 type: Transform - - uid: 30003 + - uid: 30075 components: - pos: -16.5,28.5 parent: 2 type: Transform - - uid: 30004 + - uid: 30076 components: - pos: 51.5,41.5 parent: 2 type: Transform - - uid: 30005 + - uid: 30077 components: - pos: -22.5,26.5 parent: 2 type: Transform - - uid: 30006 + - uid: 30078 components: - pos: -24.5,14.5 parent: 2 type: Transform - - uid: 30007 + - uid: 30079 components: - pos: -27.5,11.5 parent: 2 type: Transform - - uid: 30008 + - uid: 30080 components: - pos: -28.5,11.5 parent: 2 type: Transform - - uid: 30009 + - uid: 30081 components: - pos: -29.5,26.5 parent: 2 type: Transform - - uid: 30010 + - uid: 30082 components: - rot: 3.141592653589793 rad pos: -41.5,13.5 parent: 2 type: Transform - - uid: 30011 + - uid: 30083 components: - pos: -28.5,14.5 parent: 2 type: Transform - - uid: 30012 + - uid: 30084 components: - pos: -28.5,13.5 parent: 2 type: Transform - - uid: 30013 + - uid: 30085 components: - pos: -28.5,15.5 parent: 2 type: Transform - - uid: 30014 + - uid: 30086 components: - rot: 1.5707963267948966 rad pos: -40.5,36.5 parent: 2 type: Transform - - uid: 30015 + - uid: 30087 components: - rot: 1.5707963267948966 rad pos: -41.5,36.5 parent: 2 type: Transform - - uid: 30016 + - uid: 30088 components: - rot: 1.5707963267948966 rad pos: -42.5,36.5 parent: 2 type: Transform - - uid: 30017 + - uid: 30089 components: - rot: 1.5707963267948966 rad pos: -43.5,36.5 parent: 2 type: Transform - - uid: 30018 + - uid: 30090 components: - rot: 1.5707963267948966 rad pos: -44.5,36.5 parent: 2 type: Transform - - uid: 30019 + - uid: 30091 components: - rot: 1.5707963267948966 rad pos: -44.5,37.5 parent: 2 type: Transform - - uid: 30020 + - uid: 30092 components: - rot: 1.5707963267948966 rad pos: -47.5,37.5 parent: 2 type: Transform - - uid: 30021 + - uid: 30093 components: - rot: 1.5707963267948966 rad pos: -39.5,35.5 parent: 2 type: Transform - - uid: 30022 + - uid: 30094 components: - rot: 1.5707963267948966 rad pos: -39.5,36.5 parent: 2 type: Transform - - uid: 30023 + - uid: 30095 components: - pos: -37.5,26.5 parent: 2 type: Transform - - uid: 30024 + - uid: 30096 components: - pos: -36.5,26.5 parent: 2 type: Transform - - uid: 30025 + - uid: 30097 components: - pos: -25.5,38.5 parent: 2 type: Transform - - uid: 30026 + - uid: 30098 components: - pos: -38.5,26.5 parent: 2 type: Transform - - uid: 30027 + - uid: 30099 components: - pos: -39.5,26.5 parent: 2 type: Transform - - uid: 30028 + - uid: 30100 components: - pos: -39.5,27.5 parent: 2 type: Transform - - uid: 30029 + - uid: 30101 components: - pos: -39.5,28.5 parent: 2 type: Transform - - uid: 30030 + - uid: 30102 components: - pos: -39.5,30.5 parent: 2 type: Transform - - uid: 30031 + - uid: 30103 components: - pos: -39.5,34.5 parent: 2 type: Transform - - uid: 30032 + - uid: 30104 components: - pos: -30.5,-1.5 parent: 2 type: Transform - - uid: 30033 + - uid: 30105 components: - pos: -31.5,-1.5 parent: 2 type: Transform - - uid: 30034 + - uid: 30106 components: - pos: -32.5,-1.5 parent: 2 type: Transform - - uid: 30035 + - uid: 30107 components: - pos: -32.5,-2.5 parent: 2 type: Transform - - uid: 30036 + - uid: 30108 components: - pos: -29.5,2.5 parent: 2 type: Transform - - uid: 30037 + - uid: 30109 components: - pos: -30.5,2.5 parent: 2 type: Transform - - uid: 30038 + - uid: 30110 components: - pos: -31.5,2.5 parent: 2 type: Transform - - uid: 30039 + - uid: 30111 components: - pos: -32.5,2.5 parent: 2 type: Transform - - uid: 30040 + - uid: 30112 components: - pos: -33.5,2.5 parent: 2 type: Transform - - uid: 30041 + - uid: 30113 components: - pos: -34.5,-1.5 parent: 2 type: Transform - - uid: 30042 + - uid: 30114 components: - rot: 3.141592653589793 rad pos: -25.5,16.5 parent: 2 type: Transform - - uid: 30043 + - uid: 30115 components: - pos: -22.5,16.5 parent: 2 type: Transform - - uid: 30044 + - uid: 30116 components: - pos: -16.5,22.5 parent: 2 type: Transform - - uid: 30045 + - uid: 30117 components: - pos: -15.5,22.5 parent: 2 type: Transform - - uid: 30046 + - uid: 30118 components: - pos: -14.5,22.5 parent: 2 type: Transform - - uid: 30047 + - uid: 30119 components: - rot: -1.5707963267948966 rad pos: -13.5,24.5 parent: 2 type: Transform - - uid: 30048 + - uid: 30120 components: - pos: -13.5,25.5 parent: 2 type: Transform - - uid: 30049 + - uid: 30121 components: - rot: -1.5707963267948966 rad pos: -13.5,24.5 parent: 2 type: Transform - - uid: 30050 + - uid: 30122 components: - rot: 3.141592653589793 rad pos: -48.5,17.5 parent: 2 type: Transform - - uid: 30051 + - uid: 30123 components: - rot: 3.141592653589793 rad pos: -47.5,17.5 parent: 2 type: Transform - - uid: 30052 + - uid: 30124 components: - rot: 3.141592653589793 rad pos: -29.5,-4.5 parent: 2 type: Transform - - uid: 30053 + - uid: 30125 components: - rot: 3.141592653589793 rad pos: -29.5,-6.5 parent: 2 type: Transform - - uid: 30054 + - uid: 30126 components: - rot: 3.141592653589793 rad pos: -29.5,-8.5 parent: 2 type: Transform - - uid: 30055 + - uid: 30127 components: - rot: 3.141592653589793 rad pos: -28.5,-8.5 parent: 2 type: Transform - - uid: 30056 + - uid: 30128 components: - rot: 3.141592653589793 rad pos: -27.5,-8.5 parent: 2 type: Transform - - uid: 30057 + - uid: 30129 components: - rot: 3.141592653589793 rad pos: -28.5,-4.5 parent: 2 type: Transform - - uid: 30058 + - uid: 30130 components: - rot: -1.5707963267948966 rad pos: -35.5,-1.5 parent: 2 type: Transform - - uid: 30059 + - uid: 30131 components: - rot: -1.5707963267948966 rad pos: -36.5,-1.5 parent: 2 type: Transform - - uid: 30060 + - uid: 30132 components: - rot: -1.5707963267948966 rad pos: -38.5,-1.5 parent: 2 type: Transform - - uid: 30061 + - uid: 30133 components: - rot: -1.5707963267948966 rad pos: -39.5,-1.5 parent: 2 type: Transform - - uid: 30062 + - uid: 30134 components: - rot: -1.5707963267948966 rad pos: -40.5,-1.5 parent: 2 type: Transform - - uid: 30063 + - uid: 30135 components: - rot: -1.5707963267948966 rad pos: -41.5,-1.5 parent: 2 type: Transform - - uid: 30064 + - uid: 30136 components: - rot: -1.5707963267948966 rad pos: -42.5,-1.5 parent: 2 type: Transform - - uid: 30065 + - uid: 30137 components: - pos: -42.5,2.5 parent: 2 type: Transform - - uid: 30066 + - uid: 30138 components: - pos: -43.5,2.5 parent: 2 type: Transform - - uid: 30067 + - uid: 30139 components: - pos: -42.5,3.5 parent: 2 type: Transform - - uid: 30068 + - uid: 30140 components: - pos: -42.5,4.5 parent: 2 type: Transform - - uid: 30069 + - uid: 30141 components: - pos: -42.5,5.5 parent: 2 type: Transform - - uid: 30070 + - uid: 30142 components: - pos: -42.5,6.5 parent: 2 type: Transform - - uid: 30071 + - uid: 30143 components: - pos: -42.5,7.5 parent: 2 type: Transform - - uid: 30072 + - uid: 30144 components: - pos: -41.5,11.5 parent: 2 type: Transform - - uid: 30073 + - uid: 30145 components: - pos: -41.5,10.5 parent: 2 type: Transform - - uid: 30074 + - uid: 30146 components: - pos: -41.5,9.5 parent: 2 type: Transform - - uid: 30075 + - uid: 30147 components: - pos: -41.5,8.5 parent: 2 type: Transform - - uid: 30076 + - uid: 30148 components: - pos: -34.5,12.5 parent: 2 type: Transform - - uid: 30077 + - uid: 30149 components: - pos: -34.5,11.5 parent: 2 type: Transform - - uid: 30078 + - uid: 30150 components: - pos: -34.5,10.5 parent: 2 type: Transform - - uid: 30079 + - uid: 30151 components: - pos: -33.5,3.5 parent: 2 type: Transform - - uid: 30080 + - uid: 30152 components: - pos: -33.5,4.5 parent: 2 type: Transform - - uid: 30081 + - uid: 30153 components: - pos: -33.5,5.5 parent: 2 type: Transform - - uid: 30082 + - uid: 30154 components: - pos: -33.5,6.5 parent: 2 type: Transform - - uid: 30083 + - uid: 30155 components: - pos: -33.5,7.5 parent: 2 type: Transform - - uid: 30084 + - uid: 30156 components: - pos: -43.5,15.5 parent: 2 type: Transform - - uid: 30085 + - uid: 30157 components: - pos: -33.5,12.5 parent: 2 type: Transform - - uid: 30086 + - uid: 30158 components: - pos: -42.5,12.5 parent: 2 type: Transform - - uid: 30087 + - uid: 30159 components: - pos: -32.5,12.5 parent: 2 type: Transform - - uid: 30088 + - uid: 30160 components: - pos: -41.5,7.5 parent: 2 type: Transform - - uid: 30089 + - uid: 30161 components: - pos: -40.5,7.5 parent: 2 type: Transform - - uid: 30090 + - uid: 30162 components: - pos: -35.5,7.5 parent: 2 type: Transform - - uid: 30091 + - uid: 30163 components: - pos: -34.5,7.5 parent: 2 type: Transform - - uid: 30092 + - uid: 30164 components: - rot: 3.141592653589793 rad pos: -41.5,14.5 parent: 2 type: Transform - - uid: 30093 + - uid: 30165 components: - pos: -43.5,12.5 parent: 2 type: Transform - - uid: 30094 + - uid: 30166 components: - pos: -43.5,13.5 parent: 2 type: Transform - - uid: 30095 + - uid: 30167 components: - pos: -32.5,15.5 parent: 2 type: Transform - - uid: 30096 + - uid: 30168 components: - pos: -41.5,12.5 parent: 2 type: Transform - - uid: 30097 + - uid: 30169 components: - pos: -29.5,11.5 parent: 2 type: Transform - - uid: 30098 + - uid: 30170 components: - pos: -34.5,8.5 parent: 2 type: Transform - - uid: 30099 + - uid: 30171 components: - pos: -33.5,-1.5 parent: 2 type: Transform - - uid: 30100 + - uid: 30172 components: - pos: -34.5,9.5 parent: 2 type: Transform - - uid: 30101 + - uid: 30173 components: - rot: 3.141592653589793 rad pos: -32.5,13.5 parent: 2 type: Transform - - uid: 30102 + - uid: 30174 components: - rot: 3.141592653589793 rad pos: -41.5,13.5 parent: 2 type: Transform - - uid: 30103 + - uid: 30175 components: - rot: 3.141592653589793 rad pos: -41.5,16.5 parent: 2 type: Transform - - uid: 30104 + - uid: 30176 components: - rot: 3.141592653589793 rad pos: -41.5,14.5 parent: 2 type: Transform - - uid: 30105 + - uid: 30177 components: - pos: -43.5,-1.5 parent: 2 type: Transform - - uid: 30106 + - uid: 30178 components: - pos: -44.5,2.5 parent: 2 type: Transform - - uid: 30107 + - uid: 30179 components: - pos: -44.5,-1.5 parent: 2 type: Transform - - uid: 30108 + - uid: 30180 components: - pos: -32.5,11.5 parent: 2 type: Transform - - uid: 30109 + - uid: 30181 components: - pos: -31.5,11.5 parent: 2 type: Transform - - uid: 30110 + - uid: 30182 components: - rot: -1.5707963267948966 rad pos: -40.5,16.5 parent: 2 type: Transform - - uid: 30111 + - uid: 30183 components: - rot: 3.141592653589793 rad pos: -40.5,16.5 parent: 2 type: Transform - - uid: 30112 + - uid: 30184 components: - rot: -1.5707963267948966 rad pos: -41.5,16.5 parent: 2 type: Transform - - uid: 30113 + - uid: 30185 components: - rot: 3.141592653589793 rad pos: -40.5,17.5 parent: 2 type: Transform - - uid: 30114 + - uid: 30186 components: - pos: -9.5,-19.5 parent: 2 type: Transform - - uid: 30115 + - uid: 30187 components: - pos: -32.5,7.5 parent: 2 type: Transform - - uid: 30116 + - uid: 30188 components: - pos: -31.5,7.5 parent: 2 type: Transform - - uid: 30117 + - uid: 30189 components: - pos: -29.5,7.5 parent: 2 type: Transform - - uid: 30118 + - uid: 30190 components: - rot: 3.141592653589793 rad pos: -41.5,15.5 parent: 2 type: Transform - - uid: 30119 + - uid: 30191 components: - rot: 1.5707963267948966 rad pos: -48.5,2.5 parent: 2 type: Transform - - uid: 30120 + - uid: 30192 components: - rot: 1.5707963267948966 rad pos: -48.5,1.5 parent: 2 type: Transform - - uid: 30121 + - uid: 30193 components: - rot: 1.5707963267948966 rad pos: -48.5,-0.5 parent: 2 type: Transform - - uid: 30122 + - uid: 30194 components: - rot: 1.5707963267948966 rad pos: -48.5,-1.5 parent: 2 type: Transform - - uid: 30123 + - uid: 30195 components: - rot: 1.5707963267948966 rad pos: -46.5,-1.5 parent: 2 type: Transform - - uid: 30124 + - uid: 30196 components: - rot: 1.5707963267948966 rad pos: -45.5,-1.5 parent: 2 type: Transform - - uid: 30125 + - uid: 30197 components: - rot: 1.5707963267948966 rad pos: -47.5,-1.5 parent: 2 type: Transform - - uid: 30126 + - uid: 30198 components: - rot: 1.5707963267948966 rad pos: -49.5,2.5 parent: 2 type: Transform - - uid: 30127 + - uid: 30199 components: - rot: 1.5707963267948966 rad pos: -50.5,2.5 parent: 2 type: Transform - - uid: 30128 + - uid: 30200 components: - rot: 1.5707963267948966 rad pos: -50.5,3.5 parent: 2 type: Transform - - uid: 30129 + - uid: 30201 components: - rot: 1.5707963267948966 rad pos: -50.5,4.5 parent: 2 type: Transform - - uid: 30130 + - uid: 30202 components: - rot: 1.5707963267948966 rad pos: -50.5,5.5 parent: 2 type: Transform - - uid: 30131 + - uid: 30203 components: - rot: 1.5707963267948966 rad pos: -50.5,6.5 parent: 2 type: Transform - - uid: 30132 + - uid: 30204 components: - rot: 1.5707963267948966 rad pos: -50.5,7.5 parent: 2 type: Transform - - uid: 30133 + - uid: 30205 components: - rot: 1.5707963267948966 rad pos: -50.5,8.5 parent: 2 type: Transform - - uid: 30134 + - uid: 30206 components: - rot: 1.5707963267948966 rad pos: -50.5,9.5 parent: 2 type: Transform - - uid: 30135 + - uid: 30207 components: - rot: 1.5707963267948966 rad pos: -49.5,9.5 parent: 2 type: Transform - - uid: 30136 + - uid: 30208 components: - rot: 1.5707963267948966 rad pos: -48.5,9.5 parent: 2 type: Transform - - uid: 30137 + - uid: 30209 components: - rot: 1.5707963267948966 rad pos: -47.5,9.5 parent: 2 type: Transform - - uid: 30138 + - uid: 30210 components: - rot: 1.5707963267948966 rad pos: -44.5,9.5 parent: 2 type: Transform - - uid: 30139 + - uid: 30211 components: - rot: 1.5707963267948966 rad pos: -43.5,9.5 parent: 2 type: Transform - - uid: 30140 + - uid: 30212 components: - rot: 1.5707963267948966 rad pos: -43.5,8.5 parent: 2 type: Transform - - uid: 30141 + - uid: 30213 components: - rot: 1.5707963267948966 rad pos: -43.5,7.5 parent: 2 type: Transform - - uid: 30142 + - uid: 30214 components: - rot: 1.5707963267948966 rad pos: -44.5,10.5 parent: 2 type: Transform - - uid: 30143 + - uid: 30215 components: - rot: 1.5707963267948966 rad pos: -44.5,12.5 parent: 2 type: Transform - - uid: 30144 + - uid: 30216 components: - pos: -50.5,1.5 parent: 2 type: Transform - - uid: 30145 + - uid: 30217 components: - pos: -50.5,0.5 parent: 2 type: Transform - - uid: 30146 + - uid: 30218 components: - pos: -50.5,-0.5 parent: 2 type: Transform - - uid: 30147 + - uid: 30219 components: - pos: -50.5,-1.5 parent: 2 type: Transform - - uid: 30148 + - uid: 30220 components: - pos: -46.5,-3.5 parent: 2 type: Transform - - uid: 30149 + - uid: 30221 components: - pos: -43.5,-2.5 parent: 2 type: Transform - - uid: 30150 + - uid: 30222 components: - pos: -50.5,-2.5 parent: 2 type: Transform - - uid: 30151 + - uid: 30223 components: - pos: -52.5,-1.5 parent: 2 type: Transform - - uid: 30152 + - uid: 30224 components: - pos: -52.5,0.5 parent: 2 type: Transform - - uid: 30153 + - uid: 30225 components: - pos: -52.5,-2.5 parent: 2 type: Transform - - uid: 30154 + - uid: 30226 components: - pos: -54.5,-2.5 parent: 2 type: Transform - - uid: 30155 + - uid: 30227 components: - rot: 3.141592653589793 rad pos: -11.5,22.5 parent: 2 type: Transform - - uid: 30156 + - uid: 30228 components: - pos: -56.5,-2.5 parent: 2 type: Transform - - uid: 30157 + - uid: 30229 components: - pos: -55.5,-2.5 parent: 2 type: Transform - - uid: 30158 + - uid: 30230 components: - pos: -52.5,1.5 parent: 2 type: Transform - - uid: 30159 + - uid: 30231 components: - pos: -50.5,12.5 parent: 2 type: Transform - - uid: 30160 + - uid: 30232 components: - pos: -50.5,13.5 parent: 2 type: Transform - - uid: 30161 + - uid: 30233 components: - pos: -50.5,14.5 parent: 2 type: Transform - - uid: 30162 + - uid: 30234 components: - pos: -50.5,15.5 parent: 2 type: Transform - - uid: 30163 + - uid: 30235 components: - rot: 3.141592653589793 rad pos: -52.5,12.5 parent: 2 type: Transform - - uid: 30164 + - uid: 30236 components: - rot: 3.141592653589793 rad pos: -52.5,5.5 parent: 2 type: Transform - - uid: 30165 + - uid: 30237 components: - rot: 3.141592653589793 rad pos: -51.5,9.5 parent: 2 type: Transform - - uid: 30166 + - uid: 30238 components: - rot: 3.141592653589793 rad pos: -51.5,5.5 parent: 2 type: Transform - - uid: 30167 + - uid: 30239 components: - rot: 3.141592653589793 rad pos: -46.5,17.5 parent: 2 type: Transform - - uid: 30168 + - uid: 30240 components: - pos: -32.5,-3.5 parent: 2 type: Transform - - uid: 30169 + - uid: 30241 components: - pos: 53.5,41.5 parent: 2 type: Transform - - uid: 30170 + - uid: 30242 components: - pos: 64.5,0.5 parent: 2 type: Transform - - uid: 30171 + - uid: 30243 components: - pos: 67.5,-12.5 parent: 2 type: Transform - - uid: 30172 + - uid: 30244 components: - pos: 67.5,-4.5 parent: 2 type: Transform - - uid: 30173 + - uid: 30245 components: - pos: 53.5,40.5 parent: 2 type: Transform - - uid: 30174 + - uid: 30246 components: - pos: -17.5,36.5 parent: 2 type: Transform - - uid: 30175 + - uid: 30247 components: - pos: -20.5,32.5 parent: 2 type: Transform - - uid: 30176 + - uid: 30248 components: - pos: -21.5,32.5 parent: 2 type: Transform - - uid: 30177 + - uid: 30249 components: - pos: -21.5,31.5 parent: 2 type: Transform - - uid: 30178 + - uid: 30250 components: - rot: -1.5707963267948966 rad pos: -22.5,32.5 parent: 2 type: Transform - - uid: 30179 + - uid: 30251 components: - pos: -21.5,29.5 parent: 2 type: Transform - - uid: 30180 + - uid: 30252 components: - pos: -21.5,28.5 parent: 2 type: Transform - - uid: 30181 + - uid: 30253 components: - pos: -21.5,26.5 parent: 2 type: Transform - - uid: 30182 + - uid: 30254 components: - pos: -17.5,28.5 parent: 2 type: Transform - - uid: 30183 + - uid: 30255 components: - rot: -1.5707963267948966 rad pos: -13.5,27.5 parent: 2 type: Transform - - uid: 30184 + - uid: 30256 components: - rot: -1.5707963267948966 rad pos: -13.5,23.5 parent: 2 type: Transform - - uid: 30185 + - uid: 30257 components: - pos: -35.5,20.5 parent: 2 type: Transform - - uid: 30186 + - uid: 30258 components: - pos: -0.5,10.5 parent: 2 type: Transform - - uid: 30187 + - uid: 30259 components: - rot: 1.5707963267948966 rad pos: -6.5,-11.5 parent: 2 type: Transform - - uid: 30188 + - uid: 30260 components: - pos: 5.5,-55.5 parent: 2 type: Transform - - uid: 30189 + - uid: 30261 components: - pos: 59.5,-31.5 parent: 2 type: Transform - - uid: 30190 + - uid: 30262 components: - rot: -1.5707963267948966 rad pos: -0.5,-76.5 parent: 2 type: Transform - - uid: 30191 + - uid: 30263 components: - pos: 19.5,-51.5 parent: 2 type: Transform - - uid: 30192 + - uid: 30264 components: - pos: 22.5,-48.5 parent: 2 type: Transform - - uid: 30193 + - uid: 30265 components: - rot: 3.141592653589793 rad pos: -31.5,-53.5 parent: 2 type: Transform - - uid: 30194 + - uid: 30266 components: - pos: -27.5,-55.5 parent: 2 type: Transform - - uid: 30195 + - uid: 30267 components: - rot: 3.141592653589793 rad pos: -17.5,8.5 parent: 2 type: Transform - - uid: 30196 + - uid: 30268 components: - pos: -21.5,-6.5 parent: 2 type: Transform - - uid: 30197 + - uid: 30269 components: - rot: 3.141592653589793 rad pos: -44.5,17.5 parent: 2 type: Transform - - uid: 30198 + - uid: 30270 components: - rot: 3.141592653589793 rad pos: -31.5,-72.5 parent: 2 type: Transform - - uid: 30199 + - uid: 30271 components: - pos: -30.5,-68.5 parent: 2 type: Transform - - uid: 30200 + - uid: 30272 components: - pos: -26.5,-72.5 parent: 2 type: Transform - - uid: 30201 + - uid: 30273 components: - pos: -26.5,-71.5 parent: 2 type: Transform - - uid: 30202 + - uid: 30274 components: - pos: 6.5,-55.5 parent: 2 type: Transform - - uid: 30203 + - uid: 30275 components: - pos: -17.5,32.5 parent: 2 type: Transform - - uid: 30204 + - uid: 30276 components: - pos: -18.5,32.5 parent: 2 type: Transform - - uid: 30205 + - uid: 30277 components: - pos: -19.5,32.5 parent: 2 type: Transform - - uid: 30206 + - uid: 30278 components: - pos: 44.5,47.5 parent: 2 type: Transform - - uid: 30207 + - uid: 30279 components: - pos: 44.5,48.5 parent: 2 type: Transform - - uid: 30208 + - uid: 30280 components: - pos: 53.5,39.5 parent: 2 type: Transform - - uid: 30209 + - uid: 30281 components: - pos: 53.5,38.5 parent: 2 type: Transform - - uid: 30210 + - uid: 30282 components: - pos: 52.5,38.5 parent: 2 type: Transform - - uid: 30211 + - uid: 30283 components: - pos: 51.5,38.5 parent: 2 type: Transform - - uid: 30212 + - uid: 30284 components: - pos: 50.5,38.5 parent: 2 type: Transform - - uid: 30213 + - uid: 30285 components: - pos: 55.5,36.5 parent: 2 type: Transform - - uid: 30214 + - uid: 30286 components: - pos: 55.5,35.5 parent: 2 type: Transform - - uid: 30215 + - uid: 30287 components: - pos: 55.5,34.5 parent: 2 type: Transform - - uid: 30216 + - uid: 30288 components: - pos: 54.5,34.5 parent: 2 type: Transform - - uid: 30217 + - uid: 30289 components: - pos: 53.5,34.5 parent: 2 type: Transform - - uid: 30218 + - uid: 30290 components: - pos: 51.5,34.5 parent: 2 type: Transform - - uid: 30219 + - uid: 30291 components: - pos: 50.5,34.5 parent: 2 type: Transform - - uid: 30220 + - uid: 30292 components: - pos: 50.5,35.5 parent: 2 type: Transform - - uid: 30221 + - uid: 30293 components: - pos: 50.5,36.5 parent: 2 type: Transform - - uid: 30222 + - uid: 30294 components: - pos: 50.5,37.5 parent: 2 type: Transform - - uid: 30223 + - uid: 30295 components: - pos: 51.5,33.5 parent: 2 type: Transform - - uid: 30224 + - uid: 30296 components: - pos: 51.5,32.5 parent: 2 type: Transform - - uid: 30225 + - uid: 30297 components: - pos: 53.5,33.5 parent: 2 type: Transform - - uid: 30226 + - uid: 30298 components: - pos: 53.5,32.5 parent: 2 type: Transform - - uid: 30227 + - uid: 30299 components: - pos: 53.5,31.5 parent: 2 type: Transform - - uid: 30228 + - uid: 30300 components: - pos: 53.5,30.5 parent: 2 type: Transform - - uid: 30229 + - uid: 30301 components: - pos: 52.5,30.5 parent: 2 type: Transform - - uid: 30230 + - uid: 30302 components: - pos: 51.5,30.5 parent: 2 type: Transform - - uid: 30231 + - uid: 30303 components: - pos: 49.5,30.5 parent: 2 type: Transform - - uid: 30232 + - uid: 30304 components: - pos: 50.5,30.5 parent: 2 type: Transform - - uid: 30233 + - uid: 30305 components: - pos: 49.5,34.5 parent: 2 type: Transform - - uid: 30234 + - uid: 30306 components: - pos: 48.5,34.5 parent: 2 type: Transform - - uid: 30235 + - uid: 30307 components: - pos: 47.5,30.5 parent: 2 type: Transform - - uid: 30236 + - uid: 30308 components: - pos: 47.5,29.5 parent: 2 type: Transform - - uid: 30237 + - uid: 30309 components: - pos: 47.5,28.5 parent: 2 type: Transform - - uid: 30238 + - uid: 30310 components: - pos: 47.5,27.5 parent: 2 type: Transform - - uid: 30239 + - uid: 30311 components: - pos: 49.5,27.5 parent: 2 type: Transform - - uid: 30240 + - uid: 30312 components: - pos: 50.5,27.5 parent: 2 type: Transform - - uid: 30241 + - uid: 30313 components: - pos: 51.5,27.5 parent: 2 type: Transform - - uid: 30242 + - uid: 30314 components: - pos: 51.5,28.5 parent: 2 type: Transform - - uid: 30243 + - uid: 30315 components: - pos: 51.5,29.5 parent: 2 type: Transform - - uid: 30244 + - uid: 30316 components: - pos: 60.5,27.5 parent: 2 type: Transform - - uid: 30245 + - uid: 30317 components: - pos: 59.5,27.5 parent: 2 type: Transform - - uid: 30246 + - uid: 30318 components: - pos: 57.5,27.5 parent: 2 type: Transform - - uid: 30247 + - uid: 30319 components: - pos: 56.5,27.5 parent: 2 type: Transform - - uid: 30248 + - uid: 30320 components: - pos: 61.5,29.5 parent: 2 type: Transform - - uid: 30249 + - uid: 30321 components: - pos: 61.5,28.5 parent: 2 type: Transform - - uid: 30250 + - uid: 30322 components: - pos: 61.5,27.5 parent: 2 type: Transform - - uid: 30251 + - uid: 30323 components: - pos: 59.5,30.5 parent: 2 type: Transform - - uid: 30252 + - uid: 30324 components: - pos: 58.5,30.5 parent: 2 type: Transform - - uid: 30253 + - uid: 30325 components: - pos: 56.5,30.5 parent: 2 type: Transform - - uid: 30254 + - uid: 30326 components: - pos: 56.5,29.5 parent: 2 type: Transform - - uid: 30255 + - uid: 30327 components: - pos: 56.5,28.5 parent: 2 type: Transform - - uid: 30256 + - uid: 30328 components: - pos: 54.5,30.5 parent: 2 type: Transform - - uid: 30257 + - uid: 30329 components: - pos: 55.5,30.5 parent: 2 type: Transform - - uid: 30258 + - uid: 30330 components: - rot: -1.5707963267948966 rad pos: 49.5,29.5 parent: 2 type: Transform - - uid: 30259 + - uid: 30331 components: - rot: 3.141592653589793 rad pos: -11.5,23.5 parent: 2 type: Transform - - uid: 30260 + - uid: 30332 components: - rot: -1.5707963267948966 rad pos: -23.5,32.5 parent: 2 type: Transform - - uid: 30261 + - uid: 30333 components: - rot: -1.5707963267948966 rad pos: -24.5,32.5 parent: 2 type: Transform - - uid: 30262 + - uid: 30334 components: - rot: -1.5707963267948966 rad pos: -25.5,32.5 parent: 2 type: Transform - - uid: 30263 + - uid: 30335 components: - rot: -1.5707963267948966 rad pos: -22.5,28.5 parent: 2 type: Transform - - uid: 30264 + - uid: 30336 components: - rot: -1.5707963267948966 rad pos: -23.5,28.5 parent: 2 type: Transform - - uid: 30265 + - uid: 30337 components: - rot: -1.5707963267948966 rad pos: -24.5,28.5 parent: 2 type: Transform - - uid: 30266 + - uid: 30338 components: - rot: -1.5707963267948966 rad pos: -25.5,28.5 parent: 2 type: Transform - - uid: 30267 + - uid: 30339 components: - rot: -1.5707963267948966 rad pos: -25.5,31.5 parent: 2 type: Transform - - uid: 30268 + - uid: 30340 components: - rot: -1.5707963267948966 rad pos: -25.5,30.5 parent: 2 type: Transform - - uid: 30269 + - uid: 30341 components: - rot: -1.5707963267948966 rad pos: -25.5,29.5 parent: 2 type: Transform - - uid: 30270 + - uid: 30342 components: - rot: -1.5707963267948966 rad pos: -20.5,36.5 parent: 2 type: Transform - - uid: 30271 + - uid: 30343 components: - rot: -1.5707963267948966 rad pos: -19.5,36.5 parent: 2 type: Transform - - uid: 30272 + - uid: 30344 components: - rot: -1.5707963267948966 rad pos: -21.5,36.5 parent: 2 type: Transform - - uid: 30273 + - uid: 30345 components: - rot: -1.5707963267948966 rad pos: -22.5,36.5 parent: 2 type: Transform - - uid: 30274 + - uid: 30346 components: - rot: -1.5707963267948966 rad pos: -22.5,35.5 parent: 2 type: Transform - - uid: 30275 + - uid: 30347 components: - rot: -1.5707963267948966 rad pos: -22.5,33.5 parent: 2 type: Transform - - uid: 30276 + - uid: 30348 components: - rot: -1.5707963267948966 rad pos: -26.5,29.5 parent: 2 type: Transform - - uid: 30277 + - uid: 30349 components: - rot: -1.5707963267948966 rad pos: -27.5,29.5 parent: 2 type: Transform - - uid: 30278 + - uid: 30350 components: - rot: -1.5707963267948966 rad pos: -27.5,30.5 parent: 2 type: Transform - - uid: 30279 + - uid: 30351 components: - rot: -1.5707963267948966 rad pos: -18.5,37.5 parent: 2 type: Transform - - uid: 30280 + - uid: 30352 components: - rot: -1.5707963267948966 rad pos: -17.5,39.5 parent: 2 type: Transform - - uid: 30281 + - uid: 30353 components: - rot: -1.5707963267948966 rad pos: -18.5,39.5 parent: 2 type: Transform - - uid: 30282 + - uid: 30354 components: - rot: -1.5707963267948966 rad pos: -19.5,39.5 parent: 2 type: Transform - - uid: 30283 + - uid: 30355 components: - rot: -1.5707963267948966 rad pos: -9.5,31.5 parent: 2 type: Transform - - uid: 30284 + - uid: 30356 components: - rot: -1.5707963267948966 rad pos: -9.5,32.5 parent: 2 type: Transform - - uid: 30285 + - uid: 30357 components: - rot: -1.5707963267948966 rad pos: -13.5,31.5 parent: 2 type: Transform - - uid: 30286 + - uid: 30358 components: - rot: -1.5707963267948966 rad pos: -13.5,32.5 parent: 2 type: Transform - - uid: 30287 + - uid: 30359 components: - rot: -1.5707963267948966 rad pos: -9.5,36.5 parent: 2 type: Transform - - uid: 30288 + - uid: 30360 components: - rot: -1.5707963267948966 rad pos: -8.5,36.5 parent: 2 type: Transform - - uid: 30289 + - uid: 30361 components: - rot: -1.5707963267948966 rad pos: -13.5,40.5 parent: 2 type: Transform - - uid: 30290 + - uid: 30362 components: - rot: -1.5707963267948966 rad pos: -12.5,40.5 parent: 2 type: Transform - - uid: 30291 + - uid: 30363 components: - rot: -1.5707963267948966 rad pos: -11.5,40.5 parent: 2 type: Transform - - uid: 30292 + - uid: 30364 components: - rot: -1.5707963267948966 rad pos: -10.5,35.5 parent: 2 type: Transform - - uid: 30293 + - uid: 30365 components: - rot: -1.5707963267948966 rad pos: -19.5,52.5 parent: 2 type: Transform - - uid: 30294 + - uid: 30366 components: - rot: -1.5707963267948966 rad pos: -10.5,40.5 parent: 2 type: Transform - - uid: 30295 + - uid: 30367 components: - rot: -1.5707963267948966 rad pos: -9.5,40.5 parent: 2 type: Transform - - uid: 30296 + - uid: 30368 components: - rot: -1.5707963267948966 rad pos: -8.5,40.5 parent: 2 type: Transform - - uid: 30297 + - uid: 30369 components: - rot: -1.5707963267948966 rad pos: -10.5,36.5 parent: 2 type: Transform - - uid: 30298 + - uid: 30370 components: - rot: -1.5707963267948966 rad pos: -11.5,36.5 parent: 2 type: Transform - - uid: 30299 + - uid: 30371 components: - rot: -1.5707963267948966 rad pos: -12.5,36.5 parent: 2 type: Transform - - uid: 30300 + - uid: 30372 components: - rot: -1.5707963267948966 rad pos: -16.5,64.5 parent: 2 type: Transform - - uid: 30301 + - uid: 30373 components: - rot: -1.5707963267948966 rad pos: -15.5,64.5 parent: 2 type: Transform - - uid: 30302 + - uid: 30374 components: - rot: -1.5707963267948966 rad pos: -14.5,64.5 parent: 2 type: Transform - - uid: 30303 + - uid: 30375 components: - rot: -1.5707963267948966 rad pos: -18.5,64.5 parent: 2 type: Transform - - uid: 30304 + - uid: 30376 components: - rot: -1.5707963267948966 rad pos: -19.5,64.5 parent: 2 type: Transform - - uid: 30305 + - uid: 30377 components: - rot: -1.5707963267948966 rad pos: -20.5,64.5 parent: 2 type: Transform - - uid: 30306 + - uid: 30378 components: - rot: -1.5707963267948966 rad pos: -14.5,63.5 parent: 2 type: Transform - - uid: 30307 + - uid: 30379 components: - rot: -1.5707963267948966 rad pos: -14.5,61.5 parent: 2 type: Transform - - uid: 30308 + - uid: 30380 components: - rot: -1.5707963267948966 rad pos: -14.5,60.5 parent: 2 type: Transform - - uid: 30309 + - uid: 30381 components: - rot: -1.5707963267948966 rad pos: -20.5,63.5 parent: 2 type: Transform - - uid: 30310 + - uid: 30382 components: - rot: -1.5707963267948966 rad pos: -20.5,61.5 parent: 2 type: Transform - - uid: 30311 + - uid: 30383 components: - rot: -1.5707963267948966 rad pos: -20.5,60.5 parent: 2 type: Transform - - uid: 30312 + - uid: 30384 components: - rot: -1.5707963267948966 rad pos: -11.5,62.5 parent: 2 type: Transform - - uid: 30313 + - uid: 30385 components: - rot: -1.5707963267948966 rad pos: -11.5,61.5 parent: 2 type: Transform - - uid: 30314 + - uid: 30386 components: - rot: -1.5707963267948966 rad pos: -11.5,60.5 parent: 2 type: Transform - - uid: 30315 + - uid: 30387 components: - rot: -1.5707963267948966 rad pos: -20.5,59.5 parent: 2 type: Transform - - uid: 30316 + - uid: 30388 components: - rot: -1.5707963267948966 rad pos: -18.5,59.5 parent: 2 type: Transform - - uid: 30317 + - uid: 30389 components: - rot: -1.5707963267948966 rad pos: -18.5,58.5 parent: 2 type: Transform - - uid: 30318 + - uid: 30390 components: - rot: -1.5707963267948966 rad pos: -18.5,57.5 parent: 2 type: Transform - - uid: 30319 + - uid: 30391 components: - rot: -1.5707963267948966 rad pos: -11.5,57.5 parent: 2 type: Transform - - uid: 30320 + - uid: 30392 components: - rot: -1.5707963267948966 rad pos: -20.5,58.5 parent: 2 type: Transform - - uid: 30321 + - uid: 30393 components: - rot: -1.5707963267948966 rad pos: -20.5,57.5 parent: 2 type: Transform - - uid: 30322 + - uid: 30394 components: - rot: -1.5707963267948966 rad pos: -18.5,56.5 parent: 2 type: Transform - - uid: 30323 + - uid: 30395 components: - rot: 1.5707963267948966 rad pos: -19.5,57.5 parent: 2 type: Transform - - uid: 30324 + - uid: 30396 components: - rot: -1.5707963267948966 rad pos: -20.5,56.5 parent: 2 type: Transform - - uid: 30325 + - uid: 30397 components: - rot: -1.5707963267948966 rad pos: -20.5,54.5 parent: 2 type: Transform - - uid: 30326 + - uid: 30398 components: - rot: -1.5707963267948966 rad pos: -18.5,54.5 parent: 2 type: Transform - - uid: 30327 + - uid: 30399 components: - rot: -1.5707963267948966 rad pos: -18.5,53.5 parent: 2 type: Transform - - uid: 30328 + - uid: 30400 components: - rot: -1.5707963267948966 rad pos: -18.5,52.5 parent: 2 type: Transform - - uid: 30329 + - uid: 30401 components: - rot: -1.5707963267948966 rad pos: -22.5,49.5 parent: 2 type: Transform - - uid: 30330 + - uid: 30402 components: - rot: -1.5707963267948966 rad pos: -23.5,54.5 parent: 2 type: Transform - - uid: 30331 + - uid: 30403 components: - rot: -1.5707963267948966 rad pos: -23.5,55.5 parent: 2 type: Transform - - uid: 30332 + - uid: 30404 components: - rot: -1.5707963267948966 rad pos: -11.5,56.5 parent: 2 type: Transform - - uid: 30333 + - uid: 30405 components: - rot: -1.5707963267948966 rad pos: -11.5,55.5 parent: 2 type: Transform - - uid: 30334 + - uid: 30406 components: - rot: -1.5707963267948966 rad pos: -11.5,54.5 parent: 2 type: Transform - - uid: 30335 + - uid: 30407 components: - rot: -1.5707963267948966 rad pos: -20.5,53.5 parent: 2 type: Transform - - uid: 30336 + - uid: 30408 components: - rot: -1.5707963267948966 rad pos: -20.5,52.5 parent: 2 type: Transform - - uid: 30337 + - uid: 30409 components: - rot: -1.5707963267948966 rad pos: -23.5,53.5 parent: 2 type: Transform - - uid: 30338 + - uid: 30410 components: - rot: -1.5707963267948966 rad pos: -23.5,52.5 parent: 2 type: Transform - - uid: 30339 + - uid: 30411 components: - rot: -1.5707963267948966 rad pos: -23.5,49.5 parent: 2 type: Transform - - uid: 30340 + - uid: 30412 components: - rot: -1.5707963267948966 rad pos: -23.5,50.5 parent: 2 type: Transform - - uid: 30341 + - uid: 30413 components: - rot: -1.5707963267948966 rad pos: -23.5,51.5 parent: 2 type: Transform - - uid: 30342 + - uid: 30414 components: - rot: -1.5707963267948966 rad pos: -11.5,50.5 parent: 2 type: Transform - - uid: 30343 + - uid: 30415 components: - rot: -1.5707963267948966 rad pos: -11.5,49.5 parent: 2 type: Transform - - uid: 30344 + - uid: 30416 components: - rot: -1.5707963267948966 rad pos: -14.5,48.5 parent: 2 type: Transform - - uid: 30345 + - uid: 30417 components: - rot: -1.5707963267948966 rad pos: -11.5,48.5 parent: 2 type: Transform - - uid: 30346 + - uid: 30418 components: - rot: -1.5707963267948966 rad pos: -12.5,48.5 parent: 2 type: Transform - - uid: 30347 + - uid: 30419 components: - rot: -1.5707963267948966 rad pos: -15.5,49.5 parent: 2 type: Transform - - uid: 30348 + - uid: 30420 components: - rot: -1.5707963267948966 rad pos: -19.5,49.5 parent: 2 type: Transform - - uid: 30349 + - uid: 30421 components: - rot: -1.5707963267948966 rad pos: -19.5,48.5 parent: 2 type: Transform - - uid: 30350 + - uid: 30422 components: - rot: -1.5707963267948966 rad pos: -19.5,47.5 parent: 2 type: Transform - - uid: 30351 + - uid: 30423 components: - rot: -1.5707963267948966 rad pos: -19.5,46.5 parent: 2 type: Transform - - uid: 30352 + - uid: 30424 components: - rot: -1.5707963267948966 rad pos: -19.5,40.5 parent: 2 type: Transform - - uid: 30353 + - uid: 30425 components: - rot: -1.5707963267948966 rad pos: -15.5,48.5 parent: 2 type: Transform - - uid: 30354 + - uid: 30426 components: - rot: -1.5707963267948966 rad pos: -13.5,43.5 parent: 2 type: Transform - - uid: 30355 + - uid: 30427 components: - rot: -1.5707963267948966 rad pos: -13.5,42.5 parent: 2 type: Transform - - uid: 30356 + - uid: 30428 components: - pos: -25.5,37.5 parent: 2 type: Transform - - uid: 30357 + - uid: 30429 components: - pos: -25.5,36.5 parent: 2 type: Transform - - uid: 30358 + - uid: 30430 components: - pos: -26.5,36.5 parent: 2 type: Transform - - uid: 30359 + - uid: 30431 components: - pos: -25.5,39.5 parent: 2 type: Transform - - uid: 30360 + - uid: 30432 components: - pos: -25.5,40.5 parent: 2 type: Transform - - uid: 30361 + - uid: 30433 components: - pos: -44.5,38.5 parent: 2 type: Transform - - uid: 30362 + - uid: 30434 components: - pos: -30.5,37.5 parent: 2 type: Transform - - uid: 30363 + - uid: 30435 components: - pos: -31.5,37.5 parent: 2 type: Transform - - uid: 30364 + - uid: 30436 components: - pos: -33.5,37.5 parent: 2 type: Transform - - uid: 30365 + - uid: 30437 components: - pos: -33.5,38.5 parent: 2 type: Transform - - uid: 30366 + - uid: 30438 components: - pos: -34.5,38.5 parent: 2 type: Transform - - uid: 30367 + - uid: 30439 components: - pos: -35.5,36.5 parent: 2 type: Transform - - uid: 30368 + - uid: 30440 components: - pos: -37.5,38.5 parent: 2 type: Transform - - uid: 30369 + - uid: 30441 components: - pos: -38.5,38.5 parent: 2 type: Transform - - uid: 30370 + - uid: 30442 components: - rot: 3.141592653589793 rad pos: 67.5,9.5 parent: 2 type: Transform - - uid: 30371 + - uid: 30443 components: - pos: -44.5,13.5 parent: 2 type: Transform - - uid: 30372 + - uid: 30444 components: - rot: -1.5707963267948966 rad pos: -22.5,40.5 parent: 2 type: Transform - - uid: 30373 + - uid: 30445 components: - rot: -1.5707963267948966 rad pos: -21.5,40.5 parent: 2 type: Transform - - uid: 30374 + - uid: 30446 components: - rot: -1.5707963267948966 rad pos: -20.5,40.5 parent: 2 type: Transform - - uid: 30375 + - uid: 30447 components: - pos: -23.5,40.5 parent: 2 type: Transform - - uid: 30376 + - uid: 30448 components: - pos: -23.5,42.5 parent: 2 type: Transform - - uid: 30377 + - uid: 30449 components: - pos: -23.5,43.5 parent: 2 type: Transform - - uid: 30378 + - uid: 30450 components: - pos: -23.5,44.5 parent: 2 type: Transform - - uid: 30379 + - uid: 30451 components: - pos: -23.5,45.5 parent: 2 type: Transform - - uid: 30380 + - uid: 30452 components: - pos: -23.5,46.5 parent: 2 type: Transform - - uid: 30381 + - uid: 30453 components: - pos: -22.5,46.5 parent: 2 type: Transform - - uid: 30382 + - uid: 30454 components: - pos: -21.5,46.5 parent: 2 type: Transform - - uid: 30383 + - uid: 30455 components: - pos: -20.5,46.5 parent: 2 type: Transform - - uid: 30384 + - uid: 30456 components: - pos: -8.5,47.5 parent: 2 type: Transform - - uid: 30385 + - uid: 30457 components: - pos: -7.5,47.5 parent: 2 type: Transform - - uid: 30386 + - uid: 30458 components: - pos: -6.5,47.5 parent: 2 type: Transform - - uid: 30387 + - uid: 30459 components: - pos: -2.5,47.5 parent: 2 type: Transform - - uid: 30388 + - uid: 30460 components: - pos: -1.5,47.5 parent: 2 type: Transform - - uid: 30389 + - uid: 30461 components: - pos: -1.5,48.5 parent: 2 type: Transform - - uid: 30390 + - uid: 30462 components: - pos: -1.5,51.5 parent: 2 type: Transform - - uid: 30391 + - uid: 30463 components: - pos: -1.5,52.5 parent: 2 type: Transform - - uid: 30392 + - uid: 30464 components: - pos: -1.5,53.5 parent: 2 type: Transform - - uid: 30393 + - uid: 30465 components: - pos: -1.5,54.5 parent: 2 type: Transform - - uid: 30394 + - uid: 30466 components: - pos: 45.5,34.5 parent: 2 type: Transform - - uid: 30395 + - uid: 30467 components: - rot: 3.141592653589793 rad pos: 45.5,33.5 parent: 2 type: Transform - - uid: 30396 + - uid: 30468 components: - rot: -1.5707963267948966 rad pos: -4.5,57.5 parent: 2 type: Transform - - uid: 30397 + - uid: 30469 components: - rot: -1.5707963267948966 rad pos: -3.5,57.5 parent: 2 type: Transform - - uid: 30398 + - uid: 30470 components: - rot: -1.5707963267948966 rad pos: -2.5,57.5 parent: 2 type: Transform - - uid: 30399 + - uid: 30471 components: - rot: -1.5707963267948966 rad pos: -1.5,57.5 parent: 2 type: Transform - - uid: 30400 + - uid: 30472 components: - rot: -1.5707963267948966 rad pos: -1.5,56.5 parent: 2 type: Transform - - uid: 30401 + - uid: 30473 components: - rot: -1.5707963267948966 rad pos: -1.5,55.5 parent: 2 type: Transform - - uid: 30402 + - uid: 30474 components: - rot: -1.5707963267948966 rad pos: -9.5,60.5 parent: 2 type: Transform - - uid: 30403 + - uid: 30475 components: - pos: 17.5,35.5 parent: 2 type: Transform - - uid: 30404 + - uid: 30476 components: - pos: 15.5,35.5 parent: 2 type: Transform - - uid: 30405 + - uid: 30477 components: - pos: -28.5,42.5 parent: 2 type: Transform - - uid: 30406 + - uid: 30478 components: - pos: -27.5,42.5 parent: 2 type: Transform - - uid: 30407 + - uid: 30479 components: - pos: -26.5,42.5 parent: 2 type: Transform - - uid: 30408 + - uid: 30480 components: - pos: -39.5,37.5 parent: 2 type: Transform - - uid: 30409 + - uid: 30481 components: - pos: -39.5,38.5 parent: 2 type: Transform - - uid: 30410 + - uid: 30482 components: - pos: -36.5,38.5 parent: 2 type: Transform - - uid: 30411 + - uid: 30483 components: - pos: -35.5,38.5 parent: 2 type: Transform - - uid: 30412 + - uid: 30484 components: - pos: 40.5,49.5 parent: 2 type: Transform - - uid: 30413 + - uid: 30485 components: - pos: 40.5,50.5 parent: 2 type: Transform - - uid: 30414 + - uid: 30486 components: - pos: 44.5,46.5 parent: 2 type: Transform - - uid: 30415 + - uid: 30487 components: - pos: 44.5,44.5 parent: 2 type: Transform - - uid: 30416 + - uid: 30488 components: - pos: -23.5,48.5 parent: 2 type: Transform - - uid: 30417 + - uid: 30489 components: - pos: 7.5,-31.5 parent: 2 type: Transform - - uid: 30418 + - uid: 30490 components: - pos: 7.5,-29.5 parent: 2 type: Transform - - uid: 30419 + - uid: 30491 components: - pos: 7.5,-30.5 parent: 2 type: Transform - - uid: 30420 + - uid: 30492 components: - pos: -22.5,-17.5 parent: 2 type: Transform - - uid: 30421 + - uid: 30493 components: - pos: -16.5,-96.5 parent: 2 type: Transform - - uid: 30422 + - uid: 30494 components: - pos: -28.5,-96.5 parent: 2 type: Transform - - uid: 30423 + - uid: 30495 components: - pos: -13.5,-98.5 parent: 2 type: Transform - - uid: 30424 + - uid: 30496 components: - pos: -13.5,-96.5 parent: 2 type: Transform - - uid: 30425 + - uid: 30497 components: - pos: -31.5,-98.5 parent: 2 type: Transform - - uid: 30426 + - uid: 30498 components: - pos: -31.5,-96.5 parent: 2 type: Transform - - uid: 30427 + - uid: 30499 components: - pos: -43.5,-93.5 parent: 2 type: Transform - - uid: 30428 + - uid: 30500 components: - rot: 1.5707963267948966 rad pos: -39.5,-93.5 parent: 2 type: Transform - - uid: 30429 + - uid: 30501 components: - rot: 1.5707963267948966 rad pos: -40.5,-93.5 parent: 2 type: Transform - - uid: 30430 + - uid: 30502 components: - rot: 3.141592653589793 rad pos: -39.5,-94.5 parent: 2 type: Transform - - uid: 30431 + - uid: 30503 components: - rot: 3.141592653589793 rad pos: -39.5,-97.5 parent: 2 type: Transform - - uid: 30432 + - uid: 30504 components: - pos: 16.5,-4.5 parent: 2 type: Transform - - uid: 30433 + - uid: 30505 components: - rot: 1.5707963267948966 rad pos: 59.5,-8.5 parent: 2 type: Transform - - uid: 30434 + - uid: 30506 components: - pos: -13.5,33.5 parent: 2 type: Transform - - uid: 30435 + - uid: 30507 components: - rot: -1.5707963267948966 rad pos: -14.5,-15.5 parent: 2 type: Transform - - uid: 30436 + - uid: 30508 components: - rot: -1.5707963267948966 rad pos: -14.5,-12.5 parent: 2 type: Transform - - uid: 30437 + - uid: 30509 components: - pos: 60.5,-28.5 parent: 2 type: Transform - - uid: 30438 + - uid: 30510 components: - pos: 7.5,-35.5 parent: 2 type: Transform - - uid: 30439 + - uid: 30511 components: - pos: 7.5,-32.5 parent: 2 type: Transform - - uid: 30440 + - uid: 30512 components: - pos: 57.5,-62.5 parent: 2 type: Transform - - uid: 30441 + - uid: 30513 components: - pos: 5.5,-35.5 parent: 2 type: Transform - - uid: 30442 + - uid: 30514 components: - rot: -1.5707963267948966 rad pos: 39.5,-34.5 parent: 2 type: Transform - - uid: 30443 + - uid: 30515 components: - pos: 56.5,-62.5 parent: 2 type: Transform - - uid: 30444 + - uid: 30516 components: - pos: 7.5,-33.5 parent: 2 type: Transform - - uid: 30445 + - uid: 30517 components: - pos: 7.5,-34.5 parent: 2 type: Transform - - uid: 30446 + - uid: 30518 components: - pos: 52.5,-33.5 parent: 2 type: Transform - - uid: 30447 + - uid: 30519 components: - pos: 52.5,-34.5 parent: 2 type: Transform - - uid: 30448 + - uid: 30520 components: - pos: 55.5,-62.5 parent: 2 type: Transform - - uid: 30449 + - uid: 30521 components: - rot: -1.5707963267948966 rad pos: 38.5,-34.5 parent: 2 type: Transform - - uid: 30450 + - uid: 30522 components: - pos: 9.5,-38.5 parent: 2 type: Transform - - uid: 30451 + - uid: 30523 components: - rot: 3.141592653589793 rad pos: -16.5,-17.5 parent: 2 type: Transform - - uid: 30452 + - uid: 30524 components: - rot: 3.141592653589793 rad pos: -16.5,-19.5 parent: 2 type: Transform - - uid: 30453 + - uid: 30525 components: - rot: 3.141592653589793 rad pos: -14.5,-22.5 parent: 2 type: Transform - - uid: 30454 + - uid: 30526 components: - pos: 73.5,-55.5 parent: 2 type: Transform - - uid: 30455 + - uid: 30527 components: - pos: 52.5,-37.5 parent: 2 type: Transform - - uid: 30456 + - uid: 30528 components: - rot: 1.5707963267948966 rad pos: -57.5,-57.5 parent: 2 type: Transform - - uid: 30457 + - uid: 30529 components: - pos: 60.5,-42.5 parent: 2 type: Transform - - uid: 30458 + - uid: 30530 components: - rot: 1.5707963267948966 rad pos: 60.5,-40.5 parent: 2 type: Transform - - uid: 30459 + - uid: 30531 components: - pos: 55.5,-33.5 parent: 2 type: Transform - - uid: 30460 + - uid: 30532 components: - pos: 56.5,-36.5 parent: 2 type: Transform - - uid: 30461 + - uid: 30533 components: - pos: 56.5,-34.5 parent: 2 type: Transform - - uid: 30462 + - uid: 30534 components: - pos: 60.5,-27.5 parent: 2 type: Transform - - uid: 30463 + - uid: 30535 components: - pos: 59.5,-27.5 parent: 2 type: Transform - - uid: 30464 + - uid: 30536 components: - pos: 58.5,-27.5 parent: 2 type: Transform - - uid: 30465 + - uid: 30537 components: - pos: 56.5,-29.5 parent: 2 type: Transform - - uid: 30466 + - uid: 30538 components: - pos: 56.5,-30.5 parent: 2 type: Transform - - uid: 30467 + - uid: 30539 components: - pos: 56.5,-28.5 parent: 2 type: Transform - - uid: 30468 + - uid: 30540 components: - pos: 61.5,-27.5 parent: 2 type: Transform - - uid: 30469 + - uid: 30541 components: - pos: 56.5,-27.5 parent: 2 type: Transform - - uid: 30470 + - uid: 30542 components: - pos: 53.5,-29.5 parent: 2 type: Transform - - uid: 30471 + - uid: 30543 components: - pos: 54.5,-29.5 parent: 2 type: Transform - - uid: 30472 + - uid: 30544 components: - pos: 44.5,-62.5 parent: 2 type: Transform - - uid: 30473 + - uid: 30545 components: - pos: 44.5,-63.5 parent: 2 type: Transform - - uid: 30474 + - uid: 30546 components: - pos: 53.5,-66.5 parent: 2 type: Transform - - uid: 30475 + - uid: 30547 components: - pos: 56.5,-35.5 parent: 2 type: Transform - - uid: 30476 + - uid: 30548 components: - pos: 57.5,-66.5 parent: 2 type: Transform - - uid: 30477 + - uid: 30549 components: - pos: 57.5,-67.5 parent: 2 type: Transform - - uid: 30478 + - uid: 30550 components: - pos: 65.5,-66.5 parent: 2 type: Transform - - uid: 30479 + - uid: 30551 components: - pos: 65.5,-62.5 parent: 2 type: Transform - - uid: 30480 + - uid: 30552 components: - pos: 65.5,-64.5 parent: 2 type: Transform - - uid: 30481 + - uid: 30553 components: - pos: 65.5,-63.5 parent: 2 type: Transform - - uid: 30482 + - uid: 30554 components: - pos: 73.5,-56.5 parent: 2 type: Transform - - uid: 30483 + - uid: 30555 components: - pos: 74.5,-53.5 parent: 2 type: Transform - - uid: 30484 + - uid: 30556 components: - pos: 66.5,-62.5 parent: 2 type: Transform - - uid: 30485 + - uid: 30557 components: - pos: 67.5,-62.5 parent: 2 type: Transform - - uid: 30486 + - uid: 30558 components: - pos: 70.5,-63.5 parent: 2 type: Transform - - uid: 30487 + - uid: 30559 components: - pos: 70.5,-62.5 parent: 2 type: Transform - - uid: 30488 + - uid: 30560 components: - pos: 69.5,-62.5 parent: 2 type: Transform - - uid: 30489 + - uid: 30561 components: - pos: 69.5,-58.5 parent: 2 type: Transform - - uid: 30490 + - uid: 30562 components: - pos: 70.5,-58.5 parent: 2 type: Transform - - uid: 30491 + - uid: 30563 components: - pos: 70.5,-59.5 parent: 2 type: Transform - - uid: 30492 + - uid: 30564 components: - pos: 70.5,-60.5 parent: 2 type: Transform - - uid: 30493 + - uid: 30565 components: - pos: 72.5,-58.5 parent: 2 type: Transform - - uid: 30494 + - uid: 30566 components: - pos: 56.5,-37.5 parent: 2 type: Transform - - uid: 30495 + - uid: 30567 components: - - pos: 56.5,-38.5 + - pos: 58.5,-39.5 parent: 2 type: Transform - - uid: 30496 + - uid: 30568 components: - pos: 62.5,-27.5 parent: 2 type: Transform - - uid: 30497 + - uid: 30569 components: - pos: 18.5,-15.5 parent: 2 type: Transform - - uid: 30498 + - uid: 30570 components: - pos: -12.5,-34.5 parent: 2 type: Transform - - uid: 30499 + - uid: 30571 components: - pos: -22.5,0.5 parent: 2 type: Transform - - uid: 30500 + - uid: 30572 components: - rot: 3.141592653589793 rad pos: 19.5,8.5 parent: 2 type: Transform - - uid: 30501 + - uid: 30573 components: - pos: 16.5,8.5 parent: 2 type: Transform - - uid: 30502 + - uid: 30574 components: - pos: 1.5,-51.5 parent: 2 type: Transform - - uid: 30503 + - uid: 30575 components: - pos: 5.5,-73.5 parent: 2 type: Transform - - uid: 30504 + - uid: 30576 components: - rot: -1.5707963267948966 rad pos: -35.5,18.5 parent: 2 type: Transform - - uid: 30505 + - uid: 30577 components: - rot: -1.5707963267948966 rad pos: -35.5,19.5 parent: 2 type: Transform - - uid: 30506 + - uid: 30578 components: - pos: -16.5,-11.5 parent: 2 type: Transform - - uid: 30507 + - uid: 30579 components: - pos: -13.5,-16.5 parent: 2 type: Transform - - uid: 30508 + - uid: 30580 components: - pos: -8.5,-7.5 parent: 2 type: Transform - - uid: 30509 + - uid: 30581 components: - pos: 6.5,-51.5 parent: 2 type: Transform - - uid: 30510 + - uid: 30582 components: - rot: -1.5707963267948966 rad pos: 8.5,-46.5 parent: 2 type: Transform - - uid: 30511 + - uid: 30583 components: - rot: 1.5707963267948966 rad pos: -27.5,-60.5 parent: 2 type: Transform - - uid: 30512 + - uid: 30584 components: - pos: -21.5,-51.5 parent: 2 type: Transform - - uid: 30513 + - uid: 30585 components: - pos: 5.5,-75.5 parent: 2 type: Transform - - uid: 30514 + - uid: 30586 components: - pos: 4.5,-72.5 parent: 2 type: Transform - - uid: 30515 + - uid: 30587 components: - pos: -11.5,13.5 parent: 2 type: Transform - - uid: 30516 + - uid: 30588 components: - rot: -1.5707963267948966 rad pos: 2.5,-24.5 parent: 2 type: Transform - - uid: 30517 + - uid: 30589 components: - rot: 3.141592653589793 rad pos: 29.5,-37.5 @@ -202547,96 +195375,96 @@ entities: type: Transform - proto: WallSolidRust entities: - - uid: 30518 + - uid: 30590 components: - rot: 3.141592653589793 rad pos: -42.5,-69.5 parent: 2 type: Transform - - uid: 30519 + - uid: 30591 components: - rot: 3.141592653589793 rad pos: -41.5,-69.5 parent: 2 type: Transform - - uid: 30520 + - uid: 30592 components: - rot: 3.141592653589793 rad pos: -53.5,-30.5 parent: 2 type: Transform - - uid: 30521 + - uid: 30593 components: - rot: 3.141592653589793 rad pos: -56.5,-30.5 parent: 2 type: Transform - - uid: 30522 + - uid: 30594 components: - rot: 3.141592653589793 rad pos: -52.5,-65.5 parent: 2 type: Transform - - uid: 30523 + - uid: 30595 components: - rot: 3.141592653589793 rad pos: -26.5,-65.5 parent: 2 type: Transform - - uid: 30524 + - uid: 30596 components: - rot: 3.141592653589793 rad pos: -25.5,-65.5 parent: 2 type: Transform - - uid: 30525 + - uid: 30597 components: - rot: 3.141592653589793 rad pos: -31.5,-65.5 parent: 2 type: Transform - - uid: 30526 + - uid: 30598 components: - rot: 3.141592653589793 rad pos: -53.5,-69.5 parent: 2 type: Transform - - uid: 30527 + - uid: 30599 components: - rot: 3.141592653589793 rad pos: -48.5,-73.5 parent: 2 type: Transform - - uid: 30528 + - uid: 30600 components: - rot: 3.141592653589793 rad pos: -40.5,-66.5 parent: 2 type: Transform - - uid: 30529 + - uid: 30601 components: - rot: 3.141592653589793 rad pos: -37.5,-66.5 parent: 2 type: Transform - - uid: 30530 + - uid: 30602 components: - pos: -12.5,-33.5 parent: 2 type: Transform - - uid: 30531 + - uid: 30603 components: - rot: 3.141592653589793 rad pos: 13.5,-58.5 parent: 2 type: Transform - - uid: 30532 + - uid: 30604 components: - rot: 3.141592653589793 rad pos: 13.5,-56.5 parent: 2 type: Transform - - uid: 30533 + - uid: 30605 components: - rot: 1.5707963267948966 rad pos: -10.5,-7.5 @@ -202644,7 +195472,7 @@ entities: type: Transform - proto: WardrobeBotanistFilled entities: - - uid: 30534 + - uid: 30606 components: - pos: -4.5,12.5 parent: 2 @@ -202667,7 +195495,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30535 + - uid: 30607 components: - pos: -4.5,10.5 parent: 2 @@ -202692,7 +195520,7 @@ entities: type: EntityStorage - proto: WardrobeGreenFilled entities: - - uid: 30536 + - uid: 30608 components: - pos: -48.5,3.5 parent: 2 @@ -202717,7 +195545,7 @@ entities: type: EntityStorage - proto: WardrobePrisonFilled entities: - - uid: 30537 + - uid: 30609 components: - pos: 28.5,10.5 parent: 2 @@ -202740,7 +195568,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30538 + - uid: 30610 components: - pos: 36.5,5.5 parent: 2 @@ -202763,7 +195591,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30539 + - uid: 30611 components: - pos: 31.5,10.5 parent: 2 @@ -202786,7 +195614,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30540 + - uid: 30612 components: - pos: 34.5,10.5 parent: 2 @@ -202809,7 +195637,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30541 + - uid: 30613 components: - pos: 36.5,8.5 parent: 2 @@ -202832,7 +195660,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30542 + - uid: 30614 components: - pos: 55.5,22.5 parent: 2 @@ -202855,7 +195683,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30543 + - uid: 30615 components: - pos: 52.5,22.5 parent: 2 @@ -202878,7 +195706,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30544 + - uid: 30616 components: - pos: 49.5,22.5 parent: 2 @@ -202901,7 +195729,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30545 + - uid: 30617 components: - pos: 46.5,22.5 parent: 2 @@ -202924,7 +195752,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30546 + - uid: 30618 components: - pos: 58.5,22.5 parent: 2 @@ -202947,7 +195775,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30547 + - uid: 30619 components: - pos: 60.5,19.5 parent: 2 @@ -202970,7 +195798,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30548 + - uid: 30620 components: - pos: 60.5,16.5 parent: 2 @@ -202995,7 +195823,7 @@ entities: type: EntityStorage - proto: WardrobeYellowFilled entities: - - uid: 30549 + - uid: 30621 components: - pos: -49.5,3.5 parent: 2 @@ -203020,56 +195848,56 @@ entities: type: EntityStorage - proto: WarningCO2 entities: - - uid: 30550 + - uid: 30622 components: - pos: -51.5,-50.5 parent: 2 type: Transform - proto: WarningN2 entities: - - uid: 30551 + - uid: 30623 components: - pos: -51.5,-54.5 parent: 2 type: Transform - proto: WarningN2O entities: - - uid: 30552 + - uid: 30624 components: - pos: -51.5,-42.5 parent: 2 type: Transform - proto: WarningO2 entities: - - uid: 30553 + - uid: 30625 components: - pos: -51.5,-52.5 parent: 2 type: Transform - proto: WarningPlasma entities: - - uid: 30554 + - uid: 30626 components: - pos: -51.5,-46.5 parent: 2 type: Transform - proto: WarningTritium entities: - - uid: 30555 + - uid: 30627 components: - pos: -51.5,-44.5 parent: 2 type: Transform - proto: WarningWaste entities: - - uid: 30556 + - uid: 30628 components: - pos: -51.5,-48.5 parent: 2 type: Transform - proto: WarpPoint entities: - - uid: 30557 + - uid: 30629 components: - rot: -1.5707963267948966 rad pos: 1.5,-5.5 @@ -203077,14 +195905,14 @@ entities: type: Transform - location: hop type: WarpPoint - - uid: 30558 + - uid: 30630 components: - pos: 12.5,11.5 parent: 2 type: Transform - location: bar type: WarpPoint - - uid: 30559 + - uid: 30631 components: - name: 'Warp: medical' type: MetaData @@ -203093,7 +195921,7 @@ entities: type: Transform - location: medbay type: WarpPoint - - uid: 30560 + - uid: 30632 components: - name: 'warp: science' type: MetaData @@ -203102,7 +195930,7 @@ entities: type: Transform - location: science reception type: WarpPoint - - uid: 30561 + - uid: 30633 components: - name: 'warp: bridge' type: MetaData @@ -203111,7 +195939,7 @@ entities: type: Transform - location: bridge type: WarpPoint - - uid: 30562 + - uid: 30634 components: - name: 'warp: prison' type: MetaData @@ -203120,7 +195948,7 @@ entities: type: Transform - location: open prison type: WarpPoint - - uid: 30563 + - uid: 30635 components: - name: 'warp: security' type: MetaData @@ -203129,21 +195957,21 @@ entities: type: Transform - location: security type: WarpPoint - - uid: 30564 + - uid: 30636 components: - pos: 61.5,-8.5 parent: 2 type: Transform - location: evac type: WarpPoint - - uid: 30565 + - uid: 30637 components: - name: 'warp: waste' type: MetaData - pos: 17.5,-53.5 parent: 2 type: Transform - - uid: 30566 + - uid: 30638 components: - name: 'warp: engineering' type: MetaData @@ -203152,7 +195980,7 @@ entities: type: Transform - location: engineering reception type: WarpPoint - - uid: 30567 + - uid: 30639 components: - name: 'warp: atmospherics' type: MetaData @@ -203161,7 +195989,7 @@ entities: type: Transform - location: atmospherics type: WarpPoint - - uid: 30568 + - uid: 30640 components: - name: 'warp: singularity' type: MetaData @@ -203170,7 +195998,7 @@ entities: type: Transform - location: singularity type: WarpPoint - - uid: 30569 + - uid: 30641 components: - name: 'warp: forgotten dock' type: MetaData @@ -203179,7 +196007,7 @@ entities: type: Transform - location: forgotten ship dock type: WarpPoint - - uid: 30570 + - uid: 30642 components: - name: 'warp: jani closet' type: MetaData @@ -203188,7 +196016,7 @@ entities: type: Transform - location: janitorial closet type: WarpPoint - - uid: 30571 + - uid: 30643 components: - name: 'warp: courthouse' type: MetaData @@ -203197,7 +196025,7 @@ entities: type: Transform - location: courtroom type: WarpPoint - - uid: 30572 + - uid: 30644 components: - name: 'Warp: psychology' type: MetaData @@ -203206,7 +196034,7 @@ entities: type: Transform - location: psychology type: WarpPoint - - uid: 30573 + - uid: 30645 components: - name: 'warp: virology' type: MetaData @@ -203215,7 +196043,7 @@ entities: type: Transform - location: virology reception type: WarpPoint - - uid: 30574 + - uid: 30646 components: - name: 'warp: cargo' type: MetaData @@ -203225,7 +196053,7 @@ entities: type: Transform - location: cargo type: WarpPoint - - uid: 30575 + - uid: 30647 components: - name: 'warp: salvage' type: MetaData @@ -203235,7 +196063,7 @@ entities: type: Transform - location: salvage type: WarpPoint - - uid: 30576 + - uid: 30648 components: - name: 'warp: arrivals' type: MetaData @@ -203245,7 +196073,7 @@ entities: type: Transform - location: arrivals type: WarpPoint - - uid: 30577 + - uid: 30649 components: - name: 'Warp: kitchen' type: MetaData @@ -203255,7 +196083,7 @@ entities: type: Transform - location: kitchen type: WarpPoint - - uid: 30578 + - uid: 30650 components: - name: 'Warp: botany' type: MetaData @@ -203265,7 +196093,7 @@ entities: type: Transform - location: hydrophonics type: WarpPoint - - uid: 30579 + - uid: 30651 components: - name: 'warp: library' type: MetaData @@ -203275,7 +196103,7 @@ entities: type: Transform - location: library type: WarpPoint - - uid: 30580 + - uid: 30652 components: - name: 'Warp: armory' type: MetaData @@ -203285,7 +196113,7 @@ entities: type: Transform - location: armory type: WarpPoint - - uid: 30581 + - uid: 30653 components: - name: 'warp: revolution bar' type: MetaData @@ -203295,7 +196123,7 @@ entities: type: Transform - location: rebelion bar type: WarpPoint - - uid: 30582 + - uid: 30654 components: - rot: 3.141592653589793 rad pos: -44.5,53.5 @@ -203303,7 +196131,7 @@ entities: type: Transform - location: asteroid type: WarpPoint - - uid: 30583 + - uid: 30655 components: - pos: 0.5,-20.5 parent: 2 @@ -203312,196 +196140,203 @@ entities: type: WarpPoint - proto: WarpPointBombing entities: - - uid: 30584 + - uid: 30656 + components: + - pos: 24.5,1.5 + parent: 2 + type: Transform + - location: boxing ring + type: WarpPoint + - uid: 30657 components: - pos: 30.5,-12.5 parent: 2 type: Transform - location: eva type: WarpPoint - - uid: 30585 + - uid: 30658 components: - pos: 53.5,15.5 parent: 2 type: Transform - location: perma brig type: WarpPoint - - uid: 30586 + - uid: 30659 components: - pos: -19.5,4.5 parent: 2 type: Transform - location: gravity type: WarpPoint - - uid: 30587 + - uid: 30660 components: - pos: 5.5,-47.5 parent: 2 type: Transform - location: chemistry type: WarpPoint - - uid: 30588 + - uid: 30661 components: - pos: -24.5,-60.5 parent: 2 type: Transform - location: cryogenics type: WarpPoint - - uid: 30589 + - uid: 30662 components: - pos: 0.5,-20.5 parent: 2 type: Transform - location: theatre type: WarpPoint - - uid: 30590 + - uid: 30663 components: - pos: 29.5,31.5 parent: 2 type: Transform - location: armory type: WarpPoint - - uid: 30591 + - uid: 30664 components: - pos: 25.5,-23.5 parent: 2 type: Transform - location: bridge type: WarpPoint - - uid: 30592 + - uid: 30665 components: - pos: 46.5,6.5 parent: 2 type: Transform - location: brigmed type: WarpPoint - - uid: 30593 + - uid: 30666 components: - pos: 64.5,-8.5 parent: 2 type: Transform - location: evac type: WarpPoint - - uid: 30594 + - uid: 30667 components: - pos: 46.5,-24.5 parent: 2 type: Transform - location: north vault type: WarpPoint - - uid: 30595 + - uid: 30668 components: - pos: 31.5,-49.5 parent: 2 type: Transform - location: courtroom type: WarpPoint - - uid: 30596 + - uid: 30669 components: - pos: -19.5,-47.5 parent: 2 type: Transform - location: camera server room type: WarpPoint - - uid: 30597 + - uid: 30670 components: - pos: 9.5,-21.5 parent: 2 type: Transform - location: 'telecoms ' type: WarpPoint - - uid: 30598 + - uid: 30671 components: - pos: -46.5,-12.5 parent: 2 type: Transform - location: ame type: WarpPoint - - uid: 30599 + - uid: 30672 components: - pos: -40.5,21.5 parent: 2 type: Transform - location: cargo type: WarpPoint - - uid: 30600 + - uid: 30673 components: - pos: -42.5,32.5 parent: 2 type: Transform - location: salvage type: WarpPoint - - uid: 30601 + - uid: 30674 components: - pos: -1.5,-64.5 parent: 2 type: Transform - location: surgery type: WarpPoint - - uid: 30602 + - uid: 30675 components: - pos: -43.5,-46.5 parent: 2 type: Transform - location: atmospherics type: WarpPoint - - uid: 30603 + - uid: 30676 components: - pos: -69.5,-41.5 parent: 2 type: Transform - location: teg type: WarpPoint - - uid: 30604 + - uid: 30677 components: - pos: 72.5,-34.5 parent: 2 type: Transform - location: xenoarcheology type: WarpPoint - - uid: 30605 + - uid: 30678 components: - pos: 72.5,-45.5 parent: 2 type: Transform - location: robotics type: WarpPoint - - uid: 30606 + - uid: 30679 components: - pos: -11.5,-35.5 parent: 2 type: Transform - location: psychologists office type: WarpPoint - - uid: 30607 + - uid: 30680 components: - pos: -11.5,-10.5 parent: 2 type: Transform - location: trash sorting type: WarpPoint - - uid: 30608 + - uid: 30681 components: - pos: -7.5,9.5 parent: 2 type: Transform - location: botany type: WarpPoint - - uid: 30609 + - uid: 30682 components: - pos: 19.5,-13.5 parent: 2 type: Transform - location: detectives office type: WarpPoint - - uid: 30610 + - uid: 30683 components: - pos: 22.5,22.5 parent: 2 type: Transform - location: wardens office type: WarpPoint - - uid: 30611 + - uid: 30684 components: - pos: -24.5,-77.5 parent: 2 @@ -203510,29 +196345,29 @@ entities: type: WarpPoint - proto: WaterCooler entities: - - uid: 30612 + - uid: 30685 components: - pos: -8.5,-35.5 parent: 2 type: Transform - - uid: 30613 + - uid: 30686 components: - pos: 55.398575,18.5843 parent: 2 type: Transform - - uid: 30614 + - uid: 30687 components: - pos: 36.5,-6.5 parent: 2 type: Transform - - uid: 30615 + - uid: 30688 components: - pos: 41.5,-47.5 parent: 2 type: Transform - proto: WatermelonSeeds entities: - - uid: 30616 + - uid: 30689 components: - rot: 3.141592653589793 rad pos: -9.469382,12.335931 @@ -203540,439 +196375,432 @@ entities: type: Transform - proto: WaterTank entities: - - uid: 30617 + - uid: 30690 components: - pos: 74.5,-54.5 parent: 2 type: Transform - proto: WaterTankFull entities: - - uid: 30618 + - uid: 30691 components: - pos: -4.5,14.5 parent: 2 type: Transform - - uid: 30619 + - uid: 30692 components: - pos: -19.5,-86.5 parent: 2 type: Transform - - uid: 30620 + - uid: 30693 components: - pos: 7.5,-81.5 parent: 2 type: Transform - - uid: 30621 + - uid: 30694 components: - pos: 45.5,21.5 parent: 2 type: Transform - - uid: 30622 + - uid: 30695 components: - pos: 8.5,-64.5 parent: 2 type: Transform - - uid: 30623 + - uid: 30696 components: - pos: -29.5,-65.5 parent: 2 type: Transform - - uid: 30624 + - uid: 30697 components: - pos: 35.5,-10.5 parent: 2 type: Transform - - uid: 30625 + - uid: 30698 components: - pos: -27.5,-43.5 parent: 2 type: Transform - - uid: 30626 + - uid: 30699 components: - pos: -1.5,-14.5 parent: 2 type: Transform - - uid: 30627 + - uid: 30700 components: - pos: -39.5,-30.5 parent: 2 type: Transform - - uid: 30628 + - uid: 30701 components: - pos: -45.5,-3.5 parent: 2 type: Transform - - uid: 30629 + - uid: 30702 components: - pos: -27.5,37.5 parent: 2 type: Transform - - uid: 30630 + - uid: 30703 components: - pos: -8.5,-8.5 parent: 2 type: Transform - proto: WaterTankHighCapacity entities: - - uid: 30631 + - uid: 30704 components: - pos: -7.5,-21.5 parent: 2 type: Transform - - uid: 30632 + - uid: 30705 components: - pos: -5.5,8.5 parent: 2 type: Transform - proto: WaterVaporCanister entities: - - uid: 30633 + - uid: 30706 components: - pos: -50.5,-48.5 parent: 2 type: Transform - - uid: 30634 + - uid: 30707 components: - pos: -34.5,-28.5 parent: 2 type: Transform - proto: WeaponCapacitorRecharger entities: - - uid: 30635 + - uid: 30708 components: - pos: 28.5,-21.5 parent: 2 type: Transform - - uid: 30636 + - uid: 30709 components: - pos: 2.5,-56.5 parent: 2 type: Transform - - uid: 30637 + - uid: 30710 components: - pos: 6.5,12.5 parent: 2 type: Transform - - uid: 30638 + - uid: 30711 components: - pos: 20.5,-45.5 parent: 2 type: Transform - - uid: 30639 + - uid: 30712 components: - pos: 5.5,20.5 parent: 2 type: Transform - - uid: 30640 + - uid: 30713 components: - pos: 17.5,22.5 parent: 2 type: Transform - - uid: 30641 + - uid: 30714 components: - pos: 25.5,23.5 parent: 2 type: Transform - - uid: 30642 + - uid: 30715 components: - pos: -16.5,24.5 parent: 2 type: Transform - - uid: 30643 + - uid: 30716 components: - pos: -16.5,-21.5 parent: 2 type: Transform - proto: WeaponDisabler entities: - - uid: 30644 + - uid: 30717 components: - pos: 1.6229637,21.593708 parent: 2 type: Transform - - uid: 30645 + - uid: 30718 components: - pos: 12.563014,21.38584 parent: 2 type: Transform - - uid: 30646 + - uid: 30719 components: - pos: 12.453639,21.54209 parent: 2 type: Transform - proto: WeaponLaserCarbine entities: - - uid: 30647 + - uid: 30720 + components: + - pos: 26.559673,29.582918 + parent: 2 + type: Transform + - uid: 30721 components: - pos: 31.473701,27.53409 parent: 2 type: Transform - - uid: 30648 + - uid: 30722 components: - pos: 27.55704,27.505564 parent: 2 type: Transform - proto: WeaponPistolMk58 entities: - - uid: 30649 + - uid: 30723 components: - pos: 31.657001,32.450115 parent: 2 type: Transform - - uid: 30650 + - uid: 30724 components: - pos: 31.637281,32.558495 parent: 2 type: Transform - - uid: 30651 + - uid: 30725 components: - pos: 31.586092,32.47933 parent: 2 type: Transform - - uid: 30652 + - uid: 30726 components: - pos: 31.657982,32.330257 parent: 2 type: Transform - proto: WeaponRevolverDeckard entities: - - uid: 30653 + - uid: 30727 components: - pos: 30.600538,32.59448 parent: 2 type: Transform - proto: WeaponRevolverInspector entities: - - uid: 30654 + - uid: 30728 components: - pos: 23.444613,-35.267536 parent: 2 type: Transform -- proto: WeaponShotgunEnforcer - entities: - - uid: 30655 - components: - - pos: 26.480402,29.704184 - parent: 2 - type: Transform - - uid: 30656 - components: - - pos: 26.636652,29.376059 - parent: 2 - type: Transform - proto: WeaponShotgunKammerer entities: - - uid: 30657 + - uid: 30729 components: - pos: 26.643364,32.60906 parent: 2 type: Transform - - uid: 30658 + - uid: 30730 components: - pos: 26.777893,32.47498 parent: 2 type: Transform - - uid: 30659 + - uid: 30731 components: - pos: 26.709015,32.580257 parent: 2 type: Transform - proto: WeaponSubMachineGunDrozd entities: - - uid: 30660 + - uid: 30732 components: - pos: 27.939907,32.617863 parent: 2 type: Transform - - uid: 30661 + - uid: 30733 components: - pos: 28.718153,32.704456 parent: 2 type: Transform - - uid: 30662 + - uid: 30734 components: - pos: 29.421278,32.68883 parent: 2 type: Transform - proto: WeaponSubMachineGunWt550 entities: - - uid: 30663 + - uid: 30735 components: - pos: 6.384364,22.636343 parent: 2 type: Transform - proto: Welder entities: - - uid: 30664 + - uid: 30736 components: - pos: -23.377909,-24.435646 parent: 2 type: Transform - - uid: 30665 + - uid: 30737 components: - pos: -11.453522,-74.45183 parent: 2 type: Transform - - uid: 30666 + - uid: 30738 components: - pos: -44.4577,-25.484493 parent: 2 type: Transform - - uid: 30667 + - uid: 30739 components: - pos: -28.416739,-28.473803 parent: 2 type: Transform - - uid: 30668 + - uid: 30740 components: - pos: -52.43758,2.566814 parent: 2 type: Transform - - uid: 30669 + - uid: 30741 components: - pos: -44.442474,-76.91975 parent: 2 type: Transform - - uid: 30670 + - uid: 30742 components: - pos: 76.51503,-43.437786 parent: 2 type: Transform - - uid: 30671 + - uid: 30743 components: - pos: -66.37563,-43.430454 parent: 2 type: Transform - proto: WelderIndustrial entities: - - uid: 30672 + - uid: 30744 components: - pos: -34.41553,-12.611145 parent: 2 type: Transform - - uid: 30673 + - uid: 30745 components: - pos: -35.502888,-46.513077 parent: 2 type: Transform - - uid: 30674 + - uid: 30746 components: - pos: -42.417007,-21.43029 parent: 2 type: Transform - proto: WelderMini entities: - - uid: 30675 + - uid: 30747 components: - pos: -52.426445,-12.844277 parent: 2 type: Transform - proto: WeldingFuelTank entities: - - uid: 30676 + - uid: 30748 components: - pos: -28.5,-43.5 parent: 2 type: Transform - - uid: 30677 + - uid: 30749 components: - pos: 7.5,-64.5 parent: 2 type: Transform - proto: WeldingFuelTankFull entities: - - uid: 30678 + - uid: 30750 components: - pos: -3.5,-71.5 parent: 2 type: Transform - - uid: 30679 + - uid: 30751 components: - pos: -28.5,-25.5 parent: 2 type: Transform - - uid: 30680 + - uid: 30752 components: - pos: -43.5,-63.5 parent: 2 type: Transform - - uid: 30681 + - uid: 30753 components: - pos: -38.5,-30.5 parent: 2 type: Transform - - uid: 30682 + - uid: 30754 components: - pos: -0.5,23.5 parent: 2 type: Transform - - uid: 30683 + - uid: 30755 components: - pos: -51.5,4.5 parent: 2 type: Transform - - uid: 30684 + - uid: 30756 components: - pos: -16.5,-18.5 parent: 2 type: Transform - - uid: 30685 + - uid: 30757 components: - pos: 39.5,-32.5 parent: 2 type: Transform - - uid: 30686 + - uid: 30758 components: - pos: 72.5,-59.5 parent: 2 type: Transform - - uid: 30687 + - uid: 30759 components: - pos: 66.5,6.5 parent: 2 type: Transform - - uid: 30688 + - uid: 30760 components: - pos: 74.5,-55.5 parent: 2 type: Transform - - uid: 30689 + - uid: 30761 components: - pos: -54.5,-35.5 parent: 2 type: Transform - proto: WeldingFuelTankHighCapacity entities: - - uid: 30690 + - uid: 30762 components: - pos: -53.5,-25.5 parent: 2 type: Transform - proto: WetFloorSign entities: - - uid: 30691 + - uid: 30763 components: - pos: -7.8693366,-23.228895 parent: 2 type: Transform - - uid: 30692 + - uid: 30764 components: - pos: 16.379074,-41.325726 parent: 2 type: Transform - - uid: 30693 + - uid: 30765 components: - pos: -7.8537116,-23.36952 parent: 2 type: Transform - - uid: 30694 + - uid: 30766 components: - pos: -7.7912116,-23.603895 parent: 2 type: Transform - proto: Windoor entities: - - uid: 30695 + - uid: 30767 components: - rot: 1.5707963267948966 rad pos: 26.5,0.5 @@ -203980,135 +196808,135 @@ entities: type: Transform - proto: WindoorBarLocked entities: - - uid: 30696 + - uid: 30768 components: - pos: 18.5,15.5 parent: 2 type: Transform - - uid: 30697 + - uid: 30769 components: - pos: 17.5,15.5 parent: 2 type: Transform - - uid: 30698 + - uid: 30770 components: - rot: 1.5707963267948966 rad pos: 15.5,14.5 parent: 2 type: Transform - - uid: 30699 + - uid: 30771 components: - rot: 1.5707963267948966 rad pos: -39.5,-75.5 parent: 2 type: Transform - - uid: 30700 + - uid: 30772 components: - rot: -1.5707963267948966 rad pos: -44.5,-75.5 parent: 2 type: Transform - - uid: 30701 + - uid: 30773 components: - pos: 28.5,-37.5 parent: 2 type: Transform - proto: WindoorKitchenHydroponicsLocked entities: - - uid: 30702 + - uid: 30774 components: - pos: -4.5,17.5 parent: 2 type: Transform - - uid: 30703 + - uid: 30775 components: - pos: -7.5,17.5 parent: 2 type: Transform - proto: WindoorSecure entities: - - uid: 30704 + - uid: 30776 components: - pos: 1.5,-1.5 parent: 2 type: Transform - - uid: 30705 + - uid: 30777 components: - rot: 3.141592653589793 rad pos: 4.5,-3.5 parent: 2 type: Transform - - uid: 30706 + - uid: 30778 components: - pos: 4.5,-1.5 parent: 2 type: Transform - - uid: 30707 + - uid: 30779 components: - pos: 17.5,-53.5 parent: 2 type: Transform - - uid: 30708 + - uid: 30780 components: - pos: -13.5,-9.5 parent: 2 type: Transform - - uid: 30709 + - uid: 30781 components: - pos: 59.5,22.5 parent: 2 type: Transform - - uid: 30710 + - uid: 30782 components: - pos: 56.5,22.5 parent: 2 type: Transform - - uid: 30711 + - uid: 30783 components: - pos: 53.5,22.5 parent: 2 type: Transform - - uid: 30712 + - uid: 30784 components: - pos: 50.5,22.5 parent: 2 type: Transform - - uid: 30713 + - uid: 30785 components: - pos: 47.5,22.5 parent: 2 type: Transform - - uid: 30714 + - uid: 30786 components: - rot: -1.5707963267948966 rad pos: 60.5,18.5 parent: 2 type: Transform - - uid: 30715 + - uid: 30787 components: - rot: -1.5707963267948966 rad pos: 60.5,15.5 parent: 2 type: Transform - - uid: 30716 + - uid: 30788 components: - rot: 1.5707963267948966 rad pos: 59.5,-34.5 parent: 2 type: Transform - - uid: 30717 + - uid: 30789 components: - rot: 1.5707963267948966 rad pos: 59.5,-33.5 parent: 2 type: Transform - - uid: 30718 + - uid: 30790 components: - rot: -1.5707963267948966 rad pos: -34.5,14.5 parent: 2 type: Transform - - uid: 30719 + - uid: 30791 components: - rot: 3.141592653589793 rad pos: 71.5,-47.5 @@ -204116,49 +196944,49 @@ entities: type: Transform - proto: WindoorSecureArmoryLocked entities: - - uid: 30720 + - uid: 30792 components: - rot: 3.141592653589793 rad pos: 25.5,19.5 parent: 2 type: Transform - - uid: 30721 + - uid: 30793 components: - rot: 3.141592653589793 rad pos: 24.5,19.5 parent: 2 type: Transform - - uid: 30722 + - uid: 30794 components: - rot: 1.5707963267948966 rad pos: 30.5,28.5 parent: 2 type: Transform - - uid: 30723 + - uid: 30795 components: - rot: 1.5707963267948966 rad pos: 30.5,30.5 parent: 2 type: Transform - - uid: 30724 + - uid: 30796 components: - rot: -1.5707963267948966 rad pos: 28.5,30.5 parent: 2 type: Transform - - uid: 30725 + - uid: 30797 components: - rot: 3.141592653589793 rad pos: 26.5,19.5 parent: 2 type: Transform - - uid: 30726 + - uid: 30798 components: - rot: -1.5707963267948966 rad pos: 28.5,28.5 parent: 2 type: Transform - - uid: 30727 + - uid: 30799 components: - rot: 3.141592653589793 rad pos: 29.5,30.5 @@ -204166,14 +196994,14 @@ entities: type: Transform - proto: WindoorSecureBrigLocked entities: - - uid: 30728 + - uid: 30800 components: - pos: 31.5,-52.5 parent: 2 type: Transform - proto: WindoorSecureCargoLocked entities: - - uid: 30729 + - uid: 30801 components: - rot: -1.5707963267948966 rad pos: -26.5,22.5 @@ -204181,19 +197009,19 @@ entities: type: Transform - proto: WindoorSecureChemistryLocked entities: - - uid: 30730 + - uid: 30802 components: - rot: 1.5707963267948966 rad pos: 1.5,-48.5 parent: 2 type: Transform - - uid: 30731 + - uid: 30803 components: - rot: 1.5707963267948966 rad pos: 1.5,-46.5 parent: 2 type: Transform - - uid: 30732 + - uid: 30804 components: - rot: 3.141592653589793 rad pos: 3.5,-51.5 @@ -204201,13 +197029,13 @@ entities: type: Transform - proto: WindoorSecureEngineeringLocked entities: - - uid: 30733 + - uid: 30805 components: - rot: -1.5707963267948966 rad pos: -26.5,-12.5 parent: 2 type: Transform - - uid: 30734 + - uid: 30806 components: - rot: -1.5707963267948966 rad pos: -21.5,-34.5 @@ -204215,67 +197043,67 @@ entities: type: Transform - proto: WindoorSecureHeadOfPersonnelLocked entities: - - uid: 30735 + - uid: 30807 components: - pos: 4.5,-3.5 parent: 2 type: Transform - proto: WindoorSecureMedicalLocked entities: - - uid: 30736 + - uid: 30808 components: - rot: -1.5707963267948966 rad pos: -17.5,-79.5 parent: 2 type: Transform - - uid: 30737 + - uid: 30809 components: - rot: -1.5707963267948966 rad pos: -16.5,-78.5 parent: 2 type: Transform - - uid: 30738 + - uid: 30810 components: - rot: -1.5707963267948966 rad pos: -16.5,-76.5 parent: 2 type: Transform - - uid: 30739 + - uid: 30811 components: - rot: 1.5707963267948966 rad pos: -28.5,-77.5 parent: 2 type: Transform - - uid: 30740 + - uid: 30812 components: - rot: -1.5707963267948966 rad pos: -17.5,-75.5 parent: 2 type: Transform - - uid: 30741 + - uid: 30813 components: - rot: 1.5707963267948966 rad pos: -28.5,-79.5 parent: 2 type: Transform - - uid: 30742 + - uid: 30814 components: - rot: 3.141592653589793 rad pos: -20.5,-88.5 parent: 2 type: Transform - - uid: 30743 + - uid: 30815 components: - rot: 3.141592653589793 rad pos: -25.5,-88.5 parent: 2 type: Transform - - uid: 30744 + - uid: 30816 components: - pos: 3.5,-51.5 parent: 2 type: Transform - - uid: 30745 + - uid: 30817 components: - rot: 1.5707963267948966 rad pos: 48.5,6.5 @@ -204283,13 +197111,13 @@ entities: type: Transform - proto: WindoorSecureScienceLocked entities: - - uid: 30746 + - uid: 30818 components: - rot: 3.141592653589793 rad pos: 42.5,-40.5 parent: 2 type: Transform - - uid: 30747 + - uid: 30819 components: - rot: 3.141592653589793 rad pos: 43.5,-40.5 @@ -204297,116 +197125,116 @@ entities: type: Transform - proto: WindoorSecureSecurityLocked entities: - - uid: 30748 + - uid: 30820 components: - rot: -1.5707963267948966 rad pos: 48.5,6.5 parent: 2 type: Transform - - uid: 30749 + - uid: 30821 components: - rot: 1.5707963267948966 rad pos: 42.5,6.5 parent: 2 type: Transform - - uid: 30750 + - uid: 30822 components: - rot: 3.141592653589793 rad pos: 29.5,13.5 parent: 2 type: Transform - links: - - 2232 + - 2246 type: DeviceLinkSink - - uid: 30751 + - uid: 30823 components: - rot: 1.5707963267948966 rad pos: 39.5,7.5 parent: 2 type: Transform - links: - - 2234 + - 2248 type: DeviceLinkSink - - uid: 30752 + - uid: 30824 components: - rot: 3.141592653589793 rad pos: 5.5,11.5 parent: 2 type: Transform - - uid: 30753 + - uid: 30825 components: - rot: -1.5707963267948966 rad pos: 5.5,-56.5 parent: 2 type: Transform - - uid: 30754 + - uid: 30826 components: - rot: 3.141592653589793 rad pos: 4.5,11.5 parent: 2 type: Transform - - uid: 30755 + - uid: 30827 components: - rot: 3.141592653589793 rad pos: 32.5,13.5 parent: 2 type: Transform - links: - - 2233 + - 2247 type: DeviceLinkSink - - uid: 30756 + - uid: 30828 components: - rot: 1.5707963267948966 rad pos: 39.5,4.5 parent: 2 type: Transform - links: - - 2235 + - 2249 type: DeviceLinkSink - - uid: 30757 + - uid: 30829 components: - rot: 3.141592653589793 rad pos: 17.5,15.5 parent: 2 type: Transform - - uid: 30758 + - uid: 30830 components: - rot: 3.141592653589793 rad pos: 35.5,13.5 parent: 2 type: Transform - links: - - 2231 + - 2245 type: DeviceLinkSink - - uid: 30759 + - uid: 30831 components: - rot: 3.141592653589793 rad pos: 18.5,15.5 parent: 2 type: Transform - - uid: 30760 + - uid: 30832 components: - pos: 21.5,-44.5 parent: 2 type: Transform - - uid: 30761 + - uid: 30833 components: - pos: 22.5,-44.5 parent: 2 type: Transform - - uid: 30762 + - uid: 30834 components: - rot: 1.5707963267948966 rad pos: -17.5,-22.5 parent: 2 type: Transform - - uid: 30763 + - uid: 30835 components: - rot: 1.5707963267948966 rad pos: -17.5,-23.5 parent: 2 type: Transform - - uid: 30764 + - uid: 30836 components: - rot: 1.5707963267948966 rad pos: -17.5,25.5 @@ -204414,7 +197242,7 @@ entities: type: Transform - proto: WindoorTheatreLocked entities: - - uid: 30765 + - uid: 30837 components: - rot: 3.141592653589793 rad pos: 9.5,-0.5 @@ -204422,768 +197250,768 @@ entities: type: Transform - proto: Window entities: - - uid: 30766 + - uid: 30838 components: - rot: -1.5707963267948966 rad pos: -53.5,-31.5 parent: 2 type: Transform - - uid: 30767 + - uid: 30839 components: - rot: -1.5707963267948966 rad pos: -53.5,-32.5 parent: 2 type: Transform - - uid: 30768 + - uid: 30840 components: - pos: 27.5,-55.5 parent: 2 type: Transform - - uid: 30769 + - uid: 30841 components: - pos: 27.5,-54.5 parent: 2 type: Transform - - uid: 30770 + - uid: 30842 components: - rot: 3.141592653589793 rad pos: -20.5,65.5 parent: 2 type: Transform - - uid: 30771 + - uid: 30843 components: - rot: 3.141592653589793 rad pos: -20.5,67.5 parent: 2 type: Transform - - uid: 30772 + - uid: 30844 components: - rot: 3.141592653589793 rad pos: -14.5,67.5 parent: 2 type: Transform - - uid: 30773 + - uid: 30845 components: - pos: -13.5,-57.5 parent: 2 type: Transform - - uid: 30774 + - uid: 30846 components: - pos: -9.5,-58.5 parent: 2 type: Transform - - uid: 30775 + - uid: 30847 components: - pos: -4.5,-56.5 parent: 2 type: Transform - - uid: 30776 + - uid: 30848 components: - rot: -1.5707963267948966 rad pos: 22.5,5.5 parent: 2 type: Transform - - uid: 30777 + - uid: 30849 components: - pos: -21.5,-13.5 parent: 2 type: Transform - - uid: 30778 + - uid: 30850 components: - pos: -9.5,-40.5 parent: 2 type: Transform - - uid: 30779 + - uid: 30851 components: - rot: -1.5707963267948966 rad pos: 19.5,-1.5 parent: 2 type: Transform - - uid: 30780 + - uid: 30852 components: - pos: -14.5,-44.5 parent: 2 type: Transform - - uid: 30781 + - uid: 30853 components: - pos: -1.5,-56.5 parent: 2 type: Transform - - uid: 30782 + - uid: 30854 components: - pos: 39.5,-0.5 parent: 2 type: Transform - - uid: 30783 + - uid: 30855 components: - pos: -12.5,-58.5 parent: 2 type: Transform - - uid: 30784 + - uid: 30856 components: - pos: -6.5,-55.5 parent: 2 type: Transform - - uid: 30785 + - uid: 30857 components: - pos: -0.5,-62.5 parent: 2 type: Transform - - uid: 30786 + - uid: 30858 components: - pos: 1.5,-56.5 parent: 2 type: Transform - - uid: 30787 + - uid: 30859 components: - pos: -0.5,-58.5 parent: 2 type: Transform - - uid: 30788 + - uid: 30860 components: - pos: -3.5,-58.5 parent: 2 type: Transform - - uid: 30789 + - uid: 30861 components: - pos: 30.5,-57.5 parent: 2 type: Transform - - uid: 30790 + - uid: 30862 components: - pos: 29.5,-57.5 parent: 2 type: Transform - - uid: 30791 + - uid: 30863 components: - pos: 33.5,-57.5 parent: 2 type: Transform - - uid: 30792 + - uid: 30864 components: - rot: -1.5707963267948966 rad pos: 19.5,0.5 parent: 2 type: Transform - - uid: 30793 + - uid: 30865 components: - rot: -1.5707963267948966 rad pos: 26.5,-3.5 parent: 2 type: Transform - - uid: 30794 + - uid: 30866 components: - rot: -1.5707963267948966 rad pos: 23.5,-3.5 parent: 2 type: Transform - - uid: 30795 + - uid: 30867 components: - rot: -1.5707963267948966 rad pos: 22.5,-3.5 parent: 2 type: Transform - - uid: 30796 + - uid: 30868 components: - pos: 35.5,-5.5 parent: 2 type: Transform - - uid: 30797 + - uid: 30869 components: - pos: -21.5,11.5 parent: 2 type: Transform - - uid: 30798 + - uid: 30870 components: - pos: -21.5,12.5 parent: 2 type: Transform - - uid: 30799 + - uid: 30871 components: - pos: -21.5,-10.5 parent: 2 type: Transform - - uid: 30800 + - uid: 30872 components: - pos: -21.5,-14.5 parent: 2 type: Transform - - uid: 30801 + - uid: 30873 components: - pos: 35.5,-1.5 parent: 2 type: Transform - - uid: 30802 + - uid: 30874 components: - pos: 35.5,-2.5 parent: 2 type: Transform - - uid: 30803 + - uid: 30875 components: - pos: -21.5,-9.5 parent: 2 type: Transform - - uid: 30804 + - uid: 30876 components: - pos: -5.5,-44.5 parent: 2 type: Transform - - uid: 30805 + - uid: 30877 components: - pos: -11.5,-40.5 parent: 2 type: Transform - - uid: 30806 + - uid: 30878 components: - pos: -10.5,-40.5 parent: 2 type: Transform - - uid: 30807 + - uid: 30879 components: - pos: 0.5,-62.5 parent: 2 type: Transform - - uid: 30808 + - uid: 30880 components: - pos: 1.5,-57.5 parent: 2 type: Transform - - uid: 30809 + - uid: 30881 components: - pos: -0.5,-55.5 parent: 2 type: Transform - - uid: 30810 + - uid: 30882 components: - pos: 2.5,-55.5 parent: 2 type: Transform - - uid: 30811 + - uid: 30883 components: - pos: 2.5,-62.5 parent: 2 type: Transform - - uid: 30812 + - uid: 30884 components: - pos: -9.5,-62.5 parent: 2 type: Transform - - uid: 30813 + - uid: 30885 components: - pos: -3.5,-55.5 parent: 2 type: Transform - - uid: 30814 + - uid: 30886 components: - pos: -9.5,-55.5 parent: 2 type: Transform - - uid: 30815 + - uid: 30887 components: - pos: 2.5,-58.5 parent: 2 type: Transform - - uid: 30816 + - uid: 30888 components: - pos: 4.5,-62.5 parent: 2 type: Transform - - uid: 30817 + - uid: 30889 components: - pos: -8.5,-62.5 parent: 2 type: Transform - - uid: 30818 + - uid: 30890 components: - pos: -10.5,-56.5 parent: 2 type: Transform - - uid: 30819 + - uid: 30891 components: - pos: -10.5,-57.5 parent: 2 type: Transform - - uid: 30820 + - uid: 30892 components: - pos: -21.5,-61.5 parent: 2 type: Transform - - uid: 30821 + - uid: 30893 components: - pos: -21.5,-59.5 parent: 2 type: Transform - - uid: 30822 + - uid: 30894 components: - pos: -12.5,-44.5 parent: 2 type: Transform - - uid: 30823 + - uid: 30895 components: - pos: -12.5,-55.5 parent: 2 type: Transform - - uid: 30824 + - uid: 30896 components: - pos: -6.5,-36.5 parent: 2 type: Transform - - uid: 30825 + - uid: 30897 components: - pos: -25.5,9.5 parent: 2 type: Transform - - uid: 30826 + - uid: 30898 components: - pos: -3.5,-44.5 parent: 2 type: Transform - - uid: 30827 + - uid: 30899 components: - rot: -1.5707963267948966 rad pos: 19.5,-0.5 parent: 2 type: Transform - - uid: 30828 + - uid: 30900 components: - rot: -1.5707963267948966 rad pos: 25.5,5.5 parent: 2 type: Transform - - uid: 30829 + - uid: 30901 components: - rot: -1.5707963267948966 rad pos: 27.5,-3.5 parent: 2 type: Transform - - uid: 30830 + - uid: 30902 components: - rot: -1.5707963267948966 rad pos: 21.5,-3.5 parent: 2 type: Transform - - uid: 30831 + - uid: 30903 components: - pos: -4.5,-44.5 parent: 2 type: Transform - - uid: 30832 + - uid: 30904 components: - pos: -1.5,-57.5 parent: 2 type: Transform - - uid: 30833 + - uid: 30905 components: - pos: -4.5,-57.5 parent: 2 type: Transform - - uid: 30834 + - uid: 30906 components: - pos: -7.5,-57.5 parent: 2 type: Transform - - uid: 30835 + - uid: 30907 components: - pos: -13.5,-44.5 parent: 2 type: Transform - - uid: 30836 + - uid: 30908 components: - pos: -6.5,-38.5 parent: 2 type: Transform - - uid: 30837 + - uid: 30909 components: - pos: -10.5,-16.5 parent: 2 type: Transform - - uid: 30838 + - uid: 30910 components: - pos: 42.5,-0.5 parent: 2 type: Transform - - uid: 30839 + - uid: 30911 components: - pos: -21.5,-20.5 parent: 2 type: Transform - - uid: 30840 + - uid: 30912 components: - rot: -1.5707963267948966 rad pos: 21.5,5.5 parent: 2 type: Transform - - uid: 30841 + - uid: 30913 components: - rot: -1.5707963267948966 rad pos: 26.5,5.5 parent: 2 type: Transform - - uid: 30842 + - uid: 30914 components: - rot: -1.5707963267948966 rad pos: 23.5,5.5 parent: 2 type: Transform - - uid: 30843 + - uid: 30915 components: - rot: -1.5707963267948966 rad pos: 25.5,-3.5 parent: 2 type: Transform - - uid: 30844 + - uid: 30916 components: - pos: -12.5,43.5 parent: 2 type: Transform - - uid: 30845 + - uid: 30917 components: - pos: 37.5,-0.5 parent: 2 type: Transform - - uid: 30846 + - uid: 30918 components: - rot: 3.141592653589793 rad pos: -20.5,-68.5 parent: 2 type: Transform - - uid: 30847 + - uid: 30919 components: - rot: 3.141592653589793 rad pos: -18.5,-68.5 parent: 2 type: Transform - - uid: 30848 + - uid: 30920 components: - rot: -1.5707963267948966 rad pos: 19.5,3.5 parent: 2 type: Transform - - uid: 30849 + - uid: 30921 components: - rot: -1.5707963267948966 rad pos: 19.5,2.5 parent: 2 type: Transform - - uid: 30850 + - uid: 30922 components: - pos: -6.5,-58.5 parent: 2 type: Transform - - uid: 30851 + - uid: 30923 components: - pos: -6.5,-37.5 parent: 2 type: Transform - - uid: 30852 + - uid: 30924 components: - pos: -7.5,-56.5 parent: 2 type: Transform - - uid: 30853 + - uid: 30925 components: - pos: 41.5,-0.5 parent: 2 type: Transform - - uid: 30854 + - uid: 30926 components: - pos: -13.5,-56.5 parent: 2 type: Transform - - uid: 30855 + - uid: 30927 components: - rot: -1.5707963267948966 rad pos: 19.5,1.5 parent: 2 type: Transform - - uid: 30856 + - uid: 30928 components: - rot: -1.5707963267948966 rad pos: 27.5,5.5 parent: 2 type: Transform - - uid: 30857 + - uid: 30929 components: - pos: 43.5,-0.5 parent: 2 type: Transform - - uid: 30858 + - uid: 30930 components: - pos: -21.5,-22.5 parent: 2 type: Transform - - uid: 30859 + - uid: 30931 components: - pos: 32.5,-57.5 parent: 2 type: Transform - - uid: 30860 + - uid: 30932 components: - pos: -12.5,14.5 parent: 2 type: Transform - - uid: 30861 + - uid: 30933 components: - pos: -23.5,9.5 parent: 2 type: Transform - - uid: 30862 + - uid: 30934 components: - pos: -22.5,9.5 parent: 2 type: Transform - - uid: 30863 + - uid: 30935 components: - pos: -8.5,43.5 parent: 2 type: Transform - - uid: 30864 + - uid: 30936 components: - pos: 35.5,-4.5 parent: 2 type: Transform - - uid: 30865 + - uid: 30937 components: - pos: -12.5,-16.5 parent: 2 type: Transform - - uid: 30866 + - uid: 30938 components: - pos: 43.5,-12.5 parent: 2 type: Transform - - uid: 30867 + - uid: 30939 components: - pos: 42.5,-44.5 parent: 2 type: Transform - - uid: 30868 + - uid: 30940 components: - pos: 43.5,-44.5 parent: 2 type: Transform - - uid: 30869 + - uid: 30941 components: - pos: 44.5,-44.5 parent: 2 type: Transform - - uid: 30870 + - uid: 30942 components: - pos: 27.5,-51.5 parent: 2 type: Transform - - uid: 30871 + - uid: 30943 components: - pos: 27.5,-47.5 parent: 2 type: Transform - - uid: 30872 + - uid: 30944 components: - pos: -19.5,0.5 parent: 2 type: Transform - - uid: 30873 + - uid: 30945 components: - pos: -17.5,0.5 parent: 2 type: Transform - - uid: 30874 + - uid: 30946 components: - pos: -16.5,0.5 parent: 2 type: Transform - - uid: 30875 + - uid: 30947 components: - rot: -1.5707963267948966 rad pos: -24.5,-18.5 parent: 2 type: Transform - - uid: 30876 + - uid: 30948 components: - pos: 38.5,-57.5 parent: 2 type: Transform - - uid: 30877 + - uid: 30949 components: - pos: 40.5,-57.5 parent: 2 type: Transform - - uid: 30878 + - uid: 30950 components: - rot: -1.5707963267948966 rad pos: -25.5,-18.5 parent: 2 type: Transform - - uid: 30879 + - uid: 30951 components: - pos: 5.5,-58.5 parent: 2 type: Transform - - uid: 30880 + - uid: 30952 components: - rot: 1.5707963267948966 rad pos: -66.5,-29.5 parent: 2 type: Transform - - uid: 30881 + - uid: 30953 components: - rot: -1.5707963267948966 rad pos: -28.5,-47.5 parent: 2 type: Transform - - uid: 30882 + - uid: 30954 components: - pos: -38.5,-63.5 parent: 2 type: Transform - - uid: 30883 + - uid: 30955 components: - pos: -38.5,-65.5 parent: 2 type: Transform - - uid: 30884 + - uid: 30956 components: - pos: -21.5,24.5 parent: 2 type: Transform - - uid: 30885 + - uid: 30957 components: - pos: -21.5,23.5 parent: 2 type: Transform - - uid: 30886 + - uid: 30958 components: - pos: -34.5,2.5 parent: 2 type: Transform - - uid: 30887 + - uid: 30959 components: - pos: -26.5,9.5 parent: 2 type: Transform - - uid: 30888 + - uid: 30960 components: - pos: -36.5,2.5 parent: 2 type: Transform - - uid: 30889 + - uid: 30961 components: - pos: -36.5,7.5 parent: 2 type: Transform - - uid: 30890 + - uid: 30962 components: - pos: -39.5,2.5 parent: 2 type: Transform - - uid: 30891 + - uid: 30963 components: - pos: -35.5,2.5 parent: 2 type: Transform - - uid: 30892 + - uid: 30964 components: - pos: -39.5,7.5 parent: 2 type: Transform - - uid: 30893 + - uid: 30965 components: - pos: -41.5,2.5 parent: 2 type: Transform - - uid: 30894 + - uid: 30966 components: - pos: -40.5,2.5 parent: 2 type: Transform - - uid: 30895 + - uid: 30967 components: - rot: 1.5707963267948966 rad pos: -52.5,-0.5 parent: 2 type: Transform - - uid: 30896 + - uid: 30968 components: - pos: -30.5,-72.5 parent: 2 type: Transform - - uid: 30897 + - uid: 30969 components: - pos: -14.5,65.5 parent: 2 type: Transform - - uid: 30898 + - uid: 30970 components: - pos: -14.5,62.5 parent: 2 type: Transform - - uid: 30899 + - uid: 30971 components: - pos: -3.5,47.5 parent: 2 type: Transform - - uid: 30900 + - uid: 30972 components: - pos: -1.5,49.5 parent: 2 type: Transform - - uid: 30901 + - uid: 30973 components: - pos: -5.5,47.5 parent: 2 type: Transform - - uid: 30902 + - uid: 30974 components: - rot: 3.141592653589793 rad pos: -19.5,44.5 parent: 2 type: Transform - - uid: 30903 + - uid: 30975 components: - pos: -7.5,57.5 parent: 2 type: Transform - - uid: 30904 + - uid: 30976 components: - pos: -5.5,57.5 parent: 2 type: Transform - - uid: 30905 + - uid: 30977 components: - pos: 2.5,47.5 parent: 2 type: Transform - - uid: 30906 + - uid: 30978 components: - pos: 2.5,50.5 parent: 2 type: Transform - - uid: 30907 + - uid: 30979 components: - pos: 2.5,51.5 parent: 2 type: Transform - - uid: 30908 + - uid: 30980 components: - pos: -1.5,50.5 parent: 2 type: Transform - - uid: 30909 + - uid: 30981 components: - pos: -11.5,51.5 parent: 2 type: Transform - - uid: 30910 + - uid: 30982 components: - pos: -11.5,53.5 parent: 2 type: Transform - - uid: 30911 + - uid: 30983 components: - pos: -20.5,62.5 parent: 2 type: Transform - - uid: 30912 + - uid: 30984 components: - rot: 3.141592653589793 rad pos: -28.5,-72.5 @@ -205191,129 +198019,129 @@ entities: type: Transform - proto: WindowDirectional entities: - - uid: 30913 + - uid: 30985 components: - pos: 3.5,-1.5 parent: 2 type: Transform - - uid: 30914 + - uid: 30986 components: - pos: 2.5,-1.5 parent: 2 type: Transform - - uid: 30915 + - uid: 30987 components: - rot: -1.5707963267948966 rad pos: 10.5,0.5 parent: 2 type: Transform - - uid: 30916 + - uid: 30988 components: - rot: 1.5707963267948966 rad pos: 7.5,1.5 parent: 2 type: Transform - - uid: 30917 + - uid: 30989 components: - pos: 8.5,2.5 parent: 2 type: Transform - - uid: 30918 + - uid: 30990 components: - rot: -1.5707963267948966 rad pos: 10.5,1.5 parent: 2 type: Transform - - uid: 30919 + - uid: 30991 components: - rot: -1.5707963267948966 rad pos: 5.5,-57.5 parent: 2 type: Transform - - uid: 30920 + - uid: 30992 components: - pos: 9.5,2.5 parent: 2 type: Transform - - uid: 30921 + - uid: 30993 components: - rot: 3.141592653589793 rad pos: 8.5,-0.5 parent: 2 type: Transform - - uid: 30922 + - uid: 30994 components: - rot: 1.5707963267948966 rad pos: 7.5,0.5 parent: 2 type: Transform - - uid: 30923 + - uid: 30995 components: - rot: 1.5707963267948966 rad pos: 59.5,-35.5 parent: 2 type: Transform - - uid: 30924 + - uid: 30996 components: - rot: -1.5707963267948966 rad pos: 74.5,-49.5 parent: 2 type: Transform - - uid: 30925 + - uid: 30997 components: - rot: -1.5707963267948966 rad pos: 74.5,-47.5 parent: 2 type: Transform - - uid: 30926 + - uid: 30998 components: - rot: 1.5707963267948966 rad pos: 68.5,-47.5 parent: 2 type: Transform - - uid: 30927 + - uid: 30999 components: - rot: 1.5707963267948966 rad pos: 68.5,-49.5 parent: 2 type: Transform - - uid: 30928 + - uid: 31000 components: - rot: 1.5707963267948966 rad pos: 59.5,-32.5 parent: 2 type: Transform - - uid: 30929 + - uid: 31001 components: - rot: 1.5707963267948966 rad pos: 68.5,-48.5 parent: 2 type: Transform - - uid: 30930 + - uid: 31002 components: - rot: -1.5707963267948966 rad pos: 74.5,-48.5 parent: 2 type: Transform - - uid: 30931 + - uid: 31003 components: - rot: 3.141592653589793 rad pos: 69.5,-47.5 parent: 2 type: Transform - - uid: 30932 + - uid: 31004 components: - rot: 3.141592653589793 rad pos: 70.5,-47.5 parent: 2 type: Transform - - uid: 30933 + - uid: 31005 components: - rot: 3.141592653589793 rad pos: 73.5,-47.5 parent: 2 type: Transform - - uid: 30934 + - uid: 31006 components: - rot: 3.141592653589793 rad pos: 72.5,-47.5 @@ -205321,1569 +198149,1569 @@ entities: type: Transform - proto: WindowReinforcedDirectional entities: - - uid: 30935 + - uid: 31007 components: - rot: 1.5707963267948966 rad pos: -25.5,-24.5 parent: 2 type: Transform - - uid: 30936 + - uid: 31008 components: - rot: 3.141592653589793 rad pos: -24.5,-24.5 parent: 2 type: Transform - - uid: 30937 + - uid: 31009 components: - rot: -1.5707963267948966 rad pos: -11.5,7.5 parent: 2 type: Transform - - uid: 30938 + - uid: 31010 components: - pos: 16.5,-53.5 parent: 2 type: Transform - - uid: 30939 + - uid: 31011 components: - pos: -11.5,6.5 parent: 2 type: Transform - - uid: 30940 + - uid: 31012 components: - pos: 15.5,-53.5 parent: 2 type: Transform - - uid: 30941 + - uid: 31013 components: - rot: 3.141592653589793 rad pos: -11.5,7.5 parent: 2 type: Transform - - uid: 30942 + - uid: 31014 components: - rot: -1.5707963267948966 rad pos: -11.5,6.5 parent: 2 type: Transform - - uid: 30943 + - uid: 31015 components: - rot: 1.5707963267948966 rad pos: -11.5,6.5 parent: 2 type: Transform - - uid: 30944 + - uid: 31016 components: - rot: 1.5707963267948966 rad pos: -11.5,7.5 parent: 2 type: Transform - - uid: 30945 + - uid: 31017 components: - pos: -28.5,-78.5 parent: 2 type: Transform - - uid: 30946 + - uid: 31018 components: - rot: -1.5707963267948966 rad pos: 22.5,-21.5 parent: 2 type: Transform - - uid: 30947 + - uid: 31019 components: - rot: -1.5707963267948966 rad pos: -16.5,-75.5 parent: 2 type: Transform - - uid: 30948 + - uid: 31020 components: - rot: 1.5707963267948966 rad pos: -23.5,-88.5 parent: 2 type: Transform - - uid: 30949 + - uid: 31021 components: - pos: -17.5,-76.5 parent: 2 type: Transform - - uid: 30950 + - uid: 31022 components: - pos: -30.5,-78.5 parent: 2 type: Transform - - uid: 30951 + - uid: 31023 components: - rot: 1.5707963267948966 rad pos: -28.5,-80.5 parent: 2 type: Transform - - uid: 30952 + - uid: 31024 components: - rot: 1.5707963267948966 rad pos: -23.5,-90.5 parent: 2 type: Transform - - uid: 30953 + - uid: 31025 components: - pos: -4.5,4.5 parent: 2 type: Transform - - uid: 30954 + - uid: 31026 components: - rot: -1.5707963267948966 rad pos: 28.5,-21.5 parent: 2 type: Transform - - uid: 30955 + - uid: 31027 components: - rot: 1.5707963267948966 rad pos: 24.5,-21.5 parent: 2 type: Transform - - uid: 30956 + - uid: 31028 components: - rot: 1.5707963267948966 rad pos: 26.5,-21.5 parent: 2 type: Transform - - uid: 30957 + - uid: 31029 components: - rot: -1.5707963267948966 rad pos: 26.5,-21.5 parent: 2 type: Transform - - uid: 30958 + - uid: 31030 components: - pos: 49.5,22.5 parent: 2 type: Transform - - uid: 30959 + - uid: 31031 components: - pos: 25.5,-23.5 parent: 2 type: Transform - - uid: 30960 + - uid: 31032 components: - rot: 3.141592653589793 rad pos: 26.5,28.5 parent: 2 type: Transform - - uid: 30961 + - uid: 31033 components: - rot: 1.5707963267948966 rad pos: 30.5,29.5 parent: 2 type: Transform - - uid: 30962 + - uid: 31034 components: - rot: 3.141592653589793 rad pos: 32.5,28.5 parent: 2 type: Transform - - uid: 30963 + - uid: 31035 components: - rot: 3.141592653589793 rad pos: 27.5,28.5 parent: 2 type: Transform - - uid: 30964 + - uid: 31036 components: - rot: -1.5707963267948966 rad pos: -17.5,-78.5 parent: 2 type: Transform - - uid: 30965 + - uid: 31037 components: - pos: -11.5,-9.5 parent: 2 type: Transform - - uid: 30966 + - uid: 31038 components: - rot: -1.5707963267948966 rad pos: 19.5,-54.5 parent: 2 type: Transform - - uid: 30967 + - uid: 31039 components: - pos: 58.5,22.5 parent: 2 type: Transform - - uid: 30968 + - uid: 31040 components: - pos: 52.5,22.5 parent: 2 type: Transform - - uid: 30969 + - uid: 31041 components: - pos: 55.5,22.5 parent: 2 type: Transform - - uid: 30970 + - uid: 31042 components: - rot: -1.5707963267948966 rad pos: 28.5,29.5 parent: 2 type: Transform - - uid: 30971 + - uid: 31043 components: - rot: 3.141592653589793 rad pos: 26.5,30.5 parent: 2 type: Transform - - uid: 30972 + - uid: 31044 components: - rot: 3.141592653589793 rad pos: -17.5,-78.5 parent: 2 type: Transform - - uid: 30973 + - uid: 31045 components: - rot: -1.5707963267948966 rad pos: -17.5,-76.5 parent: 2 type: Transform - - uid: 30974 + - uid: 31046 components: - rot: -1.5707963267948966 rad pos: -16.5,-79.5 parent: 2 type: Transform - - uid: 30975 + - uid: 31047 components: - rot: 1.5707963267948966 rad pos: -28.5,-78.5 parent: 2 type: Transform - - uid: 30976 + - uid: 31048 components: - rot: 3.141592653589793 rad pos: -26.5,-88.5 parent: 2 type: Transform - - uid: 30977 + - uid: 31049 components: - rot: 3.141592653589793 rad pos: -23.5,-88.5 parent: 2 type: Transform - - uid: 30978 + - uid: 31050 components: - rot: 3.141592653589793 rad pos: -21.5,-88.5 parent: 2 type: Transform - - uid: 30979 + - uid: 31051 components: - pos: 26.5,-23.5 parent: 2 type: Transform - - uid: 30980 + - uid: 31052 components: - rot: 3.141592653589793 rad pos: -24.5,-88.5 parent: 2 type: Transform - - uid: 30981 + - uid: 31053 components: - rot: -1.5707963267948966 rad pos: -22.5,-90.5 parent: 2 type: Transform - - uid: 30982 + - uid: 31054 components: - rot: -1.5707963267948966 rad pos: -22.5,-88.5 parent: 2 type: Transform - - uid: 30983 + - uid: 31055 components: - rot: -1.5707963267948966 rad pos: 28.5,27.5 parent: 2 type: Transform - - uid: 30984 + - uid: 31056 components: - pos: -9.5,-81.5 parent: 2 type: Transform - - uid: 30985 + - uid: 31057 components: - rot: 3.141592653589793 rad pos: 31.5,30.5 parent: 2 type: Transform - - uid: 30986 + - uid: 31058 components: - rot: 3.141592653589793 rad pos: 27.5,30.5 parent: 2 type: Transform - - uid: 30987 + - uid: 31059 components: - rot: 3.141592653589793 rad pos: -8.5,21.5 parent: 2 type: Transform - - uid: 30988 + - uid: 31060 components: - rot: 3.141592653589793 rad pos: 32.5,30.5 parent: 2 type: Transform - - uid: 30989 + - uid: 31061 components: - rot: 1.5707963267948966 rad pos: 23.5,-24.5 parent: 2 type: Transform - - uid: 30990 + - uid: 31062 components: - rot: 3.141592653589793 rad pos: 31.5,28.5 parent: 2 type: Transform - - uid: 30991 + - uid: 31063 components: - rot: -1.5707963267948966 rad pos: -22.5,-89.5 parent: 2 type: Transform - - uid: 30992 + - uid: 31064 components: - rot: 1.5707963267948966 rad pos: -23.5,-89.5 parent: 2 type: Transform - - uid: 30993 + - uid: 31065 components: - pos: -29.5,-78.5 parent: 2 type: Transform - - uid: 30994 + - uid: 31066 components: - rot: 1.5707963267948966 rad pos: 30.5,27.5 parent: 2 type: Transform - - uid: 30995 + - uid: 31067 components: - rot: -1.5707963267948966 rad pos: 24.5,-21.5 parent: 2 type: Transform - - uid: 30996 + - uid: 31068 components: - rot: 1.5707963267948966 rad pos: 28.5,-21.5 parent: 2 type: Transform - - uid: 30997 + - uid: 31069 components: - pos: -3.5,4.5 parent: 2 type: Transform - - uid: 30998 + - uid: 31070 components: - rot: 1.5707963267948966 rad pos: 22.5,-21.5 parent: 2 type: Transform - - uid: 30999 + - uid: 31071 components: - rot: 1.5707963267948966 rad pos: -10.5,-82.5 parent: 2 type: Transform - - uid: 31000 + - uid: 31072 components: - rot: -1.5707963267948966 rad pos: 27.5,-24.5 parent: 2 type: Transform - - uid: 31001 + - uid: 31073 components: - pos: 24.5,-23.5 parent: 2 type: Transform - - uid: 31002 + - uid: 31074 components: - pos: 18.5,-53.5 parent: 2 type: Transform - - uid: 31003 + - uid: 31075 components: - pos: -14.5,-9.5 parent: 2 type: Transform - - uid: 31004 + - uid: 31076 components: - rot: 3.141592653589793 rad pos: -22.5,-88.5 parent: 2 type: Transform - - uid: 31005 + - uid: 31077 components: - rot: 3.141592653589793 rad pos: -19.5,-88.5 parent: 2 type: Transform - - uid: 31006 + - uid: 31078 components: - rot: -1.5707963267948966 rad pos: -10.5,-10.5 parent: 2 type: Transform - - uid: 31007 + - uid: 31079 components: - rot: 1.5707963267948966 rad pos: -15.5,-10.5 parent: 2 type: Transform - - uid: 31008 + - uid: 31080 components: - pos: -10.5,29.5 parent: 2 type: Transform - - uid: 31009 + - uid: 31081 components: - pos: -9.5,29.5 parent: 2 type: Transform - - uid: 31010 + - uid: 31082 components: - pos: 46.5,22.5 parent: 2 type: Transform - - uid: 31011 + - uid: 31083 components: - rot: -1.5707963267948966 rad pos: 60.5,19.5 parent: 2 type: Transform - - uid: 31012 + - uid: 31084 components: - rot: -1.5707963267948966 rad pos: 60.5,16.5 parent: 2 type: Transform - - uid: 31013 + - uid: 31085 components: - pos: -10.5,-82.5 parent: 2 type: Transform - - uid: 31014 + - uid: 31086 components: - pos: 30.5,-52.5 parent: 2 type: Transform - - uid: 31015 + - uid: 31087 components: - pos: 29.5,-52.5 parent: 2 type: Transform - - uid: 31016 + - uid: 31088 components: - pos: 28.5,-52.5 parent: 2 type: Transform - - uid: 31017 + - uid: 31089 components: - pos: 32.5,-52.5 parent: 2 type: Transform - - uid: 31018 + - uid: 31090 components: - pos: 33.5,-52.5 parent: 2 type: Transform - - uid: 31019 + - uid: 31091 components: - pos: 34.5,-52.5 parent: 2 type: Transform - - uid: 31020 + - uid: 31092 components: - rot: 1.5707963267948966 rad pos: 32.5,-47.5 parent: 2 type: Transform - - uid: 31021 + - uid: 31093 components: - rot: 1.5707963267948966 rad pos: 32.5,-48.5 parent: 2 type: Transform - - uid: 31022 + - uid: 31094 components: - pos: 33.5,-48.5 parent: 2 type: Transform - - uid: 31023 + - uid: 31095 components: - pos: 34.5,-48.5 parent: 2 type: Transform - - uid: 31024 + - uid: 31096 components: - rot: 1.5707963267948966 rad pos: 34.5,-48.5 parent: 2 type: Transform - - uid: 31025 + - uid: 31097 components: - rot: 1.5707963267948966 rad pos: 34.5,-47.5 parent: 2 type: Transform - - uid: 31026 + - uid: 31098 components: - rot: 1.5707963267948966 rad pos: 29.5,-47.5 parent: 2 type: Transform - - uid: 31027 + - uid: 31099 components: - rot: 1.5707963267948966 rad pos: 29.5,-48.5 parent: 2 type: Transform - - uid: 31028 + - uid: 31100 components: - pos: 29.5,-48.5 parent: 2 type: Transform - - uid: 31029 + - uid: 31101 components: - pos: 28.5,-48.5 parent: 2 type: Transform - - uid: 31030 + - uid: 31102 components: - rot: 3.141592653589793 rad pos: 62.5,-48.5 parent: 2 type: Transform - - uid: 31031 + - uid: 31103 components: - rot: 1.5707963267948966 rad pos: 61.5,-47.5 parent: 2 type: Transform - - uid: 31032 + - uid: 31104 components: - rot: -1.5707963267948966 rad pos: 63.5,-47.5 parent: 2 type: Transform - - uid: 31033 + - uid: 31105 components: - rot: 3.141592653589793 rad pos: 63.5,-47.5 parent: 2 type: Transform - - uid: 31034 + - uid: 31106 components: - rot: -1.5707963267948966 rad pos: 64.5,-46.5 parent: 2 type: Transform - - uid: 31035 + - uid: 31107 components: - pos: 63.5,-45.5 parent: 2 type: Transform - - uid: 31036 + - uid: 31108 components: - pos: 62.5,-44.5 parent: 2 type: Transform - - uid: 31037 + - uid: 31109 components: - rot: -1.5707963267948966 rad pos: 63.5,-45.5 parent: 2 type: Transform - - uid: 31038 + - uid: 31110 components: - rot: 1.5707963267948966 rad pos: 61.5,-45.5 parent: 2 type: Transform - - uid: 31039 + - uid: 31111 components: - pos: 61.5,-45.5 parent: 2 type: Transform - - uid: 31040 + - uid: 31112 components: - rot: 1.5707963267948966 rad pos: 60.5,-46.5 parent: 2 type: Transform - - uid: 31041 + - uid: 31113 components: - rot: 3.141592653589793 rad pos: 61.5,-47.5 parent: 2 type: Transform - - uid: 31042 + - uid: 31114 components: - rot: 1.5707963267948966 rad pos: -44.5,-13.5 parent: 2 type: Transform - - uid: 31043 + - uid: 31115 components: - rot: 3.141592653589793 rad pos: -46.5,-8.5 parent: 2 type: Transform - - uid: 31044 + - uid: 31116 components: - rot: -1.5707963267948966 rad pos: -8.5,27.5 parent: 2 type: Transform - - uid: 31045 + - uid: 31117 components: - rot: 1.5707963267948966 rad pos: -11.5,28.5 parent: 2 type: Transform - - uid: 31046 + - uid: 31118 components: - rot: -1.5707963267948966 rad pos: -8.5,28.5 parent: 2 type: Transform - - uid: 31047 + - uid: 31119 components: - rot: -1.5707963267948966 rad pos: -34.5,13.5 parent: 2 type: Transform - - uid: 31048 + - uid: 31120 components: - rot: -1.5707963267948966 rad pos: -34.5,15.5 parent: 2 type: Transform - - uid: 31049 + - uid: 31121 components: - rot: 3.141592653589793 rad pos: -3.5,4.5 parent: 2 type: Transform - - uid: 31050 + - uid: 31122 components: - rot: 3.141592653589793 rad pos: -4.5,4.5 parent: 2 type: Transform - - uid: 31051 + - uid: 31123 components: - rot: 1.5707963267948966 rad pos: -3.5,4.5 parent: 2 type: Transform - - uid: 31052 + - uid: 31124 components: - rot: -1.5707963267948966 rad pos: -4.5,4.5 parent: 2 type: Transform - - uid: 31053 + - uid: 31125 components: - pos: -12.5,-9.5 parent: 2 type: Transform - - uid: 31054 + - uid: 31126 components: - rot: 3.141592653589793 rad pos: 30.5,30.5 parent: 2 type: Transform - - uid: 31055 + - uid: 31127 components: - pos: -8.5,-81.5 parent: 2 type: Transform - - uid: 31056 + - uid: 31128 components: - rot: 3.141592653589793 rad pos: -10.5,-84.5 parent: 2 type: Transform - - uid: 31057 + - uid: 31129 components: - rot: 3.141592653589793 rad pos: -9.5,-84.5 parent: 2 type: Transform - - uid: 31058 + - uid: 31130 components: - pos: 45.5,38.5 parent: 2 type: Transform - - uid: 31059 + - uid: 31131 components: - pos: 46.5,38.5 parent: 2 type: Transform - - uid: 31060 + - uid: 31132 components: - pos: 47.5,38.5 parent: 2 type: Transform - - uid: 31061 + - uid: 31133 components: - rot: -1.5707963267948966 rad pos: 49.5,37.5 parent: 2 type: Transform - - uid: 31062 + - uid: 31134 components: - rot: -1.5707963267948966 rad pos: 49.5,36.5 parent: 2 type: Transform - - uid: 31063 + - uid: 31135 components: - rot: 3.141592653589793 rad pos: 48.5,35.5 parent: 2 type: Transform - - uid: 31064 + - uid: 31136 components: - rot: 3.141592653589793 rad pos: 47.5,35.5 parent: 2 type: Transform - - uid: 31065 + - uid: 31137 components: - rot: 3.141592653589793 rad pos: 46.5,35.5 parent: 2 type: Transform - - uid: 31066 + - uid: 31138 components: - rot: 1.5707963267948966 rad pos: 45.5,36.5 parent: 2 type: Transform - - uid: 31067 + - uid: 31139 components: - rot: 3.141592653589793 rad pos: 45.5,36.5 parent: 2 type: Transform - - uid: 31068 + - uid: 31140 components: - pos: -2.5,71.5 parent: 2 type: Transform - - uid: 31069 + - uid: 31141 components: - pos: -1.5,71.5 parent: 2 type: Transform - - uid: 31070 + - uid: 31142 components: - pos: -0.5,71.5 parent: 2 type: Transform - - uid: 31071 + - uid: 31143 components: - rot: 1.5707963267948966 rad pos: -3.5,70.5 parent: 2 type: Transform - - uid: 31072 + - uid: 31144 components: - rot: 1.5707963267948966 rad pos: -3.5,69.5 parent: 2 type: Transform - - uid: 31073 + - uid: 31145 components: - rot: 1.5707963267948966 rad pos: -3.5,68.5 parent: 2 type: Transform - - uid: 31074 + - uid: 31146 components: - rot: 3.141592653589793 rad pos: -2.5,67.5 parent: 2 type: Transform - - uid: 31075 + - uid: 31147 components: - rot: 3.141592653589793 rad pos: -1.5,67.5 parent: 2 type: Transform - - uid: 31076 + - uid: 31148 components: - rot: 3.141592653589793 rad pos: -0.5,67.5 parent: 2 type: Transform - - uid: 31077 + - uid: 31149 components: - rot: -1.5707963267948966 rad pos: 0.5,68.5 parent: 2 type: Transform - - uid: 31078 + - uid: 31150 components: - rot: -1.5707963267948966 rad pos: 0.5,69.5 parent: 2 type: Transform - - uid: 31079 + - uid: 31151 components: - rot: -1.5707963267948966 rad pos: 0.5,70.5 parent: 2 type: Transform - - uid: 31080 + - uid: 31152 components: - pos: -10.5,24.5 parent: 2 type: Transform - - uid: 31081 + - uid: 31153 components: - rot: 3.141592653589793 rad pos: -10.5,21.5 parent: 2 type: Transform - - uid: 31082 + - uid: 31154 components: - rot: 3.141592653589793 rad pos: -9.5,21.5 parent: 2 type: Transform - - uid: 31083 + - uid: 31155 components: - rot: 1.5707963267948966 rad pos: -10.5,24.5 parent: 2 type: Transform - - uid: 31084 + - uid: 31156 components: - pos: -11.5,28.5 parent: 2 type: Transform - - uid: 31085 + - uid: 31157 components: - rot: -1.5707963267948966 rad pos: -8.5,26.5 parent: 2 type: Transform - - uid: 31086 + - uid: 31158 components: - rot: -1.5707963267948966 rad pos: -8.5,24.5 parent: 2 type: Transform - - uid: 31087 + - uid: 31159 components: - rot: -1.5707963267948966 rad pos: -8.5,23.5 parent: 2 type: Transform - - uid: 31088 + - uid: 31160 components: - pos: -8.5,23.5 parent: 2 type: Transform - - uid: 31089 + - uid: 31161 components: - rot: 3.141592653589793 rad pos: -8.5,-84.5 parent: 2 type: Transform - - uid: 31090 + - uid: 31162 components: - rot: -1.5707963267948966 rad pos: -7.5,-83.5 parent: 2 type: Transform - - uid: 31091 + - uid: 31163 components: - rot: -1.5707963267948966 rad pos: -7.5,-82.5 parent: 2 type: Transform - - uid: 31092 + - uid: 31164 components: - rot: 3.141592653589793 rad pos: -10.5,26.5 parent: 2 type: Transform - - uid: 31093 + - uid: 31165 components: - rot: 1.5707963267948966 rad pos: -10.5,26.5 parent: 2 type: Transform - - uid: 31094 + - uid: 31166 components: - rot: 3.141592653589793 rad pos: -11.5,26.5 parent: 2 type: Transform - - uid: 31095 + - uid: 31167 components: - rot: 3.141592653589793 rad pos: -12.5,26.5 parent: 2 type: Transform - - uid: 31096 + - uid: 31168 components: - pos: -11.5,-81.5 parent: 2 type: Transform - - uid: 31097 + - uid: 31169 components: - rot: 1.5707963267948966 rad pos: -12.5,-82.5 parent: 2 type: Transform - - uid: 31098 + - uid: 31170 components: - rot: 3.141592653589793 rad pos: -11.5,-84.5 parent: 2 type: Transform - - uid: 31099 + - uid: 31171 components: - rot: 1.5707963267948966 rad pos: -13.5,-83.5 parent: 2 type: Transform - - uid: 31100 + - uid: 31172 components: - rot: 1.5707963267948966 rad pos: -13.5,-82.5 parent: 2 type: Transform - - uid: 31101 + - uid: 31173 components: - rot: 3.141592653589793 rad pos: -12.5,-84.5 parent: 2 type: Transform - - uid: 31102 + - uid: 31174 components: - rot: 3.141592653589793 rad pos: -12.5,-81.5 parent: 2 type: Transform - - uid: 31103 + - uid: 31175 components: - rot: -1.5707963267948966 rad pos: -11.5,-81.5 parent: 2 type: Transform - - uid: 31104 + - uid: 31176 components: - rot: -1.5707963267948966 rad pos: -10.5,-81.5 parent: 2 type: Transform - - uid: 31105 + - uid: 31177 components: - rot: -1.5707963267948966 rad pos: -10.5,-80.5 parent: 2 type: Transform - - uid: 31106 + - uid: 31178 components: - rot: 3.141592653589793 rad pos: -10.5,-79.5 parent: 2 type: Transform - - uid: 31107 + - uid: 31179 components: - rot: 3.141592653589793 rad pos: -11.5,-79.5 parent: 2 type: Transform - - uid: 31108 + - uid: 31180 components: - rot: 1.5707963267948966 rad pos: -12.5,-80.5 parent: 2 type: Transform - - uid: 31109 + - uid: 31181 components: - rot: 1.5707963267948966 rad pos: -12.5,-79.5 parent: 2 type: Transform - - uid: 31110 + - uid: 31182 components: - rot: -1.5707963267948966 rad pos: -9.5,-81.5 parent: 2 type: Transform - - uid: 31111 + - uid: 31183 components: - rot: -1.5707963267948966 rad pos: -9.5,-80.5 parent: 2 type: Transform - - uid: 31112 + - uid: 31184 components: - rot: 3.141592653589793 rad pos: -9.5,-79.5 parent: 2 type: Transform - - uid: 31113 + - uid: 31185 components: - rot: 1.5707963267948966 rad pos: -9.5,-79.5 parent: 2 type: Transform - - uid: 31114 + - uid: 31186 components: - rot: 1.5707963267948966 rad pos: -9.5,-80.5 parent: 2 type: Transform - - uid: 31115 + - uid: 31187 components: - pos: -8.5,-80.5 parent: 2 type: Transform - - uid: 31116 + - uid: 31188 components: - rot: 1.5707963267948966 rad pos: -8.5,-80.5 parent: 2 type: Transform - - uid: 31117 + - uid: 31189 components: - rot: 1.5707963267948966 rad pos: -8.5,-79.5 parent: 2 type: Transform - - uid: 31118 + - uid: 31190 components: - rot: 1.5707963267948966 rad pos: -7.5,-79.5 parent: 2 type: Transform - - uid: 31119 + - uid: 31191 components: - rot: 1.5707963267948966 rad pos: -7.5,-80.5 parent: 2 type: Transform - - uid: 31120 + - uid: 31192 components: - pos: -7.5,-81.5 parent: 2 type: Transform - - uid: 31121 + - uid: 31193 components: - rot: -1.5707963267948966 rad pos: -5.5,-81.5 parent: 2 type: Transform - - uid: 31122 + - uid: 31194 components: - rot: 3.141592653589793 rad pos: -6.5,-81.5 parent: 2 type: Transform - - uid: 31123 + - uid: 31195 components: - rot: 1.5707963267948966 rad pos: -6.5,-82.5 parent: 2 type: Transform - - uid: 31124 + - uid: 31196 components: - rot: 3.141592653589793 rad pos: -6.5,-83.5 parent: 2 type: Transform - - uid: 31125 + - uid: 31197 components: - rot: -1.5707963267948966 rad pos: -6.5,-83.5 parent: 2 type: Transform - - uid: 31126 + - uid: 31198 components: - rot: -1.5707963267948966 rad pos: -6.5,-84.5 parent: 2 type: Transform - - uid: 31127 + - uid: 31199 components: - rot: 3.141592653589793 rad pos: -7.5,-85.5 parent: 2 type: Transform - - uid: 31128 + - uid: 31200 components: - rot: 1.5707963267948966 rad pos: -9.5,-84.5 parent: 2 type: Transform - - uid: 31129 + - uid: 31201 components: - rot: 1.5707963267948966 rad pos: -8.5,-85.5 parent: 2 type: Transform - - uid: 31130 + - uid: 31202 components: - rot: 1.5707963267948966 rad pos: -9.5,-85.5 parent: 2 type: Transform - - uid: 31131 + - uid: 31203 components: - rot: 1.5707963267948966 rad pos: -9.5,-77.5 parent: 2 type: Transform - - uid: 31132 + - uid: 31204 components: - rot: 3.141592653589793 rad pos: -8.5,-78.5 parent: 2 type: Transform - - uid: 31133 + - uid: 31205 components: - rot: 3.141592653589793 rad pos: -7.5,-78.5 parent: 2 type: Transform - - uid: 31134 + - uid: 31206 components: - rot: -1.5707963267948966 rad pos: -6.5,-78.5 parent: 2 type: Transform - - uid: 31135 + - uid: 31207 components: - rot: -1.5707963267948966 rad pos: -9.5,-77.5 parent: 2 type: Transform - - uid: 31136 + - uid: 31208 components: - pos: -6.5,-79.5 parent: 2 type: Transform - - uid: 31137 + - uid: 31209 components: - pos: -5.5,-79.5 parent: 2 type: Transform - - uid: 31138 + - uid: 31210 components: - rot: -1.5707963267948966 rad pos: -4.5,-80.5 parent: 2 type: Transform - - uid: 31139 + - uid: 31211 components: - rot: 3.141592653589793 rad pos: -4.5,-82.5 parent: 2 type: Transform - - uid: 31140 + - uid: 31212 components: - rot: 1.5707963267948966 rad pos: -5.5,-82.5 parent: 2 type: Transform - - uid: 31141 + - uid: 31213 components: - rot: 1.5707963267948966 rad pos: -5.5,-83.5 parent: 2 type: Transform - - uid: 31142 + - uid: 31214 components: - rot: 1.5707963267948966 rad pos: -6.5,-83.5 parent: 2 type: Transform - - uid: 31143 + - uid: 31215 components: - rot: 1.5707963267948966 rad pos: -6.5,-84.5 parent: 2 type: Transform - - uid: 31144 + - uid: 31216 components: - rot: 3.141592653589793 rad pos: -5.5,-85.5 parent: 2 type: Transform - - uid: 31145 + - uid: 31217 components: - rot: 1.5707963267948966 rad pos: -4.5,-83.5 parent: 2 type: Transform - - uid: 31146 + - uid: 31218 components: - rot: 1.5707963267948966 rad pos: -4.5,-82.5 parent: 2 type: Transform - - uid: 31147 + - uid: 31219 components: - rot: 3.141592653589793 rad pos: -5.5,-87.5 parent: 2 type: Transform - - uid: 31148 + - uid: 31220 components: - rot: 3.141592653589793 rad pos: -6.5,-87.5 parent: 2 type: Transform - - uid: 31149 + - uid: 31221 components: - rot: 3.141592653589793 rad pos: -7.5,-87.5 parent: 2 type: Transform - - uid: 31150 + - uid: 31222 components: - rot: 3.141592653589793 rad pos: -8.5,-87.5 parent: 2 type: Transform - - uid: 31151 + - uid: 31223 components: - rot: 3.141592653589793 rad pos: -9.5,-87.5 parent: 2 type: Transform - - uid: 31152 + - uid: 31224 components: - rot: 3.141592653589793 rad pos: -10.5,-88.5 parent: 2 type: Transform - - uid: 31153 + - uid: 31225 components: - rot: 1.5707963267948966 rad pos: -11.5,-86.5 parent: 2 type: Transform - - uid: 31154 + - uid: 31226 components: - rot: 1.5707963267948966 rad pos: -11.5,-85.5 parent: 2 type: Transform - - uid: 31155 + - uid: 31227 components: - rot: 3.141592653589793 rad pos: -9.5,-86.5 parent: 2 type: Transform - - uid: 31156 + - uid: 31228 components: - rot: 1.5707963267948966 rad pos: -10.5,-85.5 parent: 2 type: Transform - - uid: 31157 + - uid: 31229 components: - rot: 3.141592653589793 rad pos: -11.5,-85.5 parent: 2 type: Transform - - uid: 31158 + - uid: 31230 components: - rot: 3.141592653589793 rad pos: -12.5,-85.5 parent: 2 type: Transform - - uid: 31159 + - uid: 31231 components: - rot: 3.141592653589793 rad pos: -7.5,-86.5 parent: 2 type: Transform - - uid: 31160 + - uid: 31232 components: - rot: 3.141592653589793 rad pos: -6.5,-86.5 parent: 2 type: Transform - - uid: 31161 + - uid: 31233 components: - rot: 1.5707963267948966 rad pos: -5.5,-85.5 parent: 2 type: Transform - - uid: 31162 + - uid: 31234 components: - rot: 1.5707963267948966 rad pos: -13.5,-85.5 parent: 2 type: Transform - - uid: 31163 + - uid: 31235 components: - rot: 1.5707963267948966 rad pos: -14.5,-85.5 parent: 2 type: Transform - - uid: 31164 + - uid: 31236 components: - rot: 1.5707963267948966 rad pos: -14.5,-84.5 parent: 2 type: Transform - - uid: 31165 + - uid: 31237 components: - rot: 1.5707963267948966 rad pos: -14.5,-83.5 parent: 2 type: Transform - - uid: 31166 + - uid: 31238 components: - rot: 3.141592653589793 rad pos: -13.5,-87.5 parent: 2 type: Transform - - uid: 31167 + - uid: 31239 components: - rot: 1.5707963267948966 rad pos: -14.5,-86.5 parent: 2 type: Transform - - uid: 31168 + - uid: 31240 components: - rot: 3.141592653589793 rad pos: -12.5,-86.5 parent: 2 type: Transform - - uid: 31169 + - uid: 31241 components: - rot: 1.5707963267948966 rad pos: -14.5,-82.5 parent: 2 type: Transform - - uid: 31170 + - uid: 31242 components: - rot: 3.141592653589793 rad pos: -14.5,-82.5 parent: 2 type: Transform - - uid: 31171 + - uid: 31243 components: - rot: 1.5707963267948966 rad pos: -15.5,-82.5 parent: 2 type: Transform - - uid: 31172 + - uid: 31244 components: - pos: -15.5,-83.5 parent: 2 type: Transform - - uid: 31173 + - uid: 31245 components: - rot: 3.141592653589793 rad pos: -14.5,-85.5 parent: 2 type: Transform - - uid: 31174 + - uid: 31246 components: - rot: 1.5707963267948966 rad pos: -12.5,-87.5 parent: 2 type: Transform - - uid: 31175 + - uid: 31247 components: - rot: 3.141592653589793 rad pos: -11.5,-88.5 parent: 2 type: Transform - - uid: 31176 + - uid: 31248 components: - rot: 1.5707963267948966 rad pos: -11.5,-87.5 parent: 2 type: Transform - - uid: 31177 + - uid: 31249 components: - rot: 1.5707963267948966 rad pos: -10.5,-87.5 parent: 2 type: Transform - - uid: 31178 + - uid: 31250 components: - rot: 3.141592653589793 rad pos: -8.5,-88.5 parent: 2 type: Transform - - uid: 31179 + - uid: 31251 components: - rot: 1.5707963267948966 rad pos: -8.5,-88.5 parent: 2 type: Transform - - uid: 31180 + - uid: 31252 components: - rot: -1.5707963267948966 rad pos: -6.5,-88.5 parent: 2 type: Transform - - uid: 31181 + - uid: 31253 components: - pos: -6.5,-87.5 parent: 2 type: Transform - - uid: 31182 + - uid: 31254 components: - pos: -5.5,-87.5 parent: 2 type: Transform - - uid: 31183 + - uid: 31255 components: - rot: -1.5707963267948966 rad pos: -4.5,-87.5 parent: 2 type: Transform - - uid: 31184 + - uid: 31256 components: - rot: -1.5707963267948966 rad pos: -12.5,-87.5 parent: 2 type: Transform - - uid: 31185 + - uid: 31257 components: - rot: 3.141592653589793 rad pos: -13.5,-88.5 parent: 2 type: Transform - - uid: 31186 + - uid: 31258 components: - rot: 3.141592653589793 rad pos: -14.5,-88.5 parent: 2 type: Transform - - uid: 31187 + - uid: 31259 components: - rot: 1.5707963267948966 rad pos: -15.5,-87.5 parent: 2 type: Transform - - uid: 31188 + - uid: 31260 components: - pos: -15.5,-85.5 parent: 2 type: Transform - - uid: 31189 + - uid: 31261 components: - rot: 1.5707963267948966 rad pos: -13.5,-86.5 parent: 2 type: Transform - - uid: 31190 + - uid: 31262 components: - rot: 1.5707963267948966 rad pos: -10.5,-86.5 parent: 2 type: Transform - - uid: 31191 + - uid: 31263 components: - rot: -1.5707963267948966 rad pos: -5.5,-77.5 parent: 2 type: Transform - - uid: 31192 + - uid: 31264 components: - rot: -1.5707963267948966 rad pos: -5.5,-78.5 parent: 2 type: Transform - - uid: 31193 + - uid: 31265 components: - rot: -1.5707963267948966 rad pos: -4.5,-79.5 parent: 2 type: Transform - - uid: 31194 + - uid: 31266 components: - rot: -1.5707963267948966 rad pos: -4.5,-78.5 parent: 2 type: Transform - - uid: 31195 + - uid: 31267 components: - rot: -1.5707963267948966 rad pos: -10.5,-78.5 parent: 2 type: Transform - - uid: 31196 + - uid: 31268 components: - rot: 3.141592653589793 rad pos: -11.5,-78.5 parent: 2 type: Transform - - uid: 31197 + - uid: 31269 components: - rot: 3.141592653589793 rad pos: 28.5,30.5 parent: 2 type: Transform - - uid: 31198 + - uid: 31270 components: - pos: 16.5,37.5 parent: 2 type: Transform - - uid: 31199 + - uid: 31271 components: - rot: 3.141592653589793 rad pos: -55.5,-63.5 parent: 2 type: Transform - - uid: 31200 + - uid: 31272 components: - rot: 3.141592653589793 rad pos: -54.5,-63.5 parent: 2 type: Transform - - uid: 31201 + - uid: 31273 components: - rot: -1.5707963267948966 rad pos: -53.5,-63.5 parent: 2 type: Transform - - uid: 31202 + - uid: 31274 components: - rot: -1.5707963267948966 rad pos: -53.5,-64.5 parent: 2 type: Transform - - uid: 31203 + - uid: 31275 components: - rot: 1.5707963267948966 rad pos: 42.5,5.5 parent: 2 type: Transform - - uid: 31204 + - uid: 31276 components: - rot: 1.5707963267948966 rad pos: 42.5,7.5 parent: 2 type: Transform - - uid: 31205 + - uid: 31277 components: - rot: -1.5707963267948966 rad pos: -23.5,-24.5 @@ -206891,71 +199719,71 @@ entities: type: Transform - proto: WoodblockInstrument entities: - - uid: 31206 + - uid: 31278 components: - pos: -47.491924,-64.51194 parent: 2 type: Transform - proto: WoodDoor entities: - - uid: 31207 + - uid: 31279 components: - pos: -31.5,-5.5 parent: 2 type: Transform - - uid: 31208 + - uid: 31280 components: - pos: -31.5,-7.5 parent: 2 type: Transform - - uid: 31209 + - uid: 31281 components: - pos: -38.5,7.5 parent: 2 type: Transform - - uid: 31210 + - uid: 31282 components: - rot: 3.141592653589793 rad pos: -37.5,7.5 parent: 2 type: Transform - - uid: 31211 + - uid: 31283 components: - rot: 3.141592653589793 rad pos: -29.5,-5.5 parent: 2 type: Transform - - uid: 31212 + - uid: 31284 components: - pos: 41.5,49.5 parent: 2 type: Transform - - uid: 31213 + - uid: 31285 components: - pos: 40.5,51.5 parent: 2 type: Transform - - uid: 31214 + - uid: 31286 components: - pos: -39.5,-95.5 parent: 2 type: Transform - - uid: 31215 + - uid: 31287 components: - pos: -39.5,-96.5 parent: 2 type: Transform - - uid: 31216 + - uid: 31288 components: - pos: 61.5,23.5 parent: 2 type: Transform - - uid: 31217 + - uid: 31289 components: - pos: 63.5,23.5 parent: 2 type: Transform - - uid: 31218 + - uid: 31290 components: - rot: 3.141592653589793 rad pos: -29.5,-7.5 @@ -206963,112 +199791,112 @@ entities: type: Transform - proto: Wrench entities: - - uid: 31219 + - uid: 31291 components: - pos: -65.606735,-34.373695 parent: 2 type: Transform - - uid: 31220 + - uid: 31292 components: - pos: 19.497053,-52.46946 parent: 2 type: Transform - - uid: 31221 + - uid: 31293 components: - pos: 43.41047,-49.384262 parent: 2 type: Transform - - uid: 31222 + - uid: 31294 components: - pos: 40.515266,-53.36736 parent: 2 type: Transform - - uid: 31223 + - uid: 31295 components: - pos: 53.570477,-52.25876 parent: 2 type: Transform - - uid: 31224 + - uid: 31296 components: - pos: -52.48202,-14.116064 parent: 2 type: Transform - - uid: 31225 + - uid: 31297 components: - pos: -43.931065,-77.41935 parent: 2 type: Transform - - uid: 31226 + - uid: 31298 components: - pos: -3.6165767,31.44955 parent: 2 type: Transform - - uid: 31227 + - uid: 31299 components: - pos: -52.52865,13.566981 parent: 2 type: Transform - - uid: 31228 + - uid: 31300 components: - pos: -56.484455,-4.5012527 parent: 2 type: Transform - - uid: 31229 + - uid: 31301 components: - pos: -31.403458,-56.573048 parent: 2 type: Transform - - uid: 31230 + - uid: 31302 components: - pos: 56.276398,42.55694 parent: 2 type: Transform - - uid: 31231 + - uid: 31303 components: - pos: 30.53096,47.374912 parent: 2 type: Transform - - uid: 31232 + - uid: 31304 components: - pos: 63.43439,-33.411366 parent: 2 type: Transform - - uid: 31233 + - uid: 31305 components: - pos: 73.54562,-44.324593 parent: 2 type: Transform - - uid: 31234 + - uid: 31306 components: - rot: 1.5707963267948966 rad pos: -37.345474,18.574602 parent: 2 type: Transform - - uid: 31235 + - uid: 31307 components: - pos: -8.112096,-15.394987 parent: 2 type: Transform - - uid: 31236 + - uid: 31308 components: - pos: -66.48501,-43.492954 parent: 2 type: Transform - proto: YellowOxygenTankFilled entities: - - uid: 31237 + - uid: 31309 components: - pos: 64.41901,29.545698 parent: 2 type: Transform - - uid: 31238 + - uid: 31310 components: - pos: 67.49378,-65.34203 parent: 2 type: Transform - proto: Zipties entities: - - uid: 31239 + - uid: 31311 components: - pos: 22.565756,-47.432816 parent: 2 diff --git a/Resources/Maps/packed.yml b/Resources/Maps/packed.yml index dcb50ff468c..0d2a172e5e5 100644 --- a/Resources/Maps/packed.yml +++ b/Resources/Maps/packed.yml @@ -4,33 +4,33 @@ meta: tilemap: 0: Space 3: FloorArcadeRed - 11: FloorBar - 13: FloorBlue - 14: FloorBlueCircuit - 18: FloorCarpetOffice - 22: FloorDark - 27: FloorDarkMono - 34: FloorEighties - 37: FloorFreezer - 40: FloorGrass - 44: FloorGreenCircuit - 48: FloorHydro - 50: FloorLaundry - 51: FloorLino - 59: FloorRGlass - 60: FloorReinforced - 62: FloorRockVault - 63: FloorShowroom - 71: FloorSteel - 76: FloorSteelDirty - 78: FloorSteelMini - 83: FloorTechMaint - 84: FloorTechMaint2 - 87: FloorWhite - 91: FloorWhiteMini - 97: FloorWood - 99: Lattice - 100: Plating + 12: FloorBar + 14: FloorBlue + 15: FloorBlueCircuit + 19: FloorCarpetOffice + 26: FloorDark + 31: FloorDarkMono + 38: FloorEighties + 41: FloorFreezer + 44: FloorGrass + 51: FloorGreenCircuit + 55: FloorHydro + 58: FloorLaundry + 59: FloorLino + 70: FloorRGlass + 71: FloorReinforced + 73: FloorRockVault + 74: FloorShowroom + 83: FloorSteel + 88: FloorSteelDirty + 90: FloorSteelMini + 95: FloorTechMaint + 96: FloorTechMaint2 + 99: FloorWhite + 103: FloorWhiteMini + 109: FloorWood + 111: Lattice + 112: Plating entities: - proto: "" entities: @@ -43,227 +43,227 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAADRwAAAAACRwAAAAACRwAAAAAARwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAADRwAAAAACRwAAAAACZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAGwAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAACRwAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAABRwAAAAAAZAAAAAAAYQAAAAADYQAAAAABYQAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAACZAAAAAAAYQAAAAADYQAAAAAAYQAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAADRwAAAAABFgAAAAACYQAAAAADYQAAAAABYQAAAAABYQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAABRwAAAAADZAAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAABRwAAAAADZAAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAABRwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAADRwAAAAADRwAAAAACRwAAAAAC + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAACcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAHwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAbQAAAAADbQAAAAABbQAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAbQAAAAADbQAAAAAAbQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAABGgAAAAACbQAAAAADbQAAAAABbQAAAAABbQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAAC version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAACZAAAAAAARwAAAAACRwAAAAABRwAAAAADAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAGwAAAAADZAAAAAAAGwAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAACcAAAAAAAUwAAAAACUwAAAAABUwAAAAADAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAHwAAAAADcAAAAAAAHwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA version: 6 0,0: ind: 0,0 - tiles: RwAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAADRwAAAAACRwAAAAACRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAABAAAAAAAAAAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAADZAAAAAAAYQAAAAAAYQAAAAACYQAAAAABYQAAAAABYQAAAAADYQAAAAACZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAADZAAAAAAAYQAAAAAAYQAAAAADYQAAAAAAYQAAAAABYQAAAAACYQAAAAABZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAABZAAAAAAAYQAAAAABYQAAAAAAYQAAAAACYQAAAAABYQAAAAABYQAAAAADVAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAAAZAAAAAAAYQAAAAABYQAAAAADYQAAAAADYQAAAAAAYQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAACZAAAAAAAYQAAAAADYQAAAAABYQAAAAADYQAAAAACYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAABZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAABAAAAAAAAAAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAABRwAAAAACRwAAAAADRwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAADRwAAAAABZAAAAAAAJQAAAAAAPwAAAAAAJQAAAAAAPwAAAAAAJQAAAAAAZAAAAAAAYQAAAAADYQAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAACZAAAAAAAJQAAAAAAPwAAAAAAJQAAAAAAJQAAAAAAPwAAAAAAZAAAAAAAYQAAAAABYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAYQAAAAAAYQAAAAACYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAYQAAAAADYQAAAAAA + tiles: UwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAADcAAAAAAAbQAAAAAAbQAAAAACbQAAAAABbQAAAAABbQAAAAADbQAAAAACcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAADcAAAAAAAbQAAAAAAbQAAAAADbQAAAAAAbQAAAAABbQAAAAACbQAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAABcAAAAAAAbQAAAAABbQAAAAAAbQAAAAACbQAAAAABbQAAAAABbQAAAAADYAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAbQAAAAABbQAAAAADbQAAAAADbQAAAAAAbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAbQAAAAADbQAAAAABbQAAAAADbQAAAAACbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAABAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAABcAAAAAAAKQAAAAAASgAAAAAAKQAAAAAASgAAAAAAKQAAAAAAcAAAAAAAbQAAAAADbQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAACcAAAAAAAKQAAAAAASgAAAAAAKQAAAAAAKQAAAAAASgAAAAAAcAAAAAAAbQAAAAABbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAbQAAAAADbQAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: ZAAAAAAAZAAAAAAAVAAAAAAAPAAAAAAAPAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAABFgAAAAABFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAADFgAAAAACFgAAAAAAFgAAAAABFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAFgAAAAADFgAAAAABFgAAAAABFgAAAAAAFgAAAAABFgAAAAACFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAAAFgAAAAACFgAAAAACFgAAAAADZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAACFgAAAAABFgAAAAADFgAAAAADZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAARwAAAAACFgAAAAADFgAAAAABFgAAAAAAFgAAAAADFgAAAAACZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAADZAAAAAAAFgAAAAACFgAAAAAAFgAAAAADFgAAAAADFgAAAAABZAAAAAAAFgAAAAACFgAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAMAAAAAAARwAAAAADRwAAAAABRwAAAAACZAAAAAAAFgAAAAABFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAMAAAAAAARwAAAAABRwAAAAACRwAAAAABZAAAAAAAFgAAAAABFgAAAAADZAAAAAAARwAAAAADRwAAAAABFgAAAAAAFgAAAAAAFgAAAAACZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAADZAAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAABRwAAAAABRwAAAAADRwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAABRwAAAAACRwAAAAADRwAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAAB + tiles: cAAAAAAAcAAAAAAAYAAAAAAARwAAAAAARwAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAABGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAACGgAAAAAAGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAGgAAAAADGgAAAAABGgAAAAABGgAAAAAAGgAAAAABGgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAACGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAABGgAAAAADGgAAAAADcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAUwAAAAACGgAAAAADGgAAAAABGgAAAAAAGgAAAAADGgAAAAACcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAGgAAAAACGgAAAAAAGgAAAAADGgAAAAADGgAAAAABcAAAAAAAGgAAAAACGgAAAAAAYAAAAAAAcAAAAAAAcAAAAAAANwAAAAAAUwAAAAADUwAAAAABUwAAAAACcAAAAAAAGgAAAAABGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAANwAAAAAAUwAAAAABUwAAAAACUwAAAAABcAAAAAAAGgAAAAABGgAAAAADcAAAAAAAUwAAAAADUwAAAAABGgAAAAAAGgAAAAAAGgAAAAACcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAADcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAB version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAOwAAAAAAYwAAAAAAOwAAAAADAAAAAAAAOwAAAAADYwAAAAAAOwAAAAABYwAAAAAAOwAAAAADYwAAAAAAOwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAOwAAAAACYwAAAAAAOwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAA + tiles: AAAAAAAAAAAAAAAARgAAAAAAbwAAAAAARgAAAAADAAAAAAAARgAAAAADbwAAAAAARgAAAAABbwAAAAAARgAAAAADbwAAAAAARgAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAARgAAAAACbwAAAAAARgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAAARwAAAAACYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAABYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAADYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAABYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAACAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAALAAAAAAALAAAAAAALAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAALAAAAAAALAAAAAAALAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAALAAAAAAALAAAAAAALAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAACbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAABbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAABbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAA version: 6 0,1: ind: 0,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAAARwAAAAACRwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAACRwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAACRwAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAADRwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAABZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAACRwAAAAADRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAAAVAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAACZAAAAAAARwAAAAABRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAABZAAAAAAARwAAAAACRwAAAAABRwAAAAACZAAAAAAAZAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAAAYAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAUwAAAAABUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAUwAAAAACUwAAAAABUwAAAAACcAAAAAAAcAAAAAAA version: 6 1,0: ind: 1,0 - tiles: RwAAAAABRwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAACRwAAAAAARwAAAAAARwAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAAARwAAAAADRwAAAAADRwAAAAADRwAAAAACRwAAAAABRwAAAAAARwAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAACZAAAAAAAFgAAAAAAFgAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAFgAAAAADFgAAAAACFgAAAAABZAAAAAAAMgAAAAAAVwAAAAADVwAAAAABMgAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAVwAAAAADVwAAAAADVwAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAABZAAAAAAAMgAAAAAAVwAAAAACVwAAAAACMgAAAAAAVAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAVwAAAAADVwAAAAADVwAAAAABZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAMgAAAAAAVwAAAAADVwAAAAADMgAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAVwAAAAABVwAAAAAAVwAAAAADZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAMgAAAAAAVwAAAAADVwAAAAABMgAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAVwAAAAABVwAAAAACVwAAAAACZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAACCwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAFgAAAAABRwAAAAADRwAAAAACRwAAAAADRwAAAAAACwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAACZAAAAAAARwAAAAAARwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAACRwAAAAADRwAAAAABRwAAAAADRwAAAAABRwAAAAABRwAAAAACRwAAAAABYQAAAAADZAAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAACRwAAAAAAYQAAAAADYQAAAAACRwAAAAADRwAAAAACRwAAAAADRwAAAAAARwAAAAABRwAAAAADZAAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAAB + tiles: UwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAACcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAABcAAAAAAAOgAAAAAAYwAAAAADYwAAAAABOgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYwAAAAADYwAAAAADYwAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAABcAAAAAAAOgAAAAAAYwAAAAACYwAAAAACOgAAAAAAYAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYwAAAAADYwAAAAADYwAAAAABcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAOgAAAAAAYwAAAAADYwAAAAADOgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYwAAAAABYwAAAAAAYwAAAAADcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAOgAAAAAAYwAAAAADYwAAAAABOgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYwAAAAABYwAAAAACYwAAAAACcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACDAAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAGgAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAAADAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAACcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAABbQAAAAADcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAAAbQAAAAADbQAAAAACUwAAAAADUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAB version: 6 1,-1: ind: 1,-1 - tiles: ZAAAAAAAZAAAAAAAVAAAAAAAVwAAAAABRwAAAAADRwAAAAACRwAAAAAAFgAAAAADZAAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAAARwAAAAACRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAADZAAAAAAARwAAAAACRwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAADYQAAAAADFgAAAAACFgAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAABZAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAADYQAAAAADFgAAAAAAFgAAAAADFgAAAAAARwAAAAAARwAAAAACRwAAAAAAZAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAADYQAAAAABFgAAAAADFgAAAAADFgAAAAAARwAAAAAARwAAAAADRwAAAAABFgAAAAABJQAAAAAAJQAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAADYQAAAAADFgAAAAABFgAAAAACZAAAAAAARwAAAAABRwAAAAACRwAAAAADZAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAABZAAAAAAAMwAAAAAAMwAAAAAACwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAADZAAAAAAAMwAAAAAAMwAAAAAACwAAAAACFgAAAAADFgAAAAAAYQAAAAAAYQAAAAACYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAACZAAAAAAAMwAAAAAAMwAAAAAACwAAAAAAFgAAAAACFgAAAAAAYQAAAAAAYQAAAAADYQAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAABZAAAAAAACwAAAAAACwAAAAAACwAAAAAAFgAAAAACFgAAAAABYQAAAAABYQAAAAACYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAABZAAAAAAACwAAAAACCwAAAAADCwAAAAADRwAAAAABZAAAAAAAYQAAAAABYQAAAAABYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAACZAAAAAAACwAAAAABCwAAAAADCwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAABRwAAAAACRwAAAAABRwAAAAADRwAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAADRwAAAAAB + tiles: cAAAAAAAcAAAAAAAYAAAAAAAYwAAAAABUwAAAAADUwAAAAACUwAAAAAAGgAAAAADcAAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADcAAAAAAAUwAAAAACUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAADbQAAAAADGgAAAAACGgAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAADGgAAAAAAGgAAAAADGgAAAAAAUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAADbQAAAAABGgAAAAADGgAAAAADGgAAAAAAUwAAAAAAUwAAAAADUwAAAAABGgAAAAABKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAADbQAAAAADGgAAAAABGgAAAAACcAAAAAAAUwAAAAABUwAAAAACUwAAAAADcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABcAAAAAAAOwAAAAAAOwAAAAAADAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAADcAAAAAAAOwAAAAAAOwAAAAAADAAAAAACGgAAAAADGgAAAAAAbQAAAAAAbQAAAAACbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAOwAAAAAAOwAAAAAADAAAAAAAGgAAAAACGgAAAAAAbQAAAAAAbQAAAAADbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAABcAAAAAAADAAAAAAADAAAAAAADAAAAAAAGgAAAAACGgAAAAABbQAAAAABbQAAAAACbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABcAAAAAAADAAAAAACDAAAAAADDAAAAAADUwAAAAABcAAAAAAAbQAAAAABbQAAAAABbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACcAAAAAAADAAAAAABDAAAAAADDAAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAADUwAAAAAB version: 6 1,-2: ind: 1,-2 - tiles: ZAAAAAAARwAAAAABRwAAAAADZAAAAAAARwAAAAADRwAAAAABRwAAAAACRwAAAAACRwAAAAADRwAAAAADRwAAAAABRwAAAAABRwAAAAACRwAAAAABRwAAAAACRwAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAACZAAAAAAARwAAAAAARwAAAAAAZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAACRwAAAAACRwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAACRwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAADRwAAAAACRwAAAAACRwAAAAACRwAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAADRwAAAAADRwAAAAABRwAAAAABRwAAAAABRwAAAAADZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAADRwAAAAAARwAAAAAARwAAAAADZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAABRwAAAAACRwAAAAAARwAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAACZAAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAARwAAAAACRwAAAAACRwAAAAACVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAAAFgAAAAACZAAAAAAARwAAAAAARwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAALAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAADFgAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAALAAAAAAAVAAAAAAAFgAAAAADZAAAAAAARwAAAAAARwAAAAACRwAAAAACFgAAAAACFgAAAAAARwAAAAADRwAAAAADRwAAAAABZAAAAAAARwAAAAACRwAAAAACRwAAAAADLAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAACFgAAAAADZAAAAAAARwAAAAADRwAAAAABRwAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAAA + tiles: cAAAAAAAUwAAAAABUwAAAAADcAAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAACcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAACcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAACUwAAAAACUwAAAAACYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAGgAAAAACcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADGgAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAYAAAAAAAGgAAAAADcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACGgAAAAACGgAAAAAAUwAAAAADUwAAAAADUwAAAAABcAAAAAAAUwAAAAACUwAAAAACUwAAAAADMwAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAACGgAAAAADcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAADgAAAAAADgAAAAAADgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAADgAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAADgAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAABFgAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAFgAAAAAAFgAAAAADFgAAAAADFgAAAAABZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAABFgAAAAADRwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAADFgAAAAAAFgAAAAADFgAAAAADZAAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAADwAAAAAADwAAAAAADwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAADwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAADwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAABGgAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAADGgAAAAABcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAABGgAAAAADUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAADGgAAAAADcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 1,-3: ind: 1,-3 - tiles: YwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAABFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAAAZAAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAABZAAAAAAAFgAAAAAARwAAAAAARwAAAAADZAAAAAAARwAAAAABFgAAAAAAZAAAAAAAFgAAAAADRwAAAAAAZAAAAAAARwAAAAACRwAAAAACZAAAAAAAFgAAAAADFgAAAAABZAAAAAAAFgAAAAACRwAAAAACRwAAAAAARwAAAAACRwAAAAACFgAAAAABZAAAAAAAFgAAAAACRwAAAAACZAAAAAAARwAAAAADRwAAAAAAZAAAAAAAFgAAAAAAFgAAAAACZAAAAAAAFgAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAADFgAAAAABZAAAAAAAFgAAAAABRwAAAAABRwAAAAACRwAAAAAARwAAAAAAZAAAAAAAFgAAAAABFgAAAAABZAAAAAAAFgAAAAACRwAAAAABRwAAAAACZAAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAADRwAAAAADZAAAAAAARwAAAAAARwAAAAAAZAAAAAAAFgAAAAAAFgAAAAABFgAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACRwAAAAADRwAAAAADRwAAAAADRwAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAAARwAAAAACRwAAAAABRwAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAABRwAAAAADRwAAAAAARwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAAARwAAAAADZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAARwAAAAACZAAAAAAARwAAAAADRwAAAAADZAAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAACRwAAAAACRwAAAAADRwAAAAAA + tiles: bwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAABcAAAAAAAGgAAAAAAUwAAAAAAUwAAAAADcAAAAAAAUwAAAAABGgAAAAAAcAAAAAAAGgAAAAADUwAAAAAAcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAGgAAAAADGgAAAAABcAAAAAAAGgAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAACGgAAAAABcAAAAAAAGgAAAAACUwAAAAACcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAGgAAAAAAGgAAAAACcAAAAAAAGgAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAADGgAAAAABcAAAAAAAGgAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAGgAAAAABGgAAAAABcAAAAAAAGgAAAAACUwAAAAABUwAAAAACcAAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAADcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: RwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAFgAAAAADFgAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAA + tiles: UwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAGgAAAAADGgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAA version: 6 2,-3: ind: 2,-3 - tiles: ZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAPgAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAFgAAAAACZAAAAAAAPgAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAFgAAAAACZAAAAAAAPgAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAACRwAAAAADRwAAAAABRwAAAAADRwAAAAADRwAAAAAAZAAAAAAAFgAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAARwAAAAABRwAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAABZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAZAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAZAAAAAAARwAAAAACZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAARwAAAAADZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + tiles: cAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAASQAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAGgAAAAACcAAAAAAASQAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAGgAAAAACcAAAAAAASQAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAAAcAAAAAAAGgAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAABcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAACSQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAcAAAAAAAUwAAAAACcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAUwAAAAADcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 1,1: ind: 1,1 - tiles: YQAAAAAAZAAAAAAATgAAAAADZAAAAAAAZAAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAAAYQAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAAAZAAAAAAARwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAYQAAAAACYQAAAAADYQAAAAABZAAAAAAARwAAAAABRwAAAAADRwAAAAAARwAAAAACZAAAAAAARwAAAAADRwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAABZAAAAAAARwAAAAABRwAAAAACRwAAAAADZAAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAADRwAAAAACRwAAAAADRwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAACZAAAAAAARwAAAAABRwAAAAACZAAAAAAARwAAAAABRwAAAAADRwAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAABRwAAAAAARwAAAAABRwAAAAACRwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAADRwAAAAACZAAAAAAARwAAAAABRwAAAAABRwAAAAADRwAAAAACRwAAAAACRwAAAAADRwAAAAACRwAAAAABRwAAAAABRwAAAAADZAAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAACRwAAAAABRwAAAAADRwAAAAAARwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAACRwAAAAADFgAAAAACFgAAAAADFgAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAARwAAAAAARwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAADZAAAAAAAFgAAAAADFgAAAAAAFgAAAAAAZAAAAAAAYQAAAAAAYQAAAAADYQAAAAABYQAAAAADYQAAAAAAZAAAAAAAYQAAAAABYQAAAAADRwAAAAAARwAAAAACRwAAAAABZAAAAAAAFgAAAAAAFgAAAAACFgAAAAADZAAAAAAAYQAAAAACYQAAAAAAYQAAAAACYQAAAAACYQAAAAAAZAAAAAAAYQAAAAAAYQAAAAABRwAAAAADRwAAAAADRwAAAAABZAAAAAAAFgAAAAADFgAAAAACFgAAAAAAZAAAAAAAYQAAAAACYQAAAAACYQAAAAACYQAAAAABYQAAAAABYQAAAAACYQAAAAADYQAAAAAARwAAAAACRwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + tiles: bQAAAAAAcAAAAAAAWgAAAAADcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAAAbQAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAbQAAAAACbQAAAAADbQAAAAABcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAABcAAAAAAAUwAAAAABUwAAAAACUwAAAAADcAAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAACcAAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAADcAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAADGgAAAAACGgAAAAADGgAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADcAAAAAAAGgAAAAADGgAAAAAAGgAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAABbQAAAAADbQAAAAAAcAAAAAAAbQAAAAABbQAAAAADUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAGgAAAAAAGgAAAAACGgAAAAADcAAAAAAAbQAAAAACbQAAAAAAbQAAAAACbQAAAAACbQAAAAAAcAAAAAAAbQAAAAAAbQAAAAABUwAAAAADUwAAAAADUwAAAAABcAAAAAAAGgAAAAADGgAAAAACGgAAAAAAcAAAAAAAbQAAAAACbQAAAAACbQAAAAACbQAAAAABbQAAAAABbQAAAAACbQAAAAADbQAAAAAAUwAAAAACUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 2,0: ind: 2,0 - tiles: RwAAAAACRwAAAAADRwAAAAADRwAAAAADRwAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAADRwAAAAACRwAAAAABRwAAAAABRwAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAABRwAAAAADRwAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAABRwAAAAAARwAAAAABRwAAAAACRwAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAABZAAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAACZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAMwAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAACZAAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAACFgAAAAAAZAAAAAAAFgAAAAACRwAAAAAAFgAAAAACZAAAAAAAMwAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAAAZAAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAAAFgAAAAABZAAAAAAAFgAAAAADFgAAAAACFgAAAAADFgAAAAAAFgAAAAADZAAAAAAARwAAAAADRwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAFgAAAAACFgAAAAABFgAAAAAAFgAAAAABFgAAAAACFgAAAAACZAAAAAAARwAAAAABRwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAACFgAAAAADFgAAAAADFgAAAAADRwAAAAABRwAAAAACRwAAAAADVAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAMwAAAAAAZAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAADFgAAAAABZAAAAAAARwAAAAACRwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACZAAAAAAAFgAAAAABFgAAAAADFgAAAAACFgAAAAADFgAAAAABZAAAAAAARwAAAAAARwAAAAAARwAAAAADZAAAAAAARwAAAAADRwAAAAADLAAAAAAAVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAADZAAAAAAALAAAAAAALAAAAAAALAAAAAAAVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAARwAAAAADRwAAAAABRwAAAAABZAAAAAAARwAAAAACRwAAAAADLAAAAAAAVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAABZAAAAAAARwAAAAACRwAAAAAAZAAAAAAAVwAAAAACRwAAAAADRwAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAABRwAAAAACRwAAAAACRwAAAAABRwAAAAADRwAAAAABRwAAAAACRwAAAAACRwAAAAADRwAAAAADRwAAAAABRwAAAAADRwAAAAACRwAAAAAARwAAAAADRwAAAAADRwAAAAAARwAAAAADRwAAAAABRwAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAACRwAAAAAB + tiles: UwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABcAAAAAAAYwAAAAAAYwAAAAACYwAAAAABYwAAAAACcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAACcAAAAAAAYwAAAAADYwAAAAAAYwAAAAACYwAAAAACGgAAAAAAcAAAAAAAGgAAAAACUwAAAAAAGgAAAAACcAAAAAAAOwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAYwAAAAADYwAAAAADYwAAAAAAYwAAAAAAGgAAAAABcAAAAAAAGgAAAAADGgAAAAACGgAAAAADGgAAAAAAGgAAAAADcAAAAAAAUwAAAAADUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAGgAAAAACGgAAAAABGgAAAAAAGgAAAAABGgAAAAACGgAAAAACcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAACGgAAAAADGgAAAAADGgAAAAADUwAAAAABUwAAAAACUwAAAAADYAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAOwAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAADGgAAAAABcAAAAAAAUwAAAAACUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAGgAAAAABGgAAAAADGgAAAAACGgAAAAADGgAAAAABcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAUwAAAAADUwAAAAADMwAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAADcAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAADUwAAAAABUwAAAAABcAAAAAAAUwAAAAACUwAAAAADMwAAAAAAYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAABcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAYwAAAAACUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAAB version: 6 2,-1: ind: 2,-1 - tiles: RwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAFgAAAAADFgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAACYQAAAAAAYQAAAAACYQAAAAADVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAAARwAAAAAAYQAAAAAAYQAAAAABYQAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAADFgAAAAACRwAAAAADRwAAAAADRwAAAAAARwAAAAACRwAAAAABYQAAAAAAYQAAAAACYQAAAAACZAAAAAAARwAAAAADRwAAAAAARwAAAAAAZAAAAAAAKAAAAAAAKAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAAAYQAAAAACYQAAAAACYQAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAADZAAAAAAAKAAAAAAAKAAAAAAAZAAAAAAAFgAAAAADFgAAAAACFgAAAAAAFgAAAAAAZAAAAAAAFgAAAAABFgAAAAADZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAKAAAAAAAKAAAAAAACwAAAAABCwAAAAACCwAAAAACCwAAAAACCwAAAAADFgAAAAAAFgAAAAACFgAAAAAAFgAAAAABRwAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAAARwAAAAABRwAAAAAACwAAAAABCwAAAAAACwAAAAADCwAAAAADCwAAAAADFgAAAAACFgAAAAABFgAAAAADFgAAAAAARwAAAAACMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAARwAAAAACCwAAAAABCwAAAAADCwAAAAABCwAAAAADCwAAAAACFgAAAAACFgAAAAAAFgAAAAAAZAAAAAAARwAAAAADMAAAAAAARwAAAAAARwAAAAACRwAAAAAAMAAAAAAARwAAAAAACwAAAAACCwAAAAAACwAAAAADCwAAAAAACwAAAAACFgAAAAAAFgAAAAADFgAAAAABZAAAAAAARwAAAAAAMAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAMAAAAAAARwAAAAABCwAAAAADCwAAAAABCwAAAAADCwAAAAADCwAAAAABFgAAAAAAFgAAAAADFgAAAAADFgAAAAADRwAAAAADMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAARwAAAAAACwAAAAACCwAAAAAACwAAAAABCwAAAAACCwAAAAAAZAAAAAAAFgAAAAABFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMAAAAAAAZAAAAAAAZAAAAAAARwAAAAABZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAABRwAAAAAARwAAAAAARwAAAAAA + tiles: UwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAADGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACbQAAAAAAbQAAAAACbQAAAAADYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAbQAAAAAAbQAAAAABbQAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAABbQAAAAAAbQAAAAACbQAAAAACcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAALAAAAAAALAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAbQAAAAACbQAAAAACbQAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADcAAAAAAALAAAAAAALAAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAAAGgAAAAAAcAAAAAAAGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALAAAAAAALAAAAAAADAAAAAABDAAAAAACDAAAAAACDAAAAAACDAAAAAADGgAAAAAAGgAAAAACGgAAAAAAGgAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAAADAAAAAABDAAAAAAADAAAAAADDAAAAAADDAAAAAADGgAAAAACGgAAAAABGgAAAAADGgAAAAAAUwAAAAACNwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAUwAAAAACDAAAAAABDAAAAAADDAAAAAABDAAAAAADDAAAAAACGgAAAAACGgAAAAAAGgAAAAAAcAAAAAAAUwAAAAADNwAAAAAAUwAAAAAAUwAAAAACUwAAAAAANwAAAAAAUwAAAAAADAAAAAACDAAAAAAADAAAAAADDAAAAAAADAAAAAACGgAAAAAAGgAAAAADGgAAAAABcAAAAAAAUwAAAAAANwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAANwAAAAAAUwAAAAABDAAAAAADDAAAAAABDAAAAAADDAAAAAADDAAAAAABGgAAAAAAGgAAAAADGgAAAAADGgAAAAADUwAAAAADNwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAUwAAAAAADAAAAAACDAAAAAAADAAAAAABDAAAAAACDAAAAAAAcAAAAAAAGgAAAAABGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAANwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAA version: 6 1,-4: ind: 1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 2,-4: ind: 2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAA version: 6 0,-4: ind: 0,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAOwAAAAABYwAAAAAAOwAAAAACYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAACYwAAAAAAOwAAAAADAAAAAAAAOwAAAAABYwAAAAAAOwAAAAADAAAAAAAAOwAAAAABYwAAAAAAOwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAABYwAAAAAAOwAAAAABYwAAAAAAOwAAAAAAYwAAAAAAOwAAAAADAAAAAAAAOwAAAAAAYwAAAAAAOwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAOwAAAAADYwAAAAAAOwAAAAABYwAAAAAAOwAAAAAAYwAAAAAAOwAAAAADYwAAAAAAOwAAAAAAYwAAAAAAOwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAOwAAAAABYwAAAAAAOwAAAAACYwAAAAAAOwAAAAADYwAAAAAAOwAAAAACYwAAAAAAOwAAAAAAYwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAADYwAAAAAAOwAAAAAAYwAAAAAAOwAAAAABYwAAAAAAOwAAAAABAAAAAAAAOwAAAAACYwAAAAAAOwAAAAADAAAAAAAAZAAAAAAAZAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAARgAAAAABbwAAAAAARgAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAACbwAAAAAARgAAAAADAAAAAAAARgAAAAABbwAAAAAARgAAAAADAAAAAAAARgAAAAABbwAAAAAARgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAABbwAAAAAARgAAAAABbwAAAAAARgAAAAAAbwAAAAAARgAAAAADAAAAAAAARgAAAAAAbwAAAAAARgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAARgAAAAADbwAAAAAARgAAAAABbwAAAAAARgAAAAAAbwAAAAAARgAAAAADbwAAAAAARgAAAAAAbwAAAAAARgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAARgAAAAABbwAAAAAARgAAAAACbwAAAAAARgAAAAADbwAAAAAARgAAAAACbwAAAAAARgAAAAAAbwAAAAAARgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAADbwAAAAAARgAAAAAAbwAAAAAARgAAAAABbwAAAAAARgAAAAABAAAAAAAARgAAAAACbwAAAAAARgAAAAADAAAAAAAAcAAAAAAAcAAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: ZAAAAAAAAwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAAZAAAAAAAYQAAAAACYQAAAAADYQAAAAAAYQAAAAACYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAABVwAAAAAAZAAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABVwAAAAAAVwAAAAABVwAAAAADVwAAAAABZAAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAADVwAAAAAAVwAAAAABVwAAAAABVwAAAAADZAAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAADZAAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAVwAAAAAAVwAAAAACVwAAAAACVwAAAAAAZAAAAAAAVwAAAAABVwAAAAABVwAAAAACZAAAAAAAVwAAAAACVwAAAAACVwAAAAACVwAAAAACZAAAAAAAZAAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAABVwAAAAABVwAAAAACVwAAAAACVwAAAAACZAAAAAAAZAAAAAAAVwAAAAADVwAAAAABVwAAAAABVwAAAAABVwAAAAABVwAAAAAAVwAAAAABVwAAAAACVwAAAAACVwAAAAABVwAAAAACVwAAAAACVwAAAAACVwAAAAABPwAAAAAAZAAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAADVwAAAAACVwAAAAAAVwAAAAACVwAAAAABZAAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABZAAAAAAAVwAAAAACVwAAAAADZAAAAAAAVwAAAAACVwAAAAABVwAAAAAAZAAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAABZAAAAAAAZAAAAAAAVwAAAAADVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAACVwAAAAACZAAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAACVwAAAAADVwAAAAADVwAAAAACVwAAAAABVwAAAAACRwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAABVwAAAAABZAAAAAAAVwAAAAABVwAAAAAAVwAAAAABVwAAAAAAVwAAAAADZAAAAAAAVwAAAAACVwAAAAABVwAAAAABRwAAAAADRwAAAAABRwAAAAABRwAAAAACRwAAAAABVwAAAAACZAAAAAAA + tiles: cAAAAAAAAwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAbQAAAAACbQAAAAADbQAAAAAAbQAAAAACbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAAAYwAAAAACYwAAAAABYwAAAAAAcAAAAAAAYwAAAAAAYwAAAAACYwAAAAADYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAAAYwAAAAABYwAAAAADYwAAAAABcAAAAAAAYwAAAAABYwAAAAACYwAAAAADYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAAAYwAAAAABYwAAAAABYwAAAAADcAAAAAAAYwAAAAACYwAAAAADYwAAAAACYwAAAAADcAAAAAAAYwAAAAAAYwAAAAACYwAAAAABYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAACYwAAAAACYwAAAAAAcAAAAAAAYwAAAAABYwAAAAABYwAAAAACcAAAAAAAYwAAAAACYwAAAAACYwAAAAACYwAAAAACcAAAAAAAcAAAAAAAYwAAAAABYwAAAAACYwAAAAADYwAAAAAAYwAAAAABYwAAAAAAYwAAAAAAYwAAAAABYwAAAAAAYwAAAAABYwAAAAABYwAAAAACYwAAAAACYwAAAAACcAAAAAAAcAAAAAAAYwAAAAADYwAAAAABYwAAAAABYwAAAAABYwAAAAABYwAAAAAAYwAAAAABYwAAAAACYwAAAAACYwAAAAABYwAAAAACYwAAAAACYwAAAAACYwAAAAABSgAAAAAAcAAAAAAAYwAAAAAAYwAAAAABYwAAAAABYwAAAAADYwAAAAADYwAAAAACYwAAAAAAYwAAAAACYwAAAAABcAAAAAAAYwAAAAACYwAAAAACYwAAAAABYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABcAAAAAAAYwAAAAACYwAAAAADcAAAAAAAYwAAAAACYwAAAAABYwAAAAAAcAAAAAAAYwAAAAADYwAAAAADYwAAAAACYwAAAAABcAAAAAAAcAAAAAAAYwAAAAADYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAAAYwAAAAAAYwAAAAADYwAAAAACYwAAAAAAYwAAAAACYwAAAAACcAAAAAAAYwAAAAACYwAAAAADYwAAAAADYwAAAAACYwAAAAADYwAAAAADYwAAAAACYwAAAAABYwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAABYwAAAAABcAAAAAAAYwAAAAABYwAAAAAAYwAAAAABYwAAAAAAYwAAAAADcAAAAAAAYwAAAAACYwAAAAABYwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAABYwAAAAACcAAAAAAA version: 6 3,-2: ind: 3,-2 - tiles: ZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAADYQAAAAADZAAAAAAAYQAAAAAA + tiles: cAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAADbQAAAAADcAAAAAAAbQAAAAAA version: 6 0,2: ind: 0,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAAAFgAAAAACFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA version: 6 1,2: ind: 1,2 - tiles: ZAAAAAAAYQAAAAABYQAAAAADYQAAAAABYQAAAAACYQAAAAACZAAAAAAAYQAAAAAAYQAAAAABRwAAAAACRwAAAAACRwAAAAADVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAACYQAAAAACYQAAAAABYQAAAAADZAAAAAAAYQAAAAADYQAAAAACRwAAAAADRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAABRwAAAAADZAAAAAAALAAAAAAALAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAACRwAAAAACRwAAAAACRwAAAAACRwAAAAABRwAAAAADRwAAAAADRwAAAAADRwAAAAABZAAAAAAAFgAAAAAAFgAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAACRwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAABRwAAAAACFgAAAAACFgAAAAACFgAAAAACZAAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAABRwAAAAACRwAAAAAARwAAAAAARwAAAAADRwAAAAADZAAAAAAADgAAAAAADgAAAAAAZAAAAAAAZAAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAACZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAFgAAAAAAFgAAAAADFgAAAAAAZAAAAAAAFgAAAAABYQAAAAACZAAAAAAAFgAAAAABFgAAAAACFgAAAAABZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAFgAAAAADFgAAAAAAFgAAAAABZAAAAAAAFgAAAAAAYQAAAAAAZAAAAAAAFgAAAAACFgAAAAAAFgAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAFgAAAAADFgAAAAADFgAAAAADFgAAAAADZAAAAAAAFgAAAAABYQAAAAACZAAAAAAAZAAAAAAALAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAFgAAAAADFgAAAAAAFgAAAAADZAAAAAAAFgAAAAADYQAAAAABAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAABZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAFgAAAAADFgAAAAABFgAAAAABZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAACFgAAAAABFgAAAAAAFgAAAAADFgAAAAAAFgAAAAACFgAAAAADFgAAAAAAFgAAAAAAFgAAAAABZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAACFgAAAAAAFgAAAAADFgAAAAADFgAAAAAAFgAAAAADFgAAAAACFgAAAAACFgAAAAACFgAAAAACFgAAAAACFgAAAAADFgAAAAACAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAAAFgAAAAABFgAAAAACFgAAAAABFgAAAAAAFgAAAAACFgAAAAACFgAAAAAAFgAAAAAAFgAAAAADFgAAAAADFgAAAAACFgAAAAADYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAAAFgAAAAABFgAAAAABFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAACFgAAAAAC + tiles: cAAAAAAAbQAAAAABbQAAAAADbQAAAAABbQAAAAACbQAAAAACcAAAAAAAbQAAAAAAbQAAAAABUwAAAAACUwAAAAACUwAAAAADYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbQAAAAACbQAAAAABbQAAAAADcAAAAAAAbQAAAAADbQAAAAACUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAADcAAAAAAAMwAAAAAAMwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAABcAAAAAAAGgAAAAAAGgAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAACGgAAAAACGgAAAAACGgAAAAACcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADcAAAAAAADwAAAAAADwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAACcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAAAcAAAAAAAGgAAAAABbQAAAAACcAAAAAAAGgAAAAABGgAAAAACGgAAAAABcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAABcAAAAAAAGgAAAAAAbQAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAGgAAAAADGgAAAAADGgAAAAADGgAAAAADcAAAAAAAGgAAAAABbQAAAAACcAAAAAAAcAAAAAAAMwAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAADcAAAAAAAGgAAAAADbQAAAAABAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAGgAAAAADGgAAAAABGgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAACGgAAAAABGgAAAAAAGgAAAAADGgAAAAAAGgAAAAACGgAAAAADGgAAAAAAGgAAAAAAGgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAADGgAAAAADGgAAAAAAGgAAAAADGgAAAAACGgAAAAACGgAAAAACGgAAAAACGgAAAAACGgAAAAADGgAAAAACAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAACGgAAAAABGgAAAAAAGgAAAAACGgAAAAACGgAAAAAAGgAAAAAAGgAAAAADGgAAAAADGgAAAAACGgAAAAADbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAAAGgAAAAABGgAAAAABGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAACGgAAAAAC version: 6 2,1: ind: 2,1 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAACRwAAAAACZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAACRwAAAAAARwAAAAADMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAABZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAARwAAAAABZAAAAAAAVAAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAADRwAAAAACZAAAAAAARwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAACRwAAAAADFgAAAAAAFgAAAAAAFgAAAAACFgAAAAACFgAAAAAAZAAAAAAAFgAAAAABFgAAAAACFgAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAABZAAAAAAAFgAAAAABFgAAAAADFgAAAAABFgAAAAABFgAAAAABFgAAAAADFgAAAAAAFgAAAAACZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAADRwAAAAACRwAAAAACZAAAAAAAFgAAAAACFgAAAAABFgAAAAACFgAAAAADZAAAAAAAFgAAAAADFgAAAAACFgAAAAADZAAAAAAAZAAAAAAAFgAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAACZAAAAAAAZAAAAAAAFgAAAAACFgAAAAAAFgAAAAACZAAAAAAAZAAAAAAAFgAAAAABRwAAAAACRwAAAAACRwAAAAACRwAAAAADZAAAAAAAPAAAAAAAFgAAAAACFgAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAABZAAAAAAAPAAAAAAAFgAAAAAAFgAAAAADPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAADRwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAADRwAAAAACRwAAAAACRwAAAAACTAAAAAAATAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAATAAAAAAARwAAAAAATAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAACcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAADOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAABcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAABcAAAAAAAYAAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAACUwAAAAADGgAAAAAAGgAAAAAAGgAAAAACGgAAAAACGgAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAABcAAAAAAAGgAAAAABGgAAAAADGgAAAAABGgAAAAABGgAAAAABGgAAAAADGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAACcAAAAAAAGgAAAAACGgAAAAABGgAAAAACGgAAAAADcAAAAAAAGgAAAAADGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAGgAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACcAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAGgAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAADcAAAAAAARwAAAAAAGgAAAAACGgAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAABcAAAAAAARwAAAAAAGgAAAAAAGgAAAAADRwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAACWAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAWAAAAAAAUwAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAA version: 6 2,2: ind: 2,2 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABTAAAAAAATAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATAAAAAAATAAAAAAARwAAAAABRwAAAAABTAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAALAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAARwAAAAADTAAAAAAARwAAAAABTAAAAAAATAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAARwAAAAABRwAAAAADTAAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATAAAAAAATAAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAADgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAADYQAAAAABYQAAAAABYQAAAAABYQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAAAYQAAAAAAZAAAAAAAYQAAAAACYQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYQAAAAAAYQAAAAACYQAAAAACZAAAAAAAYQAAAAACYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYQAAAAACYQAAAAADYQAAAAADZAAAAAAAFgAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAAAFgAAAAABFgAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAADFgAAAAADFgAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABWAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAABUwAAAAABWAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAADWAAAAAAAUwAAAAABWAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAABUwAAAAADWAAAAAAASgAAAAAASgAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAASgAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAADwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAADbQAAAAABbQAAAAABbQAAAAABbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAAAbQAAAAAAcAAAAAAAbQAAAAACbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbQAAAAAAbQAAAAACbQAAAAACcAAAAAAAbQAAAAACbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbQAAAAACbQAAAAADbQAAAAADcAAAAAAAGgAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAABGgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAADGgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 1,3: ind: 1,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAAAFgAAAAADFgAAAAACFgAAAAACFgAAAAADFgAAAAADFgAAAAADFgAAAAACFgAAAAABFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAACGgAAAAACGgAAAAADGgAAAAADGgAAAAADGgAAAAACGgAAAAABGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,3: ind: 2,3 - tiles: FgAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: GgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-1: ind: 4,-1 - tiles: ZAAAAAAAYQAAAAACYQAAAAADYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAACYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAADYQAAAAACYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAVwAAAAABVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAACPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACVwAAAAACVwAAAAACVwAAAAABPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABVwAAAAACVwAAAAAAVwAAAAABPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAACFgAAAAAAFgAAAAAAFgAAAAADZAAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAADFgAAAAAAFgAAAAADFgAAAAADFgAAAAAAZAAAAAAAZAAAAAAAVwAAAAACZAAAAAAAZAAAAAAAFgAAAAACFgAAAAAAFgAAAAAAFgAAAAADZAAAAAAAFgAAAAADFgAAAAABFgAAAAACFgAAAAACFgAAAAAAFgAAAAADFgAAAAABZAAAAAAAVwAAAAABUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAABFgAAAAAAFgAAAAADFgAAAAAAZAAAAAAAVwAAAAABUwAAAAAAZAAAAAAA + tiles: cAAAAAAAbQAAAAACbQAAAAADbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAACbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAACbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAYwAAAAABYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAADYwAAAAACYwAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAAAYwAAAAABYwAAAAACSgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAACYwAAAAACYwAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAACYwAAAAAAYwAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAACGgAAAAAAGgAAAAAAGgAAAAADcAAAAAAAYwAAAAABYwAAAAAAYwAAAAADYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAAAGgAAAAADGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAYwAAAAACcAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAAAGgAAAAADcAAAAAAAGgAAAAADGgAAAAABGgAAAAACGgAAAAACGgAAAAAAGgAAAAADGgAAAAABcAAAAAAAYwAAAAABXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAAAGgAAAAADGgAAAAAAcAAAAAAAYwAAAAABXwAAAAAAcAAAAAAA version: 6 4,-2: ind: 4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAADYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAADbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAA version: 6 3,0: ind: 3,0 - tiles: VwAAAAABVwAAAAACVwAAAAACVwAAAAADVwAAAAABVwAAAAACVwAAAAAAVwAAAAABVwAAAAABRwAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAAAVwAAAAABVwAAAAAAZAAAAAAAVwAAAAACVwAAAAAAVwAAAAAAZAAAAAAAZAAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAACVwAAAAADVwAAAAACVwAAAAACVwAAAAABVwAAAAACVwAAAAACZAAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAADVwAAAAACVwAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAACVwAAAAADVwAAAAABVwAAAAADVwAAAAADVwAAAAADVwAAAAADVwAAAAABVwAAAAAAVwAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAABZAAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAACVwAAAAACZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAAAVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAATAAAAAAATAAAAAAATAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAABFgAAAAADRwAAAAADRwAAAAADRwAAAAACRwAAAAABZAAAAAAAVwAAAAACVwAAAAABZAAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAABVwAAAAADFgAAAAAAFgAAAAAAFgAAAAACRwAAAAADRwAAAAABRwAAAAADRwAAAAADZAAAAAAAVwAAAAACRwAAAAABZAAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAADVwAAAAADVwAAAAABVwAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAABRwAAAAADZAAAAAAAVwAAAAACRwAAAAADZAAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAACVwAAAAACVwAAAAADVwAAAAADVwAAAAACVwAAAAACVwAAAAABVwAAAAADVwAAAAABZAAAAAAAVwAAAAACRwAAAAADZAAAAAAAVwAAAAADVwAAAAAAVwAAAAABVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAADZAAAAAAAZAAAAAAAVwAAAAACVwAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAARwAAAAABVwAAAAABVwAAAAABVwAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAAAVwAAAAADRwAAAAADVwAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAAAVwAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAACZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAARwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAD + tiles: YwAAAAABYwAAAAACYwAAAAACYwAAAAADYwAAAAABYwAAAAACYwAAAAAAYwAAAAABYwAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAYwAAAAABYwAAAAAAcAAAAAAAYwAAAAACYwAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAADYwAAAAACYwAAAAACYwAAAAADYwAAAAACYwAAAAACYwAAAAABYwAAAAACYwAAAAACcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAABYwAAAAABYwAAAAADYwAAAAAAYwAAAAADYwAAAAAAYwAAAAACYwAAAAADYwAAAAABYwAAAAADYwAAAAACYwAAAAAAYwAAAAADYwAAAAADYwAAAAACYwAAAAACYwAAAAADYwAAAAABYwAAAAADYwAAAAADYwAAAAADYwAAAAADYwAAAAABYwAAAAAAYwAAAAAAYwAAAAABYwAAAAADYwAAAAAAYwAAAAABcAAAAAAAYwAAAAACYwAAAAAAYwAAAAACYwAAAAACYwAAAAACcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAADYwAAAAABYwAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAABcAAAAAAAYwAAAAACYwAAAAABcAAAAAAAYwAAAAACYwAAAAACYwAAAAABYwAAAAABYwAAAAADGgAAAAAAGgAAAAAAGgAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAADcAAAAAAAYwAAAAACUwAAAAABcAAAAAAAYwAAAAABYwAAAAACYwAAAAADYwAAAAADYwAAAAADYwAAAAABYwAAAAAAYwAAAAACYwAAAAADYwAAAAADYwAAAAABUwAAAAADcAAAAAAAYwAAAAACUwAAAAADcAAAAAAAYwAAAAADYwAAAAAAYwAAAAADYwAAAAACYwAAAAACYwAAAAADYwAAAAADYwAAAAACYwAAAAACYwAAAAABYwAAAAADYwAAAAABcAAAAAAAYwAAAAACUwAAAAADcAAAAAAAYwAAAAADYwAAAAAAYwAAAAABYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADcAAAAAAAcAAAAAAAYwAAAAACYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAABYwAAAAABYwAAAAABYwAAAAAAYwAAAAABYwAAAAABYwAAAAAAYwAAAAACYwAAAAABYwAAAAACYwAAAAAAYwAAAAADYwAAAAADYwAAAAABYwAAAAAAYwAAAAADUwAAAAADYwAAAAAAYwAAAAABYwAAAAACYwAAAAADYwAAAAAAYwAAAAAAYwAAAAACYwAAAAACYwAAAAABYwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAYwAAAAAAYwAAAAAAYwAAAAABYwAAAAABYwAAAAADYwAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAD version: 6 4,0: ind: 4,0 - tiles: VwAAAAACVwAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAACZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABZAAAAAAAZAAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAACVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAADVwAAAAACVwAAAAADVwAAAAACVwAAAAADVwAAAAABVwAAAAABVwAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAAAVwAAAAABZAAAAAAAZAAAAAAAVwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAVwAAAAAAVwAAAAADZAAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAZAAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAABVwAAAAABZAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACZAAAAAAAVwAAAAACVwAAAAABVwAAAAADVwAAAAADVwAAAAAAZAAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAZAAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAADVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAABVwAAAAAAVwAAAAACRwAAAAACTgAAAAADTgAAAAACVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAABVwAAAAADVwAAAAAAZAAAAAAATgAAAAACTgAAAAACRwAAAAABZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAATgAAAAACTgAAAAACRwAAAAABZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAWwAAAAADWwAAAAAARwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABZAAAAAAARwAAAAACRwAAAAACRwAAAAADFgAAAAADFgAAAAABFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAADZAAAAAAAFgAAAAACFgAAAAABFgAAAAADFgAAAAAAFgAAAAABFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAVwAAAAAAVwAAAAAAFgAAAAABFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAA + tiles: YwAAAAACYwAAAAAAYwAAAAADYwAAAAABYwAAAAADYwAAAAACcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABcAAAAAAAcAAAAAAAYwAAAAACYwAAAAAAYwAAAAAAYwAAAAADYwAAAAADYwAAAAABYwAAAAACYwAAAAAAYwAAAAADYwAAAAAAYwAAAAAAYwAAAAACYwAAAAABYwAAAAADYwAAAAACYwAAAAADYwAAAAACYwAAAAADYwAAAAABYwAAAAABYwAAAAAAYwAAAAABYwAAAAAAYwAAAAACYwAAAAAAYwAAAAADYwAAAAAAYwAAAAAAYwAAAAACYwAAAAADYwAAAAABYwAAAAAAYwAAAAADYwAAAAAAYwAAAAADYwAAAAAAYwAAAAABcAAAAAAAcAAAAAAAYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAADcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAADYwAAAAAAYwAAAAAAcAAAAAAAYwAAAAACYwAAAAAAYwAAAAACYwAAAAABYwAAAAABcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACcAAAAAAAYwAAAAACYwAAAAABYwAAAAADYwAAAAADYwAAAAAAcAAAAAAAYwAAAAACYwAAAAAAYwAAAAADYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAcAAAAAAAYwAAAAADYwAAAAACYwAAAAAAYwAAAAADYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAYwAAAAADYwAAAAAAYwAAAAADYwAAAAABYwAAAAAAYwAAAAACUwAAAAACWgAAAAADWgAAAAACYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAABYwAAAAACYwAAAAABYwAAAAADYwAAAAAAcAAAAAAAWgAAAAACWgAAAAACUwAAAAABcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAWgAAAAACWgAAAAACUwAAAAABcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAZwAAAAADZwAAAAAAUwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABcAAAAAAAUwAAAAACUwAAAAACUwAAAAADGgAAAAADGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADcAAAAAAAGgAAAAACGgAAAAABGgAAAAADGgAAAAAAGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAYwAAAAAAYwAAAAAAGgAAAAABGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAA version: 6 5,0: ind: 5,0 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAABVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAACYQAAAAABAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAZAAAAAAAYQAAAAABZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABZAAAAAAAYQAAAAADZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAABYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbQAAAAABAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAbQAAAAABcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABcAAAAAAAbQAAAAADcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,1: ind: 3,1 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABVwAAAAADVwAAAAABZAAAAAAAVwAAAAAAVwAAAAABZAAAAAAAVwAAAAABVwAAAAADDgAAAAAAFgAAAAADDgAAAAAAVwAAAAAAVwAAAAADVwAAAAADZAAAAAAAVwAAAAABVwAAAAADVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABVwAAAAACVwAAAAAADgAAAAAAFgAAAAAADgAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAADVwAAAAABVwAAAAACVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAABZAAAAAAAVwAAAAAAVwAAAAABVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAAAZAAAAAAAVwAAAAACVwAAAAAAVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAVwAAAAABVwAAAAACVwAAAAAADgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAVwAAAAABVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAADVwAAAAAAZAAAAAAAVwAAAAADVwAAAAACZAAAAAAADgAAAAAADgAAAAAADgAAAAAAZAAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAACVwAAAAABVwAAAAADVwAAAAACVwAAAAACVwAAAAACZAAAAAAAFgAAAAADFgAAAAADFgAAAAAAFgAAAAADVwAAAAACVwAAAAACVwAAAAACVwAAAAABVwAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAADVwAAAAADVwAAAAADZAAAAAAADgAAAAAADgAAAAAADgAAAAAAZAAAAAAAVwAAAAADVwAAAAABVwAAAAAAVwAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAABZAAAAAAAVwAAAAABVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAFgAAAAADZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAABFgAAAAABFgAAAAADFgAAAAAAFgAAAAACFgAAAAACFgAAAAABFgAAAAACFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAABFgAAAAADFgAAAAABFgAAAAABFgAAAAAAFgAAAAAAFgAAAAACFgAAAAABFgAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAAAFgAAAAADFgAAAAABFgAAAAACFgAAAAABFgAAAAACFgAAAAADZAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAADYwAAAAABcAAAAAAAYwAAAAAAYwAAAAABcAAAAAAAYwAAAAABYwAAAAADDwAAAAAAGgAAAAADDwAAAAAAYwAAAAAAYwAAAAADYwAAAAADcAAAAAAAYwAAAAABYwAAAAADYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABYwAAAAACYwAAAAAADwAAAAAAGgAAAAAADwAAAAAAYwAAAAADYwAAAAABYwAAAAADYwAAAAADYwAAAAABYwAAAAACYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAAAYwAAAAACYwAAAAAAYwAAAAABYwAAAAACYwAAAAADYwAAAAABcAAAAAAAYwAAAAAAYwAAAAABYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAACYwAAAAAAYwAAAAAAYwAAAAABYwAAAAAAYwAAAAACYwAAAAAAcAAAAAAAYwAAAAACYwAAAAAAYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYwAAAAABYwAAAAACYwAAAAAADwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAABYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAAAYwAAAAABYwAAAAADYwAAAAAAYwAAAAADYwAAAAAAcAAAAAAAYwAAAAADYwAAAAACcAAAAAAADwAAAAAADwAAAAAADwAAAAAAcAAAAAAAYwAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAADYwAAAAACYwAAAAABYwAAAAADYwAAAAACYwAAAAACYwAAAAACcAAAAAAAGgAAAAADGgAAAAADGgAAAAAAGgAAAAADYwAAAAACYwAAAAACYwAAAAACYwAAAAABYwAAAAAAYwAAAAADYwAAAAADYwAAAAACYwAAAAADYwAAAAADYwAAAAADcAAAAAAADwAAAAAADwAAAAAADwAAAAAAcAAAAAAAYwAAAAADYwAAAAABYwAAAAAAYwAAAAAAYwAAAAADYwAAAAADYwAAAAAAYwAAAAABcAAAAAAAYwAAAAABYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAADcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAADGgAAAAAAGgAAAAACGgAAAAACGgAAAAABGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAABGgAAAAABGgAAAAAAGgAAAAAAGgAAAAACGgAAAAABGgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAAAGgAAAAADGgAAAAABGgAAAAACGgAAAAABGgAAAAACGgAAAAADcAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,3: ind: 3,3 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,2: ind: 3,2 - tiles: AAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAADQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAACFgAAAAABFgAAAAAAFgAAAAABFgAAAAADFgAAAAABFgAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAAAFgAAAAABFgAAAAABFgAAAAABFgAAAAADFgAAAAABFgAAAAABZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAABDgAAAAAAFgAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAADZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAADFgAAAAABZAAAAAAAFgAAAAAAFgAAAAADFgAAAAAAFgAAAAACZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAABFgAAAAABFgAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + tiles: AAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAACGgAAAAABGgAAAAAAGgAAAAABGgAAAAADGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAAAGgAAAAABGgAAAAABGgAAAAABGgAAAAADGgAAAAABGgAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAABDwAAAAAAGgAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAADGgAAAAABcAAAAAAAGgAAAAAAGgAAAAADGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAABGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 4,1: ind: 4,1 - tiles: VwAAAAABZAAAAAAARwAAAAABRwAAAAACRwAAAAADFgAAAAADFgAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABZAAAAAAAYQAAAAADZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAABZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAADYQAAAAADZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACZAAAAAAAYQAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: YwAAAAABcAAAAAAAUwAAAAABUwAAAAACUwAAAAADGgAAAAADGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABcAAAAAAAbQAAAAADcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAADcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACcAAAAAAAbQAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,2: ind: 4,2 - tiles: AAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAABZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYQAAAAADZAAAAAAAYQAAAAABZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAACZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYQAAAAABZAAAAAAAYQAAAAACZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAABZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAADYQAAAAABZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAABYwAAAAAAOwAAAAACAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAYwAAAAAAOwAAAAACAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAADYwAAAAAAOwAAAAACAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAYwAAAAAAOwAAAAAA + tiles: AAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAABcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAADcAAAAAAAbQAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAABcAAAAAAAbQAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAABcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAABcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAABbwAAAAAARgAAAAACAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAAAbwAAAAAARgAAAAACAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAADbwAAAAAARgAAAAACAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAAAbwAAAAAARgAAAAAA version: 6 4,3: ind: 4,3 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAABYwAAAAAAOwAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAYwAAAAAAOwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAABbwAAAAAARgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAAAbwAAAAAARgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,-1: ind: 5,-1 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAABVwAAAAABVwAAAAABZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAADVwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAADVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAABVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAABVwAAAAADVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAABYwAAAAABYwAAAAABcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAADYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAADYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAABYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAABYwAAAAADYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAACYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAADYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,-2: ind: 5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAOwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAOwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,2: ind: 5,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAACYwAAAAAAOwAAAAACYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAADYwAAAAAAOwAAAAACAAAAAAAAOwAAAAABYwAAAAAAOwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAABYwAAAAAAOwAAAAADYwAAAAAAOwAAAAACYwAAAAAAOwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAADYwAAAAAAOwAAAAABYwAAAAAAOwAAAAADYwAAAAAAOwAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAADYwAAAAAAOwAAAAABAAAAAAAAOwAAAAABYwAAAAAAOwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAACbwAAAAAARgAAAAACbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAADbwAAAAAARgAAAAACAAAAAAAARgAAAAABbwAAAAAARgAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAABbwAAAAAARgAAAAADbwAAAAAARgAAAAACbwAAAAAARgAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAADbwAAAAAARgAAAAABbwAAAAAARgAAAAADbwAAAAAARgAAAAADbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAADbwAAAAAARgAAAAABAAAAAAAARgAAAAABbwAAAAAARgAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,3: ind: 5,3 - tiles: YwAAAAAAOwAAAAABYwAAAAAAOwAAAAACYwAAAAAAOwAAAAADYwAAAAAAOwAAAAADAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAOwAAAAAAYwAAAAAAOwAAAAABAAAAAAAAOwAAAAABYwAAAAAAOwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAOwAAAAABYwAAAAAAOwAAAAADYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: bwAAAAAARgAAAAABbwAAAAAARgAAAAACbwAAAAAARgAAAAADbwAAAAAARgAAAAADAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAARgAAAAAAbwAAAAAARgAAAAABAAAAAAAARgAAAAABbwAAAAAARgAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAARgAAAAABbwAAAAAARgAAAAADbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-3: ind: 3,-3 - tiles: PAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: RwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 6,-2: ind: 6,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAOwAAAAABOwAAAAACOwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAVwAAAAACZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAOwAAAAABOwAAAAAAOwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAADVwAAAAACVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAVwAAAAACVwAAAAABVwAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAARgAAAAABRgAAAAACRgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAACcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAAAYwAAAAAAYwAAAAACYwAAAAADYwAAAAACYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAARgAAAAABRgAAAAAARgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAADYwAAAAADYwAAAAADYwAAAAADYwAAAAACYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAABYwAAAAAAYwAAAAABYwAAAAACYwAAAAADYwAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYwAAAAACYwAAAAABYwAAAAAAYwAAAAACYwAAAAABYwAAAAACYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAA version: 6 6,-1: ind: 6,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAVwAAAAAAVwAAAAACVwAAAAACVwAAAAAAVwAAAAADVwAAAAAAVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAPwAAAAAAPwAAAAAARwAAAAADEgAAAAAAEgAAAAAAEgAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYwAAAAAAYwAAAAACYwAAAAACYwAAAAAAYwAAAAADYwAAAAAAYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASgAAAAAASgAAAAAAcAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASgAAAAAASgAAAAAAUwAAAAADEwAAAAAAEwAAAAAAEwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 7,-2: ind: 7,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAACFgAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAAAFgAAAAADFgAAAAACZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAAAFgAAAAABFgAAAAACZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAACcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAACcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 7,-1: ind: 7,-1 - tiles: ZAAAAAAAFgAAAAADFgAAAAADFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAGgAAAAADGgAAAAADGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,1: ind: 5,1 - tiles: YwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: bwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-4: ind: 3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAADRwAAAAADRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAADRwAAAAADRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAACRwAAAAADRwAAAAABRwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAGwAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAHwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,0: ind: -2,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA version: 6 -2,1: ind: -2,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 type: MapGrid - type: Broadphase @@ -9173,8 +9173,6 @@ entities: - pos: 37.5,-2.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - loadingNetworkDemand: 5 supplyRampPosition: 2.4463015 type: PowerNetworkBattery @@ -9387,8 +9385,6 @@ entities: - pos: 66.5,17.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - loadingNetworkDemand: 5 supplyRampPosition: 2.4463015 type: PowerNetworkBattery @@ -10862,29 +10858,21 @@ entities: - pos: 11.5,2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 51 components: - pos: 6.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 59 components: - pos: 8.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 60 components: - pos: 9.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 92 components: - pos: 19.5,-14.5 @@ -10910,8 +10898,6 @@ entities: - pos: 37.5,-41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 878 components: - pos: 37.5,-42.5 @@ -10922,85 +10908,61 @@ entities: - pos: 19.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1194 components: - pos: -15.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1307 components: - pos: -7.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1323 components: - pos: -11.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1327 components: - pos: -12.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1328 components: - pos: -13.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1329 components: - pos: -14.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2135 components: - pos: 12.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2146 components: - pos: 13.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2403 components: - pos: 52.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 3404 components: - pos: 22.5,9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 3461 components: - pos: -17.5,16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 3684 components: - pos: 61.5,-7.5 @@ -11016,22 +10978,16 @@ entities: - pos: 22.5,4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4001 components: - pos: -9.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4026 components: - pos: -8.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4204 components: - pos: 56.5,-3.5 @@ -11042,8 +10998,6 @@ entities: - pos: 29.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4678 components: - pos: 29.5,-38.5 @@ -11084,8 +11038,6 @@ entities: - pos: 30.5,-39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4687 components: - pos: 31.5,-39.5 @@ -11101,8 +11053,6 @@ entities: - pos: 30.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4690 components: - pos: 31.5,-43.5 @@ -11118,22 +11068,16 @@ entities: - pos: 33.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4706 components: - pos: 33.5,-42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4707 components: - pos: 33.5,-44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4708 components: - pos: 31.5,-44.5 @@ -11144,22 +11088,16 @@ entities: - pos: 31.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4710 components: - pos: 32.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4711 components: - pos: 26.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4712 components: - pos: 26.5,-36.5 @@ -11275,8 +11213,6 @@ entities: - pos: 9.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4736 components: - pos: 10.5,-35.5 @@ -11322,8 +11258,6 @@ entities: - pos: 22.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4747 components: - pos: 22.5,-23.5 @@ -11429,148 +11363,106 @@ entities: - pos: -16.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4827 components: - pos: -17.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4882 components: - pos: 3.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4884 components: - pos: 3.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4887 components: - pos: 3.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4888 components: - pos: 3.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4889 components: - pos: 3.5,-31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4890 components: - pos: 2.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4891 components: - pos: 1.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4892 components: - pos: 0.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4893 components: - pos: -0.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4894 components: - pos: 1.5,-31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4895 components: - pos: 0.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4896 components: - pos: 0.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4897 components: - pos: 5.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4898 components: - pos: 4.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4899 components: - pos: 3.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4900 components: - pos: 2.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4901 components: - pos: 1.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4902 components: - pos: 0.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4929 components: - pos: 41.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4930 components: - pos: 41.5,-39.5 @@ -11626,323 +11518,231 @@ entities: - pos: 36.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4941 components: - pos: 36.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4942 components: - pos: 36.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4943 components: - pos: 36.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4944 components: - pos: 36.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4945 components: - pos: 35.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4946 components: - pos: 34.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4947 components: - pos: 33.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4948 components: - pos: 37.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4949 components: - pos: 38.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4950 components: - pos: 38.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4951 components: - pos: 38.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4952 components: - pos: 38.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4953 components: - pos: 38.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4954 components: - pos: 38.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4955 components: - pos: 38.5,-31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4956 components: - pos: 38.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4957 components: - pos: 38.5,-33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4958 components: - pos: 38.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4959 components: - pos: 38.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4960 components: - pos: 39.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4961 components: - pos: 32.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4962 components: - pos: 31.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4963 components: - pos: 31.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4964 components: - pos: 31.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4965 components: - pos: 31.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4966 components: - pos: 30.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4967 components: - pos: 37.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4968 components: - pos: 38.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4969 components: - pos: 39.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5014 components: - pos: 40.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5028 components: - pos: 41.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5029 components: - pos: 42.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5043 components: - pos: 43.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5044 components: - pos: 43.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5065 components: - pos: 43.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5066 components: - pos: 43.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5092 components: - pos: 43.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5093 components: - pos: 43.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5105 components: - pos: 43.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5106 components: - pos: 43.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5116 components: - pos: 43.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5117 components: - pos: 43.5,-31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5123 components: - pos: 43.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5124 components: - pos: 43.5,-33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5125 components: - pos: 43.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5205 components: - pos: 61.5,-5.5 @@ -11978,43 +11778,31 @@ entities: - pos: -17.5,17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5286 components: - pos: -6.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5296 components: - pos: -10.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5315 components: - pos: 35.5,-39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5316 components: - pos: 35.5,-40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5345 components: - pos: 35.5,-41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5346 components: - pos: 35.5,-42.5 @@ -12035,43 +11823,31 @@ entities: - pos: 36.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5360 components: - pos: 37.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5367 components: - pos: 53.5,21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5371 components: - pos: 38.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5372 components: - pos: 40.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5373 components: - pos: 39.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5374 components: - pos: 35.5,-45.5 @@ -12082,15 +11858,11 @@ entities: - pos: 40.5,-44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5577 components: - pos: 17.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5578 components: - pos: 17.5,-38.5 @@ -12121,29 +11893,21 @@ entities: - pos: 15.5,-41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5584 components: - pos: 14.5,-41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5585 components: - pos: 13.5,-41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5586 components: - pos: 13.5,-42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5587 components: - pos: 18.5,-39.5 @@ -12164,8 +11928,6 @@ entities: - pos: 21.5,-39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5591 components: - pos: 22.5,-39.5 @@ -12246,71 +12008,51 @@ entities: - pos: 4.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5890 components: - pos: 4.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5891 components: - pos: 4.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5892 components: - pos: 4.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5893 components: - pos: 4.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5894 components: - pos: 4.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5895 components: - pos: 5.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5896 components: - pos: 6.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5897 components: - pos: 7.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5898 components: - pos: 8.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6460 components: - pos: 18.5,-15.5 @@ -12381,8 +12123,6 @@ entities: - pos: 32.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6688 components: - pos: 33.5,-11.5 @@ -12453,8 +12193,6 @@ entities: - pos: 37.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6703 components: - pos: 37.5,-3.5 @@ -12570,8 +12308,6 @@ entities: - pos: 45.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6732 components: - pos: 45.5,-7.5 @@ -12657,50 +12393,36 @@ entities: - pos: -4.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6830 components: - pos: 3.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6831 components: - pos: -2.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6836 components: - pos: -0.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6837 components: - pos: -1.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6853 components: - pos: -3.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6855 components: - pos: -5.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6861 components: - pos: 8.5,17.5 @@ -12716,8 +12438,6 @@ entities: - pos: 10.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6870 components: - pos: 9.5,18.5 @@ -12728,50 +12448,36 @@ entities: - pos: 10.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6921 components: - pos: 10.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6922 components: - pos: 10.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6923 components: - pos: 10.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6924 components: - pos: 10.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6925 components: - pos: 11.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6926 components: - pos: 12.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7040 components: - pos: 11.5,3.5 @@ -12837,8 +12543,6 @@ entities: - pos: 10.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7053 components: - pos: 10.5,12.5 @@ -12909,8 +12613,6 @@ entities: - pos: 21.5,5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7067 components: - pos: 20.5,5.5 @@ -12951,78 +12653,56 @@ entities: - pos: 22.5,5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7078 components: - pos: 22.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7079 components: - pos: 21.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7080 components: - pos: 20.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7081 components: - pos: 19.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7082 components: - pos: 18.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7083 components: - pos: 17.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7084 components: - pos: 22.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7085 components: - pos: 22.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7086 components: - pos: 22.5,8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7087 components: - pos: 22.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7088 components: - pos: 22.5,12.5 @@ -13138,8 +12818,6 @@ entities: - pos: 28.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7111 components: - pos: 27.5,7.5 @@ -13170,99 +12848,71 @@ entities: - pos: 28.5,9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7117 components: - pos: 28.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7118 components: - pos: 27.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7119 components: - pos: 29.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7120 components: - pos: 29.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7121 components: - pos: 30.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7122 components: - pos: 31.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7123 components: - pos: 32.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7124 components: - pos: 33.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7125 components: - pos: 34.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7126 components: - pos: 35.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7127 components: - pos: 36.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7128 components: - pos: 37.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7129 components: - pos: 33.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7130 components: - pos: 32.5,7.5 @@ -13388,8 +13038,6 @@ entities: - pos: 25.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7281 components: - pos: 27.5,-28.5 @@ -13405,15 +13053,11 @@ entities: - pos: 27.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7284 components: - pos: 24.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7346 components: - pos: 8.5,18.5 @@ -13424,29 +13068,21 @@ entities: - pos: 13.5,16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7453 components: - pos: 12.5,16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7454 components: - pos: 12.5,17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7588 components: - pos: -15.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7589 components: - pos: -15.5,-14.5 @@ -13547,8 +13183,6 @@ entities: - pos: -5.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7613 components: - pos: -12.5,-12.5 @@ -13579,8 +13213,6 @@ entities: - pos: -0.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7621 components: - pos: -1.5,-11.5 @@ -13616,113 +13248,81 @@ entities: - pos: 0.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7628 components: - pos: 1.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7629 components: - pos: 1.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7630 components: - pos: 2.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7631 components: - pos: 3.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7632 components: - pos: 4.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7633 components: - pos: 5.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7634 components: - pos: 1.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7635 components: - pos: 1.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7636 components: - pos: 1.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7637 components: - pos: 1.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7638 components: - pos: 1.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7639 components: - pos: 1.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7640 components: - pos: 1.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7641 components: - pos: 1.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7642 components: - pos: 2.5,-4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7643 components: - pos: 3.5,-4.5 @@ -13748,8 +13348,6 @@ entities: - pos: 0.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7648 components: - pos: -0.5,-3.5 @@ -13775,8 +13373,6 @@ entities: - pos: -4.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7653 components: - pos: -5.5,-2.5 @@ -13822,22 +13418,16 @@ entities: - pos: 2.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7665 components: - pos: 0.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7673 components: - pos: 5.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7677 components: - pos: 8.5,16.5 @@ -13848,8 +13438,6 @@ entities: - pos: 1.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7682 components: - pos: -5.5,-0.5 @@ -13895,8 +13483,6 @@ entities: - pos: 6.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7694 components: - pos: 6.5,-11.5 @@ -13967,8 +13553,6 @@ entities: - pos: 4.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7964 components: - pos: 7.5,17.5 @@ -13979,57 +13563,41 @@ entities: - pos: 6.5,17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7966 components: - pos: 5.5,17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7967 components: - pos: 5.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8024 components: - pos: 14.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8025 components: - pos: 15.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8026 components: - pos: 16.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8027 components: - pos: 17.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8028 components: - pos: 16.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8029 components: - pos: 17.5,23.5 @@ -14110,8 +13678,6 @@ entities: - pos: 16.5,25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8045 components: - pos: 15.5,25.5 @@ -14167,15 +13733,11 @@ entities: - pos: 6.5,24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8056 components: - pos: 5.5,24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8057 components: - pos: 7.5,26.5 @@ -14186,15 +13748,11 @@ entities: - pos: 6.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8059 components: - pos: 5.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8060 components: - pos: 8.5,24.5 @@ -14330,162 +13888,116 @@ entities: - pos: 15.5,34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8087 components: - pos: 15.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8088 components: - pos: 15.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8089 components: - pos: 15.5,31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8090 components: - pos: 15.5,30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8091 components: - pos: 15.5,29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8092 components: - pos: 15.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8093 components: - pos: 15.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8094 components: - pos: 16.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8095 components: - pos: 17.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8096 components: - pos: 18.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8097 components: - pos: 19.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8098 components: - pos: 20.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8099 components: - pos: 21.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8100 components: - pos: 22.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8101 components: - pos: 14.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8102 components: - pos: 13.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8103 components: - pos: 12.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8104 components: - pos: 11.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8105 components: - pos: 11.5,34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8106 components: - pos: 11.5,35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8107 components: - pos: 11.5,36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8108 components: - pos: 13.5,35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8109 components: - pos: 13.5,36.5 @@ -14521,8 +14033,6 @@ entities: - pos: 7.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8122 components: - pos: 6.5,3.5 @@ -14683,8 +14193,6 @@ entities: - pos: 41.5,21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8305 components: - pos: 52.5,-8.5 @@ -14695,15 +14203,11 @@ entities: - pos: 63.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8389 components: - pos: 36.5,29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8391 components: - pos: 36.5,30.5 @@ -14789,22 +14293,16 @@ entities: - pos: 42.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8408 components: - pos: 42.5,31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8409 components: - pos: 42.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8448 components: - pos: 41.5,20.5 @@ -14830,8 +14328,6 @@ entities: - pos: 41.5,16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8453 components: - pos: 42.5,17.5 @@ -14847,15 +14343,11 @@ entities: - pos: 43.5,16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8472 components: - pos: 37.5,25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8473 components: - pos: 36.5,25.5 @@ -15081,8 +14573,6 @@ entities: - pos: 43.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8518 components: - pos: 43.5,25.5 @@ -15153,169 +14643,121 @@ entities: - pos: 47.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8704 components: - pos: 47.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8705 components: - pos: 47.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8706 components: - pos: 47.5,25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8707 components: - pos: 47.5,24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8710 components: - pos: 47.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8712 components: - pos: 47.5,22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8713 components: - pos: 46.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8714 components: - pos: 46.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8715 components: - pos: 46.5,29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8716 components: - pos: 46.5,30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8717 components: - pos: 46.5,31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8718 components: - pos: 46.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8730 components: - pos: 46.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8731 components: - pos: 46.5,34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8759 components: - pos: 46.5,35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8766 components: - pos: 46.5,36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8779 components: - pos: 46.5,37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8791 components: - pos: 46.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8795 components: - pos: 46.5,39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8796 components: - pos: 45.5,39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8797 components: - pos: 45.5,40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8798 components: - pos: 45.5,41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9131 components: - pos: 20.5,34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9132 components: - pos: 20.5,33.5 @@ -15391,8 +14833,6 @@ entities: - pos: 20.5,40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9150 components: - pos: 19.5,40.5 @@ -15418,8 +14858,6 @@ entities: - pos: 28.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9155 components: - pos: 27.5,33.5 @@ -15525,8 +14963,6 @@ entities: - pos: 30.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9176 components: - pos: 30.5,37.5 @@ -15552,8 +14988,6 @@ entities: - pos: 25.5,43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9181 components: - pos: 25.5,44.5 @@ -15669,8 +15103,6 @@ entities: - pos: 33.5,44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9204 components: - pos: 33.5,43.5 @@ -15791,190 +15223,136 @@ entities: - pos: 29.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9235 components: - pos: 30.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9236 components: - pos: 31.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9237 components: - pos: 32.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9238 components: - pos: 33.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9239 components: - pos: 34.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9240 components: - pos: 34.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9241 components: - pos: 34.5,34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9242 components: - pos: 34.5,35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9243 components: - pos: 34.5,36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9244 components: - pos: 34.5,37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9245 components: - pos: 35.5,37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9246 components: - pos: 35.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9247 components: - pos: 36.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9248 components: - pos: 37.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9249 components: - pos: 38.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9250 components: - pos: 39.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9251 components: - pos: 39.5,39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9252 components: - pos: 39.5,40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9267 components: - pos: 69.5,47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9268 components: - pos: 69.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9269 components: - pos: 69.5,46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9270 components: - pos: 70.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9271 components: - pos: 71.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9272 components: - pos: 72.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9273 components: - pos: 73.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9274 components: - pos: 66.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9275 components: - pos: 66.5,46.5 @@ -15990,148 +15368,106 @@ entities: - pos: 67.5,44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9278 components: - pos: 65.5,46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9279 components: - pos: 64.5,46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9280 components: - pos: 63.5,46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9281 components: - pos: 63.5,47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9282 components: - pos: 62.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9283 components: - pos: 61.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9284 components: - pos: 60.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9285 components: - pos: 59.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9286 components: - pos: 58.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9287 components: - pos: 57.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9288 components: - pos: 56.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9289 components: - pos: 55.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9290 components: - pos: 54.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9291 components: - pos: 53.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9292 components: - pos: 52.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9293 components: - pos: 51.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9294 components: - pos: 50.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9295 components: - pos: 49.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9296 components: - pos: 56.5,49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9297 components: - pos: 56.5,50.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9298 components: - pos: 44.5,45.5 @@ -16142,29 +15478,21 @@ entities: - pos: 49.5,47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9300 components: - pos: 48.5,47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9301 components: - pos: 47.5,47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9302 components: - pos: 46.5,47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9303 components: - pos: 46.5,46.5 @@ -16185,22 +15513,16 @@ entities: - pos: 68.5,41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9311 components: - pos: 68.5,42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9312 components: - pos: 67.5,42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9313 components: - pos: 66.5,42.5 @@ -16266,57 +15588,41 @@ entities: - pos: 66.5,30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9326 components: - pos: 66.5,29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9327 components: - pos: 66.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9328 components: - pos: 66.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9329 components: - pos: 66.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9330 components: - pos: 67.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9331 components: - pos: 68.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9332 components: - pos: 69.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9333 components: - pos: 69.5,29.5 @@ -16332,8 +15638,6 @@ entities: - pos: 69.5,31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9336 components: - pos: 69.5,32.5 @@ -16349,57 +15653,41 @@ entities: - pos: 68.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9339 components: - pos: 67.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9340 components: - pos: 67.5,36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9341 components: - pos: 68.5,36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9342 components: - pos: 69.5,36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9343 components: - pos: 70.5,36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9344 components: - pos: 67.5,39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9345 components: - pos: 68.5,39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9346 components: - pos: 69.5,39.5 @@ -16460,92 +15748,66 @@ entities: - pos: 50.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9704 components: - pos: 50.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9705 components: - pos: 50.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9706 components: - pos: 50.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9707 components: - pos: 51.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9708 components: - pos: 52.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9709 components: - pos: 49.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9710 components: - pos: 48.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9711 components: - pos: 47.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9712 components: - pos: 46.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9713 components: - pos: 45.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9715 components: - pos: 44.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9778 components: - pos: 23.5,2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9779 components: - pos: 23.5,1.5 @@ -16676,8 +15938,6 @@ entities: - pos: 21.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9805 components: - pos: 21.5,-9.5 @@ -16763,8 +16023,6 @@ entities: - pos: 28.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9906 components: - pos: 27.5,-19.5 @@ -16830,8 +16088,6 @@ entities: - pos: 34.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9919 components: - pos: 33.5,-15.5 @@ -16872,8 +16128,6 @@ entities: - pos: 39.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9929 components: - pos: 40.5,-15.5 @@ -16884,225 +16138,161 @@ entities: - pos: 35.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9931 components: - pos: 36.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9932 components: - pos: 37.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9933 components: - pos: 39.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9934 components: - pos: 39.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9935 components: - pos: 38.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9936 components: - pos: 37.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9937 components: - pos: 36.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9938 components: - pos: 35.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9939 components: - pos: 34.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9940 components: - pos: 33.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9941 components: - pos: 32.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9942 components: - pos: 31.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9943 components: - pos: 30.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9944 components: - pos: 40.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9945 components: - pos: 41.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9946 components: - pos: 41.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9947 components: - pos: 42.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9948 components: - pos: 43.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9949 components: - pos: 44.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9950 components: - pos: 45.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9951 components: - pos: 46.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9952 components: - pos: 47.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9953 components: - pos: 48.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9954 components: - pos: 49.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9955 components: - pos: 50.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9956 components: - pos: 51.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9957 components: - pos: 52.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9958 components: - pos: 53.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9959 components: - pos: 47.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9960 components: - pos: 47.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9961 components: - pos: 47.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9962 components: - pos: 25.5,-21.5 @@ -17118,15 +16308,11 @@ entities: - pos: 23.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9965 components: - pos: 13.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9966 components: - pos: 12.5,-7.5 @@ -17182,8 +16368,6 @@ entities: - pos: 16.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9977 components: - pos: 16.5,-5.5 @@ -17239,64 +16423,46 @@ entities: - pos: 14.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9988 components: - pos: 15.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9989 components: - pos: 21.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9990 components: - pos: 22.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9991 components: - pos: 22.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9992 components: - pos: 22.5,-5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9993 components: - pos: 22.5,-4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9994 components: - pos: 22.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9995 components: - pos: 22.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9996 components: - pos: 16.5,-7.5 @@ -17307,211 +16473,151 @@ entities: - pos: 17.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9998 components: - pos: 17.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9999 components: - pos: 17.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10000 components: - pos: 17.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10001 components: - pos: 17.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10002 components: - pos: 16.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10003 components: - pos: 16.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10004 components: - pos: 16.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10005 components: - pos: 10.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10006 components: - pos: 11.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10007 components: - pos: 10.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10008 components: - pos: 10.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10009 components: - pos: 11.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10010 components: - pos: 12.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10011 components: - pos: 13.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10012 components: - pos: 13.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10013 components: - pos: 13.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10014 components: - pos: 14.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10015 components: - pos: 10.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10016 components: - pos: 10.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10017 components: - pos: 10.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10018 components: - pos: 10.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10019 components: - pos: 10.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10020 components: - pos: 10.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10021 components: - pos: 10.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10022 components: - pos: 9.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10023 components: - pos: 8.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10024 components: - pos: 7.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10025 components: - pos: 6.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10030 components: - pos: 22.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10031 components: - pos: 22.5,-30.5 @@ -17587,8 +16693,6 @@ entities: - pos: 58.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10082 components: - pos: 61.5,-2.5 @@ -17614,8 +16718,6 @@ entities: - pos: 63.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10132 components: - pos: 61.5,-8.5 @@ -17666,8 +16768,6 @@ entities: - pos: 48.5,19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10462 components: - pos: 49.5,18.5 @@ -17683,8 +16783,6 @@ entities: - pos: 48.5,17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10465 components: - pos: 54.5,18.5 @@ -17700,15 +16798,11 @@ entities: - pos: 51.5,22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10468 components: - pos: 56.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10469 components: - pos: 51.5,23.5 @@ -17799,8 +16893,6 @@ entities: - pos: 43.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10488 components: - pos: 44.5,3.5 @@ -17826,8 +16918,6 @@ entities: - pos: 43.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10493 components: - pos: 43.5,13.5 @@ -17968,8 +17058,6 @@ entities: - pos: 65.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10521 components: - pos: 64.5,23.5 @@ -18015,8 +17103,6 @@ entities: - pos: 66.5,17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10530 components: - pos: 66.5,16.5 @@ -18062,8 +17148,6 @@ entities: - pos: 64.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10539 components: - pos: 63.5,11.5 @@ -18099,8 +17183,6 @@ entities: - pos: 61.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10547 components: - pos: 60.5,18.5 @@ -18296,8 +17378,6 @@ entities: - pos: 43.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10926 components: - pos: 42.5,6.5 @@ -18373,71 +17453,51 @@ entities: - pos: 44.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10945 components: - pos: 45.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10946 components: - pos: 46.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10947 components: - pos: 47.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10948 components: - pos: 48.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10949 components: - pos: 49.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10953 components: - pos: 50.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10954 components: - pos: 51.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10955 components: - pos: 52.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10957 components: - pos: 54.5,4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11008 components: - pos: 54.5,3.5 @@ -18498,8 +17558,6 @@ entities: - pos: 53.5,-0.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11031 components: - pos: 52.5,-0.5 @@ -18550,8 +17608,6 @@ entities: - pos: 58.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11044 components: - pos: 58.5,-9.5 @@ -18582,8 +17638,6 @@ entities: - pos: 66.5,-0.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11050 components: - pos: 66.5,-1.5 @@ -18594,8 +17648,6 @@ entities: - pos: 66.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11052 components: - pos: 66.5,-3.5 @@ -18631,8 +17683,6 @@ entities: - pos: 75.5,-4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11059 components: - pos: 76.5,-4.5 @@ -18738,50 +17788,36 @@ entities: - pos: 73.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11083 components: - pos: 72.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11084 components: - pos: 71.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11085 components: - pos: 70.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11086 components: - pos: 69.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11087 components: - pos: 71.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11088 components: - pos: 71.5,-5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11090 components: - pos: 71.5,-4.5 @@ -18797,8 +17833,6 @@ entities: - pos: 75.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11096 components: - pos: 74.5,-2.5 @@ -18834,50 +17868,36 @@ entities: - pos: 71.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11108 components: - pos: 71.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11110 components: - pos: 71.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11111 components: - pos: 71.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11112 components: - pos: 71.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11113 components: - pos: 71.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11114 components: - pos: 68.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11115 components: - pos: 67.5,-15.5 @@ -18903,29 +17923,21 @@ entities: - pos: 65.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11135 components: - pos: 64.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11136 components: - pos: 63.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11137 components: - pos: 62.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11138 components: - pos: 61.5,-17.5 @@ -18936,15 +17948,11 @@ entities: - pos: 60.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11140 components: - pos: 59.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11141 components: - pos: 66.5,-7.5 @@ -19125,8 +18133,6 @@ entities: - pos: 74.5,9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11996 components: - pos: 74.5,8.5 @@ -19262,141 +18268,101 @@ entities: - pos: 69.5,9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12023 components: - pos: 69.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12024 components: - pos: 68.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12025 components: - pos: 67.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12026 components: - pos: 67.5,9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12027 components: - pos: 67.5,8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12028 components: - pos: 66.5,8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12029 components: - pos: 65.5,8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12030 components: - pos: 65.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12031 components: - pos: 65.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12032 components: - pos: 64.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12033 components: - pos: 63.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12034 components: - pos: 62.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12035 components: - pos: 61.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12036 components: - pos: 60.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12037 components: - pos: 59.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12038 components: - pos: 70.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12039 components: - pos: 71.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12040 components: - pos: 72.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12041 components: - pos: 73.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12042 components: - pos: 73.5,11.5 @@ -19407,309 +18373,221 @@ entities: - pos: 73.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12044 components: - pos: 73.5,13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12045 components: - pos: 73.5,14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12046 components: - pos: 73.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12047 components: - pos: 73.5,16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12048 components: - pos: 73.5,17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12049 components: - pos: 73.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12050 components: - pos: 74.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12051 components: - pos: 75.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12052 components: - pos: 76.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12053 components: - pos: 77.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12054 components: - pos: 78.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12055 components: - pos: 79.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12056 components: - pos: 78.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12057 components: - pos: 78.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12058 components: - pos: 79.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12059 components: - pos: 80.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12060 components: - pos: 81.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12061 components: - pos: 82.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12062 components: - pos: 83.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12063 components: - pos: 84.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12064 components: - pos: 85.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12065 components: - pos: 86.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12066 components: - pos: 86.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12067 components: - pos: 86.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12068 components: - pos: 86.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12069 components: - pos: 86.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12070 components: - pos: 86.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12071 components: - pos: 86.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12072 components: - pos: 86.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12073 components: - pos: 86.5,-5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12074 components: - pos: 86.5,-4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12079 components: - pos: 86.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12084 components: - pos: 85.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12096 components: - pos: 84.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12113 components: - pos: 84.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12114 components: - pos: 84.5,-1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12115 components: - pos: 84.5,-0.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12117 components: - pos: 84.5,0.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12118 components: - pos: 84.5,1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12119 components: - pos: 84.5,2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12120 components: - pos: 84.5,4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12121 components: - pos: 84.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12122 components: - pos: 84.5,8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12123 components: - pos: 85.5,8.5 @@ -19720,8 +18598,6 @@ entities: - pos: 85.5,9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12125 components: - pos: 85.5,10.5 @@ -19732,8 +18608,6 @@ entities: - pos: 85.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12127 components: - pos: 84.5,11.5 @@ -19744,190 +18618,136 @@ entities: - pos: 83.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12129 components: - pos: 84.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12130 components: - pos: 84.5,5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12131 components: - pos: 83.5,5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12132 components: - pos: 82.5,5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12133 components: - pos: 81.5,5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12134 components: - pos: 80.5,5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12135 components: - pos: 69.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12136 components: - pos: 70.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12137 components: - pos: 70.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12138 components: - pos: 70.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12500 components: - pos: 87.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12501 components: - pos: 88.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12505 components: - pos: 88.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12507 components: - pos: 88.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12508 components: - pos: 88.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12509 components: - pos: 88.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12510 components: - pos: 88.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12511 components: - pos: 87.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12512 components: - pos: 86.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12513 components: - pos: 89.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12514 components: - pos: 90.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12523 components: - pos: 91.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12524 components: - pos: 92.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12525 components: - pos: 93.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12526 components: - pos: 100.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12527 components: - pos: 101.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12533 components: - pos: 102.5,-19.5 @@ -19983,29 +18803,21 @@ entities: - pos: 110.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12555 components: - pos: 110.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12558 components: - pos: 110.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12560 components: - pos: 110.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12561 components: - pos: 107.5,-16.5 @@ -20106,29 +18918,21 @@ entities: - pos: 110.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12588 components: - pos: 111.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12589 components: - pos: 112.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12590 components: - pos: 112.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12591 components: - pos: 113.5,-19.5 @@ -20159,36 +18963,26 @@ entities: - pos: 41.5,-44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12950 components: - pos: 42.5,-44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12951 components: - pos: 43.5,-44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12952 components: - pos: 44.5,-44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12953 components: - pos: 45.5,-44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12954 components: - pos: 46.5,-44.5 @@ -20249,22 +19043,16 @@ entities: - pos: 33.5,-47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12966 components: - pos: 32.5,-47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12967 components: - pos: 32.5,-48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12968 components: - pos: 35.5,-48.5 @@ -20275,57 +19063,41 @@ entities: - pos: 36.5,-48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12970 components: - pos: 37.5,-48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12971 components: - pos: 38.5,-48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12972 components: - pos: 39.5,-48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12973 components: - pos: 40.5,-48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12974 components: - pos: 41.5,-48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12975 components: - pos: 42.5,-48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12976 components: - pos: 43.5,-48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - proto: CableApcStack entities: - uid: 5386 @@ -20362,64 +19134,46 @@ entities: - pos: 13.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 29 components: - pos: 12.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 61 components: - pos: 15.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 63 components: - pos: 16.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 64 components: - pos: 15.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 65 components: - pos: 14.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 66 components: - pos: 13.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 603 components: - pos: 42.5,41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 803 components: - pos: 23.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 828 components: - pos: 24.5,-36.5 @@ -20445,8 +19199,6 @@ entities: - pos: 25.5,-42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1027 components: - pos: 25.5,-41.5 @@ -20467,8 +19219,6 @@ entities: - pos: 43.5,41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2387 components: - pos: 25.5,-28.5 @@ -20479,8 +19229,6 @@ entities: - pos: 117.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2832 components: - pos: 23.5,-28.5 @@ -20491,22 +19239,16 @@ entities: - pos: 22.5,4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2989 components: - pos: 22.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 3012 components: - pos: 22.5,9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 3980 components: - pos: 23.5,-41.5 @@ -20517,29 +19259,21 @@ entities: - pos: 26.5,-42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4213 components: - pos: 22.5,8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4218 components: - pos: 22.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4227 components: - pos: 22.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4307 components: - pos: 17.5,-40.5 @@ -20635,15 +19369,11 @@ entities: - pos: 17.5,-42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4519 components: - pos: 16.5,-42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4520 components: - pos: 26.5,-36.5 @@ -20694,36 +19424,26 @@ entities: - pos: 30.5,-39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4530 components: - pos: 30.5,-40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4531 components: - pos: 30.5,-41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4532 components: - pos: 30.5,-42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4533 components: - pos: 30.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4534 components: - pos: 30.5,-44.5 @@ -20779,22 +19499,16 @@ entities: - pos: 25.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4547 components: - pos: 26.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4548 components: - pos: 27.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4549 components: - pos: 26.5,-29.5 @@ -20890,36 +19604,26 @@ entities: - pos: 11.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4603 components: - pos: 10.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4604 components: - pos: 10.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4781 components: - pos: 21.5,-40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4783 components: - pos: 21.5,-39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4784 components: - pos: 21.5,-38.5 @@ -21030,36 +19734,26 @@ entities: - pos: -12.5,-33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4808 components: - pos: -12.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4809 components: - pos: -8.5,-33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4810 components: - pos: -12.5,-36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4816 components: - pos: -12.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4817 components: - pos: -11.5,-37.5 @@ -21235,169 +19929,121 @@ entities: - pos: -8.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4854 components: - pos: -8.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4855 components: - pos: -8.5,-36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4856 components: - pos: -4.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4857 components: - pos: -4.5,-36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4858 components: - pos: -4.5,-33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4859 components: - pos: -4.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4860 components: - pos: -15.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4861 components: - pos: -14.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4862 components: - pos: -1.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4863 components: - pos: -0.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4864 components: - pos: 0.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4865 components: - pos: 1.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4866 components: - pos: 2.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4867 components: - pos: 2.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4868 components: - pos: 3.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4869 components: - pos: 4.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4870 components: - pos: 4.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4871 components: - pos: 4.5,-36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4908 components: - pos: 22.5,5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5146 components: - pos: 41.5,41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5421 components: - pos: 14.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5743 components: - pos: 12.5,34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5873 components: - pos: 63.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5903 components: - pos: 4.5,-33.5 @@ -21408,211 +20054,151 @@ entities: - pos: 4.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5905 components: - pos: 4.5,-31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5906 components: - pos: 4.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5907 components: - pos: 4.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5908 components: - pos: 4.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5909 components: - pos: 4.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5910 components: - pos: 4.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5911 components: - pos: 4.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5912 components: - pos: 4.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5913 components: - pos: 4.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5922 components: - pos: 5.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5923 components: - pos: 6.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5924 components: - pos: 7.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5925 components: - pos: 8.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5926 components: - pos: 9.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5927 components: - pos: 10.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5928 components: - pos: 11.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5929 components: - pos: 11.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5930 components: - pos: 11.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5931 components: - pos: 11.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5932 components: - pos: 10.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5933 components: - pos: 10.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5934 components: - pos: 10.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5935 components: - pos: 10.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5936 components: - pos: 10.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5937 components: - pos: 10.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5938 components: - pos: 9.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5939 components: - pos: 8.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5940 components: - pos: 7.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5941 components: - pos: 6.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5942 components: - pos: 5.5,-15.5 @@ -21638,225 +20224,161 @@ entities: - pos: 1.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5947 components: - pos: 1.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5948 components: - pos: 1.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5949 components: - pos: 1.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5950 components: - pos: 1.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5951 components: - pos: 1.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5952 components: - pos: 1.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5953 components: - pos: 2.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5954 components: - pos: 3.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5955 components: - pos: 4.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5956 components: - pos: 5.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5957 components: - pos: 6.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5958 components: - pos: 6.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5959 components: - pos: 10.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5960 components: - pos: 10.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5961 components: - pos: 11.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5962 components: - pos: 12.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5963 components: - pos: 13.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5970 components: - pos: 16.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5971 components: - pos: 16.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5972 components: - pos: 12.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5973 components: - pos: 13.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5974 components: - pos: 14.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5975 components: - pos: 15.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5976 components: - pos: 16.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5977 components: - pos: 17.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5978 components: - pos: 18.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5979 components: - pos: 19.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5980 components: - pos: 20.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5981 components: - pos: 21.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5982 components: - pos: 22.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5983 components: - pos: 23.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5984 components: - pos: 24.5,-21.5 @@ -21887,1086 +20409,776 @@ entities: - pos: 29.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5990 components: - pos: 30.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5991 components: - pos: 30.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5992 components: - pos: 30.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5993 components: - pos: 31.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5994 components: - pos: 32.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5995 components: - pos: 33.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5996 components: - pos: 34.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5997 components: - pos: 35.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5998 components: - pos: 36.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5999 components: - pos: 37.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6000 components: - pos: 38.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6001 components: - pos: 39.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6002 components: - pos: 40.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6003 components: - pos: 41.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6004 components: - pos: 41.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6016 components: - pos: 42.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6017 components: - pos: 43.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6018 components: - pos: 44.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6019 components: - pos: 45.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6020 components: - pos: 46.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6021 components: - pos: 47.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6022 components: - pos: 48.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6023 components: - pos: 49.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6024 components: - pos: 50.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6028 components: - pos: 51.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6029 components: - pos: 52.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6030 components: - pos: 52.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6031 components: - pos: 52.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6032 components: - pos: 52.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6033 components: - pos: 52.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6034 components: - pos: 52.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6035 components: - pos: 52.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6036 components: - pos: 52.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6037 components: - pos: 52.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6038 components: - pos: 53.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6039 components: - pos: 54.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6040 components: - pos: 55.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6041 components: - pos: 56.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6042 components: - pos: 57.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6044 components: - pos: 57.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6045 components: - pos: 58.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6046 components: - pos: 59.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6048 components: - pos: 60.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6049 components: - pos: 61.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6050 components: - pos: 62.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6051 components: - pos: 63.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6052 components: - pos: 64.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6053 components: - pos: 65.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6054 components: - pos: 66.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6055 components: - pos: 67.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6056 components: - pos: 68.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6057 components: - pos: 69.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6058 components: - pos: 69.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6059 components: - pos: 69.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6060 components: - pos: 69.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6061 components: - pos: 70.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6062 components: - pos: 71.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6063 components: - pos: 71.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6064 components: - pos: 71.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6065 components: - pos: 71.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6066 components: - pos: 70.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6067 components: - pos: 69.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6070 components: - pos: 72.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6071 components: - pos: 73.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6072 components: - pos: 74.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6073 components: - pos: 75.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6074 components: - pos: 76.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6075 components: - pos: 77.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6076 components: - pos: 78.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6077 components: - pos: 79.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6078 components: - pos: 80.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6079 components: - pos: 81.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6080 components: - pos: 82.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6081 components: - pos: 83.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6082 components: - pos: 84.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6083 components: - pos: 85.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6084 components: - pos: 86.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6087 components: - pos: 86.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6088 components: - pos: 86.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6089 components: - pos: 86.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6090 components: - pos: 86.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6091 components: - pos: 86.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6092 components: - pos: 86.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6093 components: - pos: 86.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6094 components: - pos: 86.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6096 components: - pos: 86.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6097 components: - pos: 86.5,-5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6098 components: - pos: 86.5,-4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6100 components: - pos: 86.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6101 components: - pos: 86.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6102 components: - pos: 85.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6103 components: - pos: 84.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6104 components: - pos: 84.5,-1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6105 components: - pos: 84.5,-0.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6106 components: - pos: 84.5,0.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6107 components: - pos: 84.5,1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6108 components: - pos: 84.5,2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6109 components: - pos: 84.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6110 components: - pos: 84.5,4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6111 components: - pos: 83.5,4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6112 components: - pos: 82.5,4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6141 components: - pos: 81.5,4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6142 components: - pos: 81.5,5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6143 components: - pos: 81.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6144 components: - pos: 81.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6145 components: - pos: 81.5,8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6146 components: - pos: 81.5,9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6147 components: - pos: 81.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6148 components: - pos: 81.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6149 components: - pos: 81.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6150 components: - pos: 80.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6151 components: - pos: 79.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6152 components: - pos: 78.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6153 components: - pos: 77.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6154 components: - pos: 76.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6155 components: - pos: 75.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6156 components: - pos: 74.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6157 components: - pos: 74.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6159 components: - pos: 74.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6160 components: - pos: 73.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6161 components: - pos: 72.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6162 components: - pos: 71.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6163 components: - pos: 70.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6164 components: - pos: 69.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6165 components: - pos: 68.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6166 components: - pos: 67.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6167 components: - pos: 67.5,9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6168 components: - pos: 67.5,8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6169 components: - pos: 74.5,13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6170 components: - pos: 74.5,14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6171 components: - pos: 74.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6173 components: - pos: 74.5,16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6174 components: - pos: 74.5,17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6175 components: - pos: 74.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6176 components: - pos: 73.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6177 components: - pos: 72.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6178 components: - pos: 71.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6179 components: - pos: 70.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6181 components: - pos: 69.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6182 components: - pos: 68.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6183 components: - pos: 67.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6184 components: - pos: 67.5,19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6185 components: - pos: 67.5,20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6186 components: - pos: 67.5,21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6187 components: - pos: 67.5,22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6188 components: - pos: 67.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6189 components: - pos: 67.5,24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6190 components: - pos: 66.5,24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6191 components: - pos: 66.5,25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6192 components: - pos: 66.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6193 components: - pos: 66.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6194 components: - pos: 66.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6195 components: - pos: 66.5,29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6200 components: - pos: 66.5,30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6201 components: - pos: 66.5,31.5 @@ -23032,85 +21244,61 @@ entities: - pos: 67.5,42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6218 components: - pos: 68.5,42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6219 components: - pos: 69.5,42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6220 components: - pos: 69.5,43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6221 components: - pos: 69.5,44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6222 components: - pos: 70.5,44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6223 components: - pos: 71.5,44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6224 components: - pos: 71.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6225 components: - pos: 72.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6226 components: - pos: 73.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6227 components: - pos: 74.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6228 components: - pos: 75.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6229 components: - pos: 77.5,47.5 @@ -23176,29 +21364,21 @@ entities: - pos: 78.5,43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6243 components: - pos: 78.5,44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6244 components: - pos: 78.5,46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6245 components: - pos: 78.5,47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6246 components: - pos: 81.5,47.5 @@ -23244,15 +21424,11 @@ entities: - pos: 82.5,47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6255 components: - pos: 82.5,46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6256 components: - pos: 81.5,40.5 @@ -23298,15 +21474,11 @@ entities: - pos: 82.5,43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6265 components: - pos: 82.5,44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6266 components: - pos: 85.5,47.5 @@ -23327,15 +21499,11 @@ entities: - pos: 86.5,47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6270 components: - pos: 86.5,46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6271 components: - pos: 87.5,47.5 @@ -23386,57 +21554,41 @@ entities: - pos: 86.5,43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6281 components: - pos: 86.5,44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6282 components: - pos: 89.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6283 components: - pos: 88.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6285 components: - pos: 67.5,43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6286 components: - pos: 67.5,44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6287 components: - pos: 67.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6288 components: - pos: 67.5,46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6289 components: - pos: 66.5,46.5 @@ -23447,155 +21599,111 @@ entities: - pos: 65.5,46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6291 components: - pos: 64.5,46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6292 components: - pos: 63.5,46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6293 components: - pos: 63.5,47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6294 components: - pos: 62.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6295 components: - pos: 61.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6296 components: - pos: 60.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6297 components: - pos: 59.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6298 components: - pos: 58.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6299 components: - pos: 57.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6300 components: - pos: 56.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6301 components: - pos: 55.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6302 components: - pos: 54.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6303 components: - pos: 53.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6304 components: - pos: 52.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6305 components: - pos: 51.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6306 components: - pos: 50.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6307 components: - pos: 49.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6310 components: - pos: 49.5,47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6311 components: - pos: 48.5,47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6312 components: - pos: 47.5,47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6313 components: - pos: 46.5,47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6314 components: - pos: 46.5,46.5 @@ -23611,8 +21719,6 @@ entities: - pos: 47.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6318 components: - pos: 44.5,46.5 @@ -23638,8 +21744,6 @@ entities: - pos: 44.5,42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6323 components: - pos: 44.5,41.5 @@ -23660,8 +21764,6 @@ entities: - pos: 45.5,39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6327 components: - pos: 45.5,38.5 @@ -23722,92 +21824,66 @@ entities: - pos: 44.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6339 components: - pos: 43.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6340 components: - pos: 46.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6341 components: - pos: 46.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6343 components: - pos: 47.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6344 components: - pos: 48.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6345 components: - pos: 49.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6346 components: - pos: 50.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6347 components: - pos: 47.5,25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6348 components: - pos: 47.5,24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6349 components: - pos: 47.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6350 components: - pos: 47.5,22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6351 components: - pos: 47.5,21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6352 components: - pos: 47.5,20.5 @@ -23923,78 +21999,56 @@ entities: - pos: 44.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6376 components: - pos: 44.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6377 components: - pos: 45.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6378 components: - pos: 46.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6380 components: - pos: 47.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6381 components: - pos: 48.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6382 components: - pos: 49.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6383 components: - pos: 50.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6384 components: - pos: 51.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6385 components: - pos: 52.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6386 components: - pos: 53.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6387 components: - pos: 54.5,6.5 @@ -24025,71 +22079,51 @@ entities: - pos: 59.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6393 components: - pos: 60.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6394 components: - pos: 61.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6395 components: - pos: 62.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6396 components: - pos: 63.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6397 components: - pos: 64.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6398 components: - pos: 65.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6399 components: - pos: 65.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6400 components: - pos: 65.5,8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6401 components: - pos: 66.5,8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6402 components: - pos: 40.5,11.5 @@ -24105,211 +22139,151 @@ entities: - pos: 38.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6405 components: - pos: 37.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6406 components: - pos: 36.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6407 components: - pos: 35.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6408 components: - pos: 34.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6409 components: - pos: 33.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6410 components: - pos: 32.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6411 components: - pos: 31.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6412 components: - pos: 30.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6413 components: - pos: 29.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6414 components: - pos: 29.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6415 components: - pos: 28.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6416 components: - pos: 27.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6417 components: - pos: 26.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6418 components: - pos: 25.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6419 components: - pos: 24.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6420 components: - pos: 23.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6429 components: - pos: 22.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6430 components: - pos: 21.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6431 components: - pos: 20.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6432 components: - pos: 19.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6433 components: - pos: 18.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6434 components: - pos: 17.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6435 components: - pos: 16.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6436 components: - pos: 15.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6437 components: - pos: 15.5,4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6438 components: - pos: 15.5,5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6439 components: - pos: 15.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6440 components: - pos: 15.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6441 components: - pos: 14.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6443 components: - pos: 26.5,-20.5 @@ -24365,29 +22339,21 @@ entities: - pos: 23.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6454 components: - pos: 22.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6767 components: - pos: 15.5,-42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6897 components: - pos: 16.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7148 components: - pos: 14.5,5.5 @@ -24463,148 +22429,106 @@ entities: - pos: 12.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7163 components: - pos: 11.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7164 components: - pos: 11.5,16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7165 components: - pos: 11.5,17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7166 components: - pos: 11.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7167 components: - pos: 13.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7168 components: - pos: 15.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7169 components: - pos: 15.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7170 components: - pos: 15.5,31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7171 components: - pos: 15.5,30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7172 components: - pos: 15.5,29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7173 components: - pos: 15.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7174 components: - pos: 15.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7175 components: - pos: 16.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7176 components: - pos: 17.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7177 components: - pos: 18.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7178 components: - pos: 19.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7179 components: - pos: 20.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7180 components: - pos: 21.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7181 components: - pos: 22.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7182 components: - pos: 23.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7183 components: - pos: 24.5,27.5 @@ -24705,22 +22629,16 @@ entities: - pos: 12.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7203 components: - pos: 13.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7204 components: - pos: 14.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7205 components: - pos: 14.5,19.5 @@ -24786,29 +22704,21 @@ entities: - pos: 43.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8818 components: - pos: 118.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8822 components: - pos: 119.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9060 components: - pos: 120.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9370 components: - pos: 19.5,45.5 @@ -24864,8 +22774,6 @@ entities: - pos: 27.5,43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9381 components: - pos: 27.5,42.5 @@ -24891,8 +22799,6 @@ entities: - pos: 27.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9386 components: - pos: 27.5,37.5 @@ -24953,148 +22859,106 @@ entities: - pos: 40.5,41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9440 components: - pos: 39.5,41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9441 components: - pos: 39.5,40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9442 components: - pos: 39.5,39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9443 components: - pos: 39.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9444 components: - pos: 38.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9445 components: - pos: 37.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9446 components: - pos: 36.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9447 components: - pos: 35.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9448 components: - pos: 35.5,37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9449 components: - pos: 34.5,37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9450 components: - pos: 34.5,36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9451 components: - pos: 34.5,35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9452 components: - pos: 34.5,34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9453 components: - pos: 34.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9454 components: - pos: 34.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9455 components: - pos: 33.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9456 components: - pos: 32.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9457 components: - pos: 31.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9458 components: - pos: 30.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9459 components: - pos: 29.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9460 components: - pos: 28.5,32.5 @@ -25215,113 +23079,81 @@ entities: - pos: 22.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9489 components: - pos: 22.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9490 components: - pos: 22.5,-4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9491 components: - pos: 22.5,-5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9492 components: - pos: 22.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9493 components: - pos: 22.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9494 components: - pos: 21.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9495 components: - pos: 20.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9496 components: - pos: 19.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9497 components: - pos: 18.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9498 components: - pos: 17.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9499 components: - pos: 17.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9500 components: - pos: 17.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9501 components: - pos: 17.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9502 components: - pos: 17.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9503 components: - pos: 75.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9504 components: - pos: 75.5,9.5 @@ -25432,57 +23264,41 @@ entities: - pos: 71.5,-5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9526 components: - pos: 71.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9527 components: - pos: 71.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9528 components: - pos: 71.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9529 components: - pos: 71.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9530 components: - pos: 71.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9531 components: - pos: 71.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9532 components: - pos: 71.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9583 components: - pos: 14.5,35.5 @@ -25493,22 +23309,16 @@ entities: - pos: 35.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9822 components: - pos: 35.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9823 components: - pos: 35.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9824 components: - pos: 34.5,-16.5 @@ -25609,260 +23419,186 @@ entities: - pos: 111.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12597 components: - pos: 111.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12598 components: - pos: 111.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12599 components: - pos: 111.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12600 components: - pos: 113.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12601 components: - pos: 113.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12602 components: - pos: 113.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12603 components: - pos: 113.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12604 components: - pos: 115.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12605 components: - pos: 115.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12606 components: - pos: 115.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12608 components: - pos: 115.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12609 components: - pos: 120.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12610 components: - pos: 112.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12611 components: - pos: 114.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12612 components: - pos: 119.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12613 components: - pos: 118.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12614 components: - pos: 117.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12615 components: - pos: 120.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12616 components: - pos: 119.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12617 components: - pos: 118.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12618 components: - pos: 117.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12619 components: - pos: 115.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12620 components: - pos: 115.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12621 components: - pos: 115.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12622 components: - pos: 115.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12623 components: - pos: 113.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12624 components: - pos: 113.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12625 components: - pos: 113.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12626 components: - pos: 113.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12627 components: - pos: 111.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12628 components: - pos: 111.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12629 components: - pos: 111.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12630 components: - pos: 111.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12631 components: - pos: 114.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12632 components: - pos: 115.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12633 components: - pos: 116.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12634 components: - pos: 115.5,-19.5 @@ -25873,8 +23609,6 @@ entities: - pos: 115.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12636 components: - pos: 115.5,-15.5 @@ -25910,36 +23644,26 @@ entities: - pos: 112.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12643 components: - pos: 112.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12644 components: - pos: 112.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12645 components: - pos: 112.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12646 components: - pos: 112.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12807 components: - pos: 25.5,-27.5 @@ -25950,8 +23674,6 @@ entities: - pos: 25.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12809 components: - pos: 25.5,-25.5 @@ -26012,29 +23734,21 @@ entities: - pos: 34.5,-39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 13050 components: - pos: 35.5,-39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 13051 components: - pos: 35.5,-40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 13052 components: - pos: 35.5,-41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 13053 components: - pos: 35.5,-42.5 @@ -26065,36 +23779,66 @@ entities: - pos: 36.5,-46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 13059 components: - pos: 37.5,-46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 13060 components: - pos: 38.5,-46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 13061 components: - pos: 39.5,-46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 13062 components: - pos: 40.5,-46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound + - uid: 13156 + components: + - pos: 17.5,-34.5 + parent: 2 + type: Transform + - uid: 13157 + components: + - pos: 16.5,-34.5 + parent: 2 + type: Transform + - uid: 13158 + components: + - pos: 15.5,-34.5 + parent: 2 + type: Transform + - uid: 13159 + components: + - pos: 14.5,-34.5 + parent: 2 + type: Transform + - uid: 13160 + components: + - pos: 13.5,-34.5 + parent: 2 + type: Transform + - uid: 13161 + components: + - pos: 12.5,-34.5 + parent: 2 + type: Transform + - uid: 13162 + components: + - pos: 11.5,-34.5 + parent: 2 + type: Transform + - uid: 13163 + components: + - pos: 10.5,-34.5 + parent: 2 + type: Transform - proto: CableHVStack entities: - uid: 5629 @@ -26125,36 +23869,26 @@ entities: - pos: 9.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 58 components: - pos: 8.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 769 components: - pos: 4.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1028 components: - pos: 4.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1029 components: - pos: 5.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1030 components: - pos: 4.5,-33.5 @@ -26165,15 +23899,11 @@ entities: - pos: 4.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1032 components: - pos: 4.5,-31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1555 components: - pos: 41.5,-0.5 @@ -26184,36 +23914,26 @@ entities: - pos: 22.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2954 components: - pos: 22.5,9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 3013 components: - pos: 22.5,4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 3014 components: - pos: 22.5,5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 3403 components: - pos: 22.5,8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 3486 components: - pos: 51.5,21.5 @@ -26239,15 +23959,11 @@ entities: - pos: 22.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4308 components: - pos: 17.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4312 components: - pos: 17.5,-36.5 @@ -26258,22 +23974,16 @@ entities: - pos: 10.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4606 components: - pos: 10.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4607 components: - pos: 11.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4608 components: - pos: 12.5,-26.5 @@ -26349,8 +24059,6 @@ entities: - pos: 22.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4625 components: - pos: 21.5,-27.5 @@ -26416,15 +24124,11 @@ entities: - pos: 17.5,-42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4638 components: - pos: 16.5,-42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4639 components: - pos: 23.5,-39.5 @@ -26455,8 +24159,6 @@ entities: - pos: 26.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4645 components: - pos: 26.5,-36.5 @@ -26532,8 +24234,6 @@ entities: - pos: 9.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4660 components: - pos: 26.5,-34.5 @@ -26574,8 +24274,6 @@ entities: - pos: 22.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4671 components: - pos: 27.5,-36.5 @@ -26596,50 +24294,36 @@ entities: - pos: 29.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4875 components: - pos: 4.5,-36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4876 components: - pos: 4.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4878 components: - pos: 3.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4879 components: - pos: 3.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4880 components: - pos: 3.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4881 components: - pos: 3.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5185 components: - pos: 62.5,-7.5 @@ -26660,8 +24344,6 @@ entities: - pos: 22.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6456 components: - pos: 21.5,-14.5 @@ -26682,92 +24364,66 @@ entities: - pos: 19.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6768 components: - pos: 15.5,-42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6769 components: - pos: 14.5,-42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6770 components: - pos: 13.5,-42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6771 components: - pos: 13.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6772 components: - pos: 13.5,-44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6773 components: - pos: 13.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6780 components: - pos: 13.5,-46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6955 components: - pos: 14.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6956 components: - pos: 14.5,8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6957 components: - pos: 15.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6958 components: - pos: 15.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6959 components: - pos: 15.5,5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6961 components: - pos: 14.5,5.5 @@ -26823,8 +24479,6 @@ entities: - pos: 11.5,2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6972 components: - pos: 8.5,3.5 @@ -26835,8 +24489,6 @@ entities: - pos: 7.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6974 components: - pos: 9.5,6.5 @@ -26872,8 +24524,6 @@ entities: - pos: 10.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6981 components: - pos: 11.5,10.5 @@ -26954,141 +24604,101 @@ entities: - pos: 21.5,5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6997 components: - pos: 15.5,4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6998 components: - pos: 15.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6999 components: - pos: 16.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7000 components: - pos: 17.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7001 components: - pos: 18.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7002 components: - pos: 19.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7003 components: - pos: 20.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7004 components: - pos: 21.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7005 components: - pos: 22.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7016 components: - pos: 23.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7017 components: - pos: 22.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7018 components: - pos: 22.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7019 components: - pos: 24.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7020 components: - pos: 25.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7021 components: - pos: 26.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7022 components: - pos: 27.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7023 components: - pos: 28.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7024 components: - pos: 28.5,9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7025 components: - pos: 28.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7026 components: - pos: 27.5,7.5 @@ -27114,8 +24724,6 @@ entities: - pos: 33.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7031 components: - pos: 32.5,7.5 @@ -27151,50 +24759,36 @@ entities: - pos: 29.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7217 components: - pos: 12.5,34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7218 components: - pos: 12.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7219 components: - pos: 13.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7220 components: - pos: 14.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7221 components: - pos: 15.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7222 components: - pos: 15.5,34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7223 components: - pos: 14.5,35.5 @@ -27205,43 +24799,31 @@ entities: - pos: 13.5,35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7225 components: - pos: 15.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7226 components: - pos: 15.5,31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7227 components: - pos: 15.5,30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7228 components: - pos: 15.5,29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7229 components: - pos: 15.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7230 components: - pos: 14.5,28.5 @@ -27292,8 +24874,6 @@ entities: - pos: 16.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7240 components: - pos: 14.5,25.5 @@ -27309,15 +24889,11 @@ entities: - pos: 16.5,25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7243 components: - pos: 10.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7244 components: - pos: 9.5,18.5 @@ -27378,57 +24954,41 @@ entities: - pos: 13.5,16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7256 components: - pos: 12.5,16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7257 components: - pos: 11.5,16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7258 components: - pos: 11.5,17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7259 components: - pos: 11.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7260 components: - pos: 13.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7261 components: - pos: 12.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7262 components: - pos: 14.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7263 components: - pos: 14.5,19.5 @@ -27454,127 +25014,91 @@ entities: - pos: 6.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7476 components: - pos: 6.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7477 components: - pos: 6.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7478 components: - pos: 5.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7479 components: - pos: 4.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7480 components: - pos: 3.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7481 components: - pos: 2.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7482 components: - pos: 1.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7483 components: - pos: 0.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7484 components: - pos: 0.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7485 components: - pos: 1.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7486 components: - pos: 1.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7487 components: - pos: 1.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7488 components: - pos: 1.5,-5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7489 components: - pos: 1.5,-4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7490 components: - pos: 1.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7491 components: - pos: 2.5,-4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7492 components: - pos: 0.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7493 components: - pos: 1.5,-2.5 @@ -27640,29 +25164,21 @@ entities: - pos: -4.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7506 components: - pos: 0.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7507 components: - pos: 0.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7508 components: - pos: -0.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7509 components: - pos: -0.5,-10.5 @@ -27823,8 +25339,6 @@ entities: - pos: -15.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8287 components: - pos: 27.5,33.5 @@ -27835,29 +25349,21 @@ entities: - pos: 52.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8341 components: - pos: 52.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8348 components: - pos: 43.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8349 components: - pos: 43.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8350 components: - pos: 43.5,25.5 @@ -27903,8 +25409,6 @@ entities: - pos: 41.5,21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8359 components: - pos: 39.5,22.5 @@ -28000,8 +25504,6 @@ entities: - pos: 36.5,29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8385 components: - pos: 34.5,25.5 @@ -28022,8 +25524,6 @@ entities: - pos: 37.5,25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8456 components: - pos: 33.5,21.5 @@ -28039,8 +25539,6 @@ entities: - pos: 31.5,21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8459 components: - pos: 30.5,21.5 @@ -28056,15 +25554,11 @@ entities: - pos: 28.5,21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8462 components: - pos: 28.5,20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8463 components: - pos: 33.5,20.5 @@ -28105,43 +25599,31 @@ entities: - pos: 28.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8471 components: - pos: 28.5,17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8536 components: - pos: 37.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8537 components: - pos: 37.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8538 components: - pos: 37.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8539 components: - pos: 38.5,25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8540 components: - pos: 39.5,25.5 @@ -28157,29 +25639,21 @@ entities: - pos: 41.5,25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8543 components: - pos: 37.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8544 components: - pos: 37.5,24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8545 components: - pos: 37.5,21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8546 components: - pos: 38.5,21.5 @@ -28190,22 +25664,16 @@ entities: - pos: 38.5,20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8548 components: - pos: 31.5,17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8698 components: - pos: 47.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9007 components: - pos: 14.5,36.5 @@ -28251,8 +25719,6 @@ entities: - pos: 20.5,34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9021 components: - pos: 18.5,37.5 @@ -28283,8 +25749,6 @@ entities: - pos: 20.5,40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9027 components: - pos: 21.5,36.5 @@ -28330,8 +25794,6 @@ entities: - pos: 28.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9036 components: - pos: 27.5,34.5 @@ -28342,8 +25804,6 @@ entities: - pos: 28.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9038 components: - pos: 29.5,36.5 @@ -28364,8 +25824,6 @@ entities: - pos: 30.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9042 components: - pos: 27.5,37.5 @@ -28376,8 +25834,6 @@ entities: - pos: 27.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9044 components: - pos: 27.5,39.5 @@ -28403,8 +25859,6 @@ entities: - pos: 27.5,43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9049 components: - pos: 27.5,44.5 @@ -28435,8 +25889,6 @@ entities: - pos: 25.5,43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9055 components: - pos: 28.5,45.5 @@ -28472,8 +25924,6 @@ entities: - pos: 33.5,44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9094 components: - pos: 27.5,35.5 @@ -28489,29 +25939,21 @@ entities: - pos: 21.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9097 components: - pos: 22.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9098 components: - pos: 23.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9099 components: - pos: 24.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9100 components: - pos: 24.5,45.5 @@ -28547,15 +25989,11 @@ entities: - pos: 18.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9107 components: - pos: 18.5,44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9108 components: - pos: 22.5,46.5 @@ -28576,78 +26014,56 @@ entities: - pos: 22.5,49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9114 components: - pos: 23.5,49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9115 components: - pos: 24.5,49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9116 components: - pos: 25.5,49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9117 components: - pos: 26.5,49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9118 components: - pos: 27.5,49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9119 components: - pos: 28.5,49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9120 components: - pos: 29.5,49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9121 components: - pos: 30.5,49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9122 components: - pos: 31.5,49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9123 components: - pos: 32.5,49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9124 components: - pos: 32.5,48.5 @@ -28678,99 +26094,71 @@ entities: - pos: 36.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9130 components: - pos: 36.5,46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9253 components: - pos: 70.5,44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9254 components: - pos: 69.5,44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9255 components: - pos: 69.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9256 components: - pos: 69.5,46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9257 components: - pos: 69.5,47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9258 components: - pos: 69.5,43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9259 components: - pos: 69.5,42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9260 components: - pos: 68.5,42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9261 components: - pos: 68.5,41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9262 components: - pos: 67.5,42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9263 components: - pos: 67.5,43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9264 components: - pos: 67.5,44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9265 components: - pos: 66.5,44.5 @@ -28781,8 +26169,6 @@ entities: - pos: 66.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9474 components: - pos: 24.5,44.5 @@ -28793,15 +26179,11 @@ entities: - pos: 24.5,43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9476 components: - pos: 21.5,43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9477 components: - pos: 21.5,44.5 @@ -28812,85 +26194,61 @@ entities: - pos: 52.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9639 components: - pos: 52.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9640 components: - pos: 51.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9641 components: - pos: 50.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9642 components: - pos: 49.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9643 components: - pos: 48.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9644 components: - pos: 47.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9645 components: - pos: 46.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9646 components: - pos: 45.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9647 components: - pos: 44.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9648 components: - pos: 43.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9649 components: - pos: 42.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9650 components: - pos: 41.5,-12.5 @@ -28946,8 +26304,6 @@ entities: - pos: 32.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9661 components: - pos: 39.5,-10.5 @@ -29003,8 +26359,6 @@ entities: - pos: 37.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9672 components: - pos: 40.5,-3.5 @@ -29060,15 +26414,11 @@ entities: - pos: 45.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9683 components: - pos: 41.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9684 components: - pos: 41.5,-1.5 @@ -29079,29 +26429,21 @@ entities: - pos: 40.5,-1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9686 components: - pos: 50.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9687 components: - pos: 50.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9688 components: - pos: 50.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9689 components: - pos: 50.5,-8.5 @@ -29132,141 +26474,101 @@ entities: - pos: 16.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9746 components: - pos: 16.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9747 components: - pos: 16.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9748 components: - pos: 16.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9749 components: - pos: 15.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9750 components: - pos: 14.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9751 components: - pos: 13.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9752 components: - pos: 13.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9753 components: - pos: 13.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9754 components: - pos: 12.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9755 components: - pos: 11.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9756 components: - pos: 10.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9757 components: - pos: 10.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9758 components: - pos: 10.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9759 components: - pos: 11.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9760 components: - pos: 17.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9761 components: - pos: 17.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9762 components: - pos: 17.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9763 components: - pos: 17.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9764 components: - pos: 17.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9765 components: - pos: 16.5,-7.5 @@ -29277,8 +26579,6 @@ entities: - pos: 16.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9767 components: - pos: 15.5,-7.5 @@ -29294,106 +26594,76 @@ entities: - pos: 13.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9770 components: - pos: 18.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9771 components: - pos: 19.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9772 components: - pos: 20.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9773 components: - pos: 21.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9774 components: - pos: 21.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9776 components: - pos: 23.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9777 components: - pos: 23.5,2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9829 components: - pos: 35.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9830 components: - pos: 35.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9831 components: - pos: 34.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9832 components: - pos: 36.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9833 components: - pos: 37.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9834 components: - pos: 38.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9835 components: - pos: 39.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9836 components: - pos: 33.5,-15.5 @@ -29424,239 +26694,171 @@ entities: - pos: 32.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9842 components: - pos: 31.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9843 components: - pos: 30.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9844 components: - pos: 29.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9845 components: - pos: 28.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9846 components: - pos: 33.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9847 components: - pos: 34.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9848 components: - pos: 35.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9849 components: - pos: 36.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9850 components: - pos: 37.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9851 components: - pos: 38.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9852 components: - pos: 39.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9853 components: - pos: 39.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9854 components: - pos: 36.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9855 components: - pos: 36.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9856 components: - pos: 51.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9857 components: - pos: 51.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9858 components: - pos: 50.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9859 components: - pos: 69.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9860 components: - pos: 70.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9861 components: - pos: 71.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9862 components: - pos: 71.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9863 components: - pos: 71.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9864 components: - pos: 70.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9865 components: - pos: 69.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9866 components: - pos: 68.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9867 components: - pos: 71.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9868 components: - pos: 71.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9869 components: - pos: 71.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9870 components: - pos: 71.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9871 components: - pos: 71.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9872 components: - pos: 71.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9873 components: - pos: 71.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9874 components: - pos: 71.5,-5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9875 components: - pos: 71.5,-4.5 @@ -29692,15 +26894,11 @@ entities: - pos: 75.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9882 components: - pos: 41.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9883 components: - pos: 40.5,-37.5 @@ -29721,148 +26919,106 @@ entities: - pos: 38.5,-36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9887 components: - pos: 38.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9888 components: - pos: 38.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9889 components: - pos: 38.5,-33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9890 components: - pos: 38.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9891 components: - pos: 38.5,-31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9892 components: - pos: 38.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9893 components: - pos: 38.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9894 components: - pos: 38.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9895 components: - pos: 38.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9896 components: - pos: 39.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9897 components: - pos: 39.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9898 components: - pos: 38.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9899 components: - pos: 39.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9900 components: - pos: 38.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9901 components: - pos: 37.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9902 components: - pos: 37.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9903 components: - pos: 36.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9904 components: - pos: 36.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10130 components: - pos: 63.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10672 components: - pos: 64.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10673 components: - pos: 63.5,11.5 @@ -29883,22 +27039,16 @@ entities: - pos: 63.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10677 components: - pos: 61.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10678 components: - pos: 60.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10679 components: - pos: 62.5,13.5 @@ -29944,8 +27094,6 @@ entities: - pos: 66.5,17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10688 components: - pos: 61.5,14.5 @@ -29991,8 +27139,6 @@ entities: - pos: 56.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10697 components: - pos: 56.5,14.5 @@ -30073,8 +27219,6 @@ entities: - pos: 43.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10784 components: - pos: 47.5,15.5 @@ -30110,78 +27254,56 @@ entities: - pos: 47.5,21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10854 components: - pos: 47.5,22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10855 components: - pos: 47.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10857 components: - pos: 47.5,24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10858 components: - pos: 47.5,25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10859 components: - pos: 47.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10860 components: - pos: 47.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10861 components: - pos: 48.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10862 components: - pos: 49.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10865 components: - pos: 50.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10866 components: - pos: 51.5,22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10867 components: - pos: 51.5,20.5 @@ -30202,8 +27324,6 @@ entities: - pos: 53.5,21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10871 components: - pos: 53.5,19.5 @@ -30229,8 +27349,6 @@ entities: - pos: 57.5,19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10879 components: - pos: 58.5,19.5 @@ -30256,8 +27374,6 @@ entities: - pos: 61.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10884 components: - pos: 60.5,17.5 @@ -30318,8 +27434,6 @@ entities: - pos: 65.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10913 components: - pos: 41.5,0.5 @@ -30350,8 +27464,6 @@ entities: - pos: 43.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10919 components: - pos: 41.5,4.5 @@ -30377,22 +27489,16 @@ entities: - pos: 43.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11148 components: - pos: 72.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11149 components: - pos: 73.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11150 components: - pos: 72.5,-1.5 @@ -30478,22 +27584,16 @@ entities: - pos: 75.5,-4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11174 components: - pos: 70.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11175 components: - pos: 69.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11177 components: - pos: 68.5,-9.5 @@ -30579,15 +27679,11 @@ entities: - pos: 58.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11220 components: - pos: 58.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11226 components: - pos: 66.5,-4.5 @@ -30603,8 +27699,6 @@ entities: - pos: 66.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11229 components: - pos: 66.5,-1.5 @@ -30615,8 +27709,6 @@ entities: - pos: 66.5,-0.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11231 components: - pos: 71.5,1.5 @@ -30657,8 +27749,6 @@ entities: - pos: 54.5,4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11239 components: - pos: 54.5,3.5 @@ -30739,57 +27829,41 @@ entities: - pos: 72.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12140 components: - pos: 73.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12141 components: - pos: 74.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12145 components: - pos: 75.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12146 components: - pos: 76.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12147 components: - pos: 77.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12148 components: - pos: 78.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12149 components: - pos: 78.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12171 components: - pos: 71.5,2.5 @@ -30845,120 +27919,86 @@ entities: - pos: 74.5,9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12191 components: - pos: 69.5,9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12192 components: - pos: 69.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12193 components: - pos: 68.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12194 components: - pos: 67.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12195 components: - pos: 67.5,9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12196 components: - pos: 67.5,8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12197 components: - pos: 66.5,8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12198 components: - pos: 65.5,8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12199 components: - pos: 65.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12200 components: - pos: 65.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12202 components: - pos: 64.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12203 components: - pos: 63.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12204 components: - pos: 62.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12205 components: - pos: 61.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12206 components: - pos: 60.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12207 components: - pos: 59.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12208 components: - pos: 58.5,6.5 @@ -30994,29 +28034,21 @@ entities: - pos: 112.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12649 components: - pos: 111.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12650 components: - pos: 110.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12651 components: - pos: 110.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12935 components: - pos: 29.5,-38.5 @@ -31032,8 +28064,6 @@ entities: - pos: 30.5,-39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12938 components: - pos: 31.5,-39.5 @@ -31054,29 +28084,21 @@ entities: - pos: 34.5,-39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12942 components: - pos: 35.5,-39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12943 components: - pos: 35.5,-40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12944 components: - pos: 35.5,-41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12945 components: - pos: 35.5,-42.5 @@ -31097,8 +28119,6 @@ entities: - pos: 37.5,-41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 13143 components: - pos: 17.5,-41.5 @@ -31144,8 +28164,6 @@ entities: - pos: 21.5,-41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - proto: CableMVStack entities: - uid: 5628 @@ -36540,23 +33558,12 @@ entities: type: Transform - proto: ComputerCriminalRecords entities: - - uid: 2145 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,17.5 - parent: 2 - type: Transform - uid: 7981 components: - rot: 3.141592653589793 rad pos: -1.5,-5.5 parent: 2 type: Transform - - uid: 8315 - components: - - pos: 23.5,48.5 - parent: 2 - type: Transform - uid: 12083 components: - pos: 29.5,26.5 @@ -36724,6 +33731,17 @@ entities: type: Transform - proto: ComputerStationRecords entities: + - uid: 2145 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,17.5 + parent: 2 + type: Transform + - uid: 8315 + components: + - pos: 23.5,48.5 + parent: 2 + type: Transform - uid: 10274 components: - rot: -1.5707963267948966 rad @@ -37805,14 +34823,12 @@ entities: entities: - uid: 257 components: - - anchored: False - pos: 39.5,28.5 + - pos: 39.5,28.5 parent: 2 type: Transform - uid: 258 components: - - anchored: False - pos: 40.5,28.5 + - pos: 40.5,28.5 parent: 2 type: Transform - proto: DeskBell @@ -44938,24 +41954,18 @@ entities: pos: 47.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 381 components: - rot: -1.5707963267948966 rad pos: 47.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 382 components: - rot: -1.5707963267948966 rad pos: 47.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 383 components: - rot: -1.5707963267948966 rad @@ -44978,16 +41988,12 @@ entities: pos: 47.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 392 components: - rot: -1.5707963267948966 rad pos: 47.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 393 components: - rot: 1.5707963267948966 rad @@ -45002,8 +42008,6 @@ entities: pos: 35.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 889 components: - rot: 1.5707963267948966 rad @@ -45024,8 +42028,6 @@ entities: - pos: 39.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1039 components: - rot: -1.5707963267948966 rad @@ -45034,8 +42036,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1040 components: - rot: 1.5707963267948966 rad @@ -45044,8 +42044,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1149 components: - rot: 1.5707963267948966 rad @@ -45062,8 +42060,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1236 components: - rot: 3.141592653589793 rad @@ -45072,8 +42068,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1258 components: - rot: 3.141592653589793 rad @@ -45082,8 +42076,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1306 components: - pos: 31.5,-32.5 @@ -45193,16 +42185,12 @@ entities: pos: 38.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2441 components: - rot: -1.5707963267948966 rad pos: 47.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2609 components: - rot: -1.5707963267948966 rad @@ -45235,15 +42223,11 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3982 components: - pos: 39.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4014 components: - rot: 1.5707963267948966 rad @@ -45252,8 +42236,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4015 components: - rot: -1.5707963267948966 rad @@ -45262,8 +42244,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4016 components: - rot: 1.5707963267948966 rad @@ -45272,8 +42252,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4017 components: - pos: 40.5,-22.5 @@ -45281,8 +42259,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4028 components: - rot: 1.5707963267948966 rad @@ -45291,8 +42267,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4031 components: - rot: -1.5707963267948966 rad @@ -45301,8 +42275,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4050 components: - rot: 3.141592653589793 rad @@ -45327,8 +42299,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4177 components: - rot: 3.141592653589793 rad @@ -45337,8 +42307,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4219 components: - pos: 41.5,-0.5 @@ -45352,15 +42320,11 @@ entities: pos: 34.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4366 components: - pos: 37.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4443 components: - pos: 32.5,-35.5 @@ -45376,8 +42340,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4914 components: - rot: 1.5707963267948966 rad @@ -45707,8 +42669,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10644 components: - rot: 1.5707963267948966 rad @@ -45741,8 +42701,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11579 components: - pos: 41.5,-47.5 @@ -45750,8 +42708,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11707 components: - rot: -1.5707963267948966 rad @@ -45760,8 +42716,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11720 components: - rot: 1.5707963267948966 rad @@ -45863,8 +42817,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12869 components: - rot: -1.5707963267948966 rad @@ -45873,8 +42825,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12870 components: - rot: 3.141592653589793 rad @@ -45883,24 +42833,18 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12875 components: - rot: 3.141592653589793 rad pos: 41.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12881 components: - rot: 3.141592653589793 rad pos: 44.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12883 components: - pos: 49.5,-44.5 @@ -45954,8 +42898,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4021 components: - pos: 55.5,-5.5 @@ -46116,8 +43058,6 @@ entities: pos: 42.5,-31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 107 components: - pos: 11.5,-37.5 @@ -46125,8 +43065,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 117 components: - rot: 3.141592653589793 rad @@ -46157,8 +43095,6 @@ entities: pos: 41.5,-33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 143 components: - rot: 3.141592653589793 rad @@ -46221,40 +43157,30 @@ entities: pos: 44.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 318 components: - rot: 1.5707963267948966 rad pos: 45.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 319 components: - rot: 1.5707963267948966 rad pos: 44.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 321 components: - rot: 1.5707963267948966 rad pos: 43.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 322 components: - rot: 1.5707963267948966 rad pos: 42.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 352 components: - pos: 3.5,4.5 @@ -46317,48 +43243,36 @@ entities: pos: 46.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 407 components: - rot: 1.5707963267948966 rad pos: 41.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 409 components: - rot: 1.5707963267948966 rad pos: 45.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 410 components: - rot: 1.5707963267948966 rad pos: 44.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 415 components: - rot: 1.5707963267948966 rad pos: 43.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 416 components: - rot: 1.5707963267948966 rad pos: 46.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 425 components: - rot: -1.5707963267948966 rad @@ -46383,8 +43297,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 439 components: - rot: -1.5707963267948966 rad @@ -46393,8 +43305,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 440 components: - rot: 1.5707963267948966 rad @@ -46410,8 +43320,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 444 components: - pos: 25.5,-17.5 @@ -46432,8 +43340,6 @@ entities: pos: 44.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 512 components: - rot: 1.5707963267948966 rad @@ -46495,55 +43401,41 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 676 components: - rot: 1.5707963267948966 rad pos: 43.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 677 components: - rot: 1.5707963267948966 rad pos: 42.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 678 components: - rot: -1.5707963267948966 rad pos: 38.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 743 components: - rot: -1.5707963267948966 rad pos: 36.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 744 components: - pos: 39.5,-33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 755 components: - rot: -1.5707963267948966 rad pos: 37.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 817 components: - pos: 42.5,2.5 @@ -46559,8 +43451,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 820 components: - pos: 31.5,-25.5 @@ -46568,8 +43458,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 825 components: - pos: 42.5,3.5 @@ -46597,48 +43485,36 @@ entities: pos: 42.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 839 components: - rot: 1.5707963267948966 rad pos: 46.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 842 components: - rot: 1.5707963267948966 rad pos: 45.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 850 components: - rot: 1.5707963267948966 rad pos: 46.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 851 components: - rot: 1.5707963267948966 rad pos: 45.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 869 components: - rot: 1.5707963267948966 rad pos: 44.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 879 components: - rot: 3.141592653589793 rad @@ -46647,8 +43523,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 887 components: - rot: 3.141592653589793 rad @@ -46665,8 +43539,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 890 components: - rot: 3.141592653589793 rad @@ -46721,8 +43593,6 @@ entities: pos: 43.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 901 components: - rot: 1.5707963267948966 rad @@ -46809,8 +43679,6 @@ entities: - pos: 39.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1037 components: - rot: -1.5707963267948966 rad @@ -46819,8 +43687,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1038 components: - rot: -1.5707963267948966 rad @@ -46829,8 +43695,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1043 components: - pos: 25.5,-0.5 @@ -46914,8 +43778,6 @@ entities: - pos: 38.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1212 components: - rot: 1.5707963267948966 rad @@ -46948,8 +43810,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1222 components: - rot: 1.5707963267948966 rad @@ -46958,8 +43818,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1224 components: - rot: 1.5707963267948966 rad @@ -46968,8 +43826,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1226 components: - rot: -1.5707963267948966 rad @@ -46978,32 +43834,24 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1228 components: - rot: -1.5707963267948966 rad pos: 41.5,-31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1229 components: - rot: -1.5707963267948966 rad pos: 44.5,-33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1230 components: - rot: -1.5707963267948966 rad pos: 43.5,-33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1237 components: - rot: 3.141592653589793 rad @@ -47012,8 +43860,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1245 components: - rot: 3.141592653589793 rad @@ -47022,8 +43868,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1249 components: - rot: -1.5707963267948966 rad @@ -47032,48 +43876,36 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1300 components: - rot: 1.5707963267948966 rad pos: 45.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1301 components: - rot: 1.5707963267948966 rad pos: 42.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1302 components: - rot: 1.5707963267948966 rad pos: 46.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1303 components: - rot: 1.5707963267948966 rad pos: 44.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1346 components: - rot: 1.5707963267948966 rad pos: 39.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1371 components: - pos: 31.5,-33.5 @@ -47086,8 +43918,6 @@ entities: - pos: 39.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1485 components: - pos: 31.5,-34.5 @@ -47517,8 +44347,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1719 components: - pos: 25.5,33.5 @@ -47767,8 +44595,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1845 components: - rot: 1.5707963267948966 rad @@ -48251,8 +45077,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1934 components: - pos: 42.5,12.5 @@ -48290,8 +45114,6 @@ entities: pos: 40.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1959 components: - rot: 3.141592653589793 rad @@ -48394,8 +45216,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2032 components: - pos: 11.5,-39.5 @@ -48403,8 +45223,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2052 components: - rot: 1.5707963267948966 rad @@ -48420,8 +45238,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2063 components: - pos: 25.5,-9.5 @@ -48435,32 +45251,24 @@ entities: pos: 41.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2070 components: - rot: -1.5707963267948966 rad pos: 43.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2071 components: - rot: -1.5707963267948966 rad pos: 43.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2148 components: - rot: -1.5707963267948966 rad pos: 42.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2161 components: - rot: 1.5707963267948966 rad @@ -48477,8 +45285,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2316 components: - pos: 25.5,-12.5 @@ -48554,24 +45360,18 @@ entities: pos: 44.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2390 components: - rot: -1.5707963267948966 rad pos: 42.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2391 components: - rot: -1.5707963267948966 rad pos: 44.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2396 components: - pos: 25.5,-6.5 @@ -48679,32 +45479,24 @@ entities: pos: 43.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2438 components: - rot: 1.5707963267948966 rad pos: 42.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2439 components: - rot: 1.5707963267948966 rad pos: 41.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2440 components: - rot: 1.5707963267948966 rad pos: 41.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2452 components: - pos: 27.5,44.5 @@ -48825,8 +45617,6 @@ entities: pos: 42.5,-33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2731 components: - rot: 3.141592653589793 rad @@ -48841,8 +45631,6 @@ entities: pos: 40.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 3553 components: - rot: 1.5707963267948966 rad @@ -48946,8 +45734,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3955 components: - pos: 38.5,-46.5 @@ -48955,8 +45741,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3958 components: - rot: -1.5707963267948966 rad @@ -49010,8 +45794,6 @@ entities: - pos: 39.5,-31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4003 components: - rot: 3.141592653589793 rad @@ -49036,16 +45818,12 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4008 components: - rot: -1.5707963267948966 rad pos: 41.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4009 components: - pos: 19.5,12.5 @@ -49100,8 +45878,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4043 components: - rot: 1.5707963267948966 rad @@ -49132,16 +45908,12 @@ entities: pos: 41.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4052 components: - rot: -1.5707963267948966 rad pos: 44.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4058 components: - rot: -1.5707963267948966 rad @@ -49150,8 +45922,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4060 components: - rot: -1.5707963267948966 rad @@ -49200,8 +45970,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4068 components: - pos: 25.5,-25.5 @@ -49217,8 +45985,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4070 components: - rot: -1.5707963267948966 rad @@ -49249,8 +46015,6 @@ entities: pos: 41.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4083 components: - rot: 3.141592653589793 rad @@ -49259,8 +46023,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4084 components: - rot: -1.5707963267948966 rad @@ -49269,8 +46031,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4085 components: - pos: 19.5,10.5 @@ -49284,24 +46044,18 @@ entities: pos: 42.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4095 components: - rot: -1.5707963267948966 rad pos: 44.5,-31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4097 components: - rot: -1.5707963267948966 rad pos: 43.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4103 components: - rot: 1.5707963267948966 rad @@ -49390,8 +46144,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4131 components: - rot: 1.5707963267948966 rad @@ -49400,40 +46152,30 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4133 components: - rot: 1.5707963267948966 rad pos: 44.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4135 components: - rot: 3.141592653589793 rad pos: 40.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4136 components: - rot: 1.5707963267948966 rad pos: 43.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4140 components: - rot: 1.5707963267948966 rad pos: 42.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4144 components: - rot: 1.5707963267948966 rad @@ -49442,24 +46184,18 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4147 components: - rot: 3.141592653589793 rad pos: 40.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4151 components: - rot: 1.5707963267948966 rad pos: 41.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4155 components: - rot: 3.141592653589793 rad @@ -49474,8 +46210,6 @@ entities: pos: 40.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4159 components: - rot: 1.5707963267948966 rad @@ -49484,8 +46218,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4160 components: - rot: 3.141592653589793 rad @@ -49547,8 +46279,6 @@ entities: - pos: 39.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4184 components: - pos: 46.5,-3.5 @@ -49572,8 +46302,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4192 components: - rot: 3.141592653589793 rad @@ -49898,48 +46626,36 @@ entities: pos: 43.5,-31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4269 components: - rot: 1.5707963267948966 rad pos: 41.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4270 components: - rot: 1.5707963267948966 rad pos: 41.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4271 components: - rot: 1.5707963267948966 rad pos: 43.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4272 components: - rot: 1.5707963267948966 rad pos: 45.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4273 components: - rot: 1.5707963267948966 rad pos: 46.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4274 components: - rot: 3.141592653589793 rad @@ -49954,8 +46670,6 @@ entities: pos: 42.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4281 components: - rot: 1.5707963267948966 rad @@ -49979,8 +46693,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4285 components: - rot: -1.5707963267948966 rad @@ -50041,8 +46753,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4353 components: - rot: -1.5707963267948966 rad @@ -50051,43 +46761,31 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4356 components: - pos: 35.5,-33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4357 components: - pos: 35.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4358 components: - pos: 35.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4359 components: - pos: 35.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4360 components: - pos: 35.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4444 components: - pos: 32.5,-36.5 @@ -50137,8 +46835,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4462 components: - pos: 20.5,-36.5 @@ -50153,8 +46849,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4480 components: - rot: 1.5707963267948966 rad @@ -50163,8 +46857,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4493 components: - rot: 1.5707963267948966 rad @@ -50173,8 +46865,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4495 components: - rot: 1.5707963267948966 rad @@ -50183,8 +46873,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4970 components: - pos: 27.5,34.5 @@ -50279,8 +46967,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5192 components: - pos: 55.5,-7.5 @@ -50307,8 +46993,6 @@ entities: - pos: 79.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5259 components: - pos: 79.5,-7.5 @@ -50376,8 +47060,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5670 components: - rot: -1.5707963267948966 rad @@ -50409,8 +47091,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5683 components: - pos: 38.5,-44.5 @@ -50418,8 +47098,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6425 components: - rot: 3.141592653589793 rad @@ -50480,8 +47158,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6503 components: - pos: 27.5,39.5 @@ -50497,8 +47173,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6508 components: - pos: 46.5,-4.5 @@ -50867,8 +47541,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6917 components: - pos: 10.5,-35.5 @@ -51607,8 +48279,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8308 components: - pos: 27.5,37.5 @@ -51631,8 +48301,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8321 components: - pos: 27.5,42.5 @@ -51760,8 +48428,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8579 components: - rot: -1.5707963267948966 rad @@ -51802,8 +48468,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8587 components: - rot: -1.5707963267948966 rad @@ -51836,8 +48500,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8593 components: - rot: -1.5707963267948966 rad @@ -52096,8 +48758,6 @@ entities: pos: 42.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8678 components: - rot: 3.141592653589793 rad @@ -52122,8 +48782,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8683 components: - rot: 3.141592653589793 rad @@ -52374,8 +49032,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9630 components: - rot: 3.141592653589793 rad @@ -52408,8 +49064,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9634 components: - rot: 3.141592653589793 rad @@ -52611,8 +49265,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10134 components: - pos: 57.5,-5.5 @@ -52627,8 +49279,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10146 components: - pos: 1.5,-8.5 @@ -52636,8 +49286,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10147 components: - pos: 1.5,-7.5 @@ -52645,8 +49293,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10148 components: - pos: 1.5,-6.5 @@ -52654,8 +49300,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10149 components: - rot: -1.5707963267948966 rad @@ -52808,8 +49452,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10176 components: - rot: -1.5707963267948966 rad @@ -53170,8 +49812,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10345 components: - rot: -1.5707963267948966 rad @@ -53307,8 +49947,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10376 components: - rot: 3.141592653589793 rad @@ -53355,8 +49993,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10387 components: - pos: 63.5,11.5 @@ -53436,8 +50072,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10397 components: - rot: 3.141592653589793 rad @@ -53514,8 +50148,6 @@ entities: - pos: 63.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10431 components: - pos: 63.5,27.5 @@ -53531,8 +50163,6 @@ entities: - pos: 64.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10434 components: - pos: 64.5,25.5 @@ -53551,8 +50181,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10641 components: - rot: -1.5707963267948966 rad @@ -53561,8 +50189,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10642 components: - rot: 3.141592653589793 rad @@ -53965,8 +50591,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11528 components: - rot: 3.141592653589793 rad @@ -53999,8 +50623,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11699 components: - rot: 1.5707963267948966 rad @@ -54017,8 +50639,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11701 components: - rot: 1.5707963267948966 rad @@ -54027,8 +50647,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11702 components: - pos: 71.5,-8.5 @@ -54036,8 +50654,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11703 components: - pos: 71.5,-7.5 @@ -54045,8 +50661,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11704 components: - pos: 71.5,-6.5 @@ -54054,8 +50668,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11705 components: - pos: 71.5,-5.5 @@ -54063,8 +50675,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11706 components: - pos: 71.5,-4.5 @@ -54150,8 +50760,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11727 components: - pos: 72.5,1.5 @@ -54301,8 +50909,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11935 components: - pos: 60.5,-9.5 @@ -54342,8 +50948,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12859 components: - rot: 3.141592653589793 rad @@ -54352,8 +50956,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12860 components: - rot: 3.141592653589793 rad @@ -54362,8 +50964,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12867 components: - pos: 43.5,-50.5 @@ -54371,8 +50971,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12868 components: - pos: 41.5,-50.5 @@ -54380,24 +50978,18 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12879 components: - rot: 3.141592653589793 rad pos: 44.5,-44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12880 components: - rot: 1.5707963267948966 rad pos: 45.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12887 components: - rot: -1.5707963267948966 rad @@ -54432,8 +51024,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 39 components: - rot: 1.5707963267948966 rad @@ -54514,8 +51104,6 @@ entities: pos: 38.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1148 components: - rot: -1.5707963267948966 rad @@ -54531,8 +51119,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1221 components: - rot: 3.141592653589793 rad @@ -54541,8 +51127,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1225 components: - pos: 43.5,-44.5 @@ -54550,8 +51134,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1234 components: - rot: -1.5707963267948966 rad @@ -54560,8 +51142,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1257 components: - pos: 41.5,-44.5 @@ -54569,8 +51149,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1259 components: - pos: 26.5,-28.5 @@ -54736,8 +51314,6 @@ entities: pos: 39.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2529 components: - rot: 3.141592653589793 rad @@ -54770,8 +51346,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4002 components: - rot: 1.5707963267948966 rad @@ -54878,15 +51452,11 @@ entities: - pos: 36.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4368 components: - pos: 35.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4494 components: - pos: 47.5,-47.5 @@ -54908,8 +51478,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4499 components: - pos: 46.5,-47.5 @@ -54975,8 +51543,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5113 components: - rot: -1.5707963267948966 rad @@ -55470,8 +52036,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10142 components: - rot: 1.5707963267948966 rad @@ -55480,8 +52044,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10143 components: - rot: 1.5707963267948966 rad @@ -55490,8 +52052,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10144 components: - rot: -1.5707963267948966 rad @@ -55500,8 +52060,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10157 components: - rot: 1.5707963267948966 rad @@ -55525,8 +52083,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10336 components: - pos: 62.5,14.5 @@ -55619,8 +52175,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11710 components: - rot: -1.5707963267948966 rad @@ -55658,8 +52212,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12864 components: - rot: -1.5707963267948966 rad @@ -55668,8 +52220,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12865 components: - rot: 1.5707963267948966 rad @@ -55678,8 +52228,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12866 components: - rot: 1.5707963267948966 rad @@ -55688,32 +52236,24 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12876 components: - rot: 3.141592653589793 rad pos: 42.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12877 components: - rot: 3.141592653589793 rad pos: 43.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12878 components: - rot: -1.5707963267948966 rad pos: 44.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12886 components: - pos: 47.5,-44.5 @@ -55744,8 +52284,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - proto: GasPort entities: - uid: 4010 @@ -56060,8 +52598,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#03FCD3FF' type: AtmosPipeColor - uid: 4150 @@ -56072,8 +52608,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4250 @@ -56084,8 +52618,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11586 @@ -56096,8 +52628,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - proto: GasVentPump @@ -56108,8 +52638,6 @@ entities: pos: 26.5,-29.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 1560 @@ -56121,8 +52649,6 @@ entities: - ShutdownSubscribers: - 1520 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 1625 @@ -56134,8 +52660,6 @@ entities: - ShutdownSubscribers: - 1017 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2393 @@ -56143,8 +52667,6 @@ entities: - pos: 30.5,-27.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3692 @@ -56156,8 +52678,6 @@ entities: - ShutdownSubscribers: - 12484 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4027 @@ -56169,8 +52689,6 @@ entities: - ShutdownSubscribers: - 138 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4035 @@ -56182,8 +52700,6 @@ entities: - ShutdownSubscribers: - 195 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4460 @@ -56195,8 +52711,6 @@ entities: - ShutdownSubscribers: - 170 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4465 @@ -56205,8 +52719,6 @@ entities: pos: 20.5,-38.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4551 @@ -56218,8 +52730,6 @@ entities: - ShutdownSubscribers: - 11990 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5103 @@ -56230,8 +52740,6 @@ entities: - ShutdownSubscribers: - 12486 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5189 @@ -56243,8 +52751,6 @@ entities: - ShutdownSubscribers: - 11731 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5422 @@ -56253,8 +52759,6 @@ entities: pos: 11.5,-40.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5533 @@ -56263,8 +52767,6 @@ entities: pos: 36.5,42.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5678 @@ -56276,8 +52778,6 @@ entities: - ShutdownSubscribers: - 5680 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5964 @@ -56289,8 +52789,6 @@ entities: - ShutdownSubscribers: - 6158 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6570 @@ -56302,8 +52800,6 @@ entities: - ShutdownSubscribers: - 6682 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6590 @@ -56312,8 +52808,6 @@ entities: pos: 30.5,-12.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 6593 components: - rot: 3.141592653589793 rad @@ -56323,8 +52817,6 @@ entities: - ShutdownSubscribers: - 6632 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6608 @@ -56336,8 +52828,6 @@ entities: - ShutdownSubscribers: - 6632 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6609 @@ -56349,8 +52839,6 @@ entities: - ShutdownSubscribers: - 360 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6620 @@ -56364,8 +52852,6 @@ entities: - 5077 - 8316 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6627 @@ -56374,8 +52860,6 @@ entities: pos: 34.5,-3.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6640 @@ -56386,8 +52870,6 @@ entities: - ShutdownSubscribers: - 11508 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6778 @@ -56399,8 +52881,6 @@ entities: - ShutdownSubscribers: - 8011 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6804 @@ -56408,8 +52888,6 @@ entities: - pos: 26.5,-16.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6927 @@ -56421,8 +52899,6 @@ entities: - ShutdownSubscribers: - 12473 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6951 @@ -56434,8 +52910,6 @@ entities: - ShutdownSubscribers: - 12447 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7469 @@ -56447,8 +52921,6 @@ entities: - ShutdownSubscribers: - 7839 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7801 @@ -56457,8 +52929,6 @@ entities: pos: 49.5,24.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 7838 components: - rot: 1.5707963267948966 rad @@ -56468,8 +52938,6 @@ entities: - ShutdownSubscribers: - 2124 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8009 @@ -56480,8 +52948,6 @@ entities: - ShutdownSubscribers: - 8011 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8016 @@ -56493,8 +52959,6 @@ entities: - ShutdownSubscribers: - 10204 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8220 @@ -56503,8 +52967,6 @@ entities: pos: 9.5,19.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8222 @@ -56515,8 +52977,6 @@ entities: - ShutdownSubscribers: - 8239 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8236 @@ -56527,8 +52987,6 @@ entities: - ShutdownSubscribers: - 12520 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8240 @@ -56536,8 +52994,6 @@ entities: - pos: 26.5,21.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8242 @@ -56545,8 +53001,6 @@ entities: - pos: 22.5,21.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8296 @@ -56558,8 +53012,6 @@ entities: - ShutdownSubscribers: - 12537 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8301 @@ -56568,8 +53020,6 @@ entities: pos: 23.5,41.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8344 @@ -56578,8 +53028,6 @@ entities: pos: 31.5,42.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8575 @@ -56590,8 +53038,6 @@ entities: - ShutdownSubscribers: - 12528 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8596 @@ -56600,8 +53046,6 @@ entities: pos: 43.5,24.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8597 @@ -56613,8 +53057,6 @@ entities: - ShutdownSubscribers: - 12530 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8607 @@ -56622,8 +53064,6 @@ entities: - pos: 39.5,27.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8629 @@ -56634,8 +53074,6 @@ entities: - ShutdownSubscribers: - 12528 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8673 @@ -56643,8 +53081,6 @@ entities: - pos: 40.5,32.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8684 @@ -56655,8 +53091,6 @@ entities: - ShutdownSubscribers: - 12532 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8700 @@ -56679,8 +53113,6 @@ entities: - pos: 32.5,14.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 9558 @@ -56692,8 +53124,6 @@ entities: - ShutdownSubscribers: - 12539 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 9570 @@ -56704,8 +53134,6 @@ entities: - ShutdownSubscribers: - 9587 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 9581 @@ -56713,8 +53141,6 @@ entities: - pos: 18.5,40.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 9582 @@ -56723,8 +53149,6 @@ entities: pos: 14.5,36.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 9635 @@ -56735,8 +53159,6 @@ entities: - ShutdownSubscribers: - 9637 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10163 @@ -56745,8 +53167,6 @@ entities: pos: 7.5,-12.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10170 @@ -56755,8 +53175,6 @@ entities: pos: 1.5,-12.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10171 @@ -56768,8 +53186,6 @@ entities: - ShutdownSubscribers: - 10203 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10172 @@ -56781,8 +53197,6 @@ entities: - ShutdownSubscribers: - 10201 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10173 @@ -56791,8 +53205,6 @@ entities: pos: -1.5,-4.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10178 @@ -56804,8 +53216,6 @@ entities: - ShutdownSubscribers: - 10202 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10214 @@ -56817,8 +53227,6 @@ entities: - ShutdownSubscribers: - 10207 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10248 @@ -56830,8 +53238,6 @@ entities: - ShutdownSubscribers: - 10250 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10331 @@ -56842,8 +53248,6 @@ entities: - ShutdownSubscribers: - 5101 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10346 @@ -56855,8 +53259,6 @@ entities: - ShutdownSubscribers: - 12562 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10347 @@ -56868,8 +53270,6 @@ entities: - ShutdownSubscribers: - 182 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10351 @@ -56881,8 +53281,6 @@ entities: - ShutdownSubscribers: - 12548 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10352 @@ -56894,8 +53292,6 @@ entities: - ShutdownSubscribers: - 1647 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10355 @@ -56907,8 +53303,6 @@ entities: - ShutdownSubscribers: - 10419 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10356 @@ -56920,8 +53314,6 @@ entities: - ShutdownSubscribers: - 2296 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10358 @@ -56933,8 +53325,6 @@ entities: - ShutdownSubscribers: - 151 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10643 @@ -56946,8 +53336,6 @@ entities: - ShutdownSubscribers: - 10653 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11365 @@ -56959,8 +53347,6 @@ entities: - ShutdownSubscribers: - 12504 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11366 @@ -56972,8 +53358,6 @@ entities: - ShutdownSubscribers: - 12163 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11514 @@ -56982,8 +53366,6 @@ entities: pos: 64.5,-1.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11515 @@ -56994,8 +53376,6 @@ entities: - ShutdownSubscribers: - 11730 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11516 @@ -57004,8 +53384,6 @@ entities: pos: 66.5,-10.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11709 @@ -57016,8 +53394,6 @@ entities: - ShutdownSubscribers: - 12503 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11743 @@ -57029,8 +53405,6 @@ entities: - ShutdownSubscribers: - 12488 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11924 @@ -57039,8 +53413,6 @@ entities: pos: 56.5,-5.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11937 @@ -57049,8 +53421,6 @@ entities: pos: 61.5,-10.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11945 @@ -57061,8 +53431,6 @@ entities: - ShutdownSubscribers: - 12152 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11956 @@ -57073,8 +53441,6 @@ entities: - ShutdownSubscribers: - 12506 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - proto: GasVentScrubber @@ -57088,8 +53454,6 @@ entities: - ShutdownSubscribers: - 1017 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 1324 @@ -57098,8 +53462,6 @@ entities: pos: 10.5,-41.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3475 @@ -57107,8 +53469,6 @@ entities: - pos: 79.5,-5.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 3693 components: - rot: -1.5707963267948966 rad @@ -57118,8 +53478,6 @@ entities: - ShutdownSubscribers: - 12484 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4092 @@ -57131,8 +53489,6 @@ entities: - ShutdownSubscribers: - 138 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4183 @@ -57144,8 +53500,6 @@ entities: - ShutdownSubscribers: - 12473 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4447 @@ -57157,8 +53511,6 @@ entities: - ShutdownSubscribers: - 170 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4464 @@ -57167,8 +53519,6 @@ entities: pos: 22.5,-38.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4552 @@ -57179,8 +53529,6 @@ entities: - ShutdownSubscribers: - 11990 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4553 @@ -57189,8 +53537,6 @@ entities: pos: 26.5,-28.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 5679 @@ -57201,8 +53547,6 @@ entities: - ShutdownSubscribers: - 5680 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 5968 @@ -57214,8 +53558,6 @@ entities: - ShutdownSubscribers: - 6158 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6571 @@ -57227,8 +53569,6 @@ entities: - ShutdownSubscribers: - 6682 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6595 @@ -57240,8 +53580,6 @@ entities: - ShutdownSubscribers: - 6632 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6610 @@ -57253,8 +53591,6 @@ entities: - ShutdownSubscribers: - 6632 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6614 @@ -57263,8 +53599,6 @@ entities: pos: 29.5,-10.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6621 @@ -57278,8 +53612,6 @@ entities: - 5077 - 8316 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6622 @@ -57291,8 +53623,6 @@ entities: - ShutdownSubscribers: - 360 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6628 @@ -57304,8 +53634,6 @@ entities: - ShutdownSubscribers: - 11508 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6629 @@ -57314,8 +53642,6 @@ entities: pos: 34.5,-7.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6805 @@ -57323,8 +53649,6 @@ entities: - pos: 26.5,-9.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6949 @@ -57336,8 +53660,6 @@ entities: - ShutdownSubscribers: - 195 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6950 @@ -57349,8 +53671,6 @@ entities: - ShutdownSubscribers: - 12447 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7472 @@ -57362,8 +53682,6 @@ entities: - ShutdownSubscribers: - 7839 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7708 @@ -57375,8 +53693,6 @@ entities: - ShutdownSubscribers: - 8011 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7837 @@ -57388,8 +53704,6 @@ entities: - ShutdownSubscribers: - 2124 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8010 @@ -57401,8 +53715,6 @@ entities: - ShutdownSubscribers: - 8011 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8017 @@ -57414,8 +53726,6 @@ entities: - ShutdownSubscribers: - 10204 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8221 @@ -57424,8 +53734,6 @@ entities: pos: 8.5,17.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8229 @@ -57436,8 +53744,6 @@ entities: - ShutdownSubscribers: - 8239 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8235 @@ -57448,8 +53754,6 @@ entities: - ShutdownSubscribers: - 12520 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8243 @@ -57457,8 +53761,6 @@ entities: - pos: 23.5,22.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8564 @@ -57470,8 +53772,6 @@ entities: - ShutdownSubscribers: - 12528 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8595 @@ -57480,8 +53780,6 @@ entities: pos: 43.5,23.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8598 @@ -57493,8 +53791,6 @@ entities: - ShutdownSubscribers: - 12530 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8610 @@ -57502,8 +53798,6 @@ entities: - pos: 40.5,26.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8630 @@ -57515,8 +53809,6 @@ entities: - ShutdownSubscribers: - 12528 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8674 @@ -57525,8 +53817,6 @@ entities: pos: 40.5,33.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 8685 components: - pos: 41.5,18.5 @@ -57535,8 +53825,6 @@ entities: - ShutdownSubscribers: - 12532 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8810 @@ -57545,8 +53833,6 @@ entities: pos: 26.5,22.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 9359 @@ -57555,8 +53841,6 @@ entities: pos: 30.5,14.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 9546 @@ -57567,8 +53851,6 @@ entities: - ShutdownSubscribers: - 12537 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 9554 @@ -57577,8 +53859,6 @@ entities: pos: 22.5,41.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 9557 @@ -57590,8 +53870,6 @@ entities: - ShutdownSubscribers: - 12539 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 9569 @@ -57603,8 +53881,6 @@ entities: - ShutdownSubscribers: - 9587 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 9636 @@ -57615,8 +53891,6 @@ entities: - ShutdownSubscribers: - 9637 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10128 @@ -57628,8 +53902,6 @@ entities: - ShutdownSubscribers: - 11731 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10179 @@ -57638,8 +53910,6 @@ entities: pos: -0.5,-3.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10180 @@ -57651,8 +53921,6 @@ entities: - ShutdownSubscribers: - 10201 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10181 @@ -57664,8 +53932,6 @@ entities: - ShutdownSubscribers: - 10202 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10182 @@ -57677,8 +53943,6 @@ entities: - ShutdownSubscribers: - 10203 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10215 @@ -57690,8 +53954,6 @@ entities: - ShutdownSubscribers: - 10207 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10217 @@ -57700,8 +53962,6 @@ entities: pos: 29.5,-28.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10249 @@ -57712,8 +53972,6 @@ entities: - ShutdownSubscribers: - 10250 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10365 @@ -57725,8 +53983,6 @@ entities: - ShutdownSubscribers: - 12486 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10366 @@ -57738,8 +53994,6 @@ entities: - ShutdownSubscribers: - 12548 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10375 @@ -57751,8 +54005,6 @@ entities: - ShutdownSubscribers: - 2296 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10400 @@ -57764,8 +54016,6 @@ entities: - ShutdownSubscribers: - 182 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10401 @@ -57777,8 +54027,6 @@ entities: - ShutdownSubscribers: - 12562 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10402 @@ -57790,8 +54038,6 @@ entities: - ShutdownSubscribers: - 5101 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10403 @@ -57802,8 +54048,6 @@ entities: - ShutdownSubscribers: - 151 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10411 @@ -57815,8 +54059,6 @@ entities: - ShutdownSubscribers: - 10419 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10412 @@ -57828,8 +54070,6 @@ entities: - ShutdownSubscribers: - 1647 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10652 @@ -57841,8 +54081,6 @@ entities: - ShutdownSubscribers: - 10653 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11367 @@ -57854,8 +54092,6 @@ entities: - ShutdownSubscribers: - 12163 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11719 @@ -57867,8 +54103,6 @@ entities: - ShutdownSubscribers: - 11730 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11726 @@ -57877,8 +54111,6 @@ entities: pos: 67.5,-1.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11729 @@ -57890,8 +54122,6 @@ entities: - ShutdownSubscribers: - 12503 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11744 @@ -57903,8 +54133,6 @@ entities: - ShutdownSubscribers: - 12488 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11923 @@ -57912,8 +54140,6 @@ entities: - pos: 60.5,-4.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11936 @@ -57922,8 +54148,6 @@ entities: pos: 60.5,-10.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11938 @@ -57934,8 +54158,6 @@ entities: - ShutdownSubscribers: - 12152 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11957 @@ -57946,8 +54168,6 @@ entities: - ShutdownSubscribers: - 12506 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - proto: GasVolumePump @@ -63303,8 +59523,6 @@ entities: - pos: 70.5,15.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - proto: MachineAnomalyVessel entities: - uid: 5380 @@ -65138,8 +61356,6 @@ entities: pos: 44.5,3.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 441 components: - rot: -1.5707963267948966 rad @@ -65162,24 +61378,18 @@ entities: pos: 25.5,-15.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 1473 components: - rot: -1.5707963267948966 rad pos: 32.5,-41.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 1491 components: - rot: 1.5707963267948966 rad pos: 28.5,-41.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 1765 components: - rot: -1.5707963267948966 rad @@ -65374,8 +61584,6 @@ entities: - pos: 51.5,-4.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 5080 components: - pos: 50.5,4.5 @@ -65388,50 +61596,36 @@ entities: - pos: 45.5,-23.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 5128 components: - pos: 45.5,-25.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 5132 components: - pos: 45.5,-27.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 5133 components: - pos: 45.5,-29.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 5134 components: - pos: 45.5,-31.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 5152 components: - pos: 45.5,-33.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 5154 components: - pos: 30.5,2.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 5164 components: - rot: 3.141592653589793 rad @@ -65461,40 +61655,30 @@ entities: - pos: 40.5,-42.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 5218 components: - rot: 3.141592653589793 rad pos: 46.5,-40.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 5219 components: - rot: 3.141592653589793 rad pos: 38.5,-40.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 5220 components: - rot: -1.5707963267948966 rad pos: 43.5,-34.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 5221 components: - rot: -1.5707963267948966 rad pos: 43.5,-22.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 5275 components: - rot: -1.5707963267948966 rad @@ -65724,55 +61908,41 @@ entities: pos: 32.5,-7.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 6652 components: - rot: -1.5707963267948966 rad pos: 39.5,-5.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 6653 components: - rot: 1.5707963267948966 rad pos: 41.5,-5.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 6654 components: - pos: 31.5,-2.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 6657 components: - rot: 1.5707963267948966 rad pos: 33.5,-9.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 6658 components: - rot: -1.5707963267948966 rad pos: 40.5,-11.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 6660 components: - rot: -1.5707963267948966 rad pos: 47.5,-5.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 7034 components: - pos: 4.5,-11.5 @@ -65785,15 +61955,11 @@ entities: - pos: 37.5,1.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 7295 components: - pos: 22.5,1.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 7344 components: - rot: 1.5707963267948966 rad @@ -65832,8 +61998,6 @@ entities: pos: -2.5,-5.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 7527 components: - pos: 50.5,11.5 @@ -65959,8 +62123,6 @@ entities: pos: -16.5,-14.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 7720 components: - rot: 3.141592653589793 rad @@ -65975,24 +62137,18 @@ entities: pos: -8.5,-14.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 7724 components: - rot: 3.141592653589793 rad pos: -21.5,-14.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 7726 components: - rot: -1.5707963267948966 rad pos: -5.5,-10.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 7768 components: - rot: 1.5707963267948966 rad @@ -66071,31 +62227,23 @@ entities: - pos: -6.5,0.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 7958 components: - pos: -0.5,0.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 7959 components: - rot: 1.5707963267948966 rad pos: 3.5,9.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 7960 components: - rot: 1.5707963267948966 rad pos: 3.5,13.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 8129 components: - pos: 37.5,-22.5 @@ -66226,8 +62374,6 @@ entities: pos: 9.5,18.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 9061 components: - rot: 1.5707963267948966 rad @@ -66257,38 +62403,28 @@ entities: pos: 51.5,-8.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 10450 components: - rot: 1.5707963267948966 rad pos: 62.5,27.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 10451 components: - rot: -1.5707963267948966 rad pos: 64.5,22.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 10452 components: - pos: 58.5,27.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 10453 components: - pos: 54.5,27.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 10708 components: - rot: 3.141592653589793 rad @@ -66333,91 +62469,67 @@ entities: pos: 60.5,-10.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 11856 components: - rot: -1.5707963267948966 rad pos: 63.5,-10.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 11857 components: - rot: -1.5707963267948966 rad pos: 62.5,-6.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 11859 components: - pos: 60.5,4.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 11862 components: - pos: 63.5,4.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 11864 components: - pos: 66.5,4.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 11865 components: - rot: 1.5707963267948966 rad pos: 70.5,7.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 11869 components: - pos: 77.5,5.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 11870 components: - pos: 55.5,3.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 11906 components: - rot: -1.5707963267948966 rad pos: 74.5,6.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 12977 components: - rot: 3.141592653589793 rad pos: 40.5,-48.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 12978 components: - rot: 3.141592653589793 rad pos: 35.5,-48.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - proto: PoweredlightExterior entities: - uid: 5606 @@ -66425,23 +62537,17 @@ entities: - pos: 14.5,-44.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 5607 components: - pos: 28.5,-46.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 7836 components: - rot: 1.5707963267948966 rad pos: -3.5,-15.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - proto: PoweredlightSodium entities: - uid: 7961 @@ -66450,8 +62556,6 @@ entities: pos: -17.5,15.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - proto: PoweredSmallLight entities: - uid: 317 @@ -71308,6 +67412,13 @@ entities: - pos: 25.484035,39.437214 parent: 2 type: Transform +- proto: SignCourt + entities: + - uid: 13166 + components: + - pos: 24.5,28.5 + parent: 2 + type: Transform - proto: SignCryogenicsMed entities: - uid: 11804 @@ -71677,6 +67788,13 @@ entities: - pos: 31.49329,27.493366 parent: 2 type: Transform +- proto: SignJanitor + entities: + - uid: 13164 + components: + - pos: 6.5,-2.5 + parent: 2 + type: Transform - proto: SignKiddiePlaque entities: - uid: 12282 @@ -71693,6 +67811,13 @@ entities: pos: 14.5,-43.5 parent: 2 type: Transform +- proto: SignLawyer + entities: + - uid: 13165 + components: + - pos: -4.5,-6.5 + parent: 2 + type: Transform - proto: SignLibrary entities: - uid: 11201 @@ -73674,7 +69799,7 @@ entities: type: Transform - uid: 443 components: - - name: Gravity Substation + - name: Gravity/Bridge Substation type: MetaData - pos: 14.5,35.5 parent: 2 @@ -73683,14 +69808,14 @@ entities: type: PowerNetworkBattery - uid: 2160 components: - - name: Library Substation + - name: Library/Chapel Substation type: MetaData - pos: 14.5,7.5 parent: 2 type: Transform - uid: 4076 components: - - name: Telecomms Sub + - name: Telecomms Substation type: MetaData - pos: 22.5,-14.5 parent: 2 @@ -73713,7 +69838,7 @@ entities: type: Transform - uid: 4431 components: - - name: Solars South West Sub + - name: Solars South West Substation type: MetaData - pos: 4.5,-36.5 parent: 2 @@ -73738,12 +69863,14 @@ entities: type: PowerNetworkBattery - uid: 6199 components: + - name: Medical Substation + type: MetaData - pos: 69.5,-13.5 parent: 2 type: Transform - uid: 6379 components: - - name: Science North West Substation + - name: Science Substation type: MetaData - pos: 50.5,27.5 parent: 2 @@ -73752,7 +69879,7 @@ entities: type: PowerNetworkBattery - uid: 7576 components: - - name: Medical South West Substation + - name: Bar/Chemistry Substation type: MetaData - pos: 52.5,-10.5 parent: 2 diff --git a/Resources/Prototypes/Alerts/revenant.yml b/Resources/Prototypes/Alerts/revenant.yml index a813e7d2e4b..86148e35821 100644 --- a/Resources/Prototypes/Alerts/revenant.yml +++ b/Resources/Prototypes/Alerts/revenant.yml @@ -43,6 +43,6 @@ - type: alert id: Corporeal - icons: [ /Textures/Mobs/Ghosts/revenant.rsi/icon.png ] + icons: [ /Textures/DeltaV/Mobs/Ghosts/revenant.rsi/icon.png ] # DeltaV - Custom revenant sprite name: "Corporeal" - description: You have manifested physically. People around you can see and hurt you. \ No newline at end of file + description: You have manifested physically. People around you can see and hurt you. diff --git a/Resources/Prototypes/Body/Organs/reptilian.yml b/Resources/Prototypes/Body/Organs/reptilian.yml index d7145ee36f2..83139f3eca0 100644 --- a/Resources/Prototypes/Body/Organs/reptilian.yml +++ b/Resources/Prototypes/Body/Organs/reptilian.yml @@ -4,6 +4,11 @@ noSpawn: true components: - type: Stomach + specialDigestible: + tags: + - Fruit + - Meat + - Pill - type: SolutionContainerManager solutions: stomach: diff --git a/Resources/Prototypes/Body/Parts/skeleton.yml b/Resources/Prototypes/Body/Parts/skeleton.yml index 3f41f88ee54..38656ce5cee 100644 --- a/Resources/Prototypes/Body/Parts/skeleton.yml +++ b/Resources/Prototypes/Body/Parts/skeleton.yml @@ -41,6 +41,7 @@ - type: Sprite sprite: Mobs/Species/Skeleton/parts.rsi state: "skull_icon" + scale: 0.5, 0.5 # DeltaV - Scale down sprite because it looks too big - type: Icon sprite: Mobs/Species/Skeleton/parts.rsi state: "skull_icon" diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_medical.yml b/Resources/Prototypes/Catalog/Cargo/cargo_medical.yml index 1dc572e204a..42370eb7d9a 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_medical.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_medical.yml @@ -98,6 +98,16 @@ category: Medical group: market +- type: cargoProduct + id: MedicalMindShieldImplants + icon: + sprite: Objects/Specific/Chemistry/syringe.rsi + state: syringe_base0 + product: CrateMindShieldImplants + cost: 3000 + category: Medical + group: market + - type: cargoProduct id: ChemistryP icon: diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_vending.yml b/Resources/Prototypes/Catalog/Cargo/cargo_vending.yml index ab44c3c6d5b..49e409ead9c 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_vending.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_vending.yml @@ -16,6 +16,17 @@ category: Service group: market +- type: cargoProduct + id: CrateVendingMachineRestockChefvend + name: ChefVend restock crate + icon: + sprite: Objects/Specific/Service/vending_machine_restock.rsi + state: base + product: CrateVendingMachineRestockChefvendFilled + cost: 680 + category: Service + group: market + - type: cargoProduct id: CrateVendingMachineRestockClothes icon: @@ -36,6 +47,17 @@ category: Service group: market +- type: cargoProduct + id: CrateVendingMachineRestockCondimentStation + name: Condiment Station restock crate + icon: + sprite: Objects/Specific/Service/vending_machine_restock.rsi + state: base + product: CrateVendingMachineRestockCondimentStationFilled + cost: 300 + category: Service + group: market + - type: cargoProduct id: CrateVendingMachineRestockEngineering icon: diff --git a/Resources/Prototypes/Catalog/Fills/Crates/medical.yml b/Resources/Prototypes/Catalog/Fills/Crates/medical.yml index 7054186001c..17b91150016 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/medical.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/medical.yml @@ -28,6 +28,15 @@ - id: BoxBottle amount: 2 +- type: entity + id: CrateMindShieldImplants + parent: CrateMedical + components: + - type: StorageFill + contents: + - id: MindShieldImplanter + amount: 3 + - type: entity id: CrateMedicalSurgery parent: CrateSurgery diff --git a/Resources/Prototypes/Catalog/Fills/Crates/service.yml b/Resources/Prototypes/Catalog/Fills/Crates/service.yml index 106a34976f9..2b7c5db0f77 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/service.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/service.yml @@ -100,6 +100,8 @@ amount: 15 - id: Pen amount: 2 + - id: BoxFolderClipboard + amount: 2 - id: HandLabeler - id: BoxFolderBlue - id: BoxFolderRed diff --git a/Resources/Prototypes/Catalog/Fills/Crates/vending.yml b/Resources/Prototypes/Catalog/Fills/Crates/vending.yml index 7cbec7bad7b..85667ef072f 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/vending.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/vending.yml @@ -6,6 +6,15 @@ contents: - id: VendingMachineRestockBooze +- type: entity + id: CrateVendingMachineRestockChefvendFilled + name: ChefVend restock crate + parent: CratePlastic + components: + - type: StorageFill + contents: + - id: VendingMachineRestockChefvend + - type: entity id: CrateVendingMachineRestockClothesFilled parent: CratePlastic @@ -15,6 +24,15 @@ - id: VendingMachineRestockClothes - id: VendingMachineRestockCostumes +- type: entity + id: CrateVendingMachineRestockCondimentStationFilled + name: Condiment Station restock crate + parent: CratePlastic + components: + - type: StorageFill + contents: + - id: VendingMachineRestockCondimentStation + - type: entity id: CrateVendingMachineRestockDinnerwareFilled parent: CratePlastic diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml index 2f246c6cd13..c64ddd78cf4 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml @@ -121,6 +121,7 @@ - id: ClothingBackpackIan prob: 0.5 - id: AccessConfigurator + - id: BookIanDossier # DeltaV - HoP steal objective, see Resources/Prototypes/DeltaV/Entities/Objects/Misc/ian_dossier.yml - type: entity id: LockerChiefEngineerFilledHardsuit diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/security.yml b/Resources/Prototypes/Catalog/Fills/Lockers/security.yml index f127e3708b2..3c1d812b333 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/security.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/security.yml @@ -65,7 +65,8 @@ - id: ClothingHeadHelmetBasic - id: ClothingHeadHelmetInsulated # Nyanotrasen - Insulative headgear prob: 0.4 - - id: ClothingOuterArmorBasic + - id: ClothingOuterArmorPlateCarrier # DeltaV - ClothingOuterArmorBasic replaced in favour of plate carrier and stabproof vest + - id: ClothingOuterArmorDuraVest - id: ClothingBeltSecurityFilled - id: Flash prob: 0.5 diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/service.yml b/Resources/Prototypes/Catalog/Fills/Lockers/service.yml index e86c09de2ae..e75303c8d7e 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/service.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/service.yml @@ -5,7 +5,7 @@ components: - type: StorageFill contents: - - id: ClothingOuterArmorBasicSlim + - id: ClothingOuterArmorDuraVest # DeltaV - ClothingOuterArmorBasicSlim replaced in favour of stabproof vest - id: WeaponShotgunDoubleBarreledRubber - id: DrinkShaker - id: ClothingEyesHudBeer diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/wardrobe_job.yml b/Resources/Prototypes/Catalog/Fills/Lockers/wardrobe_job.yml index d5fe4159326..db81b4577d6 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/wardrobe_job.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/wardrobe_job.yml @@ -160,7 +160,8 @@ - id: ClothingShoesBootsJack - id: ClothingEyesGlassesSecurity - id: ClothingHeadHelmetBasic - - id: ClothingOuterArmorBasic + - id: ClothingOuterArmorPlateCarrier # DeltaV - ClothingOuterArmorBasic replaced in favour of plate carrier and stabproof vest + - id: ClothingOuterArmorDuraVest - id: ClothingUniformJumpskirtSec - type: entity @@ -189,7 +190,7 @@ - id: ClothingBackpack - id: ClothingShoesBootsSalvage amount: 2 - - id: ClothingUniformJumpsuitSalvageExplorer # DeltaV - Salvage better looking uniform, see Resources/Prototypes/DeltaV/Entities/Clothing/Uniform/jumpsuits.yml + - id: ClothingUniformJumpsuitSalvageSpecialist amount: 2 - type: entity diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/bardrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/bardrobe.yml index 1e42faff3e4..539a0a68fee 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/bardrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/bardrobe.yml @@ -11,7 +11,7 @@ ClothingUniformJumpskirtBartender: 2 ClothingUniformJumpsuitBartenderPurple: 2 ClothingShoesColorBlack: 2 - ClothingOuterArmorBasicSlim: 2 + ClothingOuterArmorDuraVest: 2 # DeltaV - ClothingOuterArmorBasicSlim replaced in favour of stabproof vest ClothingOuterVest: 2 ClothingBeltBandolier: 2 ClothingEyesGlassesSunglasses: 2 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml index 554989b5cee..373c8663abc 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml @@ -5,6 +5,7 @@ ClothingBackpackDuffel: 5 ClothingBackpackSatchel: 3 ClothingBackpackSatchelLeather: 2 + ClothingHeadHatBeret: 4 ClothingHeadBandBlack: 2 ClothingHeadBandBlue: 2 ClothingHeadBandGreen: 2 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/dinnerware.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/dinnerware.yml index ccf702b210e..86f35b52696 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/dinnerware.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/dinnerware.yml @@ -3,6 +3,7 @@ startingInventory: ButchCleaver: 1 KitchenKnife: 5 + RollingPin: 4 Spoon: 4 Fork: 4 FoodBowlBig: 10 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/sec.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/sec.yml index c6ce01d127d..b2044179f22 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/sec.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/sec.yml @@ -14,6 +14,9 @@ RiotBulletShield: 2 ClothingHeadHelmetInsulated: 2 # Nyanotrasen - Insulative headgear ClothingHeadCage: 2 # Nyanotrasen - Insulative headgear + ClothingOuterArmorPlateCarrier: 2 # DeltaV - moved body armour from SecDrobe to SecTech + ClothingOuterArmorDuraVest: 2 + ClothingHeadHelmetBasic: 2 # DeltaV - added helmets to the SecTech. Another line of defense between the tide and your grey matter. # security officers need to follow a diet regimen! contrabandInventory: FoodDonutHomer: 12 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml index 59e6d62ac65..04f566b3b0a 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml @@ -17,7 +17,8 @@ ClothingUniformJumpsuitSecBlue: 3 ClothingHeadsetSecurity: 3 ClothingOuterWinterSec: 2 - ClothingOuterArmorBasic: 2 - ClothingOuterArmorBasicSlim: 2 + ClothingOuterCoatGreatcoat: 2 # DeltaV - added greatcoats to SecDrobe. Surplus, reminds the officers of the good times. +## ClothingOuterArmorBasic: 2 # DeltaV - moved body armour from SecDrobe to SecTech +## ClothingOuterArmorBasicSlim: 2 ClothingEyesBlindfold: 1 ClothingShoesBootsCombat: 1 diff --git a/Resources/Prototypes/Damage/modifier_sets.yml b/Resources/Prototypes/Damage/modifier_sets.yml index 17f62030a46..dcd152a0517 100644 --- a/Resources/Prototypes/Damage/modifier_sets.yml +++ b/Resources/Prototypes/Damage/modifier_sets.yml @@ -124,11 +124,8 @@ - type: damageModifierSet id: Scale # Skin tougher, bones weaker, strong stomachs, cold-blooded (kindof) coefficients: - Blunt: 1.1 - Slash: 0.9 - Cold: 1.5 - Heat: 0.9 - Poison: 0.9 + Cold: 1.3 + Heat: 0.7 - type: damageModifierSet id: Diona diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/OuterClothing/armor.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/OuterClothing/armor.yml new file mode 100644 index 00000000000..a57d550ef4b --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Clothing/OuterClothing/armor.yml @@ -0,0 +1,44 @@ +#Basic armor vest replacement +- type: entity + parent: ClothingOuterBaseMedium + id: ClothingOuterArmorPlateCarrier + name: plate carrier + description: A large and bulky carrier featuring steel plates that offer decent protection against gunfire. + components: + - type: Sprite + sprite: DeltaV/Clothing/OuterClothing/Armor/platecarrier.rsi + - type: Clothing + sprite: DeltaV/Clothing/OuterClothing/Armor/platecarrier.rsi + - type: Armor # Good against gunshots, decent against everything else. Balanced by reduced movement speed. + modifiers: + coefficients: + Blunt: 0.80 + Slash: 0.80 + Piercing: 0.50 + Heat: 0.80 + - type: ClothingSpeedModifier + walkModifier: 0.90 + sprintModifier: 0.8 + - type: ExplosionResistance # More protective against explosives than you think. Helps in preventing all those vital organs from jiggling around o.o + damageCoefficient: 0.70 + +#Alternate / slim basic armor vest replacement +- type: entity + parent: ClothingOuterBaseMedium + id: ClothingOuterArmorDuraVest + name: durathread vest + description: A tight-fitting and sturdy armor vest, reinforced with durathread weave to protect against sharp objects and blunt force trauma. + components: + - type: Sprite + sprite: DeltaV/Clothing/OuterClothing/Armor/duravest.rsi + - type: Clothing + sprite: DeltaV/Clothing/OuterClothing/Armor/duravest.rsi + - type: Armor # Good against stabs and knocks, offers minimal protection from gunshots and lasfire. + modifiers: + coefficients: + Blunt: 0.60 + Slash: 0.60 + Piercing: 0.90 + Heat: 0.90 + - type: ExplosionResistance # Better than nothing against a blast or shockwave. + damageCoefficient: 0.90 diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/OuterClothing/coats.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/OuterClothing/coats.yml index 66299a63c74..93b17ad4c37 100644 --- a/Resources/Prototypes/DeltaV/Entities/Clothing/OuterClothing/coats.yml +++ b/Resources/Prototypes/DeltaV/Entities/Clothing/OuterClothing/coats.yml @@ -65,12 +65,12 @@ sprite: DeltaV/Clothing/OuterClothing/Coats/greatcoat.rsi - type: TemperatureProtection coefficient: 0.1 - - type: Armor + - type: Armor # MAKE SURE THE STATS ALIGN WITH SEC WINTER COAT!!! modifiers: coefficients: - Blunt: 0.9 - Slash: 0.9 - Piercing: 0.6 + Blunt: 0.85 + Slash: 0.85 + Piercing: 0.85 Heat: 0.75 - type: entity diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/Uniforms/jumpsuits.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/Uniforms/jumpsuits.yml index d0094e37aa0..eed1db81aaa 100644 --- a/Resources/Prototypes/DeltaV/Entities/Clothing/Uniforms/jumpsuits.yml +++ b/Resources/Prototypes/DeltaV/Entities/Clothing/Uniforms/jumpsuits.yml @@ -184,14 +184,3 @@ sprite: DeltaV/Clothing/Uniforms/Jumpsuit/jeans_brown.rsi - type: Clothing sprite: DeltaV/Clothing/Uniforms/Jumpsuit/jeans_brown.rsi - -- type: entity - parent: ClothingUniformBase - id: ClothingUniformJumpsuitSalvageExplorer - name: salvage specialist's jumpsuit - description: A grey uniform for operating in hazardous environments. It's very dirty. - components: - - type: Sprite - sprite: DeltaV/Clothing/Uniforms/Jumpsuit/explorer.rsi - - type: Clothing - sprite: DeltaV/Clothing/Uniforms/Jumpsuit/explorer.rsi diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Misc/ian_dossier.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Misc/ian_dossier.yml new file mode 100644 index 00000000000..fba4536c7d9 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Misc/ian_dossier.yml @@ -0,0 +1,14 @@ +- type: entity + parent: BaseItem + id: BookIanDossier + name: head of personnel's photobook + description: VERY CONFIDENTIAL. This folder contains various pictures of Ian cherished by the Head of Personnel. + components: + - type: Sprite + sprite: DeltaV/Objects/Misc/bureaucracy.rsi + layers: + - state: folder-hop-ian + - type: Tag + tags: + - Book + - HighRiskItem diff --git a/Resources/Prototypes/DeltaV/Entities/Structures/Wallmounts/paintings.yml b/Resources/Prototypes/DeltaV/Entities/Structures/Wallmounts/paintings.yml new file mode 100644 index 00000000000..af2e3e79ec3 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Structures/Wallmounts/paintings.yml @@ -0,0 +1,19 @@ +- type: entity + parent: PaintingBase + id: PaintingBlunt + name: Blunt Painting + description: A blunt smoking weird-cat thing with a smug look. + components: + - type: Sprite + sprite: DeltaV/Structures/Wallmounts/Paintings/ps3moira.rsi + state: bluntpainting + +- type: entity + parent: PaintingBase + id: PaintingSpoon + name: Spoon Painting + description: The type of painting that really ties together a room. + components: + - type: Sprite + sprite: DeltaV/Structures/Wallmounts/Paintings/leonardodabepis.rsi + state: spoonpainting diff --git a/Resources/Prototypes/DeltaV/Objectives/traitor.yml b/Resources/Prototypes/DeltaV/Objectives/traitor.yml index fbfba136b2c..d974564e3d0 100644 --- a/Resources/Prototypes/DeltaV/Objectives/traitor.yml +++ b/Resources/Prototypes/DeltaV/Objectives/traitor.yml @@ -8,3 +8,14 @@ - type: StealCondition prototype: SpaceCashLuckyBill # owner: job-name-qm + +- type: entity # Head of Personnel steal objective. + noSpawn: true + parent: BaseTraitorStealObjective + id: HoPBookIanDossierStealObjective + components: + - type: NotJobRequirement + job: HeadOfPersonnel + - type: StealCondition + prototype: BookIanDossier + # owner: job-name-hop diff --git a/Resources/Prototypes/DeltaV/Recipes/Lathes/clothing.yml b/Resources/Prototypes/DeltaV/Recipes/Lathes/clothing.yml deleted file mode 100644 index 55c5cb0bd89..00000000000 --- a/Resources/Prototypes/DeltaV/Recipes/Lathes/clothing.yml +++ /dev/null @@ -1,6 +0,0 @@ -- type: latheRecipe - id: ClothingUniformJumpsuitSalvageExplorer - result: ClothingUniformJumpsuitSalvageExplorer - completetime: 4 - materials: - Cloth: 500 #It's armored but I don't want to include durathread for a non-head diff --git a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml index e37306228e3..ddecf376e77 100644 --- a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml +++ b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml @@ -339,7 +339,7 @@ attackRate: 4 damage: types: - Blunt: 7 + Blunt: 8 soundHit: collection: Punch animation: WeaponArcFist diff --git a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml index 1d2f1fb2ce8..ec11ccfffa2 100644 --- a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml +++ b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml @@ -13,6 +13,7 @@ - type: IdentityBlocker - type: Tag tags: + - MonkeyWearable - HamsterWearable - WhitelistChameleon diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml index 6fd41ab6f6c..43ea9eaba66 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml @@ -81,6 +81,13 @@ sprite: Clothing/OuterClothing/WinterCoats/coatcap.rsi - type: ToggleableClothing clothingPrototype: ClothingHeadHatHoodWinterCaptain + - type: Armor # DeltaV - adds resists to coat, same as security winter coat. Still better than nothing, but nowhere as good as a carapace + modifiers: + coefficients: + Blunt: 0.85 + Slash: 0.85 + Piercing: 0.85 + Heat: 0.75 - type: entity parent: ClothingOuterWinterCoatToggleable @@ -392,6 +399,13 @@ sprite: Clothing/OuterClothing/WinterCoats/coatsec.rsi - type: ToggleableClothing clothingPrototype: ClothingHeadHatHoodWinterSec + - type: Armor # DeltaV - adds resists to coat + modifiers: + coefficients: + Blunt: 0.85 + Slash: 0.85 + Piercing: 0.85 # DeltaV - not as resistant as pre-rebase, but still better than nothing + Heat: 0.75 - type: entity parent: ClothingOuterWinterCoatToggleable diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml b/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml index b75a2a712ec..912e4d8594d 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml @@ -25,7 +25,8 @@ whitelist: tags: - Knife - + - Sidearm + - type: entity parent: ClothingShoesBaseButcherable id: ClothingShoesBootsSalvage @@ -64,6 +65,7 @@ whitelist: tags: - Knife + - Sidearm - type: entity parent: ClothingShoesStorageBase @@ -80,6 +82,7 @@ whitelist: tags: - Knife + - Sidearm - type: entity parent: ClothingShoesBaseButcherable diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml index da08036fb05..eb52b3b10c8 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml @@ -93,9 +93,9 @@ description: It's a snappy jumpsuit with a sturdy set of overalls. It's very dirty. components: - type: Sprite - sprite: Clothing/Uniforms/Jumpsuit/salvage.rsi + sprite: DeltaV/Clothing/Uniforms/Jumpsuit/explorer.rsi # DeltaV - Salvage better looking uniform - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/salvage.rsi + sprite: DeltaV/Clothing/Uniforms/Jumpsuit/explorer.rsi # DeltaV - Salvage better looking uniform - type: entity parent: ClothingUniformBase @@ -940,7 +940,7 @@ parent: UnsensoredClothingUniformBase id: ClothingUniformJumpsuitNinja name: ninja jumpsuit - description: A nano-enhanced jumpsuit designed for maximum comfort and tacticality. + description: Comfortable ninja suit, for convenience when relaxing and when you need to practice. components: - type: Sprite sprite: Clothing/Uniforms/Jumpsuit/ninja.rsi diff --git a/Resources/Prototypes/Entities/Effects/chemistry_effects.yml b/Resources/Prototypes/Entities/Effects/chemistry_effects.yml index def26ec8265..10e2f1f7db7 100644 --- a/Resources/Prototypes/Entities/Effects/chemistry_effects.yml +++ b/Resources/Prototypes/Entities/Effects/chemistry_effects.yml @@ -13,12 +13,9 @@ - type: Transform anchored: true - type: Smoke - - type: NodeContainer - nodes: - smoke: - !type:SpreaderNode - nodeGroupID: Spreader + - type: ActiveEdgeSpreader - type: EdgeSpreader + id: Smoke - type: SolutionContainerManager solutions: solutionArea: @@ -64,12 +61,9 @@ layer: - SlipLayer - type: Smoke - - type: NodeContainer - nodes: - smoke: - !type:SpreaderNode - nodeGroupID: Spreader + - type: ActiveEdgeSpreader - type: EdgeSpreader + id: Smoke - type: SolutionContainerManager solutions: solutionArea: diff --git a/Resources/Prototypes/Entities/Effects/puddle.yml b/Resources/Prototypes/Entities/Effects/puddle.yml index 09e10a688bc..090533acb80 100644 --- a/Resources/Prototypes/Entities/Effects/puddle.yml +++ b/Resources/Prototypes/Entities/Effects/puddle.yml @@ -144,13 +144,10 @@ puddle: { maxVol: 1000 } - type: Puddle - type: Appearance + - type: ActiveEdgeSpreader - type: EdgeSpreader + id: Puddle - type: StepTrigger - - type: NodeContainer - nodes: - puddle: - !type:SpreaderNode - nodeGroupID: Spreader - type: Drink delay: 3 transferAmount: 1 diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/anomaly.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/anomaly.yml index a21ce2b13fe..043bf707b4d 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/anomaly.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/anomaly.yml @@ -16,4 +16,6 @@ - AnomalyFlesh - AnomalyBluespace - AnomalyIce + - AnomalyRock + - AnomalyLiquid chance: 1 diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/asteroidcrab.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/asteroidcrab.yml new file mode 100644 index 00000000000..07820e91cde --- /dev/null +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/asteroidcrab.yml @@ -0,0 +1,15 @@ +- type: entity + name: Asteroid Crab Spawner + id: AsteroidCrabSpawner + parent: MarkerBase + components: + - type: Sprite + layers: + - state: red + - sprite: Structures/Decoration/crystal.rsi + state: crystal_cyan + - type: RandomSpawner + prototypes: + - AsteroidRockCrab + - AsteroidRockCrab1 + chance: 1 diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/crystal.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/crystal.yml new file mode 100644 index 00000000000..c90f2d0bf61 --- /dev/null +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/crystal.yml @@ -0,0 +1,19 @@ +- type: entity + name: Crystal Spawner + suffix: 70% + id: CrystalSpawner + parent: MarkerBase + components: + - type: Sprite + layers: + - state: red + - sprite: Structures/Decoration/crystal.rsi + state: crystal_cyan + - type: RandomSpawner + prototypes: + - CrystalGreen + - CrystalPink + - CrystalOrange + - CrystalBlue + - CrystalCyan + chance: 0.7 diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/paintings.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/paintings.yml index fc537d240b2..af1289065ce 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/paintings.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/paintings.yml @@ -26,11 +26,13 @@ - PaintingSleepingGypsy - PaintingRedBlueYellow - PaintingHelloWorld + - PaintingSpoon # DeltaV Painting, see Resources/Prototypes/DeltaV/Entities/Structures/Wallmount/painting.yml chance: 1 rarePrototypes: - PaintingSkeletonBoof - PaintingEmpty - PaintingMoony - PaintingAmogusTriptych - - PaintingMothBigCatch # Nyanotrasen Painting, see Resources/Prototypes/Nyanotrasen/Entities/Structures/Wallmount/Signs/painting.yml + - PaintingMothBigCatch # Nyanotrasen Painting, see Resources/Prototypes/Nyanotrasen/Entities/Structures/Wallmount/painting.yml + - PaintingBlunt # DeltaV Painting, see Resources/Prototypes/DeltaV/Entities/Structures/Wallmount/painting.yml rareChance: 0.01 diff --git a/Resources/Prototypes/Entities/Markers/Spawners/mobs.yml b/Resources/Prototypes/Entities/Markers/Spawners/mobs.yml index b9a68ba5566..3bc1b637ffe 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/mobs.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/mobs.yml @@ -705,3 +705,19 @@ - type: ConditionalSpawner prototypes: - MobPenguin + +- type: entity + name: ore crab spawner + id: SpawnMobOreCrab + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - state: quartzcrab + sprite: Mobs/Elemental/orecrab.rsi + - type: RandomSpawner + prototypes: + - MobUraniumCrab + - MobIronCrab + - MobQuartzCrab diff --git a/Resources/Prototypes/Entities/Markers/Spawners/vending_machine_restock.yml b/Resources/Prototypes/Entities/Markers/Spawners/vending_machine_restock.yml index 6d0e56cf8ed..704b5e432ba 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/vending_machine_restock.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/vending_machine_restock.yml @@ -20,6 +20,7 @@ - VendingMachineRestockRobustSoftdrinks - VendingMachineRestockHotDrinks - VendingMachineRestockHappyHonk + - VendingMachineRestockCondimentStation - type: entity id: SpawnVendingMachineRestockFood @@ -41,6 +42,7 @@ - VendingMachineRestockDonut - VendingMachineRestockGetmoreChocolateCorp - VendingMachineRestockHappyHonk + - VendingMachineRestockCondimentStation - type: entity id: SpawnVendingMachineRestockDrink diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/human_hair.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/human_hair.yml index 106af0d6f52..14e51a84062 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/human_hair.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/human_hair.yml @@ -1125,6 +1125,13 @@ sprites: - sprite: Mobs/Customization/human_hair.rsi state: swept2 +- type: marking + id: HumanHairShoulderLengthOverEye + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: shoulderlengthovereye - type: marking id: HumanHairThinning bodyPart: Hair @@ -1181,6 +1188,13 @@ sprites: - sprite: Mobs/Customization/human_hair.rsi state: twintail +- type: marking + id: HumanHairTwoStrands + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: twostrands - type: marking id: HumanHairUndercut bodyPart: Hair diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/reptilian.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/reptilian.yml index 72da7b1d2a5..c569b71c3cf 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/reptilian.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/reptilian.yml @@ -262,3 +262,12 @@ sprites: - sprite: Mobs/Customization/reptilian_parts.rsi state: horns_bighorn + +- type: marking + id: LizardHornsKoboldEars + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Reptilian] + sprites: + - sprite: Mobs/Customization/reptilian_parts.rsi + state: horns_kobold_ears diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index 9965d0ef486..02259da3d60 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -111,6 +111,14 @@ bloodMaxVolume: 0.1 - type: MobPrice price: 50 + - type: NPCRetaliation + - type: FactionException + - type: NpcFactionMember + factions: + - Passive + - type: HTN + rootTask: + task: SimpleHostileCompound - type: Puller needsHands: true - type: Item # DeltaV - Allow grabbing and storing bees in inventory @@ -570,6 +578,8 @@ states: Alive: Base: goat + Critical: + Base: dead Dead: Base: dead - type: SolutionContainerManager @@ -602,9 +612,12 @@ - Passive - type: Body prototype: AnimalRuminant + - type: NPCRetaliation + attackMemoryLength: 5 + - type: FactionException - type: HTN rootTask: - task: RuminantCompound + task: RuminantHostileCompound # Note that we gotta make this bitch vomit someday when you feed it anthrax or sumthin. Needs to be a small item thief too and aggressive if attacked. - type: entity @@ -681,6 +694,8 @@ states: Alive: Base: crawling + Critical: + Base: dead Dead: Base: dead - type: Butcherable @@ -689,6 +704,20 @@ amount: 4 - type: Bloodstream bloodMaxVolume: 300 + # if you fuck with the gorilla he will harambe you + - type: MeleeWeapon + damage: + types: + Blunt: 20 + animation: WeaponArcFist + - type: NPCRetaliation + - type: FactionException + - type: NpcFactionMember + factions: + - Passive + - type: HTN + rootTask: + task: SimpleHostileCompound - type: Puller - type: entity @@ -770,6 +799,15 @@ soundHit: collection: BoxingHit animation: WeaponArcFist + - type: NPCRetaliation + attackMemoryLength: 10 + - type: FactionException + - type: NpcFactionMember + factions: + - Passive + - type: HTN + rootTask: + task: SimpleHostileCompound - type: entity name: boxing kangaroo @@ -778,9 +816,6 @@ components: - type: Loadout prototypes: [ BoxingKangarooGear ] - - type: HTN - rootTask: - task: SimpleHostileCompound - type: NpcFactionMember factions: - SimpleHostile @@ -867,9 +902,15 @@ - type: MonkeyAccent - type: Puller - type: CanHostGuardian + - type: NPCRetaliation + attackMemoryLength: 10 + - type: FactionException - type: NpcFactionMember factions: - - Passive + - Passive + - type: HTN + rootTask: + task: SimpleHostileCompound - type: GhostRole prob: 0.05 makeSentient: true @@ -886,6 +927,7 @@ clumsySound: path: /Audio/Animals/monkey_scream.ogg - type: IdExaminable + - type: AlwaysRevolutionaryConvertible - type: entity name: guidebook monkey @@ -990,6 +1032,7 @@ - Trash - VimPilot - Mouse + - Meat - type: Respirator damage: types: @@ -1601,7 +1644,19 @@ damage: types: Piercing: 6 - Poison: 6 + - type: SolutionContainerManager + solutions: + melee: + maxVol: 30 + - type: SolutionRegeneration + solution: melee + generated: + reagents: + - ReagentId: Toxin + Quantity: 1 + - type: MeleeChemicalInjector + transferAmount: 0.75 + solution: melee - type: ReplacementAccent accent: xeno - type: InteractionPopup @@ -1678,7 +1733,6 @@ damage: types: Piercing: 8 - Poison: 6 - type: FootstepModifier footstepSoundCollection: collection: FootstepClownFast @@ -1966,7 +2020,7 @@ - type: Bloodstream bloodReagent: DemonsBlood - type: Damageable - damageContainer: Biological + damageContainer: CorporealSpirit # Nyanotrasen - Corporeal Spirit allows Holy water to do damage damageModifierSet: Infernal - type: Temperature heatDamageThreshold: 4000 #They come from hell, so.. @@ -2341,6 +2395,7 @@ - VimPilot - Trash - Hamster + - Meat - type: Respirator damage: types: diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/elemental.yml b/Resources/Prototypes/Entities/Mobs/NPCs/elemental.yml new file mode 100644 index 00000000000..beed7db43ce --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/NPCs/elemental.yml @@ -0,0 +1,437 @@ +- type: entity + save: false + abstract: true + id: MobElementalBase + components: + - type: LagCompensation + - type: Reactive + groups: + Acidic: [Touch] + - type: Clickable + - type: Damageable + damageContainer: Inorganic + - type: InteractionOutline + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 50 + mask: + - MobMask + layer: + - MobLayer + - type: MovementSpeedModifier + baseWalkSpeed : 2 + baseSprintSpeed : 3 + - type: Sprite + noRot: true + drawdepth: Mobs + - type: NpcFactionMember + factions: + - SimpleNeutral + - type: MovedByPressure + - type: Physics + bodyType: KinematicController # Same for all inheritors + - type: StatusEffects + allowed: + - Stun + - KnockedDown + - SlowedDown + - Stutter + - Electrocution + - type: Pullable + - type: Tag + tags: + - DoorBumpOpener + - ShoesRequiredStepTriggerImmune + - type: MobState + allowedStates: + - Alive + - Dead + - type: MobThresholds + thresholds: + 0: Alive + 120: Dead + - type: Stamina + critThreshold: 120 + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 100 + behaviors: + - !type:TriggerBehavior + - trigger: + !type:DamageTrigger + damage: 120 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - type: Input + context: "human" + - type: InputMover + - type: MobMover + - type: ZombieImmune + +- type: entity + parent: MobElementalBase + id: MobQuartzCrab + name: quartz crab + description: An ore crab made from quartz. + components: + - type: Sprite + sprite: Mobs/Elemental/orecrab.rsi + state: quartzcrab + - type: HTN + rootTask: + task: SimpleHostileCompound + - type: MeleeWeapon + hidden: true + soundHit: + path: /Audio/Weapons/Xeno/alien_claw_flesh3.ogg + damage: + types: + Piercing: 12 + - type: CombatMode + - type: NpcFactionMember + factions: + - SimpleHostile + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 40 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: GlassBreak + - !type:SpawnEntitiesBehavior + spawn: + SpaceQuartz: + min: 4 + max: 6 + - !type:DoActsBehavior + acts: [ "Destruction" ] + +- type: entity + parent: MobElementalBase + id: MobIronCrab + name: ore crab + description: An ore crab made from iron. + components: + - type: Sprite + sprite: Mobs/Elemental/orecrab.rsi + state: ironcrab + - type: HTN + rootTask: + task: SimpleHostileCompound + - type: MeleeWeapon + hidden: true + soundHit: + path: /Audio/Weapons/Xeno/alien_claw_flesh3.ogg + damage: + types: + Blunt: 8 + - type: CombatMode + - type: MovementSpeedModifier + baseWalkSpeed : 1.5 + baseSprintSpeed : 2 + - type: NpcFactionMember + factions: + - SimpleHostile + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 80 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: GlassBreak + - !type:SpawnEntitiesBehavior + spawn: + SteelOre1: + min: 4 + max: 6 + - !type:DoActsBehavior + acts: [ "Destruction" ] + +- type: entity + parent: MobElementalBase + id: MobUraniumCrab + name: ore crab + description: An ore crab made from uranium. + components: + - type: Sprite + sprite: Mobs/Elemental/orecrab.rsi + state: uraniumcrab + - type: HTN + rootTask: + task: IdleCompound + - type: MeleeWeapon + hidden: true + soundHit: + path: /Audio/Weapons/Xeno/alien_claw_flesh3.ogg + damage: + types: + Blunt: 8 + - type: CombatMode + - type: MovementSpeedModifier + baseWalkSpeed : 2 + baseSprintSpeed : 2.5 + - type: NpcFactionMember + factions: + - SimpleHostile + - type: RadiationSource + intensity: 0.3 + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 80 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: GlassBreak + - !type:SpawnEntitiesBehavior + spawn: + UraniumOre1: + min: 4 + max: 6 + - !type:DoActsBehavior + acts: [ "Destruction" ] + - type: PointLight + radius: 2 + energy: 3 + color: "#06DF24" + +- type: entity + name: Reagent slime + id: ReagentSlime + suffix: Water + parent: MobAdultSlimes + description: It consists of a liquid, and it wants to dissolve you in itself. + components: + - type: NpcFactionMember + factions: + - SimpleHostile + - type: Sprite + drawdepth: Mobs + sprite: Mobs/Aliens/elemental.rsi + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: alive + color: "#75b1f0" + - type: PointLight + radius: 2.0 + energy: 3.5 + color: "#75b1f0" # Edited through the LiquidAnomalySystem + - type: MobState + allowedStates: + - Alive + - Dead + - type: MobThresholds + thresholds: + 0: Alive + 150: Dead + - type: SlowOnDamage + speedModifierThresholds: + 50: 0.4 + - type: Bloodstream + bloodReagent: Water + chemicalMaxVolume: 100 + - type: StatusEffects + allowed: + - SlowedDown + - Electrocution + - type: MeleeWeapon + soundHit: + collection: AlienClaw + animation: WeaponArcBite + damage: + types: + Slash: 15 + - type: MeleeChemicalInjector + solution: bloodstream + transferAmount: 5 + - type: DamageStateVisuals + rotate: true + states: + Alive: + Base: alive + Dead: + Base: dead + - type: Tag + tags: + - FootstepSound + - CannotSuicide + - DoorBumpOpener + - type: NoSlip + - type: ZombieImmune + - type: ExaminableSolution + solution: bloodstream + - type: InjectableSolution + solution: bloodstream + - type: DrainableSolution + solution: bloodstream + +- type: entity + name: Reagent Slime Spawner + id: ReagentSlimeSpawner + parent: MarkerBase + components: + - type: Sprite + layers: + - state: red + - sprite: Mobs/Aliens/elemental.rsi + state: alive + - type: RandomSpawner + prototypes: + - ReagentSlime + - ReagentSlimeBeer + - ReagentSlimePax + - ReagentSlimeNocturine + - ReagentSlimeTHC + - ReagentSlimeBicaridine + - ReagentSlimeToxin + - ReagentSlimeNapalm + - ReagentSlimeOmnizine + chance: 1 + +- type: entity + id: ReagentSlimeBeer + parent: ReagentSlime + suffix: Beer + components: + - type: Bloodstream + bloodReagent: Beer + - type: PointLight + color: "#cfa85f" + - type: Sprite + drawdepth: Mobs + sprite: Mobs/Aliens/elemental.rsi + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: alive + color: "#cfa85f" + +- type: entity + id: ReagentSlimePax + parent: ReagentSlime + suffix: Pax + components: + - type: Bloodstream + bloodReagent: Pax + - type: PointLight + color: "#AAAAAA" + - type: Sprite + drawdepth: Mobs + sprite: Mobs/Aliens/elemental.rsi + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: alive + color: "#AAAAAA" + +- type: entity + id: ReagentSlimeNocturine + parent: ReagentSlime + suffix: Nocturine + components: + - type: Bloodstream + bloodReagent: Nocturine + - type: PointLight + color: "#128e80" + - type: Sprite + drawdepth: Mobs + sprite: Mobs/Aliens/elemental.rsi + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: alive + color: "#128e80" + +- type: entity + id: ReagentSlimeTHC + parent: ReagentSlime + suffix: THC + components: + - type: Bloodstream + bloodReagent: THC + - type: PointLight + color: "#808080" + - type: Sprite + drawdepth: Mobs + sprite: Mobs/Aliens/elemental.rsi + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: alive + color: "#808080" + +- type: entity + id: ReagentSlimeBicaridine + parent: ReagentSlime + suffix: Bicaridine + components: + - type: Bloodstream + bloodReagent: Bicaridine + - type: PointLight + color: "#ffaa00" + - type: Sprite + drawdepth: Mobs + sprite: Mobs/Aliens/elemental.rsi + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: alive + color: "#ffaa00" + +- type: entity + id: ReagentSlimeToxin + parent: ReagentSlime + suffix: Toxin + components: + - type: Bloodstream + bloodReagent: Toxin + - type: PointLight + color: "#cf3600" + - type: Sprite + drawdepth: Mobs + sprite: Mobs/Aliens/elemental.rsi + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: alive + color: "#cf3600" + +- type: entity + id: ReagentSlimeNapalm + parent: ReagentSlime + suffix: Napalm + components: + - type: Bloodstream + bloodReagent: Napalm + - type: PointLight + color: "#FA00AF" + - type: Sprite + drawdepth: Mobs + sprite: Mobs/Aliens/elemental.rsi + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: alive + color: "#FA00AF" + +- type: entity + id: ReagentSlimeOmnizine + parent: ReagentSlime + suffix: Omnizine + components: + - type: Bloodstream + bloodReagent: Omnizine + - type: PointLight + color: "#fcf7f9" + - type: Sprite + drawdepth: Mobs + sprite: Mobs/Aliens/elemental.rsi + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: alive + color: "#fcf7f9" \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml b/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml index 866e15735fe..db739cc3122 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml @@ -14,9 +14,12 @@ - type: Sprite noRot: true drawdepth: Ghosts - sprite: Mobs/Ghosts/revenant.rsi + sprite: DeltaV/Mobs/Ghosts/revenant.rsi # DeltaV - Custom revenant sprite layers: - state: active + - type: Reactive # Nyanotrasen - Holy Water affects Revenants + groups: + Acidic: [Touch] - type: Clickable - type: StatusEffects allowed: @@ -35,8 +38,9 @@ mask: - GhostImpassable - type: MovementIgnoreGravity - - type: Damageable - damageContainer: Biological + - type: Damageable # Nyanotrasen - Corporeal Spirit allows Holy water to do damage + damageContainer: CorporealSpirit + damageModifierSet: CorporealSpirit - type: Examiner - type: NoSlip - type: Actions diff --git a/Resources/Prototypes/Entities/Mobs/Player/familiars.yml b/Resources/Prototypes/Entities/Mobs/Player/familiars.yml index f6d14bf5ec1..38d0b606d19 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/familiars.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/familiars.yml @@ -23,6 +23,9 @@ - type: Access tags: - Chapel + - type: Damageable # Nyanotrasen - Corporeal Spirit allows Holy water to do damage + damageContainer: CorporealSpirit + damageModifierSet: CorporealSpirit - type: MindContainer showExamineInfo: true - type: NpcFactionMember diff --git a/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml b/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml index 4d07970947b..fa78f426ce8 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml @@ -8,7 +8,6 @@ - type: Body prototype: Arachnid requiredLegs: 2 # It would be funny if arachnids could use their little back limbs to move around once they lose their legs, but just something to consider post-woundmed - - type: Perishable - type: HumanoidAppearance species: Arachnid - type: Hunger @@ -36,6 +35,7 @@ productionLength: 3 entityProduced: MaterialWebSilk1 hungerCost: 9 # Should total to 12 total silk on full hunger + - type: Perishable - type: Butcherable butcheringType: Spike spawned: diff --git a/Resources/Prototypes/Entities/Mobs/Species/base.yml b/Resources/Prototypes/Entities/Mobs/Species/base.yml index c46fd50d269..bf8ae1aeed4 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/base.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/base.yml @@ -239,6 +239,15 @@ damage: types: Blunt: 0.55 #per second, scales with pressure and other constants. + - type: PassiveDamage # Slight passive regen. Assuming one damage type, comes out to about 4 damage a minute. + allowedStates: + - Alive + damageCap: 20 + damage: + types: + Heat: -0.07 + groups: + Brute: -0.07 # Organs - type: StatusEffects allowed: @@ -278,7 +287,6 @@ shiveringHeatRegulation: 2000 normalBodyTemperature: 310.15 thermalRegulationTemperatureThreshold: 25 - - type: Perishable - type: Butcherable butcheringType: Spike # TODO human. spawned: diff --git a/Resources/Prototypes/Entities/Mobs/Species/diona.yml b/Resources/Prototypes/Entities/Mobs/Species/diona.yml index d7366ae3b08..0e34ae0ff59 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/diona.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/diona.yml @@ -28,6 +28,7 @@ Brute: sprite: Mobs/Effects/brute_damage.rsi color: "#75b1f0" + - type: Perishable - type: Butcherable butcheringType: Spike spawned: diff --git a/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml b/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml index 47f9f8be9d7..70e75e54835 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml @@ -28,6 +28,7 @@ - type: Body prototype: Dwarf requiredLegs: 2 + - type: Perishable - type: Butcherable butcheringType: Spike spawned: @@ -55,7 +56,6 @@ accent: dwarf - type: Speech speechSounds: Bass - - type: Perishable - type: entity parent: BaseSpeciesDummy diff --git a/Resources/Prototypes/Entities/Mobs/Species/moth.yml b/Resources/Prototypes/Entities/Mobs/Species/moth.yml index ce757b0fb4b..0e144b3bf33 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/moth.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/moth.yml @@ -26,6 +26,7 @@ speechVerb: Moth - type: TypingIndicator proto: moth + - type: Perishable - type: Butcherable butcheringType: Spike spawned: diff --git a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml index 58824629cb3..43b2932fe23 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml @@ -10,7 +10,10 @@ - type: Hunger starvationDamage: types: - Cold: 1 + Cold: 0.5 + Bloodloss: 0.5 + - type: Puller + needsHands: false - type: Thirst - type: Icon sprite: Mobs/Species/Reptilian/parts.rsi @@ -18,6 +21,7 @@ - type: Body prototype: Reptilian requiredLegs: 2 + - type: Perishable - type: Butcherable butcheringType: Spike spawned: @@ -48,17 +52,16 @@ heatDamageThreshold: 400 coldDamageThreshold: 285 currentTemperature: 310.15 - specificHeat: 46 + specificHeat: 42 coldDamage: types: - Cold : 0.2 #per second, scales with temperature & other constants + Cold : 0.1 #per second, scales with temperature & other constants heatDamage: types: Heat : 0.1 #per second, scales with temperature & other constants - type: MovementSpeedModifier - baseWalkSpeed : 2.7 + baseWalkSpeed : 2.5 baseSprintSpeed : 4.5 - - type: Perishable - type: entity parent: BaseSpeciesDummy diff --git a/Resources/Prototypes/Entities/Mobs/Species/vox.yml b/Resources/Prototypes/Entities/Mobs/Species/vox.yml index 17dd70ada6b..b6c5edf7519 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/vox.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/vox.yml @@ -97,6 +97,7 @@ - type: Inventory speciesId: vox - type: InventorySlots + - type: Perishable - type: Butcherable butcheringType: Spike spawned: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles.yml index bd817568162..2fa487fa2ce 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles.yml @@ -39,6 +39,10 @@ max: 1 - !type:DoActsBehavior acts: [ "Destruction" ] + - type: Tool + qualities: + - Rolling + speed: 0.75 # not as good as a rolling pin but does the job - type: TrashOnEmpty solution: drink diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml index a68aba3d6e3..118b2421367 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml @@ -48,6 +48,10 @@ damage: types: Blunt: 0 + - type: Tool + qualities: + - Rolling + speed: 0.25 # its small so takes longer to roll the entire dough flat - type: ItemCooldown - type: SpaceGarbage - type: TrashOnEmpty diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bread.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bread.yml index 4b49bd1c403..68480db171a 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bread.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bread.yml @@ -92,6 +92,10 @@ - state: banana - type: SliceableFood slice: FoodBreadBananaSlice + - type: Tag + tags: + - Fruit + - Bread # Tastes like bread, banana, nut. - type: entity @@ -108,6 +112,9 @@ - type: Sprite layers: - state: banana-slice + - type: Tag + tags: + - Fruit - type: entity name: cornbread @@ -234,6 +241,10 @@ Quantity: 30 - ReagentId: Vitamin Quantity: 5 + - type: Tag + tags: + - Meat + - Bread # Tastes like bread, meat. - type: entity @@ -259,6 +270,9 @@ Quantity: 6 - ReagentId: Vitamin Quantity: 1.2 + - type: Tag + tags: + - Meat - type: entity name: mimana bread @@ -370,6 +384,10 @@ Quantity: 5 - ReagentId: Protein Quantity: 5 + - type: Tag + tags: + - Meat + - Bread - type: entity name: sausage bread slice @@ -396,6 +414,9 @@ Quantity: 1 - ReagentId: Protein Quantity: 1 + - type: Tag + tags: + - Meat - type: entity name: spider meat bread @@ -424,6 +445,10 @@ Quantity: 5 - ReagentId: Toxin Quantity: 15 + - type: Tag + tags: + - Meat + - Bread # Tastes like bread, cobwebs. - type: entity @@ -451,6 +476,9 @@ Quantity: 1.2 - ReagentId: Toxin Quantity: 3 + - type: Tag + tags: + - Meat - type: entity name: tofu bread @@ -528,6 +556,10 @@ Quantity: 30 - ReagentId: Vitamin Quantity: 5 + - type: Tag + tags: + - Meat + - Bread # Tastes like bread, acid. - type: entity @@ -553,6 +585,9 @@ Quantity: 6 - ReagentId: Vitamin Quantity: 1.2 + - type: Tag + tags: + - Meat # Other than bread/slices diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/cake.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/cake.yml index 4027e0d086e..09f5ce27ff5 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/cake.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/cake.yml @@ -296,6 +296,9 @@ state: apple - type: SliceableFood slice: FoodCakeAppleSlice + - type: Tag + tags: + - Fruit - type: entity name: slice of apple cake @@ -305,6 +308,9 @@ components: - type: Sprite state: apple-slice + - type: Tag + tags: + - Fruit # Tastes like sweetness, cake, slime. - type: entity @@ -347,6 +353,9 @@ Quantity: 32 - ReagentId: Vitamin Quantity: 11 + - type: Tag + tags: + - Fruit - type: entity name: slice of pumpkin-spice cake @@ -365,6 +374,9 @@ Quantity: 6.4 - ReagentId: Vitamin Quantity: 2.2 + - type: Tag + tags: + - Fruit # Tastes like sweetness, cake, pumpkin. - type: entity diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/donkpocket.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/donkpocket.yml index 23278bf5dc5..0564524e9af 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/donkpocket.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/donkpocket.yml @@ -20,6 +20,7 @@ - type: Tag tags: - DonkPocket + - Meat # Donkpocket diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/donut.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/donut.yml index fc06c786691..bd007d87cbd 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/donut.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/donut.yml @@ -106,6 +106,9 @@ - meaty - type: Sprite state: meat + - type: Tag + tags: + - Meat # Tastes like meat. - type: entity @@ -303,6 +306,9 @@ Quantity: 3 - ReagentId: Vitamin Quantity: 1 + - type: Tag + tags: + - Fruit # Tastes like jelly-donut, green apples. - type: entity @@ -362,6 +368,9 @@ Quantity: 3 - ReagentId: Vitamin Quantity: 1 + - type: Tag + tags: + - Fruit # Tastes like jelly-donut, blumpkin. - type: entity @@ -381,6 +390,9 @@ Quantity: 3 - ReagentId: Vitamin Quantity: 1 + - type: Tag + tags: + - Fruit # Apparently this is a fruit. Huh. # Tastes like jelly-donut, tropical sweetness. - type: entity diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml index c4b8d75004c..54fc4d6553c 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml @@ -37,6 +37,9 @@ components: - type: Sprite state: muffin-berry + - type: Tag + tags: + - Fruit - type: entity name: cherry muffin @@ -46,6 +49,9 @@ components: - type: Sprite state: muffin-cherry + - type: Tag + tags: + - Fruit - type: entity name: bluecherry muffin @@ -55,6 +61,9 @@ components: - type: Sprite state: muffin-bluecherry + - type: Tag + tags: + - Fruit - type: entity name: honey bun #TODO honey @@ -138,6 +147,9 @@ Quantity: 5 - ReagentId: Vitamin Quantity: 1 + - type: Tag + tags: + - Fruit - type: entity name: sugar cookie @@ -278,6 +290,7 @@ - type: Tag tags: - Pancake + - Fruit - type: entity name: chocolate chip pancake @@ -574,3 +587,27 @@ Quantity: 3 - ReagentId: THC Quantity: 25 + +- type: entity + name: onion rings + parent: FoodBakedBase + id: FoodOnionRings + description: You can eat it or propose to your loved ones. + components: + - type: FlavorProfile + flavors: + - onion + - oily + - type: Sprite + state: onionrings + - type: SolutionContainerManager + solutions: + food: + maxVol: 1 + reagents: + - ReagentId: Nutriment + Quantity: 1 + - ReagentId: Allicin + Quantity: 1 + - ReagentId: Vitamin + Quantity: 1 diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml index 04e109f3117..4ec0434f0e9 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml @@ -64,7 +64,11 @@ - state: apple - type: SliceableFood slice: FoodPieAppleSlice - + - type: Tag + tags: + - Fruit + - Pie + - type: entity name: slice of apple pie parent: FoodPieSliceBase @@ -79,6 +83,10 @@ - state: plain-slice - state: alpha-slice-filling color: orange + - type: Tag + tags: + - Fruit + - Pie # Tastes like pie, apple. - type: entity @@ -143,6 +151,10 @@ path: /Audio/Weapons/Guns/Empty/empty.ogg ejectSound: path: /Audio/Weapons/Guns/Empty/empty.ogg + - type: Tag + tags: + - Fruit + - Pie # Tastes like pie, cream, banana. - type: entity @@ -162,6 +174,10 @@ - state: berryclafoutis - type: SliceableFood slice: FoodPieClafoutisSlice + - type: Tag + tags: + - Fruit + - Pie - type: entity name: slice of berry clafoutis @@ -177,6 +193,10 @@ - state: plain-slice - state: alpha-slice-filling color: pink + - type: Tag + tags: + - Fruit + - Pie # Tastes like pie, blackberries. - type: entity @@ -194,6 +214,10 @@ - state: cherry - type: SliceableFood slice: FoodPieCherrySlice + - type: Tag + tags: + - Fruit + - Pie - type: entity name: slice of cherry pie @@ -208,6 +232,10 @@ - state: plain-slice - state: alpha-slice-filling color: red + - type: Tag + tags: + - Fruit + - Pie # Tastes like pie, cherries. - type: entity @@ -225,6 +253,10 @@ - state: meat - type: SliceableFood slice: FoodPieMeatSlice + - type: Tag + tags: + - Meat + - Pie - type: entity name: slice of meat pie @@ -239,6 +271,10 @@ - state: plain-slice - state: alpha-slice-filling color: brown + - type: Tag + tags: + - Meat + - Pie # Tastes like pie, meat. - type: entity @@ -256,6 +292,10 @@ - state: xeno - type: SliceableFood slice: FoodPieXenoSlice + - type: Tag + tags: + - Meat + - Pie - type: entity name: slice of xeno pie @@ -271,6 +311,10 @@ - state: plain-slice - state: alpha-slice-filling color: green + - type: Tag + tags: + - Meat + - Pie # Tastes like pie, meat, acid. - type: entity @@ -356,6 +400,10 @@ - sweet - type: Sprite state: grape + - type: Tag + tags: + - Fruit + - Pie # Tastes like tart, grape. - type: entity @@ -382,6 +430,10 @@ - apple - type: Sprite state: gapple + - type: Tag + tags: + - Fruit + - Pie # Tastes like tart, apple, expensive metal. - type: entity diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pizza.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pizza.yml index c975aff874f..1f6a307f4e7 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pizza.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pizza.yml @@ -28,6 +28,7 @@ - type: Tag tags: - Pizza + - Fruit # Tomato? idk - type: entity parent: FoodInjectableBase # Not sliceable @@ -56,6 +57,7 @@ - type: Tag tags: - Pizza + - Fruit # Pizza @@ -108,6 +110,10 @@ - state: meat - type: SliceableFood slice: FoodPizzaMeatSlice + - type: Tag + tags: + - Meat + - Pizza - type: entity name: slice of meat pizza @@ -124,6 +130,10 @@ - type: Sprite layers: - state: meat-slice + - type: Tag + tags: + - Meat + - Pizza # Tastes like crust, tomato, cheese, meat. - type: entity @@ -247,6 +257,10 @@ Quantity: 6 - ReagentId: Omnizine Quantity: 9 + - type: Tag + tags: + - Meat + - Pizza - type: entity @@ -272,6 +286,10 @@ Quantity: 1 - ReagentId: Omnizine Quantity: 1.5 + - type: Tag + tags: + - Meat + - Pizza # Tastes like crust, tomato, cheese, meat, laziness. - type: entity @@ -348,6 +366,10 @@ - state: sassysage - type: SliceableFood slice: FoodPizzaSassysageSlice + - type: Tag + tags: + - Meat + - Pizza - type: entity name: slice of sassysage pizza @@ -364,6 +386,10 @@ - type: Sprite layers: - state: sassysage-slice + - type: Tag + tags: + - Meat + - Pizza # Tastes like crust, tomato, cheese, sausage, sass. - type: entity @@ -401,6 +427,10 @@ - type: Sprite layers: - state: pineapple-slice + - type: Tag + tags: + - Meat + - Pizza # Tastes like crust, tomato, cheese, pineapple, ham. #TODO: This is a meme pizza from /tg/. It has specially coded mechanics. @@ -435,6 +465,10 @@ Quantity: 10 - ReagentId: Omnizine Quantity: 30 + - type: Tag + tags: + - Meat + - Pizza - type: entity name: slice of Arnold's pizza @@ -465,6 +499,10 @@ Quantity: 1.6 - ReagentId: Omnizine Quantity: 5 + - type: Tag + tags: + - Meat + - Pizza # Tastes like crust, tomato, cheese, pepperoni, 9 millimeter bullets. #TODO: Make this do poison damage and make cut pizza slices eventually rot into this. diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/tin.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/tin.yml index d7de1d234b0..4e63ca5012e 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/tin.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/tin.yml @@ -1,8 +1,10 @@ # Base +# uses "icon" and "icon-open" states for the main item. +# trash prototypes use "trash" state - type: entity abstract: true - parent: BaseItem + parent: [FoodBase, FoodOpenableBase] id: FoodTinBase name: tin description: A tin of something, sealed tight. @@ -11,8 +13,27 @@ solutions: food: maxVol: 20 - - type: Sprite - sprite: Objects/Consumable/Food/snacks.rsi + reagents: + - ReagentId: Nutriment + Quantity: 15 + - type: Openable + openableByHand: false + sound: + path: /Audio/Items/can_open3.ogg + - type: Destructible + thresholds: + # if tinned food is nuked just delete it, no sound + - trigger: + !type:DamageTrigger + damage: 50 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageTrigger + damage: 6 + behaviors: + - !type:OpenBehavior - type: Item sprite: Objects/Consumable/Food/snacks.rsi heldPrefix: packet @@ -27,9 +48,8 @@ Blunt: 3 - type: Damageable damageContainer: Inorganic - - type: PhysicalComposition - materialComposition: - Steel: 100 + - type: StaticPrice + price: 50 - type: entity abstract: true @@ -39,17 +59,18 @@ description: An empty tin. Could get a bit of metal from this. components: - type: Sprite - sprite: Objects/Consumable/Food/snacks.rsi + state: trash - type: Item sprite: Objects/Consumable/Food/snacks.rsi heldPrefix: packet size: 3 - - type: Tag - tags: - - Trash - type: PhysicalComposition materialComposition: Steel: 100 + - type: Tag + tags: + - Trash + # Tins # Need something that you can open these tins with. I suggest a prying or cutting tool. @@ -61,47 +82,16 @@ description: Just a nice can of ripe peaches swimming in their own juices. components: - type: Sprite - state: peachtin - - type: Destructible - thresholds: - - trigger: - !type:DamageTrigger - damage: 6 - behaviors: - - !type:PlaySoundBehavior - sound: - path: /Audio/Items/can_open3.ogg - - !type:SpawnEntitiesBehavior - spawn: - FoodTinPeachesOpen: - min: 1 - max: 1 - - !type:DoActsBehavior - acts: [ "Destruction" ] - - type: StaticPrice - price: 50 - -- type: entity - parent: FoodTinBase - id: FoodTinPeachesOpen - name: tinned peaches - description: Just a nice can of ripe peaches swimming in their own juices. - components: - - type: Sprite - state: peachtin-open - - type: SolutionContainerManager - solutions: - food: - maxVol: 20 - reagents: - - ReagentId: Nutriment - Quantity: 15 + sprite: Objects/Consumable/Food/Tins/peaches.rsi - type: FlavorProfile flavors: - - sweet - - funny + - sweet + - funny - type: Food trash: FoodTinPeachesTrash + - type: Tag + tags: + - Fruit - type: entity parent: FoodTinBaseTrash @@ -109,51 +99,31 @@ name: tinned peaches components: - type: Sprite - state: peachtin-empty + sprite: Objects/Consumable/Food/Tins/peaches.rsi +# slightly run down texture and different name - type: entity - parent: FoodTinBase + parent: FoodTinPeaches id: FoodTinPeachesMaint name: Maintenance Peaches - description: Just a nice can of ripe peaches swimming in their own juices. components: - type: Sprite - state: peachtinmaint - - type: Destructible - thresholds: - - trigger: - !type:DamageTrigger - damage: 6 - behaviors: - - !type:PlaySoundBehavior - sound: - path: /Audio/Items/can_open3.ogg - - !type:SpawnEntitiesBehavior - spawn: - FoodTinPeachesMaintOpen: - min: 1 - max: 1 - - !type:DoActsBehavior - acts: [ "Destruction" ] - - type: StaticPrice - price: 50 + sprite: Objects/Consumable/Food/Tins/maint_peaches.rsi + - type: Food + trash: FoodTinPeachesMaintTrash +# only exists for backwards compatibility with a few maps, nothing else uses it - type: entity - parent: FoodTinBase + parent: FoodTinPeachesMaint id: FoodTinPeachesMaintOpen - name: Maintenance Peaches - description: Just a nice can of ripe peaches swimming in their own juices. + suffix: Open components: - type: Sprite - state: peachtinmaint-open - - type: SolutionContainerManager - solutions: - food: - reagents: - - ReagentId: Nutriment - Quantity: 15 - - type: Food - trash: FoodTinPeachesMaintTrash + layers: + - state: icon-open + map: ["icon"] + - type: Openable + opened: true - type: entity parent: FoodTinBaseTrash @@ -161,7 +131,7 @@ name: Maintenance Peaches components: - type: Sprite - state: peachtinmaint-empty + sprite: Objects/Consumable/Food/Tins/maint_peaches.rsi - type: entity parent: FoodTinBase @@ -170,45 +140,12 @@ description: Musical fruit in a slightly less musical container. components: - type: Sprite - state: beans - - type: Destructible - thresholds: - - trigger: - !type:DamageTrigger - damage: 6 - behaviors: - - !type:PlaySoundBehavior - sound: - path: /Audio/Items/can_open3.ogg - - !type:SpawnEntitiesBehavior - spawn: - FoodTinBeansOpen: - min: 1 - max: 1 - - !type:DoActsBehavior - acts: [ "Destruction" ] - - type: StaticPrice - price: 50 - -- type: entity - parent: FoodTinBase - id: FoodTinBeansOpen - name: tin of beans - description: Musical fruit in a slightly less musical container. - components: - - type: Sprite - state: beans-open - - type: SolutionContainerManager - solutions: - food: - reagents: - - ReagentId: Nutriment - Quantity: 15 + sprite: Objects/Consumable/Food/Tins/beans.rsi - type: FlavorProfile flavors: - - savory - - salty - - cheap + - savory + - salty + - cheap - type: Food trash: FoodTinBeansTrash @@ -218,7 +155,8 @@ name: tin of beans components: - type: Sprite - state: beans-empty + sprite: Objects/Consumable/Food/Tins/beans.rsi + # MRE can - type: entity @@ -228,53 +166,20 @@ description: A standard issue tin of meat with a convenient pull tab. components: - type: Sprite - sprite: Objects/Consumable/Food/mre.rsi - state: tin-closed - - type: Destructible - thresholds: - - trigger: - !type:DamageTrigger - damage: 6 - behaviors: - - !type:PlaySoundBehavior - sound: - path: /Audio/Items/can_open3.ogg - - !type:SpawnEntitiesBehavior - spawn: - FoodTinMREOpen: - min: 1 - max: 1 - - !type:DoActsBehavior - acts: [ "Destruction" ] - - type: SpawnItemsOnUse - items: - - id: FoodTinMREOpen - sound: - path: /Audio/Items/can_open3.ogg - - -- type: entity - parent: FoodTinBase - id: FoodTinMREOpen - name: tinned meat - description: A standard issue tin of meat. - components: - - type: Sprite - sprite: Objects/Consumable/Food/mre.rsi - state: tin-open - - type: SolutionContainerManager - solutions: - food: - reagents: - - ReagentId: Nutriment - Quantity: 15 + sprite: Objects/Consumable/Food/Tins/meat.rsi + # the convenient pull tab + - type: Openable + openableByHand: true - type: FlavorProfile flavors: - - meaty - - salty - - cheap + - meaty + - salty + - cheap - type: Food trash: FoodTinMRETrash + - type: Tag + tags: + - Meat - type: entity parent: FoodTinBaseTrash @@ -282,5 +187,4 @@ name: tinned meat components: - type: Sprite - sprite: Objects/Consumable/Food/mre.rsi - state: tin-trash + sprite: Objects/Consumable/Food/Tins/meat.rsi diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/burger.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/burger.yml index d28f1f68d8d..a1d816b32a9 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/burger.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/burger.yml @@ -90,6 +90,9 @@ Quantity: 6 - ReagentId: Vitamin Quantity: 6 + - type: Tag + tags: + - Meat # Tastes like bun, grass. - type: entity @@ -113,6 +116,9 @@ Quantity: 19 - ReagentId: Vitamin Quantity: 5 + - type: Tag + tags: + - Meat # Tastes like bun, bacon. - type: entity @@ -138,6 +144,9 @@ Quantity: 5 - ReagentId: Vitamin Quantity: 2 + - type: Tag + tags: + - Meat - type: entity name: bearger @@ -162,6 +171,9 @@ Quantity: 6 - ReagentId: Vitamin Quantity: 5 + - type: Tag + tags: + - Meat - type: entity name: big bite burger @@ -185,6 +197,9 @@ Quantity: 9 - type: Sprite state: bigbite + - type: Tag + tags: + - Meat # Tastes like bun, silver, magic. - type: entity @@ -210,6 +225,9 @@ Quantity: 6 - ReagentId: Vitamin Quantity: 5 + - type: Tag + tags: + - Meat # Tastes like bun, brains. - type: entity @@ -236,6 +254,9 @@ Quantity: 3 - ReagentId: Vitamin Quantity: 2 + - type: Tag + tags: + - Meat - type: entity name: cheese burger @@ -261,6 +282,9 @@ Quantity: 7 - ReagentId: Protein Quantity: 1 + - type: Tag + tags: + - Meat # TODO: Make this work. # - type: Sprite # state: plate @@ -296,6 +320,9 @@ Quantity: 1 - ReagentId: Mayo Quantity: 3 + - type: Tag + tags: + - Meat # Tastes like bun, chicken. - type: entity @@ -321,6 +348,9 @@ Quantity: 6 - ReagentId: Vitamin Quantity: 6 + - type: Tag + tags: + - Meat - type: entity name: corgi burger #curger... @@ -343,6 +373,9 @@ Quantity: 7 - ReagentId: Vitamin Quantity: 12 + - type: Tag + tags: + - Meat - type: entity name: crab burger @@ -367,6 +400,9 @@ Quantity: 5 - ReagentId: Vitamin Quantity: 4 + - type: Tag + tags: + - Meat - type: entity name: crazy hamburger # Burger for you euro-cucks @@ -395,6 +431,9 @@ Quantity: 3 - ReagentId: Vitamin Quantity: 6 + - type: Tag + tags: + - Meat - type: entity name: duck sandwich # Burger for you sick bastards @@ -419,6 +458,9 @@ Quantity: 7 - ReagentId: Vitamin Quantity: 1 + - type: Tag + tags: + - Meat # Tastes like bun, duck. - type: entity @@ -456,6 +498,9 @@ - fishy - type: Sprite state: fish + - type: Tag + tags: + - Meat # Tastes like bun, fish. - type: entity @@ -510,6 +555,7 @@ - type: Tag tags: - ClothMade + - Meat # Tastes like bun, ectoplasm. - type: entity @@ -535,6 +581,9 @@ Quantity: 6 - ReagentId: Vitamin Quantity: 5 + - type: Tag + tags: + - Meat - type: entity name: McGuffin @@ -559,6 +608,9 @@ Quantity: 7 - ReagentId: Vitamin Quantity: 1 + - type: Tag + tags: + - Meat - type: entity name: McRib @@ -585,6 +637,9 @@ Quantity: 4 - ReagentId: BbqSauce Quantity: 1 + - type: Tag + tags: + - Meat # Tastes like bun, pork patty. - type: entity @@ -637,6 +692,9 @@ Quantity: 6 - ReagentId: Vitamin Quantity: 3 + - type: Tag + tags: + - Meat - type: entity name: rat burger @@ -661,6 +719,9 @@ Quantity: 6 - ReagentId: Vitamin Quantity: 2 + - type: Tag + tags: + - Meat # Tastes like bun, HEAT. - type: entity @@ -685,6 +746,9 @@ Quantity: 5 - ReagentId: SulfuricAcid Quantity: 5 + - type: Tag + tags: + - Meat # Tastes like bun, lettuce, sludge. - type: entity @@ -763,6 +827,9 @@ Quantity: 5 - type: Sprite state: superbite + - type: Tag + tags: + - Meat # Tastes like bun, diabetes. - type: entity @@ -814,6 +881,9 @@ Quantity: 6 - ReagentId: Vitamin Quantity: 5 + - type: Tag + tags: + - Meat # Tastes like bun, acid. # Note: I would put a bunch of colored burgers here as listed in the tg .dm but diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/egg.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/egg.yml index e2ce3dfaa86..4f6d10d98f5 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/egg.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/egg.yml @@ -9,6 +9,7 @@ - type: Tag tags: - Egg + - Meat - type: Food trash: Eggshells - type: Sprite diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/food_base.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/food_base.yml index be65bc29b0d..0d942ebf96c 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/food_base.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/food_base.yml @@ -28,3 +28,22 @@ solution: food - type: RefillableSolution solution: food + +# usable by any food that can be opened +# handles appearance with states "icon" and "icon-open" +- type: entity + id: FoodOpenableBase + abstract: true + components: + - type: Appearance + - type: Sprite + layers: + - state: icon + map: ["icon"] + - type: GenericVisualizer + visuals: + enum.OpenableVisuals.Opened: + icon: + True: {state: "icon-open"} + False: {state: "icon"} + - type: Openable diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/frozen.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/frozen.yml index 2bc327d222e..d48dd88c393 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/frozen.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/frozen.yml @@ -103,6 +103,9 @@ color: red - type: Food trash: FoodFrozenPopsicleTrash + - type: Tag + tags: + - Fruit - type: entity name: jumbo ice-cream @@ -184,6 +187,9 @@ - state: berry - type: Food trash: FoodFrozenSnowconeTrash + - type: Tag + tags: + - Fruit - type: entity name: fruit salad snowcone @@ -197,6 +203,9 @@ - state: fruitsalad - type: Food trash: FoodFrozenSnowconeTrash + - type: Tag + tags: + - Fruit - type: entity name: clowncone diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml index c3b3bba35ba..8ef9bab706a 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml @@ -334,6 +334,9 @@ - type: SliceableFood count: 3 slice: FoodDoughSlice + - type: Construction + graph: Pizza + node: start - type: entity name: dough slice @@ -424,6 +427,9 @@ components: - type: Sprite state: dough-flat + - type: Construction + graph: Pizza + node: flat - type: entity name: pizza bread diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/meals.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/meals.yml index 792e1a3e2c7..595f6ec363e 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/meals.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/meals.yml @@ -195,6 +195,9 @@ Quantity: 6 - ReagentId: Vitamin Quantity: 2 + - type: Tag + tags: + - Fruit # Tastes like eggplant, cheese. - type: entity @@ -222,9 +225,6 @@ - fishy - batter - spicy - - type: Tag - tags: - - CubanCarp - type: Sprite state: cubancarp - type: SolutionContainerManager @@ -236,6 +236,10 @@ Quantity: 6 - ReagentId: CarpoToxin Quantity: 3 + - type: Tag + tags: + - CubanCarp + - Meat # Tastes like fish, batter, hot peppers. - type: entity @@ -259,6 +263,9 @@ Quantity: 6 - ReagentId: Vitamin Quantity: 4 + - type: Tag + tags: + - Meat # Tastes like meat, cabbage. - type: entity @@ -282,6 +289,9 @@ Quantity: 2 - ReagentId: Vitamin Quantity: 5 + - type: Tag + tags: + - Meat # Tastes like meat, salmon. - type: entity @@ -305,6 +315,9 @@ Quantity: 6 - ReagentId: Vitamin Quantity: 1 + - type: Tag + tags: + - Meat # Tastes like meat, butter. - type: entity @@ -330,6 +343,9 @@ Quantity: 10 - ReagentId: BbqSauce Quantity: 10 + - type: Tag + tags: + - Meat # Tastes like meat, smokey sauce. - type: entity @@ -354,6 +370,9 @@ Quantity: 6 - ReagentId: Vitamin Quantity: 4 + - type: Tag + tags: + - Meat # Tastes like eggs, bacon, bun. - type: entity @@ -375,6 +394,9 @@ reagents: - ReagentId: Nutriment Quantity: 9 + - type: Tag + tags: + - Meat # Tastes like egg, cheese. - type: entity @@ -401,6 +423,9 @@ Quantity: 1 - ReagentId: Blackpepper Quantity: 1 + - type: Tag + tags: + - Meat # Tastes like egg, salt, pepper. - type: entity @@ -493,6 +518,9 @@ Quantity: 6 - ReagentId: CarpoToxin Quantity: 15 + - type: Tag + tags: + - Meat # tastes exotic - type: entity @@ -515,6 +543,9 @@ Quantity: 8 - ReagentId: CapsaicinOil Quantity: 6 + - type: Tag + tags: + - Meat # What do Europeans eat instead of enchiladas? 25.4 millimeter-iladas. - type: entity @@ -544,6 +575,9 @@ Quantity: 5 - ReagentId: Kelotane Quantity: 5 + - type: Tag + tags: + - Fruit - type: entity name: taco @@ -559,6 +593,9 @@ - onion - type: Sprite state: taco + - type: Tag + tags: + - Meat - type: entity name: corn in butter @@ -582,4 +619,4 @@ - ReagentId: Nutriment Quantity: 4 - ReagentId: Vitamin - Quantity: 4 \ No newline at end of file + Quantity: 4 diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml index 1c003df38e6..8c0e7e2a1f0 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml @@ -8,7 +8,6 @@ - type: FlavorProfile flavors: - meaty - - type: Food - type: Sprite sprite: Objects/Consumable/Food/meat.rsi - type: Extractable @@ -43,6 +42,7 @@ - type: Tag tags: - Raw + - Meat - type: Perishable # raw meat rots in 5 minutes, get it into the freezer fast rotAfter: 300 @@ -88,6 +88,9 @@ graph: MeatSteak node: start defaultTarget: meat steak + - type: Tag + tags: + - Meat - type: entity name: raw human meat @@ -120,6 +123,7 @@ - type: Tag tags: - Raw + - Meat - type: Sprite state: fish - type: SolutionContainerManager @@ -144,6 +148,7 @@ - type: Tag tags: - Raw + - Meat - type: Sprite state: bacon - type: SolutionContainerManager @@ -178,6 +183,7 @@ graph: BearSteak node: start defaultTarget: filet migrawr + - type: entity name: raw penguin meat @@ -262,6 +268,7 @@ tags: - Raw - HighRiskItem + - Meat - type: Sprite state: corgi - type: SolutionContainerManager @@ -327,6 +334,7 @@ - type: Tag tags: - Raw + - Meat - type: Sprite layers: - state: dragon @@ -403,6 +411,7 @@ - type: Tag tags: - Raw + - Meat - type: Sprite state: rotten - type: SolutionContainerManager @@ -482,6 +491,7 @@ - type: Tag tags: - Raw + - Meat - type: Sprite state: xeno - type: SolutionContainerManager @@ -509,6 +519,7 @@ - type: Tag tags: - Raw + - Meat - type: Sprite state: rouny - type: SolutionContainerManager @@ -543,6 +554,7 @@ - type: Tag tags: - Raw + - Meat - type: Sprite state: salami - type: SliceableFood @@ -561,6 +573,7 @@ - type: Tag tags: - Raw + - Meat - type: Sprite state: clown - type: SliceableFood @@ -575,6 +588,7 @@ - type: Tag tags: - Raw + - Meat - type: Sprite state: meatball @@ -590,18 +604,18 @@ - type: Tag tags: - Raw + - Meat - type: Sprite state: slime # Cooked - type: entity - parent: BaseItem + parent: FoodBase id: MaterialSmileExtract name: smile extract description: It's a real panacea. But at what cost? components: - - type: Food - type: Extractable grindableSolutionName: food - type: FlavorProfile @@ -622,10 +636,11 @@ Quantity: 10 - ReagentId: Iron Quantity: 10 - - type: Item - size: 5 - type: StaticPrice price: 3000 #It has so much Omnizin in it + - type: Tag + tags: + - Meat - type: entity name: steak @@ -636,6 +651,7 @@ - type: Tag tags: - Cooked + - Meat - type: Sprite layers: - state: plain-cooked @@ -663,7 +679,7 @@ - type: Tag tags: - Cooked - - type: Food + - Meat - type: Sprite layers: - state: bacon-cooked @@ -692,7 +708,7 @@ - type: Tag tags: - Cooked - - type: Food + - Meat - type: Sprite layers: - state: product-cooked @@ -720,7 +736,7 @@ - type: Tag tags: - Cooked - - type: Food + - Meat - type: Sprite layers: - state: bird-cooked @@ -748,7 +764,7 @@ - type: Tag tags: - Cooked - - type: Food + - Meat - type: Sprite layers: - state: bird-cooked @@ -776,6 +792,7 @@ - type: Tag tags: - Cooked + - Meat - type: Sprite layers: - state: chicken-fried @@ -804,7 +821,7 @@ - type: Tag tags: - Cooked - - type: Food + - Meat - type: Sprite layers: - state: bird-cooked @@ -835,7 +852,7 @@ - type: Tag tags: - Cooked - - type: Food + - Meat - type: Sprite layers: - state: crab-cooked @@ -860,7 +877,7 @@ - type: Tag tags: - Cooked - - type: Food + - Meat - type: Sprite layers: - state: goliath-cooked @@ -889,6 +906,7 @@ - type: Tag tags: - Cooked + - Meat - type: Sprite layers: - state: rouny-cooked @@ -913,7 +931,7 @@ - type: Tag tags: - Cooked - - type: Food + - Meat - type: Sprite layers: - state: lizard-cooked @@ -941,7 +959,7 @@ - type: Tag tags: - Cooked - - type: Food + - Meat - type: Sprite layers: - state: spiderleg-cooked @@ -963,6 +981,7 @@ - type: Tag tags: - Cooked + - Meat - type: Sprite state: meatball-cooked - type: SolutionContainerManager @@ -988,6 +1007,7 @@ tags: - Raw - Cutlet + - Meat - type: Sprite state: cutlet - type: SolutionContainerManager @@ -1009,6 +1029,7 @@ tags: - Raw - Cutlet + - Meat - type: Sprite layers: - state: cutlet @@ -1033,6 +1054,7 @@ tags: - Raw - Cutlet + - Meat - type: Sprite state: cutlet color: white @@ -1055,6 +1077,7 @@ tags: - Raw - Cutlet + - Meat - type: Sprite state: cutlet color: white @@ -1077,6 +1100,7 @@ tags: - Raw - Cutlet + - Meat - type: Sprite state: cutlet color: white @@ -1099,6 +1123,7 @@ tags: - Raw - Cutlet + - Meat - type: Sprite layers: - state: cutlet @@ -1124,6 +1149,7 @@ tags: - Raw - Cutlet + - Meat - type: Sprite state: spidercutlet - type: SolutionContainerManager @@ -1149,6 +1175,7 @@ tags: - Raw - Cutlet + - Meat - type: Sprite state: xenocutlet - type: SolutionContainerManager @@ -1167,6 +1194,7 @@ - type: Tag tags: - Cutlet + - Meat - type: Sprite state: salami-slice color: red @@ -1181,6 +1209,7 @@ tags: - Raw - Cutlet + - Meat - type: Sprite state: salami-slice - type: SolutionContainerManager @@ -1204,6 +1233,7 @@ tags: - Cooked - Cutlet + - Meat - type: Sprite state: cutlet-cooked - type: SolutionContainerManager @@ -1225,6 +1255,7 @@ tags: - Cooked - Cutlet + - Meat - type: Sprite layers: - state: cutlet-cooked @@ -1249,6 +1280,7 @@ tags: - Cooked - Cutlet + - Meat - type: Sprite state: cutlet-cooked color: white @@ -1271,6 +1303,7 @@ tags: - Cooked - Cutlet + - Meat - type: Sprite state: cutlet-cooked color: white @@ -1293,6 +1326,7 @@ tags: - Cooked - Cutlet + - Meat - type: Sprite state: cutlet-cooked color: white @@ -1315,6 +1349,7 @@ tags: - Cooked - Cutlet + - Meat - type: Sprite layers: - state: cutlet-cooked @@ -1338,6 +1373,7 @@ tags: - Cooked - Cutlet + - Meat - type: Sprite state: spidercutlet-cooked - type: SolutionContainerManager @@ -1359,6 +1395,7 @@ tags: - Cooked - Cutlet + - Meat - type: Sprite state: xenocutlet-cooked - type: SolutionContainerManager diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/noodles.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/noodles.yml index fdad8598bd7..7b9cdb51a23 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/noodles.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/noodles.yml @@ -43,6 +43,9 @@ - tomato - type: Sprite state: tomato + - type: Tag + tags: + - Fruit # Tastes like pasta, tomato. - type: entity @@ -88,6 +91,9 @@ Quantity: 8 - ReagentId: Vitamin Quantity: 4 + - type: Tag + tags: + - Meat # Tastes like pasta, meat. - type: entity diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml index 1e3d42b26b7..62def229dea 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml @@ -219,7 +219,10 @@ reagents: - ReagentId: JuiceBanana Quantity: 10 - + - type: Tag + tags: + - Fruit + - type: entity name: mimana parent: FoodProduceBase @@ -443,6 +446,7 @@ - type: Tag tags: - Lemon + - Fruit - type: entity name: lime @@ -465,6 +469,7 @@ - type: Tag tags: - Lime + - Fruit - type: entity name: orange @@ -484,6 +489,9 @@ reagents: - ReagentId: JuiceOrange Quantity: 10 + - type: Tag + tags: + - Meat - type: entity name: pineapple @@ -517,6 +525,9 @@ - type: SliceableFood count: 5 slice: FoodPineappleSlice + - type: Tag + tags: + - Fruit - type: entity name: potato @@ -596,6 +607,9 @@ solution: food - !type:DoActsBehavior acts: [ "Destruction" ] + - type: Tag + tags: + - Fruit - type: entity name: blue tomato @@ -637,6 +651,9 @@ solution: food - !type:DoActsBehavior acts: [ "Destruction" ] + - type: Tag + tags: + - Fruit - type: entity name: blood tomato @@ -676,6 +693,9 @@ solution: food - !type:DoActsBehavior acts: [ "Destruction" ] + - type: Tag + tags: + - Fruit # Fuck you they're a fruit - type: entity name: eggplant @@ -699,6 +719,9 @@ sprite: Objects/Specific/Hydroponics/eggplant.rsi - type: Produce seedId: eggplant + - type: Tag + tags: + - Fruit - type: entity name: apple @@ -727,6 +750,9 @@ reagents: - ReagentId: JuiceApple Quantity: 10 + - type: Tag + tags: + - Fruit - type: entity name: cocoa pod @@ -757,6 +783,9 @@ - id: FoodCocoaBeans sound: path: /Audio/Effects/packetrip.ogg + - type: Tag + tags: + - Fruit - type: entity name: ear of corn @@ -923,6 +952,9 @@ reagents: - ReagentId: JuicePineapple Quantity: 2 + - type: Tag + tags: + - Fruit - type: entity name: onion slice @@ -1201,6 +1233,7 @@ - type: Tag tags: - Galaxythistle + - Fruit # Probably? - type: entity name: fly amanita @@ -1252,6 +1285,9 @@ seedId: gatfruit - type: Food trash: WeaponRevolverPython + - type: Tag + tags: + - Fruit # It's in the name - type: entity name: rice bushel @@ -1376,6 +1412,9 @@ butcheringType: Knife spawned: - id: ClothingHeadHatWatermelon + - type: Tag + tags: + - Fruit - type: entity name: watermelon slice @@ -1406,6 +1445,9 @@ reagents: - ReagentId: JuiceWatermelon Quantity: 4 + - type: Tag + tags: + - Fruit - type: entity name: grapes @@ -1462,6 +1504,9 @@ reagents: - ReagentId: JuiceBerry Quantity: 10 + - type: Tag + tags: + - Fruit - type: entity name: bungo fruit @@ -1500,6 +1545,7 @@ tags: - Recyclable - Trash + - Fruit - type: SolutionContainerManager solutions: food: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/skewer.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/skewer.yml index 8eea9da2704..0b32de1ce5e 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/skewer.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/skewer.yml @@ -64,6 +64,10 @@ color: green - state: skewer-meat-alpha4 color: brown + - type: Tag + tags: + - Meat + - Fruit - type: entity name: meat kebab @@ -78,6 +82,9 @@ - state: skewer-meat2 - state: skewer-meat3 - state: skewer-meat4 + - type: Tag + tags: + - Meat - type: entity name: human kebab diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml index fc7f1bf8d16..c2274aef6d3 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml @@ -183,6 +183,9 @@ - type: Item - type: Food trash: FoodPacketPistachioTrash + - type: Tag + tags: + - Fruit # Seed of a fruit, you can yell at me - type: entity name: popcorn @@ -216,6 +219,9 @@ - type: Item - type: Food trash: FoodPacketRaisinsTrash + - type: Tag + tags: + - Fruit - type: entity name: bob's semki sunflower seeds @@ -246,6 +252,9 @@ - type: Item - type: Food trash: FoodPacketSusTrash + - type: Tag + tags: + - Meat - type: entity name: syndi-cakes diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/soup.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/soup.yml index 11ae8e80c70..43e3dc9debb 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/soup.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/soup.yml @@ -109,6 +109,10 @@ Quantity: 6 - ReagentId: Omnizine Quantity: 8 + - type: Tag + tags: + - Soup + - Fruit # I don't know what this is but its' a salad so sure - type: entity name: herb salad @@ -133,6 +137,10 @@ Quantity: 8 - ReagentId: Vitamin Quantity: 2 + - type: Tag + tags: + - Fruit + - Soup - type: entity name: valid salad @@ -161,6 +169,11 @@ Quantity: 2 - ReagentId: DoctorsDelight Quantity: 5 + - type: Tag + tags: + - Meat + - Fruit + - Soup - type: entity name: coleslaw @@ -264,6 +277,10 @@ Quantity: 2 - ReagentId: Vitamin Quantity: 4 + - type: Tag + tags: + - Fruit + - Soup - type: entity name: jungle salad @@ -288,6 +305,10 @@ Quantity: 7 - ReagentId: Vitamin Quantity: 4 + - type: Tag + tags: + - Fruit + - Soup - type: entity name: citrus salad @@ -312,6 +333,10 @@ Quantity: 18 - ReagentId: Vitamin Quantity: 15 + - type: Tag + tags: + - Fruit + - Soup - type: entity name: salad of eden @@ -378,6 +403,10 @@ Quantity: 4 - ReagentId: Vitamin Quantity: 4 + - type: Tag + tags: + - Meat + - Soup - type: entity name: rice and pork @@ -406,6 +435,10 @@ Quantity: 6.5 - ReagentId: Epinephrine Quantity: 2 + - type: Tag + tags: + - Meat + - Soup - type: entity name: rice pudding @@ -462,6 +495,10 @@ Quantity: 3 - ReagentId: CapsaicinOil Quantity: 2 + - type: Tag + tags: + - Meat + - Soup # Misc @@ -555,6 +592,10 @@ Quantity: 8 - ReagentId: Water Quantity: 10 + - type: Tag + tags: + - Meat + - Soup - type: entity name: slime soup @@ -606,6 +647,10 @@ Quantity: 10 - ReagentId: Blood Quantity: 5 + - type: Tag + tags: + - Fruit + - Soup - type: entity name: wing fang chu @@ -837,6 +882,10 @@ Quantity: 1 - ReagentId: Blackpepper Quantity: 1 + - type: Tag + tags: + - Meat + - Soup - type: entity name: tomato soup @@ -862,6 +911,10 @@ Quantity: 5 - ReagentId: Water Quantity: 10 + - type: Tag + tags: + - Fruit + - Soup - type: entity name: eyeball soup @@ -886,6 +939,10 @@ Quantity: 5 - ReagentId: Vitamin Quantity: 3 + - type: Tag + tags: + - Meat + - Soup - type: entity name: miso soup @@ -914,6 +971,10 @@ Quantity: 3 - ReagentId: Water Quantity: 10 + - type: Tag + tags: + - Meat + - Soup - type: entity name: mushroom soup @@ -1012,6 +1073,11 @@ Quantity: 5 - ReagentId: Vitamin Quantity: 2 + - type: Tag + tags: + - Meat + - Fruit + - Soup - type: entity name: sweet potato soup @@ -1138,4 +1204,8 @@ Quantity: 5 - ReagentId: CapsaicinOil Quantity: 5 + - type: Tag + tags: + - Fruit + - Soup # Tastes like bungo, hot curry. diff --git a/Resources/Prototypes/Entities/Objects/Decoration/flora.yml b/Resources/Prototypes/Entities/Objects/Decoration/flora.yml index 0426e103267..9577cc1c4b1 100644 --- a/Resources/Prototypes/Entities/Objects/Decoration/flora.yml +++ b/Resources/Prototypes/Entities/Objects/Decoration/flora.yml @@ -5,6 +5,7 @@ components: - type: Clickable - type: Sprite + noRot: true sprite: Objects/Decoration/Flora/flora_rockssolid.rsi - type: Physics bodyType: Static @@ -41,6 +42,7 @@ - type: SpriteFade - type: Clickable - type: Sprite + noRot: true sprite: Objects/Decoration/Flora/flora_trees.rsi drawdepth: Overdoors offset: 0,0.9 diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml index d06469c6c89..1819f0450df 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml @@ -811,6 +811,20 @@ recipes: - HotplateMachineCircuitboard +- type: entity + parent: BaseMachineCircuitboard + id: ElectricGrillMachineCircuitboard + name: electric grill machine board + description: A machine printed circuit board for an electric grill. + components: + - type: MachineBoard + prototype: KitchenElectricGrill + requirements: + Capacitor: 4 + materialRequirements: + Glass: 2 + Cable: 5 + - type: entity id: StasisBedMachineCircuitboard parent: BaseMachineCircuitboard diff --git a/Resources/Prototypes/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/Entities/Objects/Fun/toys.yml index 942ff3ee378..95396a33df6 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml @@ -80,7 +80,7 @@ description: So soft it almost makes you want to take a nap... components: - type: Sprite - sprite: Mobs/Ghosts/revenant.rsi + sprite: DeltaV/Mobs/Ghosts/revenant.rsi # DeltaV - Custom revenant sprite state: icon noRot: true - type: Construction @@ -600,6 +600,9 @@ - type: Item sprite: Objects/Fun/toys.rsi heldPrefix: capgun + - type: Tag + tags: + - Sidearm - type: Gun selectedMode: SemiAuto availableModes: diff --git a/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml b/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml index 344d7074439..66ab0ab7fb8 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml @@ -42,6 +42,10 @@ Blunt: 10 soundHit: path: /Audio/Weapons/smash.ogg + - type: Tool + qualities: + - Rolling + speed: 0.5 # its very big, akward to use - type: Appearance - type: GenericVisualizer visuals: diff --git a/Resources/Prototypes/Entities/Objects/Misc/implanters.yml b/Resources/Prototypes/Entities/Objects/Misc/implanters.yml index a3d5fbef397..8cb55e386e7 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/implanters.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/implanters.yml @@ -206,3 +206,13 @@ components: - type: Implanter implant: DeathRattleImplant + +# Security and Command implanters + +- type: entity + id: MindShieldImplanter + name: mind-shield implanter + parent: BaseImplantOnlyImplanter + components: + - type: Implanter + implant: MindShieldImplant diff --git a/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml b/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml index 1ff3ee0fc37..48b0068d941 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml @@ -79,12 +79,9 @@ ignoreWhitelist: components: - IgnoreKudzu + - type: ActiveEdgeSpreader - type: EdgeSpreader - - type: NodeContainer - nodes: - kudzu: - !type:SpreaderNode - nodeGroupID: Spreader + id: Kudzu - type: Food requiredStomachs: 2 # ruminants have 4 stomachs but i dont care to give them literally 4 stomachs. 2 is good delay: 0.5 @@ -186,12 +183,9 @@ - type: GrowingKudzu growthTickChance: 0.3 - type: AtmosExposed + - type: ActiveEdgeSpreader - type: EdgeSpreader - - type: NodeContainer - nodes: - kudzu: - !type:SpreaderNode - nodeGroupID: Spreader + id: Kudzu - type: SlowContacts walkSpeedModifier: 0.3 sprintSpeedModifier: 0.3 diff --git a/Resources/Prototypes/Entities/Objects/Misc/paper.yml b/Resources/Prototypes/Entities/Objects/Misc/paper.yml index 23c1a3038d2..ace8505f544 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/paper.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/paper.yml @@ -435,6 +435,63 @@ color: "#3f3f3f" - state: folder-base +- type: entity + id: BoxFolderClipboard + parent: BoxFolderBase + name: clipboard + description: The weapon of choice for those on the front lines of bureaucracy. + components: + - type: Sprite + sprite: Objects/Misc/clipboard.rsi + layers: + - state: clipboard + - state: clipboard_paper + map: ["clipboard_paper"] + visible: false + - state: clipboard_pen + map: ["clipboard_pen"] + visible: false + - state: clipboard_over + - type: ContainerContainer + containers: + storagebase: !type:Container + ents: [] + pen_slot: !type:ContainerSlot {} + - type: ItemSlots + slots: + pen_slot: + name: Pen + whitelist: + tags: + - Write + insertOnInteract: false + - type: Item + sprite: Objects/Misc/clipboard.rsi + size: 10 + - type: Clothing + slots: [belt] + quickEquip: false + sprite: Objects/Misc/clipboard.rsi + - type: Storage + capacity: 20 + whitelist: + tags: + - Document + - type: ItemMapper + mapLayers: + clipboard_paper: + whitelist: + tags: + - Document + clipboard_pen: + whitelist: + tags: + - Write + - type: MeleeWeapon + damage: + types: + Blunt: 6 + # Stamps - type: entity name: generic rubber stamp diff --git a/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml b/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml index 772dd45029d..6632010a79b 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml @@ -256,3 +256,17 @@ - Dead - type: Rattle +# Sec and Command implants + +- type: entity + parent: BaseSubdermalImplant + id: MindShieldImplant + name: mind-shield implant + description: This implant will ensure loyalty to Nanotrasen and prevent mind control devices. + noSpawn: true + components: + - type: SubdermalImplant + permanent: true + - type: Tag + tags: + - MindShield diff --git a/Resources/Prototypes/Entities/Objects/Specific/Chapel/bibles.yml b/Resources/Prototypes/Entities/Objects/Specific/Chapel/bibles.yml index 19414d09973..662234ff129 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Chapel/bibles.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Chapel/bibles.yml @@ -42,6 +42,11 @@ interfaces: - key: enum.StorageUiKey.Key type: StorageBoundUserInterface + - type: MeleeWeapon # Nyanotrasen - Bibles do Holy damage + damage: + types: + Blunt: 3 + Holy: 10 - type: Tag tags: - Book diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml index 4a90e60b0cc..dccbbc73287 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml @@ -51,6 +51,29 @@ - type: UseDelay delay: 0.5 +- type: entity + name: borghypo + parent: BaseItem + description: A sterile injector for rapid administration of drugs to patients. A cheaper and more specialised version for medical borgs. + id: BorgHypo + components: + - type: Sprite + sprite: Objects/Specific/Medical/hypospray.rsi + state: borghypo + - type: Item + sprite: Objects/Specific/Medical/hypospray.rsi + - type: SolutionContainerManager + solutions: + hypospray: + maxVol: 10 + - type: RefillableSolution + solution: hypospray + - type: ExaminableSolution + solution: hypospray + - type: Hypospray + - type: UseDelay + delay: 0.5 + - type: entity name: experimental hypospray suffix: Admeme @@ -123,7 +146,6 @@ - type: Tag tags: [] - - type: entity name: poison auto-injector parent: ChemicalMedipen diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/morgue.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/morgue.yml index 18e502ccdfb..733411cdbe8 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/morgue.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/morgue.yml @@ -129,7 +129,7 @@ description: Much less deadly in this form. components: - type: Sprite - sprite: Mobs/Ghosts/revenant.rsi + sprite: DeltaV/Mobs/Ghosts/revenant.rsi # DeltaV - Custom revenant sprite state: ectoplasm - type: Tag tags: diff --git a/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml b/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml index 31d6831f378..5bb71ec04ee 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml @@ -338,6 +338,22 @@ items: - DefibrillatorOneHandedUnpowered +- type: entity + id: BorgModuleAdvancedTreatment + parent: [ BaseBorgModuleMedical, BaseProviderBorgModule ] + name: advanced treatment cyborg module + components: + - type: Sprite + layers: + - state: medical + - state: icon-chemist + - type: ItemBorgModule + items: + - Beaker + - Beaker + - BorgDropper + - BorgHypo + # science modules # todo: if science ever gets their own custom robot, add more "sci" modules. - type: entity diff --git a/Resources/Prototypes/Entities/Objects/Specific/Service/vending_machine_restock.yml b/Resources/Prototypes/Entities/Objects/Specific/Service/vending_machine_restock.yml index 0417c23f8eb..3324e7d2c31 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Service/vending_machine_restock.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Service/vending_machine_restock.yml @@ -77,6 +77,38 @@ shader: unshaded - state: refill_chinese +- type: entity + parent: BaseVendingMachineRestock + id: VendingMachineRestockChefvend + name: ChefVend restock box + description: Refill the ChefVend. Just don't break any more of the eggs. + components: + - type: VendingMachineRestock + canRestock: + - ChefvendInventory + - type: Sprite + layers: + - state: base + - state: green_bit + shader: unshaded + - state: refill_chef + +- type: entity + parent: BaseVendingMachineRestock + id: VendingMachineRestockCondimentStation + name: Condiment Station restock box + description: Refill the Condiment Station. Mmmm, cold sauce. + components: + - type: VendingMachineRestock + canRestock: + - CondimentInventory + - type: Sprite + layers: + - state: base + - state: green_bit + shader: unshaded + - state: refill_condiment + - type: entity parent: BaseVendingMachineRestock id: VendingMachineRestockClothes diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml index a0e57d520f9..bf323067ac0 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml @@ -234,7 +234,7 @@ - type: SolutionContainerManager solutions: beaker: - maxVol: 300 + maxVol: 1000 canMix: true - type: entity @@ -278,6 +278,26 @@ - type: StaticPrice price: 40 +- type: entity + name: borgdropper + parent: Dropper + description: Used to transfer small amounts of chemical solution between containers. Extended for use by medical borgs. + id: BorgDropper + components: + - type: Sprite + sprite: Objects/Specific/Chemistry/dropper.rsi + layers: + - state: borgdropper + - state: dropper1 + map: ["enum.SolutionContainerLayers.Fill"] + visible: false + - type: SolutionContainerManager + solutions: + injector: + maxVol: 10 + - type: Item + sprite: Objects/Specific/Chemistry/dropper.rsi + - type: entity name: syringe parent: BaseItem @@ -408,6 +428,9 @@ transferForensics: true - !type:DoActsBehavior acts: [ "Destruction" ] + - type: Tag + tags: + - Pill - type: entity name: pill canister diff --git a/Resources/Prototypes/Entities/Objects/Tools/emag.yml b/Resources/Prototypes/Entities/Objects/Tools/emag.yml index 8ebf56d68e7..702b7c86bee 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/emag.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/emag.yml @@ -10,6 +10,8 @@ - type: Sprite sprite: Objects/Tools/emag.rsi state: icon + - type: Item + sprite: Objects/Tools/emag.rsi - type: entity parent: BaseItem @@ -22,3 +24,5 @@ - type: Sprite sprite: Objects/Tools/emag.rsi state: icon + - type: Item + sprite: Objects/Tools/emag.rsi diff --git a/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml b/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml index 7f4ee54f79a..0fde43be318 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml @@ -42,7 +42,17 @@ price: 20 - type: entity + abstract: true parent: GasTankBase + id: GasTankRoundBase + components: + - type: Tool + qualities: + - Rolling + speed: 0.6 # fairly unwieldly but nice round surface + +- type: entity + parent: GasTankRoundBase id: OxygenTank name: oxygen tank description: A standard cylindrical gas tank for oxygen. @@ -68,7 +78,7 @@ sprite: Objects/Tanks/yellow.rsi - type: entity - parent: GasTankBase + parent: GasTankRoundBase id: NitrogenTank name: nitrogen tank description: A standard cylindrical gas tank for nitrogen. @@ -81,7 +91,7 @@ sprite: Objects/Tanks/red.rsi - type: entity - parent: GasTankBase + parent: GasTankRoundBase id: EmergencyOxygenTank name: emergency oxygen tank description: An easily portable tank for emergencies. Contains very little oxygen, rated for survival use only. @@ -152,7 +162,7 @@ Blunt: 7.5 - type: entity - parent: GasTankBase + parent: GasTankRoundBase id: AirTank name: air tank description: Mixed anyone? @@ -168,7 +178,7 @@ sprite: Objects/Tanks/generic.rsi - type: entity - parent: GasTankBase + parent: GasTankRoundBase id: NitrousOxideTank name: nitrous oxide tank description: Contains a mixture of air and nitrous oxide. Make sure you don't refill it with pure N2O. @@ -186,6 +196,7 @@ sprite: Objects/Tanks/anesthetic.rsi - type: entity + # it's a square so no rolling dough parent: GasTankBase id: PlasmaTank name: plasma tank diff --git a/Resources/Prototypes/Entities/Objects/Tools/tools.yml b/Resources/Prototypes/Entities/Objects/Tools/tools.yml index 24e31adedcd..3e6f80f0fcd 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/tools.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/tools.yml @@ -434,6 +434,8 @@ tags: - Multitool - type: TilePrying + - type: Prying + enabled: false - type: Tool qualities: - Screwing @@ -509,3 +511,27 @@ Wood: 50 - type: StaticPrice price: 25 + +- type: entity + parent: BaseItem + id: RollingPin + name: rolling pin + description: A tool used to shape and flatten dough. + components: + - type: Sprite + sprite: Objects/Tools/rolling_pin.rsi + state: icon + - type: Item + sprite: Objects/Tools/rolling_pin.rsi + size: 10 + - type: ItemCooldown + - type: MeleeWeapon + damage: + types: + Blunt: 7 + - type: Tool + qualities: + - Rolling + - type: PhysicalComposition + materialComposition: + Wood: 100 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/light_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/light_rifle.yml index 315f1af7e19..6350b77094f 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/light_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/light_rifle.yml @@ -39,5 +39,6 @@ components: - type: Projectile damage: - groups: - Burn: 17 + types: + Blunt: 3 + Heat: 16 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/magnum.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/magnum.yml index 2da1e190d9d..8b30bfe1820 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/magnum.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/magnum.yml @@ -41,9 +41,10 @@ components: - type: Projectile damage: - groups: - Burn: 32 - + types: + Blunt: 3 + Heat: 32 + - type: entity id: BulletMagnumAP name: bullet (.45 magnum armor-piercing) diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/pistol.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/pistol.yml index f3e7d1e6bac..0e6c08c3dfd 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/pistol.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/pistol.yml @@ -39,5 +39,6 @@ components: - type: Projectile damage: - groups: - Burn: 14 + types: + Blunt: 2 + Heat: 14 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/rifle.yml index 009ab6bbb4f..768fec3c428 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/rifle.yml @@ -39,5 +39,7 @@ components: - type: Projectile damage: - groups: - Burn: 15 + types: + Blunt: 2 + Heat: 15 + diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/shotgun.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/shotgun.yml index ec23d3063a0..887295b4b1c 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/shotgun.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/shotgun.yml @@ -53,8 +53,9 @@ state: buckshot-flare - type: Projectile damage: - groups: - Burn: 7 + types: + Blunt: 1 + Heat: 7 - type: entity id: PelletShotgunPractice diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml index f970b06f8ee..461a6cc4373 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml @@ -38,6 +38,9 @@ components: - type: Item size: 10 + - type: Tag + tags: + - Sidearm - type: Clothing sprite: Objects/Weapons/Guns/Battery/taser.rsi quickEquip: false @@ -272,6 +275,7 @@ - type: Tag tags: - Taser + - Sidearm - type: Sprite sprite: Objects/Weapons/Guns/Battery/disabler.rsi layers: @@ -333,6 +337,7 @@ - type: Tag tags: - Taser + - Sidearm - type: Sprite sprite: Objects/Weapons/Guns/Battery/taser.rsi layers: @@ -392,6 +397,7 @@ - type: Tag tags: - HighRiskItem + - Sidearm - type: StaticPrice price: 750 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/HMGs/hmgs.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/HMGs/hmgs.yml index 00e5c3767f3..785b36cc620 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/HMGs/hmgs.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/HMGs/hmgs.yml @@ -33,6 +33,7 @@ map: ["enum.GunVisualLayers.Base"] - type: Item sprite: Objects/Weapons/Guns/HMGs/minigun.rsi + size: 90 - type: Gun fireRate: 15 soundGunshot: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml index ff098b32f90..7bfd914d94f 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml @@ -13,6 +13,9 @@ map: ["enum.GunVisualLayers.Mag"] - type: Item size: 10 + - type: Tag + tags: + - Sidearm - type: Clothing sprite: Objects/Weapons/Guns/Pistols/viper.rsi quickEquip: false diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml index 48c02f484ef..1851dcddf6b 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml @@ -9,6 +9,9 @@ state: icon - type: Item size: 10 + - type: Tag + tags: + - Sidearm - type: Clothing sprite: Objects/Weapons/Guns/Revolvers/deckard.rsi quickEquip: false diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/baseball_bat.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/baseball_bat.yml index c8134180bcc..4cd71e72393 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/baseball_bat.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/baseball_bat.yml @@ -18,6 +18,10 @@ Blunt: 8 - type: Item size: 80 + - type: Tool + qualities: + - Rolling + speed: 0.75 # a bit unwieldly but does the job - type: Clothing quickEquip: false slots: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml index 3073ed7ab53..af073435bae 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml @@ -79,6 +79,9 @@ Slash: 6.5 - type: Item size: 10 + - type: Tag + tags: + - Knife # Like a crusher... but better - type: entity diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml index dbbe0febfdf..2e733cf658a 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml @@ -18,7 +18,7 @@ - type: Reflect enabled: true reflectProb: .5 - spread: 90 + spread: 90 - type: Item size: 15 sprite: Objects/Weapons/Melee/captain_sabre.rsi @@ -69,7 +69,6 @@ sprite: Objects/Weapons/Melee/energykatana.rsi - type: EnergyKatana - type: DashAbility - dashAction: ActionEnergyKatanaDash - type: LimitedCharges maxCharges: 3 charges: 3 diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml index c76aa328564..aa3deaf3a36 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml @@ -69,10 +69,8 @@ components: - type: Sprite sprite: Structures/Doors/Airlocks/Standard/command.rsi - - type: WiresPanel - securityLevel: Level2 - - type: Construction - node: airlockMedSecurity + - type: WiresPanelSecurity + securityLevel: medSecurity - type: entity parent: Airlock @@ -138,7 +136,10 @@ group: Glass - type: RadiationBlocker resistance: 2 - + - type: Tag + tags: + - GlassAirlock + # This tag is used to nagivate the Airlock construction graph. It's needed because the construction graph is shared between Airlock, AirlockGlass, and HighSecDoor - type: entity parent: AirlockGlass id: AirlockEngineeringGlass @@ -218,10 +219,8 @@ sprite: Structures/Doors/Airlocks/Glass/command.rsi - type: PaintableAirlock group: Glass - - type: WiresPanel - securityLevel: Level2 - - type: Construction - node: glassAirlockMedSecurity + - type: WiresPanelSecurity + securityLevel: medSecurity - type: entity parent: AirlockGlass diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml index f40ef4ea847..51d3cfdda09 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml @@ -74,6 +74,7 @@ enabled: false usesApcPower: true - type: WiresPanel + - type: WiresPanelSecurity - type: Wires BoardName: wires-board-name-airlock LayoutId: Airlock @@ -131,5 +132,10 @@ - type: AccessReader - type: StaticPrice price: 150 + - type: Tag + tags: + - Airlock + # This tag is used to nagivate the Airlock construction graph. It's needed because the construction graph is shared between Airlock, AirlockGlass, and HighSecDoor placement: mode: SnapgridCenter + diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml index 80194a48cdf..c653d2d0100 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml @@ -67,7 +67,8 @@ enabled: false usesApcPower: true - type: WiresPanel - securityLevel: Level5 + - type: WiresPanelSecurity + securityLevel: maxSecurity - type: Wires BoardName: wires-board-name-highsec LayoutId: HighSec @@ -94,5 +95,9 @@ key: walls mode: NoSprite - type: Construction - graph: HighSecDoor - node: maxSecurity + graph: Airlock + node: highSecDoor + - type: Tag + tags: + - HighSecDoor + # This tag is used to nagivate the Airlock construction graph. It's needed because this construction graph is shared between Airlock, AirlockGlass, and HighSecDoor \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml b/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml index 36224779da5..9605b7edec9 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml @@ -35,6 +35,8 @@ openingAnimationTime: 1.2 closingAnimationTime: 1.2 - type: Appearance + - type: Weldable + time: 2 - type: Airtight fixVacuum: true - type: Damageable diff --git a/Resources/Prototypes/Entities/Structures/Doors/wires_panel_security.yml b/Resources/Prototypes/Entities/Structures/Doors/wires_panel_security.yml deleted file mode 100644 index 4a42ed36ad8..00000000000 --- a/Resources/Prototypes/Entities/Structures/Doors/wires_panel_security.yml +++ /dev/null @@ -1,45 +0,0 @@ -- type: WiresPanelSecurityLevel - id: Level0 - wiresAccessible: true - -- type: WiresPanelSecurityLevel - id: Level1 - examine: wires-panel-component-on-examine-security-level1 - wiresAccessible: false - weldingAllowed: false - -- type: WiresPanelSecurityLevel - id: Level2 - examine: wires-panel-component-on-examine-security-level2 - wiresAccessible: false - weldingAllowed: false - -- type: WiresPanelSecurityLevel - id: Level3 - examine: wires-panel-component-on-examine-security-level3 - wiresAccessible: false - weldingAllowed: false - -- type: WiresPanelSecurityLevel - id: Level4 - examine: wires-panel-component-on-examine-security-level4 - wiresAccessible: false - weldingAllowed: false - -- type: WiresPanelSecurityLevel - id: Level5 - examine: wires-panel-component-on-examine-security-level5 - wiresAccessible: false - -- type: WiresPanelSecurityLevel - id: Level6 - examine: wires-panel-component-on-examine-security-level6 - wiresAccessible: false - weldingAllowed: false - -- type: WiresPanelSecurityLevel - id: Level7 - examine: wires-panel-component-on-examine-security-level7 - wiresAccessible: false - weldingAllowed: false - \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Structures/Machines/bombs.yml b/Resources/Prototypes/Entities/Structures/Machines/bombs.yml index a88da73550e..9bd5070b73b 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/bombs.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/bombs.yml @@ -1,6 +1,6 @@ - type: entity abstract: true - parent: BaseStructure + parent: BaseStructureDynamic id: BaseHardBomb description: Just keep talking and nobody will explode. name: hardbomb @@ -16,6 +16,7 @@ LayoutId: Defusable alwaysRandomize: true - type: Defusable + - type: Rotatable - type: Explosive explosionType: Default totalIntensity: 20.0 @@ -31,11 +32,6 @@ beepSound: /Audio/Machines/timer.ogg - type: Anchorable delay: 5 - - type: Physics - bodyType: Static - canCollide: false - - type: Transform - noRot: true - type: Fixtures fixtures: fix1: @@ -52,7 +48,6 @@ openOnActivation: true guides: - Defusal - - type: CollideOnAnchor - type: entity parent: BaseHardBomb diff --git a/Resources/Prototypes/Entities/Structures/Machines/grill.yml b/Resources/Prototypes/Entities/Structures/Machines/grill.yml new file mode 100644 index 00000000000..dbd31b3eae2 --- /dev/null +++ b/Resources/Prototypes/Entities/Structures/Machines/grill.yml @@ -0,0 +1,35 @@ +- type: entity + parent: BaseHeaterMachine + id: KitchenElectricGrill + name: electric grill + description: A microwave? No, a real man cooks steaks on a grill! + components: + - type: Sprite + # TODO: draw a sprite + sprite: Structures/Machines/electric_grill.rsi + drawdepth: SmallObjects + snapCardinals: true + layers: + - state: icon + - map: ["enum.EntityHeaterVisuals.Setting"] + shader: unshaded + visible: false + - type: ApcPowerReceiver + powerLoad: 0 # off by default + - type: EntityHeater + - type: ItemPlacer + maxEntities: 4 # big grill, many steaks + whitelist: + components: + - Temperature + - type: PlaceableSurface + - type: Machine + board: ElectricGrillMachineCircuitboard + - type: GenericVisualizer + visuals: + enum.EntityHeaterVisuals.Setting: + enum.EntityHeaterVisuals.Setting: + Off: { visible: false } + Low: { visible: true, state: low } + Medium: { visible: true, state: medium } + High: { visible: true, state: high } diff --git a/Resources/Prototypes/Entities/Structures/Machines/hotplate.yml b/Resources/Prototypes/Entities/Structures/Machines/hotplate.yml index c5ed1de80ce..3f2dc05a306 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/hotplate.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/hotplate.yml @@ -1,8 +1,8 @@ +# heats an entity or solution placed on it - type: entity - id: ChemistryHotplate + abstract: true parent: [ BaseMachinePowered, ConstructibleMachine ] - name: hotplate - description: "The descendent of the microwaves, our newest invention in beaker heating technology: the hotplate!" + id: BaseHeaterMachine components: - type: Transform anchored: true @@ -19,6 +19,20 @@ - MidImpassable - LowImpassable hard: false + - type: ApcPowerReceiver + powerLoad: 300 + - type: Appearance + - type: ContainerContainer + containers: + machine_board: !type:Container + machine_parts: !type:Container + +- type: entity + parent: BaseHeaterMachine + id: ChemistryHotplate + name: hotplate + description: "The descendent of the microwaves, our newest invention in beaker heating technology: the hotplate!" + components: - type: Sprite sprite: Structures/Machines/hotplate.rsi drawdepth: SmallObjects @@ -28,15 +42,6 @@ - state: on map: ["enum.SolutionHeaterVisuals.IsOn"] shader: unshaded - - type: ApcPowerReceiver - powerLoad: 300 - - type: ItemMapper - sprite: Structures/Machines/hotplate.rsi - mapLayers: - beaker: - whitelist: - components: - - FitsInDispenser - type: SolutionHeater - type: ItemPlacer whitelist: @@ -47,11 +52,6 @@ positionOffset: 0, 0.25 - type: Machine board: HotplateMachineCircuitboard - - type: Appearance - - type: ContainerContainer - containers: - machine_board: !type:Container - machine_parts: !type:Container - type: GenericVisualizer visuals: enum.SolutionHeaterVisuals.IsOn: diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index f8b3ee0e17f..136ecd3e475 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -326,6 +326,7 @@ - ReagentGrinderMachineCircuitboard - HotplateMachineCircuitboard - MicrowaveMachineCircuitboard + - ElectricGrillMachineCircuitboard - FatExtractorMachineCircuitboard - SheetifierMachineCircuitboard - UniformPrinterMachineCircuitboard @@ -474,6 +475,7 @@ - BorgModuleDiagnosis - BorgModuleTreatment - BorgModuleDefibrillator + - BorgModuleAdvancedTreatment - RipleyHarness - RipleyLArm - RipleyRArm @@ -561,44 +563,51 @@ - TargetClown dynamicRecipes: - CartridgeSpecialRubber # DeltaV - .38 Special revolver - - CartridgePistolRubber - - CartridgeMagnumRubber - - ShellShotgunBeanbag - - CartridgeRifleRubber - EncryptionKeySyndie # Nyano - - CartridgeLightRifleRubber - - MagazineBoxPistolRubber - MagazineBoxSpecialRubber # DeltaV - .38 Special revolver - - MagazineBoxMagnumRubber - - MagazineBoxRifleRubber - - MagazineBoxLightRifleRubber - - ShellShotgunIncendiary - - CartridgePistolIncendiary - - CartridgeMagnumIncendiary - CartridgeLightRifleIncendiary + - CartridgeMagnumIncendiary + - CartridgePistolIncendiary - CartridgeRifleIncendiary - - MagazineBoxPistolIncendiary - - MagazineBoxMagnumIncendiary + - CartridgeLightRifleRubber + - CartridgeMagnumRubber + - CartridgePistolRubber + - CartridgeRifleRubber + - ExplosivePayload + - FlashPayload + - HoloprojectorSecurity - MagazineBoxLightRifleIncendiary + - MagazineBoxMagnumIncendiary + - MagazineBoxPistolIncendiary - MagazineBoxRifleIncendiary - CartridgeSpecialHoly # DeltaV - .38 Special revolver, Holy ammo - CartridgeSpecialMindbreaker # DeltaV - .38 Special revolver, Mindbreaker ammo + - MagazineBoxLightRiflePractice + - MagazineBoxMagnumPractice + - MagazineBoxPistolPractice + - MagazineBoxRiflePractice + - MagazineBoxLightRifleRubber + - MagazineBoxMagnumRubber + - MagazineBoxPistolRubber + - MagazineBoxRifleRubber + - ShellShotgunBeanbag + - ShellShotgunIncendiary + - ShellShotgunPractice - Signaller - SignalTrigger - - VoiceTrigger + - TelescopicShield - TimerTrigger - Truncheon - - TelescopicShield - - HoloprojectorSecurity - - FlashPayload - - ExplosivePayload - - WeaponLaserCarbine + - VoiceTrigger - WeaponAdvancedLaser + - WeaponDisablerPractice - WeaponLaserCannon - - WeaponXrayCannon + - WeaponLaserCarbine + - WeaponLaserCarbinePractice - WeaponTaser - ClothingHeadHelmetInsulated # Nyanotrasen - Insulative headgear - ClothingHeadCage # Nyanotrasen - Insulative headgear + - WeaponXrayCannon - type: MaterialStorage whitelist: tags: @@ -708,6 +717,7 @@ - SyringeBluespace - ClothingEyesHudMedical # Nyano - ChemicalPayload # Nyano + - Jug - type: Machine board: MedicalTechFabCircuitboard @@ -741,7 +751,6 @@ - ClothingUniformJumpsuitCargo - ClothingUniformJumpskirtCargo - ClothingUniformJumpsuitSalvageSpecialist - - ClothingUniformJumpsuitSalvageExplorer # DeltaV - Salvage better looking uniform, see Resources/Prototypes/DeltaV/Entities/Clothing/Uniform/jumpsuits.yml - ClothingUniformJumpsuitChiefEngineer - ClothingUniformJumpskirtChiefEngineer - ClothingUniformJumpsuitChiefEngineerTurtle @@ -812,6 +821,7 @@ - ClothingNeckMantleHOP - ClothingNeckMantleHOS - ClothingNeckMantleRD + - ClothingNeckMantleQM - ClothingOuterWinterMusician - ClothingOuterWinterClown - ClothingOuterWinterMime @@ -870,7 +880,7 @@ runningState: building canEjectStoredMaterials: false staticRecipes: - - BluespaceCrystal #Nyano - Summary: Bluespace Crystals can be created here. + - BluespaceCrystal #Nyano - Summary: Bluespace Crystals can be created here. - SheetSteel30 - SheetGlass30 - SheetRGlass30 diff --git a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml index 6de6ebafbc3..e39cbaf45c1 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml @@ -222,7 +222,7 @@ - type: entity parent: VendingMachine id: VendingMachineChefvend - name: Chefvend + name: ChefVend description: An ingredient vendor for all your cheffin needs. components: - type: VendingMachine diff --git a/Resources/Prototypes/Entities/Structures/Specific/anomalies.yml b/Resources/Prototypes/Entities/Structures/Specific/anomalies.yml index 655f026ee16..442260317e2 100644 --- a/Resources/Prototypes/Entities/Structures/Specific/anomalies.yml +++ b/Resources/Prototypes/Entities/Structures/Specific/anomalies.yml @@ -140,7 +140,8 @@ - type: TileSpawnAnomaly floorTileId: FloorFlesh - type: EntitySpawnAnomaly - superCriticalSpawn: FleshKudzu + superCriticalSpawns: + - FleshKudzu spawns: - MobFleshJared - MobFleshGolem @@ -234,3 +235,140 @@ releasedGas: 8 # Frezon. Please replace if there is a better way to specify this releaseOnMaxSeverity: true spawnRadius: 0 + +- type: entity + id: AnomalyRock + parent: BaseAnomaly + suffix: Rock + components: + - type: Sprite + layers: + - state: anom6 + map: ["enum.AnomalyVisualLayers.Base"] + - state: anom6-pulse + map: ["enum.AnomalyVisualLayers.Animated"] + visible: false + - type: PointLight + radius: 2.0 + energy: 7.5 + color: "#5ca8cb" + castShadows: false + - type: TileSpawnAnomaly + floorTileId: FloorAsteroidTile + spawnChance: 0.8 + - type: EntitySpawnAnomaly + maxSpawnAmount: 50 + spawnRange: 10 + spawns: + - AsteroidRock + - AsteroidCrabSpawner + - CrystalSpawner + superCriticalSpawns: + - AsteroidRock + - SpawnMobOreCrab + +- type: entity + id: AnomalyLiquid + parent: BaseAnomaly + suffix: Liquid + components: + - type: Sprite + sprite: Structures/Specific/Anomalies/liquid_anom.rsi + layers: + - state: anom + map: ["enum.AnomalyVisualLayers.Base"] + - state: pulse + map: ["enum.AnomalyVisualLayers.Animated"] + visible: false + - type: RandomSprite + selected: # Initialized layer values. Edited through the ReagentProducerAnomalySystem + enum.AnomalyVisualLayers.Base: + anom: "#ffffff" + enum.AnomalyVisualLayers.Animated: + pulse: "#ffffff" + - type: PointLight + radius: 4.0 + energy: 3.5 + color: "#bbbbbb" + - type: BadFood + - type: Anomaly + anomalyContactDamage: + types: + Slash: 1 + - type: EntitySpawnAnomaly + superCriticalSpawns: + - ReagentSlimeSpawner + spawns: + - PuddleSparkle + - type: SolutionContainerManager + solutions: + anomaly: + maxVol: 1500 + - type: PuddleCreateAnomaly + solution: anomaly + - type: InjectionAnomaly + solution: anomaly + - type: ReagentProducerAnomaly + solution: anomaly + needRecolor: true + dangerousChemicals: + - UnstableMutagen + - Mold + - PolytrinicAcid + - FerrochromicAcid + - FluorosulfuricAcid + - SulfuricAcid + - HeartbreakerToxin + - VentCrud + - UncookedAnimalProteins + - Thermite + - Napalm + - Phlogiston + - ChlorineTrifluoride + - FoamingAgent + - BuzzochloricBees + - RobustHarvest + usefulChemicals: + - Cryptobiolin + - Dylovene + - Arithrazine + - Bicaridine + - Cryoxadone + - Dermaline + - Dexalin + - DexalinPlus + - Epinephrine + - Leporazine + - Ambuzol + - Tricordrazine + - Artifexium + - Ethylredoxrazine + funChemicals: + - Desoxyephedrine + - Ephedrine + - THC + - THCOil + - SpaceDrugs + - Nocturine + - MuteToxin + - NorepinephricAcid + - Pax + - Ipecac + - Cognizine + - Beer + - SpaceGlue + - CogChamp + - Honk + - Carpetium + - type: Drink + solution: anomaly + - type: DrainableSolution + solution: anomaly + - type: DrawableSolution + solution: anomaly + - type: ExaminableSolution + solution: anomaly + - type: RefillableSolution + solution: anomaly + - type: InjectableSolution + solution: beaker diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/signs.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/signs.yml index 628b2e5852e..b847ed2b754 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/signs.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/signs.yml @@ -397,6 +397,15 @@ - type: Sprite state: conference_room +- type: entity + parent: BaseSign + id: SignCourt + name: court sign + description: A sign labelling the courtroom. + components: + - type: Sprite + state: court + - type: entity parent: BaseSign id: SignDisposalSpace @@ -543,6 +552,24 @@ - type: Sprite state: interrogation +- type: entity + parent: BaseSign + id: SignJanitor + name: janitor sign + description: A sign labelling an area where the janitor works. + components: + - type: Sprite + state: janitor + +- type: entity + parent: BaseSign + id: SignLawyer + name: lawyer sign + description: A sign labelling an area where the Lawyers work. + components: + - type: Sprite + state: law + - type: entity parent: BaseSign id: SignLibrary @@ -606,6 +633,15 @@ - type: Sprite state: prison +- type: entity + parent: BaseSign + id: SignPsychology + name: psychology sign + description: A sign labelling an area where the Psychologist works. + components: + - type: Sprite + state: psychology + - type: entity parent: BaseSign id: SignRND diff --git a/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml b/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml index 415eff56593..5ecbb8214c9 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml @@ -68,6 +68,47 @@ oreChance: 0.33 oreRarityPrototypeId: RandomOreDistributionStandard +- type: entity + id: AsteroidRockCrab + parent: AsteroidRock + name: asteroid rock + suffix: orecrab + description: An asteroid. + components: + - type: Sprite + sprite: Structures/Walls/rock.rsi + noRot: true + layers: + - state: rock_asteroid_ore + - map: [ "enum.EdgeLayer.South" ] + state: rock_asteroid_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_asteroid_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_asteroid_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_asteroid_west + - type: OreVein + oreChance: 0.33 + oreRarityPrototypeId: OreCrab + +- type: entity + id: AsteroidRockCrab1 + parent: AsteroidRockCrab + components: + - type: Sprite + sprite: Structures/Walls/rock.rsi + noRot: true + layers: + - state: rock_asteroid_ore1 + - map: [ "enum.EdgeLayer.South" ] + state: rock_asteroid_south + - map: [ "enum.EdgeLayer.East" ] + state: rock_asteroid_east + - map: [ "enum.EdgeLayer.North" ] + state: rock_asteroid_north + - map: [ "enum.EdgeLayer.West" ] + state: rock_asteroid_west - type: entity id: IronRock diff --git a/Resources/Prototypes/GameRules/events.yml b/Resources/Prototypes/GameRules/events.yml index c61375ef822..a68754b79c0 100644 --- a/Resources/Prototypes/GameRules/events.yml +++ b/Resources/Prototypes/GameRules/events.yml @@ -132,18 +132,18 @@ startDelay: 20 - type: GasLeakRule -#- type: entity -# id: KudzuGrowth -# parent: BaseGameRule -# noSpawn: true -# components: -# - type: StationEvent -# earliestStart: 15 -# minimumPlayers: 15 -# weight: 5 -# startDelay: 50 -# duration: 240 -# - type: KudzuGrowthRule +- type: entity + id: KudzuGrowth + parent: BaseGameRule + noSpawn: true + components: + - type: StationEvent + earliestStart: 15 + minimumPlayers: 15 + weight: 5 + startDelay: 50 + duration: 240 + - type: KudzuGrowthRule - type: entity id: MeteorSwarm diff --git a/Resources/Prototypes/GameRules/roundstart.yml b/Resources/Prototypes/GameRules/roundstart.yml index 0fc6de32ece..a0fc66bb811 100644 --- a/Resources/Prototypes/GameRules/roundstart.yml +++ b/Resources/Prototypes/GameRules/roundstart.yml @@ -75,6 +75,13 @@ components: - type: TraitorRule +- type: entity + id: Revolutionary + parent: BaseGameRule + noSpawn: true + components: + - type: RevolutionaryRule + - type: entity id: Sandbox parent: BaseGameRule diff --git a/Resources/Prototypes/InventoryTemplates/monkey_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/monkey_inventory_template.yml index e76a8e9d571..d6b53d07726 100644 --- a/Resources/Prototypes/InventoryTemplates/monkey_inventory_template.yml +++ b/Resources/Prototypes/InventoryTemplates/monkey_inventory_template.yml @@ -24,6 +24,7 @@ displayName: Mask whitelist: tags: + - MonkeyWearable - PetWearable components: - Smokable diff --git a/Resources/Prototypes/Maps/barratry.yml b/Resources/Prototypes/Maps/barratry.yml index be00008dcfe..334ceac5261 100644 --- a/Resources/Prototypes/Maps/barratry.yml +++ b/Resources/Prototypes/Maps/barratry.yml @@ -33,20 +33,24 @@ #engineering ChiefEngineer: [ 1, 1 ] AtmosphericTechnician: [ 3, 3 ] + #SeniorEngineer: [ 1, 1 ] StationEngineer: [ 4, 4 ] TechnicalAssistant: [ 2, 4 ] #medical ChiefMedicalOfficer: [ 1, 1 ] + #SeniorPhysician: [ 1, 1 ] Chemist: [ 2, 2 ] MedicalDoctor: [ 3, 3 ] MedicalIntern: [ 2, 4 ] #science ResearchDirector: [ 1, 1 ] + #SeniorResearcher: [ 1, 1 ] Scientist: [ 4, 4 ] ResearchAssistant: [2, 4] #security HeadOfSecurity: [ 1, 1 ] Warden: [ 1, 1 ] + #SeniorOfficer: [ 1, 1 ] Detective: [ 1, 1 ] SecurityOfficer: [ 4, 4 ] SecurityCadet: [ 2, 4 ] diff --git a/Resources/Prototypes/Maps/kettle.yml b/Resources/Prototypes/Maps/kettle.yml index ebadfe0fdda..dac2522428a 100644 --- a/Resources/Prototypes/Maps/kettle.yml +++ b/Resources/Prototypes/Maps/kettle.yml @@ -48,6 +48,7 @@ # SeniorResearcher: [ 1, 1 ] Scientist: [ 4, 6 ] ResearchAssistant: [ 8, 8 ] + Borg: [ 2, 2 ] #security HeadOfSecurity: [ 1, 1 ] Warden: [ 1, 1 ] diff --git a/Resources/Prototypes/NPCs/mob.yml b/Resources/Prototypes/NPCs/mob.yml index bba5a76ad8e..5b25f85a795 100644 --- a/Resources/Prototypes/NPCs/mob.yml +++ b/Resources/Prototypes/NPCs/mob.yml @@ -39,6 +39,19 @@ - !type:HTNCompoundTask task: IdleCompound +- type: htnCompound + id: RuminantHostileCompound + branches: + - tasks: + - !type:HTNCompoundTask + task: MeleeCombatCompound + - tasks: + - !type:HTNCompoundTask + task: FoodCompound + - tasks: + - !type:HTNCompoundTask + task: IdleCompound + - type: htnCompound id: DragonCarpCompound branches: diff --git a/Resources/Prototypes/Nyanotrasen/Damage/containers.yml b/Resources/Prototypes/Nyanotrasen/Damage/containers.yml new file mode 100644 index 00000000000..988a3436d1d --- /dev/null +++ b/Resources/Prototypes/Nyanotrasen/Damage/containers.yml @@ -0,0 +1,12 @@ +- type: damageContainer + id: Spirit + supportedGroups: + - Burn + - Immaterial + +- type: damageContainer + id: CorporealSpirit + supportedGroups: + - Burn + - Brute + - Immaterial diff --git a/Resources/Prototypes/Nyanotrasen/Damage/groups.yml b/Resources/Prototypes/Nyanotrasen/Damage/groups.yml new file mode 100644 index 00000000000..d2f9906f451 --- /dev/null +++ b/Resources/Prototypes/Nyanotrasen/Damage/groups.yml @@ -0,0 +1,4 @@ +- type: damageGroup + id: Immaterial + damageTypes: + - Holy diff --git a/Resources/Prototypes/Nyanotrasen/Damage/modifier_sets.yml b/Resources/Prototypes/Nyanotrasen/Damage/modifier_sets.yml index 5c26f19f799..ddca42d4253 100644 --- a/Resources/Prototypes/Nyanotrasen/Damage/modifier_sets.yml +++ b/Resources/Prototypes/Nyanotrasen/Damage/modifier_sets.yml @@ -29,3 +29,22 @@ id: CancerMouse coefficients: Radiation: -0.25 + +- type: damageModifierSet + id: Spirit + coefficients: + Cold: 0.0 + Shock: 0.2 + Heat: 3.0 + Holy: 5.0 + +- type: damageModifierSet + id: CorporealSpirit + coefficients: + Cold: 0.0 + Shock: 0.5 + Blunt: 0.5 + Slash: 0.5 + Piercing: 0.5 + Heat: 1.5 + Holy: 3.0 diff --git a/Resources/Prototypes/Nyanotrasen/Damage/types.yml b/Resources/Prototypes/Nyanotrasen/Damage/types.yml index a335dcd484f..f9aba7e2ac8 100644 --- a/Resources/Prototypes/Nyanotrasen/Damage/types.yml +++ b/Resources/Prototypes/Nyanotrasen/Damage/types.yml @@ -3,4 +3,3 @@ id: Holy armorCoefficientPrice: 25 armorFlatPrice: 150 - \ No newline at end of file diff --git a/Resources/Prototypes/Nyanotrasen/Recipes/Cooking/meal_recipes.yml b/Resources/Prototypes/Nyanotrasen/Recipes/Cooking/meal_recipes.yml index da2f5c694a0..16ab0e2f2b1 100644 --- a/Resources/Prototypes/Nyanotrasen/Recipes/Cooking/meal_recipes.yml +++ b/Resources/Prototypes/Nyanotrasen/Recipes/Cooking/meal_recipes.yml @@ -241,7 +241,7 @@ Water: 5 solids: FoodBowlBig: 1 - FoodTinBeansOpen: 1 + FoodTinBeans: 1 FoodCabbage: 1 FoodTomato: 1 FoodOnion: 1 diff --git a/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Wildcards/gladiator.yml b/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Wildcards/gladiator.yml index 593b424e10c..b5f3684c6e8 100644 --- a/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Wildcards/gladiator.yml +++ b/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Wildcards/gladiator.yml @@ -3,7 +3,7 @@ name: job-name-gladiator description: job-description-gladiator playTimeTracker: JobGladiator - startingGear: GladiatorGear + startingGear: NyanoGladiatorGear # alwaysUseSpawner: true canBeAntag: false icon: "JobIconGladiator" @@ -24,9 +24,9 @@ Piercing: 1.5 - type: startingGear - id: GladiatorGear + id: NyanoGladiatorGear equipment: - jumpsuit: UniformShortsRed + jumpsuit: ClothingUniformJumpsuitGladiator outerClothing: ClothingOuterArmorGladiator id: GladiatorPDA ears: ClothingHeadsetGrey diff --git a/Resources/Prototypes/Objectives/objectiveGroups.yml b/Resources/Prototypes/Objectives/objectiveGroups.yml index f6432f81932..70b3c2773cd 100644 --- a/Resources/Prototypes/Objectives/objectiveGroups.yml +++ b/Resources/Prototypes/Objectives/objectiveGroups.yml @@ -22,6 +22,7 @@ HandTeleporterStealObjective: 0.5 SecretDocumentsStealObjective: 0.5 HoLLuckyBillStealObjective: 0.5 # DeltaV - HoL steal objective, see Resources/Prototypes/DeltaV/Objectives/traitor.yml + HoPBookIanDossierStealObjective: 1 # DeltaV - HoP steal objective, see Resources/Prototypes/DeltaV/Objectives/traitor.yml - type: weightedRandom id: TraitorObjectiveGroupKill diff --git a/Resources/Prototypes/Procedural/salvage_rewards.yml b/Resources/Prototypes/Procedural/salvage_rewards.yml index 763ae8bd4e1..f5080069fb4 100644 --- a/Resources/Prototypes/Procedural/salvage_rewards.yml +++ b/Resources/Prototypes/Procedural/salvage_rewards.yml @@ -44,7 +44,7 @@ MakeshiftShield: 0.25 # rare armor ClothingHeadHelmetSwat: 0.25 - ClothingOuterArmorBasicSlim: 0.25 + ClothingOuterArmorPlateCarrier: 0.25 # DeltaV - ClothingOuterArmorBasicSlim replaced in favour of plate carrier # rare weapons WeaponMakeshiftLaser: 0.1 # money diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/food/pizza.yml b/Resources/Prototypes/Recipes/Construction/Graphs/food/pizza.yml new file mode 100644 index 00000000000..c8184100dd0 --- /dev/null +++ b/Resources/Prototypes/Recipes/Construction/Graphs/food/pizza.yml @@ -0,0 +1,14 @@ +- type: constructionGraph + id: Pizza + start: start + graph: + - node: start + entity: FoodDough + edges: + - to: flat + steps: + - tool: Rolling + doAfter: 1 + - node: flat + entity: FoodDoughFlat + # TODO: add stuff for adding ingredients then cooking the pizza, wsci diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/structures/airlock.yml b/Resources/Prototypes/Recipes/Construction/Graphs/structures/airlock.yml index 3d7e4587318..4ddeb385196 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/structures/airlock.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/structures/airlock.yml @@ -110,11 +110,14 @@ - tool: Prying doAfter: 5 +## Glass airlock - node: glassAirlock entity: AirlockGlass + doNotReplaceInheritingEntities: true actions: - - !type:ChangeWiresPanelSecurityLevel - level: Level0 + - !type:SetWiresPanelSecurity + wiresAccessible: true + weldingAllowed: true edges: - to: glassElectronics conditions: @@ -132,7 +135,7 @@ - tool: Prying doAfter: 2 - - to: glassAirlockMedSecurityBreached + - to: medSecurityUnfinished conditions: - !type:WirePanel {} steps: @@ -140,21 +143,24 @@ amount: 2 doAfter: 2 - - to: glassAirlockHighSecurityBreached + - to: highSecurityUnfinished conditions: - !type:WirePanel {} steps: - material: Plasteel amount: 2 doAfter: 2 - -## Return node so that removing all internal plating doesn't reset the door - - node: glassAirlockUnsecured + +## Standard airlock + - node: airlock + entity: Airlock + doNotReplaceInheritingEntities: true actions: - - !type:ChangeWiresPanelSecurityLevel - level: Level0 + - !type:SetWiresPanelSecurity + wiresAccessible: true + weldingAllowed: true edges: - - to: glassElectronics + - to: wired conditions: - !type:EntityAnchored {} - !type:DoorWelded {} @@ -163,22 +169,20 @@ - !type:WirePanel {} - !type:AllWiresCut completed: - - !type:SpawnPrototype - prototype: SheetRGlass1 - amount: 1 + - !type:EmptyAllContainers {} steps: - tool: Prying - doAfter: 2 + doAfter: 5 - - to: glassAirlockMedSecurityBreached + - to: medSecurityUnfinished conditions: - !type:WirePanel {} steps: - material: Steel amount: 2 doAfter: 2 - - - to: glassAirlockHighSecurityBreached + + - to: highSecurityUnfinished conditions: - !type:WirePanel {} steps: @@ -186,293 +190,166 @@ amount: 2 doAfter: 2 -## Medium security level airlock: a layer of steel plating protects the internal wiring - - node: glassAirlockMedSecurityBreached +## High security door + - node: highSecDoor actions: - - !type:ChangeWiresPanelSecurityLevel - level: Level1 - edges: - - to: glassAirlockUnsecured - completed: - - !type:GivePrototype - prototype: SheetSteel1 - amount: 2 + - !type:SetWiresPanelSecurity + wiresAccessible: true + weldingAllowed: true + edges: + - to: medSecurityUnfinished conditions: - !type:WirePanel {} steps: - - tool: Prying - doAfter: 4 + - material: Steel + amount: 2 + doAfter: 2 - - to: glassAirlockMedSecurity - conditions: - - !type:WirePanel {} - steps: - - tool: Welding - doAfter: 3 - - - node: glassAirlockMedSecurity - actions: - - !type:ChangeWiresPanelSecurityLevel - level: Level2 - edges: - - to: glassAirlockMedSecurityBreached + - to: highSecurityUnfinished conditions: - !type:WirePanel {} steps: - - tool: Welding - doAfter: 10 + - material: Plasteel + amount: 2 + doAfter: 2 -## High security level airlock: a layer of plasteel plating protects the internal wiring - - node: glassAirlockHighSecurityBreached +## Medium security level door: a layer of steel plating protects the internal wiring + - node: medSecurityUnfinished actions: - - !type:ChangeWiresPanelSecurityLevel - level: Level3 + - !type:SetWiresPanelSecurity + examine: wires-panel-component-on-examine-security-level1 + wiresAccessible: false + weldingAllowed: false edges: - - to: glassAirlockUnsecured + - to: glassAirlock completed: - !type:GivePrototype - prototype: SheetPlasteel1 + prototype: SheetSteel1 amount: 2 conditions: - !type:WirePanel {} + - !type:HasTag + tag: GlassAirlock steps: - tool: Prying doAfter: 4 - - - to: glassAirlockHighSecurity - conditions: - - !type:WirePanel {} - steps: - - tool: Welding - doAfter: 5 - - - node: glassAirlockHighSecurity - actions: - - !type:ChangeWiresPanelSecurityLevel - level: Level4 - edges: - - to: glassAirlockHighSecurityBreached - conditions: - - !type:WirePanel {} - steps: - - tool: Welding - doAfter: 15 - - - to: glassAirlockMaxSecurity - conditions: - - !type:WirePanel {} - steps: - - material: MetalRod - amount: 2 - doAfter: 1 - -## Max security level airlock: an electric grill is added - - node: glassAirlockMaxSecurity - actions: - - !type:ChangeWiresPanelSecurityLevel - level: Level5 - edges: - - to: glassAirlockHighSecurity + + - to: airlock completed: - - !type:AttemptElectrocute - !type:GivePrototype - prototype: PartRodMetal1 + prototype: SheetSteel1 amount: 2 - conditions: - - !type:WirePanel {} - steps: - - tool: Cutting - doAfter: 0.5 - - - to: glassAirlockSuperMaxSecurityBreached conditions: - !type:WirePanel {} - steps: - - material: Plasteel - amount: 2 - doAfter: 2 - -## Super max security level airlock: an additional layer of plasteel is added - - node: glassAirlockSuperMaxSecurityBreached - actions: - - !type:ChangeWiresPanelSecurityLevel - level: Level6 - edges: - - to: glassAirlockMaxSecurity + - !type:HasTag + tag: Airlock + steps: + - tool: Prying + doAfter: 4 + + - to: highSecDoor completed: - !type:GivePrototype - prototype: SheetPlasteel1 + prototype: SheetSteel1 amount: 2 conditions: - !type:WirePanel {} + - !type:HasTag + tag: HighSecDoor steps: - tool: Prying doAfter: 4 - - to: glassAirlockSuperMaxSecurity + - to: medSecurity conditions: - !type:WirePanel {} steps: - tool: Welding - doAfter: 5 + doAfter: 3 - - node: glassAirlockSuperMaxSecurity + - node: medSecurity actions: - - !type:ChangeWiresPanelSecurityLevel - level: Level7 + - !type:SetWiresPanelSecurity + examine: wires-panel-component-on-examine-security-level2 + wiresAccessible: false + weldingAllowed: false edges: - - to: glassAirlockSuperMaxSecurityBreached + - to: medSecurityUnfinished conditions: - !type:WirePanel {} steps: - tool: Welding - doAfter: 15 + doAfter: 10 - - node: airlock - entity: Airlock +## High security level door: a layer of plasteel plating protects the internal wiring + - node: highSecurityUnfinished actions: - - !type:ChangeWiresPanelSecurityLevel - level: Level0 + - !type:SetWiresPanelSecurity + examine: wires-panel-component-on-examine-security-level3 + wiresAccessible: false + weldingAllowed: false edges: - - to: wired #TODO DOOR ELECTRONICS. If door electronics ever govern access permissions, this step should probably be further down? It makes it too easy to swap permissions around. See also windoor. - conditions: - - !type:EntityAnchored {} - - !type:DoorWelded {} - - !type:DoorBolted - value: false - - !type:WirePanel {} - - !type:AllWiresCut + - to: glassAirlock completed: - - !type:EmptyAllContainers {} - steps: - - tool: Prying - doAfter: 5 - - - to: airlockMedSecurityBreached - conditions: - - !type:WirePanel {} - steps: - - material: Steel - amount: 2 - doAfter: 2 - - - to: airlockHighSecurityBreached - conditions: - - !type:WirePanel {} - steps: - - material: Plasteel + - !type:GivePrototype + prototype: SheetPlasteel1 amount: 2 - doAfter: 2 - -## Return node so that removing all internal plating doesn't reset the door - - node: airlockUnsecured - actions: - - !type:ChangeWiresPanelSecurityLevel - level: Level0 - edges: - - to: wired conditions: - - !type:EntityAnchored {} - - !type:DoorWelded {} - - !type:DoorBolted - value: false - !type:WirePanel {} - - !type:AllWiresCut - completed: - - !type:EmptyAllContainers {} + - !type:HasTag + tag: GlassAirlock steps: - tool: Prying - doAfter: 5 - - - to: airlockMedSecurityBreached - conditions: - - !type:WirePanel {} - steps: - - material: Steel - amount: 2 - doAfter: 2 + doAfter: 4 - - to: airlockHighSecurityBreached - conditions: - - !type:WirePanel {} - steps: - - material: Plasteel - amount: 2 - doAfter: 2 - -## Medium security level airlock: a layer of steel plating protects the internal wiring - - node: airlockMedSecurityBreached - actions: - - !type:ChangeWiresPanelSecurityLevel - level: Level1 - edges: - - to: airlockUnsecured + - to: airlock completed: - !type:GivePrototype - prototype: SheetSteel1 + prototype: SheetPlasteel1 amount: 2 conditions: - !type:WirePanel {} + - !type:HasTag + tag: Airlock steps: - tool: Prying doAfter: 4 - - - to: airlockMedSecurity - conditions: - - !type:WirePanel {} - steps: - - tool: Welding - doAfter: 3 - - - node: airlockMedSecurity - actions: - - !type:ChangeWiresPanelSecurityLevel - level: Level2 - edges: - - to: airlockMedSecurityBreached - conditions: - - !type:WirePanel {} - steps: - - tool: Welding - doAfter: 10 - -## High security level airlock: a layer of plasteel plating protects the internal wiring - - node: airlockHighSecurityBreached - actions: - - !type:ChangeWiresPanelSecurityLevel - level: Level3 - edges: - - to: airlockUnsecured + + - to: highSecDoor completed: - !type:GivePrototype prototype: SheetPlasteel1 amount: 2 conditions: - !type:WirePanel {} + - !type:HasTag + tag: HighSecDoor steps: - tool: Prying doAfter: 4 - - to: airlockHighSecurity + - to: highSecurity conditions: - !type:WirePanel {} steps: - tool: Welding doAfter: 5 - - node: airlockHighSecurity + - node: highSecurity actions: - - !type:ChangeWiresPanelSecurityLevel - level: Level4 + - !type:SetWiresPanelSecurity + examine: wires-panel-component-on-examine-security-level4 + wiresAccessible: false + weldingAllowed: false edges: - - to: airlockHighSecurityBreached + - to: highSecurityUnfinished conditions: - !type:WirePanel {} steps: - tool: Welding doAfter: 15 - - to: airlockMaxSecurity + - to: maxSecurity conditions: - !type:WirePanel {} steps: @@ -480,13 +357,15 @@ amount: 2 doAfter: 1 -## Max security level airlock: an electric grill is added - - node: airlockMaxSecurity +## Max security level door: an electric grill is added + - node: maxSecurity actions: - - !type:ChangeWiresPanelSecurityLevel - level: Level5 + - !type:SetWiresPanelSecurity + examine: wires-panel-component-on-examine-security-level5 + wiresAccessible: false + weldingAllowed: true edges: - - to: airlockHighSecurity + - to: highSecurity completed: - !type:AttemptElectrocute - !type:GivePrototype @@ -498,7 +377,7 @@ - tool: Cutting doAfter: 0.5 - - to: airlockSuperMaxSecurityBreached + - to: superMaxSecurityUnfinished conditions: - !type:WirePanel {} steps: @@ -506,13 +385,15 @@ amount: 2 doAfter: 2 -## Super max security level airlock: an additional layer of plasteel is added - - node: airlockSuperMaxSecurityBreached +## Super max security level door: an additional layer of plasteel is added + - node: superMaxSecurityUnfinished actions: - - !type:ChangeWiresPanelSecurityLevel - level: Level6 + - !type:SetWiresPanelSecurity + examine: wires-panel-component-on-examine-security-level6 + wiresAccessible: false + weldingAllowed: false edges: - - to: airlockMaxSecurity + - to: maxSecurity completed: - !type:GivePrototype prototype: SheetPlasteel1 @@ -523,21 +404,24 @@ - tool: Prying doAfter: 4 - - to: airlockSuperMaxSecurity + - to: superMaxSecurity conditions: - !type:WirePanel {} steps: - tool: Welding doAfter: 5 - - node: airlockSuperMaxSecurity + - node: superMaxSecurity actions: - - !type:ChangeWiresPanelSecurityLevel - level: Level7 + - !type:SetWiresPanelSecurity + examine: wires-panel-component-on-examine-security-level7 + wiresAccessible: false + weldingAllowed: false edges: - - to: airlockSuperMaxSecurityBreached + - to: superMaxSecurityUnfinished conditions: - !type:WirePanel {} steps: - tool: Welding - doAfter: 15 + doAfter: 15 + diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/structures/highsec.yml b/Resources/Prototypes/Recipes/Construction/Graphs/structures/highsec.yml deleted file mode 100644 index bf210ad463c..00000000000 --- a/Resources/Prototypes/Recipes/Construction/Graphs/structures/highsec.yml +++ /dev/null @@ -1,166 +0,0 @@ -- type: constructionGraph - id: HighSecDoor - start: start - graph: - - node: start - actions: - - !type:ChangeWiresPanelSecurityLevel - level: Level0 - edges: - - to: medSecurityBreached - conditions: - - !type:WirePanel {} - steps: - - material: Steel - amount: 2 - doAfter: 2 - - - to: highSecurityBreached - conditions: - - !type:WirePanel {} - steps: - - material: Plasteel - amount: 2 - doAfter: 2 - -## Medium security level door: a layer of steel plating protects the internal wiring - - node: medSecurityBreached - actions: - - !type:ChangeWiresPanelSecurityLevel - level: Level1 - edges: - - to: start - completed: - - !type:GivePrototype - prototype: SheetSteel1 - amount: 2 - conditions: - - !type:WirePanel {} - steps: - - tool: Prying - doAfter: 4 - - - to: medSecurity - conditions: - - !type:WirePanel {} - steps: - - tool: Welding - doAfter: 3 - - - node: medSecurity - actions: - - !type:ChangeWiresPanelSecurityLevel - level: Level2 - edges: - - to: medSecurityBreached - conditions: - - !type:WirePanel {} - steps: - - tool: Welding - doAfter: 10 - -## High security level door: a layer of plasteel plating protects the internal wiring - - node: highSecurityBreached - actions: - - !type:ChangeWiresPanelSecurityLevel - level: Level3 - edges: - - to: start - completed: - - !type:GivePrototype - prototype: SheetPlasteel1 - amount: 2 - conditions: - - !type:WirePanel {} - steps: - - tool: Prying - doAfter: 4 - - - to: highSecurity - conditions: - - !type:WirePanel {} - steps: - - tool: Welding - doAfter: 5 - - - node: highSecurity - actions: - - !type:ChangeWiresPanelSecurityLevel - level: Level4 - edges: - - to: highSecurityBreached - conditions: - - !type:WirePanel {} - steps: - - tool: Welding - doAfter: 15 - - - to: maxSecurity - conditions: - - !type:WirePanel {} - steps: - - material: MetalRod - amount: 2 - doAfter: 1 - -## Max security level door: an electric grill is added - - node: maxSecurity - actions: - - !type:ChangeWiresPanelSecurityLevel - level: Level5 - edges: - - to: highSecurity - completed: - - !type:AttemptElectrocute - - !type:GivePrototype - prototype: PartRodMetal1 - amount: 2 - conditions: - - !type:WirePanel {} - steps: - - tool: Cutting - doAfter: 0.5 - - - to: superMaxSecurityBreached - conditions: - - !type:WirePanel {} - steps: - - material: Plasteel - amount: 2 - doAfter: 2 - -## Super max security level door: an additional layer of plasteel is added - - node: superMaxSecurityBreached - actions: - - !type:ChangeWiresPanelSecurityLevel - level: Level6 - edges: - - to: maxSecurity - completed: - - !type:GivePrototype - prototype: SheetPlasteel1 - amount: 2 - conditions: - - !type:WirePanel {} - steps: - - tool: Prying - doAfter: 4 - - - to: superMaxSecurity - conditions: - - !type:WirePanel {} - steps: - - tool: Welding - doAfter: 5 - - - node: superMaxSecurity - actions: - - !type:ChangeWiresPanelSecurityLevel - level: Level7 - edges: - - to: superMaxSecurityBreached - conditions: - - !type:WirePanel {} - steps: - - tool: Welding - doAfter: 15 diff --git a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml index 3b15730535e..c02919777b2 100644 --- a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml +++ b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml @@ -482,14 +482,22 @@ solids: FoodBreadPlainSlice: 2 -#Pizzas +- type: microwaveMealRecipe + id: RecipeOnionRings + name: onion rings recipe + result: FoodOnionRings + time: 15 + solids: + FoodOnionSlice: 1 + +#Pizzas TODO: contruction graph based pizza - type: microwaveMealRecipe id: RecipeMargheritaPizza name: margherita pizza recipe result: FoodPizzaMargherita time: 30 solids: - FoodDough: 1 + FoodDoughFlat: 1 FoodCheeseSlice: 1 FoodTomato: 4 @@ -499,7 +507,7 @@ result: FoodPizzaMushroom time: 25 solids: - FoodDough: 1 + FoodDoughFlat: 1 FoodMushroom: 5 - type: microwaveMealRecipe @@ -508,7 +516,7 @@ result: FoodPizzaMeat time: 30 solids: - FoodDough: 1 + FoodDoughFlat: 1 FoodMeat: 3 FoodCheeseSlice: 1 FoodTomato: 1 @@ -519,7 +527,7 @@ result: FoodPizzaVegetable time: 30 solids: - FoodDough: 1 + FoodDoughFlat: 1 FoodEggplant: 1 FoodCarrot: 1 FoodCorn: 1 @@ -531,7 +539,7 @@ result: FoodPizzaPineapple time: 30 solids: - FoodDough: 1 + FoodDoughFlat: 1 FoodMeatChickenCutlet: 3 FoodPineappleSlice: 5 @@ -541,7 +549,7 @@ result: FoodPizzaDank time: 30 solids: - FoodDough: 1 + FoodDoughFlat: 1 FoodAmbrosiaVulgaris: 3 FoodCheeseSlice: 1 FoodTomato: 1 @@ -552,7 +560,7 @@ result: FoodPizzaDonkpocket time: 30 solids: - FoodDough: 1 + FoodDoughFlat: 1 FoodDonkpocketWarm: 3 FoodCheeseSlice: 1 FoodTomato: 1 @@ -1277,7 +1285,7 @@ FoodButter: 2 FoodSnackChocolateBar: 2 FoodEgg: 3 - + #Donks i guess - type: microwaveMealRecipe id: RecipeWarmDonkpocket @@ -1562,7 +1570,7 @@ name: medicated suture recipe result: MedicatedSuture time: 10 - solids: + solids: FoodPoppy: 1 Brutepack: 1 MaterialCloth1: 1 @@ -1581,7 +1589,7 @@ MaterialCloth1: 1 reagents: Sigynate: 50 - Dermaline: 50 + Dermaline: 50 # Suppermatter - type: microwaveMealRecipe diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/toys.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/toys.yml index 56e31bbe8d1..2f67bd0e245 100644 --- a/Resources/Prototypes/Recipes/Crafting/Graphs/toys.yml +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/toys.yml @@ -14,7 +14,7 @@ - tag: Ectoplasm name: ectoplasm icon: - sprite: Mobs/Ghosts/revenant.rsi + sprite: DeltaV/Mobs/Ghosts/revenant.rsi # DeltaV - Custom revenant sprite state: ectoplasm doAfter: 10 - node: plushie diff --git a/Resources/Prototypes/Recipes/Crafting/toys.yml b/Resources/Prototypes/Recipes/Crafting/toys.yml index 4fd91bdb69d..351d7dbc29f 100644 --- a/Resources/Prototypes/Recipes/Crafting/toys.yml +++ b/Resources/Prototypes/Recipes/Crafting/toys.yml @@ -8,7 +8,7 @@ objectType: Item description: A toy to scare the medbay with. icon: - sprite: Mobs/Ghosts/revenant.rsi + sprite: DeltaV/Mobs/Ghosts/revenant.rsi # DeltaV - Custom revenant sprite state: icon - type: construction diff --git a/Resources/Prototypes/Recipes/Lathes/electronics.yml b/Resources/Prototypes/Recipes/Lathes/electronics.yml index ebb187121b8..bc54c78ca1e 100644 --- a/Resources/Prototypes/Recipes/Lathes/electronics.yml +++ b/Resources/Prototypes/Recipes/Lathes/electronics.yml @@ -517,6 +517,14 @@ Steel: 100 Glass: 900 +- type: latheRecipe + id: ElectricGrillMachineCircuitboard + result: ElectricGrillMachineCircuitboard + completetime: 4 + materials: + Steel: 100 + Glass: 900 + - type: latheRecipe id: FatExtractorMachineCircuitboard result: FatExtractorMachineCircuitboard diff --git a/Resources/Prototypes/Recipes/Lathes/medical.yml b/Resources/Prototypes/Recipes/Lathes/medical.yml index bb83a0a52ee..1de2e7290c2 100644 --- a/Resources/Prototypes/Recipes/Lathes/medical.yml +++ b/Resources/Prototypes/Recipes/Lathes/medical.yml @@ -202,4 +202,4 @@ result: Jug completetime: 4 materials: - Plastic: 700 + Plastic: 400 diff --git a/Resources/Prototypes/Recipes/Lathes/robotics.yml b/Resources/Prototypes/Recipes/Lathes/robotics.yml index 6e56988ea5c..4825adbe493 100644 --- a/Resources/Prototypes/Recipes/Lathes/robotics.yml +++ b/Resources/Prototypes/Recipes/Lathes/robotics.yml @@ -479,6 +479,16 @@ Plastic: 250 Gold: 50 +- type: latheRecipe + id: BorgModuleAdvancedTreatment + result: BorgModuleAdvancedTreatment + completetime: 3 + materials: + Steel: 500 + Glass: 750 + Plastic: 250 + Gold: 50 + - type: latheRecipe id: BorgModuleDefibrillator result: BorgModuleDefibrillator diff --git a/Resources/Prototypes/Recipes/Lathes/security.yml b/Resources/Prototypes/Recipes/Lathes/security.yml index 85a0e8008de..ee29b4261a6 100644 --- a/Resources/Prototypes/Recipes/Lathes/security.yml +++ b/Resources/Prototypes/Recipes/Lathes/security.yml @@ -412,3 +412,56 @@ completetime: 5 materials: Plastic: 950 + +- type: latheRecipe + id: ShellShotgunPractice + result: ShellShotgunPractice + completetime: 2 + materials: + Plastic: 20 + +- type: latheRecipe + id: MagazineBoxPistolPractice + result: MagazineBoxPistolPractice + completetime: 5 + materials: + Plastic: 600 + +- type: latheRecipe + id: MagazineBoxMagnumPractice + result: MagazineBoxMagnumPractice + completetime: 5 + materials: + Plastic: 1200 + +- type: latheRecipe + id: MagazineBoxLightRiflePractice + result: MagazineBoxLightRiflePractice + completetime: 5 + materials: + Plastic: 1000 + +- type: latheRecipe + id: MagazineBoxRiflePractice + result: MagazineBoxRiflePractice + completetime: 5 + materials: + Plastic: 900 + +- type: latheRecipe + id: WeaponLaserCarbinePractice + result: WeaponLaserCarbinePractice + completetime: 6 + materials: + Steel: 1800 + Glass: 400 + Plastic: 250 + +- type: latheRecipe + id: WeaponDisablerPractice + result: WeaponDisablerPractice + completetime: 4 + materials: + Steel: 500 + Glass: 100 + Plastic: 200 diff --git a/Resources/Prototypes/Research/arsenal.yml b/Resources/Prototypes/Research/arsenal.yml index 3cdc19de16a..1c7bffd5e61 100644 --- a/Resources/Prototypes/Research/arsenal.yml +++ b/Resources/Prototypes/Research/arsenal.yml @@ -86,6 +86,24 @@ - MagazineBoxLightRifleRubber - MagazineBoxRifleRubber +- type: technology + id: PracticeAmmunition + name: research-technology-practice-ammunition + icon: + sprite: Objects/Weapons/Guns/Ammunition/Casings/shotgun_shell.rsi + state: practice + discipline: Arsenal + tier: 1 + cost: 2000 + recipeUnlocks: + - ShellShotgunPractice + - MagazineBoxPistolPractice + - MagazineBoxMagnumPractice + - MagazineBoxLightRiflePractice + - MagazineBoxRiflePractice + - WeaponLaserCarbinePractice + - WeaponDisablerPractice + # Tier 2 - type: technology diff --git a/Resources/Prototypes/Research/biochemical.yml b/Resources/Prototypes/Research/biochemical.yml index 6b3733c6aae..a3b9090fe68 100644 --- a/Resources/Prototypes/Research/biochemical.yml +++ b/Resources/Prototypes/Research/biochemical.yml @@ -15,6 +15,7 @@ - HotplateMachineCircuitboard - ChemicalPayload - ClothingEyesGlassesChemical + - Jug - type: technology id: SurgicalTools @@ -99,6 +100,7 @@ recipeUnlocks: - ChemMasterMachineCircuitboard - ChemDispenserMachineCircuitboard + - BorgModuleAdvancedTreatment technologyPrerequisites: - Chemistry diff --git a/Resources/Prototypes/Research/civilianservices.yml b/Resources/Prototypes/Research/civilianservices.yml index b0de5d319b9..92087750944 100644 --- a/Resources/Prototypes/Research/civilianservices.yml +++ b/Resources/Prototypes/Research/civilianservices.yml @@ -75,6 +75,7 @@ recipeUnlocks: #remove all of these once we have more kitchen equipment - MicrowaveMachineCircuitboard - ReagentGrinderMachineCircuitboard + - ElectricGrillMachineCircuitboard - BoozeDispenserMachineCircuitboard - SodaDispenserMachineCircuitboard diff --git a/Resources/Prototypes/Roles/Antags/nukeops.yml b/Resources/Prototypes/Roles/Antags/nukeops.yml index 7370d805a39..bd625e6d81a 100644 --- a/Resources/Prototypes/Roles/Antags/nukeops.yml +++ b/Resources/Prototypes/Roles/Antags/nukeops.yml @@ -4,6 +4,9 @@ antagonist: true setPreference: true objective: roles-antag-nuclear-operative-objective + requirements: + - !type:OverallPlaytimeRequirement + time: 18000 # 5h - type: antag id: NukeopsMedic @@ -11,6 +14,12 @@ antagonist: true setPreference: true objective: roles-antag-nuclear-operative-agent-objective + requirements: + - !type:OverallPlaytimeRequirement + time: 18000 # 5h + - !type:DepartmentTimeRequirement + department: Medical + time: 18000 # 5h - type: antag id: NukeopsCommander @@ -18,3 +27,10 @@ antagonist: true setPreference: true objective: roles-antag-nuclear-operative-commander-objective + requirements: + - !type:OverallPlaytimeRequirement + time: 18000 # 5h + - !type:DepartmentTimeRequirement + department: Security + time: 18000 # 5h + # should be changed to nukie playtime when thats tracked (wyci) diff --git a/Resources/Prototypes/Roles/Antags/revolutionary.yml b/Resources/Prototypes/Roles/Antags/revolutionary.yml new file mode 100644 index 00000000000..c5e6cb81498 --- /dev/null +++ b/Resources/Prototypes/Roles/Antags/revolutionary.yml @@ -0,0 +1,13 @@ +- type: antag + id: HeadRev + name: roles-antag-rev-head-name + antagonist: true + setPreference: true + objective: roles-antag-rev-head-objective + +- type: antag + id: Rev + name: roles-antag-rev-name + antagonist: true + setPreference: false + objective: roles-antag-rev-objective diff --git a/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml b/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml index d266da85d75..ea0a8d186be 100644 --- a/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml +++ b/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml @@ -33,6 +33,12 @@ - External - Command - Orders # DeltaV - Orders, see Resources/Prototypes/DeltaV/Access/cargo.yml + special: + - !type:AddImplantSpecial + implants: [ MindShieldImplant ] + - !type:AddComponentSpecial + components: + - type: CommandStaff - type: startingGear id: QuartermasterGear @@ -43,6 +49,7 @@ shoes: ClothingShoesColorBrown id: QuartermasterPDA ears: ClothingHeadsetQM + belt: BoxFolderClipboard pocket1: AppraisalTool innerclothingskirt: ClothingUniformJumpskirtQM satchel: ClothingBackpackSatchelQuartermasterFilled diff --git a/Resources/Prototypes/Roles/Jobs/Cargo/salvage_specialist.yml b/Resources/Prototypes/Roles/Jobs/Cargo/salvage_specialist.yml index 93df4da99ef..a64adaccc8c 100644 --- a/Resources/Prototypes/Roles/Jobs/Cargo/salvage_specialist.yml +++ b/Resources/Prototypes/Roles/Jobs/Cargo/salvage_specialist.yml @@ -22,7 +22,7 @@ - type: startingGear id: SalvageSpecialistGear equipment: - jumpsuit: ClothingUniformJumpsuitSalvageExplorer # DeltaV - Salvage better looking uniform, see Resources/Prototypes/DeltaV/Entities/Clothing/Uniform/jumpsuits.yml + jumpsuit: ClothingUniformJumpsuitSalvageSpecialist back: ClothingBackpackSalvageFilled shoes: ClothingShoesBootsSalvage id: SalvagePDA diff --git a/Resources/Prototypes/Roles/Jobs/Command/captain.yml b/Resources/Prototypes/Roles/Jobs/Command/captain.yml index 2af0724dbde..ac036c513d0 100644 --- a/Resources/Prototypes/Roles/Jobs/Command/captain.yml +++ b/Resources/Prototypes/Roles/Jobs/Command/captain.yml @@ -34,6 +34,11 @@ accessGroups: - AllAccess special: + - !type:AddImplantSpecial + implants: [ MindShieldImplant ] + - !type:AddComponentSpecial + components: + - type: CommandStaff - !type:AddComponentSpecial components: - type: PsionicBonusChance #Nyano - Summary: makes it more likely to become psionic. diff --git a/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml b/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml index 4317507d575..a8dd9d84f7d 100644 --- a/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml +++ b/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml @@ -52,6 +52,11 @@ # - Atmospherics # - Medical special: + - !type:AddImplantSpecial + implants: [ MindShieldImplant ] + - !type:AddComponentSpecial + components: + - type: CommandStaff - !type:AddComponentSpecial components: - type: PsionicBonusChance #Nyano - Summary: makes it more likely to become psionic. @@ -66,6 +71,7 @@ head: ClothingHeadHatHopcap id: HoPPDA ears: ClothingHeadsetAltCommand + belt: BoxFolderClipboard innerclothingskirt: ClothingUniformJumpskirtHoP satchel: ClothingBackpackSatchelHOPFilled duffelbag: ClothingBackpackDuffelHOPFilled diff --git a/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml b/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml index 3c8fa500d77..2e3397f5eb2 100644 --- a/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml +++ b/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml @@ -29,6 +29,11 @@ - ChiefEngineer - Atmospherics special: + - !type:AddImplantSpecial + implants: [ MindShieldImplant ] + - !type:AddComponentSpecial + components: + - type: CommandStaff - !type:AddComponentSpecial components: - type: PsionicBonusChance #Nyano - Summary: makes it more likely to become psionic. diff --git a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml index c8c17445752..147ae62fd97 100644 --- a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml +++ b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml @@ -325,3 +325,28 @@ innerclothingskirt: ClothingUniformJumpskirtBrigmedic satchel: ClothingBackpackSatchelBrigmedicFilled duffelbag: ClothingBackpackDuffelBrigmedicFilled + +#Head Rev Gear +- type: startingGear + id: HeadRevGear + equipment: + pocket2: Flash + +#Gladiator with spear +- type: startingGear + id: GladiatorGear + equipment: + jumpsuit: ClothingUniformJumpsuitGladiator + back: SpearBone + head: ClothingHeadHatGladiator + shoes: ClothingShoesCult + +#Ash Walker +- type: startingGear + id: AshWalker + equipment: + jumpsuit: ClothingUniformJumpsuitGladiator + outerClothing: ClothingOuterArmorBone + back: SpearBone + head: ClothingHeadHelmetBone + shoes: ClothingShoesCult diff --git a/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml b/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml index 1e7afa9c043..a2858affb27 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml @@ -32,6 +32,11 @@ - ChiefMedicalOfficer - Paramedic # DeltaV - Add Paramedic access special: + - !type:AddImplantSpecial + implants: [ MindShieldImplant ] + - !type:AddComponentSpecial + components: + - type: CommandStaff - !type:AddComponentSpecial components: - type: PsionicBonusChance #Nyano - Summary: makes it more likely to become psionic. diff --git a/Resources/Prototypes/Roles/Jobs/Science/research_director.yml b/Resources/Prototypes/Roles/Jobs/Science/research_director.yml index c02683c5bb2..4d177ad1d44 100644 --- a/Resources/Prototypes/Roles/Jobs/Science/research_director.yml +++ b/Resources/Prototypes/Roles/Jobs/Science/research_director.yml @@ -26,6 +26,11 @@ - !type:AddComponentSpecial components: - type: BibleUser #Lets them heal with bibles + - !type:AddImplantSpecial + implants: [ MindShieldImplant ] + - !type:AddComponentSpecial + components: + - type: CommandStaff - type: startingGear id: ResearchDirectorGear diff --git a/Resources/Prototypes/Roles/Jobs/Security/detective.yml b/Resources/Prototypes/Roles/Jobs/Security/detective.yml index 9b6f0eebde7..da485401a1f 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/detective.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/detective.yml @@ -17,6 +17,9 @@ - Maintenance - Service - Detective + special: + - !type:AddImplantSpecial + implants: [ MindShieldImplant ] - type: startingGear id: DetectiveGear diff --git a/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml b/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml index e2503548988..0e143c0d2b8 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml @@ -32,11 +32,16 @@ - External - Detective special: + - !type:AddImplantSpecial + implants: [ MindShieldImplant ] + - !type:AddComponentSpecial + components: + - type: CommandStaff - !type:AddComponentSpecial components: - type: PsionicBonusChance #Nyano - Summary: makes it more likely to become psionic. flatBonus: 0.025 - + - type: startingGear id: HoSGear equipment: diff --git a/Resources/Prototypes/Roles/Jobs/Security/security_cadet.yml b/Resources/Prototypes/Roles/Jobs/Security/security_cadet.yml index 1d684a0077a..033adf5c5da 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/security_cadet.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/security_cadet.yml @@ -1,4 +1,4 @@ -- type: job +- type: job id: SecurityCadet name: job-name-cadet description: job-description-cadet @@ -18,6 +18,9 @@ - Security - Brig - Maintenance + special: + - !type:AddImplantSpecial + implants: [ MindShieldImplant ] - type: startingGear id: SecurityCadetGear @@ -25,7 +28,7 @@ jumpsuit: ClothingUniformJumpsuitColorRed back: ClothingBackpackSecurityFilled shoes: ClothingShoesBootsCombatFilled - outerClothing: ClothingOuterArmorBasic + outerClothing: ClothingOuterArmorDuraVest # DeltaV - ClothingOuterArmorBasic replaced in favour of stab vest. Sucks to suck, cadets id: SecurityCadetPDA ears: ClothingHeadsetSecurity # pocket1: WeaponPistolMk58Nonlethal # DeltaV - Security Cadet doesn't spawn with a gun diff --git a/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml b/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml index a0bb8978ab5..8c90788e8a0 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml @@ -17,6 +17,9 @@ - Maintenance - Service - External + special: + - !type:AddImplantSpecial + implants: [ MindShieldImplant ] - type: startingGear id: SecurityOfficerGear @@ -26,7 +29,7 @@ shoes: ClothingShoesBootsCombatFilled eyes: ClothingEyesGlassesSecurity head: ClothingHeadHelmetBasic - outerClothing: ClothingOuterArmorBasic + outerClothing: ClothingOuterArmorPlateCarrier # DeltaV - ClothingOuterArmorBasic replaced in favour of plate carrier id: SecurityPDA ears: ClothingHeadsetSecurity belt: ClothingBeltSecurityFilled diff --git a/Resources/Prototypes/Roles/Jobs/Security/senior_officer.yml b/Resources/Prototypes/Roles/Jobs/Security/senior_officer.yml index 3a93d9a321b..dc92981f205 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/senior_officer.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/senior_officer.yml @@ -27,6 +27,9 @@ - Maintenance - Service - External + special: + - !type:AddImplantSpecial + implants: [ MindShieldImplant ] - type: startingGear id: SeniorOfficerGear @@ -36,7 +39,7 @@ shoes: ClothingShoesBootsCombatFilled eyes: ClothingEyesGlassesSecurity head: ClothingHeadHatBeret - outerClothing: ClothingOuterArmorBasic + outerClothing: ClothingOuterArmorPlateCarrier # DeltaV - ClothingOuterArmorBasic replaced in favour of plate carrier id: SeniorOfficerPDA ears: ClothingHeadsetSecurity belt: ClothingBeltSecurityFilled diff --git a/Resources/Prototypes/Roles/Jobs/Security/warden.yml b/Resources/Prototypes/Roles/Jobs/Security/warden.yml index e2ea1ba76c1..3514f62025b 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/warden.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/warden.yml @@ -25,6 +25,9 @@ - Brig - External - Detective + special: + - !type:AddImplantSpecial + implants: [ MindShieldImplant ] - type: startingGear id: WardenGear diff --git a/Resources/Prototypes/StatusIcon/antag.yml b/Resources/Prototypes/StatusIcon/antag.yml index a4690caf06e..564d29a35b2 100644 --- a/Resources/Prototypes/StatusIcon/antag.yml +++ b/Resources/Prototypes/StatusIcon/antag.yml @@ -1,6 +1,20 @@ -- type: statusIcon +- type: statusIcon id: ZombieFaction priority: 11 icon: sprite: Interface/Misc/job_icons.rsi state: Zombie + +- type: statusIcon + id: RevolutionaryFaction + priority: 11 + icon: + sprite: Interface/Misc/job_icons.rsi + state: Revolutionary + +- type: statusIcon + id: HeadRevolutionaryFaction + priority: 11 + icon: + sprite: Interface/Misc/job_icons.rsi + state: HeadRevolutionary diff --git a/Resources/Prototypes/ai_factions.yml b/Resources/Prototypes/ai_factions.yml index 9c8f0015774..3dfb35c7a69 100644 --- a/Resources/Prototypes/ai_factions.yml +++ b/Resources/Prototypes/ai_factions.yml @@ -6,6 +6,7 @@ - Xeno - PetsNT - Zombie + - Revolutionary - type: npcFaction id: NanoTrasen @@ -14,6 +15,7 @@ - Syndicate - Xeno - Zombie + - Revolutionary - type: npcFaction id: Mouse @@ -39,6 +41,7 @@ - Passive - PetsNT - Zombie + - Revolutionary - type: npcFaction id: SimpleNeutral @@ -60,6 +63,7 @@ - Passive - PetsNT - Zombie + - Revolutionary - type: npcFaction id: Zombie @@ -70,3 +74,12 @@ - Syndicate - Passive - PetsNT + - Revolutionary + +- type: npcFaction + id: Revolutionary + hostile: + - NanoTrasen + - Zombie + - SimpleHostile + - Dragon diff --git a/Resources/Prototypes/edge_spreaders.yml b/Resources/Prototypes/edge_spreaders.yml index 4cd1ada1c1a..061932c706d 100644 --- a/Resources/Prototypes/edge_spreaders.yml +++ b/Resources/Prototypes/edge_spreaders.yml @@ -1,8 +1,11 @@ - type: edgeSpreader - id: kudzu + id: Kudzu + updatesPerSecond: 1 - type: edgeSpreader - id: puddle + id: Puddle + updatesPerSecond: 16 - type: edgeSpreader - id: smoke \ No newline at end of file + id: Smoke + updatesPerSecond: 8 diff --git a/Resources/Prototypes/game_presets.yml b/Resources/Prototypes/game_presets.yml index e12822b2eaf..b42b2e49f96 100644 --- a/Resources/Prototypes/game_presets.yml +++ b/Resources/Prototypes/game_presets.yml @@ -76,6 +76,19 @@ - Nukeops - BasicStationEventScheduler +- type: gamePreset + id: Revolutionary + alias: + - rev + - revs + - revolutionaries + name: rev-title + description: rev-description + showInVote: false + rules: + - Revolutionary + - BasicStationEventScheduler + - type: gamePreset id: Zombie alias: diff --git a/Resources/Prototypes/ore.yml b/Resources/Prototypes/ore.yml index 67c3d0c5e22..c8411940a49 100644 --- a/Resources/Prototypes/ore.yml +++ b/Resources/Prototypes/ore.yml @@ -36,6 +36,18 @@ id: OreBananium oreEntity: BananiumOre1 +- type: ore + id: OreQuartzCrab + oreEntity: MobQuartzCrab + +- type: ore + id: OreIronCrab + oreEntity: MobIronCrab + +- type: ore + id: OreUraniumCrab + oreEntity: MobUraniumCrab + - type: ore id: OreArtifactFragment oreEntity: ArtifactFragment @@ -53,3 +65,10 @@ OreUranium: 1 OreBananium: 0.5 OreArtifactFragment: 0.5 + +- type: weightedRandomOre + id: OreCrab + weights: + OreQuartzCrab: 5 + OreIronCrab: 5 + OreUraniumCrab: 3 diff --git a/Resources/Prototypes/secret_weights.yml b/Resources/Prototypes/secret_weights.yml index b23daa2a4e9..4c20d52daf8 100644 --- a/Resources/Prototypes/secret_weights.yml +++ b/Resources/Prototypes/secret_weights.yml @@ -1,6 +1,8 @@ - type: weightedRandom id: Secret weights: - Nukeops: 0.25 - Traitor: 0.65 + Nukeops: 0.20 + Traitor: 0.50 Zombie: 0.10 + Revolutionary: 0.20 + \ No newline at end of file diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index 61acbe2ba87..ccd042dd002 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -3,6 +3,9 @@ - type: Tag id: AirAlarmElectronics + +- type: Tag + id: Airlock - type: Tag id: AirSensor @@ -473,6 +476,9 @@ - type: Tag id: ForceNoFixRotations # fixrotations command WON'T target this +- type: Tag + id: Fruit + - type: Tag id: Galaxythistle @@ -487,6 +493,9 @@ - type: Tag id: GeigerCounter + +- type: Tag + id: GlassAirlock - type: Tag id: GlassBeaker @@ -503,7 +512,6 @@ - type: Tag id: GuideEmbeded - - type: Tag id: Hamster @@ -554,6 +562,9 @@ - type: Tag id: HighRiskItem + +- type: Tag + id: HighSecDoor - type: Tag id: Hoe @@ -701,6 +712,9 @@ - type: Tag id: Matchstick +- type: Tag + id: Meat + - type: Tag id: Medkit @@ -765,6 +779,9 @@ - type: Tag id: PetWearable +- type: Tag + id: MonkeyWearable + - type: Tag id: Pickaxe @@ -774,6 +791,9 @@ - type: Tag id: Pig +- type: Tag + id: Pill + - type: Tag id: PillCanister @@ -892,6 +912,9 @@ - type: Tag id: Shovel +- type: Tag + id: Sidearm + - type: Tag id: SkeletonMotorcycleKeys @@ -1054,3 +1077,5 @@ - type: Tag id: ModularReceiver +- type: Tag + id: MindShield diff --git a/Resources/Prototypes/tool_qualities.yml b/Resources/Prototypes/tool_qualities.yml index 65254542873..ff55d9fcf14 100644 --- a/Resources/Prototypes/tool_qualities.yml +++ b/Resources/Prototypes/tool_qualities.yml @@ -59,4 +59,11 @@ name: tool-quality-honking-name toolName: tool-quality-honking-tool-name spawn: BikeHorn - icon: { sprite: Objects/Fun/bikehorn.rsi, state: icon } \ No newline at end of file + icon: { sprite: Objects/Fun/bikehorn.rsi, state: icon } + +- type: tool + id: Rolling + name: tool-quality-rolling-name + toolName: tool-quality-rolling-tool-name + spawn: RollingPin + icon: { sprite: Objects/Tools/rolling_pin.rsi, state: icon } diff --git a/Resources/ServerInfo/Guidebook/Antagonist/Traitors.xml b/Resources/ServerInfo/Guidebook/Antagonist/Traitors.xml index ac4cdf8e81f..2d022d05ade 100644 --- a/Resources/ServerInfo/Guidebook/Antagonist/Traitors.xml +++ b/Resources/ServerInfo/Guidebook/Antagonist/Traitors.xml @@ -82,5 +82,9 @@ + - Steal the Head of Personnel's [color=#a4885c]Ian Photobook[/color]. + + + diff --git a/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml b/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml index 02bf32677e3..338cbea4082 100644 --- a/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml +++ b/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml @@ -25,6 +25,7 @@ WARNING: This is not an automatically generated list, things here may become out + @@ -39,6 +40,7 @@ WARNING: This is not an automatically generated list, things here may become out - Bun: Microwave Dough Slice for 5 Seconds - Cutlet: Slice Raw Meat - Cheese Wedge: Slice Cheese Wheel +- Flat Dough: Use a rolling pin or a round object (fire extinguisher, soda can, bottle) on Dough. ## Food Examples @@ -46,7 +48,7 @@ WARNING: This is not an automatically generated list, things here may become out - Plain Burger: Microwave 1 Bun and 1 Raw Meat for 10 Seconds - Tomato Soup: 10u Water, 1 Bowl, and 2 Tomatoes for 10 Seconds - Citrus Salad: 1 Bowl, 1 Lemon, 1 Lime, 1 Orange for 5 Seconds -- Margherita Pizza: Microwave 1 Dough, 1 Cheese Wedge, and 4 Tomatoes for 30 Seconds +- Margherita Pizza: Microwave 1 Flat Dough, 1 Cheese Wedge, and 4 Tomatoes for 30 Seconds - Cake: 1 Cake Batter for 15 Seconds - Apple Pie: 1 Pie Dough, 3 Apples, and 1 Pie Tin for 15 Seconds diff --git a/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/equipped-HELMET.png index f5f0257ff70..6a4f85e4190 100644 Binary files a/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/icon.png b/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/icon.png index 78bbbcfd041..b814dfe5a57 100644 Binary files a/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/icon.png and b/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/inhand-left.png index 4585c268498..e5b88c6c1a1 100644 Binary files a/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/inhand-left.png and b/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/inhand-right.png index 7b005ddacb3..ffcd06463c7 100644 Binary files a/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/inhand-right.png and b/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/meta.json index 922cbddb201..5463bcbfd23 100644 --- a/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation https://github.com/tgstation/tgstation (unknown commit)", + "copyright": "Taken from paradise https://github.com/ParadiseSS13/Paradise/tree/master/icons (unknown commit)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Mask/ninja.rsi/equipped-MASK.png b/Resources/Textures/Clothing/Mask/ninja.rsi/equipped-MASK.png index 920dd4912eb..2c7c443e5d6 100644 Binary files a/Resources/Textures/Clothing/Mask/ninja.rsi/equipped-MASK.png and b/Resources/Textures/Clothing/Mask/ninja.rsi/equipped-MASK.png differ diff --git a/Resources/Textures/Clothing/Mask/ninja.rsi/icon.png b/Resources/Textures/Clothing/Mask/ninja.rsi/icon.png index 43dca0a7302..59b716bffb4 100644 Binary files a/Resources/Textures/Clothing/Mask/ninja.rsi/icon.png and b/Resources/Textures/Clothing/Mask/ninja.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Mask/ninja.rsi/inhand-left.png b/Resources/Textures/Clothing/Mask/ninja.rsi/inhand-left.png index 900114c31e1..f30ac5185d4 100644 Binary files a/Resources/Textures/Clothing/Mask/ninja.rsi/inhand-left.png and b/Resources/Textures/Clothing/Mask/ninja.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Mask/ninja.rsi/inhand-right.png b/Resources/Textures/Clothing/Mask/ninja.rsi/inhand-right.png index def44f1b59b..20aba07f3ca 100644 Binary files a/Resources/Textures/Clothing/Mask/ninja.rsi/inhand-right.png and b/Resources/Textures/Clothing/Mask/ninja.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Mask/ninja.rsi/meta.json b/Resources/Textures/Clothing/Mask/ninja.rsi/meta.json index 25dfc5f68c9..be28392cdb4 100644 --- a/Resources/Textures/Clothing/Mask/ninja.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/ninja.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "By Jackal298 (github), based off of tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e and paradise at commit https://github.com/ParadiseSS13/Paradise/commit/33f7c1ef477fa67db5dda48078b469ab59aa7997", + "copyright": "Taken from paradise at commit https://github.com/ParadiseSS13/Paradise/commit/33f7c1ef477fa67db5dda48078b469ab59aa7997", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/spaceninja.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Suits/spaceninja.rsi/equipped-OUTERCLOTHING.png index 0a73d163213..5bb527e1b02 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/spaceninja.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Suits/spaceninja.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/spaceninja.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Suits/spaceninja.rsi/icon.png index 8c3605f8b54..132d9aabf0d 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/spaceninja.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Suits/spaceninja.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/spaceninja.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Suits/spaceninja.rsi/inhand-left.png index ddebc2e4c39..e3b31316cce 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/spaceninja.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Suits/spaceninja.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/spaceninja.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Suits/spaceninja.rsi/inhand-right.png index d91d2192feb..4d432569767 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Suits/spaceninja.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Suits/spaceninja.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/spaceninja.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/spaceninja.rsi/meta.json index e482264df5f..0174b889d2e 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/spaceninja.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/spaceninja.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from paradise https://github.com/ParadiseSS13/Paradise/tree/master/icons (unknown commit)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/equipped-FEET.png index 48fc736462c..d38680fd866 100644 Binary files a/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/equipped-FEET.png and b/Resources/Textures/Clothing/Shoes/Boots/magboots-advanced.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/on-equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/on-equipped-FEET.png index 9ed90aed55a..569eda8481e 100644 Binary files a/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/on-equipped-FEET.png and b/Resources/Textures/Clothing/Shoes/Boots/magboots-syndicate.rsi/on-equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/equipped-FEET.png index 66962e52def..46b1be28c99 100644 Binary files a/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/equipped-FEET.png and b/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/on-equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/on-equipped-FEET.png index b857d5907a5..cdc67519413 100644 Binary files a/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/on-equipped-FEET.png and b/Resources/Textures/Clothing/Shoes/Boots/magboots.rsi/on-equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ninja.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ninja.rsi/equipped-INNERCLOTHING.png index 87282ec8420..9c8f0d020df 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ninja.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ninja.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ninja.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ninja.rsi/icon.png index 447174a09eb..be42d7ae7ee 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ninja.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ninja.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ninja.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ninja.rsi/inhand-left.png index 558124e55c0..24dfb6da1f7 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ninja.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ninja.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ninja.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ninja.rsi/inhand-right.png index e1db9b0bda2..38b78db1e16 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ninja.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ninja.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ninja.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ninja.rsi/meta.json index b503d4acdef..35a7a9f9df5 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ninja.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ninja.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Modified by Jackal298 (github), based on paradise station at https://github.com/ParadiseSS13/Paradise/blob/ede55cc8f5b50abcd4f51d37779b56853a440a9a/icons/obj/clothing/uniforms.dmi", + "copyright": "sprite by prazat911 and modified by jackal298", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Armor/duravest.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Armor/duravest.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..e9e7b85c157 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/OuterClothing/Armor/duravest.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Armor/duravest.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Armor/duravest.rsi/icon.png new file mode 100644 index 00000000000..8308a990ba3 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/OuterClothing/Armor/duravest.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Armor/duravest.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Armor/duravest.rsi/inhand-left.png new file mode 100644 index 00000000000..25d2e0a25e9 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/OuterClothing/Armor/duravest.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Armor/duravest.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Armor/duravest.rsi/inhand-right.png new file mode 100644 index 00000000000..96af6670c7f Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/OuterClothing/Armor/duravest.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Armor/duravest.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/OuterClothing/Armor/duravest.rsi/meta.json new file mode 100644 index 00000000000..1253f8b4e63 --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/OuterClothing/Armor/duravest.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Original work by TJohnson.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Armor/platecarrier.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Armor/platecarrier.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..510e28624f8 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/OuterClothing/Armor/platecarrier.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Armor/platecarrier.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Armor/platecarrier.rsi/icon.png new file mode 100644 index 00000000000..20b61f12ab2 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/OuterClothing/Armor/platecarrier.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Armor/platecarrier.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Armor/platecarrier.rsi/inhand-left.png new file mode 100644 index 00000000000..89f8fe5ca2f Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/OuterClothing/Armor/platecarrier.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Armor/platecarrier.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Armor/platecarrier.rsi/inhand-right.png new file mode 100644 index 00000000000..0af766ef965 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/OuterClothing/Armor/platecarrier.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Armor/platecarrier.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/OuterClothing/Armor/platecarrier.rsi/meta.json new file mode 100644 index 00000000000..1253f8b4e63 --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/OuterClothing/Armor/platecarrier.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Original work by TJohnson.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Mobs/Ghosts/revenant.rsi/active.png b/Resources/Textures/DeltaV/Mobs/Ghosts/revenant.rsi/active.png new file mode 100644 index 00000000000..6c6c97d30c8 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Ghosts/revenant.rsi/active.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Ghosts/revenant.rsi/ectoplasm.png b/Resources/Textures/DeltaV/Mobs/Ghosts/revenant.rsi/ectoplasm.png new file mode 100644 index 00000000000..750105053ba Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Ghosts/revenant.rsi/ectoplasm.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Ghosts/revenant.rsi/harvesting.png b/Resources/Textures/DeltaV/Mobs/Ghosts/revenant.rsi/harvesting.png new file mode 100644 index 00000000000..9c8d4d9768f Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Ghosts/revenant.rsi/harvesting.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Ghosts/revenant.rsi/icon.png b/Resources/Textures/DeltaV/Mobs/Ghosts/revenant.rsi/icon.png new file mode 100644 index 00000000000..b1307cee3c1 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Ghosts/revenant.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Ghosts/revenant.rsi/idle.png b/Resources/Textures/DeltaV/Mobs/Ghosts/revenant.rsi/idle.png new file mode 100644 index 00000000000..ef509e0bb13 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Ghosts/revenant.rsi/idle.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Ghosts/revenant.rsi/meta.json b/Resources/Textures/DeltaV/Mobs/Ghosts/revenant.rsi/meta.json new file mode 100644 index 00000000000..29e410dc959 --- /dev/null +++ b/Resources/Textures/DeltaV/Mobs/Ghosts/revenant.rsi/meta.json @@ -0,0 +1,190 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "leonardo_dabepis (232229415176634368) on Discord", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "active", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "ectoplasm" + }, + { + "name": "harvesting", + "directions": 4, + "delays": [ + [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ], + [ + 1.1 + ], + [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ], + [ + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05, + 0.05 + ] + ] + }, + { + "name": "icon" + }, + { + "name": "idle", + "directions": 4 + }, + { + "name": "stunned", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + } + ] +} diff --git a/Resources/Textures/DeltaV/Mobs/Ghosts/revenant.rsi/stunned.png b/Resources/Textures/DeltaV/Mobs/Ghosts/revenant.rsi/stunned.png new file mode 100644 index 00000000000..39d9883064d Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Ghosts/revenant.rsi/stunned.png differ diff --git a/Resources/Textures/DeltaV/Objects/Misc/bureaucracy.rsi/folder-hop-ian.png b/Resources/Textures/DeltaV/Objects/Misc/bureaucracy.rsi/folder-hop-ian.png new file mode 100644 index 00000000000..2f6f9ff5d65 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Misc/bureaucracy.rsi/folder-hop-ian.png differ diff --git a/Resources/Textures/DeltaV/Objects/Misc/bureaucracy.rsi/meta.json b/Resources/Textures/DeltaV/Objects/Misc/bureaucracy.rsi/meta.json new file mode 100644 index 00000000000..75c5548e647 --- /dev/null +++ b/Resources/Textures/DeltaV/Objects/Misc/bureaucracy.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432 | modified by Floofers", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "folder-hop-ian" + } + ] +} diff --git a/Resources/Textures/DeltaV/Structures/Wallmounts/Paintings/leonardodabepis.rsi/meta.json b/Resources/Textures/DeltaV/Structures/Wallmounts/Paintings/leonardodabepis.rsi/meta.json new file mode 100644 index 00000000000..2b8b9b58dd8 --- /dev/null +++ b/Resources/Textures/DeltaV/Structures/Wallmounts/Paintings/leonardodabepis.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Made by @leonardo_dabepis.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "spoonpainting" + } + ] +} diff --git a/Resources/Textures/DeltaV/Structures/Wallmounts/Paintings/leonardodabepis.rsi/spoonpainting.png b/Resources/Textures/DeltaV/Structures/Wallmounts/Paintings/leonardodabepis.rsi/spoonpainting.png new file mode 100644 index 00000000000..8463f36a47d Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Wallmounts/Paintings/leonardodabepis.rsi/spoonpainting.png differ diff --git a/Resources/Textures/DeltaV/Structures/Wallmounts/Paintings/ps3moira.rsi/bluntpainting.png b/Resources/Textures/DeltaV/Structures/Wallmounts/Paintings/ps3moira.rsi/bluntpainting.png new file mode 100644 index 00000000000..e3e6132b5d6 Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Wallmounts/Paintings/ps3moira.rsi/bluntpainting.png differ diff --git a/Resources/Textures/DeltaV/Structures/Wallmounts/Paintings/ps3moira.rsi/meta.json b/Resources/Textures/DeltaV/Structures/Wallmounts/Paintings/ps3moira.rsi/meta.json new file mode 100644 index 00000000000..a30f6be86bb --- /dev/null +++ b/Resources/Textures/DeltaV/Structures/Wallmounts/Paintings/ps3moira.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Taken from Delta-V discord, modified by ps3moira#9488", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "bluntpainting" + } + ] +} diff --git a/Resources/Textures/Interface/Misc/job_icons.rsi/HeadRevolutionary.png b/Resources/Textures/Interface/Misc/job_icons.rsi/HeadRevolutionary.png new file mode 100644 index 00000000000..21f5c12021c Binary files /dev/null and b/Resources/Textures/Interface/Misc/job_icons.rsi/HeadRevolutionary.png differ diff --git a/Resources/Textures/Interface/Misc/job_icons.rsi/Revolutionary.png b/Resources/Textures/Interface/Misc/job_icons.rsi/Revolutionary.png new file mode 100644 index 00000000000..ef4420a1e5e Binary files /dev/null and b/Resources/Textures/Interface/Misc/job_icons.rsi/Revolutionary.png differ diff --git a/Resources/Textures/Interface/Misc/job_icons.rsi/meta.json b/Resources/Textures/Interface/Misc/job_icons.rsi/meta.json index 0ead1158021..2d71fcd0560 100644 --- a/Resources/Textures/Interface/Misc/job_icons.rsi/meta.json +++ b/Resources/Textures/Interface/Misc/job_icons.rsi/meta.json @@ -1,7 +1,8 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/vgstation-coders/vgstation13/blob/e71d6c4fba5a51f99b81c295dcaec4fc2f58fb19/icons/mob/screen1.dmi | Brigmedic icon made by PuroSlavKing (Github) | Zombie icon made by RamZ | Zookeper by netwy (discort)", + "copyright": "Taken from https://github.com/vgstation-coders/vgstation13/blob/e71d6c4fba5a51f99b81c295dcaec4fc2f58fb19/icons/mob/screen1.dmi | Brigmedic icon made by PuroSlavKing (Github) | Zombie icon made by RamZ | Zookeper by netwy (discort) | Rev and Head Rev icon taken from https://tgstation13.org/wiki/HUD and edited by coolmankid12345 (Discord)", + "size": { "x": 8, "y": 8 @@ -162,6 +163,12 @@ }, { "name": "SeniorOfficer" + }, + { + "name": "Revolutionary" + }, + { + "name": "HeadRevolutionary" } ] } diff --git a/Resources/Textures/Mobs/Aliens/elemental.rsi/alive.png b/Resources/Textures/Mobs/Aliens/elemental.rsi/alive.png new file mode 100644 index 00000000000..c0fbc020b3d Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/elemental.rsi/alive.png differ diff --git a/Resources/Textures/Mobs/Aliens/elemental.rsi/dead.png b/Resources/Textures/Mobs/Aliens/elemental.rsi/dead.png new file mode 100644 index 00000000000..1363188c390 Binary files /dev/null and b/Resources/Textures/Mobs/Aliens/elemental.rsi/dead.png differ diff --git a/Resources/Textures/Mobs/Aliens/elemental.rsi/meta.json b/Resources/Textures/Mobs/Aliens/elemental.rsi/meta.json new file mode 100644 index 00000000000..3d3d7f75a86 --- /dev/null +++ b/Resources/Textures/Mobs/Aliens/elemental.rsi/meta.json @@ -0,0 +1,44 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Created by TheShuEd (github) for Space Station 14.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "dead" + }, + { + "name": "alive", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + } + ] +} diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/meta.json b/Resources/Textures/Mobs/Customization/human_hair.rsi/meta.json index 0a16a117b80..142fc9c1aa3 100644 --- a/Resources/Textures/Mobs/Customization/human_hair.rsi/meta.json +++ b/Resources/Textures/Mobs/Customization/human_hair.rsi/meta.json @@ -1 +1 @@ -{"version":1,"size":{"x":32,"y":32},"copyright":"Taken from https://github.com/tgstation/tgstation/blob/05ec94e46349c35e29ca91e5e97d0c88ae26ad44/icons/mob/species/human/human_face.dmi , resprited by Alekshhh, a modified by potato1234x","license":"CC-BY-SA-3.0","states":[{"name":"80s","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"a","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"afro","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"afro2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"antenna","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"b","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"baldfade","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bedhead","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bedheadv2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bedheadv3","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"beehive","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"beehivev2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bigafro","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bigflattop","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bigpompadour","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bob","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bob2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bob4","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bobcurl","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bobcut","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"boddicker","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bowlcut","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bowlcut2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"braid","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"braid2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"braided","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"braidfront","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"braidtail","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bun","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bun3","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bunhead2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"business","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"business2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"business3","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"business4","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"buzzcut","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"c","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"classicafro","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"classicbigafro","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"classiccia","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"classicfloorlength_bedhead","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"classicmodern","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"classicmulder","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"classicwisp","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"cia","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"coffeehouse","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"combover","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"cornrowbraid","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"cornrowbun","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"cornrows","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"cornrows2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"cornrowtail","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"country","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"crewcut","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"curls","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"d","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"dandypompadour","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"devilock","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"doublebun","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"dreads","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"drillhair","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"drillhairextended","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"drillruru","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"e","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"emo","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"emo2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"emofringe","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"f","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"father","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"feather","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"flair","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"floorlength_bedhead","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"fringetail","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"gelled","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"gentle","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"halfbang","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"halfbang2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"halfshaved","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"hbraid","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"hedgehog","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"highfade","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"highponytail","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"himecut","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"himecut2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"himeup","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"hitop","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"jade","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"jensen","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"joestar","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"kagami","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"keanu","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"kusanagi","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"largebun","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"lbangs","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"long","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"long2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"long3","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"long_bedhead","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"longemo","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"longest","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"longest2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"longfringe","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"longovereye","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"longsidepart","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"longstraightponytail","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"lowfade","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"manbun","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"medfade","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"megaeyebrows","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"messy","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"modern","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"mulder","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"nitori","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"nofade","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"odango","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"ombre","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"oneshoulder","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"oxton","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"part","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"parted","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"pigtails","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"pigtails2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"pixie","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"pompadour","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"ponytail","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"ponytail2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"ponytail3","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"ponytail4","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"ponytail5","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"ponytail6","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"ponytail7","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"poofy","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"protagonist","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"quiff","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"reversemohawk","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"ronin","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"rosa","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"sargeant","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"shaved","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"shavedmohawk","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"shavedpart","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"shortbangs","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"shortbraid","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"shorthair2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"shorthair3","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"shorthairg","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"shorthime","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"shortovereye","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"sidecut","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"sidetail","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"sidetail2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"sidetail3","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"sidetail4","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"skinhead","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"spikey","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"spiky","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"spiky2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"spikyponytail","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"stail","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"swept","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"swept2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"thinning","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"thinningfront","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"thinningrear","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"tightbun","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"topknot","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"tressshoulder","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"trimflat","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"trimmed","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"twintail","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"undercut","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"undercutleft","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"undercutright","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"unkept","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"unshaven_mohawk","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"updo","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"veryshortovereyealternate","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"vlong","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"vlongfringe","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"volaju","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"wisp","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bald","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]}]} +{"version":1,"size":{"x":32,"y":32},"copyright":"Taken from https://github.com/tgstation/tgstation/blob/05ec94e46349c35e29ca91e5e97d0c88ae26ad44/icons/mob/species/human/human_face.dmi , resprited by Alekshhh, a modified by potato1234x","license":"CC-BY-SA-3.0","states":[{"name":"80s","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"a","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"afro","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"afro2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"antenna","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"b","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"baldfade","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bedhead","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bedheadv2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bedheadv3","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"beehive","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"beehivev2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bigafro","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bigflattop","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bigpompadour","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bob","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bob2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bob4","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bobcurl","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bobcut","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"boddicker","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bowlcut","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bowlcut2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"braid","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"braid2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"braided","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"braidfront","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"braidtail","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bun","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bun3","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bunhead2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"business","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"business2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"business3","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"business4","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"buzzcut","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"c","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"classicafro","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"classicbigafro","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"classiccia","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"classicfloorlength_bedhead","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"classicmodern","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"classicmulder","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"classicwisp","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"cia","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"coffeehouse","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"combover","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"cornrowbraid","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"cornrowbun","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"cornrows","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"cornrows2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"cornrowtail","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"country","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"crewcut","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"curls","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"d","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"dandypompadour","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"devilock","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"doublebun","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"dreads","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"drillhair","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"drillhairextended","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"drillruru","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"e","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"emo","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"emo2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"emofringe","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"f","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"father","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"feather","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"flair","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"floorlength_bedhead","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"fringetail","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"gelled","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"gentle","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"halfbang","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"halfbang2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"halfshaved","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"hbraid","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"hedgehog","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"highfade","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"highponytail","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"himecut","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"himecut2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"himeup","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"hitop","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"jade","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"jensen","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"joestar","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"kagami","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"keanu","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"kusanagi","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"largebun","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"lbangs","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"long","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"long2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"long3","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"long_bedhead","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"longemo","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"longest","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"longest2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"longfringe","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"longovereye","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"longsidepart","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"longstraightponytail","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"lowfade","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"manbun","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"medfade","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"megaeyebrows","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"messy","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"modern","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"mulder","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"nitori","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"nofade","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"odango","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"ombre","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"oneshoulder","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"oxton","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"part","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"parted","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"pigtails","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"pigtails2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"pixie","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"pompadour","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"ponytail","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"ponytail2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"ponytail3","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"ponytail4","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"ponytail5","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"ponytail6","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"ponytail7","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"poofy","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"protagonist","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"quiff","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"reversemohawk","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"ronin","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"rosa","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"sargeant","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"shaved","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"shavedmohawk","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"shavedpart","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"shortbangs","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"shortbraid","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"shorthair2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"shorthair3","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"shorthairg","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"shorthime","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"shortovereye","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"sidecut","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"sidetail","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"sidetail2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"sidetail3","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"sidetail4","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"skinhead","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"spikey","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"spiky","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"spiky2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"spikyponytail","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"stail","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"swept","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"swept2","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"shoulderlengthovereye","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"thinning","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"thinningfront","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"thinningrear","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"tightbun","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"topknot","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"tressshoulder","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"trimflat","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"trimmed","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"twintail","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"twostrands","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"undercut","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"undercutleft","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"undercutright","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"unkept","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"unshaven_mohawk","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"updo","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"veryshortovereyealternate","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"vlong","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"vlongfringe","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"volaju","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"wisp","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]},{"name":"bald","directions":4,"delays":[[1.0],[1.0],[1.0],[1.0]]}]} diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/shoulderlengthovereye.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/shoulderlengthovereye.png new file mode 100644 index 00000000000..9e79245e1cb Binary files /dev/null and b/Resources/Textures/Mobs/Customization/human_hair.rsi/shoulderlengthovereye.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/twostrands.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/twostrands.png new file mode 100644 index 00000000000..91d1397fc2c Binary files /dev/null and b/Resources/Textures/Mobs/Customization/human_hair.rsi/twostrands.png differ diff --git a/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/horns_kobold_ears.png b/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/horns_kobold_ears.png new file mode 100644 index 00000000000..8e859f4104f Binary files /dev/null and b/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/horns_kobold_ears.png differ diff --git a/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/meta.json b/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/meta.json index 9b4e9b5db44..ac25bd5a251 100644 --- a/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/meta.json +++ b/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/Skyrat-SS13/Skyrat-tg/tree/40e3cdbb15b8bc0d5ef2fb46133adf805bda5297, while Argali, Ayrshire, Myrsore and Bighorn are drawn by Ubaser", + "copyright": "https://github.com/Skyrat-SS13/Skyrat-tg/tree/40e3cdbb15b8bc0d5ef2fb46133adf805bda5297, while Argali, Ayrshire, Myrsore and Bighorn are drawn by Ubaser, and Kobold Ears are drawn by Pigeonpeas.", "size": { "x": 32, "y": 32 @@ -163,6 +163,10 @@ "name": "horns_bighorn", "directions": 4 }, + { + "name": "horns_kobold_ears", + "directions": 4 + }, { "name": "r_leg_tiger", "directions": 4 diff --git a/Resources/Textures/Mobs/Elemental/orecrab.rsi/ironcrab.png b/Resources/Textures/Mobs/Elemental/orecrab.rsi/ironcrab.png new file mode 100644 index 00000000000..08522053149 Binary files /dev/null and b/Resources/Textures/Mobs/Elemental/orecrab.rsi/ironcrab.png differ diff --git a/Resources/Textures/Mobs/Elemental/orecrab.rsi/meta.json b/Resources/Textures/Mobs/Elemental/orecrab.rsi/meta.json new file mode 100644 index 00000000000..b8ffd5034dc --- /dev/null +++ b/Resources/Textures/Mobs/Elemental/orecrab.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Made by brainfood1183 (github)", + "states": [ + { + "name": "ironcrab", + "directions": 4 + }, + { + "name": "uraniumcrab", + "directions": 4 + }, + { + "name": "quartzcrab", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Mobs/Elemental/orecrab.rsi/quartzcrab.png b/Resources/Textures/Mobs/Elemental/orecrab.rsi/quartzcrab.png new file mode 100644 index 00000000000..1da12987aaf Binary files /dev/null and b/Resources/Textures/Mobs/Elemental/orecrab.rsi/quartzcrab.png differ diff --git a/Resources/Textures/Mobs/Elemental/orecrab.rsi/uraniumcrab.png b/Resources/Textures/Mobs/Elemental/orecrab.rsi/uraniumcrab.png new file mode 100644 index 00000000000..ae76b4d734e Binary files /dev/null and b/Resources/Textures/Mobs/Elemental/orecrab.rsi/uraniumcrab.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/snacks.rsi/beans-open.png b/Resources/Textures/Objects/Consumable/Food/Tins/beans.rsi/icon-open.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Food/snacks.rsi/beans-open.png rename to Resources/Textures/Objects/Consumable/Food/Tins/beans.rsi/icon-open.png diff --git a/Resources/Textures/Objects/Consumable/Food/snacks.rsi/beans.png b/Resources/Textures/Objects/Consumable/Food/Tins/beans.rsi/icon.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Food/snacks.rsi/beans.png rename to Resources/Textures/Objects/Consumable/Food/Tins/beans.rsi/icon.png diff --git a/Resources/Textures/Objects/Consumable/Food/Tins/beans.rsi/meta.json b/Resources/Textures/Objects/Consumable/Food/Tins/beans.rsi/meta.json new file mode 100644 index 00000000000..fbd32195c4d --- /dev/null +++ b/Resources/Textures/Objects/Consumable/Food/Tins/beans.rsi/meta.json @@ -0,0 +1,20 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-open" + }, + { + "name": "trash" + } + ] +} diff --git a/Resources/Textures/Objects/Consumable/Food/snacks.rsi/beans-empty.png b/Resources/Textures/Objects/Consumable/Food/Tins/beans.rsi/trash.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Food/snacks.rsi/beans-empty.png rename to Resources/Textures/Objects/Consumable/Food/Tins/beans.rsi/trash.png diff --git a/Resources/Textures/Objects/Consumable/Food/snacks.rsi/peachtinmaint-open.png b/Resources/Textures/Objects/Consumable/Food/Tins/maint_peaches.rsi/icon-open.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Food/snacks.rsi/peachtinmaint-open.png rename to Resources/Textures/Objects/Consumable/Food/Tins/maint_peaches.rsi/icon-open.png diff --git a/Resources/Textures/Objects/Consumable/Food/snacks.rsi/peachtinmaint.png b/Resources/Textures/Objects/Consumable/Food/Tins/maint_peaches.rsi/icon.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Food/snacks.rsi/peachtinmaint.png rename to Resources/Textures/Objects/Consumable/Food/Tins/maint_peaches.rsi/icon.png diff --git a/Resources/Textures/Objects/Consumable/Food/Tins/maint_peaches.rsi/meta.json b/Resources/Textures/Objects/Consumable/Food/Tins/maint_peaches.rsi/meta.json new file mode 100644 index 00000000000..fbd32195c4d --- /dev/null +++ b/Resources/Textures/Objects/Consumable/Food/Tins/maint_peaches.rsi/meta.json @@ -0,0 +1,20 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-open" + }, + { + "name": "trash" + } + ] +} diff --git a/Resources/Textures/Objects/Consumable/Food/snacks.rsi/peachtinmaint-empty.png b/Resources/Textures/Objects/Consumable/Food/Tins/maint_peaches.rsi/trash.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Food/snacks.rsi/peachtinmaint-empty.png rename to Resources/Textures/Objects/Consumable/Food/Tins/maint_peaches.rsi/trash.png diff --git a/Resources/Textures/Objects/Consumable/Food/mre.rsi/tin-hot.png b/Resources/Textures/Objects/Consumable/Food/Tins/meat.rsi/icon-hot.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Food/mre.rsi/tin-hot.png rename to Resources/Textures/Objects/Consumable/Food/Tins/meat.rsi/icon-hot.png diff --git a/Resources/Textures/Objects/Consumable/Food/mre.rsi/tin-open.png b/Resources/Textures/Objects/Consumable/Food/Tins/meat.rsi/icon-open.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Food/mre.rsi/tin-open.png rename to Resources/Textures/Objects/Consumable/Food/Tins/meat.rsi/icon-open.png diff --git a/Resources/Textures/Objects/Consumable/Food/mre.rsi/tin-closed.png b/Resources/Textures/Objects/Consumable/Food/Tins/meat.rsi/icon.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Food/mre.rsi/tin-closed.png rename to Resources/Textures/Objects/Consumable/Food/Tins/meat.rsi/icon.png diff --git a/Resources/Textures/Objects/Consumable/Food/Tins/meat.rsi/meta.json b/Resources/Textures/Objects/Consumable/Food/Tins/meat.rsi/meta.json new file mode 100644 index 00000000000..0f14d21a7b4 --- /dev/null +++ b/Resources/Textures/Objects/Consumable/Food/Tins/meat.rsi/meta.json @@ -0,0 +1,31 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-hot", + "delays": [ + [ + 0.5, + 0.5, + 0.5, + 0.5 + ] + ] + }, + { + "name": "icon-open" + }, + { + "name": "trash" + } + ] +} diff --git a/Resources/Textures/Objects/Consumable/Food/mre.rsi/tin-trash.png b/Resources/Textures/Objects/Consumable/Food/Tins/meat.rsi/trash.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Food/mre.rsi/tin-trash.png rename to Resources/Textures/Objects/Consumable/Food/Tins/meat.rsi/trash.png diff --git a/Resources/Textures/Objects/Consumable/Food/snacks.rsi/peachtin-open.png b/Resources/Textures/Objects/Consumable/Food/Tins/peaches.rsi/icon-open.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Food/snacks.rsi/peachtin-open.png rename to Resources/Textures/Objects/Consumable/Food/Tins/peaches.rsi/icon-open.png diff --git a/Resources/Textures/Objects/Consumable/Food/snacks.rsi/peachtin.png b/Resources/Textures/Objects/Consumable/Food/Tins/peaches.rsi/icon.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Food/snacks.rsi/peachtin.png rename to Resources/Textures/Objects/Consumable/Food/Tins/peaches.rsi/icon.png diff --git a/Resources/Textures/Objects/Consumable/Food/Tins/peaches.rsi/meta.json b/Resources/Textures/Objects/Consumable/Food/Tins/peaches.rsi/meta.json new file mode 100644 index 00000000000..fbd32195c4d --- /dev/null +++ b/Resources/Textures/Objects/Consumable/Food/Tins/peaches.rsi/meta.json @@ -0,0 +1,20 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-open" + }, + { + "name": "trash" + } + ] +} diff --git a/Resources/Textures/Objects/Consumable/Food/snacks.rsi/peachtin-empty.png b/Resources/Textures/Objects/Consumable/Food/Tins/peaches.rsi/trash.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Food/snacks.rsi/peachtin-empty.png rename to Resources/Textures/Objects/Consumable/Food/Tins/peaches.rsi/trash.png diff --git a/Resources/Textures/Objects/Consumable/Food/mre.rsi/meta.json b/Resources/Textures/Objects/Consumable/Food/mre.rsi/meta.json index 5aca929f983..d4669293cda 100644 --- a/Resources/Textures/Objects/Consumable/Food/mre.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Food/mre.rsi/meta.json @@ -28,26 +28,6 @@ { "name": "box-closed" }, - { - "name": "tin-closed" - }, - { - "name": "tin-hot", - "delays": [ - [ - 0.5, - 0.5, - 0.5, - 0.5 - ] - ] - }, - { - "name": "tin-open" - }, - { - "name": "tin-trash" - }, { "name": "candy" }, diff --git a/Resources/Textures/Objects/Consumable/Food/snacks.rsi/meta.json b/Resources/Textures/Objects/Consumable/Food/snacks.rsi/meta.json index 116e05d18f3..6f699103840 100644 --- a/Resources/Textures/Objects/Consumable/Food/snacks.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Food/snacks.rsi/meta.json @@ -7,15 +7,6 @@ "y": 32 }, "states": [ - { - "name": "beans" - }, - { - "name": "beans-empty" - }, - { - "name": "beans-open" - }, { "name": "boritos" }, @@ -104,24 +95,6 @@ "name": "packet-inhand-left", "directions": 4 }, - { - "name": "peachtin" - }, - { - "name": "peachtin-empty" - }, - { - "name": "peachtin-open" - }, - { - "name": "peachtinmaint" - }, - { - "name": "peachtinmaint-empty" - }, - { - "name": "peachtinmaint-open" - }, { "name": "pistachio" }, diff --git a/Resources/Textures/Objects/Misc/bureaucracy.rsi/clipboard.png b/Resources/Textures/Objects/Misc/bureaucracy.rsi/clipboard.png deleted file mode 100644 index 4439ea097fe..00000000000 Binary files a/Resources/Textures/Objects/Misc/bureaucracy.rsi/clipboard.png and /dev/null differ diff --git a/Resources/Textures/Objects/Misc/bureaucracy.rsi/clipboard_over.png b/Resources/Textures/Objects/Misc/bureaucracy.rsi/clipboard_over.png deleted file mode 100644 index 0a4d4f90490..00000000000 Binary files a/Resources/Textures/Objects/Misc/bureaucracy.rsi/clipboard_over.png and /dev/null differ diff --git a/Resources/Textures/Objects/Misc/bureaucracy.rsi/clipboard_pen.png b/Resources/Textures/Objects/Misc/bureaucracy.rsi/clipboard_pen.png deleted file mode 100644 index 7e2d0b999c0..00000000000 Binary files a/Resources/Textures/Objects/Misc/bureaucracy.rsi/clipboard_pen.png and /dev/null differ diff --git a/Resources/Textures/Objects/Misc/bureaucracy.rsi/meta.json b/Resources/Textures/Objects/Misc/bureaucracy.rsi/meta.json index 4290cdbcfe6..523f7bc42b2 100644 --- a/Resources/Textures/Objects/Misc/bureaucracy.rsi/meta.json +++ b/Resources/Textures/Objects/Misc/bureaucracy.rsi/meta.json @@ -7,15 +7,6 @@ "y": 32 }, "states": [ - { - "name": "clipboard" - }, - { - "name": "clipboard_over" - }, - { - "name": "clipboard_pen" - }, { "name": "envelope_closed" }, @@ -298,10 +289,6 @@ }, { "name": "stamp-warden" - }, - { - "name": "clipboard-equipped-BELT", - "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Misc/clipboard.rsi/clipboard.png b/Resources/Textures/Objects/Misc/clipboard.rsi/clipboard.png new file mode 100644 index 00000000000..8007668d935 Binary files /dev/null and b/Resources/Textures/Objects/Misc/clipboard.rsi/clipboard.png differ diff --git a/Resources/Textures/Objects/Misc/clipboard.rsi/clipboard_over.png b/Resources/Textures/Objects/Misc/clipboard.rsi/clipboard_over.png new file mode 100644 index 00000000000..f5baed50efa Binary files /dev/null and b/Resources/Textures/Objects/Misc/clipboard.rsi/clipboard_over.png differ diff --git a/Resources/Textures/Objects/Misc/clipboard.rsi/clipboard_paper.png b/Resources/Textures/Objects/Misc/clipboard.rsi/clipboard_paper.png new file mode 100644 index 00000000000..d58b42b709d Binary files /dev/null and b/Resources/Textures/Objects/Misc/clipboard.rsi/clipboard_paper.png differ diff --git a/Resources/Textures/Objects/Misc/clipboard.rsi/clipboard_pen.png b/Resources/Textures/Objects/Misc/clipboard.rsi/clipboard_pen.png new file mode 100644 index 00000000000..e7b506c75e3 Binary files /dev/null and b/Resources/Textures/Objects/Misc/clipboard.rsi/clipboard_pen.png differ diff --git a/Resources/Textures/Objects/Misc/bureaucracy.rsi/clipboard-equipped-BELT.png b/Resources/Textures/Objects/Misc/clipboard.rsi/equipped-BELT.png similarity index 100% rename from Resources/Textures/Objects/Misc/bureaucracy.rsi/clipboard-equipped-BELT.png rename to Resources/Textures/Objects/Misc/clipboard.rsi/equipped-BELT.png diff --git a/Resources/Textures/Objects/Misc/clipboard.rsi/inhand-left.png b/Resources/Textures/Objects/Misc/clipboard.rsi/inhand-left.png new file mode 100644 index 00000000000..37717d23384 Binary files /dev/null and b/Resources/Textures/Objects/Misc/clipboard.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Misc/clipboard.rsi/inhand-right.png b/Resources/Textures/Objects/Misc/clipboard.rsi/inhand-right.png new file mode 100644 index 00000000000..8cfde4d9cdc Binary files /dev/null and b/Resources/Textures/Objects/Misc/clipboard.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Misc/clipboard.rsi/meta.json b/Resources/Textures/Objects/Misc/clipboard.rsi/meta.json new file mode 100644 index 00000000000..4eeea693de6 --- /dev/null +++ b/Resources/Textures/Objects/Misc/clipboard.rsi/meta.json @@ -0,0 +1,35 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Clipboard sprites are by WJohn (Github) for tgstation, taken from https://github.com/tgstation/tgstation/commit/3cc10b1785bff95e861d722b5164189951761921. Inhand sprites by nmajask (Github) for SS14. clipboard_paper is a modified version of paper from bureaucracy.rsi.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "clipboard" + }, + { + "name": "clipboard_over" + }, + { + "name": "clipboard_paper" + }, + { + "name": "clipboard_pen" + }, + { + "name": "equipped-BELT", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Specific/Chemistry/dropper.rsi/borgdropper.png b/Resources/Textures/Objects/Specific/Chemistry/dropper.rsi/borgdropper.png new file mode 100644 index 00000000000..ba86a60ed64 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Chemistry/dropper.rsi/borgdropper.png differ diff --git a/Resources/Textures/Objects/Specific/Chemistry/dropper.rsi/meta.json b/Resources/Textures/Objects/Specific/Chemistry/dropper.rsi/meta.json index e7e78c01a67..646becdd087 100644 --- a/Resources/Textures/Objects/Specific/Chemistry/dropper.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Chemistry/dropper.rsi/meta.json @@ -10,6 +10,9 @@ { "name": "dropper" }, + { + "name": "borgdropper" + }, { "name": "dropper1" }, diff --git a/Resources/Textures/Objects/Specific/Medical/hypospray.rsi/borghypo.png b/Resources/Textures/Objects/Specific/Medical/hypospray.rsi/borghypo.png index e96d92d7936..e0eafad0f57 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/hypospray.rsi/borghypo.png and b/Resources/Textures/Objects/Specific/Medical/hypospray.rsi/borghypo.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-chemist.png b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-chemist.png new file mode 100644 index 00000000000..bec24e7056d Binary files /dev/null and b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/icon-chemist.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/meta.json b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/meta.json index 681e84a96e8..62f02dda7eb 100644 --- a/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Robotics/borgmodule.rsi/meta.json @@ -28,6 +28,9 @@ { "name": "icon-cables" }, + { + "name": "icon-chemist" + }, { "name": "icon-clown" }, diff --git a/Resources/Textures/Objects/Specific/Service/vending_machine_restock.rsi/meta.json b/Resources/Textures/Objects/Specific/Service/vending_machine_restock.rsi/meta.json index 99cc8f2c332..86e7d78e36e 100644 --- a/Resources/Textures/Objects/Specific/Service/vending_machine_restock.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Service/vending_machine_restock.rsi/meta.json @@ -24,6 +24,9 @@ { "name": "refill_booze" }, + { + "name": "refill_chef" + }, { "name": "refill_chinese" }, @@ -33,6 +36,9 @@ { "name": "refill_cola" }, + { + "name": "refill_condiment" + }, { "name": "refill_costume" }, diff --git a/Resources/Textures/Objects/Specific/Service/vending_machine_restock.rsi/refill_chef.png b/Resources/Textures/Objects/Specific/Service/vending_machine_restock.rsi/refill_chef.png new file mode 100644 index 00000000000..23b074ddd10 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Service/vending_machine_restock.rsi/refill_chef.png differ diff --git a/Resources/Textures/Objects/Specific/Service/vending_machine_restock.rsi/refill_condiment.png b/Resources/Textures/Objects/Specific/Service/vending_machine_restock.rsi/refill_condiment.png new file mode 100644 index 00000000000..5fc525a8ca6 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Service/vending_machine_restock.rsi/refill_condiment.png differ diff --git a/Resources/Textures/Objects/Tools/emag.rsi/inhand-left.png b/Resources/Textures/Objects/Tools/emag.rsi/inhand-left.png new file mode 100644 index 00000000000..f273903cb6e Binary files /dev/null and b/Resources/Textures/Objects/Tools/emag.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Tools/emag.rsi/inhand-right.png b/Resources/Textures/Objects/Tools/emag.rsi/inhand-right.png new file mode 100644 index 00000000000..f6933973f2b Binary files /dev/null and b/Resources/Textures/Objects/Tools/emag.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Tools/emag.rsi/meta.json b/Resources/Textures/Objects/Tools/emag.rsi/meta.json index d14e20b7a57..66fc62d663d 100644 --- a/Resources/Textures/Objects/Tools/emag.rsi/meta.json +++ b/Resources/Textures/Objects/Tools/emag.rsi/meta.json @@ -1,12 +1,20 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation wiki at https://tgstation13.org/wiki/File:Emag.png", + "copyright": "Taken from tgstation wiki at https://tgstation13.org/wiki/File:Emag.png, inhand sprites modified from tgstation at commit https://github.com/tgstation/tgstation/commit/d917f4c2a088419d5c3aec7656b7ff8cebd1822e", "size": { "x": 32, "y": 32 }, "states": [ + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, { "name": "icon" } diff --git a/Resources/Textures/Objects/Tools/rolling_pin.rsi/icon.png b/Resources/Textures/Objects/Tools/rolling_pin.rsi/icon.png new file mode 100644 index 00000000000..4cc81ec2c61 Binary files /dev/null and b/Resources/Textures/Objects/Tools/rolling_pin.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Tools/rolling_pin.rsi/inhand-left.png b/Resources/Textures/Objects/Tools/rolling_pin.rsi/inhand-left.png new file mode 100644 index 00000000000..d3560334810 Binary files /dev/null and b/Resources/Textures/Objects/Tools/rolling_pin.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Tools/rolling_pin.rsi/inhand-right.png b/Resources/Textures/Objects/Tools/rolling_pin.rsi/inhand-right.png new file mode 100644 index 00000000000..68667562891 Binary files /dev/null and b/Resources/Textures/Objects/Tools/rolling_pin.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Tools/rolling_pin.rsi/meta.json b/Resources/Textures/Objects/Tools/rolling_pin.rsi/meta.json new file mode 100644 index 00000000000..407ebc30c0e --- /dev/null +++ b/Resources/Textures/Objects/Tools/rolling_pin.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "icon.png taken from https://github.com/DesertRose2/desertrose/blob/0348c98f8343b5cb82d87df12411ba647b2b1b4f/icons/obj/kitchen.dmi. Inhand sprites created by deltanedas (github) for SS14.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Bombs/spidercharge.rsi/icon.png b/Resources/Textures/Objects/Weapons/Bombs/spidercharge.rsi/icon.png index 19eeac4947d..3dcf4ce7693 100644 Binary files a/Resources/Textures/Objects/Weapons/Bombs/spidercharge.rsi/icon.png and b/Resources/Textures/Objects/Weapons/Bombs/spidercharge.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Bombs/spidercharge.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Bombs/spidercharge.rsi/inhand-left.png index 0b7ddbf8ff4..567bc8f6e8c 100644 Binary files a/Resources/Textures/Objects/Weapons/Bombs/spidercharge.rsi/inhand-left.png and b/Resources/Textures/Objects/Weapons/Bombs/spidercharge.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Bombs/spidercharge.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Bombs/spidercharge.rsi/inhand-right.png index 9147eb7598d..81ee9b51e24 100644 Binary files a/Resources/Textures/Objects/Weapons/Bombs/spidercharge.rsi/inhand-right.png and b/Resources/Textures/Objects/Weapons/Bombs/spidercharge.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Bombs/spidercharge.rsi/meta.json b/Resources/Textures/Objects/Weapons/Bombs/spidercharge.rsi/meta.json index 16c2ce2affb..448b9155a1f 100644 --- a/Resources/Textures/Objects/Weapons/Bombs/spidercharge.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Bombs/spidercharge.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/db2efd4f0df2b630a8bb9851f53f4922b669a5b3", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/db2efd4f0df2b630a8bb9851f53f4922b669a5b3 and modified by Jackal298", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Bombs/spidercharge.rsi/primed.png b/Resources/Textures/Objects/Weapons/Bombs/spidercharge.rsi/primed.png index a3a5df18633..cbfd370b920 100644 Binary files a/Resources/Textures/Objects/Weapons/Bombs/spidercharge.rsi/primed.png and b/Resources/Textures/Objects/Weapons/Bombs/spidercharge.rsi/primed.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/energykatana.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Melee/energykatana.rsi/equipped-BACKPACK.png new file mode 100644 index 00000000000..ba554a95b5a Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/energykatana.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/energykatana.rsi/equipped-BELT.png b/Resources/Textures/Objects/Weapons/Melee/energykatana.rsi/equipped-BELT.png index f31e92edce1..abdef910aa9 100644 Binary files a/Resources/Textures/Objects/Weapons/Melee/energykatana.rsi/equipped-BELT.png and b/Resources/Textures/Objects/Weapons/Melee/energykatana.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/energykatana.rsi/icon.png b/Resources/Textures/Objects/Weapons/Melee/energykatana.rsi/icon.png index e185890fbf3..62ba976b343 100644 Binary files a/Resources/Textures/Objects/Weapons/Melee/energykatana.rsi/icon.png and b/Resources/Textures/Objects/Weapons/Melee/energykatana.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/energykatana.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Melee/energykatana.rsi/inhand-left.png index 5f35b502dac..39f26b42fc2 100644 Binary files a/Resources/Textures/Objects/Weapons/Melee/energykatana.rsi/inhand-left.png and b/Resources/Textures/Objects/Weapons/Melee/energykatana.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/energykatana.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Melee/energykatana.rsi/inhand-right.png index 5926122d27b..6a365e77283 100644 Binary files a/Resources/Textures/Objects/Weapons/Melee/energykatana.rsi/inhand-right.png and b/Resources/Textures/Objects/Weapons/Melee/energykatana.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/energykatana.rsi/meta.json b/Resources/Textures/Objects/Weapons/Melee/energykatana.rsi/meta.json index 1dfa76c4e38..de27e15fb75 100644 --- a/Resources/Textures/Objects/Weapons/Melee/energykatana.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Melee/energykatana.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/a9451f4d22f233d328b63490c2bcf64a640e42ff", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/a9451f4d22f233d328b63490c2bcf64a640e42ff and modified by Jackal298", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 } ] } diff --git a/Resources/Textures/Structures/Machines/electric_grill.rsi/high.png b/Resources/Textures/Structures/Machines/electric_grill.rsi/high.png new file mode 100644 index 00000000000..b1fe72eb4ff Binary files /dev/null and b/Resources/Textures/Structures/Machines/electric_grill.rsi/high.png differ diff --git a/Resources/Textures/Structures/Machines/electric_grill.rsi/icon.png b/Resources/Textures/Structures/Machines/electric_grill.rsi/icon.png new file mode 100644 index 00000000000..d085b5b4c89 Binary files /dev/null and b/Resources/Textures/Structures/Machines/electric_grill.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Machines/electric_grill.rsi/low.png b/Resources/Textures/Structures/Machines/electric_grill.rsi/low.png new file mode 100644 index 00000000000..db27683a63d Binary files /dev/null and b/Resources/Textures/Structures/Machines/electric_grill.rsi/low.png differ diff --git a/Resources/Textures/Structures/Machines/electric_grill.rsi/medium.png b/Resources/Textures/Structures/Machines/electric_grill.rsi/medium.png new file mode 100644 index 00000000000..ed5d431e8d4 Binary files /dev/null and b/Resources/Textures/Structures/Machines/electric_grill.rsi/medium.png differ diff --git a/Resources/Textures/Structures/Machines/electric_grill.rsi/meta.json b/Resources/Textures/Structures/Machines/electric_grill.rsi/meta.json new file mode 100644 index 00000000000..acb06666dbc --- /dev/null +++ b/Resources/Textures/Structures/Machines/electric_grill.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Created by deltanedas (github) for SS14.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "low" + }, + { + "name": "medium" + }, + { + "name": "high" + } + ] +} diff --git a/Resources/Textures/Structures/Specific/Anomalies/liquid_anom.rsi/anom.png b/Resources/Textures/Structures/Specific/Anomalies/liquid_anom.rsi/anom.png new file mode 100644 index 00000000000..f421984c36b Binary files /dev/null and b/Resources/Textures/Structures/Specific/Anomalies/liquid_anom.rsi/anom.png differ diff --git a/Resources/Textures/Structures/Specific/Anomalies/liquid_anom.rsi/meta.json b/Resources/Textures/Structures/Specific/Anomalies/liquid_anom.rsi/meta.json new file mode 100644 index 00000000000..320816f3c58 --- /dev/null +++ b/Resources/Textures/Structures/Specific/Anomalies/liquid_anom.rsi/meta.json @@ -0,0 +1,33 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Created by TheShuEd (github) for ss14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "anom", + "delays": [ + [ + 0.18625, + 0.18625, + 0.18625, + 0.18625 + ] + ] + }, + { + "name": "pulse", + "delays": [ + [ + 0.15625, + 0.15625, + 0.15625, + 0.15625 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Specific/Anomalies/liquid_anom.rsi/pulse.png b/Resources/Textures/Structures/Specific/Anomalies/liquid_anom.rsi/pulse.png new file mode 100644 index 00000000000..3447184fb6f Binary files /dev/null and b/Resources/Textures/Structures/Specific/Anomalies/liquid_anom.rsi/pulse.png differ diff --git a/Resources/Textures/Structures/Specific/anomaly.rsi/anom6-pulse.png b/Resources/Textures/Structures/Specific/anomaly.rsi/anom6-pulse.png new file mode 100644 index 00000000000..f92a77a95ed Binary files /dev/null and b/Resources/Textures/Structures/Specific/anomaly.rsi/anom6-pulse.png differ diff --git a/Resources/Textures/Structures/Specific/anomaly.rsi/anom6.png b/Resources/Textures/Structures/Specific/anomaly.rsi/anom6.png new file mode 100644 index 00000000000..04c772bca17 Binary files /dev/null and b/Resources/Textures/Structures/Specific/anomaly.rsi/anom6.png differ diff --git a/Resources/Textures/Structures/Specific/anomaly.rsi/meta.json b/Resources/Textures/Structures/Specific/anomaly.rsi/meta.json index c318e8116bd..9337c5277fd 100644 --- a/Resources/Textures/Structures/Specific/anomaly.rsi/meta.json +++ b/Resources/Textures/Structures/Specific/anomaly.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC0-1.0", - "copyright": "Created by EmoGarbage; anom3, anom3-pulse, anom4, anom4-pulse are CC-BY-SA-3.0 at https://github.com/ParadiseSS13/Paradise/blob/master/icons/effects/effects.dmi; anom5, anom5-pulse are CC-BY-SA-3.0 by Aleksh#7552 (discord) for space-station-14", + "copyright": "Created by EmoGarbage; anom3, anom3-pulse, anom4, anom4-pulse are CC-BY-SA-3.0 at https://github.com/ParadiseSS13/Paradise/blob/master/icons/effects/effects.dmi; anom5, anom5-pulse are CC-BY-SA-3.0 by Aleksh#7552 (discord) for space-station-14, anom6 & anom6-pulse are CC-BY-SA-3.0 by brainfood1183 (github) for space-station-14", "size": { "x": 32, "y": 32 @@ -106,6 +106,24 @@ 0.25 ] ] + }, + { + "name": "anom6" + }, + { + "name": "anom6-pulse", + "delays": [ + [ + 0.15625, + 0.15625, + 0.15625, + 0.15625, + 0.15625, + 0.15625, + 0.15625, + 0.15625 + ] + ] } ] } diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/court.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/court.png new file mode 100644 index 00000000000..fbb8c50593e Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/signs.rsi/court.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/janitor.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/janitor.png new file mode 100644 index 00000000000..789a53802c7 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/signs.rsi/janitor.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/law.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/law.png new file mode 100644 index 00000000000..de6e16d4a60 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/signs.rsi/law.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/meta.json b/Resources/Textures/Structures/Wallmounts/signs.rsi/meta.json index e2cbbff9892..9a5f64759bd 100644 --- a/Resources/Textures/Structures/Wallmounts/signs.rsi/meta.json +++ b/Resources/Textures/Structures/Wallmounts/signs.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/discordia-space/CEV-Eris at commit 4e0bbe682d0a00192d24708fdb7031008aa03f18 and bee station at commit https://github.com/BeeStation/BeeStation-Hornet/commit/13dd5ac712385642574138f6d7b30eea7c2fab9c, except numerical signs which were created by discord: brainfood#7460, states: 'survival' and 'ntmining' from https://github.com/tgstation/tgstation/commit/f743754ec3ef446c8172388431effa73aeddb7ff#diff-b429dd7fccbca60d740d4887c1077a178abf1efffe57e7ae2a0b607c8a9e2202", + "copyright": "Taken from https://github.com/discordia-space/CEV-Eris at commit 4e0bbe682d0a00192d24708fdb7031008aa03f18 and bee station at commit https://github.com/BeeStation/BeeStation-Hornet/commit/13dd5ac712385642574138f6d7b30eea7c2fab9c, except numerical signs which were created by discord: brainfood#7460, states: 'survival' and 'ntmining' from https://github.com/tgstation/tgstation/commit/f743754ec3ef446c8172388431effa73aeddb7ff#diff-b429dd7fccbca60d740d4887c1077a178abf1efffe57e7ae2a0b607c8a9e2202, 'janitor' edited by forgotmyotheraccount on github", "states": [ { "name": "ai", @@ -250,6 +250,14 @@ ] ] }, + { + "name": "court", + "delays": [ + [ + 1 + ] + ] + }, { "name": "cryogenics", "delays": [ @@ -806,6 +814,14 @@ ] ] }, + { + "name": "janitor", + "delays": [ + [ + 1 + ] + ] + }, { "name": "laser", "delays": [ @@ -814,6 +830,14 @@ ] ] }, + { + "name": "law", + "delays": [ + [ + 1 + ] + ] + }, { "name": "magnetics", "delays": [ @@ -926,6 +950,14 @@ ] ] }, + { + "name": "psychology", + "delays": [ + [ + 1 + ] + ] + }, { "name": "radiation", "delays": [ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/psychology.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/psychology.png new file mode 100644 index 00000000000..9b0761c1bb4 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/signs.rsi/psychology.png differ diff --git a/Resources/Textures/Structures/Walls/rock.rsi/meta.json b/Resources/Textures/Structures/Walls/rock.rsi/meta.json index 75e173270ef..5c5277dad51 100644 --- a/Resources/Textures/Structures/Walls/rock.rsi/meta.json +++ b/Resources/Textures/Structures/Walls/rock.rsi/meta.json @@ -52,6 +52,12 @@ { "name": "rock_wall_west" }, + { + "name": "rock_asteroid_ore" + }, + { + "name": "rock_asteroid_ore1" + }, { "name": "rock_asteroid" }, diff --git a/Resources/Textures/Structures/Walls/rock.rsi/rock_asteroid_ore.png b/Resources/Textures/Structures/Walls/rock.rsi/rock_asteroid_ore.png new file mode 100644 index 00000000000..ef51386274c Binary files /dev/null and b/Resources/Textures/Structures/Walls/rock.rsi/rock_asteroid_ore.png differ diff --git a/Resources/Textures/Structures/Walls/rock.rsi/rock_asteroid_ore1.png b/Resources/Textures/Structures/Walls/rock.rsi/rock_asteroid_ore1.png new file mode 100644 index 00000000000..ad31358aaad Binary files /dev/null and b/Resources/Textures/Structures/Walls/rock.rsi/rock_asteroid_ore1.png differ diff --git a/RobustToolbox b/RobustToolbox index 58aa6e5c756..a8ddd837c84 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit 58aa6e5c7563c40baa51460a9def164a7ebc1791 +Subproject commit a8ddd837c847f7cd8e71ae4926418a992b6ff4a3